From da5a49067839ec32a016bf1b66c3808ad7cbf699 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 16 Oct 2013 21:28:41 -0400 Subject: [PATCH 01/95] remember to fix up libnames in backends, missed the 3.5 tag but this is just the build script --- tools/osx_packaging/osx_build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build index bab4906f2e..276eb90fe5 100755 --- a/tools/osx_packaging/osx_build +++ b/tools/osx_packaging/osx_build @@ -351,7 +351,7 @@ cp $ARDOURSTACK_ROOT/lib/suil-0/lib* $Frameworks while [ true ] ; do missing=false - for file in $APPROOT/MacOS/* $Frameworks/* $Frameworks/modules/* $Panners/*.dylib $Surfaces/*.dylib $Plugins/*.so ; do + for file in $APPROOT/MacOS/* $Frameworks/* $Frameworks/modules/* $Panners/*.dylib $Backends/*.dylib $Surfaces/*.dylib $Plugins/*.so ; do if ! file $file | grep -qs Mach-O ; then continue fi @@ -438,7 +438,7 @@ done echo "Fixing up library names ..." # now do the same for all the libraries we include -for libdir in $Frameworks $Frameworks/modules $Surfaces $Panners ; do +for libdir in $Frameworks $Frameworks/modules $Surfaces $Panners $Backends ; do libbase=`basename $libdir` From c4b1a5504ec89783f1565510761a2caf490cb530 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 18 Oct 2013 15:20:19 -0400 Subject: [PATCH 02/95] fix missing Click outputs for new sessions --- libs/ardour/ardour/session.h | 2 +- libs/ardour/session.cc | 10 ++++++---- libs/ardour/session_state.cc | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h index 9c4edfa1a1..8226f16866 100644 --- a/libs/ardour/ardour/session.h +++ b/libs/ardour/ardour/session.h @@ -1610,7 +1610,7 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi void setup_ltc (); void setup_click (); - void setup_click_state (const XMLNode&); + void setup_click_state (const XMLNode*); void setup_bundles (); static int get_session_info_from_path (XMLTree& state_tree, const std::string& xmlpath); diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index 28849e2930..0d078690f1 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -597,16 +597,18 @@ Session::setup_click () _click_gain.reset (new Amp (*this)); _click_gain->activate (); if (state_tree) { - setup_click_state (*state_tree->root()); + setup_click_state (state_tree->root()); + } else { + setup_click_state (0); } } void -Session::setup_click_state (const XMLNode& node) +Session::setup_click_state (const XMLNode* node) { const XMLNode* child = 0; - - if ((child = find_named_node (node, "Click")) != 0) { + + if (node && (child = find_named_node (*node, "Click")) != 0) { /* existing state for Click */ int c = 0; diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc index 94e9f00564..ec29f8a373 100644 --- a/libs/ardour/session_state.cc +++ b/libs/ardour/session_state.cc @@ -1317,7 +1317,7 @@ Session::set_state (const XMLNode& node, int version) if ((child = find_named_node (node, "Click")) == 0) { warning << _("Session: XML state has no click section") << endmsg; } else if (_click_io) { - setup_click_state (node); + setup_click_state (&node); } if ((child = find_named_node (node, ControlProtocolManager::state_node_name)) != 0) { From f191bdf6a010d05309b30bc3397bababc4ec4a3a Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 19 Oct 2013 18:16:34 +0200 Subject: [PATCH 03/95] replace rather than append to SUIL_MODULE_DIR should fix http://tracker.ardour.org/view.php?id=5679 --- gtk2_ardour/main.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/main.cc b/gtk2_ardour/main.cc index ceb6ceb312..9407b05915 100644 --- a/gtk2_ardour/main.cc +++ b/gtk2_ardour/main.cc @@ -172,9 +172,9 @@ fixup_bundle_environment (int, char* []) export_search_path (bundle_dir, "ARDOUR_INSTANT_XML_PATH", "/Resources"); export_search_path (bundle_dir, "LADSPA_PATH", "/Plugins"); export_search_path (bundle_dir, "VAMP_PATH", "/lib"); - export_search_path (bundle_dir, "SUIL_MODULE_DIR", "/lib"); export_search_path (bundle_dir, "GTK_PATH", "/lib/gtkengines"); + setenv ("SUIL_MODULE_DIR", (bundle_dir + "/lib").c_str(), 1); setenv ("PATH", (bundle_dir + "/MacOS:" + std::string(getenv ("PATH"))).c_str(), 1); /* unset GTK_RC_FILES so that we only load the RC files that we define @@ -282,9 +282,9 @@ fixup_bundle_environment (int /*argc*/, char* argv[]) export_search_path (dir_path, "ARDOUR_DATA_PATH", "/share"); export_search_path (dir_path, "LADSPA_PATH", "/plugins"); export_search_path (dir_path, "VAMP_PATH", "/lib"); - export_search_path (dir_path, "SUIL_MODULE_DIR", "/lib"); export_search_path (dir_path, "GTK_PATH", "/lib/gtkengines"); + setenv ("SUIL_MODULE_DIR", (dir_path + "/lib").c_str(), 1); setenv ("PATH", (dir_path + "/bin:" + std::string(getenv ("PATH"))).c_str(), 1); /* unset GTK_RC_FILES so that we only load the RC files that we define From f5c386bbb40e176028022efa7577369eca79b788 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 20 Oct 2013 04:31:07 +0200 Subject: [PATCH 04/95] add reasonablesynth.lv2 A reasonably simple synth to allow new users to 'hear midi'. This is a first step. It still needs proper install and bundling. --- libs/plugins/reasonablesynth.lv2/lv2.c | 190 +++++++ .../reasonablesynth.lv2/manifest.ttl.in | 8 + .../reasonablesynth.ttl.in | 51 ++ libs/plugins/reasonablesynth.lv2/rsynth.c | 490 ++++++++++++++++++ libs/plugins/reasonablesynth.lv2/wscript | 44 ++ wscript | 1 + 6 files changed, 784 insertions(+) create mode 100644 libs/plugins/reasonablesynth.lv2/lv2.c create mode 100644 libs/plugins/reasonablesynth.lv2/manifest.ttl.in create mode 100644 libs/plugins/reasonablesynth.lv2/reasonablesynth.ttl.in create mode 100644 libs/plugins/reasonablesynth.lv2/rsynth.c create mode 100644 libs/plugins/reasonablesynth.lv2/wscript diff --git a/libs/plugins/reasonablesynth.lv2/lv2.c b/libs/plugins/reasonablesynth.lv2/lv2.c new file mode 100644 index 0000000000..85aa968e8f --- /dev/null +++ b/libs/plugins/reasonablesynth.lv2/lv2.c @@ -0,0 +1,190 @@ +/* reasonable simple synth + * + * Copyright (C) 2013 Robin Gareus + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#define _GNU_SOURCE + +#include +#include +#include + +/* LV2 */ +#include "lv2/lv2plug.in/ns/lv2core/lv2.h" +#include "lv2/lv2plug.in/ns/ext/atom/util.h" +#include "lv2/lv2plug.in/ns/ext/urid/urid.h" +#include "lv2/lv2plug.in/ns/ext/midi/midi.h" + +#define RSY_URI "http://gareus.org/oss/lv2/reasonablesynth" + +/* the synth interface */ +static void * synth_alloc (void); +static void synth_init (void *, double rate); +static void synth_free (void *); +static void synth_parse_midi (void *, uint8_t *data, size_t size); +static uint32_t synth_sound (void *, uint32_t written, uint32_t nframes, float **out); + +#include "rsynth.c" + +typedef enum { + RSY_MIDIIN = 0, + RSY_OUTL, + RSY_OUTR +} PortIndex; + +typedef struct { + const LV2_Atom_Sequence* midiin; + float* outL; + float* outR; + + LV2_URID_Map* map; + LV2_URID midi_MidiEvent; + + double SampleRateD; + void *synth; +} RSynth; + +/* main LV2 */ + +static LV2_Handle +instantiate(const LV2_Descriptor* descriptor, + double rate, + const char* bundle_path, + const LV2_Feature* const* features) +{ + if (rate < 8000) { + fprintf(stderr, "RSynth.lv2 error: unsupported sample-rate (must be > 8k)\n"); + return NULL; + } + RSynth* self = (RSynth*)calloc(1, sizeof(RSynth)); + if(!self) { + return NULL; + } + + self->SampleRateD = rate; + + int i; + for (i=0; features[i]; ++i) { + if (!strcmp(features[i]->URI, LV2_URID__map)) { + self->map = (LV2_URID_Map*)features[i]->data; + } + } + + if (!self->map) { + fprintf(stderr, "RSynth.lv2 error: Host does not support urid:map\n"); + free(self); + return NULL; + } + + self->midi_MidiEvent = self->map->map(self->map->handle, LV2_MIDI__MidiEvent); + + self->synth = synth_alloc(); + synth_init(self->synth, rate); + + return (LV2_Handle)self; +} + +static void +connect_port(LV2_Handle handle, + uint32_t port, + void* data) +{ + RSynth* self = (RSynth*)handle; + + switch ((PortIndex)port) { + case RSY_MIDIIN: + self->midiin = (const LV2_Atom_Sequence*)data; + break; + case RSY_OUTL: + self->outL = (float*)data; + break; + case RSY_OUTR: + self->outR = (float*)data; + break; + } +} + +static void +run(LV2_Handle handle, uint32_t n_samples) +{ + RSynth* self = (RSynth*)handle; + float* audio[2]; + + audio[0] = self->outL; + audio[1] = self->outR; + + uint32_t written = 0; + + /* Process incoming MIDI events */ + if (self->midiin) { + LV2_Atom_Event* ev = lv2_atom_sequence_begin(&(self->midiin)->body); + while(!lv2_atom_sequence_is_end(&(self->midiin)->body, (self->midiin)->atom.size, ev)) { + if (ev->body.type == self->midi_MidiEvent) { + if (written + BUFFER_SIZE_SAMPLES < ev->time.frames + && ev->time.frames < n_samples) { + /* first synthesize sound up until the message timestamp */ + written = synth_sound(self->synth, written, ev->time.frames, audio); + } + /* send midi message to synth */ + synth_parse_midi(self->synth, (uint8_t*)(ev+1), ev->body.size); + } + ev = lv2_atom_sequence_next(ev); + } + } + + /* synthesize [remaining] sound */ + synth_sound(self->synth, written, n_samples, audio); +} + +static void +cleanup(LV2_Handle handle) +{ + RSynth* self = (RSynth*)handle; + synth_free(self->synth); + free(handle); +} + +static const void* +extension_data(const char* uri) +{ + return NULL; +} + +static const LV2_Descriptor descriptor = { + RSY_URI, + instantiate, + connect_port, + NULL, + run, + NULL, + cleanup, + extension_data +}; + +LV2_SYMBOL_EXPORT +const LV2_Descriptor* +lv2_descriptor(uint32_t index) +{ + switch (index) { + case 0: + return &descriptor; + default: + return NULL; + } +} + +/* vi:set ts=8 sts=2 sw=2: */ diff --git a/libs/plugins/reasonablesynth.lv2/manifest.ttl.in b/libs/plugins/reasonablesynth.lv2/manifest.ttl.in new file mode 100644 index 0000000000..ad0cff08fa --- /dev/null +++ b/libs/plugins/reasonablesynth.lv2/manifest.ttl.in @@ -0,0 +1,8 @@ +@prefix lv2: . +@prefix rdfs: . +@prefix ui: . + + + a lv2:Plugin ; + lv2:binary ; + rdfs:seeAlso . diff --git a/libs/plugins/reasonablesynth.lv2/reasonablesynth.ttl.in b/libs/plugins/reasonablesynth.lv2/reasonablesynth.ttl.in new file mode 100644 index 0000000000..2b8861f3d6 --- /dev/null +++ b/libs/plugins/reasonablesynth.lv2/reasonablesynth.ttl.in @@ -0,0 +1,51 @@ +@prefix atom: . +@prefix doap: . +@prefix foaf: . +@prefix lv2: . +@prefix rdf: . +@prefix rdfs: . +@prefix pg: . +@prefix units: . +@prefix urid: . + + + a foaf:Person ; + foaf:name "Robin Gareus" ; + foaf:mbox ; + foaf:homepage . + + + a lv2:Plugin, lv2:InstrumentPlugin, doap:Project; + doap:license ; + doap:maintainer ; + doap:name "Reasonable Synth"; + lv2:optionalFeature lv2:hardRTCapable ; + lv2:requiredFeature urid:map ; + rdfs:comment """A simple synthesizer with no controls at all but a reasonable sound instead.""" ; + lv2:port + [ + a atom:AtomPort , + lv2:InputPort ; + atom:bufferType atom:Sequence ; + atom:supports ; + lv2:index 0 ; + lv2:symbol "MidiIn" ; + lv2:name "MIDI Input" ; + ], + [ + a lv2:AudioPort , + lv2:OutputPort ; + lv2:index 1 ; + lv2:symbol "outL" ; + lv2:name "Left output" ; + lv2:designation pg:left ; + ], + [ + a lv2:AudioPort , + lv2:OutputPort ; + lv2:index 2 ; + lv2:symbol "outR" ; + lv2:name "Right Output" ; + lv2:designation pg:right ; + ] + . diff --git a/libs/plugins/reasonablesynth.lv2/rsynth.c b/libs/plugins/reasonablesynth.lv2/rsynth.c new file mode 100644 index 0000000000..b89f0fb45f --- /dev/null +++ b/libs/plugins/reasonablesynth.lv2/rsynth.c @@ -0,0 +1,490 @@ +/* reasonable simple synth + * + * Copyright (C) 2013 Robin Gareus + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef _GNU_SOURCE +#define _GNU_SOURCE // needed for M_PI +#endif + +#include +#include +#include +#include +#include + +#ifndef BUFFER_SIZE_SAMPLES +#define BUFFER_SIZE_SAMPLES 64 +#endif + +#ifndef MIN +#define MIN(A, B) ( (A) < (B) ? (A) : (B) ) +#endif + +/* internal MIDI event abstraction */ +enum RMIDI_EV_TYPE { + INVALID=0, + NOTE_ON, + NOTE_OFF, + PROGRAM_CHANGE, + CONTROL_CHANGE, +}; + +struct rmidi_event_t { + enum RMIDI_EV_TYPE type; + uint8_t channel; /**< the MIDI channel number 0-15 */ + union { + struct { + uint8_t note; + uint8_t velocity; + } tone; + struct { + uint8_t param; + uint8_t value; + } control; + } d; +}; + +typedef struct { + uint32_t tme[3]; // attack, decay, release times [settings:ms || internal:samples] + float vol[2]; // attack, sustain volume [0..1] + uint32_t off[3]; // internal use (added attack,decay,release times) +} ADSRcfg; + +typedef struct _RSSynthChannel { + uint32_t keycomp; + uint32_t adsr_cnt[128]; + float adsr_amp[128]; + float phase[128]; // various use, zero'ed on note-on + int8_t miditable[128]; // internal, note-on/off velocity + ADSRcfg adsr; + void (*synthesize) (struct _RSSynthChannel* sc, + const uint8_t note, const float vol, const float pc, + const size_t n_samples, float* left, float* right); +} RSSynthChannel; + +typedef void (*SynthFunction) (RSSynthChannel* sc, + const uint8_t note, const float vol, const float pc, + const size_t n_samples, float* left, float* right); + +typedef struct { + uint32_t boffset; + float buf [2][BUFFER_SIZE_SAMPLES]; + RSSynthChannel sc[16]; + float freqs[128]; + float kcgain; + float kcfilt; + double rate; +} RSSynthesizer; + + +/* initialize ADSR values + * + * @param rate sample-rate + * @param a attack time in seconds + * @param d decay time in seconds + * @param r release time in seconds + * @param avol attack gain [0..1] + * @param svol sustain volume level [0..1] + */ +static void init_adsr(ADSRcfg *adsr, const double rate, + const uint32_t a, const uint32_t d, const uint32_t r, + const float avol, const float svol) { + + adsr->vol[0] = avol; + adsr->vol[1] = svol; + adsr->tme[0] = a * rate / 1000.0; + adsr->tme[1] = d * rate / 1000.0; + adsr->tme[2] = r * rate / 1000.0; + + assert(adsr->tme[0] > 32); + assert(adsr->tme[1] > 32); + assert(adsr->tme[2] > 32); + assert(adsr->vol[0] >=0 && adsr->vol[1] <= 1.0); + assert(adsr->vol[1] >=0 && adsr->vol[1] <= 1.0); + + adsr->off[0] = adsr->tme[0]; + adsr->off[1] = adsr->tme[1] + adsr->off[0]; + adsr->off[2] = adsr->tme[2] + adsr->off[1]; +} + +/* calculate per-sample, per-key envelope */ +static inline float adsr_env(RSSynthChannel *sc, const uint8_t note) { + + if (sc->adsr_cnt[note] < sc->adsr.off[0]) { + // attack + const uint32_t p = ++sc->adsr_cnt[note]; + if (p == sc->adsr.tme[0]) { + sc->adsr_amp[note] = sc->adsr.vol[0]; + return sc->adsr.vol[0]; + } else { + const float d = sc->adsr.vol[0] - sc->adsr_amp[note]; + return sc->adsr_amp[note] + (p / (float) sc->adsr.tme[0]) * d; + } + } + else if (sc->adsr_cnt[note] < sc->adsr.off[1]) { + // decay + const uint32_t p = ++sc->adsr_cnt[note] - sc->adsr.off[0]; + if (p == sc->adsr.tme[1]) { + sc->adsr_amp[note] = sc->adsr.vol[1]; + return sc->adsr.vol[1]; + } else { + const float d = sc->adsr.vol[1] - sc->adsr_amp[note]; + return sc->adsr_amp[note] + (p / (float) sc->adsr.tme[1]) * d; + } + } + else if (sc->adsr_cnt[note] == sc->adsr.off[1]) { + // sustain + return sc->adsr.vol[1]; + } + else if (sc->adsr_cnt[note] < sc->adsr.off[2]) { + // release + const uint32_t p = ++sc->adsr_cnt[note] - sc->adsr.off[1]; + if (p == sc->adsr.tme[2]) { + sc->adsr_amp[note] = 0; + return 0; + } else { + const float d = 0 - sc->adsr_amp[note]; + return sc->adsr_amp[note] + (p / (float) sc->adsr.tme[2]) * d; + } + } + else { + sc->adsr_cnt[note] = 0; + return 0; + } +} + + +/*****************************************************************************/ +/* piano like sound w/slight stereo phase */ +static void synthesize_sineP (RSSynthChannel* sc, + const uint8_t note, const float vol, const float fq, + const size_t n_samples, float* left, float* right) { + + float phase = sc->phase[note]; + + for (size_t i=0; i < n_samples; ++i) { + float env = adsr_env(sc, note); + if (sc->adsr_cnt[note] == 0) break; + const float amp = vol * env; + + left[i] += amp * sinf(2.0 * M_PI * phase); + left[i] += .300 * amp * sinf(2.0 * M_PI * phase * 2.0); + left[i] += .150 * amp * sinf(2.0 * M_PI * phase * 3.0); + left[i] += .080 * amp * sinf(2.0 * M_PI * phase * 4.0); + //left[i] -= .007 * amp * sinf(2.0 * M_PI * phase * 5.0); + //left[i] += .010 * amp * sinf(2.0 * M_PI * phase * 6.0); + //left[i] += .020 * amp * sinf(2.0 * M_PI * phase * 7.0); + phase += fq; + right[i] += amp * sinf(2.0 * M_PI * phase); + right[i] += .300 * amp * sinf(2.0 * M_PI * phase * 2.0); + right[i] += .150 * amp * sinf(2.0 * M_PI * phase * 3.0); + right[i] -= .080 * amp * sinf(2.0 * M_PI * phase * 4.0); + //right[i] += .007 * amp * sinf(2.0 * M_PI * phase * 5.0); + //right[i] += .010 * amp * sinf(2.0 * M_PI * phase * 6.0); + //right[i] -= .020 * amp * sinf(2.0 * M_PI * phase * 7.0); + if (phase > 1.0) phase -= 2.0; + } + sc->phase[note] = phase; +} + +static const ADSRcfg piano_adsr = {{ 5, 1300, 100}, { 1.0, 0.0}, {0,0,0}}; + +/*****************************************************************************/ + + +/* process note - move through ADSR states, count active keys,.. */ +static void process_key (void *synth, + const uint8_t chn, const uint8_t note, + const size_t n_samples, float *left, float *right) +{ + RSSynthesizer* rs = (RSSynthesizer*)synth; + RSSynthChannel* sc = &rs->sc[chn]; + const int8_t vel = sc->miditable[note]; + const float vol = /* master_volume */ 0.25 * fabsf(vel) / 127.0; + const float phase = sc->phase[note]; + + if (phase == -10 && vel > 0) { + // new note on + assert(sc->adsr_cnt[note] == 0); + sc->adsr_amp[note] = 0; + sc->adsr_cnt[note] = 0; + sc->phase[note] = 0; + sc->keycomp++; + //printf("[On] Now %d keys active on chn %d\n", sc->keycomp, chn); + } + else if (phase >= -1.0 && phase <= 1.0 && vel > 0) { + // sustain note or re-start note while adsr in progress: + if (sc->adsr_cnt[note] > sc->adsr.off[1]) { + // x-fade to attack + sc->adsr_amp[note] = adsr_env(sc, note); + sc->adsr_cnt[note] = 0; + } + } + else if (phase >= -1.0 && phase <= 1.0 && vel < 0) { + // note off + if (sc->adsr_cnt[note] <= sc->adsr.off[1]) { + if (sc->adsr_cnt[note] != sc->adsr.off[1]) { + // x-fade to release + sc->adsr_amp[note] = adsr_env(sc, note); + } + sc->adsr_cnt[note] = sc->adsr.off[1] + 1; + } + } + else { + /* note-on + off in same cycle */ + sc->miditable[note] = 0; + sc->adsr_cnt[note] = 0; + sc->phase[note] = -10; + return; + } + + // synthesize actual sound + sc->synthesize(sc, note, vol, rs->freqs[note], n_samples, left, right); + + if (sc->adsr_cnt[note] == 0) { + //printf("Note %d,%d released\n", chn, note); + sc->miditable[note] = 0; + sc->adsr_amp[note] = 0; + sc->phase[note] = -10; + sc->keycomp--; + //printf("[off] Now %d keys active on chn %d\n", sc->keycomp, chn); + } +} + +/* synthesize a BUFFER_SIZE_SAMPLES's of audio-data */ +static void synth_fragment (void *synth, const size_t n_samples, float *left, float *right) { + RSSynthesizer* rs = (RSSynthesizer*)synth; + memset (left, 0, n_samples * sizeof(float)); + memset (right, 0, n_samples * sizeof(float)); + uint8_t keycomp = 0; + + for (int c=0; c < 16; ++c) { + for (int k=0; k < 128; ++k) { + if (rs->sc[c].miditable[k] == 0) continue; + process_key(synth, c, k, n_samples, left, right); + } + keycomp += rs->sc[c].keycomp; + } + +#if 1 // key-compression + float kctgt = 8.0 / (float)(keycomp + 7.0); + if (kctgt < .5) kctgt = .5; + if (kctgt > 1.0) kctgt = 1.0; + const float _w = rs->kcfilt; + for (unsigned int i=0; i < n_samples; ++i) { + rs->kcgain += _w * (kctgt - rs->kcgain); + left[i] *= rs->kcgain; + right[i] *= rs->kcgain; + } + rs->kcgain += 1e-12; +#endif +} + +static void synth_reset_channel(RSSynthChannel* sc) { + for (int k=0; k < 128; ++k) { + sc->adsr_cnt[k] = 0; + sc->adsr_amp[k] = 0; + sc->phase[k] = -10; + sc->miditable[k] = 0; + } + sc->keycomp = 0; +} + +static void synth_reset(void *synth) { + RSSynthesizer* rs = (RSSynthesizer*)synth; + for (int c=0; c < 16; ++c) { + synth_reset_channel(&(rs->sc[c])); + } + rs->kcgain = 0; +} + +static void synth_load(RSSynthChannel *sc, const double rate, + SynthFunction synthesize, + ADSRcfg const * const adsr) { + synth_reset_channel(sc); + init_adsr(&sc->adsr, rate, + adsr->tme[0], adsr->tme[1], adsr->tme[2], + adsr->vol[0], adsr->vol[1]); + sc->synthesize = synthesize; +} + + +/** + * internal abstraction of MIDI data handling + */ +static void synth_process_midi_event(void *synth, struct rmidi_event_t *ev) { + RSSynthesizer* rs = (RSSynthesizer*)synth; + switch(ev->type) { + case NOTE_ON: + if (rs->sc[ev->channel].miditable[ev->d.tone.note] <= 0) + rs->sc[ev->channel].miditable[ev->d.tone.note] = ev->d.tone.velocity; + break; + case NOTE_OFF: + if (rs->sc[ev->channel].miditable[ev->d.tone.note] > 0) + rs->sc[ev->channel].miditable[ev->d.tone.note] *= -1.0; + break; + case PROGRAM_CHANGE: + break; + case CONTROL_CHANGE: + if (ev->d.control.param == 0x00 || ev->d.control.param == 0x20) { + /* 0x00 and 0x20 are used for BANK select */ + break; + } else + if (ev->d.control.param == 121) { + /* reset all controllers */ + break; + } else + if (ev->d.control.param == 120 || ev->d.control.param == 123) { + /* Midi panic: 120: all sound off, 123: all notes off*/ + synth_reset_channel(&(rs->sc[ev->channel])); + break; + } else + if (ev->d.control.param >= 120) { + /* params 122-127 are reserved - skip them. */ + break; + } + break; + default: + break; + } +} + +/****************************************************************************** + * PUBLIC API (used by lv2.c) + */ + +/** + * align LV2 and internal synth buffers + * call synth_fragment as often as needed for the given LV2 buffer size + * + * @param synth synth-handle + * @param written samples written so far (offset in \ref out) + * @param nframes total samples to synthesize and write to the \out buffer + * @param out pointer to stereo output buffers + * @return end of buffer (written + nframes) + */ +static uint32_t synth_sound (void *synth, uint32_t written, const uint32_t nframes, float **out) { + RSSynthesizer* rs = (RSSynthesizer*)synth; + + while (written < nframes) { + uint32_t nremain = nframes - written; + + if (rs->boffset >= BUFFER_SIZE_SAMPLES) { + rs->boffset = 0; + synth_fragment(rs, BUFFER_SIZE_SAMPLES, rs->buf[0], rs->buf[1]); + } + + uint32_t nread = MIN(nremain, (BUFFER_SIZE_SAMPLES - rs->boffset)); + + memcpy(&out[0][written], &rs->buf[0][rs->boffset], nread*sizeof(float)); + memcpy(&out[1][written], &rs->buf[1][rs->boffset], nread*sizeof(float)); + + written += nread; + rs->boffset += nread; + } + return written; +} + +/** + * parse raw midi-data. + * + * @param synth synth-handle + * @param data 8bit midi message + * @param size number of bytes in the midi-message + */ +static void synth_parse_midi(void *synth, uint8_t *data, size_t size) { + if (size < 2 || size > 3) return; + // All messages need to be 3 bytes; except program-changes: 2bytes. + if (size == 2 && (data[0] & 0xf0) != 0xC0) return; + + struct rmidi_event_t ev; + + ev.channel = data[0]&0x0f; + switch (data[0] & 0xf0) { + case 0x80: + ev.type=NOTE_OFF; + ev.d.tone.note=data[1]&0x7f; + ev.d.tone.velocity=data[2]&0x7f; + break; + case 0x90: + ev.type=NOTE_ON; + ev.d.tone.note=data[1]&0x7f; + ev.d.tone.velocity=data[2]&0x7f; + break; + case 0xB0: + ev.type=CONTROL_CHANGE; + ev.d.control.param=data[1]&0x7f; + ev.d.control.value=data[2]&0x7f; + break; + case 0xC0: + ev.type=PROGRAM_CHANGE; + ev.d.control.value=data[1]&0x7f; + break; + default: + return; + } + synth_process_midi_event(synth, &ev); +} + +/** + * initialize the synth + * This should be called after synth_alloc() + * as soon as the sample-rate is known + * + * @param synth synth-handle + * @param rate sample-rate + */ +static void synth_init(void *synth, double rate) { + RSSynthesizer* rs = (RSSynthesizer*)synth; + rs->rate = rate; + rs->boffset = BUFFER_SIZE_SAMPLES; + const float tuning = 440; + for (int k=0; k < 128; k++) { + rs->freqs[k] = (2.0 * tuning / 32.0f) * powf(2, (k - 9.0) / 12.0) / rate; + assert(rs->freqs[k] < M_PI/2); // otherwise spatialization may phase out.. + } + rs->kcfilt = 12.0 / rate; + synth_reset(synth); + + for (int c=0; c < 16; c++) { + synth_load(&rs->sc[c], rate, &synthesize_sineP, &piano_adsr); + } +} + +/** + * Allocate data-structure, create a handle for all other synth_* functions. + * + * This data should be freeded with \ref synth_free when the synth is no + * longer needed. + * + * The synth can only be used after calling \rev synth_init as well. + * + * @return synth-handle + */ +static void * synth_alloc(void) { + return calloc(1, sizeof(RSSynthesizer)); +} + +/** + * release synth data structure + * @param synth synth-handle + */ +static void synth_free(void *synth) { + free(synth); +} +/* vi:set ts=8 sts=2 sw=2: */ diff --git a/libs/plugins/reasonablesynth.lv2/wscript b/libs/plugins/reasonablesynth.lv2/wscript new file mode 100644 index 0000000000..10dd3c21b8 --- /dev/null +++ b/libs/plugins/reasonablesynth.lv2/wscript @@ -0,0 +1,44 @@ +#!/usr/bin/env python +import os +import re +import shutil +import waflib.extras.autowaf as autowaf + +# Mandatory variables +top = '.' +out = 'build' + +def options(opt): + autowaf.set_options(opt) + +def configure(opt): + conf.load('compiler_c') + autowaf.configure(conf) + autowaf.set_c99_mode(conf) + autowaf.check_pkg(conf, 'lv2', atleast_version='1.4.1', + uselib_store='LV2_1_4_1') + +def build(bld): + bundle = 'reasonablesynth.lv2' + module_pat = re.sub('^lib', '', bld.env.cshlib_PATTERN) + module_ext = module_pat[module_pat.rfind('.'):] + + # Build RDF files + for i in ['manifest.ttl', 'reasonablesynth.ttl']: + bld(features = 'subst', + source = i + '.in', + target = '%s/%s' % (bundle, i), + install_path = '${LV2DIR}/%s' % bundle, + LIB_EXT = module_ext) + + # Build plugin library + obj = bld(features = 'c cshlib', + source = 'lv2.c', + dep_files = 'rsynth.c', + name = 'reasonablesynth', + target = '%s/reasonablesynth' % bundle, + install_path = '${LV2DIR}/%s' % bundle, + use = 'LV2_1_4_1') + obj.env.cshlib_PATTERN = module_pat + +# vi:set ts=4 sw=4 et: diff --git a/wscript b/wscript index a29d08eee2..85398b792c 100644 --- a/wscript +++ b/wscript @@ -35,6 +35,7 @@ children = [ 'libs/gtkmm2ext', 'libs/clearlooks-newer', 'libs/audiographer', + 'libs/plugins/reasonablesynth.lv2', 'gtk2_ardour', 'export', 'midi_maps', From 5b62e88fbf1022a48c50c9975c2a81a05ecdbb0c Mon Sep 17 00:00:00 2001 From: nick_m Date: Mon, 21 Oct 2013 00:19:43 +1100 Subject: [PATCH 05/95] Unify editor / mixer ordering. --- gtk2_ardour/editor_drag.cc | 2 +- gtk2_ardour/editor_group_tabs.cc | 6 -- gtk2_ardour/editor_group_tabs.h | 1 - gtk2_ardour/editor_ops.cc | 2 +- gtk2_ardour/editor_routes.cc | 50 +++------- gtk2_ardour/editor_routes.h | 2 +- gtk2_ardour/editor_selection.cc | 8 +- gtk2_ardour/group_tabs.cc | 22 ++--- gtk2_ardour/group_tabs.h | 1 - gtk2_ardour/meterbridge.cc | 8 +- gtk2_ardour/meterbridge.h | 4 +- gtk2_ardour/mixer_group_tabs.cc | 6 -- gtk2_ardour/mixer_group_tabs.h | 1 - gtk2_ardour/mixer_ui.cc | 44 +++------ gtk2_ardour/mixer_ui.h | 4 +- gtk2_ardour/port_group.cc | 2 +- gtk2_ardour/port_matrix.cc | 14 ++- gtk2_ardour/port_matrix.h | 2 +- gtk2_ardour/rc_option_editor.cc | 9 -- gtk2_ardour/route_ui.cc | 7 +- libs/ardour/ardour/rc_configuration_vars.h | 1 - libs/ardour/ardour/route.h | 15 ++- libs/ardour/ardour/session.h | 2 +- libs/ardour/ardour/types.h | 8 +- libs/ardour/enums.cc | 12 +-- libs/ardour/route.cc | 108 +++++---------------- libs/ardour/route_graph.cc | 4 +- libs/ardour/session.cc | 21 ++-- libs/ardour/session_state.cc | 16 --- 29 files changed, 112 insertions(+), 270 deletions(-) diff --git a/gtk2_ardour/editor_drag.cc b/gtk2_ardour/editor_drag.cc index 9c65892ebd..a7060dd433 100644 --- a/gtk2_ardour/editor_drag.cc +++ b/gtk2_ardour/editor_drag.cc @@ -422,7 +422,7 @@ struct EditorOrderTimeAxisViewSorter { RouteTimeAxisView* ra = dynamic_cast (a); RouteTimeAxisView* rb = dynamic_cast (b); assert (ra && rb); - return ra->route()->order_key (EditorSort) < rb->route()->order_key (EditorSort); + return ra->route()->order_key () < rb->route()->order_key (); } }; diff --git a/gtk2_ardour/editor_group_tabs.cc b/gtk2_ardour/editor_group_tabs.cc index 997a115b71..d02181c9b6 100644 --- a/gtk2_ardour/editor_group_tabs.cc +++ b/gtk2_ardour/editor_group_tabs.cc @@ -176,12 +176,6 @@ EditorGroupTabs::default_properties () const return plist; } -RouteSortOrderKey -EditorGroupTabs::order_key () const -{ - return EditorSort; -} - RouteList EditorGroupTabs::selected_routes () const { diff --git a/gtk2_ardour/editor_group_tabs.h b/gtk2_ardour/editor_group_tabs.h index a0021e4833..3d15ef73c3 100644 --- a/gtk2_ardour/editor_group_tabs.h +++ b/gtk2_ardour/editor_group_tabs.h @@ -37,7 +37,6 @@ private: } void add_menu_items (Gtk::Menu *, ARDOUR::RouteGroup *); PBD::PropertyList default_properties () const; - ARDOUR::RouteSortOrderKey order_key () const; ARDOUR::RouteList selected_routes () const; void sync_order_keys (); }; diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc index 6ada12220a..e0f9418268 100644 --- a/gtk2_ardour/editor_ops.cc +++ b/gtk2_ardour/editor_ops.cc @@ -5528,7 +5528,7 @@ Editor::split_region () struct EditorOrderRouteSorter { bool operator() (boost::shared_ptr a, boost::shared_ptr b) { - return a->order_key (EditorSort) < b->order_key (EditorSort); + return a->order_key () < b->order_key (); } }; diff --git a/gtk2_ardour/editor_routes.cc b/gtk2_ardour/editor_routes.cc index d0918a026a..a10e22f306 100644 --- a/gtk2_ardour/editor_routes.cc +++ b/gtk2_ardour/editor_routes.cc @@ -284,7 +284,7 @@ EditorRoutes::EditorRoutes (Editor* e) _display.set_enable_search (false); - Route::SyncOrderKeys.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::sync_treeview_from_order_keys, this, _1), gui_context()); + Route::SyncOrderKeys.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::sync_treeview_from_order_keys, this), gui_context()); } bool @@ -812,7 +812,7 @@ EditorRoutes::show_track_in_display (TimeAxisView& tv) void EditorRoutes::reset_remote_control_ids () { - if (Config->get_remote_model() != EditorOrdered || !_session || _session->deletion_in_progress()) { + if (Config->get_remote_model() == UserOrdered || !_session || _session->deletion_in_progress()) { return; } @@ -841,7 +841,7 @@ EditorRoutes::reset_remote_control_ids () uint32_t new_rid = (visible ? rid : invisible_key--); if (new_rid != route->remote_control_id()) { - route->set_remote_control_id_from_order_key (EditorSort, new_rid); + route->set_remote_control_id_explicit (new_rid); rid_change = true; } @@ -887,20 +887,20 @@ EditorRoutes::sync_order_keys_from_treeview () boost::shared_ptr route = (*ri)[_columns.route]; bool visible = (*ri)[_columns.visible]; - uint32_t old_key = route->order_key (EditorSort); + uint32_t old_key = route->order_key (); if (order != old_key) { - route->set_order_key (EditorSort, order); + route->set_order_key (order); changed = true; } - if ((Config->get_remote_model() == EditorOrdered) && !route->is_master() && !route->is_monitor()) { + if ((Config->get_remote_model() == MixerOrdered) && !route->is_master() && !route->is_monitor()) { uint32_t new_rid = (visible ? rid : invisible_key--); if (new_rid != route->remote_control_id()) { - route->set_remote_control_id_from_order_key (EditorSort, new_rid); + route->set_remote_control_id_explicit (new_rid); rid_change = true; } @@ -915,7 +915,7 @@ EditorRoutes::sync_order_keys_from_treeview () if (changed) { /* tell the world that we changed the editor sort keys */ - _session->sync_order_keys (EditorSort); + _session->sync_order_keys (); } if (rid_change) { @@ -925,37 +925,17 @@ EditorRoutes::sync_order_keys_from_treeview () } void -EditorRoutes::sync_treeview_from_order_keys (RouteSortOrderKey src) +EditorRoutes::sync_treeview_from_order_keys () { - /* Some route order key(s) for `src' has been changed, make sure that + /* Some route order key(s) have been changed, make sure that we update out tree/list model and GUI to reflect the change. */ - if (!_session || _session->deletion_in_progress()) { + if (_ignore_reorder || !_session || _session->deletion_in_progress()) { return; } - DEBUG_TRACE (DEBUG::OrderKeys, string_compose ("editor sync model from order keys, src = %1\n", enum_2_string (src))); - - if (src == MixerSort) { - - if (!Config->get_sync_all_route_ordering()) { - /* mixer sort keys changed - we don't care */ - return; - } - - DEBUG_TRACE (DEBUG::OrderKeys, "reset editor order key to match mixer\n"); - - /* mixer sort keys were changed, update the editor sort - * keys since "sync mixer+editor order" is enabled. - */ - - boost::shared_ptr r = _session->get_routes (); - - for (RouteList::iterator i = r->begin(); i != r->end(); ++i) { - (*i)->sync_order_keys (src); - } - } + DEBUG_TRACE (DEBUG::OrderKeys, "editor sync model from order keys.\n"); /* we could get here after either a change in the Mixer or Editor sort * order, but either way, the mixer order keys reflect the intended @@ -975,7 +955,7 @@ EditorRoutes::sync_treeview_from_order_keys (RouteSortOrderKey src) for (TreeModel::Children::iterator ri = rows.begin(); ri != rows.end(); ++ri, ++old_order) { boost::shared_ptr route = (*ri)[_columns.route]; - sorted_routes.push_back (RoutePlusOrderKey (route, old_order, route->order_key (EditorSort))); + sorted_routes.push_back (RoutePlusOrderKey (route, old_order, route->order_key ())); } SortByNewDisplayOrder cmp; @@ -1341,7 +1321,7 @@ struct EditorOrderRouteSorter { /* everything else before master */ return false; } - return a->order_key (EditorSort) < b->order_key (EditorSort); + return a->order_key () < b->order_key (); } }; @@ -1501,7 +1481,7 @@ EditorRoutes::move_selected_tracks (bool up) } for (leading = view_routes.begin(); leading != view_routes.end(); ++leading) { - uint32_t order = leading->second->order_key (EditorSort); + uint32_t order = leading->second->order_key (); neworder.push_back (order); } diff --git a/gtk2_ardour/editor_routes.h b/gtk2_ardour/editor_routes.h index 6118a2b057..e07a7787aa 100644 --- a/gtk2_ardour/editor_routes.h +++ b/gtk2_ardour/editor_routes.h @@ -72,7 +72,7 @@ private: void on_tv_solo_safe_toggled (std::string const &); void build_menu (); void show_menu (); - void sync_treeview_from_order_keys (ARDOUR::RouteSortOrderKey); + void sync_treeview_from_order_keys (); void route_deleted (Gtk::TreeModel::Path const &); void visible_changed (std::string const &); void active_changed (std::string const &); diff --git a/gtk2_ardour/editor_selection.cc b/gtk2_ardour/editor_selection.cc index e19afe375c..a26483e204 100644 --- a/gtk2_ardour/editor_selection.cc +++ b/gtk2_ardour/editor_selection.cc @@ -779,7 +779,7 @@ Editor::set_selected_regionview_from_click (bool press, Selection::Operation op) RouteTimeAxisView* closest = 0; int distance = INT_MAX; - int key = rtv->route()->order_key (EditorSort); + int key = rtv->route()->order_key (); for (RegionSelection::iterator x = selection->regions.begin(); x != selection->regions.end(); ++x) { @@ -794,7 +794,7 @@ Editor::set_selected_regionview_from_click (bool press, Selection::Operation op) if (result.second) { /* newly added to already_in_selection */ - int d = artv->route()->order_key (EditorSort); + int d = artv->route()->order_key (); d -= key; @@ -810,7 +810,7 @@ Editor::set_selected_regionview_from_click (bool press, Selection::Operation op) /* now add all tracks between that one and this one */ - int okey = closest->route()->order_key (EditorSort); + int okey = closest->route()->order_key (); if (okey > key) { swap (okey, key); @@ -820,7 +820,7 @@ Editor::set_selected_regionview_from_click (bool press, Selection::Operation op) RouteTimeAxisView* artv = dynamic_cast(*x); if (artv && artv != rtv) { - int k = artv->route()->order_key (EditorSort); + int k = artv->route()->order_key (); if (k >= okey && k <= key) { diff --git a/gtk2_ardour/group_tabs.cc b/gtk2_ardour/group_tabs.cc index b8d30dc989..2394b9a6c5 100644 --- a/gtk2_ardour/group_tabs.cc +++ b/gtk2_ardour/group_tabs.cc @@ -447,23 +447,15 @@ GroupTabs::un_subgroup (RouteGroup* g) } struct CollectSorter { - CollectSorter (RouteSortOrderKey key) : _key (key) {} - bool operator () (boost::shared_ptr a, boost::shared_ptr b) { - return a->order_key (_key) < b->order_key (_key); + return a->order_key () < b->order_key (); } - - RouteSortOrderKey _key; }; struct OrderSorter { - OrderSorter (RouteSortOrderKey key) : _key (key) {} - bool operator() (boost::shared_ptr a, boost::shared_ptr b) { - return a->order_key (_key) < b->order_key (_key); + return a->order_key () < b->order_key (); } - - RouteSortOrderKey _key; }; /** Collect all members of a RouteGroup so that they are together in the Editor or Mixer. @@ -473,19 +465,19 @@ void GroupTabs::collect (RouteGroup* g) { boost::shared_ptr group_routes = g->route_list (); - group_routes->sort (CollectSorter (order_key ())); + group_routes->sort (CollectSorter ()); int const N = group_routes->size (); RouteList::iterator i = group_routes->begin (); boost::shared_ptr routes = _session->get_routes (); - routes->sort (OrderSorter (order_key ())); + routes->sort (OrderSorter ()); RouteList::const_iterator j = routes->begin (); int diff = 0; int coll = -1; while (i != group_routes->end() && j != routes->end()) { - int const k = (*j)->order_key (order_key ()); + int const k = (*j)->order_key (); if (*i == *j) { @@ -496,14 +488,14 @@ GroupTabs::collect (RouteGroup* g) --diff; } - (*j)->set_order_key (order_key (), coll); + (*j)->set_order_key (coll); ++coll; ++i; } else { - (*j)->set_order_key (order_key (), k + diff); + (*j)->set_order_key (k + diff); } diff --git a/gtk2_ardour/group_tabs.h b/gtk2_ardour/group_tabs.h index 39ac42c9d5..d61358ead5 100644 --- a/gtk2_ardour/group_tabs.h +++ b/gtk2_ardour/group_tabs.h @@ -92,7 +92,6 @@ private: virtual void add_menu_items (Gtk::Menu *, ARDOUR::RouteGroup *) {} virtual PBD::PropertyList default_properties () const = 0; - virtual ARDOUR::RouteSortOrderKey order_key () const = 0; virtual ARDOUR::RouteList selected_routes () const = 0; virtual void sync_order_keys () = 0; diff --git a/gtk2_ardour/meterbridge.cc b/gtk2_ardour/meterbridge.cc index 8756089e00..4d2a0c7b3b 100644 --- a/gtk2_ardour/meterbridge.cc +++ b/gtk2_ardour/meterbridge.cc @@ -92,7 +92,7 @@ struct SignalOrderRouteSorter { /* everything comes before b */ return true; } - return a->order_key (MixerSort) < b->order_key (MixerSort); + return a->order_key () < b->order_key (); } }; @@ -138,7 +138,7 @@ Meterbridge::Meterbridge () signal_delete_event().connect (sigc::mem_fun (*this, &Meterbridge::hide_window)); signal_configure_event().connect (sigc::mem_fun (*ARDOUR_UI::instance(), &ARDOUR_UI::configure_handler)); - Route::SyncOrderKeys.connect (*this, invalidator (*this), boost::bind (&Meterbridge::sync_order_keys, this, _1), gui_context()); + Route::SyncOrderKeys.connect (*this, invalidator (*this), boost::bind (&Meterbridge::sync_order_keys, this), gui_context()); MeterStrip::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&Meterbridge::remove_strip, this, _1), gui_context()); MeterStrip::MetricChanged.connect (*this, invalidator (*this), boost::bind(&Meterbridge::resync_order, this), gui_context()); MeterStrip::ConfigurationChanged.connect (*this, invalidator (*this), boost::bind(&Meterbridge::queue_resize, this), gui_context()); @@ -637,7 +637,7 @@ Meterbridge::remove_strip (MeterStrip* strip) } void -Meterbridge::sync_order_keys (RouteSortOrderKey) +Meterbridge::sync_order_keys () { Glib::Threads::Mutex::Lock lm (_resync_mutex); @@ -776,7 +776,7 @@ Meterbridge::sync_order_keys (RouteSortOrderKey) void Meterbridge::resync_order() { - sync_order_keys(MixerSort); + sync_order_keys(); } void diff --git a/gtk2_ardour/meterbridge.h b/gtk2_ardour/meterbridge.h index 2fac91cd0a..1709455ae4 100644 --- a/gtk2_ardour/meterbridge.h +++ b/gtk2_ardour/meterbridge.h @@ -80,7 +80,7 @@ class Meterbridge : void remove_strip (MeterStrip *); void session_going_away (); - void sync_order_keys (ARDOUR::RouteSortOrderKey src); + void sync_order_keys (); void resync_order (); mutable Glib::Threads::Mutex _resync_mutex; @@ -107,7 +107,7 @@ class Meterbridge : /* everything comes before b */ return true; } - return a->order_key (ARDOUR::MixerSort) < b->order_key (ARDOUR::MixerSort); + return a->order_key () < b->order_key (); } }; diff --git a/gtk2_ardour/mixer_group_tabs.cc b/gtk2_ardour/mixer_group_tabs.cc index 4a56b01fcd..5878c3d3ac 100644 --- a/gtk2_ardour/mixer_group_tabs.cc +++ b/gtk2_ardour/mixer_group_tabs.cc @@ -170,12 +170,6 @@ MixerGroupTabs::default_properties () const return plist; } -RouteSortOrderKey -MixerGroupTabs::order_key () const -{ - return MixerSort; -} - RouteList MixerGroupTabs::selected_routes () const { diff --git a/gtk2_ardour/mixer_group_tabs.h b/gtk2_ardour/mixer_group_tabs.h index 0999dd9808..290e5a3958 100644 --- a/gtk2_ardour/mixer_group_tabs.h +++ b/gtk2_ardour/mixer_group_tabs.h @@ -36,7 +36,6 @@ private: } PBD::PropertyList default_properties () const; - ARDOUR::RouteSortOrderKey order_key () const; ARDOUR::RouteList selected_routes () const; void sync_order_keys (); diff --git a/gtk2_ardour/mixer_ui.cc b/gtk2_ardour/mixer_ui.cc index 7e8188cac9..8126a81e85 100644 --- a/gtk2_ardour/mixer_ui.cc +++ b/gtk2_ardour/mixer_ui.cc @@ -96,7 +96,7 @@ Mixer_UI::Mixer_UI () /* allow this window to become the key focus window */ set_flags (CAN_FOCUS); - Route::SyncOrderKeys.connect (*this, invalidator (*this), boost::bind (&Mixer_UI::sync_treeview_from_order_keys, this, _1), gui_context()); + Route::SyncOrderKeys.connect (*this, invalidator (*this), boost::bind (&Mixer_UI::sync_treeview_from_order_keys, this), gui_context()); scroller.set_can_default (true); set_default (scroller); @@ -408,7 +408,7 @@ Mixer_UI::remove_strip (MixerStrip* strip) void Mixer_UI::reset_remote_control_ids () { - if (Config->get_remote_model() != MixerOrdered || !_session || _session->deletion_in_progress()) { + if (Config->get_remote_model() == UserOrdered || !_session || _session->deletion_in_progress()) { return; } @@ -434,7 +434,7 @@ Mixer_UI::reset_remote_control_ids () uint32_t new_rid = (visible ? rid : invisible_key--); if (new_rid != route->remote_control_id()) { - route->set_remote_control_id_from_order_key (MixerSort, new_rid); + route->set_remote_control_id_explicit (new_rid); rid_change = true; } @@ -476,10 +476,10 @@ Mixer_UI::sync_order_keys_from_treeview () boost::shared_ptr route = (*ri)[track_columns.route]; bool visible = (*ri)[track_columns.visible]; - uint32_t old_key = route->order_key (MixerSort); + uint32_t old_key = route->order_key (); if (order != old_key) { - route->set_order_key (MixerSort, order); + route->set_order_key (order); changed = true; } @@ -488,7 +488,7 @@ Mixer_UI::sync_order_keys_from_treeview () uint32_t new_rid = (visible ? rid : invisible_key--); if (new_rid != route->remote_control_id()) { - route->set_remote_control_id_from_order_key (MixerSort, new_rid); + route->set_remote_control_id_explicit (new_rid); rid_change = true; } @@ -503,7 +503,7 @@ Mixer_UI::sync_order_keys_from_treeview () if (changed) { /* tell everyone that we changed the mixer sort keys */ - _session->sync_order_keys (MixerSort); + _session->sync_order_keys (); } if (rid_change) { @@ -513,33 +513,13 @@ Mixer_UI::sync_order_keys_from_treeview () } void -Mixer_UI::sync_treeview_from_order_keys (RouteSortOrderKey src) +Mixer_UI::sync_treeview_from_order_keys () { if (!_session || _session->deletion_in_progress()) { return; } - DEBUG_TRACE (DEBUG::OrderKeys, string_compose ("mixer sync model from order keys, src = %1\n", enum_2_string (src))); - - if (src == EditorSort) { - - if (!Config->get_sync_all_route_ordering()) { - /* editor sort keys changed - we don't care */ - return; - } - - DEBUG_TRACE (DEBUG::OrderKeys, "reset mixer order key to match editor\n"); - - /* editor sort keys were changed, update the mixer sort - * keys since "sync mixer+editor order" is enabled. - */ - - boost::shared_ptr r = _session->get_routes (); - - for (RouteList::iterator i = r->begin(); i != r->end(); ++i) { - (*i)->sync_order_keys (src); - } - } + DEBUG_TRACE (DEBUG::OrderKeys, "mixer sync model from order keys.\n"); /* we could get here after either a change in the Mixer or Editor sort * order, but either way, the mixer order keys reflect the intended @@ -559,7 +539,7 @@ Mixer_UI::sync_treeview_from_order_keys (RouteSortOrderKey src) for (TreeModel::Children::iterator ri = rows.begin(); ri != rows.end(); ++ri, ++old_order) { boost::shared_ptr route = (*ri)[track_columns.route]; - sorted_routes.push_back (RoutePlusOrderKey (route, old_order, route->order_key (MixerSort))); + sorted_routes.push_back (RoutePlusOrderKey (route, old_order, route->order_key ())); } SortByNewDisplayOrder cmp; @@ -1100,7 +1080,7 @@ struct SignalOrderRouteSorter { /* everything comes before b */ return true; } - return a->order_key (MixerSort) < b->order_key (MixerSort); + return a->order_key () < b->order_key (); } }; @@ -1122,7 +1102,7 @@ Mixer_UI::initial_track_display () add_strips (copy); } - _session->sync_order_keys (MixerSort); + _session->sync_order_keys (); redisplay_track_list (); } diff --git a/gtk2_ardour/mixer_ui.h b/gtk2_ardour/mixer_ui.h index 4f1c6823e7..db841535b7 100644 --- a/gtk2_ardour/mixer_ui.h +++ b/gtk2_ardour/mixer_ui.h @@ -250,9 +250,9 @@ class Mixer_UI : public Gtk::Window, public PBD::ScopedConnectionList, public AR Width _strip_width; void sync_order_keys_from_treeview (); - void sync_treeview_from_order_keys (ARDOUR::RouteSortOrderKey); + void sync_treeview_from_order_keys (); void reset_remote_control_ids (); - void reset_order_keys (ARDOUR::RouteSortOrderKey); + void reset_order_keys (); bool ignore_reorder; diff --git a/gtk2_ardour/port_group.cc b/gtk2_ardour/port_group.cc index 2a93cf6bee..213c818b0b 100644 --- a/gtk2_ardour/port_group.cc +++ b/gtk2_ardour/port_group.cc @@ -315,7 +315,7 @@ struct RouteIOs { class RouteIOsComparator { public: bool operator() (RouteIOs const & a, RouteIOs const & b) { - return a.route->order_key (EditorSort) < b.route->order_key (EditorSort); + return a.route->order_key () < b.route->order_key (); } }; diff --git a/gtk2_ardour/port_matrix.cc b/gtk2_ardour/port_matrix.cc index 2872ad6605..35e9a5cbd3 100644 --- a/gtk2_ardour/port_matrix.cc +++ b/gtk2_ardour/port_matrix.cc @@ -158,7 +158,7 @@ PortMatrix::init () _session->engine().PortRegisteredOrUnregistered.connect (_session_connections, invalidator (*this), boost::bind (&PortMatrix::setup_global_ports, this), gui_context()); /* watch for route order keys changing, which changes the order of things in our global ports list(s) */ - Route::SyncOrderKeys.connect (_session_connections, invalidator (*this), boost::bind (&PortMatrix::setup_global_ports_proxy, this, _1), gui_context()); + Route::SyncOrderKeys.connect (_session_connections, invalidator (*this), boost::bind (&PortMatrix::setup_global_ports_proxy, this), gui_context()); /* Part 3: other stuff */ @@ -619,15 +619,13 @@ PortMatrix::setup_global_ports () } void -PortMatrix::setup_global_ports_proxy (RouteSortOrderKey sk) +PortMatrix::setup_global_ports_proxy () { - if (sk == EditorSort) { - /* Avoid a deadlock by calling this in an idle handler: see IOSelector::io_changed_proxy - for a discussion. - */ + /* Avoid a deadlock by calling this in an idle handler: see IOSelector::io_changed_proxy + for a discussion. + */ - Glib::signal_idle().connect_once (sigc::mem_fun (*this, &PortMatrix::setup_global_ports)); - } + Glib::signal_idle().connect_once (sigc::mem_fun (*this, &PortMatrix::setup_global_ports)); } void diff --git a/gtk2_ardour/port_matrix.h b/gtk2_ardour/port_matrix.h index 2b5e9ce31d..09c334b5ef 100644 --- a/gtk2_ardour/port_matrix.h +++ b/gtk2_ardour/port_matrix.h @@ -188,7 +188,7 @@ private: void disassociate_all_on_channel (boost::weak_ptr, uint32_t, int); void disassociate_all_on_bundle (boost::weak_ptr, int); void setup_global_ports (); - void setup_global_ports_proxy (ARDOUR::RouteSortOrderKey); + void setup_global_ports_proxy (); void toggle_show_only_bundles (); bool on_scroll_event (GdkEventScroll *); boost::shared_ptr io_from_bundle (boost::shared_ptr) const; diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc index f9336cee31..43fd163d2c 100644 --- a/gtk2_ardour/rc_option_editor.cc +++ b/gtk2_ardour/rc_option_editor.cc @@ -1414,14 +1414,6 @@ RCOptionEditor::RCOptionEditor () sigc::mem_fun (*_rc_config, &RCConfiguration::set_update_editor_during_summary_drag) )); - add_option (_("Editor"), - new BoolOption ( - "sync-all-route-ordering", - _("Synchronise editor and mixer track order"), - sigc::mem_fun (*_rc_config, &RCConfiguration::get_sync_all_route_ordering), - sigc::mem_fun (*_rc_config, &RCConfiguration::set_sync_all_route_ordering) - )); - add_option (_("Editor"), new BoolOption ( "link-editor-and-mixer-selection", @@ -1830,7 +1822,6 @@ RCOptionEditor::RCOptionEditor () rm->add (UserOrdered, _("assigned by user")); rm->add (MixerOrdered, _("follows order of mixer")); - rm->add (EditorOrdered, _("follows order of editor")); add_option (_("Control Surfaces"), rm); diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc index 8cc1512d3b..ad5e3bfd94 100644 --- a/gtk2_ardour/route_ui.cc +++ b/gtk2_ardour/route_ui.cc @@ -1815,10 +1815,9 @@ RouteUI::open_remote_control_id_dialog () _route->remote_control_id(), (_route->is_master() ? _("the master bus") : _("the monitor bus")))); } else { - l->set_markup (string_compose (_("The remote control ID of %6 is: %3\n\n\n" - "Remote Control IDs are currently determined by track/bus ordering in %1\n\n" - "%4Use the User Interaction tab of the Preferences window if you want to change this%5"), - (Config->get_remote_model() == MixerOrdered ? _("the mixer") : _("the editor")), + l->set_markup (string_compose (_("The remote control ID of %5 is: %2\n\n\n" + "Remote Control IDs are currently determined by track/bus ordering in Ardour.\n\n" + "%3Use the User Interaction tab of the Preferences window if you want to change this%4"), (is_track() ? _("track") : _("bus")), _route->remote_control_id(), "", diff --git a/libs/ardour/ardour/rc_configuration_vars.h b/libs/ardour/ardour/rc_configuration_vars.h index 3c11304fdb..e1f8b42914 100644 --- a/libs/ardour/ardour/rc_configuration_vars.h +++ b/libs/ardour/ardour/rc_configuration_vars.h @@ -173,7 +173,6 @@ CONFIG_VARIABLE (bool, use_overlap_equivalency, "use-overlap-equivalency", false CONFIG_VARIABLE (bool, periodic_safety_backups, "periodic-safety-backups", true) CONFIG_VARIABLE (uint32_t, periodic_safety_backup_interval, "periodic-safety-backup-interval", 120) CONFIG_VARIABLE (float, automation_interval_msecs, "automation-interval-msecs", 30) -CONFIG_VARIABLE (bool, sync_all_route_ordering, "sync-all-route-ordering", true) CONFIG_VARIABLE (bool, only_copy_imported_files, "only-copy-imported-files", false) CONFIG_VARIABLE (bool, keep_tearoffs, "keep-tearoffs", false) CONFIG_VARIABLE (bool, new_plugins_active, "new-plugins-active", true) diff --git a/libs/ardour/ardour/route.h b/libs/ardour/ardour/route.h index 23f24cb275..83605d7413 100644 --- a/libs/ardour/ardour/route.h +++ b/libs/ardour/ardour/route.h @@ -101,10 +101,9 @@ class Route : public SessionObject, public Automatable, public RouteGroupMember, bool set_name (const std::string& str); static void set_name_in_state (XMLNode &, const std::string &); - uint32_t order_key (RouteSortOrderKey) const; - bool has_order_key (RouteSortOrderKey) const; - void set_order_key (RouteSortOrderKey, uint32_t); - void sync_order_keys (RouteSortOrderKey); + uint32_t order_key () const; + bool has_order_key () const; + void set_order_key (uint32_t); bool is_auditioner() const { return _flags & Auditioner; } bool is_master() const { return _flags & MasterOut; } @@ -426,7 +425,7 @@ class Route : public SessionObject, public Automatable, public RouteGroupMember, void set_remote_control_id (uint32_t id, bool notify_class_listeners = true); uint32_t remote_control_id () const; - void set_remote_control_id_from_order_key (RouteSortOrderKey, uint32_t order_key); + void set_remote_control_id_explicit (uint32_t order_key); /* for things concerned about *this* route's RID */ @@ -435,7 +434,7 @@ class Route : public SessionObject, public Automatable, public RouteGroupMember, /* for things concerned about *any* route's RID changes */ static PBD::Signal0 RemoteControlIDChange; - static PBD::Signal1 SyncOrderKeys; + static PBD::Signal0 SyncOrderKeys; bool has_external_redirects() const; @@ -546,8 +545,8 @@ class Route : public SessionObject, public Automatable, public RouteGroupMember, int set_state_2X (const XMLNode&, int); void set_processor_state_2X (XMLNodeList const &, int); - typedef std::map OrderKeys; - OrderKeys order_keys; + uint32_t _order_key; + bool _has_order_key; uint32_t _remote_control_id; void input_change_handler (IOChange, void *src); diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h index 8226f16866..4632d08fa7 100644 --- a/libs/ardour/ardour/session.h +++ b/libs/ardour/ardour/session.h @@ -242,7 +242,7 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi }; void notify_remote_id_change (); - void sync_order_keys (RouteSortOrderKey); + void sync_order_keys (); template void foreach_route (T *obj, void (T::*func)(Route&)); template void foreach_route (T *obj, void (T::*func)(boost::shared_ptr)); diff --git a/libs/ardour/ardour/types.h b/libs/ardour/ardour/types.h index ee43d1f30f..91b8888f52 100644 --- a/libs/ardour/ardour/types.h +++ b/libs/ardour/ardour/types.h @@ -353,11 +353,6 @@ namespace ARDOUR { PostFader }; - enum RouteSortOrderKey { - EditorSort, - MixerSort - }; - enum MonitorModel { HardwareMonitoring, ///< JACK does monitoring SoftwareMonitoring, ///< Ardour does monitoring @@ -419,8 +414,7 @@ namespace ARDOUR { enum RemoteModel { UserOrdered, - MixerOrdered, - EditorOrdered + MixerOrdered }; enum CrossfadeModel { diff --git a/libs/ardour/enums.cc b/libs/ardour/enums.cc index 2a38cd2c8a..72125f8772 100644 --- a/libs/ardour/enums.cc +++ b/libs/ardour/enums.cc @@ -95,7 +95,6 @@ setup_enum_writer () AutoState _AutoState; AutoStyle _AutoStyle; AutoConnectOption _AutoConnectOption; - RouteSortOrderKey _RouteSortOrderKey; Session::StateOfTheState _Session_StateOfTheState; Route::Flag _Route_Flag; Source::Flag _Source_Flag; @@ -281,8 +280,13 @@ setup_enum_writer () REGISTER_ENUM (UserOrdered); REGISTER_ENUM (MixerOrdered); - REGISTER_ENUM (EditorOrdered); REGISTER (_RemoteModel); + /* + * EditorOrdered has been deprecated + * since the removal of independent + * editor / mixer ordering. + */ + enum_writer.add_to_hack_table ("EditorOrdered", "MixerOrdered"); REGISTER_ENUM (FullCrossfade); REGISTER_ENUM (ShortCrossfade); @@ -434,10 +438,6 @@ setup_enum_writer () REGISTER_CLASS_ENUM (Route, MonitorOut); REGISTER_BITS (_Route_Flag); - REGISTER_ENUM (MixerSort); - REGISTER_ENUM (EditorSort); - REGISTER (_RouteSortOrderKey); - REGISTER_CLASS_ENUM (Source, Writable); REGISTER_CLASS_ENUM (Source, CanRename); REGISTER_CLASS_ENUM (Source, Broadcast); diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index f6af17b1b8..2f69c3340a 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -69,7 +69,7 @@ using namespace std; using namespace ARDOUR; using namespace PBD; -PBD::Signal1 Route::SyncOrderKeys; +PBD::Signal0 Route::SyncOrderKeys; PBD::Signal0 Route::RemoteControlIDChange; Route::Route (Session& sess, string name, Flag flg, DataType default_type) @@ -96,6 +96,7 @@ Route::Route (Session& sess, string name, Flag flg, DataType default_type) , _have_internal_generator (false) , _solo_safe (false) , _default_type (default_type) + , _has_order_key (false) , _remote_control_id (0) , _in_configure_processors (false) , _initial_io_setup (false) @@ -268,52 +269,19 @@ Route::remote_control_id() const } bool -Route::has_order_key (RouteSortOrderKey key) const +Route::has_order_key () const { - return (order_keys.find (key) != order_keys.end()); + return _has_order_key; } uint32_t -Route::order_key (RouteSortOrderKey key) const +Route::order_key () const { - OrderKeys::const_iterator i = order_keys.find (key); - - if (i == order_keys.end()) { - return 0; - } - - return i->second; + return _order_key; } void -Route::sync_order_keys (RouteSortOrderKey base) -{ - /* this is called after changes to 1 or more route order keys have been - * made, and we want to sync up. - */ - - OrderKeys::iterator i = order_keys.find (base); - - if (i == order_keys.end()) { - return; - } - - for (OrderKeys::iterator k = order_keys.begin(); k != order_keys.end(); ++k) { - - if (k->first != base) { - DEBUG_TRACE (DEBUG::OrderKeys, string_compose ("%1 set key for %2 to %3 from %4\n", - name(), - enum_2_string (k->first), - i->second, - enum_2_string (base))); - - k->second = i->second; - } - } -} - -void -Route::set_remote_control_id_from_order_key (RouteSortOrderKey /*key*/, uint32_t rid) +Route::set_remote_control_id_explicit (uint32_t rid) { if (is_master() || is_monitor() || is_auditioner()) { /* hard-coded remote IDs, or no remote ID */ @@ -337,18 +305,18 @@ Route::set_remote_control_id_from_order_key (RouteSortOrderKey /*key*/, uint32_t } void -Route::set_order_key (RouteSortOrderKey key, uint32_t n) +Route::set_order_key (uint32_t n) { - OrderKeys::iterator i = order_keys.find (key); + _has_order_key = true; - if (i != order_keys.end() && i->second == n) { + if (_order_key == n) { return; } - order_keys[key] = n; + _order_key = n; - DEBUG_TRACE (DEBUG::OrderKeys, string_compose ("%1 order key %2 set to %3\n", - name(), enum_2_string (key), order_key (key))); + DEBUG_TRACE (DEBUG::OrderKeys, string_compose ("%1 order key set to %2\n", + name(), order_key ())); _session.set_dirty (); } @@ -1909,24 +1877,8 @@ Route::state(bool full_state) node->add_property("route-group", _route_group->name()); } - string order_string; - OrderKeys::iterator x = order_keys.begin(); - - while (x != order_keys.end()) { - order_string += enum_2_string ((*x).first); - order_string += '='; - snprintf (buf, sizeof(buf), "%" PRId32, (*x).second); - order_string += buf; - - ++x; - - if (x == order_keys.end()) { - break; - } - - order_string += ':'; - } - node->add_property ("order-keys", order_string); + snprintf (buf, sizeof (buf), "%d", _order_key); + node->add_property ("order-key", buf); node->add_property ("self-solo", (_self_solo ? "yes" : "no")); snprintf (buf, sizeof (buf), "%d", _soloed_by_others_upstream); node->add_property ("soloed-by-upstream", buf); @@ -2127,7 +2079,11 @@ Route::set_state (const XMLNode& node, int version) set_active (yn, this); } - if ((prop = node.property (X_("order-keys"))) != 0) { + if ((prop = node.property (X_("order-key"))) != 0) { // New order key (no separate mixer/editor ordering) + set_order_key (atoi(prop->value())); + } + + if ((prop = node.property (X_("order-keys"))) != 0) { // Deprecated order keys int32_t n; @@ -2145,17 +2101,11 @@ Route::set_state (const XMLNode& node, int version) << endmsg; } else { string keyname = remaining.substr (0, equal); - RouteSortOrderKey sk; - if (keyname == "signal") { - sk = MixerSort; - } else if (keyname == "editor") { - sk = EditorSort; - } else { - sk = (RouteSortOrderKey) string_2_enum (remaining.substr (0, equal), sk); + if ((keyname == "EditorSort") || (keyname == "editor")) { + cerr << "Setting " << name() << " order key to " << n << " using saved Editor order." << endl; + set_order_key (n); } - - set_order_key (sk, n); } } @@ -2356,17 +2306,11 @@ Route::set_state_2X (const XMLNode& node, int version) << endmsg; } else { string keyname = remaining.substr (0, equal); - RouteSortOrderKey sk; - if (keyname == "signal") { - sk = MixerSort; - } else if (keyname == "editor") { - sk = EditorSort; - } else { - sk = (RouteSortOrderKey) string_2_enum (remaining.substr (0, equal), sk); + if (keyname == "EditorSort" || keyname == "editor") { + info << string_compose(_("Converting deprecated order key for %1 using Editor order %2"), name (), n) << endmsg; + set_order_key (n); } - - set_order_key (sk, n); } } diff --git a/libs/ardour/route_graph.cc b/libs/ardour/route_graph.cc index 13264ff9fa..ee02afef24 100644 --- a/libs/ardour/route_graph.cc +++ b/libs/ardour/route_graph.cc @@ -170,7 +170,7 @@ struct RouteRecEnabledComparator if (r1->record_enabled()) { if (r2->record_enabled()) { /* both rec-enabled, just use signal order */ - return r1->order_key (MixerSort) < r2->order_key (MixerSort); + return r1->order_key () < r2->order_key (); } else { /* r1 rec-enabled, r2 not rec-enabled, run r2 early */ return false; @@ -181,7 +181,7 @@ struct RouteRecEnabledComparator return true; } else { /* neither rec-enabled, use signal order */ - return r1->order_key (MixerSort) < r2->order_key (MixerSort); + return r1->order_key () < r2->order_key (); } } } diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index 0d078690f1..9e79ad305a 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -1699,7 +1699,7 @@ Session::resort_routes_using (boost::shared_ptr r) DEBUG_TRACE (DEBUG::Graph, "Routes resorted, order follows:\n"); for (RouteList::iterator i = r->begin(); i != r->end(); ++i) { DEBUG_TRACE (DEBUG::Graph, string_compose ("\t%1 signal order %2\n", - (*i)->name(), (*i)->order_key (MixerSort))); + (*i)->name(), (*i)->order_key ())); } #endif @@ -2396,15 +2396,13 @@ Session::add_routes_inner (RouteList& new_routes, bool input_auto_connect, bool ID in most situations. */ - if (!r->has_order_key (EditorSort)) { + if (!r->has_order_key ()) { if (r->is_auditioner()) { /* use an arbitrarily high value */ - r->set_order_key (EditorSort, UINT_MAX); - r->set_order_key (MixerSort, UINT_MAX); + r->set_order_key (UINT_MAX); } else { DEBUG_TRACE (DEBUG::OrderKeys, string_compose ("while adding, set %1 to order key %2\n", r->name(), order)); - r->set_order_key (EditorSort, order); - r->set_order_key (MixerSort, order); + r->set_order_key (order); order++; } } @@ -3715,7 +3713,7 @@ Session::RoutePublicOrderSorter::operator() (boost::shared_ptr a, boost:: if (b->is_monitor()) { return false; } - return a->order_key (MixerSort) < b->order_key (MixerSort); + return a->order_key () < b->order_key (); } bool @@ -4952,8 +4950,7 @@ Session::notify_remote_id_change () } switch (Config->get_remote_model()) { - case MixerSort: - case EditorSort: + case MixerOrdered: Route::RemoteControlIDChange (); /* EMIT SIGNAL */ break; default: @@ -4962,7 +4959,7 @@ Session::notify_remote_id_change () } void -Session::sync_order_keys (RouteSortOrderKey sort_key_changed) +Session::sync_order_keys () { if (deletion_in_progress()) { return; @@ -4974,9 +4971,9 @@ Session::sync_order_keys (RouteSortOrderKey sort_key_changed) opportunity to keep them in sync if they wish to. */ - DEBUG_TRACE (DEBUG::OrderKeys, string_compose ("Sync Order Keys, based on %1\n", enum_2_string (sort_key_changed))); + DEBUG_TRACE (DEBUG::OrderKeys, "Sync Order Keys.\n"); - Route::SyncOrderKeys (sort_key_changed); /* EMIT SIGNAL */ + Route::SyncOrderKeys (); /* EMIT SIGNAL */ DEBUG_TRACE (DEBUG::OrderKeys, "\tsync done\n"); } diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc index ec29f8a373..f3ad9d66dd 100644 --- a/libs/ardour/session_state.cc +++ b/libs/ardour/session_state.cc @@ -3444,22 +3444,6 @@ Session::config_changed (std::string p, bool ours) /* XXX DO SOMETHING HERE TO TELL THE GUI THAT WE NEED TO SET REMOTE ID'S */ - } else if (p == "sync-all-route-ordering") { - - /* sync to editor order unless mixer is used for remote IDs - */ - - switch (Config->get_remote_model()) { - case UserOrdered: - sync_order_keys (EditorSort); - break; - case EditorOrdered: - sync_order_keys (EditorSort); - break; - case MixerOrdered: - sync_order_keys (MixerSort); - } - } else if (p == "initial-program-change") { if (_mmc->output_port() && Config->get_initial_program_change() >= 0) { From d6e2e3402556ad0818be7f89dd0e5ac57907bac8 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 20 Oct 2013 15:28:13 +0200 Subject: [PATCH 06/95] fix typo (rsynth.lv2 configure) --- libs/plugins/reasonablesynth.lv2/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/plugins/reasonablesynth.lv2/wscript b/libs/plugins/reasonablesynth.lv2/wscript index 10dd3c21b8..ba2ce8c9ab 100644 --- a/libs/plugins/reasonablesynth.lv2/wscript +++ b/libs/plugins/reasonablesynth.lv2/wscript @@ -11,7 +11,7 @@ out = 'build' def options(opt): autowaf.set_options(opt) -def configure(opt): +def configure(conf): conf.load('compiler_c') autowaf.configure(conf) autowaf.set_c99_mode(conf) From 9faae9c8a389d474421a8d34b8077e703900b5f9 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 20 Oct 2013 17:24:59 +0200 Subject: [PATCH 07/95] bundled LV2 plugin build and deployment --- libs/plugins/reasonablesynth.lv2/lv2.c | 2 +- .../reasonablesynth.lv2/manifest.ttl.in | 3 +- .../reasonablesynth.ttl.in | 3 +- libs/plugins/reasonablesynth.lv2/wscript | 39 ++++++++++--------- tools/linux_packaging/build | 3 ++ tools/osx_packaging/osx_build | 3 ++ 6 files changed, 30 insertions(+), 23 deletions(-) diff --git a/libs/plugins/reasonablesynth.lv2/lv2.c b/libs/plugins/reasonablesynth.lv2/lv2.c index 85aa968e8f..159f422c85 100644 --- a/libs/plugins/reasonablesynth.lv2/lv2.c +++ b/libs/plugins/reasonablesynth.lv2/lv2.c @@ -29,7 +29,7 @@ #include "lv2/lv2plug.in/ns/ext/urid/urid.h" #include "lv2/lv2plug.in/ns/ext/midi/midi.h" -#define RSY_URI "http://gareus.org/oss/lv2/reasonablesynth" +#define RSY_URI "https://community.ardour.org/node/7596" /* the synth interface */ static void * synth_alloc (void); diff --git a/libs/plugins/reasonablesynth.lv2/manifest.ttl.in b/libs/plugins/reasonablesynth.lv2/manifest.ttl.in index ad0cff08fa..92b20b40b8 100644 --- a/libs/plugins/reasonablesynth.lv2/manifest.ttl.in +++ b/libs/plugins/reasonablesynth.lv2/manifest.ttl.in @@ -1,8 +1,7 @@ @prefix lv2: . @prefix rdfs: . -@prefix ui: . - + a lv2:Plugin ; lv2:binary ; rdfs:seeAlso . diff --git a/libs/plugins/reasonablesynth.lv2/reasonablesynth.ttl.in b/libs/plugins/reasonablesynth.lv2/reasonablesynth.ttl.in index 2b8861f3d6..fe4cddbad4 100644 --- a/libs/plugins/reasonablesynth.lv2/reasonablesynth.ttl.in +++ b/libs/plugins/reasonablesynth.lv2/reasonablesynth.ttl.in @@ -5,7 +5,6 @@ @prefix rdf: . @prefix rdfs: . @prefix pg: . -@prefix units: . @prefix urid: . @@ -14,7 +13,7 @@ foaf:mbox ; foaf:homepage . - + a lv2:Plugin, lv2:InstrumentPlugin, doap:Project; doap:license ; doap:maintainer ; diff --git a/libs/plugins/reasonablesynth.lv2/wscript b/libs/plugins/reasonablesynth.lv2/wscript index ba2ce8c9ab..797418c37f 100644 --- a/libs/plugins/reasonablesynth.lv2/wscript +++ b/libs/plugins/reasonablesynth.lv2/wscript @@ -15,30 +15,33 @@ def configure(conf): conf.load('compiler_c') autowaf.configure(conf) autowaf.set_c99_mode(conf) - autowaf.check_pkg(conf, 'lv2', atleast_version='1.4.1', - uselib_store='LV2_1_4_1') + if Options.options.lv2: + autowaf.check_pkg(conf, 'lv2', atleast_version='1.4.0', + uselib_store='LV2_1_4_0') def build(bld): bundle = 'reasonablesynth.lv2' module_pat = re.sub('^lib', '', bld.env.cshlib_PATTERN) module_ext = module_pat[module_pat.rfind('.'):] - # Build RDF files - for i in ['manifest.ttl', 'reasonablesynth.ttl']: - bld(features = 'subst', - source = i + '.in', - target = '%s/%s' % (bundle, i), - install_path = '${LV2DIR}/%s' % bundle, - LIB_EXT = module_ext) + if bld.is_defined ('HAVE_LV2'): + # Build RDF files + for i in ['manifest.ttl', 'reasonablesynth.ttl']: + bld(features = 'subst', + source = i + '.in', + target = '../../LV2/%s/%s' % (bundle, i), + install_path = '${LV2DIR}/%s' % bundle, + LIB_EXT = module_ext) - # Build plugin library - obj = bld(features = 'c cshlib', - source = 'lv2.c', - dep_files = 'rsynth.c', - name = 'reasonablesynth', - target = '%s/reasonablesynth' % bundle, - install_path = '${LV2DIR}/%s' % bundle, - use = 'LV2_1_4_1') - obj.env.cshlib_PATTERN = module_pat + # Build plugin library + obj = bld(features = 'c cshlib', + source = 'lv2.c', + dep_files = 'rsynth.c', + name = 'reasonablesynth', + target = '../../LV2/%s/reasonablesynth' % bundle, + install_path = '${LV2DIR}/%s' % bundle, + use = 'LV2_1_4_0' + ) + obj.env.cshlib_PATTERN = module_pat # vi:set ts=4 sw=4 et: diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build index 3bf793a637..e7f7d8b6dd 100755 --- a/tools/linux_packaging/build +++ b/tools/linux_packaging/build @@ -534,6 +534,9 @@ cp -R ../../gtk2_ardour/splash.png $Shared cp -R ../../gtk2_ardour/small-splash.png $Shared cp -R ../../gtk2_ardour/ArdourMono.ttf $Shared +# install bundled LV2s to /lib/LV2/ +cp -R $BUILD_ROOT/libs/LV2 $APPLIB/ + # go through and recursively remove any .svn dirs in the bundle for svndir in `find $APPDIR -name .svn -type d`; do rm -rf $svndir diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build index 276eb90fe5..e3e4a23915 100755 --- a/tools/osx_packaging/osx_build +++ b/tools/osx_packaging/osx_build @@ -417,6 +417,9 @@ for svndir in `find $APPDIR -name .svn -type dir`; do rm -rf $svndir done +# install bundled LV2s to /Contents/lib/LV2/ +cp -R $BUILD_ROOT/libs/LV2 $Frameworks/ + # now fix up the executables echo "Fixing up executable dependency names ..." executables=$MAIN_EXECUTABLE From 78e3864c5d065aff26be30cbb2b2cd3651d52ffc Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 20 Oct 2013 17:29:03 +0200 Subject: [PATCH 08/95] add missing waflib include to rsynth.lv2 --- libs/plugins/reasonablesynth.lv2/wscript | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/plugins/reasonablesynth.lv2/wscript b/libs/plugins/reasonablesynth.lv2/wscript index 797418c37f..b534e2011b 100644 --- a/libs/plugins/reasonablesynth.lv2/wscript +++ b/libs/plugins/reasonablesynth.lv2/wscript @@ -3,6 +3,7 @@ import os import re import shutil import waflib.extras.autowaf as autowaf +from waflib import Options # Mandatory variables top = '.' From 53bf1a65e8b0ac701fb101233a127006a0e5c9a1 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Wed, 31 Jul 2013 19:38:32 +1000 Subject: [PATCH 09/95] Fix two minor memory leaks in pending state dialog --- gtk2_ardour/ardour_ui.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index 3ee2c95689..ec911a4fcd 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -3737,8 +3737,8 @@ ARDOUR_UI::session_dialog (std::string msg) int ARDOUR_UI::pending_state_dialog () { - HBox* hbox = new HBox(); - Image* image = new Image (Stock::DIALOG_QUESTION, ICON_SIZE_DIALOG); + HBox* hbox = manage (new HBox()); + Image* image = manage (new Image (Stock::DIALOG_QUESTION, ICON_SIZE_DIALOG)); ArdourDialog dialog (_("Crash Recovery"), true); Label message (string_compose (_("\ This session appears to have been in the\n\ From b540d0e4bc858c22395c1960cf07f006cff5da01 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Wed, 31 Jul 2013 19:53:28 +1000 Subject: [PATCH 10/95] Fix check button handling in Memory Warning Dialog --- gtk2_ardour/ardour_ui.cc | 15 +++++---------- gtk2_ardour/ardour_ui.h | 1 - 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index ec911a4fcd..4902968db8 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -827,13 +827,6 @@ ARDOUR_UI::starting () return 0; } -void -ARDOUR_UI::no_memory_warning () -{ - XMLNode node (X_("no-memory-warning")); - Config->add_instant_xml (node); -} - void ARDOUR_UI::check_memory_locking () { @@ -890,9 +883,6 @@ ARDOUR_UI::check_memory_locking () VBox* vbox = msg.get_vbox(); HBox hbox; CheckButton cb (_("Do not show this window again")); - - cb.signal_toggled().connect (sigc::mem_fun (*this, &ARDOUR_UI::no_memory_warning)); - hbox.pack_start (cb, true, false); vbox->pack_start (hbox); cb.show(); @@ -903,6 +893,11 @@ ARDOUR_UI::check_memory_locking () editor->ensure_float (msg); msg.run (); + + if (cb.get_active()) { + XMLNode node (X_("no-memory-warning")); + Config->add_instant_xml (node); + } } } } diff --git a/gtk2_ardour/ardour_ui.h b/gtk2_ardour/ardour_ui.h index 0253c1ec0a..ff324fd6f9 100644 --- a/gtk2_ardour/ardour_ui.h +++ b/gtk2_ardour/ardour_ui.h @@ -692,7 +692,6 @@ class ARDOUR_UI : public Gtkmm2ext::UI, public ARDOUR::SessionHandlePtr bool first_idle (); - void no_memory_warning (); void check_memory_locking (); bool check_audioengine(); From 28525d7b6907a7a7a33beb4197354c776cec0272 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Thu, 15 Aug 2013 20:35:33 +1000 Subject: [PATCH 11/95] Forward declare NSM_Client class in ardour_ui.h nsm.h pulls in winsock2.h and with the mingw build and it causes endless warnings from the compiler --- gtk2_ardour/ardour_ui.cc | 1 + gtk2_ardour/ardour_ui.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index 4902968db8..e3c446ecc2 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -101,6 +101,7 @@ typedef uint64_t microseconds_t; #include "missing_plugin_dialog.h" #include "mixer_ui.h" #include "mouse_cursors.h" +#include "nsm.h" #include "opts.h" #include "pingback.h" #include "processor_box.h" diff --git a/gtk2_ardour/ardour_ui.h b/gtk2_ardour/ardour_ui.h index ff324fd6f9..20edfe03eb 100644 --- a/gtk2_ardour/ardour_ui.h +++ b/gtk2_ardour/ardour_ui.h @@ -72,7 +72,6 @@ #include "ardour_window.h" #include "editing.h" #include "meterbridge.h" -#include "nsm.h" #include "ui_config.h" #include "enums.h" #include "visibility_group.h" @@ -105,6 +104,7 @@ class SpeakerDialog; class ThemeManager; class TimeInfoBox; class MidiTracer; +class NSM_Client; class LevelMeterHBox; class GlobalPortMatrixWindow; class GUIObjectState; From 5d8425c3df9cf8020508e5de73ad7d9cfb2ce97e Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Fri, 11 Oct 2013 13:59:12 +1000 Subject: [PATCH 12/95] Remove random character at start of wscript file --- libs/ardour/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/wscript b/libs/ardour/wscript index e91d019dd5..4d569837bb 100644 --- a/libs/ardour/wscript +++ b/libs/ardour/wscript @@ -1,4 +1,4 @@ -1#!/usr/bin/env python +#!/usr/bin/env python from waflib.extras import autowaf as autowaf from waflib import Options import os From 3e4b60872414b26bcc9d7632f91364f5246e1692 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 21 Oct 2013 11:24:31 -0400 Subject: [PATCH 13/95] fix endless messages about MIDI events being dropped. track-owned MIDI port buffers (at the Ardour level) get ::flush_buffers() called twice, once by Delivery::flush_buffers() which is called at the end of MidiTrack::rol() to push data out in graph order, and then finally as a last-chance effort in PortManager::cycle_end(). This should not cause a repeated attempt to write the same data, but it was. Fixed by marking the buffer empty once its data has been flushed into a backend port buffer. --- libs/ardour/midi_port.cc | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/libs/ardour/midi_port.cc b/libs/ardour/midi_port.cc index de2263fad6..ae168356b6 100644 --- a/libs/ardour/midi_port.cc +++ b/libs/ardour/midi_port.cc @@ -174,12 +174,21 @@ MidiPort::flush_buffers (pframes_t nframes) { if (sends_output ()) { - void* port_buffer = port_engine.get_buffer (_port_handle, nframes); + void* port_buffer = 0; if (_resolve_required) { + port_buffer = port_engine.get_buffer (_port_handle, nframes); /* resolve all notes at the start of the buffer */ resolve_notes (port_buffer, 0); _resolve_required = false; + } + + if (_buffer->empty()) { + return; + } + + if (!port_buffer) { + port_buffer = port_engine.get_buffer (_port_handle, nframes); } for (MidiBuffer::iterator i = _buffer->begin(); i != _buffer->end(); ++i) { @@ -201,6 +210,11 @@ MidiPort::flush_buffers (pframes_t nframes) << " + " << _port_buffer_offset << endl; } } + + /* done.. the data has moved to the port buffer, mark it so + */ + + _buffer->clear (); } } From 613fc12e7325d15a586b5bf8013a78d3654e80d7 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 21 Oct 2013 11:33:38 -0400 Subject: [PATCH 14/95] add default sample rate and buffer size methods to AudioBackend --- libs/ardour/ardour/audio_backend.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/libs/ardour/ardour/audio_backend.h b/libs/ardour/ardour/audio_backend.h index cbe0bfce50..21f050afdd 100644 --- a/libs/ardour/ardour/audio_backend.h +++ b/libs/ardour/ardour/audio_backend.h @@ -117,6 +117,17 @@ class AudioBackend : public PortEngine { * at any time. */ virtual std::vector available_sample_rates (const std::string& device) const = 0; + + /* Returns the default sample rate that will be shown to the user when + * configuration options are first presented. If the derived class + * needs or wants to override this, it can. It also MUST override this + * if there is any chance that an SR of 44.1kHz is not in the list + * returned by available_sample_rates() + */ + virtual float default_sample_rate () const { + return 44100.0; + } + /** Returns a collection of uint32 identifying buffer sizes that are * potentially usable with the hardware identified by @param device. * Any of these values may be supplied in other calls to this backend @@ -126,6 +137,16 @@ class AudioBackend : public PortEngine { */ virtual std::vector available_buffer_sizes (const std::string& device) const = 0; + /* Returns the default buffer size that will be shown to the user when + * configuration options are first presented. If the derived class + * needs or wants to override this, it can. It also MUST override this + * if there is any chance that a buffer size of 1024 is not in the list + * returned by available_buffer_sizes() + */ + virtual uint32_t default_buffer_size () const { + return 1024; + } + /** Returns the maximum number of input channels that are potentially * usable with the hardware identified by @param device. Any number from 1 * to the value returned may be supplied in other calls to this backend as From f1a6735ca4f36b5291b472463b979df01300cbac Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 21 Oct 2013 11:40:46 -0400 Subject: [PATCH 15/95] use new default SR + bufsize values in engine dialog --- gtk2_ardour/engine_dialog.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/engine_dialog.cc b/gtk2_ardour/engine_dialog.cc index b6306ae285..37c29f4187 100644 --- a/gtk2_ardour/engine_dialog.cc +++ b/gtk2_ardour/engine_dialog.cc @@ -822,7 +822,7 @@ EngineControl::EngineControl () set_popdown_strings (sample_rate_combo, s); if (desired.empty()) { - sample_rate_combo.set_active_text (s.front()); + sample_rate_combo.set_active_text (rate_as_string (backend->default_sample_rate())); } else { sample_rate_combo.set_active_text (desired); } @@ -859,7 +859,7 @@ EngineControl::EngineControl () buffer_size_combo.set_sensitive (true); set_popdown_strings (buffer_size_combo, s); - buffer_size_combo.set_active_text (s.front()); + buffer_size_combo.set_active_text (bufsize_as_string (backend->default_buffer_size())); show_buffer_duration (); } else { buffer_size_combo.set_sensitive (false); From cfe42bc4ea9a5a6234f43c173e14fdd89af39589 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 21 Oct 2013 16:24:24 -0400 Subject: [PATCH 16/95] fix issues with recording while synced to JACK (non-pure-virtual method added to AudioBackend) and remove pause() from AudioEngine/AudioBackend APIs --- libs/ardour/ardour/audio_backend.h | 29 ++++++------- libs/ardour/ardour/audioengine.h | 1 - libs/ardour/audioengine.cc | 17 -------- libs/ardour/engine_slave.cc | 28 ++++--------- libs/backends/jack/jack_audiobackend.cc | 55 +++++++++++++++++++------ libs/backends/jack/jack_audiobackend.h | 5 ++- libs/backends/jack/jack_session.cc | 1 + 7 files changed, 71 insertions(+), 65 deletions(-) diff --git a/libs/ardour/ardour/audio_backend.h b/libs/ardour/ardour/audio_backend.h index 21f050afdd..26ced33885 100644 --- a/libs/ardour/ardour/audio_backend.h +++ b/libs/ardour/ardour/audio_backend.h @@ -327,20 +327,6 @@ class AudioBackend : public PortEngine { */ virtual int stop () = 0; - /** Temporarily cease using the device named in the most recent call to set_parameters(). - * - * If the function is successfully called, no subsequent calls to the - * process_callback() of @param engine will be made after the function - * returns, until start() is called again. - * - * The backend will retain its existing parameter configuration after a successful - * return, and does NOT require any calls to set hardware parameters before it can be - * start()-ed again. - * - * Return zero if successful, 1 if the device is not in use, negative values on error - */ - virtual int pause () = 0; - /** While remaining connected to the device, and without changing its * configuration, start (or stop) calling the process_callback() of @param engine * without waiting for the device. Once process_callback() has returned, it @@ -478,6 +464,21 @@ class AudioBackend : public PortEngine { virtual void update_latencies () = 0; + /** Set @param speed and @param position to the current speed and position + * indicated by some transport sync signal. Return whether the current + * transport state is pending, or finalized. + * + * Derived classes only need implement this if they provide some way to + * sync to a transport sync signal (e.g. Sony 9 Pin) that is not + * handled by Ardour itself (LTC and MTC are both handled by Ardour). + * The canonical example is JACK Transport. + */ + virtual bool speed_and_position (double& speed, framepos_t& position) { + speed = 0.0; + position = 0; + return false; + } + protected: AudioEngine& engine; }; diff --git a/libs/ardour/ardour/audioengine.h b/libs/ardour/ardour/audioengine.h index d5dcbffe2b..7c05f40b82 100644 --- a/libs/ardour/ardour/audioengine.h +++ b/libs/ardour/ardour/audioengine.h @@ -85,7 +85,6 @@ public: int start (bool for_latency_measurement=false); int stop (bool for_latency_measurement=false); - int pause (); int freewheel (bool start_stop); float get_cpu_load() const ; void transport_start (); diff --git a/libs/ardour/audioengine.cc b/libs/ardour/audioengine.cc index c2224a8b5e..45b8bbf757 100644 --- a/libs/ardour/audioengine.cc +++ b/libs/ardour/audioengine.cc @@ -662,23 +662,6 @@ AudioEngine::stop (bool for_latency) return 0; } -int -AudioEngine::pause () -{ - if (!_backend) { - return 0; - } - - if (_backend->pause ()) { - return -1; - } - - _running = false; - - Stopped(); /* EMIT SIGNAL */ - return 0; -} - int AudioEngine::freewheel (bool start_stop) { diff --git a/libs/ardour/engine_slave.cc b/libs/ardour/engine_slave.cc index eb55c9ba54..849b7320d3 100644 --- a/libs/ardour/engine_slave.cc +++ b/libs/ardour/engine_slave.cc @@ -21,6 +21,7 @@ #include #include "ardour/audioengine.h" +#include "ardour/audio_backend.h" #include "ardour/slave.h" using namespace std; @@ -54,26 +55,13 @@ Engine_Slave::ok() const bool Engine_Slave::speed_and_position (double& sp, framepos_t& position) { - switch (engine.transport_state()) { - case TransportStopped: - speed = 0; - _starting = false; - break; - case TransportRolling: - speed = 1.0; - _starting = false; - break; - case TransportLooping: - speed = 1.0; - _starting = false; - break; - case TransportStarting: - _starting = true; - // don't adjust speed here, just leave it as it was - break; - } + boost::shared_ptr backend = engine.current_backend(); - sp = speed; - position = engine.transport_frame(); + if (backend) { + _starting = backend->speed_and_position (sp, position); + } else { + _starting = false; + } + return true; } diff --git a/libs/backends/jack/jack_audiobackend.cc b/libs/backends/jack/jack_audiobackend.cc index ff76486bad..7a9b993251 100644 --- a/libs/backends/jack/jack_audiobackend.cc +++ b/libs/backends/jack/jack_audiobackend.cc @@ -581,18 +581,6 @@ JACKAudioBackend::stop () return 0; } -int -JACKAudioBackend::pause () -{ - GET_PRIVATE_JACK_POINTER_RET (_priv_jack, -1); - - if (_priv_jack) { - jack_deactivate (_priv_jack); - } - - return 0; -} - int JACKAudioBackend::freewheel (bool onoff) { @@ -1131,3 +1119,46 @@ JACKAudioBackend::set_midi_option (const string& opt) _target_midi_option = opt; return 0; } + +bool +JACKAudioBackend::speed_and_position (double& speed, framepos_t& position) +{ + jack_position_t pos; + jack_transport_state_t state; + bool starting; + + /* this won't be called if the port engine in use is not JACK, so we do + not have to worry about the type of PortEngine::private_handle() + */ + + speed = 0; + position = 0; + + GET_PRIVATE_JACK_POINTER_RET (_priv_jack, true); + + state = jack_transport_query (_priv_jack, &pos); + + switch (state) { + case JackTransportStopped: + speed = 0; + starting = false; + break; + case JackTransportRolling: + speed = 1.0; + starting = false; + break; + case JackTransportLooping: + speed = 1.0; + starting = false; + break; + case JackTransportStarting: + starting = true; + // don't adjust speed here, just leave it as it was + break; + default: + std::cerr << "WARNING: Unknown JACK transport state: " << state << std::endl; + } + + position = pos.frame; + return starting; +} diff --git a/libs/backends/jack/jack_audiobackend.h b/libs/backends/jack/jack_audiobackend.h index 3c48be5ead..c59ddb5c67 100644 --- a/libs/backends/jack/jack_audiobackend.h +++ b/libs/backends/jack/jack_audiobackend.h @@ -91,7 +91,6 @@ class JACKAudioBackend : public AudioBackend { int _start (bool for_latency_measurement); int stop (); - int pause (); int freewheel (bool); float cpu_load() const; @@ -183,6 +182,10 @@ class JACKAudioBackend : public AudioBackend { void* get_buffer (PortHandle, pframes_t); + /* transport sync */ + + bool speed_and_position (double& sp, framepos_t& pos); + private: boost::shared_ptr _jack_connection; bool _running; diff --git a/libs/backends/jack/jack_session.cc b/libs/backends/jack/jack_session.cc index ca51dafccc..7cd7f6c62b 100644 --- a/libs/backends/jack/jack_session.cc +++ b/libs/backends/jack/jack_session.cc @@ -23,6 +23,7 @@ #include #include +#include #include "ardour/audioengine.h" #include "ardour/filename_extensions.h" From 17cd6b4044bac5bb348d6a2f12caa2fa81d76327 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 22 Oct 2013 11:08:31 -0400 Subject: [PATCH 17/95] fix locale path in OS X bundles --- gtk2_ardour/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/main.cc b/gtk2_ardour/main.cc index 9407b05915..d01bca2a62 100644 --- a/gtk2_ardour/main.cc +++ b/gtk2_ardour/main.cc @@ -153,7 +153,7 @@ fixup_bundle_environment (int, char* []) vector lpath; lpath.push_back (bundle_dir); - lpath.push_back ("share"); + lpath.push_back ("Resources"); lpath.push_back ("locale"); localedir = strdup (Glib::build_filename (lpath).c_str()); } From d92feec3f3a787f9d36de25f4a0f5f77f4028602 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 22 Oct 2013 11:08:50 -0400 Subject: [PATCH 18/95] fix bundling of .mo files in OS X bundles --- tools/osx_packaging/osx_build | 47 +++++++++++++++++++++++++---------- 1 file changed, 34 insertions(+), 13 deletions(-) diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build index e3e4a23915..c47e64483c 100755 --- a/tools/osx_packaging/osx_build +++ b/tools/osx_packaging/osx_build @@ -219,21 +219,42 @@ fi # copy locale files if test x$WITH_NLS != x ; then echo "NLS support ..." - echo "I hope you remembered to run scons msgupdate!" + echo "I hope you remembered to run waf i18n" LINGUAS= - for file in $BUILD_ROOT/gtk2_ardour/*.mo - do - lang=`basename $file | sed 's/\.mo//'` - mkdir -p $Locale/$lang/LC_MESSAGES - cp $file $Locale/$lang/LC_MESSAGES/gtk2_ardour.mo - LINGUAS="$LINGUAS $lang" - done - for file in $BUILD_ROOT/libs/ardour/*.mo - do - lang=`basename $file | sed 's/\.mo//'` - mkdir -p $Locale/$lang/LC_MESSAGES - cp $file $Locale/$lang/LC_MESSAGES/libardour.mo + + for pkg in gtk2_ardour libs/ardour libs/gtkmm2ext ; do + files=`find ../../$pkg -name "*.mo"` + + # + # the package name is appended with a number so that + # it can be parallel installed during a regular install + # with older (and newer) versions. it is just the major + # number of the release (i.e. leading digits) + # + + vsuffix=`echo $release_version | sed 's/^\([0-9][0-9]*\).*/\1/'` + + if [ -z "$files" ]; then + echo "" + echo "!!!! WARNING !!!! - Did not find any .mo files in ../../$pkg" + echo "" + fi + + for file in $files + do + echo $file + lang=`basename $file | sed 's/\.mo//'` + mkdir -p $Locale/$lang/LC_MESSAGES + cp $file $Locale/$lang/LC_MESSAGES/`basename $pkg`$vsuffix.mo + echo copy $file to $Locale/$lang/LC_MESSAGES/`basename $pkg`$vsuffix.mo + if echo $LINGUAS | grep $lang >/dev/null 2>&1 ; then + : + else + LINGUAS="$LINGUAS $lang" + fi + done done + for l in $LINGUAS do if [ -d $GTKSTACK_ROOT/share/locale/$l ] ; then From 0029ee40b695f6460d86e964726f515d865c24d6 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 22 Oct 2013 17:26:30 +0200 Subject: [PATCH 19/95] honor LV2 units:midiNote: display Note name instead of integer --- gtk2_ardour/generic_pluginui.cc | 33 ++++++++++++++++++++++++++++++++- gtk2_ardour/plugin_ui.h | 1 + libs/ardour/ardour/plugin.h | 1 + libs/ardour/lv2_plugin.cc | 11 +++++++++++ 4 files changed, 45 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/generic_pluginui.cc b/gtk2_ardour/generic_pluginui.cc index 4405d05c1c..032b4e054f 100644 --- a/gtk2_ardour/generic_pluginui.cc +++ b/gtk2_ardour/generic_pluginui.cc @@ -490,6 +490,32 @@ GenericPluginUI::integer_printer (char buf[32], Adjustment &adj, ControlUI* cui) return true; } +bool +GenericPluginUI::midinote_printer (char buf[32], Adjustment &adj, ControlUI* cui) +{ + float const v = adj.get_value (); + + if (cui->scale_points) { + Plugin::ScalePoints::const_iterator i = cui->scale_points->begin (); + while (i != cui->scale_points->end() && i->second != v) { + ++i; + } + + if (i != cui->scale_points->end ()) { + snprintf (buf, 32, "%s", i->first.c_str()); + return true; + } + } + if (v >= 0 && v <= 127) { + int mn = rint(v); + const char notename[12][3] = { "C", "C#", "D", "D#", "E", "F", "F#", "G", "G#", "A", "A#", "B" }; + snprintf (buf, 32, "%s %d", notename[mn%12], (mn/12)-2); + } else { + snprintf (buf, 32, "%.0f", v); + } + return true; +} + void GenericPluginUI::print_parameter (char *buf, uint32_t len, uint32_t param) { @@ -610,7 +636,12 @@ GenericPluginUI::build_control_ui (guint32 port_index, boost::shared_ptrclickbox = new ClickBox (adj, "PluginUIClickBox"); Gtkmm2ext::set_size_request_to_display_given_text (*control_ui->clickbox, "g9999999", 2, 2); - control_ui->clickbox->set_printer (sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::integer_printer), control_ui)); + if (desc.midinote) { + printf("MIDI NOTE\n"); + control_ui->clickbox->set_printer (sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::midinote_printer), control_ui)); + } else { + control_ui->clickbox->set_printer (sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::integer_printer), control_ui)); + } } else { //sigc::slot pslot = sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::print_parameter), (uint32_t) port_index); diff --git a/gtk2_ardour/plugin_ui.h b/gtk2_ardour/plugin_ui.h index cf86f3e1bb..fefa999618 100644 --- a/gtk2_ardour/plugin_ui.h +++ b/gtk2_ardour/plugin_ui.h @@ -277,6 +277,7 @@ class GenericPluginUI : public PlugUIBase, public Gtk::VBox /* XXX: remove */ void print_parameter (char *buf, uint32_t len, uint32_t param); bool integer_printer (char* buf, Gtk::Adjustment &, ControlUI *); + bool midinote_printer(char* buf, Gtk::Adjustment &, ControlUI *); }; class PluginUIWindow : public ArdourWindow diff --git a/libs/ardour/ardour/plugin.h b/libs/ardour/ardour/plugin.h index 55b76fbb08..8bdb96bdd0 100644 --- a/libs/ardour/ardour/plugin.h +++ b/libs/ardour/ardour/plugin.h @@ -116,6 +116,7 @@ class Plugin : public PBD::StatefulDestructible, public Latent bool min_unbound; bool max_unbound; bool enumeration; + bool midinote; }; XMLNode& get_state (); diff --git a/libs/ardour/lv2_plugin.cc b/libs/ardour/lv2_plugin.cc index 9538cef8b6..f5dcc26410 100644 --- a/libs/ardour/lv2_plugin.cc +++ b/libs/ardour/lv2_plugin.cc @@ -143,6 +143,8 @@ public: LilvNode* ui_GtkUI; LilvNode* ui_external; LilvNode* ui_externalkx; + LilvNode* units_unit; + LilvNode* units_midiNote; private: bool _bundle_checked; @@ -1328,8 +1330,10 @@ LV2Plugin::get_parameter_descriptor(uint32_t which, ParameterDescriptor& desc) c { const LilvPort* port = lilv_plugin_get_port_by_index(_impl->plugin, which); + LilvNodes* portunits; LilvNode *def, *min, *max; lilv_port_get_range(_impl->plugin, port, &def, &min, &max); + portunits = lilv_port_get_value(_impl->plugin, port, _world.units_unit); desc.integer_step = lilv_port_has_property(_impl->plugin, port, _world.lv2_integer); desc.toggled = lilv_port_has_property(_impl->plugin, port, _world.lv2_toggled); @@ -1338,6 +1342,8 @@ LV2Plugin::get_parameter_descriptor(uint32_t which, ParameterDescriptor& desc) c desc.label = lilv_node_as_string(lilv_port_get_name(_impl->plugin, port)); desc.lower = min ? lilv_node_as_float(min) : 0.0f; desc.upper = max ? lilv_node_as_float(max) : 1.0f; + desc.midinote = lilv_nodes_contains(portunits, _world.units_midiNote); + if (desc.sr_dependent) { desc.lower *= _session.frame_rate (); desc.upper *= _session.frame_rate (); @@ -1362,6 +1368,7 @@ LV2Plugin::get_parameter_descriptor(uint32_t which, ParameterDescriptor& desc) c lilv_node_free(def); lilv_node_free(min); lilv_node_free(max); + lilv_nodes_free(portunits); return 0; } @@ -1965,10 +1972,14 @@ LV2World::LV2World() ui_GtkUI = lilv_new_uri(world, LV2_UI__GtkUI); ui_external = lilv_new_uri(world, "http://lv2plug.in/ns/extensions/ui#external"); ui_externalkx = lilv_new_uri(world, "http://kxstudio.sf.net/ns/lv2ext/external-ui#Widget"); + units_unit = lilv_new_uri(world, "http://lv2plug.in/ns/extensions/units#unit"); + units_midiNote = lilv_new_uri(world, "http://lv2plug.in/ns/extensions/units#midiNote"); } LV2World::~LV2World() { + lilv_node_free(units_midiNote); + lilv_node_free(units_unit); lilv_node_free(ui_externalkx); lilv_node_free(ui_external); lilv_node_free(ui_GtkUI); From 61e66bb7631fc070a629d83e91855f58d7fb2489 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 22 Oct 2013 14:51:14 -0400 Subject: [PATCH 20/95] do not use --tags to get git description/version --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index 85398b792c..3d016326d5 100644 --- a/wscript +++ b/wscript @@ -68,7 +68,7 @@ def fetch_gcc_version (CC): return version def fetch_git_revision (): - cmd = "git describe --tags HEAD" + cmd = "git describe HEAD" output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines() rev = output[0].decode('utf-8') return rev From 011c8a561f6fe0e17502094aa5039510cb8f5a1c Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 23 Oct 2013 01:23:21 +0200 Subject: [PATCH 21/95] initialize plugin param descriptor struct --- libs/ardour/ardour/plugin.h | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/libs/ardour/ardour/plugin.h b/libs/ardour/ardour/plugin.h index 8bdb96bdd0..1bc7dc5afd 100644 --- a/libs/ardour/ardour/plugin.h +++ b/libs/ardour/ardour/plugin.h @@ -96,12 +96,23 @@ class Plugin : public PBD::StatefulDestructible, public Latent struct ParameterDescriptor { - /* XXX: it would probably be nice if this initialised everything */ ParameterDescriptor () - : enumeration (false) + : integer_step(false) + , toggled (false) + , logarithmic (false) + , sr_dependent (false) + , lower (0) + , upper (0) + , step (0) + , smallstep (0) + , largestep (0) + , min_unbound (0) + , max_unbound (0) + , enumeration (false) + , midinote(false) {} - /* essentially a union of LADSPA and VST info */ + /* essentially a union of LADSPA, VST and LV2 info */ bool integer_step; bool toggled; @@ -116,7 +127,7 @@ class Plugin : public PBD::StatefulDestructible, public Latent bool min_unbound; bool max_unbound; bool enumeration; - bool midinote; + bool midinote; ///< only used if integer_step is also true }; XMLNode& get_state (); From 98f53d11b3d379d0bb1ee9e5146d20258eaa4ead Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 23 Oct 2013 01:25:46 +0200 Subject: [PATCH 22/95] fix midi quantization - part one subtract offset if region was truncated at the beginning. --- gtk2_ardour/editor_ops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc index e0f9418268..1a818f1c71 100644 --- a/gtk2_ardour/editor_ops.cc +++ b/gtk2_ardour/editor_ops.cc @@ -4712,7 +4712,7 @@ Editor::apply_midi_note_edit_op_to_region (MidiOperator& op, MidiRegionView& mrv vector::Notes> v; v.push_back (selected); - framepos_t pos_frames = mrv.midi_region()->position(); + framepos_t pos_frames = mrv.midi_region()->position() - mrv.midi_region()->start(); double pos_beats = _session->tempo_map().framewalk_to_beats(0, pos_frames); return op (mrv.midi_region()->model(), pos_beats, v); From 9b086e18b501751e44df2f5ee3c8deea31370ce6 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 23 Oct 2013 02:12:50 +0200 Subject: [PATCH 23/95] fix midi quantization - part two include position offset in rounding --- libs/ardour/quantize.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/ardour/quantize.cc b/libs/ardour/quantize.cc index a4543d773c..1caefe87a6 100644 --- a/libs/ardour/quantize.cc +++ b/libs/ardour/quantize.cc @@ -62,7 +62,7 @@ Quantize::operator () (boost::shared_ptr model, to quantize relative to actual session beats (etc.) rather than from the start of the model. */ - const double round_pos = ceil(position / _start_grid) * _start_grid; + const double round_pos = round(position / _start_grid) * _start_grid; const double offset = round_pos - position; bool even; @@ -74,8 +74,8 @@ Quantize::operator () (boost::shared_ptr model, for (Evoral::Sequence::Notes::iterator i = (*s).begin(); i != (*s).end(); ++i) { - double new_start = round ((*i)->time() / _start_grid) * _start_grid + offset; - double new_end = round ((*i)->end_time() / _end_grid) * _end_grid + offset; + double new_start = round (((*i)->time() - offset) / _start_grid) * _start_grid + offset; + double new_end = round (((*i)->end_time() - offset) / _end_grid) * _end_grid + offset; if (_swing > 0.0 && !even) { From 75271a17d8d4ed0003c4627e80a28feb68f5d9c9 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 23 Oct 2013 13:45:28 +0200 Subject: [PATCH 24/95] relax requirement on lv2 stack --- libs/plugins/reasonablesynth.lv2/wscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/plugins/reasonablesynth.lv2/wscript b/libs/plugins/reasonablesynth.lv2/wscript index b534e2011b..37a11a4228 100644 --- a/libs/plugins/reasonablesynth.lv2/wscript +++ b/libs/plugins/reasonablesynth.lv2/wscript @@ -17,8 +17,8 @@ def configure(conf): autowaf.configure(conf) autowaf.set_c99_mode(conf) if Options.options.lv2: - autowaf.check_pkg(conf, 'lv2', atleast_version='1.4.0', - uselib_store='LV2_1_4_0') + autowaf.check_pkg(conf, 'lv2', atleast_version='1.0.0', + uselib_store='LV2_1_0_0') def build(bld): bundle = 'reasonablesynth.lv2' @@ -41,7 +41,7 @@ def build(bld): name = 'reasonablesynth', target = '../../LV2/%s/reasonablesynth' % bundle, install_path = '${LV2DIR}/%s' % bundle, - use = 'LV2_1_4_0' + use = 'LV2_1_0_0' ) obj.env.cshlib_PATTERN = module_pat From be69bf15dd2fbc414b35aa84167b863caf6d7677 Mon Sep 17 00:00:00 2001 From: nick_m Date: Thu, 24 Oct 2013 01:27:13 +1100 Subject: [PATCH 25/95] New routes are placed after highest selected route. --- gtk2_ardour/ardour_ui.cc | 47 ++++++++++++++++++++++++++++++++++++ gtk2_ardour/ardour_ui.h | 1 + gtk2_ardour/editor_routes.cc | 23 ++++++++++++++++-- gtk2_ardour/mixer_ui.cc | 22 ++++++++++++++++- libs/ardour/ardour/session.h | 2 ++ libs/ardour/session.cc | 6 +++++ 6 files changed, 98 insertions(+), 3 deletions(-) diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index e3c446ecc2..46308fed98 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -3222,6 +3222,51 @@ ARDOUR_UI::flush_trash () display_cleanup_results (rep, _("deleted file"), true); } +void +ARDOUR_UI::setup_order_hint () +{ + uint32_t order_hint = 0; + + /* + we want the new routes to have their order keys set starting from + the highest order key in the selection + 1 (if available). + */ + + for (RouteUISelection::iterator s = mixer->selection().routes.begin(); s != mixer->selection().routes.end(); ++s) { + if ((*s)->route()->order_key() > order_hint) { + order_hint = (*s)->route()->order_key(); + } + } + + for (TrackSelection::iterator s = editor->get_selection().tracks.begin(); s != editor->get_selection().tracks.end(); ++s) { + RouteTimeAxisView* tav = dynamic_cast (*s); + if (tav->route()->order_key() > order_hint) { + order_hint = tav->route()->order_key(); + } + } + + if (!mixer->selection().routes.empty() || !editor->get_selection().tracks.empty()) { + order_hint++; + } + + _session->set_order_hint (order_hint); + + /* create a gap in the existing route order keys to accomodate new routes.*/ + + boost::shared_ptr rd = _session->get_routes(); + for (RouteList::iterator ri = rd->begin(); ri != rd->end(); ++ri) { + boost::shared_ptr rt (*ri); + + if (rt->is_monitor()) { + continue; + } + + if (rt->order_key () >= order_hint) { + rt->set_order_key (rt->order_key () + add_route_dialog->count()); + } + } +} + void ARDOUR_UI::add_route (Gtk::Window* float_window) { @@ -3256,6 +3301,8 @@ ARDOUR_UI::add_route (Gtk::Window* float_window) return; } + setup_order_hint(); + PBD::ScopedConnection idle_connection; if (count > 8) { diff --git a/gtk2_ardour/ardour_ui.h b/gtk2_ardour/ardour_ui.h index 20edfe03eb..130fc69581 100644 --- a/gtk2_ardour/ardour_ui.h +++ b/gtk2_ardour/ardour_ui.h @@ -582,6 +582,7 @@ class ARDOUR_UI : public Gtkmm2ext::UI, public ARDOUR::SessionHandlePtr void snapshot_session (bool switch_to_it); void rename_session (); + void setup_order_hint (); Mixer_UI *mixer; int create_mixer (); diff --git a/gtk2_ardour/editor_routes.cc b/gtk2_ardour/editor_routes.cc index a10e22f306..e0b562b494 100644 --- a/gtk2_ardour/editor_routes.cc +++ b/gtk2_ardour/editor_routes.cc @@ -600,9 +600,24 @@ EditorRoutes::active_changed (std::string const & path) void EditorRoutes::routes_added (list routes) { - TreeModel::Row row; PBD::Unwinder at (_adding_routes, true); + bool from_scratch = (_model->children().size() == 0); + Gtk::TreeModel::Children::iterator insert_iter = _model->children().end(); + + for (Gtk::TreeModel::Children::iterator it = _model->children().begin(); it != _model->children().end(); ++it) { + boost::shared_ptr r = (*it)[_columns.route]; + + if (r->order_key() == (routes.front()->route()->order_key() + routes.size())) { + insert_iter = it; + break; + } + } + + if(!from_scratch) { + _editor->selection->tracks.clear(); + } + suspend_redisplay (); _display.set_model (Glib::RefPtr()); @@ -611,7 +626,7 @@ EditorRoutes::routes_added (list routes) boost::shared_ptr midi_trk = boost::dynamic_pointer_cast ((*x)->route()); - row = *(_model->append ()); + TreeModel::Row row = *(_model->insert (insert_iter)); row[_columns.text] = (*x)->route()->name(); row[_columns.visible] = (*x)->marked_for_display(); @@ -635,6 +650,10 @@ EditorRoutes::routes_added (list routes) row[_columns.solo_safe_state] = (*x)->route()->solo_safe(); row[_columns.name_editable] = true; + if (!from_scratch) { + _editor->selection->add(*x); + } + boost::weak_ptr wr ((*x)->route()); (*x)->route()->gui_changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::handle_gui_changes, this, _1, _2), gui_context()); diff --git a/gtk2_ardour/mixer_ui.cc b/gtk2_ardour/mixer_ui.cc index 8126a81e85..12cf87d793 100644 --- a/gtk2_ardour/mixer_ui.cc +++ b/gtk2_ardour/mixer_ui.cc @@ -313,6 +313,22 @@ Mixer_UI::hide_window (GdkEventAny *ev) void Mixer_UI::add_strips (RouteList& routes) { + bool from_scratch = track_model->children().size() == 0; + Gtk::TreeModel::Children::iterator insert_iter = track_model->children().end(); + + for (Gtk::TreeModel::Children::iterator it = track_model->children().begin(); it != track_model->children().end(); ++it) { + boost::shared_ptr r = (*it)[track_columns.route]; + + if (r->order_key() == (routes.front()->order_key() + routes.size())) { + insert_iter = it; + break; + } + } + + if(!from_scratch) { + _selection.clear_routes (); + } + MixerStrip* strip; try { @@ -359,11 +375,15 @@ Mixer_UI::add_strips (RouteList& routes) show_strip (strip); - TreeModel::Row row = *(track_model->append()); + TreeModel::Row row = *(track_model->insert(insert_iter)); row[track_columns.text] = route->name(); row[track_columns.visible] = strip->route()->is_master() ? true : strip->marked_for_display(); row[track_columns.route] = route; row[track_columns.strip] = strip; + + if (!from_scratch) { + _selection.add (strip); + } route->PropertyChanged.connect (*this, invalidator (*this), boost::bind (&Mixer_UI::strip_property_changed, this, _1, strip), gui_context()); diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h index 4632d08fa7..75a5dce8ef 100644 --- a/libs/ardour/ardour/session.h +++ b/libs/ardour/ardour/session.h @@ -241,6 +241,7 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi bool operator() (boost::shared_ptr, boost::shared_ptr b); }; + void set_order_hint (uint32_t order_hint) {_order_hint = order_hint;}; void notify_remote_id_change (); void sync_order_keys (); @@ -1594,6 +1595,7 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi GraphEdges _current_route_graph; uint32_t next_control_id () const; + uint32_t _order_hint; bool ignore_route_processor_changes; MidiClockTicker* midi_clock; diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index 9e79ad305a..54287a454a 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -257,6 +257,7 @@ Session::Session (AudioEngine &eng, , _step_editors (0) , _suspend_timecode_transmission (0) , _speakers (new Speakers) + , _order_hint (0) , ignore_route_processor_changes (false) , _midi_ports (0) , _mmc (0) @@ -2335,6 +2336,11 @@ Session::add_routes_inner (RouteList& new_routes, bool input_auto_connect, bool ChanCount existing_outputs; uint32_t order = next_control_id(); + if (_order_hint != 0) { + order = _order_hint; + _order_hint = 0; + } + count_existing_track_channels (existing_inputs, existing_outputs); { From 20c20b7ddfbbc5bf9888f39f41d6c243534cc94f Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 23 Oct 2013 17:40:35 +0200 Subject: [PATCH 26/95] Fix midi-note length when quantizing a swing rhythm Note: 'swing' probably requires a 2nd iteration: first quantize notes to the grid, then apply beat shift. --- libs/ardour/quantize.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libs/ardour/quantize.cc b/libs/ardour/quantize.cc index 1caefe87a6..7da1edaaa1 100644 --- a/libs/ardour/quantize.cc +++ b/libs/ardour/quantize.cc @@ -72,6 +72,9 @@ Quantize::operator () (boost::shared_ptr model, even = false; + /* TODO 'swing' probably requires a 2nd iteration: + * first quantize notes to the grid, then apply beat shift + */ for (Evoral::Sequence::Notes::iterator i = (*s).begin(); i != (*s).end(); ++i) { double new_start = round (((*i)->time() - offset) / _start_grid) * _start_grid + offset; @@ -86,6 +89,7 @@ Quantize::operator () (boost::shared_ptr model, */ new_start = new_start + (2.0/3.0 * _swing * (next_grid - new_start)); + new_end = new_end + (2.0/3.0 * _swing * (next_grid - new_start)); } else if (_swing < 0.0 && !even) { @@ -96,6 +100,7 @@ Quantize::operator () (boost::shared_ptr model, */ new_start = new_start - (2.0/3.0 * _swing * (new_start - prev_grid)); + new_end = new_end - (2.0/3.0 * _swing * (new_start - prev_grid)); } From da1a9bbade7adf359a5448daaba929b91b112e9c Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 23 Oct 2013 18:02:49 +0200 Subject: [PATCH 27/95] make fixed IO ports untranslatable Outdated and fuzzy translations of MTC, MTC, LTC, etc caused various issues (duplicate jack port names, exceptions, crashes). Functionality should not be affected by translations (for now). --- libs/ardour/midiport_manager.cc | 16 ++++++++-------- libs/ardour/session.cc | 14 +++++++------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/libs/ardour/midiport_manager.cc b/libs/ardour/midiport_manager.cc index d17401cee8..6de0436586 100644 --- a/libs/ardour/midiport_manager.cc +++ b/libs/ardour/midiport_manager.cc @@ -68,11 +68,11 @@ MidiPortManager::create_ports () return; } - _midi_in = AudioEngine::instance()->register_input_port (DataType::MIDI, _("MIDI control in"), true); - _midi_out = AudioEngine::instance()->register_output_port (DataType::MIDI, _("MIDI control out"), true); + _midi_in = AudioEngine::instance()->register_input_port (DataType::MIDI, X_("MIDI control in"), true); + _midi_out = AudioEngine::instance()->register_output_port (DataType::MIDI, X_("MIDI control out"), true); - _mmc_in = AudioEngine::instance()->register_input_port (DataType::MIDI, _("MMC in"), true); - _mmc_out = AudioEngine::instance()->register_output_port (DataType::MIDI, _("MMC out"), true); + _mmc_in = AudioEngine::instance()->register_input_port (DataType::MIDI, X_("MMC in"), true); + _mmc_out = AudioEngine::instance()->register_output_port (DataType::MIDI, X_("MMC out"), true); /* XXX nasty type conversion needed because of the mixed inheritance * required to integrate MIDI::IPMidiPort and ARDOUR::AsyncMIDIPort. @@ -93,14 +93,14 @@ MidiPortManager::create_ports () boost::shared_ptr p; - p = AudioEngine::instance()->register_input_port (DataType::MIDI, _("MTC in")); + p = AudioEngine::instance()->register_input_port (DataType::MIDI, X_("MTC in")); _mtc_input_port = boost::dynamic_pointer_cast (p); - p = AudioEngine::instance()->register_output_port (DataType::MIDI, _("MTC out")); + p = AudioEngine::instance()->register_output_port (DataType::MIDI, X_("MTC out")); _mtc_output_port= boost::dynamic_pointer_cast (p); - p = AudioEngine::instance()->register_input_port (DataType::MIDI, _("MIDI Clock in")); + p = AudioEngine::instance()->register_input_port (DataType::MIDI, X_("MIDI Clock in")); _midi_clock_input_port = boost::dynamic_pointer_cast (p); - p = AudioEngine::instance()->register_output_port (DataType::MIDI, _("MIDI Clock out")); + p = AudioEngine::instance()->register_output_port (DataType::MIDI, X_("MIDI Clock out")); _midi_clock_output_port= boost::dynamic_pointer_cast (p); /* These ports all need their incoming data handled in diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index 54287a454a..40123e0670 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -559,10 +559,10 @@ Session::setup_ltc () { XMLNode* child = 0; - _ltc_input.reset (new IO (*this, _("LTC In"), IO::Input)); - _ltc_output.reset (new IO (*this, _("LTC Out"), IO::Output)); + _ltc_input.reset (new IO (*this, X_("LTC In"), IO::Input)); + _ltc_output.reset (new IO (*this, X_("LTC Out"), IO::Output)); - if (state_tree && (child = find_named_node (*state_tree->root(), "LTC-In")) != 0) { + if (state_tree && (child = find_named_node (*state_tree->root(), X_("LTC In"))) != 0) { _ltc_input->set_state (*(child->children().front()), Stateful::loading_state_version); } else { { @@ -572,7 +572,7 @@ Session::setup_ltc () reconnect_ltc_input (); } - if (state_tree && (child = find_named_node (*state_tree->root(), "LTC-Out")) != 0) { + if (state_tree && (child = find_named_node (*state_tree->root(), X_("LTC Out"))) != 0) { _ltc_output->set_state (*(child->children().front()), Stateful::loading_state_version); } else { { @@ -586,15 +586,15 @@ Session::setup_ltc () * IO style of NAME/TYPE-{in,out}N */ - _ltc_input->nth (0)->set_name (_("LTC-in")); - _ltc_output->nth (0)->set_name (_("LTC-out")); + _ltc_input->nth (0)->set_name (X_("LTC-in")); + _ltc_output->nth (0)->set_name (X_("LTC-out")); } void Session::setup_click () { _clicking = false; - _click_io.reset (new ClickIO (*this, "click")); + _click_io.reset (new ClickIO (*this, X_("Click"))); _click_gain.reset (new Amp (*this)); _click_gain->activate (); if (state_tree) { From 4316eda89f4a7ef4665e94d9ea44a544d6c7f95b Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 23 Oct 2013 20:01:23 +0200 Subject: [PATCH 28/95] remove fuzzy and obsolete translations --- gtk2_ardour/po/cs.po | 3174 --------------- gtk2_ardour/po/de.po | 367 +- gtk2_ardour/po/el.po | 8539 --------------------------------------- gtk2_ardour/po/en_GB.po | 147 - gtk2_ardour/po/es.po | 1294 ------ gtk2_ardour/po/fr.po | 4573 --------------------- gtk2_ardour/po/it.po | 5076 ----------------------- gtk2_ardour/po/nn.po | 3100 -------------- gtk2_ardour/po/pl.po | 7426 ---------------------------------- gtk2_ardour/po/pt.po | 8511 -------------------------------------- gtk2_ardour/po/pt_PT.po | 8404 -------------------------------------- gtk2_ardour/po/ru.po | 2520 ------------ gtk2_ardour/po/sv.po | 7424 ---------------------------------- gtk2_ardour/po/zh.po | 2493 ------------ libs/ardour/po/cs.po | 558 ++- libs/ardour/po/de.po | 295 +- libs/ardour/po/el.po | 2089 +--------- libs/ardour/po/es.po | 668 ++- libs/ardour/po/it.po | 1552 ++----- libs/ardour/po/nn.po | 1678 ++------ libs/ardour/po/pl.po | 683 ++-- libs/ardour/po/ru.po | 191 +- libs/ardour/po/sv.po | 578 ++- libs/ardour/po/zh.po | 680 ++-- libs/gtkmm2ext/po/el.po | 35 - libs/gtkmm2ext/po/es.po | 33 - libs/gtkmm2ext/po/fr.po | 13 - libs/gtkmm2ext/po/nn.po | 2975 -------------- libs/gtkmm2ext/po/pl.po | 15 - libs/gtkmm2ext/po/pt.po | 35 - libs/gtkmm2ext/po/ru.po | 39 - 31 files changed, 2064 insertions(+), 73101 deletions(-) diff --git a/gtk2_ardour/po/cs.po b/gtk2_ardour/po/cs.po index cec031544b..5b2fce2fea 100644 --- a/gtk2_ardour/po/cs.po +++ b/gtk2_ardour/po/cs.po @@ -260,26 +260,6 @@ msgstr "" "\tMartin Blanchard\n" "\tRomain Arnaud \n" -#: about.cc:183 -#, fuzzy -msgid "" -"German:\n" -"\tKarsten Petersen \n" -"\tSebastian Arnold \n" -"\tRobert Schwede \n" -"\tBenjamin Scherrer \n" -"\tEdgar Aichinger \n" -"\tRichard Oax \n" -"\tRobin Gloster \n" -msgstr "" -"NÄ›mÄina:\n" -"\tKarsten Petersen \n" -"\tSebastian Arnold \n" -"\tRobert Schwede\n" -"\tBenjamin Scherrer \n" -"\tEdgar Aichinger \n" -"\tRichard Oax \n" - #: about.cc:190 msgid "" "Italian:\n" @@ -676,11 +656,6 @@ msgstr "Klávesové zkratky" msgid "Preferences" msgstr "Nastavení" -#: ardour_ui.cc:191 ardour_ui.cc:196 -#, fuzzy -msgid "Add Tracks/Busses" -msgstr "Stopy/SbÄ›rnice" - #: ardour_ui.cc:192 msgid "About" msgstr "O programu" @@ -705,16 +680,6 @@ msgstr "Správce balíků" msgid "Big Clock" msgstr "Velký ukazatel Äasu" -#: ardour_ui.cc:199 -#, fuzzy -msgid "Audio Connections" -msgstr "Spojení vstupů" - -#: ardour_ui.cc:200 -#, fuzzy -msgid "MIDI Connections" -msgstr "Spojení vstupů" - #: ardour_ui.cc:202 msgid "Errors" msgstr "Chyby" @@ -1430,11 +1395,6 @@ msgstr "Uživatelské rozhraní: editor nemohl být spuÅ¡tÄ›n." msgid "UI: cannot setup mixer" msgstr "Uživatelské rozhraní: směšovaÄ nemohl být spuÅ¡tÄ›n." -#: ardour_ui2.cc:82 -#, fuzzy -msgid "UI: cannot setup meterbridge" -msgstr "Uživatelské rozhraní: směšovaÄ nemohl být spuÅ¡tÄ›n." - #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "PÅ™ehrávat od ukazatele polohy pÅ™ehrávání" @@ -1535,11 +1495,6 @@ msgstr "" "potvrdit; úpravy pÅ™ipojit '+' nebo '-' pro zadání Äasů delta (nárůst " "promÄ›nné).\n" -#: ardour_ui2.cc:147 -#, fuzzy -msgid "Reset Level Meter" -msgstr "Nastavit kÅ™ivku síly zvuku znovu" - #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "[CHYBA]:" @@ -1777,16 +1732,6 @@ msgstr "Ukázat nástrojové panely" msgid "Window|Mixer" msgstr "Okno/SměšovaÄ" -#: ardour_ui_ed.cc:231 -#, fuzzy -msgid "Toggle Editor+Mixer" -msgstr "Ukázat editor nebo mixér navrchu" - -#: ardour_ui_ed.cc:232 meterbridge.cc:230 meterbridge.cc:236 -#, fuzzy -msgid "Window|Meterbridge" -msgstr "Okno/SměšovaÄ" - #: ardour_ui_ed.cc:234 midi_tracer.cc:39 msgid "MIDI Tracer" msgstr "SledovaÄ MIDI" @@ -3966,11 +3911,6 @@ msgstr "Video" msgid "Always on Top" msgstr "Vždy nahoÅ™e" -#: editor_actions.cc:554 -#, fuzzy -msgid "Frame number" -msgstr "Číslo snímku" - #: editor_actions.cc:555 msgid "Timecode Background" msgstr "Pozadí Äasového kódu" @@ -6273,11 +6213,6 @@ msgstr "Volby pro FLAC" msgid "Broadcast Wave options" msgstr "Volby pro Broadcast Wave" -#: export_format_selector.cc:136 -#, fuzzy -msgid "Do you really want to remove the format?" -msgstr "Opravdu chcete zastavit videoserver?" - #: export_preset_selector.cc:28 msgid "Preset" msgstr "PÅ™ednastavení" @@ -6290,11 +6225,6 @@ msgstr "" "Vybrané pÅ™ednastavení nebylo nahráno úspěšnÄ›!\n" "Možná zmiňuje formát, který byl odstranÄ›n?" -#: export_preset_selector.cc:156 -#, fuzzy -msgid "Do you really want to remove this preset?" -msgstr "Opravdu chcete zastavit videoserver?" - #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "Ukázat Äasy jako:" @@ -6307,11 +6237,6 @@ msgstr " do " msgid "Range" msgstr "Rozsah" -#: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 -#, fuzzy -msgid "curl error %1 (%2)" -msgstr "Chyba v programování: %1 (%2)" - #: sfdb_freesound_mootcher.cc:266 msgid "getSoundResourceFile: There is no valid root in the xml file" msgstr "" @@ -6320,11 +6245,6 @@ msgstr "" msgid "getSoundResourceFile: root = %1, != response" msgstr "" -#: sfdb_freesound_mootcher.cc:410 -#, fuzzy -msgid "%1" -msgstr "%" - #: gain_meter.cc:106 gain_meter.cc:357 gain_meter.cc:462 gain_meter.cc:856 msgid "-inf" msgstr "-inf" @@ -7235,12 +7155,6 @@ msgstr "Barvy kanálů" msgid "Track Color" msgstr "Barva stopy" -#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 -#: midi_time_axis.cc:1510 -#, fuzzy -msgid "all" -msgstr "Malá" - #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" @@ -7619,11 +7533,6 @@ msgstr "Po-prolínaÄ" msgid "Change all in Group to %1" msgstr "" -#: mixer_strip.cc:2168 meter_strip.cc:730 -#, fuzzy -msgid "Change all to %1" -msgstr "Kanál %1" - #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -7642,16 +7551,6 @@ msgstr "-vÅ¡e-" msgid "Strips" msgstr "Proužky" -#: meter_strip.cc:764 -#, fuzzy -msgid "Variable height" -msgstr "Výška Äasové osy" - -#: meter_strip.cc:765 -#, fuzzy -msgid "Short" -msgstr "Krátký" - #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -7696,11 +7595,6 @@ msgstr "" msgid "K14" msgstr "" -#: meter_patterns.cc:105 -#, fuzzy -msgid "VU" -msgstr "V" - #: monitor_section.cc:62 msgid "SiP" msgstr "SiP" @@ -8533,16 +8427,6 @@ msgstr "Nelze pÅ™idat přípojku" msgid "Port removal not allowed" msgstr "OdstranÄ›ní přípojky nepovoleno" -#: port_matrix.cc:749 -#, fuzzy -msgid "" -"This port cannot be removed.\n" -"Either the first plugin in the track or buss cannot accept\n" -"the new number of inputs or the last plugin has more outputs." -msgstr "" -"Tuto přípojku nelze odstranit, protože první přídavný modul ve stopÄ› nebo " -"sbÄ›rnici nemůže pÅ™ijmout nový poÄet vstupů." - #: port_matrix.cc:966 #, c-format msgid "Remove '%s'" @@ -8768,11 +8652,6 @@ msgstr "Vypnout vÅ¡e" msgid "A/B Plugins" msgstr "Přídavné moduly A/B" -#: processor_box.cc:2257 -#, fuzzy -msgid "Edit with generic controls..." -msgstr "Upravit pomocí základních ovládacích prvků..." - #: processor_box.cc:2557 msgid "%1: %2 (by %3)" msgstr "%1: %2 (podle %3)" @@ -8893,11 +8772,6 @@ msgstr "PÅ™ehrávání (sekundy ukládání do vyrovnávací pamÄ›ti):" msgid "Recording (seconds of buffering):" msgstr "Nahrávání (sekundy ukládání do vyrovnávací pamÄ›ti):" -#: rc_option_editor.cc:656 -#, fuzzy -msgid "Control Surface Protocol" -msgstr "Ovládací spínaÄe" - #: rc_option_editor.cc:660 msgid "Feedback" msgstr "ZpÄ›tná vazba" @@ -8930,17 +8804,6 @@ msgstr "" msgid "Video Server URL:" msgstr "Adresa videoserveru (URL):" -#: rc_option_editor.cc:834 -#, fuzzy -msgid "" -"Base URL of the video-server including http prefix. This is usually 'http://" -"hostname.example.org:1554/' and defaults to 'http://localhost:1554/' when " -"the video-server is running locally" -msgstr "" -"Základní adresa videoserveru (URL) vÄetnÄ› úvodních písmen http. Obvykle to " -"je 'http://hostname.example.org:1554/' a výchozí 'http://localhost:1554/', " -"když běží videoserver místnÄ›" - #: rc_option_editor.cc:836 msgid "Video Folder:" msgstr "Složka s videem:" @@ -9623,15 +9486,6 @@ msgstr "následuje poÅ™adí ve směšovaÄi" msgid "follows order of editor" msgstr "následuje poÅ™adí v editoru" -#: rc_option_editor.cc:1846 rc_option_editor.cc:1854 rc_option_editor.cc:1864 -#: rc_option_editor.cc:1885 rc_option_editor.cc:1894 rc_option_editor.cc:1902 -#: rc_option_editor.cc:1916 rc_option_editor.cc:1935 rc_option_editor.cc:1951 -#: rc_option_editor.cc:1967 rc_option_editor.cc:1981 rc_option_editor.cc:1995 -#: rc_option_editor.cc:1997 -#, fuzzy -msgid "Preferences|GUI" -msgstr "Nastavení" - #: rc_option_editor.cc:1849 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "ObrazovÄ› naznaÄovat pÅ™ejetí ukazatele myÅ¡i nad různými prvky" @@ -9658,11 +9512,6 @@ msgstr "Proužek směšovaÄe" msgid "Use narrow strips in the mixer by default" msgstr "Použít úzké proužky ve směšovaÄi jako výchozí" -#: rc_option_editor.cc:1906 -#, fuzzy -msgid "Peak hold time" -msgstr "ÄŒas držení měřidla" - #: rc_option_editor.cc:1912 msgid "short" msgstr "Krátký" @@ -9675,11 +9524,6 @@ msgstr "StÅ™ední" msgid "long" msgstr "Dlouhý" -#: rc_option_editor.cc:1920 -#, fuzzy -msgid "DPM fall-off" -msgstr "Klesání měřidla" - #: rc_option_editor.cc:1926 msgid "slowest [6.6dB/sec]" msgstr "" @@ -9766,11 +9610,6 @@ msgstr "" msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1985 -#, fuzzy -msgid "Peak threshold [dBFS]" -msgstr "Prahová hodnota zvuku (dB)" - #: rc_option_editor.cc:1993 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " @@ -10974,62 +10813,18 @@ msgstr "PÅ™ilepit nové znaÄky k taktům a dobám" msgid "Glue new regions to bars and beats" msgstr "PÅ™ilepit nové oblasti k taktům a dobám" -#: session_option_editor.cc:275 session_option_editor.cc:277 -#: session_option_editor.cc:284 session_option_editor.cc:291 -#: session_option_editor.cc:298 session_option_editor.cc:300 -#: session_option_editor.cc:307 session_option_editor.cc:314 -#: session_option_editor.cc:321 session_option_editor.cc:323 -#, fuzzy -msgid "Meterbridge" -msgstr "Ukazatel hladiny" - #: session_option_editor.cc:275 msgid "Route Display" msgstr "" -#: session_option_editor.cc:279 -#, fuzzy -msgid "Show Midi Tracks" -msgstr "Ukázat vÅ¡echny MIDI stopy" - -#: session_option_editor.cc:286 -#, fuzzy -msgid "Show Busses" -msgstr "SbÄ›rnice" - -#: session_option_editor.cc:293 -#, fuzzy -msgid "Include Master Bus" -msgstr "Hlavní sbÄ›rnice" - #: session_option_editor.cc:298 msgid "Button Area" msgstr "" -#: session_option_editor.cc:302 -#, fuzzy -msgid "Rec-enable Button" -msgstr "ZmÄ›nit stav nahrávání" - -#: session_option_editor.cc:309 -#, fuzzy -msgid "Mute Button" -msgstr "s tlaÄítkem myÅ¡i" - -#: session_option_editor.cc:316 -#, fuzzy -msgid "Solo Button" -msgstr "Povzbuzení sóla" - #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" -#: session_option_editor.cc:325 -#, fuzzy -msgid "Track Name" -msgstr "Název stopy/sbÄ›rnice" - #: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 msgid "as new tracks" msgstr "Jako nové stopy" @@ -12354,16 +12149,6 @@ msgstr "bÄ›hem nahrávání ikony s názvem %1 byla zachycena výjimka" msgid "VerboseCanvasCursor" msgstr "Ukazovátko podrobného plátna" -#: add_video_dialog.cc:55 -#, fuzzy -msgid "Set Video Track" -msgstr "Zarovnat videostopu" - -#: add_video_dialog.cc:63 -#, fuzzy -msgid "Launch External Video Monitor" -msgstr "Sledování pomocí technického vybavení" - #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -12372,31 +12157,6 @@ msgstr "" msgid "Reload docroot" msgstr "" -#: add_video_dialog.cc:111 add_video_dialog.cc:115 -#, fuzzy -msgid "VideoServerIndex" -msgstr "Zastavit videoserver" - -#: add_video_dialog.cc:129 -#, fuzzy -msgid "Video files" -msgstr "Zvukové soubory" - -#: add_video_dialog.cc:164 -#, fuzzy -msgid "Video Information" -msgstr "Informace o zvukovém souboru" - -#: add_video_dialog.cc:167 -#, fuzzy -msgid "Start:" -msgstr "Spustit" - -#: add_video_dialog.cc:173 -#, fuzzy -msgid "Frame rate:" -msgstr "Vzorkovací kmitoÄet:" - #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -12405,11 +12165,6 @@ msgstr "" msgid " %1 fps" msgstr "" -#: editor_videotimeline.cc:146 -#, fuzzy -msgid "Export Successful: %1" -msgstr "Vyvést jako MIDI: %1" - #: video_timeline.cc:469 msgid "" "Parsing video file info failed. Is the Video Server running? Is the file " @@ -12443,11 +12198,6 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" -#: video_monitor.cc:281 -#, fuzzy -msgid "Video Monitor: File Not Found." -msgstr "Sledování videa" - #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -12464,25 +12214,10 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:56 -#, fuzzy -msgid "Transcode/Import Video File " -msgstr "Vyvést jako videosoubor" - -#: transcode_video_dialog.cc:58 -#, fuzzy -msgid "Output File:" -msgstr "Výstupní zařízení:" - #: transcode_video_dialog.cc:61 export_video_dialog.cc:73 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:63 -#, fuzzy -msgid "Height = " -msgstr "Výška" - #: transcode_video_dialog.cc:66 msgid "Manual Override" msgstr "" @@ -12491,11 +12226,6 @@ msgstr "" msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:107 -#, fuzzy -msgid "File Information" -msgstr "Informace o zvukovém souboru" - #: transcode_video_dialog.cc:113 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " @@ -12513,11 +12243,6 @@ msgstr "" msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:136 -#, fuzzy -msgid "Duration:" -msgstr "Doba trvání" - #: transcode_video_dialog.cc:138 msgid "Codec:" msgstr "" @@ -12526,53 +12251,18 @@ msgstr "" msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:155 -#, fuzzy -msgid "??" -msgstr "???" - -#: transcode_video_dialog.cc:176 -#, fuzzy -msgid "Import Settings" -msgstr "Volby" - -#: transcode_video_dialog.cc:181 -#, fuzzy -msgid "Do Not Import Video" -msgstr "Uzamknout k videu" - #: transcode_video_dialog.cc:182 msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:184 -#, fuzzy -msgid "Import/Transcode Video to Session" -msgstr "Zavést ze sezení" - #: transcode_video_dialog.cc:198 msgid "Scale Video: Width = " msgstr "" -#: transcode_video_dialog.cc:205 -#, fuzzy -msgid "Original Width" -msgstr "Původní velikost" - #: transcode_video_dialog.cc:220 msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:225 -#, fuzzy -msgid "Extract Audio:" -msgstr "Vyvést zvuk" - -#: transcode_video_dialog.cc:345 -#, fuzzy -msgid "Extracting Audio.." -msgstr "Vyvést zvuk" - #: transcode_video_dialog.cc:348 msgid "Audio Extraction Failed." msgstr "" @@ -12581,30 +12271,10 @@ msgstr "" msgid "Transcoding Video.." msgstr "" -#: transcode_video_dialog.cc:408 -#, fuzzy -msgid "Transcoding Failed." -msgstr "PÅ™eklady povoleny" - -#: transcode_video_dialog.cc:491 -#, fuzzy -msgid "Save Transcoded Video File" -msgstr "Vyvést jako videosoubor" - -#: video_server_dialog.cc:43 -#, fuzzy -msgid "Launch Video Server" -msgstr "Adresa videoserveru (URL):" - #: video_server_dialog.cc:44 msgid "Server Executable:" msgstr "" -#: video_server_dialog.cc:46 -#, fuzzy -msgid "Server Docroot:" -msgstr "Server:" - #: video_server_dialog.cc:52 msgid "Don't show this dialog again. (Reset in Edit->Preferences)." msgstr "" @@ -12620,16 +12290,6 @@ msgstr "" msgid "Listen Address:" msgstr "" -#: video_server_dialog.cc:125 -#, fuzzy -msgid "Listen Port:" -msgstr "Poloha poslechu" - -#: video_server_dialog.cc:130 -#, fuzzy -msgid "Cache Size:" -msgstr "NejvÄ›tší velikost" - #: video_server_dialog.cc:136 msgid "" "%1 relies on an external Video Server for the videotimeline.\n" @@ -12637,11 +12297,6 @@ msgid "" "Do you want ardour to launch 'harvid' on this machine?" msgstr "" -#: video_server_dialog.cc:176 -#, fuzzy -msgid "Set Video Server Executable" -msgstr "Daný videoserver není spustitelným souborem." - #: video_server_dialog.cc:196 msgid "Server docroot" msgstr "" @@ -12660,31 +12315,6 @@ msgstr "" msgid "Continue" msgstr "" -#: utils_videotl.cc:63 -#, fuzzy -msgid "Confirm Overwrite" -msgstr "Potvrdit pÅ™epsání snímku obrazovky" - -#: utils_videotl.cc:64 -#, fuzzy -msgid "A file with the same name already exists. Do you want to overwrite it?" -msgstr "Snímek obrazovky s tímto názvem již existuje. Chcete jej pÅ™epsat?" - -#: utils_videotl.cc:74 utils_videotl.cc:90 -#, fuzzy -msgid "Cannot create video folder \"%1\" (%2)" -msgstr "Nelze vytvoÅ™it uživatelův adresář urÄený pro %3 %1 (%2)" - -#: export_video_dialog.cc:66 -#, fuzzy -msgid "Export Video File " -msgstr "Vyvést jako videosoubor" - -#: export_video_dialog.cc:70 -#, fuzzy -msgid "Video:" -msgstr "Video" - #: export_video_dialog.cc:74 msgid "Scale Video (W x H):" msgstr "" @@ -12693,11 +12323,6 @@ msgstr "" msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:80 -#, fuzzy -msgid "Normalize Audio" -msgstr "Normalizovat:" - #: export_video_dialog.cc:81 msgid "2 Pass Encoding" msgstr "" @@ -12706,11 +12331,6 @@ msgstr "" msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:84 -#, fuzzy -msgid "Deinterlace" -msgstr "VystÅ™edit ukazatele polohy" - #: export_video_dialog.cc:85 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" @@ -12719,11 +12339,6 @@ msgstr "" msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:87 -#, fuzzy -msgid "Include Session Metadata" -msgstr "Upravit popisná data k sezení" - #: export_video_dialog.cc:107 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " @@ -12731,26 +12346,6 @@ msgid "" "information." msgstr "" -#: export_video_dialog.cc:117 -#, fuzzy -msgid "Output:" -msgstr "Výstupy" - -#: export_video_dialog.cc:127 -#, fuzzy -msgid "Input:" -msgstr "Vstupy" - -#: export_video_dialog.cc:138 -#, fuzzy -msgid "Audio:" -msgstr "Zvuk" - -#: export_video_dialog.cc:140 -#, fuzzy -msgid "Master Bus" -msgstr "Hlavní sbÄ›rnice" - #: export_video_dialog.cc:145 msgid "from the %1 session's start to the session's end" msgstr "" @@ -12763,61 +12358,6 @@ msgstr "" msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:184 -#, fuzzy -msgid "Settings:" -msgstr "Cíle" - -#: export_video_dialog.cc:192 -#, fuzzy -msgid "Range:" -msgstr "Rozsah" - -#: export_video_dialog.cc:195 -#, fuzzy -msgid "Preset:" -msgstr "PÅ™ednastavení" - -#: export_video_dialog.cc:198 -#, fuzzy -msgid "Video Codec:" -msgstr "Složka s videem:" - -#: export_video_dialog.cc:201 -#, fuzzy -msgid "Video KBit/s:" -msgstr "ZaÄátek videa:" - -#: export_video_dialog.cc:204 -#, fuzzy -msgid "Audio Codec:" -msgstr "Režim zvuku:" - -#: export_video_dialog.cc:207 -#, fuzzy -msgid "Audio KBit/s:" -msgstr "Zvukové soubory" - -#: export_video_dialog.cc:210 -#, fuzzy -msgid "Audio Samplerate:" -msgstr "Vzorkovací kmitoÄet:" - -#: export_video_dialog.cc:387 -#, fuzzy -msgid "Normalizing audio" -msgstr "Normalizovat hodnoty" - -#: export_video_dialog.cc:391 -#, fuzzy -msgid "Exporting audio" -msgstr "Vyvést zvuk" - -#: export_video_dialog.cc:437 -#, fuzzy -msgid "Exporting Audio..." -msgstr "Vyvést zvuk" - #: export_video_dialog.cc:494 msgid "" "Export Video: Cannot query duration of video-file, using duration from " @@ -12844,30 +12384,10 @@ msgstr "" msgid "Encoding Video.. Pass 2/2" msgstr "" -#: export_video_dialog.cc:779 -#, fuzzy -msgid "Transcoding failed." -msgstr "PÅ™eklady povoleny" - -#: export_video_dialog.cc:948 export_video_dialog.cc:968 -#, fuzzy -msgid "Save Exported Video File" -msgstr "Vyvést jako videosoubor" - -#: export_video_infobox.cc:30 -#, fuzzy -msgid "Video Export Info" -msgstr "Ukázat pÅ™ed uložením do souboru informace o způsobu vyvedení videa" - #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" -#: export_video_infobox.cc:43 -#, fuzzy -msgid "Video Export Info" -msgstr "Ukázat pÅ™ed uložením do souboru informace o způsobu vyvedení videa" - #: export_video_infobox.cc:48 msgid "" "Video encoding is a non-trivial task with many details.\n" @@ -12876,2697 +12396,3 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" - -#~ msgid "Connect" -#~ msgstr "Spojit" - -#~ msgid "Mixer on Top" -#~ msgstr "SměšovaÄ navrchu" - -#~ msgid "Add Audio Track" -#~ msgstr "PÅ™idat zvukovou stopu" - -#~ msgid "Add Audio Bus" -#~ msgstr "PÅ™idat zvukovou sbÄ›rnici" - -#~ msgid "Add MIDI Track" -#~ msgstr "PÅ™idat MIDI stopu" - -#~ msgid "-Inf" -#~ msgstr "-Inf" - -#~ msgid "Control surfaces" -#~ msgstr "Ovládací spínaÄe" - -#~ msgid "Use plugins' own interfaces instead of %1's" -#~ msgstr "Použít vlastní rozhraní přídavných modulů, namísto rozhraní %1" - -#~ msgid "slowest" -#~ msgstr "Nejpomalejší" - -#~ msgid "slow" -#~ msgstr "Pomalý" - -#~ msgid "fast" -#~ msgstr "Rychlý" - -#~ msgid "faster" -#~ msgstr "Rychlejší" - -#~ msgid "fastest" -#~ msgstr "Nejrychlejší" - -#~ msgid "found %1 match" -#~ msgid_plural "found %1 matches" -#~ msgstr[0] "Nalezena %1 shoda" -#~ msgstr[1] "Nalezeny %1 shody" - -#~ msgid "Search returned no results." -#~ msgstr "Hledání nevrátilo žádné výsledky." - -#~ msgid "Found %1 match" -#~ msgid_plural "Found %1 matches" -#~ msgstr[0] "Nalezena %1 shoda" -#~ msgstr[1] "Nalezeny %1 shody" - -#~ msgid "What would you like to do ?" -#~ msgstr "Co nyní chcete dÄ›lat?" - -#~ msgid "Hid" -#~ msgstr "Skryté" - -#~ msgid "Searching Page %1 of %2, click Stop to cancel" -#~ msgstr "Prohledává se strana %1 z %2, klepnÄ›te na Zastavit pro pÅ™eruÅ¡ení" - -#~ msgid "Searching, click Stop to cancel" -#~ msgstr "Prohledává se, klepnÄ›te na Zastavit pro pÅ™eruÅ¡ení" - -#~ msgid "Translations disabled" -#~ msgstr "PÅ™eklady zakázány" - -#~ msgid "You must restart %1 for this to take effect." -#~ msgstr "Aby se zmÄ›na projevila, musíte %1 spustit znovu." - -#~ msgid "Enable Translations" -#~ msgstr "Povolit pÅ™eklady" - -#~ msgid "Locate to Range Mark" -#~ msgstr "Ukazatele polohy postavit na znaÄku rozsahu" - -#~ msgid "Play from Range Mark" -#~ msgstr "PÅ™ehrávat od znaÄky rozsahu" - -#~ msgid "Playback/Recording on 1 Device" -#~ msgstr "PÅ™ehrávání/Nahrávání s jedním zařízením" - -#~ msgid "Playback/Recording on 2 Devices" -#~ msgstr "PÅ™ehrávání/Nahrávání se dvÄ›ma zařízeními" - -#~ msgid "Bank:" -#~ msgstr "Banka:" - -#~ msgid "Program:" -#~ msgstr "Program:" - -#~ msgid "Channel:" -#~ msgstr "Kanál:" - -#~ msgid "Lck" -#~ msgstr "Zamknout" - -#~ msgid "Use overlap equivalency for regions" -#~ msgstr "Použít pro oblasti stejný rozsah pÅ™ekrytí" - -#~ msgid "" -#~ "When extending region selection across a group, %1 must decide which " -#~ "regions are equivalent\n" -#~ "\n" -#~ "If enabled, regions are considered \"equivalent\" if they overlap on the " -#~ "timeline.\n" -#~ "\n" -#~ "If disabled, regions are considered \"equivalent\" only if have the same " -#~ "start time, length and position" -#~ msgstr "" -#~ "PÅ™i rozšíření výbÄ›ru oblasti pÅ™es skupinu, %1 musí rozhodnout, které " -#~ "oblasti jsou odpovídající.\n" -#~ "\n" -#~ "Když je povoleno, oblasti se považují za \"odpovídající\", pokud se " -#~ "pÅ™ekrývají na Äasové ose.\n" -#~ "\n" -#~ "Když je zakázáno, oblasti se považují za \"odpovídající\", jen když mají " -#~ "stejný zaÄáteÄní Äas, délku a polohu" - -#~ msgid "Use a monitor bus (allows AFL/PFL and more control)" -#~ msgstr "Použít sledovací sbÄ›rnici (umožňuje AFL/PFL a více kontroly)" - -#~ msgid "Subframes per frame" -#~ msgstr "Podřízených snímků na snímek" - -#~ msgid "80" -#~ msgstr "80" - -#~ msgid "100" -#~ msgstr "100" - -#~ msgid "gTortnam" -#~ msgstr "gTortnam" - -#~ msgid "could not create a new mixed track" -#~ msgstr "NepodaÅ™ilo se vytvoÅ™it novou smíchanou stopu" - -#, fuzzy -#~ msgid "could not create new audio bus" -#~ msgid_plural "could not create %1 new audio busses" -#~ msgstr[0] "NepodaÅ™ilo se vytvoÅ™it novou zvukovou sbÄ›rnici" -#~ msgstr[1] "NepodaÅ™ilo se vytvoÅ™it novou zvukovou sbÄ›rnici" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were not in use and \n" -#~ "have been moved to: %2\n" -#~ "\n" -#~ "After a restart of %5\n" -#~ "\n" -#~ "Session -> Clean-up -> Flush Wastebasket\n" -#~ "\n" -#~ "will release an additional %3 %4bytes of disk space.\n" -#~ msgstr "" -#~ "Následující %1 soubory nebyly nepoužívány a\n" -#~ "byly pÅ™esunuty do:\n" -#~ "\n" -#~ "%2. \n" -#~ "\n" -#~ "Po znovuspuÅ¡tÄ›ní %5,\n" -#~ "\n" -#~ "Sezení -> UdÄ›lat pořádek -> Vyprázdnit koÅ¡\n" -#~ "\n" -#~ "uvolní se na disku dalších\n" -#~ "%3 %4 bajtů ukládacího prostoru.\n" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were deleted from %2,\n" -#~ "releasing %3 %4bytes of disk space" -#~ msgstr "" -#~ "Následující %1 soubory byly smazány z\n" -#~ "%2,\n" -#~ "a tím se na disku uvolnilo %3 %4 bajtů ukládacího prostoru" - -#~ msgid "ConstantPower" -#~ msgstr "NemÄ›nná síla" - -#~ msgid "could only create %1 of %2 new audio %3" -#~ msgstr "Lze vytvoÅ™it jen %1 ze %2 nových %3" - -#~ msgid "Always Play Range Selection (if any)" -#~ msgstr "Vždy pÅ™ehrávat výbÄ›r rozsahu (je-li jaký)" - -#~ msgid "Start playback after any locate" -#~ msgstr "Spustí pÅ™ehrávání po stanovení jakéhokoli místa pro ukazatel polohy" - -#~ msgid "Always Play Range" -#~ msgstr "Vždy pÅ™ehrávat rozsah" - -#~ msgid "pullup: \\u2012" -#~ msgstr "zastavit: \\u2012" - -#~ msgid "pullup %-6.4f" -#~ msgstr "zastavit %-6.4f" - -#~ msgid "Select/Move Objects" -#~ msgstr "Vybrat/Posunout pÅ™edmÄ›ty" - -#~ msgid "Select/Move Ranges" -#~ msgstr "Vybrat/Posunout rozsahy" - -#~ msgid "Edit Region Contents (e.g. notes)" -#~ msgstr "Upravit obsah oblasti (napÅ™. noty)" - -#~ msgid "Link Object / Range Tools" -#~ msgstr "Nástroje pro propojení pÅ™edmÄ›tu/rozsahu" - -#~ msgid "editing|E" -#~ msgstr "Úpravy|Ú" - -#~ msgid "Sharing Editing?" -#~ msgstr "Sdílení úprav?" - -#~ msgid "Disable plugins during recording" -#~ msgstr "Zakázat přídavné moduly bÄ›hem nahrávání" - -#~ msgid "Visual|Interface" -#~ msgstr "Viditelný|Rozhraní" - -#~ msgid "Editing" -#~ msgstr "Úpravy" - -#~ msgid "Timecode source shares sample clock with audio interface" -#~ msgstr "Zdroj Äasového kódu sdílí hodiny vzorku s rozhraním pro zvuk" - -#~ msgid "Timecode Offset Negative" -#~ msgstr "Záporný posun Äasového kódu" - -#~ msgid "Crossfades are created" -#~ msgstr "Prolínání jsou vytvoÅ™ena" - -#~ msgid "to span entire overlap" -#~ msgstr "K rozpÄ›tí celého pÅ™ekrytí" - -#~ msgid "constant power (-6dB)" -#~ msgstr "NemÄ›nná síla (-6dB)" - -#~ msgid "use existing region fade shape" -#~ msgstr "Použít stávající podobu prolínání oblasti" - -#~ msgid "short-xfade-seconds" -#~ msgstr "krátké-xfade-sekundy" - -#~ msgid "Short crossfade length" -#~ msgstr "Délka krátkého prolínání" - -#~ msgid "Create crossfades automatically" -#~ msgstr "VytvoÅ™it prolínání automaticky" - -#~ msgid "Page %1, [Stop]->" -#~ msgstr "Strana %1, [Zastavit]->" - -#~ msgid "Add files:" -#~ msgstr "PÅ™idat soubory:" - -#~ msgid "Mapping:" -#~ msgstr "PÅ™iÅ™azení:" - -#~ msgid "" -#~ "Russian:\n" -#~ "\t Igor Blinov \n" -#~ msgstr "" -#~ "RuÅ¡tina:\n" -#~ "\t Igor Blinov \n" - -#~ msgid "Add MIDI Controller Track" -#~ msgstr "PÅ™idat stopu pro ovládání MIDI" - -#~ msgid "%1 could not start JACK" -#~ msgstr "%1 se nepodaÅ™ilo spustit JACK" - -#~ msgid "" -#~ "There are several possible reasons:\n" -#~ "\n" -#~ "1) You requested audio parameters that are not supported..\n" -#~ "2) JACK is running as another user.\n" -#~ "\n" -#~ "Please consider the possibilities, and perhaps try different parameters." -#~ msgstr "" -#~ "Pro to může být nÄ›kolik možných důvodů:\n" -#~ "\n" -#~ "1) Vybral jste si nepodporovaná nastavení zvuku (nepodporované pomocné " -#~ "promÄ›nné).\n" -#~ "2) JACK byl spuÅ¡tÄ›n pod jiným uživatelem.\n" -#~ "\n" -#~ "Zvažte, prosím, tyto možnosti, a případnÄ› vyzkouÅ¡ejte jiná nastavení." - -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "snapshot names may not contain a '\\' character" -#~ msgstr "" -#~ "Pro zajiÅ¡tÄ›ní sluÄitelnosti s různými systémy\n" -#~ "nesmí názvy snímků obrazovky obsahovat znak '\\'." - -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "snapshot names may not contain a ':' character" -#~ msgstr "" -#~ "Pro zajiÅ¡tÄ›ní sluÄitelnosti s různými systémy\n" -#~ "nesmí názvy snímků obrazovky obsahovat znak ':'" - -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "session names may not contain a '\\' character" -#~ msgstr "" -#~ "Pro zajiÅ¡tÄ›ní sluÄitelnosti s různými systémy\n" -#~ "nesmí názvy sezení obsahovat znak '\\'" - -#~ msgid "Sorry, MIDI Busses are not supported at this time." -#~ msgstr "Promiňte, ale sbÄ›rnice MIDI nejsou toho Äasu podporovány." - -#~ msgid "Toolbars when Maximised" -#~ msgstr "Nástrojové pruhy pÅ™i zvÄ›tÅ¡ení" - -#~ msgid "Mixer" -#~ msgstr "SměšovaÄ" - -#~ msgid "Show All Crossfades" -#~ msgstr "Ukázat vÅ¡echna prolínání" - -#~ msgid "Edit Crossfade" -#~ msgstr "Upravit prolínání" - -#~ msgid "Out (dry)" -#~ msgstr "Výstup (zkouÅ¡ka)" - -#~ msgid "In (dry)" -#~ msgstr "Vstup (zkouÅ¡ka)" - -#~ msgid "With Pre-roll" -#~ msgstr "s pÅ™ed-toÄením" - -#~ msgid "With Post-roll" -#~ msgstr "s po-toÄením" - -#~ msgid "Edit crossfade" -#~ msgstr "Upravit prolínání" - -#~ msgid "Route Groups" -#~ msgstr "Skupiny cest" - -#~ msgid "Unmute" -#~ msgstr "ZruÅ¡it ztiÅ¡ení" - -#~ msgid "Convert to Short" -#~ msgstr "PÅ™evést na krátké prolínání" - -#~ msgid "Convert to Full" -#~ msgstr "PÅ™evést na dlouhé prolínání" - -#~ msgid "Nudge Entire Track Backward" -#~ msgstr "PostrÄit celou stopu dozadu" - -#~ msgid "Nudge Track After Edit Point Backward" -#~ msgstr "PostrÄit stopu po pracovním bodu dozadu" - -#~ msgid "Nudge Region/Selection Backwards" -#~ msgstr "PostrÄit oblast/výbÄ›r o krok dozadu" - -#~ msgid "Sound Notes" -#~ msgstr "Noty se zvukem" - -#~ msgid "Undo" -#~ msgstr "ZpÄ›t" - -#~ msgid "Jump Forward to Mark" -#~ msgstr "SkoÄit dopÅ™edu na další znaÄku" - -#~ msgid "Jump Backward to Mark" -#~ msgstr "SkoÄit zpÄ›t na pÅ™edchozí znaÄku" - -#~ msgid "Nudge Next Backward" -#~ msgstr "Další oblast postrÄit o krok zpÄ›t" - -#~ msgid "Forward to Grid" -#~ msgstr "DopÅ™edu v mřížce" - -#~ msgid "Backward to Grid" -#~ msgstr "ZpÄ›t v mřížce" - -#~ msgid "Move Backwards to Transient" -#~ msgstr "PÅ™esunout se zpÄ›t k pÅ™edchozímu pÅ™echodu" - -#~ msgid "Add Range Marker(s)" -#~ msgstr "PÅ™idat znaÄku(y) rozsahu" - -#~ msgid "Envelope Visible" -#~ msgstr "Viditelná kÅ™ivka síly zvuku" - -#~ msgid "Fork" -#~ msgstr "Rozdvojit" - -#~ msgid "Nudge Backward by Capture Offset" -#~ msgstr "PostrÄit dopÅ™edu podle odsazení nahrávání" - -#~ msgid "Rel" -#~ msgstr "NahZn" - -#~ msgid "Sel" -#~ msgstr "Výb" - -#~ msgid "E" -#~ msgstr "Ú" - -#~ msgid "" -#~ "This route cannot be frozen because it has more outputs than inputs. You " -#~ "can fix this by increasing the number of inputs." -#~ msgstr "" -#~ "Tato cesta nemůže být zmražena, protože má více výstupů než vstupů. " -#~ "Můžete to opravit zvýšením poÄtu vstupů." - -#~ msgid "region gain envelope visible" -#~ msgstr "KÅ™ivka síly zvuku v oblasti viditelná" - -#~ msgid "time stretch" -#~ msgstr "Protáhnutí Äasu" - -#~ msgid "Realtime Priority" -#~ msgstr "PÅ™ednost v provádÄ›ní ve skuteÄném Äase" - -#~ msgid "Input channels:" -#~ msgstr "Vstupní kanály:" - -#~ msgid "Output channels:" -#~ msgstr "Výstupní kanály:" - -#~ msgid "Advanced options" -#~ msgstr "PokroÄilé volby" - -#~ msgid "Include in Filename(s):" -#~ msgstr "Zahrnout do názvu souboru(ů):" - -#~ msgid "New From" -#~ msgstr "Nový z" - -#~ msgid "Move tempo and meter changes" -#~ msgstr "PÅ™esunout zmÄ›ny tempa a druhu taktu" - -#~ msgid "Option-" -#~ msgstr "Volba-" - -#~ msgid "Shift-" -#~ msgstr "Shift-" - -#~ msgid "Control-" -#~ msgstr "Ctrl-" - -#~ msgid "SCMS" -#~ msgstr "SCMS" - -#~ msgid "Set value to playhead" -#~ msgstr "Nastavit hodnotu na ukazatele polohy" - -#~ msgid "Jump to the end of this range" -#~ msgstr "SkoÄit na konec tohoto rozsahu" - -#~ msgid "Jump to the start of this range" -#~ msgstr "SkoÄit na zaÄátek tohoto rozsahu" - -#~ msgid "End time" -#~ msgstr "ÄŒas konce" - -#~ msgid "Could not create user configuration directory" -#~ msgstr "NepodaÅ™ilo se vytvoÅ™it adresář s uživatelským nastavením" - -#~ msgid "MIDI Thru" -#~ msgstr "MIDI pÅ™es" - -#~ msgid "Store this many lines: " -#~ msgstr "Ukládat tento poÄet řádků: " - -#~ msgid "" -#~ "Button 1 to choose inputs from a port matrix, button 3 to select inputs " -#~ "from a menu" -#~ msgstr "" -#~ "TlaÄítko 1 pro výbÄ›r vstupů z mřížky přípojky, tlaÄítko 3 pro výbÄ›r " -#~ "vstupů z nabídky" - -#~ msgid "" -#~ "Button 1 to choose outputs from a port matrix, button 3 to select inputs " -#~ "from a menu" -#~ msgstr "" -#~ "TlaÄítko 1 pro výbÄ›r výstupů z mřížky přípojky, tlaÄítko 3 pro výbÄ›r " -#~ "vstupů z nabídky" - -#~ msgid "signal" -#~ msgstr "Signál" - -#~ msgid "close" -#~ msgstr "Zavřít" - -#~ msgid "New send" -#~ msgstr "Nové odeslání" - -#~ msgid "New Send ..." -#~ msgstr "Vložit nové odeslání..." - -#~ msgid "Controls..." -#~ msgstr "Ovládání..." - -#~ msgid "Legato" -#~ msgstr "Legato" - -#~ msgid "Groove" -#~ msgstr "Rytmus" - -#~ msgid "Quantize Type" -#~ msgstr "Typ kvantování" - -#~ msgid "Secondary clock delta to edit cursor" -#~ msgstr "Vedlejší ukazatel Äasu ukazuje vzdálenost k pracovnímu bodu" - -#~ msgid "Route active state" -#~ msgstr "ÄŒinný stav cesty" - -#~ msgid "" -#~ "Left-click to invert (phase reverse) all channels of this track. Right-" -#~ "click to show menu." -#~ msgstr "" -#~ "Klepnutí levým tlaÄítkem myÅ¡i pro obrácení (otoÄení fáze) vÅ¡ech kanálů " -#~ "této stopy. Klepnutí pravým tlaÄítkem myÅ¡i pro ukázání nabídky." - -#~ msgid "Crossfades active" -#~ msgstr "Prolínání Äinné" - -#~ msgid "Layering (in overlaid mode)" -#~ msgstr "Vrstvení (v režimu pÅ™ekrytí)" - -#~ msgid "Layering model" -#~ msgstr "Model vrstvení" - -#~ msgid "later is higher" -#~ msgstr "PozdÄ›jší je výše" - -#~ msgid "most recently moved or added is higher" -#~ msgstr "Naposledy posunuté nebo pÅ™idané je výše" - -#~ msgid "most recently added is higher" -#~ msgstr "Naposledy pÅ™idané je výše" - -#~ msgid "Broadcast WAVE metadata" -#~ msgstr "Metadata Broadcast WAVE" - -#~ msgid "Page:" -#~ msgstr "Strana:" - -#~ msgid "" -#~ "(You can change this preference at any time, via the " -#~ "Preferences dialog)" -#~ msgstr "" -#~ "(Toto nastavení můžete zmÄ›nit kdykoli, pÅ™es dialog Nastavení)" - -#~ msgid "second (2)" -#~ msgstr "PoloviÄní (2)" - -#~ msgid "eighth (8)" -#~ msgstr "Osmina (8)" - -#~ msgid "garbaged note type entry (%1)" -#~ msgstr "Chybný druh not (%1)" - -#~ msgid "Strict Linear" -#~ msgstr "PřísnÄ› přímoÄarý" - -#~ msgid "no style found for %1, using red" -#~ msgstr "Nenalezen žádný styl pro %1, používá se Äervená" - -#~ msgid "unknown style attribute %1 requested for color; using \"red\"" -#~ msgstr "" -#~ "Neznámý charakteristický znak (atribut) %1 požadovaný pro barvu; místo " -#~ "ní se radÄ›ji používá \"Äervená\"" - -#~ msgid "" -#~ "pre\n" -#~ "roll" -#~ msgstr "" -#~ "pÅ™ed\n" -#~ "projíždÄ›t" - -#~ msgid "" -#~ "post\n" -#~ "roll" -#~ msgstr "" -#~ "po\n" -#~ "projíždÄ›t" - -#~ msgid "" -#~ "time\n" -#~ "master" -#~ msgstr "" -#~ "Řízení\n" -#~ "Äasu" - -#~ msgid "AUDITION" -#~ msgstr "POSLECH" - -#~ msgid "SOLO" -#~ msgstr "SÓLO" - -#~ msgid "%.1f kHz / %4.1f ms" -#~ msgstr "%.1f kHz / %4.1f ms" - -#~ msgid "% kHz / %4.1f ms" -#~ msgstr "% kHz / %4.1f ms" - -#~ msgid "DSP: %5.1f%%" -#~ msgstr "DSP: %5.1f%%" - -#~ msgid "Buffers p:%%% c:%%%" -#~ msgstr "Vyrovnávací pamÄ›ti p:%%% c:%%%" - -#~ msgid "Disk: 24hrs+" -#~ msgstr "Pevný disk: >24 Std." - -#~ msgid "Does %1 control the time?" -#~ msgstr "Ovládá %1 Äas?" - -#~ msgid "External" -#~ msgstr "VnÄ›jší" - -#, fuzzy -#~ msgid " " -#~ msgstr "% " - -#~ msgid "automation" -#~ msgstr "Automatizace" - -#, fuzzy -#~ msgid "Delete Unused" -#~ msgstr "Odstranit pomocí:" - -#~ msgid "No devices found for driver \"%1\"" -#~ msgstr "Nenalezeno žádné zařízení pro ovladaÄ pro \"%1\"" - -#~ msgid "MUTE" -#~ msgstr "ZTLUMIT" - -#~ msgid "Exclusive" -#~ msgstr "Výhradní" - -#~ msgid "Solo/Mute" -#~ msgstr "Sólo/Ztlumit" - -#~ msgid "Dim Cut" -#~ msgstr "Vyjmutí ztlumení" - -#~ msgid "Activate all" -#~ msgstr "Zapnout vÅ¡e" - -#~ msgid "A track already exists with that name" -#~ msgstr "Již existuje jedna stopa s tímto názvem" - -#~ msgid "layer-display" -#~ msgstr "Zobrazení vrstvy" - -#~ msgid "r" -#~ msgstr "n" - -#~ msgid "MIDI Note Overlaps" -#~ msgstr "PÅ™ekrytí not MIDI" - -#~ msgid "Password:" -#~ msgstr "Heslo:" - -#~ msgid "Cancelling.." -#~ msgstr "Ruší se..." - -#~ msgid "unknown track height name \"%1\" in XML GUI information" -#~ msgstr "Neznámý název pro výšku stopy \"%1\" v XML GUI informacích" - -#~ msgid "quit" -#~ msgstr "UkonÄit" - -#~ msgid "session" -#~ msgstr "Projekt" - -#~ msgid "snapshot" -#~ msgstr "Snímek obrazovky" - -#~ msgid "Save Mix Template" -#~ msgstr "Uložit pÅ™edlohu smÄ›si" - -#~ msgid "" -#~ "Welcome to %1.\n" -#~ "\n" -#~ "The program will take a bit longer to start up\n" -#~ "while the system fonts are checked.\n" -#~ "\n" -#~ "This will only be done once, and you will\n" -#~ "not see this message again\n" -#~ msgstr "" -#~ "Vítejte v %1.\n" -#~ "\n" -#~ "SpuÅ¡tÄ›ní programu potrvá o nÄ›co déle,\n" -#~ "protože budou zkontrolována systémová písma.\n" -#~ "\n" -#~ "Tato kontrola se provede pouze jedenkrát, a potom již\n" -#~ "toto hlášení znovu neuvidíte.\n" - -#~ msgid "Clean Up" -#~ msgstr "UdÄ›lat pořádek" - -#~ msgid "Select semitones or %%-age for speed display" -#~ msgstr "Nastavit polotóny nebo procenta pro zobrazení údajů o rychlosti" - -#~ msgid "Current transport speed" -#~ msgstr "NynÄ›jší rychlost pÅ™esunu" - -#~ msgid "stop" -#~ msgstr "Zastavit" - -#~ msgid "-0.55" -#~ msgstr "-0.55" - -#~ msgid "Cleanup" -#~ msgstr "UdÄ›lat pořádek" - -#~ msgid "Off" -#~ msgstr "Vypnuto" - -#~ msgid "99:99" -#~ msgstr "99:99" - -#~ msgid "9999h:999999m:99999999s" -#~ msgstr "9999h:999999m:99999999s" - -#~ msgid "DSP: 100.0%" -#~ msgstr "DZS: 100.0%" - -#~ msgid "Buffers p:100% c:100%" -#~ msgstr "Vyrovnávací pamÄ›ti p:100% c:100%" - -#~ msgid "ST" -#~ msgstr "ST" - -#~ msgid "Extend Range to End of Region" -#~ msgstr "ZvÄ›tÅ¡it rozsah až po konec oblasti" - -#~ msgid "Extend Range to Start of Region" -#~ msgstr "ZvÄ›tÅ¡it rozsah až po zaÄátek oblasti" - -#~ msgid "Key Mouse" -#~ msgstr "MyÅ¡ s tlaÄítky" - -#~ msgid "goto" -#~ msgstr "Jít na" - -#~ msgid "Center Active Marker" -#~ msgstr "VystÅ™edit Äinnou znaÄku" - -#~ msgid "Brush at Mouse" -#~ msgstr "Å tÄ›tec na polohu myÅ¡i" - -#~ msgid "Smaller" -#~ msgstr "Menší" - -#~ msgid "Bounce" -#~ msgstr "Vrazit" - -#~ msgid "fixed time region copy" -#~ msgstr "Oblast souÄasnÄ› kopírovat" - -#~ msgid "region copy" -#~ msgstr "Kopírovat oblast" - -#~ msgid "timestretch" -#~ msgstr "Protáhnutí Äasu" - -#~ msgid "" -#~ "One or more of the selected regions' tracks cannot be bounced because it " -#~ "has more outputs than inputs. You can fix this by increasing the number " -#~ "of inputs on that track." -#~ msgstr "" -#~ "Jedna nebo více vybraných stop oblastí nemůže být vyhozena, protože má " -#~ "více výstupů než vstupů. Můžete to opravit zvýšením poÄtu vstupů na té " -#~ "stopÄ›." - -#~ msgid "extend selection" -#~ msgstr "Rozšířit výbÄ›r" - -#~ msgid "" -#~ "One or more selected tracks cannot be bounced because it has more outputs " -#~ "than inputs. You can fix this by increasing the number of inputs on that " -#~ "track." -#~ msgstr "" -#~ "Jedna nebo více vybraných stop nemůže být vyhozena, protože má více " -#~ "výstupů než vstupů. Můžete to opravit zvýšením poÄtu vstupů na té stopÄ›." - -#~ msgid "Clear tempo" -#~ msgstr "Tempo posadit zpÄ›t" - -#~ msgid "Clear meter" -#~ msgstr "Vrátit zpÄ›t druh taktu" - -#~ msgid "Processing file %2 of %3 (%1) from timespan %4 of %5" -#~ msgstr "Zpracovává se soubor %2 z %3 (%1) z Äasového rozpÄ›tí %4 z %5" - -#~ msgid "Encoding file %2 of %3 (%1) from timespan %4 of %5" -#~ msgstr "Kóduje se soubor %2 z %3 (%1) z Äasového rozpÄ›tí %4 z %5" - -#~ msgid "Default Channel" -#~ msgstr "Výchozí kanál" - -#~ msgid "input" -#~ msgstr "Vstup" - -#~ msgid "Inserts, sends & plugins:" -#~ msgstr "Vložky, odeslání & přídavné moduly:" - -#~ msgid "Step Edit" -#~ msgstr "Úprava kroku" - -#~ msgid "" -#~ "Do you really want to remove bus \"%1\" ?\n" -#~ "\n" -#~ "You may also lose the playlist used by this track.\n" -#~ "\n" -#~ "(This action cannot be undone, and the session file will be overwritten)" -#~ msgstr "" -#~ "SkuteÄnÄ› chcete odstranit sbÄ›rnici \"%1\"?\n" -#~ "\n" -#~ "Můžete také ztratit seznam skladeb používaný touto stopou.\n" -#~ "\n" -#~ "\n" -#~ "(Toto nelze vrátit zpÄ›t, a soubor se sezením bude pÅ™epsán!)" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "No session named \"%1\" exists.\n" -#~ "To create it from the command line, start ardour as:\n" -#~ " ardour --new %1" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Es existiert kein Projekt mit dem Namen \"%1\".\n" -#~ "Um es von der Kommandozeile aus zu erstellen, starten Sie ardour mit:\n" -#~ " ardour --new %1" - -#~ msgid "Ardour cannot understand \"%1\" as a session name" -#~ msgstr "Ardour kann \"%1\" nicht als Projektnamen benutzen" - -#~ msgid "Data" -#~ msgstr "Datenformat" - -#~ msgid "" -#~ " This is destructive, will possibly delete audio files\n" -#~ "It cannot be undone\n" -#~ "Do you really want to destroy %1 ?" -#~ msgstr "" -#~ " Diese Aktion ist destruktiv und löscht möglicherweise Audiodateien\n" -#~ "Dies kann nicht rückgängig gemacht werden\n" -#~ "Wollen Sie %1 wirklich löschen ?" - -#~ msgid "BPM denominator" -#~ msgstr "BPM Zählzeit" - -#~ msgid "insert file" -#~ msgstr "Vložit soubor" - -#~ msgid "region drag" -#~ msgstr "PÅ™esunout oblast" - -#~ msgid "Drag region brush" -#~ msgstr "Å tÄ›tec pro táhnutí hranicí oblasti" - -#~ msgid "selection grab" -#~ msgstr "Popadnutí výbÄ›ru" - -#~ msgid "region fill" -#~ msgstr "Vyplnit oblast" - -#~ msgid "fill selection" -#~ msgstr "Vyplnit výbÄ›r" - -#~ msgid "duplicate region" -#~ msgstr "Zdvojit oblast" - -#~ msgid "C" -#~ msgstr "C" - -#~ msgid "link" -#~ msgstr "Spojení" - -#~ msgid "panning link control" -#~ msgstr "Ovládání spojení vyvážení" - -#~ msgid "panning link direction" -#~ msgstr "SmÄ›r spojení vyvážení" - -#~ msgid "panner for channel %zu" -#~ msgstr "OvladaÄ vyvážení pro kanál %" - -#~ msgid "Reset all" -#~ msgstr "VÅ¡e znovu nastavit" - -#~ msgid "Set tempo map" -#~ msgstr "Nastavit mapu tempa" - -#~ msgid "pixbuf" -#~ msgstr "Pixelová vyrovnávací paměť" - -#~ msgid "the pixbuf" -#~ msgstr "Pixelová vyrovnávací paměť" - -#~ msgid "x" -#~ msgstr "x" - -#~ msgid "y" -#~ msgstr "y" - -#~ msgid "the width" -#~ msgstr "Šířka" - -#~ msgid "drawwidth" -#~ msgstr "Nakreslená šířka" - -#~ msgid "drawn width" -#~ msgstr "Nakreslená šířka" - -#~ msgid "height" -#~ msgstr "Výška" - -#~ msgid "anchor" -#~ msgstr "Kotva" - -#~ msgid "the anchor" -#~ msgstr "Kotva" - -#~ msgid "frames_per_unit of ruler" -#~ msgstr "Snímků_na_jednotku pravítka" - -#~ msgid "fill color" -#~ msgstr "Barva výplnÄ›" - -#~ msgid "color of tick" -#~ msgstr "Barva háÄku" - -#~ msgid "ardour: export ranges" -#~ msgstr "ardour: vyvést oblasti do souboru" - -#~ msgid "Export to Directory" -#~ msgstr "Vyvést v podobÄ› souboru do adresáře" - -#~ msgid "Please enter a valid target directory." -#~ msgstr "Zadejte, prosím, platný cílový adresář." - -#~ msgid "Please select an existing target directory. Files are not allowed!" -#~ msgstr "" -#~ "Vyberte, prosím, existující cílový adresář.\n" -#~ "Vybrat soubory není povoleno." - -#~ msgid "Cannot write file in: " -#~ msgstr "Soubor nelze zapsat do adresáře:" - -#~ msgid "NAME:" -#~ msgstr "NÃZEV:" - -#~ msgid "play" -#~ msgstr "PÅ™ehrát" - -#, fuzzy -#~ msgid "START:" -#~ msgstr "ZAÄŒÃTEK SOUBORU (FILE START):" - -#~ msgid "END:" -#~ msgstr "KONEC:" - -#~ msgid "LENGTH:" -#~ msgstr "DÉLKA:" - -#~ msgid "Primary clock" -#~ msgstr "Hlavní údaj o Äase" - -#~ msgid "secondary clock" -#~ msgstr "Vedlejší údaj o Äase" - -#~ msgid "programming error: start_grab called without drag item" -#~ msgstr "Chyba v programování: start_grab volán bez tažení položky" - -#~ msgid "" -#~ "programming error: fade out canvas item has no regionview data pointer!" -#~ msgstr "" -#~ "Chyba v programování: položka plátna postupné slábnutí signálu nemá žádný " -#~ "ukazatel dat pohledu na oblast!" - -#~ msgid "programming error: cursor canvas item has no cursor data pointer!" -#~ msgstr "" -#~ "Chyba v programování: položka plátna kurzor nemá žádný ukazatel dat " -#~ "kurzoru!" - -#~ msgid "move region(s)" -#~ msgstr "Pohnout oblastí(stmi)" - -#~ msgid "move selection" -#~ msgstr "Pohnout výbÄ›rem" - -#~ msgid "Import/Export" -#~ msgstr "Zavést/Vyvést" - -#, fuzzy -#~ msgid "Export selection to audiofile..." -#~ msgstr "Vyvést sezení jako zvukový soubor..." - -#, fuzzy -#~ msgid "Export range markers to audiofile..." -#~ msgstr "Vyvést oblasti urÄené znaÄkami jako zvukový soubor..." - -#~ msgid "Show Mixer" -#~ msgstr "Ukázat mixér" - -#~ msgid "Track/Bus Inspector" -#~ msgstr "Dohlížitel stopy/sbÄ›rnice" - -#~ msgid "Toggle Record Enable Track2" -#~ msgstr "Spustit nahrávání stopy 2" - -#~ msgid "Toggle Record Enable Track3" -#~ msgstr "Spustit nahrávání stopy 3" - -#~ msgid "Toggle Record Enable Track4" -#~ msgstr "Spustit nahrávání stopy 4" - -#~ msgid "Toggle Record Enable Track5" -#~ msgstr "Spustit nahrávání stopy 5" - -#~ msgid "Toggle Record Enable Track6" -#~ msgstr "Spustit nahrávání stopy 6" - -#~ msgid "Toggle Record Enable Track7" -#~ msgstr "Spustit nahrávání stopy 7" - -#~ msgid "Toggle Record Enable Track8" -#~ msgstr "Spustit nahrávání stopy 8" - -#~ msgid "Toggle Record Enable Track9" -#~ msgstr "Spustit nahrávání stopy 9" - -#~ msgid "Toggle Record Enable Track10" -#~ msgstr "Spustit nahrávání stopy 10" - -#~ msgid "Toggle Record Enable Track11" -#~ msgstr "Spustit nahrávání stopy 11" - -#~ msgid "Toggle Record Enable Track12" -#~ msgstr "Spustit nahrávání stopy 12" - -#~ msgid "Toggle Record Enable Track13" -#~ msgstr "Spustit nahrávání stopy 13" - -#~ msgid "Toggle Record Enable Track14" -#~ msgstr "Spustit nahrávání stopy 14" - -#~ msgid "Toggle Record Enable Track15" -#~ msgstr "Spustit nahrávání stopy 15" - -#~ msgid "Toggle Record Enable Track16" -#~ msgstr "Spustit nahrávání stopy 16" - -#~ msgid "Toggle Record Enable Track17" -#~ msgstr "Spustit nahrávání stopy 17" - -#~ msgid "Toggle Record Enable Track18" -#~ msgstr "Spustit nahrávání stopy 18" - -#~ msgid "Toggle Record Enable Track19" -#~ msgstr "Spustit nahrávání stopy 19" - -#~ msgid "Toggle Record Enable Track20" -#~ msgstr "Spustit nahrávání stopy 20" - -#~ msgid "Toggle Record Enable Track21" -#~ msgstr "Spustit nahrávání stopy 21" - -#~ msgid "Toggle Record Enable Track22" -#~ msgstr "Spustit nahrávání stopy 22" - -#~ msgid "Toggle Record Enable Track23" -#~ msgstr "Spustit nahrávání stopy 23" - -#~ msgid "Toggle Record Enable Track24" -#~ msgstr "Spustit nahrávání stopy 24" - -#~ msgid "Toggle Record Enable Track25" -#~ msgstr "Spustit nahrávání stopy 25" - -#~ msgid "Toggle Record Enable Track26" -#~ msgstr "Spustit nahrávání stopy 26" - -#~ msgid "Toggle Record Enable Track27" -#~ msgstr "Spustit nahrávání stopy 27" - -#~ msgid "Toggle Record Enable Track28" -#~ msgstr "Spustit nahrávání stopy 28" - -#~ msgid "Toggle Record Enable Track29" -#~ msgstr "Spustit nahrávání stopy 29" - -#~ msgid "Toggle Record Enable Track30" -#~ msgstr "Spustit nahrávání stopy 30" - -#~ msgid "Toggle Record Enable Track31" -#~ msgstr "Spustit nahrávání stopy 31" - -#~ msgid "Toggle Record Enable Track32" -#~ msgstr "Spustit nahrávání stopy 32" - -#~ msgid "Use OSC" -#~ msgstr "Použít OSC" - -#~ msgid "Stop transport at session end" -#~ msgstr "PÅ™enos zastavit na konci sezení" - -#~ msgid "Region equivalents overlap" -#~ msgstr "Oblast odpovídá pÅ™ekrytí" - -#~ msgid "Enable Editor Meters" -#~ msgstr "V editoru spustit ukazatele hladin" - -#~ msgid "Rubberbanding Snaps to Grid" -#~ msgstr "Protažení Äasu zapadne do mřížky" - -#~ msgid "Auto-analyse new audio" -#~ msgstr "Automaticky rozebrat nové zvukové soubory" - -#~ msgid "Use DC bias" -#~ msgstr "Použít stejnosmÄ›rnou složku" - -#~ msgid "JACK does monitoring" -#~ msgstr "Sledování pomocí JACK" - -#~ msgid "Ardour does monitoring" -#~ msgstr "Sledování pomocí Ardouru" - -#~ msgid "Audio Hardware does monitoring" -#~ msgstr "Sledování pomocí zvukového technického vybavení poÄítaÄe" - -#~ msgid "Solo in-place" -#~ msgstr "Sólo v místÄ›" - -#~ msgid "Auto-connect inputs to physical inputs" -#~ msgstr "Automaticky spojit vstupy se skuteÄnými zvukovými vstupy" - -#~ msgid "Manually connect inputs" -#~ msgstr "Vstupy spojit ruÄnÄ›" - -#~ msgid "Auto-connect outputs to physical outs" -#~ msgstr "Automaticky spojit výstupy se skuteÄnými zvukovými výstupy" - -#~ msgid "Auto Rebind Controls" -#~ msgstr "Automaticky napojit prvky ovládání" - -#~ msgid "redirect automation created for non-plugin" -#~ msgstr "Automatizace pÅ™esmÄ›rování vytvoÅ™ená pro ne-přídavný modul" - -#~ msgid "Show waveforms" -#~ msgstr "Ukázat tvary vln" - -#~ msgid "Waveform" -#~ msgstr "Tvar vlny" - -#~ msgid "gain" -#~ msgstr "Zesílení signálu" - -#~ msgid "pan" -#~ msgstr "Vyvážení (panorama)" - -#~ msgid "programming error: no ImageFrameView selected" -#~ msgstr "Chyba v programování: nebyl vybrán žádný pohled na obrázkový snímek" - -#~ msgid "programming error: no MarkerView selected" -#~ msgstr "Chyba v programování: nebyl vybrán žádný pohled na znaÄku" - -#~ msgid "h" -#~ msgstr "h" - -#~ msgid "track height" -#~ msgstr "Výška ukazatele stopy" - -#~ msgid "clear track" -#~ msgstr "Vymazat stopu" - -#~ msgid "add gain automation event" -#~ msgstr "Vložit bod do kÅ™ivky síly hlasitosti" - -#~ msgid "Add existing audio" -#~ msgstr "PÅ™idat zvuk" - -#~ msgid "" -#~ "A source file %1 already exists. This operation will not update that " -#~ "source but import the file %2 as a new source, please confirm." -#~ msgstr "" -#~ "Zdrojový soubor %1 již existuje. Tato operace zdrojový soubor " -#~ "nezaktualizuje, nýbrž soubor %2 zavede jako nový soubor. Prosím, potvrÄte." - -#, fuzzy -#~ msgid "importing %1" -#~ msgstr "Zavádí se %1" - -#~ msgid "1.5 seconds" -#~ msgstr "1,5 sekund" - -#~ msgid "2 seconds" -#~ msgstr "2 sekundy" - -#~ msgid "2.5 seconds" -#~ msgstr "2,5 sekundy" - -#~ msgid "3 seconds" -#~ msgstr "3 sekundy" - -#~ msgid "Recent:" -#~ msgstr "Naposledy použité:" - -#~ msgid "Session Control" -#~ msgstr "PÅ™ehled sezení" - -#~ msgid "select directory" -#~ msgstr "Vybrat adresář" - -#~ msgid "" -#~ "programming error: unknown solo model in ARDOUR_UI::set_solo_model: %1" -#~ msgstr "" -#~ "Chyba v programování: neznámé nastavení pro sólo v ARDOUR_UI::" -#~ "set_solo_model: %1" - -#~ msgid "" -#~ "programming error: unknown remote model in ARDOUR_UI::set_remote_model: %1" -#~ msgstr "" -#~ "Chyba v programování: neznámé nastavení dálkového ovládání v ARDOUR_UI::" -#~ "set_remote_model: %1" - -#~ msgid "" -#~ "programming error: unknown monitor model in ARDOUR_UI::set_monitor_model: " -#~ "%1" -#~ msgstr "" -#~ "Chyba v programování: neznámé nastavení sledování v ARDOUR_UI::" -#~ "set_monitor_model: %1" - -#~ msgid "" -#~ "programming error: unknown denormal model in ARDOUR_UI::" -#~ "set_denormal_model: %1" -#~ msgstr "" -#~ "Chyba v programování: neznámé nastavení denormál v ARDOUR_UI::" -#~ "set_denormal_model: %1" - -#~ msgid "" -#~ "programming error: unknown file header format passed to ARDOUR_UI::" -#~ "map_file_data_format: %1" -#~ msgstr "" -#~ "Chyba v programování: neznámý formát hlaviÄky souboru pÅ™edaný ARDOUR_UI::" -#~ "map_file_data_format: %1" - -#~ msgid "" -#~ "programming error: unknown file data format passed to ARDOUR_UI::" -#~ "map_file_data_format: %1" -#~ msgstr "" -#~ "Chyba v programování: neznámý formát souboru pÅ™edaný ARDOUR_UI::" -#~ "map_file_data_format: %1" - -#~ msgid "" -#~ "Ardour comes with ABSOLUTELY NO WARRANTY\n" -#~ "This is free software, and you are welcome to redistribute it\n" -#~ "under certain conditions; see the file COPYING for details.\n" -#~ msgstr "" -#~ "Ardour je poskytován k volnému použití bez ABSOLUTNÄš JAKÉKOLI ZÃRUKY.\n" -#~ "Je to svobodné programové vybavení a vy je můžete vesele šířit dále,\n" -#~ "dopokavaÄ se budete řídit podmínkami, které jsou uvedeny v souboru " -#~ "COPYING.\n" - -#~ msgid "You need to select which line to edit" -#~ msgstr "Musíte vybrat odpovídající automatizaÄní Äáru" - -#~ msgid "add pan automation event" -#~ msgstr "Vložit bod automatizace pro vyvážení (panorama)" - -#~ msgid "Semitones (12TET)" -#~ msgstr "Půltóny" - -#~ msgid "Add Input" -#~ msgstr "PÅ™ipojit vstup" - -#~ msgid "Add Output" -#~ msgstr "PÅ™ipojit výstup" - -#~ msgid "Remove Output" -#~ msgstr "Odstranit výstup" - -#~ msgid "Disconnect All" -#~ msgstr "Odpojit vÅ¡e" - -#~ msgid "Available connections" -#~ msgstr "Dostupná spojení" - -#~ msgid "Name for Chunk:" -#~ msgstr "Název úryvku:" - -#~ msgid "Create Chunk" -#~ msgstr "VytvoÅ™it úryvek" - -#~ msgid "Forget it" -#~ msgstr "PÅ™eruÅ¡it" - -#~ msgid "No selectable material found in the currently selected time range" -#~ msgstr "" -#~ "Ve nyní vybrané oblasti nebylo možné najít žádný materiál, který by se " -#~ "dal vybrat" - -#~ msgid "ardour: weird plugin dialog" -#~ msgstr "ardour: podivuhodný dialog pro přídavný modul" - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "The plugin has %2 inputs\n" -#~ "but at the insertion point, there are\n" -#~ "%3 active signal streams.\n" -#~ "\n" -#~ "This makes no sense - you are throwing away\n" -#~ "part of the signal." -#~ msgstr "" -#~ "Pokusil jste se pÅ™idat přídavný modul (%1).\n" -#~ "Tento přídavný modul má %2 vstupy,\n" -#~ "ale v této poloze (bod pÅ™ipojení) jsou\n" -#~ "%3 Äinné proudy signálu.\n" -#~ "\n" -#~ "To není možné. Nedává to smysl - odhazujete\n" -#~ "Äást signálu, která tak chybí." - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "The plugin has %2 inputs\n" -#~ "but at the insertion point there are\n" -#~ "only %3 active signal streams.\n" -#~ "\n" -#~ "This makes no sense - unless the plugin supports\n" -#~ "side-chain inputs. A future version of Ardour will\n" -#~ "support this type of configuration." -#~ msgstr "" -#~ "Pokusil jste se pÅ™idat přídavný modul (%1).\n" -#~ "Tento přídavný modul má %2 vstupy,\n" -#~ "ale v této poloze (bod pÅ™ipojení) jsou\n" -#~ "pouze %3 Äinné proudy signálu.\n" -#~ "\n" -#~ "To není možné. Nedává to smysl - mimo případ, kdy by tento přídavný " -#~ "modul\n" -#~ "podporoval vstupy postranního Å™etÄ›zce. Tento druh nastavení bude " -#~ "podporovat\n" -#~ "nÄ›jaká budoucí verze programu Ardour." - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "\n" -#~ "The I/O configuration doesn't make sense:\n" -#~ "\n" -#~ "The plugin has %2 inputs and %3 outputs.\n" -#~ "The track/bus has %4 inputs and %5 outputs.\n" -#~ "The insertion point, has %6 active signals.\n" -#~ "\n" -#~ "Ardour does not understand what to do in such situations.\n" -#~ msgstr "" -#~ "Pokusil jste se pÅ™idat přídavný modul (%1).\n" -#~ "\n" -#~ "Takovéto (I/O) Vstupní/Výstupní nastavení ale není možné:\n" -#~ "\n" -#~ "Přídavný modul má %2 vstupy a %3 výstupy.\n" -#~ "Stopa/sbÄ›rnice má %4 vstupy a %5 výstupy.\n" -#~ "V této poloze (bod pÅ™ipojení) jsou %6 Äinné signály.\n" -#~ "\n" -#~ "Ardour neví, co má v takových situacích dÄ›lat.\n" - -#~ msgid "Post-fader inserts, sends & plugins:" -#~ msgstr "Po-prolínací vložky, odesílatelé signálu & přídavné moduly:" - -#~ msgid "rename redirect" -#~ msgstr "PÅ™ejmenovat pÅ™esmÄ›rování" - -#~ msgid "" -#~ "Do you really want to remove all pre-fader redirects from this track?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Doopravdy chcete odstranit vÅ¡echna pÅ™ed-prolínací pÅ™esmÄ›rování z této " -#~ "stopy?\n" -#~ "(Toto se pak nedá vrátit zpátky)" - -#~ msgid "" -#~ "Do you really want to remove all post-fader redirects from this track?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Doopravdy chcete odstranit vÅ¡echna po-prolínací pÅ™esmÄ›rování z této " -#~ "stopy?\n" -#~ "(Toto se pak nedá vrátit zpátky)" - -#~ msgid "v" -#~ msgstr "v" - -#~ msgid "Display Height" -#~ msgstr "Výška zobrazení" - -#~ msgid "ardour: color selection" -#~ msgstr "ardour: výbÄ›r barvy" - -#~ msgid "" -#~ "Do you really want to remove track \"%1\" ?\n" -#~ "(cannot be undone)" -#~ msgstr "" -#~ "Opravdu chcete odstranit stopu \"%1\" ?\n" -#~ "(Toto se pak nedá vrátit zpátky!)" - -#~ msgid "ardour: x-fade edit" -#~ msgstr "ardour: editor prolínání" - -#~ msgid "Chunks" -#~ msgstr "Části" - -#~ msgid "Popup region editor" -#~ msgstr "Otevřít editor oblasti" - -#~ msgid "Define sync point" -#~ msgstr "Stanovit bod pro seřízení" - -#~ msgid "Nudge fwd" -#~ msgstr "PostrÄit dopÅ™edu" - -#~ msgid "Nudge bwd" -#~ msgstr "PostrÄit dozadu" - -#~ msgid "Nudge bwd by capture offset" -#~ msgstr "PostrÄit dozadu kvůli odsazení nahrávání" - -#~ msgid "Start to edit point" -#~ msgstr "Od zaÄátku až k pracovnímu bodu" - -#~ msgid "Edit point to end" -#~ msgstr "Od pracovního bodu až do konce" - -#~ msgid "Play range" -#~ msgstr "PÅ™ehrávat oblast" - -#~ msgid "Loop range" -#~ msgstr "PÅ™ehrávat oblast smyÄky" - -#~ msgid "Select all in range" -#~ msgstr "Vybrat vÅ¡e v oblasti" - -#~ msgid "Set loop from selection" -#~ msgstr "Zřídit smyÄku z výbÄ›ru" - -#~ msgid "Set punch from selection" -#~ msgstr "Zřídit oblast pÅ™epsání z výbÄ›ru" - -#~ msgid "Duplicate range" -#~ msgstr "Zdvojit oblast" - -#~ msgid "Create chunk from range" -#~ msgstr "Zřídit úryvek z oblasti" - -#~ msgid "Export range" -#~ msgstr "Vyvést oblast do souboru" - -#~ msgid "Play from edit point" -#~ msgstr "PÅ™ehrávat od pracovního bodu" - -#~ msgid "Insert chunk" -#~ msgstr "Vložit úryvek" - -#~ msgid "Nudge entire track bwd" -#~ msgstr "PostrÄit celou stopu dozadu" - -#~ msgid "Nudge track after edit point bwd" -#~ msgstr "PostrÄit stopu po pracovním bodu dozadu" - -#~ msgid "Select all after playhead" -#~ msgstr "Vybrat vÅ¡e po ukazateli polohy" - -#~ msgid "Select all before playhead" -#~ msgstr "Vybrat vÅ¡e pÅ™ed ukazatelem polohy" - -#~ msgid "SMPTE Seconds" -#~ msgstr "Sekundy SMPTE" - -#~ msgid "Magnetic Snap" -#~ msgstr "Zapadnout magneticky" - -#~ msgid "Splice Edit" -#~ msgstr "Spojit úpravu" - -#~ msgid "Slide Edit" -#~ msgstr "Vsunout úpravu" - -#~ msgid "Lock Edit" -#~ msgstr "Uzamknout úpravu" - -#~ msgid "SMPTE Frames" -#~ msgstr "Snímky SMPTE" - -#~ msgid "SMPTE Minutes" -#~ msgstr "Minuty SMPTE" - -#~ msgid "Shortcut Editor" -#~ msgstr "Editor klávesových zkratek" - -#~ msgid "ardour: add track/bus" -#~ msgstr "ardour: PÅ™idat stopu/sbÄ›rnici" - -#~ msgid "Name (template)" -#~ msgstr "Název (Å¡ablona; pro mixér)" - -#~ msgid "ardour: export region" -#~ msgstr "ardour: vyvést oblast do souboru" - -#~ msgid "Varispeed" -#~ msgstr "Vari rychlost" - -#~ msgid "comments" -#~ msgstr "Poznámky" - -#~ msgid "*comments*" -#~ msgstr "*Poznámky*" - -#~ msgid "could not register new ports required for that connection" -#~ msgstr "Nelze registrovat nové přípojky (porty) požadované pro toto spojení" - -#~ msgid " Input" -#~ msgstr "Vstup" - -#~ msgid "Invert Polarity" -#~ msgstr "Obrátit polaritu" - -#~ msgid "Go" -#~ msgstr "Jdi na" - -#~ msgid "Add New Location" -#~ msgstr "PÅ™idat novou polohu" - -#~ msgid "Location (CD Index) Markers" -#~ msgstr "ZnaÄky polohy (CD Index)" - -#~ msgid "Range (CD Track) Markers" -#~ msgstr "ZnaÄky oblastí (CD stopy)" - -#~ msgid "Play (double click)" -#~ msgstr "PÅ™ehrát (dvojité klepnutí)" - -#~ msgid "n/a" -#~ msgstr "n/a" - -#~ msgid "at edit point" -#~ msgstr "Na pracovní bod" - -#~ msgid "at playhead" -#~ msgstr "Na ukazatel polohy" - -#~ msgid "" -#~ "There is no selection to export.\n" -#~ "\n" -#~ "Select a selection using the range mouse mode" -#~ msgstr "" -#~ "Nebyla vybrána žádná oblast pro vyvedení do souboru.\n" -#~ "\n" -#~ "ProveÄte výbÄ›r za použití režimu myÅ¡i pro práci s oblastmi" - -#~ msgid "" -#~ "There are no ranges to export.\n" -#~ "\n" -#~ "Create 1 or more ranges by dragging the mouse in the range bar" -#~ msgstr "" -#~ "Nejsou zde žádné oblasti pro vyvedení do souboru.\n" -#~ "\n" -#~ "ProveÄte výbÄ›r jedné Äi více oblastí táhnutím ukazatele myÅ¡i po liÅ¡tÄ› " -#~ "oblasti" - -#~ msgid "Link Region/Track Selection" -#~ msgstr "Spojit výbÄ›r stopy s výbÄ›rem oblasti" - -#~ msgid "Break drag" -#~ msgstr "PÅ™eruÅ¡it táhnutí" - -#~ msgid "Use Region Fades (global)" -#~ msgstr "Použít slábnutí oblastí (vÅ¡eobecnÄ›)" - -#~ msgid "Show Region Fades" -#~ msgstr "Ukázat slábnutí oblastí" - -#~ msgid "Toggle Region Fade In" -#~ msgstr "Spustit/Zastavit postupné zesilování oblastí" - -#~ msgid "Toggle Region Fade Out" -#~ msgstr "Spustit/Zastavit postupné zeslabování oblastí" - -#~ msgid "Toggle Region Fades" -#~ msgstr "Spustit/Zastavit prolínání oblastí" - -#~ msgid "Save View 2" -#~ msgstr "Uložit pohled 2" - -#~ msgid "Goto View 2" -#~ msgstr "Vyvolat pohled 2" - -#~ msgid "Save View 3" -#~ msgstr "Uložit pohled 3" - -#~ msgid "Goto View 3" -#~ msgstr "Vyvolat pohled 3" - -#~ msgid "Save View 4" -#~ msgstr "Uložit pohled 4" - -#~ msgid "Goto View 4" -#~ msgstr "Vyvolat pohled 4" - -#~ msgid "Save View 5" -#~ msgstr "Uložit pohled 5" - -#~ msgid "Goto View 5" -#~ msgstr "Vyvolat pohled 5" - -#~ msgid "Save View 6" -#~ msgstr "Uložit pohled 6" - -#~ msgid "Goto View 6" -#~ msgstr "Vyvolat pohled 6" - -#~ msgid "Save View 7" -#~ msgstr "Uložit pohled 7" - -#~ msgid "Goto View 7" -#~ msgstr "Vyvolat pohled 7" - -#~ msgid "Save View 8" -#~ msgstr "Uložit pohled 8" - -#~ msgid "Goto View 8" -#~ msgstr "Vyvolat pohled 8" - -#~ msgid "Save View 9" -#~ msgstr "Uložit pohled 9" - -#~ msgid "Goto View 9" -#~ msgstr "Vyvolat pohled 9" - -#~ msgid "Save View 10" -#~ msgstr "Uložit pohled 10" - -#~ msgid "Goto View 10" -#~ msgstr "Vyvolat pohled 10" - -#~ msgid "Save View 11" -#~ msgstr "Uložit pohled 11" - -#~ msgid "Goto View 11" -#~ msgstr "Vyvolat pohled 11" - -#~ msgid "Save View 12" -#~ msgstr "Uložit pohled 12" - -#~ msgid "Goto View 12" -#~ msgstr "Vyvolat pohled 12" - -#~ msgid "Locate to Mark 2" -#~ msgstr "Ukazatele polohy postavit na znaÄky 2" - -#~ msgid "Locate to Mark 3" -#~ msgstr "Ukazatele polohy postavit na znaÄky 3" - -#~ msgid "Locate to Mark 4" -#~ msgstr "Ukazatele polohy postavit na znaÄky 4" - -#~ msgid "Locate to Mark 5" -#~ msgstr "Ukazatele polohy postavit na znaÄky 5" - -#~ msgid "Locate to Mark 6" -#~ msgstr "Ukazatele polohy postavit na znaÄky 6" - -#~ msgid "Locate to Mark 7" -#~ msgstr "Ukazatele polohy postavit na znaÄky 7" - -#~ msgid "Locate to Mark 8" -#~ msgstr "Ukazatele polohy postavit na znaÄky 8" - -#~ msgid "Locate to Mark 9" -#~ msgstr "Ukazatele polohy postavit na znaÄky 9" - -#~ msgid "Start To Edit Point" -#~ msgstr "Od zaÄátku až k pracovnímu bodu" - -#~ msgid "Edit Point To End" -#~ msgstr "Od pracovního bodu až do konce" - -#~ msgid "Set Loop From Region" -#~ msgstr "Zřídit smyÄku z oblasti" - -#~ msgid "Set Punch From Region" -#~ msgstr "Zřídit oblast pÅ™epsání z oblasti" - -#~ msgid "Toggle Opaque" -#~ msgstr "PÅ™epínat mezi průhledný/neprůhledný" - -#~ msgid "Toggle Fade In Active" -#~ msgstr "Spustit postupné zesílení signálu" - -#~ msgid "Toggle Fade Out Active" -#~ msgstr "Spustit postupné zeslabení signálu" - -#~ msgid "Align Regions End" -#~ msgstr "Srovnat konec oblasti" - -#~ msgid "Align Regions End Relative" -#~ msgstr "Srovnat konec oblasti vztažnÄ›" - -#~ msgid "Align Regions Sync Relative" -#~ msgstr "Srovnat bod zapadnutí oblasti vztažnÄ›" - -#~ msgid "Duplicate Region" -#~ msgstr "Zdvojit oblast" - -#~ msgid "Multi-Duplicate Region" -#~ msgstr "Oblast zdvojit vícekrát" - -#, fuzzy -#~ msgid "Insert Region" -#~ msgstr "Vložit oblast" - -#~ msgid "Auto-Rename" -#~ msgstr "Automaticky pÅ™ejmenovat" - -#~ msgid "Remove Region Sync" -#~ msgstr "Odstranit zapadnutí oblasti" - -#~ msgid "Glue Region To Bars&Beats" -#~ msgstr "Navázat oblast na takty&doby" - -#~ msgid "Mute/Unmute Region" -#~ msgstr "PÅ™epínat mezi ztiÅ¡ením oblasti/nahlas" - -#~ msgid "Insert Chunk" -#~ msgstr "Vložit úryvek" - -#~ msgid "Split At Edit Point" -#~ msgstr "RozdÄ›lit na pracovním bodÄ›" - -#~ msgid "Snap to SMPTE frame" -#~ msgstr "Zapadnout do snímku SMPTE" - -#~ msgid "Snap to SMPTE seconds" -#~ msgstr "Zapadnout do sekund SMPTE" - -#~ msgid "Snap to SMPTE minutes" -#~ msgstr "Zapadnout do minut SMPTE" - -#~ msgid "Show Waveforms" -#~ msgstr "Ukázat tvary vln" - -#, fuzzy -#~ msgid "Show Waveforms While Recording" -#~ msgstr "Ukázat tvary vln pÅ™i nahrávání" - -#~ msgid "- 0.1%" -#~ msgstr "- 0,1%" - -#~ msgid "100 per frame" -#~ msgstr "100 na snímek" - -#~ msgid "Configuraton is using unhandled subframes per frame value: %1" -#~ msgstr "" -#~ "Toto uspořádání používá nepřípustnou hodnotu podrámeÄk na rámeÄek: %1" - -#~ msgid "Unknown" -#~ msgstr "Neznámý" - -#~ msgid "Ardour key bindings file not found at \"%1\" or contains errors." -#~ msgstr "" -#~ "Soubor s klávesovými zkratkami pro Ardour nebyl na místÄ› \"%1\" nalezen, " -#~ "nebo obsahuje chyby." - -#~ msgid "ardour: connections" -#~ msgstr "ardour: spojení" - -#~ msgid "Input Connections" -#~ msgstr "Spojení vstupů" - -#~ msgid "Output Connections" -#~ msgstr "Spojení výstupů" - -#~ msgid "New Input" -#~ msgstr "Nový vstup" - -#~ msgid "New Output" -#~ msgstr "Nový výstup" - -#~ msgid "Add Port" -#~ msgstr "PÅ™idat přípojku (port)" - -#~ msgid "in %d" -#~ msgstr "Vstup %d" - -#~ msgid "out %d" -#~ msgstr "Výstup %d" - -#~ msgid "Name for new connection:" -#~ msgstr "Název nového spojení:" - -#~ msgid "mix group solo change" -#~ msgstr "ZmÄ›nit stav sóla skupiny mixéru" - -#~ msgid "mix group mute change" -#~ msgstr "ZmÄ›nit stav ztlumení skupiny mixéru" - -#~ msgid "mix group rec-enable change" -#~ msgstr "ZmÄ›nit stav nahrávání skupiny mixéru" - -#~ msgid "New Name: " -#~ msgstr "Nový název: " - -#~ msgid "CD Marker File Type" -#~ msgstr "Typ souboru znaÄky na CD" - -#~ msgid "Sample Endianness" -#~ msgstr "PoÅ™adí bajtů" - -#~ msgid "Sample Rate" -#~ msgstr "Vzorkovací kmitoÄet" - -#~ msgid "Conversion Quality" -#~ msgstr "Kvalita pÅ™evodu" - -#~ msgid "Dither Type" -#~ msgstr "Druh vložení Å¡umu do signálu (ditheringu)" - -#~ msgid "Export CD Marker File Only" -#~ msgstr "Vyvést pouze soubor znaÄky na CD" - -#~ msgid "Specific tracks ..." -#~ msgstr "UrÄité stopy..." - -#~ msgid "22.05kHz" -#~ msgstr "22,05 kHz" - -#~ msgid "44.1kHz" -#~ msgstr "44,1 kHz" - -#~ msgid "48kHz" -#~ msgstr "48 kHz" - -#~ msgid "88.2kHz" -#~ msgstr "88,2 kHz" - -#~ msgid "96kHz" -#~ msgstr "96 kHz" - -#~ msgid "192kHz" -#~ msgstr "192 kHz" - -#~ msgid "Editor: cannot open \"%1\" as export file for CD toc file" -#~ msgstr "" -#~ "Editor: Nelze otevřít \"%1\" jako soubor exportu pro CD-seznam obsahu " -#~ "(TOC)." - -#~ msgid "Editor: cannot open \"%1\" as export file for CD cue file" -#~ msgstr "Editor: Nelze otevřít \"%1\" jako soubor exportu pro CD CUE-soubor." - -#~ msgid "TOC" -#~ msgstr "TOC" - -#~ msgid "Ardour cannot export audio when disconnected" -#~ msgstr "Ardour nemůže vyvést zvuk, když je odpojen od JACKu." - -#~ msgid "Please enter a valid filename." -#~ msgstr "Zadejte, prosím, platný název souboru." - -#~ msgid "Please specify a complete filename for the audio file." -#~ msgstr "UrÄete, prosím, úplný název souboru pro zvukový soubor." - -#~ msgid "intermediate" -#~ msgstr "ProstÅ™ední" - -#~ msgid "Name New Location Marker" -#~ msgstr "Pojmenovat novou znaÄku polohy" - -#~ msgid "naturalize" -#~ msgstr "Dát do původní polohy" - -#~ msgid "trim region start to edit point" -#~ msgstr "UstÅ™ihnout od zaÄátku oblasti až k pracovnímu bodu" - -#~ msgid "trim region end to edit point" -#~ msgstr "UstÅ™ihnout od konce oblasti až k pracovnímu bodu" - -#~ msgid "paste chunk" -#~ msgstr "Vložit úryvek" - -#~ msgid "clear playlist" -#~ msgstr "Smazat seznam skladeb" - -#~ msgid "toggle fade in active" -#~ msgstr "Spustit postupné zesílení signálu" - -#~ msgid "toggle fade out active" -#~ msgstr "Spustit postupné zeslabení signálu" - -#~ msgid "Move" -#~ msgstr "Posunout" - -#~ msgid "Split & Later Section Moves" -#~ msgstr "RozdÄ›lit & posunout zadní díl" - -#~ msgid "Post-fader Redirects" -#~ msgstr "Po-prolínací pÅ™esmÄ›rování" - -#~ msgid "Unlock" -#~ msgstr "Odemknout" - -#~ msgid "ardour: save session?" -#~ msgstr "ardour: uložit sezení?" - -#~ msgid "Ardour sessions" -#~ msgstr "Projekty programu Ardour" - -#~ msgid "Patience is a virtue.\n" -#~ msgstr "TrpÄ›livost je ctností.\n" - -#~ msgid "" -#~ "You do not have write access to this session.\n" -#~ "This prevents the session from being loaded." -#~ msgstr "" -#~ "K tomuto sezení nemáte žádná oprávnÄ›ní, která by vám umožňovala do nÄ›j " -#~ "zapisovat.\n" -#~ "Z toho důvodu nebude toto sezení být moci nahráno." - -#~ msgid "ardour: cleanup" -#~ msgstr "ardour: UdÄ›lat pořádek" - -#~ msgid "files were" -#~ msgstr "následující soubory byly" - -#~ msgid "file was" -#~ msgstr "soubor byl" - -#~ msgid "ardour: plugins" -#~ msgstr "ardour: Přídavné moduly" - -#~ msgid "# Inputs" -#~ msgstr "# Vstupy" - -#~ msgid "# Outputs" -#~ msgstr "# Výstupy" - -#~ msgid "Bar" -#~ msgstr "Takt" - -#~ msgid "Beat" -#~ msgstr "Doba" - -#~ msgid "thirtq-second (32)" -#~ msgstr "DvaatÅ™icetina (32)" - -#~ msgid "Paths/Files" -#~ msgstr "Cesty/Soubory" - -#~ msgid "Kbd/Mouse" -#~ msgstr "Klávesnicer/MyÅ¡" - -#~ msgid "session RAID path" -#~ msgstr "Adresář sezení (RAID)" - -#~ msgid "History depth (commands)" -#~ msgstr "PoÄet příkazů, které lze provést zpÄ›tnÄ›" - -#~ msgid "Saved history depth (commands)" -#~ msgstr "PoÄet příkazů, které byly průběžnÄ› uloženy" - -#~ msgid "SMPTE Offset" -#~ msgstr "Posun SMPTE" - -#~ msgid "Offline" -#~ msgstr "NepÅ™ipojený" - -#~ msgid "" -#~ "Trace\n" -#~ "Input" -#~ msgstr "" -#~ "Sledovat\n" -#~ "vstup" - -#~ msgid "" -#~ "Trace\n" -#~ "Output" -#~ msgstr "" -#~ "Sledovat\n" -#~ "výstup" - -#~ msgid "MTC" -#~ msgstr "MTC" - -#~ msgid "MMC" -#~ msgstr "MMC" - -#~ msgid "online" -#~ msgstr "PÅ™ipojený" - -#~ msgid "offline" -#~ msgstr "NepÅ™ipojený" - -#~ msgid "output" -#~ msgstr "Výstup" - -#~ msgid "" -#~ "The auditioner is a dedicated mixer strip used\n" -#~ "for listening to specific regions outside the context\n" -#~ "of the overall mix. It can be connected just like any\n" -#~ "other mixer strip." -#~ msgstr "" -#~ "SbÄ›rnice pro zkuÅ¡ební poslech (výstup) je jednoúÄelový\n" -#~ "kanál mixéru, urÄený pro poslech vybraných oblastí\n" -#~ "nezávisle na celkovém mixu.\n" -#~ "Tato sbÄ›rnice se dá spojit stejnÄ› jako kterýkoli jiný\n" -#~ "kanál mixéru." - -#~ msgid "Analysis" -#~ msgstr "Rozbor" - -#~ msgid "0.5 seconds" -#~ msgstr "0,5 sekund" - -#~ msgid "SIGPIPE received - JACK has probably died" -#~ msgstr "PÅ™ijat SIGPIPE - je možné, žeJACK spadl" - -#~ msgid "Ardour/GTK " -#~ msgstr "Ardour/GTK " - -#~ msgid "programmer error: %1 %2" -#~ msgstr "Chyba v programování: %1 %2" - -#~ msgid "Unknown action name: %1" -#~ msgstr "Neznámý název pro akci: %1" - -#, fuzzy -#~ msgid "Manual Setup" -#~ msgstr "PříruÄka" - -#, fuzzy -#~ msgid "KeyMouse Actions" -#~ msgstr "MyÅ¡ s tlaÄítky" - -#, fuzzy -#~ msgid "Software monitoring" -#~ msgstr "Sledování pomocí Ardouru" - -#, fuzzy -#~ msgid "Analyze region" -#~ msgstr "Normalizovat oblast" - -#, fuzzy -#~ msgid "Analyze range" -#~ msgstr "Rozbor dat" - -#, fuzzy -#~ msgid "Bounce range" -#~ msgstr "Vrazit oblast" - -#, fuzzy -#~ msgid "Duplicate how many times?" -#~ msgstr "Zdvojit rozsah" - -#, fuzzy -#~ msgid "to Center" -#~ msgstr "Na stÅ™ed" - -#, fuzzy -#~ msgid "Reverse Region" -#~ msgstr "Obrátit oblasti" - -#, fuzzy -#~ msgid "Add External Audio" -#~ msgstr "PÅ™idat zvuk" - -#, fuzzy -#~ msgid "these regions" -#~ msgstr "ZtiÅ¡it oblasti" - -#, fuzzy -#~ msgid "this region" -#~ msgstr "Vložit oblast" - -#, fuzzy -#~ msgid "Yes, destroy them." -#~ msgstr "Ano, odstranit." - -#, fuzzy -#~ msgid "cannot set loop: no region selected" -#~ msgstr "Nastavit rozsah smyÄky z výbÄ›ru" - -#~ msgid "best" -#~ msgstr "Nejlepší možná" - -#~ msgid "Shaped Noise" -#~ msgstr "NasmÄ›rovaný Å¡um" - -#~ msgid "stereo" -#~ msgstr "Stereo" - -#~ msgid "CUE" -#~ msgstr "CUE" - -#, fuzzy -#~ msgid "Binding" -#~ msgstr "Klávesové zkratky" - -#~ msgid "Aux" -#~ msgstr "Aux" - -#~ msgid "Direct" -#~ msgstr "Přímá" - -#~ msgid "Bus type:" -#~ msgstr "Typ sbÄ›rnice:" - -#~ msgid "Shortest silence:" -#~ msgstr "Nejkratší ticho:" - -#~ msgid "Shortest audible:" -#~ msgstr "Nejkratší slyÅ¡itelný:" - -#~ msgid "mute change" -#~ msgstr "ZmÄ›nit ztlumení" - -#~ msgid "" -#~ "Spanish:\n" -#~ "\tAlex Krohn \n" -#~ "\tAngel Bidinost \n" -#~ "\tPablo Enrici \n" -#~ "\tPablo Fernández \n" -#~ "\tGiovanni Martínez \n" -#~ "\tDavid Täht \n" -#~ "\tOscar Valladarez \n" -#~ "\tDaniel Vidal \n" -#~ msgstr "" -#~ "Å panÄ›lÅ¡tina:\n" -#~ "\tAlex Krohn \n" -#~ "\tAngel Bidinost \n" -#~ "\tPablo Enrici \n" -#~ "\tPablo Fernández \n" -#~ "\tGiovanni Martínez \n" -#~ "\tDavid Täht \n" -#~ "\tOscar Valladarez \n" -#~ "\tDaniel Vidal \n" - -#~ msgid "Add this many:" -#~ msgstr "PÅ™idat tento poÄet:" - -#~ msgid "" -#~ "A preset with this name already exists for this plugin.\n" -#~ "\n" -#~ "What you would like to do?\n" -#~ msgstr "" -#~ "PÅ™ednastavení s tímto názvem již pro tento přídavný modul existuje.\n" -#~ "\n" -#~ "Co chcete dÄ›lat?\n" - -#~ msgid "Recent" -#~ msgstr "Naposledy použité..." - -#~ msgid "Snapshot" -#~ msgstr "Snímek obrazovky..." - -#~ msgid "Export selected range to audiofile..." -#~ msgstr "Vyvést oblast výbÄ›ru jako zvukový soubor..." - -#~ msgid "Cleanup unused sources" -#~ msgstr "Odstranit nepoužívané soubory" - -#~ msgid "Seamless Looping" -#~ msgstr "Souvislá smyÄka" - -#~ msgid "Do Not Run Plugins while Recording" -#~ msgstr "PÅ™i nahrávání zastavit přídavné moduly" - -#~ msgid "Auto-connect outputs to master bus" -#~ msgstr "Automaticky spojit výstupy s hlavní sbÄ›rnicí" - -#~ msgid "automation range drag" -#~ msgstr "Pohybovat oblastí automatizace" - -#~ msgid "Edit Groups" -#~ msgstr "Skupiny pro úpravy" - -#~ msgid "Region Editor" -#~ msgstr "Editor oblasti" - -#~ msgid "Add Single Range" -#~ msgstr "PÅ™idat jednu oblast" - -#~ msgid "Choose top region" -#~ msgstr "Vybrat horní oblast" - -#~ msgid "Invert selection" -#~ msgstr "Obrátit výbÄ›r" - -#~ msgid "Select all after edit point" -#~ msgstr "Vybrat vÅ¡e po pracovním bodÄ›" - -#~ msgid "Select all before edit point" -#~ msgstr "Vybrat vÅ¡e pÅ™ed pracovním bodem" - -#~ msgid "Waveforms" -#~ msgstr "Tvary vln" - -#~ msgid "Normalize Region" -#~ msgstr "Znormalizovat oblast" - -#~ msgid "Split Region" -#~ msgstr "RozdÄ›lit oblast" - -#~ msgid "Export selected regions to audiofile..." -#~ msgstr "Vyvést vybrané oblasti jako zvukový soubor..." - -#~ msgid "Lock Region" -#~ msgstr "Uzamknout oblast" - -#~ msgid "Next Mouse Mode" -#~ msgstr "Další režim myÅ¡i" - -#~ msgid "Show all" -#~ msgstr "Ukázat vÅ¡e" - -#~ msgid "Show Waveforms Rectified" -#~ msgstr "Ukázat usmÄ›rnÄ›né tvary vln" - -#~ msgid "Set Selected Tracks to Linear Waveforms" -#~ msgstr "Nastavit vybrané stopy na Äárové tvary vln" - -#~ msgid "Set Selected Tracks to Logarithmic Waveforms" -#~ msgstr "Nastavit vybrané stopy na logaritmické tvary vln" - -#~ msgid "80 per frame" -#~ msgstr "80 na snímek" - -#~ msgid "programming error: line canvas item has no line pointer!" -#~ msgstr "Chyba v programování: položka plátna Äára nemá žádný ukazatel Äáry!" - -#~ msgid "range selection" -#~ msgstr "VýbÄ›r oblasti" - -#~ msgid "trim selection start" -#~ msgstr "UstÅ™ihnout poÄáteÄní bod výbÄ›ru" - -#~ msgid "trim selection end" -#~ msgstr "UstÅ™ihnout koncový bod výbÄ›ru" - -#~ msgid "trimmed region" -#~ msgstr "UstÅ™ižená oblast" - -#~ msgid "TimeFXProgress" -#~ msgstr "Postup TimeFX" - -#~ msgid "Not connected to audioengine" -#~ msgstr "Nespojeno s JACKem (zvukovým strojem)" - -#~ msgid "Image Compositor Socket has been shutdown/closed" -#~ msgstr "Zdířka sazeÄe obrázků byla odstavena/uzavÅ™ena" - -#~ msgid "Image Frame" -#~ msgstr "RámeÄek obrázku" - -#~ msgid "ardour: " -#~ msgstr "ardour: " - -#~ msgid "Click to choose outputs" -#~ msgstr "Vybrat výstupy" - -#~ msgid "Name :" -#~ msgstr "Název:" - -#~ msgid "Template :" -#~ msgstr "PÅ™edloha:" - -#~ msgid "Start Audio Engine" -#~ msgstr "Spustit zvukový stroj" - -#~ msgid "" -#~ "MIDI Parameter\n" -#~ "Control" -#~ msgstr "" -#~ "Ovládání nastavení\n" -#~ "pomocných promÄ›nných MIDI" - -#~ msgid "add automation event to " -#~ msgstr "Vložit bod automatizace pro" - -#~ msgid "" -#~ "Do you really want to remove all pre-fader redirects from this bus?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Doopravdy chcete odstranit vÅ¡echna pÅ™ed-prolínací pÅ™esmÄ›rování z této " -#~ "sbÄ›rnice?\n" -#~ "(Toto se pak nedá vrátit zpátky)" - -#~ msgid "" -#~ "Do you really want to remove all post-fader redirects from this bus?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Doopravdy chcete odstranit vÅ¡echna po-prolínací pÅ™esmÄ›rování z této " -#~ "sbÄ›rnice?\n" -#~ "(Toto se pak nedá vrátit zpátky)" - -#~ msgid "Pre-fader Redirects" -#~ msgstr "PÅ™ed-prolínací pÅ™esmÄ›rování" - -#~ msgid "Visual options" -#~ msgstr "Volby pro nastavení viditelných prvků" - -#~ msgid "solo change" -#~ msgstr "ZmÄ›nit sólo" - -#~ msgid "Solo Lock" -#~ msgstr "Uzamknout sólo" - -#~ msgid "TimeAxisViewItemName" -#~ msgstr "Název pohledového prvku Äasové osy" - -#~ msgid "Connection \"" -#~ msgstr "Spojení \"" - -#~ msgid "\"" -#~ msgstr "\"" - -#~ msgid "Move edit cursor" -#~ msgstr "Posunout ukazatele úprav" - -#~ msgid "Programming error. that region doesn't cover that position" -#~ msgstr "Chyba v programování: tato oblast nepokrývá tuto polohu" - -#~ msgid "Place the edit cursor at the desired sync point" -#~ msgstr "Umístit ukazatele úprav na požadovaný bod sladÄ›ní" - -#~ msgid "KeyboardTarget: keyname \"%1\" is unknown." -#~ msgstr "Cíl klávesnice: \"%1\" - je neznámý." - -#~ msgid "You have %1 keys bound to \"mod1\"" -#~ msgstr "S \"mod1\" máte spojeno %1 kláves" - -#~ msgid "You have %1 keys bound to \"mod2\"" -#~ msgstr "S \"mod2\" máte spojeno %1 kláves" - -#~ msgid "You have %1 keys bound to \"mod3\"" -#~ msgstr "S \"mod3\" máte spojeno %1 kláves" - -#~ msgid "You have %1 keys bound to \"mod4\"" -#~ msgstr "S \"mod4\" máte spojeno %1 kláves" - -#~ msgid "You have %1 keys bound to \"mod5\"" -#~ msgstr "S \"mod5\" máte spojeno %1 kláves" - -#~ msgid "ardour is killing itself for a clean exit\n" -#~ msgstr "ardour se sám shazuje kvůli Äistému ukonÄení\n" - -#~ msgid "%d(%d): received signal %d\n" -#~ msgstr "%d(%d): pÅ™ijat signál %d\n" - -#~ msgid "cannot set default signal mask (%1)" -#~ msgstr "cannot set default signal mask (%1)" - -#~ msgid "" -#~ "Without a UI style file, ardour will look strange.\n" -#~ " Please set ARDOUR3_UI_RC to point to a valid UI style file" -#~ msgstr "" -#~ "Bez souboru se stylem uživatelského rozhraní bude Ardour vypadat divnÄ›.\n" -#~ "Nastavte, prosím, ARDOUR3_UI_RC tak, aby ukazoval na platný soubor se " -#~ "stylem uživatelského rozhraní" - -#~ msgid "LADSPA" -#~ msgstr "LADSPA" - -#~ msgid "ardour: track/bus/inspector: no route selected" -#~ msgstr "ardour: stopa/sbÄ›rnice/inspektor: nebyla vybrána žádná cesta" - -#~ msgid "Embed" -#~ msgstr "Vložit" - -#~ msgid "Link to an external file" -#~ msgstr "Odkaz na vnÄ›jší soubor" - -#~ msgid "open session" -#~ msgstr "Otevřít sezení" - -#~ msgid "POSITION:" -#~ msgstr "POSITION:" - -#~ msgid "SYNC POINT:" -#~ msgstr "BOD SEŘÃZENà (SYNC POINT):" - -#~ msgid "Remove Input" -#~ msgstr "Odstranit vstup" - -#~ msgid "" -#~ "The following %1 %2 not in use and \n" -#~ "have been moved to:\n" -#~ "%3. \n" -#~ "\n" -#~ "Flushing the wastebasket will \n" -#~ "release an additional\n" -#~ "%4 %5bytes of disk space.\n" -#~ msgstr "" -#~ "Následující %1 %2 nepoužívané a\n" -#~ "pÅ™esunuté do:\n" -#~ "%3. \n" -#~ "\n" -#~ "Až vyprázdníte koÅ¡, uvolní se dalších\n" -#~ "%4 %5 bajtů ukládacího prostoru.\n" - -#~ msgid "" -#~ "The following %1 %2 deleted from\n" -#~ "%3,\n" -#~ "releasing %4 %5bytes of disk space" -#~ msgstr "" -#~ "Následující %1 %2 smazány z\n" -#~ "%3,\n" -#~ "a uvolnilo se %4 %5 bajtů ukládacího prostoru" - -#, fuzzy -#~ msgid "Copyright (C) 1999-2009 Paul Davis\n" -#~ msgstr "Copyright (C) 1999-2008 Paul Davis\n" - -#, fuzzy -#~ msgid "Line" -#~ msgstr "Čárový" - -#, fuzzy -#~ msgid "Type:" -#~ msgstr "Druh" - -#, fuzzy -#~ msgid "Bundle manager" -#~ msgstr "Bereich Bouncen" - -#, fuzzy -#~ msgid "Realtime Export" -#~ msgstr "PÅ™ednost v provádÄ›ní ve skuteÄném Äase" - -#, fuzzy -#~ msgid "Fast Export" -#~ msgstr "Zastavit vyvedení do souboru" - -#, fuzzy -#~ msgid "Ardour" -#~ msgstr "ardour: " - -#, fuzzy -#~ msgid "Show '%s' sources" -#~ msgstr "Ukázat mřížku s takty" - -#, fuzzy -#~ msgid "Show '%s' destinations" -#~ msgstr "Ukázat použitelné automatizace" - -#, fuzzy -#~ msgid "New Return ..." -#~ msgstr "Vložit nového odesílatele signálu..." - -#, fuzzy -#~ msgid " input: " -#~ msgstr "Vstup" - -#, fuzzy -#~ msgid " output: " -#~ msgstr "Výstup" - -#, fuzzy -#~ msgid "Ardour Preferences" -#~ msgstr "Volby" - -#, fuzzy -#~ msgid "Route group" -#~ msgstr "Žádná skupina" - -#, fuzzy -#~ msgid "" -#~ "German:\n" -#~ "\tKarsten Petersen \n" -#~ msgstr "" -#~ "Deutsch:\n" -#~ "\tKarsten Petersen \n" -#~ "\tSebastian Arnold \n" - -#, fuzzy -#~ msgid "Autuo Play" -#~ msgstr "Automatické pÅ™ehrávání" - -#, fuzzy -#~ msgid "programming error: impossible control method" -#~ msgstr "Chyba v programování: nebyl vybrán žádný pohled na znaÄku" - -#, fuzzy -#~ msgid "Colors" -#~ msgstr "Barva" - -#, fuzzy -#~ msgid "ardour: clock" -#~ msgstr "ardour: " - -#, fuzzy -#~ msgid "Edit Cursor" -#~ msgstr "Editor" - -#, fuzzy -#~ msgid "ardour: editor" -#~ msgstr "ardour: " - -#, fuzzy -#~ msgid "ardour: editor: " -#~ msgstr "ardour: editor prolínání" - -#, fuzzy -#~ msgid "Select all between cursors" -#~ msgstr "Vybrat vÅ¡e pÅ™ed ukazatelem polohy" - -#, fuzzy -#~ msgid "Paste at edit cursor" -#~ msgstr "Vybrat vÅ¡e od ukazatele polohy" - -#, fuzzy -#~ msgid "Paste at mouse" -#~ msgstr "Ukazatele polohy na polohu myÅ¡i" - -#, fuzzy -#~ msgid "Edit Cursor to Next Region Start" -#~ msgstr "Na zaÄátek další oblasti" - -#, fuzzy -#~ msgid "Edit Cursor to Next Region End" -#~ msgstr "Na konec další oblasti" - -#, fuzzy -#~ msgid "Edit Cursor to Previous Region Start" -#~ msgstr "Na zaÄátek pÅ™edchozí oblasti" - -#, fuzzy -#~ msgid "Edit Cursor to Previous Region End" -#~ msgstr "Na konec pÅ™edchozí oblasti" - -#, fuzzy -#~ msgid "Edit Cursor to Range Start" -#~ msgstr "Na zaÄátek oblasti výbÄ›ru" - -#, fuzzy -#~ msgid "Edit Cursor to Range End" -#~ msgstr "Na konec oblasti výbÄ›ru" - -#, fuzzy -#~ msgid "Select All Between Cursors" -#~ msgstr "Vybrat vÅ¡e od ukazatele polohy" - -#, fuzzy -#~ msgid "Add Location from Playhead" -#~ msgstr "Zřídit znaÄku na ukazateli polohy" - -#, fuzzy -#~ msgid "Center Edit Cursor" -#~ msgstr "Nachystat editor" - -#, fuzzy -#~ msgid "Edit to Playhead" -#~ msgstr "Nastavit hodnotu na ukazatele polohy" - -#, fuzzy -#~ msgid "crop" -#~ msgstr "Oříznout" - -#, fuzzy -#~ msgid "to Tracks" -#~ msgstr "Zvukové stopy" - -#, fuzzy -#~ msgid "Import as a %1 region" -#~ msgstr "Zavést na seznam s oblastmi" - -#, fuzzy -#~ msgid "multichannel" -#~ msgstr "Kanály" - -#, fuzzy -#~ msgid "Hide Mark" -#~ msgstr "SouÄasná znaÄka" - -#, fuzzy -#~ msgid "ardour: rename mark" -#~ msgstr "PÅ™ejmenovat znaÄku" - -#, fuzzy -#~ msgid "select on click" -#~ msgstr "Vedlejší údaj o Äase" - -#, fuzzy -#~ msgid "cancel selection" -#~ msgstr "VýbÄ›r oblasti" - -#, fuzzy -#~ msgid "select all between cursors" -#~ msgstr "Vybrat vÅ¡e pÅ™ed ukazatelem polohy" - -#, fuzzy -#~ msgid "ardour: rename region" -#~ msgstr "ardour: vyvést oblast do souboru" - -#, fuzzy -#~ msgid "set region sync position" -#~ msgstr "Nastavit polohu bodu zapadnutí oblasti" - -#, fuzzy -#~ msgid "set sync from edit cursor" -#~ msgstr "Nastavit rozsah pÅ™epsání z oblasti úprav" - -#, fuzzy -#~ msgid "ardour: freeze" -#~ msgstr "ardour: " - -#, fuzzy -#~ msgid "ardour: timestretch" -#~ msgstr "Protáhnutí Äasu" - -#~ msgid "Set" -#~ msgstr "Setzen" - -#, fuzzy -#~ msgid "Could not connect to JACK server as \"%1\"" -#~ msgstr "Nelze se znovu spojit s JACKem" - -#, fuzzy -#~ msgid "unknown strip width \"%1\" in XML GUI information" -#~ msgstr "Neznámý název pro výšku stopy \"%1\" v XML GUI informacích" - -#~ msgid "record" -#~ msgstr "Nahrávat" - -#, fuzzy -#~ msgid "ardour: mixer" -#~ msgstr "ardour: " - -#, fuzzy -#~ msgid "ardour: mixer: " -#~ msgstr "ardour: " - -#, fuzzy -#~ msgid "ardour: options editor" -#~ msgstr "ardour: spojení" - -#, fuzzy -#~ msgid "Layers & Fades" -#~ msgstr "Takty & Doby" - -#, fuzzy -#~ msgid "ardour: playlists" -#~ msgstr "Vyprázdnit seznam skladeb" - -#, fuzzy -#~ msgid "ardour: playlist for " -#~ msgstr "ardour: Přídavné moduly" - -#, fuzzy -#~ msgid "Available LADSPA Plugins" -#~ msgstr "Dostupné přídavné moduly" - -#, fuzzy -#~ msgid "VST" -#~ msgstr "ST" - -#, fuzzy -#~ msgid "AudioUnit" -#~ msgstr "Poslech" - -#, fuzzy -#~ msgid "ardour: %1" -#~ msgstr "ardour: " - -#, fuzzy -#~ msgid "ardour: region " -#~ msgstr "ardour: vyvést oblast do souboru" - -#, fuzzy -#~ msgid "ardour: track/bus inspector: " -#~ msgstr "ardour: PÅ™idat stopu/sbÄ›rnici" - -#, fuzzy -#~ msgid "Apply" -#~ msgstr "PÅ™ehrát" - -#, fuzzy -#~ msgid "Samplerate: %1" -#~ msgstr "Vzorkovací kmitoÄet:" - -#~ msgid "frames_per_unit" -#~ msgstr "Snímků_na_jednotku" diff --git a/gtk2_ardour/po/de.po b/gtk2_ardour/po/de.po index 5817ab3878..256fcdd356 100644 --- a/gtk2_ardour/po/de.po +++ b/gtk2_ardour/po/de.po @@ -5736,8 +5736,7 @@ msgid "" "level." msgstr "" "Stellen Sie Ihre Hardwarelautstärke auf einen sehr " -"niedrigen " -"Pegel ein." +"niedrigen Pegel ein." #: engine_dialog.cc:142 msgid "" @@ -12801,367 +12800,3 @@ msgstr "" "#export nach.\n" "\n" "Handbuch im Browser öffnen? " - -#~ msgid "Click the Refresh button to try again." -#~ msgstr "Klicken Sie auf Aktualisieren, um es erneut zu versuchen." - -#~ msgid "JACK" -#~ msgstr "JACK" - -#~ msgid "Reconnect" -#~ msgstr "Verbinde neu" - -#~ msgid "Window|Audio/MIDI Setup" -#~ msgstr "Audio/MIDI Einstellungen" - -#~ msgid "JACK Sampling Rate and Latency" -#~ msgstr "JACK Samplerate und Latenz" - -#~ msgid "Launch Control App" -#~ msgstr "Starte Steuerungsprogramm" - -#~ msgid "" -#~ "1. Turn down the volume on your hardware to a very " -#~ "low level.\n" -#~ "\n" -#~ "2. Connect the two channels that you select below using either a cable or " -#~ "(less ideally) a speaker and microphone.\n" -#~ "\n" -#~ "3. Once the channels are connected, click the \"Measure latency\" " -#~ "button.\n" -#~ "\n" -#~ "4. When satisfied with the results, click the \"Use results\" button." -#~ msgstr "" -#~ "1. Stellen Sie die Lautstärke ihrer Hardware auf " -#~ "einen sehr leisen Pegel.\n" -#~ "\n" -#~ "2. Verbinden Sie die zwei Kanäle, die Sie unten auswählen, entweder per " -#~ "Kabel oder (weniger ideal) per Lautsprecher und Mikrophon.\n" -#~ "\n" -#~ "3. Klicken Sie den Knopf \"Latenz messen\".\n" -#~ "\n" -#~ "4. Wenn Sie mit den Ergebnissen zufrieden sind, klicken Sie den Knopf " -#~ "\"Benutze Egebnisse\"." - -#~ msgid "" -#~ "There are several possible reasons:\n" -#~ "\n" -#~ "1) JACK is not running.\n" -#~ "2) JACK is running as another user, perhaps root.\n" -#~ "3) There is already another client called \"%1\".\n" -#~ "\n" -#~ "Please consider the possibilities, and perhaps (re)start JACK." -#~ msgstr "" -#~ "Dafür kann es verschiedene Gründe geben:\n" -#~ "\n" -#~ "1) JACK läuft nicht.\n" -#~ "2) JACK wurde unter einem anderen Benutzer gestartet, möglicherweise als " -#~ "root.\n" -#~ "3) Es gibt bereits einen anderen Client mit der Bezeichnung \"%1\".\n" -#~ "\n" -#~ "Betrachten Sie bitte diese Möglichkeiten und starten Sie ggf. JACK neu." - -#~ msgid "Create a new session" -#~ msgstr "Neues Projekt erzeugen" - -#~ msgid "Open an existing session" -#~ msgstr "Vorhandenes Projekt öffnen" - -#~ msgid "I'd like more options for this session" -#~ msgstr "Erweiterte Optionen für dieses Projekt" - -#~ msgid "Use an existing session as a template:" -#~ msgstr "Ein vorhandenes Projekt als Vorlage verwenden:" - -#~ msgid "Select template" -#~ msgstr "Vorlage auswählen" - -#~ msgid "Browse:" -#~ msgstr "Durchsuchen:" - -#~ msgid "Select a session" -#~ msgstr "Projekt auswählen" - -#~ msgid "Playback/recording on 1 device" -#~ msgstr "Wiedergabe/Aufnahme mit einem Gerät" - -#~ msgid "Playback/recording on 2 devices" -#~ msgstr "Wiedergabe/Aufnahme mit zwei Geräten" - -#~ msgid "Playback only" -#~ msgstr "Nur Wiedergabe" - -#~ msgid "Recording only" -#~ msgstr "Nur Aufnahme" - -#~ msgid "Realtime" -#~ msgstr "Realtime" - -#~ msgid "Starting audio engine" -#~ msgstr "Starte Audio-Engine" - -#~ msgid "disconnected" -#~ msgstr "getrennt" - -#~ msgid "Unable to start the session running" -#~ msgstr "Konnte das aktuelle Projekt nicht starten" - -#~ msgid "Do not lock memory" -#~ msgstr "Speicherzugriff nicht sperren" - -#~ msgid "Unlock memory" -#~ msgstr "Speicherzugriff öffnen" - -#~ msgid "No zombies" -#~ msgstr "Keine Zombies (Soft Mode)" - -#~ msgid "Provide monitor ports" -#~ msgstr "Monitor-Ports erstellen" - -#~ msgid "H/W monitoring" -#~ msgstr "Hardware Monitoring" - -#~ msgid "H/W metering" -#~ msgstr "Hardware-Pegelanzeige" - -#~ msgid "Verbose output" -#~ msgstr "Ausführliche Statusmeldungen" - -#~ msgid "8000Hz" -#~ msgstr "8000 Hz" - -#~ msgid "22050Hz" -#~ msgstr "22050 Hz" - -#~ msgid "44100Hz" -#~ msgstr "44100 Hz" - -#~ msgid "48000Hz" -#~ msgstr "48000 Hz" - -#~ msgid "88200Hz" -#~ msgstr "88200 Hz" - -#~ msgid "96000Hz" -#~ msgstr "96000 Hz" - -#~ msgid "192000Hz" -#~ msgstr "192000 Hz" - -#~ msgid "Triangular" -#~ msgstr "dreieckig" - -#~ msgid "Rectangular" -#~ msgstr "rechteckig" - -#~ msgid "Shaped" -#~ msgstr "shaped" - -#~ msgid "coremidi" -#~ msgstr "coremidi" - -#~ msgid "seq" -#~ msgstr "seq" - -#~ msgid "raw" -#~ msgstr "raw" - -#~ msgid "Audio Interface:" -#~ msgstr "Audio-Schnittstelle:" - -#~ msgid "Number of buffers:" -#~ msgstr "Pufferanzahl:" - -#~ msgid "Approximate latency:" -#~ msgstr "Latenz (ca.)" - -#~ msgid "Audio mode:" -#~ msgstr "Audio-Modus:" - -#~ msgid "Ignore" -#~ msgstr "ignorieren" - -#~ msgid "Client timeout" -#~ msgstr "Client Timeout" - -#~ msgid "Number of ports:" -#~ msgstr "Portanzahl" - -#~ msgid "MIDI driver:" -#~ msgstr "MIDI-Treiber:" - -#~ msgid "Dither:" -#~ msgstr "Dithering:" - -#~ msgid "" -#~ "No JACK server found anywhere on this system. Please install JACK and " -#~ "restart" -#~ msgstr "" -#~ "Es wurde kein JACK Server auf diesem System gefunden. Bitte installieren " -#~ "Sie JACK vor einem Neuversuch." - -#~ msgid "Server:" -#~ msgstr "Server:" - -#~ msgid "Input device:" -#~ msgstr "Eingangsgerät:" - -#~ msgid "Output device:" -#~ msgstr "Ausgabegerät:" - -#~ msgid "Advanced" -#~ msgstr "Erweitert" - -#~ msgid "cannot open JACK rc file %1 to store parameters" -#~ msgstr "kann die JACK rc-Datei %1 nicht öffnen, um die Parameter zu sichern" - -#~ msgid "" -#~ "You do not have any audio devices capable of\n" -#~ "simultaneous playback and recording.\n" -#~ "\n" -#~ "Please use Applications -> Utilities -> Audio MIDI Setup\n" -#~ "to create an \"aggregrate\" device, or install a suitable\n" -#~ "audio interface.\n" -#~ "\n" -#~ "Please send email to Apple and ask them why new Macs\n" -#~ "have no duplex audio device.\n" -#~ "\n" -#~ "Alternatively, if you really want just playback\n" -#~ "or recording but not both, start JACK before running\n" -#~ "%1 and choose the relevant device then." -#~ msgstr "" -#~ "Sie haben keine Soundkarte, die gleichzeitiges\n" -#~ "Abspielen und Aufnehmen unterstützt.\n" -#~ "\n" -#~ "Benützen Sie Programme>Dienstprogramme>Audio-Midi-Setup\n" -#~ " um ein kombiniertes Gerät zu erzeugen, oder installieren Sie ein\n" -#~ "geeignetes Audiointerface.\n" -#~ "\n" -#~ "Bitte senden Sie eine E-Mail an Apple und fragen Sie, warum Sie\n" -#~ "keine Duplex Soundkarte in Ihrem Mac haben.\n" -#~ "\n" -#~ "Wenn Sie Audiomaterial wirklich nicht gleichzeitig aufnehmen und " -#~ "wiedergeben wollen,\n" -#~ "können Sie JACK vor dem Starten von %1 aufrufen und das entsprechende " -#~ "Gerät auswählen." - -#~ msgid "No suitable audio devices" -#~ msgstr "Keine passenden Audiogeräte." - -#~ msgid "JACK appears to be missing from the %1 bundle" -#~ msgstr "JACK scheint im %1-Paket zu fehlen." - -#~ msgid "You need to choose an audio device first." -#~ msgstr "Sie müssen zuerst ein Audiogerät auswählen." - -#~ msgid "Audio device \"%1\" not known on this computer." -#~ msgstr "Audiogerät %1 scheint auf diesem Computer nicht vorhanden zu sein." - -#~ msgid "AudioSetup value for %1 is missing data" -#~ msgstr "Es fehlen Daten zum AudioSetup-Wert von %1" - -#~ msgid "" -#~ "configuration files contain a JACK server path that doesn't exist (%1)" -#~ msgstr "" -#~ "die Konfiguration enthält einen JACK-Serverpfad, der nicht existiert (%1)" - -#~ msgid "JACK exited" -#~ msgstr "JACK wurde beendet" - -#~ msgid "" -#~ "JACK exited unexpectedly, and without notifying %1.\n" -#~ "\n" -#~ "This is probably due to an error inside JACK. You should restart JACK\n" -#~ "and reconnect %1 to it, or exit %1 now. You cannot save your\n" -#~ "session at this time, because we would lose your connection information.\n" -#~ msgstr "" -#~ "JACK wurde unerwartet und ohne Benachrichtigung beendet %1.\n" -#~ "\n" -#~ "Dies liegt wahrscheinlich an einem Fehler in JACK. Sie sollten\n" -#~ "JACK neu starten und %1 erneut mit ihm verbinden, oder %1 jetzt beenden.\n" -#~ "Momentan läßt sich das Projekt nicht speichern, da alle Informationen\n" -#~ "über Verbindungen verloren gehen würden.\n" - -#~ msgid "Failed to set session-framerate: " -#~ msgstr "Konnte Projekt-Framerate nicht einstellen: " - -#~ msgid " vs " -#~ msgstr " vs. " - -#~ msgid "-24dB" -#~ msgstr "-24dB" - -#~ msgid "-15dB" -#~ msgstr "-15dB" - -#~ msgid "Configure meter-ticks and color-knee point." -#~ msgstr "Maßstriche und Farbbereiche der Pegelanzeige konfigurieren" - -#~ msgid "Enable Debug Mode: Print ffmpeg Command & Output to stdout." -#~ msgstr "" -#~ "Debug-Modus einschalten: gibt die ffmpeg-Befehlszeile und -Ausgabe an " -#~ "stdout aus." - -#~ msgid "-Inf" -#~ msgstr "-Inf" - -#~ msgid "slowest" -#~ msgstr "Am langsamstem" - -#~ msgid "slow" -#~ msgstr "Langsam" - -#~ msgid "fast" -#~ msgstr "Schnell" - -#~ msgid "faster" -#~ msgstr "Schneller" - -#~ msgid "fastest" -#~ msgstr "Schnellstmöglich" - -#~ msgid "found %1 match" -#~ msgid_plural "found %1 matches" -#~ msgstr[0] "%1 Treffer gefunden" -#~ msgstr[1] "%1 Treffer gefunden" - -#~ msgid "Search returned no results." -#~ msgstr "Die Suche erbrachte keine Ergebnisse" - -#~ msgid "Found %1 match" -#~ msgid_plural "Found %1 matches" -#~ msgstr[0] "%1 Treffer gefunden" -#~ msgstr[1] "%1 Treffer gefunden" - -#~ msgid "What would you like to do ?" -#~ msgstr "Was möchten Sie tun?" - -#~ msgid "Mixer on Top" -#~ msgstr "Mixer über Editor" - -#~ msgid "Add Audio Track" -#~ msgstr "Audiospur hinzufügen" - -#~ msgid "Add Audio Bus" -#~ msgstr "Audio-Bus hinzufügen" - -#~ msgid "Add MIDI Track" -#~ msgstr "Midispur hinzufügen" - -#~ msgid "Control surfaces" -#~ msgstr "Eingabegeräte / Controller" - -#~ msgid "Use plugins' own interfaces instead of %1's" -#~ msgstr "Statt der von %1 bereitgestellten GUIs die der Plugins verwenden" - -#~ msgid "Hid" -#~ msgstr "Hid" - -#~ msgid "Searching Page %1 of %2, click Stop to cancel" -#~ msgstr "Suche Seite %1 von %2, klicken Sie Stop, um abzubrechen" - -#~ msgid "Searching, click Stop to cancel" -#~ msgstr "Suche, klicken Sie Stop, um abzubrechen" - -#~ msgid "Use a monitor bus (allows AFL/PFL and more control)" -#~ msgstr "Benutze einen Monitor-Bus (ermöglicht AFL/PFL und mehr)" diff --git a/gtk2_ardour/po/el.po b/gtk2_ardour/po/el.po index 47a42cccc7..9bc7dc265b 100644 --- a/gtk2_ardour/po/el.po +++ b/gtk2_ardour/po/el.po @@ -212,11 +212,6 @@ msgstr "" msgid "Lincoln Spiteri" msgstr "" -#: about.cc:171 -#, fuzzy -msgid "Mike Start" -msgstr "ΕυθυγÏάμμιση αÏχής ΠεÏιοχών" - #: about.cc:172 msgid "Mark Stewart" msgstr "" @@ -332,11 +327,6 @@ msgid "" "\t Rui-huai Zhang \n" msgstr "" -#: about.cc:580 -#, fuzzy -msgid "Copyright (C) 1999-2013 Paul Davis\n" -msgstr "Πνευματικα Δικαιώματα 1999-2004 Paul Davis" - #: about.cc:584 msgid "http://ardour.org/" msgstr "" @@ -355,11 +345,6 @@ msgstr "" msgid "Loading menus from %1" msgstr "" -#: actions.cc:88 actions.cc:89 -#, fuzzy -msgid "badly formatted UI definition file: %1" -msgstr "το αÏχείο καθοÏÎ¹ÏƒÎ¼Î¿Ï Ï‡Ïωμάτων %1: %2 δεν ανοίγει" - #: actions.cc:91 msgid "%1 menu definition file not found" msgstr "" @@ -368,77 +353,14 @@ msgstr "" msgid "%1 will not work without a valid ardour.menus file" msgstr "" -#: add_route_dialog.cc:53 route_params_ui.cc:500 -#, fuzzy -msgid "Add Track or Bus" -msgstr "ΠÏόσθεση καναλιοÏ/διαÏλου" - -#: add_route_dialog.cc:56 -#, fuzzy -msgid "Configuration:" -msgstr "Διάταξη" - -#: add_route_dialog.cc:57 -#, fuzzy -msgid "Track mode:" -msgstr "Κανάλι" - #: add_route_dialog.cc:58 msgid "Instrument:" msgstr "" -#: add_route_dialog.cc:76 -#, fuzzy -msgid "Audio Tracks" -msgstr "ΠÏόσθεση καναλιοÏ" - -#: add_route_dialog.cc:77 -#, fuzzy -msgid "MIDI Tracks" -msgstr "ΠÏόσθεση καναλιοÏ" - -#: add_route_dialog.cc:78 -#, fuzzy -msgid "Audio+MIDI Tracks" -msgstr "ΠÏόσθεση καναλιοÏ" - -#: add_route_dialog.cc:79 -#, fuzzy -msgid "Busses" -msgstr "Δίαυλοι" - #: add_route_dialog.cc:101 msgid "Add:" msgstr "" -#: add_route_dialog.cc:114 startup.cc:841 time_fx_dialog.cc:91 -#: add_video_dialog.cc:150 video_server_dialog.cc:112 -#, fuzzy -msgid "Options" -msgstr "Επιλογές" - -#: add_route_dialog.cc:124 bundle_manager.cc:192 region_editor.cc:50 -#: route_group_dialog.cc:65 -#, fuzzy -msgid "Name:" -msgstr "νέο όνομα: " - -#: add_route_dialog.cc:154 -#, fuzzy -msgid "Group:" -msgstr "ΔιαμόÏφωση Group" - -#: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 -#: rc_option_editor.cc:1456 rc_option_editor.cc:1458 rc_option_editor.cc:1460 -#: rc_option_editor.cc:1478 rc_option_editor.cc:1480 rc_option_editor.cc:1488 -#: rc_option_editor.cc:1490 rc_option_editor.cc:1508 rc_option_editor.cc:1521 -#: rc_option_editor.cc:1523 rc_option_editor.cc:1525 rc_option_editor.cc:1556 -#: rc_option_editor.cc:1558 rc_option_editor.cc:1560 rc_option_editor.cc:1568 -#: rc_option_editor.cc:1576 rc_option_editor.cc:1584 -#, fuzzy -msgid "Audio" -msgstr "ΑκÏόαση" - #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 #: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1707 #: rc_option_editor.cc:1715 rc_option_editor.cc:1723 rc_option_editor.cc:1732 @@ -448,16 +370,6 @@ msgstr "ΑκÏόαση" msgid "MIDI" msgstr "MIDI" -#: add_route_dialog.cc:217 add_route_dialog.cc:230 add_route_dialog.cc:300 -#, fuzzy -msgid "Audio+MIDI" -msgstr "ΑκÏόαση" - -#: add_route_dialog.cc:218 add_route_dialog.cc:233 add_route_dialog.cc:301 -#, fuzzy -msgid "Bus" -msgstr "Δίαυλοι" - #: add_route_dialog.cc:260 msgid "" "Audio+MIDI tracks are intended for use ONLY with plugins that use " @@ -472,11 +384,6 @@ msgstr "" msgid "Normal" msgstr "Κανονικό" -#: add_route_dialog.cc:322 add_route_dialog.cc:340 -#, fuzzy -msgid "Non Layered" -msgstr "ΣτÏώμα" - #: add_route_dialog.cc:323 add_route_dialog.cc:342 msgid "Tape" msgstr "" @@ -489,55 +396,10 @@ msgstr "" msgid "Stereo" msgstr "" -#: add_route_dialog.cc:451 -#, fuzzy -msgid "3 Channel" -msgstr "Κανάλια" - -#: add_route_dialog.cc:455 -#, fuzzy -msgid "4 Channel" -msgstr "Κανάλια" - -#: add_route_dialog.cc:459 -#, fuzzy -msgid "5 Channel" -msgstr "Κανάλια" - -#: add_route_dialog.cc:463 -#, fuzzy -msgid "6 Channel" -msgstr "Κανάλια" - -#: add_route_dialog.cc:467 -#, fuzzy -msgid "8 Channel" -msgstr "Κανάλια" - -#: add_route_dialog.cc:471 -#, fuzzy -msgid "12 Channel" -msgstr "Κανάλια" - #: add_route_dialog.cc:475 mixer_strip.cc:2131 msgid "Custom" msgstr "" -#: add_route_dialog.cc:508 add_route_dialog.cc:524 route_group_menu.cc:81 -#, fuzzy -msgid "New Group..." -msgstr "ΧωÏίς group" - -#: add_route_dialog.cc:512 route_group_menu.cc:85 -#, fuzzy -msgid "No Group" -msgstr "ΧωÏίς group" - -#: add_route_dialog.cc:588 -#, fuzzy -msgid "-none-" -msgstr "Κανένα" - #: ambiguous_file_dialog.cc:30 msgid "Ambiguous File" msgstr "" @@ -563,21 +425,6 @@ msgstr "" msgid "Signal source" msgstr "" -#: analysis_window.cc:47 -#, fuzzy -msgid "Selected ranges" -msgstr "επιλογή/μετακίνηση διαστημάτων" - -#: analysis_window.cc:48 -#, fuzzy -msgid "Selected regions" -msgstr "επιλογή πεÏιοχών" - -#: analysis_window.cc:50 -#, fuzzy -msgid "Display model" -msgstr "Απεικόνιση" - #: analysis_window.cc:51 msgid "Composite graphs for each track" msgstr "" @@ -590,11 +437,6 @@ msgstr "" msgid "Show frequency power range" msgstr "" -#: analysis_window.cc:55 -#, fuzzy -msgid "Normalize values" -msgstr "Εξομάλυνση" - #: analysis_window.cc:59 msgid "FFT analysis window" msgstr "" @@ -608,12 +450,6 @@ msgstr "" msgid "Track" msgstr "Κανάλι" -#: analysis_window.cc:68 editor_actions.cc:616 mixer_ui.cc:125 -#: mixer_ui.cc:1795 -#, fuzzy -msgid "Show" -msgstr "Ανάδειξη όλων" - #: analysis_window.cc:135 msgid "Re-analyze data" msgstr "" @@ -622,30 +458,10 @@ msgstr "" msgid "button cannot watch state of non-existing Controllable\n" msgstr "" -#: ardour_ui.cc:180 -#, fuzzy -msgid "audition" -msgstr "ΑκÏόαση" - -#: ardour_ui.cc:181 -#, fuzzy -msgid "solo" -msgstr "σόλο" - #: ardour_ui.cc:182 msgid "feedback" msgstr "" -#: ardour_ui.cc:187 speaker_dialog.cc:36 -#, fuzzy -msgid "Speaker Configuration" -msgstr "Διάταξη" - -#: ardour_ui.cc:188 theme_manager.cc:56 theme_manager.cc:64 -#, fuzzy -msgid "Theme Manager" -msgstr "Απαλοιφή Στίγματος" - #: ardour_ui.cc:189 keyeditor.cc:53 msgid "Key Bindings" msgstr "" @@ -654,11 +470,6 @@ msgstr "" msgid "Preferences" msgstr "" -#: ardour_ui.cc:191 ardour_ui.cc:196 -#, fuzzy -msgid "Add Tracks/Busses" -msgstr "Κανάλια/Δίαυλοι" - #: ardour_ui.cc:192 msgid "About" msgstr "ΠληÏοφοÏίες" @@ -667,11 +478,6 @@ msgstr "ΠληÏοφοÏίες" msgid "Locations" msgstr "Τοποθεσίες" -#: ardour_ui.cc:194 route_params_ui.cc:58 route_params_ui.cc:606 -#, fuzzy -msgid "Tracks and Busses" -msgstr "Κανάλια/Δίαυλοι" - #: ardour_ui.cc:195 msgid "Properties" msgstr "" @@ -684,25 +490,10 @@ msgstr "" msgid "Big Clock" msgstr "Μεγάλο ωÏολόγιον" -#: ardour_ui.cc:199 -#, fuzzy -msgid "Audio Connections" -msgstr "Συνδέσεις" - -#: ardour_ui.cc:200 -#, fuzzy -msgid "MIDI Connections" -msgstr "Συνδέσεις" - #: ardour_ui.cc:202 msgid "Errors" msgstr "" -#: ardour_ui.cc:388 -#, fuzzy -msgid "Starting audio engine" -msgstr "ΕναÏκτήÏιο διάστημα" - #: ardour_ui.cc:758 startup.cc:638 msgid "%1 is ready for use" msgstr "" @@ -720,83 +511,10 @@ msgstr "" msgid "Do not show this window again" msgstr "" -#: ardour_ui.cc:865 -#, fuzzy -msgid "Don't quit" -msgstr "ΟΧΙ %1" - -#: ardour_ui.cc:866 -#, fuzzy -msgid "Just quit" -msgstr "Μόνο %1" - -#: ardour_ui.cc:867 -#, fuzzy -msgid "Save and quit" -msgstr "Αποθήκευση και %1" - -#: ardour_ui.cc:877 -#, fuzzy -msgid "" -"%1 was unable to save your session.\n" -"\n" -"If you still wish to quit, please use the\n" -"\n" -"\"Just quit\" option." -msgstr "" -"Ο Ardour δεν μπόÏεσε να αποθηκεÏσει τη συνεδÏία.\n" -"\n" -"Αν ακόμα επιθυμείτε να βγείτε, πατήστε την\n" -"\n" -"επιλογή \"Μόνο Έξοδος\"." - #: ardour_ui.cc:908 msgid "Please wait while %1 cleans up..." msgstr "" -#: ardour_ui.cc:925 -#, fuzzy -msgid "Unsaved Session" -msgstr "Îέα συνεδÏία" - -#: ardour_ui.cc:946 -#, fuzzy -msgid "" -"The session \"%1\"\n" -"has not been saved.\n" -"\n" -"Any changes made this time\n" -"will be lost unless you save it.\n" -"\n" -"What do you want to do?" -msgstr "" -"Το Ï„ÏαγοÏδι \"%1\"\n" -"δεν έχει αποθηκευθεί.\n" -"\n" -"Εάν δεν το αποθήκευσετε\n" -"οι αλλαγές που κάνατε θα χαθοÏν.\n" -"\n" -"τί θέλετε να κάνετε;" - -#: ardour_ui.cc:949 -#, fuzzy -msgid "" -"The snapshot \"%1\"\n" -"has not been saved.\n" -"\n" -"Any changes made this time\n" -"will be lost unless you save it.\n" -"\n" -"What do you want to do?" -msgstr "" -"Το Ï„ÏαγοÏδι \"%1\"\n" -"δεν έχει αποθηκευθεί.\n" -"\n" -"Εάν δεν το αποθήκευσετε\n" -"οι αλλαγές που κάνατε θα χαθοÏν.\n" -"\n" -"τί θέλετε να κάνετε;" - #: ardour_ui.cc:963 msgid "Prompter" msgstr "Υποβολέας" @@ -815,11 +533,6 @@ msgstr "" msgid "JACK: % kHz / %4.1f ms" msgstr "" -#: ardour_ui.cc:1078 export_video_dialog.cc:68 -#, fuzzy -msgid "File:" -msgstr "Μετονομασία" - #: ardour_ui.cc:1082 msgid "BWF" msgstr "" @@ -873,11 +586,6 @@ msgid "" "\">%%%" msgstr "" -#: ardour_ui.cc:1188 -#, fuzzy -msgid "Disk: Unknown" -msgstr "χώÏος: %02dh:%02dm:%02ds" - #: ardour_ui.cc:1190 msgid "Disk: 24hrs+" msgstr "" @@ -886,16 +594,6 @@ msgstr "" msgid "Disk: >24 hrs" msgstr "" -#: ardour_ui.cc:1219 -#, fuzzy, c-format -msgid "Disk: %02dh:%02dm:%02ds" -msgstr "χώÏος: %02dh:%02dm:%02ds" - -#: ardour_ui.cc:1245 -#, fuzzy, c-format -msgid "Timecode|TC: %s" -msgstr "χώÏος: %02dh:%02dm:%02ds" - #: ardour_ui.cc:1362 ardour_ui.cc:1371 startup.cc:1054 msgid "Recent Sessions" msgstr "ΠÏόσφατες συνεδÏίες" @@ -910,65 +608,10 @@ msgstr "" msgid "Open Session" msgstr "Άνοιγμα ΣυνεδÏίας" -#: ardour_ui.cc:1503 session_import_dialog.cc:169 -#: session_metadata_dialog.cc:729 startup.cc:1083 -#, fuzzy -msgid "%1 sessions" -msgstr "ΣυνεδÏία" - #: ardour_ui.cc:1540 msgid "You cannot add a track without a session already loaded." msgstr "Δεν γίνεται να Ï€Ïοστεθεί κανάλι χωÏίς ήδη φοÏτωμένη συνεδÏία." -#: ardour_ui.cc:1548 -#, fuzzy -msgid "could not create %1 new mixed track" -msgid_plural "could not create %1 new mixed tracks" -msgstr[0] "Δεν γίνεται να δημιουÏγηθεί νέο ηχητικό κανάλι" -msgstr[1] "Δεν γίνεται να δημιουÏγηθεί νέο ηχητικό κανάλι" - -#: ardour_ui.cc:1554 ardour_ui.cc:1615 -#, fuzzy -msgid "" -"There are insufficient JACK ports available\n" -"to create a new track or bus.\n" -"You should save %1, exit and\n" -"restart JACK with more ports." -msgstr "" -"ΑνεπαÏκείς διαθέσιμες θÏÏες του JACK\n" -"για δημιουÏγία νέου ÎºÎ±Î½Î±Î»Î¹Î¿Ï Î® διαÏλου.\n" -"ΑποθηκεÏστε τη συνεδÏία, τεÏματίστε το Ardour\n" -"και επανεκκινήστε το JACK με πεÏισσότεÏες θÏÏες." - -#: ardour_ui.cc:1589 -#, fuzzy -msgid "You cannot add a track or bus without a session already loaded." -msgstr "Δεν γίνεται να Ï€Ïοστεθεί κανάλι χωÏίς ήδη φοÏτωμένη συνεδÏία." - -#: ardour_ui.cc:1598 -#, fuzzy -msgid "could not create %1 new audio track" -msgid_plural "could not create %1 new audio tracks" -msgstr[0] "Δεν γίνεται να δημιουÏγηθεί νέο ηχητικό κανάλι" -msgstr[1] "Δεν γίνεται να δημιουÏγηθεί νέο ηχητικό κανάλι" - -#: ardour_ui.cc:1607 -#, fuzzy -msgid "could not create %1 new audio bus" -msgid_plural "could not create %1 new audio busses" -msgstr[0] "Δεν γίνεται να δημιουÏγηθεί νέο ηχητικό κανάλι" -msgstr[1] "Δεν γίνεται να δημιουÏγηθεί νέο ηχητικό κανάλι" - -#: ardour_ui.cc:1724 -#, fuzzy -msgid "" -"Please create one or more tracks before trying to record.\n" -"You can do this with the \"Add Track or Bus\" option in the Session menu." -msgstr "" -"ΠαÏακαλώ δημιουÏγήστε 1 ή πεÏισότεÏα\n" -"κανάλια Ï€Ïιν Ï€Ïοσπαθήστε να ηχογÏαφήσετε.\n" -"Κοιτάξτε στο Î¼ÎµÎ½Î¿Ï 'ΣυνεδÏία'." - #: ardour_ui.cc:2114 msgid "" "The audio backend (JACK) was shutdown because:\n" @@ -976,33 +619,10 @@ msgid "" "%1" msgstr "" -#: ardour_ui.cc:2116 -#, fuzzy -msgid "" -"JACK has either been shutdown or it\n" -"disconnected %1 because %1\n" -"was not fast enough. Try to restart\n" -"JACK, reconnect and save the session." -msgstr "" -"Ή ο JACK απενεÏγοποιήθηκε ή αυτός\n" -"αποσÏνδεσε το Ardour διότι το Ardour\n" -"δεν ήταν αÏκετά γÏήγοÏο. ΜποÏείτε να αποθηκεÏσετε\n" -"τη συνεδÏία και/ή να επανακινήσετε το JACK." - #: ardour_ui.cc:2142 msgid "Unable to start the session running" msgstr "Σφάλμα στην έναÏξη της συνεδÏίας" -#: ardour_ui.cc:2222 -#, fuzzy -msgid "Take Snapshot" -msgstr "Στιγμιότυπο" - -#: ardour_ui.cc:2223 -#, fuzzy -msgid "Name of new snapshot" -msgstr "Όνομα νέου στιγμιοτÏπου" - #: ardour_ui.cc:2247 msgid "" "To ensure compatibility with various systems\n" @@ -1013,26 +633,6 @@ msgstr "" msgid "Confirm Snapshot Overwrite" msgstr "" -#: ardour_ui.cc:2260 -#, fuzzy -msgid "A snapshot already exists with that name. Do you want to overwrite it?" -msgstr "Το αÏχείο ήδη υπάÏχει, θέλετε να σώστε από πάνω?" - -#: ardour_ui.cc:2263 utils_videotl.cc:67 -#, fuzzy -msgid "Overwrite" -msgstr "awrite" - -#: ardour_ui.cc:2297 -#, fuzzy -msgid "Rename Session" -msgstr "αντιστÏοφή πεÏιοχής" - -#: ardour_ui.cc:2298 -#, fuzzy -msgid "New session name" -msgstr "Îέο Όνομα ΣυνεδÏίας:" - #: ardour_ui.cc:2312 ardour_ui.cc:2692 ardour_ui.cc:2737 msgid "" "To ensure compatibility with various systems\n" @@ -1050,33 +650,10 @@ msgid "" "Things could be seriously messed up at this point" msgstr "" -#: ardour_ui.cc:2440 -#, fuzzy -msgid "Save Template" -msgstr "Αποθήκευση Ï€Ïοσχεδίου..." - -#: ardour_ui.cc:2441 -#, fuzzy -msgid "Name for template:" -msgstr "Όνομα για Ï€Ïοσχεδίο μίξεως:" - #: ardour_ui.cc:2442 msgid "-template" msgstr "-Ï€Ïοσχέδιο" -#: ardour_ui.cc:2480 -#, fuzzy -msgid "" -"This session\n" -"%1\n" -"already exists. Do you want to open it?" -msgstr "Το αÏχείο ήδη υπάÏχει, θέλετε να σώστε από πάνω?" - -#: ardour_ui.cc:2490 -#, fuzzy -msgid "Open Existing Session" -msgstr "Άνοιγμα ΣυνεδÏίας" - #: ardour_ui.cc:2728 msgid "There is no existing session at \"%1\"" msgstr "" @@ -1097,31 +674,10 @@ msgstr "" msgid "Session \"%1 (snapshot %2)\" did not load successfully" msgstr "Η ΣυνεδÏία \"%1 (στιγμιότυπο %2)\" δεν φοÏτώθηκε επιτυχώς" -#: ardour_ui.cc:2858 -#, fuzzy -msgid "Loading Error" -msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: " - #: ardour_ui.cc:2859 msgid "Click the Refresh button to try again." msgstr "" -#: ardour_ui.cc:2941 -#, fuzzy -msgid "Could not create session in \"%1\"" -msgstr "δεν γινόταν να φοÏτωθεί η συνεδÏία γÏαμμής εντολών \"%1\"" - -#: ardour_ui.cc:3041 -#, fuzzy -msgid "No files were ready for clean-up" -msgstr "Δεν υπάÏχει αÏχείο ήχου για εκκαθάÏιση" - -#: ardour_ui.cc:3045 ardour_ui.cc:3055 ardour_ui.cc:3188 ardour_ui.cc:3195 -#: ardour_ui_ed.cc:104 -#, fuzzy -msgid "Clean-up" -msgstr "ΕκκαθάÏιση" - #: ardour_ui.cc:3046 msgid "" "If this seems suprising, \n" @@ -1147,83 +703,6 @@ msgstr "" msgid "giga" msgstr "" -#: ardour_ui.cc:3116 -#, fuzzy -msgid "" -"The following file was deleted from %2,\n" -"releasing %3 %4bytes of disk space" -msgid_plural "" -"The following %1 files were deleted from %2,\n" -"releasing %3 %4bytes of disk space" -msgstr[0] "" -"Τα ακόλουθα %1 file%2 διεγÏάφησαν από\n" -"%3,\n" -"ελευθεÏώνοντας %4 %5bytes χώÏου στο δίσκο" -msgstr[1] "" -"Τα ακόλουθα %1 file%2 διεγÏάφησαν από\n" -"%3,\n" -"ελευθεÏώνοντας %4 %5bytes χώÏου στο δίσκο" - -#: ardour_ui.cc:3123 -#, fuzzy -msgid "" -"The following file was not in use and \n" -"has been moved to: %2\n" -"\n" -"After a restart of %5\n" -"\n" -"Session -> Clean-up -> Flush Wastebasket\n" -"\n" -"will release an additional %3 %4bytes of disk space.\n" -msgid_plural "" -"The following %1 files were not in use and \n" -"have been moved to: %2\n" -"\n" -"After a restart of %5\n" -"\n" -"Session -> Clean-up -> Flush Wastebasket\n" -"\n" -"will release an additional %3 %4bytes of disk space.\n" -msgstr[0] "" -"Τα ακόλουθα %1 %2 δεν χÏησιμοποιοÏνταν και\n" -"εστάλησαν στο:%3\n" -"Αν αδειάσετε τον κάδο\n" -"θα ελευθεÏωθοÏν %4 %5bytes\n" -"στο δίσκο.\n" -msgstr[1] "" -"Τα ακόλουθα %1 %2 δεν χÏησιμοποιοÏνταν και\n" -"εστάλησαν στο:%3\n" -"Αν αδειάσετε τον κάδο\n" -"θα ελευθεÏωθοÏν %4 %5bytes\n" -"στο δίσκο.\n" - -#: ardour_ui.cc:3183 -#, fuzzy -msgid "Are you sure you want to clean-up?" -msgstr "Στ'αλήθεια θέλετε να κάνετε εκκαθάÏιση?" - -#: ardour_ui.cc:3190 -#, fuzzy -msgid "" -"Clean-up is a destructive operation.\n" -"ALL undo/redo information will be lost if you clean-up.\n" -"Clean-up will move all unused files to a \"dead\" location." -msgstr "" -"Η εκκαθάÏιση είναι καταστÏοφική διαδικασία.\n" -"ΟΛΕΣ οι undo/redo πληÏοφοÏίες θα χαθοÏν.\n" -"Μετά την εκκαθάÏιση, τα άχÏηστα αÏχεία μεταφέÏονται στην\n" -"\"dead sounds\" τοποθεσία." - -#: ardour_ui.cc:3198 -#, fuzzy -msgid "CleanupDialog" -msgstr "ΕκκαθάÏιση" - -#: ardour_ui.cc:3228 -#, fuzzy -msgid "Cleaned Files" -msgstr "καθαÏισμένα αÏχεία" - #: ardour_ui.cc:3245 msgid "deleted file" msgstr "διαγÏαμμένα αÏχεία" @@ -1241,11 +720,6 @@ msgstr "" msgid "Do you really want to stop the Video Server?" msgstr "" -#: ardour_ui.cc:3345 -#, fuzzy -msgid "Yes, Stop It" -msgstr "Îαι, να καταστÏαφεί." - #: ardour_ui.cc:3371 msgid "The Video Server is already started." msgstr "" @@ -1290,58 +764,10 @@ msgstr "" msgid "Recording was stopped because your system could not keep up." msgstr "η ΕγγÏαφή διεκόπη διότι το σÏστημά δεν μποÏοÏσε να ανταπεξέλθει." -#: ardour_ui.cc:3702 -#, fuzzy -msgid "" -"The disk system on your computer\n" -"was not able to keep up with %1.\n" -"\n" -"Specifically, it failed to write data to disk\n" -"quickly enough to keep up with recording.\n" -msgstr "" -"Το σÏστημα δίσκων στον υπολογιστή σας\n" -"δεν μπόÏεσε να Ï€Ïολάβει το Ardour.\n" -"\n" -"ΣυγκεκÏιμένα, απέτυχε να γÏάψει δεδομένα\n" -"αÏκετά γÏήγοÏα για να Ï€Ïολάβει την ηχογÏάφηση.\n" - -#: ardour_ui.cc:3721 -#, fuzzy -msgid "" -"The disk system on your computer\n" -"was not able to keep up with %1.\n" -"\n" -"Specifically, it failed to read data from disk\n" -"quickly enough to keep up with playback.\n" -msgstr "" -"Οι δίσκοι στον υπολογιστή σας\n" -"δεν μπόÏεσαν να Ï€Ïολάβουν το Ardour.\n" -"\n" -"ΣυγκεκÏιμένα, απέτυχε να διαβάσει δεδομένα\n" -"αÏκετά γÏήγοÏα για να Ï€Ïολάβει την αναπαÏαγωγή.\n" - #: ardour_ui.cc:3761 msgid "Crash Recovery" msgstr "" -#: ardour_ui.cc:3762 -#, fuzzy -msgid "" -"This session appears to have been in the\n" -"middle of recording when %1 or\n" -"the computer was shutdown.\n" -"\n" -"%1 can recover any captured audio for\n" -"you, or it can ignore it. Please decide\n" -"what you would like to do.\n" -msgstr "" -"Η συνεδÏία ήταν εν μέσω ηχογÏαφήσεως\n" -"όταν ο υπολογιστής έσβησε.\n" -"\n" -"Το Ardour μποÏεί να ανακαλέσει τυχον\n" -"ηχογÏαφημένα αÏχεία, ή να τα αγνοήσει.\n" -"ΠαÏακαλώ αποφασίστε τί θέλετε να κάνετε.\n" - #: ardour_ui.cc:3774 msgid "Ignore crash data" msgstr "ΔιαγÏαφή τυχόν δεδομένων" @@ -1361,11 +787,6 @@ msgid "" "audio may be played at the wrong sample rate.\n" msgstr "" -#: ardour_ui.cc:3805 -#, fuzzy -msgid "Do not load session" -msgstr "Zoom στη συνεδÏία" - #: ardour_ui.cc:3806 msgid "Load session anyway" msgstr "" @@ -1401,11 +822,6 @@ msgstr "UI: Ο 'editor' δεν μποÏεί να εγεÏθεί" msgid "UI: cannot setup mixer" msgstr "UI: ο μίκτης δεν μποÏεί να εγεÏθεί" -#: ardour_ui2.cc:82 -#, fuzzy -msgid "UI: cannot setup meterbridge" -msgstr "UI: η γέφυÏα μετÏήσεων δεν μποÏεί να εγεÏθεί" - #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "ΑναπαÏ/γή από τον ΑναπαÏαγωγέα" @@ -1414,11 +830,6 @@ msgstr "ΑναπαÏ/γή από τον ΑναπαÏαγωγέα" msgid "Stop playback" msgstr "Διακοπή ΑναπαÏ/γής" -#: ardour_ui2.cc:132 -#, fuzzy -msgid "Toggle record" -msgstr "ΕγγÏαφή" - #: ardour_ui2.cc:133 msgid "Play range/selection" msgstr "ΑναπαÏ/γή διαστήματος/επιλογής" @@ -1445,11 +856,6 @@ msgstr "" msgid "Return to last playback start when stopped" msgstr "ΕπιστÏοφή στην τελευταία θεση μετα απο παÏση" -#: ardour_ui2.cc:139 -#, fuzzy -msgid "Playhead follows Range Selections and Edits" -msgstr "Playhead στην ΑÏχή Διαστήματος" - #: ardour_ui2.cc:140 msgid "Be sensible about input monitoring" msgstr "ΠÏοσοχή στο input monitoring" @@ -1506,13 +912,6 @@ msgstr "" msgid "[INFO]: " msgstr "" -#: ardour_ui2.cc:247 ardour_ui_ed.cc:377 -#, fuzzy -msgid "Auto Return" -msgstr "" -"αυτόματη\n" -"επιστÏοφή" - #: ardour_ui2.cc:249 ardour_ui_ed.cc:380 msgid "Follow Edits" msgstr "" @@ -1529,36 +928,6 @@ msgstr "" msgid "Misc" msgstr "ΔιάφοÏα" -#: ardour_ui_dependents.cc:77 -#, fuzzy -msgid "Setup Editor" -msgstr "Θέση ΚέÏσοÏα επεξεÏγασίας" - -#: ardour_ui_dependents.cc:79 -#, fuzzy -msgid "Setup Mixer" -msgstr "Ανάδειξη Μίκτη" - -#: ardour_ui_dependents.cc:85 -#, fuzzy -msgid "Reload Session History" -msgstr "ΔημιουÏγία Directory ΣυνεδÏίας Στο:" - -#: ardour_ui_dialogs.cc:242 -#, fuzzy -msgid "Don't close" -msgstr "ΟΧΙ %1" - -#: ardour_ui_dialogs.cc:243 -#, fuzzy -msgid "Just close" -msgstr "Κλείσιμο" - -#: ardour_ui_dialogs.cc:244 -#, fuzzy -msgid "Save and close" -msgstr "Αποθήκευση και %1" - #: ardour_ui_dialogs.cc:340 msgid "This screen is not tall enough to display the mixer window" msgstr "" @@ -1576,11 +945,6 @@ msgstr "Sync" msgid "Options" msgstr "Επιλογές" -#: ardour_ui_ed.cc:108 -#, fuzzy -msgid "Window" -msgstr "ΠαÏάθυÏα" - #: ardour_ui_ed.cc:109 msgid "Help" msgstr "Βοήθεια!" @@ -1613,11 +977,6 @@ msgstr "Plugins" msgid "Metering" msgstr "ΜέτÏηση" -#: ardour_ui_ed.cc:117 -#, fuzzy -msgid "Fall Off Rate" -msgstr "Fall off χÏόνος" - #: ardour_ui_ed.cc:118 msgid "Hold Time" msgstr "" @@ -1630,56 +989,10 @@ msgstr "" msgid "New..." msgstr "" -#: ardour_ui_ed.cc:125 -#, fuzzy -msgid "Open..." -msgstr "Άνοιγμα" - -#: ardour_ui_ed.cc:126 -#, fuzzy -msgid "Recent..." -msgstr "ΠÏόσφατο" - #: ardour_ui_ed.cc:127 panner_editor.cc:29 playlist_selector.cc:64 msgid "Close" msgstr "Κλείσιμο" -#: ardour_ui_ed.cc:130 -#, fuzzy -msgid "Add Track or Bus..." -msgstr "ΠÏόσθεση καναλιοÏ/διαÏλου" - -#: ardour_ui_ed.cc:135 -#, fuzzy -msgid "Open Video" -msgstr "Άνοιγμα ΣυνεδÏίας" - -#: ardour_ui_ed.cc:138 -#, fuzzy -msgid "Remove Video" -msgstr "Απαλοιφή Πεδίου" - -#: ardour_ui_ed.cc:141 -#, fuzzy -msgid "Export To Video File" -msgstr "Εξαγωγή συνεδÏίας σε αÏχείο..." - -#: ardour_ui_ed.cc:145 -#, fuzzy -msgid "Snapshot..." -msgstr "Στιγμιότυπο" - -#: ardour_ui_ed.cc:149 -#, fuzzy -msgid "Save As..." -msgstr "Αποθήκευση Ï€Ïοσχεδίου..." - -#: ardour_ui_ed.cc:153 editor_actions.cc:1719 editor_markers.cc:858 -#: editor_snapshots.cc:123 mixer_strip.cc:1471 route_time_axis.cc:1485 -#, fuzzy -msgid "Rename..." -msgstr "Μετονομασία" - #: ardour_ui_ed.cc:157 msgid "Save Template..." msgstr "Αποθήκευση Ï€Ïοσχεδίου..." @@ -1692,36 +1005,11 @@ msgstr "" msgid "Edit Metadata..." msgstr "" -#: ardour_ui_ed.cc:166 -#, fuzzy -msgid "Import Metadata..." -msgstr "Εισαγωγή επιλεγμένου(ων)" - -#: ardour_ui_ed.cc:169 -#, fuzzy -msgid "Export To Audio File(s)..." -msgstr "Εξαγωγή συνεδÏίας σε αÏχείο..." - -#: ardour_ui_ed.cc:172 -#, fuzzy -msgid "Stem export..." -msgstr "Εξαγωγή" - #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 #: export_video_dialog.cc:72 msgid "Export" msgstr "Εξαγωγή" -#: ardour_ui_ed.cc:178 -#, fuzzy -msgid "Clean-up Unused Sources..." -msgstr "ΕκκαθάÏιση αχÏήστων πηγών" - -#: ardour_ui_ed.cc:182 -#, fuzzy -msgid "Flush Wastebasket" -msgstr "Άδειασμα κάδου" - #: ardour_ui_ed.cc:189 keyeditor.cc:253 rc_option_editor.cc:1472 msgid "JACK" msgstr "" @@ -1747,26 +1035,6 @@ msgstr "Έξοδος" msgid "Maximise Editor Space" msgstr "Μεγιστοποίηση χώÏου για τον Editor" -#: ardour_ui_ed.cc:227 -#, fuzzy -msgid "Show Toolbars" -msgstr "Ανάδειξη Θέσεως" - -#: ardour_ui_ed.cc:230 mixer_ui.cc:1865 mixer_ui.cc:1871 -#, fuzzy -msgid "Window|Mixer" -msgstr "ΠαÏάθυÏα" - -#: ardour_ui_ed.cc:231 -#, fuzzy -msgid "Toggle Editor+Mixer" -msgstr "ΛειτουÏγία Επεξ/σίας" - -#: ardour_ui_ed.cc:232 meterbridge.cc:230 meterbridge.cc:236 -#, fuzzy -msgid "Window|Meterbridge" -msgstr "ΠαÏάθυÏα" - #: ardour_ui_ed.cc:234 midi_tracer.cc:39 msgid "MIDI Tracer" msgstr "" @@ -1813,44 +1081,14 @@ msgstr "" msgid "Start/Continue/Stop" msgstr "" -#: ardour_ui_ed.cc:268 -#, fuzzy -msgid "Stop and Forget Capture" -msgstr "Stop + ξέχασε τη λήψη" - -#: ardour_ui_ed.cc:278 -#, fuzzy -msgid "Transition To Roll" -msgstr "ΠαÏαδοσιακή" - #: ardour_ui_ed.cc:282 msgid "Transition To Reverse" msgstr "" -#: ardour_ui_ed.cc:286 -#, fuzzy -msgid "Play Loop Range" -msgstr "Επαναληπτική αναπαÏ/γή διαστήματος" - -#: ardour_ui_ed.cc:289 -#, fuzzy -msgid "Play Selected Range" -msgstr "ΚαθοÏισμός Διαστήματος" - -#: ardour_ui_ed.cc:292 -#, fuzzy -msgid "Play Selection w/Preroll" -msgstr "ΑναπαÏ/γή επιλογής" - #: ardour_ui_ed.cc:296 msgid "Enable Record" msgstr "ΕνεÏγοποίηση ΕγγÏαφής" -#: ardour_ui_ed.cc:299 -#, fuzzy -msgid "Start Recording" -msgstr "ΕναÏκτήÏιο διάστημα" - #: ardour_ui_ed.cc:303 msgid "Rewind" msgstr "" @@ -1904,36 +1142,16 @@ msgstr "" msgid "Timecode" msgstr "" -#: ardour_ui_ed.cc:340 ardour_ui_ed.cc:349 editor_actions.cc:542 -#, fuzzy -msgid "Bars & Beats" -msgstr "ΜπάÏες:ΚτÏποι" - -#: ardour_ui_ed.cc:342 ardour_ui_ed.cc:351 -#, fuzzy -msgid "Minutes & Seconds" -msgstr "Λεπτά:ΔεÏτεÏα" - #: ardour_ui_ed.cc:344 ardour_ui_ed.cc:353 audio_clock.cc:2050 editor.cc:238 #: editor_actions.cc:543 msgid "Samples" msgstr "" -#: ardour_ui_ed.cc:356 -#, fuzzy -msgid "Punch In" -msgstr "Punch" - #: ardour_ui_ed.cc:357 mixer_strip.cc:1905 route_ui.cc:137 #: time_info_box.cc:113 msgid "In" msgstr "" -#: ardour_ui_ed.cc:360 -#, fuzzy -msgid "Punch Out" -msgstr "Punch" - #: ardour_ui_ed.cc:361 time_info_box.cc:114 msgid "Out" msgstr "" @@ -1950,32 +1168,10 @@ msgstr "" msgid "Click" msgstr "ΜετÏονόμος" -#: ardour_ui_ed.cc:371 -#, fuzzy -msgid "Auto Input" -msgstr "Ï€Ïόσθεση Input" - -#: ardour_ui_ed.cc:374 -#, fuzzy -msgid "Auto Play" -msgstr "" -"αυτόματη\n" -"αναπαÏ/γή" - #: ardour_ui_ed.cc:385 msgid "Sync Startup to Video" msgstr "" -#: ardour_ui_ed.cc:387 -#, fuzzy -msgid "Time Master" -msgstr "ΑπόκÏυψη Στίγματος" - -#: ardour_ui_ed.cc:394 -#, fuzzy -msgid "Toggle Record Enable Track %1" -msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 1" - #: ardour_ui_ed.cc:401 msgid "Percentage" msgstr "Ποσοστό" @@ -1996,34 +1192,14 @@ msgstr "Αποστολή MMC" msgid "Use MMC" msgstr "" -#: ardour_ui_ed.cc:412 rc_option_editor.cc:1710 -#, fuzzy -msgid "Send MIDI Clock" -msgstr "Αποστολή MIDI feedback" - -#: ardour_ui_ed.cc:414 -#, fuzzy -msgid "Send MIDI Feedback" -msgstr "Αποστολή MIDI feedback" - #: ardour_ui_ed.cc:420 msgid "Panic" msgstr "" -#: ardour_ui_ed.cc:560 -#, fuzzy -msgid "Wall Clock" -msgstr "Μεγάλο ωÏολόγιον" - #: ardour_ui_ed.cc:561 msgid "Disk Space" msgstr "" -#: ardour_ui_ed.cc:562 -#, fuzzy -msgid "DSP" -msgstr "LADSPA" - #: ardour_ui_ed.cc:563 msgid "Buffers" msgstr "" @@ -2032,16 +1208,6 @@ msgstr "" msgid "JACK Sampling Rate and Latency" msgstr "" -#: ardour_ui_ed.cc:565 -#, fuzzy -msgid "Timecode Format" -msgstr "Ηχητικά frames" - -#: ardour_ui_ed.cc:566 -#, fuzzy -msgid "File Format" -msgstr "Εντόπιο Format" - #: ardour_ui_options.cc:65 msgid "" "It is not possible to use JACK as the the sync source\n" @@ -2052,20 +1218,10 @@ msgstr "" msgid "Internal" msgstr "ΕσωτεÏικό" -#: ardour_ui_options.cc:482 -#, fuzzy -msgid "Enable/Disable external positional sync" -msgstr "ΆÏση/ΠαÏση μετÏονόμου" - #: ardour_ui_options.cc:484 msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "" -#: audio_clock.cc:1012 audio_clock.cc:1031 -#, fuzzy -msgid "--pending--" -msgstr "ΑÏξουσα" - #: audio_clock.cc:1083 msgid "SR" msgstr "" @@ -2095,11 +1251,6 @@ msgstr "ΜετÏητής" msgid "programming error: %1" msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: %1" -#: audio_clock.cc:1952 audio_clock.cc:1980 -#, fuzzy -msgid "programming error: %1 %2" -msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: %1" - #: audio_clock.cc:2048 editor.cc:236 export_timespan_selector.cc:98 msgid "Bars:Beats" msgstr "ΜπάÏες:ΚτÏποι" @@ -2108,26 +1259,11 @@ msgstr "ΜπάÏες:ΚτÏποι" msgid "Minutes:Seconds" msgstr "Λεπτά:ΔεÏτεÏα" -#: audio_clock.cc:2054 -#, fuzzy -msgid "Set From Playhead" -msgstr "Θέση playhead" - -#: audio_clock.cc:2055 -#, fuzzy -msgid "Locate to This Time" -msgstr "Τοποθέτηση στο Στίγμα" - #: audio_region_editor.cc:63 control_point_dialog.cc:49 rhythm_ferret.cc:125 #: rhythm_ferret.cc:130 rhythm_ferret.cc:135 msgid "dB" msgstr "" -#: audio_region_editor.cc:66 -#, fuzzy -msgid "Region gain:" -msgstr "Τέλη ΠεÏιοχών" - #: audio_region_editor.cc:76 export_format_dialog.cc:43 msgid "dBFS" msgstr "" @@ -2156,11 +1292,6 @@ msgstr "" msgid "automation event move" msgstr "μετακίνηση συμβάντος αυτοματισμοÏ" -#: automation_line.cc:462 automation_line.cc:483 -#, fuzzy -msgid "automation range move" -msgstr "έλξη διαστήματος αυτοματισμοÏ" - #: automation_line.cc:823 region_gain_line.cc:73 msgid "remove control point" msgstr "απαλοιφή σημείου ελέγχου" @@ -2169,11 +1300,6 @@ msgstr "απαλοιφή σημείου ελέγχου" msgid "Ignoring illegal points on AutomationLine \"%1\"" msgstr "" -#: automation_region_view.cc:160 automation_time_axis.cc:583 -#, fuzzy -msgid "add automation event" -msgstr "Ï€Ïόσθεση συμβάντος Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï ÏƒÎµ " - #: automation_time_axis.cc:146 msgid "automation state" msgstr "Κατάσταση αυτοματισμοÏ" @@ -2182,13 +1308,6 @@ msgstr "Κατάσταση αυτοματισμοÏ" msgid "hide track" msgstr "απόκÏυψη καναλιοÏ" -#: automation_time_axis.cc:255 automation_time_axis.cc:307 -#: automation_time_axis.cc:496 gain_meter.cc:195 generic_pluginui.cc:456 -#: generic_pluginui.cc:746 panner_ui.cc:150 -#, fuzzy -msgid "Automation|Manual" -msgstr "Αυτοματισμός" - #: automation_time_axis.cc:257 automation_time_axis.cc:318 #: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 #: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 @@ -2230,11 +1349,6 @@ msgstr "ΕκκαθάÏιση" msgid "State" msgstr "Κατάσταση" -#: automation_time_axis.cc:531 -#, fuzzy -msgid "Discrete" -msgstr "ΑποσÏνδεση" - #: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 #: editor.cc:1526 export_format_dialog.cc:476 msgid "Linear" @@ -2249,16 +1363,6 @@ msgstr "ΛειτουÏγία" msgid "Disassociate" msgstr "" -#: bundle_manager.cc:185 -#, fuzzy -msgid "Edit Bundle" -msgstr "ΛειτουÏγία Επεξ/σίας" - -#: bundle_manager.cc:200 -#, fuzzy -msgid "Direction:" -msgstr "ανάλυση" - #: bundle_manager.cc:205 bundle_manager.cc:209 mixer_strip.cc:158 #: mixer_strip.cc:2127 msgid "Input" @@ -2274,13 +1378,6 @@ msgstr "" msgid "Edit" msgstr "ΕπεξεÏγασία" -#: bundle_manager.cc:265 editor.cc:5493 editor_actions.cc:310 -#: editor_actions.cc:368 plugin_ui.cc:419 processor_box.cc:2229 -#: route_time_axis.cc:713 -#, fuzzy -msgid "Delete" -msgstr "διαγÏαφή" - #: bundle_manager.cc:271 bundle_manager.cc:439 editor_route_groups.cc:96 #: editor_routes.cc:202 midi_list_editor.cc:106 session_metadata_dialog.cc:525 msgid "Name" @@ -2294,16 +1391,6 @@ msgstr "Îέο" msgid "Bundle" msgstr "" -#: bundle_manager.cc:417 -#, fuzzy -msgid "Add Channel" -msgstr "Κανάλια" - -#: bundle_manager.cc:424 -#, fuzzy -msgid "Rename Channel" -msgstr "Μετονομασία Διαστήματος" - #: canvas-simpleline.c:111 canvas-simplerect.c:106 msgid "x1" msgstr "" @@ -2392,16 +1479,6 @@ msgstr "" msgid "color of fill" msgstr "" -#: configinfo.cc:28 -#, fuzzy -msgid "Build Configuration" -msgstr "Διάταξη" - -#: control_point_dialog.cc:33 -#, fuzzy -msgid "Control point" -msgstr "απαλοιφή σημείου ελέγχου" - #: control_point_dialog.cc:45 msgid "Value" msgstr "Αξία" @@ -2410,37 +1487,6 @@ msgstr "Αξία" msgid "Note" msgstr "" -#: edit_note_dialog.cc:45 -#, fuzzy -msgid "Set selected notes to this channel" -msgstr "απαλοιφή σημείου ελέγχου" - -#: edit_note_dialog.cc:46 -#, fuzzy -msgid "Set selected notes to this pitch" -msgstr "απαλοιφή σημείου ελέγχου" - -#: edit_note_dialog.cc:47 -#, fuzzy -msgid "Set selected notes to this velocity" -msgstr "απαλοιφή σημείου ελέγχου" - -#: edit_note_dialog.cc:49 -#, fuzzy -msgid "Set selected notes to this time" -msgstr "απαλοιφή σημείου ελέγχου" - -#: edit_note_dialog.cc:51 -#, fuzzy -msgid "Set selected notes to this length" -msgstr "απαλοιφή σημείου ελέγχου" - -#: edit_note_dialog.cc:58 midi_list_editor.cc:104 patch_change_dialog.cc:91 -#: step_entry.cc:393 -#, fuzzy -msgid "Channel" -msgstr "Κανάλια" - #: edit_note_dialog.cc:68 msgid "Pitch" msgstr "" @@ -2459,30 +1505,10 @@ msgstr "" msgid "Length" msgstr "" -#: edit_note_dialog.cc:165 -#, fuzzy -msgid "edit note" -msgstr "ΛειτουÏγία Επεξ/σίας" - #: editor.cc:137 editor.cc:3429 msgid "CD Frames" msgstr "" -#: editor.cc:138 editor.cc:3431 -#, fuzzy -msgid "Timecode Frames" -msgstr "Ηχητικά frames" - -#: editor.cc:139 editor.cc:3433 -#, fuzzy -msgid "Timecode Seconds" -msgstr "SMPTE ΔευτεÏόλεπτα" - -#: editor.cc:140 editor.cc:3435 -#, fuzzy -msgid "Timecode Minutes" -msgstr "SMPTE Λεπτά" - #: editor.cc:141 editor.cc:3437 msgid "Seconds" msgstr "ΔευτεÏόλεπτα" @@ -2491,73 +1517,18 @@ msgstr "ΔευτεÏόλεπτα" msgid "Minutes" msgstr "Λεπτά" -#: editor.cc:143 editor.cc:3413 quantize_dialog.cc:37 quantize_dialog.cc:141 -#, fuzzy -msgid "Beats/128" -msgstr "ΚτÏποι/8" - -#: editor.cc:144 editor.cc:3411 quantize_dialog.cc:38 quantize_dialog.cc:143 -#, fuzzy -msgid "Beats/64" -msgstr "ΚτÏποι/4" - #: editor.cc:145 editor.cc:3409 quantize_dialog.cc:39 quantize_dialog.cc:145 msgid "Beats/32" msgstr "ΚτÏποι/32" -#: editor.cc:146 editor.cc:3407 -#, fuzzy -msgid "Beats/28" -msgstr "ΚτÏποι/8" - -#: editor.cc:147 editor.cc:3405 -#, fuzzy -msgid "Beats/24" -msgstr "ΚτÏποι/4" - -#: editor.cc:148 editor.cc:3403 -#, fuzzy -msgid "Beats/20" -msgstr "ΚτÏποι/32" - #: editor.cc:149 editor.cc:3401 quantize_dialog.cc:40 quantize_dialog.cc:147 msgid "Beats/16" msgstr "ΚτÏποι/16" -#: editor.cc:150 editor.cc:3399 -#, fuzzy -msgid "Beats/14" -msgstr "ΚτÏποι/4" - -#: editor.cc:151 editor.cc:3397 -#, fuzzy -msgid "Beats/12" -msgstr "ΚτÏποι/16" - -#: editor.cc:152 editor.cc:3395 -#, fuzzy -msgid "Beats/10" -msgstr "ΚτÏποι/16" - #: editor.cc:153 editor.cc:3393 quantize_dialog.cc:41 quantize_dialog.cc:149 msgid "Beats/8" msgstr "ΚτÏποι/8" -#: editor.cc:154 editor.cc:3391 -#, fuzzy -msgid "Beats/7" -msgstr "ΚτÏποι/8" - -#: editor.cc:155 editor.cc:3389 -#, fuzzy -msgid "Beats/6" -msgstr "ΚτÏποι/16" - -#: editor.cc:156 editor.cc:3387 -#, fuzzy -msgid "Beats/5" -msgstr "ΚτÏποι/8" - #: editor.cc:157 editor.cc:3385 quantize_dialog.cc:42 quantize_dialog.cc:151 msgid "Beats/4" msgstr "ΚτÏποι/4" @@ -2566,11 +1537,6 @@ msgstr "ΚτÏποι/4" msgid "Beats/3" msgstr "ΚτÏποι/3" -#: editor.cc:159 editor.cc:3381 quantize_dialog.cc:44 quantize_dialog.cc:155 -#, fuzzy -msgid "Beats/2" -msgstr "ΚτÏποι/32" - #: editor.cc:160 editor.cc:3415 quantize_dialog.cc:45 quantize_dialog.cc:157 msgid "Beats" msgstr "ΚτÏποι" @@ -2620,11 +1586,6 @@ msgstr "" msgid "Marker" msgstr "Στίγμα" -#: editor.cc:180 editor.cc:189 editor.cc:3525 editor_actions.cc:469 -#, fuzzy -msgid "Mouse" -msgstr "ΠλκτÏ/Ποντίκι" - #: editor.cc:185 editor.cc:3517 mono_panner_editor.cc:42 msgid "Left" msgstr "ΑÏιστεÏÏŒ" @@ -2637,11 +1598,6 @@ msgstr "Δεξιό" msgid "Center" msgstr "ΚέντÏο" -#: editor.cc:190 editor.cc:3090 editor.cc:3527 -#, fuzzy -msgid "Edit point" -msgstr "ΕπεξεÏγασία με" - #: editor.cc:196 msgid "Mushy" msgstr "" @@ -2686,11 +1642,6 @@ msgstr "Στίγματα διαστημάτων" msgid "Loop/Punch Ranges" msgstr "Διαστήματα Loop/Punch" -#: editor.cc:244 editor_actions.cc:540 -#, fuzzy -msgid "CD Markers" -msgstr "Στίγμα" - #: editor.cc:245 msgid "Video Timeline" msgstr "" @@ -2703,36 +1654,10 @@ msgstr "λειτουÏγία" msgid "Regions" msgstr "ΠεÏιοχές" -#: editor.cc:543 -#, fuzzy -msgid "Tracks & Busses" -msgstr "Κανάλια/Δίαυλοι" - #: editor.cc:544 msgid "Snapshots" msgstr "Στιγμιότυπα" -#: editor.cc:545 -#, fuzzy -msgid "Track & Bus Groups" -msgstr "Κανάλια/Δίαυλοι" - -#: editor.cc:546 -#, fuzzy -msgid "Ranges & Marks" -msgstr "Στίγματα διαστημάτων" - -#: editor.cc:690 editor.cc:5345 rc_option_editor.cc:1294 -#: rc_option_editor.cc:1302 rc_option_editor.cc:1310 rc_option_editor.cc:1318 -#: rc_option_editor.cc:1335 rc_option_editor.cc:1337 rc_option_editor.cc:1345 -#: rc_option_editor.cc:1353 rc_option_editor.cc:1373 rc_option_editor.cc:1385 -#: rc_option_editor.cc:1387 rc_option_editor.cc:1395 rc_option_editor.cc:1403 -#: rc_option_editor.cc:1411 rc_option_editor.cc:1419 rc_option_editor.cc:1427 -#: rc_option_editor.cc:1442 rc_option_editor.cc:1446 -#, fuzzy -msgid "Editor" -msgstr "επεξεÏγαστής" - #: editor.cc:1215 editor.cc:1225 editor.cc:4440 editor_actions.cc:130 #: editor_actions.cc:1813 msgid "Loop" @@ -2794,46 +1719,6 @@ msgstr "Πάγωμα" msgid "Unfreeze" msgstr "Ξεπάγωμα" -#: editor.cc:1816 -#, fuzzy -msgid "Selected Regions" -msgstr "επιλογή πεÏιοχών" - -#: editor.cc:1852 editor_markers.cc:895 -#, fuzzy -msgid "Play Range" -msgstr "ΑναπαÏ/γή διαστήματος" - -#: editor.cc:1853 editor_markers.cc:898 -#, fuzzy -msgid "Loop Range" -msgstr "Loop διαστήματος" - -#: editor.cc:1862 editor_actions.cc:332 -#, fuzzy -msgid "Move Range Start to Previous Region Boundary" -msgstr "Playhead στην Ï€ÏοηγοÏμενη Region End" - -#: editor.cc:1869 editor_actions.cc:339 -#, fuzzy -msgid "Move Range Start to Next Region Boundary" -msgstr "Playhead στην επόμενη Region End" - -#: editor.cc:1876 editor_actions.cc:346 -#, fuzzy -msgid "Move Range End to Previous Region Boundary" -msgstr "Playhead στην Ï€ÏοηγοÏμενη Region End" - -#: editor.cc:1883 editor_actions.cc:353 -#, fuzzy -msgid "Move Range End to Next Region Boundary" -msgstr "Playhead στην επόμενη Region End" - -#: editor.cc:1889 -#, fuzzy -msgid "Convert to Region In-Place" -msgstr "Snap στο συγχÏονισμό πεÏιοχής" - #: editor.cc:1890 msgid "Convert to Region in Region List" msgstr "" @@ -2842,116 +1727,31 @@ msgstr "" msgid "Select All in Range" msgstr "Επιλογή όλων στο διάστημα" -#: editor.cc:1896 -#, fuzzy -msgid "Set Loop from Range" -msgstr "Θέση Loop Διαστήματος" - -#: editor.cc:1897 -#, fuzzy -msgid "Set Punch from Range" -msgstr "Θέση Punch Διαστήματος" - #: editor.cc:1900 msgid "Add Range Markers" msgstr "ΠÏόσθεση Στιγμάτων Διαστήματος" -#: editor.cc:1903 -#, fuzzy -msgid "Crop Region to Range" -msgstr "Κοπή ΠεÏιοχής κατά το διάστημα" - -#: editor.cc:1904 -#, fuzzy -msgid "Fill Range with Region" -msgstr "Γέμισμα πεÏιοχής με το διάστημα" - #: editor.cc:1905 editor_actions.cc:289 msgid "Duplicate Range" msgstr "ΑντιγÏαφή διαστήματος" -#: editor.cc:1908 -#, fuzzy -msgid "Consolidate Range" -msgstr "ΑντιγÏαφή διαστήματος" - #: editor.cc:1909 msgid "Consolidate Range With Processing" msgstr "" -#: editor.cc:1910 -#, fuzzy -msgid "Bounce Range to Region List" -msgstr "ΔιαχωÏισμός διαστήματος στη λίστα πεÏιοχής" - #: editor.cc:1911 msgid "Bounce Range to Region List With Processing" msgstr "" -#: editor.cc:1912 editor_markers.cc:908 -#, fuzzy -msgid "Export Range..." -msgstr "Εξαγωγή διαστήματος" - -#: editor.cc:1927 editor.cc:2008 editor_actions.cc:281 -#, fuzzy -msgid "Play From Edit Point" -msgstr "ΑναπαÏ/γή από ΚέÏσοÏα ΕπεξεÏγασίας" - -#: editor.cc:1928 editor.cc:2009 -#, fuzzy -msgid "Play From Start" -msgstr "ΑναπαÏ/γή από αÏχή" - -#: editor.cc:1929 -#, fuzzy -msgid "Play Region" -msgstr "ΑναπαÏ/γή ΠεÏιοχής" - #: editor.cc:1931 msgid "Loop Region" msgstr "Loop ΠεÏιοχής" -#: editor.cc:1941 editor.cc:2018 -#, fuzzy -msgid "Select All in Track" -msgstr "Επιλογή όλων στο κανάλι" - #: editor.cc:1942 editor.cc:2019 editor_actions.cc:185 #: export_timespan_selector.cc:53 processor_box.cc:2237 msgid "Select All" msgstr "Επιλογή όλων" -#: editor.cc:1943 editor.cc:2020 -#, fuzzy -msgid "Invert Selection in Track" -msgstr "ΑντιστÏοφή επιλογής στο κανάλι" - -#: editor.cc:1944 editor.cc:2021 editor_actions.cc:187 -#, fuzzy -msgid "Invert Selection" -msgstr "ΑντιστÏοφή επιλογής" - -#: editor.cc:1946 -#, fuzzy -msgid "Set Range to Loop Range" -msgstr "Επιλογή διαστήματος κατά το loop" - -#: editor.cc:1947 -#, fuzzy -msgid "Set Range to Punch Range" -msgstr "Επιλογή διαστήματος κατά το punch" - -#: editor.cc:1949 editor.cc:2023 editor_actions.cc:188 -#, fuzzy -msgid "Select All After Edit Point" -msgstr "Επιλογή όλων μετά το ΚεÏσ.ΕπεξεÏγασίας" - -#: editor.cc:1950 editor.cc:2024 editor_actions.cc:189 -#, fuzzy -msgid "Select All Before Edit Point" -msgstr "Επιλογή όλων Ï€Ïίν τον Edit Cursor" - #: editor.cc:1951 editor.cc:2025 msgid "Select All After Playhead" msgstr "Επιλογή όλων μετά την playhead" @@ -2960,16 +1760,6 @@ msgstr "Επιλογή όλων μετά την playhead" msgid "Select All Before Playhead" msgstr "Επιλογή όλων Ï€Ïιν την playhead" -#: editor.cc:1953 -#, fuzzy -msgid "Select All Between Playhead and Edit Point" -msgstr "Επιλογή όλων Ï€Ïιν την playhead" - -#: editor.cc:1954 -#, fuzzy -msgid "Select All Within Playhead and Edit Point" -msgstr "Επιλογή όλων μετά την playhead" - #: editor.cc:1955 msgid "Select Range Between Playhead and Edit Point" msgstr "" @@ -3002,31 +1792,6 @@ msgstr "ΕυθυγÏάμμιση σχετικών" msgid "Insert Selected Region" msgstr "Εισαγωγή επιλεγμένης πεÏιοχής" -#: editor.cc:1980 -#, fuzzy -msgid "Insert Existing Media" -msgstr "Εισαγωγή ΥπάÏχοντος Audio" - -#: editor.cc:1989 editor.cc:2045 -#, fuzzy -msgid "Nudge Entire Track Later" -msgstr "ÎÏξη ολόκληÏου ÎºÎ±Î½Î±Î»Î¹Î¿Ï ÎµÎ¼Ï€Ïός" - -#: editor.cc:1990 editor.cc:2046 -#, fuzzy -msgid "Nudge Track After Edit Point Later" -msgstr "ÎÏξη ÎºÎ±Î½Î±Î»Î¹Î¿Ï Î¼ÎµÏ„Î¬ του κέÏσοÏα επεξεÏγασίας εμπÏός" - -#: editor.cc:1991 editor.cc:2047 -#, fuzzy -msgid "Nudge Entire Track Earlier" -msgstr "ÎÏξη ολόκληÏου ÎºÎ±Î½Î±Î»Î¹Î¿Ï ÎµÎ¼Ï€Ïός" - -#: editor.cc:1992 editor.cc:2048 -#, fuzzy -msgid "Nudge Track After Edit Point Earlier" -msgstr "ÎÏξη ÎºÎ±Î½Î±Î»Î¹Î¿Ï Î¼ÎµÏ„Î¬ του κέÏσοÏα επεξεÏγασίας εμπÏός" - #: editor.cc:1994 editor.cc:2050 msgid "Nudge" msgstr "ÎÏξη" @@ -3035,40 +1800,10 @@ msgstr "ÎÏξη" msgid "Smart Mode (add Range functions to Object mode)" msgstr "" -#: editor.cc:3071 -#, fuzzy -msgid "Object Mode (select/move Objects)" -msgstr "επιλογή/μετακίνηση διαστημάτων" - -#: editor.cc:3072 -#, fuzzy -msgid "Range Mode (select/move Ranges)" -msgstr "επιλογή/μετακίνηση διαστημάτων" - #: editor.cc:3073 msgid "Draw/Edit MIDI Notes" msgstr "" -#: editor.cc:3074 -#, fuzzy -msgid "Draw Region Gain" -msgstr "Έλξη αντιγÏαφής πεÏιοχής" - -#: editor.cc:3075 -#, fuzzy -msgid "Select Zoom Range" -msgstr "επιλογή διαστήματος zoom" - -#: editor.cc:3076 -#, fuzzy -msgid "Stretch/Shrink Regions and MIDI Notes" -msgstr "μεγέθυνση/σμίκÏυνση πεÏιοχών" - -#: editor.cc:3077 -#, fuzzy -msgid "Listen to Specific Regions" -msgstr "ακÏόαση συγκεκÏιμένων πεÏιοχών" - #: editor.cc:3078 msgid "Note Level Editing" msgstr "" @@ -3079,16 +1814,6 @@ msgid "" "Context-click for other operations" msgstr "" -#: editor.cc:3080 -#, fuzzy -msgid "Nudge Region/Selection Later" -msgstr "ÎÏξη πεÏιοχής/επιλογής εμπÏός" - -#: editor.cc:3081 -#, fuzzy -msgid "Nudge Region/Selection Earlier" -msgstr "ÎÏξη πεÏιοχής/επιλογής εμπÏός" - #: editor.cc:3082 editor_actions.cc:242 msgid "Zoom In" msgstr "" @@ -3097,35 +1822,10 @@ msgstr "" msgid "Zoom Out" msgstr "" -#: editor.cc:3084 editor_actions.cc:243 -#, fuzzy -msgid "Zoom to Session" -msgstr "Zoom στη συνεδÏία" - -#: editor.cc:3085 -#, fuzzy -msgid "Zoom focus" -msgstr "Εστίαση Zoom" - -#: editor.cc:3086 -#, fuzzy -msgid "Expand Tracks" -msgstr "ως Κανάλια" - -#: editor.cc:3087 -#, fuzzy -msgid "Shrink Tracks" -msgstr "Άλλα κανάλια" - #: editor.cc:3088 msgid "Snap/Grid Units" msgstr "" -#: editor.cc:3089 -#, fuzzy -msgid "Snap/Grid Mode" -msgstr "ΛειτουÏγία Έλξεως" - #: editor.cc:3091 msgid "Edit Mode" msgstr "ΛειτουÏγία Επεξ/σίας" @@ -3140,16 +1840,6 @@ msgstr "" msgid "malformed URL passed to drag-n-drop code" msgstr "" -#: editor.cc:3256 editor_actions.cc:291 -#, fuzzy -msgid "Command|Undo" -msgstr "Σχόλια" - -#: editor.cc:3258 -#, fuzzy -msgid "Command|Undo (%1)" -msgstr "Undo (%1)" - #: editor.cc:3265 editor_actions.cc:292 msgid "Redo" msgstr "Redo" @@ -3166,34 +1856,6 @@ msgstr "ΑντιγÏαφή" msgid "Number of duplications:" msgstr "" -#: editor.cc:3864 -#, fuzzy -msgid "Playlist Deletion" -msgstr "ΑναπαÏ/γή επιλογής" - -#: editor.cc:3865 -#, fuzzy -msgid "" -"Playlist %1 is currently unused.\n" -"If it is kept, its audio files will not be cleaned.\n" -"If it is deleted, audio files used by it alone will be cleaned." -msgstr "" -"Η Λίστα ΑναπαÏ/γής %1 Ï€Ïος το παÏόν δε χÏησιμοποιείται.\n" -"Εάν μείνει έτσι, κανένα ηχητικό αÏχείο που χÏησιμοποιείται απο αυτήν δεν θα " -"διαγÏαφεί.\n" -"Εάν διαγÏαφεί, τα ηχητικά αÏχεία που χÏησιμοποιοÏνται μόνο απ'αυτήν θα " -"διαγÏαφοÏν." - -#: editor.cc:3875 -#, fuzzy -msgid "Delete Playlist" -msgstr "ΔιαγÏαφή λίστας αναπαÏ/γής" - -#: editor.cc:3876 -#, fuzzy -msgid "Keep Playlist" -msgstr "ΔιατήÏηση λίστας αναπαÏ/γής" - #: editor.cc:3877 editor_audio_import.cc:581 editor_ops.cc:5856 #: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 msgid "Cancel" @@ -3215,11 +1877,6 @@ msgstr "εκκαθάÏιση playlists" msgid "Please wait while %1 loads visual data." msgstr "" -#: editor.cc:5492 editor_markers.cc:940 panner_ui.cc:393 processor_box.cc:2253 -#, fuzzy -msgid "Edit..." -msgstr "ΕπεξεÏγασία" - #: editor_actions.cc:88 msgid "Autoconnect" msgstr "ΑυτόματηΣÏνδεση" @@ -3228,26 +1885,6 @@ msgstr "ΑυτόματηΣÏνδεση" msgid "Crossfades" msgstr "" -#: editor_actions.cc:91 -#, fuzzy -msgid "Move Selected Marker" -msgstr "μετακίνηση στίγματος μετÏητή" - -#: editor_actions.cc:92 -#, fuzzy -msgid "Select Range Operations" -msgstr "επιλογή ενεÏγειών διαστήματος" - -#: editor_actions.cc:93 -#, fuzzy -msgid "Select Regions" -msgstr "επιλογή πεÏιοχών" - -#: editor_actions.cc:94 -#, fuzzy -msgid "Edit Point" -msgstr "ΕπεξεÏγασία με" - #: editor_actions.cc:95 msgid "Fade" msgstr "" @@ -3256,11 +1893,6 @@ msgstr "" msgid "Latch" msgstr "" -#: editor_actions.cc:97 editor_regions.cc:111 region_editor.cc:46 -#, fuzzy -msgid "Region" -msgstr "ΠεÏιοχές" - #: editor_actions.cc:98 msgid "Layering" msgstr "ΣτÏωματοποίηση" @@ -3275,23 +1907,6 @@ msgstr "Θέση" msgid "Trim" msgstr "Ισοστάθμιση" -#: editor_actions.cc:102 editor_actions.cc:122 route_group_dialog.cc:40 -#, fuzzy -msgid "Gain" -msgstr "ΕÏγαλείο Gain" - -#: editor_actions.cc:103 editor_actions.cc:538 -#, fuzzy -msgid "Ranges" -msgstr "Διάστημα" - -#: editor_actions.cc:104 editor_actions.cc:1790 session_option_editor.cc:145 -#: session_option_editor.cc:147 session_option_editor.cc:156 -#: session_option_editor.cc:163 -#, fuzzy -msgid "Fades" -msgstr "Fade In" - #: editor_actions.cc:107 msgid "Link" msgstr "" @@ -3300,16 +1915,6 @@ msgstr "" msgid "Zoom Focus" msgstr "Εστίαση Zoom" -#: editor_actions.cc:109 -#, fuzzy -msgid "Locate to Markers" -msgstr "Τοποθέτηση στο Στίγμα" - -#: editor_actions.cc:110 editor_actions.cc:539 -#, fuzzy -msgid "Markers" -msgstr "Στίγμα" - #: editor_actions.cc:111 msgid "Meter falloff" msgstr "" @@ -3318,31 +1923,11 @@ msgstr "" msgid "Meter hold" msgstr "ΠαÏση ΜετÏητή" -#: editor_actions.cc:113 session_option_editor.cc:234 -#, fuzzy -msgid "MIDI Options" -msgstr "Επιλογές" - -#: editor_actions.cc:114 -#, fuzzy -msgid "Misc Options" -msgstr "Επιλογές" - #: editor_actions.cc:115 rc_option_editor.cc:1460 route_group_dialog.cc:48 #: session_option_editor.cc:218 session_option_editor.cc:225 msgid "Monitoring" msgstr "" -#: editor_actions.cc:116 -#, fuzzy -msgid "Active Mark" -msgstr "ΕνεÏγό" - -#: editor_actions.cc:119 -#, fuzzy -msgid "Primary Clock" -msgstr "ΠÏωτεÏον ωÏολόγιον" - #: editor_actions.cc:120 msgid "Pullup / Pulldown" msgstr "" @@ -3355,36 +1940,11 @@ msgstr "ΕνέÏγειες ΠεÏιοχών" msgid "Rulers" msgstr "" -#: editor_actions.cc:124 -#, fuzzy -msgid "Views" -msgstr "Οψη" - -#: editor_actions.cc:125 -#, fuzzy -msgid "Scroll" -msgstr "ΚÏλιση εμπÏός" - -#: editor_actions.cc:126 -#, fuzzy -msgid "Secondary Clock" -msgstr "ΔευτεÏέυον ωÏολόγιον" - -#: editor_actions.cc:129 editor_actions.cc:297 -#, fuzzy -msgid "Separate" -msgstr "διαχωÏισμός" - #: editor_actions.cc:132 mixer_strip.cc:1914 route_time_axis.cc:208 #: route_time_axis.cc:2417 msgid "Solo" msgstr "Σόλο" -#: editor_actions.cc:133 -#, fuzzy -msgid "Subframes" -msgstr "Frames" - #: editor_actions.cc:136 msgid "Timecode fps" msgstr "" @@ -3401,11 +1961,6 @@ msgstr "ΕÏγαλεία" msgid "View" msgstr "Οψη" -#: editor_actions.cc:142 -#, fuzzy -msgid "Zoom" -msgstr "Zoom in" - #: editor_actions.cc:148 msgid "Break drag or deselect all" msgstr "" @@ -3414,31 +1969,6 @@ msgstr "" msgid "Show Editor Mixer" msgstr "Ανάδειξη Μίκτη του Editor" -#: editor_actions.cc:151 -#, fuzzy -msgid "Show Editor List" -msgstr "Ανάδειξη Editor" - -#: editor_actions.cc:153 -#, fuzzy -msgid "Playhead to Next Region Boundary" -msgstr "Playhead στην επόμενη Region End" - -#: editor_actions.cc:154 -#, fuzzy -msgid "Playhead to Next Region Boundary (No Track Selection)" -msgstr "Playhead στην επόμενη Region Start" - -#: editor_actions.cc:155 -#, fuzzy -msgid "Playhead to Previous Region Boundary" -msgstr "Playhead στην Ï€ÏοηγοÏμενη Region End" - -#: editor_actions.cc:156 -#, fuzzy -msgid "Playhead to Previous Region Boundary (No Track Selection)" -msgstr "Playhead στην Ï€ÏοηγοÏμενη Region Start" - #: editor_actions.cc:158 msgid "Playhead to Next Region Start" msgstr "Playhead στην επόμενη Region Start" @@ -3463,65 +1993,10 @@ msgstr "Playhead στην Ï€ÏοηγοÏμενη Region End" msgid "Playhead to Previous Region Sync" msgstr "Playhead στην Ï€ÏοηγοÏμενη Region Sync" -#: editor_actions.cc:166 -#, fuzzy -msgid "To Next Region Boundary" -msgstr "Snap στο ÎŒÏιο πεÏιοχης" - #: editor_actions.cc:167 msgid "To Next Region Boundary (No Track Selection)" msgstr "" -#: editor_actions.cc:168 -#, fuzzy -msgid "To Previous Region Boundary" -msgstr "Playhead στην Ï€ÏοηγοÏμενη Region End" - -#: editor_actions.cc:169 -#, fuzzy -msgid "To Previous Region Boundary (No Track Selection)" -msgstr "Playhead στην Ï€ÏοηγοÏμενη Region Start" - -#: editor_actions.cc:171 -#, fuzzy -msgid "To Next Region Start" -msgstr "Playhead στην επόμενη Region Start" - -#: editor_actions.cc:172 -#, fuzzy -msgid "To Next Region End" -msgstr "Playhead στην επόμενη Region End" - -#: editor_actions.cc:173 -#, fuzzy -msgid "To Next Region Sync" -msgstr "Playhead στην επόμενη Region Sync" - -#: editor_actions.cc:175 -#, fuzzy -msgid "To Previous Region Start" -msgstr "Playhead στην Ï€ÏοηγοÏμενη Region Start" - -#: editor_actions.cc:176 -#, fuzzy -msgid "To Previous Region End" -msgstr "Playhead στην Ï€ÏοηγοÏμενη Region End" - -#: editor_actions.cc:177 -#, fuzzy -msgid "To Previous Region Sync" -msgstr "Playhead στην Ï€ÏοηγοÏμενη Region Sync" - -#: editor_actions.cc:179 -#, fuzzy -msgid "To Range Start" -msgstr "Playhead στην ΑÏχή Διαστήματος" - -#: editor_actions.cc:180 -#, fuzzy -msgid "To Range End" -msgstr "Η playhead στο τέλος του διαστήματος" - #: editor_actions.cc:182 msgid "Playhead to Range Start" msgstr "Playhead στην ΑÏχή Διαστήματος" @@ -3534,30 +2009,10 @@ msgstr "Η playhead στο τέλος του διαστήματος" msgid "Deselect All" msgstr "Αποεπιλογή όλων" -#: editor_actions.cc:191 -#, fuzzy -msgid "Select All Overlapping Edit Range" -msgstr "Επιλογή όλων στο διάστημα" - -#: editor_actions.cc:192 -#, fuzzy -msgid "Select All Inside Edit Range" -msgstr "Επιλογή όλων στο διάστημα" - -#: editor_actions.cc:194 -#, fuzzy -msgid "Select Edit Range" -msgstr "Επιλογή όλων στο διάστημα" - #: editor_actions.cc:196 msgid "Select All in Punch Range" msgstr "Επιλογή όλων μέσα στο punch ÏŒÏιο" -#: editor_actions.cc:197 -#, fuzzy -msgid "Select All in Loop Range" -msgstr "Επιλογή διαστήματος loop" - #: editor_actions.cc:199 msgid "Select Next Track or Bus" msgstr "" @@ -3566,119 +2021,14 @@ msgstr "" msgid "Select Previous Track or Bus" msgstr "" -#: editor_actions.cc:202 -#, fuzzy -msgid "Toggle Record Enable" -msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 1" - -#: editor_actions.cc:204 -#, fuzzy -msgid "Toggle Solo" -msgstr "ΕγγÏαφή" - -#: editor_actions.cc:206 -#, fuzzy -msgid "Toggle Mute" -msgstr "ΕπανενεÏγοποίηση γÏαφήματος" - -#: editor_actions.cc:208 -#, fuzzy -msgid "Toggle Solo Isolate" -msgstr "ΕπανενεÏγοποίηση γÏαφήματος" - -#: editor_actions.cc:213 -#, fuzzy -msgid "Save View %1" -msgstr "Αποθήκευση και %1" - #: editor_actions.cc:219 msgid "Goto View %1" msgstr "" -#: editor_actions.cc:225 -#, fuzzy -msgid "Locate to Mark %1" -msgstr "Τοποθέτηση στο Στίγμα" - -#: editor_actions.cc:229 -#, fuzzy -msgid "Jump to Next Mark" -msgstr "Μετάθεση εμπÏός στο Σημάδι" - -#: editor_actions.cc:230 -#, fuzzy -msgid "Jump to Previous Mark" -msgstr "ισοστάθμιση Ï€Ïος σÏνταξη" - -#: editor_actions.cc:231 -#, fuzzy -msgid "Add Mark from Playhead" -msgstr "Θέση Στίγματος από playhead" - -#: editor_actions.cc:233 -#, fuzzy -msgid "Nudge Next Later" -msgstr "νÏξη επόμενη εμπÏός" - -#: editor_actions.cc:234 -#, fuzzy -msgid "Nudge Next Earlier" -msgstr "νÏξη επόμενη εμπÏός" - -#: editor_actions.cc:236 -#, fuzzy -msgid "Nudge Playhead Forward" -msgstr "Playhead εμπÏός" - -#: editor_actions.cc:237 -#, fuzzy -msgid "Nudge Playhead Backward" -msgstr "Playhead πίσω" - -#: editor_actions.cc:238 -#, fuzzy -msgid "Playhead To Next Grid" -msgstr "Playhead στην επόμενη Region End" - -#: editor_actions.cc:239 -#, fuzzy -msgid "Playhead To Previous Grid" -msgstr "Playhead στην Ï€ÏοηγοÏμενη Region End" - -#: editor_actions.cc:244 -#, fuzzy -msgid "Zoom to Region" -msgstr "Zoom στη συνεδÏία" - #: editor_actions.cc:245 msgid "Zoom to Region (Width and Height)" msgstr "" -#: editor_actions.cc:246 -#, fuzzy -msgid "Toggle Zoom State" -msgstr "ΕπανενεÏγοποίηση γÏαφήματος" - -#: editor_actions.cc:248 -#, fuzzy -msgid "Expand Track Height" -msgstr "ως Κανάλια" - -#: editor_actions.cc:249 -#, fuzzy -msgid "Shrink Track Height" -msgstr "Άλλα κανάλια" - -#: editor_actions.cc:251 -#, fuzzy -msgid "Move Selected Tracks Up" -msgstr "Μετακίνηση Καναλιών επάνω" - -#: editor_actions.cc:253 -#, fuzzy -msgid "Move Selected Tracks Down" -msgstr "Μετάθεση Καναλιών κάτω" - #: editor_actions.cc:256 msgid "Scroll Tracks Up" msgstr "ΚÏλιση Καναλιών επάνω" @@ -3707,11 +2057,6 @@ msgstr "ΚÏλιση εμπÏός" msgid "Center Playhead" msgstr "Playhead στο κέντÏο" -#: editor_actions.cc:268 -#, fuzzy -msgid "Center Edit Point" -msgstr "ΑÏιθμός Καναλιών" - #: editor_actions.cc:270 msgid "Playhead Forward" msgstr "Playhead εμπÏός" @@ -3720,79 +2065,14 @@ msgstr "Playhead εμπÏός" msgid "Playhead Backward" msgstr "Playhead πίσω" -#: editor_actions.cc:273 -#, fuzzy -msgid "Playhead to Active Mark" -msgstr "Playhead στην ΑÏχή Διαστήματος" - -#: editor_actions.cc:274 -#, fuzzy -msgid "Active Mark to Playhead" -msgstr "Θέση Στίγματος από playhead" - -#: editor_actions.cc:276 -#, fuzzy -msgid "Set Loop from Edit Range" -msgstr "Θέση Loop Διαστήματος" - -#: editor_actions.cc:277 -#, fuzzy -msgid "Set Punch from Edit Range" -msgstr "Θέση Punch Διαστήματος" - -#: editor_actions.cc:280 -#, fuzzy -msgid "Play Selected Regions" -msgstr "επιλογή πεÏιοχών" - -#: editor_actions.cc:282 -#, fuzzy -msgid "Play from Edit Point and Return" -msgstr "ΑναπαÏ/γή από ΚέÏσοÏα ΕπεξεÏγασίας" - -#: editor_actions.cc:284 -#, fuzzy -msgid "Play Edit Range" -msgstr "Επαναληπτική αναπαÏ/γή διαστήματος" - -#: editor_actions.cc:286 -#, fuzzy -msgid "Playhead to Mouse" -msgstr "Playhead στο ΚέÏσ.Επεξ." - -#: editor_actions.cc:287 -#, fuzzy -msgid "Active Marker to Mouse" -msgstr "ΑκÏόαση στο ποντίκι" - -#: editor_actions.cc:294 -#, fuzzy -msgid "Export Audio" -msgstr "Εξαγωγή ΣυνεδÏίας" - #: editor_actions.cc:295 export_dialog.cc:406 msgid "Export Range" msgstr "Εξαγωγή διαστήματος" -#: editor_actions.cc:300 -#, fuzzy -msgid "Separate Using Punch Range" -msgstr "ΔιαχωÏισμός πεÏιοχών στο διάστημα" - -#: editor_actions.cc:303 -#, fuzzy -msgid "Separate Using Loop Range" -msgstr "ΔιαχωÏισμός πεÏιοχών στο διάστημα" - #: editor_actions.cc:306 editor_actions.cc:323 msgid "Crop" msgstr "" -#: editor_actions.cc:315 -#, fuzzy -msgid "Set Tempo from Edit Range = Bar" -msgstr "Θέση από διάστημα" - #: editor_actions.cc:317 msgid "Log" msgstr "" @@ -3813,46 +2093,16 @@ msgstr "ΕναÏκτήÏιο διάστημα" msgid "Finish Range" msgstr "ΟλοκλήÏωση Διαστήματος" -#: editor_actions.cc:327 -#, fuzzy -msgid "Finish Add Range" -msgstr "ΟλοκλήÏωση Ï€Ïόσθεσης Διαστήματος" - #: editor_actions.cc:357 msgid "Follow Playhead" msgstr "Ακολουθώντας την playhead" -#: editor_actions.cc:358 -#, fuzzy -msgid "Remove Last Capture" -msgstr "Απαλοιφή τελευταίας λήψης" - -#: editor_actions.cc:360 -#, fuzzy -msgid "Stationary Playhead" -msgstr "Θέση playhead" - -#: editor_actions.cc:362 insert_time_dialog.cc:32 -#, fuzzy -msgid "Insert Time" -msgstr "ΠÏοσθήκη πεÏιοχής" - -#: editor_actions.cc:365 -#, fuzzy -msgid "Toggle Active" -msgstr "ΕπανενεÏγοποίηση γÏαφήματος" - #: editor_actions.cc:370 editor_actions.cc:1716 editor_markers.cc:876 #: editor_markers.cc:941 editor_snapshots.cc:121 mixer_strip.cc:1495 #: route_time_axis.cc:710 msgid "Remove" msgstr "Απαλοιφή" -#: editor_actions.cc:374 -#, fuzzy -msgid "Fit Selected Tracks" -msgstr "θέση επιλεγμένης οπτικής καναλιοÏ" - #: editor_actions.cc:376 time_axis_view.cc:1302 msgid "Largest" msgstr "Μέγιστο" @@ -3889,21 +2139,6 @@ msgstr "Εστίαση Zoom κέντÏο" msgid "Zoom Focus Playhead" msgstr "Εστίαση Zoom στην playhead" -#: editor_actions.cc:401 -#, fuzzy -msgid "Zoom Focus Mouse" -msgstr "Εστίαση Zoom αÏιστεÏά" - -#: editor_actions.cc:402 -#, fuzzy -msgid "Zoom Focus Edit Point" -msgstr "Εστίαση Zoom ΚεÏσ.Επεξ." - -#: editor_actions.cc:404 -#, fuzzy -msgid "Next Zoom Focus" -msgstr "Εστίαση Zoom" - #: editor_actions.cc:410 msgid "Smart Object Mode" msgstr "" @@ -3920,11 +2155,6 @@ msgstr "ΕÏγαλείο Object" msgid "Range Tool" msgstr "ΕÏγαλείο Διαστήματος" -#: editor_actions.cc:429 -#, fuzzy -msgid "Note Drawing Tool" -msgstr "ΕÏγαλείο Gain" - #: editor_actions.cc:435 msgid "Gain Tool" msgstr "ΕÏγαλείο Gain" @@ -3933,30 +2163,10 @@ msgstr "ΕÏγαλείο Gain" msgid "Zoom Tool" msgstr "ΕÏγαλείο Zoom" -#: editor_actions.cc:447 -#, fuzzy -msgid "Audition Tool" -msgstr "ΑκÏόαση" - -#: editor_actions.cc:453 -#, fuzzy -msgid "Time FX Tool" -msgstr "ΕÏγαλείο Timefx" - #: editor_actions.cc:459 msgid "Step Mouse Mode" msgstr "" -#: editor_actions.cc:461 -#, fuzzy -msgid "Edit MIDI" -msgstr "ΛειτουÏγία Επεξ/σίας" - -#: editor_actions.cc:472 -#, fuzzy -msgid "Change Edit Point" -msgstr "ΑÏιθμός Καναλιών" - #: editor_actions.cc:473 msgid "Change Edit Point Including Marker" msgstr "" @@ -3974,34 +2184,14 @@ msgstr "Ολίσθηση" msgid "Lock" msgstr "Κλείδωμα" -#: editor_actions.cc:479 -#, fuzzy -msgid "Toggle Edit Mode" -msgstr "ΛειτουÏγία Επεξ/σίας" - -#: editor_actions.cc:481 -#, fuzzy -msgid "Snap to" -msgstr "Έλξη σε" - #: editor_actions.cc:482 msgid "Snap Mode" msgstr "ΛειτουÏγία Έλξεως" -#: editor_actions.cc:489 -#, fuzzy -msgid "Next Snap Mode" -msgstr "ΛειτουÏγία Έλξεως" - #: editor_actions.cc:490 msgid "Next Snap Choice" msgstr "" -#: editor_actions.cc:491 -#, fuzzy -msgid "Next Musical Snap Choice" -msgstr "ΛειτουÏγία Έλξεως" - #: editor_actions.cc:492 msgid "Previous Snap Choice" msgstr "" @@ -4010,204 +2200,14 @@ msgstr "" msgid "Previous Musical Snap Choice" msgstr "" -#: editor_actions.cc:498 -#, fuzzy -msgid "Snap to CD Frame" -msgstr "Snap σε frame" - -#: editor_actions.cc:499 -#, fuzzy -msgid "Snap to Timecode Frame" -msgstr "Snap σε cd frame" - -#: editor_actions.cc:500 -#, fuzzy -msgid "Snap to Timecode Seconds" -msgstr "Snap σε ΔευτεÏόλεπτα" - -#: editor_actions.cc:501 -#, fuzzy -msgid "Snap to Timecode Minutes" -msgstr "Snap σε λεπτά" - -#: editor_actions.cc:502 -#, fuzzy -msgid "Snap to Seconds" -msgstr "Snap σε ΔευτεÏόλεπτα" - -#: editor_actions.cc:503 -#, fuzzy -msgid "Snap to Minutes" -msgstr "Snap σε λεπτά" - -#: editor_actions.cc:505 -#, fuzzy -msgid "Snap to One Twenty Eighths" -msgstr "Snap σε όγδοα" - -#: editor_actions.cc:506 -#, fuzzy -msgid "Snap to Sixty Fourths" -msgstr "Snap στο κέÏσοÏα επεξεÏγασίας" - -#: editor_actions.cc:507 -#, fuzzy -msgid "Snap to Thirty Seconds" -msgstr "Snap σε Ï„Ïιακοστα-δεÏτεÏα (32)" - -#: editor_actions.cc:508 -#, fuzzy -msgid "Snap to Twenty Eighths" -msgstr "Snap σε όγδοα" - -#: editor_actions.cc:509 -#, fuzzy -msgid "Snap to Twenty Fourths" -msgstr "Snap στο κέÏσοÏα επεξεÏγασίας" - -#: editor_actions.cc:510 -#, fuzzy -msgid "Snap to Twentieths" -msgstr "Snap σε όγδοα" - -#: editor_actions.cc:511 -#, fuzzy -msgid "Snap to Sixteenths" -msgstr "Snap σε δέκατο-έκτο" - -#: editor_actions.cc:512 -#, fuzzy -msgid "Snap to Fourteenths" -msgstr "Snap σε τέταÏτα" - -#: editor_actions.cc:513 -#, fuzzy -msgid "Snap to Twelfths" -msgstr "Snap σε όγδοα" - -#: editor_actions.cc:514 -#, fuzzy -msgid "Snap to Tenths" -msgstr "Snap σε όγδοα" - -#: editor_actions.cc:515 -#, fuzzy -msgid "Snap to Eighths" -msgstr "Snap σε όγδοα" - -#: editor_actions.cc:516 -#, fuzzy -msgid "Snap to Sevenths" -msgstr "Snap σε όγδοα" - -#: editor_actions.cc:517 -#, fuzzy -msgid "Snap to Sixths" -msgstr "Snap σε όγδοα" - -#: editor_actions.cc:518 -#, fuzzy -msgid "Snap to Fifths" -msgstr "Snap σε όγδοα" - -#: editor_actions.cc:519 -#, fuzzy -msgid "Snap to Quarters" -msgstr "Snap σε τέταÏτα" - -#: editor_actions.cc:520 -#, fuzzy -msgid "Snap to Thirds" -msgstr "Snap σε Ï„Ïίτα" - -#: editor_actions.cc:521 -#, fuzzy -msgid "Snap to Halves" -msgstr "Snap σε frame" - -#: editor_actions.cc:523 -#, fuzzy -msgid "Snap to Beat" -msgstr "Snap σε beat" - -#: editor_actions.cc:524 -#, fuzzy -msgid "Snap to Bar" -msgstr "Snap σε μπάÏες" - -#: editor_actions.cc:525 -#, fuzzy -msgid "Snap to Mark" -msgstr "Snap σε στίγματα" - -#: editor_actions.cc:526 -#, fuzzy -msgid "Snap to Region Start" -msgstr "Snap στην αÏχή πεÏιοχής" - -#: editor_actions.cc:527 -#, fuzzy -msgid "Snap to Region End" -msgstr "Snap στο Τέλος ΠεÏιοχης" - -#: editor_actions.cc:528 -#, fuzzy -msgid "Snap to Region Sync" -msgstr "Snap στο συγχÏονισμό πεÏιοχής" - -#: editor_actions.cc:529 -#, fuzzy -msgid "Snap to Region Boundary" -msgstr "Snap στο ÎŒÏιο πεÏιοχης" - -#: editor_actions.cc:531 -#, fuzzy -msgid "Show Marker Lines" -msgstr "Ανάδειξη γÏαμμών μετÏήσεων" - -#: editor_actions.cc:541 -#, fuzzy -msgid "Loop/Punch" -msgstr "Διαστήματα Loop/Punch" - -#: editor_actions.cc:545 -#, fuzzy -msgid "Min:Sec" -msgstr "Λεπ:ΔεÏÏ„" - -#: editor_actions.cc:547 editor_actions.cc:550 -#, fuzzy -msgid "Video Monitor" -msgstr "Software Monitoring" - #: editor_actions.cc:549 rc_option_editor.cc:1842 msgid "Video" msgstr "" -#: editor_actions.cc:552 -#, fuzzy -msgid "Always on Top" -msgstr "ΑνόÏθωση στο ανώτατο στÏώμα" - -#: editor_actions.cc:554 -#, fuzzy -msgid "Frame number" -msgstr "μετονομασία στίγματος" - -#: editor_actions.cc:555 -#, fuzzy -msgid "Timecode Background" -msgstr "SMPTE ΔευτεÏόλεπτα" - #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" -#: editor_actions.cc:557 -#, fuzzy -msgid "Letterbox" -msgstr "καλÏτεÏη" - #: editor_actions.cc:558 msgid "Original Size" msgstr "" @@ -4224,11 +2224,6 @@ msgstr "ΑκÏόαση" msgid "Show All" msgstr "Εμφάνιση Όλων" -#: editor_actions.cc:620 -#, fuzzy -msgid "Show Automatic Regions" -msgstr "Ανάδειξη αυτομάτων πεÏιοχών" - #: editor_actions.cc:622 msgid "Ascending" msgstr "ΑÏξουσα" @@ -4277,46 +2272,16 @@ msgstr "Με Ημ/νία ΑÏχείου Πηγής" msgid "By Source Filesystem" msgstr "Με Filesystem Πηγής" -#: editor_actions.cc:648 -#, fuzzy -msgid "Remove Unused" -msgstr "Απαλοιφή" - #: editor_actions.cc:652 editor_audio_import.cc:279 #: session_import_dialog.cc:74 session_import_dialog.cc:94 #: session_metadata_dialog.cc:297 editor_videotimeline.cc:108 msgid "Import" msgstr "Εισαγωγή" -#: editor_actions.cc:655 -#, fuzzy -msgid "Import to Region List..." -msgstr "ΔιαχωÏισμός διαστήματος στη λίστα πεÏιοχής" - -#: editor_actions.cc:658 session_import_dialog.cc:43 -#, fuzzy -msgid "Import From Session" -msgstr "Εξαγωγή ΣυνεδÏίας" - -#: editor_actions.cc:661 -#, fuzzy -msgid "Show Summary" -msgstr "Ανάδειξη όλων" - #: editor_actions.cc:663 msgid "Show Group Tabs" msgstr "" -#: editor_actions.cc:665 -#, fuzzy -msgid "Show Measures" -msgstr "Ανάδειξη γÏαμμών μετÏήσεων" - -#: editor_actions.cc:669 -#, fuzzy -msgid "Show Logo" -msgstr "Ανάδειξη Θέσεως" - #: editor_actions.cc:673 msgid "Toggle MIDI Input Active for Editor-Selected Tracks/Busses" msgstr "" @@ -4329,36 +2294,14 @@ msgstr "" msgid "Could not find editor.bindings in search path %1" msgstr "" -#: editor_actions.cc:1028 editor_actions.cc:1424 editor_actions.cc:1435 -#: editor_actions.cc:1488 editor_actions.cc:1499 editor_actions.cc:1546 -#: editor_actions.cc:1556 editor_regions.cc:1561 -#, fuzzy -msgid "programming error: %1: %2" -msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: %1" - #: editor_actions.cc:1722 msgid "Raise" msgstr "" -#: editor_actions.cc:1725 -#, fuzzy -msgid "Raise to Top" -msgstr "ΑνόÏθωση στο ανώτατο στÏώμα" - #: editor_actions.cc:1728 gtk-custom-ruler.c:132 msgid "Lower" msgstr "ΚατώτεÏο" -#: editor_actions.cc:1731 -#, fuzzy -msgid "Lower to Bottom" -msgstr "Υποβίβαση στο κατώτατο στÏώμα" - -#: editor_actions.cc:1734 -#, fuzzy -msgid "Move to Original Position" -msgstr "ΠÏωταÏχική θέση" - #: editor_actions.cc:1739 msgid "Lock to Video" msgstr "" @@ -4367,29 +2310,14 @@ msgstr "" msgid "Glue to Bars and Beats" msgstr "" -#: editor_actions.cc:1749 -#, fuzzy -msgid "Remove Sync" -msgstr "απαλοιφή συγχÏονισμοÏ(sync)" - #: editor_actions.cc:1752 mixer_strip.cc:1904 route_time_axis.cc:209 msgid "Mute" msgstr "Σιγή" -#: editor_actions.cc:1755 -#, fuzzy -msgid "Normalize..." -msgstr "Εξομάλυνση" - #: editor_actions.cc:1758 msgid "Reverse" msgstr "ΑντιστÏοφή" -#: editor_actions.cc:1761 -#, fuzzy -msgid "Make Mono Regions" -msgstr "ΔημιουÏγία mono πεÏιοχών" - #: editor_actions.cc:1764 msgid "Boost Gain" msgstr "" @@ -4402,16 +2330,6 @@ msgstr "" msgid "Pitch Shift..." msgstr "" -#: editor_actions.cc:1773 -#, fuzzy -msgid "Transpose..." -msgstr "Αναζήτηση" - -#: editor_actions.cc:1776 -#, fuzzy -msgid "Opaque" -msgstr "αδιαφανής" - #: editor_actions.cc:1780 editor_regions.cc:116 msgid "Fade In" msgstr "Fade In" @@ -4420,11 +2338,6 @@ msgstr "Fade In" msgid "Fade Out" msgstr "Fade Out" -#: editor_actions.cc:1800 -#, fuzzy -msgid "Multi-Duplicate..." -msgstr "ΑντιγÏαφή" - #: editor_actions.cc:1805 msgid "Fill Track" msgstr "Γόμωση καναλιοÏ" @@ -4433,70 +2346,10 @@ msgstr "Γόμωση καναλιοÏ" msgid "Set Loop Range" msgstr "Θέση Loop Διαστήματος" -#: editor_actions.cc:1816 -#, fuzzy -msgid "Set Punch" -msgstr "Θέση Punch Διαστήματος" - -#: editor_actions.cc:1820 -#, fuzzy -msgid "Add Single Range Marker" -msgstr "ΠÏόσθεση Στιγμάτων Διαστήματος" - -#: editor_actions.cc:1825 -#, fuzzy -msgid "Add Range Marker Per Region" -msgstr "ΠÏόσθεση Στιγμάτων Διαστήματος" - -#: editor_actions.cc:1829 -#, fuzzy -msgid "Snap Position To Grid" -msgstr "Snap σε μπάÏες" - -#: editor_actions.cc:1832 -#, fuzzy -msgid "Close Gaps" -msgstr "Κλείσιμο" - #: editor_actions.cc:1835 msgid "Rhythm Ferret..." msgstr "" -#: editor_actions.cc:1838 -#, fuzzy -msgid "Export..." -msgstr "Εξαγωγή" - -#: editor_actions.cc:1844 -#, fuzzy -msgid "Separate Under" -msgstr "ΧωÏισμός διαστήματος στο κανάλι" - -#: editor_actions.cc:1848 -#, fuzzy -msgid "Set Fade In Length" -msgstr "αλλαγή μήκους fade in" - -#: editor_actions.cc:1849 -#, fuzzy -msgid "Set Fade Out Length" -msgstr "αλλαγή μήκους fade out" - -#: editor_actions.cc:1850 -#, fuzzy -msgid "Set Tempo from Region = Bar" -msgstr "θέση επιλογής από πεÏιοχή" - -#: editor_actions.cc:1855 -#, fuzzy -msgid "Split at Percussion Onsets" -msgstr "Κόψιμο στον κέÏσοÏα επεξεÏγασίας" - -#: editor_actions.cc:1860 -#, fuzzy -msgid "List Editor..." -msgstr "Επεξ/στης Ρυθμίσεων" - #: editor_actions.cc:1863 msgid "Properties..." msgstr "" @@ -4529,16 +2382,6 @@ msgstr "" msgid "Reset Gain" msgstr "" -#: editor_actions.cc:1881 -#, fuzzy -msgid "Envelope Active" -msgstr "ΕπανενεÏγοποίηση γÏαφήματος" - -#: editor_actions.cc:1885 -#, fuzzy -msgid "Quantize..." -msgstr "Εξομάλυνση" - #: editor_actions.cc:1886 editor_actions.cc:1887 msgid "Insert Patch Change..." msgstr "" @@ -4551,31 +2394,6 @@ msgstr "" msgid "Strip Silence..." msgstr "" -#: editor_actions.cc:1890 -#, fuzzy -msgid "Set Range Selection" -msgstr "ΟÏισμός διαστήματος από επιλογή" - -#: editor_actions.cc:1892 -#, fuzzy -msgid "Nudge Later" -msgstr "νÏξη εμπÏός" - -#: editor_actions.cc:1893 -#, fuzzy -msgid "Nudge Earlier" -msgstr "νÏξη εμπÏός" - -#: editor_actions.cc:1898 -#, fuzzy -msgid "Nudge Later by Capture Offset" -msgstr "ÎÏξη πίσω" - -#: editor_actions.cc:1905 -#, fuzzy -msgid "Nudge Earlier by Capture Offset" -msgstr "ÎÏξη πίσω" - #: editor_actions.cc:1909 msgid "Trim to Loop" msgstr "" @@ -4584,26 +2402,6 @@ msgstr "" msgid "Trim to Punch" msgstr "" -#: editor_actions.cc:1912 -#, fuzzy -msgid "Trim to Previous" -msgstr "ισοστάθμιση Ï€Ïος σÏνταξη" - -#: editor_actions.cc:1913 -#, fuzzy -msgid "Trim to Next" -msgstr "ισοστάθμιση Ï€Ïος σÏνταξη" - -#: editor_actions.cc:1920 -#, fuzzy -msgid "Insert Region From Region List" -msgstr "θέση επιλογής από πεÏιοχή" - -#: editor_actions.cc:1926 -#, fuzzy -msgid "Set Sync Position" -msgstr "Θέση sync της ΠεÏιοχής" - #: editor_actions.cc:1927 msgid "Place Transient" msgstr "" @@ -4620,50 +2418,10 @@ msgstr "" msgid "Trim End at Edit Point" msgstr "" -#: editor_actions.cc:1935 -#, fuzzy -msgid "Align Start" -msgstr "ΕυθυγÏάμμιση αÏχής ΠεÏιοχών" - -#: editor_actions.cc:1942 -#, fuzzy -msgid "Align Start Relative" -msgstr "ευθυγÏάμμιση αÏχής πεÏιοχών(σχετική)" - -#: editor_actions.cc:1946 -#, fuzzy -msgid "Align End" -msgstr "ΕυθυγÏάμμιση" - -#: editor_actions.cc:1951 -#, fuzzy -msgid "Align End Relative" -msgstr "ΕυθυγÏάμμιση σχετικών" - -#: editor_actions.cc:1958 -#, fuzzy -msgid "Align Sync" -msgstr "ευθυγÏάμμιση του sync των πεÏιοχών" - -#: editor_actions.cc:1965 -#, fuzzy -msgid "Align Sync Relative" -msgstr "ΕυθυγÏάμμιση σχετικών" - #: editor_actions.cc:1969 editor_actions.cc:1972 msgid "Choose Top..." msgstr "" -#: editor_audio_import.cc:77 editor_audio_import.cc:99 -#, fuzzy -msgid "You can't import or embed an audiofile until you have a session loaded." -msgstr "Δεν γίνεται να εισαχθεί ήχος χωÏίς να έχει φοÏτωθεί Ï€Ïώτα ΣυνεδÏία." - -#: editor_audio_import.cc:83 editor_audio_import.cc:127 -#, fuzzy -msgid "Add Existing Media" -msgstr "ΠÏόσθεση ΥπάÏχοντος Audio" - #: editor_audio_import.cc:177 msgid "" "The session already contains a source file named %1. Do you want to import " @@ -4714,16 +2472,6 @@ msgstr "" msgid "Embed it anyway" msgstr "ΕμφÏτευσέ το οÏτως ή άλλως" -#: editor_drag.cc:1000 -#, fuzzy -msgid "fixed time region drag" -msgstr "ισοσταθμισμένη πεÏιοχή" - -#: editor_drag.cc:1700 -#, fuzzy -msgid "Video Start:" -msgstr "ΕυθυγÏάμμιση αÏχής ΠεÏιοχών" - #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -4764,90 +2512,30 @@ msgstr "μετακίνηση στίγματος" msgid "An error occurred while executing time stretch operation" msgstr "" -#: editor_drag.cc:4011 -#, fuzzy -msgid "programming_error: %1" -msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: %1" - #: editor_drag.cc:4081 editor_markers.cc:680 msgid "new range marker" msgstr "νέο στίγμα διαστήματος" -#: editor_drag.cc:4762 -#, fuzzy -msgid "rubberband selection" -msgstr "επιλογή διαστήματος" - -#: editor_route_groups.cc:66 -#, fuzzy -msgid "No Selection = All Tracks?" -msgstr "Επιλογή όλων στο κανάλι" - -#: editor_route_groups.cc:95 -#, fuzzy -msgid "Col" -msgstr "ΧÏώμα" - -#: editor_route_groups.cc:95 -#, fuzzy -msgid "Group Tab Color" -msgstr "ΧÏώμα" - -#: editor_route_groups.cc:96 -#, fuzzy -msgid "Name of Group" -msgstr "ΧωÏίς group" - #: editor_route_groups.cc:97 editor_routes.cc:203 msgid "V" msgstr "" -#: editor_route_groups.cc:97 -#, fuzzy -msgid "Group is visible?" -msgstr "Crossfades εν ενεÏγεία" - -#: editor_route_groups.cc:98 -#, fuzzy -msgid "On" -msgstr "Άνοιγμα" - #: editor_route_groups.cc:98 msgid "Group is enabled?" msgstr "" -#: editor_route_groups.cc:99 -#, fuzzy -msgid "group|G" -msgstr "ΧωÏίς group" - #: editor_route_groups.cc:99 msgid "Sharing Gain?" msgstr "" -#: editor_route_groups.cc:100 -#, fuzzy -msgid "relative|Rel" -msgstr "ΕυθυγÏάμμιση σχετικών" - #: editor_route_groups.cc:100 msgid "Relative Gain Changes?" msgstr "" -#: editor_route_groups.cc:101 -#, fuzzy -msgid "mute|M" -msgstr "σιγή" - #: editor_route_groups.cc:101 msgid "Sharing Mute?" msgstr "" -#: editor_route_groups.cc:102 -#, fuzzy -msgid "solo|S" -msgstr "σόλο" - #: editor_route_groups.cc:102 msgid "Sharing Solo?" msgstr "" @@ -4861,30 +2549,10 @@ msgstr "" msgid "Sharing Record-enable Status?" msgstr "" -#: editor_route_groups.cc:104 -#, fuzzy -msgid "monitoring|Mon" -msgstr "Software Monitoring" - #: editor_route_groups.cc:104 msgid "Sharing Monitoring Choice?" msgstr "" -#: editor_route_groups.cc:105 -#, fuzzy -msgid "selection|Sel" -msgstr "Επιλογή" - -#: editor_route_groups.cc:105 -#, fuzzy -msgid "Sharing Selected/Editing Status?" -msgstr "θέση επιλεγμένης οπτικής καναλιοÏ" - -#: editor_route_groups.cc:106 -#, fuzzy -msgid "active|A" -msgstr "ενεÏγό" - #: editor_route_groups.cc:106 msgid "Sharing Active Status?" msgstr "" @@ -4913,94 +2581,19 @@ msgstr "" msgid "File Exists!" msgstr "" -#: editor_export_audio.cc:151 -#, fuzzy -msgid "Overwrite Existing File" -msgstr "Εισαγωγή ΥπάÏχοντος Audio" - -#: editor_group_tabs.cc:162 -#, fuzzy -msgid "Fit to Window" -msgstr "ΠαÏάθυÏα" - -#: editor_markers.cc:129 -#, fuzzy -msgid "start" -msgstr "ΑÏχή:" - -#: editor_markers.cc:130 -#, fuzzy -msgid "end" -msgstr "ΔευτεÏόλεπτα" - #: editor_markers.cc:646 editor_ops.cc:1744 editor_ops.cc:1764 #: editor_ops.cc:1788 editor_ops.cc:1815 location_ui.cc:1017 msgid "add marker" msgstr "Ï€Ïόσθεση στίγματος" -#: editor_markers.cc:677 -#, fuzzy -msgid "range" -msgstr " διαστήματος" - #: editor_markers.cc:713 location_ui.cc:852 msgid "remove marker" msgstr "απαλοιφή στίγματος" -#: editor_markers.cc:849 -#, fuzzy -msgid "Locate to Here" -msgstr "Τοποθέτηση στο Στίγμα" - -#: editor_markers.cc:850 -#, fuzzy -msgid "Play from Here" -msgstr "ΑναπαÏ/γή από Στίγμα" - -#: editor_markers.cc:851 -#, fuzzy -msgid "Move Mark to Playhead" -msgstr "Θέση Στίγματος από playhead" - -#: editor_markers.cc:855 -#, fuzzy -msgid "Create Range to Next Marker" -msgstr "ΧωÏισμός διαστήματος στο κανάλι" - -#: editor_markers.cc:896 -#, fuzzy -msgid "Locate to Marker" -msgstr "Τοποθέτηση στο Στίγμα" - -#: editor_markers.cc:897 -#, fuzzy -msgid "Play from Marker" -msgstr "ΑναπαÏ/γή από Στίγμα" - -#: editor_markers.cc:900 -#, fuzzy -msgid "Set Marker from Playhead" -msgstr "ΟÏισμός Στίγματος Διαστήματος από playhead" - -#: editor_markers.cc:902 -#, fuzzy -msgid "Set Range from Selection" -msgstr "ΟÏισμός διαστήματος από επιλογή" - -#: editor_markers.cc:905 -#, fuzzy -msgid "Zoom to Range" -msgstr "Zoom στη συνεδÏία" - #: editor_markers.cc:912 msgid "Hide Range" msgstr "ΑπόκÏυψη Διαστήματος" -#: editor_markers.cc:913 -#, fuzzy -msgid "Rename Range..." -msgstr "Μετονομασία Διαστήματος" - #: editor_markers.cc:917 msgid "Remove Range" msgstr "Απαλοιφή Διαστήματος" @@ -5009,20 +2602,10 @@ msgstr "Απαλοιφή Διαστήματος" msgid "Separate Regions in Range" msgstr "ΔιαχωÏισμός πεÏιοχών στο διάστημα" -#: editor_markers.cc:927 -#, fuzzy -msgid "Select Range" -msgstr "ΚαθοÏισμός Διαστήματος" - #: editor_markers.cc:956 msgid "Set Punch Range" msgstr "Θέση Punch Διαστήματος" -#: editor_markers.cc:1351 editor_ops.cc:1699 -#, fuzzy -msgid "New Name:" -msgstr "νέο όνομα: " - #: editor_markers.cc:1354 msgid "Rename Mark" msgstr "Μετονομασία Στίγματος" @@ -5065,11 +2648,6 @@ msgstr "" "Σφάλμα ΠÏογÏαμματισμοÏ: ο καμβάς του σημείου ελέγχου δεν έχει δείκτη " "αναφοÏάς!" -#: editor_mouse.cc:2416 -#, fuzzy -msgid "start point trim" -msgstr "ΑÏχή σημείου ισοσταθμίσεως" - #: editor_mouse.cc:2441 msgid "End point trim" msgstr "Τέλος σημείου ισοσταθμίσεως" @@ -5082,49 +2660,14 @@ msgstr "Όνομα για πεÏιοχή:" msgid "split" msgstr "διαχωÏισμός" -#: editor_ops.cc:256 -#, fuzzy -msgid "alter selection" -msgstr "επέκταση επιλογής" - -#: editor_ops.cc:298 -#, fuzzy -msgid "nudge regions forward" -msgstr "ÎÏξη πεÏιοχής/επιλογής εμπÏός" - -#: editor_ops.cc:321 editor_ops.cc:406 -#, fuzzy -msgid "nudge location forward" -msgstr "νÏξη εμπÏός" - -#: editor_ops.cc:379 -#, fuzzy -msgid "nudge regions backward" -msgstr "ÎÏξη πεÏιοχής/επιλογής πίσω" - #: editor_ops.cc:468 msgid "nudge forward" msgstr "νÏξη εμπÏός" -#: editor_ops.cc:492 -#, fuzzy -msgid "nudge backward" -msgstr "ÎÏξη πίσω" - #: editor_ops.cc:557 msgid "build_region_boundary_cache called with snap_type = %1" msgstr "build_region_boundary_cache εκλήθη με snap_type = %1" -#: editor_ops.cc:1701 -#, fuzzy -msgid "New Location Marker" -msgstr "Îέο στίγμα θέσεως" - -#: editor_ops.cc:1788 -#, fuzzy -msgid "add markers" -msgstr "Ï€Ïόσθεση στίγματος" - #: editor_ops.cc:1894 msgid "clear markers" msgstr "εκκαθάÏιση στιγμάτων" @@ -5145,84 +2688,14 @@ msgstr "Ï€Ïοσθήκη ελκομένης πεÏιοχής" msgid "insert region" msgstr "Ï€Ïοσθήκη πεÏιοχής" -#: editor_ops.cc:2261 -#, fuzzy -msgid "raise regions" -msgstr "Κανονικοποίηση πεÏιοχής" - -#: editor_ops.cc:2263 -#, fuzzy -msgid "raise region" -msgstr "απαλοιφή πεÏιοχής" - -#: editor_ops.cc:2269 -#, fuzzy -msgid "raise regions to top" -msgstr "Κοπή ΠεÏιοχής κατά το διάστημα" - -#: editor_ops.cc:2271 -#, fuzzy -msgid "raise region to top" -msgstr "ΑνόÏθωση στο ανώτατο στÏώμα" - -#: editor_ops.cc:2277 -#, fuzzy -msgid "lower regions" -msgstr "μετακίνηση πεÏιοχής(ών)" - -#: editor_ops.cc:2279 editor_ops.cc:2287 -#, fuzzy -msgid "lower region" -msgstr "Ï€Ïοσθήκη πεÏιοχής" - -#: editor_ops.cc:2285 -#, fuzzy -msgid "lower regions to bottom" -msgstr "Υποβίβαση στο κατώτατο στÏώμα" - -#: editor_ops.cc:2370 -#, fuzzy -msgid "Rename Region" -msgstr "αντιστÏοφή πεÏιοχής" - -#: editor_ops.cc:2372 processor_box.cc:1779 route_ui.cc:1538 -#, fuzzy -msgid "New name:" -msgstr "νέο όνομα: " - #: editor_ops.cc:2682 msgid "separate" msgstr "διαχωÏισμός" -#: editor_ops.cc:2795 -#, fuzzy -msgid "separate region under" -msgstr "ΔιαχωÏισμός πεÏιοχών στο διάστημα" - #: editor_ops.cc:2916 msgid "trim to selection" msgstr "ισοστάθμιση Ï€Ïος τα επιλεγμένα" -#: editor_ops.cc:3052 -#, fuzzy -msgid "set sync point" -msgstr "ΠÏοσδιοÏισμός σημείου συγχÏονισμοÏ" - -#: editor_ops.cc:3076 -#, fuzzy -msgid "remove region sync" -msgstr "απαλοιφή πεÏιοχής" - -#: editor_ops.cc:3098 -#, fuzzy -msgid "move regions to original position" -msgstr "οÏισμός θέσης sync πεÏιοχής" - -#: editor_ops.cc:3100 -#, fuzzy -msgid "move region to original position" -msgstr "οÏισμός θέσης sync πεÏιοχής" - #: editor_ops.cc:3121 msgid "align selection" msgstr "ευθυγÏάμμιση επιλογής" @@ -5235,31 +2708,6 @@ msgstr "ευθυγÏάμμιση επιλογής (σχετική)" msgid "align region" msgstr "ευθυγÏάμμιση πεÏιοχής" -#: editor_ops.cc:3280 -#, fuzzy -msgid "trim front" -msgstr "ισοσταθμισμένη πεÏιοχή" - -#: editor_ops.cc:3280 -#, fuzzy -msgid "trim back" -msgstr "ισοστάθμιση" - -#: editor_ops.cc:3310 -#, fuzzy -msgid "trim to loop" -msgstr "ισοστάθμιση Ï€Ïος τα επιλεγμένα" - -#: editor_ops.cc:3320 -#, fuzzy -msgid "trim to punch" -msgstr "ισοστάθμιση Ï€Ïος σÏνταξη" - -#: editor_ops.cc:3382 -#, fuzzy -msgid "trim to region" -msgstr "ισοσταθμισμένη πεÏιοχή" - #: editor_ops.cc:3492 msgid "" "This track/bus cannot be frozen because the signal adds or loses channels " @@ -5268,11 +2716,6 @@ msgid "" "input or vice versa." msgstr "" -#: editor_ops.cc:3495 -#, fuzzy -msgid "Cannot freeze" -msgstr "ΑκÏÏωση παγώματος" - #: editor_ops.cc:3501 msgid "" "%1\n" @@ -5282,21 +2725,6 @@ msgid "" "Freezing will only process the signal as far as the first send/insert/return." msgstr "" -#: editor_ops.cc:3505 -#, fuzzy -msgid "Freeze anyway" -msgstr "Πάγωμα" - -#: editor_ops.cc:3506 -#, fuzzy -msgid "Don't freeze" -msgstr "ΑκÏÏωση παγώματος" - -#: editor_ops.cc:3507 -#, fuzzy -msgid "Freeze Limits" -msgstr "Πάγωμα" - #: editor_ops.cc:3522 msgid "Cancel Freeze" msgstr "ΑκÏÏωση παγώματος" @@ -5318,11 +2746,6 @@ msgstr "" msgid "bounce range" msgstr "αναπήδηση διαστήματο" -#: editor_ops.cc:3678 -#, fuzzy -msgid "delete" -msgstr "διαγÏαφή" - #: editor_ops.cc:3681 msgid "cut" msgstr "κοπή" @@ -5372,11 +2795,6 @@ msgstr "Όχι, να μην γίνει τίποτα." msgid "Yes, destroy it." msgstr "Îαι, να καταστÏαφεί." -#: editor_ops.cc:4512 -#, fuzzy -msgid "Destroy last capture" -msgstr "Απαλοιφή τελευταίας λήψης" - #: editor_ops.cc:4573 msgid "normalize" msgstr "εξομάλυνση" @@ -5389,106 +2807,6 @@ msgstr "αντιστÏοφή πεÏιοχών" msgid "strip silence" msgstr "" -#: editor_ops.cc:4763 -#, fuzzy -msgid "Fork Region(s)" -msgstr "ως πεÏιοχή(ές)" - -#: editor_ops.cc:4963 -#, fuzzy -msgid "reset region gain" -msgstr "αντιστÏοφή πεÏιοχών" - -#: editor_ops.cc:5016 -#, fuzzy -msgid "region gain envelope active" -msgstr "ΕπανενεÏγοποίηση γÏαφήματος" - -#: editor_ops.cc:5043 -#, fuzzy -msgid "toggle region lock" -msgstr "σιγή πεÏιοχής" - -#: editor_ops.cc:5067 -#, fuzzy -msgid "Toggle Video Lock" -msgstr "σιγή πεÏιοχής" - -#: editor_ops.cc:5091 -#, fuzzy -msgid "region lock style" -msgstr "γόμωση πεÏιοχής" - -#: editor_ops.cc:5116 -#, fuzzy -msgid "change region opacity" -msgstr "Έλξη αντιγÏαφής πεÏιοχής" - -#: editor_ops.cc:5231 -#, fuzzy -msgid "set fade in length" -msgstr "αλλαγή μήκους fade in" - -#: editor_ops.cc:5238 -#, fuzzy -msgid "set fade out length" -msgstr "αλλαγή μήκους fade out" - -#: editor_ops.cc:5283 -#, fuzzy -msgid "set fade in shape" -msgstr "Crossfades εν ενεÏγεία" - -#: editor_ops.cc:5314 -#, fuzzy -msgid "set fade out shape" -msgstr "επεξεÏ/σία fade out" - -#: editor_ops.cc:5344 -#, fuzzy -msgid "set fade in active" -msgstr "επεξεÏ/σία fade in" - -#: editor_ops.cc:5373 -#, fuzzy -msgid "set fade out active" -msgstr "επεξεÏ/σία fade out" - -#: editor_ops.cc:5638 -#, fuzzy -msgid "set loop range from selection" -msgstr "ΟÏισμός διαστήματος από επιλογή" - -#: editor_ops.cc:5660 -#, fuzzy -msgid "set loop range from edit range" -msgstr "θέση επιλογής από διάστημα" - -#: editor_ops.cc:5689 -#, fuzzy -msgid "set loop range from region" -msgstr "θέση επιλογής από πεÏιοχή" - -#: editor_ops.cc:5707 -#, fuzzy -msgid "set punch range from selection" -msgstr "ΟÏισμός διαστήματος από επιλογή" - -#: editor_ops.cc:5724 -#, fuzzy -msgid "set punch range from edit range" -msgstr "θέση punch διαστήματος" - -#: editor_ops.cc:5748 -#, fuzzy -msgid "set punch range from region" -msgstr "θέση punch διαστήματος" - -#: editor_ops.cc:5857 -#, fuzzy -msgid "Add new marker" -msgstr "Ï€Ïόσθεση στίγματος διαστήματος" - #: editor_ops.cc:5858 msgid "Set global tempo" msgstr "" @@ -5501,16 +2819,6 @@ msgstr "" msgid "Do you want to set the global tempo or add a new tempo marker?" msgstr "" -#: editor_ops.cc:5888 -#, fuzzy -msgid "set tempo from region" -msgstr "θέση επιλογής από πεÏιοχή" - -#: editor_ops.cc:5918 -#, fuzzy -msgid "split regions" -msgstr "επιλογή πεÏιοχών" - #: editor_ops.cc:5960 msgid "" "You are about to split\n" @@ -5541,27 +2849,6 @@ msgstr "" msgid "place transient" msgstr "" -#: editor_ops.cc:6160 -#, fuzzy -msgid "snap regions to grid" -msgstr "Κοπή ΠεÏιοχής κατά το διάστημα" - -#: editor_ops.cc:6199 -#, fuzzy -msgid "Close Region Gaps" -msgstr "ως πεÏιοχή(ές)" - -#: editor_ops.cc:6204 -#, fuzzy -msgid "Crossfade length" -msgstr "επεξεÏ/σία fade in" - -#: editor_ops.cc:6213 editor_ops.cc:6224 rhythm_ferret.cc:120 -#: session_option_editor.cc:153 -#, fuzzy -msgid "ms" -msgstr "m" - #: editor_ops.cc:6215 msgid "Pull-back length" msgstr "" @@ -5570,11 +2857,6 @@ msgstr "" msgid "Ok" msgstr "" -#: editor_ops.cc:6243 -#, fuzzy -msgid "close region gaps" -msgstr "αυτές τις πεÏιοχές" - #: editor_ops.cc:6461 route_ui.cc:1456 msgid "That would be bad news ...." msgstr "" @@ -5589,81 +2871,10 @@ msgid "" "\"allow-special-bus-removal\" option to be \"yes\"" msgstr "" -#: editor_ops.cc:6483 -#, fuzzy -msgid "tracks" -msgstr "Κανάλια" - -#: editor_ops.cc:6485 route_ui.cc:1822 -#, fuzzy -msgid "track" -msgstr "Κανάλι" - -#: editor_ops.cc:6489 -#, fuzzy -msgid "busses" -msgstr "Δίαυλοι" - -#: editor_ops.cc:6491 route_ui.cc:1822 -#, fuzzy -msgid "bus" -msgstr "abs" - -#: editor_ops.cc:6496 -#, fuzzy -msgid "" -"Do you really want to remove %1 %2 and %3 %4?\n" -"(You may also lose the playlists associated with the %2)\n" -"\n" -"This action cannot be undone, and the session file will be overwritten!" -msgstr "" -"Στ'αλήθεια θέλετε να απαλοίψετε το κανάλι \"%1\" ?\n" -"\n" -"Πιθανόν να χάσετε και τη λίστα που χÏησιμοποιείται από το κανάλι.\n" -"(δεν μποÏεί να ανακληθεί)" - -#: editor_ops.cc:6501 -#, fuzzy -msgid "" -"Do you really want to remove %1 %2?\n" -"(You may also lose the playlists associated with the %2)\n" -"\n" -"This action cannot be undone, and the session file will be overwritten!" -msgstr "" -"Στ'αλήθεια θέλετε να απαλοίψετε το κανάλι \"%1\" ?\n" -"\n" -"Πιθανόν να χάσετε και τη λίστα που χÏησιμοποιείται από το κανάλι.\n" -"(δεν μποÏεί να ανακληθεί)" - -#: editor_ops.cc:6507 -#, fuzzy -msgid "" -"Do you really want to remove %1 %2?\n" -"\n" -"This action cannot be undon, and the session file will be overwritten" -msgstr "" -"Στ'αλήθεια θέλετε να απαλοίψετε το κανάλι \"%1\" ?\n" -"(δεν μποÏεί να ανακληθεί)" - -#: editor_ops.cc:6514 -#, fuzzy -msgid "Yes, remove them." -msgstr "Îαι, απάλοιψε το." - #: editor_ops.cc:6516 editor_snapshots.cc:159 route_ui.cc:1483 msgid "Yes, remove it." msgstr "Îαι, απάλοιψε το." -#: editor_ops.cc:6521 editor_ops.cc:6523 -#, fuzzy -msgid "Remove %1" -msgstr "Απαλοιφή" - -#: editor_ops.cc:6582 -#, fuzzy -msgid "insert time" -msgstr "Ï€Ïοσθήκη ηχο-αÏχείου" - #: editor_ops.cc:6739 msgid "There are too many tracks to fit in the current window" msgstr "" @@ -5673,49 +2884,14 @@ msgstr "" msgid "Saved view %u" msgstr "" -#: editor_ops.cc:6864 -#, fuzzy -msgid "mute regions" -msgstr "σιγή πεÏιοχής" - #: editor_ops.cc:6866 msgid "mute region" msgstr "σιγή πεÏιοχής" -#: editor_ops.cc:6903 -#, fuzzy -msgid "combine regions" -msgstr "Κανονικοποίηση πεÏιοχής" - -#: editor_ops.cc:6941 -#, fuzzy -msgid "uncombine regions" -msgstr "Αναπήδηση πεÏιοχής" - #: editor_regions.cc:111 msgid "Region name, with number of channels in []'s" msgstr "" -#: editor_regions.cc:112 -#, fuzzy -msgid "Position of start of region" -msgstr "ΑÏχή της συνεδÏίας" - -#: editor_regions.cc:113 editor_regions.cc:849 time_info_box.cc:98 -#, fuzzy -msgid "End" -msgstr "Τέλος:" - -#: editor_regions.cc:113 -#, fuzzy -msgid "Position of end of region" -msgstr "Τέλος του συνεδÏίας" - -#: editor_regions.cc:114 -#, fuzzy -msgid "Length of the region" -msgstr "σιγή παÏοÏσας πεÏιοχής" - #: editor_regions.cc:115 msgid "Position of region sync point, relative to start of the region" msgstr "" @@ -5733,16 +2909,6 @@ msgstr "" msgid "L" msgstr "L" -#: editor_regions.cc:118 -#, fuzzy -msgid "Region position locked?" -msgstr "Με Θέση ΠεÏιοχής" - -#: editor_regions.cc:119 -#, fuzzy -msgid "G" -msgstr "Πήγαινε" - #: editor_regions.cc:119 msgid "Region position glued to Bars|Beats time?" msgstr "" @@ -5753,11 +2919,6 @@ msgstr "" msgid "M" msgstr "" -#: editor_regions.cc:120 -#, fuzzy -msgid "Region muted?" -msgstr "Τέλη ΠεÏιοχών" - #: editor_regions.cc:121 msgid "O" msgstr "" @@ -5774,35 +2935,10 @@ msgstr "ΚÏυμμένο" msgid "(MISSING) " msgstr "" -#: editor_regions.cc:457 -#, fuzzy -msgid "" -"Do you really want to remove unused regions?\n" -"(This is destructive and cannot be undone)" -msgstr "" -"Στ'αλήθεια θέλετε να καταστÏέψετε την τελευταία λήψη?\n" -"(Η Ï€Ïάξη είνα‎ι καταστÏεπτική και δεν γίνεται επαναφοÏά της)" - -#: editor_regions.cc:461 -#, fuzzy -msgid "Yes, remove." -msgstr "Îαι, απάλοιψε το." - -#: editor_regions.cc:463 -#, fuzzy -msgid "Remove unused regions" -msgstr "επιλογή πεÏιοχών" - #: editor_regions.cc:816 editor_regions.cc:830 editor_regions.cc:844 msgid "Mult." msgstr "" -#: editor_regions.cc:847 engine_dialog.cc:84 midi_list_editor.cc:103 -#: time_info_box.cc:91 -#, fuzzy -msgid "Start" -msgstr "ΑÏχή:" - #: editor_regions.cc:865 editor_regions.cc:881 msgid "Multiple" msgstr "" @@ -5815,73 +2951,28 @@ msgstr "" msgid "SS" msgstr "" -#: editor_routes.cc:202 -#, fuzzy -msgid "Track/Bus Name" -msgstr "κανάλια/δίαυλοι" - -#: editor_routes.cc:203 -#, fuzzy -msgid "Track/Bus visible ?" -msgstr "Κανάλια/Δίαυλοι" - #: editor_routes.cc:204 mixer_strip.cc:1945 meter_strip.cc:334 #: route_time_axis.cc:2407 msgid "A" msgstr "" -#: editor_routes.cc:204 -#, fuzzy -msgid "Track/Bus active ?" -msgstr "κανάλια/δίαυλοι" - #: editor_routes.cc:205 mixer_strip.cc:1932 msgid "I" msgstr "" -#: editor_routes.cc:205 -#, fuzzy -msgid "MIDI input enabled" -msgstr "MIDI δεσμός" - #: editor_routes.cc:206 mixer_strip.cc:1930 mono_panner.cc:198 #: stereo_panner.cc:215 stereo_panner.cc:242 msgid "R" msgstr "" -#: editor_routes.cc:206 -#, fuzzy -msgid "Record enabled" -msgstr "ΕγγÏαφή" - -#: editor_routes.cc:207 -#, fuzzy -msgid "Muted" -msgstr "Σιγή" - #: editor_routes.cc:208 mixer_strip.cc:1941 meter_strip.cc:330 msgid "S" msgstr "" -#: editor_routes.cc:208 -#, fuzzy -msgid "Soloed" -msgstr "Σόλο" - #: editor_routes.cc:209 msgid "SI" msgstr "" -#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1880 -#, fuzzy -msgid "Solo Isolated" -msgstr "Σόλο" - -#: editor_routes.cc:210 -#, fuzzy -msgid "Solo Safe (Locked)" -msgstr "Σόλο" - #: editor_routes.cc:471 mixer_ui.cc:1162 msgid "Hide All" msgstr "ΑπόκÏυψη όλων" @@ -5902,16 +2993,6 @@ msgstr "Ανάδειξη όλων των Audio διαÏλων" msgid "Hide All Audio Busses" msgstr "ΑπόκÏυψη όλων των Audio διαÏλων" -#: editor_routes.cc:476 -#, fuzzy -msgid "Show All Midi Tracks" -msgstr "Ανάδειξη όλων των Audio Καναλιών" - -#: editor_routes.cc:477 -#, fuzzy -msgid "Hide All Midi Tracks" -msgstr "ΑπόκÏυψη όλων των Audio Καναλιών" - #: editor_routes.cc:478 msgid "Show Tracks With Regions Under Playhead" msgstr "" @@ -5924,30 +3005,10 @@ msgstr "Îέο στίγμα θέσεως" msgid "Clear all locations" msgstr "ΕκκαθάÏιση όλων των θέσεων" -#: editor_rulers.cc:342 -#, fuzzy -msgid "Unhide locations" -msgstr "διαγÏαφή τοποθεσιών" - -#: editor_rulers.cc:346 -#, fuzzy -msgid "New range" -msgstr "ΠÏόσθεση νέου διαστήματος" - #: editor_rulers.cc:347 msgid "Clear all ranges" msgstr "ΕκκαθάÏιση όλων των διαστημάτων" -#: editor_rulers.cc:348 -#, fuzzy -msgid "Unhide ranges" -msgstr "ΑπόκÏυψη Διαστήματος" - -#: editor_rulers.cc:358 -#, fuzzy -msgid "New CD track marker" -msgstr "Στίγματα διαστημάτων (CD Track)" - #: editor_rulers.cc:363 tempo_dialog.cc:40 msgid "New Tempo" msgstr "Îέος ΧÏόνος" @@ -5956,25 +3017,10 @@ msgstr "Îέος ΧÏόνος" msgid "New Meter" msgstr "Îέο μέτÏο" -#: editor_rulers.cc:373 -#, fuzzy -msgid "Timeline height" -msgstr "Το Ïψος" - -#: editor_rulers.cc:383 -#, fuzzy -msgid "Align Video Track" -msgstr "ΠÏόσθεση καναλιοÏ" - #: editor_selection.cc:889 editor_selection.cc:932 msgid "set selected regions" msgstr "καθοÏισμός επιλεγμένων πεÏιοχών" -#: editor_selection.cc:1414 -#, fuzzy -msgid "select all" -msgstr "Επιλογή όλων" - #: editor_selection.cc:1506 msgid "select all within" msgstr "Επιλογή όλων εν μέσω" @@ -6003,16 +3049,6 @@ msgstr "επιλογή όλων μετά κέÏσ.επεξ." msgid "select all before cursor" msgstr "επιλογή όλων Ï€Ïιν κέÏσ.επεξ." -#: editor_selection.cc:1753 -#, fuzzy -msgid "select all after edit" -msgstr "Επιλογή όλων μετά τον κέÏσοÏα επεξεÏγασίας" - -#: editor_selection.cc:1755 -#, fuzzy -msgid "select all before edit" -msgstr "Επιλογή όλων Ï€Ïίν τον κέÏσοÏα επεξεÏγασίας" - #: editor_selection.cc:1888 msgid "No edit range defined" msgstr "" @@ -6023,30 +3059,6 @@ msgid "" "but there is no selected marker." msgstr "" -#: editor_snapshots.cc:136 -#, fuzzy -msgid "Rename Snapshot" -msgstr "Απαλοιφή σημείου συγχÏονισμοÏ" - -#: editor_snapshots.cc:138 -#, fuzzy -msgid "New name of snapshot" -msgstr "Όνομα νέου στιγμιοτÏπου" - -#: editor_snapshots.cc:156 -#, fuzzy -msgid "" -"Do you really want to remove snapshot \"%1\" ?\n" -"(which cannot be undone)" -msgstr "" -"Στ'αλήθεια θέλετε να απαλοίψετε το κανάλι \"%1\" ?\n" -"(δεν μποÏεί να ανακληθεί)" - -#: editor_snapshots.cc:161 -#, fuzzy -msgid "Remove snapshot" -msgstr "Απαλοιφή σημείου συγχÏονισμοÏ" - #: editor_tempodisplay.cc:208 editor_tempodisplay.cc:250 msgid "add" msgstr "Ï€Ïόσθεση" @@ -6096,20 +3108,10 @@ msgstr "" "σφάλμα Ï€ÏογÏαμματισμοÏ: ο καμβάς του μετÏητή στιγμάτων δεν έχει δείκτη " "αντικειμένου στιγμάτων!" -#: editor_timefx.cc:68 -#, fuzzy -msgid "stretch/shrink" -msgstr "Μεγέθυνέ/ΣμίκÏυνέ το" - #: editor_timefx.cc:129 msgid "pitch shift" msgstr "" -#: editor_timefx.cc:301 -#, fuzzy -msgid "timefx cannot be started - thread creation error" -msgstr "timestretch δεν μποÏεί να αÏχίσει - σφάλμα δημιουÏγίας thread" - #: engine_dialog.cc:75 msgid "Realtime" msgstr "" @@ -6118,11 +3120,6 @@ msgstr "" msgid "Do not lock memory" msgstr "" -#: engine_dialog.cc:77 -#, fuzzy -msgid "Unlock memory" -msgstr "Ξεκλείδωμα" - #: engine_dialog.cc:78 msgid "No zombies" msgstr "" @@ -6135,21 +3132,6 @@ msgstr "" msgid "Force 16 bit" msgstr "" -#: engine_dialog.cc:81 -#, fuzzy -msgid "H/W monitoring" -msgstr "Software Monitoring" - -#: engine_dialog.cc:82 -#, fuzzy -msgid "H/W metering" -msgstr "ΜέτÏηση" - -#: engine_dialog.cc:83 -#, fuzzy -msgid "Verbose output" -msgstr "Απαλοιφή Output" - #: engine_dialog.cc:103 msgid "8000Hz" msgstr "" @@ -6193,11 +3175,6 @@ msgstr "ΤÏίγωνη" msgid "Rectangular" msgstr "ΤετÏάγωνη" -#: engine_dialog.cc:130 engine_dialog.cc:567 -#, fuzzy -msgid "Shaped" -msgstr "ΜοÏφοποιημένος ΘόÏυβος" - #: engine_dialog.cc:158 engine_dialog.cc:483 engine_dialog.cc:974 msgid "Playback/recording on 1 device" msgstr "" @@ -6211,11 +3188,6 @@ msgstr "" msgid "Playback only" msgstr "" -#: engine_dialog.cc:161 engine_dialog.cc:505 engine_dialog.cc:983 -#, fuzzy -msgid "Recording only" -msgstr "ΠαÏση εγγÏαφής στα xrun" - #: engine_dialog.cc:171 engine_dialog.cc:448 msgid "coremidi" msgstr "" @@ -6224,20 +3196,10 @@ msgstr "" msgid "seq" msgstr "" -#: engine_dialog.cc:174 engine_dialog.cc:583 -#, fuzzy -msgid "raw" -msgstr "σχημάτισε" - #: engine_dialog.cc:181 msgid "Driver:" msgstr "" -#: engine_dialog.cc:186 -#, fuzzy -msgid "Audio Interface:" -msgstr "ΕσωτεÏικό" - #: engine_dialog.cc:191 sfdb_ui.cc:147 sfdb_ui.cc:260 sfdb_ui.cc:265 msgid "Sample rate:" msgstr "" @@ -6254,11 +3216,6 @@ msgstr "" msgid "Approximate latency:" msgstr "" -#: engine_dialog.cc:222 -#, fuzzy -msgid "Audio mode:" -msgstr "Ηχητικά frames" - #: engine_dialog.cc:284 engine_dialog.cc:408 msgid "Ignore" msgstr "" @@ -6296,29 +3253,14 @@ msgstr "" msgid "Output device:" msgstr "" -#: engine_dialog.cc:348 -#, fuzzy -msgid "Hardware input latency:" -msgstr "Hardware Είσοδοι: χÏήση" - #: engine_dialog.cc:351 engine_dialog.cc:357 msgid "samples" msgstr "" -#: engine_dialog.cc:354 -#, fuzzy -msgid "Hardware output latency:" -msgstr "Hardware Έξοδοι: χÏήση" - #: engine_dialog.cc:368 msgid "Device" msgstr "" -#: engine_dialog.cc:370 -#, fuzzy -msgid "Advanced" -msgstr "ΠÏοχωÏημένα..." - #: engine_dialog.cc:653 msgid "cannot open JACK rc file %1 to store parameters" msgstr "" @@ -6364,20 +3306,10 @@ msgstr "" msgid "configuration files contain a JACK server path that doesn't exist (%1)" msgstr "" -#: export_channel_selector.cc:45 sfdb_ui.cc:145 -#, fuzzy -msgid "Channels:" -msgstr "Κανάλια" - #: export_channel_selector.cc:46 msgid "Split to mono files" msgstr "" -#: export_channel_selector.cc:182 -#, fuzzy -msgid "Bus or Track" -msgstr "ως Κανάλια" - #: export_channel_selector.cc:459 msgid "Region contents without fades nor region gain (channels: %1)" msgstr "" @@ -6390,33 +3322,12 @@ msgstr "" msgid "Track output (channels: %1)" msgstr "" -#: export_channel_selector.cc:536 -#, fuzzy -msgid "Export region contents" -msgstr "Εξαγωγή ΣυνεδÏίας" - -#: export_channel_selector.cc:537 -#, fuzzy -msgid "Export track output" -msgstr "ΣÏνδεση νέων outputs καναλιου στο master" - #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten." msgstr "" -#: export_dialog.cc:47 -#, fuzzy -msgid "List files" -msgstr "Ï€Ïοσθήκη ηχο-αÏχείου" - -#: export_dialog.cc:164 export_timespan_selector.cc:355 -#: export_timespan_selector.cc:417 -#, fuzzy -msgid "Time Span" -msgstr "ΕÏÏος Zoom" - #: export_dialog.cc:176 msgid "Channels" msgstr "Κανάλια" @@ -6439,11 +3350,6 @@ msgstr "" msgid "Stop Export" msgstr "ΠαÏση Εξαγωγής" -#: export_dialog.cc:337 -#, fuzzy -msgid "export" -msgstr "Εξαγωγή" - #: export_dialog.cc:356 msgid "Normalizing '%3' (timespan %1 of %2)" msgstr "" @@ -6466,30 +3372,10 @@ msgid "" "Warning: " msgstr "" -#: export_dialog.cc:420 -#, fuzzy -msgid "Export Selection" -msgstr "Εξαγωγή ΣυνεδÏίας" - -#: export_dialog.cc:433 -#, fuzzy -msgid "Export Region" -msgstr "Εξαγωγή ΣυνεδÏίας" - #: export_dialog.cc:443 msgid "Source" msgstr "" -#: export_dialog.cc:458 -#, fuzzy -msgid "Stem Export" -msgstr "ΠαÏση Εξαγωγής" - -#: export_file_notebook.cc:38 -#, fuzzy -msgid "Add another format" -msgstr "ΠÏόσθεση αÏχείου ήχου ή φακέλου" - #: export_file_notebook.cc:178 msgid "Format" msgstr "" @@ -6498,35 +3384,10 @@ msgstr "" msgid "Location" msgstr "Τοποθεσία" -#: export_file_notebook.cc:255 -#, fuzzy -msgid "No format!" -msgstr "Εντόπιο Format" - -#: export_file_notebook.cc:267 -#, fuzzy -msgid "Format %1: %2" -msgstr "Κανονικό" - #: export_filename_selector.cc:32 msgid "Label:" msgstr "" -#: export_filename_selector.cc:33 -#, fuzzy -msgid "Session Name" -msgstr "Îέο Όνομα ΣυνεδÏίας:" - -#: export_filename_selector.cc:34 -#, fuzzy -msgid "Revision:" -msgstr "ΣυνεδÏία" - -#: export_filename_selector.cc:36 -#, fuzzy -msgid "Folder:" -msgstr "Όνομα φακέλου:" - #: export_filename_selector.cc:37 session_import_dialog.cc:44 #: transcode_video_dialog.cc:59 video_server_dialog.cc:45 #: video_server_dialog.cc:47 export_video_dialog.cc:69 @@ -6558,39 +3419,14 @@ msgstr "" msgid "Choose export folder" msgstr "" -#: export_format_dialog.cc:31 -#, fuzzy -msgid "New Export Format Profile" -msgstr "Εξαγωγή σε αÏχείο" - -#: export_format_dialog.cc:31 -#, fuzzy -msgid "Edit Export Format Profile" -msgstr "Εξαγωγή σε αÏχείο" - #: export_format_dialog.cc:38 msgid "Label: " msgstr "" -#: export_format_dialog.cc:41 normalize_dialog.cc:42 -#, fuzzy -msgid "Normalize to:" -msgstr "Εξομάλυνση" - -#: export_format_dialog.cc:46 -#, fuzzy -msgid "Trim silence at start" -msgstr "αÏχή επιλογής Ï€Ïος ισοστάθμιση" - #: export_format_dialog.cc:47 msgid "Add silence at start:" msgstr "" -#: export_format_dialog.cc:50 -#, fuzzy -msgid "Trim silence at end" -msgstr "τέλος επιλογής Ï€Ïος ισοστάθμιση" - #: export_format_dialog.cc:51 msgid "Add silence at end:" msgstr "" @@ -6603,21 +3439,6 @@ msgstr "" msgid "Quality" msgstr "" -#: export_format_dialog.cc:57 -#, fuzzy -msgid "File format" -msgstr "Εντόπιο Format" - -#: export_format_dialog.cc:59 -#, fuzzy -msgid "Sample rate conversion quality:" -msgstr "Ποιότητα ΜετατÏοπής" - -#: export_format_dialog.cc:66 -#, fuzzy -msgid "Dithering" -msgstr "ΜέτÏηση" - #: export_format_dialog.cc:68 msgid "Create CUE file for disk-at-once CD/DVD creation" msgstr "" @@ -6642,38 +3463,6 @@ msgstr "" msgid "Fast (sinc)" msgstr "" -#: export_format_dialog.cc:481 -#, fuzzy -msgid "Zero order hold" -msgstr "ΠαÏση ΜετÏητή" - -#: export_format_dialog.cc:879 -#, fuzzy -msgid "Linear encoding options" -msgstr "εκκαθάÏιση συνδέσεων" - -#: export_format_dialog.cc:895 -#, fuzzy -msgid "Ogg Vorbis options" -msgstr "Επιλογές Εμφανίσεως" - -#: export_format_dialog.cc:908 -#, fuzzy -msgid "FLAC options" -msgstr "Τοποθεσίες" - -#: export_format_dialog.cc:925 -#, fuzzy -msgid "Broadcast Wave options" -msgstr "Broadcast WAVE/μεταβλητής υποδ/λής" - -#: export_format_selector.cc:136 -#, fuzzy -msgid "Do you really want to remove the format?" -msgstr "" -"Στ'αλήθεια θέλετε να απαλοίψετε το κανάλι \"%1\" ?\n" -"(δεν μποÏεί να ανακληθεί)" - #: export_preset_selector.cc:28 msgid "Preset" msgstr "" @@ -6684,13 +3473,6 @@ msgid "" "Perhaps it references a format that has been removed?" msgstr "" -#: export_preset_selector.cc:156 -#, fuzzy -msgid "Do you really want to remove this preset?" -msgstr "" -"Στ'αλήθεια θέλετε να απαλοίψετε το κανάλι \"%1\" ?\n" -"(δεν μποÏεί να ανακληθεί)" - #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "" @@ -6699,16 +3481,6 @@ msgstr "" msgid " to " msgstr "" -#: export_timespan_selector.cc:348 export_timespan_selector.cc:407 -#, fuzzy -msgid "Range" -msgstr "Διάστημα" - -#: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 -#, fuzzy -msgid "curl error %1 (%2)" -msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: %1" - #: sfdb_freesound_mootcher.cc:266 msgid "getSoundResourceFile: There is no valid root in the xml file" msgstr "" @@ -6733,11 +3505,6 @@ msgstr "ΛειτουÏγία Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Fader" msgid "Fader automation type" msgstr "ΤÏπος Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Fader" -#: gain_meter.cc:122 gain_meter.cc:795 panner_ui.cc:178 panner_ui.cc:590 -#, fuzzy -msgid "Abs" -msgstr "abs" - #: gain_meter.cc:762 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:557 #: route_time_axis.cc:2411 msgid "P" @@ -6768,16 +3535,6 @@ msgid "Plugin Editor: could not build control element for port %1" msgstr "" "ΕπεξεÏγαστής Plugin: δεν μπόÏεσα να κτίσω στοιχείο ελέγχου για τη θÏÏα %1" -#: generic_pluginui.cc:408 -#, fuzzy -msgid "Meters" -msgstr "ΜετÏητής" - -#: generic_pluginui.cc:423 -#, fuzzy -msgid "Automation control" -msgstr "έλεγχος αυτοματισμοÏ" - #: generic_pluginui.cc:430 msgid "Mgnual" msgstr "" @@ -6786,81 +3543,26 @@ msgstr "" msgid "Audio Connection Manager" msgstr "" -#: global_port_matrix.cc:167 -#, fuzzy -msgid "MIDI Connection Manager" -msgstr "Συνδέσεις Εισόδου" - #: global_port_matrix.cc:213 io_selector.cc:216 msgid "port" msgstr "θÏÏα" -#: group_tabs.cc:308 -#, fuzzy -msgid "Selection..." -msgstr "ΑναπαÏ/γή επιλογής" - #: group_tabs.cc:309 msgid "Record Enabled..." msgstr "" -#: group_tabs.cc:310 -#, fuzzy -msgid "Soloed..." -msgstr "Σόλο" - -#: group_tabs.cc:316 -#, fuzzy -msgid "Create New Group ..." -msgstr "ΧωÏίς group" - #: group_tabs.cc:317 msgid "Create New Group From" msgstr "" -#: group_tabs.cc:320 -#, fuzzy -msgid "Edit Group..." -msgstr "ΧωÏίς group" - -#: group_tabs.cc:321 -#, fuzzy -msgid "Collect Group" -msgstr "Επιλογή" - -#: group_tabs.cc:322 -#, fuzzy -msgid "Remove Group" -msgstr "ΔιαμόÏφωση Group" - -#: group_tabs.cc:325 -#, fuzzy -msgid "Remove Subgroup Bus" -msgstr "ΠÏόσθεση group" - -#: group_tabs.cc:327 -#, fuzzy -msgid "Add New Subgroup Bus" -msgstr "ΠÏόσθεση group" - #: group_tabs.cc:329 msgid "Add New Aux Bus (pre-fader)" msgstr "" -#: group_tabs.cc:330 -#, fuzzy -msgid "Add New Aux Bus (post-fader)" -msgstr "ΕκκαθάÏιση μέτÏου" - #: group_tabs.cc:336 msgid "Enable All Groups" msgstr "" -#: group_tabs.cc:337 -#, fuzzy -msgid "Disable All Groups" -msgstr "ΑπενεÏγοποίηση Όλων" - #: gtk-custom-ruler.c:133 msgid "Lower limit of ruler" msgstr "ΚατώτεÏο ÏŒÏιο κλίμακας" @@ -6897,70 +3599,20 @@ msgstr "Σχηματισμός Ï„Ïέχουσας θέσης κλίμακας" msgid "Time to insert:" msgstr "" -#: insert_time_dialog.cc:54 -#, fuzzy -msgid "Intersected regions should:" -msgstr "καθοÏισμός επιλεγμένων πεÏιοχών" - -#: insert_time_dialog.cc:57 -#, fuzzy -msgid "stay in position" -msgstr "Με Θέση ΠεÏιοχής" - -#: insert_time_dialog.cc:58 -#, fuzzy -msgid "move" -msgstr "Απαλοιφή" - -#: insert_time_dialog.cc:59 -#, fuzzy -msgid "be split" -msgstr "διαχωÏισμός" - #: insert_time_dialog.cc:65 msgid "Insert time on all the track's playlists" msgstr "" -#: insert_time_dialog.cc:68 -#, fuzzy -msgid "Move glued regions" -msgstr "επιλογή πεÏιοχών" - -#: insert_time_dialog.cc:70 -#, fuzzy -msgid "Move markers" -msgstr "μετακίνηση στίγματος" - -#: insert_time_dialog.cc:73 -#, fuzzy -msgid "Move glued markers" -msgstr "μετακίνηση στίγματος" - -#: insert_time_dialog.cc:78 -#, fuzzy -msgid "Move locked markers" -msgstr "μετακίνηση στίγματος" - #: insert_time_dialog.cc:83 msgid "" "Move tempo and meter changes\n" "(may cause oddities in the tempo map)" msgstr "" -#: insert_time_dialog.cc:91 -#, fuzzy -msgid "Insert time" -msgstr "ΠÏοσθήκη επιλεγμένου(ων)" - #: interthread_progress_window.cc:103 msgid "Importing file: %1 of %2" msgstr "" -#: io_selector.cc:220 -#, fuzzy -msgid "I/O selector" -msgstr "ΑντιστÏοφή επιλογής" - #: io_selector.cc:265 msgid "%1 input" msgstr "%1 είσοδος" @@ -6981,16 +3633,6 @@ msgstr "" msgid "Key bindings file \"%1\" not found. Default bindings used instead" msgstr "" -#: keyeditor.cc:54 -#, fuzzy -msgid "Remove shortcut" -msgstr "Απαλοιφή Output" - -#: keyeditor.cc:64 -#, fuzzy -msgid "Action" -msgstr "ΑκÏόαση" - #: keyeditor.cc:65 msgid "Shortcut" msgstr "" @@ -7003,35 +3645,10 @@ msgstr "" msgid "Main_menu" msgstr "" -#: keyeditor.cc:255 -#, fuzzy -msgid "redirectmenu" -msgstr "ΠÏο-Redirects" - -#: keyeditor.cc:257 -#, fuzzy -msgid "Editor_menus" -msgstr "επεξεÏγαστής" - -#: keyeditor.cc:259 -#, fuzzy -msgid "RegionList" -msgstr "ΠεÏιοχές" - -#: keyeditor.cc:261 -#, fuzzy -msgid "ProcessorMenu" -msgstr "Μετονομασία ΚαναλιοÏ" - #: latency_gui.cc:39 msgid "sample" msgstr "" -#: latency_gui.cc:40 -#, fuzzy -msgid "msec" -msgstr "msecs" - #: latency_gui.cc:41 msgid "period" msgstr "" @@ -7046,11 +3663,6 @@ msgstr[1] "" msgid "Reset" msgstr "" -#: latency_gui.cc:151 rhythm_ferret.cc:274 sfdb_ui.cc:1755 -#, fuzzy -msgid "programming error: %1 (%2)" -msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: %1" - #: location_ui.cc:50 location_ui.cc:52 msgid "Use PH" msgstr "" @@ -7075,11 +3687,6 @@ msgstr "" msgid "Pre-Emphasis" msgstr "" -#: location_ui.cc:314 -#, fuzzy -msgid "Remove this range" -msgstr "θέση punch διαστήματος" - #: location_ui.cc:315 msgid "Start time - middle click to locate here" msgstr "" @@ -7088,49 +3695,14 @@ msgstr "" msgid "End time - middle click to locate here" msgstr "" -#: location_ui.cc:319 -#, fuzzy -msgid "Set range start from playhead location" -msgstr "ΟÏισμός Στίγματος Διαστήματος από playhead" - -#: location_ui.cc:320 -#, fuzzy -msgid "Set range end from playhead location" -msgstr "ΟÏισμός διαστήματος από επιλογή" - -#: location_ui.cc:324 -#, fuzzy -msgid "Remove this marker" -msgstr "μετακίνηση στίγματος" - #: location_ui.cc:325 msgid "Position - middle click to locate here" msgstr "" -#: location_ui.cc:327 -#, fuzzy -msgid "Set marker time from playhead location" -msgstr "ΟÏισμός διαστήματος από επιλογή" - #: location_ui.cc:494 msgid "You cannot put a CD marker at the start of the session" msgstr "" -#: location_ui.cc:720 -#, fuzzy -msgid "New Marker" -msgstr "Στίγμα" - -#: location_ui.cc:721 -#, fuzzy -msgid "New Range" -msgstr "ΠÏόσθεση νέου διαστήματος" - -#: location_ui.cc:734 -#, fuzzy -msgid "Loop/Punch Ranges" -msgstr "Διαστήματα Loop/Punch" - #: location_ui.cc:759 msgid "Markers (Including CD Index)" msgstr "" @@ -7143,40 +3715,6 @@ msgstr "" msgid "add range marker" msgstr "Ï€Ïόσθεση στίγματος διαστήματος" -#: main.cc:83 -#, fuzzy -msgid "%1 could not connect to JACK." -msgstr "Το Ardour δεν μπόÏεσε να συνδεθεί στον JACK." - -#: main.cc:87 -#, fuzzy -msgid "" -"There are several possible reasons:\n" -"\n" -"1) JACK is not running.\n" -"2) JACK is running as another user, perhaps root.\n" -"3) There is already another client called \"%1\".\n" -"\n" -"Please consider the possibilities, and perhaps (re)start JACK." -msgstr "" -"ΥπάÏχουν διάφοÏοι πιθανοί λόγοι:\n" -"\n" -"1) Ο JACK δεν Ï„Ïέχει.\n" -"2) JACK Ï„Ïέχει σαν άλλος ΧÏήστης, ίσως σαν root.\n" -"3) ΥπάÏχει ήδη άλλο Ï€ÏόγÏαμμα με το όνομα \"ardour\".\n" -"\n" -"ΠαÏακαλώ αναλογιστείτε τις πιθανότητες, ίσως (ξανα)ξεκινήστε τον JACK." - -#: main.cc:203 main.cc:324 -#, fuzzy -msgid "cannot create user %3 folder %1 (%2)" -msgstr "δεν γίνεται νέος αÏχηγός process group (%1)" - -#: main.cc:210 main.cc:331 -#, fuzzy -msgid "cannot open pango.rc file %1" -msgstr "το αÏχείο καθοÏÎ¹ÏƒÎ¼Î¿Ï Ï‡Ïωμάτων %1: %2 δεν ανοίγει" - #: main.cc:235 main.cc:358 msgid "Cannot find ArdourMono TrueType font" msgstr "" @@ -7224,24 +3762,6 @@ msgstr "" msgid " and GCC version " msgstr "" -#: main.cc:500 -#, fuzzy -msgid "Copyright (C) 1999-2012 Paul Davis" -msgstr "Πνευματικα Δικαιώματα 1999-2004 Paul Davis" - -#: main.cc:501 -#, fuzzy -msgid "" -"Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " -"Baker, Robin Gareus" -msgstr "" -"ΜεÏικά μέÏη Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel Baker" - -#: main.cc:503 -#, fuzzy -msgid "%1 comes with ABSOLUTELY NO WARRANTY" -msgstr "Ο Ardour έÏχεται με απολÏτως ΚΑΜΙΑ ΕΓΓΥΗΣΗ" - #: main.cc:504 msgid "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." msgstr "" @@ -7257,25 +3777,10 @@ msgstr "" "υπό οÏισμένους ÏŒÏους, ανατÏέξτε στον κώδικα για τους ÏŒÏους\n" " αντιγÏαφής." -#: main.cc:513 -#, fuzzy -msgid "could not initialize %1." -msgstr "δεν γινόταν να εκκινηθεί ο Ardour." - #: main.cc:522 msgid "Cannot xinstall SIGPIPE error handler" msgstr "" -#: main.cc:528 -#, fuzzy -msgid "could not create %1 GUI" -msgstr "δεν γινόταν να δημιουÏγηθεί ARDOUR GUI" - -#: main_clock.cc:51 -#, fuzzy -msgid "Display delta to edit cursor" -msgstr "Από αÏχή μέχÏι κέÏσοÏα επεξεÏγασίας" - #: marker.cc:251 video_image_frame.cc:121 msgid "MarkerText" msgstr "ΚείμενοΣτίγματος" @@ -7294,45 +3799,10 @@ msgstr "ΑντιστÏοφή" msgid "Force" msgstr "" -#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 -#, fuzzy -msgid "MIDI Channel Control" -msgstr "MMC ΘÏÏα" - -#: midi_channel_selector.cc:332 -#, fuzzy -msgid "Playback all channels" -msgstr "ΑπόκÏυψη όλων των crossfades" - -#: midi_channel_selector.cc:333 -#, fuzzy -msgid "Play only selected channels" -msgstr "ΚαθοÏισμός Διαστήματος" - #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" -#: midi_channel_selector.cc:335 -#, fuzzy -msgid "Record all channels" -msgstr "ΑπόκÏυψη όλων των crossfades" - -#: midi_channel_selector.cc:336 -#, fuzzy -msgid "Record only selected channels" -msgstr "ΛειτουÏγία Επεξ/σίας" - -#: midi_channel_selector.cc:337 -#, fuzzy -msgid "Force all channels to 1 channel" -msgstr "κανάλια" - -#: midi_channel_selector.cc:378 -#, fuzzy -msgid "Inbound" -msgstr "ÎŒÏια πεÏιοχών" - #: midi_channel_selector.cc:398 msgid "Click to enable recording all channels" msgstr "" @@ -7345,11 +3815,6 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" -#: midi_channel_selector.cc:415 -#, fuzzy -msgid "Playback" -msgstr "Διακοπή ΑναπαÏ/γής" - #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -7394,26 +3859,6 @@ msgstr "" msgid "Triplet" msgstr "" -#: midi_list_editor.cc:58 -#, fuzzy -msgid "Quarter" -msgstr "τέταÏτο (4)" - -#: midi_list_editor.cc:59 -#, fuzzy -msgid "Eighth" -msgstr "Δεξιό" - -#: midi_list_editor.cc:60 -#, fuzzy -msgid "Sixteenth" -msgstr "δέκατο έκτο (16)" - -#: midi_list_editor.cc:61 -#, fuzzy -msgid "Thirty-second" -msgstr "Ï„Ïιακοστό-όγδοο (32)" - #: midi_list_editor.cc:62 msgid "Sixty-fourth" msgstr "" @@ -7426,89 +3871,14 @@ msgstr "" msgid "Vel" msgstr "" -#: midi_list_editor.cc:215 -#, fuzzy -msgid "edit note start" -msgstr "ΛειτουÏγία Επεξ/σίας" - -#: midi_list_editor.cc:224 -#, fuzzy -msgid "edit note channel" -msgstr "ΛειτουÏγία Επεξ/σίας" - -#: midi_list_editor.cc:234 -#, fuzzy -msgid "edit note number" -msgstr "ΛειτουÏγία Επεξ/σίας" - -#: midi_list_editor.cc:244 -#, fuzzy -msgid "edit note velocity" -msgstr "ΛειτουÏγία Επεξ/σίας" - -#: midi_list_editor.cc:258 -#, fuzzy -msgid "edit note length" -msgstr "αλλαγή μήκους fade out" - -#: midi_list_editor.cc:460 -#, fuzzy -msgid "insert new note" -msgstr "Ï€Ïοσθήκη ηχο-αÏχείου" - -#: midi_list_editor.cc:524 -#, fuzzy -msgid "delete notes (from list)" -msgstr "διαγÏαμμένα αÏχεία" - -#: midi_list_editor.cc:599 -#, fuzzy -msgid "change note channel" -msgstr "κανάλια" - -#: midi_list_editor.cc:607 -#, fuzzy -msgid "change note number" -msgstr "αλλαγή μήκους fade out" - -#: midi_list_editor.cc:617 -#, fuzzy -msgid "change note velocity" -msgstr "επιλογή διαστήματος" - -#: midi_list_editor.cc:687 -#, fuzzy -msgid "change note length" -msgstr "αλλαγή μήκους fade out" - -#: midi_port_dialog.cc:39 -#, fuzzy -msgid "Add MIDI Port" -msgstr "Ï€Ïόσθεση θÏÏας" - -#: midi_port_dialog.cc:40 -#, fuzzy -msgid "Port name:" -msgstr "Όνομα φακέλου:" - #: midi_port_dialog.cc:45 msgid "MidiPortDialog" msgstr "" -#: midi_region_view.cc:838 -#, fuzzy -msgid "channel edit" -msgstr "κανάλια" - #: midi_region_view.cc:874 msgid "velocity edit" msgstr "" -#: midi_region_view.cc:931 -#, fuzzy -msgid "add note" -msgstr "ΛειτουÏγία Επεξ/σίας" - #: midi_region_view.cc:1779 msgid "step add" msgstr "" @@ -7517,68 +3887,18 @@ msgstr "" msgid "insane MIDI patch key %1:%2" msgstr "" -#: midi_region_view.cc:1870 midi_region_view.cc:1890 -#, fuzzy -msgid "alter patch change" -msgstr "αλλαγή σιγής" - #: midi_region_view.cc:1924 msgid "add patch change" msgstr "" -#: midi_region_view.cc:1942 -#, fuzzy -msgid "move patch change" -msgstr "αλλαγή σιγής" - -#: midi_region_view.cc:1953 -#, fuzzy -msgid "delete patch change" -msgstr "θέση punch διαστήματος" - -#: midi_region_view.cc:2022 -#, fuzzy -msgid "delete selection" -msgstr "επέκταση επιλογής" - -#: midi_region_view.cc:2038 -#, fuzzy -msgid "delete note" -msgstr "διαγÏαμμένα αÏχεία" - -#: midi_region_view.cc:2425 -#, fuzzy -msgid "move notes" -msgstr "Απαλοιφή Διαστήματος" - #: midi_region_view.cc:2647 msgid "resize notes" msgstr "" -#: midi_region_view.cc:2901 -#, fuzzy -msgid "change velocities" -msgstr "επιλογή διαστήματος" - #: midi_region_view.cc:2967 msgid "transpose" msgstr "" -#: midi_region_view.cc:3001 -#, fuzzy -msgid "change note lengths" -msgstr "αλλαγή μήκους fade out" - -#: midi_region_view.cc:3070 -#, fuzzy -msgid "nudge" -msgstr "ÎÏξη" - -#: midi_region_view.cc:3085 -#, fuzzy -msgid "change channel" -msgstr "κανάλια" - #: midi_region_view.cc:3130 msgid "Bank " msgstr "" @@ -7587,73 +3907,18 @@ msgstr "" msgid "Program " msgstr "" -#: midi_region_view.cc:3132 -#, fuzzy -msgid "Channel " -msgstr "Κανάλια" - #: midi_region_view.cc:3301 midi_region_view.cc:3303 msgid "paste" msgstr "επικόλληση" -#: midi_region_view.cc:3761 -#, fuzzy -msgid "delete sysex" -msgstr "διαγÏαμμένα αÏχεία" - -#: midi_streamview.cc:479 -#, fuzzy -msgid "failed to create MIDI region" -msgstr "ardour: μετονομασία πεÏιοχής" - #: midi_time_axis.cc:262 msgid "External MIDI Device" msgstr "" -#: midi_time_axis.cc:263 -#, fuzzy -msgid "External Device Mode" -msgstr "Snap σε cd frame" - #: midi_time_axis.cc:271 msgid "Chns" msgstr "" -#: midi_time_axis.cc:272 -#, fuzzy -msgid "Click to edit channel settings" -msgstr "ΕκκαθάÏιση όλων των θέσεων" - -#: midi_time_axis.cc:486 -#, fuzzy -msgid "Show Full Range" -msgstr "Ανάδειξη όλων" - -#: midi_time_axis.cc:491 -#, fuzzy -msgid "Fit Contents" -msgstr "Σχόλια" - -#: midi_time_axis.cc:495 -#, fuzzy -msgid "Note Range" -msgstr " διαστήματος" - -#: midi_time_axis.cc:496 -#, fuzzy -msgid "Note Mode" -msgstr "λειτουÏγία" - -#: midi_time_axis.cc:497 -#, fuzzy -msgid "Channel Selector" -msgstr "ΑÏιθμός Καναλιών" - -#: midi_time_axis.cc:502 -#, fuzzy -msgid "Color Mode" -msgstr "ΧÏώμα" - #: midi_time_axis.cc:561 msgid "Bender" msgstr "" @@ -7662,41 +3927,6 @@ msgstr "" msgid "Pressure" msgstr "" -#: midi_time_axis.cc:578 -#, fuzzy -msgid "Controllers" -msgstr "Πίνακας Ελέγχου" - -#: midi_time_axis.cc:583 -#, fuzzy -msgid "No MIDI Channels selected" -msgstr "ΠÏοσθήκη επιλεγμένου(ων)" - -#: midi_time_axis.cc:640 midi_time_axis.cc:769 -#, fuzzy -msgid "Hide all channels" -msgstr "ΑπόκÏυψη όλων των crossfades" - -#: midi_time_axis.cc:644 midi_time_axis.cc:773 -#, fuzzy -msgid "Show all channels" -msgstr "ΕπαναφοÏά όλων των crossfades" - -#: midi_time_axis.cc:655 midi_time_axis.cc:784 -#, fuzzy -msgid "Channel %1" -msgstr "Κανάλια" - -#: midi_time_axis.cc:910 midi_time_axis.cc:942 -#, fuzzy -msgid "Controllers %1-%2" -msgstr "Πίνακας Ελέγχου" - -#: midi_time_axis.cc:933 midi_time_axis.cc:936 -#, fuzzy -msgid "Controller %1" -msgstr "Πίνακας Ελέγχου" - #: midi_time_axis.cc:959 msgid "Sustained" msgstr "" @@ -7705,27 +3935,6 @@ msgstr "" msgid "Percussive" msgstr "" -#: midi_time_axis.cc:986 -#, fuzzy -msgid "Meter Colors" -msgstr "ΠαÏση ΜετÏητή" - -#: midi_time_axis.cc:993 -#, fuzzy -msgid "Channel Colors" -msgstr "ΑÏιθμός Καναλιών" - -#: midi_time_axis.cc:1000 -#, fuzzy -msgid "Track Color" -msgstr "ΧÏώμα" - -#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 -#: midi_time_axis.cc:1510 -#, fuzzy -msgid "all" -msgstr "ΜικÏÏŒ" - #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" @@ -7742,49 +3951,14 @@ msgstr "" msgid "Decimal" msgstr "" -#: midi_tracer.cc:53 rc_option_editor.cc:659 -#, fuzzy -msgid "Enabled" -msgstr "ΕνεÏγοποίηση ΕγγÏαφής" - -#: midi_tracer.cc:54 -#, fuzzy -msgid "Delta times" -msgstr "ΑÏχή σημείου ισοσταθμίσεως" - -#: midi_tracer.cc:66 -#, fuzzy -msgid "Port:" -msgstr "Ï€Ïόσθεση θÏÏας" - -#: midi_velocity_dialog.cc:31 -#, fuzzy -msgid "New velocity" -msgstr "επιλογή διαστήματος" - #: missing_file_dialog.cc:34 msgid "Missing File!" msgstr "" -#: missing_file_dialog.cc:36 -#, fuzzy -msgid "Select a folder to search" -msgstr "Επιλογή όλων μετά τον κέÏσοÏα επεξεÏγασίας" - #: missing_file_dialog.cc:37 msgid "Add chosen folder to search path, and try again" msgstr "" -#: missing_file_dialog.cc:39 -#, fuzzy -msgid "Stop loading this session" -msgstr "ΠαÏση αναπαÏαγωγέα στο τέλος της συνεδÏίας" - -#: missing_file_dialog.cc:40 -#, fuzzy -msgid "Skip all missing files" -msgstr "ΠαÏάκαμψη Anti-aliasing" - #: missing_file_dialog.cc:41 msgid "Skip this file" msgstr "" @@ -7809,11 +3983,6 @@ msgstr "" msgid "Click to choose an additional folder" msgstr "" -#: missing_plugin_dialog.cc:29 -#, fuzzy -msgid "Missing Plugins" -msgstr "Plugins" - #: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 msgid "OK" msgstr "OK" @@ -7842,41 +4011,6 @@ msgstr "" msgid "Set Gain to 0dB on Mixer-Selected Tracks/Busses" msgstr "" -#: mixer_actor.cc:63 -#, fuzzy -msgid "Copy Selected Processors" -msgstr "επιλογή πεÏιοχών" - -#: mixer_actor.cc:64 -#, fuzzy -msgid "Cut Selected Processors" -msgstr "θέση επιλεγμένης οπτικής καναλιοÏ" - -#: mixer_actor.cc:65 -#, fuzzy -msgid "Paste Selected Processors" -msgstr "καθοÏισμός επιλεγμένων πεÏιοχών" - -#: mixer_actor.cc:66 -#, fuzzy -msgid "Delete Selected Processors" -msgstr "καθοÏισμός επιλεγμένων πεÏιοχών" - -#: mixer_actor.cc:67 -#, fuzzy -msgid "Select All (visible) Processors" -msgstr "Διαθέσιμες ΘÏÏες" - -#: mixer_actor.cc:68 -#, fuzzy -msgid "Toggle Selected Processors" -msgstr "μετακίνηση στίγματος μετÏητή" - -#: mixer_actor.cc:69 -#, fuzzy -msgid "Toggle Selected Plugins" -msgstr "επιλογή πεÏιοχών" - #: mixer_actor.cc:72 mixer_actor.cc:73 msgid "Scroll Mixer Window to the left" msgstr "" @@ -7897,12 +4031,6 @@ msgstr "" msgid "pre" msgstr "Ï€Ïο" -#: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 -#: rc_option_editor.cc:1881 -#, fuzzy -msgid "Comments" -msgstr "Σχόλια" - #: mixer_strip.cc:147 msgid "Click to toggle the width of this mixer strip." msgstr "" @@ -7913,16 +4041,6 @@ msgid "" "%1-%2-click to toggle the width of all strips." msgstr "" -#: mixer_strip.cc:156 -#, fuzzy -msgid "Hide this mixer strip" -msgstr "ΑπόκÏυψη όλων των ΔιαδÏόμωνΜίξεως των διαÏλων" - -#: mixer_strip.cc:167 -#, fuzzy -msgid "Click to select metering point" -msgstr "επιλογή ενεÏγειών διαστήματος" - #: mixer_strip.cc:173 msgid "tupni" msgstr "" @@ -7939,52 +4057,10 @@ msgstr "" msgid "lock" msgstr "κλείδωμα" -#: mixer_strip.cc:204 mixer_strip.cc:1925 -#, fuzzy -msgid "iso" -msgstr "ins" - -#: mixer_strip.cc:258 -#, fuzzy -msgid "Mix group" -msgstr "ΧωÏίς group" - -#: mixer_strip.cc:351 rc_option_editor.cc:1878 -#, fuzzy -msgid "Phase Invert" -msgstr "ΑντιστÏοφή" - -#: mixer_strip.cc:352 rc_option_editor.cc:1879 route_ui.cc:1218 -#, fuzzy -msgid "Solo Safe" -msgstr "Σόλο" - #: mixer_strip.cc:355 mixer_ui.cc:124 route_time_axis.cc:673 msgid "Group" msgstr "" -#: mixer_strip.cc:356 rc_option_editor.cc:1882 -#, fuzzy -msgid "Meter Point" -msgstr "ΜέτÏηση" - -#: mixer_strip.cc:470 -#, fuzzy -msgid "Enable/Disable MIDI input" -msgstr "ΆÏση/ΠαÏση μετÏονόμου" - -#: mixer_strip.cc:622 -#, fuzzy -msgid "" -"Aux\n" -"Sends" -msgstr "ΔευτεÏόλεπτα" - -#: mixer_strip.cc:646 -#, fuzzy -msgid "Snd" -msgstr "ΔευτεÏόλεπτα" - #: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 msgid "Not connected to JACK - no I/O changes are possible" msgstr "Μη συνδεδεμένο με τον JACK - I/O αλλαγές αδÏνατες" @@ -7997,20 +4073,10 @@ msgstr "" msgid "OUTPUT from %1" msgstr "" -#: mixer_strip.cc:1174 -#, fuzzy -msgid "Disconnected" -msgstr "Αποσυνδέθηκε" - #: mixer_strip.cc:1303 msgid "*Comments*" msgstr "*Σχόλια*" -#: mixer_strip.cc:1310 -#, fuzzy -msgid "Cmt" -msgstr "Κοπή" - #: mixer_strip.cc:1313 msgid "*Cmt*" msgstr "" @@ -8031,16 +4097,6 @@ msgstr "" msgid "~G" msgstr "~G" -#: mixer_strip.cc:1467 -#, fuzzy -msgid "Comments..." -msgstr "Σχόλια" - -#: mixer_strip.cc:1469 -#, fuzzy -msgid "Save As Template..." -msgstr "Αποθήκευση Ï€Ïοσχεδίου..." - #: mixer_strip.cc:1475 route_group_dialog.cc:39 route_time_axis.cc:696 msgid "Active" msgstr "ΕνεÏγό" @@ -8053,11 +4109,6 @@ msgstr "" msgid "Protect Against Denormals" msgstr "" -#: mixer_strip.cc:1491 route_time_axis.cc:435 -#, fuzzy -msgid "Remote Control ID..." -msgstr "απαλοιφή σημείου ελέγχου" - #: mixer_strip.cc:1717 mixer_strip.cc:1741 msgid "in" msgstr "in" @@ -8074,21 +4125,6 @@ msgstr "out" msgid "custom" msgstr "" -#: mixer_strip.cc:1745 -#, fuzzy -msgid "pr" -msgstr "Ï€Ïο" - -#: mixer_strip.cc:1749 -#, fuzzy -msgid "po" -msgstr "πολ" - -#: mixer_strip.cc:1753 -#, fuzzy -msgid "o" -msgstr "έγινε" - #: mixer_strip.cc:1758 msgid "c" msgstr "" @@ -8105,35 +4141,10 @@ msgstr "" msgid "PFL" msgstr "" -#: mixer_strip.cc:1933 -#, fuzzy -msgid "D" -msgstr "CD" - -#: mixer_strip.cc:1953 -#, fuzzy -msgid "i" -msgstr "in" - -#: mixer_strip.cc:2128 -#, fuzzy -msgid "Pre-fader" -msgstr "ΠÏο Fader" - -#: mixer_strip.cc:2129 -#, fuzzy -msgid "Post-fader" -msgstr "Μετά Fader" - #: mixer_strip.cc:2166 meter_strip.cc:728 msgid "Change all in Group to %1" msgstr "" -#: mixer_strip.cc:2168 meter_strip.cc:730 -#, fuzzy -msgid "Change all to %1" -msgstr "Κανάλια" - #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -8150,11 +4161,6 @@ msgstr "-όλα-" msgid "Strips" msgstr "ΔιάδÏομοι" -#: meter_strip.cc:764 -#, fuzzy -msgid "Variable height" -msgstr "Το Ïψος" - #: meter_strip.cc:765 msgid "Short" msgstr "" @@ -8211,20 +4217,10 @@ msgstr "" msgid "SiP" msgstr "" -#: monitor_section.cc:86 -#, fuzzy -msgid "soloing" -msgstr "σόλο" - #: monitor_section.cc:90 msgid "isolated" msgstr "" -#: monitor_section.cc:94 -#, fuzzy -msgid "auditioning" -msgstr "ΑκÏόαση" - #: monitor_section.cc:104 msgid "" "When active, something is solo-isolated.\n" @@ -8283,11 +4279,6 @@ msgstr "" msgid "Exclusive solo means that only 1 solo is active at a time" msgstr "" -#: monitor_section.cc:199 -#, fuzzy -msgid "solo » mute" -msgstr "Solo μέσω διαÏλου" - #: monitor_section.cc:201 msgid "" "If enabled, solo will override mute\n" @@ -8306,25 +4297,10 @@ msgstr "" msgid "mono" msgstr "mono" -#: monitor_section.cc:266 -#, fuzzy -msgid "Monitor" -msgstr "Software Monitoring" - #: monitor_section.cc:678 msgid "Switch monitor to mono" msgstr "" -#: monitor_section.cc:681 -#, fuzzy -msgid "Cut monitor" -msgstr "Software Monitoring" - -#: monitor_section.cc:684 -#, fuzzy -msgid "Dim monitor" -msgstr "Software Monitoring" - #: monitor_section.cc:687 msgid "Toggle exclusive solo mode" msgstr "" @@ -8333,41 +4309,6 @@ msgstr "" msgid "Toggle mute overrides solo mode" msgstr "" -#: monitor_section.cc:705 -#, fuzzy -msgid "Cut monitor channel %1" -msgstr "ΔημιουÏγία Monitor Bus" - -#: monitor_section.cc:710 -#, fuzzy -msgid "Dim monitor channel %1" -msgstr "ΔημιουÏγία Monitor Bus" - -#: monitor_section.cc:715 -#, fuzzy -msgid "Solo monitor channel %1" -msgstr "ΔημιουÏγία Monitor Bus" - -#: monitor_section.cc:720 -#, fuzzy -msgid "Invert monitor channel %1" -msgstr "panner για το κανάλι %u" - -#: monitor_section.cc:730 -#, fuzzy -msgid "In-place solo" -msgstr "ΠÏοσκολλημένο σόλο" - -#: monitor_section.cc:732 -#, fuzzy -msgid "After Fade Listen (AFL) solo" -msgstr "ΕκκαθάÏιση μέτÏου" - -#: monitor_section.cc:734 -#, fuzzy -msgid "Pre Fade Listen (PFL) solo" -msgstr "ΕκκαθάÏιση μέτÏου" - #: mono_panner.cc:101 #, c-format msgid "L:%3d R:%3d" @@ -8433,31 +4374,6 @@ msgid "" "relies on a stable, sustainable income stream. Thanks for using Ardour!" msgstr "" -#: new_plugin_preset_dialog.cc:29 -#, fuzzy -msgid "New Preset" -msgstr "Îέο ΠÏοσθήκη" - -#: new_plugin_preset_dialog.cc:30 -#, fuzzy -msgid "Replace existing preset with this name" -msgstr "Κανάλι με αυτό το όνομα ήδη υπάÏχει" - -#: new_plugin_preset_dialog.cc:34 -#, fuzzy -msgid "Name of new preset" -msgstr "Όνομα για νέας Ï€ÏοÏÏÏθμισης:" - -#: normalize_dialog.cc:34 -#, fuzzy -msgid "Normalize regions" -msgstr "Κανονικοποίηση πεÏιοχής" - -#: normalize_dialog.cc:34 -#, fuzzy -msgid "Normalize region" -msgstr "Κανονικοποίηση πεÏιοχής" - #: normalize_dialog.cc:49 strip_silence_dialog.cc:70 msgid "dbFS" msgstr "dbFS" @@ -8478,43 +4394,11 @@ msgstr "Εξομάλυνση" msgid "Usage: " msgstr "ΧÏήση: " -#: opts.cc:58 -#, fuzzy -msgid " [SESSION_NAME] Name of session to load\n" -msgstr " [όνομα-συνεδÏίας] Όνομα συνεδÏίας Ï€Ïος φόÏτωση\n" - -#: opts.cc:59 -#, fuzzy -msgid " -v, --version Show version information\n" -msgstr " -v, --version ΠληÏοφοÏίες εκδόσεως\n" - -#: opts.cc:60 -#, fuzzy -msgid " -h, --help Print this message\n" -msgstr " -h, --help ΠÏοβολή του παÏόντος\n" - #: opts.cc:61 msgid "" " -a, --no-announcements Do not contact website for announcements\n" msgstr "" -#: opts.cc:62 -#, fuzzy -msgid "" -" -b, --bindings Print all possible keyboard binding names\n" -msgstr "" -" -b, --bindings ΠÏοβολή όλων των πιθανών δεσμών " -"πληκτÏολογίου ονόματα\n" - -#: opts.cc:63 -#, fuzzy -msgid "" -" -c, --name Use a specific jack client name, default is " -"ardour\n" -msgstr "" -" -c, --name name ΧÏήση συγκεκÏιμένου jack client ονόματος, " -"το default είναι ardour\n" - #: opts.cc:64 msgid "" " -d, --disable-plugins Disable all plugins in an existing session\n" @@ -8526,25 +4410,6 @@ msgid "" "available options\n" msgstr "" -#: opts.cc:66 -#, fuzzy -msgid " -n, --no-splash Do not show splash screen\n" -msgstr " -n, --show-splash Ανάδειξη εισαγωγικής εικόνας\n" - -#: opts.cc:67 -#, fuzzy -msgid " -m, --menus file Use \"file\" to define menus\n" -msgstr "" -" -U, --ui-rcfile path ΧÏήση συγκεκÏιμένου αÏχείου για UI στυλ\n" - -#: opts.cc:68 -#, fuzzy -msgid "" -" -N, --new session-name Create a new session from the command line\n" -msgstr "" -" -N, --new session-name ΔημιουÏγία νέας συνεδÏίας από γÏαμμή " -"εντολών\n" - #: opts.cc:69 msgid " -O, --no-hw-optimizations Disable h/w specific optimizations\n" msgstr "" @@ -8553,16 +4418,6 @@ msgstr "" msgid " -P, --no-connect-ports Do not connect any ports at startup\n" msgstr "" -#: opts.cc:71 -#, fuzzy -msgid " -S, --sync Draw the gui synchronously \n" -msgstr " -v, --version ΠληÏοφοÏίες εκδόσεως\n" - -#: opts.cc:73 -#, fuzzy -msgid " -V, --novst Do not use VST support\n" -msgstr " -V, --novst ΧωÏίς υποστήÏιξη VST\n" - #: opts.cc:75 msgid "" " -E, --save Load the specified session, save it to " @@ -8604,20 +4459,10 @@ msgid "" "No panner user interface is currently available for %1-in/2out tracks/busses" msgstr "" -#: playlist_selector.cc:43 -#, fuzzy -msgid "Playlists" -msgstr "Playlist" - #: playlist_selector.cc:54 msgid "Playlists grouped by track" msgstr "Playlists ομαδοποιημένες ανά κανάλι" -#: playlist_selector.cc:101 -#, fuzzy -msgid "Playlist for %1" -msgstr "Playlist" - #: playlist_selector.cc:114 msgid "Other tracks" msgstr "Άλλα κανάλια" @@ -8626,54 +4471,14 @@ msgstr "Άλλα κανάλια" msgid "unassigned" msgstr "" -#: playlist_selector.cc:194 -#, fuzzy -msgid "Imported" -msgstr "Εισαγωγή" - #: plugin_eq_gui.cc:75 plugin_eq_gui.cc:99 msgid "dB scale" msgstr "" -#: plugin_eq_gui.cc:106 -#, fuzzy -msgid "Show phase" -msgstr "Ανάδειξη γÏαμμών μετÏήσεων" - -#: plugin_selector.cc:53 plugin_selector.cc:220 -#, fuzzy -msgid "Name contains" -msgstr "Όνομα για playlist" - -#: plugin_selector.cc:54 plugin_selector.cc:224 -#, fuzzy -msgid "Type contains" -msgstr "εκκαθάÏιση συνδέσεων" - -#: plugin_selector.cc:55 plugin_selector.cc:222 -#, fuzzy -msgid "Category contains" -msgstr "ardour: συνδέσεις" - -#: plugin_selector.cc:56 plugin_selector.cc:244 -#, fuzzy -msgid "Author contains" -msgstr "ΔημιουÏγοί" - -#: plugin_selector.cc:57 plugin_selector.cc:246 -#, fuzzy -msgid "Library contains" -msgstr "εκκαθάÏιση συνδέσεων" - #: plugin_selector.cc:58 plugin_selector.cc:210 plugin_selector.cc:521 msgid "Favorites only" msgstr "" -#: plugin_selector.cc:59 plugin_selector.cc:214 plugin_selector.cc:521 -#, fuzzy -msgid "Hidden only" -msgstr "ΚÏυμμένο" - #: plugin_selector.cc:64 msgid "Plugin Manager" msgstr "" @@ -8682,11 +4487,6 @@ msgstr "" msgid "Fav" msgstr "" -#: plugin_selector.cc:86 -#, fuzzy -msgid "Available Plugins" -msgstr "Διαθέσιμα plugins" - #: plugin_selector.cc:87 msgid "Type" msgstr "ΤÏπωση" @@ -8695,36 +4495,6 @@ msgstr "ΤÏπωση" msgid "Category" msgstr "" -#: plugin_selector.cc:89 -#, fuzzy -msgid "Creator" -msgstr "ΔημιουÏγία" - -#: plugin_selector.cc:90 -#, fuzzy -msgid "# Audio In" -msgstr "ΑκÏόαση" - -#: plugin_selector.cc:91 -#, fuzzy -msgid "# Audio Out" -msgstr "ΠÏόσθεση Audio ΔιαÏλου" - -#: plugin_selector.cc:92 -#, fuzzy -msgid "# MIDI In" -msgstr "MIDI δεσμός" - -#: plugin_selector.cc:93 -#, fuzzy -msgid "# MIDI Out" -msgstr "Αναζήτηση MIDI Output" - -#: plugin_selector.cc:115 -#, fuzzy -msgid "Plugins to be connected" -msgstr "Plugins Ï€Ïος ΣÏνδεση με Insert" - #: plugin_selector.cc:128 msgid "Add a plugin to the effect list" msgstr "ΠÏόσθεση plugin στη λίστα των εφφέ" @@ -8737,11 +4507,6 @@ msgstr "Απαλοιφή plugin από τη λίστα των εφφέ" msgid "Update available plugins" msgstr "Ανανέωση διαθέσιμων plugins" -#: plugin_selector.cc:171 -#, fuzzy -msgid "Insert Plugin(s)" -msgstr "ΠÏοσθήκη πεÏιοχής" - #: plugin_selector.cc:320 plugin_selector.cc:321 plugin_selector.cc:322 #: plugin_selector.cc:323 msgid "variable" @@ -8754,21 +4519,6 @@ msgid "" "See the Log window for more details (maybe)" msgstr "" -#: plugin_selector.cc:628 -#, fuzzy -msgid "Favorites" -msgstr "awrite" - -#: plugin_selector.cc:630 -#, fuzzy -msgid "Plugin Manager..." -msgstr "Îέο Plugin ..." - -#: plugin_selector.cc:634 -#, fuzzy -msgid "By Creator" -msgstr "ΔημιουÏγία" - #: plugin_selector.cc:637 msgid "By Category" msgstr "" @@ -8777,31 +4527,6 @@ msgstr "" msgid "Eh? LADSPA plugins don't have editors!" msgstr "" -#: plugin_ui.cc:125 plugin_ui.cc:227 -#, fuzzy -msgid "" -"unknown type of editor-supplying plugin (note: no VST support in this " -"version of %1)" -msgstr "" -"άγνωστος Ï„Ïπος Ï€Ïομηθευμένου plugin για τον editor(σημείωση: δεν υπάÏχει " -"υποστήÏιξη VST στην παÏοÏσα έκδοση του ardour)" - -#: plugin_ui.cc:128 -#, fuzzy -msgid "unknown type of editor-supplying plugin" -msgstr "" -"άγνωστος Ï„Ïπος Ï€Ïομηθευμένου plugin για τον editor(σημείωση: δεν υπάÏχει " -"υποστήÏιξη VST στην παÏοÏσα έκδοση του ardour)" - -#: plugin_ui.cc:257 -#, fuzzy -msgid "" -"unknown type of editor-supplying plugin (note: no linuxVST support in this " -"version of %1)" -msgstr "" -"άγνωστος Ï„Ïπος Ï€Ïομηθευμένου plugin για τον editor(σημείωση: δεν υπάÏχει " -"υποστήÏιξη VST στην παÏοÏσα έκδοση του ardour)" - #: plugin_ui.cc:329 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "" @@ -8810,27 +4535,12 @@ msgstr "" msgid "Add" msgstr "ΠÏόσθεση" -#: plugin_ui.cc:421 -#, fuzzy -msgid "Description" -msgstr "ανάλυση" - -#: plugin_ui.cc:422 -#, fuzzy -msgid "Plugin analysis" -msgstr "Plugins" - #: plugin_ui.cc:429 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:430 -#, fuzzy -msgid "Save a new preset" -msgstr "Όνομα για νέας Ï€ÏοÏÏÏθμισης:" - #: plugin_ui.cc:431 msgid "Save the current preset" msgstr "" @@ -8863,11 +4573,6 @@ msgstr[1] "" msgid "latency (%1 ms)" msgstr "" -#: plugin_ui.cc:519 -#, fuzzy -msgid "Edit Latency" -msgstr "Επεξ/σία ΧÏόνου" - #: plugin_ui.cc:558 msgid "Plugin preset %1 not found" msgstr "ΠÏο-ÏÏθμιση plugin %1 δεν ευÏέθη" @@ -8888,31 +4593,6 @@ msgstr "" msgid "Click to allow normal use of %1 keyboard shortcuts" msgstr "" -#: port_group.cc:335 -#, fuzzy -msgid "%1 Busses" -msgstr "Δίαυλοι" - -#: port_group.cc:336 -#, fuzzy -msgid "%1 Tracks" -msgstr "σε Κανάλια" - -#: port_group.cc:337 -#, fuzzy -msgid "Hardware" -msgstr "Ηχητικά frames" - -#: port_group.cc:338 -#, fuzzy -msgid "%1 Misc" -msgstr "ΔιάφοÏα" - -#: port_group.cc:339 -#, fuzzy -msgid "Other" -msgstr "ΧÏησιμοποίηση άλλου" - #: port_group.cc:430 port_group.cc:431 msgid "LTC Out" msgstr "" @@ -8925,45 +4605,10 @@ msgstr "" msgid "MTC in" msgstr "" -#: port_group.cc:466 -#, fuzzy -msgid "MIDI control in" -msgstr "MMC ΘÏÏα" - -#: port_group.cc:469 -#, fuzzy -msgid "MIDI clock in" -msgstr "MIDI δεσμός" - -#: port_group.cc:472 -#, fuzzy -msgid "MMC in" -msgstr "MMC ID" - -#: port_group.cc:476 -#, fuzzy -msgid "MTC out" -msgstr "MTC ΘÏÏα" - -#: port_group.cc:479 -#, fuzzy -msgid "MIDI control out" -msgstr "χÏήση των control outs" - #: port_group.cc:482 msgid "MIDI clock out" msgstr "" -#: port_group.cc:485 -#, fuzzy -msgid "MMC out" -msgstr "MMC ΘÏÏα" - -#: port_group.cc:540 -#, fuzzy -msgid ":monitor" -msgstr "Software Monitoring" - #: port_group.cc:552 msgid "system:" msgstr "" @@ -8976,11 +4621,6 @@ msgstr "" msgid "Measure Latency" msgstr "" -#: port_insert_ui.cc:51 -#, fuzzy -msgid "Send/Output" -msgstr "Έξοδοι" - #: port_insert_ui.cc:52 msgid "Return/Input" msgstr "" @@ -8997,16 +4637,6 @@ msgstr "" msgid "Detecting ..." msgstr "" -#: port_insert_ui.cc:166 -#, fuzzy -msgid "Port Insert " -msgstr "Îέο ΠÏοσθήκη" - -#: port_matrix.cc:331 port_matrix.cc:357 -#, fuzzy -msgid "Sources" -msgstr "ΠÏοχωÏημένα..." - #: port_matrix.cc:332 port_matrix.cc:358 msgid "Destinations" msgstr "" @@ -9016,26 +4646,6 @@ msgstr "" msgid "Add %s %s" msgstr "" -#: port_matrix.cc:456 -#, fuzzy, c-format -msgid "Rename '%s'..." -msgstr "Μετονομασία" - -#: port_matrix.cc:472 -#, fuzzy -msgid "Remove all" -msgstr "Απαλοιφή Στίγματος" - -#: port_matrix.cc:492 port_matrix.cc:504 -#, fuzzy, c-format -msgid "%s all" -msgstr "Επιλογή όλων" - -#: port_matrix.cc:527 -#, fuzzy -msgid "Rescan" -msgstr "Επανα-ανίχνευση" - #: port_matrix.cc:529 msgid "Show individual ports" msgstr "" @@ -9065,31 +4675,6 @@ msgid "" "the new number of inputs or the last plugin has more outputs." msgstr "" -#: port_matrix.cc:966 -#, fuzzy, c-format -msgid "Remove '%s'" -msgstr "Απαλοιφή" - -#: port_matrix.cc:981 -#, fuzzy, c-format -msgid "%s all from '%s'" -msgstr "Επιλογή όλων από loop" - -#: port_matrix.cc:1047 -#, fuzzy -msgid "channel" -msgstr "κανάλια" - -#: port_matrix_body.cc:82 -#, fuzzy -msgid "There are no ports to connect." -msgstr "Δεν υπάÏχουν άλλες διαθέσιμες θÏÏες του JACK." - -#: port_matrix_body.cc:84 -#, fuzzy -msgid "There are no %1 ports to connect." -msgstr "Δεν υπάÏχουν άλλες διαθέσιμες θÏÏες του JACK." - #: processor_box.cc:256 msgid "" "%1\n" @@ -9103,21 +4688,6 @@ msgid "" "Double-click to show generic GUI." msgstr "" -#: processor_box.cc:372 -#, fuzzy -msgid "Show All Controls" -msgstr "Ανάδειξη Ïυθμίσεων send" - -#: processor_box.cc:376 -#, fuzzy -msgid "Hide All Controls" -msgstr "ΑπόκÏυψη όλων των crossfades" - -#: processor_box.cc:465 -#, fuzzy -msgid "on" -msgstr "έγινε" - #: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 msgid "off" msgstr "εκτός" @@ -9142,71 +4712,18 @@ msgid "" "This plugin has:\n" msgstr "" -#: processor_box.cc:1209 -#, fuzzy -msgid "\t%1 MIDI input\n" -msgid_plural "\t%1 MIDI inputs\n" -msgstr[0] "%1 είσοδος" -msgstr[1] "%1 είσοδος" - -#: processor_box.cc:1213 -#, fuzzy -msgid "\t%1 audio input\n" -msgid_plural "\t%1 audio inputs\n" -msgstr[0] "" -"αυτόματο\n" -"input" -msgstr[1] "" -"αυτόματο\n" -"input" - #: processor_box.cc:1216 msgid "" "\n" "but at the insertion point, there are:\n" msgstr "" -#: processor_box.cc:1219 -#, fuzzy -msgid "\t%1 MIDI channel\n" -msgid_plural "\t%1 MIDI channels\n" -msgstr[0] "κανάλια" -msgstr[1] "κανάλια" - -#: processor_box.cc:1223 -#, fuzzy -msgid "\t%1 audio channel\n" -msgid_plural "\t%1 audio channels\n" -msgstr[0] "κανάλια" -msgstr[1] "κανάλια" - #: processor_box.cc:1226 msgid "" "\n" "%1 is unable to insert this plugin here.\n" msgstr "" -#: processor_box.cc:1262 -#, fuzzy -msgid "Cannot set up new send: %1" -msgstr "δεν γίνεται να διαμοÏφώθεί η διαχείÏηση σημάτων για %1" - -#: processor_box.cc:1594 -#, fuzzy -msgid "" -"You cannot reorder these plugins/sends/inserts\n" -"in that way because the inputs and\n" -"outputs will not work correctly." -msgstr "" -"Δεν γίνεται η σÏνδεση του set των redirects\n" -"με αυτό τον Ï„Ïοπο γιατί οι εισόδοι\n" -"κ' εξόδοι δεν λειτουÏγοÏν καλά." - -#: processor_box.cc:1778 -#, fuzzy -msgid "Rename Processor" -msgstr "Μετονομασία ΚαναλιοÏ" - #: processor_box.cc:1809 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "" @@ -9215,120 +4732,22 @@ msgstr "" msgid "plugin insert constructor failed" msgstr "" -#: processor_box.cc:1954 -#, fuzzy -msgid "" -"Copying the set of processors on the clipboard failed,\n" -"probably because the I/O configuration of the plugins\n" -"could not match the configuration of this track." -msgstr "" -"Η αντιγÏαφή του set των redirects στο clipboard απέτυχε,\n" -"πιθανόν γιατί το I/O configuration των plugins\n" -"δεν ταίÏιαζε το configuration Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… καναλιοÏ." - -#: processor_box.cc:2000 -#, fuzzy -msgid "" -"Do you really want to remove all processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Στ'αλήθεια θέλετε να απαλοίψετε όλα τα redirects από το δίαυλο?\n" -"(δεν μποÏεί να ανακληθεί)" - #: processor_box.cc:2004 processor_box.cc:2029 msgid "Yes, remove them all" msgstr "Îαι, απάλοιψέ τα όλα" -#: processor_box.cc:2006 processor_box.cc:2031 -#, fuzzy -msgid "Remove processors" -msgstr "Απαλοιφή Στίγματος" - -#: processor_box.cc:2021 -#, fuzzy -msgid "" -"Do you really want to remove all pre-fader processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Στ'αλήθεια θέλετε να απαλοίψετε όλα τα redirects από το δίαυλο?\n" -"(δεν μποÏεί να ανακληθεί)" - -#: processor_box.cc:2024 -#, fuzzy -msgid "" -"Do you really want to remove all post-fader processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Στ'αλήθεια θέλετε να απαλοίψετε όλα τα redirects από το δίαυλο?\n" -"(δεν μποÏεί να ανακληθεί)" - -#: processor_box.cc:2200 -#, fuzzy -msgid "New Plugin" -msgstr "Îέο Plugin ..." - #: processor_box.cc:2203 msgid "New Insert" msgstr "Îέο ΠÏοσθήκη" -#: processor_box.cc:2206 -#, fuzzy -msgid "New External Send ..." -msgstr "Îέο Send ..." - -#: processor_box.cc:2210 -#, fuzzy -msgid "New Aux Send ..." -msgstr "Îέο Send ..." - -#: processor_box.cc:2214 -#, fuzzy -msgid "Clear (all)" -msgstr "ΕκκαθάÏιση όλων των διαστημάτων" - -#: processor_box.cc:2216 -#, fuzzy -msgid "Clear (pre-fader)" -msgstr "ΕκκαθάÏιση μέτÏου" - -#: processor_box.cc:2218 -#, fuzzy -msgid "Clear (post-fader)" -msgstr "ΕκκαθάÏιση μέτÏου" - #: processor_box.cc:2244 msgid "Activate All" msgstr "ΕνεÏγοποίηση όλων" -#: processor_box.cc:2246 -#, fuzzy -msgid "Deactivate All" -msgstr "ΑπενεÏγοποίηση όλων" - -#: processor_box.cc:2248 -#, fuzzy -msgid "A/B Plugins" -msgstr "Plugins" - #: processor_box.cc:2257 msgid "Edit with generic controls..." msgstr "" -#: processor_box.cc:2557 -#, fuzzy -msgid "%1: %2 (by %3)" -msgstr "ardour: %1: %2 (by %3)" - -#: patch_change_dialog.cc:51 -#, fuzzy -msgid "Patch Change" -msgstr "ΑναπαÏ/γή διαστήματος" - -#: patch_change_dialog.cc:77 -#, fuzzy -msgid "Patch Bank" -msgstr "ΑναπαÏ/γή διαστήματος" - #: patch_change_dialog.cc:84 msgid "Patch" msgstr "" @@ -9361,31 +4780,6 @@ msgstr "" msgid "Threshold (ticks)" msgstr "" -#: quantize_dialog.cc:63 -#, fuzzy -msgid "Snap note start" -msgstr "Snap στην αÏχή πεÏιοχής" - -#: quantize_dialog.cc:64 -#, fuzzy -msgid "Snap note end" -msgstr "Snap σε ΔευτεÏόλεπτα" - -#: rc_option_editor.cc:69 -#, fuzzy -msgid "Click audio file:" -msgstr "ΑÏχείο ήχου ΜετÏονόμου" - -#: rc_option_editor.cc:72 rc_option_editor.cc:79 -#, fuzzy -msgid "Browse..." -msgstr "Αναζήτηση" - -#: rc_option_editor.cc:76 -#, fuzzy -msgid "Click emphasis audio file:" -msgstr "ΑÏχείο ήχου εμφάσεως ΜετÏονόμου" - #: rc_option_editor.cc:108 msgid "Choose Click" msgstr "Επιλογή ΜετÏονόμου" @@ -9402,35 +4796,10 @@ msgstr "" msgid "Save undo history of" msgstr "" -#: rc_option_editor.cc:170 rc_option_editor.cc:177 -#, fuzzy -msgid "commands" -msgstr "σχόλια" - -#: rc_option_editor.cc:315 -#, fuzzy -msgid "Edit using:" -msgstr "ΕπεξεÏγασία με" - #: rc_option_editor.cc:321 rc_option_editor.cc:347 rc_option_editor.cc:374 msgid "+ button" msgstr "+ κουμπί" -#: rc_option_editor.cc:341 -#, fuzzy -msgid "Delete using:" -msgstr "ΔιαγÏαφή με" - -#: rc_option_editor.cc:368 -#, fuzzy -msgid "Insert note using:" -msgstr "ΠÏοσθήκη επιλεγμένου(ων)" - -#: rc_option_editor.cc:395 -#, fuzzy -msgid "Ignore snap using:" -msgstr "Άγνοια έλξεως με" - #: rc_option_editor.cc:411 msgid "Keyboard layout:" msgstr "" @@ -9447,11 +4816,6 @@ msgstr "" msgid "Recording (seconds of buffering):" msgstr "" -#: rc_option_editor.cc:656 -#, fuzzy -msgid "Control Surface Protocol" -msgstr "Επιφάνειες ελέγχου" - #: rc_option_editor.cc:660 msgid "Feedback" msgstr "" @@ -9489,11 +4853,6 @@ msgid "" "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:836 -#, fuzzy -msgid "Video Folder:" -msgstr "Όνομα φακέλου:" - #: rc_option_editor.cc:841 msgid "" "Local path to the video-server document-root. Only files below this " @@ -9531,11 +4890,6 @@ msgstr "" msgid "all but one processor" msgstr "" -#: rc_option_editor.cc:1014 -#, fuzzy -msgid "all available processors" -msgstr "Διαθέσιμες ΘÏÏες" - #: rc_option_editor.cc:1017 msgid "%1 processors" msgstr "" @@ -9544,43 +4898,18 @@ msgstr "" msgid "This setting will only take effect when %1 is restarted." msgstr "" -#: rc_option_editor.cc:1025 -#, fuzzy -msgid "Options|Undo" -msgstr "Επιλογές" - -#: rc_option_editor.cc:1032 -#, fuzzy -msgid "Verify removal of last capture" -msgstr "Επιβεβαιώστε διαγÏαφή τελευταίας λήψης" - #: rc_option_editor.cc:1040 msgid "Make periodic backups of the session file" msgstr "" -#: rc_option_editor.cc:1045 -#, fuzzy -msgid "Session Management" -msgstr "Îέο Όνομα ΣυνεδÏίας:" - #: rc_option_editor.cc:1050 msgid "Always copy imported files" msgstr "" -#: rc_option_editor.cc:1057 -#, fuzzy -msgid "Default folder for new sessions:" -msgstr "επιλογή πεÏιοχών" - #: rc_option_editor.cc:1065 msgid "Maximum number of recent sessions" msgstr "" -#: rc_option_editor.cc:1078 -#, fuzzy -msgid "Click gain level" -msgstr "ΑÏχείο ήχου ΜετÏονόμου" - #: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "Αυτοματισμός" @@ -9593,16 +4922,6 @@ msgstr "" msgid "Automation sampling interval (milliseconds)" msgstr "" -#: rc_option_editor.cc:1109 -#, fuzzy -msgid "Keep record-enable engaged on stop" -msgstr "Το Rec-enable παÏαμένει ενεÏγό στο stop" - -#: rc_option_editor.cc:1118 -#, fuzzy -msgid "Stop recording when an xrun occurs" -msgstr "ΠαÏση εγγÏαφής στα xrun" - #: rc_option_editor.cc:1123 msgid "" "When enabled %1 will stop recording if an over- or underrun is " @@ -9613,11 +4932,6 @@ msgstr "" msgid "Create markers where xruns occur" msgstr "" -#: rc_option_editor.cc:1138 -#, fuzzy -msgid "Stop at the end of the session" -msgstr "Τέλος του συνεδÏίας" - #: rc_option_editor.cc:1143 msgid "" "When enabled if %1 is not recording, it will stop the " @@ -9665,11 +4979,6 @@ msgstr "" msgid "Sync/Slave" msgstr "" -#: rc_option_editor.cc:1185 -#, fuzzy -msgid "External timecode source" -msgstr "Snap σε cd frame" - #: rc_option_editor.cc:1195 msgid "Match session video frame rate to external timecode" msgstr "" @@ -9688,11 +4997,6 @@ msgid "" "external timecode standard and the session standard." msgstr "" -#: rc_option_editor.cc:1211 -#, fuzzy -msgid "External timecode is sync locked" -msgstr "Snap σε cd frame" - #: rc_option_editor.cc:1217 msgid "" "When enabled indicates that the selected external timecode source " @@ -9724,16 +5028,6 @@ msgstr "" msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1257 -#, fuzzy -msgid "LTC Generator" -msgstr "ΔημιουÏγία" - -#: rc_option_editor.cc:1262 -#, fuzzy -msgid "Enable LTC generator" -msgstr "ΕνεÏγοποίηση ΕγγÏαφής" - #: rc_option_editor.cc:1269 msgid "send LTC while stopped" msgstr "" @@ -9744,22 +5038,12 @@ msgid "" "transport (playhead) is not moving" msgstr "" -#: rc_option_editor.cc:1281 -#, fuzzy -msgid "LTC generator level" -msgstr "ΔημιουÏγία" - #: rc_option_editor.cc:1285 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " "is 0dBu ^= -18dbFS in an EBU calibrated system" msgstr "" -#: rc_option_editor.cc:1297 -#, fuzzy -msgid "Link selection of regions and tracks" -msgstr "ΑντιστÏοφή επιλογής στο κανάλι" - #: rc_option_editor.cc:1305 msgid "Move relevant automation when audio regions are moved" msgstr "" @@ -9788,16 +5072,6 @@ msgstr "" msgid "Make rubberband selection rectangle snap to the grid" msgstr "" -#: rc_option_editor.cc:1348 -#, fuzzy -msgid "Show waveforms in regions" -msgstr "Ανάδειξη αυτομάτων πεÏιοχών" - -#: rc_option_editor.cc:1356 -#, fuzzy -msgid "Show gain envelopes in audio regions" -msgstr "Ανάδειξη αυτομάτων πεÏιοχών" - #: rc_option_editor.cc:1357 msgid "in all modes" msgstr "" @@ -9806,11 +5080,6 @@ msgstr "" msgid "only in region gain mode" msgstr "" -#: rc_option_editor.cc:1365 -#, fuzzy -msgid "Waveform scale" -msgstr "ΚυματομοÏφή" - #: rc_option_editor.cc:1370 msgid "linear" msgstr "γÏαμμική" @@ -9819,21 +5088,6 @@ msgstr "γÏαμμική" msgid "logarithmic" msgstr "" -#: rc_option_editor.cc:1377 -#, fuzzy -msgid "Waveform shape" -msgstr "ΚυματομοÏφή" - -#: rc_option_editor.cc:1382 -#, fuzzy -msgid "traditional" -msgstr "ΠαÏαδοσιακή" - -#: rc_option_editor.cc:1383 -#, fuzzy -msgid "rectified" -msgstr "ΑνοÏθωμένή" - #: rc_option_editor.cc:1390 msgid "Show waveforms for audio while it is being recorded" msgstr "" @@ -9858,11 +5112,6 @@ msgstr "" msgid "Synchronise editor and mixer selection" msgstr "" -#: rc_option_editor.cc:1437 -#, fuzzy -msgid "Name new markers" -msgstr "μετονομασία στίγματος" - #: rc_option_editor.cc:1443 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " @@ -9879,26 +5128,6 @@ msgstr "" msgid "Buffering" msgstr "" -#: rc_option_editor.cc:1464 -#, fuzzy -msgid "Record monitoring handled by" -msgstr "ΠαÏση εγγÏαφής στα xrun" - -#: rc_option_editor.cc:1475 -#, fuzzy -msgid "ardour" -msgstr "ardour: " - -#: rc_option_editor.cc:1476 -#, fuzzy -msgid "audio hardware" -msgstr "Ηχητικά frames" - -#: rc_option_editor.cc:1483 -#, fuzzy -msgid "Tape machine mode" -msgstr "ΛειτουÏγία Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Fader" - #: rc_option_editor.cc:1488 msgid "Connection of tracks and busses" msgstr "" @@ -9907,40 +5136,10 @@ msgstr "" msgid "Auto-connect master/monitor busses" msgstr "" -#: rc_option_editor.cc:1500 -#, fuzzy -msgid "Connect track inputs" -msgstr "ΣÏνδεση νέων inputs ÎºÎ±Î½Î±Î»Î¹Î¿Ï ÏƒÏ„Î¿ hardware" - -#: rc_option_editor.cc:1505 -#, fuzzy -msgid "automatically to physical inputs" -msgstr "αυτόματη σÏνδεση Inputs" - #: rc_option_editor.cc:1506 rc_option_editor.cc:1519 msgid "manually" msgstr "" -#: rc_option_editor.cc:1512 -#, fuzzy -msgid "Connect track and bus outputs" -msgstr "ΣÏνδεση νέων outputs καναλιου στο master" - -#: rc_option_editor.cc:1517 -#, fuzzy -msgid "automatically to physical outputs" -msgstr "Αυτόματη σÏνδεση Οutputs" - -#: rc_option_editor.cc:1518 -#, fuzzy -msgid "automatically to master bus" -msgstr "αυτόματη σÏνδεση outputs καναλιών σε master outs" - -#: rc_option_editor.cc:1523 -#, fuzzy -msgid "Denormals" -msgstr "Κανονικό" - #: rc_option_editor.cc:1528 msgid "Use DC bias to protect against denormals" msgstr "" @@ -9965,11 +5164,6 @@ msgstr "" msgid "use FlushToZero and DenormalsAreZero" msgstr "" -#: rc_option_editor.cc:1563 -#, fuzzy -msgid "Silence plugins when the transport is stopped" -msgstr "Λήξη των plugins με την παÏση" - #: rc_option_editor.cc:1571 msgid "Make new plugins active" msgstr "" @@ -9978,20 +5172,6 @@ msgstr "" msgid "Enable automatic analysis of audio" msgstr "" -#: rc_option_editor.cc:1587 -#, fuzzy -msgid "Replicate missing region channels" -msgstr "ΔημιουÏγία μίας πεÏιοχής για κάθε κανάλι" - -#: rc_option_editor.cc:1594 rc_option_editor.cc:1609 rc_option_editor.cc:1621 -#: rc_option_editor.cc:1633 rc_option_editor.cc:1645 rc_option_editor.cc:1649 -#: rc_option_editor.cc:1657 rc_option_editor.cc:1665 rc_option_editor.cc:1673 -#: rc_option_editor.cc:1675 rc_option_editor.cc:1683 rc_option_editor.cc:1691 -#: rc_option_editor.cc:1699 -#, fuzzy -msgid "Solo / mute" -msgstr "Solo μέσω διαÏλου" - #: rc_option_editor.cc:1597 msgid "Solo-in-place mute cut (dB)" msgstr "" @@ -10000,29 +5180,14 @@ msgstr "" msgid "Solo controls are Listen controls" msgstr "" -#: rc_option_editor.cc:1613 -#, fuzzy -msgid "Listen Position" -msgstr "Θέση" - #: rc_option_editor.cc:1618 msgid "after-fader (AFL)" msgstr "" -#: rc_option_editor.cc:1619 -#, fuzzy -msgid "pre-fader (PFL)" -msgstr "ΕκκαθάÏιση μέτÏου" - #: rc_option_editor.cc:1625 msgid "PFL signals come from" msgstr "" -#: rc_option_editor.cc:1630 -#, fuzzy -msgid "before pre-fader processors" -msgstr "Απαλοιφή Στίγματος" - #: rc_option_editor.cc:1631 msgid "pre-fader but after pre-fader processors" msgstr "" @@ -10031,34 +5196,14 @@ msgstr "" msgid "AFL signals come from" msgstr "" -#: rc_option_editor.cc:1642 -#, fuzzy -msgid "immediately post-fader" -msgstr "ΕκκαθάÏιση μέτÏου" - -#: rc_option_editor.cc:1643 -#, fuzzy -msgid "after post-fader processors (before pan)" -msgstr "Απαλοιφή Στίγματος" - #: rc_option_editor.cc:1652 msgid "Exclusive solo" msgstr "" -#: rc_option_editor.cc:1660 -#, fuzzy -msgid "Show solo muting" -msgstr "Ανάδειξη όλων των αυτοματισμών" - #: rc_option_editor.cc:1668 msgid "Soloing overrides muting" msgstr "" -#: rc_option_editor.cc:1673 -#, fuzzy -msgid "Default track / bus muting options" -msgstr "κανάλια/δίαυλοι" - #: rc_option_editor.cc:1678 msgid "Mute affects pre-fader sends" msgstr "" @@ -10067,20 +5212,10 @@ msgstr "" msgid "Mute affects post-fader sends" msgstr "" -#: rc_option_editor.cc:1694 -#, fuzzy -msgid "Mute affects control outputs" -msgstr "χÏήση των control outs" - #: rc_option_editor.cc:1702 msgid "Mute affects main outputs" msgstr "" -#: rc_option_editor.cc:1718 -#, fuzzy -msgid "Send MIDI Time Code" -msgstr "Αποστολή MIDI feedback" - #: rc_option_editor.cc:1726 msgid "Percentage either side of normal transport speed to transmit MTC" msgstr "" @@ -10093,11 +5228,6 @@ msgstr "" msgid "Send MIDI Machine Control commands" msgstr "" -#: rc_option_editor.cc:1751 -#, fuzzy -msgid "Send MIDI control feedback" -msgstr "Αποστολή MIDI feedback" - #: rc_option_editor.cc:1759 msgid "Inbound MMC device ID" msgstr "" @@ -10118,16 +5248,6 @@ msgstr "" msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "" -#: rc_option_editor.cc:1802 -#, fuzzy -msgid "Sound MIDI notes as they are selected" -msgstr "ΠÏοσθήκη επιλεγμένου(ων)" - -#: rc_option_editor.cc:1810 rc_option_editor.cc:1820 rc_option_editor.cc:1822 -#, fuzzy -msgid "User interaction" -msgstr "ΕνέÏγειες ΠεÏιοχών" - #: rc_option_editor.cc:1813 msgid "" "Use translations of %1 messages\n" @@ -10139,11 +5259,6 @@ msgstr "" msgid "Keyboard" msgstr "" -#: rc_option_editor.cc:1830 -#, fuzzy -msgid "Control surface remote ID" -msgstr "Επιφάνειες ελέγχου" - #: rc_option_editor.cc:1835 msgid "assigned by user" msgstr "" @@ -10180,21 +5295,6 @@ msgstr "" msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" -#: rc_option_editor.cc:1887 -#, fuzzy -msgid "Mixer Strip" -msgstr "Ανάδειξη Μίκτη" - -#: rc_option_editor.cc:1897 -#, fuzzy -msgid "Use narrow strips in the mixer by default" -msgstr "Στενοί διάδÏομοι μείκτη" - -#: rc_option_editor.cc:1906 -#, fuzzy -msgid "Peak hold time" -msgstr "ΠαÏση ΜετÏητή" - #: rc_option_editor.cc:1912 msgid "short" msgstr "" @@ -10315,11 +5415,6 @@ msgstr "" msgid "audition this region" msgstr "ακÏόαση της πεÏιοχής" -#: region_editor.cc:88 region_layering_order_editor.cc:74 -#, fuzzy -msgid "Position:" -msgstr "Θέση" - #: region_editor.cc:90 add_video_dialog.cc:170 msgid "End:" msgstr "Τέλος:" @@ -10348,65 +5443,10 @@ msgstr "" msgid "Source:" msgstr "" -#: region_editor.cc:166 -#, fuzzy -msgid "Region '%1'" -msgstr "ΠεÏιοχές" - -#: region_editor.cc:273 -#, fuzzy -msgid "change region start position" -msgstr "οÏισμός θέσης sync πεÏιοχής" - -#: region_editor.cc:289 -#, fuzzy -msgid "change region end position" -msgstr "οÏισμός θέσης sync πεÏιοχής" - -#: region_editor.cc:309 -#, fuzzy -msgid "change region length" -msgstr "αλλαγή μήκους fade in" - -#: region_editor.cc:403 region_editor.cc:415 -#, fuzzy -msgid "change region sync point" -msgstr "οÏισμός θέσης sync πεÏιοχής" - -#: region_layering_order_editor.cc:41 -#, fuzzy -msgid "RegionLayeringOrderEditor" -msgstr "Τέλη ΠεÏιοχών" - -#: region_layering_order_editor.cc:54 -#, fuzzy -msgid "Region Name" -msgstr "Με Όνομα ΠεÏιοχής" - -#: region_layering_order_editor.cc:71 -#, fuzzy -msgid "Track:" -msgstr "Κανάλι" - -#: region_layering_order_editor.cc:103 -#, fuzzy -msgid "Choose Top Region" -msgstr "Loop ΠεÏιοχής" - #: region_view.cc:274 msgid "SilenceText" msgstr "" -#: region_view.cc:290 region_view.cc:309 -#, fuzzy -msgid "minutes" -msgstr "Λεπτά" - -#: region_view.cc:293 region_view.cc:312 -#, fuzzy -msgid "msecs" -msgstr "msecs" - #: region_view.cc:296 region_view.cc:315 msgid "secs" msgstr "" @@ -10455,11 +5495,6 @@ msgstr "" msgid "Complex Domain" msgstr "" -#: rhythm_ferret.cc:59 -#, fuzzy -msgid "Phase Deviation" -msgstr "Θέση" - #: rhythm_ferret.cc:60 msgid "Kullback-Liebler" msgstr "" @@ -10468,35 +5503,10 @@ msgstr "" msgid "Modified Kullback-Liebler" msgstr "" -#: rhythm_ferret.cc:66 -#, fuzzy -msgid "Split region" -msgstr "ΔιαχωÏισμός πεÏιοχής" - -#: rhythm_ferret.cc:67 -#, fuzzy -msgid "Snap regions" -msgstr "ΔιαχωÏισμός πεÏιοχής" - -#: rhythm_ferret.cc:68 -#, fuzzy -msgid "Conform regions" -msgstr "Όνομα για πεÏιοχή:" - #: rhythm_ferret.cc:73 msgid "Rhythm Ferret" msgstr "" -#: rhythm_ferret.cc:79 -#, fuzzy -msgid "Analyze" -msgstr "Ανάλυση διαστήματος" - -#: rhythm_ferret.cc:114 -#, fuzzy -msgid "Detection function" -msgstr "Θέση sync της ΠεÏιοχής" - #: rhythm_ferret.cc:118 msgid "Trigger gap" msgstr "" @@ -10517,11 +5527,6 @@ msgstr "" msgid "Sensitivity" msgstr "" -#: rhythm_ferret.cc:142 -#, fuzzy -msgid "Operation" -msgstr "Επιλογές" - #: rhythm_ferret.cc:356 msgid "split regions (rhythm ferret)" msgstr "" @@ -10530,50 +5535,10 @@ msgstr "" msgid "Track/bus Group" msgstr "" -#: route_group_dialog.cc:41 -#, fuzzy -msgid "Relative" -msgstr "ΕυθυγÏάμμιση σχετικών" - -#: route_group_dialog.cc:42 -#, fuzzy -msgid "Muting" -msgstr "Ταξινόμηση" - -#: route_group_dialog.cc:43 -#, fuzzy -msgid "Soloing" -msgstr "Σόλο" - -#: route_group_dialog.cc:44 -#, fuzzy -msgid "Record enable" -msgstr "ΕγγÏαφή" - -#: route_group_dialog.cc:45 time_info_box.cc:66 -#, fuzzy -msgid "Selection" -msgstr "Επιλογή" - -#: route_group_dialog.cc:46 -#, fuzzy -msgid "Active state" -msgstr "ΕνεÏγοποίηση" - #: route_group_dialog.cc:47 route_group_dialog.cc:76 theme_manager.cc:71 msgid "Color" msgstr "ΧÏώμα" -#: route_group_dialog.cc:53 -#, fuzzy -msgid "RouteGroupDialog" -msgstr "ΕκκαθάÏιση" - -#: route_group_dialog.cc:92 -#, fuzzy -msgid "Sharing" -msgstr "ΠÏοχωÏημένα..." - #: route_group_dialog.cc:182 msgid "" "A route group of this name already exists. Please use a different name." @@ -10608,11 +5573,6 @@ msgstr "" msgid "NO TRACK" msgstr "Κανένα κανάλι" -#: route_params_ui.cc:613 route_params_ui.cc:614 -#, fuzzy -msgid "No Track or Bus Selected" -msgstr "Δεν επελέχθη διαδÏομή" - #: route_time_axis.cc:97 msgid "g" msgstr "g" @@ -10633,41 +5593,6 @@ msgstr "" msgid "Record" msgstr "ΕγγÏαφή" -#: route_time_axis.cc:210 -#, fuzzy -msgid "Route Group" -msgstr "ΔιαμόÏφωση Group" - -#: route_time_axis.cc:213 -#, fuzzy -msgid "MIDI Controllers and Automation" -msgstr "MMC ΘÏÏα" - -#: route_time_axis.cc:390 -#, fuzzy -msgid "Show All Automation" -msgstr "Ανάδειξη όλων των αυτοματισμών" - -#: route_time_axis.cc:393 -#, fuzzy -msgid "Show Existing Automation" -msgstr "Ανάδειξη υπαÏχόντων αυτοματισμών" - -#: route_time_axis.cc:396 -#, fuzzy -msgid "Hide All Automation" -msgstr "ΚÏÏψιμο όλων των αυτοματισμών" - -#: route_time_axis.cc:405 -#, fuzzy -msgid "Processor automation" -msgstr "εκκαθάÏιση αυτοματισμοÏ" - -#: route_time_axis.cc:424 -#, fuzzy -msgid "Color..." -msgstr "ΧÏώμα" - #: route_time_axis.cc:481 msgid "Overlaid" msgstr "" @@ -10676,114 +5601,14 @@ msgstr "" msgid "Stacked" msgstr "" -#: route_time_axis.cc:495 -#, fuzzy -msgid "Layers" -msgstr "ΣτÏώμα" - -#: route_time_axis.cc:564 -#, fuzzy -msgid "Automatic (based on I/O connections)" -msgstr "Αυτόματη σÏνδεση Οutputs" - -#: route_time_axis.cc:573 -#, fuzzy -msgid "(Currently: Existing Material)" -msgstr "ΕυθυγÏάμμιση με το υπάÏχον υλικό" - -#: route_time_axis.cc:576 -#, fuzzy -msgid "(Currently: Capture Time)" -msgstr "ΕυθυγÏάμμιση με το χÏόνο λήψεως" - -#: route_time_axis.cc:584 -#, fuzzy -msgid "Align With Existing Material" -msgstr "ΕυθυγÏάμμιση με το υπάÏχον υλικό" - -#: route_time_axis.cc:589 -#, fuzzy -msgid "Align With Capture Time" -msgstr "ΕυθυγÏάμμιση με το χÏόνο λήψεως" - -#: route_time_axis.cc:594 -#, fuzzy -msgid "Alignment" -msgstr "ΕυθυγÏάμμιση" - -#: route_time_axis.cc:629 -#, fuzzy -msgid "Normal Mode" -msgstr "Κανονικό" - -#: route_time_axis.cc:635 -#, fuzzy -msgid "Tape Mode" -msgstr "ΛειτουÏγία Έλξεως" - -#: route_time_axis.cc:641 -#, fuzzy -msgid "Non-Layered Mode" -msgstr "Τέλη ΠεÏιοχών" - #: route_time_axis.cc:654 route_time_axis.cc:1601 msgid "Playlist" msgstr "Playlist" -#: route_time_axis.cc:979 -#, fuzzy -msgid "Rename Playlist" -msgstr "Όνομα για playlist" - -#: route_time_axis.cc:980 -#, fuzzy -msgid "New name for playlist:" -msgstr "Όνομα για playlist" - -#: route_time_axis.cc:1065 -#, fuzzy -msgid "New Copy Playlist" -msgstr "Όνομα για playlist" - -#: route_time_axis.cc:1066 route_time_axis.cc:1119 -#, fuzzy -msgid "Name for new playlist:" -msgstr "Όνομα για playlist" - -#: route_time_axis.cc:1118 -#, fuzzy -msgid "New Playlist" -msgstr "Playlist" - -#: route_time_axis.cc:1309 -#, fuzzy -msgid "You cannot create a track with that name as it is reserved for %1" -msgstr "Δεν γίνεται να Ï€Ïοστεθεί κανάλι χωÏίς ήδη φοÏτωμένη συνεδÏία." - -#: route_time_axis.cc:1490 -#, fuzzy -msgid "New Copy..." -msgstr "Îέο αντίγÏαφο" - -#: route_time_axis.cc:1494 -#, fuzzy -msgid "New Take" -msgstr "Îέος ΧÏόνος" - -#: route_time_axis.cc:1495 -#, fuzzy -msgid "Copy Take" -msgstr "ΑντιγÏαφή" - #: route_time_axis.cc:1500 msgid "Clear Current" msgstr "ΕκκαθάÏιση Ï„Ïέχοντος" -#: route_time_axis.cc:1503 -#, fuzzy -msgid "Select From All..." -msgstr "Επιλογή όλων ..." - #: route_time_axis.cc:1591 msgid "Take: %1.%2" msgstr "" @@ -10792,27 +5617,10 @@ msgstr "" msgid "Underlays" msgstr "" -#: route_time_axis.cc:2294 -#, fuzzy -msgid "Remove \"%1\"" -msgstr "Απαλοιφή" - -#: route_time_axis.cc:2344 route_time_axis.cc:2381 -#, fuzzy -msgid "programming error: underlay reference pointer pairs are inconsistent!" -msgstr "" -"Σφάλμα Ï€ÏογÏαμματισμοÏ: κανένας \"rect\" δείκτης δεν σχετίζεται με το " -"επιλεγμένο αντικείμενο" - #: route_time_axis.cc:2408 msgid "After-fade listen (AFL)" msgstr "" -#: route_time_axis.cc:2412 -#, fuzzy -msgid "Pre-fade listen (PFL)" -msgstr "ΕκκαθάÏιση μέτÏου" - #: route_time_axis.cc:2416 msgid "s" msgstr "s" @@ -10821,11 +5629,6 @@ msgstr "s" msgid "m" msgstr "m" -#: route_ui.cc:119 -#, fuzzy -msgid "Mute this track" -msgstr "ΑπόκÏυψη παÏόντος καναλιοÏ" - #: route_ui.cc:123 msgid "Mute other (non-soloed) tracks" msgstr "" @@ -10838,69 +5641,14 @@ msgstr "" msgid "make mixer strips show sends to this bus" msgstr "" -#: route_ui.cc:138 -#, fuzzy -msgid "Monitor input" -msgstr "ισοστάθμιση Ï€Ïος τα επιλεγμένα" - -#: route_ui.cc:144 -#, fuzzy -msgid "Monitor playback" -msgstr "Διακοπή ΑναπαÏ/γής" - -#: route_ui.cc:591 -#, fuzzy -msgid "Not connected to JACK - cannot engage record" -msgstr "Μη συνδεδεμένο με τον JACK - I/O αλλαγές αδÏνατες" - -#: route_ui.cc:786 -#, fuzzy -msgid "Step Entry" -msgstr "ΕπεξεÏγασία" - #: route_ui.cc:859 msgid "Assign all tracks (prefader)" msgstr "" -#: route_ui.cc:863 -#, fuzzy -msgid "Assign all tracks and buses (prefader)" -msgstr "θέση επιλεγμένης οπτικής καναλιοÏ" - #: route_ui.cc:867 msgid "Assign all tracks (postfader)" msgstr "" -#: route_ui.cc:871 -#, fuzzy -msgid "Assign all tracks and buses (postfader)" -msgstr "θέση επιλεγμένης οπτικής καναλιοÏ" - -#: route_ui.cc:875 -#, fuzzy -msgid "Assign selected tracks (prefader)" -msgstr "θέση επιλεγμένης οπτικής καναλιοÏ" - -#: route_ui.cc:879 -#, fuzzy -msgid "Assign selected tracks and buses (prefader)" -msgstr "θέση επιλεγμένης οπτικής καναλιοÏ" - -#: route_ui.cc:882 -#, fuzzy -msgid "Assign selected tracks (postfader)" -msgstr "θέση επιλεγμένης οπτικής καναλιοÏ" - -#: route_ui.cc:886 -#, fuzzy -msgid "Assign selected tracks and buses (postfader)" -msgstr "θέση επιλεγμένης οπτικής καναλιοÏ" - -#: route_ui.cc:889 -#, fuzzy -msgid "Copy track/bus gains to sends" -msgstr "ardour: ΕπιθεωÏητής καναλιών/διαÏλων:" - #: route_ui.cc:890 msgid "Set sends gain to -inf" msgstr "" @@ -10929,56 +5677,12 @@ msgstr "Control Outs" msgid "Main Outs" msgstr "Main Outs" -#: route_ui.cc:1390 -#, fuzzy -msgid "Color Selection" -msgstr "ΑναπαÏ/γή επιλογής" - -#: route_ui.cc:1477 -#, fuzzy -msgid "" -"Do you really want to remove track \"%1\" ?\n" -"\n" -"You may also lose the playlist used by this track.\n" -"\n" -"(This action cannot be undone, and the session file will be overwritten)" -msgstr "" -"Στ'αλήθεια θέλετε να απαλοίψετε το κανάλι \"%1\" ?\n" -"\n" -"Πιθανόν να χάσετε και τη λίστα που χÏησιμοποιείται από το κανάλι.\n" -"(δεν μποÏεί να ανακληθεί)" - -#: route_ui.cc:1479 -#, fuzzy -msgid "" -"Do you really want to remove bus \"%1\" ?\n" -"\n" -"(This action cannot be undone, and the session file will be overwritten)" -msgstr "" -"Στ'αλήθεια θέλετε να απαλοίψετε το κανάλι \"%1\" ?\n" -"(δεν μποÏεί να ανακληθεί)" - -#: route_ui.cc:1487 -#, fuzzy -msgid "Remove track" -msgstr "Απαλοιφή Στίγματος" - -#: route_ui.cc:1489 -#, fuzzy -msgid "Remove bus" -msgstr "Απαλοιφή" - #: route_ui.cc:1516 msgid "" "The use of colons (':') is discouraged in track and bus names.\n" "Do you want to use this new name?" msgstr "" -#: route_ui.cc:1520 -#, fuzzy -msgid "Use the new name" -msgstr "νέο όνομα: " - #: route_ui.cc:1521 msgid "Re-edit the name" msgstr "" @@ -10987,11 +5691,6 @@ msgstr "" msgid "Rename Track" msgstr "Μετονομασία ΚαναλιοÏ" -#: route_ui.cc:1536 -#, fuzzy -msgid "Rename Bus" -msgstr "Μετονομασία" - #: route_ui.cc:1695 msgid " latency" msgstr "" @@ -11000,25 +5699,10 @@ msgstr "" msgid "Cannot create route template directory %1" msgstr "" -#: route_ui.cc:1714 -#, fuzzy -msgid "Save As Template" -msgstr "Αποθήκευση Ï€Ïοσχεδίου..." - -#: route_ui.cc:1715 -#, fuzzy -msgid "Template name:" -msgstr "Όνομα Πεδίου:" - #: route_ui.cc:1788 msgid "Remote Control ID" msgstr "" -#: route_ui.cc:1798 -#, fuzzy -msgid "Remote control ID:" -msgstr "απαλοιφή σημείου ελέγχου" - #: route_ui.cc:1812 msgid "" "The remote control ID of %1 is: %2\n" @@ -11027,16 +5711,6 @@ msgid "" "The remote control ID of %3 cannot be changed." msgstr "" -#: route_ui.cc:1816 -#, fuzzy -msgid "the master bus" -msgstr "ΔημιουÏγία Master Bus" - -#: route_ui.cc:1816 -#, fuzzy -msgid "the monitor bus" -msgstr "ΔημιουÏγία Master Bus" - #: route_ui.cc:1818 msgid "" "The remote control ID of %6 is: %3\n" @@ -11048,18 +5722,6 @@ msgid "" "change this%5" msgstr "" -#: route_ui.cc:1821 -#, fuzzy -msgid "the mixer" -msgstr "" -"Μίκτης\n" -"ΕπεξεÏγαστή" - -#: route_ui.cc:1821 -#, fuzzy -msgid "the editor" -msgstr "επεξεÏγαστής" - #: route_ui.cc:1876 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " @@ -11074,45 +5736,10 @@ msgstr "" msgid "Select folder to search for media" msgstr "" -#: search_path_option.cc:44 -#, fuzzy -msgid "Click to add a new location" -msgstr "ΕκκαθάÏιση όλων των θέσεων" - -#: search_path_option.cc:51 -#, fuzzy -msgid "the session folder" -msgstr "ΑντιγÏαφή αÏχείου στο φάκελο της συνεδÏίας" - -#: send_ui.cc:126 -#, fuzzy -msgid "Send " -msgstr "ΔευτεÏόλεπτα" - -#: session_import_dialog.cc:64 -#, fuzzy -msgid "Import from Session" -msgstr "Εξαγωγή ΣυνεδÏίας" - -#: session_import_dialog.cc:73 -#, fuzzy -msgid "Elements" -msgstr "Σχόλια" - -#: session_import_dialog.cc:110 -#, fuzzy -msgid "Cannot load XML for session from %1" -msgstr "δεν ευÏέθησαν εικόνες για το fader rail" - #: session_import_dialog.cc:127 session_import_dialog.cc:211 msgid "Some elements had errors in them. Please see the log for details" msgstr "" -#: session_import_dialog.cc:163 -#, fuzzy -msgid "Import from session" -msgstr "Εξαγωγή ΣυνεδÏίας" - #: session_import_dialog.cc:227 msgid "This will select all elements of this type!" msgstr "" @@ -11137,11 +5764,6 @@ msgstr "" msgid "Web" msgstr "" -#: session_metadata_dialog.cc:534 -#, fuzzy -msgid "Organization" -msgstr "ΛειτουÏγία Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï gain" - #: session_metadata_dialog.cc:537 msgid "Country" msgstr "" @@ -11170,16 +5792,6 @@ msgstr "" msgid "Genre" msgstr "" -#: session_metadata_dialog.cc:569 -#, fuzzy -msgid "Comment" -msgstr "Σχόλια" - -#: session_metadata_dialog.cc:572 -#, fuzzy -msgid "Copyright" -msgstr "ΑντιγÏαφή" - #: session_metadata_dialog.cc:580 session_metadata_dialog.cc:585 msgid "Album" msgstr "" @@ -11192,11 +5804,6 @@ msgstr "" msgid "Album Artist" msgstr "" -#: session_metadata_dialog.cc:594 -#, fuzzy -msgid "Total Tracks" -msgstr "ως Κανάλια" - #: session_metadata_dialog.cc:597 msgid "Disc Subtitle" msgstr "" @@ -11209,11 +5816,6 @@ msgstr "" msgid "Total Discs" msgstr "" -#: session_metadata_dialog.cc:606 -#, fuzzy -msgid "Compilation" -msgstr "Αυτοματισμός" - #: session_metadata_dialog.cc:609 msgid "ISRC" msgstr "" @@ -11234,18 +5836,6 @@ msgstr "" msgid "Conductor" msgstr "" -#: session_metadata_dialog.cc:631 -#, fuzzy -msgid "Remixer" -msgstr "" -"Μίκτης\n" -"ΕπεξεÏγαστή" - -#: session_metadata_dialog.cc:634 -#, fuzzy -msgid "Arranger" -msgstr "διάστημα" - #: session_metadata_dialog.cc:637 msgid "Engineer" msgstr "" @@ -11254,11 +5844,6 @@ msgstr "" msgid "Producer" msgstr "" -#: session_metadata_dialog.cc:643 -#, fuzzy -msgid "DJ Mixer" -msgstr "Ανάδειξη Μίκτη" - #: session_metadata_dialog.cc:646 msgid "Metadata|Mixer" msgstr "" @@ -11279,20 +5864,10 @@ msgstr "" msgid "Edit Session Metadata" msgstr "" -#: session_metadata_dialog.cc:701 -#, fuzzy -msgid "Import session metadata" -msgstr "Εισαγωγή επιλεγμένου(ων)" - #: session_metadata_dialog.cc:722 msgid "Choose session to import metadata from" msgstr "" -#: session_metadata_dialog.cc:760 -#, fuzzy -msgid "This session file could not be read!" -msgstr "το αÏχείο \"%1\" δεν γινόταν να ανοιχτεί" - #: session_metadata_dialog.cc:770 msgid "" "The session file didn't contain metadata!\n" @@ -11303,16 +5878,6 @@ msgstr "" msgid "Import all from:" msgstr "" -#: session_option_editor.cc:32 -#, fuzzy -msgid "Session Properties" -msgstr "ΕνέÏγειες ΠεÏιοχών" - -#: session_option_editor.cc:41 -#, fuzzy -msgid "Timecode Settings" -msgstr "SMPTE ΔευτεÏόλεπτα" - #: session_option_editor.cc:45 msgid "Timecode frames-per-second" msgstr "" @@ -11345,11 +5910,6 @@ msgstr "" msgid "30" msgstr "" -#: session_option_editor.cc:57 -#, fuzzy -msgid "30 drop" -msgstr "30 FPS drop" - #: session_option_editor.cc:58 msgid "59.94" msgstr "" @@ -11409,25 +5969,10 @@ msgid "" "Apply Pull-Up/Down to Video Timeline and Video Monitor (Unless in JACK-sync)." msgstr "" -#: session_option_editor.cc:96 -#, fuzzy -msgid "Ext Timecode Offsets" -msgstr "Ηχητικά frames" - -#: session_option_editor.cc:100 -#, fuzzy -msgid "Slave Timecode offset" -msgstr "Ηχητικά frames" - #: session_option_editor.cc:107 msgid "The specified offset is added to the received timecode (MTC or LTC)." msgstr "" -#: session_option_editor.cc:113 -#, fuzzy -msgid "Timecode Generator offset" -msgstr "Ηχητικά frames" - #: session_option_editor.cc:120 msgid "" "Specify an offset which is added to the generated timecode (so far only LTC)." @@ -11442,11 +5987,6 @@ msgid "" "%1 is JACK Time Master (provides Bar|Beat|Tick and other information to JACK)" msgstr "" -#: session_option_editor.cc:137 -#, fuzzy -msgid "Default crossfade type" -msgstr "Crossfades εν ενεÏγεία" - #: session_option_editor.cc:142 msgid "Constant power (-3dB) crossfade" msgstr "" @@ -11459,42 +5999,12 @@ msgstr "" msgid "destructive-xfade-seconds" msgstr "" -#: session_option_editor.cc:149 -#, fuzzy -msgid "Destructive crossfade length" -msgstr "ΚαταστÏοφικό μήκος crossfade (msecs)" - -#: session_option_editor.cc:158 -#, fuzzy -msgid "Region fades active" -msgstr "ΠεÏιοχές/ημ/νία αÏχείου" - -#: session_option_editor.cc:165 -#, fuzzy -msgid "Region fades visible" -msgstr "ΠεÏιοχές/μέγεθος αÏχείου" - #: session_option_editor.cc:172 session_option_editor.cc:185 #: session_option_editor.cc:199 session_option_editor.cc:201 #: session_option_editor.cc:207 session_option_editor.cc:214 msgid "Media" msgstr "" -#: session_option_editor.cc:172 -#, fuzzy -msgid "Audio file format" -msgstr "ΠÏόσθεση αÏχείου ήχου ή φακέλου" - -#: session_option_editor.cc:176 -#, fuzzy -msgid "Sample format" -msgstr "Εντόπιο Format" - -#: session_option_editor.cc:181 -#, fuzzy -msgid "32-bit floating point" -msgstr "WAVE/μεταβλητής υποδ/λής" - #: session_option_editor.cc:182 msgid "24-bit integer" msgstr "" @@ -11507,11 +6017,6 @@ msgstr "" msgid "File type" msgstr "" -#: session_option_editor.cc:194 -#, fuzzy -msgid "Broadcast WAVE" -msgstr "Broadcast WAVE/μεταβλητής υποδ/λής" - #: session_option_editor.cc:195 msgid "WAVE" msgstr "" @@ -11520,11 +6025,6 @@ msgstr "" msgid "WAVE-64" msgstr "" -#: session_option_editor.cc:201 -#, fuzzy -msgid "File locations" -msgstr "διαγÏαφή τοποθεσιών" - #: session_option_editor.cc:203 msgid "Search for audio files in:" msgstr "" @@ -11538,11 +6038,6 @@ msgid "" "Track Input Monitoring automatically follows transport state (\"auto-input\")" msgstr "" -#: session_option_editor.cc:227 -#, fuzzy -msgid "Use monitor section in this session" -msgstr "ΠαÏση αναπαÏαγωγέα στο τέλος της συνεδÏίας" - #: session_option_editor.cc:238 msgid "MIDI region copies are independent" msgstr "" @@ -11589,109 +6084,18 @@ msgstr "" msgid "Glue new regions to bars and beats" msgstr "" -#: session_option_editor.cc:275 session_option_editor.cc:277 -#: session_option_editor.cc:284 session_option_editor.cc:291 -#: session_option_editor.cc:298 session_option_editor.cc:300 -#: session_option_editor.cc:307 session_option_editor.cc:314 -#: session_option_editor.cc:321 session_option_editor.cc:323 -#, fuzzy -msgid "Meterbridge" -msgstr "ΓέφυÏα μετÏητή" - #: session_option_editor.cc:275 msgid "Route Display" msgstr "" -#: session_option_editor.cc:279 -#, fuzzy -msgid "Show Midi Tracks" -msgstr "Ανάδειξη όλων των Audio Καναλιών" - -#: session_option_editor.cc:286 -#, fuzzy -msgid "Show Busses" -msgstr "Δίαυλοι" - -#: session_option_editor.cc:293 -#, fuzzy -msgid "Include Master Bus" -msgstr "ΔημιουÏγία Master Bus" - #: session_option_editor.cc:298 msgid "Button Area" msgstr "" -#: session_option_editor.cc:302 -#, fuzzy -msgid "Rec-enable Button" -msgstr "αλλαγή rec-enable" - -#: session_option_editor.cc:309 -#, fuzzy -msgid "Mute Button" -msgstr "+ κουμπί" - -#: session_option_editor.cc:316 -#, fuzzy -msgid "Solo Button" -msgstr "Solo μέσω διαÏλου" - #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" -#: session_option_editor.cc:325 -#, fuzzy -msgid "Track Name" -msgstr "κανάλια/δίαυλοι" - -#: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 -#, fuzzy -msgid "as new tracks" -msgstr "...ÏŽÏ‚ νέο κανάλι" - -#: sfdb_ui.cc:88 sfdb_ui.cc:108 -#, fuzzy -msgid "to selected tracks" -msgstr "θέση επιλεγμένης οπτικής καναλιοÏ" - -#: sfdb_ui.cc:90 sfdb_ui.cc:110 -#, fuzzy -msgid "to region list" -msgstr "Snap στην αÏχή πεÏιοχής" - -#: sfdb_ui.cc:92 sfdb_ui.cc:112 -#, fuzzy -msgid "as new tape tracks" -msgstr "...ÏŽÏ‚ νέο κανάλι" - -#: sfdb_ui.cc:96 -#, fuzzy -msgid "programming error: unknown import mode string %1" -msgstr "Σφάλμα Ï€ÏογÏαμματισμοÏ: request για μη-υπάÏχον ηχητικό διάστημα (%1)!" - -#: sfdb_ui.cc:123 -#, fuzzy -msgid "Auto-play" -msgstr "" -"αυτόματη\n" -"αναπαÏ/γή" - -#: sfdb_ui.cc:129 sfdb_ui.cc:236 -#, fuzzy -msgid "Sound File Information" -msgstr "ΠληÏοφοÏίες για το Soundfile" - -#: sfdb_ui.cc:141 -#, fuzzy -msgid "Timestamp:" -msgstr "Με ΧÏονο-στάμπα ΠεÏιοχής" - -#: sfdb_ui.cc:143 -#, fuzzy -msgid "Format:" -msgstr "Κανονικό" - #: sfdb_ui.cc:182 sfdb_ui.cc:526 msgid "Tags:" msgstr "" @@ -11716,31 +6120,6 @@ msgstr "" msgid "Search" msgstr "" -#: sfdb_ui.cc:449 -#, fuzzy -msgid "Audio and MIDI files" -msgstr "Ηχητικά frames" - -#: sfdb_ui.cc:452 -#, fuzzy -msgid "Audio files" -msgstr "Ηχητικά frames" - -#: sfdb_ui.cc:455 -#, fuzzy -msgid "MIDI files" -msgstr "MIDI δεσμός" - -#: sfdb_ui.cc:458 add_video_dialog.cc:132 -#, fuzzy -msgid "All files" -msgstr "καθαÏισμένα αÏχεία" - -#: sfdb_ui.cc:477 add_video_dialog.cc:143 -#, fuzzy -msgid "Browse Files" -msgstr "Αναζήτηση" - #: sfdb_ui.cc:506 msgid "Paths" msgstr "Μονοπάτια" @@ -11749,25 +6128,10 @@ msgstr "Μονοπάτια" msgid "Search Tags" msgstr "" -#: sfdb_ui.cc:531 -#, fuzzy -msgid "Sort:" -msgstr "Ταξινόμηση" - -#: sfdb_ui.cc:539 -#, fuzzy -msgid "Longest" -msgstr "Μέγιστο" - #: sfdb_ui.cc:540 msgid "Shortest" msgstr "" -#: sfdb_ui.cc:541 -#, fuzzy -msgid "Newest" -msgstr "ΑÏγότατο" - #: sfdb_ui.cc:542 msgid "Oldest" msgstr "" @@ -11776,11 +6140,6 @@ msgstr "" msgid "Most downloaded" msgstr "" -#: sfdb_ui.cc:544 -#, fuzzy -msgid "Least downloaded" -msgstr "ΕναÏκτήÏιο διάστημα" - #: sfdb_ui.cc:545 msgid "Highest rated" msgstr "" @@ -11797,31 +6156,6 @@ msgstr "" msgid "Similar" msgstr "" -#: sfdb_ui.cc:567 -#, fuzzy -msgid "ID" -msgstr "MIDI" - -#: sfdb_ui.cc:568 add_video_dialog.cc:84 -#, fuzzy -msgid "Filename" -msgstr "Μετονομασία" - -#: sfdb_ui.cc:570 -#, fuzzy -msgid "Duration" -msgstr "ΔιάÏκεια (δευτ)" - -#: sfdb_ui.cc:571 -#, fuzzy -msgid "Size" -msgstr "Μέγ.μέγεθος" - -#: sfdb_ui.cc:572 -#, fuzzy -msgid "Samplerate" -msgstr "Εντόπιο Format" - #: sfdb_ui.cc:573 msgid "License" msgstr "" @@ -11868,99 +6202,24 @@ msgstr "" msgid "MB" msgstr "" -#: sfdb_ui.cc:1086 -#, fuzzy -msgid "GB" -msgstr "Πήγαινε" - #: sfdb_ui.cc:1298 sfdb_ui.cc:1606 sfdb_ui.cc:1656 sfdb_ui.cc:1674 msgid "one track per file" msgstr "" -#: sfdb_ui.cc:1301 sfdb_ui.cc:1657 sfdb_ui.cc:1675 -#, fuzzy -msgid "one track per channel" -msgstr "panner για το κανάλι %u" - -#: sfdb_ui.cc:1309 sfdb_ui.cc:1659 sfdb_ui.cc:1676 -#, fuzzy -msgid "sequence files" -msgstr "καθαÏισμένα αÏχεία" - #: sfdb_ui.cc:1312 sfdb_ui.cc:1664 msgid "all files in one track" msgstr "" -#: sfdb_ui.cc:1313 sfdb_ui.cc:1658 -#, fuzzy -msgid "merge files" -msgstr "καθαÏισμένα αÏχεία" - -#: sfdb_ui.cc:1319 sfdb_ui.cc:1661 -#, fuzzy -msgid "one region per file" -msgstr "γόμωση πεÏιοχής" - -#: sfdb_ui.cc:1322 sfdb_ui.cc:1662 -#, fuzzy -msgid "one region per channel" -msgstr "ΔημιουÏγία μίας πεÏιοχής για κάθε κανάλι" - -#: sfdb_ui.cc:1327 sfdb_ui.cc:1663 sfdb_ui.cc:1677 -#, fuzzy -msgid "all files in one region" -msgstr "ευθυγÏάμμιση πεÏιοχής" - #: sfdb_ui.cc:1394 msgid "" "One or more of the selected files\n" "cannot be used by %1" msgstr "" -#: sfdb_ui.cc:1534 -#, fuzzy -msgid "Copy files to session" -msgstr "ΑντιγÏαφή αÏχείου στο φάκελο της συνεδÏίας" - -#: sfdb_ui.cc:1551 sfdb_ui.cc:1714 -#, fuzzy -msgid "file timestamp" -msgstr "Με ΧÏονο-στάμπα ΠεÏιοχής" - -#: sfdb_ui.cc:1552 sfdb_ui.cc:1716 -#, fuzzy -msgid "edit point" -msgstr "επεξεÏγαστής" - -#: sfdb_ui.cc:1553 sfdb_ui.cc:1718 -#, fuzzy -msgid "playhead" -msgstr "Θέση playhead" - -#: sfdb_ui.cc:1554 -#, fuzzy -msgid "session start" -msgstr "ΑÏχές ΠεÏιοχών" - #: sfdb_ui.cc:1559 msgid "Add files as ..." msgstr "" -#: sfdb_ui.cc:1581 -#, fuzzy -msgid "Insert at" -msgstr "ΑντιστÏοφή" - -#: sfdb_ui.cc:1594 -#, fuzzy -msgid "Mapping" -msgstr "ΠÏοχωÏημένα..." - -#: sfdb_ui.cc:1612 -#, fuzzy -msgid "Conversion quality" -msgstr "Ποιότητα ΜετατÏοπής" - #: sfdb_ui.cc:1624 sfdb_ui.cc:1730 msgid "Best" msgstr "" @@ -11977,16 +6236,6 @@ msgstr "" msgid "Fastest" msgstr "ΤαχÏτατο" -#: shuttle_control.cc:56 -#, fuzzy -msgid "Shuttle speed control (Context-click for options)" -msgstr "Έλεγχος ταχÏτητας Shuttle" - -#: shuttle_control.cc:165 -#, fuzzy -msgid "Percent" -msgstr "Ποσοστό" - #: shuttle_control.cc:173 msgid "Units" msgstr "" @@ -12003,54 +6252,14 @@ msgstr "ΤÏοχός" msgid "Maximum speed" msgstr "μέγιστη ταχÏτητα" -#: shuttle_control.cc:561 -#, fuzzy -msgid "Playing" -msgstr "ΑναπαÏ/γή" - -#: shuttle_control.cc:576 -#, fuzzy, c-format -msgid "<<< %+d semitones" -msgstr "Ημιτόνια" - -#: shuttle_control.cc:578 -#, fuzzy, c-format -msgid ">>> %+d semitones" -msgstr "Ημιτόνια" - -#: shuttle_control.cc:583 -#, fuzzy -msgid "Stopped" -msgstr "ΠαÏση" - #: splash.cc:73 msgid "%1 loading ..." msgstr "" -#: speaker_dialog.cc:40 -#, fuzzy -msgid "Add Speaker" -msgstr "Ï€Ïόσθεση στίγματος διαστήματος" - -#: speaker_dialog.cc:41 -#, fuzzy -msgid "Remove Speaker" -msgstr "απαλοιφή στίγματος" - #: speaker_dialog.cc:63 msgid "Azimuth:" msgstr "" -#: startup.cc:72 -#, fuzzy -msgid "Create a new session" -msgstr "ΑÏχή καινοÏÏιας συνεδÏίας\n" - -#: startup.cc:73 -#, fuzzy -msgid "Open an existing session" -msgstr "Άνοιγμα ΠÏόσφατης ΣυνεδÏίας" - #: startup.cc:74 msgid "" "Use an external mixer or the hardware mixer of your audio interface.\n" @@ -12176,11 +6385,6 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:527 -#, fuzzy -msgid "Monitor Section" -msgstr "ισοστάθμιση Ï€Ïος τα επιλεγμένα" - #: startup.cc:573 msgid "Check the website for more..." msgstr "" @@ -12189,118 +6393,18 @@ msgstr "" msgid "Click to open the program website in your web browser" msgstr "" -#: startup.cc:729 -#, fuzzy -msgid "Open" -msgstr "Άνοιγμα" - -#: startup.cc:775 -#, fuzzy -msgid "Session name:" -msgstr "Îέο Όνομα ΣυνεδÏίας:" - -#: startup.cc:798 -#, fuzzy -msgid "Create session folder in:" -msgstr "ΔημιουÏγία Directory ΣυνεδÏίας Στο:" - -#: startup.cc:821 -#, fuzzy -msgid "Select folder for session" -msgstr "επιλογή πεÏιοχών" - -#: startup.cc:853 -#, fuzzy -msgid "Use this template" -msgstr "Επιλογή Ï€Ïοσχεδίου" - -#: startup.cc:856 -#, fuzzy -msgid "no template" -msgstr "-Ï€Ïοσχέδιο" - -#: startup.cc:884 -#, fuzzy -msgid "Use an existing session as a template:" -msgstr "ΧÏήση ΠÏοσχεδίου ΣυνεδÏιών" - -#: startup.cc:896 -#, fuzzy -msgid "Select template" -msgstr "Επιλογή Ï€Ïοσχεδίου" - #: startup.cc:922 msgid "New Session" msgstr "Îέα συνεδÏία" -#: startup.cc:1077 -#, fuzzy -msgid "Select session file" -msgstr "επιλογή αÏχείου συνεδÏίας" - -#: startup.cc:1093 -#, fuzzy -msgid "Browse:" -msgstr "Αναζήτηση" - -#: startup.cc:1102 -#, fuzzy -msgid "Select a session" -msgstr "επιλογή αÏχείου συνεδÏίας" - #: startup.cc:1129 startup.cc:1130 startup.cc:1131 msgid "channels" msgstr "κανάλια" -#: startup.cc:1145 -#, fuzzy -msgid "Busses" -msgstr "Δίαυλοι" - -#: startup.cc:1146 -#, fuzzy -msgid "Inputs" -msgstr " Inputs καναλιών/διάυλων" - -#: startup.cc:1147 -#, fuzzy -msgid "Outputs" -msgstr " Outputs καναλιών/διάυλων" - -#: startup.cc:1155 -#, fuzzy -msgid "Create master bus" -msgstr "ΔημιουÏγία Master Bus" - -#: startup.cc:1165 -#, fuzzy -msgid "Automatically connect to physical inputs" -msgstr "αυτόματη σÏνδεση Inputs" - #: startup.cc:1172 startup.cc:1231 msgid "Use only" msgstr "" -#: startup.cc:1225 -#, fuzzy -msgid "Automatically connect outputs" -msgstr "Αυτόματη σÏνδεση Οutputs" - -#: startup.cc:1247 -#, fuzzy -msgid "... to master bus" -msgstr "ΣÏνδεση με Master Δίαυλο" - -#: startup.cc:1257 -#, fuzzy -msgid "... to physical outputs" -msgstr "Συνδεση με Φυσικές Εξόδους" - -#: startup.cc:1307 -#, fuzzy -msgid "Advanced Session Options" -msgstr "Επιπλέον Ρυθμίσεις" - #: step_entry.cc:59 msgid "Step Entry: %1" msgstr "" @@ -12357,11 +6461,6 @@ msgstr "" msgid "Set note length to a sixteenth note" msgstr "" -#: step_entry.cc:195 -#, fuzzy -msgid "Set note length to a thirty-second note" -msgstr "Snap σε Ï„Ïιακοστα-δεÏτεÏα (32)" - #: step_entry.cc:196 msgid "Set note length to a sixty-fourth note" msgstr "" @@ -12462,66 +6561,26 @@ msgstr "" msgid "Octave" msgstr "" -#: step_entry.cc:597 -#, fuzzy -msgid "Insert Note A" -msgstr "ΠÏοσθήκη επιλεγμένου(ων)" - #: step_entry.cc:598 msgid "Insert Note A-sharp" msgstr "" -#: step_entry.cc:599 -#, fuzzy -msgid "Insert Note B" -msgstr "ΠÏοσθήκη επιλεγμένου(ων)" - -#: step_entry.cc:600 -#, fuzzy -msgid "Insert Note C" -msgstr "ΠÏοσθήκη επιλεγμένου(ων)" - #: step_entry.cc:601 msgid "Insert Note C-sharp" msgstr "" -#: step_entry.cc:602 -#, fuzzy -msgid "Insert Note D" -msgstr "ΠÏοσθήκη επιλεγμένου(ων)" - #: step_entry.cc:603 msgid "Insert Note D-sharp" msgstr "" -#: step_entry.cc:604 -#, fuzzy -msgid "Insert Note E" -msgstr "ΠÏοσθήκη επιλεγμένου(ων)" - -#: step_entry.cc:605 -#, fuzzy -msgid "Insert Note F" -msgstr "ΠÏοσθήκη επιλεγμένου(ων)" - #: step_entry.cc:606 msgid "Insert Note F-sharp" msgstr "" -#: step_entry.cc:607 -#, fuzzy -msgid "Insert Note G" -msgstr "ΠÏοσθήκη επιλεγμένου(ων)" - #: step_entry.cc:608 msgid "Insert Note G-sharp" msgstr "" -#: step_entry.cc:610 -#, fuzzy -msgid "Insert a Note-length Rest" -msgstr "ΠÏοσθήκη επιλεγμένου(ων)" - #: step_entry.cc:611 msgid "Insert a Snap-length Rest" msgstr "" @@ -12538,16 +6597,6 @@ msgstr "" msgid "Move to Previous Note Length" msgstr "" -#: step_entry.cc:619 -#, fuzzy -msgid "Increase Note Length" -msgstr "αλλαγή μήκους fade out" - -#: step_entry.cc:620 -#, fuzzy -msgid "Decrease Note Length" -msgstr "αλλαγή μήκους fade out" - #: step_entry.cc:622 msgid "Move to Next Note Velocity" msgstr "" @@ -12616,11 +6665,6 @@ msgstr "" msgid "Set Note Length to 1/2" msgstr "" -#: step_entry.cc:647 -#, fuzzy -msgid "Set Note Length to 1/3" -msgstr "αλλαγή μήκους fade out" - #: step_entry.cc:649 msgid "Set Note Length to 1/4" msgstr "" @@ -12689,11 +6733,6 @@ msgstr "" msgid "Toggled Triple-Dotted Notes" msgstr "" -#: step_entry.cc:692 -#, fuzzy -msgid "Toggle Chord Entry" -msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 1" - #: step_entry.cc:694 msgid "Sustain Selected Notes by Note Length" msgstr "" @@ -12707,11 +6746,6 @@ msgstr "" msgid "Stereo Panner" msgstr "" -#: stereo_panner_editor.cc:49 -#, fuzzy -msgid "Width" -msgstr "πλάτος" - #: strip_silence_dialog.cc:48 msgid "Strip Silence" msgstr "" @@ -12720,11 +6754,6 @@ msgstr "" msgid "Minimum length" msgstr "" -#: strip_silence_dialog.cc:87 -#, fuzzy -msgid "Fade length" -msgstr "Fade In" - #: tempo_dialog.cc:43 tempo_dialog.cc:58 msgid "bar:" msgstr "" @@ -12733,58 +6762,6 @@ msgstr "" msgid "beat:" msgstr "" -#: tempo_dialog.cc:45 tempo_dialog.cc:60 -#, fuzzy -msgid "Pulse note" -msgstr "διαγÏαμμένα αÏχεία" - -#: tempo_dialog.cc:55 -#, fuzzy -msgid "Edit Tempo" -msgstr "ΕπεξεÏγασία με" - -#: tempo_dialog.cc:76 tempo_dialog.cc:77 tempo_dialog.cc:282 -#: tempo_dialog.cc:283 -#, fuzzy -msgid "whole" -msgstr "ολόκληÏο (1)" - -#: tempo_dialog.cc:78 tempo_dialog.cc:79 tempo_dialog.cc:284 -#: tempo_dialog.cc:285 -#, fuzzy -msgid "second" -msgstr "1 ΔευτεÏόλεπτα" - -#: tempo_dialog.cc:80 tempo_dialog.cc:81 tempo_dialog.cc:286 -#: tempo_dialog.cc:287 -#, fuzzy -msgid "third" -msgstr "Ï„Ïίτο (3)" - -#: tempo_dialog.cc:82 tempo_dialog.cc:83 tempo_dialog.cc:288 -#: tempo_dialog.cc:289 -#, fuzzy -msgid "quarter" -msgstr "τέταÏτο (4)" - -#: tempo_dialog.cc:84 tempo_dialog.cc:85 tempo_dialog.cc:290 -#: tempo_dialog.cc:291 -#, fuzzy -msgid "eighth" -msgstr "Ύψος" - -#: tempo_dialog.cc:86 tempo_dialog.cc:87 tempo_dialog.cc:292 -#: tempo_dialog.cc:293 -#, fuzzy -msgid "sixteenth" -msgstr "δέκατο έκτο (16)" - -#: tempo_dialog.cc:88 tempo_dialog.cc:89 tempo_dialog.cc:294 -#: tempo_dialog.cc:295 -#, fuzzy -msgid "thirty-second" -msgstr "Ï„Ïιακοστό-όγδοο (32)" - #: tempo_dialog.cc:90 tempo_dialog.cc:91 tempo_dialog.cc:296 #: tempo_dialog.cc:297 msgid "sixty-fourth" @@ -12795,45 +6772,10 @@ msgstr "" msgid "one-hundred-twenty-eighth" msgstr "" -#: tempo_dialog.cc:120 -#, fuzzy -msgid "Beats per minute:" -msgstr "ΚτÏποι ανά λεπτό" - #: tempo_dialog.cc:152 msgid "Tempo begins at" msgstr "" -#: tempo_dialog.cc:240 -#, fuzzy -msgid "incomprehensible pulse note type (%1)" -msgstr "είσοδος(type entry) ακατανόητης σημειώσεως (%1)" - -#: tempo_dialog.cc:266 -#, fuzzy -msgid "Edit Meter" -msgstr "ΛειτουÏγία Επεξ/σίας" - -#: tempo_dialog.cc:314 -#, fuzzy -msgid "Note value:" -msgstr "Αξία Πεδίου:" - -#: tempo_dialog.cc:315 -#, fuzzy -msgid "Beats per bar:" -msgstr "ΚτÏποι ανά μπάÏα" - -#: tempo_dialog.cc:330 -#, fuzzy -msgid "Meter begins at bar:" -msgstr "ΠαÏονομαστής ΜέτÏου" - -#: tempo_dialog.cc:441 -#, fuzzy -msgid "incomprehensible meter note type (%1)" -msgstr "είσοδος(type entry) ακατανόητης σημειώσεως (%1)" - #: theme_manager.cc:57 msgid "Dark Theme" msgstr "" @@ -12842,11 +6784,6 @@ msgstr "" msgid "Light Theme" msgstr "" -#: theme_manager.cc:59 -#, fuzzy -msgid "Restore Defaults" -msgstr "Αποτελέσματα" - #: theme_manager.cc:60 msgid "Draw \"flat\" buttons" msgstr "" @@ -12855,16 +6792,6 @@ msgstr "" msgid "All floating windows are dialogs" msgstr "" -#: theme_manager.cc:62 -#, fuzzy -msgid "Draw waveforms with color gradient" -msgstr "Ανάδειξη αυτομάτων πεÏιοχών" - -#: theme_manager.cc:68 -#, fuzzy -msgid "Object" -msgstr "αντικείμενο" - #: theme_manager.cc:123 msgid "" "Mark all floating windows to be type \"Dialog\" rather than using \"Utility" @@ -12881,13 +6808,6 @@ msgstr "" msgid "Track/Bus name (double click to edit)" msgstr "" -#: time_axis_view_item.cc:332 -#, fuzzy -msgid "new duration %1 frame is out of bounds for %2" -msgid_plural "new duration of %1 frames is out of bounds for %2" -msgstr[0] "νέα διάÏκεια %1 καÏέ είναι εκτός οÏίων για %2" -msgstr[1] "νέα διάÏκεια %1 καÏέ είναι εκτός οÏίων για %2" - #: time_fx_dialog.cc:62 msgid "Quick but Ugly" msgstr "ΓÏήγοÏο αλλά Άσχημο" @@ -12896,62 +6816,22 @@ msgstr "ΓÏήγοÏο αλλά Άσχημο" msgid "Skip Anti-aliasing" msgstr "ΠαÏάκαμψη Anti-aliasing" -#: time_fx_dialog.cc:64 -#, fuzzy -msgid "Contents:" -msgstr "Σχόλια" - #: time_fx_dialog.cc:65 msgid "Minimize time distortion" msgstr "" -#: time_fx_dialog.cc:66 -#, fuzzy -msgid "Preserve Formants" -msgstr "Εντόπιο Format" - -#: time_fx_dialog.cc:71 -#, fuzzy -msgid "TimeFXDialog" -msgstr "ΔιάλογοςΧÏονοκάμψης" - #: time_fx_dialog.cc:74 msgid "Pitch Shift Audio" msgstr "" -#: time_fx_dialog.cc:76 -#, fuzzy -msgid "Time Stretch Audio" -msgstr "κάμψη χÏόνου" - #: time_fx_dialog.cc:104 transpose_dialog.cc:41 msgid "Octaves:" msgstr "" -#: time_fx_dialog.cc:109 transpose_dialog.cc:46 -#, fuzzy -msgid "Semitones:" -msgstr "Ημιτόνια" - -#: time_fx_dialog.cc:114 -#, fuzzy -msgid "Cents:" -msgstr "Σχόλια" - #: time_fx_dialog.cc:122 msgid "Time|Shift" msgstr "" -#: time_fx_dialog.cc:146 time_fx_dialog.cc:149 -#, fuzzy -msgid "TimeFXButton" -msgstr "ΚουμπίΧÏονοκάμψης" - -#: time_fx_dialog.cc:154 -#, fuzzy -msgid "Stretch/Shrink" -msgstr "Μεγέθυνέ/ΣμίκÏυνέ το" - #: time_fx_dialog.cc:164 msgid "Progress" msgstr "" @@ -12968,11 +6848,6 @@ msgstr "Λήξη εγγÏαφής στο τέλος αυτο-εναπόθεση msgid "programming error: request for non-existent audio range (%1)!" msgstr "Σφάλμα Ï€ÏογÏαμματισμοÏ: request για μη-υπάÏχον ηχητικό διάστημα (%1)!" -#: transpose_dialog.cc:30 -#, fuzzy -msgid "Transpose MIDI" -msgstr "Αναζήτηση MIDI Input" - #: transpose_dialog.cc:55 msgid "Transpose" msgstr "" @@ -12981,11 +6856,6 @@ msgstr "" msgid "Loading default ui configuration file %1" msgstr "" -#: ui_config.cc:85 ui_config.cc:116 -#, fuzzy -msgid "cannot read default ui configuration file \"%1\"" -msgstr "το αÏχείο καθοÏÎ¹ÏƒÎ¼Î¿Ï Ï‡Ïωμάτων %1: %2 δεν ανοίγει" - #: ui_config.cc:90 ui_config.cc:121 msgid "default ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -12994,11 +6864,6 @@ msgstr "" msgid "Loading user ui configuration file %1" msgstr "" -#: ui_config.cc:137 -#, fuzzy -msgid "cannot read ui configuration file \"%1\"" -msgstr "το αÏχείο καθοÏÎ¹ÏƒÎ¼Î¿Ï Ï‡Ïωμάτων %1: %2 δεν ανοίγει" - #: ui_config.cc:142 msgid "user ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -13019,16 +6884,6 @@ msgstr "εσφαλμένος XPM header %1" msgid "missing RGBA style for \"%1\"" msgstr "ελλειπές RGBA στÏλ για \"%1\"" -#: utils.cc:591 -#, fuzzy -msgid "cannot find XPM file for %1" -msgstr "δεν ευÏέθησαν εικόνες για το fader rail" - -#: utils.cc:617 -#, fuzzy -msgid "cannot find icon image for %1 using %2" -msgstr "δεν ευÏέθησαν εικόνες για το fader rail" - #: utils.cc:632 msgid "Caught exception while loading icon named %1" msgstr "" @@ -13037,16 +6892,6 @@ msgstr "" msgid "VerboseCanvasCursor" msgstr "" -#: add_video_dialog.cc:55 -#, fuzzy -msgid "Set Video Track" -msgstr "ΠÏόσθεση καναλιοÏ" - -#: add_video_dialog.cc:63 -#, fuzzy -msgid "Launch External Video Monitor" -msgstr "Software Monitoring" - #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -13059,26 +6904,6 @@ msgstr "" msgid "VideoServerIndex" msgstr "" -#: add_video_dialog.cc:129 -#, fuzzy -msgid "Video files" -msgstr "Ηχητικά frames" - -#: add_video_dialog.cc:164 -#, fuzzy -msgid "Video Information" -msgstr "ΠληÏοφοÏίες για το Soundfile" - -#: add_video_dialog.cc:167 -#, fuzzy -msgid "Start:" -msgstr "ΑÏχή:" - -#: add_video_dialog.cc:173 -#, fuzzy -msgid "Frame rate:" -msgstr "Εντόπιο Format" - #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -13124,11 +6949,6 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" -#: video_monitor.cc:281 -#, fuzzy -msgid "Video Monitor: File Not Found." -msgstr "Software Monitoring" - #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -13145,25 +6965,10 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:56 -#, fuzzy -msgid "Transcode/Import Video File " -msgstr "Εξαγωγή συνεδÏίας σε αÏχείο..." - -#: transcode_video_dialog.cc:58 -#, fuzzy -msgid "Output File:" -msgstr "κανάλια" - #: transcode_video_dialog.cc:61 export_video_dialog.cc:73 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:63 -#, fuzzy -msgid "Height = " -msgstr "Ύψος" - #: transcode_video_dialog.cc:66 msgid "Manual Override" msgstr "" @@ -13172,11 +6977,6 @@ msgstr "" msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:107 -#, fuzzy -msgid "File Information" -msgstr "ΠληÏοφοÏίες για το Soundfile" - #: transcode_video_dialog.cc:113 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " @@ -13194,11 +6994,6 @@ msgstr "" msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:136 -#, fuzzy -msgid "Duration:" -msgstr "ΔιάÏκεια (δευτ)" - #: transcode_video_dialog.cc:138 msgid "Codec:" msgstr "" @@ -13207,16 +7002,6 @@ msgstr "" msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:155 -#, fuzzy -msgid "??" -msgstr "???" - -#: transcode_video_dialog.cc:176 -#, fuzzy -msgid "Import Settings" -msgstr "Επιλογές" - #: transcode_video_dialog.cc:181 msgid "Do Not Import Video" msgstr "" @@ -13225,11 +7010,6 @@ msgstr "" msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:184 -#, fuzzy -msgid "Import/Transcode Video to Session" -msgstr "Εξαγωγή ΣυνεδÏίας" - #: transcode_video_dialog.cc:198 msgid "Scale Video: Width = " msgstr "" @@ -13242,16 +7022,6 @@ msgstr "" msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:225 -#, fuzzy -msgid "Extract Audio:" -msgstr "Εξαγωγή ΣυνεδÏίας" - -#: transcode_video_dialog.cc:345 -#, fuzzy -msgid "Extracting Audio.." -msgstr "Εξαγωγή ΣυνεδÏίας" - #: transcode_video_dialog.cc:348 msgid "Audio Extraction Failed." msgstr "" @@ -13264,11 +7034,6 @@ msgstr "" msgid "Transcoding Failed." msgstr "" -#: transcode_video_dialog.cc:491 -#, fuzzy -msgid "Save Transcoded Video File" -msgstr "Εξαγωγή συνεδÏίας σε αÏχείο..." - #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -13296,16 +7061,6 @@ msgstr "" msgid "Listen Address:" msgstr "" -#: video_server_dialog.cc:125 -#, fuzzy -msgid "Listen Port:" -msgstr "Θέση" - -#: video_server_dialog.cc:130 -#, fuzzy -msgid "Cache Size:" -msgstr "Μέγ.μέγεθος" - #: video_server_dialog.cc:136 msgid "" "%1 relies on an external Video Server for the videotimeline.\n" @@ -13335,31 +7090,6 @@ msgstr "" msgid "Continue" msgstr "" -#: utils_videotl.cc:63 -#, fuzzy -msgid "Confirm Overwrite" -msgstr "awrite" - -#: utils_videotl.cc:64 -#, fuzzy -msgid "A file with the same name already exists. Do you want to overwrite it?" -msgstr "Το αÏχείο ήδη υπάÏχει, θέλετε να σώστε από πάνω?" - -#: utils_videotl.cc:74 utils_videotl.cc:90 -#, fuzzy -msgid "Cannot create video folder \"%1\" (%2)" -msgstr "δεν γίνεται νέος αÏχηγός process group (%1)" - -#: export_video_dialog.cc:66 -#, fuzzy -msgid "Export Video File " -msgstr "Εξαγωγή συνεδÏίας σε αÏχείο..." - -#: export_video_dialog.cc:70 -#, fuzzy -msgid "Video:" -msgstr "ΕυθυγÏάμμιση αÏχής ΠεÏιοχών" - #: export_video_dialog.cc:74 msgid "Scale Video (W x H):" msgstr "" @@ -13368,11 +7098,6 @@ msgstr "" msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:80 -#, fuzzy -msgid "Normalize Audio" -msgstr "Εξομάλυνση" - #: export_video_dialog.cc:81 msgid "2 Pass Encoding" msgstr "" @@ -13381,11 +7106,6 @@ msgstr "" msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:84 -#, fuzzy -msgid "Deinterlace" -msgstr "εσωτεÏικό" - #: export_video_dialog.cc:85 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" @@ -13394,11 +7114,6 @@ msgstr "" msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:87 -#, fuzzy -msgid "Include Session Metadata" -msgstr "Εισαγωγή επιλεγμένου(ων)" - #: export_video_dialog.cc:107 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " @@ -13406,26 +7121,6 @@ msgid "" "information." msgstr "" -#: export_video_dialog.cc:117 -#, fuzzy -msgid "Output:" -msgstr " Outputs καναλιών/διάυλων" - -#: export_video_dialog.cc:127 -#, fuzzy -msgid "Input:" -msgstr " Inputs καναλιών/διάυλων" - -#: export_video_dialog.cc:138 -#, fuzzy -msgid "Audio:" -msgstr "ΑκÏόαση" - -#: export_video_dialog.cc:140 -#, fuzzy -msgid "Master Bus" -msgstr "ΔημιουÏγία Master Bus" - #: export_video_dialog.cc:145 msgid "from the %1 session's start to the session's end" msgstr "" @@ -13438,61 +7133,6 @@ msgstr "" msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:184 -#, fuzzy -msgid "Settings:" -msgstr "ΠÏοχωÏημένα..." - -#: export_video_dialog.cc:192 -#, fuzzy -msgid "Range:" -msgstr "Διάστημα" - -#: export_video_dialog.cc:195 -#, fuzzy -msgid "Preset:" -msgstr "Îέο ΠÏοσθήκη" - -#: export_video_dialog.cc:198 -#, fuzzy -msgid "Video Codec:" -msgstr "Όνομα φακέλου:" - -#: export_video_dialog.cc:201 -#, fuzzy -msgid "Video KBit/s:" -msgstr "ΕυθυγÏάμμιση αÏχής ΠεÏιοχών" - -#: export_video_dialog.cc:204 -#, fuzzy -msgid "Audio Codec:" -msgstr "Ηχητικά frames" - -#: export_video_dialog.cc:207 -#, fuzzy -msgid "Audio KBit/s:" -msgstr "Ηχητικά frames" - -#: export_video_dialog.cc:210 -#, fuzzy -msgid "Audio Samplerate:" -msgstr "Εντόπιο Format" - -#: export_video_dialog.cc:387 -#, fuzzy -msgid "Normalizing audio" -msgstr "Εξομάλυνση" - -#: export_video_dialog.cc:391 -#, fuzzy -msgid "Exporting audio" -msgstr "Εξαγωγή ΣυνεδÏίας" - -#: export_video_dialog.cc:437 -#, fuzzy -msgid "Exporting Audio..." -msgstr "Εξαγωγή ΣυνεδÏίας" - #: export_video_dialog.cc:494 msgid "" "Export Video: Cannot query duration of video-file, using duration from " @@ -13523,16 +7163,6 @@ msgstr "" msgid "Transcoding failed." msgstr "" -#: export_video_dialog.cc:948 export_video_dialog.cc:968 -#, fuzzy -msgid "Save Exported Video File" -msgstr "Εξαγωγή συνεδÏίας σε αÏχείο..." - -#: export_video_infobox.cc:30 -#, fuzzy -msgid "Video Export Info" -msgstr "Software Monitoring" - #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -13549,2172 +7179,3 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" - -#, fuzzy -#~ msgid "-Inf" -#~ msgstr "-inf" - -#, fuzzy -#~ msgid "slowest" -#~ msgstr "ΑÏγότατο" - -#, fuzzy -#~ msgid "fast" -#~ msgstr "ταχÏτατη" - -#, fuzzy -#~ msgid "faster" -#~ msgstr "ΤαχÏτεÏα" - -#~ msgid "fastest" -#~ msgstr "ταχÏτατη" - -#~ msgid "Connect" -#~ msgstr "ΣÏνδεση" - -#~ msgid "Add Audio Track" -#~ msgstr "ΠÏόσθεση καναλιοÏ" - -#~ msgid "Add Audio Bus" -#~ msgstr "ΠÏόσθεση Audio ΔιαÏλου" - -#, fuzzy -#~ msgid "Add MIDI Track" -#~ msgstr "ΠÏόσθεση καναλιοÏ" - -#, fuzzy -#~ msgid "Control surfaces" -#~ msgstr "Επιφάνειες ελέγχου" - -#, fuzzy -#~ msgid "Hid" -#~ msgstr "ΚÏÏψιμο" - -#~ msgid "Locate to Range Mark" -#~ msgstr "ΕÏÏεση σε Στίγματα Διαστημάτων" - -#~ msgid "Play from Range Mark" -#~ msgstr "ΑναπαÏ/γή από Στίγματα Διαστημάτων" - -#, fuzzy -#~ msgid "Channel:" -#~ msgstr "Κανάλια" - -#, fuzzy -#~ msgid "Lck" -#~ msgstr "Κλείδωμα" - -#, fuzzy -#~ msgid "Use overlap equivalency for regions" -#~ msgstr "θέση επιλογής από πεÏιοχή" - -#~ msgid "gTortnam" -#~ msgstr "gTortnam" - -#, fuzzy -#~ msgid "could not create a new mixed track" -#~ msgstr "Δεν γίνεται να δημιουÏγηθεί νέο ηχητικό κανάλι" - -#, fuzzy -#~ msgid "could not create new audio bus" -#~ msgid_plural "could not create %1 new audio busses" -#~ msgstr[0] "Δεν γίνεται να δημιουÏγηθεί νέο ηχητικό κανάλι" -#~ msgstr[1] "Δεν γίνεται να δημιουÏγηθεί νέο ηχητικό κανάλι" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were not in use and \n" -#~ "have been moved to: %2\n" -#~ "\n" -#~ "After a restart of %5\n" -#~ "\n" -#~ "Session -> Clean-up -> Flush Wastebasket\n" -#~ "\n" -#~ "will release an additional %3 %4bytes of disk space.\n" -#~ msgstr "" -#~ "Τα ακόλουθα %1 %2 δεν χÏησιμοποιοÏνταν και\n" -#~ "εστάλησαν στο:%3\n" -#~ "Αν αδειάσετε τον κάδο\n" -#~ "θα ελευθεÏωθοÏν %4 %5bytes\n" -#~ "στο δίσκο.\n" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were deleted from %2,\n" -#~ "releasing %3 %4bytes of disk space" -#~ msgstr "" -#~ "Τα ακόλουθα %1 file%2 διεγÏάφησαν από\n" -#~ "%3,\n" -#~ "ελευθεÏώνοντας %4 %5bytes χώÏου στο δίσκο" - -#, fuzzy -#~ msgid "could only create %1 of %2 new audio %3" -#~ msgstr "Δεν γίνεται να δημιουÏγηθεί νέος ηχητικός δίαυλος" - -#, fuzzy -#~ msgid "Always Play Range Selection (if any)" -#~ msgstr "ΑναπαÏ/γή διαστήματος/επιλογής" - -#~ msgid "Start playback after any locate" -#~ msgstr "ΑÏχή αναπαÏ/γής μετά από κάθε τοποθέτηση" - -#, fuzzy -#~ msgid "Always Play Range" -#~ msgstr "ΑναπαÏ/γή διαστήματος" - -#, fuzzy -#~ msgid "Select/Move Objects" -#~ msgstr "επιλογή/μετακίνηση αντικειμένων" - -#, fuzzy -#~ msgid "Select/Move Ranges" -#~ msgstr "επιλογή/μετακίνηση διαστημάτων" - -#, fuzzy -#~ msgid "Link Object / Range Tools" -#~ msgstr "ΕÏγαλείο Object" - -#, fuzzy -#~ msgid "editing|E" -#~ msgstr "ΕπεξεÏγασία με" - -#, fuzzy -#~ msgid "Sharing Editing?" -#~ msgstr "ΑÏιθμός Καναλιών" - -#, fuzzy -#~ msgid "Disable plugins during recording" -#~ msgstr "ΑπενεÏγοποίηση plugins κατα την εγγÏαφή" - -#, fuzzy -#~ msgid "Visual|Interface" -#~ msgstr "ΕσωτεÏικό" - -#, fuzzy -#~ msgid "Editing" -#~ msgstr "ΕπεξεÏγασία με" - -#, fuzzy -#~ msgid "Timecode Offset Negative" -#~ msgstr "To SMPTE είναι αÏνητικό" - -#, fuzzy -#~ msgid "Crossfades are created" -#~ msgstr "Crossfades εν ενεÏγεία" - -#, fuzzy -#~ msgid "to span entire overlap" -#~ msgstr "ΔιασκοÏπισμός όλου του Overlap" - -#, fuzzy -#~ msgid "use existing region fade shape" -#~ msgstr "ΧÏήση ΠÏοσχεδίου ΣυνεδÏιών" - -#, fuzzy -#~ msgid "Short crossfade length" -#~ msgstr "ΜικÏÏŒ μήκος crossfade (msecs)" - -#, fuzzy -#~ msgid "Create crossfades automatically" -#~ msgstr "ΔημιουÏγήθηκε αυτόματα" - -#, fuzzy -#~ msgid "Add files:" -#~ msgstr "διαγÏαμμένα αÏχεία" - -#, fuzzy -#~ msgid "%1 could not start JACK" -#~ msgstr "Το Ardour δεν μπόÏεσε να συνδεθεί στον JACK." - -#, fuzzy -#~ msgid "" -#~ "There are several possible reasons:\n" -#~ "\n" -#~ "1) You requested audio parameters that are not supported..\n" -#~ "2) JACK is running as another user.\n" -#~ "\n" -#~ "Please consider the possibilities, and perhaps try different parameters." -#~ msgstr "" -#~ "ΥπάÏχουν διάφοÏοι πιθανοί λόγοι:\n" -#~ "\n" -#~ "1) Ο JACK δεν Ï„Ïέχει.\n" -#~ "2) JACK Ï„Ïέχει σαν άλλος ΧÏήστης, ίσως σαν root.\n" -#~ "3) ΥπάÏχει ήδη άλλο Ï€ÏόγÏαμμα με το όνομα \"ardour\".\n" -#~ "\n" -#~ "ΠαÏακαλώ αναλογιστείτε τις πιθανότητες, ίσως (ξανα)ξεκινήστε τον JACK." - -#, fuzzy -#~ msgid "Mixer" -#~ msgstr "Ανάδειξη Μίκτη" - -#, fuzzy -#~ msgid "Show All Crossfades" -#~ msgstr "ΕπαναφοÏά όλων των crossfades" - -#, fuzzy -#~ msgid "Edit Crossfade" -#~ msgstr "ΕπεξεÏγασία fade" - -#, fuzzy -#~ msgid "With Pre-roll" -#~ msgstr "με pre-roll" - -#, fuzzy -#~ msgid "With Post-roll" -#~ msgstr "με post-roll" - -#, fuzzy -#~ msgid "Edit crossfade" -#~ msgstr "ΕπεξεÏγασία fade" - -#, fuzzy -#~ msgid "Route Groups" -#~ msgstr "επεξεÏ/σία Groups" - -#, fuzzy -#~ msgid "Convert to Full" -#~ msgstr "Εξαγωγή σε αÏχείο" - -#, fuzzy -#~ msgid "Nudge Entire Track Backward" -#~ msgstr "ÎÏξη ολόκληÏου ÎºÎ±Î½Î±Î»Î¹Î¿Ï ÎµÎ¼Ï€Ïός" - -#, fuzzy -#~ msgid "Nudge Track After Edit Point Backward" -#~ msgstr "ÎÏξη ÎºÎ±Î½Î±Î»Î¹Î¿Ï Î¼ÎµÏ„Î¬ του κέÏσοÏα επεξεÏγασίας εμπÏός" - -#, fuzzy -#~ msgid "Nudge Region/Selection Backwards" -#~ msgstr "ÎÏξη πεÏιοχής/επιλογής πίσω" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Jump Forward to Mark" -#~ msgstr "Μετάθεση εμπÏός στο Σημάδι" - -#~ msgid "Jump Backward to Mark" -#~ msgstr "Μετάθεση πίσω στο Σημάδι" - -#~ msgid "Nudge Next Backward" -#~ msgstr "ÎÏξη επόμενη πίσω" - -#, fuzzy -#~ msgid "Forward to Grid" -#~ msgstr "Μετάθεση εμπÏός στο Σημάδι" - -#, fuzzy -#~ msgid "Backward to Grid" -#~ msgstr "Μετάθεση πίσω στο Σημάδι" - -#, fuzzy -#~ msgid "Add Range Marker(s)" -#~ msgstr "ΠÏόσθεση Στιγμάτων Διαστήματος" - -#, fuzzy -#~ msgid "Envelope Visible" -#~ msgstr "οÏατό" - -#, fuzzy -#~ msgid "Rel" -#~ msgstr "Θέση" - -#, fuzzy -#~ msgid "Sel" -#~ msgstr "Θέση" - -#, fuzzy -#~ msgid "region gain envelope visible" -#~ msgstr "ανάδειξη χÏονοδιαγÏάμματος του gain" - -#, fuzzy -#~ msgid "time stretch" -#~ msgstr "κάμψη χÏόνου" - -#, fuzzy -#~ msgid "Input channels:" -#~ msgstr "κανάλια" - -#, fuzzy -#~ msgid "Advanced options" -#~ msgstr "Επιπλέον Ρυθμίσεις" - -#, fuzzy -#~ msgid "New From" -#~ msgstr "Îέο αντίγÏαφο" - -#, fuzzy -#~ msgid "Option-" -#~ msgstr "Επιλογές" - -#, fuzzy -#~ msgid "Control-" -#~ msgstr "Πίνακας Ελέγχου" - -#, fuzzy -#~ msgid "Set value to playhead" -#~ msgstr "Επιλογή όλων μετά την playhead" - -#, fuzzy -#~ msgid "End time" -#~ msgstr "Τέλος σημείου ισοσταθμίσεως" - -#, fuzzy -#~ msgid "Could not create user configuration directory" -#~ msgstr "Δεν γίνεται να δημιουÏγηθεί νέο ηχητικό κανάλι" - -#, fuzzy -#~ msgid "MIDI Thru" -#~ msgstr "MIDI" - -#~ msgid "signal" -#~ msgstr "σήμα" - -#, fuzzy -#~ msgid "close" -#~ msgstr "Κλείσιμο" - -#~ msgid "New send" -#~ msgstr "Nέο send" - -#~ msgid "New Send ..." -#~ msgstr "Îέο Send ..." - -#, fuzzy -#~ msgid "Controls..." -#~ msgstr "Πίνακας Ελέγχου" - -#, fuzzy -#~ msgid "Secondary clock delta to edit cursor" -#~ msgstr "Από αÏχή μέχÏι κέÏσοÏα επεξεÏγασίας" - -#, fuzzy -#~ msgid "Route active state" -#~ msgstr "Κατάσταση αυτοματισμοÏ" - -#, fuzzy -#~ msgid "Layering model" -#~ msgstr "ΣτÏωματοποίηση" - -#, fuzzy -#~ msgid "later is higher" -#~ msgstr "το τελευταίο ψηλότεÏα" - -#, fuzzy -#~ msgid "most recently moved or added is higher" -#~ msgstr "Το μετακινημένο/Ï€Ïοσθεμένο πιό Ï€Ïόσφατα ψηλοτεÏα" - -#, fuzzy -#~ msgid "most recently added is higher" -#~ msgstr "Το Ï€Ïοσθεμένο πιό Ï€Ïόσφατα ψηλοτεÏα" - -#, fuzzy -#~ msgid "Broadcast WAVE metadata" -#~ msgstr "Broadcast WAVE/μεταβλητής υποδ/λής" - -#, fuzzy -#~ msgid "Page:" -#~ msgstr "ΧÏήση: " - -#~ msgid "second (2)" -#~ msgstr "δεÏτεÏο (2)" - -#~ msgid "eighth (8)" -#~ msgstr "όγδοο (8)" - -#~ msgid "garbaged note type entry (%1)" -#~ msgstr "είσοδος(type entry) άχÏηστης σημειώσεως (%1)" - -#, fuzzy -#~ msgid "Strict Linear" -#~ msgstr "ΓÏαμμικό" - -#~ msgid "" -#~ "pre\n" -#~ "roll" -#~ msgstr "" -#~ "pre\n" -#~ "roll" - -#~ msgid "" -#~ "post\n" -#~ "roll" -#~ msgstr "" -#~ "post\n" -#~ "roll" - -#, fuzzy -#~ msgid "AUDITION" -#~ msgstr "ΑΚΡΟΑΣΗ" - -#~ msgid "SOLO" -#~ msgstr "ΣΟΛΟ" - -#, fuzzy -#~ msgid "%.1f kHz / %4.1f ms" -#~ msgstr "SR: %.1f kHz" - -#, fuzzy -#~ msgid "% kHz / %4.1f ms" -#~ msgstr "SR: %.1f kHz" - -#, fuzzy -#~ msgid "DSP: %5.1f%%" -#~ msgstr "ΦοÏτίο DSP: %.1f%%" - -#, fuzzy -#~ msgid "Buffers p:%%% c:%%%" -#~ msgstr "Buffers p:%5.0f%% c:%5.0f%%" - -#, fuzzy -#~ msgid "Disk: 24hrs+" -#~ msgstr "χώÏος : 24hrs+" - -#, fuzzy -#~ msgid "Does %1 control the time?" -#~ msgstr "Ελέγχει το χÏόνο το Ardour?" - -#, fuzzy -#~ msgid "External" -#~ msgstr "ΕσωτεÏικό" - -#, fuzzy -#~ msgid "FPS" -#~ msgstr "24 FPS" - -#, fuzzy -#~ msgid " " -#~ msgstr "% " - -#~ msgid "automation" -#~ msgstr "αυτοματισμός" - -#, fuzzy -#~ msgid "Delete Unused" -#~ msgstr "ΔιαγÏαφή με" - -#, fuzzy -#~ msgid "Solo/Mute" -#~ msgstr "Σόλο" - -#, fuzzy -#~ msgid "Activate all" -#~ msgstr "ΕνεÏγοποίηση όλων" - -#~ msgid "A track already exists with that name" -#~ msgstr "Κανάλι με αυτό το όνομα ήδη υπάÏχει" - -#, fuzzy -#~ msgid "layer-display" -#~ msgstr "Απεικόνιση" - -#~ msgid "r" -#~ msgstr "r" - -#, fuzzy -#~ msgid "Cancelling.." -#~ msgstr "ΑκÏÏωση" - -#~ msgid "unknown track height name \"%1\" in XML GUI information" -#~ msgstr "Άγνωστο όνομα Ïψους καναλιοÏ\"%1\" στις XML GUI πληÏοφοÏίες" - -#~ msgid "Off" -#~ msgstr "Εκτός" - -#~ msgid "Smaller" -#~ msgstr "ΜικÏότεÏο" - -#~ msgid "quit" -#~ msgstr "Έξοδος" - -#, fuzzy -#~ msgid "session" -#~ msgstr "ΣυνεδÏία" - -#, fuzzy -#~ msgid "snapshot" -#~ msgstr "Στιγμιότυπο" - -#, fuzzy -#~ msgid "Save Mix Template" -#~ msgstr "Αποθήκευση Ï€Ïοσχεδίου..." - -#, fuzzy -#~ msgid "Clean Up" -#~ msgstr "ΕκκαθάÏιση" - -#~ msgid "Select semitones or %%-age for speed display" -#~ msgstr "Επιλογή ημιτονίων ή %%-age για απεικόνιση ταχÏτητος" - -#~ msgid "Current transport speed" -#~ msgstr "ΤÏέχουσα ταχÏτητα μεταφοÏάς" - -#~ msgid "sprung" -#~ msgstr "έλασμα" - -#~ msgid "wheel" -#~ msgstr "Ï„Ïοχός" - -#, fuzzy -#~ msgid "stop" -#~ msgstr "παÏση" - -#~ msgid "Cleanup" -#~ msgstr "ΕκκαθάÏιση" - -#, fuzzy -#~ msgid "DSP: 100.0%" -#~ msgstr "ΦοÏτίο DSP: %.1f%%" - -#, fuzzy -#~ msgid "ST" -#~ msgstr "VST" - -#~ msgid "Extend Range to End of Region" -#~ msgstr "Επέκταση Διαστήματος στο τέλος της ΠεÏιοχής" - -#~ msgid "Extend Range to Start of Region" -#~ msgstr "Επέκταση Διαστήματος στην ΑÏχή της ΠεÏιοχής" - -#, fuzzy -#~ msgid "Key Mouse" -#~ msgstr "ΠλκτÏ/Ποντίκι" - -#~ msgid "goto" -#~ msgstr "πήγαινε στο" - -#, fuzzy -#~ msgid "Center Active Marker" -#~ msgstr "Απαλοιφή Στίγματος" - -#~ msgid "Brush at Mouse" -#~ msgstr "Brush στο ποντίκι" - -#~ msgid "Bounce" -#~ msgstr "Αναπήδηση" - -#, fuzzy -#~ msgid "fixed time region copy" -#~ msgstr "Έλξη αντιγÏαφής πεÏιοχής" - -#, fuzzy -#~ msgid "region copy" -#~ msgstr "Έλξη αντιγÏαφής πεÏιοχής" - -#~ msgid "timestretch" -#~ msgstr "κάμψη χÏόνου" - -#~ msgid "extend selection" -#~ msgstr "επέκταση επιλογής" - -#~ msgid "Clear tempo" -#~ msgstr "ΕκκαθάÏιση ΧÏόνου" - -#~ msgid "Clear meter" -#~ msgstr "ΕκκαθάÏιση μέτÏου" - -#, fuzzy -#~ msgid "Default Channel" -#~ msgstr "ΔιαχωÏισμός Καναλιών" - -#, fuzzy -#~ msgid "Inserts, sends & plugins:" -#~ msgstr "Pre-fader εισαγωγές, sends & plugins:" - -#, fuzzy -#~ msgid "" -#~ "Do you really want to remove bus \"%1\" ?\n" -#~ "\n" -#~ "You may also lose the playlist used by this track.\n" -#~ "\n" -#~ "(This action cannot be undone, and the session file will be overwritten)" -#~ msgstr "" -#~ "Στ'αλήθεια θέλετε να απαλοίψετε το κανάλι \"%1\" ?\n" -#~ "\n" -#~ "Πιθανόν να χάσετε και τη λίστα που χÏησιμοποιείται από το κανάλι.\n" -#~ "(δεν μποÏεί να ανακληθεί)" - -#, fuzzy -#~ msgid "insert file" -#~ msgstr "Ï€Ïοσθήκη ηχο-αÏχείου" - -#, fuzzy -#~ msgid "region drag" -#~ msgstr "Κοπή ΠεÏιοχής κατά το διάστημα" - -#~ msgid "Drag region brush" -#~ msgstr "Έλξη βοÏÏτσας πεÏιοχής(ων)" - -#~ msgid "selection grab" -#~ msgstr "αÏπαγή επιλεγμένων" - -#~ msgid "region fill" -#~ msgstr "γόμωση πεÏιοχής" - -#~ msgid "fill selection" -#~ msgstr "γόμωση επιλογής" - -#~ msgid "duplicate region" -#~ msgstr "αντιγÏαφή πεÏιοχής" - -#, fuzzy -#~ msgid "C" -#~ msgstr "CD" - -#~ msgid "panning link control" -#~ msgstr "έλεγχος panning link" - -#~ msgid "panning link direction" -#~ msgstr "κατεÏθυνση panning link" - -#, fuzzy -#~ msgid "Set tempo map" -#~ msgstr "μετακίνηση στίγματος tempo" - -#, fuzzy -#~ msgid "" -#~ "Ardour comes with ABSOLUTELY NO WARRANTY\n" -#~ "This is free software, and you are welcome to redistribute it\n" -#~ "under certain conditions; see the file COPYING for details.\n" -#~ msgstr "" -#~ "Πνευματικά Δικαιώματα (C) 1999-2004 Paul Davis\n" -#~ "Το Ï€ÏόγÏαμμα Ardour διανέμεται δίχως ΑΠΟΛΥΤΩΣ ΚΑΜΙΑ ΕΓΓΥΗΣΗ\n" -#~ "Το παÏόν ειναι δωÏεάν λογισμικό, είστε ευπÏόσδεκτοι να το " -#~ "επαναδιανείμετε \n" -#~ "υπό ειδικοÏÏ‚ ÏŒÏους; διαβάστε το αÏχείο COPYING για λεπτομέÏειες.\n" - -#, fuzzy -#~ msgid "" -#~ "%1\n" -#~ "(built with ardour/gtk %2.%3.%4 libardour: %5.%6.%7)" -#~ msgstr "" -#~ "Ardour: %1\n" -#~ "(Κτισμένο με ardour/gtk %2 libardour: %3.%4.%5)" - -#, fuzzy -#~ msgid "programmer error: %1 %2" -#~ msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: " - -#~ msgid "ardour: add track/bus" -#~ msgstr "ardour: Εισαγωγή καναλιοÏ/διαÏλου" - -#~ msgid "Name (template)" -#~ msgstr "Όνομα (Ï€Ïοσχέδιο)" - -#~ msgid "" -#~ "punch\n" -#~ "in" -#~ msgstr "" -#~ "punch\n" -#~ "in" - -#~ msgid "" -#~ "punch\n" -#~ "out" -#~ msgstr "" -#~ "punch\n" -#~ "out" - -#~ msgid "" -#~ "auto\n" -#~ "play" -#~ msgstr "" -#~ "αυτόματη\n" -#~ "αναπαÏ/γή" - -#~ msgid "click" -#~ msgstr "μετÏονόμος" - -#~ msgid "ardour: save session?" -#~ msgstr "ardour: αποθήκευση συνεδÏίας;" - -#~ msgid "programming error: impossible control method" -#~ msgstr "Σφάλμα Ï€ÏογÏαμματισμοÏ: Μη-πιθανή μέθοδος ελέγχου" - -#~ msgid "open session" -#~ msgstr "Άνοιγμα συνεδÏίας" - -#~ msgid "Ardour sessions" -#~ msgstr "Ardour συνεδÏίες" - -#~ msgid "Patience is a virtue.\n" -#~ msgstr "Η Υπομονή ειναι ΧÏυσός.\n" - -#~ msgid "Unable to create all required ports" -#~ msgstr "Ανικανότητα δημιουÏγίας των επιθυμητών θυÏών" - -#~ msgid "No Stream" -#~ msgstr "Δεν υπάÏχει Ïοή(No stream)" - -#~ msgid "" -#~ "You do not have write access to this session.\n" -#~ "This prevents the session from being loaded." -#~ msgstr "" -#~ "Δεν έχετε Ï€Ïόσβαση εγγÏαφής σε αυτή τη συνεδÏία.\n" -#~ "Η συνεδÏία δεν θα ανοιχτεί." - -#~ msgid "ardour: cleanup" -#~ msgstr "ardour: εκκαθάÏιση" - -#~ msgid "files were" -#~ msgstr "αÏχεία ήταν" - -#~ msgid "file was" -#~ msgstr "αÏχείο ήταν" - -#, fuzzy -#~ msgid "ardour_cleanup" -#~ msgstr "ardour: εκκαθάÏιση" - -#~ msgid "MMC + Local" -#~ msgstr "MMC + Τοπικό" - -#~ msgid "MMC" -#~ msgstr "MMC" - -#~ msgid "Local" -#~ msgstr "Τοπικό" - -#~ msgid "ardour: clock" -#~ msgstr "ardour: ΩÏολόγιον" - -#~ msgid "st" -#~ msgstr "st" - -#~ msgid "Sound File Browser" -#~ msgstr "Αναζήτηση Soundfiles" - -#~ msgid "KeyMouse Actions" -#~ msgstr "ΕνέÏγειες ποντικιοÏ" - -#~ msgid "Data" -#~ msgstr "Δεδομένα" - -#~ msgid "Export selection to audiofile..." -#~ msgstr "Εξαγωγή επιλογής σε ηχο-αÏχείο..." - -#~ msgid "Export range markers to audiofile..." -#~ msgstr "Εξαγωγή διαστήματος σε audio αÏχείο..." - -#~ msgid "Track/Bus Inspector" -#~ msgstr "επιθεώÏηση καναλιών/διαÏλων " - -#, fuzzy -#~ msgid "Colors" -#~ msgstr "ΧÏώμα" - -#~ msgid "Toggle Record Enable Track2" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 2" - -#~ msgid "Toggle Record Enable Track3" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 3" - -#~ msgid "Toggle Record Enable Track4" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 4" - -#~ msgid "Toggle Record Enable Track5" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 5" - -#~ msgid "Toggle Record Enable Track6" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 6" - -#~ msgid "Toggle Record Enable Track7" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 7" - -#~ msgid "Toggle Record Enable Track8" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 8" - -#~ msgid "Toggle Record Enable Track9" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 9" - -#~ msgid "Toggle Record Enable Track10" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 10" - -#~ msgid "Toggle Record Enable Track11" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 11" - -#~ msgid "Toggle Record Enable Track12" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 12" - -#~ msgid "Toggle Record Enable Track13" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 13" - -#~ msgid "Toggle Record Enable Track14" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 14" - -#~ msgid "Toggle Record Enable Track15" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 15" - -#~ msgid "Toggle Record Enable Track16" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 16" - -#~ msgid "Toggle Record Enable Track17" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 17" - -#~ msgid "Toggle Record Enable Track18" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 18" - -#~ msgid "Toggle Record Enable Track19" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 19" - -#~ msgid "Toggle Record Enable Track20" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 20" - -#~ msgid "Toggle Record Enable Track21" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 21" - -#~ msgid "Toggle Record Enable Track22" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 22" - -#~ msgid "Toggle Record Enable Track23" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 23" - -#~ msgid "Toggle Record Enable Track24" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 24" - -#~ msgid "Toggle Record Enable Track25" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 25" - -#~ msgid "Toggle Record Enable Track26" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 26" - -#~ msgid "Toggle Record Enable Track27" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 27" - -#~ msgid "Toggle Record Enable Track28" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 28" - -#~ msgid "Toggle Record Enable Track29" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 29" - -#~ msgid "Toggle Record Enable Track30" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 30" - -#~ msgid "Toggle Record Enable Track31" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 31" - -#~ msgid "Toggle Record Enable Track32" -#~ msgstr "Απ/ΕνεÏγοποίηση ÎšÎ±Î½Î±Î»Î¹Î¿Ï 32" - -#~ msgid "Connect new track outputs to hardware" -#~ msgstr "ΣÏνδεση νέων output ÎºÎ±Î½Î±Î»Î¹Î¿Ï ÏƒÏ„Î¿ hardware" - -#~ msgid "Manually connect new track outputs" -#~ msgstr "χειÏοκίνητη σÏνδεση νέων outputs καναλιοÏ" - -#~ msgid "Automatically create crossfades" -#~ msgstr "Αυτόματη δημιουÏγία crossfades" - -#~ msgid "Unmute new full crossfades" -#~ msgstr "Unmute νέων full crossfades" - -#~ msgid "SMPTE" -#~ msgstr "SMPTE" - -#~ msgid "h" -#~ msgstr "h" - -#~ msgid "v" -#~ msgstr "v" - -#~ msgid "Display Height" -#~ msgstr "Απεικόνιση Ïψους" - -#~ msgid "Show waveforms" -#~ msgstr "Ανάδειξη κυματομοÏφών" - -#~ msgid "a track already exists with that name" -#~ msgstr "Κανάλι με αυτό το όνομα ήδη υπάÏχει" - -#~ msgid "gain" -#~ msgstr "gain" - -#~ msgid "pan" -#~ msgstr "pan" - -#~ msgid "Current: %1" -#~ msgstr "ΤÏέχον: %1" - -#~ msgid "track height" -#~ msgstr "Υψος track" - -#~ msgid "clear track" -#~ msgstr "ΕκκαθάÏιση καναλιοÏ" - -#~ msgid "the width" -#~ msgstr "πλάτος" - -#~ msgid "drawwidth" -#~ msgstr "σχημάτ.πλάτος" - -#~ msgid "drawn width" -#~ msgstr "νέο πλάτος" - -#, fuzzy -#~ msgid "height" -#~ msgstr "Ύψος" - -#~ msgid "anchor" -#~ msgstr "άγκυÏα" - -#~ msgid "the anchor" -#~ msgstr "η άγκυÏα" - -#~ msgid "ardour: x-fade edit" -#~ msgstr "ardour: επεξεÏγασία x-fade" - -#~ msgid "SMPTE Frames" -#~ msgstr "SMPTE Frames" - -#~ msgid "Edit Cursor" -#~ msgstr "ΚέÏσοÏας επεξεÏγασίας" - -#~ msgid "object" -#~ msgstr "αντικείμενο" - -#~ msgid "zoom" -#~ msgstr "zoom" - -#~ msgid "timefx" -#~ msgstr "timefx" - -#~ msgid "listen" -#~ msgstr "άκου" - -#~ msgid "Zoom out" -#~ msgstr "Zoom out" - -#~ msgid "ardour: editor" -#~ msgstr "ardour: επεξεÏγαστής" - -#~ msgid "ardour_editor" -#~ msgstr "ardour_επεξεÏγαστής" - -#~ msgid "ardour: editor: " -#~ msgstr "ardour: επεξεÏγαστής: " - -#~ msgid "Popup region editor" -#~ msgstr "Εμφάνιση του Ïυθμιστή πεÏιοχής" - -#~ msgid "Analyze region" -#~ msgstr "Ανάλυση πεÏιοχής" - -#, fuzzy -#~ msgid "Nudge fwd" -#~ msgstr "νÏξη εμπÏός" - -#~ msgid "Nudge bwd" -#~ msgstr "ÎÏξη πίσω" - -#~ msgid "Edit cursor to end" -#~ msgstr "Από κέÏσοÏα επεξεÏγασίας μέχÏι τέλους" - -#~ msgid "Destroy" -#~ msgstr "ΚαταστÏοφή" - -#~ msgid "Loop range" -#~ msgstr "Loop διαστήματος" - -#~ msgid "Select all in range" -#~ msgstr "Επιλογή όλων στο διάστημα" - -#~ msgid "Duplicate range" -#~ msgstr "ΑντιγÏαφή διαστήματος" - -#~ msgid "Create chunk from range" -#~ msgstr "ΔημιουÏγία chunk από διάστημα" - -#~ msgid "Bounce range" -#~ msgstr "Αναπήδηση διαστήματος" - -#~ msgid "Export range" -#~ msgstr "Εξαγωγή διαστήματος" - -#~ msgid "Select all before playhead" -#~ msgstr "Επιλογή όλων Ï€Ïιν την playhead" - -#~ msgid "Select all between cursors" -#~ msgstr "Επιλογή Ολων Î¼ÎµÏ„Î±Î¾Ï ÎºÎµÏσόÏων" - -#~ msgid "Paste at edit cursor" -#~ msgstr "Επικόλληση στον κέÏσοÏα επεξεÏγασίας" - -#~ msgid "Paste at mouse" -#~ msgstr "Επικόλληση στο ποντίκι" - -#~ msgid "Insert chunk" -#~ msgstr "ΠÏοσθήκη chunk" - -#~ msgid "Nudge entire track bwd" -#~ msgstr "ÎÏξη ολοκλήÏου ÎºÎ±Î½Î±Î»Î¹Î¿Ï Ï€Î¯ÏƒÏ‰" - -#~ msgid "Nudge track after edit cursor bwd" -#~ msgstr "ÎÏξη κανάλι μετά του κέÏσοÏα επεξεÏγασίας πίσω" - -#~ msgid "draw gain automation" -#~ msgstr "σχεδιασμός Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… gain" - -#~ msgid "... as new region" -#~ msgstr "... ως νέα πεÏιοχή" - -#~ msgid "Import audio (copy)" -#~ msgstr "Εισαγωγή ήχου (αντίγÏαφο)" - -#~ msgid "Duplicate how many times?" -#~ msgstr "ΑντιγÏαφή πόσες φοÏές?" - -#~ msgid "Move edit cursor" -#~ msgstr "Μετακίνηση κέÏσοÏα επεξεÏγασίας" - -#, fuzzy -#~ msgid "ZoomFocus" -#~ msgstr "Εστίαση Zoom" - -#~ msgid "Edit Cursor to Next Region Start" -#~ msgstr "Ο ΚέÏσοÏας επεξεÏγασίας στην αÏχή της επόμενης ΠεÏιοχής" - -#~ msgid "Edit Cursor to Next Region End" -#~ msgstr "Ο ΚέÏσοÏας επεξεÏγασίας στο τέλος της επόμενης ΠεÏιοχής" - -#~ msgid "Edit Cursor to Next Region Sync" -#~ msgstr "Ο ΚέÏσοÏας επεξεÏγασίας στο sync της επόμενης ΠεÏιοχής" - -#~ msgid "Edit Cursor to Previous Region Start" -#~ msgstr "Edit Cursor στην Ï€ÏοηγοÏμενη Region Start" - -#~ msgid "Edit Cursor to Previous Region End" -#~ msgstr "Ο ΚέÏσοÏας επεξεÏγασίας στο τέλος της Ï€ÏοηγοÏμενης ΠεÏιοχής" - -#~ msgid "Edit Cursor to Previous Region Sync" -#~ msgstr "Ο ΚέÏσοÏας επεξεÏγασίας στο sync της Ï€ÏοηγοÏμενης ΠεÏιοχής" - -#~ msgid "Edit Cursor to Range Start" -#~ msgstr "Ο ΚέÏσοÏας επεξεÏγασίας στην αÏχή του διαστήματος" - -#~ msgid "Edit Cursor to Range End" -#~ msgstr "Ο ΚέÏσοÏας επεξεÏγασίας στο τέλος του διαστήματος" - -#~ msgid "Select All Between Cursors" -#~ msgstr "Επιλογή όλων Î¼ÎµÏ„Î±Î¾Ï ÎºÎµÏσόÏων" - -#~ msgid "Add Location from Playhead" -#~ msgstr "ΠÏόσθεση Θέσεως από την playhead" - -#~ msgid "Center Edit Cursor" -#~ msgstr "ΚέÏσοÏας επεξεÏγασίας στο κέντÏο" - -#~ msgid "Edit to Playhead" -#~ msgstr "ΚέÏσ.Επεξ. στην Playhead" - -#~ msgid "Align Regions End" -#~ msgstr "ευθυγÏάμμιση τέλους πεÏιοχών" - -#~ msgid "Align Regions End Relative" -#~ msgstr "ΕυθυγÏάμμιση τέλους πεÏιοχών(σχετική)" - -#~ msgid "Align Regions Sync Relative" -#~ msgstr "ΕυθυγÏάμμιση του sync των πεÏιοχών(σχετική)" - -#~ msgid "Mute/Unmute Region" -#~ msgstr "Σιγή/ΕνεÏγοποίηση ΠεÏιοχής" - -#, fuzzy -#~ msgid "Duplicate Region" -#~ msgstr "αντιγÏαφή πεÏιοχής" - -#~ msgid "crop" -#~ msgstr "κοψιμο" - -#~ msgid "Insert Chunk" -#~ msgstr "ΠÏοσθήκη Chunk" - -#~ msgid "Snap to SMPTE frame" -#~ msgstr "Snap σε SMPTE Frame" - -#~ msgid "Snap to SMPTE seconds" -#~ msgstr "Snap σε SMPTE ΔευτεÏόλεπτα" - -#~ msgid "Snap to SMPTE minutes" -#~ msgstr "Snap σε SMPTE Λεπτά" - -#~ msgid "Add External Audio" -#~ msgstr "ΠÏόσθεση ΕξωγενοÏÏ‚ Audio" - -#, fuzzy -#~ msgid "Show Waveforms" -#~ msgstr "Ανάδειξη κυματομοÏφών" - -#, fuzzy -#~ msgid "Show Waveforms While Recording" -#~ msgstr "Ανάδειξη κυματομοÏφών κατά την εγγÏαφή" - -#~ msgid "Add existing audio to session" -#~ msgstr "Εισαγωγή υπάÏχοντος audio στη συνεδÏία" - -#~ msgid "ardour: importing %1" -#~ msgstr "ardour: εισαγωγή εν εξελίξι %1" - -#~ msgid "" -#~ "There is no selection to export.\n" -#~ "\n" -#~ "Select a selection using the range mouse mode" -#~ msgstr "" -#~ "Δεν υπάÏχει επιλογή Ï€Ïος εξαγωγή.\n" -#~ "\n" -#~ "Επιλέξτε ένα κομμάτι με το ποντίκι σε λειτουÏγία 'διαστήματος'" - -#~ msgid "" -#~ "There are no ranges to export.\n" -#~ "\n" -#~ "Create 1 or more ranges by dragging the mouse in the range bar" -#~ msgstr "" -#~ "Δεν υπάÏχουν διαστήματα Ï€Ïος εξαγωγή.\n" -#~ "\n" -#~ "ΔημιουÏγήστε 1 ή πεÏισσότεÏα διαστήματα Ï„Ïαβώντας το ποντίκι\n" -#~ "πάνω στη μπάÏα Διαστημάτων" - -#~ msgid "programming error: no ImageFrameView selected" -#~ msgstr "Σφάλμα Ï€ÏογÏαμματισμοÏ: δεν επιλέχθηκε οπτική καÏέ εικόνας" - -#~ msgid "programming error: no MarkerView selected" -#~ msgstr "Σφάλμα Ï€ÏογÏαμματισμοÏ: δεν επιλέχθηκε οπτική στίγματος" - -#~ msgid "keyboard selection" -#~ msgstr "επιλογή πληκτÏολογίου" - -#~ msgid "ardour: rename mark" -#~ msgstr "ardour: μετονομασία στίγματος" - -#~ msgid "ardour: rename range" -#~ msgstr "ardour: μετονομασία διαστήματος" - -#~ msgid "select on click" -#~ msgstr "επιλογή στο μετÏονόμο" - -#~ msgid "programming error: start_grab called without drag item" -#~ msgstr "" -#~ "σφάλμα Ï€ÏογÏαμματισμοÏ: η Ïουτίνα start_grab εκλήθη δίχως 'drag' " -#~ "αντικείμενο" - -#~ msgid "" -#~ "programming error: fade out canvas item has no regionview data pointer!" -#~ msgstr "" -#~ "σφάλμα Ï€ÏογÏαμματισμοÏ: ο καμβάς fade out δεν έχει δείκτη δεδομένων της " -#~ "οπτικής πεÏιοχών!" - -#~ msgid "programming error: cursor canvas item has no cursor data pointer!" -#~ msgstr "" -#~ "σφάλμα Ï€ÏογÏαμματισμοÏ: ο καμβάς του κέÏσοÏα δεν έχει δείκτη δεδομένων " -#~ "του κέÏσοÏα!" - -#~ msgid "programming error: line canvas item has no line pointer!" -#~ msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: ο καμβάς γÏαμμών δεν έχει δείκτη γÏαμμών!" - -#~ msgid "cancel selection" -#~ msgstr "ακÏÏωση επιλογής" - -#~ msgid "move selection" -#~ msgstr "μετακίνηση επιλογής" - -#~ msgid "" -#~ " This is destructive, will possibly delete audio files\n" -#~ "It cannot be undone\n" -#~ "Do you really want to destroy %1 ?" -#~ msgstr "" -#~ "Αυτό είναι καταστÏοφικό, πιθανότατα να διαγÏαφοÏν audio\n" -#~ "αÏχεία.\n" -#~ "Δεν μποÏεί να ανακληθεί\n" -#~ "ΠÏαγματικά θέλετε να καταστÏέψετε το %1 ?" - -#~ msgid "this region" -#~ msgstr "αυτή την πεÏιοχή" - -#~ msgid "Yes, destroy them." -#~ msgstr "Îαι,κατάστÏεψέ τις." - -#~ msgid "select all between cursors" -#~ msgstr "επιλογή όλων μετάξυ κεÏσόÏων" - -#~ msgid "Programming error. that region doesn't cover that position" -#~ msgstr "" -#~ "Σφάλμα Ï€ÏογÏαμματισμοÏ. αυτή η πεÏιοχή δεν καλÏπτει\n" -#~ "αυτή τη θέση" - -#~ msgid "Place the edit cursor at the desired sync point" -#~ msgstr "" -#~ "Τοποθετήστε τον κεÏσοÏα επεξεÏ/σίας στο επιθÏμητό σημείο συγχÏονισμοÏ" - -#~ msgid "set sync from edit cursor" -#~ msgstr "Θέση συγχÏονισμοÏ(sync) απο κέÏσοÏα επεξεÏ/σίας" - -#~ msgid "naturalize" -#~ msgstr "φυσικοποίηση" - -#~ msgid "ardour: freeze" -#~ msgstr "ardour: πάγωμα" - -#~ msgid "paste chunk" -#~ msgstr "επικόλληση chunk" - -#~ msgid "clear playlist" -#~ msgstr "εκκαθάÏιση playlist" - -#~ msgid "Name for Chunk:" -#~ msgstr "όνομα για Chunk:" - -#~ msgid "Create Chunk" -#~ msgstr "ΔημιουÏγία Chunk" - -#~ msgid "Forget it" -#~ msgstr "Ξέχασέ το" - -#~ msgid "ardour: timestretch" -#~ msgstr "ardour: χÏονοκάμψη" - -#~ msgid "TimeStretchProgress" -#~ msgstr "ΠÏόοδοςΧÏονοκάμψης" - -#~ msgid "22.05kHz" -#~ msgstr "22.05kHz" - -#~ msgid "44.1kHz" -#~ msgstr "44.1kHz" - -#~ msgid "48kHz" -#~ msgstr "48kHz" - -#~ msgid "88.2kHz" -#~ msgstr "88.2kHz" - -#~ msgid "96kHz" -#~ msgstr "96kHz" - -#~ msgid "192kHz" -#~ msgstr "192kHz" - -#~ msgid "best" -#~ msgstr "βέλτιστη" - -#~ msgid "intermediate" -#~ msgstr "ενδιάμεση" - -#~ msgid "stereo" -#~ msgstr "stereo" - -#~ msgid "Export CD Marker File Only" -#~ msgstr "Εξαγωγή αÏχείου CD Marker μόνο" - -#~ msgid "Specific tracks ..." -#~ msgstr "ΣυγκεκÏιμένα κανάλια" - -#~ msgid "ardour: export" -#~ msgstr "ardour: εξαγωγή" - -#~ msgid "ardour_export" -#~ msgstr "ardour_εξαγωγή" - -#~ msgid "Editor: cannot open \"%1\" as export file for CD toc file" -#~ msgstr "" -#~ "ΕπεξεÏγαστής: δεν γίνεται να ανοιχτεί το \"%1\" ως αÏχείο εξαγωγής για CD " -#~ "toc αÏχείο" - -#~ msgid "Editor: cannot open \"%1\" as export file for CD cue file" -#~ msgstr "" -#~ "ΕπεξεÏγαστής: δεν γίνεται να ανοιχτεί το \"%1\" ως αÏχείο εξαγωγής για CD " -#~ "cue αÏχείο" - -#~ msgid "Please enter a valid filename." -#~ msgstr "ΠαÏακαλώ δώστε ένα ισχÏον όνομα." - -#~ msgid "Please specify a complete filename for the audio file." -#~ msgstr "ΠαÏακαλώ δώστε ολόκληÏο το όνομα του audio αÏχείου." - -#~ msgid "Cannot write file in: " -#~ msgstr "ΑδÏνατη η εγγÏαφή αÏχείου σε:" - -#~ msgid "Please enter a valid target directory." -#~ msgstr "ΠαÏακαλώ δώστε ένα υπάÏχον directory. " - -#~ msgid "" -#~ "Please select an existing target directory. Files\n" -#~ "are not allowed!" -#~ msgstr "" -#~ "ΠΑÏακαλώ επιλέξτε ένα υπάÏχον directory.ΑÏχεία\n" -#~ "δεν επιτÏέπονται!" - -#~ msgid "add gain automation event" -#~ msgstr "Ï€Ïόσθεση συμβάντος Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï gain" - -#~ msgid "cannot find images for fader slider" -#~ msgstr "δεν ευÏέθησαν εικόνες για το fader slider" - -#~ msgid "Image Compositor Socket has been shutdown/closed" -#~ msgstr "Η Socket για τον Image Compositor έχει τεÏματιστεί/κλείσει" - -#~ msgid "0.5 seconds" -#~ msgstr "0.5 ΔευτεÏόλεπτα" - -#~ msgid "1.5 seconds" -#~ msgstr "1.5 ΔευτεÏόλεπτα" - -#~ msgid "2 seconds" -#~ msgstr "2 ΔευτεÏόλεπτα" - -#~ msgid "2.5 seconds" -#~ msgstr "2.5 ΔευτεÏόλεπτα" - -#~ msgid "3 seconds" -#~ msgstr "3 ΔευτεÏόλεπτα" - -#~ msgid "Remove Frame" -#~ msgstr "Απαλοιφή Frame" - -#~ msgid "Add Output" -#~ msgstr "Ï€Ïόσθεση Output" - -#~ msgid "Remove Input" -#~ msgstr "Απαλοιφή Input" - -#~ msgid "Disconnect All" -#~ msgstr "ΑποσÏνδεση Όλων" - -#~ msgid "Available connections" -#~ msgstr "Διαθέσιμες Συνδέσεις" - -#~ msgid "KeyboardTarget: keyname \"%1\" is unknown." -#~ msgstr "KeyboardTarget: το Όνομα ΠλήκτÏου \"%1\" είναι άγνωστο." - -#~ msgid "" -#~ "Your system is completely broken - NumLock uses \"%1\"as its modifier. " -#~ "This is madness - see the man page for xmodmap to find out how to fix " -#~ "this." -#~ msgstr "" -#~ "Το ΣÏστημά σας έχει χαλάσει τελείως - Το NumLock χÏησιμοποιεί το " -#~ "\"%1\"σαν μεταβλητή του. Αυτό είναι Ï„Ïέλα - ανατÏέξτε στην man page του " -#~ "xmodmap για να βÏείτε πώς θα το φτιάξετε." - -#~ msgid "" -#~ "Your system generates \"%1\" when the NumLock key is pressed. This can " -#~ "cause problems when editing so Ardour will use %2 to mean Meta rather " -#~ "than %1" -#~ msgstr "" -#~ "Το ΣÏστημά σας δημιουÏγεί \"%1\" όταν το NumLock είναι εν ενεÏγεία. Αυτό " -#~ "μποÏεί να δημιουÏγήσει Ï€Ïοβλήματα στην επεξεÏγασία οπότε ο Ardour θα " -#~ "χÏησιμοποιήσει %2 για Meta αντί του %1" - -#~ msgid "You have %1 keys bound to \"mod1\"" -#~ msgstr "ΥπάÏχουν %1 πλήκτÏα αναθεμένα στο \"mod1\"" - -#~ msgid "You have %1 keys bound to \"mod2\"" -#~ msgstr "ΥπάÏχουν %1 πλήκτÏα αναθεμένα στο \"mod2\"" - -#~ msgid "You have %1 keys bound to \"mod3\"" -#~ msgstr "ΥπάÏχουν %1 πλήκτÏα αναθεμένα στο \"mod3\"" - -#~ msgid "You have %1 keys bound to \"mod4\"" -#~ msgstr "ΥπάÏχουν %1 πλήκτÏα αναθεμένα στο \"mod4\"" - -#~ msgid "You have %1 keys bound to \"mod5\"" -#~ msgstr "ΥπάÏχουν %1 πλήκτÏα αναθεμένα στο \"mod5\"" - -#~ msgid "Add New Location" -#~ msgstr "ΠÏόσθεση νέας τοποθεσίας" - -#~ msgid "ardour: locations" -#~ msgstr "ardour: τοποθεσίες" - -#~ msgid "ardour_locations" -#~ msgstr "ardour_τοποθεσίες" - -#~ msgid "Location (CD Index) Markers" -#~ msgstr "Στίγματα Τοποθεσίας (CD Index)" - -#~ msgid "ardour is killing itself for a clean exit\n" -#~ msgstr "Ο ardour σκοτώνει τον εαυτό του για καθαÏή έξοδο\n" - -#~ msgid "stopping user interface\n" -#~ msgstr "παÏση του user interface\n" - -#~ msgid "%d(%d): received signal %d\n" -#~ msgstr "%d(%d): εδέχθη σήμα %d\n" - -#~ msgid "cannot set default signal mask (%1)" -#~ msgstr "δεν γίνεται να διαμοÏφώθεί η Ï€ÏοκαθοÏισμένη μάσκα σημάτων (%1)" - -#~ msgid "" -#~ "Without a UI style file, ardour will look strange.\n" -#~ " Please set ARDOUR3_UI_RC to point to a valid UI style file" -#~ msgstr "" -#~ "Δίχως αÏχείο εμφάνισεως UI, ο ardour θα φαίνεται παÏάξενα.\n" -#~ "ΠαÏακαλώ θέστε το ARDOUR_UI_RC να δείχνει σε ενεÏγό αÏχείο εμφανίσεως UI." - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "A session named \"%1\" already exists.\n" -#~ "To avoid this message, start ardour as \"ardour %1" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "ΣυνεδÏία με όνομα \"%1\" ήδη υπάÏχει.\n" -#~ "ΠÏος αποφυγήν Î±Ï…Ï„Î¿Ï Ï„Î¿ μηνÏματος, αÏχίστε\n" -#~ "το ardour σαν \"ardour %1" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "No session named \"%1\" exists.\n" -#~ "To create it from the command line, start ardour as \"ardour --new %1" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "ΣυνεδÏία με όνομα \"%1\" δεν υπάÏχει.\n" -#~ "ΔημιουÏγήστε τη από command line αÏχίζοντας το\n" -#~ "ardour σαν \"ardour --new %1" - -#~ msgid "Ardour/GTK " -#~ msgstr "Ardour/GTK " - -#~ msgid " with libardour " -#~ msgstr "με libardour " - -#~ msgid "Could not connect to JACK server as \"%1\"" -#~ msgstr "Δεν γινόταν να συνδεθώ στον JACK server σαν \"%1\"" - -#~ msgid "ardour: meter bridge" -#~ msgstr "ardour: γέφυÏα μετÏήσεων" - -#~ msgid "ardour_meter_bridge" -#~ msgstr "ardour_γέφυÏα_μετÏήσεων" - -#~ msgid "# of %u-sample overs" -#~ msgstr "# από %u-sample overs" - -#, fuzzy -#~ msgid "New Name for Meter:" -#~ msgstr "Îέο όνομα για μετÏητή:" - -#, fuzzy -#~ msgid "Varispeed" -#~ msgstr "μεταβλητή ταχÏτητα" - -#~ msgid "unknown strip width \"%1\" in XML GUI information" -#~ msgstr "άγνωστο εÏÏος διαδÏόμου \"%1\" στις πληÏοφοÏίες του XML GUI" - -#~ msgid "*comments*" -#~ msgstr "*σχόλια*" - -#~ msgid "could not register new ports required for that connection" -#~ msgstr "" -#~ "ΑδÏνατη η καταγÏαφή νέων θυÏών που απαιτοÏνται\n" -#~ "για αυτή τη σÏνδεση." - -#~ msgid "Invert Polarity" -#~ msgstr "ΑντιστÏοφή πολικότητας" - -#~ msgid "ardour: mixer" -#~ msgstr "ardour: μίκτης" - -#~ msgid "ardour_mixer" -#~ msgstr "ardour_μίκτης" - -#~ msgid "ardour: mixer: " -#~ msgstr "ardour: μίκτης: " - -#~ msgid "Port Limit" -#~ msgstr "ÎŒÏιο θυÏών" - -#~ msgid "Open Session File :" -#~ msgstr "Άνοιγμα ΑÏχείου ΣυνεδÏίας:" - -#~ msgid "ardour: session control" -#~ msgstr "ardour: Έλεγχος συνεδÏίας" - -#~ msgid "select directory" -#~ msgstr "επιλογή directory" - -#~ msgid "ardour: options editor" -#~ msgstr "ardour: επεξεÏγαστής Ïυθμίσεων" - -#~ msgid "ardour_option_editor" -#~ msgstr "ardour_επεξεÏγαστής_Ïυθμίσεων" - -#~ msgid "Paths/Files" -#~ msgstr "Paths/ΑÏχεία" - -#~ msgid "25 FPS" -#~ msgstr "25 FPS" - -#~ msgid "session RAID path" -#~ msgstr "RAID path συνεδÏίας" - -#~ msgid "Soundfile Search Paths" -#~ msgstr "Μονοπάτια αναζήτησης Soundfiles" - -#~ msgid "SMPTE Frames/second" -#~ msgstr "SMPTE ΚαÏέ/δεÏτεÏα" - -#~ msgid "SMPTE Offset" -#~ msgstr "SMPTE ΈναÏξη" - -#~ msgid "" -#~ "The auditioner is a dedicated mixer strip used\n" -#~ "for listening to specific regions outside the context\n" -#~ "of the overall mix. It can be connected just like any\n" -#~ "other mixer strip." -#~ msgstr "" -#~ "Ο 'ακÏοατής' είναι ένας αφοσιωμένος διάδÏομος μίξεως που χÏησιμοποιείται\n" -#~ "για ακÏόαση συγκεκÏιμένων πεÏιοχών εκτός\n" -#~ "του Î³ÎµÎ½Î¹ÎºÎ¿Ï Î¼Î¹Î¾Î±Ïίσματος. ΜποÏεί να συνδεθεί σαν άλλος ένας\n" -#~ "διάδÏομος μίξεως ή κανάλι." - -#~ msgid " -g, --gtktheme Allow GTK to load a theme\n" -#~ msgstr " -g, --gtktheme ΧÏηση theme του GTK\n" - -#~ msgid "add pan automation event" -#~ msgstr "Ï€Ïόσθεση συμβάντος Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï pan" - -#~ msgid "panner for channel %lu" -#~ msgstr "panner για το κανάλι %lu" - -#~ msgid "ardour: playlist for " -#~ msgstr "ardour: playlist για" - -#~ msgid "ardour: plugins" -#~ msgstr "ardour: plugins" - -#, fuzzy -#~ msgid "Available LADSPA Plugins" -#~ msgstr "Διαθέσιμα LADSPA plugins" - -#~ msgid "# Inputs" -#~ msgstr "# Είσοδοι" - -#~ msgid "# Outputs" -#~ msgstr "# Έξοδοι" - -#~ msgid "redirect automation created for non-plugin" -#~ msgstr "Ï€Ïοώθηση Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Î´Î·Î¼Î¹Î¿Ï…Ïγημένου για non-plugin" - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "The plugin has %2 inputs\n" -#~ "but at the insertion point, there are\n" -#~ "%3 active signal streams.\n" -#~ "\n" -#~ "This makes no sense - you are throwing away\n" -#~ "part of the signal." -#~ msgstr "" -#~ "ΑποπειÏαθήκατε να Ï€Ïοσθέσετε ένα plug-in (%1).\n" -#~ "Το plugin έχει %2 inputs\n" -#~ "αλλά στο σημείο υποδοχής, υπάÏχουν\n" -#~ "%3 ενεÏγά σήματα.\n" -#~ "\n" -#~ "Δεν έχει νόημα - έτσι χαÏαμίζετε\n" -#~ "μέÏος του σήματος." - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "The plugin has %2 inputs\n" -#~ "but at the insertion point there are\n" -#~ "only %3 active signal streams.\n" -#~ "\n" -#~ "This makes no sense - unless the plugin supports\n" -#~ "side-chain inputs. A future version of Ardour will\n" -#~ "support this type of configuration." -#~ msgstr "" -#~ "ΑποπειÏαθήκατε να Ï€Ïοσθέσετε ένα plug-in (%1).\n" -#~ "Το plugin έχει %2 inputs\n" -#~ "αλλά στο σημείο υποδοχής, υπάÏχουν\n" -#~ "μόνο %3 ενεÏγά σήματα..\n" -#~ "\n" -#~ "Δεν έχει νόημα - εκτός αν το plug-in υποστηÏίζει\n" -#~ "επι μέÏους inputs. Μελλοντική έκδοση του Ardour θα\n" -#~ "υποστηÏίζει αυτον τον Ï„Ïπο διατάξεως." - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "\n" -#~ "The I/O configuration doesn't make sense:\n" -#~ "\n" -#~ "The plugin has %2 inputs and %3 outputs.\n" -#~ "The track/bus has %4 inputs and %5 outputs.\n" -#~ "The insertion point, has %6 active signals.\n" -#~ "\n" -#~ "Ardour does not understand what to do in such situations.\n" -#~ msgstr "" -#~ "ΑποπειÏαθήκατε να Ï€Ïοσθέσετε ένα plug-in (%1).\n" -#~ "\n" -#~ "Η I/O διάταξη δεν έχει νόημα:\n" -#~ "\n" -#~ "Το plugin έχει %2 inputs και %3 outputs.\n" -#~ "Το κανάλι/δίαυλος έχει %4 inputs και %5 outputs.\n" -#~ "Το σημείο υποδοχής, έχει %6 ενεÏγά σήματα.\n" -#~ "\n" -#~ "Ο Ardour δεν γνωÏίζει τι να κάνει σε τέτοιες πεÏιπτώσεις.\n" - -#~ msgid "Post-fader inserts, sends & plugins:" -#~ msgstr "Post-fader εισαγωγές, sends & plugins:" - -#~ msgid "rename redirect" -#~ msgstr "μετονομασία redirect" - -#~ msgid "" -#~ "Do you really want to remove all redirects from this track?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Στ'αλήθεια θέλετε να απαλοίψετε όλα τα redirects από το κανάλι?\n" -#~ "(δεν μποÏεί να ανακληθεί)" - -#~ msgid "ardour: %1" -#~ msgstr "ardour: %1" - -#~ msgid "NAME:" -#~ msgstr "ÎŒÎΟΜΑ:" - -#~ msgid "visible" -#~ msgstr "οÏατό" - -#~ msgid "play" -#~ msgstr "αναπαÏαγωγή" - -#~ msgid "ENVELOPE" -#~ msgstr "ΧΡΟÎΟΔΙΑΓΡΑΜΜΑ" - -#~ msgid "regions underneath this one cannot be heard" -#~ msgstr "πεÏιοχές κάτωθι της παÏοÏσας δεν μποÏοÏν να ακουστοÏν" - -#~ msgid "prevent any changes to this region" -#~ msgstr "αποτÏοπή αλλαγών σε αυτή την πεÏιοχή" - -#~ msgid "use the gain envelope during playback" -#~ msgstr "χÏήση χÏονοδιαγÏάμματος του gain κατά την αναπαÏ/γή" - -#~ msgid "use fade in curve during playback" -#~ msgstr "χÏήση της καμπÏλης fade in κατά την αναπαÏ/γή" - -#~ msgid "use fade out curve during playback" -#~ msgstr "χÏήση της καμπÏλης fade out κατά την αναπαÏ/γή" - -#~ msgid "START:" -#~ msgstr "ΑΡΧΗ:" - -#~ msgid "END:" -#~ msgstr "ΛΗΞΗ:" - -#~ msgid "LENGTH:" -#~ msgstr "ΜΗΚΟΣ:" - -#~ msgid "FADE IN" -#~ msgstr "FADE IN" - -#~ msgid "FADE OUT" -#~ msgstr "FADE OUT" - -#~ msgid "ardour: region " -#~ msgstr "ardour: πεÏιοχή " - -#~ msgid "ardour: track/bus inspector" -#~ msgstr "ardour: ΕπιθεωÏητής καναλιών/διαÏλων" - -#~ msgid "ardour_route_parameters" -#~ msgstr "ardour_παÏάμετÏοι_διαδÏομών" - -#~ msgid "ardour: track/bus/inspector: no route selected" -#~ msgstr "ardour: ΕπιθεωÏητής καναλιών/διαÏλων: δεν επελέχθη διαδÏομή" - -#~ msgid "solo change" -#~ msgstr "αλλαγή σόλο" - -#~ msgid "mix group solo change" -#~ msgstr "αλλαγή solo του mix group" - -#~ msgid "mix group mute change" -#~ msgstr "αλλαγή mute του mix group" - -#~ msgid "mix group rec-enable change" -#~ msgstr "αλλαγή rec-enable της mix group" - -#~ msgid "ardour: color selection" -#~ msgstr "ardour: επιλογή χÏωμάτων" - -#~ msgid "New Name: " -#~ msgstr "Îέο Όνομα: " - -#~ msgid "Add Field..." -#~ msgstr "ΠÏόσθεση Πεδίου..." - -#~ msgid "Name for Field" -#~ msgstr "Όνομα για Πεδίο:" - -#~ msgid "Link to an external file" -#~ msgstr "ΣÏνδεση με εξωτεÏικό αÏχείο" - -#~ msgid "Bar" -#~ msgstr "ΜπάÏα" - -#~ msgid "Beat" -#~ msgstr "ΚτÏπος" - -#~ msgid "set selected regionview" -#~ msgstr "θέση επιλεγμένης οπτικής πεÏιοχής" - -#~ msgid "via Session menu" -#~ msgstr "μέσω του Î¼ÎµÎ½Î¿Ï Î£Ï…Î½ÎµÎ´Ïίας" - -#, fuzzy -#~ msgid "Select a File" -#~ msgstr "Επιλογή όλων" - -#~ msgid "RECORD" -#~ msgstr "ΕΓΓΡΑΦΗ" - -#~ msgid "INPUT" -#~ msgstr "ΕΙΣΟΔΟΣ" - -#~ msgid "OUTPUT" -#~ msgstr "ΕΞΟΔΟΣ" - -#~ msgid "Gain automation mode" -#~ msgstr "ΛειτουÏγία Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Gain" - -#~ msgid "Gain automation type" -#~ msgstr "ΤÏπος Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Gain" - -#~ msgid "gain automation state" -#~ msgstr "Κατάσταση Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï gain" - -#~ msgid "pan automation state" -#~ msgstr "Κατάσταση Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï pan" - -#~ msgid "REC" -#~ msgstr "REC" - -#~ msgid "OUT" -#~ msgstr "OUT" - -#~ msgid "aplay" -#~ msgstr "aplay" - -#~ msgid "no group" -#~ msgstr "καμία ομάδα" - -#~ msgid "Disk r:%5.1f w:%5.1f MB/s" -#~ msgstr "Δίσκοι r:%5.1f w:%5.1f MB/s" - -#~ msgid "file" -#~ msgstr "αÏχείο" - -#, fuzzy -#~ msgid "ardour cleanup" -#~ msgstr "ardour: εκκαθάÏιση" - -#~ msgid "close session" -#~ msgstr "κλείσιμο συνεδÏίας" - -#, fuzzy -#~ msgid "SetCrossfadeModel" -#~ msgstr "Crossfade" - -#~ msgid "Play from" -#~ msgstr "ΑναπαÏ/γή από" - -#~ msgid "FORMAT" -#~ msgstr "FORMAT" - -#, fuzzy -#~ msgid "CD MARKER FILE TYPE" -#~ msgstr "ΤΥΠΟΣ ΑΡΧΕΙΟΥ" - -#~ msgid "CHANNELS" -#~ msgstr "ΚΑÎΑΛΙΑ" - -#~ msgid "FILE TYPE" -#~ msgstr "ΤΥΠΟΣ ΑΡΧΕΙΟΥ" - -#~ msgid "SAMPLE FORMAT" -#~ msgstr "FORMAT ΔΕΙΓΜΑΤΟΣ" - -#~ msgid "SAMPLE ENDIANNESS" -#~ msgstr "SAMPLE ENDIANNESS" - -#~ msgid "SAMPLE RATE" -#~ msgstr "ΡΥΘΜΟΣ ΔΕΙΓΜΑΤ/ΨΙΑΣ" - -#~ msgid "CONVERSION QUALITY" -#~ msgstr "ΠΟΙΟΤΗΤΑ ΜΕΤΑΤΡΟΠΗΣ" - -#~ msgid "DITHER TYPE" -#~ msgstr "ΤΥΠΟΣ DITHER" - -#, fuzzy -#~ msgid "EXPORT CD MARKER FILE ONLY" -#~ msgstr "ΤΥΠΟΣ ΑΡΧΕΙΟΥ" - -#~ msgid "EXPORT TO FILE" -#~ msgstr "ΕΞΑΓΩΓΗ ΣΕ ΑΡΧΕΙΟ" - -#~ msgid "ardour: unplugged" -#~ msgstr "ardour: unplugged" - -#~ msgid "To be added" -#~ msgstr "ΠÏόκειται να Ï€ÏοστεθοÏν" - -#~ msgid "Update" -#~ msgstr "Ανανέωση" - -#~ msgid "save" -#~ msgstr "αποθήκευση" - -#~ msgid "bypass" -#~ msgstr "bypass" - -#~ msgid "Name for plugin settings:" -#~ msgstr "Όνομα για Ïυθμίσεις του plugin:" - -#~ msgid "" -#~ "\"\n" -#~ "\t ,<.>/?:;'[{}]~`!@#$%^&*()_-+=" -#~ msgstr "" -#~ "\"\n" -#~ "\t ,<.>/?:;'[{}]~`!@#$%^&*()_-+=" - -#~ msgid "aeiou" -#~ msgstr "aeiou" - -#~ msgid "AEIOU" -#~ msgstr "AEIOU" - -#~ msgid "bcdfghjklmnpqrtvwxyz" -#~ msgstr "bcdfghjklmnpqrtvwxyz" - -#~ msgid "BCDFGHJKLMNPQRTVWXYZ" -#~ msgstr "BCDFGHJKLMNPQRTVWXYZ" - -#~ msgid "spring" -#~ msgstr "έλασμα" - -#~ msgid "" -#~ "follow\n" -#~ "PH" -#~ msgstr "" -#~ "ακολουθία\n" -#~ "ΚεÏσ." - -#~ msgid "rescan" -#~ msgstr "Επανα-ανίχνευση" - -#~ msgid "Session %1 already exists at %2" -#~ msgstr "Η ΣυνεδÏία %1 υπάÏχει ήδη στο %2" - -#~ msgid "Enable/Disable follow playhead" -#~ msgstr "ΆÏση/ΠαÏση ακολουθίας αναπαÏαγωγέα" - -#~ msgid "Select sprung or wheel behaviour" -#~ msgstr "Επιλογή συμπεÏιφοÏάς ελάσματος ή Ï„ÏοχοÏ" - -#~ msgid "keyboard_target: error setting binding state: invalid node" -#~ msgstr "" -#~ "keyboard_target: σφάλμα στη θέση καταστάσεως Î´ÎµÏƒÎ¼Î¿Ï Ï€Î»Î®ÎºÏ„Ïων: ανÏπαÏκτος " -#~ "κόμβος" - -#~ msgid "Image Compositor" -#~ msgstr "ΣÏνθεση εικόνων" - -#~ msgid "Audio Library" -#~ msgstr "Ηχητική βιβλιοθήκη" - -#~ msgid "Output Connections" -#~ msgstr "Συνδέσεις Εξόδου" - -#, fuzzy -#~ msgid "New Input" -#~ msgstr "νέα είσοδος" - -#, fuzzy -#~ msgid "New Output" -#~ msgstr "νέα έξοδος" - -#~ msgid "in %d" -#~ msgstr "σε %d" - -#~ msgid "Regions/name" -#~ msgstr "ΠεÏιοχες/όνομα" - -#~ msgid "Edit:" -#~ msgstr "ΣÏνταξη:" - -#~ msgid "incorrectly formatted URI list, ignored" -#~ msgstr "λανθασμένα φοÏμαÏισμένη URI λίστα, αγνοήθηκε" - -#~ msgid "Embed audio (link)" -#~ msgstr "ΕμφÏτευση ήχου (link)" - -#~ msgid "Cancel cleanup" -#~ msgstr "ΑκÏÏωση εκκαθάÏισης" - -#~ msgid "programming error: line canvas item has no line object pointer!" -#~ msgstr "" -#~ "Σφάλμα ΠÏογÏαμματισμοÏ: ο καμβάς της γÏαμμής δεν έχει δείκτη αναφοÏάς της " -#~ "γÏαμμής!" - -#~ msgid "Name for new edit group" -#~ msgstr "Όνομα για νέα ομάδα επεξεÏγασίας" - -#~ msgid "ardour: audio import in progress" -#~ msgstr "ardour: εισαγωγή ήχων εν εξελίξι" - -#~ msgid "You can't embed an audiofile until you have a session loaded." -#~ msgstr "" -#~ "Δεν γίνεται να εμφυτεÏσετε ηχο-αÏχεία μέχÏι να φοÏτώσετε κάποια συνεδÏία." - -#, fuzzy -#~ msgid "Insert selected as new tracks" -#~ msgstr "θέση επιλεγμένης οπτικής καναλιοÏ" - -#, fuzzy -#~ msgid "hidden" -#~ msgstr "ΚÏυμμένο" - -#~ msgid "Regions/length" -#~ msgstr "ΠεÏιοχές/διάÏκεια" - -#~ msgid "Regions/start" -#~ msgstr "ΠεÏιοχές/αÏχή" - -#~ msgid "Regions/end" -#~ msgstr "ΠεÏιοχές/τέλος" - -#~ msgid "Regions/file name" -#~ msgstr "ΠεÏιοχές/όνομα αÏχείου" - -#~ msgid "Regions/file system" -#~ msgstr "ΠεÏιοχές/file system" - -#~ msgid "Show All AbstractTracks" -#~ msgstr "Ανάδειξη όλων των Abstractκανάλιs" - -#~ msgid "Hide All AbstractTracks" -#~ msgstr "ΑπόκÏυψη όλων των Abstractκαναλιών" - -#~ msgid "slereg" -#~ msgstr "slereg" - -#~ msgid "KeyboardTarget: empty string passed to add_binding." -#~ msgstr "KeyboardTarget: κενή γÏαμμή στην Ï€Ïόσθεση_δεσμοÏ." - -#~ msgid "KeyboardTarget: no translation found for \"%1\"" -#~ msgstr "KeyboardTarget: δεν ευÏέθη μετάφÏαση για \"%1\"" - -#~ msgid "KeyboardTarget: unknown action \"%1\"" -#~ msgstr "KeyboardTarget: άγνωστη ενέÏγεια \"%1\"" - -#~ msgid "malformed binding node - ignored" -#~ msgstr "παÏαμοÏφωμένος πομπός Î´ÎµÏƒÎ¼Î¿Ï - αγνοήθηκε" - -#~ msgid "ardour: soundfile selector" -#~ msgstr "ardour: επιλογέας Soundfiles" - -#~ msgid "Add to Library..." -#~ msgstr "ΠÏόσθεση στη Βιβλιοθήκη..." - -#~ msgid "Remove..." -#~ msgstr "Απαλοιφή..." - -#~ msgid "Find..." -#~ msgstr "ΕÏÏεση..." - -#~ msgid "Add Folder" -#~ msgstr "ΠÏόσθεση Φακέλου" - -#~ msgid "Importing" -#~ msgstr "Εισαγωγή εν εξελίξι" - -#~ msgid "%1 not added to database" -#~ msgstr "%1 δεν Ï€Ïοστέθηκε στην database" - -#~ msgid "Should not be reached" -#~ msgstr "Δεν θα έπÏεπε να αγγιχτεί" - -#~ msgid "Find" -#~ msgstr "ΕÏÏεση" - -#~ msgid "AND" -#~ msgstr "AND" - -#~ msgid "ardour: locate soundfiles" -#~ msgstr "ardour: εÏÏεση soundfiles" - -#~ msgid "Uris" -#~ msgstr "Uris" - -#~ msgid "Create multi-channel region" -#~ msgstr "ΔημιουÏγία πολυκάναλης πεÏιοχής" - -#~ msgid "Ardour: Search Results" -#~ msgstr "Ardour: Αποτελέσματα Αναζητήσεως" - -#~ msgid "Hide All AudioTrack MixerStrips" -#~ msgstr "ΑπόκÏυψη όλων των ΔιαδÏόμωνΜίξεως των καναλιών" - -#~ msgid "Show All AudioBus MixerStrips" -#~ msgstr "Ανάδειξη όλων των ΔιαδÏόμωνΜίξεως των διαÏλων" - -#~ msgid "Name for new mix group" -#~ msgstr "Όνομα για νέα ομάδα μίξεως" - -#~ msgid "automatically connect track outputs to physical ports" -#~ msgstr "αυτόματη σÏνδεση outputs καναλιών σε φυσικές θÏÏες" - -#~ msgid "show again" -#~ msgstr "δείξε πάλι" - -#~ msgid "new session setup" -#~ msgstr "νέα δαÏÏÏθμιση συνεδÏίας" - -#~ msgid "This session will playback and record at %1 Hz" -#~ msgstr "Αυτή η συνεδÏία θα αναπαÏάγει και θα εγγÏάφει στα %1 Hz" - -#~ msgid "" -#~ "This rate is set by JACK and cannot be changed.\n" -#~ "If you want to use a different sample rate\n" -#~ "please exit and restart JACK" -#~ msgstr "" -#~ "Αυτος ο 'Ïυθμός'(sample rate) τίθεται από τον JACK και δεν μποÏεί να " -#~ "αλλάξει.\n" -#~ "Αν επιθυμείτε να θέσετε διαφοÏετικό 'Ïυθμό'\n" -#~ "παÏακαλώ βγείτε και επανεκκινήστε τον JACK" - -#~ msgid "blank" -#~ msgstr "κενό" - -#~ msgid "No template - create tracks/busses manually" -#~ msgstr "ΧωÏίς Ï€Ïοσχέδιο - δημιουÏγία καναλιών/διαÏλων χειÏοκίνητα" - -#~ msgid "Slave to MTC" -#~ msgstr "Slave στον MTC" - -#~ msgid "Sync with JACK" -#~ msgstr "ΣÏγχÏονος με τον JACK" - -#~ msgid "never used but stops crashes" -#~ msgstr "αχÏησιμοποίητο αλλά σταματά τα crashes" - -#~ msgid "Debug keyboard events" -#~ msgstr "Debug γεγονότα πληκτÏολογίου" - -#~ msgid "--unknown--" -#~ msgstr "--άγνωστο--" - -#~ msgid "outs" -#~ msgstr "outs" - -#~ msgid "Select all" -#~ msgstr "Επιλογή όλων" - -#~ msgid "Post Redirects" -#~ msgstr "Μετα-Redirects" - -#~ msgid "Seamless Looping" -#~ msgstr "Αδιάσπαστο Looping" - -#, fuzzy -#~ msgid "Align recorded material with:" -#~ msgstr "Στοίχιση ληφθέντος Ï…Î»Î¹ÎºÎ¿Ï Î¼Îµ" - -#~ msgid "No toggle button pixmaps found to match toggle-button-[0-9]*.xpm$" -#~ msgstr "" -#~ "Δεν ευÏέθησαν 'toggle button pixmaps' να ταιÏιάζουν στα toggle-button-" -#~ "[0-9]*.xpm$" - -#~ msgid "" -#~ "No small push button pixmaps found to match small-round-button-[0-9]*.xpm$" -#~ msgstr "" -#~ "Δεν ευÏέθησαν 'small push button pixmaps' να ταιÏιάζουν στα small-round-" -#~ "button-[0-9]*.xpm$" - -#~ msgid "No pixmaps found to match hslider[0-9]*.xpm$" -#~ msgstr "Δεν ευÏέθησαν 'pixmaps' να ταιÏιάζουν στα hslider[0-9]*.xpm$" - -#~ msgid "No pixmaps found to match vslider[0-9]*.xpm$" -#~ msgstr "Δεν ευÏέθησαν 'pixmaps' να ταιÏιάζουν vslider[0-9]*.xpm$" - -#~ msgid "30 FPS non-drop" -#~ msgstr "30 FPS non-drop" - -#~ msgid "attempt to timestretch a non-audio track!" -#~ msgstr "απόπειÏα να χÏονοκαμφθεί ένα μη-ηχητικό κανάλι!" - -#~ msgid "cannot create timestretch thread - operation not carried out" -#~ msgstr "" -#~ "δεν δημιουÏγήθηκε σÏνδεσμος ΧÏονοκάμψης - η εÏγασία δεν ολοκληÏώθηκε" - -#, fuzzy -#~ msgid "move region(s) between tracks" -#~ msgstr "μετακίνηση πεÏιοχής Î¼ÎµÏ„Î±Î¾Ï ÎºÎ±Î½Î±Î»Î¹ÏŽÎ½" - -#, fuzzy -#~ msgid "copy region(s) between tracks" -#~ msgstr "αντιγÏαφή πεÏιοχής Î¼ÎµÏ„Î±Î¾Ï ÎºÎ±Î½Î±Î»Î¹ÏŽÎ½" - -#~ msgid "ardour: tempo editor" -#~ msgstr "ardour: επεξεÏγαστής χÏόνου" - -#~ msgid "mouse brush" -#~ msgstr "βοÏÏτσα ποντικιοÏ" - -#~ msgid "ardour_add_track_bus" -#~ msgstr "ardour_εισαγωγή_καναλιοÏ_διαÏλου" - -#~ msgid "ok" -#~ msgstr "Εν τάξει" - -#~ msgid "apply" -#~ msgstr "ενεÏγοποίηση" - -#~ msgid "fade" -#~ msgstr "fade" - -#~ msgid "Edit left" -#~ msgstr "ΕπεξεÏγασία αÏιστεÏοÏ" - -#~ msgid "Edit right" -#~ msgstr "ΕπεξεÏγασία δεξιοÏ" - -#~ msgid "add comments/notes here" -#~ msgstr "Ï€Ïόσθεση σχολίων/σημειώσεων εδώ" - -#, fuzzy -#~ msgid "outside this computer" -#~ msgstr "ΑπόκÏυψη παÏόντος καναλιοÏ" - -#, fuzzy -#~ msgid "inside this computer" -#~ msgstr "ΑπόκÏυψη παÏόντος καναλιοÏ" - -#~ msgid "track %1 has no input connections [This Message To Be Expanded]" -#~ msgstr "Το κανάλι %1 δεν εχει συνδέσεις λήψεως[Μήνυμα Ï€Ïος επέκταση]" - -#~ msgid "SR: %u kHz" -#~ msgstr "SR: %u kHz" - -#~ msgid "Route Parameters" -#~ msgstr "ΠαÏάμετÏοι διαδÏομών" - -#~ msgid "Display Automatic Regions" -#~ msgstr "Ανάδειξη Αυτομάτων ΠεÏιοχών" - -#~ msgid "Ardour is done. Come again. Have a nice day. Etc.\n" -#~ msgstr "Ο Ardour τελείωσε. Îα μας ξανάÏθετε. Καλή ημέÏα να έχετε. Κλπ.\n" - -#~ msgid "INPUTs" -#~ msgstr "Είσοδος(οι)" - -#~ msgid "OUTPUTs" -#~ msgstr "'Εξοδος(οι)" - -#~ msgid "ardour: route parameters" -#~ msgstr "ardour: παÏάμετÏοι διαδÏομών" - -#~ msgid "ardour: route parameters: " -#~ msgstr "ardour: παÏάμετÏοι διαδÏομών: " diff --git a/gtk2_ardour/po/en_GB.po b/gtk2_ardour/po/en_GB.po index d7c9874ecc..8eb1853152 100644 --- a/gtk2_ardour/po/en_GB.po +++ b/gtk2_ardour/po/en_GB.po @@ -656,11 +656,6 @@ msgstr "" msgid "Audio Connections" msgstr "" -#: ardour_ui.cc:200 -#, fuzzy -msgid "MIDI Connections" -msgstr "Channel Colours" - #: ardour_ui.cc:202 msgid "Errors" msgstr "" @@ -3635,16 +3630,6 @@ msgstr "" msgid "Snap to Minutes" msgstr "" -#: editor_actions.cc:505 -#, fuzzy -msgid "Snap to One Twenty Eighths" -msgstr "Snap to quavers" - -#: editor_actions.cc:506 -#, fuzzy -msgid "Snap to Sixty Fourths" -msgstr "Snap to semiquavers" - #: editor_actions.cc:507 msgid "Snap to Thirty Seconds" msgstr "Snap to demisemiquavers" @@ -4611,36 +4596,6 @@ msgstr "" msgid "insert region" msgstr "" -#: editor_ops.cc:2261 -#, fuzzy -msgid "raise regions" -msgstr "Normalise regions" - -#: editor_ops.cc:2263 -#, fuzzy -msgid "raise region" -msgstr "Normalise region" - -#: editor_ops.cc:2269 -#, fuzzy -msgid "raise regions to top" -msgstr "Normalise regions" - -#: editor_ops.cc:2271 -#, fuzzy -msgid "raise region to top" -msgstr "Normalise region" - -#: editor_ops.cc:2277 -#, fuzzy -msgid "lower regions" -msgstr "Normalise regions" - -#: editor_ops.cc:2279 editor_ops.cc:2287 -#, fuzzy -msgid "lower region" -msgstr "Normalise region" - #: editor_ops.cc:2285 msgid "lower regions to bottom" msgstr "" @@ -6505,11 +6460,6 @@ msgstr "could not initialise %1." msgid "Cannot xinstall SIGPIPE error handler" msgstr "" -#: main.cc:528 -#, fuzzy -msgid "could not create %1 GUI" -msgstr "could not initialise %1." - #: main_clock.cc:51 msgid "Display delta to edit cursor" msgstr "" @@ -6532,11 +6482,6 @@ msgstr "" msgid "Force" msgstr "" -#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 -#, fuzzy -msgid "MIDI Channel Control" -msgstr "Channel Colours" - #: midi_channel_selector.cc:332 msgid "Playback all channels" msgstr "" @@ -6625,26 +6570,6 @@ msgstr "" msgid "Triplet" msgstr "" -#: midi_list_editor.cc:58 -#, fuzzy -msgid "Quarter" -msgstr "crotchet (4)" - -#: midi_list_editor.cc:59 -#, fuzzy -msgid "Eighth" -msgstr "quaver (8)" - -#: midi_list_editor.cc:60 -#, fuzzy -msgid "Sixteenth" -msgstr "semiquaver (16)" - -#: midi_list_editor.cc:61 -#, fuzzy -msgid "Thirty-second" -msgstr "demisemiquaver (32)" - #: midi_list_editor.cc:62 msgid "Sixty-fourth" msgstr "" @@ -6673,11 +6598,6 @@ msgstr "" msgid "edit note velocity" msgstr "" -#: midi_list_editor.cc:258 -#, fuzzy -msgid "edit note length" -msgstr "Set note length to a minim" - #: midi_list_editor.cc:460 msgid "insert new note" msgstr "" @@ -6794,11 +6714,6 @@ msgstr "" msgid "Program " msgstr "" -#: midi_region_view.cc:3132 -#, fuzzy -msgid "Channel " -msgstr "Channel Colours" - #: midi_region_view.cc:3301 midi_region_view.cc:3303 msgid "paste" msgstr "" @@ -6843,11 +6758,6 @@ msgstr "" msgid "Note Mode" msgstr "" -#: midi_time_axis.cc:497 -#, fuzzy -msgid "Channel Selector" -msgstr "Channel Colours" - #: midi_time_axis.cc:502 msgid "Color Mode" msgstr "Colour Mode" @@ -11473,47 +11383,11 @@ msgstr "" msgid "Edit Tempo" msgstr "" -#: tempo_dialog.cc:76 tempo_dialog.cc:77 tempo_dialog.cc:282 -#: tempo_dialog.cc:283 -#, fuzzy -msgid "whole" -msgstr "semibreve (1)" - -#: tempo_dialog.cc:78 tempo_dialog.cc:79 tempo_dialog.cc:284 -#: tempo_dialog.cc:285 -#, fuzzy -msgid "second" -msgstr "minim (2)" - #: tempo_dialog.cc:80 tempo_dialog.cc:81 tempo_dialog.cc:286 #: tempo_dialog.cc:287 msgid "third" msgstr "" -#: tempo_dialog.cc:82 tempo_dialog.cc:83 tempo_dialog.cc:288 -#: tempo_dialog.cc:289 -#, fuzzy -msgid "quarter" -msgstr "crotchet (4)" - -#: tempo_dialog.cc:84 tempo_dialog.cc:85 tempo_dialog.cc:290 -#: tempo_dialog.cc:291 -#, fuzzy -msgid "eighth" -msgstr "quaver (8)" - -#: tempo_dialog.cc:86 tempo_dialog.cc:87 tempo_dialog.cc:292 -#: tempo_dialog.cc:293 -#, fuzzy -msgid "sixteenth" -msgstr "semiquaver (16)" - -#: tempo_dialog.cc:88 tempo_dialog.cc:89 tempo_dialog.cc:294 -#: tempo_dialog.cc:295 -#, fuzzy -msgid "thirty-second" -msgstr "demisemiquaver (32)" - #: tempo_dialog.cc:90 tempo_dialog.cc:91 tempo_dialog.cc:296 #: tempo_dialog.cc:297 msgid "sixty-fourth" @@ -11855,11 +11729,6 @@ msgstr "" msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:63 -#, fuzzy -msgid "Height = " -msgstr "quaver (8)" - #: transcode_video_dialog.cc:66 msgid "Manual Override" msgstr "" @@ -12049,11 +11918,6 @@ msgstr "" msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:80 -#, fuzzy -msgid "Normalize Audio" -msgstr "Normalise to:" - #: export_video_dialog.cc:81 msgid "2 Pass Encoding" msgstr "" @@ -12145,11 +12009,6 @@ msgstr "" msgid "Audio Samplerate:" msgstr "" -#: export_video_dialog.cc:387 -#, fuzzy -msgid "Normalizing audio" -msgstr "Normalise values" - #: export_video_dialog.cc:391 msgid "Exporting audio" msgstr "" @@ -12212,9 +12071,3 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" - -#~ msgid "Quantize Type" -#~ msgstr "Quantise Type" - -#~ msgid "unknown style attribute %1 requested for color; using \"red\"" -#~ msgstr "unknown style attribute %1 requested for colour; using \"red\"" diff --git a/gtk2_ardour/po/es.po b/gtk2_ardour/po/es.po index aa9a7b6ec8..e960231f32 100644 --- a/gtk2_ardour/po/es.po +++ b/gtk2_ardour/po/es.po @@ -252,26 +252,6 @@ msgstr "" "\tMartin Blanchard\n" "\tRomain Arnaud \n" -#: about.cc:183 -#, fuzzy -msgid "" -"German:\n" -"\tKarsten Petersen \n" -"\tSebastian Arnold \n" -"\tRobert Schwede \n" -"\tBenjamin Scherrer \n" -"\tEdgar Aichinger \n" -"\tRichard Oax \n" -"\tRobin Gloster \n" -msgstr "" -"Alemán:\n" -"\tKarsten Petersen \n" -"\tSebastian Arnold \n" -"\tRobert Schwede \n" -"\tBenjamin Scherrer \n" -"\tEdgar Aichinger \n" -"\tRichard Oax \n" - #: about.cc:190 msgid "" "Italian:\n" @@ -670,11 +650,6 @@ msgstr "Combinaciones de teclas" msgid "Preferences" msgstr "Preferencias" -#: ardour_ui.cc:191 ardour_ui.cc:196 -#, fuzzy -msgid "Add Tracks/Busses" -msgstr "Pistas/Buses" - #: ardour_ui.cc:192 msgid "About" msgstr "Acerca de" @@ -699,16 +674,6 @@ msgstr "Gestor de conjuntos de conexiones" msgid "Big Clock" msgstr "Reloj grande" -#: ardour_ui.cc:199 -#, fuzzy -msgid "Audio Connections" -msgstr "Gestor de conexiones de audio" - -#: ardour_ui.cc:200 -#, fuzzy -msgid "MIDI Connections" -msgstr "Gestor de conexiones MIDI" - #: ardour_ui.cc:202 msgid "Errors" msgstr "Errores" @@ -1246,11 +1211,6 @@ msgstr "" msgid "Do you really want to stop the Video Server?" msgstr "" -#: ardour_ui.cc:3345 -#, fuzzy -msgid "Yes, Stop It" -msgstr "Sí, eliminar" - #: ardour_ui.cc:3371 msgid "The Video Server is already started." msgstr "" @@ -1406,11 +1366,6 @@ msgstr "interfaz de usuario: no se pudo configurar el editor" msgid "UI: cannot setup mixer" msgstr "interfaz de usuario: no se pudo configurar el mezclador" -#: ardour_ui2.cc:82 -#, fuzzy -msgid "UI: cannot setup meterbridge" -msgstr "interfaz de usuario: no se pudo configurar el mezclador" - #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "Reproducir desde cursor" @@ -1483,41 +1438,6 @@ msgstr "" msgid "When active, there is a feedback loop." msgstr "Cuando está activo, existe un bucle de realimentación." -#: ardour_ui2.cc:145 -#, fuzzy -msgid "" -"Primary Clock right-click to set display mode. Click to edit, click" -"+drag a digit or mouse-over+scroll wheel to modify.\n" -"Text edits: right-to-left overwrite Esc: cancel; Enter: " -"confirm; postfix the edit with '+' or '-' to enter delta times.\n" -msgstr "" -"Reloj primario botón derecho para establecer modo de vista. Clic para " -"editar. Clic+arrastrar o rueda sobre dígito para modificar.\n" -"Edición de texto: Sobreescritura de derecha a izquierda. Esc: " -"Cancelar; Enter: Confirmar; Ajustar la edición con '+' or '-' \n" -"para introducir diferencias. Ver http://ardour.org/" -"a3_features_clocks para detalles." - -#: ardour_ui2.cc:146 -#, fuzzy -msgid "" -"Secondary Clock right-click to set display mode. Click to edit, click" -"+drag a digit or mouse-over+scroll wheel to modify.\n" -"Text edits: right-to-left overwrite Esc: cancel; Enter: " -"confirm; postfix the edit with '+' or '-' to enter delta times.\n" -msgstr "" -"Reloj secundario botón derecho para establecer modo de vista. Clic " -"para editar. Clic+arrastrar o rueda sobre dígito para modificar.\n" -"Edición de texto: Sobreescritura de derecha a izquierda. Esc: " -"Cancelar; Enter: Confirmar; Ajustar la edición con '+' or '-' \n" -"para introducir diferencias. Ver http://ardour.org/" -"a3_features_clocks para detalles." - -#: ardour_ui2.cc:147 -#, fuzzy -msgid "Reset Level Meter" -msgstr "Restablecer envolvente" - #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "[ERROR]: " @@ -1661,21 +1581,6 @@ msgstr "Cerrar" msgid "Add Track or Bus..." msgstr "Añadir pista o bus..." -#: ardour_ui_ed.cc:135 -#, fuzzy -msgid "Open Video" -msgstr "Abrir sesión" - -#: ardour_ui_ed.cc:138 -#, fuzzy -msgid "Remove Video" -msgstr "Eliminar rango" - -#: ardour_ui_ed.cc:141 -#, fuzzy -msgid "Export To Video File" -msgstr "Exportar a archivo(s) de audio..." - #: ardour_ui_ed.cc:145 msgid "Snapshot..." msgstr "Captura de sesión..." @@ -1759,16 +1664,6 @@ msgstr "Mostrar barras de herramientas" msgid "Window|Mixer" msgstr "Mezclador" -#: ardour_ui_ed.cc:231 -#, fuzzy -msgid "Toggle Editor+Mixer" -msgstr "Cambiar modo de edición" - -#: ardour_ui_ed.cc:232 meterbridge.cc:230 meterbridge.cc:236 -#, fuzzy -msgid "Window|Meterbridge" -msgstr "Mezclador" - #: ardour_ui_ed.cc:234 midi_tracer.cc:39 msgid "MIDI Tracer" msgstr "Rastreador MIDI" @@ -3953,30 +3848,10 @@ msgstr "Bucle/Pinchazo" msgid "Min:Sec" msgstr "Mins:Segs" -#: editor_actions.cc:547 editor_actions.cc:550 -#, fuzzy -msgid "Video Monitor" -msgstr "Monitorizar" - #: editor_actions.cc:549 rc_option_editor.cc:1842 msgid "Video" msgstr "" -#: editor_actions.cc:552 -#, fuzzy -msgid "Always on Top" -msgstr "Levantar a capa superior" - -#: editor_actions.cc:554 -#, fuzzy -msgid "Frame number" -msgstr "Número de pista" - -#: editor_actions.cc:555 -#, fuzzy -msgid "Timecode Background" -msgstr "Timecode segundos" - #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" @@ -4455,11 +4330,6 @@ msgstr "Embeber de todas formas" msgid "fixed time region drag" msgstr "Arrastre de región en tiempo fijado" -#: editor_drag.cc:1700 -#, fuzzy -msgid "Video Start:" -msgstr "Mike Start" - #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -5097,11 +4967,6 @@ msgstr "envolvente de ganancia de región activa" msgid "toggle region lock" msgstr "conmutar bloqueo de región" -#: editor_ops.cc:5067 -#, fuzzy -msgid "Toggle Video Lock" -msgstr "conmutar bloqueo de región" - #: editor_ops.cc:5091 msgid "region lock style" msgstr "estilo de bloqueo de región" @@ -5603,11 +5468,6 @@ msgstr "Nueva métrica" msgid "Timeline height" msgstr "" -#: editor_rulers.cc:383 -#, fuzzy -msgid "Align Video Track" -msgstr "Añadir pista de audio" - #: editor_selection.cc:889 editor_selection.cc:932 msgid "set selected regions" msgstr "establecer regiones seleccionadas" @@ -6025,16 +5885,6 @@ msgstr "Contenidos de región con fundidos y ganancia de región (canales: %1)" msgid "Track output (channels: %1)" msgstr "Salida de pista (canales: %1)" -#: export_channel_selector.cc:536 -#, fuzzy -msgid "Export region contents" -msgstr "Exportar región" - -#: export_channel_selector.cc:537 -#, fuzzy -msgid "Export track output" -msgstr "Conectar salidas de pista y bus" - #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten. al parecer sí, desde hace poc. Chequear: http://buscon.rae.es/draeI/SrvltObtenerHtml?IDLEMA=12558&NEDIC=Si -#: session_option_editor.cc:286 -#, fuzzy -msgid "Show Busses" -msgstr "Buses" - -#: session_option_editor.cc:293 -#, fuzzy -msgid "Include Master Bus" -msgstr "el bus master" - #: session_option_editor.cc:298 msgid "Button Area" msgstr "" -#: session_option_editor.cc:302 -#, fuzzy -msgid "Rec-enable Button" -msgstr "Activar grabación" - -#: session_option_editor.cc:309 -#, fuzzy -msgid "Mute Button" -msgstr "+ botón" - -#: session_option_editor.cc:316 -#, fuzzy -msgid "Solo Button" -msgstr "Solo / mudo" - #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" -#: session_option_editor.cc:325 -#, fuzzy -msgid "Track Name" -msgstr "Nombre de Pista/Bus" - #: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 msgid "as new tracks" msgstr "como nuevas pistas" @@ -11369,53 +11024,6 @@ msgstr "Pedir a %1 que reproduzca el material al tiempo que se graba" msgid "I'd like more options for this session" msgstr "Quiero más opciones para esta sesión" -#: startup.cc:194 -#, fuzzy -msgid "" -"Welcome to this BETA release of Ardour %1\n" -"\n" -"Ardour %1 has been released for Linux but because of the lack of testers,\n" -"it is still at the beta stage on OS X. So, a few guidelines:\n" -"\n" -"1) Please do NOT use this software with the expectation that it is " -"stable or reliable\n" -" though it may be so, depending on your workflow.\n" -"2) Please do NOT use the forums at ardour.org to report issues.\n" -"3) Please DO use the bugtracker at http://tracker.ardour.org/ to " -"report issues\n" -" making sure to note the product version number as %1-beta.\n" -"4) Please DO use the ardour-users mailing list to discuss ideas and " -"pass on comments.\n" -"5) Please DO join us on IRC for real time discussions about ardour3. " -"You\n" -" can get there directly from Ardour via the Help->Chat menu option.\n" -"\n" -"Full information on all the above can be found on the support page at\n" -"\n" -" http://ardour.org/support\n" -msgstr "" -"Welcome to this BETA release of Ardour 3.0\n" -"\n" -"Ardour 3.0 has been released for Linux but because of the lack of testers,\n" -"it is still at the beta stage on OS X. So, a few guidelines:\n" -"\n" -"1) Please do NOT use this software with the expectation that it is " -"stable or reliable\n" -" though it may be so, depending on your workflow.\n" -"3) Please do NOT use the forums at ardour.org to report issues.\n" -"4) Please DO use the bugtracker at http://tracker.ardour.org/ to " -"report issues\n" -" making sure to note the product version number as 3.0-beta.\n" -"5) Please DO use the ardour-users mailing list to discuss ideas and " -"pass on comments.\n" -"6) Please DO join us on IRC for real time discussions about ardour3. " -"You\n" -" can get there directly from Ardour via the Help->Chat menu option.\n" -"\n" -"Full information on all the above can be found on the support page at\n" -"\n" -" http://ardour.org/support\n" - #: startup.cc:218 msgid "This is a BETA RELEASE" msgstr "Esta es una edición BETA" @@ -12345,16 +11953,6 @@ msgstr "Caught exception while loading icon named %1" msgid "VerboseCanvasCursor" msgstr "VerboseCanvasCursor" -#: add_video_dialog.cc:55 -#, fuzzy -msgid "Set Video Track" -msgstr "Añadir pista de audio" - -#: add_video_dialog.cc:63 -#, fuzzy -msgid "Launch External Video Monitor" -msgstr "Monitorizar" - #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -12367,26 +11965,6 @@ msgstr "" msgid "VideoServerIndex" msgstr "" -#: add_video_dialog.cc:129 -#, fuzzy -msgid "Video files" -msgstr "Archivos de audio" - -#: add_video_dialog.cc:164 -#, fuzzy -msgid "Video Information" -msgstr "Información del archivo de sonido" - -#: add_video_dialog.cc:167 -#, fuzzy -msgid "Start:" -msgstr "Inicio" - -#: add_video_dialog.cc:173 -#, fuzzy -msgid "Frame rate:" -msgstr "Frec. de muestreo:" - #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -12432,11 +12010,6 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" -#: video_monitor.cc:281 -#, fuzzy -msgid "Video Monitor: File Not Found." -msgstr "Monitorizar" - #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -12453,25 +12026,10 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:56 -#, fuzzy -msgid "Transcode/Import Video File " -msgstr "Exportar a archivo(s) de audio..." - -#: transcode_video_dialog.cc:58 -#, fuzzy -msgid "Output File:" -msgstr "Dispositivo de salida:" - #: transcode_video_dialog.cc:61 export_video_dialog.cc:73 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:63 -#, fuzzy -msgid "Height = " -msgstr "Altura" - #: transcode_video_dialog.cc:66 msgid "Manual Override" msgstr "" @@ -12480,11 +12038,6 @@ msgstr "" msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:107 -#, fuzzy -msgid "File Information" -msgstr "Información del archivo de sonido" - #: transcode_video_dialog.cc:113 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " @@ -12502,11 +12055,6 @@ msgstr "" msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:136 -#, fuzzy -msgid "Duration:" -msgstr "Duración" - #: transcode_video_dialog.cc:138 msgid "Codec:" msgstr "" @@ -12515,16 +12063,6 @@ msgstr "" msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:155 -#, fuzzy -msgid "??" -msgstr "???" - -#: transcode_video_dialog.cc:176 -#, fuzzy -msgid "Import Settings" -msgstr "Opciones" - #: transcode_video_dialog.cc:181 msgid "Do Not Import Video" msgstr "" @@ -12533,11 +12071,6 @@ msgstr "" msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:184 -#, fuzzy -msgid "Import/Transcode Video to Session" -msgstr "Exportar desde sesión" - #: transcode_video_dialog.cc:198 msgid "Scale Video: Width = " msgstr "" @@ -12550,16 +12083,6 @@ msgstr "" msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:225 -#, fuzzy -msgid "Extract Audio:" -msgstr "Exportar audio" - -#: transcode_video_dialog.cc:345 -#, fuzzy -msgid "Extracting Audio.." -msgstr "Exportar audio" - #: transcode_video_dialog.cc:348 msgid "Audio Extraction Failed." msgstr "" @@ -12568,16 +12091,6 @@ msgstr "" msgid "Transcoding Video.." msgstr "" -#: transcode_video_dialog.cc:408 -#, fuzzy -msgid "Transcoding Failed." -msgstr "Traducciones deshabilitadas" - -#: transcode_video_dialog.cc:491 -#, fuzzy -msgid "Save Transcoded Video File" -msgstr "Exportar a archivo(s) de audio..." - #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -12586,11 +12099,6 @@ msgstr "" msgid "Server Executable:" msgstr "" -#: video_server_dialog.cc:46 -#, fuzzy -msgid "Server Docroot:" -msgstr "Servidor:" - #: video_server_dialog.cc:52 msgid "Don't show this dialog again. (Reset in Edit->Preferences)." msgstr "" @@ -12606,16 +12114,6 @@ msgstr "" msgid "Listen Address:" msgstr "" -#: video_server_dialog.cc:125 -#, fuzzy -msgid "Listen Port:" -msgstr "Posición de escucha" - -#: video_server_dialog.cc:130 -#, fuzzy -msgid "Cache Size:" -msgstr "Tamaño máx." - #: video_server_dialog.cc:136 msgid "" "%1 relies on an external Video Server for the videotimeline.\n" @@ -12645,31 +12143,6 @@ msgstr "" msgid "Continue" msgstr "" -#: utils_videotl.cc:63 -#, fuzzy -msgid "Confirm Overwrite" -msgstr "Confirmar reescritura de captura de sesión" - -#: utils_videotl.cc:64 -#, fuzzy -msgid "A file with the same name already exists. Do you want to overwrite it?" -msgstr "Ya existe una captura de sesión con ese nombre. ¿Quieres reescribirla?" - -#: utils_videotl.cc:74 utils_videotl.cc:90 -#, fuzzy -msgid "Cannot create video folder \"%1\" (%2)" -msgstr "No se pudo leer el archivo %1 (%2)." - -#: export_video_dialog.cc:66 -#, fuzzy -msgid "Export Video File " -msgstr "Exportar a archivo(s) de audio..." - -#: export_video_dialog.cc:70 -#, fuzzy -msgid "Video:" -msgstr "Mike Start" - #: export_video_dialog.cc:74 msgid "Scale Video (W x H):" msgstr "" @@ -12678,11 +12151,6 @@ msgstr "" msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:80 -#, fuzzy -msgid "Normalize Audio" -msgstr "Normalizar a:" - #: export_video_dialog.cc:81 msgid "2 Pass Encoding" msgstr "" @@ -12691,11 +12159,6 @@ msgstr "" msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:84 -#, fuzzy -msgid "Deinterlace" -msgstr "Centrar cursor" - #: export_video_dialog.cc:85 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" @@ -12704,11 +12167,6 @@ msgstr "" msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:87 -#, fuzzy -msgid "Include Session Metadata" -msgstr "Editar metadatos de sesión" - #: export_video_dialog.cc:107 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " @@ -12716,26 +12174,6 @@ msgid "" "information." msgstr "" -#: export_video_dialog.cc:117 -#, fuzzy -msgid "Output:" -msgstr "Salidas" - -#: export_video_dialog.cc:127 -#, fuzzy -msgid "Input:" -msgstr "Entradas" - -#: export_video_dialog.cc:138 -#, fuzzy -msgid "Audio:" -msgstr "Audio" - -#: export_video_dialog.cc:140 -#, fuzzy -msgid "Master Bus" -msgstr "el bus master" - #: export_video_dialog.cc:145 msgid "from the %1 session's start to the session's end" msgstr "" @@ -12748,61 +12186,6 @@ msgstr "" msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:184 -#, fuzzy -msgid "Settings:" -msgstr "Destinos" - -#: export_video_dialog.cc:192 -#, fuzzy -msgid "Range:" -msgstr "Rango" - -#: export_video_dialog.cc:195 -#, fuzzy -msgid "Preset:" -msgstr "Preset" - -#: export_video_dialog.cc:198 -#, fuzzy -msgid "Video Codec:" -msgstr "Carpeta:" - -#: export_video_dialog.cc:201 -#, fuzzy -msgid "Video KBit/s:" -msgstr "Mike Start" - -#: export_video_dialog.cc:204 -#, fuzzy -msgid "Audio Codec:" -msgstr "Modo de audio:" - -#: export_video_dialog.cc:207 -#, fuzzy -msgid "Audio KBit/s:" -msgstr "Archivos de audio" - -#: export_video_dialog.cc:210 -#, fuzzy -msgid "Audio Samplerate:" -msgstr "Frec. de muestreo:" - -#: export_video_dialog.cc:387 -#, fuzzy -msgid "Normalizing audio" -msgstr "Normalizar valores" - -#: export_video_dialog.cc:391 -#, fuzzy -msgid "Exporting audio" -msgstr "Exportar audio" - -#: export_video_dialog.cc:437 -#, fuzzy -msgid "Exporting Audio..." -msgstr "Exportar audio" - #: export_video_dialog.cc:494 msgid "" "Export Video: Cannot query duration of video-file, using duration from " @@ -12813,11 +12196,6 @@ msgstr "" msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" -#: export_video_dialog.cc:562 -#, fuzzy -msgid "Encoding Video..." -msgstr "Traducciones deshabilitadas" - #: export_video_dialog.cc:581 msgid "Export Video: Video input file cannot be read." msgstr "" @@ -12830,21 +12208,6 @@ msgstr "" msgid "Encoding Video.. Pass 2/2" msgstr "" -#: export_video_dialog.cc:779 -#, fuzzy -msgid "Transcoding failed." -msgstr "Traducciones deshabilitadas" - -#: export_video_dialog.cc:948 export_video_dialog.cc:968 -#, fuzzy -msgid "Save Exported Video File" -msgstr "Exportar a archivo(s) de audio..." - -#: export_video_infobox.cc:30 -#, fuzzy -msgid "Video Export Info" -msgstr "Monitorizar" - #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -12861,660 +12224,3 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" - -#~ msgid "-Inf" -#~ msgstr "-Inf" - -#~ msgid "slowest" -#~ msgstr "lentísimo" - -#~ msgid "slow" -#~ msgstr "lento" - -#~ msgid "fast" -#~ msgstr "rápido" - -#~ msgid "faster" -#~ msgstr "más rápido" - -#~ msgid "fastest" -#~ msgstr "rapidísimo" - -#~ msgid "What would you like to do ?" -#~ msgstr "¿Qué te gustaría hacer?" - -#~ msgid "Connect" -#~ msgstr "Conectar" - -#~ msgid "Mixer on Top" -#~ msgstr "Mezclador encima" - -#~ msgid "Add Audio Track" -#~ msgstr "Añadir pista de audio" - -#~ msgid "Add Audio Bus" -#~ msgstr "Añadir bus de audio" - -#~ msgid "Add MIDI Track" -#~ msgstr "Añadir pista MIDI" - -#~ msgid "Control surfaces" -#~ msgstr "Superficies de control" - -#~ msgid "Use plugins' own interfaces instead of %1's" -#~ msgstr "Usar los interfaces propios de los plugins, en lugar de los de %1" - -#~ msgid "Hid" -#~ msgstr "Ocultar" - -#~ msgid "Use a monitor bus (allows AFL/PFL and more control)" -#~ msgstr "Usar un bus de monitorización (permite AFL/PFL y más control)" - -#~ msgid "Lck" -#~ msgstr "Lck" - -#~ msgid "Use overlap equivalency for regions" -#~ msgstr "Usar equivalencia de superposición para regiones" - -#~ msgid "could not create a new midi track" -#~ msgstr "no se pudo crear una pista midi nueva" - -#~ msgid "could only create %1 of %2 new audio %3" -#~ msgstr "sólo se pudieron crear %1 de %2 %3 de audio." - -#~ msgid "could not create a new audio bus" -#~ msgstr "no se pudo crear un nuevo bus de audio" - -# debí adaptar para que al completarse con los parámetros el mensaje tuviera sentido en español -# (quedaba mal por los plurales y la ambigüedad was=fue/estuvo) -#~ msgid "" -#~ "The following %1 files were not in use and \n" -#~ "have been moved to:\n" -#~ "\n" -#~ "%2\n" -#~ "\n" -#~ "After a restart of %5,\n" -#~ "\n" -#~ "Session -> Clean-up -> Flush Wastebasket\n" -#~ "\n" -#~ "will release an additional\n" -#~ "%3 %4bytes of disk space.\n" -#~ msgstr "" -#~ "Los siguientes %1 archivos no estaban en uso\n" -#~ "y se han movido a:\n" -#~ "\n" -#~ "%2 \n" -#~ "\n" -#~ "Tras el reinicio de %5,\n" -#~ "\n" -#~ "Sesión -> Purgar -> Vaciar papelera\n" -#~ "\n" -#~ "liberará\n" -#~ "%3 %4bytes de espacio en disco.\n" - -# debí adaptar para que al completarse con los parámetros el mensaje tuviera sentido en español -# (quedaba mal por los plurales y la ambigüedad was=fue/estuvo) -#~ msgid "" -#~ "The following %1 files were deleted from\n" -#~ "%2,\n" -#~ "releasing %3 %4bytes of disk space" -#~ msgstr "" -#~ "Los siguientes %1 archivos fueron eliminados de\n" -#~ "%2,\n" -#~ "liberando %3 %4bytes de espacio en disco" - -#~ msgid "Translations disabled" -#~ msgstr "Traducciones habilitadas" - -#~ msgid "You must restart %1 for this to take effect." -#~ msgstr "Debes reiniciar %1 para que esto tengo efecto." - -#~ msgid "Always Play Range Selection (if any)" -#~ msgstr "Reproducir siempre rango/selección (si existe)" - -#~ msgid "Start playback after any locate" -#~ msgstr "Iniciar reproducción desde cualquier posición" - -#~ msgid "Toolbars when Maximised" -#~ msgstr "Barras de herramientas en maximizado" - -#~ msgid "Always Play Range" -#~ msgstr "Reproducir rango siempre" - -#~ msgid "Select/Move Objects" -#~ msgstr "Seleccionar/Mover objetos" - -#~ msgid "Select/Move Ranges" -#~ msgstr "Seleccionar/Mover rangos" - -#~ msgid "Edit Region Contents (e.g. notes)" -#~ msgstr "Editar contenidos de región (p.ej. notas)" - -#~ msgid "Link Object / Range Tools" -#~ msgstr "Enlazar herramientas de Objeto / Rango" - -#~ msgid "Fork" -#~ msgstr "Ramificar" - -#~ msgid "editing|E" -#~ msgstr "edición|E" - -#~ msgid "Sharing Editing?" -#~ msgstr "¿Compartir edición?" - -#~ msgid "Locate to Range Mark" -#~ msgstr "Ir a marca de rango" - -#~ msgid "Play from Range Mark" -#~ msgstr "Reproducir desde marca de rango" - -#~ msgid "Realtime Priority" -#~ msgstr "Prioridad de realtime" - -#~ msgid "Playback/Recording on 1 Device" -#~ msgstr "Reproducir/Grabar en 1 dispositivo" - -#~ msgid "Playback/Recording on 2 Devices" -#~ msgstr "Reproducir/Grabar en 2 dispositivos" - -#~ msgid "Advanced options" -#~ msgstr "Opciones avanzadas" - -#~ msgid "Include in Filename(s):" -#~ msgstr "Incluir en nombre de fichero(s):" - -#~ msgid "Bank:" -#~ msgstr "Banco:" - -#~ msgid "Program:" -#~ msgstr "Programa:" - -#~ msgid "Channel:" -#~ msgstr "Canal:" - -#~ msgid "MIDI Thru" -#~ msgstr "MIDI Thru" - -#~ msgid "signal" -#~ msgstr "señal" - -#~ msgid "Disable plugins during recording" -#~ msgstr "Desactivar plugins durante grabación" - -#~ msgid "Visual|Interface" -#~ msgstr "Visual|Interfaz" - -#~ msgid "Editing" -#~ msgstr "Edición" - -#~ msgid "Subframes per frame" -#~ msgstr "Subcuadores por cuadro" - -#~ msgid "80" -#~ msgstr "80" - -#~ msgid "100" -#~ msgstr "100" - -#~ msgid "Timecode source shares sample clock with audio interface" -#~ msgstr "" -#~ "Origen de Timecode comparte reloj de sampleado con interfaz de audio" - -#~ msgid "Timecode Offset Negative" -#~ msgstr "Compensación de timecode negativa" - -#~ msgid "Crossfades are created" -#~ msgstr "Fundidos cruzados son creados" - -#~ msgid "to span entire overlap" -#~ msgstr "a lo largo de todo el solapamiento" - -#~ msgid "use existing region fade shape" -#~ msgstr "Usar la forma de fundido de región existente " - -#~ msgid "Short crossfade length" -#~ msgstr "Duración del fundido cruzado corto" - -#~ msgid "Create crossfades automatically" -#~ msgstr "Crear fundidos cruzados automáticamente" - -#~ msgid "Add files:" -#~ msgstr "Añadir archivos:" - -#~ msgid "Mapping:" -#~ msgstr "Mapeo:" - -#~ msgid "gTortnam" -#~ msgstr "gTortnam" - -#~ msgid "Route Groups" -#~ msgstr "Grupos de ruteado" - -#~ msgid "Nudge Entire Track Backward" -#~ msgstr "Empujar atrás toda la pista" - -#~ msgid "Nudge Track After Edit Point Backward" -#~ msgstr "Empujar atrás pista desde punto de edición" - -#~ msgid "Nudge Region/Selection Backwards" -#~ msgstr "Empujar atrás región/selección " - -#~ msgid "Jump Forward to Mark" -#~ msgstr "Saltar a marca siguiente" - -#~ msgid "Jump Backward to Mark" -#~ msgstr "Saltar a marca anterior" - -#~ msgid "Nudge Next Backward" -#~ msgstr "Empujar siguiente atrás" - -#~ msgid "Forward to Grid" -#~ msgstr "Adelante a rejilla" - -#~ msgid "Backward to Grid" -#~ msgstr "Atrás a rejilla" - -#~ msgid "Move Backwards to Transient" -#~ msgstr "A transitorio anterior" - -#~ msgid "Nudge Backward" -#~ msgstr "Empujar atrás" - -#~ msgid "Nudge Backward by Capture Offset" -#~ msgstr "Empujar atrás por compensación de captura" - -#~ msgid "Could not create user configuration directory" -#~ msgstr "No se pudo crear directorio de configuración de usuario" - -#~ msgid "close" -#~ msgstr "cerrar" - -#~ msgid "Legato" -#~ msgstr "Legato" - -#~ msgid "Groove" -#~ msgstr "Groove" - -#~ msgid "Quantize Type" -#~ msgstr "Tipo de cuantificación" - -#~ msgid "Secondary clock delta to edit cursor" -#~ msgstr "Reloj secundario muestra diferencia al punto de edición" - -#~ msgid "Route active state" -#~ msgstr "Estado de ruteado activo" - -#~ msgid "Crossfades active" -#~ msgstr "Fundidos cruzados activos" - -#~ msgid "Crossfades visible" -#~ msgstr "Fundidos cruzados visibles" - -#~ msgid "Hide All Crossfades" -#~ msgstr "Ocultar todos los fundidos cruzados" - -#~ msgid "Show All Crossfades" -#~ msgstr "Mostrar todos los fundidos cruzados" - -#~ msgid "Edit Crossfade" -#~ msgstr "Editar fundido cruzado" - -#~ msgid "Out (dry)" -#~ msgstr "Salida (limpia)" - -# discutible quizás, pero nunca escuché que alguien tradujera dry/wet como seco/húmedo... -#~ msgid "In (dry)" -#~ msgstr "Entrada (limpia)" - -#~ msgid "With Pre-roll" -#~ msgstr "Con Pre-roll" - -#~ msgid "With Post-roll" -#~ msgstr "Con Post-roll" - -#~ msgid "Edit crossfade" -#~ msgstr "Editar fundido cruzado" - -#~ msgid "Unmute" -#~ msgstr "No mudo" - -#~ msgid "Convert to Short" -#~ msgstr "Convertir a corto" - -#~ msgid "Convert to Full" -#~ msgstr "Convertir a completo" - -#~ msgid "Change crossfade active state" -#~ msgstr "Cambiar estado de fundidos cruzados activos" - -#~ msgid "Change crossfade length" -#~ msgstr "Cambiar duración de fundido cruzado" - -#~ msgid "Broadcast WAVE metadata" -#~ msgstr "Metadatos de Broadcast WAVE" - -#~ msgid "Add MIDI Controller Track" -#~ msgstr "Añadir pista de controlador MIDI" - -#~ msgid "%1 could not start JACK" -#~ msgstr "%1 no pudo arrancar JACK" - -#~ msgid "" -#~ "There are several possible reasons:\n" -#~ "\n" -#~ "1) You requested audio parameters that are not supported..\n" -#~ "2) JACK is running as another user.\n" -#~ "\n" -#~ "Please consider the possibilities, and perhaps try different parameters." -#~ msgstr "" -#~ "Hay varias razones posibles:\n" -#~ "\n" -#~ "1) Introduciste parámetros de audio no soportados.\n" -#~ "2) JACK se está ejecutándo desde otro usuario.\n" -#~ "\n" -#~ "Por favor, considera estas posibilidades antes de reiniciar" - -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "session names may not contain a '/' character" -#~ msgstr "" -#~ "Para asegurar la compatibilidad con varios sistemas\n" -#~ "los nombres de sesión no pueden contener el carácter '/'" - -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "session names may not contain a '\\' character" -#~ msgstr "" -#~ "Para asegurar la compatibilidad con varios sistemas\n" -#~ "los nombres de sesión no pueden contener el carácter '\\'" - -#~ msgid "Envelope Visible" -#~ msgstr "Envolvente visible" - -#~ msgid "" -#~ "This route cannot be frozen because it has more outputs than inputs. You " -#~ "can fix this by increasing the number of inputs." -#~ msgstr "" -#~ "Esta ruta no se puede congelar porque tiene más salidas que entradas. " -#~ "Puedes arreglarlo incrementando el número de entradas." - -#~ msgid "region gain envelope visible" -#~ msgstr "envolvente de ganancia de región visible" - -#~ msgid "" -#~ "Left-click to invert (phase reverse) all channels of this track. Right-" -#~ "click to show menu." -#~ msgstr "" -#~ "Clic izquierdo para invertir (inversión de fase) todos los canales de " -#~ "esta pista. Clic derecho para mostrar menú." - -#~ msgid "Page:" -#~ msgstr "Página" - -#~ msgid "Strict Linear" -#~ msgstr "Estrictamente lineal" - -#~ msgid "no style found for %1, using red" -#~ msgstr "No se encontró el estilo para %1, usando \"red\" (rojo)." - -#~ msgid "unknown style attribute %1 requested for color; using \"red\"" -#~ msgstr "" -#~ "Atributo de estilo desconocido (%1) para color; se usará \"red\" (rojo)." - -#~ msgid "Store this many lines: " -#~ msgstr "Almacenar este número de líneas:" - -#~ msgid "" -#~ "pre\n" -#~ "roll" -#~ msgstr "" -#~ "pre\n" -#~ "roll" - -#~ msgid "" -#~ "post\n" -#~ "roll" -#~ msgstr "" -#~ "post\n" -#~ "roll" - -#~ msgid "" -#~ "time\n" -#~ "master" -#~ msgstr "" -#~ "tiempo\n" -#~ "maestro" - -#~ msgid "AUDITION" -#~ msgstr "ESCUCHA" - -#~ msgid "SOLO" -#~ msgstr "SOLO" - -#~ msgid "%.1f kHz / %4.1f ms" -#~ msgstr "%.1f kHz / %4.1f ms" - -#~ msgid "% kHz / %4.1f ms" -#~ msgstr "% kHz / %4.1f ms" - -#~ msgid "DSP: %5.1f%%" -#~ msgstr "DSP: %5.1f%%" - -#~ msgid "Buffers p:%%% c:%%%" -#~ msgstr "Buffers p:%%% c:%%%" - -#~ msgid "Disk: 24hrs+" -#~ msgstr "Disco: 24hrs+" - -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "snapshot names may not contain a '\\' character" -#~ msgstr "" -#~ "Para asegurar la compatibilidad con varios sistemas\n" -#~ "los nombres de captura de sesión no pueden contener\n" -#~ "el carácter '\\'" - -#~ msgid "Sorry, MIDI Busses are not supported at this time." -#~ msgstr "Lo siento, los buses MIDI no están soportados de momento." - -#~ msgid "Does %1 control the time?" -#~ msgstr "¿Controla el tiempo %1?" - -#~ msgid "External" -#~ msgstr "Externo" - -#~ msgid "automation" -#~ msgstr "automatización" - -#~ msgid "Undo" -#~ msgstr "Deshacer" - -#~ msgid "Delete Unused" -#~ msgstr "Eliminar no usados" - -#~ msgid "Add Range Marker(s)" -#~ msgstr "Añadir marca/s de rango" - -#~ msgid "Sel" -#~ msgstr "Sel" - -#~ msgid "E" -#~ msgstr "E" - -#~ msgid "time stretch" -#~ msgstr "estirar tiempo" - -#~ msgid "Input channels:" -#~ msgstr "Canales de entrada:" - -#~ msgid "Output channels:" -#~ msgstr "Canales de salida:" - -#~ msgid "No devices found for driver \"%1\"" -#~ msgstr "No se encontraron dispositivos para el driver \"%1\"" - -#~ msgid "New From" -#~ msgstr "Nuevo desde" - -#~ msgid "Move tempo and meter changes" -#~ msgstr "Mover cambios de tempo y métrica" - -# se refiere a la tecla 'Option' -#~ msgid "Option-" -#~ msgstr "Opción-" - -# se refiere a la tecla 'shift', no traducir -#~ msgid "Shift-" -#~ msgstr "Shift-" - -#~ msgid "Control-" -#~ msgstr "Control-" - -#~ msgid "SCMS" -#~ msgstr "SCMS" - -#~ msgid "Set value to playhead" -#~ msgstr "Establecer valor según posición del cursor" - -#~ msgid "Jump to the end of this range" -#~ msgstr "Saltar al final de este rango" - -#~ msgid "Jump to the start of this range" -#~ msgstr "Saltar al inicio de este rango" - -#~ msgid "End time" -#~ msgstr "Tiempo final" - -#~ msgid "" -#~ "Button 1 to choose inputs from a port matrix, button 3 to select inputs " -#~ "from a menu" -#~ msgstr "" -#~ "Botón 1 para elegir entradas con una matriz de puertos, botón 3 para " -#~ "seleccionar entradas desde un menú" - -#~ msgid "" -#~ "Button 1 to choose outputs from a port matrix, button 3 to select inputs " -#~ "from a menu" -#~ msgstr "" -#~ "Botón 1 para elegir salidas con una matriz de puertos, botón 3 para " -#~ "seleccionar salidas desde un menú" - -#~ msgid "MUTE" -#~ msgstr "MUDO" - -#~ msgid "Exclusive" -#~ msgstr "Exclusivo" - -#~ msgid "Solo/Mute" -#~ msgstr "Solo/Mudo" - -#~ msgid "Dim Cut" -#~ msgstr "Atenuar corte" - -#~ msgid "New send" -#~ msgstr "Nuevo envío" - -#~ msgid "New Send ..." -#~ msgstr "Nuevo envío" - -#~ msgid "Activate all" -#~ msgstr "Activar todos" - -#~ msgid "Controls..." -#~ msgstr "Controles..." - -#~ msgid "post-fader but before post-fader processors" -#~ msgstr "post-fader pero antes de procesadores post-fader" - -#~ msgid "A track already exists with that name" -#~ msgstr "Ya existe una pista con este nombre" - -#~ msgid "r" -#~ msgstr "r" - -#~ msgid "Layering model" -#~ msgstr "Modelo de capas" - -#~ msgid "later is higher" -#~ msgstr "posterior encima" - -#~ msgid "most recently moved or added is higher" -#~ msgstr "movida o añadida más recientemente encima" - -#~ msgid "most recently added is higher" -#~ msgstr "añadida más recientemente encima" - -#~ msgid "MIDI Note Overlaps" -#~ msgstr "Superposición de notas MIDI" - -#~ msgid "Password:" -#~ msgstr "Contraseña:" - -#~ msgid "Cancelling.." -#~ msgstr "Cancelando..." - -#~ msgid "" -#~ "(You can change this preference at any time, via the " -#~ "Preferences dialog)" -#~ msgstr "" -#~ "(Puuedes cambiar esta opcióm más tarde a través del diálogo de " -#~ "preferencias)" - -#~ msgid "second (2)" -#~ msgstr "blanca (2)" - -#~ msgid "eighth (8)" -#~ msgstr "corchea (8)" - -#~ msgid "garbaged note type entry (%1)" -#~ msgstr "entrada de tipo de nota corrupta (%1)" - -#~ msgid "unknown track height name \"%1\" in XML GUI information" -#~ msgstr "" -#~ "Altura de pista desconocida \"%1\" en el archivo XML de información de la " -#~ "interfaz gráfica" - -#~ msgid "Off" -#~ msgstr "Apagado" - -#~ msgid "Smaller" -#~ msgstr "Menor" - -#~ msgid "Bounce" -#~ msgstr "Rebotar" - -#~ msgid "Default Channel" -#~ msgstr "Canal por defecto" - -#~ msgid "session" -#~ msgstr "sesión" - -#~ msgid "snapshot" -#~ msgstr "captura" - -#~ msgid "" -#~ "Welcome to %1.\n" -#~ "\n" -#~ "The program will take a bit longer to start up\n" -#~ "while the system fonts are checked.\n" -#~ "\n" -#~ "This will only be done once, and you will\n" -#~ "not see this message again\n" -#~ msgstr "" -#~ "Bienvenido a %1inglés espalo.\n" -#~ "\n" -#~ "El programa tardará un poco más en arrancar\n" -#~ "mientras se revisan las tipografías del sistema.\n" -#~ "\n" -#~ "Esto sólo se realizará una vez\n" -#~ "y este mensaje no volverá a aparecer.\n" - -#, fuzzy -#~ msgid "%1 compound-%2 (%3)" -#~ msgstr "%1: %2 (a %3)" - -#~ msgid "quit" -#~ msgstr "salir" - -#~ msgid "fixed time region copy" -#~ msgstr "copiar región manteniendo posición en el tiempo" diff --git a/gtk2_ardour/po/fr.po b/gtk2_ardour/po/fr.po index 60560cfa0b..de098d69e3 100644 --- a/gtk2_ardour/po/fr.po +++ b/gtk2_ardour/po/fr.po @@ -259,26 +259,6 @@ msgstr "" "\tMartin Blanchard\n" "\tRomain Arnaud \n" -#: about.cc:183 -#, fuzzy -msgid "" -"German:\n" -"\tKarsten Petersen \n" -"\tSebastian Arnold \n" -"\tRobert Schwede \n" -"\tBenjamin Scherrer \n" -"\tEdgar Aichinger \n" -"\tRichard Oax \n" -"\tRobin Gloster \n" -msgstr "" -"Allemand:\n" -"\tKarsten Petersen \n" -"\tSebastian Arnold \n" -"\tRobert Schwede \n" -"\tBenjamin Scherrer \n" -"\tEdgar Aichinger \n" -"\tRichard Oax \n" - #: about.cc:190 msgid "" "Italian:\n" @@ -595,39 +575,14 @@ msgstr "Source du signal" msgid "Selected ranges" msgstr "Intervalles sélectionnés" -#: analysis_window.cc:48 -#, fuzzy -msgid "Selected regions" -msgstr "régions sélectionnées" - #: analysis_window.cc:50 msgid "Display model" msgstr "Modèle d'affichage" -#: analysis_window.cc:51 -#, fuzzy -msgid "Composite graphs for each track" -msgstr "graphique composite pour chaque piste" - -#: analysis_window.cc:52 -#, fuzzy -msgid "Composite graph of all tracks" -msgstr "graphique composite de toutes les pistes" - -#: analysis_window.cc:54 -#, fuzzy -msgid "Show frequency power range" -msgstr "Afficher la gamme d'amplitude des fréquences" - #: analysis_window.cc:55 msgid "Normalize values" msgstr "Normaliser" -#: analysis_window.cc:59 -#, fuzzy -msgid "FFT analysis window" -msgstr "fenêtre d'analyse FFT" - #: analysis_window.cc:60 editor.cc:1856 msgid "Spectral Analysis" msgstr "Analyse du spectre" @@ -642,11 +597,6 @@ msgstr "Piste" msgid "Show" msgstr "Afficher" -#: analysis_window.cc:135 -#, fuzzy -msgid "Re-analyze data" -msgstr "Analyser les données" - #: ardour_button.cc:704 msgid "button cannot watch state of non-existing Controllable\n" msgstr "Le bouton ne peut pas surveiller un élement Controllable inexistant\n" @@ -679,11 +629,6 @@ msgstr "Raccourcis clavier" msgid "Preferences" msgstr "Préférences" -#: ardour_ui.cc:191 ardour_ui.cc:196 -#, fuzzy -msgid "Add Tracks/Busses" -msgstr "Pistes / Bus" - #: ardour_ui.cc:192 msgid "About" msgstr "À propos..." @@ -708,16 +653,6 @@ msgstr "Gestionnaire de paquets" msgid "Big Clock" msgstr "Grande horloge" -#: ardour_ui.cc:199 -#, fuzzy -msgid "Audio Connections" -msgstr "Gestionnaire de connexion audio" - -#: ardour_ui.cc:200 -#, fuzzy -msgid "MIDI Connections" -msgstr "Connexions en entrée" - #: ardour_ui.cc:202 msgid "Errors" msgstr "Erreurs" @@ -730,22 +665,6 @@ msgstr "Démarrage du moteur audio" msgid "%1 is ready for use" msgstr "%1 est prêt à être utilisé." -#: ardour_ui.cc:806 -#, fuzzy -msgid "" -"WARNING: Your system has a limit for maximum amount of locked memory. This " -"might cause %1 to run out of memory before your system runs out of memory. \n" -"\n" -"You can view the memory limit with 'ulimit -l', and it is normally " -"controlled by %2" -msgstr "" -"AVERTISSEMENT: Votre système possède une limite pour la quantité maximale de " -"mémoire verrouillée. Ceci peut empêcher %1 d'accéder à toute la mémoire " -"disponible sur votre système.\n" -"\n" -"Vous pouvez connaître la limite actuelle avec la commande \"ulimit -l\". " -"Celle-ci est habituellement contrôlée par le fichier %2." - #: ardour_ui.cc:823 msgid "Do not show this window again" msgstr "Ne plus afficher cette fenêtre" @@ -944,13 +863,6 @@ msgstr "Sessions %1" msgid "You cannot add a track without a session already loaded." msgstr "Vous ne pouvez pas ajouter une piste sans avoir ouvert une session." -#: ardour_ui.cc:1548 -#, fuzzy -msgid "could not create %1 new mixed track" -msgid_plural "could not create %1 new mixed tracks" -msgstr[0] "ne peut créer %1 nouvelle piste mixée (mixte)" -msgstr[1] "ne peut créer %1 nouvelles pistes mixées" - #: ardour_ui.cc:1554 ardour_ui.cc:1615 msgid "" "There are insufficient JACK ports available\n" @@ -1234,11 +1146,6 @@ msgstr "Fenêtre de nettoyage" msgid "Cleaned Files" msgstr "Fichiers nettoyés" -#: ardour_ui.cc:3245 -#, fuzzy -msgid "deleted file" -msgstr "Fichier effacé" - #: ardour_ui.cc:3337 msgid "" "Video-Server was not launched by Ardour. The request to stop it is ignored." @@ -1253,11 +1160,6 @@ msgstr "Arrêter le Serveur-Vidéo" msgid "Do you really want to stop the Video Server?" msgstr "Voulez-vous vraiment arreter le Serveur-Vidéo?" -#: ardour_ui.cc:3345 -#, fuzzy -msgid "Yes, Stop It" -msgstr "Oui, la détruire" - #: ardour_ui.cc:3371 msgid "The Video Server is already started." msgstr "Le Serveur-Vidéo est déjà démarré" @@ -1407,26 +1309,6 @@ msgid "" "From now on, use the -2000 version with older versions of %3" msgstr "" -#: ardour_ui2.cc:72 -#, fuzzy -msgid "UI: cannot setup editor" -msgstr "IHM: impossible d'initialiser l'éditeur" - -#: ardour_ui2.cc:77 -#, fuzzy -msgid "UI: cannot setup mixer" -msgstr "IHM: impossible d'initialiser la console de mixage" - -#: ardour_ui2.cc:82 -#, fuzzy -msgid "UI: cannot setup meterbridge" -msgstr "IHM: impossible d'initialiser la console de mixage" - -#: ardour_ui2.cc:130 -#, fuzzy -msgid "Play from playhead" -msgstr "Démarrer la lecture" - #: ardour_ui2.cc:131 msgid "Stop playback" msgstr "Stopper la lecture" @@ -1435,35 +1317,10 @@ msgstr "Stopper la lecture" msgid "Toggle record" msgstr "Activer/désactiver l'enregistrement" -#: ardour_ui2.cc:133 -#, fuzzy -msgid "Play range/selection" -msgstr "Lire la sélection" - -#: ardour_ui2.cc:134 -#, fuzzy -msgid "Go to start of session" -msgstr "Début de la session" - -#: ardour_ui2.cc:135 -#, fuzzy -msgid "Go to end of session" -msgstr "Fin de la session" - #: ardour_ui2.cc:136 msgid "Play loop range" msgstr "Lire la boucle" -#: ardour_ui2.cc:137 -#, fuzzy -msgid "" -"MIDI Panic\n" -"Send note off and reset controller messages on all MIDI channels" -msgstr "" -"Panique MIDI\n" -"Envoyer la commande \"fin de toutes les notes\" et réinitialiser les " -"messages de contrôle sur tous les canaux MIDI" - #: ardour_ui2.cc:138 msgid "Return to last playback start when stopped" msgstr "Revenir en début de lecture lors de l'arrêt" @@ -1528,11 +1385,6 @@ msgstr "" "Esc annule; Entrée: confirme; Ajouter '+' ou '-' pourque " "la valeur s'ajoute (ou s'enlève) de la valeur originelle.\n" -#: ardour_ui2.cc:147 -#, fuzzy -msgid "Reset Level Meter" -msgstr "Réinitialiser l'enveloppe" - #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "[ERREUR]: " @@ -1650,11 +1502,6 @@ msgstr "Taux de chute" msgid "Hold Time" msgstr "Temps de maintien" -#: ardour_ui_ed.cc:119 -#, fuzzy -msgid "Denormal Handling" -msgstr "échantillons dénormalisés" - #: ardour_ui_ed.cc:123 route_time_axis.cc:1489 msgid "New..." msgstr "Nouvelle session..." @@ -1675,16 +1522,6 @@ msgstr "Fermer" msgid "Add Track or Bus..." msgstr "Ajouter une piste ou un bus..." -#: ardour_ui_ed.cc:135 -#, fuzzy -msgid "Open Video" -msgstr "Ouvrir une session" - -#: ardour_ui_ed.cc:138 -#, fuzzy -msgid "Remove Video" -msgstr "Enlever le champ" - #: ardour_ui_ed.cc:141 msgid "Export To Video File" msgstr "Exporter vers un fichier video..." @@ -1722,11 +1559,6 @@ msgstr "Importer les méta-données" msgid "Export To Audio File(s)..." msgstr "Exporter vers un fichier audio..." -#: ardour_ui_ed.cc:172 -#, fuzzy -msgid "Stem export..." -msgstr "Exporter" - #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 #: export_video_dialog.cc:72 msgid "Export" @@ -1773,16 +1605,6 @@ msgstr "Afficher les barres d'outils" msgid "Window|Mixer" msgstr "Console de mixage" -#: ardour_ui_ed.cc:231 -#, fuzzy -msgid "Toggle Editor+Mixer" -msgstr "Commuter le mode d'édition" - -#: ardour_ui_ed.cc:232 meterbridge.cc:230 meterbridge.cc:236 -#, fuzzy -msgid "Window|Meterbridge" -msgstr "Console de mixage" - #: ardour_ui_ed.cc:234 midi_tracer.cc:39 msgid "MIDI Tracer" msgstr "Activité MIDI" @@ -2020,25 +1842,10 @@ msgstr "Espace disque" msgid "DSP" msgstr "DSP" -#: ardour_ui_ed.cc:563 -#, fuzzy -msgid "Buffers" -msgstr "taille du tampon" - #: ardour_ui_ed.cc:564 msgid "JACK Sampling Rate and Latency" msgstr "Taux d'échantillonnage et latence de JACK" -#: ardour_ui_ed.cc:565 -#, fuzzy -msgid "Timecode Format" -msgstr "Trames Timecode" - -#: ardour_ui_ed.cc:566 -#, fuzzy -msgid "File Format" -msgstr "Format de fichier" - #: ardour_ui_options.cc:65 msgid "" "It is not possible to use JACK as the the sync source\n" @@ -2104,11 +1911,6 @@ msgstr "Mesures:Temps" msgid "Minutes:Seconds" msgstr "Minutes:Secondes" -#: audio_clock.cc:2054 -#, fuzzy -msgid "Set From Playhead" -msgstr "placer la tête de lecture" - #: audio_clock.cc:2055 msgid "Locate to This Time" msgstr "Se placer ici" @@ -2221,11 +2023,6 @@ msgstr "Effacer" msgid "State" msgstr "État" -#: automation_time_axis.cc:531 -#, fuzzy -msgid "Discrete" -msgstr "Déconnecter" - #: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 #: editor.cc:1526 export_format_dialog.cc:476 msgid "Linear" @@ -2244,11 +2041,6 @@ msgstr "Désassocier" msgid "Edit Bundle" msgstr "Raccourci pour l'édition: utiliser la touche" -#: bundle_manager.cc:200 -#, fuzzy -msgid "Direction:" -msgstr "Sélection" - #: bundle_manager.cc:205 bundle_manager.cc:209 mixer_strip.cc:158 #: mixer_strip.cc:2127 msgid "Input" @@ -2379,11 +2171,6 @@ msgstr "couleur RGBA remplissage" msgid "color of fill" msgstr "couleur du remplissage" -#: configinfo.cc:28 -#, fuzzy -msgid "Build Configuration" -msgstr "Configuration" - #: control_point_dialog.cc:33 msgid "Control point" msgstr "Point de contrôle" @@ -2396,16 +2183,6 @@ msgstr "Valeur de note:" msgid "Note" msgstr "Note" -#: edit_note_dialog.cc:45 -#, fuzzy -msgid "Set selected notes to this channel" -msgstr "Empliler les notes pour créer un accord" - -#: edit_note_dialog.cc:46 -#, fuzzy -msgid "Set selected notes to this pitch" -msgstr "Empliler les notes pour créer un accord" - #: edit_note_dialog.cc:47 msgid "Set selected notes to this velocity" msgstr "" @@ -2423,20 +2200,10 @@ msgstr "" msgid "Channel" msgstr "Canal" -#: edit_note_dialog.cc:68 -#, fuzzy -msgid "Pitch" -msgstr "Pitch shift" - #: edit_note_dialog.cc:78 step_entry.cc:407 msgid "Velocity" msgstr "Vélocité" -#: edit_note_dialog.cc:88 patch_change_dialog.cc:67 -#, fuzzy -msgid "Time" -msgstr "Timecode" - #: edit_note_dialog.cc:98 editor_regions.cc:114 #: export_timespan_selector.cc:359 export_timespan_selector.cc:421 #: location_ui.cc:317 midi_list_editor.cc:114 time_info_box.cc:105 @@ -2676,11 +2443,6 @@ msgstr "Pistes/Bus" msgid "Snapshots" msgstr "Clichés" -#: editor.cc:545 -#, fuzzy -msgid "Track & Bus Groups" -msgstr "Pistes/Bus" - #: editor.cc:546 msgid "Ranges & Marks" msgstr "Intervalles et repères" @@ -2798,11 +2560,6 @@ msgstr "Sélectionner tout dans l'intervalle" msgid "Set Loop from Range" msgstr "Créer une boucle à partir de l'intervalle" -#: editor.cc:1897 -#, fuzzy -msgid "Set Punch from Range" -msgstr "Punch in→out" - #: editor.cc:1900 msgid "Add Range Markers" msgstr "Ajoute des repères d'intervalle" @@ -2811,11 +2568,6 @@ msgstr "Ajoute des repères d'intervalle" msgid "Crop Region to Range" msgstr "Raccourcir la région à l'intervalle" -#: editor.cc:1904 -#, fuzzy -msgid "Fill Range with Region" -msgstr "Remplir avec la région choisie dans la liste" - #: editor.cc:1905 editor_actions.cc:289 msgid "Duplicate Range" msgstr "Dupliquer l'intervalle" @@ -2836,11 +2588,6 @@ msgstr "" msgid "Bounce Range to Region List With Processing" msgstr "" -#: editor.cc:1912 editor_markers.cc:908 -#, fuzzy -msgid "Export Range..." -msgstr "Exporter la zone de sélection..." - #: editor.cc:1927 editor.cc:2008 editor_actions.cc:281 msgid "Play From Edit Point" msgstr "Lire depuis le point d'édition" @@ -2874,16 +2621,6 @@ msgstr "Inverser la sélection dans la piste" msgid "Invert Selection" msgstr "Inverser la sélection" -#: editor.cc:1946 -#, fuzzy -msgid "Set Range to Loop Range" -msgstr "Créer l'intervalle de boucle" - -#: editor.cc:1947 -#, fuzzy -msgid "Set Range to Punch Range" -msgstr "Créer l'intervalle de punch in/out" - #: editor.cc:1949 editor.cc:2023 editor_actions.cc:188 msgid "Select All After Edit Point" msgstr "Tout après le point d'édition" @@ -2904,11 +2641,6 @@ msgstr "Tout avant la tête de lecture" msgid "Select All Between Playhead and Edit Point" msgstr "Sélectionner tout entre la tête de lecture et le point d'édition" -#: editor.cc:1954 -#, fuzzy -msgid "Select All Within Playhead and Edit Point" -msgstr "Tout à l'intérieur entre tête de lecture et point d'édit." - #: editor.cc:1955 msgid "Select Range Between Playhead and Edit Point" msgstr "Selectionner de la tête de lecture jusqu'au point d'édition" @@ -2945,16 +2677,6 @@ msgstr "Insérer la région sélectionnée" msgid "Insert Existing Media" msgstr "Insérer des fichiers audio externes" -#: editor.cc:1989 editor.cc:2045 -#, fuzzy -msgid "Nudge Entire Track Later" -msgstr "Décaler toute la piste à droite" - -#: editor.cc:1990 editor.cc:2046 -#, fuzzy -msgid "Nudge Track After Edit Point Later" -msgstr "Décaler la piste à droite après le point d'édition" - #: editor.cc:1991 editor.cc:2047 msgid "Nudge Entire Track Earlier" msgstr "Décaler toute la piste à gauche" @@ -3012,11 +2734,6 @@ msgstr "" "un groupe.\n" "Clic droit pour les autres options." -#: editor.cc:3080 -#, fuzzy -msgid "Nudge Region/Selection Later" -msgstr "Décaler vers la droite (région ou sélection)" - #: editor.cc:3081 msgid "Nudge Region/Selection Earlier" msgstr "Décaler vers la gauche (région ou sélection)" @@ -3320,20 +3037,10 @@ msgstr "Barre latérale des onglets" msgid "Playhead to Next Region Boundary" msgstr "Tête de lecture vers limite de région suiv." -#: editor_actions.cc:154 -#, fuzzy -msgid "Playhead to Next Region Boundary (No Track Selection)" -msgstr "Tête de lecture vers limite de région suiv." - #: editor_actions.cc:155 msgid "Playhead to Previous Region Boundary" msgstr "Tête de lecture vers limite de région préc." -#: editor_actions.cc:156 -#, fuzzy -msgid "Playhead to Previous Region Boundary (No Track Selection)" -msgstr "Tête de lecture vers limite de région préc." - #: editor_actions.cc:158 msgid "Playhead to Next Region Start" msgstr "début de la région suivante" @@ -3342,11 +3049,6 @@ msgstr "début de la région suivante" msgid "Playhead to Next Region End" msgstr "Fin de la région suivante" -#: editor_actions.cc:160 -#, fuzzy -msgid "Playhead to Next Region Sync" -msgstr "Synchro de la région suivante" - #: editor_actions.cc:162 msgid "Playhead to Previous Region Start" msgstr "début de la région précédente" @@ -3355,71 +3057,6 @@ msgstr "début de la région précédente" msgid "Playhead to Previous Region End" msgstr "fin de la région précédente" -#: editor_actions.cc:164 -#, fuzzy -msgid "Playhead to Previous Region Sync" -msgstr "Synchro de la région précédente" - -#: editor_actions.cc:166 -#, fuzzy -msgid "To Next Region Boundary" -msgstr "vers limite de région suiv." - -#: editor_actions.cc:167 -#, fuzzy -msgid "To Next Region Boundary (No Track Selection)" -msgstr "vers limite de région suiv." - -#: editor_actions.cc:168 -#, fuzzy -msgid "To Previous Region Boundary" -msgstr "vers limite de région préc." - -#: editor_actions.cc:169 -#, fuzzy -msgid "To Previous Region Boundary (No Track Selection)" -msgstr "vers limite de région préc." - -#: editor_actions.cc:171 -#, fuzzy -msgid "To Next Region Start" -msgstr "vers début de région suivante" - -#: editor_actions.cc:172 -#, fuzzy -msgid "To Next Region End" -msgstr "vers fin de région suivante" - -#: editor_actions.cc:173 -#, fuzzy -msgid "To Next Region Sync" -msgstr "vers sync. de la région suivante" - -#: editor_actions.cc:175 -#, fuzzy -msgid "To Previous Region Start" -msgstr "vers début de la région précédente" - -#: editor_actions.cc:176 -#, fuzzy -msgid "To Previous Region End" -msgstr "vers fin de la région précédente" - -#: editor_actions.cc:177 -#, fuzzy -msgid "To Previous Region Sync" -msgstr "vers sync. de la région précédente" - -#: editor_actions.cc:179 -#, fuzzy -msgid "To Range Start" -msgstr "vers début de région" - -#: editor_actions.cc:180 -#, fuzzy -msgid "To Range End" -msgstr "vers fin de région" - #: editor_actions.cc:182 msgid "Playhead to Range Start" msgstr "début de la région" @@ -3440,11 +3077,6 @@ msgstr "Sélectionner tout ce qui chevauche avec l'intervalle" msgid "Select All Inside Edit Range" msgstr "Sélectionner tout à l'intérieur de l'intervalle" -#: editor_actions.cc:194 -#, fuzzy -msgid "Select Edit Range" -msgstr "Définit la zone de sélection" - #: editor_actions.cc:196 msgid "Select All in Punch Range" msgstr "Sélectionner tout dans l'intervalle de punch in/out" @@ -3465,21 +3097,6 @@ msgstr "Sélectionner piste/bus précédent" msgid "Toggle Record Enable" msgstr "Armer/Désarmer" -#: editor_actions.cc:204 -#, fuzzy -msgid "Toggle Solo" -msgstr "Isoler le Solo" - -#: editor_actions.cc:206 -#, fuzzy -msgid "Toggle Mute" -msgstr "Activer/Désactiver" - -#: editor_actions.cc:208 -#, fuzzy -msgid "Toggle Solo Isolate" -msgstr "Isoler le solo" - #: editor_actions.cc:213 msgid "Save View %1" msgstr "Enregistrer la vue %1" @@ -3492,11 +3109,6 @@ msgstr "Charger la vue %1" msgid "Locate to Mark %1" msgstr "Se placer au repère %1" -#: editor_actions.cc:229 -#, fuzzy -msgid "Jump to Next Mark" -msgstr "Aller à ce repère" - #: editor_actions.cc:230 msgid "Jump to Previous Mark" msgstr "Sauter à la marque précédente" @@ -3505,11 +3117,6 @@ msgstr "Sauter à la marque précédente" msgid "Add Mark from Playhead" msgstr "créer un repère à la tête de lecture" -#: editor_actions.cc:233 -#, fuzzy -msgid "Nudge Next Later" -msgstr "Décaler suivant vers la droite" - #: editor_actions.cc:234 msgid "Nudge Next Earlier" msgstr "Décaler suivant vers la gauche" @@ -3522,16 +3129,6 @@ msgstr "Décaler la tête de lecture vers la droite" msgid "Nudge Playhead Backward" msgstr "Décaler la tête de lecture vers la gauche" -#: editor_actions.cc:238 -#, fuzzy -msgid "Playhead To Next Grid" -msgstr "fin de la région suivante" - -#: editor_actions.cc:239 -#, fuzzy -msgid "Playhead To Previous Grid" -msgstr "fin de la région précédente" - #: editor_actions.cc:244 msgid "Zoom to Region" msgstr "Montrer toute la session" @@ -3588,16 +3185,6 @@ msgstr "Défiler en avant" msgid "Center Playhead" msgstr "Centrer sur la tête de lecture" -#: editor_actions.cc:268 -#, fuzzy -msgid "Center Edit Point" -msgstr "Placer le point d'édition" - -#: editor_actions.cc:270 -#, fuzzy -msgid "Playhead Forward" -msgstr "tête de lecture en avant" - #: editor_actions.cc:271 msgid "Playhead Backward" msgstr "tête de lecture en arrière" @@ -3638,11 +3225,6 @@ msgstr "Placer sur le curseur d'édition" msgid "Active Marker to Mouse" msgstr "Déplacer le Repère actif vers la souris" -#: editor_actions.cc:294 -#, fuzzy -msgid "Export Audio" -msgstr "Exporter la région" - #: editor_actions.cc:295 export_dialog.cc:406 msgid "Export Range" msgstr "Exporter la zone de sélection" @@ -3659,20 +3241,10 @@ msgstr "Séparer suivant la boucle" msgid "Crop" msgstr "Découper" -#: editor_actions.cc:315 -#, fuzzy -msgid "Set Tempo from Edit Range = Bar" -msgstr "Définir le tempo = zone de sélection" - #: editor_actions.cc:317 msgid "Log" msgstr "Log" -#: editor_actions.cc:320 -#, fuzzy -msgid "Move Later to Transient" -msgstr "Avancer à l'éphémère suivant" - #: editor_actions.cc:321 msgid "Move Earlier to Transient" msgstr "Reculer à l'éphémère précédant" @@ -3697,16 +3269,6 @@ msgstr "Suivre la tête de lecture" msgid "Remove Last Capture" msgstr "Détruire le dernier enregistr." -#: editor_actions.cc:360 -#, fuzzy -msgid "Stationary Playhead" -msgstr "vers la tête de lecture" - -#: editor_actions.cc:362 insert_time_dialog.cc:32 -#, fuzzy -msgid "Insert Time" -msgstr "Insérer une région" - #: editor_actions.cc:365 msgid "Toggle Active" msgstr "Activer/Désactiver" @@ -3761,11 +3323,6 @@ msgstr "la tête de lecture" msgid "Zoom Focus Mouse" msgstr "la souris" -#: editor_actions.cc:402 -#, fuzzy -msgid "Zoom Focus Edit Point" -msgstr "le curseur d'édition" - #: editor_actions.cc:404 msgid "Next Zoom Focus" msgstr "Option suivante pour Zoomer vers" @@ -3786,11 +3343,6 @@ msgstr "outil d'objet" msgid "Range Tool" msgstr "outil de zone de sélection" -#: editor_actions.cc:429 -#, fuzzy -msgid "Note Drawing Tool" -msgstr "outil de gain" - #: editor_actions.cc:435 msgid "Gain Tool" msgstr "outil de gain" @@ -3799,16 +3351,6 @@ msgstr "outil de gain" msgid "Zoom Tool" msgstr "outil de zoom" -#: editor_actions.cc:447 -#, fuzzy -msgid "Audition Tool" -msgstr "écoute" - -#: editor_actions.cc:453 -#, fuzzy -msgid "Time FX Tool" -msgstr "outil d'étirement/contraction" - #: editor_actions.cc:459 msgid "Step Mouse Mode" msgstr "" @@ -3821,11 +3363,6 @@ msgstr "Éditer le MIDI" msgid "Change Edit Point" msgstr "Changer le point d'édition" -#: editor_actions.cc:473 -#, fuzzy -msgid "Change Edit Point Including Marker" -msgstr "Changer le point d'édition (avec repère)" - #: editor_actions.cc:475 msgid "Splice" msgstr "Collant" @@ -3895,11 +3432,6 @@ msgstr "Aligner sur les secondes" msgid "Snap to Minutes" msgstr "Aligner sur les minutes" -#: editor_actions.cc:505 -#, fuzzy -msgid "Snap to One Twenty Eighths" -msgstr "Aligner sur un 28ème de temps" - #: editor_actions.cc:506 msgid "Snap to Sixty Fourths" msgstr "Aligner sur un 64ème de temps" @@ -3996,48 +3528,18 @@ msgstr "Aligner sur limite de région" msgid "Show Marker Lines" msgstr "Montrer les barres de repères" -#: editor_actions.cc:541 -#, fuzzy -msgid "Loop/Punch" -msgstr "boucle et punch-in/out" - #: editor_actions.cc:545 msgid "Min:Sec" msgstr "Minutes:Secondes" -#: editor_actions.cc:547 editor_actions.cc:550 -#, fuzzy -msgid "Video Monitor" -msgstr "Afficher le monitoring vidéo" - #: editor_actions.cc:549 rc_option_editor.cc:1842 msgid "Video" msgstr "" -#: editor_actions.cc:552 -#, fuzzy -msgid "Always on Top" -msgstr "Envoyer à l'avant" - -#: editor_actions.cc:554 -#, fuzzy -msgid "Frame number" -msgstr "Numéro de la piste" - -#: editor_actions.cc:555 -#, fuzzy -msgid "Timecode Background" -msgstr "Secondes Timecode" - #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" -#: editor_actions.cc:557 -#, fuzzy -msgid "Letterbox" -msgstr "bonne" - #: editor_actions.cc:558 msgid "Original Size" msgstr "" @@ -4144,11 +3646,6 @@ msgstr "Afficher le logo" msgid "Toggle MIDI Input Active for Editor-Selected Tracks/Busses" msgstr "" -#: editor_actions.cc:696 -#, fuzzy -msgid "Loaded editor bindings from %1" -msgstr "Chargement des menus depuis %1" - #: editor_actions.cc:698 msgid "Could not find editor.bindings in search path %1" msgstr "" @@ -4247,31 +3744,6 @@ msgstr "Remplir la piste" msgid "Set Loop Range" msgstr "Boucle" -#: editor_actions.cc:1816 -#, fuzzy -msgid "Set Punch" -msgstr "Punch in→out" - -#: editor_actions.cc:1820 -#, fuzzy -msgid "Add Single Range Marker" -msgstr "Ajoute 1 repère d'intervalle" - -#: editor_actions.cc:1825 -#, fuzzy -msgid "Add Range Marker Per Region" -msgstr "Ajoute des repères d'intervalle par région" - -#: editor_actions.cc:1829 -#, fuzzy -msgid "Snap Position To Grid" -msgstr "Aligner sur la grille" - -#: editor_actions.cc:1832 -#, fuzzy -msgid "Close Gaps" -msgstr "Fermer" - #: editor_actions.cc:1835 msgid "Rhythm Ferret..." msgstr "Fureteur de rythme..." @@ -4292,21 +3764,6 @@ msgstr "Définir la durée de montée" msgid "Set Fade Out Length" msgstr "Définir la durée de descente" -#: editor_actions.cc:1850 -#, fuzzy -msgid "Set Tempo from Region = Bar" -msgstr "Définir le tempo = région" - -#: editor_actions.cc:1855 -#, fuzzy -msgid "Split at Percussion Onsets" -msgstr "Découper les régions au début des percussions" - -#: editor_actions.cc:1860 -#, fuzzy -msgid "List Editor..." -msgstr "Options..." - #: editor_actions.cc:1863 msgid "Properties..." msgstr "Propriétés..." @@ -4343,11 +3800,6 @@ msgstr "Réinitialiser le gain" msgid "Envelope Active" msgstr "Enveloppe Active" -#: editor_actions.cc:1885 -#, fuzzy -msgid "Quantize..." -msgstr "Quantiser" - #: editor_actions.cc:1886 editor_actions.cc:1887 msgid "Insert Patch Change..." msgstr "" @@ -4364,20 +3816,10 @@ msgstr "Supprimer le silence..." msgid "Set Range Selection" msgstr "Choisir intervalle depuis la région" -#: editor_actions.cc:1892 -#, fuzzy -msgid "Nudge Later" -msgstr "Décaler vers la droite" - #: editor_actions.cc:1893 msgid "Nudge Earlier" msgstr "Décaler vers la gauche" -#: editor_actions.cc:1898 -#, fuzzy -msgid "Nudge Later by Capture Offset" -msgstr "Décaler de l'offset de capture vers la droite" - #: editor_actions.cc:1905 msgid "Nudge Earlier by Capture Offset" msgstr "Décaler de l'offset de capture vers la gauche" @@ -4394,21 +3836,6 @@ msgstr "Rogner aux points de punch-in/out" msgid "Trim to Previous" msgstr "Rogner aux précédent" -#: editor_actions.cc:1913 -#, fuzzy -msgid "Trim to Next" -msgstr "Rogner à la région suivante" - -#: editor_actions.cc:1920 -#, fuzzy -msgid "Insert Region From Region List" -msgstr "Convertir en région (vers la liste des régions)" - -#: editor_actions.cc:1926 -#, fuzzy -msgid "Set Sync Position" -msgstr "Placer la synchro de région" - #: editor_actions.cc:1927 msgid "Place Transient" msgstr "" @@ -4417,46 +3844,6 @@ msgstr "" msgid "Split" msgstr "Scinder" -#: editor_actions.cc:1929 -#, fuzzy -msgid "Trim Start at Edit Point" -msgstr "Rogner le début jusqu'au point d'édition" - -#: editor_actions.cc:1930 -#, fuzzy -msgid "Trim End at Edit Point" -msgstr "Rogner la fin jusqu'au point d'édition" - -#: editor_actions.cc:1935 -#, fuzzy -msgid "Align Start" -msgstr "aligner le début des régions" - -#: editor_actions.cc:1942 -#, fuzzy -msgid "Align Start Relative" -msgstr "aligner relativement le début des régions" - -#: editor_actions.cc:1946 -#, fuzzy -msgid "Align End" -msgstr "Aligner" - -#: editor_actions.cc:1951 -#, fuzzy -msgid "Align End Relative" -msgstr "Aligner relativement" - -#: editor_actions.cc:1958 -#, fuzzy -msgid "Align Sync" -msgstr "aligner les synchro des régions" - -#: editor_actions.cc:1965 -#, fuzzy -msgid "Align Sync Relative" -msgstr "Aligner relativement" - #: editor_actions.cc:1969 editor_actions.cc:1972 msgid "Choose Top..." msgstr "" @@ -4529,11 +3916,6 @@ msgstr "Lier quand même" msgid "fixed time region drag" msgstr "Déplacement vertical de région" -#: editor_drag.cc:1700 -#, fuzzy -msgid "Video Start:" -msgstr "Mike Start" - #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -4574,11 +3956,6 @@ msgstr "déplacer le repère" msgid "An error occurred while executing time stretch operation" msgstr "" -#: editor_drag.cc:4011 -#, fuzzy -msgid "programming_error: %1" -msgstr "programming error: %1" - #: editor_drag.cc:4081 editor_markers.cc:680 msgid "new range marker" msgstr "nouvel intervalle" @@ -4587,26 +3964,6 @@ msgstr "nouvel intervalle" msgid "rubberband selection" msgstr "sélection élastique" -#: editor_route_groups.cc:66 -#, fuzzy -msgid "No Selection = All Tracks?" -msgstr "Sélectionner tout dans la piste" - -#: editor_route_groups.cc:95 -#, fuzzy -msgid "Col" -msgstr "Couleur" - -#: editor_route_groups.cc:95 -#, fuzzy -msgid "Group Tab Color" -msgstr "Couleur de la piste" - -#: editor_route_groups.cc:96 -#, fuzzy -msgid "Name of Group" -msgstr "Aucun groupe" - #: editor_route_groups.cc:97 editor_routes.cc:203 msgid "V" msgstr "V" @@ -4615,29 +3972,14 @@ msgstr "V" msgid "Group is visible?" msgstr "Groupe est visible?" -#: editor_route_groups.cc:98 -#, fuzzy -msgid "On" -msgstr "O" - #: editor_route_groups.cc:98 msgid "Group is enabled?" msgstr "" -#: editor_route_groups.cc:99 -#, fuzzy -msgid "group|G" -msgstr "Aucun groupe" - #: editor_route_groups.cc:99 msgid "Sharing Gain?" msgstr "" -#: editor_route_groups.cc:100 -#, fuzzy -msgid "relative|Rel" -msgstr "Relatif" - #: editor_route_groups.cc:100 msgid "Relative Gain Changes?" msgstr "" @@ -4671,20 +4013,10 @@ msgstr "Partager l'armement?" msgid "monitoring|Mon" msgstr "monitoring|Mon" -#: editor_route_groups.cc:104 -#, fuzzy -msgid "Sharing Monitoring Choice?" -msgstr "Choix du mode de monitoring" - #: editor_route_groups.cc:105 msgid "selection|Sel" msgstr "sélection|Sel " -#: editor_route_groups.cc:105 -#, fuzzy -msgid "Sharing Selected/Editing Status?" -msgstr "Ajuster à la fenêtre" - #: editor_route_groups.cc:106 msgid "active|A" msgstr "active|A" @@ -4715,11 +4047,6 @@ msgstr "programming error: marker canvas item has no marker object pointer!" msgid "File Exists!" msgstr "Le fichier existe!" -#: editor_export_audio.cc:151 -#, fuzzy -msgid "Overwrite Existing File" -msgstr "Insérer des fichiers audio externes" - #: editor_group_tabs.cc:162 msgid "Fit to Window" msgstr "Ajuster à la fenêtre" @@ -4737,11 +4064,6 @@ msgstr "fin" msgid "add marker" msgstr "ajouter un repère" -#: editor_markers.cc:677 -#, fuzzy -msgid "range" -msgstr " intervalle" - #: editor_markers.cc:713 location_ui.cc:852 msgid "remove marker" msgstr "Supprimer le repère" @@ -4766,26 +4088,6 @@ msgstr "Créer un intervalle jusqu'au marqueur suivant" msgid "Locate to Marker" msgstr "Déplacer au repère" -#: editor_markers.cc:897 -#, fuzzy -msgid "Play from Marker" -msgstr "Lire à partir d'ici" - -#: editor_markers.cc:900 -#, fuzzy -msgid "Set Marker from Playhead" -msgstr "placer sur la tête de lecture" - -#: editor_markers.cc:902 -#, fuzzy -msgid "Set Range from Selection" -msgstr "aligner sur la zone de sélection" - -#: editor_markers.cc:905 -#, fuzzy -msgid "Zoom to Range" -msgstr "Montrer toute la session" - #: editor_markers.cc:912 msgid "Hide Range" msgstr "cacher" @@ -4899,11 +4201,6 @@ msgstr "décaler vers la gauche" msgid "build_region_boundary_cache called with snap_type = %1" msgstr "build_region_boundary_cache appelé avec snap_type = %1" -#: editor_ops.cc:1701 -#, fuzzy -msgid "New Location Marker" -msgstr "Nouveau repère temporel" - #: editor_ops.cc:1788 msgid "add markers" msgstr "Ajouter un repère" @@ -4928,41 +4225,6 @@ msgstr "glissé-déposé de région" msgid "insert region" msgstr "insertion de région" -#: editor_ops.cc:2261 -#, fuzzy -msgid "raise regions" -msgstr "Normaliser les régions" - -#: editor_ops.cc:2263 -#, fuzzy -msgid "raise region" -msgstr "enlever la région" - -#: editor_ops.cc:2269 -#, fuzzy -msgid "raise regions to top" -msgstr "aligner les régions sur la grille" - -#: editor_ops.cc:2271 -#, fuzzy -msgid "raise region to top" -msgstr "Envoyer à l'avant" - -#: editor_ops.cc:2277 -#, fuzzy -msgid "lower regions" -msgstr "déplacement de régions" - -#: editor_ops.cc:2279 editor_ops.cc:2287 -#, fuzzy -msgid "lower region" -msgstr "insertion de région" - -#: editor_ops.cc:2285 -#, fuzzy -msgid "lower regions to bottom" -msgstr "Envoyer à l'arrière" - #: editor_ops.cc:2370 msgid "Rename Region" msgstr "renommer la région" @@ -4991,11 +4253,6 @@ msgstr "Placer le point de sync." msgid "remove region sync" msgstr "Supprimer la région de synchro" -#: editor_ops.cc:3098 -#, fuzzy -msgid "move regions to original position" -msgstr "placer la synchro de région" - #: editor_ops.cc:3100 msgid "move region to original position" msgstr "Replacer la région à sa position initiale" @@ -5060,21 +4317,6 @@ msgstr "" "Geler cette piste affectera ce cheminement à partir du premier départ/" "insertion." -#: editor_ops.cc:3505 -#, fuzzy -msgid "Freeze anyway" -msgstr "Bloquer" - -#: editor_ops.cc:3506 -#, fuzzy -msgid "Don't freeze" -msgstr "Impossible de geler" - -#: editor_ops.cc:3507 -#, fuzzy -msgid "Freeze Limits" -msgstr "Bloquer" - #: editor_ops.cc:3522 msgid "Cancel Freeze" msgstr "Annuler le gel" @@ -5096,11 +4338,6 @@ msgstr "" msgid "bounce range" msgstr "copier la sélection vers un fichier audio (bounce)" -#: editor_ops.cc:3678 -#, fuzzy -msgid "delete" -msgstr "Supprimer" - #: editor_ops.cc:3681 msgid "cut" msgstr "couper" @@ -5166,29 +4403,14 @@ msgstr "inverser les régions" msgid "strip silence" msgstr "supprimer le silence" -#: editor_ops.cc:4763 -#, fuzzy -msgid "Fork Region(s)" -msgstr "vers la liste des régions..." - #: editor_ops.cc:4963 msgid "reset region gain" msgstr "réinitialiser le gain" -#: editor_ops.cc:5016 -#, fuzzy -msgid "region gain envelope active" -msgstr "Enveloppe Active" - #: editor_ops.cc:5043 msgid "toggle region lock" msgstr "Verrouiller/déverrouiller la régions" -#: editor_ops.cc:5067 -#, fuzzy -msgid "Toggle Video Lock" -msgstr "Verrouiller/déverrouiller la régions" - #: editor_ops.cc:5091 msgid "region lock style" msgstr "Type de verrouillage de la région" @@ -5310,11 +4532,6 @@ msgstr "" msgid "snap regions to grid" msgstr "aligner les régions sur la grille" -#: editor_ops.cc:6199 -#, fuzzy -msgid "Close Region Gaps" -msgstr "Booster le gain de la région" - #: editor_ops.cc:6204 msgid "Crossfade length" msgstr "Longueur du fondu enchaîné" @@ -5332,11 +4549,6 @@ msgstr "" msgid "Ok" msgstr "Ok" -#: editor_ops.cc:6243 -#, fuzzy -msgid "close region gaps" -msgstr "réinitialiser le gain" - #: editor_ops.cc:6461 route_ui.cc:1456 msgid "That would be bad news ...." msgstr "Mauvaise nouvelle..." @@ -5418,11 +4630,6 @@ msgstr "Oui, supprimer" msgid "Remove %1" msgstr "Supprimer %1" -#: editor_ops.cc:6582 -#, fuzzy -msgid "insert time" -msgstr "Insérer un fichier audio" - #: editor_ops.cc:6739 msgid "There are too many tracks to fit in the current window" msgstr "La fenêtre courante ne peux pas afficher toutes les pistes" @@ -5452,25 +4659,10 @@ msgstr "défaire jointure des régions" msgid "Region name, with number of channels in []'s" msgstr "" -#: editor_regions.cc:112 -#, fuzzy -msgid "Position of start of region" -msgstr "Début de la session" - #: editor_regions.cc:113 editor_regions.cc:849 time_info_box.cc:98 msgid "End" msgstr "Fin" -#: editor_regions.cc:113 -#, fuzzy -msgid "Position of end of region" -msgstr "Fin de la session" - -#: editor_regions.cc:114 -#, fuzzy -msgid "Length of the region" -msgstr "Assourdir cette région" - #: editor_regions.cc:115 msgid "Position of region sync point, relative to start of the region" msgstr "" @@ -5488,11 +4680,6 @@ msgstr "" msgid "L" msgstr "L" -#: editor_regions.cc:118 -#, fuzzy -msgid "Region position locked?" -msgstr "par position de région" - #: editor_regions.cc:119 msgid "G" msgstr "G" @@ -5552,11 +4739,6 @@ msgstr "" msgid "Start" msgstr "Démarrer" -#: editor_regions.cc:865 editor_regions.cc:881 -#, fuzzy -msgid "Multiple" -msgstr "Multi-dupliquer" - #: editor_regions.cc:950 msgid "MISSING " msgstr "(MANQUANT)" @@ -5595,16 +4777,6 @@ msgstr "Entrée MIDI activée" msgid "R" msgstr "R" -#: editor_routes.cc:206 -#, fuzzy -msgid "Record enabled" -msgstr "Armement" - -#: editor_routes.cc:207 -#, fuzzy -msgid "Muted" -msgstr "Muet" - #: editor_routes.cc:208 mixer_strip.cc:1941 meter_strip.cc:330 msgid "S" msgstr "S" @@ -5693,16 +4865,6 @@ msgstr "Nouveau tempo" msgid "New Meter" msgstr "Nouvelle signature rythmique" -#: editor_rulers.cc:373 -#, fuzzy -msgid "Timeline height" -msgstr "la hauteur" - -#: editor_rulers.cc:383 -#, fuzzy -msgid "Align Video Track" -msgstr "Ajouter une piste audio" - #: editor_selection.cc:889 editor_selection.cc:932 msgid "set selected regions" msgstr "sélection de régions" @@ -5824,11 +4986,6 @@ msgid "" msgstr "" "programming error: meter marker canvas item has no marker object pointer!" -#: editor_timefx.cc:68 -#, fuzzy -msgid "stretch/shrink" -msgstr "Étirer/Contracter" - #: editor_timefx.cc:129 msgid "pitch shift" msgstr "pitch shift" @@ -6118,21 +5275,6 @@ msgstr "" msgid "Region contents with fades and region gain (channels: %1)" msgstr "" -#: export_channel_selector.cc:467 -#, fuzzy -msgid "Track output (channels: %1)" -msgstr "voies en sortie" - -#: export_channel_selector.cc:536 -#, fuzzy -msgid "Export region contents" -msgstr "Exporter la région" - -#: export_channel_selector.cc:537 -#, fuzzy -msgid "Export track output" -msgstr "Connecter les sorties des pistes et des bus" - #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten.Error: " msgstr "Erreur: " @@ -6215,16 +5347,6 @@ msgstr "Exporter la région" msgid "Source" msgstr "Source" -#: export_dialog.cc:458 -#, fuzzy -msgid "Stem Export" -msgstr "Arrêter l'exportation" - -#: export_file_notebook.cc:38 -#, fuzzy -msgid "Add another format" -msgstr "Cliquez ici pour ajouter un nouveau format" - #: export_file_notebook.cc:178 msgid "Format" msgstr "Format" @@ -6233,11 +5355,6 @@ msgstr "Format" msgid "Location" msgstr "Emplacement" -#: export_file_notebook.cc:255 -#, fuzzy -msgid "No format!" -msgstr "format" - #: export_file_notebook.cc:267 msgid "Format %1: %2" msgstr "Format %1: %2" @@ -6365,11 +5482,6 @@ msgstr "Moyenne (sinc)" msgid "Fast (sinc)" msgstr "Rapide (sinc)" -#: export_format_dialog.cc:481 -#, fuzzy -msgid "Zero order hold" -msgstr "Maintien de la crête de VU-mètre" - #: export_format_dialog.cc:879 msgid "Linear encoding options" msgstr "Options pour l'encodage linéaire" @@ -6386,11 +5498,6 @@ msgstr "Options FLAC" msgid "Broadcast Wave options" msgstr "Option Broadcast Wave" -#: export_format_selector.cc:136 -#, fuzzy -msgid "Do you really want to remove the format?" -msgstr "Voulez-vous vraiment arreter le Serveur-Vidéo?" - #: export_preset_selector.cc:28 msgid "Preset" msgstr "Préréglage" @@ -6403,11 +5510,6 @@ msgstr "" "Le préréglage n'a pas pu être chargé!\n" "Peut-être qu'il référence un format qui a été supprimé?" -#: export_preset_selector.cc:156 -#, fuzzy -msgid "Do you really want to remove this preset?" -msgstr "Voulez-vous vraiment arreter le Serveur-Vidéo?" - #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "Temps exprimé en:" @@ -6420,11 +5522,6 @@ msgstr " à " msgid "Range" msgstr "Intervalle" -#: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 -#, fuzzy -msgid "curl error %1 (%2)" -msgstr "programming error: %1 (%2)" - #: sfdb_freesound_mootcher.cc:266 msgid "getSoundResourceFile: There is no valid root in the xml file" msgstr "" @@ -6433,11 +5530,6 @@ msgstr "" msgid "getSoundResourceFile: root = %1, != response" msgstr "" -#: sfdb_freesound_mootcher.cc:410 -#, fuzzy -msgid "%1" -msgstr "%" - #: gain_meter.cc:106 gain_meter.cc:357 gain_meter.cc:462 gain_meter.cc:856 msgid "-inf" msgstr "-inf" @@ -6471,11 +5563,6 @@ msgstr "W" msgid "Presets" msgstr "réglages préféfinis" -#: generic_pluginui.cc:232 -#, fuzzy -msgid "Switches" -msgstr "Pitch shift" - #: generic_pluginui.cc:242 generic_pluginui.cc:376 processor_box.cc:2212 msgid "Controls" msgstr "Contrôles" @@ -6486,11 +5573,6 @@ msgstr "" "Éditeur de plugin: impossible de construire l'élément de contrôle pour le " "port %1" -#: generic_pluginui.cc:408 -#, fuzzy -msgid "Meters" -msgstr "Signature rythmique" - #: generic_pluginui.cc:423 msgid "Automation control" msgstr "Contrôle d'automation" @@ -6523,35 +5605,10 @@ msgstr "Armées..." msgid "Soloed..." msgstr "Solo..." -#: group_tabs.cc:316 -#, fuzzy -msgid "Create New Group ..." -msgstr "Nouveau groupe..." - #: group_tabs.cc:317 msgid "Create New Group From" msgstr "" -#: group_tabs.cc:320 -#, fuzzy -msgid "Edit Group..." -msgstr "Nouveau groupe..." - -#: group_tabs.cc:321 -#, fuzzy -msgid "Collect Group" -msgstr "Sélectionner" - -#: group_tabs.cc:322 -#, fuzzy -msgid "Remove Group" -msgstr "Groupe" - -#: group_tabs.cc:325 -#, fuzzy -msgid "Remove Subgroup Bus" -msgstr "Ajouter un sous-groupe de bus" - #: group_tabs.cc:327 msgid "Add New Subgroup Bus" msgstr "Ajouter un sous-groupe de bus" @@ -6568,11 +5625,6 @@ msgstr "Ajouter un nouveau bus auxiliaire (post-fader)" msgid "Enable All Groups" msgstr "" -#: group_tabs.cc:337 -#, fuzzy -msgid "Disable All Groups" -msgstr "Désactiver tous les groupes" - #: gtk-custom-ruler.c:133 msgid "Lower limit of ruler" msgstr "limite inférieure de la règle" @@ -6605,11 +5657,6 @@ msgstr "afficher la position" msgid "Draw current ruler position" msgstr "dessiner la position actuelle de la règle" -#: insert_time_dialog.cc:46 -#, fuzzy -msgid "Time to insert:" -msgstr "Horloge maître" - #: insert_time_dialog.cc:54 msgid "Intersected regions should:" msgstr "Les régions ayant une intersection devraient:" @@ -6630,20 +5677,10 @@ msgstr "être séparées" msgid "Insert time on all the track's playlists" msgstr "" -#: insert_time_dialog.cc:68 -#, fuzzy -msgid "Move glued regions" -msgstr "régions sélectionnées" - #: insert_time_dialog.cc:70 msgid "Move markers" msgstr "Déplacer les repères" -#: insert_time_dialog.cc:73 -#, fuzzy -msgid "Move glued markers" -msgstr "Déplacer le repère sélectionné" - #: insert_time_dialog.cc:78 msgid "Move locked markers" msgstr "Déplacer les repères verrouillés" @@ -6654,11 +5691,6 @@ msgid "" "(may cause oddities in the tempo map)" msgstr "" -#: insert_time_dialog.cc:91 -#, fuzzy -msgid "Insert time" -msgstr "Insérer une région" - #: interthread_progress_window.cc:103 msgid "Importing file: %1 of %2" msgstr "Import du fichier: %1 sur %2" @@ -6715,30 +5747,10 @@ msgstr "" msgid "redirectmenu" msgstr "" -#: keyeditor.cc:257 -#, fuzzy -msgid "Editor_menus" -msgstr "Éditeur" - -#: keyeditor.cc:259 -#, fuzzy -msgid "RegionList" -msgstr "Régions" - -#: keyeditor.cc:261 -#, fuzzy -msgid "ProcessorMenu" -msgstr "Gestion du traitement" - #: latency_gui.cc:39 msgid "sample" msgstr "échantillons" -#: latency_gui.cc:40 -#, fuzzy -msgid "msec" -msgstr "ms" - #: latency_gui.cc:41 msgid "period" msgstr "" @@ -6757,11 +5769,6 @@ msgstr "Réinitialiser" msgid "programming error: %1 (%2)" msgstr "programming error: %1 (%2)" -#: location_ui.cc:50 location_ui.cc:52 -#, fuzzy -msgid "Use PH" -msgstr "Réception MMC (Midi Machine Control)" - #: location_ui.cc:54 msgid "CD" msgstr "CD" @@ -6782,11 +5789,6 @@ msgstr "Compositeur:" msgid "Pre-Emphasis" msgstr "Pré-accentuation" -#: location_ui.cc:314 -#, fuzzy -msgid "Remove this range" -msgstr "définir l'intervalle de punch in/out" - #: location_ui.cc:315 msgid "Start time - middle click to locate here" msgstr "" @@ -6795,30 +5797,10 @@ msgstr "" msgid "End time - middle click to locate here" msgstr "" -#: location_ui.cc:319 -#, fuzzy -msgid "Set range start from playhead location" -msgstr "placer sur la tête de lecture" - -#: location_ui.cc:320 -#, fuzzy -msgid "Set range end from playhead location" -msgstr "aligner sur la zone de sélection" - -#: location_ui.cc:324 -#, fuzzy -msgid "Remove this marker" -msgstr "déplacer le repère" - #: location_ui.cc:325 msgid "Position - middle click to locate here" msgstr "" -#: location_ui.cc:327 -#, fuzzy -msgid "Set marker time from playhead location" -msgstr "aligner sur la zone de sélection" - #: location_ui.cc:494 msgid "You cannot put a CD marker at the start of the session" msgstr "Vous ne pouvez pas poser un marqueur de CD au début de la session" @@ -6851,30 +5833,6 @@ msgstr "ajouter un repère d'intervalle" msgid "%1 could not connect to JACK." msgstr "%1 n'a pas pu se connecter à JACK" -#: main.cc:87 -#, fuzzy -msgid "" -"There are several possible reasons:\n" -"\n" -"1) JACK is not running.\n" -"2) JACK is running as another user, perhaps root.\n" -"3) There is already another client called \"%1\".\n" -"\n" -"Please consider the possibilities, and perhaps (re)start JACK." -msgstr "" -"Il y a plusieurs raisons possibles:\n" -"\n" -"1) JACK n'est pas lancé.\n" -"2) JACK tourne sous un autre utilisateur, peut-être root.\n" -"3) Il y a un autre programme client appelé \"ardour\".\n" -"\n" -"Veuillez étudier ces possibilités, et peut-être (re)lancer JACK." - -#: main.cc:203 main.cc:324 -#, fuzzy -msgid "cannot create user %3 folder %1 (%2)" -msgstr "impossible de créer le fichier ardour de l'utilisateur %1 (%2)" - #: main.cc:210 main.cc:331 msgid "cannot open pango.rc file %1" msgstr "impossible d'ouvrir le fichier pango.rc %1" @@ -6977,16 +5935,6 @@ msgstr "impossible d'initialiser %1." msgid "Cannot xinstall SIGPIPE error handler" msgstr "" -#: main.cc:528 -#, fuzzy -msgid "could not create %1 GUI" -msgstr "impossible de créer l'interface utilisateur d'Ardour" - -#: main_clock.cc:51 -#, fuzzy -msgid "Display delta to edit cursor" -msgstr "delta d'Horloge Primaire au point d'édition" - #: marker.cc:251 video_image_frame.cc:121 msgid "MarkerText" msgstr "MarkerText" @@ -7005,50 +5953,10 @@ msgstr "Inverser" msgid "Force" msgstr "" -#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 -#, fuzzy -msgid "MIDI Channel Control" -msgstr "Contrôle MIDI" - -#: midi_channel_selector.cc:332 -#, fuzzy -msgid "Playback all channels" -msgstr "Cacher tous les canaux" - -#: midi_channel_selector.cc:333 -#, fuzzy -msgid "Play only selected channels" -msgstr "Lecture de l'intervalle" - #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" -#: midi_channel_selector.cc:335 -#, fuzzy -msgid "Record all channels" -msgstr "Cacher tous les canaux" - -#: midi_channel_selector.cc:336 -#, fuzzy -msgid "Record only selected channels" -msgstr "éditer la note" - -#: midi_channel_selector.cc:337 -#, fuzzy -msgid "Force all channels to 1 channel" -msgstr "changer le canal de la note" - -#: midi_channel_selector.cc:378 -#, fuzzy -msgid "Inbound" -msgstr "Limites de régions" - -#: midi_channel_selector.cc:398 -#, fuzzy -msgid "Click to enable recording all channels" -msgstr "Cliquez pour activer/désactiver ce plugin" - #: midi_channel_selector.cc:403 msgid "Click to disable recording all channels" msgstr "" @@ -7057,11 +5965,6 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" -#: midi_channel_selector.cc:415 -#, fuzzy -msgid "Playback" -msgstr "Lecture seulement" - #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -7134,41 +6037,6 @@ msgstr "" msgid "Vel" msgstr "Vel" -#: midi_list_editor.cc:215 -#, fuzzy -msgid "edit note start" -msgstr "éditer la note" - -#: midi_list_editor.cc:224 -#, fuzzy -msgid "edit note channel" -msgstr "éditer la note" - -#: midi_list_editor.cc:234 -#, fuzzy -msgid "edit note number" -msgstr "éditer la note" - -#: midi_list_editor.cc:244 -#, fuzzy -msgid "edit note velocity" -msgstr "éditer la note" - -#: midi_list_editor.cc:258 -#, fuzzy -msgid "edit note length" -msgstr "modifier la durée de la note" - -#: midi_list_editor.cc:460 -#, fuzzy -msgid "insert new note" -msgstr "Insérer un fichier audio" - -#: midi_list_editor.cc:524 -#, fuzzy -msgid "delete notes (from list)" -msgstr "supprimer la note" - #: midi_list_editor.cc:599 msgid "change note channel" msgstr "changer le canal de la note" @@ -7197,16 +6065,6 @@ msgstr "Nom du port:" msgid "MidiPortDialog" msgstr "MidiPortDialog" -#: midi_region_view.cc:838 -#, fuzzy -msgid "channel edit" -msgstr "canal" - -#: midi_region_view.cc:874 -#, fuzzy -msgid "velocity edit" -msgstr "Vélocité" - #: midi_region_view.cc:931 msgid "add note" msgstr "ajouter une note" @@ -7219,25 +6077,10 @@ msgstr "" msgid "insane MIDI patch key %1:%2" msgstr "" -#: midi_region_view.cc:1870 midi_region_view.cc:1890 -#, fuzzy -msgid "alter patch change" -msgstr "modification de la sourdine" - #: midi_region_view.cc:1924 msgid "add patch change" msgstr "" -#: midi_region_view.cc:1942 -#, fuzzy -msgid "move patch change" -msgstr "modification de la sourdine" - -#: midi_region_view.cc:1953 -#, fuzzy -msgid "delete patch change" -msgstr "définir l'intervalle de punch in/out" - #: midi_region_view.cc:2022 msgid "delete selection" msgstr "supprimer la sélection" @@ -7254,11 +6097,6 @@ msgstr "déplacer les notes" msgid "resize notes" msgstr "" -#: midi_region_view.cc:2901 -#, fuzzy -msgid "change velocities" -msgstr "sélection de zone" - #: midi_region_view.cc:2967 msgid "transpose" msgstr "transposer" @@ -7275,30 +6113,10 @@ msgstr "décaler" msgid "change channel" msgstr "changer le canal" -#: midi_region_view.cc:3130 -#, fuzzy -msgid "Bank " -msgstr "Banque" - -#: midi_region_view.cc:3131 -#, fuzzy -msgid "Program " -msgstr "Programme" - -#: midi_region_view.cc:3132 -#, fuzzy -msgid "Channel " -msgstr "Canal" - #: midi_region_view.cc:3301 midi_region_view.cc:3303 msgid "paste" msgstr "coller" -#: midi_region_view.cc:3761 -#, fuzzy -msgid "delete sysex" -msgstr "supprimer la note" - #: midi_streamview.cc:479 msgid "failed to create MIDI region" msgstr "Echec lors de la création de la région MIDI" @@ -7315,35 +6133,10 @@ msgstr "" msgid "Chns" msgstr "" -#: midi_time_axis.cc:272 -#, fuzzy -msgid "Click to edit channel settings" -msgstr "Cliquez pour ajouter un nouveau dossier" - -#: midi_time_axis.cc:486 -#, fuzzy -msgid "Show Full Range" -msgstr "afficher tout" - #: midi_time_axis.cc:491 msgid "Fit Contents" msgstr "Contenu:" -#: midi_time_axis.cc:495 -#, fuzzy -msgid "Note Range" -msgstr " intervalle" - -#: midi_time_axis.cc:496 -#, fuzzy -msgid "Note Mode" -msgstr "Mode normal" - -#: midi_time_axis.cc:497 -#, fuzzy -msgid "Channel Selector" -msgstr "Couleur du canal" - #: midi_time_axis.cc:502 msgid "Color Mode" msgstr "Mode couleur" @@ -7388,11 +6181,6 @@ msgstr "Contrôleur %1" msgid "Sustained" msgstr "" -#: midi_time_axis.cc:966 -#, fuzzy -msgid "Percussive" -msgstr "Début de percussion" - #: midi_time_axis.cc:986 msgid "Meter Colors" msgstr "Couleur du VU-mètre" @@ -7405,21 +6193,10 @@ msgstr "Couleur du canal" msgid "Track Color" msgstr "Couleur de la piste" -#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 -#: midi_time_axis.cc:1510 -#, fuzzy -msgid "all" -msgstr "Très petit" - #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" -#: midi_tracer.cc:43 -#, fuzzy -msgid "Line history: " -msgstr "Limiter la taille de l'historique d'annulation à" - #: midi_tracer.cc:51 msgid "Auto-Scroll" msgstr "Défilement automatique" @@ -7432,20 +6209,10 @@ msgstr "Décimal" msgid "Enabled" msgstr "Activé" -#: midi_tracer.cc:54 -#, fuzzy -msgid "Delta times" -msgstr "Rogner le début" - #: midi_tracer.cc:66 msgid "Port:" msgstr "Port:" -#: midi_velocity_dialog.cc:31 -#, fuzzy -msgid "New velocity" -msgstr "Vélocité" - #: missing_file_dialog.cc:34 msgid "Missing File!" msgstr "Fichier manquant!" @@ -7530,41 +6297,6 @@ msgstr "" msgid "Set Gain to 0dB on Mixer-Selected Tracks/Busses" msgstr "" -#: mixer_actor.cc:63 -#, fuzzy -msgid "Copy Selected Processors" -msgstr "régions sélectionnées" - -#: mixer_actor.cc:64 -#, fuzzy -msgid "Cut Selected Processors" -msgstr "Ajuster à la fenêtre" - -#: mixer_actor.cc:65 -#, fuzzy -msgid "Paste Selected Processors" -msgstr "sélection de régions" - -#: mixer_actor.cc:66 -#, fuzzy -msgid "Delete Selected Processors" -msgstr "sélection de régions" - -#: mixer_actor.cc:67 -#, fuzzy -msgid "Select All (visible) Processors" -msgstr "tous les processeurs disponibles" - -#: mixer_actor.cc:68 -#, fuzzy -msgid "Toggle Selected Processors" -msgstr "Déplacer le repère sélectionné" - -#: mixer_actor.cc:69 -#, fuzzy -msgid "Toggle Selected Plugins" -msgstr "Lire les régions sélectionnées" - #: mixer_actor.cc:72 mixer_actor.cc:73 msgid "Scroll Mixer Window to the left" msgstr "" @@ -7573,11 +6305,6 @@ msgstr "" msgid "Toggle MIDI Input Active for Mixer-Selected Tracks/Busses" msgstr "" -#: mixer_actor.cc:90 -#, fuzzy -msgid "Loaded mixer bindings from %1" -msgstr "Chargement des menus depuis %1" - #: mixer_actor.cc:92 msgid "Could not find mixer.bindings in search path %1" msgstr "" @@ -7586,12 +6313,6 @@ msgstr "" msgid "pre" msgstr "pré" -#: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 -#: rc_option_editor.cc:1881 -#, fuzzy -msgid "Comments" -msgstr "Commentaire" - #: mixer_strip.cc:147 msgid "Click to toggle the width of this mixer strip." msgstr "" @@ -7606,11 +6327,6 @@ msgstr "" msgid "Hide this mixer strip" msgstr "Cacher ce tranche de mixage" -#: mixer_strip.cc:167 -#, fuzzy -msgid "Click to select metering point" -msgstr "Sélectionner tout après le point d'édition" - #: mixer_strip.cc:173 msgid "tupni" msgstr "tupni" @@ -7631,16 +6347,6 @@ msgstr "verrou" msgid "iso" msgstr "iso" -#: mixer_strip.cc:258 -#, fuzzy -msgid "Mix group" -msgstr "Aucun groupe" - -#: mixer_strip.cc:351 rc_option_editor.cc:1878 -#, fuzzy -msgid "Phase Invert" -msgstr "Inverser" - #: mixer_strip.cc:352 rc_option_editor.cc:1879 route_ui.cc:1218 msgid "Solo Safe" msgstr "Bloquer le solo" @@ -7649,11 +6355,6 @@ msgstr "Bloquer le solo" msgid "Group" msgstr "Groupe" -#: mixer_strip.cc:356 rc_option_editor.cc:1882 -#, fuzzy -msgid "Meter Point" -msgstr "VU-mètre" - #: mixer_strip.cc:470 msgid "Enable/Disable MIDI input" msgstr "Activer/désactiver l'entrée du MIDI" @@ -7666,11 +6367,6 @@ msgstr "" "Arrivées\n" "Aux" -#: mixer_strip.cc:646 -#, fuzzy -msgid "Snd" -msgstr "secondes" - #: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 msgid "Not connected to JACK - no I/O changes are possible" msgstr "Non connecté à JACK – aucun changement d'entrée/sortie n'est possible" @@ -7735,11 +6431,6 @@ msgstr "Régler la latence..." msgid "Protect Against Denormals" msgstr "Protèger contre les dénormalisations" -#: mixer_strip.cc:1491 route_time_axis.cc:435 -#, fuzzy -msgid "Remote Control ID..." -msgstr "Identifiant de contrôleur" - #: mixer_strip.cc:1717 mixer_strip.cc:1741 msgid "in" msgstr "entrée" @@ -7756,21 +6447,6 @@ msgstr "sortie" msgid "custom" msgstr "" -#: mixer_strip.cc:1745 -#, fuzzy -msgid "pr" -msgstr "pré" - -#: mixer_strip.cc:1749 -#, fuzzy -msgid "po" -msgstr "p" - -#: mixer_strip.cc:1753 -#, fuzzy -msgid "o" -msgstr "Mono" - #: mixer_strip.cc:1758 msgid "c" msgstr "" @@ -7787,35 +6463,10 @@ msgstr "AFL" msgid "PFL" msgstr "PFL" -#: mixer_strip.cc:1933 -#, fuzzy -msgid "D" -msgstr "CD" - -#: mixer_strip.cc:1953 -#, fuzzy -msgid "i" -msgstr "entrée" - -#: mixer_strip.cc:2128 -#, fuzzy -msgid "Pre-fader" -msgstr "Pré-atténuation" - -#: mixer_strip.cc:2129 -#, fuzzy -msgid "Post-fader" -msgstr "Post-atténuation" - #: mixer_strip.cc:2166 meter_strip.cc:728 msgid "Change all in Group to %1" msgstr "" -#: mixer_strip.cc:2168 meter_strip.cc:730 -#, fuzzy -msgid "Change all to %1" -msgstr "Canal %1" - #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -7833,16 +6484,6 @@ msgstr "-(tout)-" msgid "Strips" msgstr "Tranches" -#: meter_strip.cc:764 -#, fuzzy -msgid "Variable height" -msgstr "la hauteur" - -#: meter_strip.cc:765 -#, fuzzy -msgid "Short" -msgstr "Court" - #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -7887,29 +6528,14 @@ msgstr "" msgid "K14" msgstr "" -#: meter_patterns.cc:105 -#, fuzzy -msgid "VU" -msgstr "V" - #: monitor_section.cc:62 msgid "SiP" msgstr "SiP" -#: monitor_section.cc:86 -#, fuzzy -msgid "soloing" -msgstr "solo" - #: monitor_section.cc:90 msgid "isolated" msgstr "" -#: monitor_section.cc:94 -#, fuzzy -msgid "auditioning" -msgstr "écoute" - #: monitor_section.cc:104 msgid "" "When active, something is solo-isolated.\n" @@ -7960,25 +6586,10 @@ msgstr "" msgid "Gain reduction to use when dimming monitor outputs" msgstr "" -#: monitor_section.cc:181 -#, fuzzy -msgid "Dim" -msgstr "Moyen" - -#: monitor_section.cc:190 -#, fuzzy -msgid "excl. solo" -msgstr "Solo exclusif" - #: monitor_section.cc:192 msgid "Exclusive solo means that only 1 solo is active at a time" msgstr "Solo exclusif veut dire qu'un seul solo peut être actif à la fois" -#: monitor_section.cc:199 -#, fuzzy -msgid "solo » mute" -msgstr "Solo/muet" - #: monitor_section.cc:201 msgid "" "If enabled, solo will override mute\n" @@ -7991,79 +6602,14 @@ msgstr "" msgid "mute" msgstr "muet" -#: monitor_section.cc:238 -#, fuzzy -msgid "dim" -msgstr "Moyen" - #: monitor_section.cc:245 msgid "mono" msgstr "mono" -#: monitor_section.cc:266 -#, fuzzy -msgid "Monitor" -msgstr "Monitoring" - -#: monitor_section.cc:678 -#, fuzzy -msgid "Switch monitor to mono" -msgstr "Passer au 2nd octave" - -#: monitor_section.cc:681 -#, fuzzy -msgid "Cut monitor" -msgstr "Monitoring" - -#: monitor_section.cc:684 -#, fuzzy -msgid "Dim monitor" -msgstr "Monitoring" - -#: monitor_section.cc:687 -#, fuzzy -msgid "Toggle exclusive solo mode" -msgstr "Solo exclusif" - #: monitor_section.cc:693 msgid "Toggle mute overrides solo mode" msgstr "" -#: monitor_section.cc:705 -#, fuzzy -msgid "Cut monitor channel %1" -msgstr "Bus de monitoring à " - -#: monitor_section.cc:710 -#, fuzzy -msgid "Dim monitor channel %1" -msgstr "Bus de monitoring à " - -#: monitor_section.cc:715 -#, fuzzy -msgid "Solo monitor channel %1" -msgstr "Bus de monitoring à " - -#: monitor_section.cc:720 -#, fuzzy -msgid "Invert monitor channel %1" -msgstr "panoramique de la voie %zu" - -#: monitor_section.cc:730 -#, fuzzy -msgid "In-place solo" -msgstr "Plusieurs solos possibles" - -#: monitor_section.cc:732 -#, fuzzy -msgid "After Fade Listen (AFL) solo" -msgstr "Écoute post-fader" - -#: monitor_section.cc:734 -#, fuzzy -msgid "Pre Fade Listen (PFL) solo" -msgstr "Écoute pré-fader" - #: mono_panner.cc:101 #, c-format msgid "L:%3d R:%3d" @@ -8078,11 +6624,6 @@ msgstr "" msgid "%" msgstr "%" -#: nag.cc:41 -#, fuzzy -msgid "Support %1 Development" -msgstr "Encourager le développement d'Ardour" - #: nag.cc:42 msgid "I'd like to make a one-time donation" msgstr "Je souhaite faire un don" @@ -8262,12 +6803,6 @@ msgstr "" " -O, --no-hw-optimizations Désactiver les optimisations matérielles " "spécifiques\n" -#: opts.cc:70 -#, fuzzy -msgid " -P, --no-connect-ports Do not connect any ports at startup\n" -msgstr "" -" -a, --no-announcements Ne pas chercher des annonces sur le site\n" - #: opts.cc:71 msgid " -S, --sync Draw the gui synchronously \n" msgstr "" @@ -8352,11 +6887,6 @@ msgstr "Importé" msgid "dB scale" msgstr "échelle en dB" -#: plugin_eq_gui.cc:106 -#, fuzzy -msgid "Show phase" -msgstr "montrer les barres de mesures" - #: plugin_selector.cc:53 plugin_selector.cc:220 msgid "Name contains" msgstr "Le nom contient" @@ -8381,11 +6911,6 @@ msgstr "La bibliothèque contient" msgid "Favorites only" msgstr "Seulement les favoris" -#: plugin_selector.cc:59 plugin_selector.cc:214 plugin_selector.cc:521 -#, fuzzy -msgid "Hidden only" -msgstr "Caché" - #: plugin_selector.cc:64 msgid "Plugin Manager" msgstr "Gestion des plugins" @@ -8481,28 +7006,10 @@ msgstr "Par catégorie" msgid "Eh? LADSPA plugins don't have editors!" msgstr "Hein ? Les plugins LADSPA n'ont pas d'éditeur !" -#: plugin_ui.cc:125 plugin_ui.cc:227 -#, fuzzy -msgid "" -"unknown type of editor-supplying plugin (note: no VST support in this " -"version of %1)" -msgstr "" -"type de plugin à éditeur inconnu (note: VST n'est pas pris en charge dans " -"cette version d'ardour)" - #: plugin_ui.cc:128 msgid "unknown type of editor-supplying plugin" msgstr "type inconnu pour le plugin fournissant un éditeur" -#: plugin_ui.cc:257 -#, fuzzy -msgid "" -"unknown type of editor-supplying plugin (note: no linuxVST support in this " -"version of %1)" -msgstr "" -"type de plugin à éditeur inconnu (note: VST n'est pas pris en charge dans " -"cette version d'ardour)" - #: plugin_ui.cc:329 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "create_lv2_editor est appelé sur un plugin non LV2" @@ -8511,27 +7018,12 @@ msgstr "create_lv2_editor est appelé sur un plugin non LV2" msgid "Add" msgstr "Ajouter" -#: plugin_ui.cc:421 -#, fuzzy -msgid "Description" -msgstr "Sélection" - -#: plugin_ui.cc:422 -#, fuzzy -msgid "Plugin analysis" -msgstr "Plugins" - #: plugin_ui.cc:429 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:430 -#, fuzzy -msgid "Save a new preset" -msgstr "Nom du nouveau préréglage :" - #: plugin_ui.cc:431 msgid "Save the current preset" msgstr "" @@ -8556,13 +7048,6 @@ msgstr "" msgid "Click to enable/disable this plugin" msgstr "Cliquez pour activer/désactiver ce plugin" -#: plugin_ui.cc:506 -#, fuzzy -msgid "latency (%1 sample)" -msgid_plural "latency (%1 samples)" -msgstr[0] "latence (%1 échantillons)" -msgstr[1] "latence (%1 échantillons)" - #: plugin_ui.cc:508 msgid "latency (%1 ms)" msgstr "Latence (%1 ms)" @@ -8651,11 +7136,6 @@ msgstr "Sortie de l'horloge MIDI" msgid "MMC out" msgstr "MMC out" -#: port_group.cc:540 -#, fuzzy -msgid ":monitor" -msgstr "Monitoring" - #: port_group.cc:552 msgid "system:" msgstr "système:" @@ -8688,11 +7168,6 @@ msgstr "Aucun signal détecté" msgid "Detecting ..." msgstr "Recherche..." -#: port_insert_ui.cc:166 -#, fuzzy -msgid "Port Insert " -msgstr "Nom du port" - #: port_matrix.cc:331 port_matrix.cc:357 msgid "Sources" msgstr "Sources :" @@ -8732,15 +7207,6 @@ msgstr "" msgid "Flip" msgstr "" -#: port_matrix.cc:723 -#, fuzzy -msgid "" -"It is not possible to add a port here, as the first processor in the track " -"or buss cannot support the new configuration." -msgstr "" -"Ce port ne peut pas être supprimé, car le premier plugin n'accepte pas le " -"nouveau nombre d'entrées." - #: port_matrix.cc:726 msgid "Cannot add port" msgstr "" @@ -8749,16 +7215,6 @@ msgstr "" msgid "Port removal not allowed" msgstr "Suppression de ports non authorisée" -#: port_matrix.cc:749 -#, fuzzy -msgid "" -"This port cannot be removed.\n" -"Either the first plugin in the track or buss cannot accept\n" -"the new number of inputs or the last plugin has more outputs." -msgstr "" -"Ce port ne peut pas être supprimé, car le premier plugin n'accepte pas le " -"nouveau nombre d'entrées." - #: port_matrix.cc:966 #, c-format msgid "Remove '%s'" @@ -8802,11 +7258,6 @@ msgstr "Afficher les contrôles" msgid "Hide All Controls" msgstr "Cacher tous les contrôles" -#: processor_box.cc:465 -#, fuzzy -msgid "on" -msgstr "Mono" - #: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 msgid "off" msgstr "Off" @@ -8935,15 +7386,6 @@ msgstr "" "Voulez-vous vraiment supprimer toutes les pré-redirections de %1 ?\n" "Cette action ne pourra pas être annulé!" -#: processor_box.cc:2024 -#, fuzzy -msgid "" -"Do you really want to remove all post-fader processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Voulez-vous vraiment supprimer toutes les post-redirections de %1 ?\n" -"Cette action ne pourra pas être annulé!" - #: processor_box.cc:2200 msgid "New Plugin" msgstr "Nouveau plugin" @@ -8976,11 +7418,6 @@ msgstr "Supprimer (post-fader)" msgid "Activate All" msgstr "Activer tous les groupes" -#: processor_box.cc:2246 -#, fuzzy -msgid "Deactivate All" -msgstr "Désactiver tout" - #: processor_box.cc:2248 msgid "A/B Plugins" msgstr "A/B Plugins" @@ -8993,16 +7430,6 @@ msgstr "" msgid "%1: %2 (by %3)" msgstr "%1: %2 (par %3)" -#: patch_change_dialog.cc:51 -#, fuzzy -msgid "Patch Change" -msgstr "lire l'intervalle" - -#: patch_change_dialog.cc:77 -#, fuzzy -msgid "Patch Bank" -msgstr "lire l'intervalle" - #: patch_change_dialog.cc:84 msgid "Patch" msgstr "" @@ -9023,11 +7450,6 @@ msgstr "grille principale" msgid "Quantize" msgstr "Quantiser" -#: quantize_dialog.cc:56 -#, fuzzy -msgid "Strength" -msgstr "Longueur :" - #: quantize_dialog.cc:59 msgid "Swing" msgstr "Swing" @@ -9080,11 +7502,6 @@ msgstr "commandes" msgid "Edit using:" msgstr "Éditer avec:" -#: rc_option_editor.cc:321 rc_option_editor.cc:347 rc_option_editor.cc:374 -#, fuzzy -msgid "+ button" -msgstr "avec le bouton de la souris n°" - #: rc_option_editor.cc:341 msgid "Delete using:" msgstr "Effacer avec:" @@ -9113,11 +7530,6 @@ msgstr "Écoute (tampon en secondes):" msgid "Recording (seconds of buffering):" msgstr "Enregistrement (tampon en secondes):" -#: rc_option_editor.cc:656 -#, fuzzy -msgid "Control Surface Protocol" -msgstr "Surfaces de contrôle" - #: rc_option_editor.cc:660 msgid "Feedback" msgstr "Feedback" @@ -9156,11 +7568,6 @@ msgid "" "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:836 -#, fuzzy -msgid "Video Folder:" -msgstr "Dossier:" - #: rc_option_editor.cc:841 msgid "" "Local path to the video-server document-root. Only files below this " @@ -9210,11 +7617,6 @@ msgstr "%1 processeurs" msgid "This setting will only take effect when %1 is restarted." msgstr "Cette option ne sera prise en compte qu'après un redémarrage de %1." -#: rc_option_editor.cc:1025 -#, fuzzy -msgid "Options|Undo" -msgstr "Options" - #: rc_option_editor.cc:1032 msgid "Verify removal of last capture" msgstr "Confirmer la destruction du dernier enregistr." @@ -9223,29 +7625,14 @@ msgstr "Confirmer la destruction du dernier enregistr." msgid "Make periodic backups of the session file" msgstr "Sauvegardes de secours périodiques" -#: rc_option_editor.cc:1045 -#, fuzzy -msgid "Session Management" -msgstr "Nom de la session:" - #: rc_option_editor.cc:1050 msgid "Always copy imported files" msgstr "Toujours recopier les fichiers importés" -#: rc_option_editor.cc:1057 -#, fuzzy -msgid "Default folder for new sessions:" -msgstr "Dossier par défaut pour les nouvelles sessions." - #: rc_option_editor.cc:1065 msgid "Maximum number of recent sessions" msgstr "Nombre maximum de sessions récentes" -#: rc_option_editor.cc:1078 -#, fuzzy -msgid "Click gain level" -msgstr "Son du clic:" - #: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "Automation" @@ -9262,11 +7649,6 @@ msgstr "Intervalle de prise d'automation (ms)" msgid "Keep record-enable engaged on stop" msgstr "Rester en enregistrement à l'arrêt" -#: rc_option_editor.cc:1118 -#, fuzzy -msgid "Stop recording when an xrun occurs" -msgstr "Arrêt d'enregistr. en cas de désynchro (xrun)" - #: rc_option_editor.cc:1123 msgid "" "When enabled %1 will stop recording if an over- or underrun is " @@ -9377,25 +7759,10 @@ msgid "" "variant of using exactly 29.97 fps has zero timecode drift.\n" msgstr "" -#: rc_option_editor.cc:1240 -#, fuzzy -msgid "LTC Reader" -msgstr "En-tête" - #: rc_option_editor.cc:1244 msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1257 -#, fuzzy -msgid "LTC Generator" -msgstr "Créateur" - -#: rc_option_editor.cc:1262 -#, fuzzy -msgid "Enable LTC generator" -msgstr "Activer les traductions" - #: rc_option_editor.cc:1269 msgid "send LTC while stopped" msgstr "envoyer LTC à l'arrêt" @@ -9408,22 +7775,12 @@ msgstr "" "Activé %1 continuera à envoyer l'info LTC même quand le transport (la " "tête de lecture) n'est pas en movement" -#: rc_option_editor.cc:1281 -#, fuzzy -msgid "LTC generator level" -msgstr "Créateur" - #: rc_option_editor.cc:1285 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " "is 0dBu ^= -18dbFS in an EBU calibrated system" msgstr "" -#: rc_option_editor.cc:1297 -#, fuzzy -msgid "Link selection of regions and tracks" -msgstr "Inverser la sélection dans la piste" - #: rc_option_editor.cc:1305 msgid "Move relevant automation when audio regions are moved" msgstr "" @@ -9449,20 +7806,10 @@ msgstr "si elles se chevauchent dans le temps" msgid "only if they have identical length, position and origin" msgstr "seulement si elles partagent longueur, position et origine" -#: rc_option_editor.cc:1340 -#, fuzzy -msgid "Make rubberband selection rectangle snap to the grid" -msgstr "La sélection élastique colle à la grille" - #: rc_option_editor.cc:1348 msgid "Show waveforms in regions" msgstr "Afficher le signal dans les régions" -#: rc_option_editor.cc:1356 -#, fuzzy -msgid "Show gain envelopes in audio regions" -msgstr "Afficher le signal dans les régions" - #: rc_option_editor.cc:1357 msgid "in all modes" msgstr "dans toutes les modes" @@ -9507,13 +7854,6 @@ msgstr "Afficher la barre d'outils du zoom" msgid "Color regions using their track's color" msgstr "Appliquer la couleur de la piste aux régions" -#: rc_option_editor.cc:1414 -#, fuzzy -msgid "Update editor window during drags of the summary" -msgstr "" -"Mettre à jour la fenêtre de l'éditeur quand la sommaire subit un cliquer-" -"glisser" - #: rc_option_editor.cc:1422 msgid "Synchronise editor and mixer track order" msgstr "Ordre des pistes identique entre éditeur et mixage" @@ -9594,16 +7934,6 @@ msgstr "automatiquement aux sorties matérielles" msgid "automatically to master bus" msgstr "Automatiquement au bus géneral" -#: rc_option_editor.cc:1523 -#, fuzzy -msgid "Denormals" -msgstr "Dénormaliser" - -#: rc_option_editor.cc:1528 -#, fuzzy -msgid "Use DC bias to protect against denormals" -msgstr "Protège contre les dénormalisations" - #: rc_option_editor.cc:1535 msgid "Processor handling" msgstr "Gestion du traitement" @@ -9612,25 +7942,10 @@ msgstr "Gestion du traitement" msgid "no processor handling" msgstr "Aucune gestion" -#: rc_option_editor.cc:1545 -#, fuzzy -msgid "use FlushToZero" -msgstr "Utiliser FlushToZero" - #: rc_option_editor.cc:1549 msgid "use DenormalsAreZero" msgstr "Utiliser DenormalsAreZero" -#: rc_option_editor.cc:1553 -#, fuzzy -msgid "use FlushToZero and DenormalsAreZero" -msgstr "Utiliser FlushToZero et DenormalsAreZero" - -#: rc_option_editor.cc:1563 -#, fuzzy -msgid "Silence plugins when the transport is stopped" -msgstr "Arrêt des plugins lors des déplacements" - #: rc_option_editor.cc:1571 msgid "Make new plugins active" msgstr "Activer les nouveaux plugins" @@ -9651,30 +7966,10 @@ msgstr "Dupliquer les canaux manquants dans la région" msgid "Solo / mute" msgstr "Solo/muet" -#: rc_option_editor.cc:1597 -#, fuzzy -msgid "Solo-in-place mute cut (dB)" -msgstr "Diminution du volume en mode solo (dB)" - #: rc_option_editor.cc:1604 msgid "Solo controls are Listen controls" msgstr "" -#: rc_option_editor.cc:1613 -#, fuzzy -msgid "Listen Position" -msgstr "position" - -#: rc_option_editor.cc:1618 -#, fuzzy -msgid "after-fader (AFL)" -msgstr "Écoute post-fader" - -#: rc_option_editor.cc:1619 -#, fuzzy -msgid "pre-fader (PFL)" -msgstr "Écoute pré-fader" - #: rc_option_editor.cc:1625 msgid "PFL signals come from" msgstr "Les signaux PFL sont récupérés" @@ -9747,11 +8042,6 @@ msgstr "Obeir aux MMC MIDI (MIDI Machine Controls)" msgid "Send MIDI Machine Control commands" msgstr "Envoyer les MMC MIDI" -#: rc_option_editor.cc:1751 -#, fuzzy -msgid "Send MIDI control feedback" -msgstr "Envoi des réponses MIDI" - #: rc_option_editor.cc:1759 msgid "Inbound MMC device ID" msgstr "identifiant de l'appareil MMC en entrée" @@ -9807,15 +8097,6 @@ msgstr "suivre l'ordre de la console de mixage" msgid "follows order of editor" msgstr "suivre l'ordre de l'Éditeur" -#: rc_option_editor.cc:1846 rc_option_editor.cc:1854 rc_option_editor.cc:1864 -#: rc_option_editor.cc:1885 rc_option_editor.cc:1894 rc_option_editor.cc:1902 -#: rc_option_editor.cc:1916 rc_option_editor.cc:1935 rc_option_editor.cc:1951 -#: rc_option_editor.cc:1967 rc_option_editor.cc:1981 rc_option_editor.cc:1995 -#: rc_option_editor.cc:1997 -#, fuzzy -msgid "Preferences|GUI" -msgstr "Préférences" - #: rc_option_editor.cc:1849 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "" @@ -9833,38 +8114,18 @@ msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" "Mettre à jour l'horloge du transport tous les 40ms au lieu de tous les 100ms" -#: rc_option_editor.cc:1887 -#, fuzzy -msgid "Mixer Strip" -msgstr "Mixage" - #: rc_option_editor.cc:1897 msgid "Use narrow strips in the mixer by default" msgstr "Utiliser des tranches de mixage étroites par défaut" -#: rc_option_editor.cc:1906 -#, fuzzy -msgid "Peak hold time" -msgstr "Maintien de la crête de VU-mètre" - #: rc_option_editor.cc:1912 msgid "short" msgstr "Court" -#: rc_option_editor.cc:1913 -#, fuzzy -msgid "medium" -msgstr "Moyen" - #: rc_option_editor.cc:1914 msgid "long" msgstr "Long" -#: rc_option_editor.cc:1920 -#, fuzzy -msgid "DPM fall-off" -msgstr "Taux de chute du VU-mètre" - #: rc_option_editor.cc:1926 msgid "slowest [6.6dB/sec]" msgstr "" @@ -9951,11 +8212,6 @@ msgstr "" msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1985 -#, fuzzy -msgid "Peak threshold [dBFS]" -msgstr "Seuil de pic" - #: rc_option_editor.cc:1993 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " @@ -9990,11 +8246,6 @@ msgstr "" msgid "Sync point (absolute):" msgstr "" -#: region_editor.cc:98 -#, fuzzy -msgid "File start:" -msgstr "Fichiers" - #: region_editor.cc:102 msgid "Sources:" msgstr "Sources:" @@ -10019,11 +8270,6 @@ msgstr "changer la fin de la région" msgid "change region length" msgstr "changer la longueur de la région" -#: region_editor.cc:403 region_editor.cc:415 -#, fuzzy -msgid "change region sync point" -msgstr "changer la fin de la région" - #: region_layering_order_editor.cc:41 msgid "RegionLayeringOrderEditor" msgstr "" @@ -10036,11 +8282,6 @@ msgstr "Nom de la région" msgid "Track:" msgstr "Piste:" -#: region_layering_order_editor.cc:103 -#, fuzzy -msgid "Choose Top Region" -msgstr "Lire la région en boucle" - #: region_view.cc:274 msgid "SilenceText" msgstr "" @@ -10101,11 +8342,6 @@ msgstr "" msgid "Complex Domain" msgstr "" -#: rhythm_ferret.cc:59 -#, fuzzy -msgid "Phase Deviation" -msgstr "position" - #: rhythm_ferret.cc:60 msgid "Kullback-Liebler" msgstr "Kullback-Liebler" @@ -10190,20 +8426,10 @@ msgstr "Armement" msgid "Selection" msgstr "Sélection" -#: route_group_dialog.cc:46 -#, fuzzy -msgid "Active state" -msgstr "Activer" - #: route_group_dialog.cc:47 route_group_dialog.cc:76 theme_manager.cc:71 msgid "Color" msgstr "Couleur" -#: route_group_dialog.cc:53 -#, fuzzy -msgid "RouteGroupDialog" -msgstr "Fenêtre de nettoyage" - #: route_group_dialog.cc:92 msgid "Sharing" msgstr "Partage" @@ -10271,11 +8497,6 @@ msgstr "Enregistrement" msgid "Route Group" msgstr "Groupe" -#: route_time_axis.cc:213 -#, fuzzy -msgid "MIDI Controllers and Automation" -msgstr "pour dessiner la courbe de gain" - #: route_time_axis.cc:390 msgid "Show All Automation" msgstr "Afficher toute l'automation" @@ -10304,11 +8525,6 @@ msgstr "" msgid "Stacked" msgstr "Empilés" -#: route_time_axis.cc:495 -#, fuzzy -msgid "Layers" -msgstr "Couche n°" - #: route_time_axis.cc:564 msgid "Automatic (based on I/O connections)" msgstr "Automatique (à partir des connections I/O)" @@ -10321,16 +8537,6 @@ msgstr "" msgid "(Currently: Capture Time)" msgstr "" -#: route_time_axis.cc:584 -#, fuzzy -msgid "Align With Existing Material" -msgstr "aligner avec le contenu actuel" - -#: route_time_axis.cc:589 -#, fuzzy -msgid "Align With Capture Time" -msgstr "aligner avec l'enregistrement" - #: route_time_axis.cc:594 msgid "Alignment" msgstr "Alignement" @@ -10391,11 +8597,6 @@ msgstr "Copier la prise" msgid "Clear Current" msgstr "Effacer actuelle" -#: route_time_axis.cc:1503 -#, fuzzy -msgid "Select From All..." -msgstr "Choisir..." - #: route_time_axis.cc:1591 msgid "Take: %1.%2" msgstr "Prise: %1.%2" @@ -10412,16 +8613,6 @@ msgstr "Supprimer \"%1\"" msgid "programming error: underlay reference pointer pairs are inconsistent!" msgstr "programming error: underlay reference pointer pairs are inconsistent!" -#: route_time_axis.cc:2408 -#, fuzzy -msgid "After-fade listen (AFL)" -msgstr "Écoute post-fader" - -#: route_time_axis.cc:2412 -#, fuzzy -msgid "Pre-fade listen (PFL)" -msgstr "Écoute pré-fader" - #: route_time_axis.cc:2416 msgid "s" msgstr "s" @@ -10458,54 +8649,14 @@ msgstr "Monitoring du son enregistré" msgid "Not connected to JACK - cannot engage record" msgstr "Non connecté à JACK – impossible d'enclencher l'enregistrement" -#: route_ui.cc:786 -#, fuzzy -msgid "Step Entry" -msgstr "vers le point d'édition" - #: route_ui.cc:859 msgid "Assign all tracks (prefader)" msgstr "" -#: route_ui.cc:863 -#, fuzzy -msgid "Assign all tracks and buses (prefader)" -msgstr "ajouter aux pistes sélectionnées (pré-fader)" - #: route_ui.cc:867 msgid "Assign all tracks (postfader)" msgstr "" -#: route_ui.cc:871 -#, fuzzy -msgid "Assign all tracks and buses (postfader)" -msgstr "ajouter aux pistes sélectionnées (post-fader)" - -#: route_ui.cc:875 -#, fuzzy -msgid "Assign selected tracks (prefader)" -msgstr "ajouter aux pistes sélectionnées (pré-fader)" - -#: route_ui.cc:879 -#, fuzzy -msgid "Assign selected tracks and buses (prefader)" -msgstr "ajouter aux pistes sélectionnées (pré-fader)" - -#: route_ui.cc:882 -#, fuzzy -msgid "Assign selected tracks (postfader)" -msgstr "ajouter aux pistes sélectionnées (post-fader)" - -#: route_ui.cc:886 -#, fuzzy -msgid "Assign selected tracks and buses (postfader)" -msgstr "ajouter aux pistes sélectionnées (post-fader)" - -#: route_ui.cc:889 -#, fuzzy -msgid "Copy track/bus gains to sends" -msgstr "Copier gains de piste/bus vers les départs" - #: route_ui.cc:890 msgid "Set sends gain to -inf" msgstr "Régler gain des départs à -inf" @@ -10579,11 +8730,6 @@ msgstr "" "Il est déconseillé d'utiliser le caractère ':' pour les pistes et les bus.\n" "Voulez-vous tout de même utiliser ce nom?" -#: route_ui.cc:1520 -#, fuzzy -msgid "Use the new name" -msgstr "nouveau nom :" - #: route_ui.cc:1521 msgid "Re-edit the name" msgstr "" @@ -10628,16 +8774,6 @@ msgid "" "The remote control ID of %3 cannot be changed." msgstr "" -#: route_ui.cc:1816 -#, fuzzy -msgid "the master bus" -msgstr "Bus de sortie à" - -#: route_ui.cc:1816 -#, fuzzy -msgid "the monitor bus" -msgstr "Bus de sortie à" - #: route_ui.cc:1818 msgid "" "The remote control ID of %6 is: %3\n" @@ -10649,16 +8785,6 @@ msgid "" "change this%5" msgstr "" -#: route_ui.cc:1821 -#, fuzzy -msgid "the mixer" -msgstr "Remixeur" - -#: route_ui.cc:1821 -#, fuzzy -msgid "the editor" -msgstr "éditeur" - #: route_ui.cc:1876 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " @@ -10736,11 +8862,6 @@ msgstr "Web" msgid "Organization" msgstr "" -#: session_metadata_dialog.cc:537 -#, fuzzy -msgid "Country" -msgstr "Code pays" - #: session_metadata_dialog.cc:551 msgid "Title" msgstr "Titre" @@ -10753,11 +8874,6 @@ msgstr "Numéro de la piste" msgid "Subtitle" msgstr "Sous-titre" -#: session_metadata_dialog.cc:560 -#, fuzzy -msgid "Grouping" -msgstr "Groupe" - #: session_metadata_dialog.cc:563 msgid "Artist" msgstr "Artiste" @@ -10846,20 +8962,10 @@ msgstr "Producteur" msgid "DJ Mixer" msgstr "DJ Mixeur" -#: session_metadata_dialog.cc:646 -#, fuzzy -msgid "Metadata|Mixer" -msgstr "Meta-données" - #: session_metadata_dialog.cc:654 msgid "School" msgstr "" -#: session_metadata_dialog.cc:659 -#, fuzzy -msgid "Instructor" -msgstr "Chef d'orchestre" - #: session_metadata_dialog.cc:662 msgid "Course" msgstr "" @@ -11158,11 +9264,6 @@ msgstr "Raccourcir la nouvelle note" msgid "replace both overlapping notes with a single note" msgstr "Fusionner les notes" -#: session_option_editor.cc:259 -#, fuzzy -msgid "Glue to bars and beats" -msgstr "Coller aux mesures/temps" - #: session_option_editor.cc:263 msgid "Glue new markers to bars and beats" msgstr "Coller les nouveaux marqueurs aux mesures/temps" @@ -11171,62 +9272,18 @@ msgstr "Coller les nouveaux marqueurs aux mesures/temps" msgid "Glue new regions to bars and beats" msgstr "Coller les nouvelles régions aux mesures/temps" -#: session_option_editor.cc:275 session_option_editor.cc:277 -#: session_option_editor.cc:284 session_option_editor.cc:291 -#: session_option_editor.cc:298 session_option_editor.cc:300 -#: session_option_editor.cc:307 session_option_editor.cc:314 -#: session_option_editor.cc:321 session_option_editor.cc:323 -#, fuzzy -msgid "Meterbridge" -msgstr "VU-mètre" - #: session_option_editor.cc:275 msgid "Route Display" msgstr "" -#: session_option_editor.cc:279 -#, fuzzy -msgid "Show Midi Tracks" -msgstr "Afficher toutes les pistes MIDI" - -#: session_option_editor.cc:286 -#, fuzzy -msgid "Show Busses" -msgstr "Bus" - -#: session_option_editor.cc:293 -#, fuzzy -msgid "Include Master Bus" -msgstr "Bus de sortie à" - #: session_option_editor.cc:298 msgid "Button Area" msgstr "" -#: session_option_editor.cc:302 -#, fuzzy -msgid "Rec-enable Button" -msgstr "(dés)activation d'enregistrement" - -#: session_option_editor.cc:309 -#, fuzzy -msgid "Mute Button" -msgstr "avec le bouton de la souris n°" - -#: session_option_editor.cc:316 -#, fuzzy -msgid "Solo Button" -msgstr "Gain Solo" - #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" -#: session_option_editor.cc:325 -#, fuzzy -msgid "Track Name" -msgstr "Nom de piste/bus" - #: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 msgid "as new tracks" msgstr "comme nouvelles pistes" @@ -11367,16 +9424,6 @@ msgstr "ID" msgid "Filename" msgstr "Nom du fichier " -#: sfdb_ui.cc:570 -#, fuzzy -msgid "Duration" -msgstr "durée (s)" - -#: sfdb_ui.cc:571 -#, fuzzy -msgid "Size" -msgstr "taille max" - #: sfdb_ui.cc:572 msgid "Samplerate" msgstr "Taux d'échantillonnage" @@ -11487,11 +9534,6 @@ msgstr "Point d'édition" msgid "playhead" msgstr "tête de lecture" -#: sfdb_ui.cc:1554 -#, fuzzy -msgid "session start" -msgstr "sur le début de la session" - #: sfdb_ui.cc:1559 msgid "Add files as ..." msgstr "" @@ -11548,11 +9590,6 @@ msgstr "Molette" msgid "Maximum speed" msgstr "Vitesse maximale" -#: shuttle_control.cc:561 -#, fuzzy -msgid "Playing" -msgstr "Lire" - #: shuttle_control.cc:576 #, c-format msgid "<<< %+d semitones" @@ -11607,53 +9644,6 @@ msgstr "Demander à %1 de diffuser le signal pendant l'enregistrement" msgid "I'd like more options for this session" msgstr "Je souhaite avoir accès à plus d'options" -#: startup.cc:194 -#, fuzzy -msgid "" -"Welcome to this BETA release of Ardour %1\n" -"\n" -"Ardour %1 has been released for Linux but because of the lack of testers,\n" -"it is still at the beta stage on OS X. So, a few guidelines:\n" -"\n" -"1) Please do NOT use this software with the expectation that it is " -"stable or reliable\n" -" though it may be so, depending on your workflow.\n" -"2) Please do NOT use the forums at ardour.org to report issues.\n" -"3) Please DO use the bugtracker at http://tracker.ardour.org/ to " -"report issues\n" -" making sure to note the product version number as %1-beta.\n" -"4) Please DO use the ardour-users mailing list to discuss ideas and " -"pass on comments.\n" -"5) Please DO join us on IRC for real time discussions about ardour3. " -"You\n" -" can get there directly from Ardour via the Help->Chat menu option.\n" -"\n" -"Full information on all the above can be found on the support page at\n" -"\n" -" http://ardour.org/support\n" -msgstr "" -"Bienvenue dans Ardour 3.0 ALPHA\n" -"\n" -"Ardour 3.0 has been released for Linux but because of the lack of testers,\n" -"it is still at the beta stage on OS X. So, a few guidelines:\n" -"\n" -"1) Please do NOT use this software with the expectation that it is " -"stable or reliable\n" -" though it may be so, depending on your workflow.\n" -"3) Please do NOT use the forums at ardour.org to report issues.\n" -"4) Please DO use the bugtracker at http://tracker.ardour.org/ to " -"report issues\n" -" making sure to note the product version number as 3.0-beta.\n" -"5) Please DO use the ardour-users mailing list to discuss ideas and " -"pass on comments.\n" -"6) Please DO join us on IRC for real time discussions about ardour3. " -"You\n" -" can get there directly from Ardour via the Help->Chat menu option.\n" -"\n" -"Full information on all the above can be found on the support page at\n" -"\n" -" http://ardour.org/support\n" - #: startup.cc:218 msgid "This is a BETA RELEASE" msgstr "Version BETA, traduction en cours..." @@ -12263,16 +10253,6 @@ msgstr "" msgid "L:%3d R:%3d Width:%d%%" msgstr "G:%3d D:%3d Stéréo:%d%%" -#: stereo_panner_editor.cc:35 -#, fuzzy -msgid "Stereo Panner" -msgstr "Stéréo" - -#: stereo_panner_editor.cc:49 -#, fuzzy -msgid "Width" -msgstr "largeur" - #: strip_silence_dialog.cc:48 msgid "Strip Silence" msgstr "" @@ -12293,11 +10273,6 @@ msgstr "Mesure:" msgid "beat:" msgstr "Temps:" -#: tempo_dialog.cc:45 tempo_dialog.cc:60 -#, fuzzy -msgid "Pulse note" -msgstr "supprimer la note" - #: tempo_dialog.cc:55 msgid "Edit Tempo" msgstr "Édition du tempo" @@ -12355,16 +10330,6 @@ msgstr "Battements par minute:" msgid "Tempo begins at" msgstr "Le tempo démarre à:" -#: tempo_dialog.cc:240 -#, fuzzy -msgid "incomprehensible pulse note type (%1)" -msgstr "entrée type de note incompréhensible (%1)" - -#: tempo_dialog.cc:266 -#, fuzzy -msgid "Edit Meter" -msgstr "Mode d'édition" - #: tempo_dialog.cc:314 msgid "Note value:" msgstr "Valeur de note:" @@ -12377,11 +10342,6 @@ msgstr "Battements par mesure:" msgid "Meter begins at bar:" msgstr "À partir de la mesure:" -#: tempo_dialog.cc:441 -#, fuzzy -msgid "incomprehensible meter note type (%1)" -msgstr "entrée type de note incompréhensible (%1)" - #: theme_manager.cc:57 msgid "Dark Theme" msgstr "Thème sombre" @@ -12478,11 +10438,6 @@ msgstr "Demi-tons" msgid "Cents:" msgstr "Cents:" -#: time_fx_dialog.cc:122 -#, fuzzy -msgid "Time|Shift" -msgstr "Décalage" - #: time_fx_dialog.cc:146 time_fx_dialog.cc:149 msgid "TimeFXButton" msgstr "TimeFXButton" @@ -12583,16 +10538,6 @@ msgstr "" msgid "VerboseCanvasCursor" msgstr "VerboseCanvasCursor" -#: add_video_dialog.cc:55 -#, fuzzy -msgid "Set Video Track" -msgstr "Ajouter une piste audio" - -#: add_video_dialog.cc:63 -#, fuzzy -msgid "Launch External Video Monitor" -msgstr "Afficher le monitoring vidéo" - #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -12605,26 +10550,6 @@ msgstr "" msgid "VideoServerIndex" msgstr "" -#: add_video_dialog.cc:129 -#, fuzzy -msgid "Video files" -msgstr "Audio" - -#: add_video_dialog.cc:164 -#, fuzzy -msgid "Video Information" -msgstr "Informations sur le fichier audio" - -#: add_video_dialog.cc:167 -#, fuzzy -msgid "Start:" -msgstr "Démarrer" - -#: add_video_dialog.cc:173 -#, fuzzy -msgid "Frame rate:" -msgstr "Échantillonnage:" - #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -12633,11 +10558,6 @@ msgstr "" msgid " %1 fps" msgstr "" -#: editor_videotimeline.cc:146 -#, fuzzy -msgid "Export Successful: %1" -msgstr "Export MIDI: %1" - #: video_timeline.cc:469 msgid "" "Parsing video file info failed. Is the Video Server running? Is the file " @@ -12691,25 +10611,10 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:56 -#, fuzzy -msgid "Transcode/Import Video File " -msgstr "Exporter vers un fichier video..." - -#: transcode_video_dialog.cc:58 -#, fuzzy -msgid "Output File:" -msgstr "Interface de sortie:" - #: transcode_video_dialog.cc:61 export_video_dialog.cc:73 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:63 -#, fuzzy -msgid "Height = " -msgstr "Hauteur" - #: transcode_video_dialog.cc:66 msgid "Manual Override" msgstr "" @@ -12718,11 +10623,6 @@ msgstr "" msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:107 -#, fuzzy -msgid "File Information" -msgstr "Informations sur le fichier audio" - #: transcode_video_dialog.cc:113 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " @@ -12740,11 +10640,6 @@ msgstr "" msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:136 -#, fuzzy -msgid "Duration:" -msgstr "durée (s)" - #: transcode_video_dialog.cc:138 msgid "Codec:" msgstr "" @@ -12753,16 +10648,6 @@ msgstr "" msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:155 -#, fuzzy -msgid "??" -msgstr "???" - -#: transcode_video_dialog.cc:176 -#, fuzzy -msgid "Import Settings" -msgstr "Options" - #: transcode_video_dialog.cc:181 msgid "Do Not Import Video" msgstr "" @@ -12771,11 +10656,6 @@ msgstr "" msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:184 -#, fuzzy -msgid "Import/Transcode Video to Session" -msgstr "Importer depuis une session" - #: transcode_video_dialog.cc:198 msgid "Scale Video: Width = " msgstr "" @@ -12788,16 +10668,6 @@ msgstr "" msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:225 -#, fuzzy -msgid "Extract Audio:" -msgstr "Exporter la région" - -#: transcode_video_dialog.cc:345 -#, fuzzy -msgid "Extracting Audio.." -msgstr "Exporter la région" - #: transcode_video_dialog.cc:348 msgid "Audio Extraction Failed." msgstr "" @@ -12806,16 +10676,6 @@ msgstr "" msgid "Transcoding Video.." msgstr "" -#: transcode_video_dialog.cc:408 -#, fuzzy -msgid "Transcoding Failed." -msgstr "Traduction activés" - -#: transcode_video_dialog.cc:491 -#, fuzzy -msgid "Save Transcoded Video File" -msgstr "Exporter vers un fichier video..." - #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -12824,11 +10684,6 @@ msgstr "" msgid "Server Executable:" msgstr "" -#: video_server_dialog.cc:46 -#, fuzzy -msgid "Server Docroot:" -msgstr "Serveur:" - #: video_server_dialog.cc:52 msgid "Don't show this dialog again. (Reset in Edit->Preferences)." msgstr "" @@ -12844,16 +10699,6 @@ msgstr "" msgid "Listen Address:" msgstr "" -#: video_server_dialog.cc:125 -#, fuzzy -msgid "Listen Port:" -msgstr "position" - -#: video_server_dialog.cc:130 -#, fuzzy -msgid "Cache Size:" -msgstr "taille max" - #: video_server_dialog.cc:136 msgid "" "%1 relies on an external Video Server for the videotimeline.\n" @@ -12883,31 +10728,6 @@ msgstr "" msgid "Continue" msgstr "" -#: utils_videotl.cc:63 -#, fuzzy -msgid "Confirm Overwrite" -msgstr "Confirmer l'écrasement du cliché" - -#: utils_videotl.cc:64 -#, fuzzy -msgid "A file with the same name already exists. Do you want to overwrite it?" -msgstr "Un cliché de ce nom existe déjà. Voulez-vous l'écraser ?" - -#: utils_videotl.cc:74 utils_videotl.cc:90 -#, fuzzy -msgid "Cannot create video folder \"%1\" (%2)" -msgstr "impossible de créer le fichier ardour de l'utilisateur %1 (%2)" - -#: export_video_dialog.cc:66 -#, fuzzy -msgid "Export Video File " -msgstr "Exporter vers un fichier video..." - -#: export_video_dialog.cc:70 -#, fuzzy -msgid "Video:" -msgstr "Mike Start" - #: export_video_dialog.cc:74 msgid "Scale Video (W x H):" msgstr "" @@ -12916,11 +10736,6 @@ msgstr "" msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:80 -#, fuzzy -msgid "Normalize Audio" -msgstr "Normaliser à:" - #: export_video_dialog.cc:81 msgid "2 Pass Encoding" msgstr "" @@ -12929,11 +10744,6 @@ msgstr "" msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:84 -#, fuzzy -msgid "Deinterlace" -msgstr "Centrer sur la tête de lecture" - #: export_video_dialog.cc:85 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" @@ -12942,11 +10752,6 @@ msgstr "" msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:87 -#, fuzzy -msgid "Include Session Metadata" -msgstr "Éditer les méta-données de la session" - #: export_video_dialog.cc:107 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " @@ -12954,26 +10759,6 @@ msgid "" "information." msgstr "" -#: export_video_dialog.cc:117 -#, fuzzy -msgid "Output:" -msgstr "Sorties:" - -#: export_video_dialog.cc:127 -#, fuzzy -msgid "Input:" -msgstr "Entrées:" - -#: export_video_dialog.cc:138 -#, fuzzy -msgid "Audio:" -msgstr "Audio" - -#: export_video_dialog.cc:140 -#, fuzzy -msgid "Master Bus" -msgstr "Bus de sortie à" - #: export_video_dialog.cc:145 msgid "from the %1 session's start to the session's end" msgstr "" @@ -12986,60 +10771,10 @@ msgstr "" msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:184 -#, fuzzy -msgid "Settings:" -msgstr "Destinations" - -#: export_video_dialog.cc:192 -#, fuzzy -msgid "Range:" -msgstr "Intervalle" - -#: export_video_dialog.cc:195 -#, fuzzy -msgid "Preset:" -msgstr "Préréglage" - #: export_video_dialog.cc:198 msgid "Video Codec:" msgstr "" -#: export_video_dialog.cc:201 -#, fuzzy -msgid "Video KBit/s:" -msgstr "Mike Start" - -#: export_video_dialog.cc:204 -#, fuzzy -msgid "Audio Codec:" -msgstr "Mode audio:" - -#: export_video_dialog.cc:207 -#, fuzzy -msgid "Audio KBit/s:" -msgstr "Audio" - -#: export_video_dialog.cc:210 -#, fuzzy -msgid "Audio Samplerate:" -msgstr "Échantillonnage:" - -#: export_video_dialog.cc:387 -#, fuzzy -msgid "Normalizing audio" -msgstr "Normaliser" - -#: export_video_dialog.cc:391 -#, fuzzy -msgid "Exporting audio" -msgstr "Exporter la région" - -#: export_video_dialog.cc:437 -#, fuzzy -msgid "Exporting Audio..." -msgstr "Exporter la région" - #: export_video_dialog.cc:494 msgid "" "Export Video: Cannot query duration of video-file, using duration from " @@ -13050,11 +10785,6 @@ msgstr "" msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" -#: export_video_dialog.cc:562 -#, fuzzy -msgid "Encoding Video..." -msgstr "Traduction activés" - #: export_video_dialog.cc:581 msgid "Export Video: Video input file cannot be read." msgstr "" @@ -13067,16 +10797,6 @@ msgstr "" msgid "Encoding Video.. Pass 2/2" msgstr "" -#: export_video_dialog.cc:779 -#, fuzzy -msgid "Transcoding failed." -msgstr "Traduction activés" - -#: export_video_dialog.cc:948 export_video_dialog.cc:968 -#, fuzzy -msgid "Save Exported Video File" -msgstr "Exporter vers un fichier video..." - #: export_video_infobox.cc:30 msgid "Video Export Info" msgstr "" @@ -13097,2296 +10817,3 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" - -#~ msgid "-Inf" -#~ msgstr "-inf" - -#~ msgid "slowest" -#~ msgstr "Très lent" - -#~ msgid "slow" -#~ msgstr "Lent" - -#~ msgid "fast" -#~ msgstr "Rapide" - -#~ msgid "faster" -#~ msgstr "Très rapide" - -#~ msgid "fastest" -#~ msgstr "Ultra rapide" - -#~ msgid "Search returned no results." -#~ msgstr "La recherche n'a pas retourné de résultats." - -#~ msgid "What would you like to do ?" -#~ msgstr "Que voulez-vous faire?" - -#~ msgid "Control surfaces" -#~ msgstr "Surfaces de contrôle" - -#~ msgid "Connect" -#~ msgstr "Connecter" - -#~ msgid "Mixer on Top" -#~ msgstr "Console de mixage au premier plan" - -#~ msgid "Add Audio Track" -#~ msgstr "Ajouter une piste audio" - -#~ msgid "Add Audio Bus" -#~ msgstr "Ajouter un bus audio" - -#~ msgid "Add MIDI Track" -#~ msgstr "Ajouter une piste MIDI" - -#, fuzzy -#~ msgid "Hid" -#~ msgstr "Cacher" - -#~ msgid "Searching, click Stop to cancel" -#~ msgstr "Recherche en cours, Cliquez sur Stop pour annuler" - -#~ msgid "Translations disabled" -#~ msgstr "Traductions désactivées" - -#~ msgid "You must restart %1 for this to take effect." -#~ msgstr "%1 doit être redémarré pour que cette action soit prise en compte." - -#~ msgid "Enable Translations" -#~ msgstr "Activer les traductions" - -#~ msgid "Locate to Range Mark" -#~ msgstr "placer la tête de lecture ici" - -#~ msgid "Play from Range Mark" -#~ msgstr "Lire depuis ce repère" - -#~ msgid "Playback/Recording on 1 Device" -#~ msgstr "Lecture/Enregistrement sur 1 appareil" - -#~ msgid "Playback/Recording on 2 Devices" -#~ msgstr "Lecture/Enregistrement sur 2 appareils" - -#, fuzzy -#~ msgid "Bank:" -#~ msgstr "Banque" - -#, fuzzy -#~ msgid "Program:" -#~ msgstr "Programme" - -#, fuzzy -#~ msgid "Channel:" -#~ msgstr "Canaux:" - -#, fuzzy -#~ msgid "Lck" -#~ msgstr "Verrouillé" - -#~ msgid "Use a monitor bus (allows AFL/PFL and more control)" -#~ msgstr "" -#~ "Utiliser un bus de monitoring (permet un plus grand contrôle ainsi que " -#~ "l'utilisation de AFL/PFL)" - -#~ msgid "Subframes per frame" -#~ msgstr "Sous-trames par trame" - -#~ msgid "80" -#~ msgstr "80" - -#~ msgid "100" -#~ msgstr "100" - -#~ msgid "gTortnam" -#~ msgstr "gTortnam" - -#, fuzzy -#~ msgid "could not create a new mixed track" -#~ msgstr "ne peut créer une nouvelle piste MIDI" - -#, fuzzy -#~ msgid "could not create new audio bus" -#~ msgid_plural "could not create %1 new audio busses" -#~ msgstr[0] "impossible de créer une nouvelle piste audio" -#~ msgstr[1] "impossible de créer une nouvelle piste audio" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were not in use and \n" -#~ "have been moved to: %2\n" -#~ "\n" -#~ "After a restart of %5\n" -#~ "\n" -#~ "Session -> Clean-up -> Flush Wastebasket\n" -#~ "\n" -#~ "will release an additional %3 %4bytes of disk space.\n" -#~ msgstr "" -#~ "Les fichiers suivant n'étaient plus utilisés\n" -#~ "par %1 et ont été déplacés dans:\n" -#~ "\n" -#~ "%2\n" -#~ "\n" -#~ "Après avoir redémarré Ardour,\n" -#~ "\n" -#~ "Session -> Nettoyer -> Vider la corbeille \n" -#~ "libérera un espace supplémentaire de\n" -#~ "%3 %4octets.\n" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were deleted from %2,\n" -#~ "releasing %3 %4bytes of disk space" -#~ msgstr "" -#~ "Les fichiers %1 suivants ont été éffacés\n" -#~ "de %2,\n" -#~ "libérant %3 %4octets d'espace disque." - -#~ msgid "could only create %1 of %2 new audio %3" -#~ msgstr "Ardour n'a pu créer que %1 %3 audio au lieu de %2" - -#, fuzzy -#~ msgid "Always Play Range Selection (if any)" -#~ msgstr "Toujours lire l'intervalle ou la sélection" - -#~ msgid "Start playback after any locate" -#~ msgstr "Démarrer quand la tête de lecture est déplacée" - -#, fuzzy -#~ msgid "Always Play Range" -#~ msgstr "Lire l'intervalle" - -#~ msgid "Select/Move Objects" -#~ msgstr "Sélectionner/déplacer des objets" - -#~ msgid "Select/Move Ranges" -#~ msgstr "Sélectionner/déplacer des intervalles" - -#~ msgid "Edit Region Contents (e.g. notes)" -#~ msgstr "Éditer le contenu de la région (les notes)" - -#, fuzzy -#~ msgid "Link Object / Range Tools" -#~ msgstr "outil d'objet" - -#, fuzzy -#~ msgid "editing|E" -#~ msgstr "Édition" - -#, fuzzy -#~ msgid "Sharing Editing?" -#~ msgstr "Changer le point d'édition" - -#~ msgid "Disable plugins during recording" -#~ msgstr "Arrêt des plugins lors de l'enregistrement" - -#, fuzzy -#~ msgid "Visual|Interface" -#~ msgstr "Interface:" - -#~ msgid "Editing" -#~ msgstr "Édition" - -#~ msgid "Timecode source shares sample clock with audio interface" -#~ msgstr "Le Timecode se synchronise sur l'interface audio" - -#~ msgid "Timecode Offset Negative" -#~ msgstr "Décalage négatif" - -#, fuzzy -#~ msgid "Crossfades are created" -#~ msgstr "Fondus enchaînés" - -#, fuzzy -#~ msgid "to span entire overlap" -#~ msgstr "Long (toute la zone de recouvrement)" - -#, fuzzy -#~ msgid "use existing region fade shape" -#~ msgstr "Utiliser une session existante comme modèle" - -#, fuzzy -#~ msgid "Short crossfade length" -#~ msgstr "durée du fondu court (ms)" - -#, fuzzy -#~ msgid "Create crossfades automatically" -#~ msgstr "créé automatiquement" - -#~ msgid "Add files:" -#~ msgstr "Ajouter des fichiers:" - -#~ msgid "Mapping:" -#~ msgstr "Placement:" - -#~ msgid "" -#~ "Russian:\n" -#~ "\t Igor Blinov \n" -#~ msgstr "" -#~ "Russe:\n" -#~ "\t Igor Blinov \n" - -#~ msgid "Add MIDI Controller Track" -#~ msgstr "Ajouter une Piste de Contrôle MIDI" - -#~ msgid "%1 could not start JACK" -#~ msgstr "%1 n'a pas pu démarrer JACK" - -#~ msgid "" -#~ "There are several possible reasons:\n" -#~ "\n" -#~ "1) You requested audio parameters that are not supported..\n" -#~ "2) JACK is running as another user.\n" -#~ "\n" -#~ "Please consider the possibilities, and perhaps try different parameters." -#~ msgstr "" -#~ "Il y a plusieurs raisons possibles:\n" -#~ "\n" -#~ "1) Vous avez demandé des réglages audio non pris en charge.\n" -#~ "2) JACK tourne sous un autre utilisateur.\n" -#~ "\n" -#~ "Vérifiez les deux points ci-dessus, et essayez peut-être d'autres " -#~ "paramètres." - -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "snapshot names may not contain a '\\' character" -#~ msgstr "" -#~ "Afin d'assurer la compatibilité entre différents\n" -#~ "systèmes, les noms de cliché ne peuvent pas\n" -#~ "utiliser le caractère '\\' " - -#, fuzzy -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "snapshot names may not contain a ':' character" -#~ msgstr "" -#~ "Afin d'assurer la compatibilité entre différents\n" -#~ "systèmes, les noms de cliché ne peuvent pas\n" -#~ "utiliser le caractère '/' " - -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "session names may not contain a '\\' character" -#~ msgstr "" -#~ "Afin d'assurer la compatibilité sur différents systèmes\n" -#~ "les noms de sessions ne peuvent pas comporter le signe '\\'" - -#~ msgid "Sorry, MIDI Busses are not supported at this time." -#~ msgstr "Les Bus MIDI ne sont actuellement pas supportés." - -#~ msgid "Mixer" -#~ msgstr "Mixage" - -#~ msgid "Show All Crossfades" -#~ msgstr "Afficher tous les fondus enchaînés" - -#~ msgid "Edit Crossfade" -#~ msgstr "Édition du fondu enchaîné" - -#~ msgid "Out (dry)" -#~ msgstr "descente (brute)" - -#~ msgid "In (dry)" -#~ msgstr "montée (brute)" - -#~ msgid "With Pre-roll" -#~ msgstr "Avec pré-roll" - -#~ msgid "With Post-roll" -#~ msgstr "Avec post-roll" - -#~ msgid "Edit crossfade" -#~ msgstr "Édition du fondu enchaîné" - -#~ msgid "Route Groups" -#~ msgstr "Groupes" - -#~ msgid "Unmute" -#~ msgstr "Réactiver" - -#~ msgid "Convert to Short" -#~ msgstr "Convertir en fondu rapide" - -#~ msgid "Convert to Full" -#~ msgstr "Convertir en fondu long" - -#~ msgid "Nudge Entire Track Backward" -#~ msgstr "Décaler toute la piste à gauche" - -#~ msgid "Nudge Track After Edit Point Backward" -#~ msgstr "Décaler la piste à gauche après le point d'édition" - -#~ msgid "Nudge Region/Selection Backwards" -#~ msgstr "Décaler vers la gauche (région ou sélection)" - -#~ msgid "Undo" -#~ msgstr "Annuler" - -#~ msgid "Jump Forward to Mark" -#~ msgstr "Aller au repère suivant" - -#~ msgid "Jump Backward to Mark" -#~ msgstr "Aller au repère précédent" - -#~ msgid "Nudge Next Backward" -#~ msgstr "Décaler suivant vers la gauche" - -#, fuzzy -#~ msgid "Forward to Grid" -#~ msgstr "Aller au repère suivant" - -#, fuzzy -#~ msgid "Backward to Grid" -#~ msgstr "Aller au repère précédent" - -#~ msgid "Move Backwards to Transient" -#~ msgstr "Reculer à l'éphémère précédent" - -#~ msgid "Add Range Marker(s)" -#~ msgstr "Ajoute des repères d'intervalle" - -#~ msgid "Envelope Visible" -#~ msgstr "Enveloppe Visible" - -#~ msgid "Nudge Backward by Capture Offset" -#~ msgstr "Décaler de l'offset de capture vers la gauche" - -#, fuzzy -#~ msgid "Rel" -#~ msgstr "Définir" - -#, fuzzy -#~ msgid "Sel" -#~ msgstr "Définir" - -#~ msgid "E" -#~ msgstr "E" - -#~ msgid "" -#~ "This route cannot be frozen because it has more outputs than inputs. You " -#~ "can fix this by increasing the number of inputs." -#~ msgstr "" -#~ "Ce canal ne peut pas être geler car il possède plus de sorties que " -#~ "d'entrées. Vous pouvez résoudre le problème en augmentant le nombre " -#~ "d'entrées." - -#, fuzzy -#~ msgid "region gain envelope visible" -#~ msgstr "Enveloppe du gain Visible" - -#~ msgid "time stretch" -#~ msgstr "étirement temporel" - -#~ msgid "Realtime Priority" -#~ msgstr "Priorité temps réel" - -#~ msgid "Input channels:" -#~ msgstr "Canaux d'entrée:" - -#~ msgid "Output channels:" -#~ msgstr "Canaux de sortie:" - -#~ msgid "Advanced options" -#~ msgstr "Options avancées" - -#~ msgid "Include in Filename(s):" -#~ msgstr "Ajouter au nom du fichier:" - -#~ msgid "New From" -#~ msgstr "Grouper les pistes" - -#, fuzzy -#~ msgid "Move tempo and meter changes" -#~ msgstr "changt source VU-mètre" - -#~ msgid "Option-" -#~ msgstr "Option-" - -#~ msgid "Shift-" -#~ msgstr "Maj-" - -#~ msgid "Control-" -#~ msgstr "Ctrl-" - -#~ msgid "SCMS" -#~ msgstr "SCMS" - -#, fuzzy -#~ msgid "Set value to playhead" -#~ msgstr "Sélectionner tout après la tête de lecture" - -#~ msgid "Jump to the end of this range" -#~ msgstr "Aller à la fin de cet intervalle" - -#~ msgid "Jump to the start of this range" -#~ msgstr "Aller au début de cet intervalle" - -#, fuzzy -#~ msgid "End time" -#~ msgstr "Rogner la fin" - -#~ msgid "Could not create user configuration directory" -#~ msgstr "Impossible de créer le dossier de configuration de l'utilisateur" - -#~ msgid "MIDI Thru" -#~ msgstr "MIDI Thru" - -#~ msgid "signal" -#~ msgstr "signal" - -#~ msgid "close" -#~ msgstr "fermer" - -#~ msgid "New send" -#~ msgstr "Nouveau départ" - -#~ msgid "New Send ..." -#~ msgstr "Nouveau départ..." - -#~ msgid "Controls..." -#~ msgstr "Contrôles..." - -#~ msgid "Legato" -#~ msgstr "Legato" - -#~ msgid "Groove" -#~ msgstr "Groove" - -#~ msgid "Quantize Type" -#~ msgstr "Type de quantisation" - -#, fuzzy -#~ msgid "Secondary clock delta to edit cursor" -#~ msgstr "delta d'Horloge Secondaire au point d'édition" - -#~ msgid "Route active state" -#~ msgstr "Activation" - -#~ msgid "" -#~ "Left-click to invert (phase reverse) all channels of this track. Right-" -#~ "click to show menu." -#~ msgstr "" -#~ "Clic gauche pour inverser la phase de tous les canaux de cette piste. " -#~ "Clic droit pour afficher le menu." - -#, fuzzy -#~ msgid "Crossfades active" -#~ msgstr "Fondus enchaînés" - -#, fuzzy -#~ msgid "Layering model" -#~ msgstr "Empilement des régions" - -#, fuzzy -#~ msgid "later is higher" -#~ msgstr "ultérieures au dessus" - -#, fuzzy -#~ msgid "most recently moved or added is higher" -#~ msgstr "déplacées/ajoutées au dessus" - -#, fuzzy -#~ msgid "most recently added is higher" -#~ msgstr "ajoutées au dessus" - -#~ msgid "Broadcast WAVE metadata" -#~ msgstr "méta-données Broadcast WAVE" - -#, fuzzy -#~ msgid "Page:" -#~ msgstr "Utilisation:" - -#~ msgid "" -#~ "(You can change this preference at any time, via the " -#~ "Preferences dialog)" -#~ msgstr "" -#~ "(Ce choix peut être modifié à tout moment dans le menu " -#~ "Préférences)" - -#~ msgid "second (2)" -#~ msgstr "Blanche (2)" - -#~ msgid "eighth (8)" -#~ msgstr "Croche (8)" - -#~ msgid "garbaged note type entry (%1)" -#~ msgstr "entrée type de note endommagée (%1)" - -#~ msgid "Strict Linear" -#~ msgstr "Linéaire strict" - -#~ msgid "no style found for %1, using red" -#~ msgstr "Aucun style trouvé pour %1 ; utilisation du rouge" - -#~ msgid "unknown style attribute %1 requested for color; using \"red\"" -#~ msgstr "" -#~ "Attribut de style inconnu « %1 » demandé pour la couleur ; Utilisation du " -#~ "rouge" - -#~ msgid "" -#~ "pre\n" -#~ "roll" -#~ msgstr "" -#~ "pré\n" -#~ "roll" - -#~ msgid "" -#~ "post\n" -#~ "roll" -#~ msgstr "" -#~ "post\n" -#~ "roll" - -#~ msgid "" -#~ "time\n" -#~ "master" -#~ msgstr "" -#~ "Horloge\n" -#~ "maître" - -#~ msgid "AUDITION" -#~ msgstr "EN ÉCOUTE" - -#~ msgid "SOLO" -#~ msgstr "SOLO" - -#~ msgid "%.1f kHz / %4.1f ms" -#~ msgstr "%.1f kHz / %4.1f ms" - -#~ msgid "% kHz / %4.1f ms" -#~ msgstr "% kHz/%4.1f ms" - -#~ msgid "DSP: %5.1f%%" -#~ msgstr "DSP: %5.1f%%" - -#~ msgid "Buffers p:%%% c:%%%" -#~ msgstr "Buffers: (lect=%%% enr=%%%)" - -#~ msgid "Disk: 24hrs+" -#~ msgstr "Reste: +24h" - -#~ msgid "Does %1 control the time?" -#~ msgstr "Contrôle de l'horloge par %1" - -#~ msgid "External" -#~ msgstr "Externe" - -#~ msgid "EXT" -#~ msgstr "EXT" - -#~ msgid "FPS" -#~ msgstr "FPS" - -#, fuzzy -#~ msgid " " -#~ msgstr "% " - -#~ msgid "automation" -#~ msgstr "automatisation" - -#, fuzzy -#~ msgid "Delete Unused" -#~ msgstr "Raccourci pour l'effacement : utiliser la touche" - -#~ msgid "No devices found for driver \"%1\"" -#~ msgstr "Aucun périphérique trouvé pour le pilote \"%1\"" - -#~ msgid "MUTE" -#~ msgstr "MUET" - -#~ msgid "Exclusive" -#~ msgstr "Exclusif" - -#~ msgid "Solo/Mute" -#~ msgstr "Solo/Muet" - -#~ msgid "Activate all" -#~ msgstr "Activer tout" - -#~ msgid "post-fader but before post-fader processors" -#~ msgstr "avant les traitements post-fader" - -#~ msgid "A track already exists with that name" -#~ msgstr "Une piste portant le même nom existe déjà" - -#~ msgid "r" -#~ msgstr "r" - -#~ msgid "MIDI Note Overlaps" -#~ msgstr "Recouvrement des notes MIDI" - -#~ msgid "Password:" -#~ msgstr "Mot de passe:" - -#~ msgid "Cancelling.." -#~ msgstr "Annulation..." - -#~ msgid "unknown track height name \"%1\" in XML GUI information" -#~ msgstr "" -#~ "nom de hauteur de piste inconnu \"%1\" dans les données XML de l'IHM" - -#~ msgid "Off" -#~ msgstr "(rien)" - -#~ msgid "Smaller" -#~ msgstr "Petit" - -#~ msgid "Processing file %2 of %3 (%1) from timespan %4 of %5" -#~ msgstr "Traitement du fichier %2 sur %3 (%1) du laps de temps %4 sur %5" - -#~ msgid "Encoding file %2 of %3 (%1) from timespan %4 of %5" -#~ msgstr "Encodage du fichier %2 sur %3 (%1) du laps de temps %4 sur %5" - -#~ msgid "Bounce" -#~ msgstr "Copier vers un fichier audio (bounce)" - -#~ msgid "quit" -#~ msgstr "quitter" - -#~ msgid "session" -#~ msgstr "La session" - -#~ msgid "snapshot" -#~ msgstr "Le cliché" - -#~ msgid "" -#~ "Welcome to %1.\n" -#~ "\n" -#~ "The program will take a bit longer to start up\n" -#~ "while the system fonts are checked.\n" -#~ "\n" -#~ "This will only be done once, and you will\n" -#~ "not see this message again\n" -#~ msgstr "" -#~ "Bienvenue dans %1.\n" -#~ "\n" -#~ "Le programme va prendre un peu de temps à démarrer,\n" -#~ "le temps que les polices de caractères soient analysées.\n" -#~ "\n" -#~ "Cette opération ne sera effectué qu'une fois,\n" -#~ "et vous ne verrez plus ce message par la suite.\n" - -#, fuzzy -#~ msgid "Default Channel" -#~ msgstr "Séparer les voies" - -#, fuzzy -#~ msgid "%1 compound-%2 (%3)" -#~ msgstr "%1: %2 (par %3)" - -#~ msgid "fixed time region copy" -#~ msgstr "Copie verticale de région" - -#~ msgid "region copy" -#~ msgstr "Copie de région" - -#~ msgid "timestretch" -#~ msgstr "déformation temporelle" - -#, fuzzy -#~ msgid "Save Mix Template" -#~ msgstr "Enregistrer comme modèle..." - -#~ msgid "Clean Up" -#~ msgstr "Nettoyer" - -#~ msgid "Select semitones or %%-age for speed display" -#~ msgstr "Vitesse affichée en pourcentage ou en demi-tons" - -#~ msgid "Current transport speed" -#~ msgstr "Vitesse de lecture actuelle" - -#~ msgid "stop" -#~ msgstr "Stop" - -#~ msgid "-0.55" -#~ msgstr "-0.55" - -#~ msgid "Cleanup" -#~ msgstr "Nettoyer" - -#, fuzzy -#~ msgid "DSP: 100.0%" -#~ msgstr "DSP=%5.1f%%" - -#~ msgid "ST" -#~ msgstr "½ton" - -#~ msgid "Extend Range to End of Region" -#~ msgstr "étendre à la fin de la région" - -#~ msgid "Extend Range to Start of Region" -#~ msgstr "étendre au début de la région" - -#, fuzzy -#~ msgid "Key Mouse" -#~ msgstr "Souris" - -#~ msgid "goto" -#~ msgstr "aller à" - -#, fuzzy -#~ msgid "Center Active Marker" -#~ msgstr "Enlever le repère" - -#~ msgid "Brush at Mouse" -#~ msgstr "brosse à la souris" - -#~ msgid "extend selection" -#~ msgstr "étendre la sélection" - -#~ msgid "Clear tempo" -#~ msgstr "Effacer le tempo" - -#~ msgid "Clear meter" -#~ msgstr "Effacer les types de mesure" - -#~ msgid "input" -#~ msgstr "entrée" - -#, fuzzy -#~ msgid "Inserts, sends & plugins:" -#~ msgstr "Insertions, départs et plugins pré-atténuation" - -#, fuzzy -#~ msgid "" -#~ "Do you really want to remove bus \"%1\" ?\n" -#~ "\n" -#~ "You may also lose the playlist used by this track.\n" -#~ "\n" -#~ "(This action cannot be undone, and the session file will be overwritten)" -#~ msgstr "" -#~ "Voulez-vous vraiment supprimer la piste « %1 » ?\n" -#~ "Vous pourrez aussi perdre la liste de lecture utilisée par cette piste.\n" -#~ "(cela ne pourra pas être annulé)" - -#, fuzzy -#~ msgid "insert file" -#~ msgstr "Insérer un fichier audio" - -#~ msgid "region drag" -#~ msgstr "Déplacement de région" - -#~ msgid "Drag region brush" -#~ msgstr "brosse de glissé-déposé de région" - -#~ msgid "selection grab" -#~ msgstr "capture de sélection" - -#~ msgid "region fill" -#~ msgstr "remplissage" - -#~ msgid "fill selection" -#~ msgstr "remplir la sélection" - -#~ msgid "duplicate region" -#~ msgstr "dupliquer la région" - -#, fuzzy -#~ msgid "C" -#~ msgstr "CD" - -#~ msgid "link" -#~ msgstr "lier" - -#~ msgid "panning link control" -#~ msgstr "liaison gauche–droite du panoramique" - -#~ msgid "panning link direction" -#~ msgstr "direction de la liaison" - -#~ msgid "Reset all" -#~ msgstr "Réinitialiser tout" - -#, fuzzy -#~ msgid "Set tempo map" -#~ msgstr "Définir la carte du tempo" - -#~ msgid "" -#~ "Ardour comes with ABSOLUTELY NO WARRANTY\n" -#~ "This is free software, and you are welcome to redistribute it\n" -#~ "under certain conditions; see the file COPYING for details.\n" -#~ msgstr "" -#~ "Ardour est distribué SANS AUCUNE GARANTIE\n" -#~ "C'est un logiciel libre et vous êtes encouragé à le distribuer\n" -#~ "sous certaines conditions ; voir le fichier COPYING pour les détails.\n" - -#~ msgid "programmer error: %1 %2" -#~ msgstr "programmer error: %1 %2" - -#~ msgid "Unknown action name: %1" -#~ msgstr "Nom d'action inconnu : %1" - -#~ msgid "Manual Setup" -#~ msgstr "Config manuelle" - -#~ msgid "ardour: add track/bus" -#~ msgstr "ardour : ajouter piste ou bus" - -#~ msgid "Name (template)" -#~ msgstr "Nom (modèle)" - -#~ msgid "ardour: save session?" -#~ msgstr "ardour : enregistrer la session ?" - -#~ msgid "Ardour sessions" -#~ msgstr "Sessions Ardour" - -#~ msgid "Patience is a virtue.\n" -#~ msgstr "La patience est une vertu.\n" - -#~ msgid "" -#~ "You do not have write access to this session.\n" -#~ "This prevents the session from being loaded." -#~ msgstr "" -#~ "Vous n'avez pas les droits d'écriture sur cette session.\n" -#~ "La session ne peut pas être chargée." - -#~ msgid "ardour: cleanup" -#~ msgstr "ardour : nettoyage" - -#~ msgid "files were" -#~ msgstr " " - -#~ msgid "file was" -#~ msgstr " " - -#~ msgid "Ardour key bindings file not found at \"%1\" or contains errors." -#~ msgstr "" -#~ "Le fichier des raccourcis claviers d'Ardour est absent de \"%1\" ou il " -#~ "contient des erreurs." - -#~ msgid "Import/Export" -#~ msgstr "Import/Export" - -#~ msgid "KeyMouse Actions" -#~ msgstr "Souris" - -#~ msgid "Data" -#~ msgstr "Contenu" - -#~ msgid "Export selection to audiofile..." -#~ msgstr "la sélection vers un fichier audio..." - -#~ msgid "Export range markers to audiofile..." -#~ msgstr "les intervalles vers des fichiers audio..." - -#~ msgid "Track/Bus Inspector" -#~ msgstr "Pistes et bus..." - -#~ msgid "Toggle Record Enable Track2" -#~ msgstr "Bascule Enregistrement piste 2" - -#~ msgid "Toggle Record Enable Track3" -#~ msgstr "Bascule Enregistrement piste 3" - -#~ msgid "Toggle Record Enable Track4" -#~ msgstr "Bascule Enregistrement piste 4" - -#~ msgid "Toggle Record Enable Track5" -#~ msgstr "Bascule Enregistrement piste 5" - -#~ msgid "Toggle Record Enable Track6" -#~ msgstr "Bascule Enregistrement piste 6" - -#~ msgid "Toggle Record Enable Track7" -#~ msgstr "Bascule Enregistrement piste 7" - -#~ msgid "Toggle Record Enable Track8" -#~ msgstr "Bascule Enregistrement piste 8" - -#~ msgid "Toggle Record Enable Track9" -#~ msgstr "Bascule Enregistrement piste 9" - -#~ msgid "Toggle Record Enable Track10" -#~ msgstr "Bascule Enregistrement piste 10" - -#~ msgid "Toggle Record Enable Track11" -#~ msgstr "Bascule Enregistrement piste 11" - -#~ msgid "Toggle Record Enable Track12" -#~ msgstr "Bascule Enregistrement piste 12" - -#~ msgid "Toggle Record Enable Track13" -#~ msgstr "Bascule Enregistrement piste 13" - -#~ msgid "Toggle Record Enable Track14" -#~ msgstr "Bascule Enregistrement piste 14" - -#~ msgid "Toggle Record Enable Track15" -#~ msgstr "Bascule Enregistrement piste 15" - -#~ msgid "Toggle Record Enable Track16" -#~ msgstr "Bascule Enregistrement piste 16" - -#~ msgid "Toggle Record Enable Track17" -#~ msgstr "Bascule Enregistrement piste 17" - -#~ msgid "Toggle Record Enable Track18" -#~ msgstr "Bascule Enregistrement piste 18" - -#~ msgid "Toggle Record Enable Track19" -#~ msgstr "Bascule Enregistrement piste 19" - -#~ msgid "Toggle Record Enable Track20" -#~ msgstr "Bascule Enregistrement piste 20" - -#~ msgid "Toggle Record Enable Track21" -#~ msgstr "Bascule Enregistrement piste 21" - -#~ msgid "Toggle Record Enable Track22" -#~ msgstr "Bascule Enregistrement piste 22" - -#~ msgid "Toggle Record Enable Track23" -#~ msgstr "Bascule Enregistrement piste 23" - -#~ msgid "Toggle Record Enable Track24" -#~ msgstr "Bascule Enregistrement piste 24" - -#~ msgid "Toggle Record Enable Track25" -#~ msgstr "Bascule Enregistrement piste 25" - -#~ msgid "Toggle Record Enable Track26" -#~ msgstr "Bascule Enregistrement piste 26" - -#~ msgid "Toggle Record Enable Track27" -#~ msgstr "Bascule Enregistrement piste 27" - -#~ msgid "Toggle Record Enable Track28" -#~ msgstr "Bascule Enregistrement piste 28" - -#~ msgid "Toggle Record Enable Track29" -#~ msgstr "Bascule Enregistrement piste 29" - -#~ msgid "Toggle Record Enable Track30" -#~ msgstr "Bascule Enregistrement piste 30" - -#~ msgid "Toggle Record Enable Track31" -#~ msgstr "Bascule Enregistrement piste 31" - -#~ msgid "Toggle Record Enable Track32" -#~ msgstr "Bascule Enregistrement piste 32" - -#~ msgid "Use OSC" -#~ msgstr "Utiliser OSC (OpenSound Control)" - -#~ msgid "Stop transport at session end" -#~ msgstr "Stopper la lecture en fin de session" - -#~ msgid "Region equivalents overlap" -#~ msgstr "Chevauch. des régions équivalentes" - -#~ msgid "Enable Editor Meters" -#~ msgstr "Activer les VU-mètres de l'éditeur" - -#~ msgid "Use DC bias" -#~ msgstr "Utiliser la tension de polarisation" - -#~ msgid "Hardware monitoring" -#~ msgstr "Monitoring matériel" - -#~ msgid "Software monitoring" -#~ msgstr "Monitoring logiciel" - -#~ msgid "External monitoring" -#~ msgstr "Monitoring externe" - -#~ msgid "Solo in-place" -#~ msgstr "Solo en direct" - -#~ msgid "Auto-connect inputs to physical inputs" -#~ msgstr "entrées audio → pistes Ardour" - -#~ msgid "Manually connect inputs" -#~ msgstr "Pas d'entrées automatiques" - -#~ msgid "Auto-connect outputs to physical outs" -#~ msgstr "Pistes Ardour → sorties physiques" - -#~ msgid "" -#~ "programming error: unknown solo model in ARDOUR_UI::set_solo_model: %1" -#~ msgstr "" -#~ "programming error: unknown solo model in ARDOUR_UI::set_solo_model: %1" - -#~ msgid "" -#~ "programming error: unknown remote model in ARDOUR_UI::set_remote_model: %1" -#~ msgstr "" -#~ "programming error: unknown remote model in ARDOUR_UI::set_remote_model: %1" - -#~ msgid "" -#~ "programming error: unknown monitor model in ARDOUR_UI::set_monitor_model: " -#~ "%1" -#~ msgstr "" -#~ "programming error: unknown monitor model in ARDOUR_UI::set_monitor_model: " -#~ "%1" - -#~ msgid "" -#~ "programming error: unknown denormal model in ARDOUR_UI::" -#~ "set_denormal_model: %1" -#~ msgstr "" -#~ "programming error: unknown denormal model in ARDOUR_UI::" -#~ "set_denormal_model: %1" - -#~ msgid "" -#~ "programming error: unknown file header format passed to ARDOUR_UI::" -#~ "map_file_data_format: %1" -#~ msgstr "" -#~ "programming error: unknown file header format passed to ARDOUR_UI::" -#~ "map_file_data_format: %1" - -#~ msgid "" -#~ "programming error: unknown file data format passed to ARDOUR_UI::" -#~ "map_file_data_format: %1" -#~ msgstr "" -#~ "programming error: unknown file data format passed to ARDOUR_UI::" -#~ "map_file_data_format: %1" - -#~ msgid "NAME:" -#~ msgstr "NOM :" - -#~ msgid "play" -#~ msgstr "lire" - -#~ msgid "START:" -#~ msgstr "début :" - -#~ msgid "END:" -#~ msgstr "fin :" - -#~ msgid "LENGTH:" -#~ msgstr "longueur :" - -#~ msgid "Show waveforms" -#~ msgstr "Afficher les formes d'ondes" - -#~ msgid "gain" -#~ msgstr "gain" - -#~ msgid "pan" -#~ msgstr "panoramique" - -#~ msgid "h" -#~ msgstr "h" - -#~ msgid "track height" -#~ msgstr "hauteur de piste" - -#~ msgid "clear track" -#~ msgstr "effacer la piste" - -#~ msgid "pixbuf" -#~ msgstr "pixbuf" - -#~ msgid "the pixbuf" -#~ msgstr "le pixbuf" - -#~ msgid "x" -#~ msgstr "x" - -#~ msgid "y" -#~ msgstr "y" - -#~ msgid "the width" -#~ msgstr "la largeur" - -#~ msgid "drawwidth" -#~ msgstr "largeur" - -#~ msgid "drawn width" -#~ msgstr "largeur dessinée" - -#~ msgid "height" -#~ msgstr "hauteur" - -#~ msgid "anchor" -#~ msgstr "ancre" - -#~ msgid "the anchor" -#~ msgstr "l'ancre" - -#~ msgid "ardour: x-fade edit" -#~ msgstr "ardour : édition de fondu enchaîné" - -#~ msgid "Link Region/Track Selection" -#~ msgstr "Lier la sélection région/piste" - -#~ msgid "Locate to Mark 2" -#~ msgstr "Se placer au repère 2" - -#~ msgid "Locate to Mark 3" -#~ msgstr "Se placer au repère 3" - -#~ msgid "Locate to Mark 4" -#~ msgstr "Se placer au repère 4" - -#~ msgid "Locate to Mark 5" -#~ msgstr "Se placer au repère 5" - -#~ msgid "Locate to Mark 6" -#~ msgstr "Se placer au repère 6" - -#~ msgid "Locate to Mark 7" -#~ msgstr "Se placer au repère 7" - -#~ msgid "Locate to Mark 8" -#~ msgstr "Se placer au repère 8" - -#~ msgid "Locate to Mark 9" -#~ msgstr "Se placer au repère 9" - -#~ msgid "to Center" -#~ msgstr "vers le centre" - -#~ msgid "Start to edit point" -#~ msgstr "Début au point d'édition" - -#~ msgid "Edit point to end" -#~ msgstr "Point d'édition à la fin" - -#~ msgid "Set Loop From Region" -#~ msgstr "Définir la boucle depuis la région" - -#~ msgid "Set Punch From Region" -#~ msgstr "Définir le punch depuis la région" - -#~ msgid "Toggle Fade Out Active" -#~ msgstr "Commuter la descente" - -#~ msgid "Align Regions End" -#~ msgstr "aligner la fin des régions" - -#~ msgid "Align Regions End Relative" -#~ msgstr "aligner relativement la fin des régions" - -#~ msgid "Align Regions Sync Relative" -#~ msgstr "aligner relativement les synchro des régions" - -#~ msgid "Mute/Unmute Region" -#~ msgstr "région muette/active" - -#~ msgid "Duplicate Region" -#~ msgstr "Dupliquer la région" - -#~ msgid "Multi-Duplicate Region" -#~ msgstr "Multi-dupliquer la région" - -#~ msgid "Reverse Region" -#~ msgstr "inverser la région" - -#~ msgid "Split At Edit Point" -#~ msgstr "Séparer au point d'édition" - -#~ msgid "Snap to SMPTE frame" -#~ msgstr "aligner sur la trame SMPTE" - -#~ msgid "Snap to SMPTE seconds" -#~ msgstr "aligner sur les secondes SMPTE" - -#~ msgid "Snap to SMPTE minutes" -#~ msgstr "aligner sur les minutes SMPTE" - -#~ msgid "Add External Audio" -#~ msgstr "importer des fichiers audio" - -#~ msgid "Show Waveforms" -#~ msgstr "formes d'onde" - -#~ msgid "Show Waveforms While Recording" -#~ msgstr "formes d'onde pendant l'enregistr." - -#~ msgid "- 0.1%" -#~ msgstr "- 0.1%" - -#~ msgid "100 per frame" -#~ msgstr "100 par trame" - -#~ msgid "Configuraton is using unhandled subframes per frame value: %1" -#~ msgstr "" -#~ "La configuration utilise une valeur non prise en charge de sous-trames " -#~ "par trame : %1" - -#~ msgid "Add existing audio" -#~ msgstr "Ajouter l'audio existant" - -#~ msgid "importing %1" -#~ msgstr "importation de %1" - -#~ msgid "SMPTE Frames" -#~ msgstr "trames SMPTE" - -#~ msgid "SMPTE Seconds" -#~ msgstr "secondes SMPTE" - -#~ msgid "SMPTE Minutes" -#~ msgstr "minutes SMPTE" - -#~ msgid "Chunks" -#~ msgstr "Fragments" - -#~ msgid "Popup region editor" -#~ msgstr "Éditeur de région..." - -#~ msgid "Define sync point" -#~ msgstr "Placer le point de synchro" - -#~ msgid "Analyze region" -#~ msgstr "Analyse la région" - -#~ msgid "Nudge fwd" -#~ msgstr "Décaler à droite" - -#~ msgid "Nudge bwd" -#~ msgstr "Décaler à gauche" - -#~ msgid "Nudge bwd by capture offset" -#~ msgstr "Décaler à gauche de l'offset de capture" - -#~ msgid "Play range" -#~ msgstr "Lire" - -#~ msgid "Loop range" -#~ msgstr "Lire en boucle" - -#~ msgid "Analyze range" -#~ msgstr "Analyse la zone de sélection" - -#~ msgid "Select all in range" -#~ msgstr "Sélectionner tout dans la zone" - -#~ msgid "Set loop from selection" -#~ msgstr "sélection → boucle" - -#~ msgid "Set punch from selection" -#~ msgstr "sélection → punch" - -#~ msgid "Duplicate range" -#~ msgstr "Dupliquer" - -#~ msgid "Create chunk from range" -#~ msgstr "sélection → nouveau fragment" - -#~ msgid "Bounce range" -#~ msgstr "Copier la sélection vers un fichier audio (bounce)" - -#~ msgid "Export range" -#~ msgstr "Exporter" - -#~ msgid "Play from edit point" -#~ msgstr "Lire depuis le point d'édition" - -#~ msgid "Insert chunk" -#~ msgstr "Insérer un fragment" - -#~ msgid "Nudge entire track bwd" -#~ msgstr "Décaler toute la piste à gauche" - -#~ msgid "Nudge track after edit point bwd" -#~ msgstr "Décaler la piste à gauche après le point d'édition" - -#~ msgid "Select all before playhead" -#~ msgstr "Sélectionner tout avant la tête de lecture" - -#~ msgid "Magnetic Snap" -#~ msgstr "Alignement magnétique" - -#~ msgid "Splice Edit" -#~ msgstr "adjacent" - -#~ msgid "Slide Edit" -#~ msgstr "superposable" - -#~ msgid "" -#~ "There is no selection to export.\n" -#~ "\n" -#~ "Select a selection using the range mouse mode" -#~ msgstr "" -#~ "Il n'y a aucune sélection à exporter.\n" -#~ "\n" -#~ "Sélectionnez une zone en utilisant le mode « sélection »" - -#~ msgid "" -#~ "There are no ranges to export.\n" -#~ "\n" -#~ "Create 1 or more ranges by dragging the mouse in the range bar" -#~ msgstr "" -#~ "Il n'y a rien à exporter.\n" -#~ "\n" -#~ "Sélectionnez des intervalles dans la barre des intervalles" - -#~ msgid "programming error: no ImageFrameView selected" -#~ msgstr "programming error: no ImageFrameView selected" - -#~ msgid "programming error: no MarkerView selected" -#~ msgstr "programming error: no MarkerView selected" - -#~ msgid "Unlock" -#~ msgstr "Déverrouiller" - -#~ msgid "programming error: start_grab called without drag item" -#~ msgstr "programming error: start_grab called without drag item" - -#~ msgid "" -#~ "programming error: fade out canvas item has no regionview data pointer!" -#~ msgstr "" -#~ "programming error: fade out canvas item has no regionview data pointer!" - -#~ msgid "programming error: cursor canvas item has no cursor data pointer!" -#~ msgstr "programming error: cursor canvas item has no cursor data pointer!" - -#~ msgid "move selection" -#~ msgstr "déplacement sélection" - -#~ msgid "" -#~ " This is destructive, will possibly delete audio files\n" -#~ "It cannot be undone\n" -#~ "Do you really want to destroy %1 ?" -#~ msgstr "" -#~ " Cette opération est destructive et peut effacer des fichiers audio.\n" -#~ "Elle ne pourra pas être annulée.\n" -#~ "Voulez-vous vraiment détruire %1 ?" - -#~ msgid "these regions" -#~ msgstr "ces régions" - -#~ msgid "this region" -#~ msgstr "cette région" - -#~ msgid "Yes, destroy them." -#~ msgstr "Oui, les détruire." - -#~ msgid "naturalize" -#~ msgstr "naturaliser" - -#~ msgid "trim region start to edit point" -#~ msgstr "Rogner le début de région jusqu'au point d'édit." - -#~ msgid "trim region end to edit point" -#~ msgstr "Rogner la fin de région jusqu'au point d'édit." - -#~ msgid "paste chunk" -#~ msgstr "coller le fragment" - -#~ msgid "clear playlist" -#~ msgstr "effacer la liste de lecture" - -#~ msgid "toggle fade in active" -#~ msgstr "Commute la montée" - -#~ msgid "toggle fade out active" -#~ msgstr "Commute la descente" - -#~ msgid "Name for Chunk:" -#~ msgstr "nom du fragment :" - -#~ msgid "Create Chunk" -#~ msgstr "créer un fragment" - -#~ msgid "Forget it" -#~ msgstr "Abandonner" - -#~ msgid "No selectable material found in the currently selected time range" -#~ msgstr "Rien ne peut être sélectionné dans la zone choisie" - -#~ msgid "Semitones (12TET)" -#~ msgstr "demi-tons" - -#~ msgid "TimeFXProgress" -#~ msgstr "TimeFXProgress" - -#~ msgid "Sample Rate" -#~ msgstr "échantillonnage" - -#~ msgid "22.05kHz" -#~ msgstr "22.05kHz" - -#~ msgid "44.1kHz" -#~ msgstr "44.1kHz" - -#~ msgid "48kHz" -#~ msgstr "48kHz" - -#~ msgid "88.2kHz" -#~ msgstr "88.2kHz" - -#~ msgid "96kHz" -#~ msgstr "96kHz" - -#~ msgid "192kHz" -#~ msgstr "192kHz" - -#~ msgid "best" -#~ msgstr "la meilleure" - -#~ msgid "intermediate" -#~ msgstr "moyenne" - -#~ msgid "Shaped Noise" -#~ msgstr "Remodelage (shaped noise)" - -#~ msgid "stereo" -#~ msgstr "stéréo" - -#~ msgid "CUE" -#~ msgstr "CUE" - -#~ msgid "TOC" -#~ msgstr "TOC" - -#~ msgid "CD Marker File Type" -#~ msgstr "descripteur de CD" - -#~ msgid "Sample Endianness" -#~ msgstr "ordre des bits" - -#~ msgid "Conversion Quality" -#~ msgstr "conversion" - -#~ msgid "Dither Type" -#~ msgstr "interpolation" - -#~ msgid "Export CD Marker File Only" -#~ msgstr "n'exporter qu'un fichier descripteur de CD" - -#~ msgid "Specific tracks ..." -#~ msgstr "Pistes spécifiques..." - -#~ msgid "Editor: cannot open \"%1\" as export file for CD toc file" -#~ msgstr "" -#~ "Editeur : impossible d'écrire l'index TOC du CD dans le fichier « %1 »" - -#~ msgid "Editor: cannot open \"%1\" as export file for CD cue file" -#~ msgstr "" -#~ "Editeur : impossible d'écrire le descripteur CUE du CD dans le fichier « " -#~ "%1 »" - -#~ msgid "Ardour cannot export audio when disconnected" -#~ msgstr "Ardour ne peut pas exporter d'audio s'il est déconnecté" - -#~ msgid "Please enter a valid filename." -#~ msgstr "veuillez entrer un nom de fichier valide" - -#~ msgid "Please specify a complete filename for the audio file." -#~ msgstr "veuiller donner un nom complet pour le fichier audio" - -#~ msgid "Cannot write file in: " -#~ msgstr "Impossible d'écrire le fichier dans :" - -#~ msgid "ardour: export ranges" -#~ msgstr "ardour : export de régions" - -#~ msgid "Export to Directory" -#~ msgstr "exporter vers un dossier" - -#~ msgid "Please enter a valid target directory." -#~ msgstr "Veuillez entrer un nom de dossier valide." - -#~ msgid "Please select an existing target directory. Files are not allowed!" -#~ msgstr "Veuillez sélectionner un dossier existant (pas un fichier)" - -#~ msgid "ardour: export region" -#~ msgstr "ardour : export d'une région" - -#~ msgid "add gain automation event" -#~ msgstr "ajout d'événement d'autom. de gain" - -#~ msgid "Image Compositor Socket has been shutdown/closed" -#~ msgstr "Le socket du compositeur d'image a été arrêté ou fermé" - -#~ msgid "0.5 seconds" -#~ msgstr "0,5 seconde" - -#~ msgid "1.5 seconds" -#~ msgstr "1,5 secondes" - -#~ msgid "2 seconds" -#~ msgstr "2 secondes" - -#~ msgid "2.5 seconds" -#~ msgstr "2,5 secondes" - -#~ msgid "3 seconds" -#~ msgstr "3 secondes" - -#~ msgid "Remove Frame" -#~ msgstr "Enlever une trame" - -#~ msgid "Image Frame" -#~ msgstr "Trame d'image" - -#~ msgid "Add Input" -#~ msgstr "Ajouter une entrée" - -#~ msgid "Add Output" -#~ msgstr "Ajouter une sortie" - -#~ msgid "Remove Input" -#~ msgstr "Enlever une entrée" - -#~ msgid "Remove Output" -#~ msgstr "Enlever une sortie" - -#~ msgid "Disconnect All" -#~ msgstr "Déconnecter tout" - -#~ msgid "Available connections" -#~ msgstr "Connexions disponibles" - -#~ msgid "Add New Location" -#~ msgstr "ajouter un repère temporel" - -#~ msgid "Location (CD Index) Markers" -#~ msgstr "Repères temporels (et index de CD)" - -#~ msgid "Range (CD Track) Markers" -#~ msgstr "Intervalles (et plages de CD)" - -#~ msgid "Ardour/GTK " -#~ msgstr "Ardour/GTK" - -#~ msgid "Varispeed" -#~ msgstr "molette" - -#~ msgid "comments" -#~ msgstr "commentaires" - -#~ msgid "*comments*" -#~ msgstr "commentaires" - -#~ msgid "could not register new ports required for that connection" -#~ msgstr "" -#~ "impossible de définir les nouveaux ports requis pour cette connexion" - -#~ msgid " Input" -#~ msgstr " entrée" - -#~ msgid "Invert Polarity" -#~ msgstr "inverser la polarité" - -#~ msgid "Recent:" -#~ msgstr "Sessions récentes :" - -#~ msgid "Session Control" -#~ msgstr "ardour : gestion des sessions" - -#~ msgid "select directory" -#~ msgstr "sélection d'un dossier" - -#~ msgid "Paths/Files" -#~ msgstr "Chemins/Fichiers" - -#~ msgid "Kbd/Mouse" -#~ msgstr "Clavier/Souris" - -#~ msgid "session RAID path" -#~ msgstr "chemin vers la session (RAID de préférence)" - -#~ msgid "History depth (commands)" -#~ msgstr "Profondeur d'historique (commandes)" - -#~ msgid "Saved history depth (commands)" -#~ msgstr "Profondeur enregistrée (commandes)" - -#~ msgid "SMPTE Offset" -#~ msgstr "Décalage SMPTE" - -#~ msgid "Offline" -#~ msgstr "présence" - -#~ msgid "" -#~ "Trace\n" -#~ "Input" -#~ msgstr "" -#~ "voir entrée\n" -#~ "dans la console" - -#~ msgid "" -#~ "Trace\n" -#~ "Output" -#~ msgstr "" -#~ "voir sortie\n" -#~ "dans la console" - -#~ msgid "MTC" -#~ msgstr "MTC" - -#~ msgid "MMC" -#~ msgstr "MMC" - -#~ msgid "" -#~ "MIDI Parameter\n" -#~ "Control" -#~ msgstr "" -#~ "param.\n" -#~ "MIDI" - -#~ msgid "online" -#~ msgstr "actif" - -#~ msgid "offline" -#~ msgstr "inactif" - -#~ msgid "output" -#~ msgstr "sortie" - -#~ msgid "" -#~ "The auditioner is a dedicated mixer strip used\n" -#~ "for listening to specific regions outside the context\n" -#~ "of the overall mix. It can be connected just like any\n" -#~ "other mixer strip." -#~ msgstr "" -#~ "Une tranche de mixage dédiée est utilisée pour écouter des régions " -#~ "spécifiques\n" -#~ "en dehors du contexte du mixage global. Elle peut être connectée comme " -#~ "n'importe\n" -#~ "quelle autre tranche de mixage." - -#~ msgid "You need to select which line to edit" -#~ msgstr "vous devez choisir la ligne à modifier" - -#~ msgid "add pan automation event" -#~ msgstr "ajout d'événement de pan." - -#~ msgid "ardour: plugins" -#~ msgstr "ardour : plugins" - -#~ msgid "# Inputs" -#~ msgstr "nb d'entrées" - -#~ msgid "# Outputs" -#~ msgstr "nb de sorties" - -#~ msgid "redirect automation created for non-plugin" -#~ msgstr "rediriger l'automatisation créée pour le non-plugin" - -#~ msgid "ardour: weird plugin dialog" -#~ msgstr "ardour : boite de dialogue pour plugin" - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "The plugin has %2 inputs\n" -#~ "but at the insertion point, there are\n" -#~ "%3 active signal streams.\n" -#~ "\n" -#~ "This makes no sense - you are throwing away\n" -#~ "part of the signal." -#~ msgstr "" -#~ "Vous avez essayé d'ajouter le plugin suivant :\n" -#~ "%1\n" -#~ "\n" -#~ "Ce plugin a %2 entrées mais au point d'insertion il y a %3 voies.\n" -#~ "\n" -#~ "C'est incohérent car vous allez jeter une partie du signal." - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "The plugin has %2 inputs\n" -#~ "but at the insertion point there are\n" -#~ "only %3 active signal streams.\n" -#~ "\n" -#~ "This makes no sense - unless the plugin supports\n" -#~ "side-chain inputs. A future version of Ardour will\n" -#~ "support this type of configuration." -#~ msgstr "" -#~ "Vous avez essayé d'ajouter le plugin suivant :\n" -#~ "%1\n" -#~ "\n" -#~ "Ce plugin a %2 entrées mais au point d'insertion il y a seulement %3 " -#~ "voies actives.\n" -#~ "\n" -#~ "C'est incohérent à moins que le plugin supporte les entrées latérales.\n" -#~ "Une version future d'Ardour prendra en charge ce type de configuration." - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "\n" -#~ "The I/O configuration doesn't make sense:\n" -#~ "\n" -#~ "The plugin has %2 inputs and %3 outputs.\n" -#~ "The track/bus has %4 inputs and %5 outputs.\n" -#~ "The insertion point, has %6 active signals.\n" -#~ "\n" -#~ "Ardour does not understand what to do in such situations.\n" -#~ msgstr "" -#~ "Vous avez essayé d'ajouter le plugin suivant :\n" -#~ "%1\n" -#~ "\n" -#~ "La configuration d'entrées/sorties est incohérente :\n" -#~ "\n" -#~ "Le plugin a %2 entrées et %3 sorties.\n" -#~ "La piste (ou le bus) a %4 entrées et %5 sorties.\n" -#~ "Le point d'insertion a %6 voies actives.\n" -#~ "\n" -#~ "Ardour ne sait pas comment faire dans ce genre de situations.\n" - -#~ msgid "Post-fader inserts, sends & plugins:" -#~ msgstr "Insertions, départs et plugins post-atténuation" - -#~ msgid "rename redirect" -#~ msgstr "renommer la redirection" - -#~ msgid "" -#~ "Do you really want to remove all pre-fader redirects from this track?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Voulez-vous vraiment enlever toutes les pré-redirections de cette " -#~ "piste ?\n" -#~ "(cela ne pourra pas être annulé)" - -#~ msgid "" -#~ "Do you really want to remove all post-fader redirects from this track?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Voulez-vous vraiment enlever toutes les post-redirections de cette " -#~ "piste ?\n" -#~ "(cela ne pourra pas être annulé)" - -#~ msgid "Post-fader Redirects" -#~ msgstr "Redirections post-atténuation" - -#~ msgid "v" -#~ msgstr "v" - -#~ msgid "Display Height" -#~ msgstr "hauteur de piste" - -#~ msgid "solo change" -#~ msgstr "modification du solo" - -#~ msgid "mix group solo change" -#~ msgstr "changt solo de groupe" - -#~ msgid "mix group mute change" -#~ msgstr "changt sourdine de groupe" - -#~ msgid "mix group rec-enable change" -#~ msgstr "changt d'activation d'enreg de groupe" - -#~ msgid "ardour: color selection" -#~ msgstr "ardour : sélection de couleur" - -#~ msgid "New Name: " -#~ msgstr "nouveau nom :" - -#~ msgid "Play (double click)" -#~ msgstr "Lire" - -#~ msgid "n/a" -#~ msgstr "n/a" - -#~ msgid "at edit point" -#~ msgstr "au point d'édition" - -#~ msgid "at playhead" -#~ msgstr "sur la tête de lecture" - -#~ msgid "Bar" -#~ msgstr "Mesure" - -#~ msgid "Beat" -#~ msgstr "Temps" - -#~ msgid "thirtq-second (32)" -#~ msgstr "trente-deuxième (32)" - -#~ msgid "TimeAxisViewItemName" -#~ msgstr "TimeAxisViewItemName" - -#~ msgid "" -#~ "Do you really want to remove track \"%1\" ?\n" -#~ "(cannot be undone)" -#~ msgstr "" -#~ "Voulez-vous vraiment supprimer la piste « %1 » ?\n" -#~ "(cela ne pourra pas être annulé)" - -#~ msgid "ardour: connections" -#~ msgstr "ardour : connexions" - -#~ msgid "Output Connections" -#~ msgstr "Connexions en sortie" - -#~ msgid "New Input" -#~ msgstr "Nouvelle entrée" - -#~ msgid "New Output" -#~ msgstr "Nouvelle sortie" - -#~ msgid "Add Port" -#~ msgstr "Ajouter un port" - -#~ msgid "\"" -#~ msgstr "\"" - -#~ msgid "in %d" -#~ msgstr "entrée %d" - -#~ msgid "out %d" -#~ msgstr "sortie %d" - -#~ msgid "Name for new connection:" -#~ msgstr "Nom de la nouvelle connexion :" - -#~ msgid "Could not connect to JACK server as \"%1\"" -#~ msgstr "Impossible de se connecter au serveur JACK en tant que « %1 »" - -#~ msgid "could not load command line session \"%1\"" -#~ msgstr "" -#~ "impossible de charger la session indiquée en ligne de commande « %1 »" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "No session named \"%1\" exists.\n" -#~ "To create it from the command line, start ardour as \"ardour --new %1" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Il n'existe pas de session nommée « %1 ».\n" -#~ "Pour la créer depuis la ligne de commande, lancez ardour en tapant ceci : " -#~ "\"ardour --new %1" - -#~ msgid "Setup" -#~ msgstr "Paramètres" - -#~ msgid "Edit Cursor" -#~ msgstr "curseur d'édition" - -#~ msgid "Frames" -#~ msgstr "trames" - -#~ msgid "Select all between cursors" -#~ msgstr "Sélectionner tout entre les 2 curseurs" - -#~ msgid "Paste at edit cursor" -#~ msgstr "Coller au curseur d'édition" - -#~ msgid "Paste at mouse" -#~ msgstr "Coller au pointeur de la souris" - -#~ msgid "Unit to snap cursors and ranges to" -#~ msgstr "Unité d'alignement des curseurs et zones" - -#~ msgid "Duplicate how many times?" -#~ msgstr "Dupliquer combien de fois ?" - -#~ msgid "Move edit cursor" -#~ msgstr "curseur d'édition" - -#~ msgid "Edit Cursor to Next Region Start" -#~ msgstr "début de la région suivante" - -#~ msgid "Edit Cursor to Next Region End" -#~ msgstr "fin de la région suivante" - -#~ msgid "Edit Cursor to Next Region Sync" -#~ msgstr "synchro de la région suivante" - -#~ msgid "Edit Cursor to Previous Region Start" -#~ msgstr "début de la région précédente" - -#~ msgid "Edit Cursor to Previous Region End" -#~ msgstr "fin de la région précédente" - -#~ msgid "Edit Cursor to Previous Region Sync" -#~ msgstr "synchro de la région précédente" - -#~ msgid "Edit Cursor to Range Start" -#~ msgstr "début de la région" - -#~ msgid "Edit Cursor to Range End" -#~ msgstr "fin de la région" - -#~ msgid "Select All Between Cursors" -#~ msgstr "tout entre les 2 curseurs" - -#~ msgid "Center Edit Cursor" -#~ msgstr "centrer sur le curseur d'édition" - -#~ msgid "Edit to Playhead" -#~ msgstr "sur la tête de lecture" - -#~ msgid "crop" -#~ msgstr "recadrer" - -#~ msgid "keyboard selection" -#~ msgstr "sélection au clavier" - -#~ msgid "Hide Mark" -#~ msgstr "cacher le repère" - -#~ msgid "cancel selection" -#~ msgstr "annuler la sélection" - -#~ msgid "Programming error. that region doesn't cover that position" -#~ msgstr "Programming error. that region doesn't cover that position" - -#~ msgid "Place the edit cursor at the desired sync point" -#~ msgstr "Placer le curseur d'édition au point de synchronisation voulu" - -#~ msgid "set sync from edit cursor" -#~ msgstr "point de synchro au curseur d'édition" - -#~ msgid "select all between cursors" -#~ msgstr "sélectionner tout entre les curseurs" - -#~ msgid "could not start JACK server: " -#~ msgstr "Impossible de se démarrer le serveur JACK" - -#~ msgid "Available LADSPA Plugins" -#~ msgstr "Plugins LADSPA disponibles" - -#~ msgid "LADSPA" -#~ msgstr "LADSPA" - -#~ msgid "VST" -#~ msgstr "VST" - -#~ msgid "AudioUnit" -#~ msgstr "Unité audio" - -#~ msgid "Colors" -#~ msgstr "Couleurs..." - -#~ msgid "as Tape Tracks" -#~ msgstr "vers nouvelles pistes (mode cassette)..." - -#~ msgid "to Tracks" -#~ msgstr "vers les pistes sélectionnées..." - -#~ msgid "Import as a %1 region" -#~ msgstr "Importer comme région %1" - -#~ msgid "multichannel" -#~ msgstr "multivoies" - -#~ msgid "" -#~ "Paired files detected (%1, %2 ...).\n" -#~ "Do you want to:" -#~ msgstr "" -#~ "Paire de fichiers détectée (%1, %2 ...).\n" -#~ "Voulez-vous :" - -#~ msgid "edit cursor color not defined, check your ardour.colors file!" -#~ msgstr "" -#~ "Pas de couleur définie pour le curseur d'édition. Vérifiez votre fichier " -#~ "ardour.colors !" - -#~ msgid "playhead color not defined, check your ardour.colors file!" -#~ msgstr "" -#~ "Pas de couleur définie pour la tête de lecture. Vérifiez votre fichier " -#~ "ardour.colors !" - -#~ msgid "" -#~ "Without a UI style file, ardour will look strange.\n" -#~ " Please set ARDOUR3_UI_RC to point to a valid UI style file" -#~ msgstr "" -#~ "Sans fichier de style pour son interface, Ardour aura une apparence " -#~ "bizarre.\n" -#~ "Veuillez faire pointer ARDOUR3_UI_RC vers un fichier de style valide" - -#~ msgid "unknown strip width \"%1\" in XML GUI information" -#~ msgstr "" -#~ "largeur de tranche inconnue « %1 » dans les données XML de l'interface " -#~ "utilisateur" - -#~ msgid "Layers & Fades" -#~ msgstr "Calques/Fondus" - -#~ msgid "Apply" -#~ msgstr "Appliquer" - -#~ msgid "comma seperated tags" -#~ msgstr "tags séparées par des virgules" - -#~ msgid "Length: n/a" -#~ msgstr "Longueur : n/a" - -#~ msgid "Format: n/a" -#~ msgstr "Format : n/a" - -#~ msgid "Channels: n/a" -#~ msgstr "Voies : n/a" - -#~ msgid "Samplerate: n/a" -#~ msgstr "Taux d'échantillonnage : n/a" - -#~ msgid "Timecode: n/a" -#~ msgstr "Timecode : n/a" - -#~ msgid "Samplerate: %1" -#~ msgstr "Taux d'échantillonnage : %1" - -#~ msgid "Timecode: %1" -#~ msgstr "Timecode : %1" - -#~ msgid "Add as new Track(s)" -#~ msgstr "ajouter comme nouvelles pistes" - -#~ msgid "Embed" -#~ msgstr "Lier" - -#~ msgid "Link to an external file" -#~ msgstr "Lier à un fichier audio externe" - -#~ msgid "" -#~ "%1\n" -#~ "(built with ardour/gtk %2.%3.%4 libardour: %5.%6.%7)" -#~ msgstr "" -#~ "%1\n" -#~ "(ardour/gtk %2.%3.%4 libardour : %5.%6.%7)" - -#~ msgid "Autuo Play" -#~ msgstr "lecture auto" - -#~ msgid "programming error: impossible control method" -#~ msgstr "erreur du logiciel : méthode de contrôle impossible" - -#~ msgid "Unable to create all required ports" -#~ msgstr "Impossible de créer tous les ports" - -#~ msgid "ardour_cleanup" -#~ msgstr "ardour_cleanup" - -#~ msgid "MMC + Local" -#~ msgstr "MMC + Local" - -#~ msgid "Local" -#~ msgstr "Local" - -#~ msgid "Sound File Browser" -#~ msgstr "Navigateur de fichiers audio..." - -#~ msgid "start prefix" -#~ msgstr "préfixe de début" - -#~ msgid "ardour: clock" -#~ msgstr "ardour : horloge" - -#~ msgid "SMPTE" -#~ msgstr "SMPTE" - -#~ msgid "a track already exists with that name" -#~ msgstr "ce nom est déjà utilisé pour une autre piste" - -#~ msgid "Normal Snap" -#~ msgstr "Aligné sur :" - -#~ msgid "Visible" -#~ msgstr "visible" - -#~ msgid "ardour: editor" -#~ msgstr "Ardour : éditeur" - -#~ msgid "ardour_editor" -#~ msgstr "ardour_editor" - -#~ msgid "ardour: editor: " -#~ msgstr "Ardour : éditeur : " - -#~ msgid "Destroy" -#~ msgstr "Détruire" - -#~ msgid "" -#~ "Current Zoom Range\n" -#~ "(Width of visible area)" -#~ msgstr "durée de la zone visible" - -#~ msgid "... as new region" -#~ msgstr "...comme nouvelle région" - -#~ msgid "Import audio (copy)" -#~ msgstr "Importer un fichier audio (par copie)" - -#~ msgid "Focus Left" -#~ msgstr "à gauche" - -#~ msgid "Focus Right" -#~ msgstr "à droite" - -#~ msgid "Focus Center" -#~ msgstr "au centre" - -#~ msgid "Focus Playhead" -#~ msgstr "suivre tête de lecture" - -#~ msgid "Focus Edit Cursor" -#~ msgstr "suivre curseur d'édition" - -#~ msgid "SMPTE fps" -#~ msgstr "nb trames SMPTE par seconde" - -#~ msgid "Add Location from Playhead" -#~ msgstr "repère à la tête de lecture" - -#~ msgid "" -#~ "programming error: Unexpected SMPTE value (%1, drop = %2) in " -#~ "update_smpte_mode. Menu is probably wrong." -#~ msgstr "" -#~ "erreur du logiciel: valeur SMPTE inattendue (%1, drop = %2) dans " -#~ "update_smpte_mode. Le menu est probablement mauvais" - -#~ msgid "ardour: rename mark" -#~ msgstr "ardour : renommer le repère" - -#~ msgid "ardour: rename range" -#~ msgstr "ardour : renommer l'intervalle" - -#~ msgid "select on click" -#~ msgstr "sélectionner au clic" - -#~ msgid "ardour: freeze" -#~ msgstr "ardour : blocage de la piste" - -#~ msgid "ardour: timestretch" -#~ msgstr "ardour : déformation temporelle" - -#~ msgid "ardour_export" -#~ msgstr "ardour_export" - -#~ msgid "cannot find images for fader slider" -#~ msgstr "Impossible de trouver les images des atténuateurs" - -#~ msgid "cannot find images for fader rail" -#~ msgstr "Impossible de trouver les images des rails d'attenuateurs" - -#~ msgid "KeyboardTarget: keyname \"%1\" is unknown." -#~ msgstr "KeyboardTarget : nom de touche inconnue : « %1 »" - -#~ msgid "" -#~ "Your system is completely broken - NumLock uses \"%1\"as its modifier. " -#~ "This is madness - see the man page for xmodmap to find out how to fix " -#~ "this." -#~ msgstr "" -#~ "Votre système est très mal configuré -- la touche VerrNum (Numlock)" -#~ "utilise « %1 » comme modificateur. C'est une aberration -- consultez la " -#~ "page de manuel de « xmodmap » pour savoir comment réparer ça." - -#~ msgid "" -#~ "Your system generates \"%1\" when the NumLock key is pressed. This can " -#~ "cause problems when editing so Ardour will use %2 to mean Meta rather " -#~ "than %1" -#~ msgstr "" -#~ "Votre système génère le code « %1 » quand la touche VerrNum (Numlock) est " -#~ "pressée. Cela peut causer des problèmes pendant l'édition, de sorte " -#~ "qu'Ardour utilisera « %2 » comme touche Meta plutôt que « %1 »." - -#~ msgid "You have %1 keys bound to \"mod1\"" -#~ msgstr "%1 touches sont affectées à « mod1 »" - -#~ msgid "You have %1 keys bound to \"mod2\"" -#~ msgstr "%1 touches sont affectées à « mod2 »" - -#~ msgid "You have %1 keys bound to \"mod3\"" -#~ msgstr "%1 touches sont affectées à « mod3 »" - -#~ msgid "You have %1 keys bound to \"mod4\"" -#~ msgstr "%1 touches sont affectées à « mod4 »" - -#~ msgid "You have %1 keys bound to \"mod5\"" -#~ msgstr "%1 touches sont affectées à « mod5 »" - -#~ msgid "ardour_locations" -#~ msgstr "ardour_locations" - -#~ msgid "ardour is killing itself for a clean exit\n" -#~ msgstr "récupération du signal pour effectuer une sortie propre\n" - -#~ msgid "stopping user interface\n" -#~ msgstr "arrêt de l'interface utilisateur\n" - -#~ msgid "%d(%d): received signal %d\n" -#~ msgstr "%d(%d) : reçu le signal %d\n" - -#~ msgid "cannot set default signal mask (%1)" -#~ msgstr "impossible de définir le masque de signal par défaut (%1)" - -#~ msgid "ardour: mixer" -#~ msgstr "ardour : console de mixage" - -#~ msgid "ardour_mixer" -#~ msgstr "ardour_mixer" - -#~ msgid "ardour: mixer: " -#~ msgstr "ardour : console de mixage : " - -#~ msgid "ardour: options editor" -#~ msgstr "ardour : éditeur d'options" - -#~ msgid "ardour_option_editor" -#~ msgstr "ardour_option_editor" - -#~ msgid "Soundfile Search Paths" -#~ msgstr "Chemins de recherche des fichiers audio" - -#~ msgid " -g, --gtktheme Allow GTK to load a theme\n" -#~ msgstr "" -#~ " -g, --gtktheme Autoriser le chargement d'un thème\n" - -#~ msgid "ardour: playlists" -#~ msgstr "ardour : listes de lecture" - -#~ msgid "ardour: playlist for " -#~ msgstr "ardour : liste de lecture pour " - -#~ msgid "ardour: %1" -#~ msgstr "ardour : %1" - -#~ msgid "visible" -#~ msgstr "visible" - -#~ msgid "ENVELOPE" -#~ msgstr "enveloppe" - -#~ msgid "regions underneath this one cannot be heard" -#~ msgstr "les régions en dessous de celle-ci sont muettes" - -#~ msgid "prevent any changes to this region" -#~ msgstr "empêche toute modification de cette région" - -#~ msgid "use the gain envelope during playback" -#~ msgstr "utiliser l'enveloppe de gain pendant la lecture" - -#~ msgid "show the gain envelope" -#~ msgstr "afficher l'enveloppe de gain" - -#~ msgid "use fade in curve during playback" -#~ msgstr "utiliser un fondu ascendant pendant la lecture" - -#~ msgid "use fade out curve during playback" -#~ msgstr "utiliser un fondu descendant pendant la lecture" - -#~ msgid "FADE IN" -#~ msgstr "montée" - -#~ msgid "FADE OUT" -#~ msgstr "descente" - -#~ msgid "ardour: region " -#~ msgstr "ardour : région " - -#~ msgid "ardour: track/bus inspector" -#~ msgstr "ardour : inspecteur de pistes et de bus" - -#~ msgid "ardour_route_parameters" -#~ msgstr "ardour_route_parameters" - -#~ msgid "ardour: track/bus inspector: " -#~ msgstr "ardour : inspecteur de piste et de bus :" - -#~ msgid "ardour: track/bus/inspector: no route selected" -#~ msgstr "ardour : inspecteur de piste et de bus : aucune route sélectionnée" - -#~ msgid "Add Field..." -#~ msgstr "Ajouter un champ..." - -#~ msgid "resolution" -#~ msgstr "résolution" - -#~ msgid "Name for Field" -#~ msgstr "Nom du champ :" - -#~ msgid "channel1" -#~ msgstr "voie 1" - -#~ msgid "channel2" -#~ msgstr "voie 2" diff --git a/gtk2_ardour/po/it.po b/gtk2_ardour/po/it.po index 673dfbe159..411a1980d8 100644 --- a/gtk2_ardour/po/it.po +++ b/gtk2_ardour/po/it.po @@ -214,11 +214,6 @@ msgstr "" msgid "Lincoln Spiteri" msgstr "" -#: about.cc:171 -#, fuzzy -msgid "Mike Start" -msgstr "Inizio" - #: about.cc:172 msgid "Mark Stewart" msgstr "" @@ -334,11 +329,6 @@ msgid "" "\t Rui-huai Zhang \n" msgstr "" -#: about.cc:580 -#, fuzzy -msgid "Copyright (C) 1999-2013 Paul Davis\n" -msgstr "Diritti (C) 1999-2011 Paul Davis" - #: about.cc:584 msgid "http://ardour.org/" msgstr "" @@ -385,26 +375,6 @@ msgstr "Modalità traccia:" msgid "Instrument:" msgstr "" -#: add_route_dialog.cc:76 -#, fuzzy -msgid "Audio Tracks" -msgstr "Aggiungi traccia audio" - -#: add_route_dialog.cc:77 -#, fuzzy -msgid "MIDI Tracks" -msgstr "Aggiungi traccia MIDI" - -#: add_route_dialog.cc:78 -#, fuzzy -msgid "Audio+MIDI Tracks" -msgstr "Aggiungi traccia MIDI" - -#: add_route_dialog.cc:79 -#, fuzzy -msgid "Busses" -msgstr "Bus" - #: add_route_dialog.cc:101 msgid "Add:" msgstr "Aggiungi:" @@ -442,11 +412,6 @@ msgstr "Audio" msgid "MIDI" msgstr "MIDI" -#: add_route_dialog.cc:217 add_route_dialog.cc:230 add_route_dialog.cc:300 -#, fuzzy -msgid "Audio+MIDI" -msgstr "Audio" - #: add_route_dialog.cc:218 add_route_dialog.cc:233 add_route_dialog.cc:301 msgid "Bus" msgstr "Bus" @@ -517,24 +482,10 @@ msgstr "Nuovo Gruppo" msgid "No Group" msgstr "Nessun Gruppo" -#: add_route_dialog.cc:588 -#, fuzzy -msgid "-none-" -msgstr "Nessuno" - #: ambiguous_file_dialog.cc:30 msgid "Ambiguous File" msgstr "File ambiguo" -#: ambiguous_file_dialog.cc:35 -#, fuzzy -msgid "" -"%1 has found the file %2 in the following places:\n" -"\n" -msgstr "" -"Ardour ha trovato il file %1 nelle seguenti posizioni:\n" -"\n" - #: ambiguous_file_dialog.cc:44 msgid "" "\n" @@ -606,16 +557,6 @@ msgstr "Esegui di nuovo l'analisi" msgid "button cannot watch state of non-existing Controllable\n" msgstr "" -#: ardour_ui.cc:180 -#, fuzzy -msgid "audition" -msgstr "Ascolto" - -#: ardour_ui.cc:181 -#, fuzzy -msgid "solo" -msgstr "Intervallo di loop" - #: ardour_ui.cc:182 msgid "feedback" msgstr "" @@ -636,11 +577,6 @@ msgstr "Scorciatoie da tastiera" msgid "Preferences" msgstr "Preferenze" -#: ardour_ui.cc:191 ardour_ui.cc:196 -#, fuzzy -msgid "Add Tracks/Busses" -msgstr "Tracce/Bus" - #: ardour_ui.cc:192 msgid "About" msgstr "Circa" @@ -665,16 +601,6 @@ msgstr "Gestore dei raggruppamenti" msgid "Big Clock" msgstr "Orologio grande" -#: ardour_ui.cc:199 -#, fuzzy -msgid "Audio Connections" -msgstr "Connessioni" - -#: ardour_ui.cc:200 -#, fuzzy -msgid "MIDI Connections" -msgstr "Connessioni" - #: ardour_ui.cc:202 msgid "Errors" msgstr "Errori" @@ -687,22 +613,6 @@ msgstr "Avvio del motore audio" msgid "%1 is ready for use" msgstr "%1 è pronto." -#: ardour_ui.cc:806 -#, fuzzy -msgid "" -"WARNING: Your system has a limit for maximum amount of locked memory. This " -"might cause %1 to run out of memory before your system runs out of memory. \n" -"\n" -"You can view the memory limit with 'ulimit -l', and it is normally " -"controlled by %2" -msgstr "" -"ATTENZIONE: Il vostro sistema ha un limite massimo impostato per la quantità " -"di memoria bloccata. Questo può far si che %1 esaurisca la memoria prima del " -"vostro sistema. \n" -"\n" -"Potete visualizzare questo limite massimo con il comando 'ulimit -l', di " -"solito è controllato dal file /etc/security/limits.conf" - #: ardour_ui.cc:823 msgid "Do not show this window again" msgstr "Non mostrare di nuovo" @@ -719,24 +629,6 @@ msgstr "Esci e basta" msgid "Save and quit" msgstr "Salva ed esci" -#: ardour_ui.cc:877 -#, fuzzy -msgid "" -"%1 was unable to save your session.\n" -"\n" -"If you still wish to quit, please use the\n" -"\n" -"\"Just quit\" option." -msgstr "" -"Ardour non è riuscito a salvare la sessione.\n" -"\n" -"Se ancora vuoi chiudere usa la voce \"Esci e basta\"." - -#: ardour_ui.cc:908 -#, fuzzy -msgid "Please wait while %1 cleans up..." -msgstr "Prego attendere mentre %1 carica i dati per la visualizzazione" - #: ardour_ui.cc:925 msgid "Unsaved Session" msgstr "Sessione non salvata" @@ -795,11 +687,6 @@ msgstr "" msgid "JACK: % kHz / %4.1f ms" msgstr "" -#: ardour_ui.cc:1078 export_video_dialog.cc:68 -#, fuzzy -msgid "File:" -msgstr "Inizio file:" - #: ardour_ui.cc:1082 msgid "BWF" msgstr "" @@ -853,11 +740,6 @@ msgid "" "\">%%%" msgstr "" -#: ardour_ui.cc:1188 -#, fuzzy -msgid "Disk: Unknown" -msgstr "Spazio su disco: %02dh:%02dm:%02ds" - #: ardour_ui.cc:1190 msgid "Disk: 24hrs+" msgstr "" @@ -866,16 +748,6 @@ msgstr "" msgid "Disk: >24 hrs" msgstr "" -#: ardour_ui.cc:1219 -#, fuzzy, c-format -msgid "Disk: %02dh:%02dm:%02ds" -msgstr "Spazio su disco: %02dh:%02dm:%02ds" - -#: ardour_ui.cc:1245 -#, fuzzy, c-format -msgid "Timecode|TC: %s" -msgstr "Spazio su disco: %02dh:%02dm:%02ds" - #: ardour_ui.cc:1362 ardour_ui.cc:1371 startup.cc:1054 msgid "Recent Sessions" msgstr "Sessioni recenti" @@ -902,13 +774,6 @@ msgid "You cannot add a track without a session already loaded." msgstr "" "Non si può aggiungere una traccia senza prima aver caricato una sessione." -#: ardour_ui.cc:1548 -#, fuzzy -msgid "could not create %1 new mixed track" -msgid_plural "could not create %1 new mixed tracks" -msgstr[0] "Impossibile creare nuove tracce MIDI in %1" -msgstr[1] "Impossibile creare nuove tracce MIDI in %1" - #: ardour_ui.cc:1554 ardour_ui.cc:1615 msgid "" "There are insufficient JACK ports available\n" @@ -927,30 +792,6 @@ msgstr "" "Non si può aggiungere una traccia o un bus senza prima aver caricato una " "sessione." -#: ardour_ui.cc:1598 -#, fuzzy -msgid "could not create %1 new audio track" -msgid_plural "could not create %1 new audio tracks" -msgstr[0] "Impossibile creare una nuova traccia audio" -msgstr[1] "Impossibile creare una nuova traccia audio" - -#: ardour_ui.cc:1607 -#, fuzzy -msgid "could not create %1 new audio bus" -msgid_plural "could not create %1 new audio busses" -msgstr[0] "Impossibile creare una nuova traccia audio %1" -msgstr[1] "Impossibile creare una nuova traccia audio %1" - -#: ardour_ui.cc:1724 -#, fuzzy -msgid "" -"Please create one or more tracks before trying to record.\n" -"You can do this with the \"Add Track or Bus\" option in the Session menu." -msgstr "" -"Creare una o più tracce\n" -"prima di avviare una registrazione.\n" -"Controllare il menù di sessione." - #: ardour_ui.cc:2114 msgid "" "The audio backend (JACK) was shutdown because:\n" @@ -985,16 +826,6 @@ msgstr "Crea istantanea" msgid "Name of new snapshot" msgstr "Nome della nuova istantanea" -#: ardour_ui.cc:2247 -#, fuzzy -msgid "" -"To ensure compatibility with various systems\n" -"snapshot names may not contain a '%1' character" -msgstr "" -"Per assicurare la compatibilità con vari sistemi\n" -"i nomi di instantanee non dovrebbero contenere\n" -" il carattere '/'" - #: ardour_ui.cc:2259 msgid "Confirm Snapshot Overwrite" msgstr "Conferma sovrascrittura istantanea" @@ -1007,26 +838,6 @@ msgstr "Esiste già un'istantanea con questo nome. Vuoi sovrascriverla?" msgid "Overwrite" msgstr "Sovrascrivi" -#: ardour_ui.cc:2297 -#, fuzzy -msgid "Rename Session" -msgstr "Rinomina regione" - -#: ardour_ui.cc:2298 -#, fuzzy -msgid "New session name" -msgstr "Nome della sessione:" - -#: ardour_ui.cc:2312 ardour_ui.cc:2692 ardour_ui.cc:2737 -#, fuzzy -msgid "" -"To ensure compatibility with various systems\n" -"session names may not contain a '%1' character" -msgstr "" -"Per assicurare la compatibilità con vari sistemi\n" -"i nomi di sessione non dovrebbero contenere\n" -" il carattere '/'" - #: ardour_ui.cc:2320 msgid "" "That name is already in use by another directory/folder. Please try again." @@ -1129,64 +940,6 @@ msgstr "" msgid "giga" msgstr "" -#: ardour_ui.cc:3116 -#, fuzzy -msgid "" -"The following file was deleted from %2,\n" -"releasing %3 %4bytes of disk space" -msgid_plural "" -"The following %1 files were deleted from %2,\n" -"releasing %3 %4bytes of disk space" -msgstr[0] "" -"Il seguente file è stato eliminato da\n" -"%2, \n" -"verranno liberati %3 %4bytes di spazio su disco" -msgstr[1] "" -"Il seguente file è stato eliminato da\n" -"%2, \n" -"verranno liberati %3 %4bytes di spazio su disco" - -#: ardour_ui.cc:3123 -#, fuzzy -msgid "" -"The following file was not in use and \n" -"has been moved to: %2\n" -"\n" -"After a restart of %5\n" -"\n" -"Session -> Clean-up -> Flush Wastebasket\n" -"\n" -"will release an additional %3 %4bytes of disk space.\n" -msgid_plural "" -"The following %1 files were not in use and \n" -"have been moved to: %2\n" -"\n" -"After a restart of %5\n" -"\n" -"Session -> Clean-up -> Flush Wastebasket\n" -"\n" -"will release an additional %3 %4bytes of disk space.\n" -msgstr[0] "" -"Il seguente file non era utilizzato\n" -"ed è stato spostato in:\n" -"\t\t\t\t%2\n" -"%2\n" -"Dopo il riavvio di Ardour,\n" -"\n" -"Sessione -> Pulisci -> Svuota cestino\n" -"\n" -"libererà %3 %4bytes di spazio su disco\n" -msgstr[1] "" -"Il seguente file non era utilizzato\n" -"ed è stato spostato in:\n" -"\t\t\t\t%2\n" -"%2\n" -"Dopo il riavvio di Ardour,\n" -"\n" -"Sessione -> Pulisci -> Svuota cestino\n" -"\n" -"libererà %3 %4bytes di spazio su disco\n" - #: ardour_ui.cc:3183 msgid "Are you sure you want to clean-up?" msgstr "Siete sicuri di voler ripulire?" @@ -1228,11 +981,6 @@ msgstr "" msgid "Do you really want to stop the Video Server?" msgstr "" -#: ardour_ui.cc:3345 -#, fuzzy -msgid "Yes, Stop It" -msgstr "Si, rimuovi." - #: ardour_ui.cc:3371 msgid "The Video Server is already started." msgstr "" @@ -1305,24 +1053,6 @@ msgstr "" msgid "Crash Recovery" msgstr "Recupero dal crash" -#: ardour_ui.cc:3762 -#, fuzzy -msgid "" -"This session appears to have been in the\n" -"middle of recording when %1 or\n" -"the computer was shutdown.\n" -"\n" -"%1 can recover any captured audio for\n" -"you, or it can ignore it. Please decide\n" -"what you would like to do.\n" -msgstr "" -"Sembra che questa sessione fosse nel bel mezzo\n" -"di una registrazione quando Ardour o il computer è stato spento.\n" -"\n" -"Ardour può recuperare l'audio registrato\n" -"oppure ignorarlo.\n" -"Cosa preferite?\n" - #: ardour_ui.cc:3774 msgid "Ignore crash data" msgstr "Ignora i dati del crash" @@ -1335,18 +1065,6 @@ msgstr "Recupero dai dati di crash" msgid "Sample Rate Mismatch" msgstr "Frequenza di campionamento discrepante" -#: ardour_ui.cc:3796 -#, fuzzy -msgid "" -"This session was created with a sample rate of %1 Hz, but\n" -"%2 is currently running at %3 Hz. If you load this session,\n" -"audio may be played at the wrong sample rate.\n" -msgstr "" -"Questa sessione è stata creata \n" -"con una frequenza di campionamento di %1 Hz\n" -"\n" -"Il motore audio attualmente è avviato a %2 Hz\n" - #: ardour_ui.cc:3805 msgid "Do not load session" msgstr "Non caricare la sessione" @@ -1386,11 +1104,6 @@ msgstr "UI: impossibile avviare l'editor" msgid "UI: cannot setup mixer" msgstr "IU: impossibile avviare il mixer" -#: ardour_ui2.cc:82 -#, fuzzy -msgid "UI: cannot setup meterbridge" -msgstr "IU: impossibile avviare il meter_bridge" - #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "Suona dalla testina" @@ -1429,11 +1142,6 @@ msgstr "" msgid "Return to last playback start when stopped" msgstr "Ritorna al punto d'inizio una volta fermato" -#: ardour_ui2.cc:139 -#, fuzzy -msgid "Playhead follows Range Selections and Edits" -msgstr "Sposta la testina all'inizio dell'intervallo" - #: ardour_ui2.cc:140 msgid "Be sensible about input monitoring" msgstr "Controlla accuratamente le entrate" @@ -1478,11 +1186,6 @@ msgid "" "confirm; postfix the edit with '+' or '-' to enter delta times.\n" msgstr "" -#: ardour_ui2.cc:147 -#, fuzzy -msgid "Reset Level Meter" -msgstr "Azzera inviluppo" - #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "[ERRORE]:" @@ -1624,21 +1327,6 @@ msgstr "Chiudi" msgid "Add Track or Bus..." msgstr "Aggiungi traccia o bus..." -#: ardour_ui_ed.cc:135 -#, fuzzy -msgid "Open Video" -msgstr "Apri sessione" - -#: ardour_ui_ed.cc:138 -#, fuzzy -msgid "Remove Video" -msgstr "Rimuovi Campo" - -#: ardour_ui_ed.cc:141 -#, fuzzy -msgid "Export To Video File" -msgstr "Esporta la sessione come file audio..." - #: ardour_ui_ed.cc:145 msgid "Snapshot..." msgstr "Istantanea..." @@ -1714,26 +1402,6 @@ msgstr "Esci" msgid "Maximise Editor Space" msgstr "Massimizza l'area dell'editor" -#: ardour_ui_ed.cc:227 -#, fuzzy -msgid "Show Toolbars" -msgstr "Mostra la barra dello zoom" - -#: ardour_ui_ed.cc:230 mixer_ui.cc:1865 mixer_ui.cc:1871 -#, fuzzy -msgid "Window|Mixer" -msgstr "Finestra" - -#: ardour_ui_ed.cc:231 -#, fuzzy -msgid "Toggle Editor+Mixer" -msgstr "Modalità di modifica" - -#: ardour_ui_ed.cc:232 meterbridge.cc:230 meterbridge.cc:236 -#, fuzzy -msgid "Window|Meterbridge" -msgstr "Finestra" - #: ardour_ui_ed.cc:234 midi_tracer.cc:39 msgid "MIDI Tracer" msgstr "" @@ -1742,11 +1410,6 @@ msgstr "" msgid "Chat" msgstr "" -#: ardour_ui_ed.cc:238 -#, fuzzy -msgid "Help|Manual" -msgstr "Manuale" - #: ardour_ui_ed.cc:239 msgid "Reference" msgstr "Riferimenti" @@ -1801,11 +1464,6 @@ msgstr "Riproduci l'intervallo di ciclo" msgid "Play Selected Range" msgstr "Suona l'intervallo selezionato" -#: ardour_ui_ed.cc:292 -#, fuzzy -msgid "Play Selection w/Preroll" -msgstr "Suona la regione selezionata" - #: ardour_ui_ed.cc:296 msgid "Enable Record" msgstr "Abilita la registrazione" @@ -1961,39 +1619,14 @@ msgstr "" msgid "Panic" msgstr "Panico" -#: ardour_ui_ed.cc:560 -#, fuzzy -msgid "Wall Clock" -msgstr "Orologio grande" - #: ardour_ui_ed.cc:561 msgid "Disk Space" msgstr "" -#: ardour_ui_ed.cc:562 -#, fuzzy -msgid "DSP" -msgstr "SiP" - -#: ardour_ui_ed.cc:563 -#, fuzzy -msgid "Buffers" -msgstr "Dimenzione buffer:" - #: ardour_ui_ed.cc:564 msgid "JACK Sampling Rate and Latency" msgstr "" -#: ardour_ui_ed.cc:565 -#, fuzzy -msgid "Timecode Format" -msgstr "Rimuovi Campo" - -#: ardour_ui_ed.cc:566 -#, fuzzy -msgid "File Format" -msgstr "Formato del file" - #: ardour_ui_options.cc:65 msgid "" "It is not possible to use JACK as the the sync source\n" @@ -2015,11 +1648,6 @@ msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "" "Impossibile sincronizzazione con JACK: è impostato video \"pull up/down\"" -#: audio_clock.cc:1012 audio_clock.cc:1031 -#, fuzzy -msgid "--pending--" -msgstr "Ascendente" - #: audio_clock.cc:1083 msgid "SR" msgstr "" @@ -2049,11 +1677,6 @@ msgstr "Suddivisione" msgid "programming error: %1" msgstr "Errore di programmazione: %1" -#: audio_clock.cc:1952 audio_clock.cc:1980 -#, fuzzy -msgid "programming error: %1 %2" -msgstr "errore di programmazione: " - #: audio_clock.cc:2048 editor.cc:236 export_timespan_selector.cc:98 msgid "Bars:Beats" msgstr "Battute:Battiti" @@ -2131,13 +1754,6 @@ msgstr "Stato dell'automazione" msgid "hide track" msgstr "Nascondi traccia" -#: automation_time_axis.cc:255 automation_time_axis.cc:307 -#: automation_time_axis.cc:496 gain_meter.cc:195 generic_pluginui.cc:456 -#: generic_pluginui.cc:746 panner_ui.cc:150 -#, fuzzy -msgid "Automation|Manual" -msgstr "Automazione" - #: automation_time_axis.cc:257 automation_time_axis.cc:318 #: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 #: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 @@ -2351,31 +1967,6 @@ msgstr "Valore" msgid "Note" msgstr "Nota" -#: edit_note_dialog.cc:45 -#, fuzzy -msgid "Set selected notes to this channel" -msgstr "Rimuovi il punto di sincronizzazione" - -#: edit_note_dialog.cc:46 -#, fuzzy -msgid "Set selected notes to this pitch" -msgstr "Rimuovi il punto di sincronizzazione" - -#: edit_note_dialog.cc:47 -#, fuzzy -msgid "Set selected notes to this velocity" -msgstr "Rimuovi il punto di sincronizzazione" - -#: edit_note_dialog.cc:49 -#, fuzzy -msgid "Set selected notes to this time" -msgstr "Rimuovi il punto di sincronizzazione" - -#: edit_note_dialog.cc:51 -#, fuzzy -msgid "Set selected notes to this length" -msgstr "Rimuovi il punto di sincronizzazione" - #: edit_note_dialog.cc:58 midi_list_editor.cc:104 patch_change_dialog.cc:91 #: step_entry.cc:393 msgid "Channel" @@ -2632,11 +2223,6 @@ msgstr "Tracce e Bus" msgid "Snapshots" msgstr "Istantanee" -#: editor.cc:545 -#, fuzzy -msgid "Track & Bus Groups" -msgstr "Tracce e Bus" - #: editor.cc:546 msgid "Ranges & Marks" msgstr "Intervalli & marcatori" @@ -2742,11 +2328,6 @@ msgstr "Sposta la fine intervallo alla prossima regione" msgid "Convert to Region In-Place" msgstr "Converti in regione qui" -#: editor.cc:1890 -#, fuzzy -msgid "Convert to Region in Region List" -msgstr "Converti in regione nella lista" - #: editor.cc:1893 editor_markers.cc:925 msgid "Select All in Range" msgstr "Seleziona tutto nell'intervallo" @@ -2791,11 +2372,6 @@ msgstr "Fissa l'intervallo nella lista regioni" msgid "Bounce Range to Region List With Processing" msgstr "Fissa l'intervallo nella lista regioni elaborandolo" -#: editor.cc:1912 editor_markers.cc:908 -#, fuzzy -msgid "Export Range..." -msgstr "Esporta l'intervallo" - #: editor.cc:1927 editor.cc:2008 editor_actions.cc:281 msgid "Play From Edit Point" msgstr "Suona dal punto di modifica" @@ -2897,26 +2473,6 @@ msgstr "Inserisci la regione selezionata" msgid "Insert Existing Media" msgstr "Inserisci media" -#: editor.cc:1989 editor.cc:2045 -#, fuzzy -msgid "Nudge Entire Track Later" -msgstr "Trascina l'intera traccia in avanti" - -#: editor.cc:1990 editor.cc:2046 -#, fuzzy -msgid "Nudge Track After Edit Point Later" -msgstr "Trascina la traccia dopo il cursore di modifica" - -#: editor.cc:1991 editor.cc:2047 -#, fuzzy -msgid "Nudge Entire Track Earlier" -msgstr "Trascina l'intera traccia in avanti" - -#: editor.cc:1992 editor.cc:2048 -#, fuzzy -msgid "Nudge Track After Edit Point Earlier" -msgstr "Trascina la traccia dopo il cursore di modifica" - #: editor.cc:1994 editor.cc:2050 msgid "Nudge" msgstr "Trascina" @@ -2925,16 +2481,6 @@ msgstr "Trascina" msgid "Smart Mode (add Range functions to Object mode)" msgstr "" -#: editor.cc:3071 -#, fuzzy -msgid "Object Mode (select/move Objects)" -msgstr "Seleziona/Sposta oggetti o intervalli" - -#: editor.cc:3072 -#, fuzzy -msgid "Range Mode (select/move Ranges)" -msgstr "Seleziona/Sposta oggetti o intervalli" - #: editor.cc:3073 msgid "Draw/Edit MIDI Notes" msgstr "" @@ -2967,16 +2513,6 @@ msgstr "" "Gruppi: clicca per disattivare\n" "Click di contesto per il resto delle operazioni" -#: editor.cc:3080 -#, fuzzy -msgid "Nudge Region/Selection Later" -msgstr "Trascina regione/selezione in avanti" - -#: editor.cc:3081 -#, fuzzy -msgid "Nudge Region/Selection Earlier" -msgstr "Trascina regione/selezione in avanti" - #: editor.cc:3082 editor_actions.cc:242 msgid "Zoom In" msgstr "Zoom avanti" @@ -3023,16 +2559,6 @@ msgstr "" msgid "malformed URL passed to drag-n-drop code" msgstr "URL non valido passato al codice drag-n-drop" -#: editor.cc:3256 editor_actions.cc:291 -#, fuzzy -msgid "Command|Undo" -msgstr "Comando-" - -#: editor.cc:3258 -#, fuzzy -msgid "Command|Undo (%1)" -msgstr "Annulla (%1)" - #: editor.cc:3265 editor_actions.cc:292 msgid "Redo" msgstr "Ripristina" @@ -3088,11 +2614,6 @@ msgstr "copia le playlist" msgid "clear playlists" msgstr "cancella le playlist" -#: editor.cc:4687 -#, fuzzy -msgid "Please wait while %1 loads visual data." -msgstr "Prego attendere mentre %1 carica i dati per la visualizzazione" - #: editor.cc:5492 editor_markers.cc:940 panner_ui.cc:393 processor_box.cc:2253 msgid "Edit..." msgstr "Modifica..." @@ -3177,20 +2698,10 @@ msgstr "Posizionati sui marcatori" msgid "Markers" msgstr "Marcatori" -#: editor_actions.cc:111 -#, fuzzy -msgid "Meter falloff" -msgstr "Caduta del misuratore" - #: editor_actions.cc:112 msgid "Meter hold" msgstr "Tenuta del misuratore" -#: editor_actions.cc:113 session_option_editor.cc:234 -#, fuzzy -msgid "MIDI Options" -msgstr "Opzioni varie" - #: editor_actions.cc:114 msgid "Misc Options" msgstr "Opzioni varie" @@ -3333,11 +2844,6 @@ msgstr "Al prossimo limite di regione (nessuna selezione della traccia)" msgid "To Previous Region Boundary" msgstr "Al precedente limite di regione" -#: editor_actions.cc:169 -#, fuzzy -msgid "To Previous Region Boundary (No Track Selection)" -msgstr "Al precedente limite di regione (nessuna selezione della traccia)" - #: editor_actions.cc:171 msgid "To Next Region Start" msgstr "All'inizio della prossima regione" @@ -3346,11 +2852,6 @@ msgstr "All'inizio della prossima regione" msgid "To Next Region End" msgstr "Alla fine della prossima regione" -#: editor_actions.cc:173 -#, fuzzy -msgid "To Next Region Sync" -msgstr "Cursore di modifica alla fine" - #: editor_actions.cc:175 msgid "To Previous Region Start" msgstr "All'inizio della regione precedente" @@ -3359,11 +2860,6 @@ msgstr "All'inizio della regione precedente" msgid "To Previous Region End" msgstr "Alla fine della regione precedente" -#: editor_actions.cc:177 -#, fuzzy -msgid "To Previous Region Sync" -msgstr "Cursore di modifica alla fine" - #: editor_actions.cc:179 msgid "To Range Start" msgstr "All'inizio dell'intervallo" @@ -3416,21 +2912,6 @@ msgstr "Seleziona la traccia o il bus precedente" msgid "Toggle Record Enable" msgstr "Abilita la registrazione" -#: editor_actions.cc:204 -#, fuzzy -msgid "Toggle Solo" -msgstr "Solo isolato" - -#: editor_actions.cc:206 -#, fuzzy -msgid "Toggle Mute" -msgstr "Attiva" - -#: editor_actions.cc:208 -#, fuzzy -msgid "Toggle Solo Isolate" -msgstr "Cambia lo stato di zoom" - #: editor_actions.cc:213 msgid "Save View %1" msgstr "Salva la vista %1" @@ -3443,16 +2924,6 @@ msgstr "Vai alla vista %1" msgid "Locate to Mark %1" msgstr "Posizionati sul marcatore %1" -#: editor_actions.cc:229 -#, fuzzy -msgid "Jump to Next Mark" -msgstr "Passa a questo marcatore" - -#: editor_actions.cc:230 -#, fuzzy -msgid "Jump to Previous Mark" -msgstr "Inizio al cursore di modifica" - #: editor_actions.cc:231 msgid "Add Mark from Playhead" msgstr "Aggiungi marcatore in corrispondenza della testina" @@ -3473,16 +2944,6 @@ msgstr "Avanza la testina" msgid "Nudge Playhead Backward" msgstr "Indietreggia la testina" -#: editor_actions.cc:238 -#, fuzzy -msgid "Playhead To Next Grid" -msgstr "Sposta la testina alla fine della prossima regione" - -#: editor_actions.cc:239 -#, fuzzy -msgid "Playhead To Previous Grid" -msgstr "Sposta la testina alla fine della regione precedente" - #: editor_actions.cc:244 msgid "Zoom to Region" msgstr "Zoom sulla regione" @@ -3631,11 +3092,6 @@ msgstr "Inizio intervallo" msgid "Finish Range" msgstr "Fine intervallo" -#: editor_actions.cc:327 -#, fuzzy -msgid "Finish Add Range" -msgstr "Aggiungi un nuovo Intervallo" - #: editor_actions.cc:357 msgid "Follow Playhead" msgstr "Segui la testina" @@ -3644,11 +3100,6 @@ msgstr "Segui la testina" msgid "Remove Last Capture" msgstr "Rimuovi l'ultima registrazione" -#: editor_actions.cc:360 -#, fuzzy -msgid "Stationary Playhead" -msgstr "Inizio" - #: editor_actions.cc:362 insert_time_dialog.cc:32 msgid "Insert Time" msgstr "Inserisci tempo" @@ -3707,16 +3158,6 @@ msgstr "" msgid "Zoom Focus Mouse" msgstr "Zoom sul mouse" -#: editor_actions.cc:402 -#, fuzzy -msgid "Zoom Focus Edit Point" -msgstr "Zoom indietro" - -#: editor_actions.cc:404 -#, fuzzy -msgid "Next Zoom Focus" -msgstr "Zoom" - #: editor_actions.cc:410 msgid "Smart Object Mode" msgstr "" @@ -3733,11 +3174,6 @@ msgstr "Strumento oggetto" msgid "Range Tool" msgstr "Strumento intervallo" -#: editor_actions.cc:429 -#, fuzzy -msgid "Note Drawing Tool" -msgstr "Strumento guadagno" - #: editor_actions.cc:435 msgid "Gain Tool" msgstr "Strumento guadagno" @@ -3762,11 +3198,6 @@ msgstr "" msgid "Edit MIDI" msgstr "Modifica MIDI" -#: editor_actions.cc:472 -#, fuzzy -msgid "Change Edit Point" -msgstr "Annullare l'importazione" - #: editor_actions.cc:473 msgid "Change Edit Point Including Marker" msgstr "" @@ -3796,20 +3227,10 @@ msgstr "Allinea a" msgid "Snap Mode" msgstr "Modalita' di Allineamento" -#: editor_actions.cc:489 -#, fuzzy -msgid "Next Snap Mode" -msgstr "Modalita' di Allineamento" - #: editor_actions.cc:490 msgid "Next Snap Choice" msgstr "" -#: editor_actions.cc:491 -#, fuzzy -msgid "Next Musical Snap Choice" -msgstr "Modalita' di Allineamento" - #: editor_actions.cc:492 msgid "Previous Snap Choice" msgstr "" @@ -3818,26 +3239,6 @@ msgstr "" msgid "Previous Musical Snap Choice" msgstr "" -#: editor_actions.cc:498 -#, fuzzy -msgid "Snap to CD Frame" -msgstr "Modalita' di Allineamento" - -#: editor_actions.cc:499 -#, fuzzy -msgid "Snap to Timecode Frame" -msgstr "Modalita' di Allineamento" - -#: editor_actions.cc:500 -#, fuzzy -msgid "Snap to Timecode Seconds" -msgstr "Secondi" - -#: editor_actions.cc:501 -#, fuzzy -msgid "Snap to Timecode Minutes" -msgstr "Secondi" - #: editor_actions.cc:502 msgid "Snap to Seconds" msgstr "Allinea ai secondi" @@ -3846,16 +3247,6 @@ msgstr "Allinea ai secondi" msgid "Snap to Minutes" msgstr "Allinea ai minuti" -#: editor_actions.cc:505 -#, fuzzy -msgid "Snap to One Twenty Eighths" -msgstr "Allinea a un 1/28" - -#: editor_actions.cc:506 -#, fuzzy -msgid "Snap to Sixty Fourths" -msgstr "Allinea a un 1/24" - #: editor_actions.cc:507 msgid "Snap to Thirty Seconds" msgstr "Allinea ai trentesimi di secondo" @@ -3936,16 +3327,6 @@ msgstr "Spostati ad inizio regione" msgid "Snap to Region End" msgstr "Allinea a fine regione" -#: editor_actions.cc:528 -#, fuzzy -msgid "Snap to Region Sync" -msgstr "Regioni/sincronizzazione" - -#: editor_actions.cc:529 -#, fuzzy -msgid "Snap to Region Boundary" -msgstr "Regioni/confini" - #: editor_actions.cc:531 msgid "Show Marker Lines" msgstr "" @@ -3958,39 +3339,14 @@ msgstr "Ciclo/Punch" msgid "Min:Sec" msgstr "Min:Sec" -#: editor_actions.cc:547 editor_actions.cc:550 -#, fuzzy -msgid "Video Monitor" -msgstr "Controllo" - #: editor_actions.cc:549 rc_option_editor.cc:1842 msgid "Video" msgstr "" -#: editor_actions.cc:552 -#, fuzzy -msgid "Always on Top" -msgstr "Porta in cima" - -#: editor_actions.cc:554 -#, fuzzy -msgid "Frame number" -msgstr "Numero traccia" - -#: editor_actions.cc:555 -#, fuzzy -msgid "Timecode Background" -msgstr "Secondi" - #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" -#: editor_actions.cc:557 -#, fuzzy -msgid "Letterbox" -msgstr "meglio" - #: editor_actions.cc:558 msgid "Original Size" msgstr "" @@ -4059,11 +3415,6 @@ msgstr "Per Data di creazione di sorgente del file" msgid "By Source Filesystem" msgstr "Per Filesystem di sorgente" -#: editor_actions.cc:648 -#, fuzzy -msgid "Remove Unused" -msgstr "Rimuovi bus" - #: editor_actions.cc:652 editor_audio_import.cc:279 #: session_import_dialog.cc:74 session_import_dialog.cc:94 #: session_metadata_dialog.cc:297 editor_videotimeline.cc:108 @@ -4098,11 +3449,6 @@ msgstr "Mostra il logo" msgid "Toggle MIDI Input Active for Editor-Selected Tracks/Busses" msgstr "" -#: editor_actions.cc:696 -#, fuzzy -msgid "Loaded editor bindings from %1" -msgstr "Inizializzazione menù da %1" - #: editor_actions.cc:698 msgid "Could not find editor.bindings in search path %1" msgstr "" @@ -4141,11 +3487,6 @@ msgstr "" msgid "Glue to Bars and Beats" msgstr "Aggancia a battute e battiti" -#: editor_actions.cc:1749 -#, fuzzy -msgid "Remove Sync" -msgstr "Rimuovi il punto di sincronizzazione" - #: editor_actions.cc:1752 mixer_strip.cc:1904 route_time_axis.cc:209 msgid "Mute" msgstr "Muto" @@ -4158,11 +3499,6 @@ msgstr "Normalizza..." msgid "Reverse" msgstr "" -#: editor_actions.cc:1761 -#, fuzzy -msgid "Make Mono Regions" -msgstr "Crea regioni mono" - #: editor_actions.cc:1764 msgid "Boost Gain" msgstr "Aumenta guadagno" @@ -4207,26 +3543,6 @@ msgstr "Imposta l'intervallo di loop" msgid "Set Punch" msgstr "Imposta Punch" -#: editor_actions.cc:1820 -#, fuzzy -msgid "Add Single Range Marker" -msgstr "Aggiungi 1 marcatore di intervallo" - -#: editor_actions.cc:1825 -#, fuzzy -msgid "Add Range Marker Per Region" -msgstr "Aggiungi marcatori di intervallo" - -#: editor_actions.cc:1829 -#, fuzzy -msgid "Snap Position To Grid" -msgstr "Allinea alla griglia" - -#: editor_actions.cc:1832 -#, fuzzy -msgid "Close Gaps" -msgstr "Chiudi" - #: editor_actions.cc:1835 msgid "Rhythm Ferret..." msgstr "" @@ -4247,21 +3563,6 @@ msgstr "Imposta la durata della dissolvenza in entrata" msgid "Set Fade Out Length" msgstr "Durata della dissolvenza in uscita" -#: editor_actions.cc:1850 -#, fuzzy -msgid "Set Tempo from Region = Bar" -msgstr "Nuova Regione dall'intervallo" - -#: editor_actions.cc:1855 -#, fuzzy -msgid "Split at Percussion Onsets" -msgstr "Inizio al cursore di modifica" - -#: editor_actions.cc:1860 -#, fuzzy -msgid "List Editor..." -msgstr "Editor delle Opzioni" - #: editor_actions.cc:1863 msgid "Properties..." msgstr "Proprietà..." @@ -4298,11 +3599,6 @@ msgstr "Azzera guadagno" msgid "Envelope Active" msgstr "Inviluppo attivo/passiv" -#: editor_actions.cc:1885 -#, fuzzy -msgid "Quantize..." -msgstr "Quantizza" - #: editor_actions.cc:1886 editor_actions.cc:1887 msgid "Insert Patch Change..." msgstr "" @@ -4319,26 +3615,6 @@ msgstr "Rimuovi silenzio" msgid "Set Range Selection" msgstr "Imposta intervallo di selezione" -#: editor_actions.cc:1892 -#, fuzzy -msgid "Nudge Later" -msgstr "Sposta avanti" - -#: editor_actions.cc:1893 -#, fuzzy -msgid "Nudge Earlier" -msgstr "Sposta avanti" - -#: editor_actions.cc:1898 -#, fuzzy -msgid "Nudge Later by Capture Offset" -msgstr "Sposta" - -#: editor_actions.cc:1905 -#, fuzzy -msgid "Nudge Earlier by Capture Offset" -msgstr "Sposta" - #: editor_actions.cc:1909 msgid "Trim to Loop" msgstr "Ritaglia in base al ciclo" @@ -4347,26 +3623,6 @@ msgstr "Ritaglia in base al ciclo" msgid "Trim to Punch" msgstr "Ritaglia in base al punch" -#: editor_actions.cc:1912 -#, fuzzy -msgid "Trim to Previous" -msgstr "Inizio al cursore di modifica" - -#: editor_actions.cc:1913 -#, fuzzy -msgid "Trim to Next" -msgstr "Inizio al cursore di modifica" - -#: editor_actions.cc:1920 -#, fuzzy -msgid "Insert Region From Region List" -msgstr "Nuova Regione dall'intervallo" - -#: editor_actions.cc:1926 -#, fuzzy -msgid "Set Sync Position" -msgstr "Per Posizione della Regione" - #: editor_actions.cc:1927 msgid "Place Transient" msgstr "" @@ -4391,26 +3647,6 @@ msgstr "" msgid "Align Start Relative" msgstr "" -#: editor_actions.cc:1946 -#, fuzzy -msgid "Align End" -msgstr "Allinea" - -#: editor_actions.cc:1951 -#, fuzzy -msgid "Align End Relative" -msgstr "Allinea Realtivo" - -#: editor_actions.cc:1958 -#, fuzzy -msgid "Align Sync" -msgstr "Sposta Regione/i" - -#: editor_actions.cc:1965 -#, fuzzy -msgid "Align Sync Relative" -msgstr "Allinea Realtivo" - #: editor_actions.cc:1969 editor_actions.cc:1972 msgid "Choose Top..." msgstr "" @@ -4444,16 +3680,6 @@ msgstr "" msgid "Cancel Import" msgstr "Annullare l'importazione" -#: editor_audio_import.cc:543 -#, fuzzy -msgid "Editor: cannot open file \"%1\", (%2)" -msgstr "Editor: impossibile aprire il file \"%1\" (%2)" - -#: editor_audio_import.cc:551 -#, fuzzy -msgid "Cancel entire import" -msgstr "Annullare l'importazione" - #: editor_audio_import.cc:552 msgid "Don't embed it" msgstr "Non inludere" @@ -4483,11 +3709,6 @@ msgstr "Includi comunque" msgid "fixed time region drag" msgstr "" -#: editor_drag.cc:1700 -#, fuzzy -msgid "Video Start:" -msgstr "Inizio" - #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -4528,90 +3749,30 @@ msgstr "Muovi marcatore" msgid "An error occurred while executing time stretch operation" msgstr "C'è stato un errore durante l'esecuzione di 'time stretch'" -#: editor_drag.cc:4011 -#, fuzzy -msgid "programming_error: %1" -msgstr "Errore di programmazione: %1" - #: editor_drag.cc:4081 editor_markers.cc:680 msgid "new range marker" msgstr "nuovo marcatore di intervallo" -#: editor_drag.cc:4762 -#, fuzzy -msgid "rubberband selection" -msgstr "Suona intervallo/selezione" - -#: editor_route_groups.cc:66 -#, fuzzy -msgid "No Selection = All Tracks?" -msgstr "Nessuna selezione = Tutte le tracce" - -#: editor_route_groups.cc:95 -#, fuzzy -msgid "Col" -msgstr "Colore" - -#: editor_route_groups.cc:95 -#, fuzzy -msgid "Group Tab Color" -msgstr "Colore traccia" - -#: editor_route_groups.cc:96 -#, fuzzy -msgid "Name of Group" -msgstr "Nessun Gruppo" - #: editor_route_groups.cc:97 editor_routes.cc:203 msgid "V" msgstr "" -#: editor_route_groups.cc:97 -#, fuzzy -msgid "Group is visible?" -msgstr "Dissolvenze visibili" - -#: editor_route_groups.cc:98 -#, fuzzy -msgid "On" -msgstr "Apri..." - #: editor_route_groups.cc:98 msgid "Group is enabled?" msgstr "" -#: editor_route_groups.cc:99 -#, fuzzy -msgid "group|G" -msgstr "nessun gruppo" - #: editor_route_groups.cc:99 msgid "Sharing Gain?" msgstr "" -#: editor_route_groups.cc:100 -#, fuzzy -msgid "relative|Rel" -msgstr "Relativo" - #: editor_route_groups.cc:100 msgid "Relative Gain Changes?" msgstr "" -#: editor_route_groups.cc:101 -#, fuzzy -msgid "mute|M" -msgstr "muto" - #: editor_route_groups.cc:101 msgid "Sharing Mute?" msgstr "" -#: editor_route_groups.cc:102 -#, fuzzy -msgid "solo|S" -msgstr "Intervallo di loop" - #: editor_route_groups.cc:102 msgid "Sharing Solo?" msgstr "" @@ -4625,31 +3786,6 @@ msgstr "Reg" msgid "Sharing Record-enable Status?" msgstr "" -#: editor_route_groups.cc:104 -#, fuzzy -msgid "monitoring|Mon" -msgstr "Controllo" - -#: editor_route_groups.cc:104 -#, fuzzy -msgid "Sharing Monitoring Choice?" -msgstr "Scelte di controllo" - -#: editor_route_groups.cc:105 -#, fuzzy -msgid "selection|Sel" -msgstr "Selezione" - -#: editor_route_groups.cc:105 -#, fuzzy -msgid "Sharing Selected/Editing Status?" -msgstr "Adatta le tracce selezionate" - -#: editor_route_groups.cc:106 -#, fuzzy -msgid "active|A" -msgstr "attivo" - #: editor_route_groups.cc:106 msgid "Sharing Active Status?" msgstr "" @@ -4672,16 +3808,6 @@ msgstr "senza nome" msgid "programming error: marker canvas item has no marker object pointer!" msgstr "" -#: editor_export_audio.cc:143 editor_export_audio.cc:148 -#, fuzzy -msgid "File Exists!" -msgstr "Inizio file:" - -#: editor_export_audio.cc:151 -#, fuzzy -msgid "Overwrite Existing File" -msgstr "Inserisci media" - #: editor_group_tabs.cc:162 msgid "Fit to Window" msgstr "Adatta alla finestra" @@ -4699,11 +3825,6 @@ msgstr "fine" msgid "add marker" msgstr "aggiungi marcatore" -#: editor_markers.cc:677 -#, fuzzy -msgid "range" -msgstr " intervallo" - #: editor_markers.cc:713 location_ui.cc:852 msgid "remove marker" msgstr "rimuovi marcatore" @@ -4724,49 +3845,14 @@ msgstr "Sposta marcatore alla testina" msgid "Create Range to Next Marker" msgstr "Crea intervallo fino al prossimo marcatore" -#: editor_markers.cc:896 -#, fuzzy -msgid "Locate to Marker" -msgstr "Posizionati sui marcatori" - -#: editor_markers.cc:897 -#, fuzzy -msgid "Play from Marker" -msgstr "Suona da qui" - -#: editor_markers.cc:900 -#, fuzzy -msgid "Set Marker from Playhead" -msgstr "Imposta dall'inizio" - -#: editor_markers.cc:902 -#, fuzzy -msgid "Set Range from Selection" -msgstr "Imposta intervallo dalla selezione intervallo" - -#: editor_markers.cc:905 -#, fuzzy -msgid "Zoom to Range" -msgstr "Zoom sulla regione" - #: editor_markers.cc:912 msgid "Hide Range" msgstr "Nascondi intervallo" -#: editor_markers.cc:913 -#, fuzzy -msgid "Rename Range..." -msgstr "Rinomina intervallo" - #: editor_markers.cc:917 msgid "Remove Range" msgstr "Rimuovi intervallo" -#: editor_markers.cc:924 -#, fuzzy -msgid "Separate Regions in Range" -msgstr "Nuova Regione dall'intervallo" - #: editor_markers.cc:927 msgid "Select Range" msgstr "Separa l'intervallo" @@ -4818,11 +3904,6 @@ msgid "" "pointer!" msgstr "" -#: editor_mouse.cc:2416 -#, fuzzy -msgid "start point trim" -msgstr "Inizio al cursore di modifica" - #: editor_mouse.cc:2441 msgid "End point trim" msgstr "" @@ -4835,11 +3916,6 @@ msgstr "Nome per la Regione:" msgid "split" msgstr "dividi" -#: editor_ops.cc:256 -#, fuzzy -msgid "alter selection" -msgstr "ardour: selezione del colore" - #: editor_ops.cc:298 msgid "nudge regions forward" msgstr "sposta regioni in avanti" @@ -4856,11 +3932,6 @@ msgstr "sposta regioni indietro" msgid "nudge forward" msgstr "" -#: editor_ops.cc:492 -#, fuzzy -msgid "nudge backward" -msgstr "Sposta indietro" - #: editor_ops.cc:557 msgid "build_region_boundary_cache called with snap_type = %1" msgstr "" @@ -4885,50 +3956,10 @@ msgstr "azzera gli intervalli" msgid "clear locations" msgstr "azzera le posizioni" -#: editor_ops.cc:2000 -#, fuzzy -msgid "insert dragged region" -msgstr "Inserisci la Regione" - #: editor_ops.cc:2078 msgid "insert region" msgstr "inserisci regione" -#: editor_ops.cc:2261 -#, fuzzy -msgid "raise regions" -msgstr "Normalizza regioni" - -#: editor_ops.cc:2263 -#, fuzzy -msgid "raise region" -msgstr "fai il Reverse della regione" - -#: editor_ops.cc:2269 -#, fuzzy -msgid "raise regions to top" -msgstr "allinea le regioni alla griglia" - -#: editor_ops.cc:2271 -#, fuzzy -msgid "raise region to top" -msgstr "Porta in cima" - -#: editor_ops.cc:2277 -#, fuzzy -msgid "lower regions" -msgstr "fai il Reverse della regione" - -#: editor_ops.cc:2279 editor_ops.cc:2287 -#, fuzzy -msgid "lower region" -msgstr "inserisci regione" - -#: editor_ops.cc:2285 -#, fuzzy -msgid "lower regions to bottom" -msgstr "Porta in fondo" - #: editor_ops.cc:2370 msgid "Rename Region" msgstr "Rinomina regione" @@ -4941,34 +3972,14 @@ msgstr "Nuovo nome: " msgid "separate" msgstr "separa" -#: editor_ops.cc:2795 -#, fuzzy -msgid "separate region under" -msgstr "Nuova Regione dall'intervallo" - #: editor_ops.cc:2916 msgid "trim to selection" msgstr "ritaglia in base alla selezione" -#: editor_ops.cc:3052 -#, fuzzy -msgid "set sync point" -msgstr "Definisci il punto di sincronizzazione" - #: editor_ops.cc:3076 msgid "remove region sync" msgstr "Rimuovi il sync della regione" -#: editor_ops.cc:3098 -#, fuzzy -msgid "move regions to original position" -msgstr "Regioni/posizione" - -#: editor_ops.cc:3100 -#, fuzzy -msgid "move region to original position" -msgstr "Regioni/posizione" - #: editor_ops.cc:3121 msgid "align selection" msgstr "allinea selezione" @@ -4977,16 +3988,6 @@ msgstr "allinea selezione" msgid "align selection (relative)" msgstr "allinea selezione (relativo)" -#: editor_ops.cc:3229 -#, fuzzy -msgid "align region" -msgstr "Sposta Regione/i" - -#: editor_ops.cc:3280 -#, fuzzy -msgid "trim front" -msgstr "Inizio al cursore di modifica" - #: editor_ops.cc:3280 msgid "trim back" msgstr "" @@ -5024,21 +4025,6 @@ msgid "" "Freezing will only process the signal as far as the first send/insert/return." msgstr "" -#: editor_ops.cc:3505 -#, fuzzy -msgid "Freeze anyway" -msgstr "Congela" - -#: editor_ops.cc:3506 -#, fuzzy -msgid "Don't freeze" -msgstr "Non posso congelare" - -#: editor_ops.cc:3507 -#, fuzzy -msgid "Freeze Limits" -msgstr "Congela" - #: editor_ops.cc:3522 msgid "Cancel Freeze" msgstr "Annulla congelamento" @@ -5092,11 +4078,6 @@ msgstr "Rimuovi la regione" msgid "duplicate selection" msgstr "duplica selezione" -#: editor_ops.cc:4469 -#, fuzzy -msgid "nudge track" -msgstr "Nascondi traccia" - #: editor_ops.cc:4506 msgid "" "Do you really want to destroy the last capture?\n" @@ -5114,11 +4095,6 @@ msgstr "No, non fare niente." msgid "Yes, destroy it." msgstr "Si, rimuovi." -#: editor_ops.cc:4512 -#, fuzzy -msgid "Destroy last capture" -msgstr "Rimuovi l'ultima registrazione" - #: editor_ops.cc:4573 msgid "normalize" msgstr "Normalizza" @@ -5131,30 +4107,10 @@ msgstr "fai il Reverse della regione" msgid "strip silence" msgstr "elimina silenzio" -#: editor_ops.cc:4763 -#, fuzzy -msgid "Fork Region(s)" -msgstr "Sposta Regione/i" - #: editor_ops.cc:4963 msgid "reset region gain" msgstr "Ripristina il gain della regione" -#: editor_ops.cc:5016 -#, fuzzy -msgid "region gain envelope active" -msgstr "attivo/passivo" - -#: editor_ops.cc:5043 -#, fuzzy -msgid "toggle region lock" -msgstr "Metti in muto questa regione" - -#: editor_ops.cc:5067 -#, fuzzy -msgid "Toggle Video Lock" -msgstr "Metti in muto questa regione" - #: editor_ops.cc:5091 msgid "region lock style" msgstr "" @@ -5191,16 +4147,6 @@ msgstr "attiva dissolvenza in uscita" msgid "set loop range from selection" msgstr "intervallo di ciclo dalla selezione" -#: editor_ops.cc:5660 -#, fuzzy -msgid "set loop range from edit range" -msgstr "Nuova Regione dall'intervallo" - -#: editor_ops.cc:5689 -#, fuzzy -msgid "set loop range from region" -msgstr "Nuova Regione dall'intervallo" - #: editor_ops.cc:5707 msgid "set punch range from selection" msgstr "imposta intervallo di punch dalla selezione" @@ -5230,11 +4176,6 @@ msgid "Do you want to set the global tempo or add a new tempo marker?" msgstr "" "Vuoi impostare il tempo globale o aggiungere un nuovo marcatore di tempo?" -#: editor_ops.cc:5888 -#, fuzzy -msgid "set tempo from region" -msgstr "Nuova Regione dall'intervallo" - #: editor_ops.cc:5918 msgid "split regions" msgstr "dividi regioni" @@ -5279,11 +4220,6 @@ msgstr "" msgid "snap regions to grid" msgstr "allinea le regioni alla griglia" -#: editor_ops.cc:6199 -#, fuzzy -msgid "Close Region Gaps" -msgstr "Sposta Regione/i" - #: editor_ops.cc:6204 msgid "Crossfade length" msgstr "Durata della dissolvenza incrociata" @@ -5424,25 +4360,10 @@ msgstr "separa le regioni" msgid "Region name, with number of channels in []'s" msgstr "" -#: editor_regions.cc:112 -#, fuzzy -msgid "Position of start of region" -msgstr "Vai all'inizio della sessione" - #: editor_regions.cc:113 editor_regions.cc:849 time_info_box.cc:98 msgid "End" msgstr "Fine" -#: editor_regions.cc:113 -#, fuzzy -msgid "Position of end of region" -msgstr "Vai alla fine della sessione" - -#: editor_regions.cc:114 -#, fuzzy -msgid "Length of the region" -msgstr "Metti in muto questa regione" - #: editor_regions.cc:115 msgid "Position of region sync point, relative to start of the region" msgstr "" @@ -5460,11 +4381,6 @@ msgstr "" msgid "L" msgstr "" -#: editor_regions.cc:118 -#, fuzzy -msgid "Region position locked?" -msgstr "Per Posizione della Regione" - #: editor_regions.cc:119 msgid "G" msgstr "" @@ -5479,11 +4395,6 @@ msgstr "" msgid "M" msgstr "" -#: editor_regions.cc:120 -#, fuzzy -msgid "Region muted?" -msgstr "Fine regione" - #: editor_regions.cc:121 msgid "O" msgstr "" @@ -5537,75 +4448,20 @@ msgstr "MANCANTE" msgid "SS" msgstr "" -#: editor_routes.cc:202 -#, fuzzy -msgid "Track/Bus Name" -msgstr "Tracce/Bus" - -#: editor_routes.cc:203 -#, fuzzy -msgid "Track/Bus visible ?" -msgstr "Tracce/Bus" - #: editor_routes.cc:204 mixer_strip.cc:1945 meter_strip.cc:334 #: route_time_axis.cc:2407 msgid "A" msgstr "A" -#: editor_routes.cc:204 -#, fuzzy -msgid "Track/Bus active ?" -msgstr "Tracce/Bus" - -#: editor_routes.cc:205 mixer_strip.cc:1932 -#, fuzzy -msgid "I" -msgstr "Ingresso" - -#: editor_routes.cc:205 -#, fuzzy -msgid "MIDI input enabled" -msgstr "Tieni traccia delle Entrate MIDI" - #: editor_routes.cc:206 mixer_strip.cc:1930 mono_panner.cc:198 #: stereo_panner.cc:215 stereo_panner.cc:242 msgid "R" msgstr "" -#: editor_routes.cc:206 -#, fuzzy -msgid "Record enabled" -msgstr "Attiva registrazione" - -#: editor_routes.cc:207 -#, fuzzy -msgid "Muted" -msgstr "Muto" - #: editor_routes.cc:208 mixer_strip.cc:1941 meter_strip.cc:330 msgid "S" msgstr "" -#: editor_routes.cc:208 -#, fuzzy -msgid "Soloed" -msgstr "In solo..." - -#: editor_routes.cc:209 -#, fuzzy -msgid "SI" -msgstr "Ingresso" - -#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1880 -#, fuzzy -msgid "Solo Isolated" -msgstr "isolato" - -#: editor_routes.cc:210 -#, fuzzy -msgid "Solo Safe (Locked)" -msgstr "Intervallo di loop" - #: editor_routes.cc:471 mixer_ui.cc:1162 msgid "Hide All" msgstr "Nascondi tutto" @@ -5650,11 +4506,6 @@ msgstr "Pulisci tutte le posizioni" msgid "Unhide locations" msgstr "Scopri le posizioni" -#: editor_rulers.cc:346 -#, fuzzy -msgid "New range" -msgstr "Nuovo Intervallo" - #: editor_rulers.cc:347 msgid "Clear all ranges" msgstr "Pulisci tutti gli intervalli" @@ -5679,16 +4530,6 @@ msgstr "Nuovo Meter" msgid "Timeline height" msgstr "" -#: editor_rulers.cc:383 -#, fuzzy -msgid "Align Video Track" -msgstr "Aggiungi traccia audio" - -#: editor_selection.cc:889 editor_selection.cc:932 -#, fuzzy -msgid "set selected regions" -msgstr "Esegui la regione selezionata come loop" - #: editor_selection.cc:1414 msgid "select all" msgstr "seleziona tutto" @@ -5721,16 +4562,6 @@ msgstr "seleziona tutto dopo il cursore" msgid "select all before cursor" msgstr "seleziona tutto prima del cursore" -#: editor_selection.cc:1753 -#, fuzzy -msgid "select all after edit" -msgstr "Inizio al cursore di modifica" - -#: editor_selection.cc:1755 -#, fuzzy -msgid "select all before edit" -msgstr "Inizio al cursore di modifica" - #: editor_selection.cc:1888 msgid "No edit range defined" msgstr "Nessun intervallo di modifica definito" @@ -5743,11 +4574,6 @@ msgstr "" "Il punto di modifica è impostato sul marcatore selezionato\n" "ma non c'è nessun marcatore selezionato." -#: editor_snapshots.cc:136 -#, fuzzy -msgid "Rename Snapshot" -msgstr "Rimuovi l'istantanea" - #: editor_snapshots.cc:138 msgid "New name of snapshot" msgstr "Nuovo nome dell'istantanea" @@ -5807,11 +4633,6 @@ msgid "" "programming error: meter marker canvas item has no marker object pointer!" msgstr "" -#: editor_timefx.cc:68 -#, fuzzy -msgid "stretch/shrink" -msgstr "Allunga/Restringi" - #: editor_timefx.cc:129 msgid "pitch shift" msgstr "" @@ -5936,11 +4757,6 @@ msgstr "" msgid "Driver:" msgstr "Driver:" -#: engine_dialog.cc:186 -#, fuzzy -msgid "Audio Interface:" -msgstr "Interfaccia:" - #: engine_dialog.cc:191 sfdb_ui.cc:147 sfdb_ui.cc:260 sfdb_ui.cc:265 msgid "Sample rate:" msgstr "Frequenza di campionamento" @@ -6022,37 +4838,6 @@ msgstr "Avanzate" msgid "cannot open JACK rc file %1 to store parameters" msgstr "Non posso aprire il file rc di JACK per memorizzare i parametri" -#: engine_dialog.cc:787 -#, fuzzy -msgid "" -"You do not have any audio devices capable of\n" -"simultaneous playback and recording.\n" -"\n" -"Please use Applications -> Utilities -> Audio MIDI Setup\n" -"to create an \"aggregrate\" device, or install a suitable\n" -"audio interface.\n" -"\n" -"Please send email to Apple and ask them why new Macs\n" -"have no duplex audio device.\n" -"\n" -"Alternatively, if you really want just playback\n" -"or recording but not both, start JACK before running\n" -"%1 and choose the relevant device then." -msgstr "" -"Non hai nessun dispositivo audio in grado \n" -"di riprodurre e registrare simultaneamente.\n" -"\n" -"Utilizza Applicazioni->Utilità-> Configurazione Audio MIDI\n" -"per creare un dispositivo \"aggregato\" o installare \n" -"una interfaccia audio adatta allo scopo.\n" -"\n" -"Mandate una email alla Apple e chiedete come mail\n" -"i nuovi Mac non hanno dispositivi audio duplex.\n" -"\n" -"In alternativa, se volete soltanto riprodurre o registrare\n" -"ma non in simultanea, avviate JACK prima di Ardour e scegliete\n" -"il dispositivo appropriato." - #: engine_dialog.cc:800 msgid "No suitable audio devices" msgstr "Non ci sono dispositivi audio adatti " @@ -6103,16 +4888,6 @@ msgstr "La regione contiene dissolvenze e guadagno (canali: %1)" msgid "Track output (channels: %1)" msgstr "Uscita traccia (canali: %1)" -#: export_channel_selector.cc:536 -#, fuzzy -msgid "Export region contents" -msgstr "Esporta regione" - -#: export_channel_selector.cc:537 -#, fuzzy -msgid "Export track output" -msgstr "Connetti le uscite della traccia e del bus" - #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten.Error: " msgstr "Errore: " @@ -6201,11 +4961,6 @@ msgstr "Sorgente" msgid "Stem Export" msgstr "Esportazione Stem" -#: export_file_notebook.cc:38 -#, fuzzy -msgid "Add another format" -msgstr "Clicca qui per aggiungere un altro formato" - #: export_file_notebook.cc:178 msgid "Format" msgstr "Formato" @@ -6214,16 +4969,6 @@ msgstr "Formato" msgid "Location" msgstr "Posizione" -#: export_file_notebook.cc:255 -#, fuzzy -msgid "No format!" -msgstr "Normale" - -#: export_file_notebook.cc:267 -#, fuzzy -msgid "Format %1: %2" -msgstr "Formato:" - #: export_filename_selector.cc:32 msgid "Label:" msgstr "Etichetta:" @@ -6351,11 +5096,6 @@ msgstr "Veloce (sinc)" msgid "Zero order hold" msgstr "" -#: export_format_dialog.cc:879 -#, fuzzy -msgid "Linear encoding options" -msgstr "azzera le connessioni" - #: export_format_dialog.cc:895 msgid "Ogg Vorbis options" msgstr "Opzioni Ogg Vorbis" @@ -6368,13 +5108,6 @@ msgstr "Opzioni FLAC" msgid "Broadcast Wave options" msgstr "" -#: export_format_selector.cc:136 -#, fuzzy -msgid "Do you really want to remove the format?" -msgstr "" -"Si vuole realmente rimuovere la traccia \"%1\" ?\n" -"(questa azione non potrà essere annullata)" - #: export_preset_selector.cc:28 msgid "Preset" msgstr "Preimpostazione" @@ -6387,13 +5120,6 @@ msgstr "" "Il preset selezionato non è stato caricato correttamente!\n" "Forse fa riferimento ad un formato che è stato rimosso?" -#: export_preset_selector.cc:156 -#, fuzzy -msgid "Do you really want to remove this preset?" -msgstr "" -"Si vuole realmente rimuovere la traccia \"%1\" ?\n" -"(questa azione non potrà essere annullata)" - #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "Mostra tempo come:" @@ -6406,11 +5132,6 @@ msgstr "a" msgid "Range" msgstr "Intervallo" -#: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 -#, fuzzy -msgid "curl error %1 (%2)" -msgstr "Errore di programmazione: %1 (%2)" - #: sfdb_freesound_mootcher.cc:266 msgid "getSoundResourceFile: There is no valid root in the xml file" msgstr "" @@ -6456,11 +5177,6 @@ msgstr "" msgid "Presets" msgstr "Presets" -#: generic_pluginui.cc:232 -#, fuzzy -msgid "Switches" -msgstr "Intonazione" - #: generic_pluginui.cc:242 generic_pluginui.cc:376 processor_box.cc:2212 msgid "Controls" msgstr "Controlli" @@ -6470,11 +5186,6 @@ msgid "Plugin Editor: could not build control element for port %1" msgstr "" "Plugin Editor: impossibile creare elemento di controllo per la porta %1" -#: generic_pluginui.cc:408 -#, fuzzy -msgid "Meters" -msgstr "Suddivisione" - #: generic_pluginui.cc:423 msgid "Automation control" msgstr "Controllo automazione" @@ -6507,35 +5218,10 @@ msgstr "Registrazione abilitata" msgid "Soloed..." msgstr "In solo..." -#: group_tabs.cc:316 -#, fuzzy -msgid "Create New Group ..." -msgstr "Nuovo Gruppo" - #: group_tabs.cc:317 msgid "Create New Group From" msgstr "" -#: group_tabs.cc:320 -#, fuzzy -msgid "Edit Group..." -msgstr "Nuovo Gruppo" - -#: group_tabs.cc:321 -#, fuzzy -msgid "Collect Group" -msgstr "Colleziona" - -#: group_tabs.cc:322 -#, fuzzy -msgid "Remove Group" -msgstr "Modifica Gruppo" - -#: group_tabs.cc:325 -#, fuzzy -msgid "Remove Subgroup Bus" -msgstr "Aggiungi un nuovo bus sottogruppo" - #: group_tabs.cc:327 msgid "Add New Subgroup Bus" msgstr "Aggiungi un nuovo bus sottogruppo" @@ -6552,11 +5238,6 @@ msgstr "Aggiungi un bus ausiliario (post-fader)" msgid "Enable All Groups" msgstr "" -#: group_tabs.cc:337 -#, fuzzy -msgid "Disable All Groups" -msgstr "Disabilita tutto" - #: gtk-custom-ruler.c:133 msgid "Lower limit of ruler" msgstr "" @@ -6597,20 +5278,10 @@ msgstr "Tempo da inserire:" msgid "Intersected regions should:" msgstr "Le regioni con intersezione dovrebbero:" -#: insert_time_dialog.cc:57 -#, fuzzy -msgid "stay in position" -msgstr "Per Posizione della Regione" - #: insert_time_dialog.cc:58 msgid "move" msgstr "sposta" -#: insert_time_dialog.cc:59 -#, fuzzy -msgid "be split" -msgstr "Dividi" - #: insert_time_dialog.cc:65 msgid "Insert time on all the track's playlists" msgstr "" @@ -6637,20 +5308,10 @@ msgid "" "(may cause oddities in the tempo map)" msgstr "" -#: insert_time_dialog.cc:91 -#, fuzzy -msgid "Insert time" -msgstr "Inserisci selezione" - #: interthread_progress_window.cc:103 msgid "Importing file: %1 of %2" msgstr "Importazione file: %1 di %2" -#: io_selector.cc:220 -#, fuzzy -msgid "I/O selector" -msgstr "Esegui la regione selezionata come loop" - #: io_selector.cc:265 msgid "%1 input" msgstr "entrata %1" @@ -6695,46 +5356,14 @@ msgstr "" msgid "Main_menu" msgstr "" -#: keyeditor.cc:255 -#, fuzzy -msgid "redirectmenu" -msgstr "Pre Redirezionamenti" - -#: keyeditor.cc:257 -#, fuzzy -msgid "Editor_menus" -msgstr "Editor" - -#: keyeditor.cc:259 -#, fuzzy -msgid "RegionList" -msgstr "Regioni" - -#: keyeditor.cc:261 -#, fuzzy -msgid "ProcessorMenu" -msgstr "Gestione processore" - #: latency_gui.cc:39 msgid "sample" msgstr "campione" -#: latency_gui.cc:40 -#, fuzzy -msgid "msec" -msgstr "msec" - #: latency_gui.cc:41 msgid "period" msgstr "periodo" -#: latency_gui.cc:55 -#, fuzzy -msgid "%1 sample" -msgid_plural "%1 samples" -msgstr[0] "campione" -msgstr[1] "campione" - #: latency_gui.cc:72 panner_ui.cc:392 msgid "Reset" msgstr "Azzera" @@ -6743,11 +5372,6 @@ msgstr "Azzera" msgid "programming error: %1 (%2)" msgstr "Errore di programmazione: %1 (%2)" -#: location_ui.cc:50 location_ui.cc:52 -#, fuzzy -msgid "Use PH" -msgstr "Invia MMC" - #: location_ui.cc:54 msgid "CD" msgstr "CD" @@ -6760,20 +5384,10 @@ msgstr "Colla" msgid "Performer:" msgstr "" -#: location_ui.cc:86 -#, fuzzy -msgid "Composer:" -msgstr "Compositore" - #: location_ui.cc:88 msgid "Pre-Emphasis" msgstr "" -#: location_ui.cc:314 -#, fuzzy -msgid "Remove this range" -msgstr "Dimentica questo intervallo" - #: location_ui.cc:315 msgid "Start time - middle click to locate here" msgstr "" @@ -6782,30 +5396,10 @@ msgstr "" msgid "End time - middle click to locate here" msgstr "" -#: location_ui.cc:319 -#, fuzzy -msgid "Set range start from playhead location" -msgstr "Imposta dall'inizio" - -#: location_ui.cc:320 -#, fuzzy -msgid "Set range end from playhead location" -msgstr "Imposta intervallo dalla selezione intervallo" - -#: location_ui.cc:324 -#, fuzzy -msgid "Remove this marker" -msgstr "Dimentica questo marcatore" - #: location_ui.cc:325 msgid "Position - middle click to locate here" msgstr "" -#: location_ui.cc:327 -#, fuzzy -msgid "Set marker time from playhead location" -msgstr "Imposta intervallo dalla selezione intervallo" - #: location_ui.cc:494 msgid "You cannot put a CD marker at the start of the session" msgstr "Impossibile inserire un marcatore CD all'inizio della sessione" @@ -6838,30 +5432,6 @@ msgstr "agggiungi marcatore di intervallo" msgid "%1 could not connect to JACK." msgstr "%1 non si è potuto connettere a JACK" -#: main.cc:87 -#, fuzzy -msgid "" -"There are several possible reasons:\n" -"\n" -"1) JACK is not running.\n" -"2) JACK is running as another user, perhaps root.\n" -"3) There is already another client called \"%1\".\n" -"\n" -"Please consider the possibilities, and perhaps (re)start JACK." -msgstr "" -"Ci sono vari possibili motivi:\n" -"1) JACK non è stato avviato. \n" -"2) JACK è stato avviato con un altro utente o come amminstratore.\n" -"3) Esiste già un'altra istanza \"ardour\".\n" -"\n" -"Prendete in considerazione le ipotesi e magari provate ad avviare di nuovo " -"JACK." - -#: main.cc:203 main.cc:324 -#, fuzzy -msgid "cannot create user %3 folder %1 (%2)" -msgstr "impossibile creare la cartella utente ardour %1 (%2)" - #: main.cc:210 main.cc:331 msgid "cannot open pango.rc file %1" msgstr "impossibile aprire il file pango.rc %1" @@ -6923,20 +5493,6 @@ msgstr "" msgid " and GCC version " msgstr "" -#: main.cc:500 -#, fuzzy -msgid "Copyright (C) 1999-2012 Paul Davis" -msgstr "Diritti (C) 1999-2011 Paul Davis" - -#: main.cc:501 -#, fuzzy -msgid "" -"Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " -"Baker, Robin Gareus" -msgstr "" -"Per alcune parti Diritti (C) Steve Harris, Ari Johnson, Brett Viren, Joel " -"Baker" - #: main.cc:503 msgid "%1 comes with ABSOLUTELY NO WARRANTY" msgstr "%1 è fornito SENZA ALCUNA GARANZIA" @@ -6963,21 +5519,6 @@ msgstr "Impossibile inizializzare %1." msgid "Cannot xinstall SIGPIPE error handler" msgstr "" -#: main.cc:528 -#, fuzzy -msgid "could not create %1 GUI" -msgstr "Impossibile creare l'interfaccia di Ardour" - -#: main_clock.cc:51 -#, fuzzy -msgid "Display delta to edit cursor" -msgstr "Inizio al cursore di modifica" - -#: marker.cc:251 video_image_frame.cc:121 -#, fuzzy -msgid "MarkerText" -msgstr "Marcatori" - #: midi_channel_selector.cc:159 midi_channel_selector.cc:397 #: midi_channel_selector.cc:433 msgid "All" @@ -6992,45 +5533,10 @@ msgstr "Inverti" msgid "Force" msgstr "Forza" -#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 -#, fuzzy -msgid "MIDI Channel Control" -msgstr "Controllo MIDI" - -#: midi_channel_selector.cc:332 -#, fuzzy -msgid "Playback all channels" -msgstr "cancella" - -#: midi_channel_selector.cc:333 -#, fuzzy -msgid "Play only selected channels" -msgstr "Suona l'intervallo selezionato" - #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" -#: midi_channel_selector.cc:335 -#, fuzzy -msgid "Record all channels" -msgstr "cancella" - -#: midi_channel_selector.cc:336 -#, fuzzy -msgid "Record only selected channels" -msgstr "modifca la nota" - -#: midi_channel_selector.cc:337 -#, fuzzy -msgid "Force all channels to 1 channel" -msgstr "cancella" - -#: midi_channel_selector.cc:378 -#, fuzzy -msgid "Inbound" -msgstr "Confini regione" - #: midi_channel_selector.cc:398 msgid "Click to enable recording all channels" msgstr "" @@ -7043,11 +5549,6 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" -#: midi_channel_selector.cc:415 -#, fuzzy -msgid "Playback" -msgstr "Solo riproduzione" - #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -7092,26 +5593,6 @@ msgstr "" msgid "Triplet" msgstr "" -#: midi_list_editor.cc:58 -#, fuzzy -msgid "Quarter" -msgstr "quarto (4)" - -#: midi_list_editor.cc:59 -#, fuzzy -msgid "Eighth" -msgstr "Destra" - -#: midi_list_editor.cc:60 -#, fuzzy -msgid "Sixteenth" -msgstr "sedicesimo (16)" - -#: midi_list_editor.cc:61 -#, fuzzy -msgid "Thirty-second" -msgstr "trentaduesimo (32)" - #: midi_list_editor.cc:62 msgid "Sixty-fourth" msgstr "" @@ -7124,61 +5605,6 @@ msgstr "" msgid "Vel" msgstr "" -#: midi_list_editor.cc:215 -#, fuzzy -msgid "edit note start" -msgstr "modifca la nota" - -#: midi_list_editor.cc:224 -#, fuzzy -msgid "edit note channel" -msgstr "modifca la nota" - -#: midi_list_editor.cc:234 -#, fuzzy -msgid "edit note number" -msgstr "modifca la nota" - -#: midi_list_editor.cc:244 -#, fuzzy -msgid "edit note velocity" -msgstr "modifca la nota" - -#: midi_list_editor.cc:258 -#, fuzzy -msgid "edit note length" -msgstr "cambia le durate" - -#: midi_list_editor.cc:460 -#, fuzzy -msgid "insert new note" -msgstr "Inserisci tempo" - -#: midi_list_editor.cc:524 -#, fuzzy -msgid "delete notes (from list)" -msgstr "Elimina nota" - -#: midi_list_editor.cc:599 -#, fuzzy -msgid "change note channel" -msgstr "cancella" - -#: midi_list_editor.cc:607 -#, fuzzy -msgid "change note number" -msgstr "cambia le durate" - -#: midi_list_editor.cc:617 -#, fuzzy -msgid "change note velocity" -msgstr "Suona intervallo/selezione" - -#: midi_list_editor.cc:687 -#, fuzzy -msgid "change note length" -msgstr "cambia le durate" - #: midi_port_dialog.cc:39 msgid "Add MIDI Port" msgstr "Aggiungi una porta MIDI" @@ -7191,21 +5617,6 @@ msgstr "Nome porta:" msgid "MidiPortDialog" msgstr "" -#: midi_region_view.cc:838 -#, fuzzy -msgid "channel edit" -msgstr "canali" - -#: midi_region_view.cc:874 -#, fuzzy -msgid "velocity edit" -msgstr "Pressione" - -#: midi_region_view.cc:931 -#, fuzzy -msgid "add note" -msgstr "modifca la nota" - #: midi_region_view.cc:1779 msgid "step add" msgstr "" @@ -7214,25 +5625,10 @@ msgstr "" msgid "insane MIDI patch key %1:%2" msgstr "" -#: midi_region_view.cc:1870 midi_region_view.cc:1890 -#, fuzzy -msgid "alter patch change" -msgstr "Imposta l'intervallo di Punch" - #: midi_region_view.cc:1924 msgid "add patch change" msgstr "" -#: midi_region_view.cc:1942 -#, fuzzy -msgid "move patch change" -msgstr "Imposta l'intervallo di Punch" - -#: midi_region_view.cc:1953 -#, fuzzy -msgid "delete patch change" -msgstr "Seleziona l'intervallo di punch" - #: midi_region_view.cc:2022 msgid "delete selection" msgstr "cancella selezione" @@ -7241,86 +5637,26 @@ msgstr "cancella selezione" msgid "delete note" msgstr "Elimina nota" -#: midi_region_view.cc:2425 -#, fuzzy -msgid "move notes" -msgstr "Rimuovi Campo" - #: midi_region_view.cc:2647 msgid "resize notes" msgstr "" -#: midi_region_view.cc:2901 -#, fuzzy -msgid "change velocities" -msgstr "Suona intervallo/selezione" - -#: midi_region_view.cc:2967 -#, fuzzy -msgid "transpose" -msgstr "Traduttori" - #: midi_region_view.cc:3001 msgid "change note lengths" msgstr "cambia le durate" -#: midi_region_view.cc:3070 -#, fuzzy -msgid "nudge" -msgstr "Sposta" - -#: midi_region_view.cc:3085 -#, fuzzy -msgid "change channel" -msgstr "cancella" - -#: midi_region_view.cc:3130 -#, fuzzy -msgid "Bank " -msgstr "Banco" - -#: midi_region_view.cc:3131 -#, fuzzy -msgid "Program " -msgstr "Programma" - -#: midi_region_view.cc:3132 -#, fuzzy -msgid "Channel " -msgstr "Canale" - #: midi_region_view.cc:3301 midi_region_view.cc:3303 msgid "paste" msgstr "Incolla" -#: midi_region_view.cc:3761 -#, fuzzy -msgid "delete sysex" -msgstr "Elimina nota" - -#: midi_streamview.cc:479 -#, fuzzy -msgid "failed to create MIDI region" -msgstr "ardour: rinomina la regione" - #: midi_time_axis.cc:262 msgid "External MIDI Device" msgstr "" -#: midi_time_axis.cc:263 -#, fuzzy -msgid "External Device Mode" -msgstr "Usa il Monitoraggio Hardware" - #: midi_time_axis.cc:271 msgid "Chns" msgstr "" -#: midi_time_axis.cc:272 -#, fuzzy -msgid "Click to edit channel settings" -msgstr "Pulisci tutte le posizioni" - #: midi_time_axis.cc:486 msgid "Show Full Range" msgstr "Mostra tutto l'intervallo" @@ -7329,26 +5665,6 @@ msgstr "Mostra tutto l'intervallo" msgid "Fit Contents" msgstr "Adatta i contenuti" -#: midi_time_axis.cc:495 -#, fuzzy -msgid "Note Range" -msgstr " intervallo" - -#: midi_time_axis.cc:496 -#, fuzzy -msgid "Note Mode" -msgstr "modo" - -#: midi_time_axis.cc:497 -#, fuzzy -msgid "Channel Selector" -msgstr "Colore canale" - -#: midi_time_axis.cc:502 -#, fuzzy -msgid "Color Mode" -msgstr "Colore" - #: midi_time_axis.cc:561 msgid "Bender" msgstr "" @@ -7357,21 +5673,6 @@ msgstr "" msgid "Pressure" msgstr "Pressione" -#: midi_time_axis.cc:578 -#, fuzzy -msgid "Controllers" -msgstr "Uscite di Controllo" - -#: midi_time_axis.cc:583 -#, fuzzy -msgid "No MIDI Channels selected" -msgstr "Inserisci selezione" - -#: midi_time_axis.cc:640 midi_time_axis.cc:769 -#, fuzzy -msgid "Hide all channels" -msgstr "cancella" - #: midi_time_axis.cc:644 midi_time_axis.cc:773 msgid "Show all channels" msgstr "Mostra tutti i canali" @@ -7380,16 +5681,6 @@ msgstr "Mostra tutti i canali" msgid "Channel %1" msgstr "Canale %1" -#: midi_time_axis.cc:910 midi_time_axis.cc:942 -#, fuzzy -msgid "Controllers %1-%2" -msgstr "Uscite di Controllo" - -#: midi_time_axis.cc:933 midi_time_axis.cc:936 -#, fuzzy -msgid "Controller %1" -msgstr "Uscite di Controllo" - #: midi_time_axis.cc:959 msgid "Sustained" msgstr "Sostenuto" @@ -7398,11 +5689,6 @@ msgstr "Sostenuto" msgid "Percussive" msgstr "Percussivo" -#: midi_time_axis.cc:986 -#, fuzzy -msgid "Meter Colors" -msgstr "Colore" - #: midi_time_axis.cc:993 msgid "Channel Colors" msgstr "Colore canale" @@ -7411,21 +5697,10 @@ msgstr "Colore canale" msgid "Track Color" msgstr "Colore traccia" -#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 -#: midi_time_axis.cc:1510 -#, fuzzy -msgid "all" -msgstr "Piccolo" - #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" -#: midi_tracer.cc:43 -#, fuzzy -msgid "Line history: " -msgstr "Limita lo storico degli annullamenti a" - #: midi_tracer.cc:51 msgid "Auto-Scroll" msgstr "Auto scorrimento" @@ -7438,20 +5713,10 @@ msgstr "Decimale" msgid "Enabled" msgstr "Abilitato" -#: midi_tracer.cc:54 -#, fuzzy -msgid "Delta times" -msgstr "Tempo di inizio" - #: midi_tracer.cc:66 msgid "Port:" msgstr "Porta:" -#: midi_velocity_dialog.cc:31 -#, fuzzy -msgid "New velocity" -msgstr "Pressione" - #: missing_file_dialog.cc:34 msgid "Missing File!" msgstr "File mancante!" @@ -7537,41 +5802,6 @@ msgstr "" msgid "Set Gain to 0dB on Mixer-Selected Tracks/Busses" msgstr "" -#: mixer_actor.cc:63 -#, fuzzy -msgid "Copy Selected Processors" -msgstr "Regioni selezionate" - -#: mixer_actor.cc:64 -#, fuzzy -msgid "Cut Selected Processors" -msgstr "Adatta le tracce selezionate" - -#: mixer_actor.cc:65 -#, fuzzy -msgid "Paste Selected Processors" -msgstr "Esegui la regione selezionata come loop" - -#: mixer_actor.cc:66 -#, fuzzy -msgid "Delete Selected Processors" -msgstr "Esegui la regione selezionata come loop" - -#: mixer_actor.cc:67 -#, fuzzy -msgid "Select All (visible) Processors" -msgstr "tutti i processori disponibili" - -#: mixer_actor.cc:68 -#, fuzzy -msgid "Toggle Selected Processors" -msgstr "Muovi il marcatore selezionato" - -#: mixer_actor.cc:69 -#, fuzzy -msgid "Toggle Selected Plugins" -msgstr "Esegui le regioni selezionate" - #: mixer_actor.cc:72 mixer_actor.cc:73 msgid "Scroll Mixer Window to the left" msgstr "" @@ -7580,11 +5810,6 @@ msgstr "" msgid "Toggle MIDI Input Active for Mixer-Selected Tracks/Busses" msgstr "" -#: mixer_actor.cc:90 -#, fuzzy -msgid "Loaded mixer bindings from %1" -msgstr "Inizializzazione menù da %1" - #: mixer_actor.cc:92 msgid "Could not find mixer.bindings in search path %1" msgstr "" @@ -7593,12 +5818,6 @@ msgstr "" msgid "pre" msgstr "" -#: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 -#: rc_option_editor.cc:1881 -#, fuzzy -msgid "Comments" -msgstr "Commento" - #: mixer_strip.cc:147 msgid "Click to toggle the width of this mixer strip." msgstr "" @@ -7609,16 +5828,6 @@ msgid "" "%1-%2-click to toggle the width of all strips." msgstr "" -#: mixer_strip.cc:156 -#, fuzzy -msgid "Hide this mixer strip" -msgstr "Nascondi tutti i Bus del Mixer" - -#: mixer_strip.cc:167 -#, fuzzy -msgid "Click to select metering point" -msgstr "Esegui la regione selezionata come loop" - #: mixer_strip.cc:173 msgid "tupni" msgstr "" @@ -7639,47 +5848,10 @@ msgstr "blocca" msgid "iso" msgstr "" -#: mixer_strip.cc:258 -#, fuzzy -msgid "Mix group" -msgstr "nessun gruppo" - -#: mixer_strip.cc:351 rc_option_editor.cc:1878 -#, fuzzy -msgid "Phase Invert" -msgstr "Inverti" - -#: mixer_strip.cc:352 rc_option_editor.cc:1879 route_ui.cc:1218 -#, fuzzy -msgid "Solo Safe" -msgstr "Intervallo di loop" - #: mixer_strip.cc:355 mixer_ui.cc:124 route_time_axis.cc:673 msgid "Group" msgstr "Gruppo" -#: mixer_strip.cc:356 rc_option_editor.cc:1882 -#, fuzzy -msgid "Meter Point" -msgstr "Misurazione" - -#: mixer_strip.cc:470 -#, fuzzy -msgid "Enable/Disable MIDI input" -msgstr "Abilita/Disabilita il click audio" - -#: mixer_strip.cc:622 -#, fuzzy -msgid "" -"Aux\n" -"Sends" -msgstr "Mandate" - -#: mixer_strip.cc:646 -#, fuzzy -msgid "Snd" -msgstr "Secondi" - #: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 msgid "Not connected to JACK - no I/O changes are possible" msgstr "Nessuna connessione a JACK - nessuna modifica I/O consentita" @@ -7696,16 +5868,6 @@ msgstr "" msgid "Disconnected" msgstr "Disconnesso" -#: mixer_strip.cc:1303 -#, fuzzy -msgid "*Comments*" -msgstr "Commento" - -#: mixer_strip.cc:1310 -#, fuzzy -msgid "Cmt" -msgstr "taglia" - #: mixer_strip.cc:1313 msgid "*Cmt*" msgstr "" @@ -7714,11 +5876,6 @@ msgstr "" msgid "Click to Add/Edit Comments" msgstr "" -#: mixer_strip.cc:1358 -#, fuzzy -msgid ": comment editor" -msgstr "IU: impossibile avviare l'editor" - #: mixer_strip.cc:1435 msgid "Grp" msgstr "" @@ -7747,45 +5904,10 @@ msgstr "Regola la latenza..." msgid "Protect Against Denormals" msgstr "Protezione dalla denormalizzazione" -#: mixer_strip.cc:1491 route_time_axis.cc:435 -#, fuzzy -msgid "Remote Control ID..." -msgstr "Rimuovi il punto di sincronizzazione" - -#: mixer_strip.cc:1717 mixer_strip.cc:1741 -#, fuzzy -msgid "in" -msgstr "vuoto" - -#: mixer_strip.cc:1725 -#, fuzzy -msgid "post" -msgstr "entrata" - -#: mixer_strip.cc:1729 -#, fuzzy -msgid "out" -msgstr "Circa" - #: mixer_strip.cc:1734 msgid "custom" msgstr "personalizzato" -#: mixer_strip.cc:1745 -#, fuzzy -msgid "pr" -msgstr "entrata" - -#: mixer_strip.cc:1749 -#, fuzzy -msgid "po" -msgstr "entrata" - -#: mixer_strip.cc:1753 -#, fuzzy -msgid "o" -msgstr "Mono" - #: mixer_strip.cc:1758 msgid "c" msgstr "" @@ -7802,35 +5924,10 @@ msgstr "AFL" msgid "PFL" msgstr "PFL" -#: mixer_strip.cc:1933 -#, fuzzy -msgid "D" -msgstr "CD" - -#: mixer_strip.cc:1953 -#, fuzzy -msgid "i" -msgstr "vuoto" - -#: mixer_strip.cc:2128 -#, fuzzy -msgid "Pre-fader" -msgstr "Pre Fader" - -#: mixer_strip.cc:2129 -#, fuzzy -msgid "Post-fader" -msgstr "Post Fader" - #: mixer_strip.cc:2166 meter_strip.cc:728 msgid "Change all in Group to %1" msgstr "" -#: mixer_strip.cc:2168 meter_strip.cc:730 -#, fuzzy -msgid "Change all to %1" -msgstr "Canale %1" - #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -7851,11 +5948,6 @@ msgstr "Strisce" msgid "Variable height" msgstr "" -#: meter_strip.cc:765 -#, fuzzy -msgid "Short" -msgstr "breve" - #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -7908,11 +6000,6 @@ msgstr "" msgid "SiP" msgstr "SiP" -#: monitor_section.cc:86 -#, fuzzy -msgid "soloing" -msgstr "Intervallo di loop" - #: monitor_section.cc:90 msgid "isolated" msgstr "isolato" @@ -7937,21 +6024,6 @@ msgstr "" "Se attivo, qualcosa è in ascolto.\n" "Clicca per ripristinare" -#: monitor_section.cc:124 -#, fuzzy -msgid "Solo controls affect solo-in-place" -msgstr "I controlli di solo sono controlli di ascolto" - -#: monitor_section.cc:130 -#, fuzzy -msgid "Solo controls toggle after-fader-listen" -msgstr "I controlli di solo sono controlli di ascolto" - -#: monitor_section.cc:136 -#, fuzzy -msgid "Solo controls toggle pre-fader-listen" -msgstr "I controlli di solo sono controlli di ascolto" - #: monitor_section.cc:144 msgid "Gain increase for soloed signals (0dB is normal)" msgstr "" @@ -7974,25 +6046,10 @@ msgstr "" msgid "Gain reduction to use when dimming monitor outputs" msgstr "" -#: monitor_section.cc:181 -#, fuzzy -msgid "Dim" -msgstr "Decimale" - -#: monitor_section.cc:190 -#, fuzzy -msgid "excl. solo" -msgstr "Solo esclusivo" - #: monitor_section.cc:192 msgid "Exclusive solo means that only 1 solo is active at a time" msgstr "Solo esclusivo vuol dire che soltanto un solo per volta è attivo" -#: monitor_section.cc:199 -#, fuzzy -msgid "solo » mute" -msgstr "Solo / mute" - #: monitor_section.cc:201 msgid "" "If enabled, solo will override mute\n" @@ -8013,69 +6070,14 @@ msgstr "" msgid "mono" msgstr "" -#: monitor_section.cc:266 -#, fuzzy -msgid "Monitor" -msgstr "Controllo" - -#: monitor_section.cc:678 -#, fuzzy -msgid "Switch monitor to mono" -msgstr "Passa alla 2a ottava" - -#: monitor_section.cc:681 -#, fuzzy -msgid "Cut monitor" -msgstr ":controllo" - -#: monitor_section.cc:684 -#, fuzzy -msgid "Dim monitor" -msgstr ":controllo" - -#: monitor_section.cc:687 -#, fuzzy -msgid "Toggle exclusive solo mode" -msgstr "Solo esclusivo" - #: monitor_section.cc:693 msgid "Toggle mute overrides solo mode" msgstr "" -#: monitor_section.cc:705 -#, fuzzy -msgid "Cut monitor channel %1" -msgstr "Uscite di Controllo" - -#: monitor_section.cc:710 -#, fuzzy -msgid "Dim monitor channel %1" -msgstr "Uscite di Controllo" - -#: monitor_section.cc:715 -#, fuzzy -msgid "Solo monitor channel %1" -msgstr "Uscite di Controllo" - -#: monitor_section.cc:720 -#, fuzzy -msgid "Invert monitor channel %1" -msgstr "Uscite di Controllo" - #: monitor_section.cc:730 msgid "In-place solo" msgstr "" -#: monitor_section.cc:732 -#, fuzzy -msgid "After Fade Listen (AFL) solo" -msgstr "ascolto after-fader" - -#: monitor_section.cc:734 -#, fuzzy -msgid "Pre Fade Listen (PFL) solo" -msgstr "ascolto pre-fader" - #: mono_panner.cc:101 #, c-format msgid "L:%3d R:%3d" @@ -8090,11 +6092,6 @@ msgstr "" msgid "%" msgstr "" -#: nag.cc:41 -#, fuzzy -msgid "Support %1 Development" -msgstr "Supporta lo sviluppo di Ardour" - #: nag.cc:42 msgid "I'd like to make a one-time donation" msgstr "Voglio fare una donazione una tantum" @@ -8225,14 +6222,6 @@ msgid "" " -a, --no-announcements Do not contact website for announcements\n" msgstr "" -#: opts.cc:62 -#, fuzzy -msgid "" -" -b, --bindings Print all possible keyboard binding names\n" -msgstr "" -" -b, --bindings Mostra tutte le possibili combinazioni di " -"tasti\n" - #: opts.cc:63 msgid "" " -c, --name Use a specific jack client name, default is " @@ -8254,12 +6243,6 @@ msgid "" "available options\n" msgstr "" -#: opts.cc:66 -#, fuzzy -msgid " -n, --no-splash Do not show splash screen\n" -msgstr "" -" -n, --no-splash Non mostrare la schermata d'avvio\n" - #: opts.cc:67 msgid " -m, --menus file Use \"file\" to define menus\n" msgstr "" @@ -8278,11 +6261,6 @@ msgstr "" msgid " -P, --no-connect-ports Do not connect any ports at startup\n" msgstr "" -#: opts.cc:71 -#, fuzzy -msgid " -S, --sync Draw the gui synchronously \n" -msgstr " -v, --versione Mostra info sulla versione\n" - #: opts.cc:73 msgid " -V, --novst Do not use VST support\n" msgstr " -n, --no-splash Non usare il supporto VST\n" @@ -8307,11 +6285,6 @@ msgstr "" msgid "Panner (2D)" msgstr "" -#: panner2d.cc:783 panner_ui.cc:384 plugin_ui.cc:451 -#, fuzzy -msgid "Bypass" -msgstr "Battute" - #: panner2d.cc:787 msgid "Panner" msgstr "" @@ -8369,29 +6342,14 @@ msgstr "Il nome contiene" msgid "Type contains" msgstr "Il tipo contiene" -#: plugin_selector.cc:55 plugin_selector.cc:222 -#, fuzzy -msgid "Category contains" -msgstr "ardour: connessioni" - #: plugin_selector.cc:56 plugin_selector.cc:244 msgid "Author contains" msgstr "" -#: plugin_selector.cc:57 plugin_selector.cc:246 -#, fuzzy -msgid "Library contains" -msgstr "azzera le connessioni" - #: plugin_selector.cc:58 plugin_selector.cc:210 plugin_selector.cc:521 msgid "Favorites only" msgstr "Solo favoriti" -#: plugin_selector.cc:59 plugin_selector.cc:214 plugin_selector.cc:521 -#, fuzzy -msgid "Hidden only" -msgstr "Nascosto" - #: plugin_selector.cc:64 msgid "Plugin Manager" msgstr "Gestore dei plugin" @@ -8416,26 +6374,6 @@ msgstr "Categoria" msgid "Creator" msgstr "Creatore" -#: plugin_selector.cc:90 -#, fuzzy -msgid "# Audio In" -msgstr "Nascondi tutti i Bus Audio" - -#: plugin_selector.cc:91 -#, fuzzy -msgid "# Audio Out" -msgstr "Nascondi tutti i Bus Audio" - -#: plugin_selector.cc:92 -#, fuzzy -msgid "# MIDI In" -msgstr "Tieni traccia delle Entrate MIDI" - -#: plugin_selector.cc:93 -#, fuzzy -msgid "# MIDI Out" -msgstr "Tieni traccia delle Uscite MIDI" - #: plugin_selector.cc:115 msgid "Plugins to be connected" msgstr "Plugin da connettere" @@ -8491,31 +6429,6 @@ msgstr "Per categoria" msgid "Eh? LADSPA plugins don't have editors!" msgstr "Cosa? I plugin LADSPA non hanno editor?" -#: plugin_ui.cc:125 plugin_ui.cc:227 -#, fuzzy -msgid "" -"unknown type of editor-supplying plugin (note: no VST support in this " -"version of %1)" -msgstr "" -"tipo di plugin fornito sconosciuto (nota: nessun supporto a VST in questa " -"versione di ardour)" - -#: plugin_ui.cc:128 -#, fuzzy -msgid "unknown type of editor-supplying plugin" -msgstr "" -"tipo di plugin fornito sconosciuto (nota: nessun supporto a VST in questa " -"versione di ardour)" - -#: plugin_ui.cc:257 -#, fuzzy -msgid "" -"unknown type of editor-supplying plugin (note: no linuxVST support in this " -"version of %1)" -msgstr "" -"tipo di plugin fornito sconosciuto (nota: nessun supporto a VST in questa " -"versione di ardour)" - #: plugin_ui.cc:329 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "" @@ -8524,11 +6437,6 @@ msgstr "" msgid "Add" msgstr "Aggiungi" -#: plugin_ui.cc:421 -#, fuzzy -msgid "Description" -msgstr "Direzione:" - #: plugin_ui.cc:422 msgid "Plugin analysis" msgstr "Analisi plugin" @@ -8539,11 +6447,6 @@ msgid "" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:430 -#, fuzzy -msgid "Save a new preset" -msgstr "Nome del nuovo preset" - #: plugin_ui.cc:431 msgid "Save the current preset" msgstr "" @@ -8566,13 +6469,6 @@ msgstr "" msgid "Click to enable/disable this plugin" msgstr "" -#: plugin_ui.cc:506 -#, fuzzy -msgid "latency (%1 sample)" -msgid_plural "latency (%1 samples)" -msgstr[0] "latenza (%1 campioni)" -msgstr[1] "latenza (%1 campioni)" - #: plugin_ui.cc:508 msgid "latency (%1 ms)" msgstr "latenza (%1 ms)" @@ -8613,11 +6509,6 @@ msgstr "%1 Tracce" msgid "Hardware" msgstr "" -#: port_group.cc:338 -#, fuzzy -msgid "%1 Misc" -msgstr "Varie" - #: port_group.cc:339 msgid "Other" msgstr "Altro" @@ -8634,11 +6525,6 @@ msgstr "" msgid "MTC in" msgstr "" -#: port_group.cc:466 -#, fuzzy -msgid "MIDI control in" -msgstr "Porta MMC" - #: port_group.cc:469 msgid "MIDI clock in" msgstr "" @@ -8647,16 +6533,6 @@ msgstr "" msgid "MMC in" msgstr "" -#: port_group.cc:476 -#, fuzzy -msgid "MTC out" -msgstr "Porta MTC" - -#: port_group.cc:479 -#, fuzzy -msgid "MIDI control out" -msgstr "Porta MMC" - #: port_group.cc:482 msgid "MIDI clock out" msgstr "" @@ -8701,16 +6577,6 @@ msgstr "Nessun segnale rilevato" msgid "Detecting ..." msgstr "Rilevamento..." -#: port_insert_ui.cc:166 -#, fuzzy -msgid "Port Insert " -msgstr "Nuova entrata" - -#: port_matrix.cc:331 port_matrix.cc:357 -#, fuzzy -msgid "Sources" -msgstr "Avanzate..." - #: port_matrix.cc:332 port_matrix.cc:358 msgid "Destinations" msgstr "Destinazioni" @@ -8729,11 +6595,6 @@ msgstr "Rinomina '%s'..." msgid "Remove all" msgstr "Rimuovi tutto" -#: port_matrix.cc:492 port_matrix.cc:504 -#, fuzzy, c-format -msgid "%s all" -msgstr "azzera" - #: port_matrix.cc:527 msgid "Rescan" msgstr "Aggiorna" @@ -8746,15 +6607,6 @@ msgstr "Mostra porte individuali" msgid "Flip" msgstr "" -#: port_matrix.cc:723 -#, fuzzy -msgid "" -"It is not possible to add a port here, as the first processor in the track " -"or buss cannot support the new configuration." -msgstr "" -"Questa porta non può essere rimossa visto che il plugin nella traccia/bus " -"non può accettare il nuovo numero di ingressi" - #: port_matrix.cc:726 msgid "Cannot add port" msgstr "" @@ -8763,26 +6615,11 @@ msgstr "" msgid "Port removal not allowed" msgstr "La rimozione delle porte non è consentita" -#: port_matrix.cc:749 -#, fuzzy -msgid "" -"This port cannot be removed.\n" -"Either the first plugin in the track or buss cannot accept\n" -"the new number of inputs or the last plugin has more outputs." -msgstr "" -"Questa porta non può essere rimossa visto che il plugin nella traccia/bus " -"non può accettare il nuovo numero di ingressi" - #: port_matrix.cc:966 #, c-format msgid "Remove '%s'" msgstr "Rimuovi '%s'" -#: port_matrix.cc:981 -#, fuzzy, c-format -msgid "%s all from '%s'" -msgstr "Seleziona tutto" - #: port_matrix.cc:1047 msgid "channel" msgstr "canali" @@ -8808,21 +6645,6 @@ msgid "" "Double-click to show generic GUI." msgstr "" -#: processor_box.cc:372 -#, fuzzy -msgid "Show All Controls" -msgstr "Mostra le mandate" - -#: processor_box.cc:376 -#, fuzzy -msgid "Hide All Controls" -msgstr "Nascondi tutte le dissolvenze" - -#: processor_box.cc:465 -#, fuzzy -msgid "on" -msgstr "Mono" - #: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 msgid "off" msgstr "spento" @@ -8849,20 +6671,6 @@ msgstr "" "\n" "Questo plugin ha:\n" -#: processor_box.cc:1209 -#, fuzzy -msgid "\t%1 MIDI input\n" -msgid_plural "\t%1 MIDI inputs\n" -msgstr[0] "\t%1 ingresso MIDI \n" -msgstr[1] "entrata %1" - -#: processor_box.cc:1213 -#, fuzzy -msgid "\t%1 audio input\n" -msgid_plural "\t%1 audio inputs\n" -msgstr[0] "\t%1 ingresso audio\n" -msgstr[1] "entrata %1" - #: processor_box.cc:1216 msgid "" "\n" @@ -8871,20 +6679,6 @@ msgstr "" "\n" "ma in corrispondenza del punto di inserimento ci sono:\n" -#: processor_box.cc:1219 -#, fuzzy -msgid "\t%1 MIDI channel\n" -msgid_plural "\t%1 MIDI channels\n" -msgstr[0] "cancella" -msgstr[1] "cancella" - -#: processor_box.cc:1223 -#, fuzzy -msgid "\t%1 audio channel\n" -msgid_plural "\t%1 audio channels\n" -msgstr[0] "cancella" -msgstr[1] "cancella" - #: processor_box.cc:1226 msgid "" "\n" @@ -8927,15 +6721,6 @@ msgid "" "could not match the configuration of this track." msgstr "" -#: processor_box.cc:2000 -#, fuzzy -msgid "" -"Do you really want to remove all processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Si vuole realmente rimuovere la traccia %1 ?\n" -"(questa azione non potrà essere annullata)" - #: processor_box.cc:2004 processor_box.cc:2029 msgid "Yes, remove them all" msgstr "Si, rimuovi tutto" @@ -8944,24 +6729,6 @@ msgstr "Si, rimuovi tutto" msgid "Remove processors" msgstr "Rimuovi processori" -#: processor_box.cc:2021 -#, fuzzy -msgid "" -"Do you really want to remove all pre-fader processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Si vuole realmente rimuovere la traccia \"%1\" ?\n" -"(questa azione non potrà essere annullata)" - -#: processor_box.cc:2024 -#, fuzzy -msgid "" -"Do you really want to remove all post-fader processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Si vuole realmente rimuovere la traccia \"%1\" ?\n" -"(questa azione non potrà essere annullata)" - #: processor_box.cc:2200 msgid "New Plugin" msgstr "Nuovo plugin" @@ -8970,11 +6737,6 @@ msgstr "Nuovo plugin" msgid "New Insert" msgstr "Nuovo insert" -#: processor_box.cc:2206 -#, fuzzy -msgid "New External Send ..." -msgstr "Nuova mandata ausiliaria..." - #: processor_box.cc:2210 msgid "New Aux Send ..." msgstr "Nuova mandata ausiliaria..." @@ -8995,11 +6757,6 @@ msgstr "Pulisci (post-fader)" msgid "Activate All" msgstr "Attiva tutto" -#: processor_box.cc:2246 -#, fuzzy -msgid "Deactivate All" -msgstr "Disattiva tutto" - #: processor_box.cc:2248 msgid "A/B Plugins" msgstr "Plugin A/B" @@ -9012,21 +6769,6 @@ msgstr "" msgid "%1: %2 (by %3)" msgstr "%1: %2 (per %3)" -#: patch_change_dialog.cc:51 -#, fuzzy -msgid "Patch Change" -msgstr "Suona l'intervallo" - -#: patch_change_dialog.cc:77 -#, fuzzy -msgid "Patch Bank" -msgstr "Suona l'intervallo" - -#: patch_change_dialog.cc:84 -#, fuzzy -msgid "Patch" -msgstr "Chiavistello (?)" - #: patch_change_dialog.cc:99 step_entry.cc:429 msgid "Program" msgstr "Programma" @@ -9055,16 +6797,6 @@ msgstr "Swing" msgid "Threshold (ticks)" msgstr "Soglia (ticks)" -#: quantize_dialog.cc:63 -#, fuzzy -msgid "Snap note start" -msgstr "Regioni/inizio" - -#: quantize_dialog.cc:64 -#, fuzzy -msgid "Snap note end" -msgstr "Secondi" - #: rc_option_editor.cc:69 msgid "Click audio file:" msgstr "File audio (click):" @@ -9113,11 +6845,6 @@ msgstr "Elimina usando:" msgid "Insert note using:" msgstr "Inserisci nota usando:" -#: rc_option_editor.cc:395 -#, fuzzy -msgid "Ignore snap using:" -msgstr "Ignora l'allineamento automatico usando" - #: rc_option_editor.cc:411 msgid "Keyboard layout:" msgstr "Disposizione della tastiera:" @@ -9134,11 +6861,6 @@ msgstr "Riproduzione (secondi di buffering)" msgid "Recording (seconds of buffering):" msgstr "Registrazione (secondi di buffering)" -#: rc_option_editor.cc:656 -#, fuzzy -msgid "Control Surface Protocol" -msgstr "Piattaforme di comando" - #: rc_option_editor.cc:660 msgid "Feedback" msgstr "" @@ -9178,11 +6900,6 @@ msgid "" "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:836 -#, fuzzy -msgid "Video Folder:" -msgstr "Cartella:" - #: rc_option_editor.cc:841 msgid "" "Local path to the video-server document-root. Only files below this " @@ -9232,43 +6949,18 @@ msgstr "%1 processori" msgid "This setting will only take effect when %1 is restarted." msgstr "" -#: rc_option_editor.cc:1025 -#, fuzzy -msgid "Options|Undo" -msgstr "Opzioni" - -#: rc_option_editor.cc:1032 -#, fuzzy -msgid "Verify removal of last capture" -msgstr "Rimuovi l'ultima registrazione" - #: rc_option_editor.cc:1040 msgid "Make periodic backups of the session file" msgstr "Fai periodicamente un backup del file di sessione" -#: rc_option_editor.cc:1045 -#, fuzzy -msgid "Session Management" -msgstr "Nome della sessione:" - #: rc_option_editor.cc:1050 msgid "Always copy imported files" msgstr "Copia sempre i file importati" -#: rc_option_editor.cc:1057 -#, fuzzy -msgid "Default folder for new sessions:" -msgstr "Cartella base per le nuove sessioni" - #: rc_option_editor.cc:1065 msgid "Maximum number of recent sessions" msgstr "" -#: rc_option_editor.cc:1078 -#, fuzzy -msgid "Click gain level" -msgstr "File audio (click):" - #: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "Automazione" @@ -9350,11 +7042,6 @@ msgstr "" msgid "Sync/Slave" msgstr "" -#: rc_option_editor.cc:1185 -#, fuzzy -msgid "External timecode source" -msgstr "Usa il Monitoraggio Hardware" - #: rc_option_editor.cc:1195 msgid "Match session video frame rate to external timecode" msgstr "" @@ -9373,11 +7060,6 @@ msgid "" "external timecode standard and the session standard." msgstr "" -#: rc_option_editor.cc:1211 -#, fuzzy -msgid "External timecode is sync locked" -msgstr "Usa il Monitoraggio Hardware" - #: rc_option_editor.cc:1217 msgid "" "When enabled indicates that the selected external timecode source " @@ -9401,25 +7083,10 @@ msgid "" "variant of using exactly 29.97 fps has zero timecode drift.\n" msgstr "" -#: rc_option_editor.cc:1240 -#, fuzzy -msgid "LTC Reader" -msgstr "smorzamento" - #: rc_option_editor.cc:1244 msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1257 -#, fuzzy -msgid "LTC Generator" -msgstr "Creatore" - -#: rc_option_editor.cc:1262 -#, fuzzy -msgid "Enable LTC generator" -msgstr "Abilita le traduzioni" - #: rc_option_editor.cc:1269 msgid "send LTC while stopped" msgstr "" @@ -9430,11 +7097,6 @@ msgid "" "transport (playhead) is not moving" msgstr "" -#: rc_option_editor.cc:1281 -#, fuzzy -msgid "LTC generator level" -msgstr "Creatore" - #: rc_option_editor.cc:1285 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " @@ -9478,11 +7140,6 @@ msgstr "" msgid "Show waveforms in regions" msgstr "Mostra le onde nelle regioni" -#: rc_option_editor.cc:1356 -#, fuzzy -msgid "Show gain envelopes in audio regions" -msgstr "Mostra le onde nelle regioni" - #: rc_option_editor.cc:1357 msgid "in all modes" msgstr "" @@ -9491,11 +7148,6 @@ msgstr "" msgid "only in region gain mode" msgstr "" -#: rc_option_editor.cc:1365 -#, fuzzy -msgid "Waveform scale" -msgstr "Forme wave" - #: rc_option_editor.cc:1370 msgid "linear" msgstr "lineare" @@ -9504,21 +7156,6 @@ msgstr "lineare" msgid "logarithmic" msgstr "logaritmico" -#: rc_option_editor.cc:1377 -#, fuzzy -msgid "Waveform shape" -msgstr "Forme wave" - -#: rc_option_editor.cc:1382 -#, fuzzy -msgid "traditional" -msgstr "Tradizionale" - -#: rc_option_editor.cc:1383 -#, fuzzy -msgid "rectified" -msgstr "Rettificato" - #: rc_option_editor.cc:1390 msgid "Show waveforms for audio while it is being recorded" msgstr "Mostra le onde durante la registrazione audio" @@ -9539,11 +7176,6 @@ msgstr "" msgid "Synchronise editor and mixer track order" msgstr "Sincronizza l'ordine delle tracce tra editor e mixer" -#: rc_option_editor.cc:1430 -#, fuzzy -msgid "Synchronise editor and mixer selection" -msgstr "Sincronizza l'ordine delle tracce tra editor e mixer" - #: rc_option_editor.cc:1437 msgid "Name new markers" msgstr "Assegna un nome ai nuovi marcatori" @@ -9568,11 +7200,6 @@ msgstr "" msgid "Record monitoring handled by" msgstr "Controllo della registrazione da parte di" -#: rc_option_editor.cc:1475 -#, fuzzy -msgid "ardour" -msgstr "ardour: orologio" - #: rc_option_editor.cc:1476 msgid "audio hardware" msgstr "hardware audio" @@ -9613,11 +7240,6 @@ msgstr "automaticamente alle uscite fisiche" msgid "automatically to master bus" msgstr "automaticamente al bus master" -#: rc_option_editor.cc:1523 -#, fuzzy -msgid "Denormals" -msgstr "Normale" - #: rc_option_editor.cc:1528 msgid "Use DC bias to protect against denormals" msgstr "" @@ -9642,11 +7264,6 @@ msgstr "" msgid "use FlushToZero and DenormalsAreZero" msgstr "" -#: rc_option_editor.cc:1563 -#, fuzzy -msgid "Silence plugins when the transport is stopped" -msgstr "Ferma i plugin insieme alla riproduzione" - #: rc_option_editor.cc:1571 msgid "Make new plugins active" msgstr "Attiva i nuovi plugin" @@ -9675,30 +7292,10 @@ msgstr "" msgid "Solo controls are Listen controls" msgstr "I controlli di solo sono controlli di ascolto" -#: rc_option_editor.cc:1613 -#, fuzzy -msgid "Listen Position" -msgstr "Posizione" - -#: rc_option_editor.cc:1618 -#, fuzzy -msgid "after-fader (AFL)" -msgstr "ascolto after-fader" - -#: rc_option_editor.cc:1619 -#, fuzzy -msgid "pre-fader (PFL)" -msgstr "ascolto pre-fader" - #: rc_option_editor.cc:1625 msgid "PFL signals come from" msgstr "i segnali PFL provengono da" -#: rc_option_editor.cc:1630 -#, fuzzy -msgid "before pre-fader processors" -msgstr "rimuovi marcatore" - #: rc_option_editor.cc:1631 msgid "pre-fader but after pre-fader processors" msgstr "" @@ -9707,16 +7304,6 @@ msgstr "" msgid "AFL signals come from" msgstr "I segnali AFL provengono da" -#: rc_option_editor.cc:1642 -#, fuzzy -msgid "immediately post-fader" -msgstr "Pulisci (post-fader)" - -#: rc_option_editor.cc:1643 -#, fuzzy -msgid "after post-fader processors (before pan)" -msgstr "rimuovi marcatore" - #: rc_option_editor.cc:1652 msgid "Exclusive solo" msgstr "Solo esclusivo" @@ -9765,11 +7352,6 @@ msgstr "" msgid "Send MIDI Machine Control commands" msgstr "" -#: rc_option_editor.cc:1751 -#, fuzzy -msgid "Send MIDI control feedback" -msgstr "Porta MMC" - #: rc_option_editor.cc:1759 msgid "Inbound MMC device ID" msgstr "" @@ -9790,16 +7372,6 @@ msgstr "" msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "" -#: rc_option_editor.cc:1802 -#, fuzzy -msgid "Sound MIDI notes as they are selected" -msgstr "Inserisci selezione" - -#: rc_option_editor.cc:1810 rc_option_editor.cc:1820 rc_option_editor.cc:1822 -#, fuzzy -msgid "User interaction" -msgstr "Operazioni sulle regioni" - #: rc_option_editor.cc:1813 msgid "" "Use translations of %1 messages\n" @@ -9827,15 +7399,6 @@ msgstr "segue l'ordine del mixer" msgid "follows order of editor" msgstr "segue l'ordine dell'editor" -#: rc_option_editor.cc:1846 rc_option_editor.cc:1854 rc_option_editor.cc:1864 -#: rc_option_editor.cc:1885 rc_option_editor.cc:1894 rc_option_editor.cc:1902 -#: rc_option_editor.cc:1916 rc_option_editor.cc:1935 rc_option_editor.cc:1951 -#: rc_option_editor.cc:1967 rc_option_editor.cc:1981 rc_option_editor.cc:1995 -#: rc_option_editor.cc:1997 -#, fuzzy -msgid "Preferences|GUI" -msgstr "Preferenze" - #: rc_option_editor.cc:1849 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "" @@ -9852,21 +7415,6 @@ msgstr "" msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" -#: rc_option_editor.cc:1887 -#, fuzzy -msgid "Mixer Strip" -msgstr "Mixer" - -#: rc_option_editor.cc:1897 -#, fuzzy -msgid "Use narrow strips in the mixer by default" -msgstr "Strisce del Mixer strette" - -#: rc_option_editor.cc:1906 -#, fuzzy -msgid "Peak hold time" -msgstr "Soglia di picco" - #: rc_option_editor.cc:1912 msgid "short" msgstr "breve" @@ -9879,11 +7427,6 @@ msgstr "medio" msgid "long" msgstr "lungo" -#: rc_option_editor.cc:1920 -#, fuzzy -msgid "DPM fall-off" -msgstr "Caduta del misuratore" - #: rc_option_editor.cc:1926 msgid "slowest [6.6dB/sec]" msgstr "" @@ -9970,11 +7513,6 @@ msgstr "" msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1985 -#, fuzzy -msgid "Peak threshold [dBFS]" -msgstr "Soglia di picco" - #: rc_option_editor.cc:1993 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " @@ -10025,30 +7563,10 @@ msgstr "Sorgente:" msgid "Region '%1'" msgstr "Regione '%1'" -#: region_editor.cc:273 -#, fuzzy -msgid "change region start position" -msgstr "Regioni/posizione" - -#: region_editor.cc:289 -#, fuzzy -msgid "change region end position" -msgstr "Regioni/posizione" - #: region_editor.cc:309 msgid "change region length" msgstr "cambia la durata della regione" -#: region_editor.cc:403 region_editor.cc:415 -#, fuzzy -msgid "change region sync point" -msgstr "Regioni/posizione" - -#: region_layering_order_editor.cc:41 -#, fuzzy -msgid "RegionLayeringOrderEditor" -msgstr "Regioni/fine" - #: region_layering_order_editor.cc:54 msgid "Region Name" msgstr "Nome regione" @@ -10137,16 +7655,6 @@ msgstr "" msgid "Split region" msgstr "Separa la regione" -#: rhythm_ferret.cc:67 -#, fuzzy -msgid "Snap regions" -msgstr "Separa la Regione" - -#: rhythm_ferret.cc:68 -#, fuzzy -msgid "Conform regions" -msgstr "Nome per la Regione" - #: rhythm_ferret.cc:73 msgid "Rhythm Ferret" msgstr "" @@ -10155,11 +7663,6 @@ msgstr "" msgid "Analyze" msgstr "Analizza" -#: rhythm_ferret.cc:114 -#, fuzzy -msgid "Detection function" -msgstr "Per Posizione della Regione" - #: rhythm_ferret.cc:118 msgid "Trigger gap" msgstr "" @@ -10196,11 +7699,6 @@ msgstr "" msgid "Relative" msgstr "Relativo" -#: route_group_dialog.cc:42 -#, fuzzy -msgid "Muting" -msgstr "Ordinamento" - #: route_group_dialog.cc:43 msgid "Soloing" msgstr "" @@ -10213,25 +7711,10 @@ msgstr "Attiva registrazione" msgid "Selection" msgstr "Selezione" -#: route_group_dialog.cc:46 -#, fuzzy -msgid "Active state" -msgstr "Attiva" - #: route_group_dialog.cc:47 route_group_dialog.cc:76 theme_manager.cc:71 msgid "Color" msgstr "Colore" -#: route_group_dialog.cc:53 -#, fuzzy -msgid "RouteGroupDialog" -msgstr "Pulisci" - -#: route_group_dialog.cc:92 -#, fuzzy -msgid "Sharing" -msgstr "Avanzate..." - #: route_group_dialog.cc:182 msgid "" "A route group of this name already exists. Please use a different name." @@ -10290,16 +7773,6 @@ msgstr "Registrazione (clicca col destro per la modifica passo passo)" msgid "Record" msgstr "Registra" -#: route_time_axis.cc:210 -#, fuzzy -msgid "Route Group" -msgstr "Modifica Gruppo" - -#: route_time_axis.cc:213 -#, fuzzy -msgid "MIDI Controllers and Automation" -msgstr "Porta MMC" - #: route_time_axis.cc:390 msgid "Show All Automation" msgstr "Mostra tutte le automazioni" @@ -10312,11 +7785,6 @@ msgstr "Mostra le automazioni esistenti" msgid "Hide All Automation" msgstr "Nascondi tutte le automazioni" -#: route_time_axis.cc:405 -#, fuzzy -msgid "Processor automation" -msgstr "pulisci l'automazione" - #: route_time_axis.cc:424 msgid "Color..." msgstr "Colore..." @@ -10337,31 +7805,6 @@ msgstr "Livelli" msgid "Automatic (based on I/O connections)" msgstr "Automatico (basato sulle connessioni I/O)" -#: route_time_axis.cc:573 -#, fuzzy -msgid "(Currently: Existing Material)" -msgstr "Materiale esistente" - -#: route_time_axis.cc:576 -#, fuzzy -msgid "(Currently: Capture Time)" -msgstr "Tempo di registrazione" - -#: route_time_axis.cc:584 -#, fuzzy -msgid "Align With Existing Material" -msgstr "Materiale esistente" - -#: route_time_axis.cc:589 -#, fuzzy -msgid "Align With Capture Time" -msgstr "Tempo di registrazione" - -#: route_time_axis.cc:594 -#, fuzzy -msgid "Alignment" -msgstr "Allinea" - #: route_time_axis.cc:629 msgid "Normal Mode" msgstr "Normale" @@ -10370,11 +7813,6 @@ msgstr "Normale" msgid "Tape Mode" msgstr "Nastro" -#: route_time_axis.cc:641 -#, fuzzy -msgid "Non-Layered Mode" -msgstr "Regioni/fine" - #: route_time_axis.cc:654 route_time_axis.cc:1601 msgid "Playlist" msgstr "Scaletta" @@ -10408,16 +7846,6 @@ msgstr "" msgid "New Copy..." msgstr "Nuova copia..." -#: route_time_axis.cc:1494 -#, fuzzy -msgid "New Take" -msgstr "Nuovo tempo" - -#: route_time_axis.cc:1495 -#, fuzzy -msgid "Copy Take" -msgstr "Copia" - #: route_time_axis.cc:1500 msgid "Clear Current" msgstr "Pulisci Corrente" @@ -10442,16 +7870,6 @@ msgstr "Rimuovi \"%1\"" msgid "programming error: underlay reference pointer pairs are inconsistent!" msgstr "" -#: route_time_axis.cc:2408 -#, fuzzy -msgid "After-fade listen (AFL)" -msgstr "ascolto after-fader" - -#: route_time_axis.cc:2412 -#, fuzzy -msgid "Pre-fade listen (PFL)" -msgstr "ascolto pre-fader" - #: route_time_axis.cc:2416 msgid "s" msgstr "" @@ -10476,68 +7894,18 @@ msgstr "Abilita la registrazione" msgid "make mixer strips show sends to this bus" msgstr "" -#: route_ui.cc:138 -#, fuzzy -msgid "Monitor input" -msgstr "Controllo" - -#: route_ui.cc:144 -#, fuzzy -msgid "Monitor playback" -msgstr "Interrompi la riproduzione" - #: route_ui.cc:591 msgid "Not connected to JACK - cannot engage record" msgstr "" -#: route_ui.cc:786 -#, fuzzy -msgid "Step Entry" -msgstr "Modifica" - #: route_ui.cc:859 msgid "Assign all tracks (prefader)" msgstr "" -#: route_ui.cc:863 -#, fuzzy -msgid "Assign all tracks and buses (prefader)" -msgstr "Inserisci selezione" - #: route_ui.cc:867 msgid "Assign all tracks (postfader)" msgstr "" -#: route_ui.cc:871 -#, fuzzy -msgid "Assign all tracks and buses (postfader)" -msgstr "Inserisci selezione" - -#: route_ui.cc:875 -#, fuzzy -msgid "Assign selected tracks (prefader)" -msgstr "Inserisci selezione" - -#: route_ui.cc:879 -#, fuzzy -msgid "Assign selected tracks and buses (prefader)" -msgstr "Inserisci selezione" - -#: route_ui.cc:882 -#, fuzzy -msgid "Assign selected tracks (postfader)" -msgstr "Inserisci selezione" - -#: route_ui.cc:886 -#, fuzzy -msgid "Assign selected tracks and buses (postfader)" -msgstr "Inserisci selezione" - -#: route_ui.cc:889 -#, fuzzy -msgid "Copy track/bus gains to sends" -msgstr "ardour: aggiungi traccia/bus" - #: route_ui.cc:890 msgid "Set sends gain to -inf" msgstr "Imposta il volume delle manda su -inf" @@ -10610,11 +7978,6 @@ msgid "" "Do you want to use this new name?" msgstr "" -#: route_ui.cc:1520 -#, fuzzy -msgid "Use the new name" -msgstr "nuovo nome: " - #: route_ui.cc:1521 msgid "Re-edit the name" msgstr "" @@ -10643,16 +8006,6 @@ msgstr "Salva come modello" msgid "Template name:" msgstr "Nome del modello:" -#: route_ui.cc:1788 -#, fuzzy -msgid "Remote Control ID" -msgstr "Rimuovi il punto di sincronizzazione" - -#: route_ui.cc:1798 -#, fuzzy -msgid "Remote control ID:" -msgstr "Rimuovi il punto di sincronizzazione" - #: route_ui.cc:1812 msgid "" "The remote control ID of %1 is: %2\n" @@ -10661,16 +8014,6 @@ msgid "" "The remote control ID of %3 cannot be changed." msgstr "" -#: route_ui.cc:1816 -#, fuzzy -msgid "the master bus" -msgstr "Crea un master bus" - -#: route_ui.cc:1816 -#, fuzzy -msgid "the monitor bus" -msgstr "Crea un master bus" - #: route_ui.cc:1818 msgid "" "The remote control ID of %6 is: %3\n" @@ -10682,16 +8025,6 @@ msgid "" "change this%5" msgstr "" -#: route_ui.cc:1821 -#, fuzzy -msgid "the mixer" -msgstr "Prepara il mixer" - -#: route_ui.cc:1821 -#, fuzzy -msgid "the editor" -msgstr "Altezza" - #: route_ui.cc:1876 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " @@ -10706,20 +8039,10 @@ msgstr "" msgid "Select folder to search for media" msgstr "Seleziona una cartella per cercare i media" -#: search_path_option.cc:44 -#, fuzzy -msgid "Click to add a new location" -msgstr "Pulisci tutte le posizioni" - #: search_path_option.cc:51 msgid "the session folder" msgstr "la cartella di sessione" -#: send_ui.cc:126 -#, fuzzy -msgid "Send " -msgstr "Secondi" - #: session_import_dialog.cc:64 msgid "Import from Session" msgstr "Importa da una sessione" @@ -10754,11 +8077,6 @@ msgstr "Campo" msgid "Values (current value on top)" msgstr "Valori" -#: session_metadata_dialog.cc:520 -#, fuzzy -msgid "User" -msgstr "Utente:" - #: session_metadata_dialog.cc:528 msgid "Email" msgstr "" @@ -10767,11 +8085,6 @@ msgstr "" msgid "Web" msgstr "" -#: session_metadata_dialog.cc:534 -#, fuzzy -msgid "Organization" -msgstr "modalita' di automazione gain" - #: session_metadata_dialog.cc:537 msgid "Country" msgstr "" @@ -10788,11 +8101,6 @@ msgstr "Numero traccia" msgid "Subtitle" msgstr "Sottotitolo" -#: session_metadata_dialog.cc:560 -#, fuzzy -msgid "Grouping" -msgstr "Gruppi di mixaggio" - #: session_metadata_dialog.cc:563 msgid "Artist" msgstr "Artista" @@ -10837,11 +8145,6 @@ msgstr "" msgid "Total Discs" msgstr "" -#: session_metadata_dialog.cc:606 -#, fuzzy -msgid "Compilation" -msgstr "Automazione" - #: session_metadata_dialog.cc:609 msgid "ISRC" msgstr "" @@ -10866,11 +8169,6 @@ msgstr "" msgid "Remixer" msgstr "" -#: session_metadata_dialog.cc:634 -#, fuzzy -msgid "Arranger" -msgstr "intervallo" - #: session_metadata_dialog.cc:637 msgid "Engineer" msgstr "Ingegnere" @@ -10883,11 +8181,6 @@ msgstr "Produttore" msgid "DJ Mixer" msgstr "" -#: session_metadata_dialog.cc:646 -#, fuzzy -msgid "Metadata|Mixer" -msgstr "Metadati" - #: session_metadata_dialog.cc:654 msgid "School" msgstr "" @@ -10912,11 +8205,6 @@ msgstr "Importa i metadati di una sessione" msgid "Choose session to import metadata from" msgstr "Scegli la sessione da cui importare i metadati" -#: session_metadata_dialog.cc:760 -#, fuzzy -msgid "This session file could not be read!" -msgstr "Impossibile aprire \"%1\"" - #: session_metadata_dialog.cc:770 msgid "" "The session file didn't contain metadata!\n" @@ -10933,11 +8221,6 @@ msgstr "Importa tutto da:" msgid "Session Properties" msgstr "Proprietà della sessione" -#: session_option_editor.cc:41 -#, fuzzy -msgid "Timecode Settings" -msgstr "Secondi" - #: session_option_editor.cc:45 msgid "Timecode frames-per-second" msgstr "" @@ -11033,25 +8316,10 @@ msgid "" "Apply Pull-Up/Down to Video Timeline and Video Monitor (Unless in JACK-sync)." msgstr "" -#: session_option_editor.cc:96 -#, fuzzy -msgid "Ext Timecode Offsets" -msgstr "Rimuovi Campo" - -#: session_option_editor.cc:100 -#, fuzzy -msgid "Slave Timecode offset" -msgstr "Rimuovi Campo" - #: session_option_editor.cc:107 msgid "The specified offset is added to the received timecode (MTC or LTC)." msgstr "" -#: session_option_editor.cc:113 -#, fuzzy -msgid "Timecode Generator offset" -msgstr "Rimuovi Campo" - #: session_option_editor.cc:120 msgid "" "Specify an offset which is added to the generated timecode (so far only LTC)." @@ -11066,11 +8334,6 @@ msgid "" "%1 is JACK Time Master (provides Bar|Beat|Tick and other information to JACK)" msgstr "" -#: session_option_editor.cc:137 -#, fuzzy -msgid "Default crossfade type" -msgstr "Dissolvenza incrociata" - #: session_option_editor.cc:142 msgid "Constant power (-3dB) crossfade" msgstr "" @@ -11101,16 +8364,6 @@ msgstr "Visualizza dissolvenze della regione" msgid "Media" msgstr "" -#: session_option_editor.cc:172 -#, fuzzy -msgid "Audio file format" -msgstr "Formato Nativo" - -#: session_option_editor.cc:176 -#, fuzzy -msgid "Sample format" -msgstr "Separa l'intervallo" - #: session_option_editor.cc:181 msgid "32-bit floating point" msgstr "32-bit virgola mobile" @@ -11123,11 +8376,6 @@ msgstr "24-bit intero" msgid "16-bit integer" msgstr "16-bit intero" -#: session_option_editor.cc:189 -#, fuzzy -msgid "File type" -msgstr "Tipo" - #: session_option_editor.cc:194 msgid "Broadcast WAVE" msgstr "" @@ -11140,11 +8388,6 @@ msgstr "" msgid "WAVE-64" msgstr "" -#: session_option_editor.cc:201 -#, fuzzy -msgid "File locations" -msgstr "azzera le posizioni" - #: session_option_editor.cc:203 msgid "Search for audio files in:" msgstr "Cerca file audio in:" @@ -11158,11 +8401,6 @@ msgid "" "Track Input Monitoring automatically follows transport state (\"auto-input\")" msgstr "" -#: session_option_editor.cc:227 -#, fuzzy -msgid "Use monitor section in this session" -msgstr "Vorrei più opzioni per questa sessione" - #: session_option_editor.cc:238 msgid "MIDI region copies are independent" msgstr "" @@ -11197,82 +8435,18 @@ msgstr "" msgid "replace both overlapping notes with a single note" msgstr "" -#: session_option_editor.cc:259 -#, fuzzy -msgid "Glue to bars and beats" -msgstr "Aggancia a battute e battiti" - -#: session_option_editor.cc:263 -#, fuzzy -msgid "Glue new markers to bars and beats" -msgstr "Aggancia a battute e battiti" - -#: session_option_editor.cc:270 -#, fuzzy -msgid "Glue new regions to bars and beats" -msgstr "Aggancia a battute e battiti" - -#: session_option_editor.cc:275 session_option_editor.cc:277 -#: session_option_editor.cc:284 session_option_editor.cc:291 -#: session_option_editor.cc:298 session_option_editor.cc:300 -#: session_option_editor.cc:307 session_option_editor.cc:314 -#: session_option_editor.cc:321 session_option_editor.cc:323 -#, fuzzy -msgid "Meterbridge" -msgstr "Misurazione" - #: session_option_editor.cc:275 msgid "Route Display" msgstr "" -#: session_option_editor.cc:279 -#, fuzzy -msgid "Show Midi Tracks" -msgstr "Mostra tutte le tracce MIDI" - -#: session_option_editor.cc:286 -#, fuzzy -msgid "Show Busses" -msgstr "Bus" - -#: session_option_editor.cc:293 -#, fuzzy -msgid "Include Master Bus" -msgstr "Crea un master bus" - #: session_option_editor.cc:298 msgid "Button Area" msgstr "" -#: session_option_editor.cc:302 -#, fuzzy -msgid "Rec-enable Button" -msgstr "Attiva registrazione" - -#: session_option_editor.cc:309 -#, fuzzy -msgid "Mute Button" -msgstr "+ pulsante" - -#: session_option_editor.cc:316 -#, fuzzy -msgid "Solo Button" -msgstr "Solo / mute" - #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" -#: session_option_editor.cc:325 -#, fuzzy -msgid "Track Name" -msgstr "Tracce/Bus" - -#: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 -#, fuzzy -msgid "as new tracks" -msgstr "Tracce" - #: sfdb_ui.cc:88 sfdb_ui.cc:108 msgid "to selected tracks" msgstr "nelle tracce selezionate" @@ -11289,20 +8463,10 @@ msgstr "come nuove tracce nastro" msgid "programming error: unknown import mode string %1" msgstr "Errore di programmazione: modalità di importazione %1 sconosciuta" -#: sfdb_ui.cc:123 -#, fuzzy -msgid "Auto-play" -msgstr "suona" - #: sfdb_ui.cc:129 sfdb_ui.cc:236 msgid "Sound File Information" msgstr "Info sul file audio" -#: sfdb_ui.cc:141 -#, fuzzy -msgid "Timestamp:" -msgstr "Per Data di Regione" - #: sfdb_ui.cc:143 msgid "Format:" msgstr "Formato:" @@ -11331,11 +8495,6 @@ msgstr "" msgid "Search" msgstr "" -#: sfdb_ui.cc:449 -#, fuzzy -msgid "Audio and MIDI files" -msgstr "File audio" - #: sfdb_ui.cc:452 msgid "Audio files" msgstr "File audio" @@ -11360,26 +8519,6 @@ msgstr "Percorsi" msgid "Search Tags" msgstr "" -#: sfdb_ui.cc:531 -#, fuzzy -msgid "Sort:" -msgstr "Ordina" - -#: sfdb_ui.cc:539 -#, fuzzy -msgid "Longest" -msgstr "Ampissimo" - -#: sfdb_ui.cc:540 -#, fuzzy -msgid "Shortest" -msgstr "Scorciatoia" - -#: sfdb_ui.cc:541 -#, fuzzy -msgid "Newest" -msgstr "Piu' Lento" - #: sfdb_ui.cc:542 msgid "Oldest" msgstr "" @@ -11388,11 +8527,6 @@ msgstr "" msgid "Most downloaded" msgstr "" -#: sfdb_ui.cc:544 -#, fuzzy -msgid "Least downloaded" -msgstr "Inizia il download" - #: sfdb_ui.cc:545 msgid "Highest rated" msgstr "" @@ -11409,31 +8543,6 @@ msgstr "" msgid "Similar" msgstr "" -#: sfdb_ui.cc:567 -#, fuzzy -msgid "ID" -msgstr "MIDI" - -#: sfdb_ui.cc:568 add_video_dialog.cc:84 -#, fuzzy -msgid "Filename" -msgstr "Rinomina" - -#: sfdb_ui.cc:570 -#, fuzzy -msgid "Duration" -msgstr "Sposta Regione/i" - -#: sfdb_ui.cc:571 -#, fuzzy -msgid "Size" -msgstr "Dimensione massima" - -#: sfdb_ui.cc:572 -#, fuzzy -msgid "Samplerate" -msgstr "Frequenza di campionamento" - #: sfdb_ui.cc:573 msgid "License" msgstr "" @@ -11492,11 +8601,6 @@ msgstr "una traccia per file" msgid "one track per channel" msgstr "una traccia per canale" -#: sfdb_ui.cc:1309 sfdb_ui.cc:1659 sfdb_ui.cc:1676 -#, fuzzy -msgid "sequence files" -msgstr "files ripuliti" - #: sfdb_ui.cc:1312 sfdb_ui.cc:1664 msgid "all files in one track" msgstr "tutti i file in una traccia" @@ -11529,16 +8633,6 @@ msgstr "" msgid "Copy files to session" msgstr "Copia i file nella sessione" -#: sfdb_ui.cc:1551 sfdb_ui.cc:1714 -#, fuzzy -msgid "file timestamp" -msgstr "Per Data di Regione" - -#: sfdb_ui.cc:1552 sfdb_ui.cc:1716 -#, fuzzy -msgid "edit point" -msgstr "Modifica usando" - #: sfdb_ui.cc:1553 sfdb_ui.cc:1718 msgid "playhead" msgstr "testina" @@ -11551,21 +8645,6 @@ msgstr "inizio sessione" msgid "Add files as ..." msgstr "" -#: sfdb_ui.cc:1581 -#, fuzzy -msgid "Insert at" -msgstr "Inserisci a:" - -#: sfdb_ui.cc:1594 -#, fuzzy -msgid "Mapping" -msgstr "Avanzate..." - -#: sfdb_ui.cc:1612 -#, fuzzy -msgid "Conversion quality" -msgstr "Qualità di conversione:" - #: sfdb_ui.cc:1624 sfdb_ui.cc:1730 msgid "Best" msgstr "Migliore" @@ -11606,21 +8685,6 @@ msgstr "" msgid "Maximum speed" msgstr "Velocità massima" -#: shuttle_control.cc:561 -#, fuzzy -msgid "Playing" -msgstr "Suona" - -#: shuttle_control.cc:576 -#, fuzzy, c-format -msgid "<<< %+d semitones" -msgstr "Semitoni" - -#: shuttle_control.cc:578 -#, fuzzy, c-format -msgid ">>> %+d semitones" -msgstr "Semitoni" - #: shuttle_control.cc:583 msgid "Stopped" msgstr "Fermato" @@ -11629,11 +8693,6 @@ msgstr "Fermato" msgid "%1 loading ..." msgstr "%1 si sta avviando..." -#: speaker_dialog.cc:40 -#, fuzzy -msgid "Add Speaker" -msgstr "agggiungi marcatore di intervallo" - #: speaker_dialog.cc:41 msgid "Remove Speaker" msgstr "Rimuovi altoparlante" @@ -11642,112 +8701,18 @@ msgstr "Rimuovi altoparlante" msgid "Azimuth:" msgstr "" -#: startup.cc:72 -#, fuzzy -msgid "Create a new session" -msgstr "Crea una nuova sessione" - #: startup.cc:73 msgid "Open an existing session" msgstr "Apri una sessione" -#: startup.cc:74 -#, fuzzy -msgid "" -"Use an external mixer or the hardware mixer of your audio interface.\n" -"%1 will play NO role in monitoring" -msgstr "" -"Usa un mixer esterno o il mixer dell'interfaccia audio.\n" -"Ardour non avrà alcun ruolo nel monitoraggio" - -#: startup.cc:76 -#, fuzzy -msgid "Ask %1 to play back material as it is being recorded" -msgstr "Chiedi a %1 di riprodurre l'audio mentre viene registrato" - #: startup.cc:79 msgid "I'd like more options for this session" msgstr "Vorrei più opzioni per questa sessione" -#: startup.cc:194 -#, fuzzy -msgid "" -"Welcome to this BETA release of Ardour %1\n" -"\n" -"Ardour %1 has been released for Linux but because of the lack of testers,\n" -"it is still at the beta stage on OS X. So, a few guidelines:\n" -"\n" -"1) Please do NOT use this software with the expectation that it is " -"stable or reliable\n" -" though it may be so, depending on your workflow.\n" -"2) Please do NOT use the forums at ardour.org to report issues.\n" -"3) Please DO use the bugtracker at http://tracker.ardour.org/ to " -"report issues\n" -" making sure to note the product version number as %1-beta.\n" -"4) Please DO use the ardour-users mailing list to discuss ideas and " -"pass on comments.\n" -"5) Please DO join us on IRC for real time discussions about ardour3. " -"You\n" -" can get there directly from Ardour via the Help->Chat menu option.\n" -"\n" -"Full information on all the above can be found on the support page at\n" -"\n" -" http://ardour.org/support\n" -msgstr "" -"Benvenuti a questa ALPHA release di Ardour 3.0\n" -"\n" -"Ci sono ancora molti problemi e bug su cui lavorare\n" -"ed altri miglioramenti in generale prima che questa possa \n" -"essere considerata una release. Perciò, eccovi alcune linee guida:\n" -"\n" -"1) Per favore NON usate questo software con l'aspettativa che sia " -"stabile o affidabile\n" -"- sebbene possa esserlo, a seconda del vostro metodo di lavoro.\n" -"2) Per favore date un'occhiata su http://ardour.org/a3_features per una " -"guida alle nuove funzionalità\n" -"3) Per favore NON usate i forum su ardour.org per segnalazioni di " -"problemi \n" -"4) Per favore USATE il bugtracker su http://tracker.ardour.org per " -"segnalare problemi\n" -"assicurandovi di far riferimento alla versione 3.0-alpha\n" -"5) Per favore USATE la lista ardour-users per discutere idee e " -"inviare commenti\n" -"6) Per favore CONTATTATECI su IRC per discussioni in tempo reale su " -"Ardour 3.0\n" -"Potete raggiungerci direttamente da Ardour attraverso l'opzione Aiuto->Chat\n" -"Ulteriori dettagli su quanto specificato sopra \n" -"possono essere ottenuti alla pagina\n" -"\n" -"http://ardour.org/support\n" - -#: startup.cc:218 -#, fuzzy -msgid "This is a BETA RELEASE" -msgstr "Questa è un'ALPHA RELEASE" - #: startup.cc:324 msgid "Audio / MIDI Setup" msgstr "Impostazioni Audio/MIDI" -#: startup.cc:336 -#, fuzzy -msgid "" -"%1 is a digital audio workstation. You can use it to " -"record, edit and mix multi-track audio. You can produce your own CDs, mix " -"video soundtracks, or experiment with new ideas about music and sound. \n" -"\n" -"There are a few things that need to be configured before you start using the " -"program. " -msgstr "" -"%1 è una workstation per audio digitale. Può essere " -"utilizzato per\n" -"registrare, modifcare e mixare audio in multitraccia. Puoi riprodurre i tuoi " -"CD, missare colonne sonore o semplicemente sperimentare idee \n" -"che riguardino il suono e la musica\n" -"\n" -"Ci sono alcune cose che devono essere configurate prima \n" -"di iniziare ad utilizzare il programma." - #: startup.cc:362 msgid "Welcome to %1" msgstr "Benvenuti in %1" @@ -11778,31 +8743,6 @@ msgstr "" msgid "Default folder for new sessions" msgstr "Cartella base per le nuove sessioni" -#: startup.cc:436 -#, fuzzy -msgid "" -"While recording instruments or vocals, you probably want to listen to the\n" -"signal as well as record it. This is called \"monitoring\". There are\n" -"different ways to do this depending on the equipment you have and the\n" -"configuration of that equipment. The two most common are presented here.\n" -"Please choose whichever one is right for your setup.\n" -"\n" -"(You can change this preference at any time, via the Preferences dialog)\n" -"\n" -"If you do not understand what this is about, just accept the default." -msgstr "" -"Quando registrerete strumenti o voci probabilmente vorrete ascoltare\n" -"il segnale oltre che registrarlo. Questo processo viene definito " -"\"monitoraggio\".\n" -"Ci sono diversi modi di farlo in relazione all'equipaggiamento che avete a " -"disposizione\n" -"e del modo in cui è configurato. I due modi principali sono elencati qui.\n" -"Scegliete quello che si adatta di più alle vostre impostazioni.\n" -"\n" -"(Potrete cambiare queste scelte in ogni momento attraverso la finestra " -"Preferenze" - #: startup.cc:457 msgid "Monitoring Choices" msgstr "Scelte di controllo" @@ -11811,15 +8751,6 @@ msgstr "Scelte di controllo" msgid "Use a Master bus directly" msgstr "Utilizza un Master bus direttamente" -#: startup.cc:482 -#, fuzzy -msgid "" -"Connect the Master bus directly to your hardware outputs. This is preferable " -"for simple usage." -msgstr "" -"Connetti il Master bus direttamente alle uscite fisiche.\n" -"Da preferire per un utilizzo semplice." - #: startup.cc:491 msgid "Use an additional Monitor bus" msgstr "Utilizza un bus Monitor aggiuntivo" @@ -11852,20 +8783,10 @@ msgstr "" msgid "Click to open the program website in your web browser" msgstr "" -#: startup.cc:729 -#, fuzzy -msgid "Open" -msgstr "Apri..." - #: startup.cc:775 msgid "Session name:" msgstr "Nome della sessione:" -#: startup.cc:798 -#, fuzzy -msgid "Create session folder in:" -msgstr "Esegui la regione selezionata come loop" - #: startup.cc:821 msgid "Select folder for session" msgstr "Seleziona una cartella per la sessione" @@ -11922,11 +8843,6 @@ msgstr "Uscite" msgid "Create master bus" msgstr "Crea un master bus" -#: startup.cc:1165 -#, fuzzy -msgid "Automatically connect to physical inputs" -msgstr "Connetti automaticamente alle entrate fisiche" - #: startup.cc:1172 startup.cc:1231 msgid "Use only" msgstr "Usa soltanto" @@ -12003,11 +8919,6 @@ msgstr "Imposta la durata ad un ottavo di nota" msgid "Set note length to a sixteenth note" msgstr "Imposta la durata ad un sedicesimo di nota" -#: step_entry.cc:195 -#, fuzzy -msgid "Set note length to a thirty-second note" -msgstr "trentaduesimo (32)" - #: step_entry.cc:196 msgid "Set note length to a sixty-fourth note" msgstr "Imposta la durata ad un sessantaquattresimo di nota" @@ -12108,66 +9019,26 @@ msgstr "" msgid "Octave" msgstr "" -#: step_entry.cc:597 -#, fuzzy -msgid "Insert Note A" -msgstr "Inserisci selezione" - #: step_entry.cc:598 msgid "Insert Note A-sharp" msgstr "" -#: step_entry.cc:599 -#, fuzzy -msgid "Insert Note B" -msgstr "Inserisci selezione" - -#: step_entry.cc:600 -#, fuzzy -msgid "Insert Note C" -msgstr "Inserisci selezione" - #: step_entry.cc:601 msgid "Insert Note C-sharp" msgstr "" -#: step_entry.cc:602 -#, fuzzy -msgid "Insert Note D" -msgstr "Inserisci selezione" - #: step_entry.cc:603 msgid "Insert Note D-sharp" msgstr "" -#: step_entry.cc:604 -#, fuzzy -msgid "Insert Note E" -msgstr "Inserisci selezione" - -#: step_entry.cc:605 -#, fuzzy -msgid "Insert Note F" -msgstr "Inserisci selezione" - #: step_entry.cc:606 msgid "Insert Note F-sharp" msgstr "" -#: step_entry.cc:607 -#, fuzzy -msgid "Insert Note G" -msgstr "Inserisci selezione" - #: step_entry.cc:608 msgid "Insert Note G-sharp" msgstr "" -#: step_entry.cc:610 -#, fuzzy -msgid "Insert a Note-length Rest" -msgstr "Inserisci selezione" - #: step_entry.cc:611 msgid "Insert a Snap-length Rest" msgstr "" @@ -12345,16 +9216,6 @@ msgstr "" msgid "L:%3d R:%3d Width:%d%%" msgstr "" -#: stereo_panner_editor.cc:35 -#, fuzzy -msgid "Stereo Panner" -msgstr "Stereo" - -#: stereo_panner_editor.cc:49 -#, fuzzy -msgid "Width" -msgstr "scrivi" - #: strip_silence_dialog.cc:48 msgid "Strip Silence" msgstr "Rimuovi silenzio" @@ -12375,58 +9236,6 @@ msgstr "battuta:" msgid "beat:" msgstr "battito:" -#: tempo_dialog.cc:45 tempo_dialog.cc:60 -#, fuzzy -msgid "Pulse note" -msgstr "Elimina nota" - -#: tempo_dialog.cc:55 -#, fuzzy -msgid "Edit Tempo" -msgstr "Punto di modifica" - -#: tempo_dialog.cc:76 tempo_dialog.cc:77 tempo_dialog.cc:282 -#: tempo_dialog.cc:283 -#, fuzzy -msgid "whole" -msgstr "intero (1)" - -#: tempo_dialog.cc:78 tempo_dialog.cc:79 tempo_dialog.cc:284 -#: tempo_dialog.cc:285 -#, fuzzy -msgid "second" -msgstr "Secondi" - -#: tempo_dialog.cc:80 tempo_dialog.cc:81 tempo_dialog.cc:286 -#: tempo_dialog.cc:287 -#, fuzzy -msgid "third" -msgstr "terzo (3)" - -#: tempo_dialog.cc:82 tempo_dialog.cc:83 tempo_dialog.cc:288 -#: tempo_dialog.cc:289 -#, fuzzy -msgid "quarter" -msgstr "quarto (4)" - -#: tempo_dialog.cc:84 tempo_dialog.cc:85 tempo_dialog.cc:290 -#: tempo_dialog.cc:291 -#, fuzzy -msgid "eighth" -msgstr "Altezza" - -#: tempo_dialog.cc:86 tempo_dialog.cc:87 tempo_dialog.cc:292 -#: tempo_dialog.cc:293 -#, fuzzy -msgid "sixteenth" -msgstr "sedicesimo (16)" - -#: tempo_dialog.cc:88 tempo_dialog.cc:89 tempo_dialog.cc:294 -#: tempo_dialog.cc:295 -#, fuzzy -msgid "thirty-second" -msgstr "trentaduesimo (32)" - #: tempo_dialog.cc:90 tempo_dialog.cc:91 tempo_dialog.cc:296 #: tempo_dialog.cc:297 msgid "sixty-fourth" @@ -12449,25 +9258,10 @@ msgstr "" msgid "incomprehensible pulse note type (%1)" msgstr "" -#: tempo_dialog.cc:266 -#, fuzzy -msgid "Edit Meter" -msgstr "Modalità di modifica" - -#: tempo_dialog.cc:314 -#, fuzzy -msgid "Note value:" -msgstr "Valore del campo" - #: tempo_dialog.cc:315 msgid "Beats per bar:" msgstr "Battiti per battuta:" -#: tempo_dialog.cc:330 -#, fuzzy -msgid "Meter begins at bar:" -msgstr "Denominatore per il Meter" - #: tempo_dialog.cc:441 msgid "incomprehensible meter note type (%1)" msgstr "" @@ -12492,11 +9286,6 @@ msgstr "" msgid "All floating windows are dialogs" msgstr "" -#: theme_manager.cc:62 -#, fuzzy -msgid "Draw waveforms with color gradient" -msgstr "Mostra le onde nelle regioni" - #: theme_manager.cc:68 msgid "Object" msgstr "oggetto" @@ -12553,11 +9342,6 @@ msgstr "" msgid "Pitch Shift Audio" msgstr "" -#: time_fx_dialog.cc:76 -#, fuzzy -msgid "Time Stretch Audio" -msgstr "-modello" - #: time_fx_dialog.cc:104 transpose_dialog.cc:41 msgid "Octaves:" msgstr "Ottave:" @@ -12566,25 +9350,10 @@ msgstr "Ottave:" msgid "Semitones:" msgstr "Semitoni:" -#: time_fx_dialog.cc:114 -#, fuzzy -msgid "Cents:" -msgstr "Centro" - -#: time_fx_dialog.cc:122 -#, fuzzy -msgid "Time|Shift" -msgstr "Sposta-" - #: time_fx_dialog.cc:146 time_fx_dialog.cc:149 msgid "TimeFXButton" msgstr "" -#: time_fx_dialog.cc:154 -#, fuzzy -msgid "Stretch/Shrink" -msgstr "Allunga/Restringi" - #: time_fx_dialog.cc:164 msgid "Progress" msgstr "" @@ -12627,11 +9396,6 @@ msgstr "" msgid "Loading user ui configuration file %1" msgstr "Carico il file di configurazione dell'interfaccia utente %1" -#: ui_config.cc:137 -#, fuzzy -msgid "cannot read ui configuration file \"%1\"" -msgstr "Editor: impossibile l'immagine per lo splash \"%1\" (%2)" - #: ui_config.cc:142 msgid "user ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -12660,11 +9424,6 @@ msgstr "stile RGBA mancante per \"%1\"" msgid "cannot find XPM file for %1" msgstr "non riesco a trovare un file XPM per %1" -#: utils.cc:617 -#, fuzzy -msgid "cannot find icon image for %1 using %2" -msgstr "non riesco a trovare una icona per %1" - #: utils.cc:632 msgid "Caught exception while loading icon named %1" msgstr "" @@ -12673,16 +9432,6 @@ msgstr "" msgid "VerboseCanvasCursor" msgstr "" -#: add_video_dialog.cc:55 -#, fuzzy -msgid "Set Video Track" -msgstr "Aggiungi traccia audio" - -#: add_video_dialog.cc:63 -#, fuzzy -msgid "Launch External Video Monitor" -msgstr "Controllo" - #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -12695,26 +9444,6 @@ msgstr "" msgid "VideoServerIndex" msgstr "" -#: add_video_dialog.cc:129 -#, fuzzy -msgid "Video files" -msgstr "File audio" - -#: add_video_dialog.cc:164 -#, fuzzy -msgid "Video Information" -msgstr "Info sul file audio" - -#: add_video_dialog.cc:167 -#, fuzzy -msgid "Start:" -msgstr "Inizio" - -#: add_video_dialog.cc:173 -#, fuzzy -msgid "Frame rate:" -msgstr "Frequenza di campionamento" - #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -12760,11 +9489,6 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" -#: video_monitor.cc:281 -#, fuzzy -msgid "Video Monitor: File Not Found." -msgstr "Controllo" - #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -12781,25 +9505,10 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:56 -#, fuzzy -msgid "Transcode/Import Video File " -msgstr "Esporta la sessione come file audio..." - -#: transcode_video_dialog.cc:58 -#, fuzzy -msgid "Output File:" -msgstr "Dispositivo di uscita" - #: transcode_video_dialog.cc:61 export_video_dialog.cc:73 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:63 -#, fuzzy -msgid "Height = " -msgstr "Altezza" - #: transcode_video_dialog.cc:66 msgid "Manual Override" msgstr "" @@ -12808,11 +9517,6 @@ msgstr "" msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:107 -#, fuzzy -msgid "File Information" -msgstr "Info sul file audio" - #: transcode_video_dialog.cc:113 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " @@ -12830,11 +9534,6 @@ msgstr "" msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:136 -#, fuzzy -msgid "Duration:" -msgstr "Sposta Regione/i" - #: transcode_video_dialog.cc:138 msgid "Codec:" msgstr "" @@ -12843,16 +9542,6 @@ msgstr "" msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:155 -#, fuzzy -msgid "??" -msgstr "???" - -#: transcode_video_dialog.cc:176 -#, fuzzy -msgid "Import Settings" -msgstr "Opzioni" - #: transcode_video_dialog.cc:181 msgid "Do Not Import Video" msgstr "" @@ -12861,11 +9550,6 @@ msgstr "" msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:184 -#, fuzzy -msgid "Import/Transcode Video to Session" -msgstr "Importa da una sessione" - #: transcode_video_dialog.cc:198 msgid "Scale Video: Width = " msgstr "" @@ -12878,16 +9562,6 @@ msgstr "" msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:225 -#, fuzzy -msgid "Extract Audio:" -msgstr "Esporta l'audio" - -#: transcode_video_dialog.cc:345 -#, fuzzy -msgid "Extracting Audio.." -msgstr "Esporta l'audio" - #: transcode_video_dialog.cc:348 msgid "Audio Extraction Failed." msgstr "" @@ -12896,16 +9570,6 @@ msgstr "" msgid "Transcoding Video.." msgstr "" -#: transcode_video_dialog.cc:408 -#, fuzzy -msgid "Transcoding Failed." -msgstr "Traduzione abilitata" - -#: transcode_video_dialog.cc:491 -#, fuzzy -msgid "Save Transcoded Video File" -msgstr "Esporta la sessione come file audio..." - #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -12914,11 +9578,6 @@ msgstr "" msgid "Server Executable:" msgstr "" -#: video_server_dialog.cc:46 -#, fuzzy -msgid "Server Docroot:" -msgstr "Server:" - #: video_server_dialog.cc:52 msgid "Don't show this dialog again. (Reset in Edit->Preferences)." msgstr "" @@ -12934,16 +9593,6 @@ msgstr "" msgid "Listen Address:" msgstr "" -#: video_server_dialog.cc:125 -#, fuzzy -msgid "Listen Port:" -msgstr "Posizione" - -#: video_server_dialog.cc:130 -#, fuzzy -msgid "Cache Size:" -msgstr "Dimensione massima" - #: video_server_dialog.cc:136 msgid "" "%1 relies on an external Video Server for the videotimeline.\n" @@ -12973,31 +9622,6 @@ msgstr "" msgid "Continue" msgstr "" -#: utils_videotl.cc:63 -#, fuzzy -msgid "Confirm Overwrite" -msgstr "Conferma sovrascrittura istantanea" - -#: utils_videotl.cc:64 -#, fuzzy -msgid "A file with the same name already exists. Do you want to overwrite it?" -msgstr "Esiste già un'istantanea con questo nome. Vuoi sovrascriverla?" - -#: utils_videotl.cc:74 utils_videotl.cc:90 -#, fuzzy -msgid "Cannot create video folder \"%1\" (%2)" -msgstr "impossibile creare la cartella utente ardour %1 (%2)" - -#: export_video_dialog.cc:66 -#, fuzzy -msgid "Export Video File " -msgstr "Esporta la sessione come file audio..." - -#: export_video_dialog.cc:70 -#, fuzzy -msgid "Video:" -msgstr "Inizio" - #: export_video_dialog.cc:74 msgid "Scale Video (W x H):" msgstr "" @@ -13006,11 +9630,6 @@ msgstr "" msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:80 -#, fuzzy -msgid "Normalize Audio" -msgstr "Normalizza a:" - #: export_video_dialog.cc:81 msgid "2 Pass Encoding" msgstr "" @@ -13019,11 +9638,6 @@ msgstr "" msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:84 -#, fuzzy -msgid "Deinterlace" -msgstr "interno" - #: export_video_dialog.cc:85 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" @@ -13032,11 +9646,6 @@ msgstr "" msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:87 -#, fuzzy -msgid "Include Session Metadata" -msgstr "Modifica i metadati della sessione" - #: export_video_dialog.cc:107 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " @@ -13044,26 +9653,6 @@ msgid "" "information." msgstr "" -#: export_video_dialog.cc:117 -#, fuzzy -msgid "Output:" -msgstr "Uscite" - -#: export_video_dialog.cc:127 -#, fuzzy -msgid "Input:" -msgstr "Ingressi" - -#: export_video_dialog.cc:138 -#, fuzzy -msgid "Audio:" -msgstr "Audio" - -#: export_video_dialog.cc:140 -#, fuzzy -msgid "Master Bus" -msgstr "Crea un master bus" - #: export_video_dialog.cc:145 msgid "from the %1 session's start to the session's end" msgstr "" @@ -13076,61 +9665,6 @@ msgstr "" msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:184 -#, fuzzy -msgid "Settings:" -msgstr "Destinazioni" - -#: export_video_dialog.cc:192 -#, fuzzy -msgid "Range:" -msgstr "Intervallo" - -#: export_video_dialog.cc:195 -#, fuzzy -msgid "Preset:" -msgstr "Preimpostazione" - -#: export_video_dialog.cc:198 -#, fuzzy -msgid "Video Codec:" -msgstr "Cartella:" - -#: export_video_dialog.cc:201 -#, fuzzy -msgid "Video KBit/s:" -msgstr "Inizio" - -#: export_video_dialog.cc:204 -#, fuzzy -msgid "Audio Codec:" -msgstr "Modalità audio:" - -#: export_video_dialog.cc:207 -#, fuzzy -msgid "Audio KBit/s:" -msgstr "File audio" - -#: export_video_dialog.cc:210 -#, fuzzy -msgid "Audio Samplerate:" -msgstr "Frequenza di campionamento" - -#: export_video_dialog.cc:387 -#, fuzzy -msgid "Normalizing audio" -msgstr "Normalizza i valori" - -#: export_video_dialog.cc:391 -#, fuzzy -msgid "Exporting audio" -msgstr "Esporta l'audio" - -#: export_video_dialog.cc:437 -#, fuzzy -msgid "Exporting Audio..." -msgstr "Esporta l'audio" - #: export_video_dialog.cc:494 msgid "" "Export Video: Cannot query duration of video-file, using duration from " @@ -13141,11 +9675,6 @@ msgstr "" msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" -#: export_video_dialog.cc:562 -#, fuzzy -msgid "Encoding Video..." -msgstr "Traduzione abilitata" - #: export_video_dialog.cc:581 msgid "Export Video: Video input file cannot be read." msgstr "" @@ -13158,21 +9687,6 @@ msgstr "" msgid "Encoding Video.. Pass 2/2" msgstr "" -#: export_video_dialog.cc:779 -#, fuzzy -msgid "Transcoding failed." -msgstr "Traduzione abilitata" - -#: export_video_dialog.cc:948 export_video_dialog.cc:968 -#, fuzzy -msgid "Save Exported Video File" -msgstr "Esporta la sessione come file audio..." - -#: export_video_infobox.cc:30 -#, fuzzy -msgid "Video Export Info" -msgstr "Controllo" - #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -13189,1593 +9703,3 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" - -#~ msgid "slowest" -#~ msgstr "più Lento" - -#~ msgid "slow" -#~ msgstr "lento" - -#~ msgid "fast" -#~ msgstr "veloce" - -#~ msgid "faster" -#~ msgstr "più veloce" - -#~ msgid "fastest" -#~ msgstr "velocissimo" - -#~ msgid "What would you like to do ?" -#~ msgstr "Cosa vuoi fare?" - -#~ msgid "Connect" -#~ msgstr "Connetti" - -#~ msgid "Mixer on Top" -#~ msgstr "Mixer in evidenza" - -#~ msgid "Add Audio Track" -#~ msgstr "Aggiungi traccia audio" - -#~ msgid "Add Audio Bus" -#~ msgstr "Aggiungi bus audio" - -#~ msgid "Add MIDI Track" -#~ msgstr "Aggiungi traccia MIDI" - -#~ msgid "Control surfaces" -#~ msgstr "Piattaforme di controllo" - -#, fuzzy -#~ msgid "Hid" -#~ msgstr "Nascondi" - -#~ msgid "Translations disabled" -#~ msgstr "Traduzione disabilitata" - -#~ msgid "You must restart %1 for this to take effect." -#~ msgstr "Devi riavviare %1 per rendere effettiva la modifica" - -#~ msgid "Enable Translations" -#~ msgstr "Abilita le traduzioni" - -#, fuzzy -#~ msgid "Locate to Range Mark" -#~ msgstr "Marcatori di posizione" - -#, fuzzy -#~ msgid "Play from Range Mark" -#~ msgstr "Suona l'intervallo di loop" - -#~ msgid "Playback/Recording on 1 Device" -#~ msgstr "Riproduzione/Registrazione su un dispositivo" - -#~ msgid "Playback/Recording on 2 Devices" -#~ msgstr "Riproduzione/Registrazione su due dispositivi" - -#, fuzzy -#~ msgid "Bank:" -#~ msgstr "Banco" - -#, fuzzy -#~ msgid "Program:" -#~ msgstr "Programma" - -#, fuzzy -#~ msgid "Channel:" -#~ msgstr "Canali" - -#, fuzzy -#~ msgid "Lck" -#~ msgstr "Blocca" - -#, fuzzy -#~ msgid "Use overlap equivalency for regions" -#~ msgstr "Nuova Regione dall'intervallo" - -#~ msgid "Use a monitor bus (allows AFL/PFL and more control)" -#~ msgstr "" -#~ "Utilizza un bus di controllo (consente AFL/PFL ed altre funzionalità)" - -#, fuzzy -#~ msgid "could not create a new mixed track" -#~ msgstr "Impossibile creare una nuova traccia MIDI" - -#, fuzzy -#~ msgid "could not create new audio bus" -#~ msgid_plural "could not create %1 new audio busses" -#~ msgstr[0] "Impossibile creare una nuova traccia audio" -#~ msgstr[1] "Impossibile creare una nuova traccia audio" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were not in use and \n" -#~ "have been moved to: %2\n" -#~ "\n" -#~ "After a restart of %5\n" -#~ "\n" -#~ "Session -> Clean-up -> Flush Wastebasket\n" -#~ "\n" -#~ "will release an additional %3 %4bytes of disk space.\n" -#~ msgstr "" -#~ "I seguenti %1 file non erano utilizzati\n" -#~ "e sono stati spostati in:\n" -#~ "\n" -#~ "%2\n" -#~ "\n" -#~ "Dopo il riavvio di Ardour,\n" -#~ "Sessione -> Pulisci -> Svuota cestino\n" -#~ "\n" -#~ "libererà %3 %4bytes di spazio su disco\n" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were deleted from %2,\n" -#~ "releasing %3 %4bytes of disk space" -#~ msgstr "" -#~ "I seguenti %1 file sono stati eliminati da\n" -#~ "%2,\n" -#~ "liberati %3 %4bytes di spazio su disco" - -#~ msgid "could only create %1 of %2 new audio %3" -#~ msgstr "Ho potuto creare solo %1 di %2 %3 audio" - -#, fuzzy -#~ msgid "Always Play Range Selection (if any)" -#~ msgstr "Suona sempre intervallo/selezione" - -#~ msgid "Start playback after any locate" -#~ msgstr "Avvia la riproduzione dopo ogni posizionamento" - -#, fuzzy -#~ msgid "Always Play Range" -#~ msgstr "Riproduci l'intervallo" - -#~ msgid "Select/Move Objects" -#~ msgstr "Seleziona/Sposta oggetti" - -#~ msgid "Select/Move Ranges" -#~ msgstr "Seleziona/Sposta intervalli" - -#~ msgid "Edit Region Contents (e.g. notes)" -#~ msgstr "Modifica i contenuti della regione (es. note)" - -#~ msgid "Link Object / Range Tools" -#~ msgstr "Collega oggetto/Strumenti di intervallo" - -#, fuzzy -#~ msgid "editing|E" -#~ msgstr "Modifica" - -#, fuzzy -#~ msgid "Sharing Editing?" -#~ msgstr "Annullare l'importazione" - -#~ msgid "Disable plugins during recording" -#~ msgstr "Disabilita i plugin durante la registrazione" - -#, fuzzy -#~ msgid "Visual|Interface" -#~ msgstr "Interfaccia:" - -#~ msgid "Editing" -#~ msgstr "Modifica" - -#~ msgid "Crossfades are created" -#~ msgstr "Le dissolvenze sono state create" - -#, fuzzy -#~ msgid "to span entire overlap" -#~ msgstr "Porta la regione su di un livello" - -#, fuzzy -#~ msgid "use existing region fade shape" -#~ msgstr "Usa una sessione salvata come modello" - -#~ msgid "Short crossfade length" -#~ msgstr "Dissolvenza breve" - -#~ msgid "Create crossfades automatically" -#~ msgstr "Crea automaticamente le dissolvenze" - -#~ msgid "Add files:" -#~ msgstr "Aggiungi file:" - -#~ msgid "Add MIDI Controller Track" -#~ msgstr "Aggiungi una traccia Controller MIDI" - -#~ msgid "%1 could not start JACK" -#~ msgstr "%1 non ha potuto avviare JACK" - -#~ msgid "" -#~ "There are several possible reasons:\n" -#~ "\n" -#~ "1) You requested audio parameters that are not supported..\n" -#~ "2) JACK is running as another user.\n" -#~ "\n" -#~ "Please consider the possibilities, and perhaps try different parameters." -#~ msgstr "" -#~ "Ci sono vari possibili motivi:\n" -#~ "1) i parametri impostati non sono supportati. \n" -#~ "2) JACK è stato avviato con un altro utente.\n" -#~ "\n" -#~ "Prendete in considerazione le ipotesi e magari provate con parametri " -#~ "diversi." - -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "snapshot names may not contain a '\\' character" -#~ msgstr "" -#~ "Per assicurare la compatibilità con vari sistemi\n" -#~ "i nomi di instantanee non dovrebbero contenere\n" -#~ " il carattere '\\'" - -#, fuzzy -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "snapshot names may not contain a ':' character" -#~ msgstr "" -#~ "Per assicurare la compatibilità con vari sistemi\n" -#~ "i nomi di instantanee non dovrebbero contenere\n" -#~ " il carattere '/'" - -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "session names may not contain a '\\' character" -#~ msgstr "" -#~ "Per assicurare la compatibilità con vari sistemi\n" -#~ "i nomi di sessione non dovrebbero contenere\n" -#~ " il carattere '\\'" - -#~ msgid "Sorry, MIDI Busses are not supported at this time." -#~ msgstr "Spiacente, i bus MIDI non sono ancora supportati" - -#~ msgid "Mixer" -#~ msgstr "Mixer" - -#~ msgid "Show All Crossfades" -#~ msgstr "Mostra tutte le dissolvenze" - -#~ msgid "Edit Crossfade" -#~ msgstr "Modifica dissolvenza incrociata" - -#~ msgid "Out (dry)" -#~ msgstr "Uscita (dry)" - -#~ msgid "In (dry)" -#~ msgstr "Ingresso (dry)" - -#~ msgid "With Pre-roll" -#~ msgstr "Con pre-roll" - -#~ msgid "With Post-roll" -#~ msgstr "Con post-roll" - -#~ msgid "Edit crossfade" -#~ msgstr "Modifica disollvenza incrociata " - -#~ msgid "Route Groups" -#~ msgstr "Ruota i gruppi" - -#~ msgid "Unmute" -#~ msgstr "Non-muto" - -#, fuzzy -#~ msgid "Convert to Short" -#~ msgstr "Converti a breve" - -#, fuzzy -#~ msgid "Convert to Full" -#~ msgstr "Converti per intero" - -#~ msgid "Nudge Entire Track Backward" -#~ msgstr "Trascina l'intera traccia indietro" - -#~ msgid "Nudge Track After Edit Point Backward" -#~ msgstr "Trascina la traccia dopo il cursore di modifica" - -#~ msgid "Nudge Region/Selection Backwards" -#~ msgstr "Trascina regione/selezione indietro" - -#~ msgid "Undo" -#~ msgstr "Annulla" - -#~ msgid "Jump Forward to Mark" -#~ msgstr "Salta al prossimo marcatore" - -#~ msgid "Jump Backward to Mark" -#~ msgstr "Salta al marcatore precedente" - -#~ msgid "Forward to Grid" -#~ msgstr "Avanti rispetto alla griglia" - -#~ msgid "Backward to Grid" -#~ msgstr "Indietro rispetto alla griglia" - -#~ msgid "Add Range Marker(s)" -#~ msgstr "Aggiungi marcatore(i) di intervallo" - -#~ msgid "Envelope Visible" -#~ msgstr "Inviluppo visibile" - -#, fuzzy -#~ msgid "Rel" -#~ msgstr "Reg" - -#, fuzzy -#~ msgid "region gain envelope visible" -#~ msgstr "mostra la curva di gain" - -#~ msgid "Realtime Priority" -#~ msgstr "Priorità Tempo Reale" - -#~ msgid "Input channels:" -#~ msgstr "Canali in ingresso:" - -#~ msgid "Output channels:" -#~ msgstr "Canali di uscita:" - -#~ msgid "Advanced options" -#~ msgstr "Opzioni avanzate" - -#~ msgid "Include in Filename(s):" -#~ msgstr "Includi nel Nomefile:" - -#~ msgid "New From" -#~ msgstr "Nuovo da" - -#~ msgid "Option-" -#~ msgstr "Opzione-" - -#~ msgid "Control-" -#~ msgstr "Controlla-" - -#~ msgid "SCMS" -#~ msgstr "SCMS" - -#, fuzzy -#~ msgid "Set value to playhead" -#~ msgstr "Imposta dall'inizio" - -#~ msgid "Jump to the end of this range" -#~ msgstr "Salta alla fine dell'intervallo" - -#~ msgid "Jump to the start of this range" -#~ msgstr "Salta all'inizio dell'intervallo" - -#~ msgid "End time" -#~ msgstr "Tempo di fine" - -#~ msgid "Could not create user configuration directory" -#~ msgstr "Impossibile creare la cartella delle configurazioni" - -#~ msgid "" -#~ "Button 1 to choose inputs from a port matrix, button 3 to select inputs " -#~ "from a menu" -#~ msgstr "" -#~ "Pulsante 1 per scegliere gli ingressi da una \"matrix\", pulsante 3 per " -#~ "scegliere gli ingressi da un menù" - -#~ msgid "" -#~ "Button 1 to choose outputs from a port matrix, button 3 to select inputs " -#~ "from a menu" -#~ msgstr "" -#~ "Pulsante 1 per scegliere le uscite da una \"matrix\", pulsante 3 per " -#~ "scegliere gli ingressi da un menù" - -#~ msgid "signal" -#~ msgstr "segnale" - -#~ msgid "close" -#~ msgstr "chiudi" - -#~ msgid "New send" -#~ msgstr "Nuova mandata" - -#~ msgid "New Send ..." -#~ msgstr "Nuova mandata..." - -#, fuzzy -#~ msgid "Controls..." -#~ msgstr "Uscite di Controllo" - -#~ msgid "Legato" -#~ msgstr "Legato" - -#, fuzzy -#~ msgid "Quantize Type" -#~ msgstr "Tipo" - -#, fuzzy -#~ msgid "Secondary clock delta to edit cursor" -#~ msgstr "Inizio al cursore di modifica" - -#, fuzzy -#~ msgid "Route active state" -#~ msgstr "stato dell'automazione pan" - -#~ msgid "Crossfades active" -#~ msgstr "Dissolvenze attive" - -#, fuzzy -#~ msgid "Layering model" -#~ msgstr "Livello" - -#, fuzzy -#~ msgid "later is higher" -#~ msgstr "Porta la regione giù di un livello" - -#, fuzzy -#~ msgid "most recently moved or added is higher" -#~ msgstr "Porta la regione giù di un livello" - -#, fuzzy -#~ msgid "most recently added is higher" -#~ msgstr "Porta la regione giù di un livello" - -#, fuzzy -#~ msgid "Page:" -#~ msgstr "Utilizzo: " - -#~ msgid "" -#~ "(You can change this preference at any time, via the " -#~ "Preferences dialog)" -#~ msgstr "" -#~ "(Potrete cambiare queste scelte in ogni momento attraverso la " -#~ "finestra Preferenze)" - -#~ msgid "second (2)" -#~ msgstr "mezzo (2)" - -#~ msgid "eighth (8)" -#~ msgstr "ottavi (8)" - -#~ msgid "Strict Linear" -#~ msgstr "Strettamente lineare" - -#~ msgid "no style found for %1, using red" -#~ msgstr "nessuno stile trovato per %1, uso il rosso." - -#~ msgid "unknown style attribute %1 requested for color; using \"red\"" -#~ msgstr "" -#~ "è stato richiesto un attributo di stile %1 sconosciuto, uso il \"rosso\"" - -#~ msgid "" -#~ "pre\n" -#~ "roll" -#~ msgstr "" -#~ "pre\n" -#~ "roll" - -#~ msgid "" -#~ "post\n" -#~ "roll" -#~ msgstr "" -#~ "post\n" -#~ "roll" - -#~ msgid "" -#~ "time\n" -#~ "master" -#~ msgstr "" -#~ "tempo\n" -#~ "master" - -#~ msgid "AUDITION" -#~ msgstr "Ascolto" - -#~ msgid "SOLO" -#~ msgstr "SOLO" - -#~ msgid "%.1f kHz / %4.1f ms" -#~ msgstr "%.1f kHz / %4.1f ms" - -#~ msgid "% kHz / %4.1f ms" -#~ msgstr "% kHz / %4.1f ms" - -#~ msgid "DSP: %5.1f%%" -#~ msgstr "DSP: %5.1f%%" - -#~ msgid "Buffers p:%%% c:%%%" -#~ msgstr "Buffers p:%%% c:%%%" - -#~ msgid "Disk: 24hrs+" -#~ msgstr "Spazio su disco: 24hrs+" - -#~ msgid "Does %1 control the time?" -#~ msgstr "%1 controlla il tempo?" - -#~ msgid "External" -#~ msgstr "Esterno" - -#~ msgid "automation" -#~ msgstr "automazione" - -#~ msgid "Delete Unused" -#~ msgstr "Elimina inutilizzati" - -#~ msgid "No devices found for driver \"%1\"" -#~ msgstr "Non sono stati trovati dispositivi per il driver \"%1\"" - -#~ msgid "Exclusive" -#~ msgstr "Esclusivo" - -#~ msgid "Solo/Mute" -#~ msgstr "Solo/Mute" - -#~ msgid "Activate all" -#~ msgstr "Attiva tutto" - -#~ msgid "A track already exists with that name" -#~ msgstr "esiste già una traccia con quel nome" - -#, fuzzy -#~ msgid "layer-display" -#~ msgstr "Interfaccia" - -#~ msgid "Password:" -#~ msgstr "Password:" - -#~ msgid "Cancelling.." -#~ msgstr "Eliminazione..." - -#~ msgid "Smaller" -#~ msgstr "Piccolo" - -#~ msgid "quit" -#~ msgstr "Esci" - -#, fuzzy -#~ msgid "session" -#~ msgstr "Sessione" - -#, fuzzy -#~ msgid "snapshot" -#~ msgstr "Istantanea" - -#, fuzzy -#~ msgid "Save Mix Template" -#~ msgstr "Salva Modello..." - -#, fuzzy -#~ msgid "Clean Up" -#~ msgstr "Pulisci" - -#, fuzzy -#~ msgid "Select semitones or %%-age for speed display" -#~ msgstr "Seleziona semitoni o percentuale di velocita' del display" - -#~ msgid "Current transport speed" -#~ msgstr "Velocita' del trasporto attuale" - -#, fuzzy -#~ msgid "stop" -#~ msgstr "fermato" - -#~ msgid "Cleanup" -#~ msgstr "Pulisci" - -#, fuzzy -#~ msgid "DSP: 100.0%" -#~ msgstr "Carico DSP: %.1f%%" - -#, fuzzy -#~ msgid "ST" -#~ msgstr "VST" - -#, fuzzy -#~ msgid "Extend Range to Start of Region" -#~ msgstr "Vai all'inizio della sessione" - -#, fuzzy -#~ msgid "Key Mouse" -#~ msgstr "Tastiera/Mouse" - -#, fuzzy -#~ msgid "Center Active Marker" -#~ msgstr "rimuovi marcatore" - -#, fuzzy -#~ msgid "Brush at Mouse" -#~ msgstr "utilizza le uscite master" - -#, fuzzy -#~ msgid "Bounce" -#~ msgstr "Fai il Bounce dell'intervallo" - -#, fuzzy -#~ msgid "region copy" -#~ msgstr "Regioni/sincronizzazione" - -#~ msgid "Clear tempo" -#~ msgstr "Pulisci tempo" - -#~ msgid "Clear meter" -#~ msgstr "Pulisci Meter" - -#, fuzzy -#~ msgid "Default Channel" -#~ msgstr "Dividi i Canali" - -#, fuzzy -#~ msgid "input" -#~ msgstr "entrata %1" - -#, fuzzy -#~ msgid "" -#~ "Do you really want to remove bus \"%1\" ?\n" -#~ "\n" -#~ "You may also lose the playlist used by this track.\n" -#~ "\n" -#~ "(This action cannot be undone, and the session file will be overwritten)" -#~ msgstr "" -#~ "Si vuole realmente rimuovere la traccia \"%1\" ?\n" -#~ "(questa azione non potrà essere annullata)" - -#, fuzzy -#~ msgid "insert file" -#~ msgstr "Inserisci un file audio esterno" - -#, fuzzy -#~ msgid "region drag" -#~ msgstr "Ridimensiona la Regione alla selezione" - -#, fuzzy -#~ msgid "Drag region brush" -#~ msgstr "Sposta Regione/i" - -#, fuzzy -#~ msgid "selection grab" -#~ msgstr "seleziona l'intervallo di zoom" - -#, fuzzy -#~ msgid "fill selection" -#~ msgstr "Suona intervallo/selezione" - -#, fuzzy -#~ msgid "duplicate region" -#~ msgstr "Esegui la regione selezionata come loop" - -#, fuzzy -#~ msgid "Reset all" -#~ msgstr "azzera" - -#, fuzzy -#~ msgid "Set tempo map" -#~ msgstr "rimuovi marcatore" - -#, fuzzy -#~ msgid "programmer error: %1 %2" -#~ msgstr "errore di programmazione: " - -#~ msgid "ardour: add track/bus" -#~ msgstr "ardour: aggiungi traccia/bus" - -#~ msgid "Name (template)" -#~ msgstr "Nome (modello)" - -#~ msgid "ardour: save session?" -#~ msgstr "ardour: salvare la sessione?" - -#~ msgid "open session" -#~ msgstr "apri sessione" - -#, fuzzy -#~ msgid "Ardour sessions" -#~ msgstr "ardour_nuova_sessione" - -#~ msgid "Patience is a virtue.\n" -#~ msgstr "La pazienza è una virtù.\n" - -#~ msgid "No Stream" -#~ msgstr "Nessun flusso" - -#~ msgid "ardour: cleanup" -#~ msgstr "ardour: pulisci" - -#, fuzzy -#~ msgid "ardour_cleanup" -#~ msgstr "ardour: pulisci" - -#~ msgid "ardour: clock" -#~ msgstr "ardour: orologio" - -#, fuzzy -#~ msgid "Sound File Browser" -#~ msgstr "Libreria Audio" - -#, fuzzy -#~ msgid "Export selection to audiofile..." -#~ msgstr "Esporta la sessione come file audio..." - -#, fuzzy -#~ msgid "Export range markers to audiofile..." -#~ msgstr "Esporta l'intervallo come file audio..." - -#, fuzzy -#~ msgid "Track/Bus Inspector" -#~ msgstr "Tracce/Bus" - -#, fuzzy -#~ msgid "Connect new track outputs to hardware" -#~ msgstr "Connetti automaticamente nuove tracce" - -#, fuzzy -#~ msgid "Manually connect new track outputs" -#~ msgstr "connetti manualmente le uscite delle tracce" - -#, fuzzy -#~ msgid "Hardware monitoring" -#~ msgstr "Usa il Monitoraggio Hardware" - -#, fuzzy -#~ msgid "Software monitoring" -#~ msgstr "Usa il Monitoraggio Software" - -#, fuzzy -#~ msgid "Automatically create crossfades" -#~ msgstr "Smorzamento incrociato automatico in caso sovrapposizione" - -#~ msgid "Display Height" -#~ msgstr "Altezza" - -#~ msgid "Show waveforms" -#~ msgstr "Mostra le forme Wave" - -#~ msgid "a track already exists with that name" -#~ msgstr "esiste già una traccia con quel nome" - -#~ msgid "Current: %1" -#~ msgstr "Corrente %1" - -#, fuzzy -#~ msgid "clear track" -#~ msgstr "azzera gli intervalli" - -#, fuzzy -#~ msgid "height" -#~ msgstr "Altezza" - -#~ msgid "ardour: x-fade edit" -#~ msgstr "ardour: modifica lo smorzamento incrociato" - -#~ msgid "Edit Cursor" -#~ msgstr "Cursore di modifica" - -#~ msgid "object" -#~ msgstr "oggetto" - -#~ msgid "Zoom out" -#~ msgstr "Zoom indietro" - -#~ msgid "Chunks" -#~ msgstr "Spezzoni" - -#~ msgid "Popup region editor" -#~ msgstr "Mostra l'editor di regione" - -#, fuzzy -#~ msgid "Analyze region" -#~ msgstr "Suona la Regione" - -#, fuzzy -#~ msgid "DeNormalize" -#~ msgstr "Normalizza" - -#, fuzzy -#~ msgid "Nudge fwd" -#~ msgstr "Sposta" - -#, fuzzy -#~ msgid "Nudge bwd" -#~ msgstr "Sposta" - -#~ msgid "Edit cursor to end" -#~ msgstr "Cursore di modifica alla fine" - -#~ msgid "Destroy" -#~ msgstr "Distruggi" - -#~ msgid "Loop range" -#~ msgstr "Intervallo di loop" - -#, fuzzy -#~ msgid "Select all in range" -#~ msgstr "Seleziona tutto nella traccia" - -#, fuzzy -#~ msgid "Duplicate range" -#~ msgstr "Duplica" - -#~ msgid "Create chunk from range" -#~ msgstr "Crea uno spezzone dall'intervallo" - -#~ msgid "Bounce range" -#~ msgstr "Fai il Bounce dell'intervallo" - -#, fuzzy -#~ msgid "Export range" -#~ msgstr "Esporta regione" - -#, fuzzy -#~ msgid "Select all before playhead" -#~ msgstr "Imposta dall'inizio" - -#, fuzzy -#~ msgid "Select all between cursors" -#~ msgstr "Inizio al cursore di modifica" - -#, fuzzy -#~ msgid "Paste at edit cursor" -#~ msgstr "Inizio al cursore di modifica" - -#, fuzzy -#~ msgid "Paste at mouse" -#~ msgstr "utilizza le uscite master" - -#~ msgid "Insert chunk" -#~ msgstr "Inserisci lo Spezzone" - -#~ msgid "Nudge entire track bwd" -#~ msgstr "Arretra l'intera traccia" - -#~ msgid "Nudge track after edit cursor bwd" -#~ msgstr "Arretra la traccia dopo il cursore di modifica" - -#, fuzzy -#~ msgid "... as new region" -#~ msgstr "Sposta Regione/i" - -#~ msgid "Import audio (copy)" -#~ msgstr "Importa audio (copia)" - -#~ msgid "Duplicate how many times?" -#~ msgstr "Quante volte duplico?" - -#, fuzzy -#~ msgid "Move edit cursor" -#~ msgstr "Inizio al cursore di modifica" - -#, fuzzy -#~ msgid "Edit Cursor to Range End" -#~ msgstr "Cursore di modifica alla fine" - -#, fuzzy -#~ msgid "Select All Between Cursors" -#~ msgstr "Suona dal cursore di modifica" - -#, fuzzy -#~ msgid "Add Location from Playhead" -#~ msgstr "Imposta dall'inizio" - -#, fuzzy -#~ msgid "Center Edit Cursor" -#~ msgstr "Cursore di modifica" - -#, fuzzy -#~ msgid "Edit to Playhead" -#~ msgstr "Imposta dall'inizio" - -#, fuzzy -#~ msgid "Align Regions End" -#~ msgstr "Sposta Regione/i" - -#, fuzzy -#~ msgid "Align Regions End Relative" -#~ msgstr "Allinea Realtivo" - -#, fuzzy -#~ msgid "Align Regions Sync Relative" -#~ msgstr "Allinea Realtivo" - -#, fuzzy -#~ msgid "Mute/Unmute Region" -#~ msgstr "Crea una Regione" - -#, fuzzy -#~ msgid "Duplicate Region" -#~ msgstr "Esegui la regione selezionata come loop" - -#, fuzzy -#~ msgid "crop" -#~ msgstr "copia" - -#, fuzzy -#~ msgid "Insert Chunk" -#~ msgstr "Inserisci lo Spezzone" - -#, fuzzy -#~ msgid "Show Waveforms" -#~ msgstr "Mostra le forme Wave" - -#, fuzzy -#~ msgid "Show Waveforms While Recording" -#~ msgstr "Mostra le forme Wave in registrazione" - -#, fuzzy -#~ msgid "Add existing audio to session" -#~ msgstr "mostra le automazioni esistenti" - -#~ msgid "ardour: importing %1" -#~ msgstr "ardour: importazione di %1" - -#, fuzzy -#~ msgid "keyboard selection" -#~ msgstr "Esegui la regione selezionata come loop" - -#, fuzzy -#~ msgid "Hide Mark" -#~ msgstr "Nascondi traccia" - -#~ msgid "ardour: rename mark" -#~ msgstr "ardour: rinomina il marcatore" - -#, fuzzy -#~ msgid "ardour: rename range" -#~ msgstr "ardour: rinomina la regione" - -#, fuzzy -#~ msgid "select on click" -#~ msgstr "Usa come click" - -#, fuzzy -#~ msgid "cancel selection" -#~ msgstr "Suona intervallo/selezione" - -#, fuzzy -#~ msgid "move selection" -#~ msgstr "Esegui la regione selezionata come loop" - -#, fuzzy -#~ msgid "this region" -#~ msgstr "Metti in muto questa regione" - -#, fuzzy -#~ msgid "Yes, destroy them." -#~ msgstr "Si, rimuovi." - -#, fuzzy -#~ msgid "select all between cursors" -#~ msgstr "Suona dal cursore di modifica" - -#, fuzzy -#~ msgid "Programming error. that region doesn't cover that position" -#~ msgstr "" -#~ "errore di programmazione: la mappa di posizioni/marcatori non contiene " -#~ "alcuna posizione!" - -#~ msgid "Place the edit cursor at the desired sync point" -#~ msgstr "" -#~ "Posiziona il cursore di modifica al punto di sincronizzazione desiderato" - -#, fuzzy -#~ msgid "set sync from edit cursor" -#~ msgstr "Suona dal cursore di modifica" - -#, fuzzy -#~ msgid "naturalize" -#~ msgstr "Normalizza" - -#, fuzzy -#~ msgid "ardour: freeze" -#~ msgstr "ardour: rinomina la regione" - -#, fuzzy -#~ msgid "paste chunk" -#~ msgstr "Crea uno Spezzone" - -#, fuzzy -#~ msgid "clear playlist" -#~ msgstr "azzera le posizioni" - -#, fuzzy -#~ msgid "Name for Chunk:" -#~ msgstr "Nome dello Spezzone" - -#, fuzzy -#~ msgid "Create Chunk" -#~ msgstr "Crea uno Spezzone" - -#~ msgid "Forget it" -#~ msgstr "Annulla" - -#~ msgid "best" -#~ msgstr "migliore" - -#~ msgid "intermediate" -#~ msgstr "medio" - -#~ msgid "ardour: export" -#~ msgstr "ardour: esportazione" - -#, fuzzy -#~ msgid "ardour_export" -#~ msgstr "ardour: esportazione" - -#, fuzzy -#~ msgid "Editor: cannot open \"%1\" as export file for CD toc file" -#~ msgstr "" -#~ "Editor: impossibile aprire \"%1\" come file da esportare a marcatori di " -#~ "tracce per CD" - -#, fuzzy -#~ msgid "Editor: cannot open \"%1\" as export file for CD cue file" -#~ msgstr "" -#~ "Editor: impossibile aprire \"%1\" come file da esportare a marcatori di " -#~ "tracce per CD" - -#, fuzzy -#~ msgid "add gain automation event" -#~ msgstr "aggiungi evento di automazione a " - -#, fuzzy -#~ msgid "0.5 seconds" -#~ msgstr "Secondi" - -#, fuzzy -#~ msgid "1.5 seconds" -#~ msgstr "Secondi" - -#, fuzzy -#~ msgid "2 seconds" -#~ msgstr "Secondi" - -#, fuzzy -#~ msgid "2.5 seconds" -#~ msgstr "Secondi" - -#, fuzzy -#~ msgid "3 seconds" -#~ msgstr "Secondi" - -#, fuzzy -#~ msgid "Add Input" -#~ msgstr "aggiungi una entrata" - -#, fuzzy -#~ msgid "Add Output" -#~ msgstr "aggiungi una uscita" - -#, fuzzy -#~ msgid "Remove Input" -#~ msgstr "Rimuovi il punto di sincronizzazione" - -#, fuzzy -#~ msgid "Disconnect All" -#~ msgstr "Disconnetti" - -#~ msgid "Available connections" -#~ msgstr "Connessioni disponibili" - -#~ msgid "KeyboardTarget: keyname \"%1\" is unknown." -#~ msgstr "KeyboardTarget: il keyname \"%1\" è sconosciuto" - -#~ msgid "Add New Location" -#~ msgstr "Aggiungi una nuova Posizione" - -#~ msgid "ardour: locations" -#~ msgstr "ardour: posizioni" - -#~ msgid "ardour_locations" -#~ msgstr "ardour_posizioni" - -#, fuzzy -#~ msgid "Location (CD Index) Markers" -#~ msgstr "Marcatori di posizione" - -#~ msgid "ardour is killing itself for a clean exit\n" -#~ msgstr "ardour sta forzando la chiusura per un'uscita pulita\n" - -#~ msgid "stopping user interface\n" -#~ msgstr "chiusura dell'interfaccia\n" - -#, fuzzy -#~ msgid "%d(%d): received signal %d\n" -#~ msgstr "%d: ricevuto segnale %d\n" - -#, fuzzy -#~ msgid "" -#~ "Without a UI style file, ardour will look strange.\n" -#~ " Please set ARDOUR3_UI_RC to point to a valid UI style file" -#~ msgstr "" -#~ "Senza uno Stile per l'Interfaccia, ardour apparirà strano\n" -#~ "Impostare la variabile ARDOUR_UI_RC per puntare ad uno Stile" - -#, fuzzy -#~ msgid " with libardour " -#~ msgstr " con libardour " - -#, fuzzy -#~ msgid "New Name for Meter:" -#~ msgstr "Nuovo nome per il meter:" - -#, fuzzy -#~ msgid " Input" -#~ msgstr "# Entrate" - -#, fuzzy -#~ msgid "Invert Polarity" -#~ msgstr "polarità" - -#, fuzzy -#~ msgid "Port Limit" -#~ msgstr "Annulla" - -#, fuzzy -#~ msgid "Open Session File :" -#~ msgstr "apri sessione" - -#, fuzzy -#~ msgid "ardour: session control" -#~ msgstr "ardour_nuova_sessione" - -#, fuzzy -#~ msgid "select directory" -#~ msgstr "Esegui la regione selezionata come loop" - -#~ msgid "ardour: options editor" -#~ msgstr "ardour: editor delle opzioni" - -#~ msgid "ardour_option_editor" -#~ msgstr "ardour_editor_delle_opzioni" - -#~ msgid "Paths/Files" -#~ msgstr "Percorsi/File" - -#~ msgid "session RAID path" -#~ msgstr "Percorso RAID della sessione" - -#, fuzzy -#~ msgid "Soundfile Search Paths" -#~ msgstr "Libreria Audio" - -#, fuzzy -#~ msgid "online" -#~ msgstr "lineare" - -#, fuzzy -#~ msgid "offline" -#~ msgstr "lineare" - -#~ msgid "" -#~ "The auditioner is a dedicated mixer strip used\n" -#~ "for listening to specific regions outside the context\n" -#~ "of the overall mix. It can be connected just like any\n" -#~ "other mixer strip." -#~ msgstr "" -#~ "L'auditioner è una speciale striscia del mixer,\n" -#~ "usata per ascoltare specifiche regioni al di fuori\n" -#~ "del contesto del mixaggio. Può essere connessa proprio\n" -#~ "come ogni altra striscia del mixer." - -#, fuzzy -#~ msgid " -g, --gtktheme Allow GTK to load a theme\n" -#~ msgstr " -h, --help Mostra questo messaggio\n" - -#, fuzzy -#~ msgid "add pan automation event" -#~ msgstr "aggiungi evento di automazione a " - -#, fuzzy -#~ msgid "ardour: playlists" -#~ msgstr "azzera le posizioni" - -#, fuzzy -#~ msgid "Available LADSPA Plugins" -#~ msgstr "Plugin LADSPA disponibili" - -#~ msgid "# Inputs" -#~ msgstr "# Entrate" - -#~ msgid "# Outputs" -#~ msgstr "# Uscite" - -#~ msgid "redirect automation created for non-plugin" -#~ msgstr "automazione di redirect creata per non-plugin" - -#, fuzzy -#~ msgid "rename redirect" -#~ msgstr "ardour: rinomina la regione" - -#, fuzzy -#~ msgid "" -#~ "Do you really want to remove all redirects from this track?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Si vuole realmente rimuovere la traccia \"%1\" ?\n" -#~ "(questa azione non potrà essere annullata)" - -#~ msgid "NAME:" -#~ msgstr "NOME:" - -#~ msgid "visible" -#~ msgstr "visibile" - -#~ msgid "play" -#~ msgstr "suona" - -#~ msgid "regions underneath this one cannot be heard" -#~ msgstr "le regioni al di sotto di questa non posssono essere udite" - -#~ msgid "prevent any changes to this region" -#~ msgstr "impedisci qualsiasi cambio a questa regione" - -#~ msgid "use the gain envelope during playback" -#~ msgstr "usa la curva di gain suonando" - -#~ msgid "use fade in curve during playback" -#~ msgstr "usa la curva di smorzamento in entrata, suonando" - -#~ msgid "use fade out curve during playback" -#~ msgstr "usa la curva di smorzamento in uscita, suonando" - -#~ msgid "START:" -#~ msgstr "INIZIO:" - -#~ msgid "END:" -#~ msgstr "FINE" - -#~ msgid "LENGTH:" -#~ msgstr "LUNGHEZZA" - -#~ msgid "FADE IN" -#~ msgstr "SMORZA ENTRATA" - -#~ msgid "FADE OUT" -#~ msgstr "SMORZA USCITA" - -#~ msgid "ardour: region " -#~ msgstr "ardour: regione" - -#, fuzzy -#~ msgid "Post-fader Redirects" -#~ msgstr "Post Redirezionamenti" - -#, fuzzy -#~ msgid "ardour: track/bus inspector" -#~ msgstr "ardour: aggiungi traccia/bus" - -#, fuzzy -#~ msgid "ardour: track/bus/inspector: no route selected" -#~ msgstr "ardour: parametri di route: nessun route selezionato" - -#~ msgid "ardour: color selection" -#~ msgstr "ardour: selezione del colore" - -#, fuzzy -#~ msgid "New Name: " -#~ msgstr "nuovo nome: " - -#~ msgid "Add Field..." -#~ msgstr "Aggiungi Campo" - -#, fuzzy -#~ msgid "Name for Field" -#~ msgstr "Nome per la Regione" - -#, fuzzy -#~ msgid "Link to an external file" -#~ msgstr "Inserisci un file audio esterno" - -#~ msgid "Bar" -#~ msgstr "Battuta" - -#~ msgid "Beat" -#~ msgstr "Battito" - -#, fuzzy -#~ msgid "set selected regionview" -#~ msgstr "Esegui la regione selezionata come loop" - -#~ msgid "via Session menu" -#~ msgstr "tramite il menu Sessione" - -#, fuzzy -#~ msgid "Select a File" -#~ msgstr "Seleziona tutto" - -#~ msgid "RECORD" -#~ msgstr "REGISTRA" - -#~ msgid "INPUT" -#~ msgstr "ENTRATA" - -#~ msgid "OUTPUT" -#~ msgstr "USCITA" - -#~ msgid "Gain automation mode" -#~ msgstr "Modalita' automazione gain" - -#~ msgid "Gain automation type" -#~ msgstr "Tipo di automazione gain" - -#~ msgid "gain automation state" -#~ msgstr "stato dell'automazione gain" - -#~ msgid "pan automation state" -#~ msgstr "stato dell'automazione pan" - -#~ msgid "no group" -#~ msgstr "nessun gruppo" - -#, fuzzy -#~ msgid "ardour cleanup" -#~ msgstr "ardour: pulisci" - -#~ msgid "close session" -#~ msgstr "chiudi la sessione" - -#, fuzzy -#~ msgid "SetCrossfadeModel" -#~ msgstr "Smorzamento Incrociato" - -#~ msgid "Play from" -#~ msgstr "Suona da" - -#~ msgid "FORMAT" -#~ msgstr "FORMATO" - -#, fuzzy -#~ msgid "CD MARKER FILE TYPE" -#~ msgstr "TIPO DI FILE" - -#~ msgid "CHANNELS" -#~ msgstr "CANALI" - -#~ msgid "FILE TYPE" -#~ msgstr "TIPO DI FILE" - -#~ msgid "SAMPLE FORMAT" -#~ msgstr "FORMATO DEL CAMPIONE" - -#~ msgid "SAMPLE ENDIANNESS" -#~ msgstr "ENDIANNES DEL CAMPIONE" - -#~ msgid "CONVERSION QUALITY" -#~ msgstr "QUALITÀ DI CONVERSIONE" - -#~ msgid "DITHER TYPE" -#~ msgstr "TIPO DI DITHER" - -#, fuzzy -#~ msgid "EXPORT CD MARKER FILE ONLY" -#~ msgstr "TIPO DI FILE" - -#~ msgid "EXPORT TO FILE" -#~ msgstr "ESPORTA SU FILE" - -#~ msgid "ardour: unplugged" -#~ msgstr "ardour: scollegato" - -#~ msgid "To be added" -#~ msgstr "Da aggiungere" - -#~ msgid "Update" -#~ msgstr "Aggiorna" - -#, fuzzy -#~ msgid "save" -#~ msgstr "Salva" - -#~ msgid "Name for plugin settings:" -#~ msgstr "Nome per le impostazioni del plugin" - -#~ msgid "rescan" -#~ msgstr "Aggiorna" - -#, fuzzy -#~ msgid "Enable/Disable follow playhead" -#~ msgstr "Abilita/Disabilita il click audio" - -#~ msgid "Image Compositor" -#~ msgstr "Compositore d'Immagini" - -#~ msgid "Audio Library" -#~ msgstr "Libreria Audio" - -#~ msgid "Output Connections" -#~ msgstr "Connessioni in uscita" - -#, fuzzy -#~ msgid "New Input" -#~ msgstr "Nuova entrata" - -#, fuzzy -#~ msgid "New Output" -#~ msgstr "Nuova uscita" - -#~ msgid "Regions/name" -#~ msgstr "Regioni/nome" - -#~ msgid "Edit:" -#~ msgstr "Modifica:" - -#~ msgid "incorrectly formatted URI list, ignored" -#~ msgstr "Lista URI formattata in modo non corretto, ignorata" - -#~ msgid "Embed audio (link)" -#~ msgstr "Incorpora audio (collegamento)" - -#, fuzzy -#~ msgid "Cancel cleanup" -#~ msgstr "Pulisci" - -#~ msgid "Name for new edit group" -#~ msgstr "Nome per il nuovo gruppo" - -#~ msgid "ardour: audio import in progress" -#~ msgstr "ardour: importazione audio in corso" - -#~ msgid "You can't embed an audiofile until you have a session loaded." -#~ msgstr "" -#~ "Non si può collegare un file audio senza prima aver caricato una sessione" - -#, fuzzy -#~ msgid "Insert selected as new tracks" -#~ msgstr "Inserisci selezione" - -#, fuzzy -#~ msgid "hidden" -#~ msgstr "Nascosto" - -#~ msgid "Regions/length" -#~ msgstr "Regioni/lunghezza" - -#~ msgid "Regions/start" -#~ msgstr "Regioni/inizio" - -#~ msgid "Regions/end" -#~ msgstr "Regioni/fine" - -#~ msgid "Regions/file name" -#~ msgstr "Regioni/nome file" - -#~ msgid "Regions/file system" -#~ msgstr "Regioni/file system" - -#~ msgid "Show All AbstractTracks" -#~ msgstr "Mostra tutte le Tracce" - -#~ msgid "Hide All AbstractTracks" -#~ msgstr "Nascondi tutte le Tracce" - -#~ msgid "KeyboardTarget: no translation found for \"%1\"" -#~ msgstr "KeyboardTarget: nessuna traduzione trovata per \"%1\"" - -#~ msgid "KeyboardTarget: unknown action \"%1\"" -#~ msgstr "KeyboardTarget: \"1\" azione sconosciuta" - -#~ msgid "ardour: soundfile selector" -#~ msgstr "ardour: selezione del file audio" - -#~ msgid "Add to Library..." -#~ msgstr "Aggiungi alla libreria..." - -#~ msgid "Remove..." -#~ msgstr "Rimuovi..." - -#~ msgid "Find..." -#~ msgstr "Trova..." - -#~ msgid "Add Folder" -#~ msgstr "Crea una Cartella" - -#~ msgid "Add audio file or directory" -#~ msgstr "Aggiungi un file audio o una cartella" - -#~ msgid "Importing" -#~ msgstr "Importazione" - -#~ msgid "%1 not added to database" -#~ msgstr "%1 non aggiunto al database" - -#~ msgid "Should not be reached" -#~ msgstr "Impossibile aprire" - -#~ msgid "Find" -#~ msgstr "Trova" - -#~ msgid "AND" -#~ msgstr "E" - -#~ msgid "ardour: locate soundfiles" -#~ msgstr "ardour: localizza file audio" - -#~ msgid "Uris" -#~ msgstr "Uri" - -#~ msgid "Create multi-channel region" -#~ msgstr "Crea regione a più canali" - -#~ msgid "Ardour: Search Results" -#~ msgstr "Ardour: Risultati della Ricerca" - -#~ msgid "Hide All AudioTrack MixerStrips" -#~ msgstr "Nascondi tutte le Tracce del Mixer" - -#~ msgid "Show All AudioBus MixerStrips" -#~ msgstr "Mostra tutti i Bus del Mixer" - -#~ msgid "Name for new mix group" -#~ msgstr "Nome del nuovo gruppo di mixaggio" - -#, fuzzy -#~ msgid "automatically connect track outputs to physical ports" -#~ msgstr "autoconnetti le uscite delle tracce alle uscite fisiche" - -#~ msgid "show again" -#~ msgstr "mostra ancora" - -#~ msgid "new session setup" -#~ msgstr "impostazione di nuova sessione" - -#~ msgid "This session will playback and record at %1 Hz" -#~ msgstr "Questa sessione suonera' e registrera' a %1 Hz" - -#~ msgid "" -#~ "This rate is set by JACK and cannot be changed.\n" -#~ "If you want to use a different sample rate\n" -#~ "please exit and restart JACK" -#~ msgstr "" -#~ "Questo e' impostato da JACK e non pu essere cambiato.\n" -#~ "Se si vuole utilizzare un sample rate differente\n" -#~ "bisogna chiudere e riavviare JACK" - -#~ msgid "blank" -#~ msgstr "vuoto" - -#, fuzzy -#~ msgid "Slave to MTC" -#~ msgstr "Invia MTC" - -#~ msgid "--unknown--" -#~ msgstr "--sconosciuto--" - -#, fuzzy -#~ msgid "Select all" -#~ msgstr "Seleziona tutto" - -#~ msgid "Post Redirects" -#~ msgstr "Post Redirezionamenti" - -#~ msgid "No toggle button pixmaps found to match toggle-button-[0-9]*.xpm$" -#~ msgstr "Impossibile trovare una immagine per toggle-button-[0-9]*.xpm$" - -#~ msgid "" -#~ "No small push button pixmaps found to match small-round-button-[0-9]*.xpm$" -#~ msgstr "Impossibile trovare una immagine per small-round-button-[0-9]*.xpm$" - -#~ msgid "No pixmaps found to match hslider[0-9]*.xpm$" -#~ msgstr "Impossibile trovare una immagine per hslider[0-9]*.xpm$" - -#~ msgid "No pixmaps found to match vslider[0-9]*.xpm$" -#~ msgstr "Impossibile trovare una immagine per vslider[0-9]*.xpm$" - -#~ msgid "attempt to timestretch a non-audio track!" -#~ msgstr "si tenta il timestretch su una traccia non audio!" - -#~ msgid "ardour: tempo editor" -#~ msgstr "ardour: modifica il tempo" - -#~ msgid "ok" -#~ msgstr "Ok" - -#~ msgid "apply" -#~ msgstr "applica" - -#~ msgid "Edit left" -#~ msgstr "Modifica a sinistra" - -#~ msgid "Edit right" -#~ msgstr "Modifica a destra" - -#~ msgid "add comments/notes here" -#~ msgstr "aggiungi note/commenti qui" - -#, fuzzy -#~ msgid "outside this computer" -#~ msgstr "Nascondi traccia" - -#, fuzzy -#~ msgid "inside this computer" -#~ msgstr "Nascondi traccia" diff --git a/gtk2_ardour/po/nn.po b/gtk2_ardour/po/nn.po index f288526c94..d44dc00352 100644 --- a/gtk2_ardour/po/nn.po +++ b/gtk2_ardour/po/nn.po @@ -257,23 +257,6 @@ msgstr "" "\tMartin Blanchard\n" "\tRomain Arnaud \n" -#: about.cc:183 -#, fuzzy -msgid "" -"German:\n" -"\tKarsten Petersen \n" -"\tSebastian Arnold \n" -"\tRobert Schwede \n" -"\tBenjamin Scherrer \n" -"\tEdgar Aichinger \n" -"\tRichard Oax \n" -"\tRobin Gloster \n" -msgstr "" -"Tysk:\n" -"\tKarsten Petersen \n" -"\tSebastian Arnold \n" -"\tRobert Schwede\n" - #: about.cc:190 msgid "" "Italian:\n" @@ -370,11 +353,6 @@ msgstr "" "Kinesisk:\n" "\t Rui-huai Zhang \n" -#: about.cc:580 -#, fuzzy -msgid "Copyright (C) 1999-2013 Paul Davis\n" -msgstr "Copyright (C) 1999-2012 Paul Davis\n" - #: about.cc:584 msgid "http://ardour.org/" msgstr "http://ardour.org/" @@ -563,15 +541,6 @@ msgstr "-ingen-" msgid "Ambiguous File" msgstr "Tvitydig fil" -#: ambiguous_file_dialog.cc:35 -#, fuzzy -msgid "" -"%1 has found the file %2 in the following places:\n" -"\n" -msgstr "" -"Ardour har funne fila %1 desse stadene:\n" -"\n" - #: ambiguous_file_dialog.cc:44 msgid "" "\n" @@ -672,11 +641,6 @@ msgstr "Snøggtastar" msgid "Preferences" msgstr "Innstillingar" -#: ardour_ui.cc:191 ardour_ui.cc:196 -#, fuzzy -msgid "Add Tracks/Busses" -msgstr "Spor/bussar" - #: ardour_ui.cc:192 msgid "About" msgstr "Om" @@ -701,16 +665,6 @@ msgstr "Bundelordnar" msgid "Big Clock" msgstr "Stor klokke" -#: ardour_ui.cc:199 -#, fuzzy -msgid "Audio Connections" -msgstr "Lydtilkoplingar" - -#: ardour_ui.cc:200 -#, fuzzy -msgid "MIDI Connections" -msgstr "Inngangstilkoplingar" - #: ardour_ui.cc:202 msgid "Errors" msgstr "Feil" @@ -1156,60 +1110,6 @@ msgstr "mega" msgid "giga" msgstr "giga" -#: ardour_ui.cc:3116 -#, fuzzy -msgid "" -"The following file was deleted from %2,\n" -"releasing %3 %4bytes of disk space" -msgid_plural "" -"The following %1 files were deleted from %2,\n" -"releasing %3 %4bytes of disk space" -msgstr[0] "" -"Denne fila vart sletta frÃ¥%2,\n" -"og frigjorde %3 %4byte lagringsplass" -msgstr[1] "" -"Denne fila vart sletta frÃ¥%2,\n" -"og frigjorde %3 %4byte lagringsplass" - -#: ardour_ui.cc:3123 -#, fuzzy -msgid "" -"The following file was not in use and \n" -"has been moved to: %2\n" -"\n" -"After a restart of %5\n" -"\n" -"Session -> Clean-up -> Flush Wastebasket\n" -"\n" -"will release an additional %3 %4bytes of disk space.\n" -msgid_plural "" -"The following %1 files were not in use and \n" -"have been moved to: %2\n" -"\n" -"After a restart of %5\n" -"\n" -"Session -> Clean-up -> Flush Wastebasket\n" -"\n" -"will release an additional %3 %4bytes of disk space.\n" -msgstr[0] "" -"Denne fila var ikkje i bruk, \n" -"og er flytt til: %2. \n" -"\n" -"Om du startar %5 pÃ¥ nytt og vel\n" -"\n" -"Økt -> Opprydding -> Tøm søppelbøtta\n" -"\n" -"frigjer du %3 %4byte lagringsplass.\n" -msgstr[1] "" -"Denne fila var ikkje i bruk, \n" -"og er flytt til: %2. \n" -"\n" -"Om du startar %5 pÃ¥ nytt og vel\n" -"\n" -"Økt -> Opprydding -> Tøm søppelbøtta\n" -"\n" -"frigjer du %3 %4byte lagringsplass.\n" - #: ardour_ui.cc:3183 msgid "Are you sure you want to clean-up?" msgstr "Er du sikker pÃ¥ at du vil rydda opp?" @@ -1245,16 +1145,6 @@ msgstr "" msgid "Stop Video-Server" msgstr "" -#: ardour_ui.cc:3342 -#, fuzzy -msgid "Do you really want to stop the Video Server?" -msgstr "Vil du verkeleg fjerna %1? %2?" - -#: ardour_ui.cc:3345 -#, fuzzy -msgid "Yes, Stop It" -msgstr "Ja, øydelegg det." - #: ardour_ui.cc:3371 msgid "The Video Server is already started." msgstr "" @@ -1331,25 +1221,6 @@ msgstr "" msgid "Crash Recovery" msgstr "Gjenoppretting etter krasj" -#: ardour_ui.cc:3762 -#, fuzzy -msgid "" -"This session appears to have been in the\n" -"middle of recording when %1 or\n" -"the computer was shutdown.\n" -"\n" -"%1 can recover any captured audio for\n" -"you, or it can ignore it. Please decide\n" -"what you would like to do.\n" -msgstr "" -"Det ser ut til at du var midt i eit\n" -"opptak dÃ¥ Ardour eller datamaskina \n" -"di vart slegen av.\n" -"\n" -"%1 kan henta fram att lyd for \n" -"deg, eller sjÃ¥ bort frÃ¥ sist opptak.\n" -"Vel kva du vil gjera. \n" - #: ardour_ui.cc:3774 msgid "Ignore crash data" msgstr "SjÃ¥ bort frÃ¥ krasjdata" @@ -1411,11 +1282,6 @@ msgstr "Grensesnitt: Greier ikkje setja opp redigeringa" msgid "UI: cannot setup mixer" msgstr "Grensesnitt: Greier ikkje setja opp miksaren" -#: ardour_ui2.cc:82 -#, fuzzy -msgid "UI: cannot setup meterbridge" -msgstr "Grensesnitt: Greier ikkje setja opp miksaren" - #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "Spel frÃ¥ spelehovudet" @@ -1487,43 +1353,6 @@ msgstr "" msgid "When active, there is a feedback loop." msgstr "NÃ¥r denne er pÃ¥, er det ei rundgangssløyfe." -#: ardour_ui2.cc:145 -#, fuzzy -msgid "" -"Primary Clock right-click to set display mode. Click to edit, click" -"+drag a digit or mouse-over+scroll wheel to modify.\n" -"Text edits: right-to-left overwrite Esc: cancel; Enter: " -"confirm; postfix the edit with '+' or '-' to enter delta times.\n" -msgstr "" -"Hovudklokke høgreklikk for Ã¥ velja visingsmodus. Klikk for Ã¥ " -"redigera, klikk+dra eller mus-over + mushjul for Ã¥ endra.\n" -"Tekstredigering: høgre-til-venstre-overskriving Esc: avbryt; " -"Enter: stadfest; set '+' eller '-' etter for Ã¥ skriva inn delta-" -"tider.\n" -"SjÃ¥ http://ardour.org/a3_features_clocks for " -"fleire opplysingar." - -#: ardour_ui2.cc:146 -#, fuzzy -msgid "" -"Secondary Clock right-click to set display mode. Click to edit, click" -"+drag a digit or mouse-over+scroll wheel to modify.\n" -"Text edits: right-to-left overwrite Esc: cancel; Enter: " -"confirm; postfix the edit with '+' or '-' to enter delta times.\n" -msgstr "" -"Sekundærklokke høgreklikk for Ã¥ velja visingsmodus. Klikk for Ã¥ " -"redigera, klikk+dra eller mus-over + mushjul for Ã¥ endra.\n" -"Tekstredigering: høgre-til-venstre-overskriving Esc: avbryt; " -"Enter: stadfest; set '+' eller '-' etter for Ã¥ skriva inn delta-" -"tider.\n" -"SjÃ¥ http://ardour.org/a3_features_clocks for " -"fleire opplysingar." - -#: ardour_ui2.cc:147 -#, fuzzy -msgid "Reset Level Meter" -msgstr "Nullstill omhylling" - #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "[FEIL]:" @@ -1665,21 +1494,6 @@ msgstr "Lukk" msgid "Add Track or Bus..." msgstr "Legg til spor eller buss..." -#: ardour_ui_ed.cc:135 -#, fuzzy -msgid "Open Video" -msgstr "Opna økt" - -#: ardour_ui_ed.cc:138 -#, fuzzy -msgid "Remove Video" -msgstr "Fjern omrÃ¥det" - -#: ardour_ui_ed.cc:141 -#, fuzzy -msgid "Export To Video File" -msgstr "Eksporter økta til lydfil(er)..." - #: ardour_ui_ed.cc:145 msgid "Snapshot..." msgstr "Snøggbilete..." @@ -1763,16 +1577,6 @@ msgstr "Vis verktylinene" msgid "Window|Mixer" msgstr "Vindauga|miksar" -#: ardour_ui_ed.cc:231 -#, fuzzy -msgid "Toggle Editor+Mixer" -msgstr "Legg redigeringsmiksaren pÃ¥ topp" - -#: ardour_ui_ed.cc:232 meterbridge.cc:230 meterbridge.cc:236 -#, fuzzy -msgid "Window|Meterbridge" -msgstr "Vindauga|miksar" - #: ardour_ui_ed.cc:234 midi_tracer.cc:39 msgid "MIDI Tracer" msgstr "MIDI-sporar" @@ -2687,11 +2491,6 @@ msgstr "SlÃ¥ inn/ut" msgid "Linear (for highly correlated material)" msgstr "Lineært (for særs nivÃ¥rett materiale)" -#: editor.cc:1362 editor.cc:1499 editor.cc:1561 -#, fuzzy -msgid "Constant power" -msgstr "Konstant kraft" - #: editor.cc:1371 editor.cc:1492 editor.cc:1554 msgid "Symmetric" msgstr "Symmetrisk" @@ -3939,44 +3738,14 @@ msgstr "Lykkje/innslag" msgid "Min:Sec" msgstr "Min:sek" -#: editor_actions.cc:547 editor_actions.cc:550 -#, fuzzy -msgid "Video Monitor" -msgstr "Lytting" - #: editor_actions.cc:549 rc_option_editor.cc:1842 msgid "Video" msgstr "" -#: editor_actions.cc:552 -#, fuzzy -msgid "Always on Top" -msgstr "Hev til toppen" - -#: editor_actions.cc:554 -#, fuzzy -msgid "Frame number" -msgstr "Spor nummer" - -#: editor_actions.cc:555 -#, fuzzy -msgid "Timecode Background" -msgstr "Tidskodesekund" - #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" -#: editor_actions.cc:557 -#, fuzzy -msgid "Letterbox" -msgstr "betre" - -#: editor_actions.cc:558 -#, fuzzy -msgid "Original Size" -msgstr "Opphaveleg posisjon" - #: editor_actions.cc:608 msgid "Sort" msgstr "Sorter" @@ -4439,11 +4208,6 @@ msgstr "Set inn likevel" msgid "fixed time region drag" msgstr "fast tid-bolkflytting" -#: editor_drag.cc:1700 -#, fuzzy -msgid "Video Start:" -msgstr "Mike Start" - #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -4660,26 +4424,6 @@ msgstr "Flytt merket til spelehovudet" msgid "Create Range to Next Marker" msgstr "Lag omrÃ¥de til neste markør" -#: editor_markers.cc:896 -#, fuzzy -msgid "Locate to Marker" -msgstr "GÃ¥ til markørar" - -#: editor_markers.cc:897 -#, fuzzy -msgid "Play from Marker" -msgstr "Spel herifrÃ¥" - -#: editor_markers.cc:900 -#, fuzzy -msgid "Set Marker from Playhead" -msgstr "Set inn omrÃ¥demerke ved spelehovudet" - -#: editor_markers.cc:902 -#, fuzzy -msgid "Set Range from Selection" -msgstr "Gjer omrÃ¥deutvalet til eige omrÃ¥de" - #: editor_markers.cc:905 msgid "Zoom to Range" msgstr "Zoom til omrÃ¥det" @@ -4968,20 +4712,6 @@ msgstr "Frysgrenser" msgid "Cancel Freeze" msgstr "Avbryt frysing" -#: editor_ops.cc:3553 -#, fuzzy -msgid "" -"You can't perform this operation because the processing of the signal will " -"cause one or more of the tracks to end up with a region with more channels " -"than this track has inputs.\n" -"\n" -"You can do this without processing, which is a different operation." -msgstr "" -"Du kan ikkje utføra denne handlinga, av di dÃ¥ vil eitt eller fleire spor fÃ¥ " -"ein bolk med fleire kanalar enn dette sporet har inngangar.\n" -"\n" -"Du kan gjera dette utan signalhandsaming. Det er ei anna handling." - #: editor_ops.cc:3557 msgid "Cannot bounce" msgstr "Kan ikkje miksa ned" @@ -5075,11 +4805,6 @@ msgstr "bolkomhyllinga pÃ¥" msgid "toggle region lock" msgstr "skru pÃ¥ bolklÃ¥s" -#: editor_ops.cc:5067 -#, fuzzy -msgid "Toggle Video Lock" -msgstr "skru pÃ¥ bolklÃ¥s" - #: editor_ops.cc:5091 msgid "region lock style" msgstr "type bolklÃ¥s" @@ -5578,16 +5303,6 @@ msgstr "Nytt tempo" msgid "New Meter" msgstr "Ny taktart" -#: editor_rulers.cc:373 -#, fuzzy -msgid "Timeline height" -msgstr "høgda" - -#: editor_rulers.cc:383 -#, fuzzy -msgid "Align Video Track" -msgstr "Legg til lydspor" - #: editor_selection.cc:889 editor_selection.cc:932 msgid "set selected regions" msgstr "fastset valde bolkar" @@ -5924,37 +5639,6 @@ msgstr "Avansert" msgid "cannot open JACK rc file %1 to store parameters" msgstr "greier ikkje opna JACK-rc-fila %1 for Ã¥ lagra val." -#: engine_dialog.cc:787 -#, fuzzy -msgid "" -"You do not have any audio devices capable of\n" -"simultaneous playback and recording.\n" -"\n" -"Please use Applications -> Utilities -> Audio MIDI Setup\n" -"to create an \"aggregrate\" device, or install a suitable\n" -"audio interface.\n" -"\n" -"Please send email to Apple and ask them why new Macs\n" -"have no duplex audio device.\n" -"\n" -"Alternatively, if you really want just playback\n" -"or recording but not both, start JACK before running\n" -"%1 and choose the relevant device then." -msgstr "" -"Du har ingen lydeiningar som kan bÃ¥de\n" -"spela av og ta opp samstundes.\n" -"\n" -"Bruk Program -> Verkty ->Lyd- og midi-oppsett\n" -"for Ã¥ laga ei \"konstruert\" eining, eller installer eit\n" -"høveleg lydkort.\n" -"\n" -"Du bør òg senda ein epost til Apple og spørja kvifor\n" -"nye Mac-ar ikkje har ei dupleks-lydeining.\n" -"\n" -"Eventuelt, viss du verkeleg vil ha berre avspeling\n" -"eller opptak, men ikkje bÃ¥e deler, kan du starte JACK\n" -"før du startar Ardour, og sÃ¥ velja rett lydeining." - #: engine_dialog.cc:800 msgid "No suitable audio devices" msgstr "Ingen brukande lydeiningar" @@ -6004,16 +5688,6 @@ msgstr "Bolkinnhald med toningar og bolkvolum (kanalar: %1)" msgid "Track output (channels: %1)" msgstr "Sporutgang (kanalar: %1)" -#: export_channel_selector.cc:536 -#, fuzzy -msgid "Export region contents" -msgstr "Eksporter bolken" - -#: export_channel_selector.cc:537 -#, fuzzy -msgid "Export track output" -msgstr "Kopla til spor- og bussutgangar" - #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten.When enabled %1 will stop recording if an over- or underrun is " -"detected by the audio engine" -msgstr "" -"NÃ¥r dette er pÃ¥ vil Ardour stoppa opptaket viss lydmaskina oppfattar " -"over- eller underflyt i bufferen" - #: rc_option_editor.cc:1129 msgid "Create markers where xruns occur" msgstr "Lag markørar ved xrun-hendingar" @@ -9055,43 +8477,11 @@ msgstr "Lag markørar ved xrun-hendingar" msgid "Stop at the end of the session" msgstr "Stopp ved slutten av økta" -#: rc_option_editor.cc:1143 -#, fuzzy -msgid "" -"When enabled if %1 is not recording, it will stop the " -"transport when it reaches the current session end marker\n" -"\n" -"When disabled %1 will continue to roll past the session end marker at " -"all times" -msgstr "" -"NÃ¥r dette er pÃ¥, og Ardour ikkje tek opp, vil transporten " -"stogga nÃ¥r han kjem til sluttmarkøren for denne økta\n" -"\n" -"NÃ¥r dette er av, vil Ardour halda fram forbi sluttmarkøren." - #: rc_option_editor.cc:1151 msgid "Do seamless looping (not possible when slaved to MTC, JACK etc)" msgstr "" "Bruk saumlaus lykkje (ikkje mogleg nÃ¥r me er bundne til MTC, JACK osb.)" -#: rc_option_editor.cc:1156 -#, fuzzy -msgid "" -"When enabled this will loop by reading ahead and wrapping around at " -"the loop point, preventing any need to do a transport locate at the end of " -"the loop\n" -"\n" -"When disabled looping is done by locating back to the start of the " -"loop when %1 reaches the end which will often cause a small click or delay" -msgstr "" -"NÃ¥r dette er pÃ¥, vil lykkja spela ved Ã¥ lesa framover og fletta ved " -"lykkjepunktet, slik at du ikkje treng Ã¥ plassera spelemerket ved enden av " -"lykkja\n" -"\n" -"NÃ¥r dette er av, spelar du lykkjer ved Ã¥ gÃ¥ tilbake til starten av " -"lykkja nÃ¥r Ardour kjem til slutten. Det vil ofte gje eit lite klikk eller ei " -"pause" - #: rc_option_editor.cc:1164 msgid "Disable per-track record disarm while rolling" msgstr "Ikkje tillat Ã¥ skru av opptaksstatusen per spor under avspeling" @@ -9128,31 +8518,6 @@ msgstr "Ekstern tidskodekjelde" msgid "Match session video frame rate to external timecode" msgstr "Tilpass raten for videorammene i denne økta til ekstern tidskode" -#: rc_option_editor.cc:1201 -#, fuzzy -msgid "" -"This option controls the value of the video frame rate while chasing " -"an external timecode source.\n" -"\n" -"When enabled the session video frame rate will be changed to match " -"that of the selected external timecode source.\n" -"\n" -"When disabled the session video frame rate will not be changed to " -"match that of the selected external timecode source.Instead the frame rate " -"indication in the main clock will flash red and %1 will convert between the " -"external timecode standard and the session standard." -msgstr "" -"Med dette valet kontrollerer du raten til videorammene, som fylgjer " -"ei ekstern tidskodekjelde.\n" -"\n" -"NÃ¥r dette er pÃ¥, vil videoramme-raten bli endra slik at han passar " -"til den eksterne tidskodekjelda.\n" -"\n" -"NÃ¥r det er av , vil ramme-raten ikkje bli endra sÃ¥ han passar til den " -"eksterne tidskodekjelda. I staden vil rateindikateoren i hovudklokka blinka " -"raudt, og Ardour vil omdanna mellom den eksterne tidskodestandarden og " -"øktstandarden." - #: rc_option_editor.cc:1211 msgid "External timecode is sync locked" msgstr "Ekstern tidskode er lÃ¥st til synk" @@ -9169,30 +8534,6 @@ msgstr "" msgid "Lock to 29.9700 fps instead of 30000/1001" msgstr "LÃ¥s til 29,9700 fps i staden for 30000/1001" -#: rc_option_editor.cc:1230 -#, fuzzy -msgid "" -"When enabled the external timecode source is assumed to use 29.97 fps " -"instead of 30000/1001.\n" -"SMPTE 12M-1999 specifies 29.97df as 30000/1001. The spec further mentions " -"that drop-frame timecode has an accumulated error of -86ms over a 24-hour " -"period.\n" -"Drop-frame timecode would compensate exactly for a NTSC color frame rate of " -"30 * 0.9990 (ie 29.970000). That is not the actual rate. However, some " -"vendors use that rate - despite it being against the specs - because the " -"variant of using exactly 29.97 fps has zero timecode drift.\n" -msgstr "" -"NÃ¥r dette er pÃ¥, vil Ardour gÃ¥ ut frÃ¥ at den eksterne tidskodekjelda " -"bruker 29.97 fps i staden for 30000/1001.\n" -"SMPTE 12M-1999 definerer 29.97df som 30000/1001. Spesifikasjonen nemner " -"elles at droppramme-tidskoden har ein akkumulert feilrate pÃ¥ -86ms i løpet " -"av 24 timar.\n" -"Droppramme-tidskode ville ha kompensert nøyaktig for ein NTSC-farge-" -"rammerate pÃ¥ 30 * 0,9990 (dvs 29,970000). Det er ikkje den faktiske raten, " -"sjølv om nokre produsentar bruker han - sjølv om han ikkje fylgjer " -"spesifikasjonen - fordi varianten med nøyaktig 29,97 har null i " -"tidskodedrift.\n" - #: rc_option_editor.cc:1240 msgid "LTC Reader" msgstr "LTC-lesar" @@ -9213,15 +8554,6 @@ msgstr "Skru pÃ¥ LTC-generator" msgid "send LTC while stopped" msgstr "send LTC nÃ¥r stoppa" -#: rc_option_editor.cc:1275 -#, fuzzy -msgid "" -"When enabled %1 will continue to send LTC information even when the " -"transport (playhead) is not moving" -msgstr "" -"NÃ¥r dette er pÃ¥, vil Ardour halda fram Ã¥ senda LTC-informasjon sjølv " -"nÃ¥r transporten (spelehovudet) ikkje rører seg" - #: rc_option_editor.cc:1281 msgid "LTC generator level" msgstr "LTC-generatornivÃ¥" @@ -9254,11 +8586,6 @@ msgstr "" msgid "Regions in active edit groups are edited together" msgstr "" -#: rc_option_editor.cc:1329 -#, fuzzy -msgid "whenever they overlap in time" -msgstr "kort ned den overlappa nye noten" - #: rc_option_editor.cc:1330 msgid "only if they have identical length, position and origin" msgstr "" @@ -9606,15 +8933,6 @@ msgstr "fylgjer miksaren" msgid "follows order of editor" msgstr "fylgjer redigeringa" -#: rc_option_editor.cc:1846 rc_option_editor.cc:1854 rc_option_editor.cc:1864 -#: rc_option_editor.cc:1885 rc_option_editor.cc:1894 rc_option_editor.cc:1902 -#: rc_option_editor.cc:1916 rc_option_editor.cc:1935 rc_option_editor.cc:1951 -#: rc_option_editor.cc:1967 rc_option_editor.cc:1981 rc_option_editor.cc:1995 -#: rc_option_editor.cc:1997 -#, fuzzy -msgid "Preferences|GUI" -msgstr "Innstillingar" - #: rc_option_editor.cc:1849 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "Vis musepeikaren grafisk nÃ¥r han er over ulike smÃ¥program" @@ -9639,11 +8957,6 @@ msgstr "Miksarstripe" msgid "Use narrow strips in the mixer by default" msgstr "Bruk smale miksarstriper i miksaren som standard" -#: rc_option_editor.cc:1906 -#, fuzzy -msgid "Peak hold time" -msgstr "Hald nivÃ¥toppar" - #: rc_option_editor.cc:1912 msgid "short" msgstr "kort" @@ -9656,11 +8969,6 @@ msgstr "middels" msgid "long" msgstr "lenge" -#: rc_option_editor.cc:1920 -#, fuzzy -msgid "DPM fall-off" -msgstr "Slepp nivÃ¥toppar" - #: rc_option_editor.cc:1926 msgid "slowest [6.6dB/sec]" msgstr "" @@ -9747,11 +9055,6 @@ msgstr "" msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1985 -#, fuzzy -msgid "Peak threshold [dBFS]" -msgstr "Toppterskel" - #: rc_option_editor.cc:1993 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " @@ -10078,11 +9381,6 @@ msgstr "Vis gjeldande automasjon" msgid "Hide All Automation" msgstr "Gøym all automasjon" -#: route_time_axis.cc:405 -#, fuzzy -msgid "Processor automation" -msgstr "tøm automasjon" - #: route_time_axis.cc:424 msgid "Color..." msgstr "Farge..." @@ -10947,62 +10245,18 @@ msgstr "Lim nye markørar til takter og taktslag" msgid "Glue new regions to bars and beats" msgstr "Lim nye bolkar til takter og taktslag" -#: session_option_editor.cc:275 session_option_editor.cc:277 -#: session_option_editor.cc:284 session_option_editor.cc:291 -#: session_option_editor.cc:298 session_option_editor.cc:300 -#: session_option_editor.cc:307 session_option_editor.cc:314 -#: session_option_editor.cc:321 session_option_editor.cc:323 -#, fuzzy -msgid "Meterbridge" -msgstr "NivÃ¥mÃ¥ling" - #: session_option_editor.cc:275 msgid "Route Display" msgstr "" -#: session_option_editor.cc:279 -#, fuzzy -msgid "Show Midi Tracks" -msgstr "Vis alle midipsor" - -#: session_option_editor.cc:286 -#, fuzzy -msgid "Show Busses" -msgstr "Bussar" - -#: session_option_editor.cc:293 -#, fuzzy -msgid "Include Master Bus" -msgstr "hovudbussen" - #: session_option_editor.cc:298 msgid "Button Area" msgstr "" -#: session_option_editor.cc:302 -#, fuzzy -msgid "Rec-enable Button" -msgstr "slÃ¥ pÃ¥/av opptak" - -#: session_option_editor.cc:309 -#, fuzzy -msgid "Mute Button" -msgstr "+ museknapp" - -#: session_option_editor.cc:316 -#, fuzzy -msgid "Solo Button" -msgstr "Solo-volumauke" - #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" -#: session_option_editor.cc:325 -#, fuzzy -msgid "Track Name" -msgstr "Namn pÃ¥ spor/buss" - #: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 msgid "as new tracks" msgstr "som nytt spor" @@ -11363,15 +10617,6 @@ msgstr "Lag ei ny økt" msgid "Open an existing session" msgstr "Opna ei eksisterande økt" -#: startup.cc:74 -#, fuzzy -msgid "" -"Use an external mixer or the hardware mixer of your audio interface.\n" -"%1 will play NO role in monitoring" -msgstr "" -"Bruk ein ekstern miksar eller maskinvaremiksaren pÃ¥ lydkortet ditt.\n" -"Ardour spelar INGA rolle i lyttinga" - #: startup.cc:76 msgid "Ask %1 to play back material as it is being recorded" msgstr "Be %1 om Ã¥ spela det som blir teke opp" @@ -11380,54 +10625,6 @@ msgstr "Be %1 om Ã¥ spela det som blir teke opp" msgid "I'd like more options for this session" msgstr "Eg vil gjerne ha fleire val for denne økta" -#: startup.cc:194 -#, fuzzy -msgid "" -"Welcome to this BETA release of Ardour %1\n" -"\n" -"Ardour %1 has been released for Linux but because of the lack of testers,\n" -"it is still at the beta stage on OS X. So, a few guidelines:\n" -"\n" -"1) Please do NOT use this software with the expectation that it is " -"stable or reliable\n" -" though it may be so, depending on your workflow.\n" -"2) Please do NOT use the forums at ardour.org to report issues.\n" -"3) Please DO use the bugtracker at http://tracker.ardour.org/ to " -"report issues\n" -" making sure to note the product version number as %1-beta.\n" -"4) Please DO use the ardour-users mailing list to discuss ideas and " -"pass on comments.\n" -"5) Please DO join us on IRC for real time discussions about ardour3. " -"You\n" -" can get there directly from Ardour via the Help->Chat menu option.\n" -"\n" -"Full information on all the above can be found on the support page at\n" -"\n" -" http://ardour.org/support\n" -msgstr "" -"Velkomen til denne BETA-utgÃ¥va av Ardour 3.0\n" -"\n" -"Det er framleis att mange feil Ã¥ jobba pÃ¥,\n" -"til liks med mange utbetringar, før dette kan kallast ferdig programvare.\n" -"Difor mÃ¥ du fÃ¥ eit par retningsliner:\n" -"\n" -"1) Ver god Ã¥ IKKJE bruka dette programmet til kritisk produksjon, " -"sjølv om\n" -" programmet kan køyra stabilt.\n" -"2) Les http://ardour.org/a3_features for Ã¥ læra om nye eigenskapar.\n" -"3) IKKJE bruk foruma pÃ¥ ardour.org for Ã¥ rapportera feil.\n" -"4) I staden, HUGS Ã¥ bruka avlusaren pÃ¥ http://tracker.ardour.org/ for " -"Ã¥ rapportera feil,\n" -" og bruk versjonsnummeret 3.0-beta.\n" -"5) HUGS Ã¥ bruka ardour-users-epostlista for Ã¥ utveksla idear og " -"røynsler.\n" -"6) Ver snill Ã¥ BLI MED pÃ¥ IRC for Ã¥ diskutera ardour3 i sanntid.\n" -" Du kan koma direkte dit via Hjelp->Prat-menyvalet.\n" -"\n" -"Meir informasjon om alt dette finn du pÃ¥ brukarhjelpsida pÃ¥\n" -"\n" -" http://ardour.org/support\n" - #: startup.cc:218 msgid "This is a BETA RELEASE" msgstr "Dette er ei BETA-utgÃ¥ve" @@ -12029,11 +11226,6 @@ msgstr "Skru pÃ¥ akkordskriving" msgid "Sustain Selected Notes by Note Length" msgstr "Hald desse notane i notelengda" -#: stereo_panner.cc:108 -#, fuzzy, c-format -msgid "L:%3d R:%3d Width:%d%%" -msgstr "H:%1 V:%2 Breidd: %3%%" - #: stereo_panner_editor.cc:35 msgid "Stereo Panner" msgstr "Stereopanorering" @@ -12333,16 +11525,6 @@ msgstr "Fekk unntak nÃ¥r me lasta ikonet %1" msgid "VerboseCanvasCursor" msgstr "VerboseCanvasCursor" -#: add_video_dialog.cc:55 -#, fuzzy -msgid "Set Video Track" -msgstr "Legg til lydspor" - -#: add_video_dialog.cc:63 -#, fuzzy -msgid "Launch External Video Monitor" -msgstr "Lytting" - #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -12355,26 +11537,6 @@ msgstr "" msgid "VideoServerIndex" msgstr "" -#: add_video_dialog.cc:129 -#, fuzzy -msgid "Video files" -msgstr "Lydfiler" - -#: add_video_dialog.cc:164 -#, fuzzy -msgid "Video Information" -msgstr "Lydfilinformasjon" - -#: add_video_dialog.cc:167 -#, fuzzy -msgid "Start:" -msgstr "Start" - -#: add_video_dialog.cc:173 -#, fuzzy -msgid "Frame rate:" -msgstr "Punktfrekvens:" - #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -12383,11 +11545,6 @@ msgstr "" msgid " %1 fps" msgstr "" -#: editor_videotimeline.cc:146 -#, fuzzy -msgid "Export Successful: %1" -msgstr "Eksporter MIDI: %1" - #: video_timeline.cc:469 msgid "" "Parsing video file info failed. Is the Video Server running? Is the file " @@ -12421,11 +11578,6 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" -#: video_monitor.cc:281 -#, fuzzy -msgid "Video Monitor: File Not Found." -msgstr "Lytting" - #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -12442,25 +11594,10 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:56 -#, fuzzy -msgid "Transcode/Import Video File " -msgstr "Eksporter økta til lydfil(er)..." - -#: transcode_video_dialog.cc:58 -#, fuzzy -msgid "Output File:" -msgstr "Uteining:" - #: transcode_video_dialog.cc:61 export_video_dialog.cc:73 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:63 -#, fuzzy -msgid "Height = " -msgstr "Høgd" - #: transcode_video_dialog.cc:66 msgid "Manual Override" msgstr "" @@ -12469,11 +11606,6 @@ msgstr "" msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:107 -#, fuzzy -msgid "File Information" -msgstr "Lydfilinformasjon" - #: transcode_video_dialog.cc:113 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " @@ -12491,11 +11623,6 @@ msgstr "" msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:136 -#, fuzzy -msgid "Duration:" -msgstr "Lengd" - #: transcode_video_dialog.cc:138 msgid "Codec:" msgstr "" @@ -12504,16 +11631,6 @@ msgstr "" msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:155 -#, fuzzy -msgid "??" -msgstr "???" - -#: transcode_video_dialog.cc:176 -#, fuzzy -msgid "Import Settings" -msgstr "Val" - #: transcode_video_dialog.cc:181 msgid "Do Not Import Video" msgstr "" @@ -12522,34 +11639,14 @@ msgstr "" msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:184 -#, fuzzy -msgid "Import/Transcode Video to Session" -msgstr "Importer frÃ¥ økt" - #: transcode_video_dialog.cc:198 msgid "Scale Video: Width = " msgstr "" -#: transcode_video_dialog.cc:205 -#, fuzzy -msgid "Original Width" -msgstr "Opphaveleg posisjon" - #: transcode_video_dialog.cc:220 msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:225 -#, fuzzy -msgid "Extract Audio:" -msgstr "Eksporter lyd" - -#: transcode_video_dialog.cc:345 -#, fuzzy -msgid "Extracting Audio.." -msgstr "Eksporter lyd" - #: transcode_video_dialog.cc:348 msgid "Audio Extraction Failed." msgstr "" @@ -12558,16 +11655,6 @@ msgstr "" msgid "Transcoding Video.." msgstr "" -#: transcode_video_dialog.cc:408 -#, fuzzy -msgid "Transcoding Failed." -msgstr "Omsetjingar skrudde pÃ¥" - -#: transcode_video_dialog.cc:491 -#, fuzzy -msgid "Save Transcoded Video File" -msgstr "Eksporter økta til lydfil(er)..." - #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -12576,11 +11663,6 @@ msgstr "" msgid "Server Executable:" msgstr "" -#: video_server_dialog.cc:46 -#, fuzzy -msgid "Server Docroot:" -msgstr "Tenar:" - #: video_server_dialog.cc:52 msgid "Don't show this dialog again. (Reset in Edit->Preferences)." msgstr "" @@ -12596,16 +11678,6 @@ msgstr "" msgid "Listen Address:" msgstr "" -#: video_server_dialog.cc:125 -#, fuzzy -msgid "Listen Port:" -msgstr "Lytteposisjon" - -#: video_server_dialog.cc:130 -#, fuzzy -msgid "Cache Size:" -msgstr "Største storleik" - #: video_server_dialog.cc:136 msgid "" "%1 relies on an external Video Server for the videotimeline.\n" @@ -12635,31 +11707,6 @@ msgstr "" msgid "Continue" msgstr "" -#: utils_videotl.cc:63 -#, fuzzy -msgid "Confirm Overwrite" -msgstr "Stadfest at du vil skriva over snøggbilete" - -#: utils_videotl.cc:64 -#, fuzzy -msgid "A file with the same name already exists. Do you want to overwrite it?" -msgstr "Dette snøggbiletet finst frÃ¥ før. Vil du skriva over det?" - -#: utils_videotl.cc:74 utils_videotl.cc:90 -#, fuzzy -msgid "Cannot create video folder \"%1\" (%2)" -msgstr "greier ikkje laga ardourmappa %1 (%2)" - -#: export_video_dialog.cc:66 -#, fuzzy -msgid "Export Video File " -msgstr "Eksporter økta til lydfil(er)..." - -#: export_video_dialog.cc:70 -#, fuzzy -msgid "Video:" -msgstr "Mike Start" - #: export_video_dialog.cc:74 msgid "Scale Video (W x H):" msgstr "" @@ -12668,11 +11715,6 @@ msgstr "" msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:80 -#, fuzzy -msgid "Normalize Audio" -msgstr "Normaliser til:" - #: export_video_dialog.cc:81 msgid "2 Pass Encoding" msgstr "" @@ -12681,11 +11723,6 @@ msgstr "" msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:84 -#, fuzzy -msgid "Deinterlace" -msgstr "Spelehovudet i midten" - #: export_video_dialog.cc:85 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" @@ -12694,11 +11731,6 @@ msgstr "" msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:87 -#, fuzzy -msgid "Include Session Metadata" -msgstr "Endra metadata for økta" - #: export_video_dialog.cc:107 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " @@ -12706,26 +11738,6 @@ msgid "" "information." msgstr "" -#: export_video_dialog.cc:117 -#, fuzzy -msgid "Output:" -msgstr "Utgangar" - -#: export_video_dialog.cc:127 -#, fuzzy -msgid "Input:" -msgstr "Ingangar" - -#: export_video_dialog.cc:138 -#, fuzzy -msgid "Audio:" -msgstr "Lyd" - -#: export_video_dialog.cc:140 -#, fuzzy -msgid "Master Bus" -msgstr "hovudbussen" - #: export_video_dialog.cc:145 msgid "from the %1 session's start to the session's end" msgstr "" @@ -12738,61 +11750,6 @@ msgstr "" msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:184 -#, fuzzy -msgid "Settings:" -msgstr "MÃ¥l" - -#: export_video_dialog.cc:192 -#, fuzzy -msgid "Range:" -msgstr "OmrÃ¥de" - -#: export_video_dialog.cc:195 -#, fuzzy -msgid "Preset:" -msgstr "Ferdigoppsett" - -#: export_video_dialog.cc:198 -#, fuzzy -msgid "Video Codec:" -msgstr "Mappe:" - -#: export_video_dialog.cc:201 -#, fuzzy -msgid "Video KBit/s:" -msgstr "Mike Start" - -#: export_video_dialog.cc:204 -#, fuzzy -msgid "Audio Codec:" -msgstr "Lydmodus:" - -#: export_video_dialog.cc:207 -#, fuzzy -msgid "Audio KBit/s:" -msgstr "Lydfiler" - -#: export_video_dialog.cc:210 -#, fuzzy -msgid "Audio Samplerate:" -msgstr "Punktfrekvens:" - -#: export_video_dialog.cc:387 -#, fuzzy -msgid "Normalizing audio" -msgstr "Normaliser verdiar" - -#: export_video_dialog.cc:391 -#, fuzzy -msgid "Exporting audio" -msgstr "Eksporter lyd" - -#: export_video_dialog.cc:437 -#, fuzzy -msgid "Exporting Audio..." -msgstr "Eksporter lyd" - #: export_video_dialog.cc:494 msgid "" "Export Video: Cannot query duration of video-file, using duration from " @@ -12803,11 +11760,6 @@ msgstr "" msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" -#: export_video_dialog.cc:562 -#, fuzzy -msgid "Encoding Video..." -msgstr "Omsetjingar skrudde pÃ¥" - #: export_video_dialog.cc:581 msgid "Export Video: Video input file cannot be read." msgstr "" @@ -12820,21 +11772,6 @@ msgstr "" msgid "Encoding Video.. Pass 2/2" msgstr "" -#: export_video_dialog.cc:779 -#, fuzzy -msgid "Transcoding failed." -msgstr "Omsetjingar skrudde pÃ¥" - -#: export_video_dialog.cc:948 export_video_dialog.cc:968 -#, fuzzy -msgid "Save Exported Video File" -msgstr "Eksporter økta til lydfil(er)..." - -#: export_video_infobox.cc:30 -#, fuzzy -msgid "Video Export Info" -msgstr "Lytting" - #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -12851,2040 +11788,3 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" - -#~ msgid "-Inf" -#~ msgstr "-ê" - -#~ msgid "slowest" -#~ msgstr "saktast" - -#~ msgid "slow" -#~ msgstr "sakte" - -#~ msgid "fast" -#~ msgstr "snøgt" - -#~ msgid "faster" -#~ msgstr "snøggare" - -#~ msgid "fastest" -#~ msgstr "snøggast" - -#~ msgid "found %1 match" -#~ msgid_plural "found %1 matches" -#~ msgstr[0] "Fann %1 treff" -#~ msgstr[1] "uFann %1 treff" - -#~ msgid "Search returned no results." -#~ msgstr "Søket gav ingen resultat." - -#~ msgid "Found %1 match" -#~ msgid_plural "Found %1 matches" -#~ msgstr[0] "Fann %1 treff" -#~ msgstr[1] "Fann %1 treff" - -#~ msgid "What would you like to do ?" -#~ msgstr "Kva vil du gjera?" - -#~ msgid "Connect" -#~ msgstr "Kopla til" - -#~ msgid "Mixer on Top" -#~ msgstr "Miksar pÃ¥ toppen" - -#~ msgid "Add Audio Track" -#~ msgstr "Legg til lydspor" - -#~ msgid "Add Audio Bus" -#~ msgstr "Legg til lydbuss" - -#~ msgid "Add MIDI Track" -#~ msgstr "Legg til MIDI-spor" - -#~ msgid "Control surfaces" -#~ msgstr "Kontrollflater" - -#, fuzzy -#~ msgid "Use plugins' own interfaces instead of %1's" -#~ msgstr "" -#~ "Vis brukarflata som høyrer til utvidinga i staden for Ardour si flate" - -#~ msgid "Hid" -#~ msgstr "Gøym" - -#~ msgid "Searching Page %1 of %2, click Stop to cancel" -#~ msgstr "Søkjer gjennom side %1 av %2, klikk Stopp for Ã¥ avbryta" - -#~ msgid "Searching, click Stop to cancel" -#~ msgstr "Søkjer, klikk Stopp for Ã¥ avbryta" - -#~ msgid "Translations disabled" -#~ msgstr "Omsetjingar skrudde av" - -#~ msgid "You must restart %1 for this to take effect." -#~ msgstr "Du mÃ¥ starta %1 pÃ¥ nytt for at dette skal verka." - -#~ msgid "Enable Translations" -#~ msgstr "Skru pÃ¥ omsetjingar" - -#~ msgid "Locate to Range Mark" -#~ msgstr "GÃ¥ til omrÃ¥demerke" - -#~ msgid "Play from Range Mark" -#~ msgstr "Spel frÃ¥ omrÃ¥demerket" - -#~ msgid "Playback/Recording on 1 Device" -#~ msgstr "Avspeling/opptak pÃ¥ 1 eining" - -#~ msgid "Playback/Recording on 2 Devices" -#~ msgstr "Avspeling/opptak pÃ¥ 2 einingar" - -#~ msgid "Bank:" -#~ msgstr "Bank:" - -#~ msgid "Program:" -#~ msgstr "Program:" - -#~ msgid "Channel:" -#~ msgstr "Kanal:" - -#~ msgid "Lck" -#~ msgstr "LÃ¥s" - -#~ msgid "Use overlap equivalency for regions" -#~ msgstr "Bruk overlapp-likskap for bolkar" - -#~ msgid "" -#~ "When extending region selection across a group, %1 must decide which " -#~ "regions are equivalent\n" -#~ "\n" -#~ "If enabled, regions are considered \"equivalent\" if they overlap on the " -#~ "timeline.\n" -#~ "\n" -#~ "If disabled, regions are considered \"equivalent\" only if have the same " -#~ "start time, length and position" -#~ msgstr "" -#~ "NÃ¥r du utvidar eit bolkval over ei gruppe, mÃ¥, %1 avgjera kva bolkar som " -#~ "er samsvarande\n" -#~ "\n" -#~ "Viss dette er pÃ¥, blir bolkane sett som «samsvarande» viss dei overlappar " -#~ "pÃ¥ tidslinja.\n" -#~ "\n" -#~ "Viss dette er av, blir bolkane sett som «samsvarande» berre viss dei har " -#~ "same starttid, lengd og plassering." - -#~ msgid "Use a monitor bus (allows AFL/PFL and more control)" -#~ msgstr "Bruk ein lyttebuss (gjev etter-/førlytting og meir kontroll)" - -#~ msgid "Subframes per frame" -#~ msgstr "Underrammer per ramme" - -#~ msgid "80" -#~ msgstr "80" - -#~ msgid "100" -#~ msgstr "100" - -#~ msgid "gTortnam" -#~ msgstr "gTortnam" - -#~ msgid "" -#~ "The following %1 files were not in use and \n" -#~ "have been moved to: %2\n" -#~ "\n" -#~ "After a restart of %5\n" -#~ "\n" -#~ "Session -> Clean-up -> Flush Wastebasket\n" -#~ "\n" -#~ "will release an additional %3 %4bytes of disk space.\n" -#~ msgstr "" -#~ "Desse %1 filene var ikkje i bruk, \n" -#~ "og er flytte til: %2. \n" -#~ "\n" -#~ "Om du startar %5 pÃ¥ nytt og vel\n" -#~ "\n" -#~ "Økt -> Opprydding -> Tøm søppelbøtta\n" -#~ "\n" -#~ "frigjer du %3 %4byte lagringsplass.\n" - -#~ msgid "" -#~ "The following %1 files were deleted from %2,\n" -#~ "releasing %3 %4bytes of disk space" -#~ msgstr "" -#~ "Desse %1 filene vart sletta frÃ¥%2,\n" -#~ "og frigjorde %3 %4byte lagringsplass" - -#~ msgid "ConstantPower" -#~ msgstr "Konstantkraft" - -#~ msgid "could not create a new mixed track" -#~ msgstr "greidde ikkje laga nytt miksa spor" - -#~ msgid "could only create %1 of %2 new audio %3" -#~ msgstr "greidde berre laga %1 av %2 nye lyd%3" - -#~ msgid "could not create a new audio bus" -#~ msgstr "greidde ikkje laga ny lydbuss" - -#~ msgid "Found one match." -#~ msgstr "Fann eitt treff." - -#~ msgid "editing|E" -#~ msgstr "redigering|E" - -#~ msgid "Sharing Editing?" -#~ msgstr "Deler redigering?" - -#~ msgid "Editing" -#~ msgstr "Redigering" - -#~ msgid "" -#~ "Russian:\n" -#~ "\t Igor Blinov \n" -#~ msgstr "" -#~ "Russisk:\n" -#~ "\t Igor Blinov \n" - -#~ msgid "Add MIDI Controller Track" -#~ msgstr "Legg til MIDI-kontrollspor" - -#~ msgid "" -#~ "pre\n" -#~ "roll" -#~ msgstr "" -#~ "før-\n" -#~ "rull" - -#~ msgid "" -#~ "post\n" -#~ "roll" -#~ msgstr "" -#~ "etter-\n" -#~ "rull" - -#~ msgid "" -#~ "time\n" -#~ "master" -#~ msgstr "" -#~ "hovud-\n" -#~ "klokke" - -#~ msgid "AUDITION" -#~ msgstr "LYTTING" - -#~ msgid "SOLO" -#~ msgstr "SOLO" - -#~ msgid "%1 could not start JACK" -#~ msgstr "%1 greidde ikkje starta JACK" - -#~ msgid "" -#~ "There are several possible reasons:\n" -#~ "\n" -#~ "1) You requested audio parameters that are not supported..\n" -#~ "2) JACK is running as another user.\n" -#~ "\n" -#~ "Please consider the possibilities, and perhaps try different parameters." -#~ msgstr "" -#~ "Det kan vera fleire grunnar til dette:\n" -#~ "\n" -#~ "1) Du har oppgjeve lydparametrar som ikkje er støtta.\n" -#~ "2) JACK køyrer som ein annan brukar.\n" -#~ "\n" -#~ "SjÃ¥ over kva det kan vera, og prøv eventuelt andre parametrar." - -#~ msgid "%.1f kHz / %4.1f ms" -#~ msgstr "%.1f kHz / %4.1f millisek" - -#~ msgid "% kHz / %4.1f ms" -#~ msgstr "% kHz / %4.1f ms" - -#~ msgid "DSP: %5.1f%%" -#~ msgstr "Prosessorlast: %.1f%%" - -#~ msgid "Buffers p:%%% c:%%%" -#~ msgstr "Bufrar spel:%%% opptak:%%%" - -#~ msgid "Disk: 24hrs+" -#~ msgstr "Diskplass: >24t" - -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "snapshot names may not contain a '\\' character" -#~ msgstr "" -#~ "For Ã¥ tryggja kompatibiliteten med ymse system,\n" -#~ "kan ikkje namn pÃ¥ snøggbilete innehalda teiknet '\\'" - -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "session names may not contain a '\\' character" -#~ msgstr "" -#~ "For Ã¥ tryggja kompatibiliteten med ymse system,\n" -#~ "kan ikkje namn pÃ¥ økter innehalda teiknet '\\'" - -#~ msgid "Sorry, MIDI Busses are not supported at this time." -#~ msgstr "Orsak, MIDI-bussar er ikkje støtta no." - -#~ msgid "Always play range/selection" -#~ msgstr "Spel alltid omrÃ¥de/utval" - -#~ msgid "Start playback after any locate" -#~ msgstr "Spel av etter eitkvart merke" - -#~ msgid "Does %1 control the time?" -#~ msgstr "Kontrollerer %1 klokka?" - -#~ msgid "Toolbars when Maximised" -#~ msgstr "Verktøylinjer nÃ¥r mest plass" - -#~ msgid "EXT" -#~ msgstr "EKST" - -#~ msgid "FPS" -#~ msgstr "rammer/s" - -#~ msgid " " -#~ msgstr " " - -#~ msgid "Show All Crossfades" -#~ msgstr "Vis alle krysstoningar" - -#~ msgid "Edit Crossfade" -#~ msgstr "Endra krysstoning" - -#~ msgid "Out (dry)" -#~ msgstr "Ut (tørr)" - -#~ msgid "In (dry)" -#~ msgstr "In (tørr)" - -#~ msgid "With Pre-roll" -#~ msgstr "Med før-rull" - -#~ msgid "With Post-roll" -#~ msgstr "Med etter-rull" - -#~ msgid "Edit crossfade" -#~ msgstr "Endra krysstoning" - -#~ msgid "automation" -#~ msgstr "automasjon" - -#~ msgid "Route Groups" -#~ msgstr "Rut grupper" - -#~ msgid "Convert to Short" -#~ msgstr "Gjer om til kort" - -#~ msgid "Convert to Full" -#~ msgstr "Gjer om til heil" - -#~ msgid "Crossfade" -#~ msgstr "Krysstoning" - -#~ msgid "Nudge Entire Track Backward" -#~ msgstr "Skubb heile sporet bakover" - -#~ msgid "Nudge Track After Edit Point Backward" -#~ msgstr "Skubb sporet etter redigeringspunktet bakover" - -#~ msgid "Select/Move Objects or Ranges" -#~ msgstr "Vel/flytt objekt eller omrÃ¥de" - -#~ msgid "Edit Region Contents (e.g. notes)" -#~ msgstr "Endra bolkinnhald (td. notar)" - -#~ msgid "Nudge Region/Selection Backwards" -#~ msgstr "Skubb bolken/markeringa bakover" - -#~ msgid "Undo" -#~ msgstr "Angre" - -#~ msgid "Jump Forward to Mark" -#~ msgstr "Hopp fram til merket" - -#~ msgid "Jump Backward to Mark" -#~ msgstr "Hopp bakover til merket" - -#~ msgid "Nudge Next Backward" -#~ msgstr "Skubb neste bakover" - -#~ msgid "Forward to Grid" -#~ msgstr "Fram til rutenett" - -#~ msgid "Backward to Grid" -#~ msgstr "Bakover til rutenett" - -#~ msgid "Move Backwards to Transient" -#~ msgstr "Flytt bakover til signaltopp" - -#~ msgid "Link Object / Range Tools" -#~ msgstr "Lenkjeobjekt- og omrÃ¥deverkty" - -#~ msgid "Delete Unused" -#~ msgstr "Slett ubrukte" - -#~ msgid "Add Range Marker(s)" -#~ msgstr "Legg til omrÃ¥demarkørar" - -#~ msgid "Envelope Visible" -#~ msgstr "Omhylling synleg" - -#~ msgid "Fork" -#~ msgstr "Del opp" - -#~ msgid "Nudge Backward by Capture Offset" -#~ msgstr "Skubb bakover etter innspelingsforskuvinga" - -#~ msgid "Rel" -#~ msgstr "Rel" - -#~ msgid "Sel" -#~ msgstr "Vel" - -#, fuzzy -#~ msgid "E" -#~ msgstr "F" - -#~ msgid "" -#~ "This route cannot be frozen because it has more outputs than inputs. You " -#~ "can fix this by increasing the number of inputs." -#~ msgstr "" -#~ "Du kan ikkje frysa denne ruta, av di ho har fleire utgangar enn " -#~ "inngangar. Du kan ordna dette ved Ã¥ auka talet inngangar." - -#~ msgid "region gain envelope visible" -#~ msgstr "bolkomhyllinga synleg" - -#~ msgid "time stretch" -#~ msgstr "strekk tid" - -#~ msgid "Realtime Priority" -#~ msgstr "Sanntidsprioritet" - -#~ msgid "Input channels:" -#~ msgstr "Innkanalar:" - -#~ msgid "Output channels:" -#~ msgstr "Utkanalar:" - -#~ msgid "Advanced options" -#~ msgstr "Avanserte innstillingar" - -#~ msgid "Include in Filename(s):" -#~ msgstr "Ta med i filnamn:" - -#~ msgid "New From" -#~ msgstr "Ny frÃ¥" - -#~ msgid "Move tempo and meter changes" -#~ msgstr "Flytt tempo- og taktartsendringar" - -#~ msgid "Option-" -#~ msgstr "Val-" - -#~ msgid "Shift-" -#~ msgstr "Shift-" - -#~ msgid "Control-" -#~ msgstr "Control-" - -#~ msgid "SCMS" -#~ msgstr "SCMS" - -#~ msgid "Set value to playhead" -#~ msgstr "Set verdien til spelehovudet" - -#~ msgid "Jump to the end of this range" -#~ msgstr "Hopp til slutten av dette utvalet" - -#~ msgid "Jump to the start of this range" -#~ msgstr "Hopp til starten pÃ¥ dette utvalet" - -#~ msgid "End time" -#~ msgstr "Sluttid" - -#~ msgid "Could not create user configuration directory" -#~ msgstr "Greidde ikkje laga brukaroppsettmappe" - -#~ msgid "MIDI Thru" -#~ msgstr "MIDI gjennom" - -#~ msgid "Store this many lines: " -#~ msgstr "Lagra sÃ¥ mange liner:" - -#~ msgid "" -#~ "Button 1 to choose inputs from a port matrix, button 3 to select inputs " -#~ "from a menu" -#~ msgstr "" -#~ "Knapp 1 vel inngangar frÃ¥ ei portmatrise, knapp 3 vel inngangar frÃ¥ ein " -#~ "meny" - -#~ msgid "" -#~ "Button 1 to choose outputs from a port matrix, button 3 to select inputs " -#~ "from a menu" -#~ msgstr "" -#~ "Knapp 1 vel utgangar frÃ¥ ei portmatrise, knapp 3 vel inngangar frÃ¥ ein " -#~ "meny" - -#~ msgid "signal" -#~ msgstr "signal" - -#~ msgid "MUTE" -#~ msgstr "DEMP" - -#~ msgid "Exclusive" -#~ msgstr "Eksklusiv" - -#~ msgid "Solo/Mute" -#~ msgstr "Solo/demp" - -#~ msgid "close" -#~ msgstr "lukk" - -#~ msgid "New send" -#~ msgstr "Ny send" - -#~ msgid "New Send ..." -#~ msgstr "Ny send..." - -#~ msgid "Activate all" -#~ msgstr "SlÃ¥ pÃ¥ alle" - -#~ msgid "Controls..." -#~ msgstr "Kontrollar..." - -#~ msgid "Legato" -#~ msgstr "Legato" - -#~ msgid "Groove" -#~ msgstr "Flyt" - -#~ msgid "Quantize Type" -#~ msgstr "Type gitterfordeling" - -#~ msgid "Use narrow mixer strips" -#~ msgstr "Bruk smale miksarstriper" - -#~ msgid "Secondary clock delta to edit cursor" -#~ msgstr "Sekundærklokke-delta til redigeringspunktet" - -#~ msgid "post-fader but before post-fader processors" -#~ msgstr "etter-volum, men før etter-volum-signalhandsaming" - -#~ msgid "Disable plugins during recording" -#~ msgstr "Skru av utvidingar under opptak" - -#~ msgid "Route active state" -#~ msgstr "Status for aktiv ruting" - -#~ msgid "r" -#~ msgstr "t" - -#~ msgid "" -#~ "Left-click to invert (phase reverse) all channels of this track. Right-" -#~ "click to show menu." -#~ msgstr "" -#~ "Venstreklikk for Ã¥ fasevenda alle kanalane pÃ¥ dette sporet. Høgreklikk " -#~ "for Ã¥ sjÃ¥ menyen." - -#~ msgid "Timecode source shares sample clock with audio interface" -#~ msgstr "Tidskodekjelda deler punktklokke med lydkortet" - -#~ msgid "Timecode Offset Negative" -#~ msgstr "Tidskodeavviket er negativt" - -#~ msgid "Crossfades are created" -#~ msgstr "Krysstoningane blir laga" - -#~ msgid "to span entire overlap" -#~ msgstr "for Ã¥ dekka heile overlappinga" - -#~ msgid "short-xfade-seconds" -#~ msgstr "kort-krysston-sekund" - -#~ msgid "Short crossfade length" -#~ msgstr "Kort overtoningslengd" - -#~ msgid "Create crossfades automatically" -#~ msgstr "Lag krysstoningar automatisk" - -#~ msgid "Crossfades active" -#~ msgstr "Krysstoningar pÃ¥" - -#~ msgid "Layering (in overlaid mode)" -#~ msgstr "Lagdeling (i overlappa modus)" - -#~ msgid "Layering model" -#~ msgstr "Lagmodell" - -#~ msgid "later is higher" -#~ msgstr "seinare ligg over" - -#~ msgid "most recently moved or added is higher" -#~ msgstr "det du flytte eller la til sist, ligg øvst" - -#~ msgid "most recently added is higher" -#~ msgstr "det du la til sist, ligg øvst" - -#~ msgid "MIDI Note Overlaps" -#~ msgstr "MIDI-noteoverlappingar" - -#~ msgid "Broadcast WAVE metadata" -#~ msgstr "Metadata for kringkast-WAVE" - -#~ msgid "Password:" -#~ msgstr "Passord:" - -#~ msgid "Cancelling.." -#~ msgstr "Avbryt..." - -#~ msgid "Add files:" -#~ msgstr "Legg til filer:" - -#~ msgid "Mapping:" -#~ msgstr "Avbilding:" - -#~ msgid "" -#~ "(You can change this preference at any time, via the " -#~ "Preferences dialog)" -#~ msgstr "" -#~ "(Du kan gÃ¥ til Innstillingar nÃ¥r som helst for Ã¥ endra dette)" - -#~ msgid "second (2)" -#~ msgstr "halv (2)" - -#~ msgid "eighth (8)" -#~ msgstr "Ã¥ttendel (8)" - -#~ msgid "garbaged note type entry (%1)" -#~ msgstr "skrap-notetypeverdi (%1)" - -#~ msgid "Strict Linear" -#~ msgstr "Heilt rettlinja" - -#~ msgid "no style found for %1, using red" -#~ msgstr "fann ingen stil for %1, bruker raud" - -#~ msgid "unknown style attribute %1 requested for color; using \"red\"" -#~ msgstr "spurde etter ukjend stileigenskap %1 for farga; bruker \"raud\"" - -#~ msgid "Aux" -#~ msgstr "Aux" - -#~ msgid "Direct" -#~ msgstr "Direkte" - -#~ msgid "Bus type:" -#~ msgstr "Busstype:" - -#~ msgid "quit" -#~ msgstr "avslutt" - -#~ msgid "session" -#~ msgstr "økt" - -#~ msgid "snapshot" -#~ msgstr "snøggbilete" - -#~ msgid "Save Mix Template" -#~ msgstr "Lagra miksarmal" - -#~ msgid "" -#~ "Welcome to %1.\n" -#~ "\n" -#~ "The program will take a bit longer to start up\n" -#~ "while the system fonts are checked.\n" -#~ "\n" -#~ "This will only be done once, and you will\n" -#~ "not see this message again\n" -#~ msgstr "" -#~ "Velkomen til %1.\n" -#~ "\n" -#~ "Programmet bruker litt lenger tid pÃ¥ opp-\n" -#~ "starten medan me ser etter skrifttypar.\n" -#~ "\n" -#~ "Dette skjer berre ein gong, og du ser\n" -#~ "aldri denne meldinga att.\n" - -#~ msgid "Clean Up" -#~ msgstr "Rydd opp" - -#~ msgid "Select semitones or %%-age for speed display" -#~ msgstr "Vel halvtonar eller %% for fartsvising" - -#~ msgid "Current transport speed" -#~ msgstr "Avspelingsfart no:" - -#~ msgid "stop" -#~ msgstr "stopp" - -#~ msgid "-0.55" -#~ msgstr "-0.55" - -#~ msgid "Cleanup" -#~ msgstr "Opprydding" - -#~ msgid "Off" -#~ msgstr "Av" - -#~ msgid "99:99" -#~ msgstr "99:99" - -#~ msgid "9999h:999999m:99999999s" -#~ msgstr "9999t:999999m:99999999s" - -#~ msgid "DSP: 100%" -#~ msgstr "DSP: 100%" - -#~ msgid "Buffers p:100% c:100%" -#~ msgstr "Bufrar: s:100% o:100%" - -#~ msgid "External" -#~ msgstr "Ekstern" - -#~ msgid "ST" -#~ msgstr "½tone" - -#~ msgid "Extend Range to End of Region" -#~ msgstr "Utvid omrÃ¥det til slutten av bolken" - -#~ msgid "Extend Range to Start of Region" -#~ msgstr "Utvid omrÃ¥det til starten av bolken" - -#~ msgid "Key Mouse" -#~ msgstr "Tastemus" - -#~ msgid "goto" -#~ msgstr "gÃ¥ til" - -#~ msgid "Center Active Marker" -#~ msgstr "Aktiv markør i midten" - -#~ msgid "Brush at Mouse" -#~ msgstr "Børst ved musepeikaren" - -#~ msgid "Smaller" -#~ msgstr "Mindre" - -#~ msgid "Bounce" -#~ msgstr "Miks ned" - -#~ msgid "insert file" -#~ msgstr "set inn fil" - -#~ msgid "fixed time region copy" -#~ msgstr "fast tid-bolkkopi" - -#~ msgid "region copy" -#~ msgstr "bolkkopi" - -#~ msgid "region drag" -#~ msgstr "bolkdraging" - -#~ msgid "timestretch" -#~ msgstr "strekk tid" - -#~ msgid "" -#~ "One or more of the selected regions' tracks cannot be bounced because it " -#~ "has more outputs than inputs. You can fix this by increasing the number " -#~ "of inputs on that track." -#~ msgstr "" -#~ "Greidde ikkje miksa ned spora i den valde bolken fordi dei har fleire " -#~ "utgangar enn inngangar. Du kan ordna dette ved Ã¥ auka talet pÃ¥ inngangar " -#~ "pÃ¥ det sporet." - -#~ msgid "Drag region brush" -#~ msgstr "Dra bolk-penselen" - -#~ msgid "selection grab" -#~ msgstr "ta tak i utval" - -#~ msgid "extend selection" -#~ msgstr "utvid markeringa" - -#~ msgid "region fill" -#~ msgstr "bolkfylling" - -#~ msgid "fill selection" -#~ msgstr "fyll markeringa" - -#~ msgid "" -#~ "One or more selected tracks cannot be bounced because it has more outputs " -#~ "than inputs. You can fix this by increasing the number of inputs on that " -#~ "track." -#~ msgstr "" -#~ "Av di eitt eller fleire spor inneheld fleire utgangar enn inngangar, er " -#~ "det ikkje rÃ¥d Ã¥ miksa dei ned. Du kan ordna dette ved Ã¥ auka talet " -#~ "inngangar." - -#~ msgid "duplicate region" -#~ msgstr "klon bolken" - -#~ msgid "Clear tempo" -#~ msgstr "Fjern tempo" - -#~ msgid "Clear meter" -#~ msgstr "Fjern taktart" - -#~ msgid "No devices found for driver \"%1\"" -#~ msgstr "Fann ingen einingar for drivaren \"%1\"" - -#~ msgid "Processing file %2 of %3 (%1) from timespan %4 of %5" -#~ msgstr "Handterer fil %2 av %3 (%1) frÃ¥ tidsomfang %4 av %5" - -#~ msgid "Encoding file %2 of %3 (%1) from timespan %4 of %5" -#~ msgstr "Kodar om fil %2 av %3 (%1) frÃ¥ tidsomfang %4 av %5" - -#~ msgid "Default Channel" -#~ msgstr "Standardkanal" - -#~ msgid "input" -#~ msgstr "inngang" - -#~ msgid "Dim Cut" -#~ msgstr "Dimkutt" - -#~ msgid "C" -#~ msgstr "C" - -#~ msgid "link" -#~ msgstr "lenk" - -#~ msgid "panning link control" -#~ msgstr "kontroll for pan-lenking" - -#~ msgid "panning link direction" -#~ msgstr "retning for pan-lenking" - -#~ msgid "panner for channel %zu" -#~ msgstr "panorering for kanal %zu" - -#~ msgid "Reset all" -#~ msgstr "Nullstill alle" - -#~ msgid "Inserts, sends & plugins:" -#~ msgstr "Innstikk, send og utvidingar:" - -#~ msgid "Set tempo map" -#~ msgstr "Set tempokart" - -#~ msgid "A track already exists with that name" -#~ msgstr "Det finst alt eit spor med det namnet" - -#~ msgid "layer-display" -#~ msgstr "lagvising" - -#~ msgid "Step Edit" -#~ msgstr "Stegredigering" - -#~ msgid "" -#~ "Do you really want to remove bus \"%1\" ?\n" -#~ "\n" -#~ "You may also lose the playlist used by this track.\n" -#~ "\n" -#~ "(This action cannot be undone, and the session file will be overwritten)" -#~ msgstr "" -#~ "Vil du verkeleg sletta bussen \"%1\"?\n" -#~ "\n" -#~ "Det kan hende du mistar spelelister for dette sporet òg.\n" -#~ "\n" -#~ "(Du kan ikkje angra dette, og øktfila vil bli overskriven)" - -#~ msgid "unknown track height name \"%1\" in XML GUI information" -#~ msgstr "ukjent sporhøgdnamn \"%1\" i XML-brukarflateinformasjonen" - -#~ msgid "" -#~ "Spanish:\n" -#~ "\tAlex Krohn \n" -#~ "\tAngel Bidinost \n" -#~ "\tPablo Enrici \n" -#~ "\tPablo Fernández \n" -#~ "\tGiovanni Martínez \n" -#~ "\tDavid Täht \n" -#~ "\tOscar Valladarez \n" -#~ "\tDaniel Vidal \n" -#~ msgstr "" -#~ "Spansk:\n" -#~ "\tAlex Krohn \n" -#~ "\tAngel Bidinost \n" -#~ "\tPablo Enrici \n" -#~ "\tPablo Fernández \n" -#~ "\tGiovanni Martínez \n" -#~ "\tDavid Täht \n" -#~ "\tOscar Valladarez \n" -#~ "\tDaniel Vidal \n" - -#~ msgid "" -#~ "Ardour comes with ABSOLUTELY NO WARRANTY\n" -#~ "This is free software, and you are welcome to redistribute it\n" -#~ "under certain conditions; see the file COPYING for details.\n" -#~ msgstr "" -#~ "Ardour har ABSOLUTT INGEN GARANTI!\n" -#~ "Dette er fri og gratis programvare, og du kan distribuera\n" -#~ "henne under visse vilkÃ¥r. SjÃ¥ fila COPYING for nøyare skildring.\n" - -#~ msgid "programmer error: %1 %2" -#~ msgstr "Programmerarfeil: %1 %2" - -#~ msgid "Unknown action name: %1" -#~ msgstr "Ukjent namn pÃ¥ handling: %1" - -#~ msgid "ardour: add track/bus" -#~ msgstr "ardour: legg til spor/buss(ar)" - -#~ msgid "Add this many:" -#~ msgstr "Legg til sÃ¥ mange:" - -#~ msgid "ardour: save session?" -#~ msgstr "ardour: lagra økta?" - -#~ msgid "Ardour sessions" -#~ msgstr "Ardour-økter" - -#~ msgid "Patience is a virtue.\n" -#~ msgstr "TÃ¥lmod er ei dygd.\n" - -#~ msgid "ardour: cleanup" -#~ msgstr "ardour: rydd" - -#~ msgid "" -#~ "A preset with this name already exists for this plugin.\n" -#~ "\n" -#~ "What you would like to do?\n" -#~ msgstr "" -#~ "Programtillegget har alt eit ferdigoppsett med dette namnet.\n" -#~ "\n" -#~ "Kva vil du gjera?\n" - -#~ msgid "Positional sync source" -#~ msgstr "Posisjonssynk-kjelde" - -#~ msgid "Primary clock" -#~ msgstr "Primærklokke" - -#~ msgid "secondary clock" -#~ msgstr "sekundærklokke" - -#~ msgid "Export selected range to audiofile..." -#~ msgstr "Eksporter det valde omrÃ¥det til ei lydfil..." - -#~ msgid "Export range markers to multiple audiofiles..." -#~ msgstr "Eksporter omrÃ¥demarkørar til fleire lydfiler..." - -#~ msgid "Cleanup unused sources" -#~ msgstr "Rydd bort ubrukte kjelder" - -#~ msgid "Show Mixer" -#~ msgstr "Vis miksaren" - -#~ msgid "Track/Bus Inspector" -#~ msgstr "Spor og bussar" - -#~ msgid "Toggle Record Enable Track2" -#~ msgstr "Skru pÃ¥/av opptak for spor 2" - -#~ msgid "Toggle Record Enable Track3" -#~ msgstr "Skru pÃ¥/av opptak for spor 3" - -#~ msgid "Toggle Record Enable Track4" -#~ msgstr "Skru pÃ¥/av opptak for spor 4" - -#~ msgid "Toggle Record Enable Track5" -#~ msgstr "Skru pÃ¥/av opptak for spor 5" - -#~ msgid "Toggle Record Enable Track6" -#~ msgstr "Skru pÃ¥/av opptak for spor 6" - -#~ msgid "Toggle Record Enable Track7" -#~ msgstr "Skru pÃ¥/av opptak for spor 7" - -#~ msgid "Toggle Record Enable Track8" -#~ msgstr "Skru pÃ¥/av opptak for spor 8" - -#~ msgid "Toggle Record Enable Track9" -#~ msgstr "Skru pÃ¥/av opptak for spor 9" - -#~ msgid "Toggle Record Enable Track10" -#~ msgstr "Skru pÃ¥/av opptak for spor 10" - -#~ msgid "Toggle Record Enable Track11" -#~ msgstr "Skru pÃ¥/av opptak for spor 11" - -#~ msgid "Toggle Record Enable Track12" -#~ msgstr "Skru pÃ¥/av opptak for spor 12" - -#~ msgid "Toggle Record Enable Track13" -#~ msgstr "Skru pÃ¥/av opptak for spor 13" - -#~ msgid "Toggle Record Enable Track14" -#~ msgstr "Skru pÃ¥/av opptak for spor 14" - -#~ msgid "Toggle Record Enable Track15" -#~ msgstr "Skru pÃ¥/av opptak for spor 15" - -#~ msgid "Toggle Record Enable Track16" -#~ msgstr "Skru pÃ¥/av opptak for spor 16" - -#~ msgid "Toggle Record Enable Track17" -#~ msgstr "Skru pÃ¥/av opptak for spor 17" - -#~ msgid "Toggle Record Enable Track18" -#~ msgstr "Skru pÃ¥/av opptak for spor 18" - -#~ msgid "Toggle Record Enable Track19" -#~ msgstr "Skru pÃ¥/av opptak for spor 19" - -#~ msgid "Toggle Record Enable Track20" -#~ msgstr "Skru pÃ¥/av opptak for spor 20" - -#~ msgid "Toggle Record Enable Track21" -#~ msgstr "Skru pÃ¥/av opptak for spor 21" - -#~ msgid "Toggle Record Enable Track22" -#~ msgstr "Skru pÃ¥/av opptak for spor 22" - -#~ msgid "Toggle Record Enable Track23" -#~ msgstr "Skru pÃ¥/av opptak for spor 23" - -#~ msgid "Toggle Record Enable Track24" -#~ msgstr "Skru pÃ¥/av opptak for spor 24" - -#~ msgid "Toggle Record Enable Track25" -#~ msgstr "Skru pÃ¥/av opptak for spor 25" - -#~ msgid "Toggle Record Enable Track26" -#~ msgstr "Skru pÃ¥/av opptak for spor 26" - -#~ msgid "Toggle Record Enable Track27" -#~ msgstr "Skru pÃ¥/av opptak for spor 27" - -#~ msgid "Toggle Record Enable Track28" -#~ msgstr "Skru pÃ¥/av opptak for spor 28" - -#~ msgid "Toggle Record Enable Track29" -#~ msgstr "Skru pÃ¥/av opptak for spor 29" - -#~ msgid "Toggle Record Enable Track30" -#~ msgstr "Skru pÃ¥/av opptak for spor 30" - -#~ msgid "Toggle Record Enable Track31" -#~ msgstr "Skru pÃ¥/av opptak for spor 31" - -#~ msgid "Toggle Record Enable Track32" -#~ msgstr "Skru pÃ¥/av opptak for spor 32" - -#~ msgid "Seamless Looping" -#~ msgstr "Saumlaus lykkje" - -#~ msgid "Use OSC" -#~ msgstr "Bruk OSC (OpenSound Control)" - -#~ msgid "Stop transport at session end" -#~ msgstr "Stopp speling ved slutten av økta" - -#~ msgid "Region equivalents overlap" -#~ msgstr "Region-ekvivalensar overlappar einannan" - -#~ msgid "Enable Editor Meters" -#~ msgstr "Skru pÃ¥ Redigering-mælarar" - -#~ msgid "Rubberbanding Snaps to Grid" -#~ msgstr "Gummiband-snapp til rutenetet" - -#~ msgid "Auto-analyse new audio" -#~ msgstr "Auto-analyser ny lyd" - -#~ msgid "Use DC bias" -#~ msgstr "Bruk DC-fjerning" - -#~ msgid "Do Not Run Plugins while Recording" -#~ msgstr "Ikkje køyr innstikk ved opptak" - -#~ msgid "JACK does monitoring" -#~ msgstr "JACK tek seg av lytting" - -#~ msgid "Ardour does monitoring" -#~ msgstr "Ardour tek seg av lytting" - -#~ msgid "Audio Hardware does monitoring" -#~ msgstr "Lyd-maskinvara tek seg av lytting" - -#~ msgid "Solo in-place" -#~ msgstr "Solo-pÃ¥-staden" - -#~ msgid "Auto-connect inputs to physical inputs" -#~ msgstr "Kopla inngangane automatisk til fysiske inngangar" - -#~ msgid "Manually connect inputs" -#~ msgstr "Kopla til inngangane manuelt" - -#~ msgid "Auto-connect outputs to physical outs" -#~ msgstr "Kopla utgangane automatisk til fysiske utgangar" - -#~ msgid "Auto Rebind Controls" -#~ msgstr "Auto-tilknyt kontrollar" - -#~ msgid "" -#~ "programming error: unknown solo model in ARDOUR_UI::set_solo_model: %1" -#~ msgstr "" -#~ "programmeringsfeil: ukjend solomodell i ARDOUR_UI::set_solo_model: %1" - -#~ msgid "" -#~ "programming error: unknown remote model in ARDOUR_UI::set_remote_model: %1" -#~ msgstr "" -#~ "programmeringsfeil: ukjend fjernkontrollmodell i ARDOUR_UI::set_remote:" -#~ "model: %1" - -#~ msgid "" -#~ "programming error: unknown monitor model in ARDOUR_UI::set_monitor_model: " -#~ "%1" -#~ msgstr "" -#~ "programmeringsfeil: ukjend monitormodell i ARDOUR_UI::set_monitor_model: " -#~ "%1" - -#~ msgid "" -#~ "programming error: unknown denormal model in ARDOUR_UI::" -#~ "set_denormal_model: %1" -#~ msgstr "" -#~ "programmeringsfeil: ukjend unormal-modell i ARDOUR_UI::" -#~ "set_denormal_model: %1" - -#~ msgid "" -#~ "programming error: unknown file header format passed to ARDOUR_UI::" -#~ "map_file_data_format: %1" -#~ msgstr "" -#~ "programmeringsfeil: ukjent filhovudformat sendt til ARDOUR_UI::" -#~ "map_file_data_fomat: %1" - -#~ msgid "" -#~ "programming error: unknown file data format passed to ARDOUR_UI::" -#~ "map_file_data_format: %1" -#~ msgstr "" -#~ "programmeringsfeil: ukjent fildataformat sendt til ARDOUR_UI::" -#~ "map_file_data_format: %1" - -#~ msgid "Waveform" -#~ msgstr "Lydbølgje" - -#~ msgid "automation range drag" -#~ msgstr "dra automasjonsomrÃ¥de" - -#~ msgid "clear track" -#~ msgstr "tøm spor" - -#~ msgid "pixbuf" -#~ msgstr "punktlager" - -#~ msgid "the pixbuf" -#~ msgstr "punktlageret" - -#~ msgid "x" -#~ msgstr "x" - -#~ msgid "y" -#~ msgstr "y" - -#~ msgid "the width" -#~ msgstr "breidda" - -#~ msgid "drawwidth" -#~ msgstr "teiknebreidd" - -#~ msgid "drawn width" -#~ msgstr "oppteikna breidd" - -#~ msgid "height" -#~ msgstr "høgd" - -#~ msgid "anchor" -#~ msgstr "ankerfeste" - -#~ msgid "the anchor" -#~ msgstr "ankerfestet" - -#~ msgid "ardour: x-fade edit" -#~ msgstr "ardour: rediger krysstoning" - -#~ msgid "SMPTE Frames" -#~ msgstr "SMPTE-rammer" - -#~ msgid "SMPTE Seconds" -#~ msgstr "SMPTE-sekund" - -#~ msgid "SMPTE Minutes" -#~ msgstr "SMPTE-minutt" - -#~ msgid "Chunks" -#~ msgstr "Lydbetar" - -#~ msgid "Region Editor" -#~ msgstr "Bolkredigering" - -#~ msgid "Define sync point" -#~ msgstr "Set synk-punkt" - -#~ msgid "Add Single Range" -#~ msgstr "Legg til einskilt omrÃ¥de" - -#~ msgid "Nudge fwd" -#~ msgstr "Skubb fram" - -#~ msgid "Nudge bwd" -#~ msgstr "Skubb bak" - -#~ msgid "Nudge bwd by capture offset" -#~ msgstr "Skubb bakover etter innspelingskompensasjon" - -#~ msgid "Start to edit point" -#~ msgstr "FrÃ¥ starten til redigeringspunktet" - -#~ msgid "Edit point to end" -#~ msgstr "FrÃ¥ redigeringspunktet til slutten" - -#~ msgid "Choose top region" -#~ msgstr "Vel topp-bolk" - -#~ msgid "Loop range" -#~ msgstr "Lykkje-omrÃ¥de" - -#~ msgid "Select all in range" -#~ msgstr "Vel alt i omrÃ¥det" - -#~ msgid "Set loop from selection" -#~ msgstr "Gjer utvalet til spelelykkje" - -#~ msgid "Set punch from selection" -#~ msgstr "Gjer utvalet til innslagsomrÃ¥de" - -#~ msgid "Create chunk from range" -#~ msgstr "Lag lydbete av omrÃ¥det" - -#~ msgid "Export range" -#~ msgstr "Eksporter omrÃ¥det" - -#~ msgid "Play from edit point" -#~ msgstr "Spel frÃ¥ redigeringspunktet" - -#~ msgid "Insert chunk" -#~ msgstr "Set inn lydbete" - -#~ msgid "Nudge entire track bwd" -#~ msgstr "Skubb heile sporet bakover" - -#~ msgid "Nudge track after edit point bwd" -#~ msgstr "Skubb sporet etter redigeringspunktet bakover" - -#~ msgid "Select all after edit point" -#~ msgstr "Vel alt etter redigeringspunktet" - -#~ msgid "Select all after playhead" -#~ msgstr "Vel alt etter spelhovudet" - -#~ msgid "Select all before playhead" -#~ msgstr "Vel alt før spelhovudet" - -#~ msgid "Splice Edit" -#~ msgstr "Splitt-redigering" - -#~ msgid "Slide Edit" -#~ msgstr "Glidredigering" - -#~ msgid "Lock Edit" -#~ msgstr "LÃ¥sredigering" - -#~ msgid "Link Region/Track Selection" -#~ msgstr "Lenk bolk- og sporvalet" - -#~ msgid "Break drag" -#~ msgstr "Bryt og dra" - -#~ msgid "Show Region Fades" -#~ msgstr "Vis bolkuttoningane" - -#~ msgid "Toggle Region Fade In" -#~ msgstr "SlÃ¥ pÃ¥ bolkinntoning" - -#~ msgid "Toggle Region Fade Out" -#~ msgstr "SlÃ¥ pÃ¥ bolkuttoning" - -#~ msgid "Toggle Region Fades" -#~ msgstr "Skru pÃ¥ bolkuttoningar" - -#~ msgid "Save View 2" -#~ msgstr "Lagre vising 2" - -#~ msgid "Goto View 2" -#~ msgstr "GÃ¥ til vising 2" - -#~ msgid "Save View 3" -#~ msgstr "Lagre vising 3" - -#~ msgid "Goto View 3" -#~ msgstr "GÃ¥ til vising 3" - -#~ msgid "Save View 4" -#~ msgstr "Lagre vising 4" - -#~ msgid "Goto View 4" -#~ msgstr "GÃ¥ til vising 4" - -#~ msgid "Save View 5" -#~ msgstr "Lagre vising 5" - -#~ msgid "Goto View 5" -#~ msgstr "GÃ¥ til vising 5" - -#~ msgid "Save View 6" -#~ msgstr "Lagre vising 6" - -#~ msgid "Goto View 6" -#~ msgstr "GÃ¥ til vising 6" - -#~ msgid "Save View 7" -#~ msgstr "Lagre vising 7" - -#~ msgid "Goto View 7" -#~ msgstr "GÃ¥ til vising 7" - -#~ msgid "Save View 8" -#~ msgstr "Lagre vising 8" - -#~ msgid "Goto View 8" -#~ msgstr "GÃ¥ til vising 8" - -#~ msgid "Save View 9" -#~ msgstr "Lagre vising 9" - -#~ msgid "Goto View 9" -#~ msgstr "GÃ¥ til vising 9" - -#~ msgid "Save View 10" -#~ msgstr "Lagre vising 10" - -#~ msgid "Goto View 10" -#~ msgstr "GÃ¥ til vising 10" - -#~ msgid "Save View 11" -#~ msgstr "Lagre vising 11" - -#~ msgid "Goto View 11" -#~ msgstr "GÃ¥ til vising 11" - -#~ msgid "Save View 12" -#~ msgstr "Lagre vising 12" - -#~ msgid "Goto View 12" -#~ msgstr "GÃ¥ til vising 12" - -#~ msgid "Locate to Mark 2" -#~ msgstr "GÃ¥ til merke 2" - -#~ msgid "Locate to Mark 3" -#~ msgstr "GÃ¥ til merke 3" - -#~ msgid "Locate to Mark 4" -#~ msgstr "GÃ¥ til merke 4" - -#~ msgid "Locate to Mark 5" -#~ msgstr "GÃ¥ til merke 5" - -#~ msgid "Locate to Mark 6" -#~ msgstr "GÃ¥ til merke 6" - -#~ msgid "Locate to Mark 7" -#~ msgstr "GÃ¥ til merke 7" - -#~ msgid "Locate to Mark 8" -#~ msgstr "GÃ¥ til merke 7" - -#~ msgid "Locate to Mark 9" -#~ msgstr "GÃ¥ til merke 9" - -#~ msgid "Start To Edit Point" -#~ msgstr "FrÃ¥ starten til redigeringspunktet" - -#~ msgid "Edit Point To End" -#~ msgstr "FrÃ¥ redigeringspunktet til slutten" - -#~ msgid "Set Loop From Region" -#~ msgstr "Set lykkje frÃ¥ bolken" - -#~ msgid "Set Punch From Region" -#~ msgstr "Set innslag frÃ¥ bolken" - -#~ msgid "Toggle Opaque" -#~ msgstr "SlÃ¥ av/pÃ¥ ugjennomsiktig grunn" - -#~ msgid "Toggle Fade In Active" -#~ msgstr "Skru pÃ¥/av inntoning" - -#~ msgid "Toggle Fade Out Active" -#~ msgstr "Skru pÃ¥/av uttoning" - -#~ msgid "Align Regions End" -#~ msgstr "Juster bolksluttane" - -#~ msgid "Align Regions End Relative" -#~ msgstr "Juster bolksluttane relativt" - -#~ msgid "Align Regions Sync Relative" -#~ msgstr "Juster bolksynkane relativt" - -#~ msgid "Duplicate Region" -#~ msgstr "Klon bolken" - -#~ msgid "Multi-Duplicate Region" -#~ msgstr "Klon bolken mange gonger" - -#~ msgid "Auto-Rename" -#~ msgstr "Auto-omdøyping" - -#~ msgid "Remove Region Sync" -#~ msgstr "Fjern bolksynk" - -#~ msgid "Export selected regions to audiofile..." -#~ msgstr "Eksporter bolkane til ei lydfil..." - -#~ msgid "Glue Region To Bars&Beats" -#~ msgstr "Lim bolken til takter og taktslag" - -#~ msgid "Mute/Unmute Region" -#~ msgstr "Demp/avdemp bolken" - -#~ msgid "Insert Chunk" -#~ msgstr "Set inn lydbete" - -#~ msgid "Split At Edit Point" -#~ msgstr "Del ved redigeringspunktet" - -#~ msgid "Next Mouse Mode" -#~ msgstr "Neste musemodus" - -#~ msgid "Snap to SMPTE frame" -#~ msgstr "Fest til SMPTE-ramme" - -#~ msgid "Snap to SMPTE seconds" -#~ msgstr "Fest til SMPTE-sekund" - -#~ msgid "Snap to SMPTE minutes" -#~ msgstr "Fest til SMPTE-minutt" - -#~ msgid "Show Waveforms" -#~ msgstr "Vis bølgjeformer" - -#~ msgid "Show Waveforms Rectified" -#~ msgstr "Vis retta bølgjeformer" - -#~ msgid "Set Selected Tracks to Linear Waveforms" -#~ msgstr "Gjer dei valde spora til lineære bølgjeformer" - -#~ msgid "Set Selected Tracks to Logarithmic Waveforms" -#~ msgstr "Gjer dei valde spora til logaritmiske bølgjeformer" - -#~ msgid "100 per frame" -#~ msgstr "100 per ramme" - -#~ msgid "Configuraton is using unhandled subframes per frame value: %1" -#~ msgstr "Oppsettet bruker u-handterte underrammer per rammeverdi: %1" - -#~ msgid "" -#~ "A source file %1 already exists. This operation will not update that " -#~ "source but import the file %2 as a new source, please confirm." -#~ msgstr "" -#~ "Kjeldefila %1 finst alt. Denne operasjonen vil ikkje oppdatera den " -#~ "kjelda, men importera fila %2 som ei ny kjelde. Det mÃ¥ du stadfesta." - -#~ msgid "" -#~ "There is no selection to export.\n" -#~ "\n" -#~ "Select a selection using the range mouse mode" -#~ msgstr "" -#~ "Du har ikkje noko utval Ã¥ eksportera.\n" -#~ "\n" -#~ "Vel eit utval ved Ã¥ bruka musa i omrÃ¥demodus." - -#~ msgid "" -#~ "There are no ranges to export.\n" -#~ "\n" -#~ "Create 1 or more ranges by dragging the mouse in the range bar" -#~ msgstr "" -#~ "Du har ikkje noko omrÃ¥de Ã¥ eksportera.\n" -#~ "\n" -#~ "Lag eitt eller fleire omrÃ¥de ved Ã¥ dra musa i omrÃ¥delinja." - -#~ msgid "programming error: no ImageFrameView selected" -#~ msgstr "programmeringsfeil: har ikkje valt biletrammevising" - -#~ msgid "programming error: no MarkerView selected" -#~ msgstr "programmeringsfeil: har ikkje valt merkevising" - -#~ msgid "Unlock" -#~ msgstr "LÃ¥s opp" - -#~ msgid "programming error: start_grab called without drag item" -#~ msgstr "Programmeringsfeil: start_grab oppkalla utan draobjekt" - -#~ msgid "" -#~ "programming error: fade out canvas item has no regionview data pointer!" -#~ msgstr "" -#~ "Programmeringsfeil: uttoningspalettobjektet har ingen bolkvisingspeikar!" - -#~ msgid "programming error: cursor canvas item has no cursor data pointer!" -#~ msgstr "Programmeringsfeil: Peikarpalettobjektet har ingen datapeikar!" - -#~ msgid "move region(s)" -#~ msgstr "flytt bolk(ar)" - -#~ msgid "move selection" -#~ msgstr "flytt utval" - -#~ msgid "naturalize" -#~ msgstr "gjer naturleg" - -#~ msgid "trim region start to edit point" -#~ msgstr "skjer bolkstarten til redigeringspunktet" - -#~ msgid "trim region end to edit point" -#~ msgstr "skjer bolkslutten til redigeringspunktet" - -#~ msgid "paste chunk" -#~ msgstr "lim inn lydbete" - -#~ msgid "clear playlist" -#~ msgstr "tøm spelelista" - -#~ msgid "toggle fade in active" -#~ msgstr "skru av/pÃ¥ inntoning" - -#~ msgid "toggle fade out active" -#~ msgstr "skru av/pÃ¥ uttoning" - -#~ msgid "Split & Later Section Moves" -#~ msgstr "Oppdelingar og seinare seksjonsflyttingar" - -#~ msgid "Name for Chunk:" -#~ msgstr "Namn pÃ¥ lydbeten:" - -#~ msgid "Create Chunk" -#~ msgstr "Lag lydbete" - -#~ msgid "Forget it" -#~ msgstr "Gløym det" - -#~ msgid "No selectable material found in the currently selected time range" -#~ msgstr "" -#~ "Det finst ikkje noko materiale som kan veljast innanfor dette tidsutvalet" - -#~ msgid "Semitones (12TET)" -#~ msgstr "Halvtonar (12TET)" - -#~ msgid "TimeFXProgress" -#~ msgstr "TidsFXframgang" - -#~ msgid "Sample Rate" -#~ msgstr "Punktfrekvens" - -#~ msgid "22.05kHz" -#~ msgstr "22.05kHz" - -#~ msgid "44.1kHz" -#~ msgstr "44.1kHz" - -#~ msgid "48kHz" -#~ msgstr "48kHz" - -#~ msgid "88.2kHz" -#~ msgstr "88.2kHz" - -#~ msgid "96kHz" -#~ msgstr "96kHz" - -#~ msgid "192kHz" -#~ msgstr "192kHz" - -#~ msgid "intermediate" -#~ msgstr "middels" - -#~ msgid "Shaped Noise" -#~ msgstr "Forma støy" - -#~ msgid "stereo" -#~ msgstr "stereo" - -#~ msgid "CUE" -#~ msgstr "CUE" - -#~ msgid "TOC" -#~ msgstr "TOC (innhaldsliste)" - -#~ msgid "CD Marker File Type" -#~ msgstr "CD-merkefiltype" - -#~ msgid "Sample Endianness" -#~ msgstr "Punkt-endian" - -#~ msgid "Conversion Quality" -#~ msgstr "Konverteringskvalitet" - -#~ msgid "Dither Type" -#~ msgstr "Utjamningstype" - -#~ msgid "Export CD Marker File Only" -#~ msgstr "Berre eksporter CD-merkefil" - -#~ msgid "Specific tracks ..." -#~ msgstr "Einskilde spor..." - -#~ msgid "Editor: cannot open \"%1\" as export file for CD toc file" -#~ msgstr "Redigering: kan ikkje opna \"%1\" som eksportfil for CD-innhaldsfil" - -#~ msgid "Editor: cannot open \"%1\" as export file for CD cue file" -#~ msgstr "Redigering: kan ikkje opna \"%1\" som eksportfil for CD-cue-fil" - -#~ msgid "Not connected to audioengine" -#~ msgstr "Ikkje tilkopla lydtenaren." - -#~ msgid "Ardour cannot export audio when disconnected" -#~ msgstr "Ardour kan ikkje eksportera lyd nÃ¥r han er frÃ¥kopla." - -#~ msgid "Please enter a valid filename." -#~ msgstr "Skriv inn eit gyldig filnamn." - -#~ msgid "Please specify a complete filename for the audio file." -#~ msgstr "Skriv eit fullstendig namn pÃ¥ lydfila." - -#~ msgid "Cannot write file in: " -#~ msgstr "Kan ikkje skriva fil i: " - -#~ msgid "ardour: export ranges" -#~ msgstr "ardour: eksporter omrÃ¥de" - -#~ msgid "Export to Directory" -#~ msgstr "Eksporter til mappe" - -#~ msgid "Please enter a valid target directory." -#~ msgstr "Vel ei gyldig mappe." - -#~ msgid "Please select an existing target directory. Files are not allowed!" -#~ msgstr "Vel ei eksisterande mÃ¥lmappe. Filer er ikkje lov!" - -#~ msgid "add gain automation event" -#~ msgstr "legg til volumautomasjonshending" - -#~ msgid "Image Compositor Socket has been shutdown/closed" -#~ msgstr "Biletesamansetjingssokkelen er avslutta/lukka" - -#~ msgid "0.5 seconds" -#~ msgstr "0.5 sekund" - -#~ msgid "1.5 seconds" -#~ msgstr "1.5 sekund" - -#~ msgid "2 seconds" -#~ msgstr "2 sekund" - -#~ msgid "2.5 seconds" -#~ msgstr "2.5 sekund" - -#~ msgid "3 seconds" -#~ msgstr "3 sekund" - -#~ msgid "Image Frame" -#~ msgstr "Biletramme" - -#~ msgid "Disconnect All" -#~ msgstr "Kopla frÃ¥ alle" - -#~ msgid "Available connections" -#~ msgstr "Tilgjengelege tilkoplingar" - -#~ msgid "Unknown" -#~ msgstr "Ukjend" - -#~ msgid "Ardour key bindings file not found at \"%1\" or contains errors." -#~ msgstr "Fann ikkje Ardour-snøggtastfila i \"%1\", eller ho inneheld feil." - -#~ msgid "Add New Location" -#~ msgstr "Legg til ny plassering" - -#~ msgid "Location (CD Index) Markers" -#~ msgstr "Plassmarkørar (CD-indeks)" - -#~ msgid "Range (CD Track) Markers" -#~ msgstr "OmrÃ¥demarkørar (CD-spor)" - -#~ msgid "Ardour/GTK " -#~ msgstr "Ardour/GTK " - -#~ msgid "Click to choose outputs" -#~ msgstr "Trykk for Ã¥ velja utgangar" - -#~ msgid "Varispeed" -#~ msgstr "Varifart" - -#~ msgid "could not register new ports required for that connection" -#~ msgstr "greidde ikkje registrera nye portar for den tilkoplinga" - -#~ msgid "Invert Polarity" -#~ msgstr "Snu polaritet" - -#~ msgid "Name :" -#~ msgstr "Namn:" - -#~ msgid "Template :" -#~ msgstr "Mal :" - -#~ msgid "Recent:" -#~ msgstr "Nett brukt:" - -#~ msgid "Session Control" -#~ msgstr "Øktkontroll" - -#~ msgid "select directory" -#~ msgstr "vel mappe" - -#~ msgid "Start Audio Engine" -#~ msgstr "Start lydmotoren" - -#~ msgid "Paths/Files" -#~ msgstr "Stigar/filer" - -#~ msgid "Kbd/Mouse" -#~ msgstr "Tastaur/mus" - -#~ msgid "session RAID path" -#~ msgstr "RAID-stig for økta" - -#~ msgid "History depth (commands)" -#~ msgstr "Logglengd (kommandoar)" - -#~ msgid "Saved history depth (commands)" -#~ msgstr "Lagra logglengd (kommandoar)" - -#~ msgid "SMPTE Offset" -#~ msgstr "SMPTE-forskuving" - -#~ msgid "Offline" -#~ msgstr "FrÃ¥kopla" - -#~ msgid "" -#~ "Trace\n" -#~ "Input" -#~ msgstr "Sporinngang" - -#~ msgid "" -#~ "Trace\n" -#~ "Output" -#~ msgstr "" -#~ "Spor\n" -#~ "utgang" - -#~ msgid "offline" -#~ msgstr "frÃ¥kopla" - -#~ msgid "output" -#~ msgstr "utgang" - -#~ msgid "" -#~ "The auditioner is a dedicated mixer strip used\n" -#~ "for listening to specific regions outside the context\n" -#~ "of the overall mix. It can be connected just like any\n" -#~ "other mixer strip." -#~ msgstr "" -#~ "Lyttinga er ei eiga miksarstripe som blir brukt\n" -#~ "til Ã¥ lytta pÃ¥ eigne bolkar utanom hovudmiksen.\n" -#~ "Du kan kopla ho til som ei kvar anna miksarstripe." - -#~ msgid "You need to select which line to edit" -#~ msgstr "Du mÃ¥ velja ei linje Ã¥ redigera" - -#~ msgid "ardour: plugins" -#~ msgstr "ardour: programtillegg" - -#~ msgid "# Inputs" -#~ msgstr "# Inngangar" - -#~ msgid "# Outputs" -#~ msgstr "# Utgangar" - -#~ msgid "redirect automation created for non-plugin" -#~ msgstr "omdiriger automasjon som vart laga for ikkje-programtillegg" - -#~ msgid "add automation event to " -#~ msgstr "legg til automasjonshending for " - -#~ msgid "ardour: weird plugin dialog" -#~ msgstr "ardour: merkeleg programtillegg-dialog" - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "The plugin has %2 inputs\n" -#~ "but at the insertion point, there are\n" -#~ "%3 active signal streams.\n" -#~ "\n" -#~ "This makes no sense - you are throwing away\n" -#~ "part of the signal." -#~ msgstr "" -#~ "Du prøvde Ã¥ leggja til eit programtillegg (%1).\n" -#~ "Det har %2 inngangar,\n" -#~ "men ved tapningspunktet er det berre\n" -#~ "%3 aktive signalstraumar.\n" -#~ "\n" -#~ "Det er ingen vits, fordi du kastar bort\n" -#~ "ein del av signalet." - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "The plugin has %2 inputs\n" -#~ "but at the insertion point there are\n" -#~ "only %3 active signal streams.\n" -#~ "\n" -#~ "This makes no sense - unless the plugin supports\n" -#~ "side-chain inputs. A future version of Ardour will\n" -#~ "support this type of configuration." -#~ msgstr "" -#~ "Du prøvde Ã¥ leggja til eit programtillegg (%1).\n" -#~ "Det har %2 inngangar,\n" -#~ "men ved tapningspunktet er det berre\n" -#~ "%3 aktive signalstraumar.\n" -#~ "\n" -#~ "Det er ingen vits, med mindre tilleggs-\n" -#~ "programmet støttar sidekjedeinngangar.\n" -#~ "Framtidige utgÃ¥ver av Ardour vil støtta dette." - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "\n" -#~ "The I/O configuration doesn't make sense:\n" -#~ "\n" -#~ "The plugin has %2 inputs and %3 outputs.\n" -#~ "The track/bus has %4 inputs and %5 outputs.\n" -#~ "The insertion point, has %6 active signals.\n" -#~ "\n" -#~ "Ardour does not understand what to do in such situations.\n" -#~ msgstr "" -#~ "Du prøvde Ã¥ leggja til eit programtillegg (%1).\n" -#~ "\n" -#~ "Inn/ut-oppsettet er ulogisk.\n" -#~ "\n" -#~ "Programtillegget har %2 inngangar og %3 utgangar.\n" -#~ "Sporet eller bussen har %2 inngangar og %3 utgangar.\n" -#~ "Tapningspunktet har %6 aktive signal.\n" -#~ "\n" -#~ "Ardour skjønar ikkje kva han skal gjera i slike høve.\n" - -#~ msgid "Post-fader inserts, sends & plugins:" -#~ msgstr "Tappingar, sendar og programtillegg etter volumkontroll" - -#~ msgid "rename redirect" -#~ msgstr "døyp om signal-omdirigering" - -#~ msgid "" -#~ "Do you really want to remove all pre-fader redirects from this track?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Vil du verkeleg fjerna alle før-dempar-omdirigeringar frÃ¥ dette sporet?\n" -#~ "Du kan ikkje angra!" - -#~ msgid "" -#~ "Do you really want to remove all post-fader redirects from this track?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Vil du verkeleg fjerna alle etter-dempar-omdirigeringar frÃ¥ dette " -#~ "sporet?\n" -#~ "Du kan ikkje angra!" - -#~ msgid "Analysis" -#~ msgstr "Analyse" - -#~ msgid "Post-fader Redirects" -#~ msgstr "Omdirigeringar etter volumkontroll" - -#~ msgid "h" -#~ msgstr "h" - -#~ msgid "v" -#~ msgstr "v" - -#~ msgid "Display Height" -#~ msgstr "Visingshøgd" - -#~ msgid "mute change" -#~ msgstr "endra demping" - -#~ msgid "mix group solo change" -#~ msgstr "soloendring for miksgruppa" - -#~ msgid "mix group mute change" -#~ msgstr "dempingsendring for miksgruppa" - -#~ msgid "mix group rec-enable change" -#~ msgstr "slÃ¥ pÃ¥/av opptak for miksgruppa" - -#~ msgid "ardour: color selection" -#~ msgstr "ardour: fargeval" - -#~ msgid "New Name: " -#~ msgstr "Nytt namn:" - -#~ msgid "Play (double click)" -#~ msgstr "Spel (dobbelklikk)" - -#~ msgid "n/a" -#~ msgstr "-" - -#~ msgid "at edit point" -#~ msgstr "ved redigeringspunktet" - -#~ msgid "at playhead" -#~ msgstr "ved spelehovudet" - -#~ msgid "Bar" -#~ msgstr "Takt" - -#~ msgid "Beat" -#~ msgstr "Slag" - -#~ msgid "TimeAxisViewItemName" -#~ msgstr "TidsAkseVisingEiningsNamn" - -#~ msgid "" -#~ "Do you really want to remove track \"%1\" ?\n" -#~ "(cannot be undone)" -#~ msgstr "" -#~ "Vil du verkeleg sletta sporet \"%1\" ?\n" -#~ "(du kan ikkje angra!)" - -#~ msgid "ardour: connections" -#~ msgstr "ardour: tilkoplingar" - -#~ msgid "Output Connections" -#~ msgstr "Utgangstilkoplingar" - -#~ msgid "New Input" -#~ msgstr "Ny inngang" - -#~ msgid "New Output" -#~ msgstr "Ny utgang" - -#~ msgid "Add Port" -#~ msgstr "Legg til port" - -#~ msgid "\"" -#~ msgstr "\"" - -#~ msgid "in %d" -#~ msgstr "i %d" - -#~ msgid "out %d" -#~ msgstr "ut %d" - -#~ msgid "Name for new connection:" -#~ msgstr "Namn pÃ¥ ny tilkopling:" - -#~ msgid "Manual Setup" -#~ msgstr "Manuelt oppsett" - -#~ msgid "open session" -#~ msgstr "opna økt" - -#~ msgid "" -#~ "You do not have write access to this session.\n" -#~ "This prevents the session from being loaded." -#~ msgstr "" -#~ "Du har ikkje lagringsrettar til denne økta.\n" -#~ "Det gjer at du ikkje kan lasta henne." - -#~ msgid "files were" -#~ msgstr "filer vart" - -#~ msgid "file was" -#~ msgstr "fil vart" - -#~ msgid "Import/Export" -#~ msgstr "Importer/eksporter" - -#~ msgid "NAME:" -#~ msgstr "NAMN:" - -#~ msgid "play" -#~ msgstr "spel" - -#~ msgid "POSITION:" -#~ msgstr "POSISJON:" - -#~ msgid "END:" -#~ msgstr "SLUTT:" - -#~ msgid "LENGTH:" -#~ msgstr "LENGD:" - -#~ msgid "SYNC POINT:" -#~ msgstr "SYNK-PUNKT:" - -#~ msgid "FILE START:" -#~ msgstr "FILSTART:" - -#~ msgid "Show waveforms" -#~ msgstr "Vis lydbølgje" - -#~ msgid "gain" -#~ msgstr "inngangsvolum" - -#~ msgid "pan" -#~ msgstr "pan" - -#~ msgid "Popup region editor" -#~ msgstr "Vis bolkredigering" - -#~ msgid "Use Region Fades (global)" -#~ msgstr "Bruk uttoning frÃ¥ bolkane (overalt)" - -#~ msgid "Name New Location Marker" -#~ msgstr "Nytt namn pÃ¥ nivÃ¥mælar:" - -#~ msgid "ardour: export region" -#~ msgstr "ardour: eksporter bolken" - -#~ msgid "Add Input" -#~ msgstr "Legg til inngang" - -#~ msgid "Add Output" -#~ msgstr "Legg til utgang" - -#~ msgid "Remove Input" -#~ msgstr "Fjern inngang" - -#~ msgid "Remove Output" -#~ msgstr "Fjern utgang" - -#~ msgid "Shortcut Editor" -#~ msgstr "Rediger snøggtastar" - -#~ msgid "SIGPIPE received - JACK has probably died" -#~ msgstr "Mottok SIGPIPE - JACK døydde truleg" - -#~ msgid " Input" -#~ msgstr " Inngang" - -#~ msgid "Name (template)" -#~ msgstr "Namn (mal)" - -#, fuzzy -#~ msgid "Magnetic Snap" -#~ msgstr "Magnetisk festing" - -#, fuzzy -#~ msgid "Click to focus all keyboard events on this plugin window" -#~ msgstr "Klikk for Ã¥ fokusera pÃ¥ alle tastehendingar i denne innstikkruta" - -#, fuzzy -#~ msgid "Click to remove keyboard focus from this plugin window" -#~ msgstr "" -#~ "Klikk for Ã¥ fjerna fokus frÃ¥ alle tastehendingar i denne innstikkruta" - -#, fuzzy -#~ msgid "thirtq-second (32)" -#~ msgstr "toogtredvedel (32)" diff --git a/gtk2_ardour/po/pl.po b/gtk2_ardour/po/pl.po index 1a33b99249..cd99b15742 100644 --- a/gtk2_ardour/po/pl.po +++ b/gtk2_ardour/po/pl.po @@ -36,11 +36,6 @@ msgstr "Marcus Andersson" msgid "Nedko Arnaudov" msgstr "Nedko Arnaudov" -#: about.cc:126 -#, fuzzy -msgid "Hans Baier" -msgstr "Hans Fugal" - #: about.cc:127 msgid "Ben Bell" msgstr "Ben Bell" @@ -217,11 +212,6 @@ msgstr "Per Sigmond" msgid "Lincoln Spiteri" msgstr "" -#: about.cc:171 -#, fuzzy -msgid "Mike Start" -msgstr "Wyrównaj relatywnie" - #: about.cc:172 msgid "Mark Stewart" msgstr "Mark Stewart" @@ -246,45 +236,6 @@ msgstr "" msgid "Thorsten Wilms" msgstr "Thorsten Wilms" -#: about.cc:182 -#, fuzzy -msgid "" -"French:\n" -"\tAlain Fréhel \n" -"\tChristophe Combelles \n" -"\tMartin Blanchard\n" -"\tRomain Arnaud \n" -msgstr "" -"French:\n" -"\tAlain Fréhel \n" -"\tChristophe Combelles \n" - -#: about.cc:183 -#, fuzzy -msgid "" -"German:\n" -"\tKarsten Petersen \n" -"\tSebastian Arnold \n" -"\tRobert Schwede \n" -"\tBenjamin Scherrer \n" -"\tEdgar Aichinger \n" -"\tRichard Oax \n" -"\tRobin Gloster \n" -msgstr "" -"German:\n" -"\tKarsten Petersen \n" -"\tSebastian Arnold \n" - -#: about.cc:190 -#, fuzzy -msgid "" -"Italian:\n" -"\tFilippo Pappalardo \n" -"\tRaffaele Morelli \n" -msgstr "" -"Italian:\n" -"\tFilippo Pappalardo \n" - #: about.cc:191 msgid "" "Portuguese:\n" @@ -303,16 +254,6 @@ msgstr "" "\tAlexander da Franca Fernandes \n" "\tChris Ross \n" -#: about.cc:194 -#, fuzzy -msgid "" -"Spanish:\n" -"\t Alex Krohn \n" -"\tPablo Fernández \n" -msgstr "" -"Spanish:\n" -"\t Alex Krohn \n" - #: about.cc:195 msgid "" "Russian:\n" @@ -358,16 +299,6 @@ msgid "" "\t Rui-huai Zhang \n" msgstr "" -#: about.cc:580 -#, fuzzy -msgid "Copyright (C) 1999-2013 Paul Davis\n" -msgstr "Prawa autorskie (C) 1999-2008 Paul Davis\n" - -#: about.cc:584 -#, fuzzy -msgid "http://ardour.org/" -msgstr "odwiedź http://www.ardour.org/" - #: about.cc:585 msgid "" "%1\n" @@ -388,87 +319,14 @@ msgstr "" msgid "badly formatted UI definition file: %1" msgstr "niepoprawnie sformatowany plik definicji interfejsu użytkownika: %1" -#: actions.cc:91 -#, fuzzy -msgid "%1 menu definition file not found" -msgstr "Nie odnaleziono pliku definicji menu" - -#: actions.cc:95 actions.cc:96 -#, fuzzy -msgid "%1 will not work without a valid ardour.menus file" -msgstr "Ardour nie zadziaÅ‚a bez poprawnego pliku ardour.menus" - -#: add_route_dialog.cc:53 route_params_ui.cc:500 -#, fuzzy -msgid "Add Track or Bus" -msgstr "Dodaj Å›cieżkÄ™/szynÄ™" - -#: add_route_dialog.cc:56 -#, fuzzy -msgid "Configuration:" -msgstr "Konfiguracja kanałów" - -#: add_route_dialog.cc:57 -#, fuzzy -msgid "Track mode:" -msgstr "Tryb taÅ›mowy" - #: add_route_dialog.cc:58 msgid "Instrument:" msgstr "" -#: add_route_dialog.cc:76 -#, fuzzy -msgid "Audio Tracks" -msgstr "Dodaj Å›cieżkÄ™ dźwiÄ™kowÄ…" - -#: add_route_dialog.cc:77 -#, fuzzy -msgid "MIDI Tracks" -msgstr "Dodaj Å›cieżkÄ™ dźwiÄ™kowÄ…" - -#: add_route_dialog.cc:78 -#, fuzzy -msgid "Audio+MIDI Tracks" -msgstr "Dodaj Å›cieżkÄ™ dźwiÄ™kowÄ…" - -#: add_route_dialog.cc:79 -#, fuzzy -msgid "Busses" -msgstr "szyny" - #: add_route_dialog.cc:101 msgid "Add:" msgstr "" -#: add_route_dialog.cc:114 startup.cc:841 time_fx_dialog.cc:91 -#: add_video_dialog.cc:150 video_server_dialog.cc:112 -#, fuzzy -msgid "Options" -msgstr "WyjÅ›cia" - -#: add_route_dialog.cc:124 bundle_manager.cc:192 region_editor.cc:50 -#: route_group_dialog.cc:65 -#, fuzzy -msgid "Name:" -msgstr "Nazwa:" - -#: add_route_dialog.cc:154 -#, fuzzy -msgid "Group:" -msgstr "Grupa" - -#: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 -#: rc_option_editor.cc:1456 rc_option_editor.cc:1458 rc_option_editor.cc:1460 -#: rc_option_editor.cc:1478 rc_option_editor.cc:1480 rc_option_editor.cc:1488 -#: rc_option_editor.cc:1490 rc_option_editor.cc:1508 rc_option_editor.cc:1521 -#: rc_option_editor.cc:1523 rc_option_editor.cc:1525 rc_option_editor.cc:1556 -#: rc_option_editor.cc:1558 rc_option_editor.cc:1560 rc_option_editor.cc:1568 -#: rc_option_editor.cc:1576 rc_option_editor.cc:1584 -#, fuzzy -msgid "Audio" -msgstr "OdsÅ‚uch" - #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 #: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1707 #: rc_option_editor.cc:1715 rc_option_editor.cc:1723 rc_option_editor.cc:1732 @@ -478,16 +336,6 @@ msgstr "OdsÅ‚uch" msgid "MIDI" msgstr "MIDI" -#: add_route_dialog.cc:217 add_route_dialog.cc:230 add_route_dialog.cc:300 -#, fuzzy -msgid "Audio+MIDI" -msgstr "OdsÅ‚uch" - -#: add_route_dialog.cc:218 add_route_dialog.cc:233 add_route_dialog.cc:301 -#, fuzzy -msgid "Bus" -msgstr "szyna" - #: add_route_dialog.cc:260 msgid "" "Audio+MIDI tracks are intended for use ONLY with plugins that use " @@ -518,55 +366,10 @@ msgstr "Mono" msgid "Stereo" msgstr "Stereo" -#: add_route_dialog.cc:451 -#, fuzzy -msgid "3 Channel" -msgstr "3 kanaÅ‚y" - -#: add_route_dialog.cc:455 -#, fuzzy -msgid "4 Channel" -msgstr "4 kanaÅ‚y" - -#: add_route_dialog.cc:459 -#, fuzzy -msgid "5 Channel" -msgstr "3 kanaÅ‚y" - -#: add_route_dialog.cc:463 -#, fuzzy -msgid "6 Channel" -msgstr "6 kanałów" - -#: add_route_dialog.cc:467 -#, fuzzy -msgid "8 Channel" -msgstr "8 kanałów" - -#: add_route_dialog.cc:471 -#, fuzzy -msgid "12 Channel" -msgstr "3 kanaÅ‚y" - #: add_route_dialog.cc:475 mixer_strip.cc:2131 msgid "Custom" msgstr "" -#: add_route_dialog.cc:508 add_route_dialog.cc:524 route_group_menu.cc:81 -#, fuzzy -msgid "New Group..." -msgstr "Brak grupy" - -#: add_route_dialog.cc:512 route_group_menu.cc:85 -#, fuzzy -msgid "No Group" -msgstr "Brak grupy" - -#: add_route_dialog.cc:588 -#, fuzzy -msgid "-none-" -msgstr "brak" - #: ambiguous_file_dialog.cc:30 msgid "Ambiguous File" msgstr "" @@ -646,44 +449,14 @@ msgstr "Analizuj ponownie" msgid "button cannot watch state of non-existing Controllable\n" msgstr "" -#: ardour_ui.cc:180 -#, fuzzy -msgid "audition" -msgstr "OdsÅ‚uch" - -#: ardour_ui.cc:181 -#, fuzzy -msgid "solo" -msgstr "zmiana ustawienia solo" - -#: ardour_ui.cc:182 -#, fuzzy -msgid "feedback" -msgstr "Sprzężenie zwrotne" - -#: ardour_ui.cc:187 speaker_dialog.cc:36 -#, fuzzy -msgid "Speaker Configuration" -msgstr "Konfiguracja kanałów" - #: ardour_ui.cc:188 theme_manager.cc:56 theme_manager.cc:64 msgid "Theme Manager" msgstr "Menedżer motywów" -#: ardour_ui.cc:189 keyeditor.cc:53 -#, fuzzy -msgid "Key Bindings" -msgstr "Skróty klawiszowe" - #: ardour_ui.cc:190 msgid "Preferences" msgstr "Preferencje" -#: ardour_ui.cc:191 ardour_ui.cc:196 -#, fuzzy -msgid "Add Tracks/Busses" -msgstr "Åšcieżki/szyny" - #: ardour_ui.cc:192 msgid "About" msgstr "O programie" @@ -692,34 +465,14 @@ msgstr "O programie" msgid "Locations" msgstr "PoÅ‚ożenia" -#: ardour_ui.cc:194 route_params_ui.cc:58 route_params_ui.cc:606 -#, fuzzy -msgid "Tracks and Busses" -msgstr "Åšcieżki/szyny" - #: ardour_ui.cc:195 msgid "Properties" msgstr "" -#: ardour_ui.cc:197 bundle_manager.cc:263 -#, fuzzy -msgid "Bundle Manager" -msgstr "Menedżer motywów" - #: ardour_ui.cc:198 big_clock_window.cc:35 msgid "Big Clock" msgstr "Duży zegar" -#: ardour_ui.cc:199 -#, fuzzy -msgid "Audio Connections" -msgstr "Połączenie \"" - -#: ardour_ui.cc:200 -#, fuzzy -msgid "MIDI Connections" -msgstr "Połączenia wejÅ›ciowe" - #: ardour_ui.cc:202 msgid "Errors" msgstr "Błędy" @@ -728,107 +481,10 @@ msgstr "Błędy" msgid "Starting audio engine" msgstr "Uruchamianie systemu dźwiÄ™ku" -#: ardour_ui.cc:758 startup.cc:638 -#, fuzzy -msgid "%1 is ready for use" -msgstr "Ardour jest gotowy do użycia" - -#: ardour_ui.cc:806 -#, fuzzy -msgid "" -"WARNING: Your system has a limit for maximum amount of locked memory. This " -"might cause %1 to run out of memory before your system runs out of memory. \n" -"\n" -"You can view the memory limit with 'ulimit -l', and it is normally " -"controlled by %2" -msgstr "" -"OSTRZEÅ»ENIE: System posiada limit maksymalnego rozmiaru zablokowanej " -"pamiÄ™ci. Może to powodować, iż bÄ™dzie brakować pamiÄ™ci prÄ™dzej niż " -"faktycznie skoÅ„czy siÄ™ ona w systemie. \n" -"\n" -"Można sprawdzić limit pamiÄ™ci przy użyciu 'ulimit -l'. Standardowo limit ten " -"jest kontrolowany przez /etc/security/limits.conf" - #: ardour_ui.cc:823 msgid "Do not show this window again" msgstr "Nie pokazuj tego okna wiÄ™cej" -#: ardour_ui.cc:865 -#, fuzzy -msgid "Don't quit" -msgstr "Nie koÅ„cz" - -#: ardour_ui.cc:866 -#, fuzzy -msgid "Just quit" -msgstr "Po prostu %1" - -#: ardour_ui.cc:867 -#, fuzzy -msgid "Save and quit" -msgstr "Zapisz i %1" - -#: ardour_ui.cc:877 -#, fuzzy -msgid "" -"%1 was unable to save your session.\n" -"\n" -"If you still wish to quit, please use the\n" -"\n" -"\"Just quit\" option." -msgstr "" -"Nie można zapisać sesji.\n" -"\n" -"Można jÄ… zakoÅ„czyć przy użyciu\n" -"\n" -"opcji \"Po prostu zakoÅ„cz\"." - -#: ardour_ui.cc:908 -#, fuzzy -msgid "Please wait while %1 cleans up..." -msgstr "ProszÄ™ czekać na wczytanie danych wizualnych" - -#: ardour_ui.cc:925 -#, fuzzy -msgid "Unsaved Session" -msgstr "Nowa Sesja" - -#: ardour_ui.cc:946 -#, fuzzy -msgid "" -"The session \"%1\"\n" -"has not been saved.\n" -"\n" -"Any changes made this time\n" -"will be lost unless you save it.\n" -"\n" -"What do you want to do?" -msgstr "" -"%1 \"%2\" nie zostaÅ‚a zapisana.\n" -"\n" -"Wszystkie dokonane zmiany zostanÄ… utracone\n" -"w przypadku anulowania zapisu.\n" -"\n" -"Co zrobić?" - -#: ardour_ui.cc:949 -#, fuzzy -msgid "" -"The snapshot \"%1\"\n" -"has not been saved.\n" -"\n" -"Any changes made this time\n" -"will be lost unless you save it.\n" -"\n" -"What do you want to do?" -msgstr "" -"%1 \"%2\" nie zostaÅ‚a zapisana.\n" -"\n" -"Wszystkie dokonane zmiany zostanÄ… utracone\n" -"w przypadku anulowania zapisu.\n" -"\n" -"Co zrobić?" - #: ardour_ui.cc:963 msgid "Prompter" msgstr "Prompter" @@ -847,11 +503,6 @@ msgstr "" msgid "JACK: % kHz / %4.1f ms" msgstr "" -#: ardour_ui.cc:1078 export_video_dialog.cc:68 -#, fuzzy -msgid "File:" -msgstr "Pliki" - #: ardour_ui.cc:1082 msgid "BWF" msgstr "" @@ -905,11 +556,6 @@ msgid "" "\">%%%" msgstr "" -#: ardour_ui.cc:1188 -#, fuzzy -msgid "Disk: Unknown" -msgstr "Dysk: %02dh:%02dm:%02ds" - #: ardour_ui.cc:1190 msgid "Disk: 24hrs+" msgstr "" @@ -918,52 +564,14 @@ msgstr "" msgid "Disk: >24 hrs" msgstr "" -#: ardour_ui.cc:1219 -#, fuzzy, c-format -msgid "Disk: %02dh:%02dm:%02ds" -msgstr "Dysk: %02dh:%02dm:%02ds" - -#: ardour_ui.cc:1245 -#, fuzzy, c-format -msgid "Timecode|TC: %s" -msgstr "Dysk: %02dh:%02dm:%02ds" - #: ardour_ui.cc:1362 ardour_ui.cc:1371 startup.cc:1054 msgid "Recent Sessions" msgstr "Poprzednie sesje" -#: ardour_ui.cc:1451 -#, fuzzy -msgid "" -"%1 is not connected to JACK\n" -"You cannot open or close sessions in this condition" -msgstr "" -"Ardour nie jest połączony z JACK.\n" -"W tej sytuacji nie możesz otwierać lub zamykać sesji." - #: ardour_ui.cc:1478 msgid "Open Session" msgstr "Otwieranie sesji" -#: ardour_ui.cc:1503 session_import_dialog.cc:169 -#: session_metadata_dialog.cc:729 startup.cc:1083 -#, fuzzy -msgid "%1 sessions" -msgstr "Sesja" - -#: ardour_ui.cc:1540 -#, fuzzy -msgid "You cannot add a track without a session already loaded." -msgstr "Nie możesz dodać Å›cieżki lub szyny bez otwierania sesji." - -#: ardour_ui.cc:1548 -#, fuzzy -msgid "could not create %1 new mixed track" -msgid_plural "could not create %1 new mixed tracks" -msgstr[0] "nie można byÅ‚o utworzyć %1 nowych Å›cieżek dźwiÄ™kowych" -msgstr[1] "nie można byÅ‚o utworzyć %1 nowych Å›cieżek dźwiÄ™kowych" -msgstr[2] "nie można byÅ‚o utworzyć %1 nowych Å›cieżek dźwiÄ™kowych" - #: ardour_ui.cc:1554 ardour_ui.cc:1615 msgid "" "There are insufficient JACK ports available\n" @@ -976,32 +584,6 @@ msgstr "" msgid "You cannot add a track or bus without a session already loaded." msgstr "Nie możesz dodać Å›cieżki lub szyny bez otwierania sesji." -#: ardour_ui.cc:1598 -#, fuzzy -msgid "could not create %1 new audio track" -msgid_plural "could not create %1 new audio tracks" -msgstr[0] "nie można byÅ‚o utworzyć nowej Å›cieżki dźwiÄ™kowej" -msgstr[1] "nie można byÅ‚o utworzyć nowej Å›cieżki dźwiÄ™kowej" -msgstr[2] "nie można byÅ‚o utworzyć nowej Å›cieżki dźwiÄ™kowej" - -#: ardour_ui.cc:1607 -#, fuzzy -msgid "could not create %1 new audio bus" -msgid_plural "could not create %1 new audio busses" -msgstr[0] "nie można byÅ‚o utworzyć %1 nowych Å›cieżek dźwiÄ™kowych" -msgstr[1] "nie można byÅ‚o utworzyć %1 nowych Å›cieżek dźwiÄ™kowych" -msgstr[2] "nie można byÅ‚o utworzyć %1 nowych Å›cieżek dźwiÄ™kowych" - -#: ardour_ui.cc:1724 -#, fuzzy -msgid "" -"Please create one or more tracks before trying to record.\n" -"You can do this with the \"Add Track or Bus\" option in the Session menu." -msgstr "" -"Należy utworzyć 1 lub wiÄ™cej Å›cieżek\n" -"przed rozpoczÄ™ciem nagrywania.\n" -"Sprawdź menu Sesji." - #: ardour_ui.cc:2114 msgid "" "The audio backend (JACK) was shutdown because:\n" @@ -1009,32 +591,10 @@ msgid "" "%1" msgstr "" -#: ardour_ui.cc:2116 -#, fuzzy -msgid "" -"JACK has either been shutdown or it\n" -"disconnected %1 because %1\n" -"was not fast enough. Try to restart\n" -"JACK, reconnect and save the session." -msgstr "" -"JACK zostaÅ‚ wyłączony albo odłączyÅ‚ program Ardour z powodu jego " -"niewystarczajÄ…cej szybkoÅ›ci. Można zapisać sesjÄ™ i/lub spróbować połączyć " -"ponownie z JACK." - #: ardour_ui.cc:2142 msgid "Unable to start the session running" msgstr "Nie można wczytać sesji, gdyż jest aktualnie w użyciu." -#: ardour_ui.cc:2222 -#, fuzzy -msgid "Take Snapshot" -msgstr "Zrzut" - -#: ardour_ui.cc:2223 -#, fuzzy -msgid "Name of new snapshot" -msgstr "Nazwa zrzutu:" - #: ardour_ui.cc:2247 msgid "" "To ensure compatibility with various systems\n" @@ -1045,25 +605,10 @@ msgstr "" msgid "Confirm Snapshot Overwrite" msgstr "" -#: ardour_ui.cc:2260 -#, fuzzy -msgid "A snapshot already exists with that name. Do you want to overwrite it?" -msgstr "Plik już istnieje. ZastÄ…pić go?" - #: ardour_ui.cc:2263 utils_videotl.cc:67 msgid "Overwrite" msgstr "" -#: ardour_ui.cc:2297 -#, fuzzy -msgid "Rename Session" -msgstr "ZmieÅ„ nazwÄ™ obszaru" - -#: ardour_ui.cc:2298 -#, fuzzy -msgid "New session name" -msgstr "Sesja" - #: ardour_ui.cc:2312 ardour_ui.cc:2692 ardour_ui.cc:2737 msgid "" "To ensure compatibility with various systems\n" @@ -1081,16 +626,6 @@ msgid "" "Things could be seriously messed up at this point" msgstr "" -#: ardour_ui.cc:2440 -#, fuzzy -msgid "Save Template" -msgstr "Zapisz szablon" - -#: ardour_ui.cc:2441 -#, fuzzy -msgid "Name for template:" -msgstr "Nazwa szablonu miksu:" - #: ardour_ui.cc:2442 msgid "-template" msgstr "-szablon" @@ -1105,20 +640,10 @@ msgstr "" "%1\n" "już istnieje. Otworzyć jÄ…?" -#: ardour_ui.cc:2490 -#, fuzzy -msgid "Open Existing Session" -msgstr "Otwieranie sesji" - #: ardour_ui.cc:2728 msgid "There is no existing session at \"%1\"" msgstr "" -#: ardour_ui.cc:2815 -#, fuzzy -msgid "Please wait while %1 loads your session" -msgstr "ProszÄ™ czekać. Trwa wczytywanie sesji..." - #: ardour_ui.cc:2830 msgid "Port Registration Error" msgstr "" @@ -1143,17 +668,6 @@ msgstr "" msgid "Could not create session in \"%1\"" msgstr "Nie udaÅ‚o siÄ™ utworzyć sesji w \"%1\"" -#: ardour_ui.cc:3041 -#, fuzzy -msgid "No files were ready for clean-up" -msgstr "Å»adne pliki dźwiÄ™kowe nie byÅ‚y gotowe do wyczyszczenia" - -#: ardour_ui.cc:3045 ardour_ui.cc:3055 ardour_ui.cc:3188 ardour_ui.cc:3195 -#: ardour_ui_ed.cc:104 -#, fuzzy -msgid "Clean-up" -msgstr "Wyczyść" - #: ardour_ui.cc:3046 msgid "" "If this seems suprising, \n" @@ -1212,32 +726,10 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ardour_ui.cc:3183 -#, fuzzy -msgid "Are you sure you want to clean-up?" -msgstr "Na pewno wyczyÅ›cić?" - -#: ardour_ui.cc:3190 -#, fuzzy -msgid "" -"Clean-up is a destructive operation.\n" -"ALL undo/redo information will be lost if you clean-up.\n" -"Clean-up will move all unused files to a \"dead\" location." -msgstr "" -"Czyszczenie powoduje usuniÄ™cie pewnych informacji.\n" -"WSZYSTKIE informacje cofnij/powtórz zostanÄ… usuniÄ™te w trakcie czyszczenia.\n" -"Po czyszczeniu nieużywane pliki audio zostanÄ… przeniesione do katalogu " -"\"dead sounds\"." - #: ardour_ui.cc:3198 msgid "CleanupDialog" msgstr "Okno dialogowe czyszczenia" -#: ardour_ui.cc:3228 -#, fuzzy -msgid "Cleaned Files" -msgstr "usuniÄ™te pliki" - #: ardour_ui.cc:3245 msgid "deleted file" msgstr "usuniÄ™ty plik" @@ -1251,16 +743,6 @@ msgstr "" msgid "Stop Video-Server" msgstr "" -#: ardour_ui.cc:3342 -#, fuzzy -msgid "Do you really want to stop the Video Server?" -msgstr "Na pewno usunąć %1 %2?" - -#: ardour_ui.cc:3345 -#, fuzzy -msgid "Yes, Stop It" -msgstr "Tak, usuÅ„ go." - #: ardour_ui.cc:3371 msgid "The Video Server is already started." msgstr "" @@ -1327,24 +809,6 @@ msgstr "" msgid "Crash Recovery" msgstr "" -#: ardour_ui.cc:3762 -#, fuzzy -msgid "" -"This session appears to have been in the\n" -"middle of recording when %1 or\n" -"the computer was shutdown.\n" -"\n" -"%1 can recover any captured audio for\n" -"you, or it can ignore it. Please decide\n" -"what you would like to do.\n" -msgstr "" -"Ta sesja byÅ‚a prawdopodobnie w trakcie\n" -"nagrywania, gdy ardour lub komputer\n" -"zostaÅ‚ niespodziewanie wyłączony.\n" -"\n" -"Ardour może przywrócić nagranie dla Ciebie.\n" -"Co chcesz zrobić?\n" - #: ardour_ui.cc:3774 msgid "Ignore crash data" msgstr "Ignorowanie dane z awarii" @@ -1403,11 +867,6 @@ msgstr "UI: nie można ustawić edytora" msgid "UI: cannot setup mixer" msgstr "UI: nie można ustawić miksera" -#: ardour_ui2.cc:82 -#, fuzzy -msgid "UI: cannot setup meterbridge" -msgstr "UI: nie można ustawić miksera" - #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "Odtwórz od poÅ‚ożenia gÅ‚owicy" @@ -1416,11 +875,6 @@ msgstr "Odtwórz od poÅ‚ożenia gÅ‚owicy" msgid "Stop playback" msgstr "Zatrzymaj odtwarzanie" -#: ardour_ui2.cc:132 -#, fuzzy -msgid "Toggle record" -msgstr "nagrywanie" - #: ardour_ui2.cc:133 msgid "Play range/selection" msgstr "Odtwórz zakres/zaznaczenie" @@ -1447,11 +901,6 @@ msgstr "" msgid "Return to last playback start when stopped" msgstr "Powróć do poczÄ…tku ostatniego odtwarzania przy zatrzymaniu" -#: ardour_ui2.cc:139 -#, fuzzy -msgid "Playhead follows Range Selections and Edits" -msgstr "GÅ‚owica do poczÄ…tku zakresu" - #: ardour_ui2.cc:140 msgid "Be sensible about input monitoring" msgstr "" @@ -1496,11 +945,6 @@ msgid "" "confirm; postfix the edit with '+' or '-' to enter delta times.\n" msgstr "" -#: ardour_ui2.cc:147 -#, fuzzy -msgid "Reset Level Meter" -msgstr "Resetuj obwiedniÄ™" - #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "[BÅAD]: " @@ -1545,21 +989,6 @@ msgstr "Ustawianie miksera" msgid "Reload Session History" msgstr "Wczytywanie historii sesji" -#: ardour_ui_dialogs.cc:242 -#, fuzzy -msgid "Don't close" -msgstr "Nie koÅ„cz" - -#: ardour_ui_dialogs.cc:243 -#, fuzzy -msgid "Just close" -msgstr "zamknij" - -#: ardour_ui_dialogs.cc:244 -#, fuzzy -msgid "Save and close" -msgstr "Zapisz i %1" - #: ardour_ui_dialogs.cc:340 msgid "This screen is not tall enough to display the mixer window" msgstr "" @@ -1613,11 +1042,6 @@ msgstr "Wtyczki" msgid "Metering" msgstr "Ustawienia metrum" -#: ardour_ui_ed.cc:117 -#, fuzzy -msgid "Fall Off Rate" -msgstr "Tempo zmniejszania" - #: ardour_ui_ed.cc:118 msgid "Hold Time" msgstr "Czas przytrzymania" @@ -1630,56 +1054,10 @@ msgstr "ObsÅ‚uga liczb zdenormalizowanych" msgid "New..." msgstr "" -#: ardour_ui_ed.cc:125 -#, fuzzy -msgid "Open..." -msgstr "Otwórz" - -#: ardour_ui_ed.cc:126 -#, fuzzy -msgid "Recent..." -msgstr "Poprzednia" - #: ardour_ui_ed.cc:127 panner_editor.cc:29 playlist_selector.cc:64 msgid "Close" msgstr "Zamknij" -#: ardour_ui_ed.cc:130 -#, fuzzy -msgid "Add Track or Bus..." -msgstr "Dodaj Å›cieżkÄ™/szynÄ™" - -#: ardour_ui_ed.cc:135 -#, fuzzy -msgid "Open Video" -msgstr "Otwieranie sesji" - -#: ardour_ui_ed.cc:138 -#, fuzzy -msgid "Remove Video" -msgstr "UsuÅ„ zakres" - -#: ardour_ui_ed.cc:141 -#, fuzzy -msgid "Export To Video File" -msgstr "SesjÄ™ do pliku dźwiÄ™kowego..." - -#: ardour_ui_ed.cc:145 -#, fuzzy -msgid "Snapshot..." -msgstr "Zrzut" - -#: ardour_ui_ed.cc:149 -#, fuzzy -msgid "Save As..." -msgstr "Zapisz szablon" - -#: ardour_ui_ed.cc:153 editor_actions.cc:1719 editor_markers.cc:858 -#: editor_snapshots.cc:123 mixer_strip.cc:1471 route_time_axis.cc:1485 -#, fuzzy -msgid "Rename..." -msgstr "ZmieÅ„ nazwÄ™" - #: ardour_ui_ed.cc:157 msgid "Save Template..." msgstr "Zapisz szablon" @@ -1696,31 +1074,11 @@ msgstr "" msgid "Import Metadata..." msgstr "" -#: ardour_ui_ed.cc:169 -#, fuzzy -msgid "Export To Audio File(s)..." -msgstr "SesjÄ™ do pliku dźwiÄ™kowego..." - -#: ardour_ui_ed.cc:172 -#, fuzzy -msgid "Stem export..." -msgstr "Eksportuj" - #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 #: export_video_dialog.cc:72 msgid "Export" msgstr "Eksportuj" -#: ardour_ui_ed.cc:178 -#, fuzzy -msgid "Clean-up Unused Sources..." -msgstr "Nieużywane zasoby" - -#: ardour_ui_ed.cc:182 -#, fuzzy -msgid "Flush Wastebasket" -msgstr "Opróżnij kosz" - #: ardour_ui_ed.cc:189 keyeditor.cc:253 rc_option_editor.cc:1472 msgid "JACK" msgstr "JACK" @@ -1746,26 +1104,6 @@ msgstr "ZakoÅ„cz" msgid "Maximise Editor Space" msgstr "Maksymalizacja edytora" -#: ardour_ui_ed.cc:227 -#, fuzzy -msgid "Show Toolbars" -msgstr "WyÅ›wietlanie logo" - -#: ardour_ui_ed.cc:230 mixer_ui.cc:1865 mixer_ui.cc:1871 -#, fuzzy -msgid "Window|Mixer" -msgstr "Okno" - -#: ardour_ui_ed.cc:231 -#, fuzzy -msgid "Toggle Editor+Mixer" -msgstr "Przełącz tryb edycji" - -#: ardour_ui_ed.cc:232 meterbridge.cc:230 meterbridge.cc:236 -#, fuzzy -msgid "Window|Meterbridge" -msgstr "Okno" - #: ardour_ui_ed.cc:234 midi_tracer.cc:39 msgid "MIDI Tracer" msgstr "" @@ -1774,16 +1112,6 @@ msgstr "" msgid "Chat" msgstr "" -#: ardour_ui_ed.cc:238 -#, fuzzy -msgid "Help|Manual" -msgstr "RÄ™cznie" - -#: ardour_ui_ed.cc:239 -#, fuzzy -msgid "Reference" -msgstr "Preferencje" - #: ardour_ui_ed.cc:241 plugin_ui.cc:418 msgid "Save" msgstr "Zapisz" @@ -1810,16 +1138,6 @@ msgstr "" msgid "Start/Stop" msgstr "Uruchom/Zatrzymaj" -#: ardour_ui_ed.cc:265 -#, fuzzy -msgid "Start/Continue/Stop" -msgstr "Uruchom/Zatrzymaj" - -#: ardour_ui_ed.cc:268 -#, fuzzy -msgid "Stop and Forget Capture" -msgstr "Zatrzymaj i usuÅ„ nagranie" - #: ardour_ui_ed.cc:278 msgid "Transition To Roll" msgstr "Do przodu" @@ -1832,16 +1150,6 @@ msgstr "Od tyÅ‚u" msgid "Play Loop Range" msgstr "Odtwórz zakres pÄ™tli" -#: ardour_ui_ed.cc:289 -#, fuzzy -msgid "Play Selected Range" -msgstr "Zaznacz zakres" - -#: ardour_ui_ed.cc:292 -#, fuzzy -msgid "Play Selection w/Preroll" -msgstr "Odtwórz zaznaczenie" - #: ardour_ui_ed.cc:296 msgid "Enable Record" msgstr "Włącz nagrywanie" @@ -1937,11 +1245,6 @@ msgstr "WyjÅ›cie" msgid "Punch In/Out" msgstr "We/wy przełącznika" -#: ardour_ui_ed.cc:365 -#, fuzzy -msgid "In/Out" -msgstr "We/wy przełącznika" - #: ardour_ui_ed.cc:368 rc_option_editor.cc:1071 msgid "Click" msgstr "Metronom" @@ -1954,21 +1257,6 @@ msgstr "WejÅ›cie dźwiÄ™ku" msgid "Auto Play" msgstr "Autoodtwarzanie" -#: ardour_ui_ed.cc:385 -#, fuzzy -msgid "Sync Startup to Video" -msgstr "Synchronizuj poczÄ…tek z wideo" - -#: ardour_ui_ed.cc:387 -#, fuzzy -msgid "Time Master" -msgstr "ZarzÄ…dzanie czasem" - -#: ardour_ui_ed.cc:394 -#, fuzzy -msgid "Toggle Record Enable Track %1" -msgstr "Przełącz nagrywanie Åšcieżki1" - #: ardour_ui_ed.cc:401 msgid "Percentage" msgstr "Procenty" @@ -1989,78 +1277,28 @@ msgstr "WysyÅ‚anie MMC" msgid "Use MMC" msgstr "Używanie MMC" -#: ardour_ui_ed.cc:412 rc_option_editor.cc:1710 -#, fuzzy -msgid "Send MIDI Clock" -msgstr "Sprzężenie zwrotne MIDI" - -#: ardour_ui_ed.cc:414 -#, fuzzy -msgid "Send MIDI Feedback" -msgstr "Sprzężenie zwrotne MIDI" - #: ardour_ui_ed.cc:420 msgid "Panic" msgstr "" -#: ardour_ui_ed.cc:560 -#, fuzzy -msgid "Wall Clock" -msgstr "Duży zegar" - #: ardour_ui_ed.cc:561 msgid "Disk Space" msgstr "" -#: ardour_ui_ed.cc:562 -#, fuzzy -msgid "DSP" -msgstr "LADSPA" - -#: ardour_ui_ed.cc:563 -#, fuzzy -msgid "Buffers" -msgstr "Rozmiar bufora" - #: ardour_ui_ed.cc:564 msgid "JACK Sampling Rate and Latency" msgstr "" -#: ardour_ui_ed.cc:565 -#, fuzzy -msgid "Timecode Format" -msgstr "Klatek na sekundÄ™ licznika czasu" - -#: ardour_ui_ed.cc:566 -#, fuzzy -msgid "File Format" -msgstr "Format pliku dźwiÄ™kowego" - #: ardour_ui_options.cc:65 msgid "" "It is not possible to use JACK as the the sync source\n" "when the pull up/down setting is non-zero." msgstr "" -#: ardour_ui_options.cc:321 -#, fuzzy -msgid "Internal" -msgstr "wewnÄ™trzny" - -#: ardour_ui_options.cc:482 -#, fuzzy -msgid "Enable/Disable external positional sync" -msgstr "Włącz/wyłącz metronom" - #: ardour_ui_options.cc:484 msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "" -#: audio_clock.cc:1012 audio_clock.cc:1031 -#, fuzzy -msgid "--pending--" -msgstr "RosnÄ…co" - #: audio_clock.cc:1083 msgid "SR" msgstr "" @@ -2102,26 +1340,11 @@ msgstr "Takty:Uderzenia" msgid "Minutes:Seconds" msgstr "Minuty i sekundy" -#: audio_clock.cc:2054 -#, fuzzy -msgid "Set From Playhead" -msgstr "Ustaw gÅ‚owicÄ™" - -#: audio_clock.cc:2055 -#, fuzzy -msgid "Locate to This Time" -msgstr "PrzenieÅ› tutaj" - #: audio_region_editor.cc:63 control_point_dialog.cc:49 rhythm_ferret.cc:125 #: rhythm_ferret.cc:130 rhythm_ferret.cc:135 msgid "dB" msgstr "" -#: audio_region_editor.cc:66 -#, fuzzy -msgid "Region gain:" -msgstr "Zmniejsz wzmocnienie" - #: audio_region_editor.cc:76 export_format_dialog.cc:43 msgid "dBFS" msgstr "" @@ -2130,11 +1353,6 @@ msgstr "" msgid "Peak amplitude:" msgstr "" -#: audio_region_editor.cc:90 -#, fuzzy -msgid "Calculating..." -msgstr "Anulowanie..." - #: audio_region_view.cc:1001 msgid "add gain control point" msgstr "dodaj punkt kontrolny wzmocnienia" @@ -2151,11 +1369,6 @@ msgstr "Panorama" msgid "automation event move" msgstr "przesuÅ„ zdarzenie automatyki" -#: automation_line.cc:462 automation_line.cc:483 -#, fuzzy -msgid "automation range move" -msgstr "przeciÄ…gnij zakres automatyki" - #: automation_line.cc:823 region_gain_line.cc:73 msgid "remove control point" msgstr "usuÅ„ punkt kontrolny" @@ -2164,11 +1377,6 @@ msgstr "usuÅ„ punkt kontrolny" msgid "Ignoring illegal points on AutomationLine \"%1\"" msgstr "" -#: automation_region_view.cc:160 automation_time_axis.cc:583 -#, fuzzy -msgid "add automation event" -msgstr "dodaj zdarzanie automatyzacji panoramy" - #: automation_time_axis.cc:146 msgid "automation state" msgstr "stan automatyki" @@ -2177,13 +1385,6 @@ msgstr "stan automatyki" msgid "hide track" msgstr "ukryj Å›cieżkÄ™" -#: automation_time_axis.cc:255 automation_time_axis.cc:307 -#: automation_time_axis.cc:496 gain_meter.cc:195 generic_pluginui.cc:456 -#: generic_pluginui.cc:746 panner_ui.cc:150 -#, fuzzy -msgid "Automation|Manual" -msgstr "Automatyka" - #: automation_time_axis.cc:257 automation_time_axis.cc:318 #: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 #: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 @@ -2225,11 +1426,6 @@ msgstr "Wyczyść" msgid "State" msgstr "Stan" -#: automation_time_axis.cc:531 -#, fuzzy -msgid "Discrete" -msgstr "Rozłącz" - #: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 #: editor.cc:1526 export_format_dialog.cc:476 msgid "Linear" @@ -2244,16 +1440,6 @@ msgstr "Tryb" msgid "Disassociate" msgstr "" -#: bundle_manager.cc:185 -#, fuzzy -msgid "Edit Bundle" -msgstr "Zmienianie przy użyciu:" - -#: bundle_manager.cc:200 -#, fuzzy -msgid "Direction:" -msgstr "Zaznaczenie" - #: bundle_manager.cc:205 bundle_manager.cc:209 mixer_strip.cc:158 #: mixer_strip.cc:2127 msgid "Input" @@ -2288,16 +1474,6 @@ msgstr "Utwórz" msgid "Bundle" msgstr "" -#: bundle_manager.cc:417 -#, fuzzy -msgid "Add Channel" -msgstr "3 kanaÅ‚y" - -#: bundle_manager.cc:424 -#, fuzzy -msgid "Rename Channel" -msgstr "ZmieÅ„ nazwÄ™ zakresu" - #: canvas-simpleline.c:111 canvas-simplerect.c:106 msgid "x1" msgstr "" @@ -2386,21 +1562,6 @@ msgstr "kolor rgba wypeÅ‚nienia" msgid "color of fill" msgstr "kolor wypeÅ‚nienia" -#: configinfo.cc:28 -#, fuzzy -msgid "Build Configuration" -msgstr "Konfiguracja kanałów" - -#: control_point_dialog.cc:33 -#, fuzzy -msgid "Control point" -msgstr "usuÅ„ punkt kontrolny" - -#: control_point_dialog.cc:45 -#, fuzzy -msgid "Value" -msgstr "Wartość nuty:" - #: edit_note_dialog.cc:42 msgid "Note" msgstr "" @@ -2425,12 +1586,6 @@ msgstr "" msgid "Set selected notes to this length" msgstr "" -#: edit_note_dialog.cc:58 midi_list_editor.cc:104 patch_change_dialog.cc:91 -#: step_entry.cc:393 -#, fuzzy -msgid "Channel" -msgstr "KanaÅ‚y" - #: edit_note_dialog.cc:68 msgid "Pitch" msgstr "" @@ -2439,42 +1594,10 @@ msgstr "" msgid "Velocity" msgstr "" -#: edit_note_dialog.cc:88 patch_change_dialog.cc:67 -#, fuzzy -msgid "Time" -msgstr "Zegar" - -#: edit_note_dialog.cc:98 editor_regions.cc:114 -#: export_timespan_selector.cc:359 export_timespan_selector.cc:421 -#: location_ui.cc:317 midi_list_editor.cc:114 time_info_box.cc:105 -#, fuzzy -msgid "Length" -msgstr "DÅ‚ugość:" - -#: edit_note_dialog.cc:165 -#, fuzzy -msgid "edit note" -msgstr "zmieÅ„ tempo" - #: editor.cc:137 editor.cc:3429 msgid "CD Frames" msgstr "Klatki CD" -#: editor.cc:138 editor.cc:3431 -#, fuzzy -msgid "Timecode Frames" -msgstr "Klatek na sekundÄ™ licznika czasu" - -#: editor.cc:139 editor.cc:3433 -#, fuzzy -msgid "Timecode Seconds" -msgstr "Klatek na sekundÄ™ licznika czasu" - -#: editor.cc:140 editor.cc:3435 -#, fuzzy -msgid "Timecode Minutes" -msgstr "Klatek na sekundÄ™ licznika czasu" - #: editor.cc:141 editor.cc:3437 msgid "Seconds" msgstr "Sekundy" @@ -2483,73 +1606,18 @@ msgstr "Sekundy" msgid "Minutes" msgstr "Minuty" -#: editor.cc:143 editor.cc:3413 quantize_dialog.cc:37 quantize_dialog.cc:141 -#, fuzzy -msgid "Beats/128" -msgstr "Uderzenia/8" - -#: editor.cc:144 editor.cc:3411 quantize_dialog.cc:38 quantize_dialog.cc:143 -#, fuzzy -msgid "Beats/64" -msgstr "Uderzenia/4" - #: editor.cc:145 editor.cc:3409 quantize_dialog.cc:39 quantize_dialog.cc:145 msgid "Beats/32" msgstr "Uderzenia/32" -#: editor.cc:146 editor.cc:3407 -#, fuzzy -msgid "Beats/28" -msgstr "Uderzenia/8" - -#: editor.cc:147 editor.cc:3405 -#, fuzzy -msgid "Beats/24" -msgstr "Uderzenia/4" - -#: editor.cc:148 editor.cc:3403 -#, fuzzy -msgid "Beats/20" -msgstr "Uderzenia/32" - #: editor.cc:149 editor.cc:3401 quantize_dialog.cc:40 quantize_dialog.cc:147 msgid "Beats/16" msgstr "Uderzenia/16" -#: editor.cc:150 editor.cc:3399 -#, fuzzy -msgid "Beats/14" -msgstr "Uderzenia/4" - -#: editor.cc:151 editor.cc:3397 -#, fuzzy -msgid "Beats/12" -msgstr "Uderzenia/16" - -#: editor.cc:152 editor.cc:3395 -#, fuzzy -msgid "Beats/10" -msgstr "Uderzenia/16" - #: editor.cc:153 editor.cc:3393 quantize_dialog.cc:41 quantize_dialog.cc:149 msgid "Beats/8" msgstr "Uderzenia/8" -#: editor.cc:154 editor.cc:3391 -#, fuzzy -msgid "Beats/7" -msgstr "Uderzenia/8" - -#: editor.cc:155 editor.cc:3389 -#, fuzzy -msgid "Beats/6" -msgstr "Uderzenia/16" - -#: editor.cc:156 editor.cc:3387 -#, fuzzy -msgid "Beats/5" -msgstr "Uderzenia/8" - #: editor.cc:157 editor.cc:3385 quantize_dialog.cc:42 quantize_dialog.cc:151 msgid "Beats/4" msgstr "Uderzenia/4" @@ -2558,11 +1626,6 @@ msgstr "Uderzenia/4" msgid "Beats/3" msgstr "Uderzenia/3" -#: editor.cc:159 editor.cc:3381 quantize_dialog.cc:44 quantize_dialog.cc:155 -#, fuzzy -msgid "Beats/2" -msgstr "Uderzenia/32" - #: editor.cc:160 editor.cc:3415 quantize_dialog.cc:45 quantize_dialog.cc:157 msgid "Beats" msgstr "Uderzenia" @@ -2692,25 +1755,10 @@ msgstr "tryb" msgid "Regions" msgstr "Obszar" -#: editor.cc:543 -#, fuzzy -msgid "Tracks & Busses" -msgstr "Åšcieżki/szyny" - #: editor.cc:544 msgid "Snapshots" msgstr "Zrzuty" -#: editor.cc:545 -#, fuzzy -msgid "Track & Bus Groups" -msgstr "Åšcieżki/szyny" - -#: editor.cc:546 -#, fuzzy -msgid "Ranges & Marks" -msgstr "Znaczniki zakresu" - #: editor.cc:690 editor.cc:5345 rc_option_editor.cc:1294 #: rc_option_editor.cc:1302 rc_option_editor.cc:1310 rc_option_editor.cc:1318 #: rc_option_editor.cc:1335 rc_option_editor.cc:1337 rc_option_editor.cc:1345 @@ -2780,11 +1828,6 @@ msgstr "Zamroź" msgid "Unfreeze" msgstr "Odmroź" -#: editor.cc:1816 -#, fuzzy -msgid "Selected Regions" -msgstr "Zaznaczone obszary" - #: editor.cc:1852 editor_markers.cc:895 msgid "Play Range" msgstr "Odtwórz zakres" @@ -2793,138 +1836,43 @@ msgstr "Odtwórz zakres" msgid "Loop Range" msgstr "ZapÄ™tl zakres" -#: editor.cc:1862 editor_actions.cc:332 -#, fuzzy -msgid "Move Range Start to Previous Region Boundary" -msgstr "Do granicy poprzedniego obszaru" - -#: editor.cc:1869 editor_actions.cc:339 -#, fuzzy -msgid "Move Range Start to Next Region Boundary" -msgstr "Do granicy nastÄ™pnego obszaru" - -#: editor.cc:1876 editor_actions.cc:346 -#, fuzzy -msgid "Move Range End to Previous Region Boundary" -msgstr "Do granicy poprzedniego obszaru" - -#: editor.cc:1883 editor_actions.cc:353 -#, fuzzy -msgid "Move Range End to Next Region Boundary" -msgstr "Do granicy nastÄ™pnego obszaru" - -#: editor.cc:1889 -#, fuzzy -msgid "Convert to Region In-Place" -msgstr "Do poczÄ…tku obszaru" - -#: editor.cc:1890 -#, fuzzy -msgid "Convert to Region in Region List" -msgstr "Do poczÄ…tku obszaru" - #: editor.cc:1893 editor_markers.cc:925 msgid "Select All in Range" msgstr "Wszystko w zakresie" -#: editor.cc:1896 -#, fuzzy -msgid "Set Loop from Range" -msgstr "Ustaw zakres pÄ™tli" - -#: editor.cc:1897 -#, fuzzy -msgid "Set Punch from Range" -msgstr "Ustaw zakres przełącznika" - #: editor.cc:1900 msgid "Add Range Markers" msgstr "Dodaj znaczniki zakresu" -#: editor.cc:1903 -#, fuzzy -msgid "Crop Region to Range" -msgstr "Przytnij obszar do zakresu" - -#: editor.cc:1904 -#, fuzzy -msgid "Fill Range with Region" -msgstr "WypeÅ‚nij zakres obszarem" - #: editor.cc:1905 editor_actions.cc:289 msgid "Duplicate Range" msgstr "Duplikuj" -#: editor.cc:1908 -#, fuzzy -msgid "Consolidate Range" -msgstr "Duplikuj" - #: editor.cc:1909 msgid "Consolidate Range With Processing" msgstr "" -#: editor.cc:1910 -#, fuzzy -msgid "Bounce Range to Region List" -msgstr "Do poczÄ…tku obszaru" - #: editor.cc:1911 msgid "Bounce Range to Region List With Processing" msgstr "" -#: editor.cc:1912 editor_markers.cc:908 -#, fuzzy -msgid "Export Range..." -msgstr "Eksport zakresu" - #: editor.cc:1927 editor.cc:2008 editor_actions.cc:281 msgid "Play From Edit Point" msgstr "Od punktu edycji" -#: editor.cc:1928 editor.cc:2009 -#, fuzzy -msgid "Play From Start" -msgstr "Od poczÄ…tku" - -#: editor.cc:1929 -#, fuzzy -msgid "Play Region" -msgstr "Obszar" - #: editor.cc:1931 msgid "Loop Region" msgstr "ZapÄ™tl obszar" -#: editor.cc:1941 editor.cc:2018 -#, fuzzy -msgid "Select All in Track" -msgstr "Całą Å›cieżkÄ™" - #: editor.cc:1942 editor.cc:2019 editor_actions.cc:185 #: export_timespan_selector.cc:53 processor_box.cc:2237 msgid "Select All" msgstr "Wszystko" -#: editor.cc:1943 editor.cc:2020 -#, fuzzy -msgid "Invert Selection in Track" -msgstr "Odwróć zaznaczenie Å›cieżki" - #: editor.cc:1944 editor.cc:2021 editor_actions.cc:187 msgid "Invert Selection" msgstr "Odwróć zaznaczenie" -#: editor.cc:1946 -#, fuzzy -msgid "Set Range to Loop Range" -msgstr "Ustaw zakres jako zakres pÄ™tli" - -#: editor.cc:1947 -#, fuzzy -msgid "Set Range to Punch Range" -msgstr "Ustaw zakres jako zakres przełącznika" - #: editor.cc:1949 editor.cc:2023 editor_actions.cc:188 msgid "Select All After Edit Point" msgstr "Wszystko za punktem edycji" @@ -2941,21 +1889,6 @@ msgstr "Wszystko za gÅ‚owicÄ…" msgid "Select All Before Playhead" msgstr "Wszystko przed gÅ‚owicÄ…" -#: editor.cc:1953 -#, fuzzy -msgid "Select All Between Playhead and Edit Point" -msgstr "Wszystko miÄ™dzy gÅ‚owicÄ… a punktem edycji" - -#: editor.cc:1954 -#, fuzzy -msgid "Select All Within Playhead and Edit Point" -msgstr "Wszystko w obrÄ™bie gÅ‚owicy i punktu edycji" - -#: editor.cc:1955 -#, fuzzy -msgid "Select Range Between Playhead and Edit Point" -msgstr "Ustaw zakres miÄ™dzy gÅ‚owicÄ… a punktem edycji" - #: editor.cc:1957 editor.cc:2028 editor_actions.cc:127 editor_actions.cc:128 msgid "Select" msgstr "Zaznacz" @@ -2984,31 +1917,6 @@ msgstr "Wyrównaj relatywnie" msgid "Insert Selected Region" msgstr "Wstaw zaznaczony obszar" -#: editor.cc:1980 -#, fuzzy -msgid "Insert Existing Media" -msgstr "Wstaw istniejÄ…cy plik" - -#: editor.cc:1989 editor.cc:2045 -#, fuzzy -msgid "Nudge Entire Track Later" -msgstr "Pchnij całą Å›cieżkÄ™ do przodu" - -#: editor.cc:1990 editor.cc:2046 -#, fuzzy -msgid "Nudge Track After Edit Point Later" -msgstr "Pchnij Å›cieżkÄ™ za punktem edycji do przodu" - -#: editor.cc:1991 editor.cc:2047 -#, fuzzy -msgid "Nudge Entire Track Earlier" -msgstr "Pchnij całą Å›cieżkÄ™ do przodu" - -#: editor.cc:1992 editor.cc:2048 -#, fuzzy -msgid "Nudge Track After Edit Point Earlier" -msgstr "Pchnij Å›cieżkÄ™ za punktem edycji do przodu" - #: editor.cc:1994 editor.cc:2050 msgid "Nudge" msgstr "Pchnij" @@ -3017,34 +1925,14 @@ msgstr "Pchnij" msgid "Smart Mode (add Range functions to Object mode)" msgstr "" -#: editor.cc:3071 -#, fuzzy -msgid "Object Mode (select/move Objects)" -msgstr "Zaznacza i przesuwa obiekty" - -#: editor.cc:3072 -#, fuzzy -msgid "Range Mode (select/move Ranges)" -msgstr "Zaznacza i przesuwa obiekty" - #: editor.cc:3073 msgid "Draw/Edit MIDI Notes" msgstr "" -#: editor.cc:3074 -#, fuzzy -msgid "Draw Region Gain" -msgstr "Zmniejsz wzmocnienie" - #: editor.cc:3075 msgid "Select Zoom Range" msgstr "Ustawia zakres powiÄ™kszania" -#: editor.cc:3076 -#, fuzzy -msgid "Stretch/Shrink Regions and MIDI Notes" -msgstr "RozciÄ…ga i kurczy obszary" - #: editor.cc:3077 msgid "Listen to Specific Regions" msgstr "Odtwarza okreÅ›lone obszary" @@ -3059,16 +1947,6 @@ msgid "" "Context-click for other operations" msgstr "" -#: editor.cc:3080 -#, fuzzy -msgid "Nudge Region/Selection Later" -msgstr "Pchnij obszar/zaznaczenie w przód" - -#: editor.cc:3081 -#, fuzzy -msgid "Nudge Region/Selection Earlier" -msgstr "Pchnij obszar/zaznaczenie w przód" - #: editor.cc:3082 editor_actions.cc:242 msgid "Zoom In" msgstr "PowiÄ™ksz" @@ -3085,16 +1963,6 @@ msgstr "Dopasuj do sesji" msgid "Zoom focus" msgstr "PowiÄ™kszanie do" -#: editor.cc:3086 -#, fuzzy -msgid "Expand Tracks" -msgstr "Åšcieżki" - -#: editor.cc:3087 -#, fuzzy -msgid "Shrink Tracks" -msgstr "Inne Å›cieżki" - #: editor.cc:3088 msgid "Snap/Grid Units" msgstr "" @@ -3103,11 +1971,6 @@ msgstr "" msgid "Snap/Grid Mode" msgstr "Tryb przyciÄ…gania" -#: editor.cc:3091 -#, fuzzy -msgid "Edit Mode" -msgstr "Tryb dźwiÄ™ku" - #: editor.cc:3092 msgid "" "Nudge Clock\n" @@ -3118,16 +1981,6 @@ msgstr "" msgid "malformed URL passed to drag-n-drop code" msgstr "" -#: editor.cc:3256 editor_actions.cc:291 -#, fuzzy -msgid "Command|Undo" -msgstr "Komenda " - -#: editor.cc:3258 -#, fuzzy -msgid "Command|Undo (%1)" -msgstr "Cofnij (%1)" - #: editor.cc:3265 editor_actions.cc:292 msgid "Redo" msgstr "Powtórz" @@ -3140,16 +1993,6 @@ msgstr "Powtórz (%1)" msgid "Duplicate" msgstr "Powiel" -#: editor.cc:3287 -#, fuzzy -msgid "Number of duplications:" -msgstr "Liczba duplikatów:" - -#: editor.cc:3864 -#, fuzzy -msgid "Playlist Deletion" -msgstr "Odtwórz zaznaczenie" - #: editor.cc:3865 msgid "" "Playlist %1 is currently unused.\n" @@ -3157,16 +2000,6 @@ msgid "" "If it is deleted, audio files used by it alone will be cleaned." msgstr "" -#: editor.cc:3875 -#, fuzzy -msgid "Delete Playlist" -msgstr "UsuÅ„ listÄ™ odtwarzania" - -#: editor.cc:3876 -#, fuzzy -msgid "Keep Playlist" -msgstr "Zachowaj listÄ™ odtwarzania" - #: editor.cc:3877 editor_audio_import.cc:581 editor_ops.cc:5856 #: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 msgid "Cancel" @@ -3184,16 +2017,6 @@ msgstr "skopiuj listy odtwarzania" msgid "clear playlists" msgstr "wyczyść listy odtwarzania" -#: editor.cc:4687 -#, fuzzy -msgid "Please wait while %1 loads visual data." -msgstr "ProszÄ™ czekać na wczytanie danych wizualnych" - -#: editor.cc:5492 editor_markers.cc:940 panner_ui.cc:393 processor_box.cc:2253 -#, fuzzy -msgid "Edit..." -msgstr "Edycja" - #: editor_actions.cc:88 msgid "Autoconnect" msgstr "Automatyczne łączenie" @@ -3222,11 +2045,6 @@ msgstr "Punkt edycji" msgid "Fade" msgstr "PrzejÅ›cia" -#: editor_actions.cc:96 -#, fuzzy -msgid "Latch" -msgstr "Opóźnienie" - #: editor_actions.cc:97 editor_regions.cc:111 region_editor.cc:46 msgid "Region" msgstr "Obszar" @@ -3253,13 +2071,6 @@ msgstr "Wzmocnienie" msgid "Ranges" msgstr "Zakresy" -#: editor_actions.cc:104 editor_actions.cc:1790 session_option_editor.cc:145 -#: session_option_editor.cc:147 session_option_editor.cc:156 -#: session_option_editor.cc:163 -#, fuzzy -msgid "Fades" -msgstr "PrzejÅ›cia" - #: editor_actions.cc:107 msgid "Link" msgstr "ÅÄ…cze" @@ -3268,11 +2079,6 @@ msgstr "ÅÄ…cze" msgid "Zoom Focus" msgstr "PowiÄ™kszanie do" -#: editor_actions.cc:109 -#, fuzzy -msgid "Locate to Markers" -msgstr "Znaczniki poÅ‚ożenia" - #: editor_actions.cc:110 editor_actions.cc:539 msgid "Markers" msgstr "Znaczniki" @@ -3285,11 +2091,6 @@ msgstr "Zmniejszanie metrum" msgid "Meter hold" msgstr "Przytrzymanie metrum" -#: editor_actions.cc:113 session_option_editor.cc:234 -#, fuzzy -msgid "MIDI Options" -msgstr "Różne" - #: editor_actions.cc:114 msgid "Misc Options" msgstr "Różne" @@ -3319,11 +2120,6 @@ msgstr "Operacje na obszarach" msgid "Rulers" msgstr "Linijki" -#: editor_actions.cc:124 -#, fuzzy -msgid "Views" -msgstr "Widok" - #: editor_actions.cc:125 msgid "Scroll" msgstr "Przewijanie" @@ -3373,29 +2169,14 @@ msgstr "" msgid "Show Editor Mixer" msgstr "Mikser obok edytora" -#: editor_actions.cc:151 -#, fuzzy -msgid "Show Editor List" -msgstr "Edytor" - #: editor_actions.cc:153 msgid "Playhead to Next Region Boundary" msgstr "Do granicy nastÄ™pnego obszaru" -#: editor_actions.cc:154 -#, fuzzy -msgid "Playhead to Next Region Boundary (No Track Selection)" -msgstr "Do granicy nastÄ™pnego obszaru" - #: editor_actions.cc:155 msgid "Playhead to Previous Region Boundary" msgstr "Do granicy poprzedniego obszaru" -#: editor_actions.cc:156 -#, fuzzy -msgid "Playhead to Previous Region Boundary (No Track Selection)" -msgstr "Do granicy poprzedniego obszaru" - #: editor_actions.cc:158 msgid "Playhead to Next Region Start" msgstr "Do poczÄ…tku nastÄ™pnego obszaru" @@ -3420,66 +2201,6 @@ msgstr "Do koÅ„ca poprzedniego obszaru" msgid "Playhead to Previous Region Sync" msgstr "Do poprzedniej synchronizacji obszaru" -#: editor_actions.cc:166 -#, fuzzy -msgid "To Next Region Boundary" -msgstr "Do granic nastÄ™pnego obszaru" - -#: editor_actions.cc:167 -#, fuzzy -msgid "To Next Region Boundary (No Track Selection)" -msgstr "Do granic nastÄ™pnego obszaru" - -#: editor_actions.cc:168 -#, fuzzy -msgid "To Previous Region Boundary" -msgstr "Do granic poprzedniego obszaru" - -#: editor_actions.cc:169 -#, fuzzy -msgid "To Previous Region Boundary (No Track Selection)" -msgstr "Do granic poprzedniego obszaru" - -#: editor_actions.cc:171 -#, fuzzy -msgid "To Next Region Start" -msgstr "Do poczÄ…tku nastÄ™pnego obszaru" - -#: editor_actions.cc:172 -#, fuzzy -msgid "To Next Region End" -msgstr "Do koÅ„ca nastÄ™pnego obszaru" - -#: editor_actions.cc:173 -#, fuzzy -msgid "To Next Region Sync" -msgstr "Do nastÄ™pnej synchronizacji obszaru" - -#: editor_actions.cc:175 -#, fuzzy -msgid "To Previous Region Start" -msgstr "Do poczÄ…tku poprzedniego obszaru" - -#: editor_actions.cc:176 -#, fuzzy -msgid "To Previous Region End" -msgstr "Do koÅ„ca poprzedniego obszaru" - -#: editor_actions.cc:177 -#, fuzzy -msgid "To Previous Region Sync" -msgstr "Do poprzedniej synchronizacji obszaru" - -#: editor_actions.cc:179 -#, fuzzy -msgid "To Range Start" -msgstr "Do poczÄ…tku zakresu" - -#: editor_actions.cc:180 -#, fuzzy -msgid "To Range End" -msgstr "Do koÅ„ca zakresu" - #: editor_actions.cc:182 msgid "Playhead to Range Start" msgstr "GÅ‚owica do poczÄ…tku zakresu" @@ -3492,21 +2213,6 @@ msgstr "GÅ‚owica do koÅ„ca zakresu" msgid "Deselect All" msgstr "Nic" -#: editor_actions.cc:191 -#, fuzzy -msgid "Select All Overlapping Edit Range" -msgstr "Wszystko w zakresie" - -#: editor_actions.cc:192 -#, fuzzy -msgid "Select All Inside Edit Range" -msgstr "Wszystko w zakresie" - -#: editor_actions.cc:194 -#, fuzzy -msgid "Select Edit Range" -msgstr "Zaznacz zakres" - #: editor_actions.cc:196 msgid "Select All in Punch Range" msgstr "Wszystko w zakresie przełącznika" @@ -3515,74 +2221,14 @@ msgstr "Wszystko w zakresie przełącznika" msgid "Select All in Loop Range" msgstr "Wszystko w zakresie pÄ™tli" -#: editor_actions.cc:199 -#, fuzzy -msgid "Select Next Track or Bus" -msgstr "Zaznacz nastÄ™pnÄ… Å›cieżkÄ™/szynÄ™" - -#: editor_actions.cc:200 -#, fuzzy -msgid "Select Previous Track or Bus" -msgstr "Zaznacz poprzedniÄ… Å›cieżkÄ™/szynÄ™" - -#: editor_actions.cc:202 -#, fuzzy -msgid "Toggle Record Enable" -msgstr "Przełącz nagrywanie Åšcieżki1" - -#: editor_actions.cc:204 -#, fuzzy -msgid "Toggle Solo" -msgstr "nagrywanie" - -#: editor_actions.cc:206 -#, fuzzy -msgid "Toggle Mute" -msgstr "Przełącz aktywność" - -#: editor_actions.cc:208 -#, fuzzy -msgid "Toggle Solo Isolate" -msgstr "Bezpieczne solo" - -#: editor_actions.cc:213 -#, fuzzy -msgid "Save View %1" -msgstr "Zapisz i %1" - #: editor_actions.cc:219 msgid "Goto View %1" msgstr "" -#: editor_actions.cc:225 -#, fuzzy -msgid "Locate to Mark %1" -msgstr "Przejdź do znacznika 1" - -#: editor_actions.cc:229 -#, fuzzy -msgid "Jump to Next Mark" -msgstr "Do nastÄ™pnego znacznika" - -#: editor_actions.cc:230 -#, fuzzy -msgid "Jump to Previous Mark" -msgstr "Do przełącznika" - #: editor_actions.cc:231 msgid "Add Mark from Playhead" msgstr "Dodaj znacznik w poÅ‚ożeniu gÅ‚owicy" -#: editor_actions.cc:233 -#, fuzzy -msgid "Nudge Next Later" -msgstr "Pchnij nastÄ™pny do przodu" - -#: editor_actions.cc:234 -#, fuzzy -msgid "Nudge Next Earlier" -msgstr "Pchnij nastÄ™pny do przodu" - #: editor_actions.cc:236 msgid "Nudge Playhead Forward" msgstr "Do przodu" @@ -3591,16 +2237,6 @@ msgstr "Do przodu" msgid "Nudge Playhead Backward" msgstr "Do tyÅ‚u" -#: editor_actions.cc:238 -#, fuzzy -msgid "Playhead To Next Grid" -msgstr "Do koÅ„ca nastÄ™pnego obszaru" - -#: editor_actions.cc:239 -#, fuzzy -msgid "Playhead To Previous Grid" -msgstr "Do koÅ„ca poprzedniego obszaru" - #: editor_actions.cc:244 msgid "Zoom to Region" msgstr "PowiÄ™kszanie do obszaru" @@ -3613,26 +2249,6 @@ msgstr "" msgid "Toggle Zoom State" msgstr "" -#: editor_actions.cc:248 -#, fuzzy -msgid "Expand Track Height" -msgstr "Åšcieżki" - -#: editor_actions.cc:249 -#, fuzzy -msgid "Shrink Track Height" -msgstr "Inne Å›cieżki" - -#: editor_actions.cc:251 -#, fuzzy -msgid "Move Selected Tracks Up" -msgstr "PrzenieÅ› znacznik" - -#: editor_actions.cc:253 -#, fuzzy -msgid "Move Selected Tracks Down" -msgstr "PrzesuÅ„ Å›cieżki w dół" - #: editor_actions.cc:256 msgid "Scroll Tracks Up" msgstr "PrzewiÅ„ Å›cieżki do góry" @@ -3661,11 +2277,6 @@ msgstr "PrzewiÅ„ do przodu" msgid "Center Playhead" msgstr "WyÅ›rodkuj" -#: editor_actions.cc:268 -#, fuzzy -msgid "Center Edit Point" -msgstr "Ustaw punkt edycji" - #: editor_actions.cc:270 msgid "Playhead Forward" msgstr "GÅ‚owica do przodu" @@ -3674,36 +2285,6 @@ msgstr "GÅ‚owica do przodu" msgid "Playhead Backward" msgstr "GÅ‚owica do tyÅ‚u" -#: editor_actions.cc:273 -#, fuzzy -msgid "Playhead to Active Mark" -msgstr "Do wskaźnika" - -#: editor_actions.cc:274 -#, fuzzy -msgid "Active Mark to Playhead" -msgstr "Do gÅ‚owicy" - -#: editor_actions.cc:276 -#, fuzzy -msgid "Set Loop from Edit Range" -msgstr "Ustaw pÄ™tlÄ™ w zaznaczeniu" - -#: editor_actions.cc:277 -#, fuzzy -msgid "Set Punch from Edit Range" -msgstr "Ustaw przełącznik w zaznaczeniu" - -#: editor_actions.cc:280 -#, fuzzy -msgid "Play Selected Regions" -msgstr "Zaznaczone obszary" - -#: editor_actions.cc:282 -#, fuzzy -msgid "Play from Edit Point and Return" -msgstr "Od punktu edycji i powróć" - #: editor_actions.cc:284 msgid "Play Edit Range" msgstr "Zaznaczenie" @@ -3716,49 +2297,14 @@ msgstr "Do kursora myszy" msgid "Active Marker to Mouse" msgstr "Do kursora myszy" -#: editor_actions.cc:294 -#, fuzzy -msgid "Export Audio" -msgstr "Eksportuj obszar" - #: editor_actions.cc:295 export_dialog.cc:406 msgid "Export Range" msgstr "Eksport zakresu" -#: editor_actions.cc:300 -#, fuzzy -msgid "Separate Using Punch Range" -msgstr "Oddziel obszar w zakresie" - -#: editor_actions.cc:303 -#, fuzzy -msgid "Separate Using Loop Range" -msgstr "Oddziel obszar w zakresie" - #: editor_actions.cc:306 editor_actions.cc:323 msgid "Crop" msgstr "Przytnij" -#: editor_actions.cc:315 -#, fuzzy -msgid "Set Tempo from Edit Range = Bar" -msgstr "Ustaw tempo od zaznaczenie=takt" - -#: editor_actions.cc:317 -#, fuzzy -msgid "Log" -msgstr "DÅ‚ugo" - -#: editor_actions.cc:320 -#, fuzzy -msgid "Move Later to Transient" -msgstr "Do nastÄ™pnego przejÅ›cia" - -#: editor_actions.cc:321 -#, fuzzy -msgid "Move Earlier to Transient" -msgstr "Do nastÄ™pnego przejÅ›cia" - #: editor_actions.cc:325 msgid "Start Range" msgstr "Rozpocznij zakres" @@ -3767,11 +2313,6 @@ msgstr "Rozpocznij zakres" msgid "Finish Range" msgstr "ZakoÅ„cz zakres" -#: editor_actions.cc:327 -#, fuzzy -msgid "Finish Add Range" -msgstr "ZakoÅ„cz dodawanie zakresu" - #: editor_actions.cc:357 msgid "Follow Playhead" msgstr "Podążanie za gÅ‚owicÄ…" @@ -3780,11 +2321,6 @@ msgstr "Podążanie za gÅ‚owicÄ…" msgid "Remove Last Capture" msgstr "UsuÅ„ ostatnie nagranie" -#: editor_actions.cc:360 -#, fuzzy -msgid "Stationary Playhead" -msgstr "Do gÅ‚owicy" - #: editor_actions.cc:362 insert_time_dialog.cc:32 msgid "Insert Time" msgstr "Czas wstawienia" @@ -3799,11 +2335,6 @@ msgstr "Przełącz aktywność" msgid "Remove" msgstr "UsuÅ„" -#: editor_actions.cc:374 -#, fuzzy -msgid "Fit Selected Tracks" -msgstr "do zaznaczonych Å›cieżek" - #: editor_actions.cc:376 time_axis_view.cc:1302 msgid "Largest" msgstr "NajwiÄ™kszy" @@ -3844,16 +2375,6 @@ msgstr "Do gÅ‚owicy" msgid "Zoom Focus Mouse" msgstr "Do kursora myszy" -#: editor_actions.cc:402 -#, fuzzy -msgid "Zoom Focus Edit Point" -msgstr "Do wskaźnika" - -#: editor_actions.cc:404 -#, fuzzy -msgid "Next Zoom Focus" -msgstr "PowiÄ™kszanie do" - #: editor_actions.cc:410 msgid "Smart Object Mode" msgstr "" @@ -3870,11 +2391,6 @@ msgstr "NarzÄ™dzie obiektów" msgid "Range Tool" msgstr "NarzÄ™dzie zakresów" -#: editor_actions.cc:429 -#, fuzzy -msgid "Note Drawing Tool" -msgstr "NarzÄ™dzie wzmocnienia" - #: editor_actions.cc:435 msgid "Gain Tool" msgstr "NarzÄ™dzie wzmocnienia" @@ -3883,35 +2399,10 @@ msgstr "NarzÄ™dzie wzmocnienia" msgid "Zoom Tool" msgstr "NarzÄ™dzie powiÄ™kszenia" -#: editor_actions.cc:447 -#, fuzzy -msgid "Audition Tool" -msgstr "OdsÅ‚uch" - -#: editor_actions.cc:453 -#, fuzzy -msgid "Time FX Tool" -msgstr "NarzÄ™dzie rozciÄ…gania w czasie" - #: editor_actions.cc:459 msgid "Step Mouse Mode" msgstr "" -#: editor_actions.cc:461 -#, fuzzy -msgid "Edit MIDI" -msgstr "Edycja" - -#: editor_actions.cc:472 -#, fuzzy -msgid "Change Edit Point" -msgstr "ZmieÅ„ punkt edycji" - -#: editor_actions.cc:473 -#, fuzzy -msgid "Change Edit Point Including Marker" -msgstr "ZmieÅ„ punkt edycji (w/Marker)" - #: editor_actions.cc:475 msgid "Splice" msgstr "Klocek" @@ -3929,29 +2420,14 @@ msgstr "Zablokuj" msgid "Toggle Edit Mode" msgstr "Przełącz tryb edycji" -#: editor_actions.cc:481 -#, fuzzy -msgid "Snap to" -msgstr "PrzyciÄ…ganie" - #: editor_actions.cc:482 msgid "Snap Mode" msgstr "Tryb przyciÄ…gania" -#: editor_actions.cc:489 -#, fuzzy -msgid "Next Snap Mode" -msgstr "Tryb przyciÄ…gania" - #: editor_actions.cc:490 msgid "Next Snap Choice" msgstr "" -#: editor_actions.cc:491 -#, fuzzy -msgid "Next Musical Snap Choice" -msgstr "Tryb przyciÄ…gania" - #: editor_actions.cc:492 msgid "Previous Snap Choice" msgstr "" @@ -3960,161 +2436,6 @@ msgstr "" msgid "Previous Musical Snap Choice" msgstr "" -#: editor_actions.cc:498 -#, fuzzy -msgid "Snap to CD Frame" -msgstr "PrzyciÄ…gaj do klatek" - -#: editor_actions.cc:499 -#, fuzzy -msgid "Snap to Timecode Frame" -msgstr "Do klatek cd" - -#: editor_actions.cc:500 -#, fuzzy -msgid "Snap to Timecode Seconds" -msgstr "Do sekund" - -#: editor_actions.cc:501 -#, fuzzy -msgid "Snap to Timecode Minutes" -msgstr "Do minut" - -#: editor_actions.cc:502 -#, fuzzy -msgid "Snap to Seconds" -msgstr "Do sekund" - -#: editor_actions.cc:503 -#, fuzzy -msgid "Snap to Minutes" -msgstr "Do minut" - -#: editor_actions.cc:505 -#, fuzzy -msgid "Snap to One Twenty Eighths" -msgstr "Do ósemek" - -#: editor_actions.cc:506 -#, fuzzy -msgid "Snap to Sixty Fourths" -msgstr "PrzyciÄ…gaj do wskaźnika" - -#: editor_actions.cc:507 -#, fuzzy -msgid "Snap to Thirty Seconds" -msgstr "Do trzydziestodwójek" - -#: editor_actions.cc:508 -#, fuzzy -msgid "Snap to Twenty Eighths" -msgstr "Do ósemek" - -#: editor_actions.cc:509 -#, fuzzy -msgid "Snap to Twenty Fourths" -msgstr "PrzyciÄ…gaj do wskaźnika" - -#: editor_actions.cc:510 -#, fuzzy -msgid "Snap to Twentieths" -msgstr "Do ósemek" - -#: editor_actions.cc:511 -#, fuzzy -msgid "Snap to Sixteenths" -msgstr "Do szesnastek" - -#: editor_actions.cc:512 -#, fuzzy -msgid "Snap to Fourteenths" -msgstr "Do ćwierćnut" - -#: editor_actions.cc:513 -#, fuzzy -msgid "Snap to Twelfths" -msgstr "Do ósemek" - -#: editor_actions.cc:514 -#, fuzzy -msgid "Snap to Tenths" -msgstr "Do ósemek" - -#: editor_actions.cc:515 -#, fuzzy -msgid "Snap to Eighths" -msgstr "Do ósemek" - -#: editor_actions.cc:516 -#, fuzzy -msgid "Snap to Sevenths" -msgstr "Do ósemek" - -#: editor_actions.cc:517 -#, fuzzy -msgid "Snap to Sixths" -msgstr "Do ósemek" - -#: editor_actions.cc:518 -#, fuzzy -msgid "Snap to Fifths" -msgstr "Do ósemek" - -#: editor_actions.cc:519 -#, fuzzy -msgid "Snap to Quarters" -msgstr "Do ćwierćnut" - -#: editor_actions.cc:520 -#, fuzzy -msgid "Snap to Thirds" -msgstr "Do trzeciej części nuty" - -#: editor_actions.cc:521 -#, fuzzy -msgid "Snap to Halves" -msgstr "PrzyciÄ…gaj do klatek" - -#: editor_actions.cc:523 -#, fuzzy -msgid "Snap to Beat" -msgstr "Do uderzeÅ„" - -#: editor_actions.cc:524 -#, fuzzy -msgid "Snap to Bar" -msgstr "Do taktów" - -#: editor_actions.cc:525 -#, fuzzy -msgid "Snap to Mark" -msgstr "Do znaczników" - -#: editor_actions.cc:526 -#, fuzzy -msgid "Snap to Region Start" -msgstr "Do poczÄ…tku obszaru" - -#: editor_actions.cc:527 -#, fuzzy -msgid "Snap to Region End" -msgstr "Do koÅ„ca obszaru" - -#: editor_actions.cc:528 -#, fuzzy -msgid "Snap to Region Sync" -msgstr "Do synchronizacji obszaru" - -#: editor_actions.cc:529 -#, fuzzy -msgid "Snap to Region Boundary" -msgstr "Do granic obszaru" - -#: editor_actions.cc:531 -#, fuzzy -msgid "Show Marker Lines" -msgstr "Linie" - #: editor_actions.cc:541 msgid "Loop/Punch" msgstr "PÄ™tla/przełącznik" @@ -4123,44 +2444,14 @@ msgstr "PÄ™tla/przełącznik" msgid "Min:Sec" msgstr "Minuty i sekundy" -#: editor_actions.cc:547 editor_actions.cc:550 -#, fuzzy -msgid "Video Monitor" -msgstr "Monitorowanie" - #: editor_actions.cc:549 rc_option_editor.cc:1842 msgid "Video" msgstr "" -#: editor_actions.cc:552 -#, fuzzy -msgid "Always on Top" -msgstr "PrzenieÅ› na wierzch" - -#: editor_actions.cc:554 -#, fuzzy -msgid "Frame number" -msgstr "zmieÅ„ nazwÄ™ znacznika" - -#: editor_actions.cc:555 -#, fuzzy -msgid "Timecode Background" -msgstr "Klatek na sekundÄ™ licznika czasu" - #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" -#: editor_actions.cc:557 -#, fuzzy -msgid "Letterbox" -msgstr "lepsza" - -#: editor_actions.cc:558 -#, fuzzy -msgid "Original Size" -msgstr "Pozycja poczÄ…tkowa" - #: editor_actions.cc:608 msgid "Sort" msgstr "Sortuj" @@ -4173,11 +2464,6 @@ msgstr "OdsÅ‚uch" msgid "Show All" msgstr "WyÅ›wietl wszystko" -#: editor_actions.cc:620 -#, fuzzy -msgid "Show Automatic Regions" -msgstr "WyÅ›wietl obszary automatyczne" - #: editor_actions.cc:622 msgid "Ascending" msgstr "RosnÄ…co" @@ -4226,32 +2512,12 @@ msgstr "WedÅ‚ug daty utworzenia pliku źródÅ‚owego" msgid "By Source Filesystem" msgstr "WedÅ‚ug systemu plików źródÅ‚a" -#: editor_actions.cc:648 -#, fuzzy -msgid "Remove Unused" -msgstr "UsuÅ„" - #: editor_actions.cc:652 editor_audio_import.cc:279 #: session_import_dialog.cc:74 session_import_dialog.cc:94 #: session_metadata_dialog.cc:297 editor_videotimeline.cc:108 msgid "Import" msgstr "Importuj" -#: editor_actions.cc:655 -#, fuzzy -msgid "Import to Region List..." -msgstr "Do poczÄ…tku obszaru" - -#: editor_actions.cc:658 session_import_dialog.cc:43 -#, fuzzy -msgid "Import From Session" -msgstr "Ekspor sesji" - -#: editor_actions.cc:661 -#, fuzzy -msgid "Show Summary" -msgstr "WyÅ›wietl wszystko" - #: editor_actions.cc:663 msgid "Show Group Tabs" msgstr "" @@ -4286,76 +2552,26 @@ msgstr "błąd programowania: %1: %2" msgid "Raise" msgstr "" -#: editor_actions.cc:1725 -#, fuzzy -msgid "Raise to Top" -msgstr "PrzenieÅ› na wierzch" - #: editor_actions.cc:1728 gtk-custom-ruler.c:132 msgid "Lower" msgstr "" -#: editor_actions.cc:1731 -#, fuzzy -msgid "Lower to Bottom" -msgstr "PrzenieÅ› na spód" - -#: editor_actions.cc:1734 -#, fuzzy -msgid "Move to Original Position" -msgstr "PrzenieÅ› do pozycji poczÄ…tkowej" - #: editor_actions.cc:1739 msgid "Lock to Video" msgstr "" -#: editor_actions.cc:1744 editor_markers.cc:867 -#, fuzzy -msgid "Glue to Bars and Beats" -msgstr "Przyklejenie do taktów i uderzeÅ„" - -#: editor_actions.cc:1749 -#, fuzzy -msgid "Remove Sync" -msgstr "usuÅ„ synchronizacjÄ™" - #: editor_actions.cc:1752 mixer_strip.cc:1904 route_time_axis.cc:209 msgid "Mute" msgstr "Wyciszenie" -#: editor_actions.cc:1755 -#, fuzzy -msgid "Normalize..." -msgstr "Normalizuj" - #: editor_actions.cc:1758 msgid "Reverse" msgstr "Odwróć" -#: editor_actions.cc:1761 -#, fuzzy -msgid "Make Mono Regions" -msgstr "Ustaw obszary mono" - -#: editor_actions.cc:1764 -#, fuzzy -msgid "Boost Gain" -msgstr "ZwiÄ™ksz wzmocnienie" - -#: editor_actions.cc:1767 -#, fuzzy -msgid "Cut Gain" -msgstr "Zmniejsz wzmocnienie" - #: editor_actions.cc:1770 msgid "Pitch Shift..." msgstr "" -#: editor_actions.cc:1773 -#, fuzzy -msgid "Transpose..." -msgstr "Transponuj" - #: editor_actions.cc:1776 msgid "Opaque" msgstr "MÄ™tna" @@ -4368,11 +2584,6 @@ msgstr "Stopniowe wzmocnienie" msgid "Fade Out" msgstr "Stopniowe wyciszenie" -#: editor_actions.cc:1800 -#, fuzzy -msgid "Multi-Duplicate..." -msgstr "Powiel" - #: editor_actions.cc:1805 msgid "Fill Track" msgstr "WypeÅ‚nij Å›cieżkÄ™" @@ -4381,45 +2592,10 @@ msgstr "WypeÅ‚nij Å›cieżkÄ™" msgid "Set Loop Range" msgstr "Ustaw zakres pÄ™tli" -#: editor_actions.cc:1816 -#, fuzzy -msgid "Set Punch" -msgstr "Ustaw zakres przełącznika" - -#: editor_actions.cc:1820 -#, fuzzy -msgid "Add Single Range Marker" -msgstr "Dodaj znaczniki zakresu" - -#: editor_actions.cc:1825 -#, fuzzy -msgid "Add Range Marker Per Region" -msgstr "Dodaj znaczniki zakresu" - -#: editor_actions.cc:1829 -#, fuzzy -msgid "Snap Position To Grid" -msgstr "Do taktów" - -#: editor_actions.cc:1832 -#, fuzzy -msgid "Close Gaps" -msgstr "Zamknij" - #: editor_actions.cc:1835 msgid "Rhythm Ferret..." msgstr "" -#: editor_actions.cc:1838 -#, fuzzy -msgid "Export..." -msgstr "Eksportuj" - -#: editor_actions.cc:1844 -#, fuzzy -msgid "Separate Under" -msgstr "Oddziel" - #: editor_actions.cc:1848 msgid "Set Fade In Length" msgstr "ZmieÅ„ dÅ‚ugość stopniowego wzmocnienia" @@ -4428,21 +2604,6 @@ msgstr "ZmieÅ„ dÅ‚ugość stopniowego wzmocnienia" msgid "Set Fade Out Length" msgstr "ZmieÅ„ dÅ‚ugość stopniowego wyciszenia" -#: editor_actions.cc:1850 -#, fuzzy -msgid "Set Tempo from Region = Bar" -msgstr "Ustaw tempo od obszar=takt" - -#: editor_actions.cc:1855 -#, fuzzy -msgid "Split at Percussion Onsets" -msgstr "WystÄ…pienie perkusji" - -#: editor_actions.cc:1860 -#, fuzzy -msgid "List Editor..." -msgstr "Ustawianie edytora" - #: editor_actions.cc:1863 msgid "Properties..." msgstr "" @@ -4463,29 +2624,14 @@ msgstr "" msgid "Uncombine" msgstr "" -#: editor_actions.cc:1872 -#, fuzzy -msgid "Spectral Analysis..." -msgstr "Analiza spektrum" - #: editor_actions.cc:1874 msgid "Reset Envelope" msgstr "Resetuj obwiedniÄ™" -#: editor_actions.cc:1876 -#, fuzzy -msgid "Reset Gain" -msgstr "Resetuj wszystko" - #: editor_actions.cc:1881 msgid "Envelope Active" msgstr "Włącz obwiedniÄ™" -#: editor_actions.cc:1885 -#, fuzzy -msgid "Quantize..." -msgstr "Format pliku" - #: editor_actions.cc:1886 editor_actions.cc:1887 msgid "Insert Patch Change..." msgstr "" @@ -4502,56 +2648,6 @@ msgstr "" msgid "Set Range Selection" msgstr "Ustaw zakres zaznaczenia" -#: editor_actions.cc:1892 -#, fuzzy -msgid "Nudge Later" -msgstr "Do przodu" - -#: editor_actions.cc:1893 -#, fuzzy -msgid "Nudge Earlier" -msgstr "Do przodu" - -#: editor_actions.cc:1898 -#, fuzzy -msgid "Nudge Later by Capture Offset" -msgstr "Do przodu wg wyrównania nagrania" - -#: editor_actions.cc:1905 -#, fuzzy -msgid "Nudge Earlier by Capture Offset" -msgstr "Do przodu wg wyrównania nagrania" - -#: editor_actions.cc:1909 -#, fuzzy -msgid "Trim to Loop" -msgstr "Do pÄ™tli" - -#: editor_actions.cc:1910 -#, fuzzy -msgid "Trim to Punch" -msgstr "Do przełącznika" - -#: editor_actions.cc:1912 -#, fuzzy -msgid "Trim to Previous" -msgstr "Do przełącznika" - -#: editor_actions.cc:1913 -#, fuzzy -msgid "Trim to Next" -msgstr "przytnij do zaznaczenia" - -#: editor_actions.cc:1920 -#, fuzzy -msgid "Insert Region From Region List" -msgstr "Do poczÄ…tku obszaru" - -#: editor_actions.cc:1926 -#, fuzzy -msgid "Set Sync Position" -msgstr "Ustaw pozycjÄ™ synchronizacji" - #: editor_actions.cc:1927 msgid "Place Transient" msgstr "" @@ -4560,46 +2656,6 @@ msgstr "" msgid "Split" msgstr "Podziel" -#: editor_actions.cc:1929 -#, fuzzy -msgid "Trim Start at Edit Point" -msgstr "PoczÄ…tek do punktu edycji" - -#: editor_actions.cc:1930 -#, fuzzy -msgid "Trim End at Edit Point" -msgstr "Podziel w punkcie edycji" - -#: editor_actions.cc:1935 -#, fuzzy -msgid "Align Start" -msgstr "Wyrównaj relatywnie" - -#: editor_actions.cc:1942 -#, fuzzy -msgid "Align Start Relative" -msgstr "Wyrównaj relatywnie" - -#: editor_actions.cc:1946 -#, fuzzy -msgid "Align End" -msgstr "Wyrównaj" - -#: editor_actions.cc:1951 -#, fuzzy -msgid "Align End Relative" -msgstr "Wyrównaj relatywnie" - -#: editor_actions.cc:1958 -#, fuzzy -msgid "Align Sync" -msgstr "Wyrównaj" - -#: editor_actions.cc:1965 -#, fuzzy -msgid "Align Sync Relative" -msgstr "Wyrównaj relatywnie" - #: editor_actions.cc:1969 editor_actions.cc:1972 msgid "Choose Top..." msgstr "" @@ -4610,11 +2666,6 @@ msgstr "" "Nie możesz importować lub osadzać pliku dźwiÄ™kowego dopóki nie wczytasz " "sesji." -#: editor_audio_import.cc:83 editor_audio_import.cc:127 -#, fuzzy -msgid "Add Existing Media" -msgstr "Dodaj istniejÄ…cy plik dźwiÄ™kowy" - #: editor_audio_import.cc:177 msgid "" "The session already contains a source file named %1. Do you want to import " @@ -4647,12 +2698,6 @@ msgstr "Nie osadzaj tego" msgid "Embed all without questions" msgstr "Osadź wszystko bez zadawania pytaÅ„" -#: editor_audio_import.cc:556 editor_audio_import.cc:585 -#: export_format_dialog.cc:58 -#, fuzzy -msgid "Sample rate" -msgstr "CzÄ™stotliwość próbkowania:" - #: editor_audio_import.cc:557 editor_audio_import.cc:586 msgid "" "%1\n" @@ -4670,11 +2715,6 @@ msgstr "Osadź mimo to" msgid "fixed time region drag" msgstr "" -#: editor_drag.cc:1700 -#, fuzzy -msgid "Video Start:" -msgstr "Wyrównaj relatywnie" - #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -4715,11 +2755,6 @@ msgstr "przesuÅ„ znacznik" msgid "An error occurred while executing time stretch operation" msgstr "" -#: editor_drag.cc:4011 -#, fuzzy -msgid "programming_error: %1" -msgstr "błąd programowania: %1" - #: editor_drag.cc:4081 editor_markers.cc:680 msgid "new range marker" msgstr "nowy znacznik zakresu" @@ -4728,76 +2763,26 @@ msgstr "nowy znacznik zakresu" msgid "rubberband selection" msgstr "" -#: editor_route_groups.cc:66 -#, fuzzy -msgid "No Selection = All Tracks?" -msgstr "Całą Å›cieżkÄ™" - -#: editor_route_groups.cc:95 -#, fuzzy -msgid "Col" -msgstr "Kolor" - -#: editor_route_groups.cc:95 -#, fuzzy -msgid "Group Tab Color" -msgstr "Åšcieżka" - -#: editor_route_groups.cc:96 -#, fuzzy -msgid "Name of Group" -msgstr "Brak grupy" - #: editor_route_groups.cc:97 editor_routes.cc:203 msgid "V" msgstr "" -#: editor_route_groups.cc:97 -#, fuzzy -msgid "Group is visible?" -msgstr "PrzejÅ›cia krzyżowe" - -#: editor_route_groups.cc:98 -#, fuzzy -msgid "On" -msgstr "Otwórz" - #: editor_route_groups.cc:98 msgid "Group is enabled?" msgstr "" -#: editor_route_groups.cc:99 -#, fuzzy -msgid "group|G" -msgstr "Brak grupy" - #: editor_route_groups.cc:99 msgid "Sharing Gain?" msgstr "" -#: editor_route_groups.cc:100 -#, fuzzy -msgid "relative|Rel" -msgstr "Wyrównaj relatywnie" - #: editor_route_groups.cc:100 msgid "Relative Gain Changes?" msgstr "" -#: editor_route_groups.cc:101 -#, fuzzy -msgid "mute|M" -msgstr "WyÅ‚. wyciszenie" - #: editor_route_groups.cc:101 msgid "Sharing Mute?" msgstr "" -#: editor_route_groups.cc:102 -#, fuzzy -msgid "solo|S" -msgstr "zmiana ustawienia solo" - #: editor_route_groups.cc:102 msgid "Sharing Solo?" msgstr "" @@ -4811,31 +2796,6 @@ msgstr "Nagr" msgid "Sharing Record-enable Status?" msgstr "" -#: editor_route_groups.cc:104 -#, fuzzy -msgid "monitoring|Mon" -msgstr "Monitorowanie" - -#: editor_route_groups.cc:104 -#, fuzzy -msgid "Sharing Monitoring Choice?" -msgstr "Monitorowanie" - -#: editor_route_groups.cc:105 -#, fuzzy -msgid "selection|Sel" -msgstr "Zaznaczenie" - -#: editor_route_groups.cc:105 -#, fuzzy -msgid "Sharing Selected/Editing Status?" -msgstr "do zaznaczonych Å›cieżek" - -#: editor_route_groups.cc:106 -#, fuzzy -msgid "active|A" -msgstr "Aktywne" - #: editor_route_groups.cc:106 msgid "Sharing Active Status?" msgstr "" @@ -4858,97 +2818,27 @@ msgstr "bez nazwy" msgid "programming error: marker canvas item has no marker object pointer!" msgstr "" -#: editor_export_audio.cc:143 editor_export_audio.cc:148 -#, fuzzy -msgid "File Exists!" -msgstr "Pliki" - -#: editor_export_audio.cc:151 -#, fuzzy -msgid "Overwrite Existing File" -msgstr "Wstaw istniejÄ…cy plik" - -#: editor_group_tabs.cc:162 -#, fuzzy -msgid "Fit to Window" -msgstr "Okno" - #: editor_markers.cc:129 msgid "start" msgstr "" -#: editor_markers.cc:130 -#, fuzzy -msgid "end" -msgstr "PrzewiÅ„ do tyÅ‚u" - #: editor_markers.cc:646 editor_ops.cc:1744 editor_ops.cc:1764 #: editor_ops.cc:1788 editor_ops.cc:1815 location_ui.cc:1017 msgid "add marker" msgstr "dodaj znacznik" -#: editor_markers.cc:677 -#, fuzzy -msgid "range" -msgstr " zakres" - #: editor_markers.cc:713 location_ui.cc:852 msgid "remove marker" msgstr "usuÅ„ znacznik" -#: editor_markers.cc:849 -#, fuzzy -msgid "Locate to Here" -msgstr "PrzenieÅ› tutaj" - -#: editor_markers.cc:850 -#, fuzzy -msgid "Play from Here" -msgstr "Odtwórz stÄ…d" - #: editor_markers.cc:851 msgid "Move Mark to Playhead" msgstr "PrzesuÅ„ znacznik do gÅ‚owicy" -#: editor_markers.cc:855 -#, fuzzy -msgid "Create Range to Next Marker" -msgstr "Znaczniki zakresu" - -#: editor_markers.cc:896 -#, fuzzy -msgid "Locate to Marker" -msgstr "Znaczniki poÅ‚ożenia" - -#: editor_markers.cc:897 -#, fuzzy -msgid "Play from Marker" -msgstr "Odtwórz stÄ…d" - -#: editor_markers.cc:900 -#, fuzzy -msgid "Set Marker from Playhead" -msgstr "PrzenieÅ› znacznik zakresu do gÅ‚owicy" - -#: editor_markers.cc:902 -#, fuzzy -msgid "Set Range from Selection" -msgstr "Ustaw zakres wedÅ‚ug zaznaczenia" - -#: editor_markers.cc:905 -#, fuzzy -msgid "Zoom to Range" -msgstr "PowiÄ™kszanie do obszaru" - #: editor_markers.cc:912 msgid "Hide Range" msgstr "Ukryj zakres" -#: editor_markers.cc:913 -#, fuzzy -msgid "Rename Range..." -msgstr "ZmieÅ„ nazwÄ™ zakresu" - #: editor_markers.cc:917 msgid "Remove Range" msgstr "UsuÅ„ zakres" @@ -5008,11 +2898,6 @@ msgid "" "pointer!" msgstr "" -#: editor_mouse.cc:2416 -#, fuzzy -msgid "start point trim" -msgstr "Punkt poczÄ…tkowy przyciÄ™cia" - #: editor_mouse.cc:2441 msgid "End point trim" msgstr "Punkt koÅ„cowy przyciÄ™cia" @@ -5025,11 +2910,6 @@ msgstr "Nazwa obszaru:" msgid "split" msgstr "podziel" -#: editor_ops.cc:256 -#, fuzzy -msgid "alter selection" -msgstr "rozszerz zanaczenie" - #: editor_ops.cc:298 msgid "nudge regions forward" msgstr "pchnij obszary do przodu" @@ -5046,25 +2926,10 @@ msgstr "pchnij obszar do tyÅ‚u" msgid "nudge forward" msgstr "pchnij do przodu" -#: editor_ops.cc:492 -#, fuzzy -msgid "nudge backward" -msgstr "Do tyÅ‚u" - #: editor_ops.cc:557 msgid "build_region_boundary_cache called with snap_type = %1" msgstr "" -#: editor_ops.cc:1701 -#, fuzzy -msgid "New Location Marker" -msgstr "Nowy znacznik poÅ‚ożenia" - -#: editor_ops.cc:1788 -#, fuzzy -msgid "add markers" -msgstr "dodaj znacznik" - #: editor_ops.cc:1894 msgid "clear markers" msgstr "wyczyść znaczniki" @@ -5085,41 +2950,6 @@ msgstr "wstaw przeciÄ…gniÄ™ty obszar" msgid "insert region" msgstr "wstaw obszar" -#: editor_ops.cc:2261 -#, fuzzy -msgid "raise regions" -msgstr "Normalizuj" - -#: editor_ops.cc:2263 -#, fuzzy -msgid "raise region" -msgstr "PrzesuÅ„ do przodu" - -#: editor_ops.cc:2269 -#, fuzzy -msgid "raise regions to top" -msgstr "Do poczÄ…tku obszaru" - -#: editor_ops.cc:2271 -#, fuzzy -msgid "raise region to top" -msgstr "PrzesuÅ„ do przodu" - -#: editor_ops.cc:2277 -#, fuzzy -msgid "lower regions" -msgstr "PrzesuÅ„ do tyÅ‚u" - -#: editor_ops.cc:2279 editor_ops.cc:2287 -#, fuzzy -msgid "lower region" -msgstr "PrzesuÅ„ do tyÅ‚u" - -#: editor_ops.cc:2285 -#, fuzzy -msgid "lower regions to bottom" -msgstr "PrzenieÅ› na spód" - #: editor_ops.cc:2370 msgid "Rename Region" msgstr "ZmieÅ„ nazwÄ™ obszaru" @@ -5132,11 +2962,6 @@ msgstr "Nazwa:" msgid "separate" msgstr "oddziel" -#: editor_ops.cc:2795 -#, fuzzy -msgid "separate region under" -msgstr "Oddziel obszar w zakresie" - #: editor_ops.cc:2916 msgid "trim to selection" msgstr "przytnij do zaznaczenia" @@ -5145,21 +2970,6 @@ msgstr "przytnij do zaznaczenia" msgid "set sync point" msgstr "ustaw punkt synchronizacji" -#: editor_ops.cc:3076 -#, fuzzy -msgid "remove region sync" -msgstr "usuÅ„ obszar" - -#: editor_ops.cc:3098 -#, fuzzy -msgid "move regions to original position" -msgstr "PrzenieÅ› do pozycji poczÄ…tkowej" - -#: editor_ops.cc:3100 -#, fuzzy -msgid "move region to original position" -msgstr "PrzenieÅ› do pozycji poczÄ…tkowej" - #: editor_ops.cc:3121 msgid "align selection" msgstr "" @@ -5188,11 +2998,6 @@ msgstr "przytnij do pÄ™tli" msgid "trim to punch" msgstr "przytnij do przełącznika" -#: editor_ops.cc:3382 -#, fuzzy -msgid "trim to region" -msgstr "przyciÄ™ty obszar" - #: editor_ops.cc:3492 msgid "" "This track/bus cannot be frozen because the signal adds or loses channels " @@ -5201,11 +3006,6 @@ msgid "" "input or vice versa." msgstr "" -#: editor_ops.cc:3495 -#, fuzzy -msgid "Cannot freeze" -msgstr "Anuluj zamrożenie" - #: editor_ops.cc:3501 msgid "" "%1\n" @@ -5215,21 +3015,6 @@ msgid "" "Freezing will only process the signal as far as the first send/insert/return." msgstr "" -#: editor_ops.cc:3505 -#, fuzzy -msgid "Freeze anyway" -msgstr "Zamroź" - -#: editor_ops.cc:3506 -#, fuzzy -msgid "Don't freeze" -msgstr "Anuluj zamrożenie" - -#: editor_ops.cc:3507 -#, fuzzy -msgid "Freeze Limits" -msgstr "Zamroź" - #: editor_ops.cc:3522 msgid "Cancel Freeze" msgstr "Anuluj zamrożenie" @@ -5251,11 +3036,6 @@ msgstr "" msgid "bounce range" msgstr "zgraj zakres" -#: editor_ops.cc:3678 -#, fuzzy -msgid "delete" -msgstr "UsuÅ„" - #: editor_ops.cc:3681 msgid "cut" msgstr "wytnij" @@ -5305,11 +3085,6 @@ msgstr "Nie usuwaj niczego" msgid "Yes, destroy it." msgstr "Tak, usuÅ„ go." -#: editor_ops.cc:4512 -#, fuzzy -msgid "Destroy last capture" -msgstr "Potwierdzanie usuwania ostatniego nagrania" - #: editor_ops.cc:4573 msgid "normalize" msgstr "normalizuj" @@ -5322,40 +3097,10 @@ msgstr "odwróć obszary" msgid "strip silence" msgstr "" -#: editor_ops.cc:4763 -#, fuzzy -msgid "Fork Region(s)" -msgstr "Zablokuj" - #: editor_ops.cc:4963 msgid "reset region gain" msgstr "zresetuj wzmocnienie obszaru" -#: editor_ops.cc:5016 -#, fuzzy -msgid "region gain envelope active" -msgstr "Włącz obwiedniÄ™" - -#: editor_ops.cc:5043 -#, fuzzy -msgid "toggle region lock" -msgstr "wycisz obszar" - -#: editor_ops.cc:5067 -#, fuzzy -msgid "Toggle Video Lock" -msgstr "wycisz obszar" - -#: editor_ops.cc:5091 -#, fuzzy -msgid "region lock style" -msgstr "wypeÅ‚nienie obszaru" - -#: editor_ops.cc:5116 -#, fuzzy -msgid "change region opacity" -msgstr "zmieÅ„ dÅ‚ugość obszaru" - #: editor_ops.cc:5231 msgid "set fade in length" msgstr "zmieÅ„ dÅ‚ugość stopniowego wzmocnienia" @@ -5458,27 +3203,6 @@ msgstr "" msgid "place transient" msgstr "" -#: editor_ops.cc:6160 -#, fuzzy -msgid "snap regions to grid" -msgstr "Do poczÄ…tku obszaru" - -#: editor_ops.cc:6199 -#, fuzzy -msgid "Close Region Gaps" -msgstr "ZwiÄ™ksz wzmocnienie" - -#: editor_ops.cc:6204 -#, fuzzy -msgid "Crossfade length" -msgstr "PrzejÅ›cie krzyżowe" - -#: editor_ops.cc:6213 editor_ops.cc:6224 rhythm_ferret.cc:120 -#: session_option_editor.cc:153 -#, fuzzy -msgid "ms" -msgstr "w" - #: editor_ops.cc:6215 msgid "Pull-back length" msgstr "" @@ -5487,11 +3211,6 @@ msgstr "" msgid "Ok" msgstr "" -#: editor_ops.cc:6243 -#, fuzzy -msgid "close region gaps" -msgstr "zresetuj wzmocnienie obszaru" - #: editor_ops.cc:6461 route_ui.cc:1456 msgid "That would be bad news ...." msgstr "" @@ -5522,34 +3241,6 @@ msgstr "szyny" msgid "bus" msgstr "szyna" -#: editor_ops.cc:6496 -#, fuzzy -msgid "" -"Do you really want to remove %1 %2 and %3 %4?\n" -"(You may also lose the playlists associated with the %2)\n" -"\n" -"This action cannot be undone, and the session file will be overwritten!" -msgstr "" -"Na pewno usunąć %1 %2 i %3 %4?\n" -"\n" -"Można również utracić listy odtwarzania powiÄ…zane z %2)\n" -"\n" -"Tej operacji nie można cofnąć!" - -#: editor_ops.cc:6501 -#, fuzzy -msgid "" -"Do you really want to remove %1 %2?\n" -"(You may also lose the playlists associated with the %2)\n" -"\n" -"This action cannot be undone, and the session file will be overwritten!" -msgstr "" -"Na pewno usunąć %1 %2?\n" -"\n" -"Można również utracić listy odtwarzania powiÄ…zane z %2)\n" -"\n" -"Tej operacji nie można cofnąć!" - #: editor_ops.cc:6507 msgid "" "Do you really want to remove %1 %2?\n" @@ -5565,11 +3256,6 @@ msgstr "Tak, usuÅ„ je." msgid "Yes, remove it." msgstr "Tak, usuÅ„." -#: editor_ops.cc:6521 editor_ops.cc:6523 -#, fuzzy -msgid "Remove %1" -msgstr "UsuÅ„" - #: editor_ops.cc:6582 msgid "insert time" msgstr "wstaw czas" @@ -5583,48 +3269,18 @@ msgstr "" msgid "Saved view %u" msgstr "" -#: editor_ops.cc:6864 -#, fuzzy -msgid "mute regions" -msgstr "wycisz obszar" - #: editor_ops.cc:6866 msgid "mute region" msgstr "wycisz obszar" -#: editor_ops.cc:6903 -#, fuzzy -msgid "combine regions" -msgstr "Normalizuj" - -#: editor_ops.cc:6941 -#, fuzzy -msgid "uncombine regions" -msgstr "Normalizuj" - #: editor_regions.cc:111 msgid "Region name, with number of channels in []'s" msgstr "" -#: editor_regions.cc:112 -#, fuzzy -msgid "Position of start of region" -msgstr "Przejdź do poczÄ…tku sesji" - #: editor_regions.cc:113 editor_regions.cc:849 time_info_box.cc:98 msgid "End" msgstr "" -#: editor_regions.cc:113 -#, fuzzy -msgid "Position of end of region" -msgstr "Przejdź do koÅ„ca sesji" - -#: editor_regions.cc:114 -#, fuzzy -msgid "Length of the region" -msgstr "usuÅ„ obszar" - #: editor_regions.cc:115 msgid "Position of region sync point, relative to start of the region" msgstr "" @@ -5642,16 +3298,6 @@ msgstr "" msgid "L" msgstr "" -#: editor_regions.cc:118 -#, fuzzy -msgid "Region position locked?" -msgstr "WedÅ‚ug pozycji obszaru" - -#: editor_regions.cc:119 -#, fuzzy -msgid "G" -msgstr "Przejdź" - #: editor_regions.cc:119 msgid "Region position glued to Bars|Beats time?" msgstr "" @@ -5662,11 +3308,6 @@ msgstr "" msgid "M" msgstr "" -#: editor_regions.cc:120 -#, fuzzy -msgid "Region muted?" -msgstr "Koniec obszaru" - #: editor_regions.cc:121 msgid "O" msgstr "" @@ -5679,30 +3320,6 @@ msgstr "" msgid "Hidden" msgstr "Ukryte" -#: editor_regions.cc:389 -#, fuzzy -msgid "(MISSING) " -msgstr "(BRAK)" - -#: editor_regions.cc:457 -#, fuzzy -msgid "" -"Do you really want to remove unused regions?\n" -"(This is destructive and cannot be undone)" -msgstr "" -"Na pewno usunąć ostatnie nagranie?\n" -"(Ta operacja nie może zostać cofniÄ™ta)" - -#: editor_regions.cc:461 -#, fuzzy -msgid "Yes, remove." -msgstr "Tak, usuÅ„." - -#: editor_regions.cc:463 -#, fuzzy -msgid "Remove unused regions" -msgstr "PrzenieÅ› przyklejone obszary" - #: editor_regions.cc:816 editor_regions.cc:830 editor_regions.cc:844 msgid "Mult." msgstr "" @@ -5712,90 +3329,20 @@ msgstr "" msgid "Start" msgstr "" -#: editor_regions.cc:865 editor_regions.cc:881 -#, fuzzy -msgid "Multiple" -msgstr "Powiel" - -#: editor_regions.cc:950 -#, fuzzy -msgid "MISSING " -msgstr "(BRAK)" - -#: editor_routes.cc:178 editor_routes.cc:210 -#, fuzzy -msgid "SS" -msgstr "SCMS" - -#: editor_routes.cc:202 -#, fuzzy -msgid "Track/Bus Name" -msgstr "Åšcieżki/szyny" - -#: editor_routes.cc:203 -#, fuzzy -msgid "Track/Bus visible ?" -msgstr "Åšcieżki/szyny" - #: editor_routes.cc:204 mixer_strip.cc:1945 meter_strip.cc:334 #: route_time_axis.cc:2407 msgid "A" msgstr "" -#: editor_routes.cc:204 -#, fuzzy -msgid "Track/Bus active ?" -msgstr "Åšcieżki/szyny" - -#: editor_routes.cc:205 mixer_strip.cc:1932 -#, fuzzy -msgid "I" -msgstr "WejÅ›cie" - -#: editor_routes.cc:205 -#, fuzzy -msgid "MIDI input enabled" -msgstr "WejÅ›cia" - #: editor_routes.cc:206 mixer_strip.cc:1930 mono_panner.cc:198 #: stereo_panner.cc:215 stereo_panner.cc:242 msgid "R" msgstr "" -#: editor_routes.cc:206 -#, fuzzy -msgid "Record enabled" -msgstr "Tylko nagrywanie" - -#: editor_routes.cc:207 -#, fuzzy -msgid "Muted" -msgstr "Wyciszenie" - #: editor_routes.cc:208 mixer_strip.cc:1941 meter_strip.cc:330 msgid "S" msgstr "" -#: editor_routes.cc:208 -#, fuzzy -msgid "Soloed" -msgstr "Solo" - -#: editor_routes.cc:209 -#, fuzzy -msgid "SI" -msgstr "WejÅ›cie" - -#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1880 -#, fuzzy -msgid "Solo Isolated" -msgstr "Bezpieczne solo" - -#: editor_routes.cc:210 -#, fuzzy -msgid "Solo Safe (Locked)" -msgstr "Bezpieczne solo" - #: editor_routes.cc:471 mixer_ui.cc:1162 msgid "Hide All" msgstr "Ukryj wszystko" @@ -5816,16 +3363,6 @@ msgstr "WyÅ›wietl wszystkie szyny audio" msgid "Hide All Audio Busses" msgstr "Ukryj wszystkie szyny audio" -#: editor_routes.cc:476 -#, fuzzy -msgid "Show All Midi Tracks" -msgstr "WyÅ›wietl wszystkie Å›cieżki audio" - -#: editor_routes.cc:477 -#, fuzzy -msgid "Hide All Midi Tracks" -msgstr "Ukryj wszystkie Å›cieżki audio" - #: editor_routes.cc:478 msgid "Show Tracks With Regions Under Playhead" msgstr "" @@ -5842,11 +3379,6 @@ msgstr "Wyczyść wszystkie poÅ‚ożenia" msgid "Unhide locations" msgstr "WyÅ›wietl poÅ‚ożenia" -#: editor_rulers.cc:346 -#, fuzzy -msgid "New range" -msgstr "Dodaj nowy zakres" - #: editor_rulers.cc:347 msgid "Clear all ranges" msgstr "Wyczyść wszystkie zakresy" @@ -5867,16 +3399,6 @@ msgstr "Nowe tempo" msgid "New Meter" msgstr "Nowe metrum" -#: editor_rulers.cc:373 -#, fuzzy -msgid "Timeline height" -msgstr "wysokość" - -#: editor_rulers.cc:383 -#, fuzzy -msgid "Align Video Track" -msgstr "Dodaj Å›cieżkÄ™ dźwiÄ™kowÄ…" - #: editor_selection.cc:889 editor_selection.cc:932 msgid "set selected regions" msgstr "ustaw zaznaczone obszary" @@ -5931,29 +3453,10 @@ msgid "" "but there is no selected marker." msgstr "" -#: editor_snapshots.cc:136 -#, fuzzy -msgid "Rename Snapshot" -msgstr "UsuÅ„ punkt synchronizacji" - #: editor_snapshots.cc:138 msgid "New name of snapshot" msgstr "Nazwa zrzutu" -#: editor_snapshots.cc:156 -#, fuzzy -msgid "" -"Do you really want to remove snapshot \"%1\" ?\n" -"(which cannot be undone)" -msgstr "" -"Usunąć zrzut \"%1\" ?\n" -"(tej operacji nie można cofnąć)" - -#: editor_snapshots.cc:161 -#, fuzzy -msgid "Remove snapshot" -msgstr "UsuÅ„ punkt synchronizacji" - #: editor_tempodisplay.cc:208 editor_tempodisplay.cc:250 msgid "add" msgstr "dodaj" @@ -5997,11 +3500,6 @@ msgid "" "programming error: meter marker canvas item has no marker object pointer!" msgstr "" -#: editor_timefx.cc:68 -#, fuzzy -msgid "stretch/shrink" -msgstr "RozciÄ…gnij/skurcz" - #: editor_timefx.cc:129 msgid "pitch shift" msgstr "" @@ -6093,17 +3591,6 @@ msgstr "Rectangular" msgid "Shaped" msgstr "Shaped" -#: engine_dialog.cc:158 engine_dialog.cc:483 engine_dialog.cc:974 -#, fuzzy -msgid "Playback/recording on 1 device" -msgstr "Odtwarzanie/nagrywanie przy użyciu 1 urzÄ…dzenia" - -#: engine_dialog.cc:159 engine_dialog.cc:487 engine_dialog.cc:540 -#: engine_dialog.cc:977 -#, fuzzy -msgid "Playback/recording on 2 devices" -msgstr "Odtwarzanie/nagrywanie przy użyciu 2 urzÄ…dzeÅ„" - #: engine_dialog.cc:160 engine_dialog.cc:503 engine_dialog.cc:980 msgid "Playback only" msgstr "Tylko odtwarzanie" @@ -6120,45 +3607,10 @@ msgstr "" msgid "seq" msgstr "" -#: engine_dialog.cc:174 engine_dialog.cc:583 -#, fuzzy -msgid "raw" -msgstr "rysuj" - -#: engine_dialog.cc:181 -#, fuzzy -msgid "Driver:" -msgstr "Sterownik" - -#: engine_dialog.cc:186 -#, fuzzy -msgid "Audio Interface:" -msgstr "Interfejs" - #: engine_dialog.cc:191 sfdb_ui.cc:147 sfdb_ui.cc:260 sfdb_ui.cc:265 msgid "Sample rate:" msgstr "CzÄ™stotliwość próbkowania:" -#: engine_dialog.cc:196 -#, fuzzy -msgid "Buffer size:" -msgstr "Rozmiar bufora" - -#: engine_dialog.cc:202 -#, fuzzy -msgid "Number of buffers:" -msgstr "Liczba buforów" - -#: engine_dialog.cc:209 -#, fuzzy -msgid "Approximate latency:" -msgstr "Przybliżone opóźnienie" - -#: engine_dialog.cc:222 -#, fuzzy -msgid "Audio mode:" -msgstr "Tryb dźwiÄ™ku" - #: engine_dialog.cc:284 engine_dialog.cc:408 msgid "Ignore" msgstr "Ignorowanie" @@ -6167,21 +3619,6 @@ msgstr "Ignorowanie" msgid "Client timeout" msgstr "Limit czasu na opowiedź klienta" -#: engine_dialog.cc:299 -#, fuzzy -msgid "Number of ports:" -msgstr "Liczba portów" - -#: engine_dialog.cc:304 -#, fuzzy -msgid "MIDI driver:" -msgstr "Sterownik" - -#: engine_dialog.cc:310 -#, fuzzy -msgid "Dither:" -msgstr "Rodzaj ditheringu" - #: engine_dialog.cc:319 msgid "" "No JACK server found anywhere on this system. Please install JACK and restart" @@ -6193,31 +3630,6 @@ msgstr "" msgid "Server:" msgstr "Serwer:" -#: engine_dialog.cc:339 -#, fuzzy -msgid "Input device:" -msgstr "UrzÄ…dzenie wejÅ›ciowe" - -#: engine_dialog.cc:343 -#, fuzzy -msgid "Output device:" -msgstr "UrzÄ…dzenie wyjÅ›ciowe" - -#: engine_dialog.cc:348 -#, fuzzy -msgid "Hardware input latency:" -msgstr "SprzÄ™towe opóźnienie dla wejÅ›cia (próbki)" - -#: engine_dialog.cc:351 engine_dialog.cc:357 -#, fuzzy -msgid "samples" -msgstr "Próbki" - -#: engine_dialog.cc:354 -#, fuzzy -msgid "Hardware output latency:" -msgstr "SprzÄ™towe opóźnienie dla wyjÅ›cia (próbki)" - #: engine_dialog.cc:368 msgid "Device" msgstr "UrzÄ…dzenie" @@ -6292,38 +3704,12 @@ msgstr "" msgid "Region contents with fades and region gain (channels: %1)" msgstr "" -#: export_channel_selector.cc:467 -#, fuzzy -msgid "Track output (channels: %1)" -msgstr "KanaÅ‚y wyjÅ›ciowe" - -#: export_channel_selector.cc:536 -#, fuzzy -msgid "Export region contents" -msgstr "Eksportuj obszar" - -#: export_channel_selector.cc:537 -#, fuzzy -msgid "Export track output" -msgstr "Połączenia" - #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten." msgstr "" -#: export_dialog.cc:47 -#, fuzzy -msgid "List files" -msgstr "Pliki dźwiÄ™kowe" - -#: export_dialog.cc:164 export_timespan_selector.cc:355 -#: export_timespan_selector.cc:417 -#, fuzzy -msgid "Time Span" -msgstr "ZarzÄ…dzanie czasem" - #: export_dialog.cc:176 msgid "Channels" msgstr "KanaÅ‚y" @@ -6346,21 +3732,6 @@ msgstr "" msgid "Stop Export" msgstr "Zatrzymaj eksport" -#: export_dialog.cc:337 -#, fuzzy -msgid "export" -msgstr "Eksportuj" - -#: export_dialog.cc:356 -#, fuzzy -msgid "Normalizing '%3' (timespan %1 of %2)" -msgstr "błąd programowania: %1 %2" - -#: export_dialog.cc:360 -#, fuzzy -msgid "Exporting '%3' (timespan %1 of %2)" -msgstr "błąd programowania: %1 %2" - #: export_dialog.cc:383 export_dialog.cc:385 msgid "Error: " msgstr "" @@ -6375,30 +3746,10 @@ msgid "" "Warning: " msgstr "" -#: export_dialog.cc:420 -#, fuzzy -msgid "Export Selection" -msgstr "Ekspor sesji" - #: export_dialog.cc:433 msgid "Export Region" msgstr "Eksportuj obszar" -#: export_dialog.cc:443 -#, fuzzy -msgid "Source" -msgstr "ŹródÅ‚o sygnaÅ‚u" - -#: export_dialog.cc:458 -#, fuzzy -msgid "Stem Export" -msgstr "Zatrzymaj eksport" - -#: export_file_notebook.cc:38 -#, fuzzy -msgid "Add another format" -msgstr "Format pliku dźwiÄ™kowego" - #: export_file_notebook.cc:178 msgid "Format" msgstr "Format" @@ -6407,30 +3758,10 @@ msgstr "Format" msgid "Location" msgstr "PoÅ‚ożenie" -#: export_file_notebook.cc:255 -#, fuzzy -msgid "No format!" -msgstr "Format pliku dźwiÄ™kowego" - -#: export_file_notebook.cc:267 -#, fuzzy -msgid "Format %1: %2" -msgstr "Format:" - #: export_filename_selector.cc:32 msgid "Label:" msgstr "" -#: export_filename_selector.cc:33 -#, fuzzy -msgid "Session Name" -msgstr "Sesja" - -#: export_filename_selector.cc:34 -#, fuzzy -msgid "Revision:" -msgstr "Sesja" - #: export_filename_selector.cc:36 msgid "Folder:" msgstr "" @@ -6466,39 +3797,14 @@ msgstr "" msgid "Choose export folder" msgstr "" -#: export_format_dialog.cc:31 -#, fuzzy -msgid "New Export Format Profile" -msgstr "Eksport do pliku" - -#: export_format_dialog.cc:31 -#, fuzzy -msgid "Edit Export Format Profile" -msgstr "Eksport do pliku" - #: export_format_dialog.cc:38 msgid "Label: " msgstr "" -#: export_format_dialog.cc:41 normalize_dialog.cc:42 -#, fuzzy -msgid "Normalize to:" -msgstr "Normalizuj" - -#: export_format_dialog.cc:46 -#, fuzzy -msgid "Trim silence at start" -msgstr "poczÄ…tek przyciÄ™cia" - #: export_format_dialog.cc:47 msgid "Add silence at start:" msgstr "" -#: export_format_dialog.cc:50 -#, fuzzy -msgid "Trim silence at end" -msgstr "koniec przyciÄ™cia" - #: export_format_dialog.cc:51 msgid "Add silence at end:" msgstr "" @@ -6511,21 +3817,6 @@ msgstr "" msgid "Quality" msgstr "" -#: export_format_dialog.cc:57 -#, fuzzy -msgid "File format" -msgstr "Format pliku dźwiÄ™kowego" - -#: export_format_dialog.cc:59 -#, fuzzy -msgid "Sample rate conversion quality:" -msgstr "Jakość konwersji:" - -#: export_format_dialog.cc:66 -#, fuzzy -msgid "Dithering" -msgstr "Ustawienia metrum" - #: export_format_dialog.cc:68 msgid "Create CUE file for disk-at-once CD/DVD creation" msgstr "" @@ -6542,59 +3833,24 @@ msgstr "" msgid "Best (sinc)" msgstr "" -#: export_format_dialog.cc:466 -#, fuzzy -msgid "Medium (sinc)" -msgstr "Åšrednio" - #: export_format_dialog.cc:471 msgid "Fast (sinc)" msgstr "" -#: export_format_dialog.cc:481 -#, fuzzy -msgid "Zero order hold" -msgstr "Przytrzymanie metrum" - #: export_format_dialog.cc:879 msgid "Linear encoding options" msgstr "" -#: export_format_dialog.cc:895 -#, fuzzy -msgid "Ogg Vorbis options" -msgstr "Opcje wizualne" - -#: export_format_dialog.cc:908 -#, fuzzy -msgid "FLAC options" -msgstr "PoÅ‚ożenia" - #: export_format_dialog.cc:925 msgid "Broadcast Wave options" msgstr "" -#: export_format_selector.cc:136 -#, fuzzy -msgid "Do you really want to remove the format?" -msgstr "Na pewno usunąć %1 %2?" - -#: export_preset_selector.cc:28 -#, fuzzy -msgid "Preset" -msgstr "Zresetuj" - #: export_preset_selector.cc:104 msgid "" "The selected preset did not load successfully!\n" "Perhaps it references a format that has been removed?" msgstr "" -#: export_preset_selector.cc:156 -#, fuzzy -msgid "Do you really want to remove this preset?" -msgstr "Na pewno usunąć %1 %2?" - #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "" @@ -6603,16 +3859,6 @@ msgstr "" msgid " to " msgstr "" -#: export_timespan_selector.cc:348 export_timespan_selector.cc:407 -#, fuzzy -msgid "Range" -msgstr "Zakresy" - -#: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 -#, fuzzy -msgid "curl error %1 (%2)" -msgstr "błąd programisty: %1 %2" - #: sfdb_freesound_mootcher.cc:266 msgid "getSoundResourceFile: There is no valid root in the xml file" msgstr "" @@ -6670,11 +3916,6 @@ msgstr "Sterowanie" msgid "Plugin Editor: could not build control element for port %1" msgstr "" -#: generic_pluginui.cc:408 -#, fuzzy -msgid "Meters" -msgstr "Metrum" - #: generic_pluginui.cc:423 msgid "Automation control" msgstr "Kontrola automatyzacji" @@ -6683,87 +3924,22 @@ msgstr "Kontrola automatyzacji" msgid "Mgnual" msgstr "" -#: global_port_matrix.cc:164 -#, fuzzy -msgid "Audio Connection Manager" -msgstr "Połączenie \"" - -#: global_port_matrix.cc:167 -#, fuzzy -msgid "MIDI Connection Manager" -msgstr "Połączenie \"" - -#: global_port_matrix.cc:213 io_selector.cc:216 -#, fuzzy -msgid "port" -msgstr "Eksportuj" - -#: group_tabs.cc:308 -#, fuzzy -msgid "Selection..." -msgstr "Zaznaczenie" - #: group_tabs.cc:309 msgid "Record Enabled..." msgstr "" -#: group_tabs.cc:310 -#, fuzzy -msgid "Soloed..." -msgstr "Solo" - -#: group_tabs.cc:316 -#, fuzzy -msgid "Create New Group ..." -msgstr "Brak grupy" - #: group_tabs.cc:317 msgid "Create New Group From" msgstr "" -#: group_tabs.cc:320 -#, fuzzy -msgid "Edit Group..." -msgstr "Brak grupy" - -#: group_tabs.cc:321 -#, fuzzy -msgid "Collect Group" -msgstr "Zaznacz" - -#: group_tabs.cc:322 -#, fuzzy -msgid "Remove Group" -msgstr "Edycja grupy" - -#: group_tabs.cc:325 -#, fuzzy -msgid "Remove Subgroup Bus" -msgstr "Dodaj grupÄ™" - -#: group_tabs.cc:327 -#, fuzzy -msgid "Add New Subgroup Bus" -msgstr "Dodaj grupÄ™" - #: group_tabs.cc:329 msgid "Add New Aux Bus (pre-fader)" msgstr "" -#: group_tabs.cc:330 -#, fuzzy -msgid "Add New Aux Bus (post-fader)" -msgstr "Wyczyść metrum" - #: group_tabs.cc:336 msgid "Enable All Groups" msgstr "" -#: group_tabs.cc:337 -#, fuzzy -msgid "Disable All Groups" -msgstr "Wyłącz wszystko" - #: gtk-custom-ruler.c:133 msgid "Lower limit of ruler" msgstr "" @@ -6796,76 +3972,16 @@ msgstr "WyÅ›wietl pozycjÄ™" msgid "Draw current ruler position" msgstr "" -#: insert_time_dialog.cc:46 -#, fuzzy -msgid "Time to insert:" -msgstr "ZarzÄ…dzanie czasem" - -#: insert_time_dialog.cc:54 -#, fuzzy -msgid "Intersected regions should:" -msgstr "Zaznaczone obszary" - -#: insert_time_dialog.cc:57 -#, fuzzy -msgid "stay in position" -msgstr "Pozostanie w pozycji" - -#: insert_time_dialog.cc:58 -#, fuzzy -msgid "move" -msgstr "UsuÅ„" - -#: insert_time_dialog.cc:59 -#, fuzzy -msgid "be split" -msgstr "podziel" - #: insert_time_dialog.cc:65 msgid "Insert time on all the track's playlists" msgstr "" -#: insert_time_dialog.cc:68 -#, fuzzy -msgid "Move glued regions" -msgstr "PrzenieÅ› przyklejone obszary" - -#: insert_time_dialog.cc:70 -#, fuzzy -msgid "Move markers" -msgstr "przesuÅ„ znacznik" - -#: insert_time_dialog.cc:73 -#, fuzzy -msgid "Move glued markers" -msgstr "PrzenieÅ› znacznik" - -#: insert_time_dialog.cc:78 -#, fuzzy -msgid "Move locked markers" -msgstr "PrzenieÅ› znacznik" - #: insert_time_dialog.cc:83 msgid "" "Move tempo and meter changes\n" "(may cause oddities in the tempo map)" msgstr "" -#: insert_time_dialog.cc:91 -#, fuzzy -msgid "Insert time" -msgstr "wstaw czas" - -#: interthread_progress_window.cc:103 -#, fuzzy -msgid "Importing file: %1 of %2" -msgstr "błąd programowania: %1 %2" - -#: io_selector.cc:220 -#, fuzzy -msgid "I/O selector" -msgstr "Odwróć zaznaczenie" - #: io_selector.cc:265 msgid "%1 input" msgstr "%1 wejÅ›cie" @@ -6910,26 +4026,6 @@ msgstr "" msgid "redirectmenu" msgstr "" -#: keyeditor.cc:257 -#, fuzzy -msgid "Editor_menus" -msgstr "Edytor" - -#: keyeditor.cc:259 -#, fuzzy -msgid "RegionList" -msgstr "Obszar" - -#: keyeditor.cc:261 -#, fuzzy -msgid "ProcessorMenu" -msgstr "NieobsÅ‚ugiwane przez procesor" - -#: latency_gui.cc:39 -#, fuzzy -msgid "sample" -msgstr "Próbki" - #: latency_gui.cc:40 msgid "msec" msgstr "" @@ -6938,14 +4034,6 @@ msgstr "" msgid "period" msgstr "" -#: latency_gui.cc:55 -#, fuzzy -msgid "%1 sample" -msgid_plural "%1 samples" -msgstr[0] "Próbki" -msgstr[1] "Próbki" -msgstr[2] "Próbki" - #: latency_gui.cc:72 panner_ui.cc:392 msgid "Reset" msgstr "Zresetuj" @@ -6954,11 +4042,6 @@ msgstr "Zresetuj" msgid "programming error: %1 (%2)" msgstr "" -#: location_ui.cc:50 location_ui.cc:52 -#, fuzzy -msgid "Use PH" -msgstr "Używanie MMC" - #: location_ui.cc:54 msgid "CD" msgstr "CD" @@ -6979,11 +4062,6 @@ msgstr "" msgid "Pre-Emphasis" msgstr "Przed naciskiem" -#: location_ui.cc:314 -#, fuzzy -msgid "Remove this range" -msgstr "ustaw zakres przełącznika" - #: location_ui.cc:315 msgid "Start time - middle click to locate here" msgstr "" @@ -6992,49 +4070,14 @@ msgstr "" msgid "End time - middle click to locate here" msgstr "" -#: location_ui.cc:319 -#, fuzzy -msgid "Set range start from playhead location" -msgstr "PrzenieÅ› znacznik zakresu do gÅ‚owicy" - -#: location_ui.cc:320 -#, fuzzy -msgid "Set range end from playhead location" -msgstr "Ustaw zakres wedÅ‚ug zaznaczenia" - -#: location_ui.cc:324 -#, fuzzy -msgid "Remove this marker" -msgstr "przesuÅ„ znacznik" - #: location_ui.cc:325 msgid "Position - middle click to locate here" msgstr "" -#: location_ui.cc:327 -#, fuzzy -msgid "Set marker time from playhead location" -msgstr "Ustaw zakres wedÅ‚ug zaznaczenia" - #: location_ui.cc:494 msgid "You cannot put a CD marker at the start of the session" msgstr "" -#: location_ui.cc:720 -#, fuzzy -msgid "New Marker" -msgstr "Znacznik" - -#: location_ui.cc:721 -#, fuzzy -msgid "New Range" -msgstr "Dodaj nowy zakres" - -#: location_ui.cc:734 -#, fuzzy -msgid "Loop/Punch Ranges" -msgstr "Zakresy pÄ™tli/przełącznika" - #: location_ui.cc:759 msgid "Markers (Including CD Index)" msgstr "" @@ -7047,31 +4090,6 @@ msgstr "" msgid "add range marker" msgstr "dodaj znacznik zakresu" -#: main.cc:83 -#, fuzzy -msgid "%1 could not connect to JACK." -msgstr "Nie można połączyć siÄ™ z JACK." - -#: main.cc:87 -#, fuzzy -msgid "" -"There are several possible reasons:\n" -"\n" -"1) JACK is not running.\n" -"2) JACK is running as another user, perhaps root.\n" -"3) There is already another client called \"%1\".\n" -"\n" -"Please consider the possibilities, and perhaps (re)start JACK." -msgstr "" -"Istnieje kilka możliwych przyczyn:\n" -"\n" -"1) JACK nie jest uruchomiony.\n" -"2) JACK zostaÅ‚ uruchomiony przez innego użytkownika, prawdopodobnie przez " -"administratora.\n" -"3) Istnieje już inny klient o nazwie \"ardour\".\n" -"\n" -"Rozważ wszystkie możliwoÅ›ci i uruchom JACK (ponownie)." - #: main.cc:203 main.cc:324 msgid "cannot create user %3 folder %1 (%2)" msgstr "" @@ -7127,25 +4145,6 @@ msgstr " (skompilowany przy użyciu " msgid " and GCC version " msgstr " oraz GCC w wesji " -#: main.cc:500 -#, fuzzy -msgid "Copyright (C) 1999-2012 Paul Davis" -msgstr "Copyright (C) 1999-2008 Paul Davis" - -#: main.cc:501 -#, fuzzy -msgid "" -"Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " -"Baker, Robin Gareus" -msgstr "" -"Prawa autorskie do niektórych fragmentów (C) Steve Harris, Ari Johnson, " -"Brett Viren, Joel Baker" - -#: main.cc:503 -#, fuzzy -msgid "%1 comes with ABSOLUTELY NO WARRANTY" -msgstr "Na program Ardour nie udziela siÄ™ ABSOLUTNIE Å»ADNEJ GWARANCJI" - #: main.cc:504 msgid "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." msgstr "" @@ -7159,25 +4158,10 @@ msgid "under certain conditions; see the source for copying conditions." msgstr "" "na Å›ciÅ›le okreÅ›lonych zasadach; zobacz plik COPYING by dowiedzieć siÄ™ wiÄ™cej." -#: main.cc:513 -#, fuzzy -msgid "could not initialize %1." -msgstr "Nie można dokonać inicjalizacji programu." - #: main.cc:522 msgid "Cannot xinstall SIGPIPE error handler" msgstr "" -#: main.cc:528 -#, fuzzy -msgid "could not create %1 GUI" -msgstr "Nie można utworzyć Ardour GUI" - -#: main_clock.cc:51 -#, fuzzy -msgid "Display delta to edit cursor" -msgstr "Zegar podstawowy wyÅ›wietla odstÄ™p od wskaźnika" - #: marker.cc:251 video_image_frame.cc:121 msgid "MarkerText" msgstr "Tekst znacznika" @@ -7196,45 +4180,10 @@ msgstr "" msgid "Force" msgstr "" -#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 -#, fuzzy -msgid "MIDI Channel Control" -msgstr "Kontrola parametrów" - -#: midi_channel_selector.cc:332 -#, fuzzy -msgid "Playback all channels" -msgstr "Ukryj wszystkie przejÅ›cia krzyżowe" - -#: midi_channel_selector.cc:333 -#, fuzzy -msgid "Play only selected channels" -msgstr "Zaznacz zakres" - #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" -#: midi_channel_selector.cc:335 -#, fuzzy -msgid "Record all channels" -msgstr "Ukryj wszystkie przejÅ›cia krzyżowe" - -#: midi_channel_selector.cc:336 -#, fuzzy -msgid "Record only selected channels" -msgstr "zmieÅ„ tempo" - -#: midi_channel_selector.cc:337 -#, fuzzy -msgid "Force all channels to 1 channel" -msgstr "KanaÅ‚y wejÅ›ciowe" - -#: midi_channel_selector.cc:378 -#, fuzzy -msgid "Inbound" -msgstr "Granice obszaru" - #: midi_channel_selector.cc:398 msgid "Click to enable recording all channels" msgstr "" @@ -7247,11 +4196,6 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" -#: midi_channel_selector.cc:415 -#, fuzzy -msgid "Playback" -msgstr "Tylko odtwarzanie" - #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -7296,26 +4240,6 @@ msgstr "" msgid "Triplet" msgstr "" -#: midi_list_editor.cc:58 -#, fuzzy -msgid "Quarter" -msgstr "ćwierćnuta (4)" - -#: midi_list_editor.cc:59 -#, fuzzy -msgid "Eighth" -msgstr "Prawa" - -#: midi_list_editor.cc:60 -#, fuzzy -msgid "Sixteenth" -msgstr "szesnastka (16)" - -#: midi_list_editor.cc:61 -#, fuzzy -msgid "Thirty-second" -msgstr "trzydziestodwójka (32)" - #: midi_list_editor.cc:62 msgid "Sixty-fourth" msgstr "" @@ -7328,89 +4252,14 @@ msgstr "" msgid "Vel" msgstr "" -#: midi_list_editor.cc:215 -#, fuzzy -msgid "edit note start" -msgstr "zmieÅ„ tempo" - -#: midi_list_editor.cc:224 -#, fuzzy -msgid "edit note channel" -msgstr "zmieÅ„ tempo" - -#: midi_list_editor.cc:234 -#, fuzzy -msgid "edit note number" -msgstr "zmieÅ„ tempo" - -#: midi_list_editor.cc:244 -#, fuzzy -msgid "edit note velocity" -msgstr "zmieÅ„ tempo" - -#: midi_list_editor.cc:258 -#, fuzzy -msgid "edit note length" -msgstr "zmieÅ„ dÅ‚ugość obszaru" - -#: midi_list_editor.cc:460 -#, fuzzy -msgid "insert new note" -msgstr "wstaw czas" - -#: midi_list_editor.cc:524 -#, fuzzy -msgid "delete notes (from list)" -msgstr "usuniÄ™ty plik" - -#: midi_list_editor.cc:599 -#, fuzzy -msgid "change note channel" -msgstr "KanaÅ‚y wejÅ›ciowe" - -#: midi_list_editor.cc:607 -#, fuzzy -msgid "change note number" -msgstr "zmieÅ„ dÅ‚ugość obszaru" - -#: midi_list_editor.cc:617 -#, fuzzy -msgid "change note velocity" -msgstr "zmieÅ„ dÅ‚ugość obszaru" - -#: midi_list_editor.cc:687 -#, fuzzy -msgid "change note length" -msgstr "zmieÅ„ dÅ‚ugość obszaru" - -#: midi_port_dialog.cc:39 -#, fuzzy -msgid "Add MIDI Port" -msgstr "Dodaj port" - -#: midi_port_dialog.cc:40 -#, fuzzy -msgid "Port name:" -msgstr "Nazwa portu" - #: midi_port_dialog.cc:45 msgid "MidiPortDialog" msgstr "" -#: midi_region_view.cc:838 -#, fuzzy -msgid "channel edit" -msgstr " " - #: midi_region_view.cc:874 msgid "velocity edit" msgstr "" -#: midi_region_view.cc:931 -#, fuzzy -msgid "add note" -msgstr "zmieÅ„ tempo" - #: midi_region_view.cc:1779 msgid "step add" msgstr "" @@ -7419,40 +4268,10 @@ msgstr "" msgid "insane MIDI patch key %1:%2" msgstr "" -#: midi_region_view.cc:1870 midi_region_view.cc:1890 -#, fuzzy -msgid "alter patch change" -msgstr "zmiana ustawienia wyciszenia" - #: midi_region_view.cc:1924 msgid "add patch change" msgstr "" -#: midi_region_view.cc:1942 -#, fuzzy -msgid "move patch change" -msgstr "zmiana ustawienia wyciszenia" - -#: midi_region_view.cc:1953 -#, fuzzy -msgid "delete patch change" -msgstr "ustaw zakres przełącznika" - -#: midi_region_view.cc:2022 -#, fuzzy -msgid "delete selection" -msgstr "rozszerz zanaczenie" - -#: midi_region_view.cc:2038 -#, fuzzy -msgid "delete note" -msgstr "usuniÄ™ty plik" - -#: midi_region_view.cc:2425 -#, fuzzy -msgid "move notes" -msgstr "UsuÅ„ zakres" - #: midi_region_view.cc:2647 msgid "resize notes" msgstr "" @@ -7461,26 +4280,6 @@ msgstr "" msgid "change velocities" msgstr "" -#: midi_region_view.cc:2967 -#, fuzzy -msgid "transpose" -msgstr "Transponuj" - -#: midi_region_view.cc:3001 -#, fuzzy -msgid "change note lengths" -msgstr "zmieÅ„ dÅ‚ugość obszaru" - -#: midi_region_view.cc:3070 -#, fuzzy -msgid "nudge" -msgstr "Pchnij" - -#: midi_region_view.cc:3085 -#, fuzzy -msgid "change channel" -msgstr "KanaÅ‚y wejÅ›ciowe" - #: midi_region_view.cc:3130 msgid "Bank " msgstr "" @@ -7489,73 +4288,18 @@ msgstr "" msgid "Program " msgstr "" -#: midi_region_view.cc:3132 -#, fuzzy -msgid "Channel " -msgstr "KanaÅ‚y" - #: midi_region_view.cc:3301 midi_region_view.cc:3303 msgid "paste" msgstr "wklej" -#: midi_region_view.cc:3761 -#, fuzzy -msgid "delete sysex" -msgstr "usuniÄ™ty plik" - -#: midi_streamview.cc:479 -#, fuzzy -msgid "failed to create MIDI region" -msgstr "usuÅ„ obszar" - #: midi_time_axis.cc:262 msgid "External MIDI Device" msgstr "" -#: midi_time_axis.cc:263 -#, fuzzy -msgid "External Device Mode" -msgstr "ŹródÅ‚o synchronizacji pozycji" - #: midi_time_axis.cc:271 msgid "Chns" msgstr "" -#: midi_time_axis.cc:272 -#, fuzzy -msgid "Click to edit channel settings" -msgstr "Wyczyść wszystkie poÅ‚ożenia" - -#: midi_time_axis.cc:486 -#, fuzzy -msgid "Show Full Range" -msgstr "WyÅ›wietl wszystko" - -#: midi_time_axis.cc:491 -#, fuzzy -msgid "Fit Contents" -msgstr "Zawartość:" - -#: midi_time_axis.cc:495 -#, fuzzy -msgid "Note Range" -msgstr " zakres" - -#: midi_time_axis.cc:496 -#, fuzzy -msgid "Note Mode" -msgstr "Tryb standardowy" - -#: midi_time_axis.cc:497 -#, fuzzy -msgid "Channel Selector" -msgstr "KanaÅ‚y" - -#: midi_time_axis.cc:502 -#, fuzzy -msgid "Color Mode" -msgstr "Kolor" - #: midi_time_axis.cc:561 msgid "Bender" msgstr "" @@ -7564,103 +4308,22 @@ msgstr "" msgid "Pressure" msgstr "" -#: midi_time_axis.cc:578 -#, fuzzy -msgid "Controllers" -msgstr "Sterowanie" - #: midi_time_axis.cc:583 msgid "No MIDI Channels selected" msgstr "" -#: midi_time_axis.cc:640 midi_time_axis.cc:769 -#, fuzzy -msgid "Hide all channels" -msgstr "Ukryj wszystkie przejÅ›cia krzyżowe" - -#: midi_time_axis.cc:644 midi_time_axis.cc:773 -#, fuzzy -msgid "Show all channels" -msgstr "WyÅ›wietlanie wszystkich przejść krzyżowych" - -#: midi_time_axis.cc:655 midi_time_axis.cc:784 -#, fuzzy -msgid "Channel %1" -msgstr "KanaÅ‚y" - -#: midi_time_axis.cc:910 midi_time_axis.cc:942 -#, fuzzy -msgid "Controllers %1-%2" -msgstr "Sterowanie" - -#: midi_time_axis.cc:933 midi_time_axis.cc:936 -#, fuzzy -msgid "Controller %1" -msgstr "Sterowanie" - #: midi_time_axis.cc:959 msgid "Sustained" msgstr "" -#: midi_time_axis.cc:966 -#, fuzzy -msgid "Percussive" -msgstr "WystÄ…pienie perkusji" - -#: midi_time_axis.cc:986 -#, fuzzy -msgid "Meter Colors" -msgstr "Przytrzymanie metrum" - -#: midi_time_axis.cc:993 -#, fuzzy -msgid "Channel Colors" -msgstr "KanaÅ‚y" - -#: midi_time_axis.cc:1000 -#, fuzzy -msgid "Track Color" -msgstr "Åšcieżka" - -#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 -#: midi_time_axis.cc:1510 -#, fuzzy -msgid "all" -msgstr "MaÅ‚y" - #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" -#: midi_tracer.cc:43 -#, fuzzy -msgid "Line history: " -msgstr "Limit historii operacji" - -#: midi_tracer.cc:51 -#, fuzzy -msgid "Auto-Scroll" -msgstr "Przewijanie" - #: midi_tracer.cc:52 msgid "Decimal" msgstr "" -#: midi_tracer.cc:53 rc_option_editor.cc:659 -#, fuzzy -msgid "Enabled" -msgstr "Włącz nagrywanie" - -#: midi_tracer.cc:54 -#, fuzzy -msgid "Delta times" -msgstr "Punkt poczÄ…tkowy przyciÄ™cia" - -#: midi_tracer.cc:66 -#, fuzzy -msgid "Port:" -msgstr "Port" - #: midi_velocity_dialog.cc:31 msgid "New velocity" msgstr "" @@ -7669,25 +4332,10 @@ msgstr "" msgid "Missing File!" msgstr "" -#: missing_file_dialog.cc:36 -#, fuzzy -msgid "Select a folder to search" -msgstr "Wszystko za gÅ‚owicÄ…" - #: missing_file_dialog.cc:37 msgid "Add chosen folder to search path, and try again" msgstr "" -#: missing_file_dialog.cc:39 -#, fuzzy -msgid "Stop loading this session" -msgstr "Nie Å‚aduj sesji" - -#: missing_file_dialog.cc:40 -#, fuzzy -msgid "Skip all missing files" -msgstr "PomiÅ„ anti-aliasing" - #: missing_file_dialog.cc:41 msgid "Skip this file" msgstr "" @@ -7712,11 +4360,6 @@ msgstr "" msgid "Click to choose an additional folder" msgstr "" -#: missing_plugin_dialog.cc:29 -#, fuzzy -msgid "Missing Plugins" -msgstr "Wtyczki" - #: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 msgid "OK" msgstr "OK" @@ -7745,41 +4388,6 @@ msgstr "" msgid "Set Gain to 0dB on Mixer-Selected Tracks/Busses" msgstr "" -#: mixer_actor.cc:63 -#, fuzzy -msgid "Copy Selected Processors" -msgstr "Zaznaczone obszary" - -#: mixer_actor.cc:64 -#, fuzzy -msgid "Cut Selected Processors" -msgstr "do zaznaczonych Å›cieżek" - -#: mixer_actor.cc:65 -#, fuzzy -msgid "Paste Selected Processors" -msgstr "ustaw zaznaczone obszary" - -#: mixer_actor.cc:66 -#, fuzzy -msgid "Delete Selected Processors" -msgstr "ustaw zaznaczone obszary" - -#: mixer_actor.cc:67 -#, fuzzy -msgid "Select All (visible) Processors" -msgstr "DostÄ™pne porty" - -#: mixer_actor.cc:68 -#, fuzzy -msgid "Toggle Selected Processors" -msgstr "PrzenieÅ› znacznik" - -#: mixer_actor.cc:69 -#, fuzzy -msgid "Toggle Selected Plugins" -msgstr "Zaznaczone obszary" - #: mixer_actor.cc:72 mixer_actor.cc:73 msgid "Scroll Mixer Window to the left" msgstr "" @@ -7800,12 +4408,6 @@ msgstr "" msgid "pre" msgstr "przed" -#: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 -#: rc_option_editor.cc:1881 -#, fuzzy -msgid "Comments" -msgstr "Komentarze" - #: mixer_strip.cc:147 msgid "Click to toggle the width of this mixer strip." msgstr "" @@ -7820,11 +4422,6 @@ msgstr "" msgid "Hide this mixer strip" msgstr "" -#: mixer_strip.cc:167 -#, fuzzy -msgid "Click to select metering point" -msgstr "Wszystko za punktem edycji" - #: mixer_strip.cc:173 msgid "tupni" msgstr "" @@ -7837,55 +4434,18 @@ msgstr "" msgid "Lock Solo Status" msgstr "" -#: mixer_strip.cc:203 mixer_strip.cc:1926 -#, fuzzy -msgid "lock" -msgstr "Zegar" - #: mixer_strip.cc:204 mixer_strip.cc:1925 msgid "iso" msgstr "" -#: mixer_strip.cc:258 -#, fuzzy -msgid "Mix group" -msgstr "Brak grupy" - #: mixer_strip.cc:351 rc_option_editor.cc:1878 msgid "Phase Invert" msgstr "" -#: mixer_strip.cc:352 rc_option_editor.cc:1879 route_ui.cc:1218 -#, fuzzy -msgid "Solo Safe" -msgstr "Bezpieczne solo" - #: mixer_strip.cc:355 mixer_ui.cc:124 route_time_axis.cc:673 msgid "Group" msgstr "Grupa" -#: mixer_strip.cc:356 rc_option_editor.cc:1882 -#, fuzzy -msgid "Meter Point" -msgstr "Ustawienia metrum" - -#: mixer_strip.cc:470 -#, fuzzy -msgid "Enable/Disable MIDI input" -msgstr "Włącz/wyłącz metronom" - -#: mixer_strip.cc:622 -#, fuzzy -msgid "" -"Aux\n" -"Sends" -msgstr "WysyÅ‚anie MTC" - -#: mixer_strip.cc:646 -#, fuzzy -msgid "Snd" -msgstr "Sekundy" - #: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 msgid "Not connected to JACK - no I/O changes are possible" msgstr "" @@ -7898,20 +4458,10 @@ msgstr "" msgid "OUTPUT from %1" msgstr "" -#: mixer_strip.cc:1174 -#, fuzzy -msgid "Disconnected" -msgstr "rozłączono" - #: mixer_strip.cc:1303 msgid "*Comments*" msgstr "*Komentarze*" -#: mixer_strip.cc:1310 -#, fuzzy -msgid "Cmt" -msgstr "Wytnij" - #: mixer_strip.cc:1313 msgid "*Cmt*" msgstr "" @@ -7932,16 +4482,6 @@ msgstr "" msgid "~G" msgstr "" -#: mixer_strip.cc:1467 -#, fuzzy -msgid "Comments..." -msgstr "Komentarze" - -#: mixer_strip.cc:1469 -#, fuzzy -msgid "Save As Template..." -msgstr "Zapisz szablon" - #: mixer_strip.cc:1475 route_group_dialog.cc:39 route_time_axis.cc:696 msgid "Active" msgstr "Aktywne" @@ -7950,49 +4490,14 @@ msgstr "Aktywne" msgid "Adjust Latency..." msgstr "" -#: mixer_strip.cc:1485 -#, fuzzy -msgid "Protect Against Denormals" -msgstr "ChroÅ„ przed liczbami zdenormalizowanymi" - -#: mixer_strip.cc:1491 route_time_axis.cc:435 -#, fuzzy -msgid "Remote Control ID..." -msgstr "ID zdalnego sterowania" - -#: mixer_strip.cc:1717 mixer_strip.cc:1741 -#, fuzzy -msgid "in" -msgstr "Wzmocnienie" - #: mixer_strip.cc:1725 msgid "post" msgstr "za" -#: mixer_strip.cc:1729 -#, fuzzy -msgid "out" -msgstr "O programie" - #: mixer_strip.cc:1734 msgid "custom" msgstr "" -#: mixer_strip.cc:1745 -#, fuzzy -msgid "pr" -msgstr "przed" - -#: mixer_strip.cc:1749 -#, fuzzy -msgid "po" -msgstr "L" - -#: mixer_strip.cc:1753 -#, fuzzy -msgid "o" -msgstr "Mono" - #: mixer_strip.cc:1758 msgid "c" msgstr "" @@ -8009,35 +4514,10 @@ msgstr "" msgid "PFL" msgstr "" -#: mixer_strip.cc:1933 -#, fuzzy -msgid "D" -msgstr "CD" - -#: mixer_strip.cc:1953 -#, fuzzy -msgid "i" -msgstr "Wzmocnienie" - -#: mixer_strip.cc:2128 -#, fuzzy -msgid "Pre-fader" -msgstr "Przed potencjometrem" - -#: mixer_strip.cc:2129 -#, fuzzy -msgid "Post-fader" -msgstr "Za potencjometrem" - #: mixer_strip.cc:2166 meter_strip.cc:728 msgid "Change all in Group to %1" msgstr "" -#: mixer_strip.cc:2168 meter_strip.cc:730 -#, fuzzy -msgid "Change all to %1" -msgstr "KanaÅ‚y" - #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -8054,16 +4534,6 @@ msgstr "-wszystko-" msgid "Strips" msgstr "Pas" -#: meter_strip.cc:764 -#, fuzzy -msgid "Variable height" -msgstr "wysokość" - -#: meter_strip.cc:765 -#, fuzzy -msgid "Short" -msgstr "Krótko" - #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -8116,38 +4586,10 @@ msgstr "" msgid "SiP" msgstr "" -#: monitor_section.cc:86 -#, fuzzy -msgid "soloing" -msgstr "zmiana ustawienia solo" - #: monitor_section.cc:90 msgid "isolated" msgstr "" -#: monitor_section.cc:94 -#, fuzzy -msgid "auditioning" -msgstr "OdsÅ‚uch" - -#: monitor_section.cc:104 -#, fuzzy -msgid "" -"When active, something is solo-isolated.\n" -"Click to de-isolate everything" -msgstr "" -"Gdy aktywne, gdzieÅ› włączone jest solo.\n" -"Kliknij by wyłączyć solo wszÄ™dzie." - -#: monitor_section.cc:107 -#, fuzzy -msgid "" -"When active, auditioning is active.\n" -"Click to stop the audition" -msgstr "" -"Gdy aktywne, odsÅ‚uchiwanie jest włączone\n" -"Kliknij, by zatrzymać odsÅ‚uchiwanie." - #: monitor_section.cc:124 msgid "Solo controls affect solo-in-place" msgstr "" @@ -8182,11 +4624,6 @@ msgstr "" msgid "Gain reduction to use when dimming monitor outputs" msgstr "" -#: monitor_section.cc:181 -#, fuzzy -msgid "Dim" -msgstr "Åšrednio" - #: monitor_section.cc:190 msgid "excl. solo" msgstr "" @@ -8205,39 +4642,14 @@ msgid "" "(a soloed & muted track or bus will be audible)" msgstr "" -#: monitor_section.cc:227 -#, fuzzy -msgid "mute" -msgstr "WyÅ‚. wyciszenie" - -#: monitor_section.cc:238 -#, fuzzy -msgid "dim" -msgstr "Åšrednio" - #: monitor_section.cc:245 msgid "mono" msgstr "mono" -#: monitor_section.cc:266 -#, fuzzy -msgid "Monitor" -msgstr "Monitorowanie" - #: monitor_section.cc:678 msgid "Switch monitor to mono" msgstr "" -#: monitor_section.cc:681 -#, fuzzy -msgid "Cut monitor" -msgstr "Monitorowanie" - -#: monitor_section.cc:684 -#, fuzzy -msgid "Dim monitor" -msgstr "Monitorowanie" - #: monitor_section.cc:687 msgid "Toggle exclusive solo mode" msgstr "" @@ -8246,40 +4658,10 @@ msgstr "" msgid "Toggle mute overrides solo mode" msgstr "" -#: monitor_section.cc:705 -#, fuzzy -msgid "Cut monitor channel %1" -msgstr "Tworzenie szyny monitorowania" - -#: monitor_section.cc:710 -#, fuzzy -msgid "Dim monitor channel %1" -msgstr "Tworzenie szyny monitorowania" - -#: monitor_section.cc:715 -#, fuzzy -msgid "Solo monitor channel %1" -msgstr "Tworzenie szyny monitorowania" - -#: monitor_section.cc:720 -#, fuzzy -msgid "Invert monitor channel %1" -msgstr "panorama kanaÅ‚u %zu" - #: monitor_section.cc:730 msgid "In-place solo" msgstr "" -#: monitor_section.cc:732 -#, fuzzy -msgid "After Fade Listen (AFL) solo" -msgstr "Stefan Kersten" - -#: monitor_section.cc:734 -#, fuzzy -msgid "Pre Fade Listen (PFL) solo" -msgstr "Przekierowania przed potencjometrem" - #: mono_panner.cc:101 #, c-format msgid "L:%3d R:%3d" @@ -8345,31 +4727,6 @@ msgid "" "relies on a stable, sustainable income stream. Thanks for using Ardour!" msgstr "" -#: new_plugin_preset_dialog.cc:29 -#, fuzzy -msgid "New Preset" -msgstr "Nowy przysyÅ‚" - -#: new_plugin_preset_dialog.cc:30 -#, fuzzy -msgid "Replace existing preset with this name" -msgstr "Åšcieżka o tej nazwie już istnieje" - -#: new_plugin_preset_dialog.cc:34 -#, fuzzy -msgid "Name of new preset" -msgstr "Nazwa zrzutu:" - -#: normalize_dialog.cc:34 -#, fuzzy -msgid "Normalize regions" -msgstr "Normalizuj" - -#: normalize_dialog.cc:34 -#, fuzzy -msgid "Normalize region" -msgstr "Normalizuj" - #: normalize_dialog.cc:49 strip_silence_dialog.cc:70 msgid "dbFS" msgstr "" @@ -8390,43 +4747,11 @@ msgstr "Normalizuj" msgid "Usage: " msgstr "Użycie:" -#: opts.cc:58 -#, fuzzy -msgid " [SESSION_NAME] Name of session to load\n" -msgstr " [nazwa-sesji] Nazwa sesji do wczytania\n" - -#: opts.cc:59 -#, fuzzy -msgid " -v, --version Show version information\n" -msgstr " -v, --version WyÅ›wietl informacje o wersji\n" - -#: opts.cc:60 -#, fuzzy -msgid " -h, --help Print this message\n" -msgstr " -h, --help WyÅ›wietl tÄ™ wiadomość\n" - #: opts.cc:61 msgid "" " -a, --no-announcements Do not contact website for announcements\n" msgstr "" -#: opts.cc:62 -#, fuzzy -msgid "" -" -b, --bindings Print all possible keyboard binding names\n" -msgstr "" -" -b, --bindings WyÅ›wietl wszystkie możliwe nazwy skrótów " -"klawiaturowych\n" - -#: opts.cc:63 -#, fuzzy -msgid "" -" -c, --name Use a specific jack client name, default is " -"ardour\n" -msgstr "" -" -c, --name nazwa Użyj okreÅ›lonej nazwy klienta jack, " -"domyÅ›lna to ardour\n" - #: opts.cc:64 msgid "" " -d, --disable-plugins Disable all plugins in an existing session\n" @@ -8438,63 +4763,16 @@ msgid "" "available options\n" msgstr "" -#: opts.cc:66 -#, fuzzy -msgid " -n, --no-splash Do not show splash screen\n" -msgstr " -n, --show-splash WyÅ›wietl splash screen\n" - -#: opts.cc:67 -#, fuzzy -msgid " -m, --menus file Use \"file\" to define menus\n" -msgstr " -m, --menus plik Użyj \"pliku\" dla menu Ardoura\n" - -#: opts.cc:68 -#, fuzzy -msgid "" -" -N, --new session-name Create a new session from the command line\n" -msgstr " -N, --new nazwa-sesji Stwórz nowÄ… sesjÄ™ z linii komend\n" - -#: opts.cc:69 -#, fuzzy -msgid " -O, --no-hw-optimizations Disable h/w specific optimizations\n" -msgstr "" -" -O, --no-hw-optimizations Wyłącz okreÅ›lone optymalizacje h/w\n" - #: opts.cc:70 msgid " -P, --no-connect-ports Do not connect any ports at startup\n" msgstr "" -#: opts.cc:71 -#, fuzzy -msgid " -S, --sync Draw the gui synchronously \n" -msgstr "" -" -S, --sync\t Rysuj graficzny interfejs synchronicznie \n" - -#: opts.cc:73 -#, fuzzy -msgid " -V, --novst Do not use VST support\n" -msgstr " -V, --novst Nie używaj obsÅ‚ugi VST\n" - #: opts.cc:75 msgid "" " -E, --save Load the specified session, save it to " "and then quit\n" msgstr "" -#: opts.cc:76 -#, fuzzy -msgid " -C, --curvetest filename Curve algorithm debugger\n" -msgstr " -C, --curvetest nazwa-pliku Algorytm krzywej debugera\n" - -#: opts.cc:77 -#, fuzzy -msgid "" -" -k, --keybindings filename Name of key bindings to load (default is ~/." -"ardour3/ardour.bindings)\n" -msgstr "" -" -k, --keybindings nazwa-pliku Nazwa pliku skrótów klawiaturowych do " -"wczytania (domyÅ›lna to~/.ardour3/ardour.bindings)\n" - #: panner2d.cc:781 msgid "Panner (2D)" msgstr "" @@ -8540,20 +4818,10 @@ msgstr "Inne Å›cieżki" msgid "unassigned" msgstr "nieokreÅ›lono" -#: playlist_selector.cc:194 -#, fuzzy -msgid "Imported" -msgstr "Importuj" - #: plugin_eq_gui.cc:75 plugin_eq_gui.cc:99 msgid "dB scale" msgstr "" -#: plugin_eq_gui.cc:106 -#, fuzzy -msgid "Show phase" -msgstr "Linie" - #: plugin_selector.cc:53 plugin_selector.cc:220 msgid "Name contains" msgstr "Nazwa zawiera" @@ -8562,11 +4830,6 @@ msgstr "Nazwa zawiera" msgid "Type contains" msgstr "Rodzaj zawiera" -#: plugin_selector.cc:55 plugin_selector.cc:222 -#, fuzzy -msgid "Category contains" -msgstr "Autor zawiera" - #: plugin_selector.cc:56 plugin_selector.cc:244 msgid "Author contains" msgstr "Autor zawiera" @@ -8579,11 +4842,6 @@ msgstr "Biblioteka zawiera" msgid "Favorites only" msgstr "" -#: plugin_selector.cc:59 plugin_selector.cc:214 plugin_selector.cc:521 -#, fuzzy -msgid "Hidden only" -msgstr "Ukryte" - #: plugin_selector.cc:64 msgid "Plugin Manager" msgstr "" @@ -8608,21 +4866,6 @@ msgstr "Kategoria" msgid "Creator" msgstr "Kreator" -#: plugin_selector.cc:90 -#, fuzzy -msgid "# Audio In" -msgstr "OdsÅ‚uch" - -#: plugin_selector.cc:91 -#, fuzzy -msgid "# Audio Out" -msgstr "Dodaj szynÄ™ dźwiÄ™kowÄ…" - -#: plugin_selector.cc:92 -#, fuzzy -msgid "# MIDI In" -msgstr "MIDI" - #: plugin_selector.cc:93 msgid "# MIDI Out" msgstr "" @@ -8663,21 +4906,6 @@ msgstr "" msgid "Favorites" msgstr "" -#: plugin_selector.cc:630 -#, fuzzy -msgid "Plugin Manager..." -msgstr "Nowa wtyczka..." - -#: plugin_selector.cc:634 -#, fuzzy -msgid "By Creator" -msgstr "Kreator" - -#: plugin_selector.cc:637 -#, fuzzy -msgid "By Category" -msgstr "Kategoria" - #: plugin_ui.cc:116 msgid "Eh? LADSPA plugins don't have editors!" msgstr "" @@ -8706,27 +4934,12 @@ msgstr "" msgid "Add" msgstr "Dodaj" -#: plugin_ui.cc:421 -#, fuzzy -msgid "Description" -msgstr "Zaznaczenie" - -#: plugin_ui.cc:422 -#, fuzzy -msgid "Plugin analysis" -msgstr "Wtyczki" - #: plugin_ui.cc:429 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:430 -#, fuzzy -msgid "Save a new preset" -msgstr "Nazwa zrzutu:" - #: plugin_ui.cc:431 msgid "Save the current preset" msgstr "" @@ -8749,24 +4962,6 @@ msgstr "" msgid "Click to enable/disable this plugin" msgstr "" -#: plugin_ui.cc:506 -#, fuzzy -msgid "latency (%1 sample)" -msgid_plural "latency (%1 samples)" -msgstr[0] "Opóźnienie" -msgstr[1] "Opóźnienie" -msgstr[2] "Opóźnienie" - -#: plugin_ui.cc:508 -#, fuzzy -msgid "latency (%1 ms)" -msgstr "Opóźnienie" - -#: plugin_ui.cc:519 -#, fuzzy -msgid "Edit Latency" -msgstr "Opóźnienie" - #: plugin_ui.cc:558 msgid "Plugin preset %1 not found" msgstr "" @@ -8787,26 +4982,6 @@ msgstr "" msgid "Click to allow normal use of %1 keyboard shortcuts" msgstr "" -#: port_group.cc:335 -#, fuzzy -msgid "%1 Busses" -msgstr "Szyny" - -#: port_group.cc:336 -#, fuzzy -msgid "%1 Tracks" -msgstr "Åšcieżka" - -#: port_group.cc:337 -#, fuzzy -msgid "Hardware" -msgstr "Klatki audio" - -#: port_group.cc:338 -#, fuzzy -msgid "%1 Misc" -msgstr "Różne" - #: port_group.cc:339 msgid "Other" msgstr "" @@ -8823,11 +4998,6 @@ msgstr "" msgid "MTC in" msgstr "" -#: port_group.cc:466 -#, fuzzy -msgid "MIDI control in" -msgstr "usuÅ„ punkt kontrolny" - #: port_group.cc:469 msgid "MIDI clock in" msgstr "" @@ -8840,11 +5010,6 @@ msgstr "" msgid "MTC out" msgstr "" -#: port_group.cc:479 -#, fuzzy -msgid "MIDI control out" -msgstr "usuÅ„ punkt kontrolny" - #: port_group.cc:482 msgid "MIDI clock out" msgstr "" @@ -8853,11 +5018,6 @@ msgstr "" msgid "MMC out" msgstr "" -#: port_group.cc:540 -#, fuzzy -msgid ":monitor" -msgstr "Monitorowanie" - #: port_group.cc:552 msgid "system:" msgstr "" @@ -8866,25 +5026,10 @@ msgstr "" msgid "alsa_pcm" msgstr "" -#: port_insert_ui.cc:40 -#, fuzzy -msgid "Measure Latency" -msgstr "Opóźnienie" - -#: port_insert_ui.cc:51 -#, fuzzy -msgid "Send/Output" -msgstr "WyjÅ›cie" - #: port_insert_ui.cc:52 msgid "Return/Input" msgstr "" -#: port_insert_ui.cc:71 port_insert_ui.cc:99 -#, fuzzy -msgid "Disconnected from audio engine" -msgstr "Brak połączenia z silnikiem dźwiÄ™ku" - #: port_insert_ui.cc:86 msgid "No signal detected" msgstr "" @@ -8893,41 +5038,11 @@ msgstr "" msgid "Detecting ..." msgstr "" -#: port_insert_ui.cc:166 -#, fuzzy -msgid "Port Insert " -msgstr "Nazwa portu" - -#: port_matrix.cc:331 port_matrix.cc:357 -#, fuzzy -msgid "Sources" -msgstr "Szyny" - -#: port_matrix.cc:332 port_matrix.cc:358 -#, fuzzy -msgid "Destinations" -msgstr "WejÅ›cia" - #: port_matrix.cc:440 port_matrix.cc:448 #, c-format msgid "Add %s %s" msgstr "" -#: port_matrix.cc:456 -#, fuzzy, c-format -msgid "Rename '%s'..." -msgstr "ZmieÅ„ nazwÄ™" - -#: port_matrix.cc:472 -#, fuzzy -msgid "Remove all" -msgstr "UsuÅ„ znak" - -#: port_matrix.cc:492 port_matrix.cc:504 -#, fuzzy, c-format -msgid "%s all" -msgstr "Resetuj wszystko" - #: port_matrix.cc:527 msgid "Rescan" msgstr "Skanuj ponownie" @@ -8961,31 +5076,11 @@ msgid "" "the new number of inputs or the last plugin has more outputs." msgstr "" -#: port_matrix.cc:966 -#, fuzzy, c-format -msgid "Remove '%s'" -msgstr "UsuÅ„" - #: port_matrix.cc:981 #, c-format msgid "%s all from '%s'" msgstr "" -#: port_matrix.cc:1047 -#, fuzzy -msgid "channel" -msgstr " " - -#: port_matrix_body.cc:82 -#, fuzzy -msgid "There are no ports to connect." -msgstr "Nie ma wiÄ™cej dostÄ™pnych portów JACK." - -#: port_matrix_body.cc:84 -#, fuzzy -msgid "There are no %1 ports to connect." -msgstr "Nie ma wiÄ™cej dostÄ™pnych portów JACK." - #: processor_box.cc:256 msgid "" "%1\n" @@ -8999,21 +5094,6 @@ msgid "" "Double-click to show generic GUI." msgstr "" -#: processor_box.cc:372 -#, fuzzy -msgid "Show All Controls" -msgstr "WyÅ›wietl ustawienia wysyÅ‚u" - -#: processor_box.cc:376 -#, fuzzy -msgid "Hide All Controls" -msgstr "Ukryj wszystkie przejÅ›cia krzyżowe" - -#: processor_box.cc:465 -#, fuzzy -msgid "on" -msgstr "Mono" - #: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 msgid "off" msgstr "wyÅ‚" @@ -9038,44 +5118,12 @@ msgid "" "This plugin has:\n" msgstr "" -#: processor_box.cc:1209 -#, fuzzy -msgid "\t%1 MIDI input\n" -msgid_plural "\t%1 MIDI inputs\n" -msgstr[0] "%1 wejÅ›cie" -msgstr[1] "%1 wejÅ›cie" -msgstr[2] "%1 wejÅ›cie" - -#: processor_box.cc:1213 -#, fuzzy -msgid "\t%1 audio input\n" -msgid_plural "\t%1 audio inputs\n" -msgstr[0] "%1 wejÅ›cie" -msgstr[1] "%1 wejÅ›cie" -msgstr[2] "%1 wejÅ›cie" - #: processor_box.cc:1216 msgid "" "\n" "but at the insertion point, there are:\n" msgstr "" -#: processor_box.cc:1219 -#, fuzzy -msgid "\t%1 MIDI channel\n" -msgid_plural "\t%1 MIDI channels\n" -msgstr[0] "KanaÅ‚y wejÅ›ciowe" -msgstr[1] "KanaÅ‚y wejÅ›ciowe" -msgstr[2] "KanaÅ‚y wejÅ›ciowe" - -#: processor_box.cc:1223 -#, fuzzy -msgid "\t%1 audio channel\n" -msgid_plural "\t%1 audio channels\n" -msgstr[0] "KanaÅ‚y wejÅ›ciowe" -msgstr[1] "KanaÅ‚y wejÅ›ciowe" -msgstr[2] "KanaÅ‚y wejÅ›ciowe" - #: processor_box.cc:1226 msgid "" "\n" @@ -9093,11 +5141,6 @@ msgid "" "outputs will not work correctly." msgstr "" -#: processor_box.cc:1778 -#, fuzzy -msgid "Rename Processor" -msgstr "ZmieÅ„ nazwÄ™ Å›cieżki" - #: processor_box.cc:1809 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "" @@ -9113,90 +5156,18 @@ msgid "" "could not match the configuration of this track." msgstr "" -#: processor_box.cc:2000 -#, fuzzy -msgid "" -"Do you really want to remove all processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Na pewno usunąć wszystkie przekierowania przed potencjometrem z tej szyny?\n" -"(tej operacji nie można cofnąć)" - #: processor_box.cc:2004 processor_box.cc:2029 msgid "Yes, remove them all" msgstr "Tak, usuÅ„ je wszystkie" -#: processor_box.cc:2006 processor_box.cc:2031 -#, fuzzy -msgid "Remove processors" -msgstr "UsuÅ„ znacznik" - -#: processor_box.cc:2021 -#, fuzzy -msgid "" -"Do you really want to remove all pre-fader processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Na pewno usunąć wszystkie przekierowania przed potencjometrem z tej szyny?\n" -"(tej operacji nie można cofnąć)" - -#: processor_box.cc:2024 -#, fuzzy -msgid "" -"Do you really want to remove all post-fader processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Na pewno sunąć wszystkie przekierowania za potencjometrem z tej szyny?\n" -"(tej operacji nie można cofnąć)" - -#: processor_box.cc:2200 -#, fuzzy -msgid "New Plugin" -msgstr "Nowa wtyczka..." - #: processor_box.cc:2203 msgid "New Insert" msgstr "Nowy przysyÅ‚" -#: processor_box.cc:2206 -#, fuzzy -msgid "New External Send ..." -msgstr "Nowy wysyÅ‚..." - -#: processor_box.cc:2210 -#, fuzzy -msgid "New Aux Send ..." -msgstr "Nowy wysyÅ‚..." - -#: processor_box.cc:2214 -#, fuzzy -msgid "Clear (all)" -msgstr "Wyczyść wszystkie zakresy" - -#: processor_box.cc:2216 -#, fuzzy -msgid "Clear (pre-fader)" -msgstr "Wyczyść metrum" - -#: processor_box.cc:2218 -#, fuzzy -msgid "Clear (post-fader)" -msgstr "Wyczyść metrum" - #: processor_box.cc:2244 msgid "Activate All" msgstr "Włącz wszystko" -#: processor_box.cc:2246 -#, fuzzy -msgid "Deactivate All" -msgstr "Wyłącz wszystko" - -#: processor_box.cc:2248 -#, fuzzy -msgid "A/B Plugins" -msgstr "Wtyczki" - #: processor_box.cc:2257 msgid "Edit with generic controls..." msgstr "" @@ -9205,21 +5176,6 @@ msgstr "" msgid "%1: %2 (by %3)" msgstr "" -#: patch_change_dialog.cc:51 -#, fuzzy -msgid "Patch Change" -msgstr "Odtwórz zakres" - -#: patch_change_dialog.cc:77 -#, fuzzy -msgid "Patch Bank" -msgstr "Odtwórz zakres" - -#: patch_change_dialog.cc:84 -#, fuzzy -msgid "Patch" -msgstr "Opóźnienie" - #: patch_change_dialog.cc:99 step_entry.cc:429 msgid "Program" msgstr "" @@ -9236,45 +5192,10 @@ msgstr "" msgid "Quantize" msgstr "" -#: quantize_dialog.cc:56 -#, fuzzy -msgid "Strength" -msgstr "DÅ‚ugość:" - #: quantize_dialog.cc:59 msgid "Swing" msgstr "" -#: quantize_dialog.cc:62 -#, fuzzy -msgid "Threshold (ticks)" -msgstr "Wartość progowa" - -#: quantize_dialog.cc:63 -#, fuzzy -msgid "Snap note start" -msgstr "Do poczÄ…tku obszaru" - -#: quantize_dialog.cc:64 -#, fuzzy -msgid "Snap note end" -msgstr "Do sekund" - -#: rc_option_editor.cc:69 -#, fuzzy -msgid "Click audio file:" -msgstr "Plik dźwiÄ™kowy uderzenia" - -#: rc_option_editor.cc:72 rc_option_editor.cc:79 -#, fuzzy -msgid "Browse..." -msgstr "PrzeglÄ…daj" - -#: rc_option_editor.cc:76 -#, fuzzy -msgid "Click emphasis audio file:" -msgstr "Plik dźwiÄ™kowy akcentowanego uderzenia" - #: rc_option_editor.cc:108 msgid "Choose Click" msgstr "Wybór dźwiÄ™ku" @@ -9283,55 +5204,10 @@ msgstr "Wybór dźwiÄ™ku" msgid "Choose Click Emphasis" msgstr "Wybór dźwiÄ™ku akcentowanego uderzenia" -#: rc_option_editor.cc:160 -#, fuzzy -msgid "Limit undo history to" -msgstr "Limit historii operacji" - -#: rc_option_editor.cc:161 -#, fuzzy -msgid "Save undo history of" -msgstr "Zapisywanie historii operacji" - -#: rc_option_editor.cc:170 rc_option_editor.cc:177 -#, fuzzy -msgid "commands" -msgstr "Komenda " - -#: rc_option_editor.cc:315 -#, fuzzy -msgid "Edit using:" -msgstr "Zmienianie przy użyciu:" - #: rc_option_editor.cc:321 rc_option_editor.cc:347 rc_option_editor.cc:374 msgid "+ button" msgstr "i przycisk:" -#: rc_option_editor.cc:341 -#, fuzzy -msgid "Delete using:" -msgstr "Usuwanie przy użyciu:" - -#: rc_option_editor.cc:368 -#, fuzzy -msgid "Insert note using:" -msgstr "Czas wstawienia" - -#: rc_option_editor.cc:395 -#, fuzzy -msgid "Ignore snap using:" -msgstr "Ignorowanie przyciÄ…gania przy użyciu:" - -#: rc_option_editor.cc:411 -#, fuzzy -msgid "Keyboard layout:" -msgstr "UkÅ‚ad klawiatury" - -#: rc_option_editor.cc:534 -#, fuzzy -msgid "Font scaling:" -msgstr "Skalowanie czcionki" - #: rc_option_editor.cc:586 msgid "Playback (seconds of buffering):" msgstr "" @@ -9340,11 +5216,6 @@ msgstr "" msgid "Recording (seconds of buffering):" msgstr "" -#: rc_option_editor.cc:656 -#, fuzzy -msgid "Control Surface Protocol" -msgstr "UrzÄ…dzenia sterujÄ…ce" - #: rc_option_editor.cc:660 msgid "Feedback" msgstr "Sprzężenie zwrotne" @@ -9407,11 +5278,6 @@ msgid "" "confirmation" msgstr "" -#: rc_option_editor.cc:993 -#, fuzzy -msgid "%1 Preferences" -msgstr "Preferencje" - #: rc_option_editor.cc:1004 msgid "DSP CPU Utilization" msgstr "" @@ -9424,11 +5290,6 @@ msgstr "" msgid "all but one processor" msgstr "" -#: rc_option_editor.cc:1014 -#, fuzzy -msgid "all available processors" -msgstr "DostÄ™pne porty" - #: rc_option_editor.cc:1017 msgid "%1 processors" msgstr "" @@ -9437,44 +5298,14 @@ msgstr "" msgid "This setting will only take effect when %1 is restarted." msgstr "" -#: rc_option_editor.cc:1025 -#, fuzzy -msgid "Options|Undo" -msgstr "Opcje" - -#: rc_option_editor.cc:1032 -#, fuzzy -msgid "Verify removal of last capture" -msgstr "Potwierdzanie usuwania ostatniego nagrania" - -#: rc_option_editor.cc:1040 -#, fuzzy -msgid "Make periodic backups of the session file" -msgstr "Okresowe kopie bezpieczeÅ„stwa" - -#: rc_option_editor.cc:1045 -#, fuzzy -msgid "Session Management" -msgstr "Sesja" - #: rc_option_editor.cc:1050 msgid "Always copy imported files" msgstr "Kopiowanie importowanych plików" -#: rc_option_editor.cc:1057 -#, fuzzy -msgid "Default folder for new sessions:" -msgstr "Wszystko przed punktem edycji" - #: rc_option_editor.cc:1065 msgid "Maximum number of recent sessions" msgstr "" -#: rc_option_editor.cc:1078 -#, fuzzy -msgid "Click gain level" -msgstr "Plik dźwiÄ™kowy uderzenia" - #: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "Automatyka" @@ -9487,32 +5318,12 @@ msgstr "" msgid "Automation sampling interval (milliseconds)" msgstr "" -#: rc_option_editor.cc:1109 -#, fuzzy -msgid "Keep record-enable engaged on stop" -msgstr "Ustawienie nagrywania pozostaje włączone po zatrzymaniu" - -#: rc_option_editor.cc:1118 -#, fuzzy -msgid "Stop recording when an xrun occurs" -msgstr "Zatrzymaj nagrywanie przy xrun" - #: rc_option_editor.cc:1123 msgid "" "When enabled %1 will stop recording if an over- or underrun is " "detected by the audio engine" msgstr "" -#: rc_option_editor.cc:1129 -#, fuzzy -msgid "Create markers where xruns occur" -msgstr "Tworzenie znacznika w poÅ‚ożeniu xrun" - -#: rc_option_editor.cc:1138 -#, fuzzy -msgid "Stop at the end of the session" -msgstr "Przejdź do koÅ„ca sesji" - #: rc_option_editor.cc:1143 msgid "" "When enabled if %1 is not recording, it will stop the " @@ -9546,11 +5357,6 @@ msgid "" "specific tracks recording during a take" msgstr "" -#: rc_option_editor.cc:1173 -#, fuzzy -msgid "12dB gain reduction during fast-forward and fast-rewind" -msgstr "Redukcja wzmocnienia o 12dB podczas przewijania" - #: rc_option_editor.cc:1177 msgid "" "This will reduce the unpleasant increase in perceived volume that occurs " @@ -9561,11 +5367,6 @@ msgstr "" msgid "Sync/Slave" msgstr "" -#: rc_option_editor.cc:1185 -#, fuzzy -msgid "External timecode source" -msgstr "ŹródÅ‚o synchronizacji pozycji" - #: rc_option_editor.cc:1195 msgid "Match session video frame rate to external timecode" msgstr "" @@ -9584,11 +5385,6 @@ msgid "" "external timecode standard and the session standard." msgstr "" -#: rc_option_editor.cc:1211 -#, fuzzy -msgid "External timecode is sync locked" -msgstr "ŹródÅ‚o synchronizacji pozycji" - #: rc_option_editor.cc:1217 msgid "" "When enabled indicates that the selected external timecode source " @@ -9620,16 +5416,6 @@ msgstr "" msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1257 -#, fuzzy -msgid "LTC Generator" -msgstr "Kreator" - -#: rc_option_editor.cc:1262 -#, fuzzy -msgid "Enable LTC generator" -msgstr "Włącz nagrywanie" - #: rc_option_editor.cc:1269 msgid "send LTC while stopped" msgstr "" @@ -9640,22 +5426,12 @@ msgid "" "transport (playhead) is not moving" msgstr "" -#: rc_option_editor.cc:1281 -#, fuzzy -msgid "LTC generator level" -msgstr "Kreator" - #: rc_option_editor.cc:1285 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " "is 0dBu ^= -18dbFS in an EBU calibrated system" msgstr "" -#: rc_option_editor.cc:1297 -#, fuzzy -msgid "Link selection of regions and tracks" -msgstr "Odwróć zaznaczenie Å›cieżki" - #: rc_option_editor.cc:1305 msgid "Move relevant automation when audio regions are moved" msgstr "" @@ -9684,16 +5460,6 @@ msgstr "" msgid "Make rubberband selection rectangle snap to the grid" msgstr "" -#: rc_option_editor.cc:1348 -#, fuzzy -msgid "Show waveforms in regions" -msgstr "WyÅ›wietl obszary automatyczne" - -#: rc_option_editor.cc:1356 -#, fuzzy -msgid "Show gain envelopes in audio regions" -msgstr "WyÅ›wietl obszary automatyczne" - #: rc_option_editor.cc:1357 msgid "in all modes" msgstr "" @@ -9702,35 +5468,10 @@ msgstr "" msgid "only in region gain mode" msgstr "" -#: rc_option_editor.cc:1365 -#, fuzzy -msgid "Waveform scale" -msgstr "Wykres fali" - #: rc_option_editor.cc:1370 msgid "linear" msgstr "linearna" -#: rc_option_editor.cc:1371 -#, fuzzy -msgid "logarithmic" -msgstr "Logarytmiczny" - -#: rc_option_editor.cc:1377 -#, fuzzy -msgid "Waveform shape" -msgstr "Wykres fali" - -#: rc_option_editor.cc:1382 -#, fuzzy -msgid "traditional" -msgstr "Tradycyjny" - -#: rc_option_editor.cc:1383 -#, fuzzy -msgid "rectified" -msgstr "Poprawiony" - #: rc_option_editor.cc:1390 msgid "Show waveforms for audio while it is being recorded" msgstr "" @@ -9747,21 +5488,6 @@ msgstr "" msgid "Update editor window during drags of the summary" msgstr "" -#: rc_option_editor.cc:1422 -#, fuzzy -msgid "Synchronise editor and mixer track order" -msgstr "Synchronizacja kolejnoÅ›ci Å›cieżek miksera i edytora" - -#: rc_option_editor.cc:1430 -#, fuzzy -msgid "Synchronise editor and mixer selection" -msgstr "Synchronizacja kolejnoÅ›ci Å›cieżek miksera i edytora" - -#: rc_option_editor.cc:1437 -#, fuzzy -msgid "Name new markers" -msgstr "Dodaj nowy znacznik" - #: rc_option_editor.cc:1443 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " @@ -9774,114 +5500,14 @@ msgstr "" msgid "Auto-scroll editor window when dragging near its edges" msgstr "" -#: rc_option_editor.cc:1456 -#, fuzzy -msgid "Buffering" -msgstr "Rozmiar bufora" - -#: rc_option_editor.cc:1464 -#, fuzzy -msgid "Record monitoring handled by" -msgstr "Monitorowanie" - -#: rc_option_editor.cc:1475 -#, fuzzy -msgid "ardour" -msgstr "ardour: " - -#: rc_option_editor.cc:1476 -#, fuzzy -msgid "audio hardware" -msgstr "Klatki audio" - -#: rc_option_editor.cc:1483 -#, fuzzy -msgid "Tape machine mode" -msgstr "Tryb taÅ›mowy" - #: rc_option_editor.cc:1488 msgid "Connection of tracks and busses" msgstr "" -#: rc_option_editor.cc:1493 -#, fuzzy -msgid "Auto-connect master/monitor busses" -msgstr "ÅÄ…cz wyjÅ›cia z głównÄ… szynÄ… automatycznie" - -#: rc_option_editor.cc:1500 -#, fuzzy -msgid "Connect track inputs" -msgstr "Połączenia" - -#: rc_option_editor.cc:1505 -#, fuzzy -msgid "automatically to physical inputs" -msgstr "Automatyczne łączenie do wejść fizycznych" - -#: rc_option_editor.cc:1506 rc_option_editor.cc:1519 -#, fuzzy -msgid "manually" -msgstr "RÄ™cznie" - #: rc_option_editor.cc:1512 msgid "Connect track and bus outputs" msgstr "" -#: rc_option_editor.cc:1517 -#, fuzzy -msgid "automatically to physical outputs" -msgstr "Automatyczne łączenie do wejść fizycznych" - -#: rc_option_editor.cc:1518 -#, fuzzy -msgid "automatically to master bus" -msgstr "Automatyczne łączenie wyjść" - -#: rc_option_editor.cc:1523 -#, fuzzy -msgid "Denormals" -msgstr "Cofnij normalizacjÄ™" - -#: rc_option_editor.cc:1528 -#, fuzzy -msgid "Use DC bias to protect against denormals" -msgstr "ChroÅ„ przed liczbami zdenormalizowanymi" - -#: rc_option_editor.cc:1535 -#, fuzzy -msgid "Processor handling" -msgstr "NieobsÅ‚ugiwane przez procesor" - -#: rc_option_editor.cc:1540 -#, fuzzy -msgid "no processor handling" -msgstr "NieobsÅ‚ugiwane przez procesor" - -#: rc_option_editor.cc:1545 -#, fuzzy -msgid "use FlushToZero" -msgstr "Użyj FlushToZero" - -#: rc_option_editor.cc:1549 -#, fuzzy -msgid "use DenormalsAreZero" -msgstr "Użyj DenormalsAreZero" - -#: rc_option_editor.cc:1553 -#, fuzzy -msgid "use FlushToZero and DenormalsAreZero" -msgstr "Użyj FlushToZero & DenormalsAreZero" - -#: rc_option_editor.cc:1563 -#, fuzzy -msgid "Silence plugins when the transport is stopped" -msgstr "Zatrzymanie wtyczek przy zakoÅ„czeniu nagrywania/odtwarzania" - -#: rc_option_editor.cc:1571 -#, fuzzy -msgid "Make new plugins active" -msgstr "włącz stopniowe wzmocnienie" - #: rc_option_editor.cc:1579 msgid "Enable automatic analysis of audio" msgstr "" @@ -9906,30 +5532,10 @@ msgstr "" msgid "Solo controls are Listen controls" msgstr "" -#: rc_option_editor.cc:1613 -#, fuzzy -msgid "Listen Position" -msgstr "Pozycja" - -#: rc_option_editor.cc:1618 -#, fuzzy -msgid "after-fader (AFL)" -msgstr "Stefan Kersten" - -#: rc_option_editor.cc:1619 -#, fuzzy -msgid "pre-fader (PFL)" -msgstr "Przekierowania przed potencjometrem" - #: rc_option_editor.cc:1625 msgid "PFL signals come from" msgstr "" -#: rc_option_editor.cc:1630 -#, fuzzy -msgid "before pre-fader processors" -msgstr "UsuÅ„ znacznik" - #: rc_option_editor.cc:1631 msgid "pre-fader but after pre-fader processors" msgstr "" @@ -9938,16 +5544,6 @@ msgstr "" msgid "AFL signals come from" msgstr "" -#: rc_option_editor.cc:1642 -#, fuzzy -msgid "immediately post-fader" -msgstr "Wyczyść metrum" - -#: rc_option_editor.cc:1643 -#, fuzzy -msgid "after post-fader processors (before pan)" -msgstr "UsuÅ„ znacznik" - #: rc_option_editor.cc:1652 msgid "Exclusive solo" msgstr "" @@ -9972,20 +5568,10 @@ msgstr "" msgid "Mute affects post-fader sends" msgstr "" -#: rc_option_editor.cc:1694 -#, fuzzy -msgid "Mute affects control outputs" -msgstr "ÅÄ…cz wyjÅ›cia rÄ™cznie" - #: rc_option_editor.cc:1702 msgid "Mute affects main outputs" msgstr "" -#: rc_option_editor.cc:1718 -#, fuzzy -msgid "Send MIDI Time Code" -msgstr "Sprzężenie zwrotne MIDI" - #: rc_option_editor.cc:1726 msgid "Percentage either side of normal transport speed to transmit MTC" msgstr "" @@ -9998,21 +5584,6 @@ msgstr "" msgid "Send MIDI Machine Control commands" msgstr "" -#: rc_option_editor.cc:1751 -#, fuzzy -msgid "Send MIDI control feedback" -msgstr "Sprzężenie zwrotne MIDI" - -#: rc_option_editor.cc:1759 -#, fuzzy -msgid "Inbound MMC device ID" -msgstr "ID przychodzÄ…cego sygnaÅ‚u MMC" - -#: rc_option_editor.cc:1768 -#, fuzzy -msgid "Outbound MMC device ID" -msgstr "ID wychodzÄ…cego sygnaÅ‚u MMC" - #: rc_option_editor.cc:1777 msgid "Initial program change" msgstr "" @@ -10029,11 +5600,6 @@ msgstr "" msgid "Sound MIDI notes as they are selected" msgstr "" -#: rc_option_editor.cc:1810 rc_option_editor.cc:1820 rc_option_editor.cc:1822 -#, fuzzy -msgid "User interaction" -msgstr "Operacje na obszarach" - #: rc_option_editor.cc:1813 msgid "" "Use translations of %1 messages\n" @@ -10041,40 +5607,6 @@ msgid "" " (if available for your language preferences)" msgstr "" -#: rc_option_editor.cc:1820 -#, fuzzy -msgid "Keyboard" -msgstr "UkÅ‚ad klawiatury" - -#: rc_option_editor.cc:1830 -#, fuzzy -msgid "Control surface remote ID" -msgstr "UrzÄ…dzenia sterujÄ…ce" - -#: rc_option_editor.cc:1835 -#, fuzzy -msgid "assigned by user" -msgstr "ID urzÄ…dzenia zdalnego przydzielone rÄ™cznie" - -#: rc_option_editor.cc:1836 -#, fuzzy -msgid "follows order of mixer" -msgstr "ID urzÄ…dzenia zdalnego zgodne z kolejnoÅ›ciÄ… miksera" - -#: rc_option_editor.cc:1837 -#, fuzzy -msgid "follows order of editor" -msgstr "ID urzÄ…dzenia zdalnego zgodne z kolejnoÅ›ciÄ… edytora" - -#: rc_option_editor.cc:1846 rc_option_editor.cc:1854 rc_option_editor.cc:1864 -#: rc_option_editor.cc:1885 rc_option_editor.cc:1894 rc_option_editor.cc:1902 -#: rc_option_editor.cc:1916 rc_option_editor.cc:1935 rc_option_editor.cc:1951 -#: rc_option_editor.cc:1967 rc_option_editor.cc:1981 rc_option_editor.cc:1995 -#: rc_option_editor.cc:1997 -#, fuzzy -msgid "Preferences|GUI" -msgstr "Preferencje" - #: rc_option_editor.cc:1849 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "" @@ -10091,39 +5623,14 @@ msgstr "" msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" -#: rc_option_editor.cc:1887 -#, fuzzy -msgid "Mixer Strip" -msgstr "Mikser" - #: rc_option_editor.cc:1897 msgid "Use narrow strips in the mixer by default" msgstr "" -#: rc_option_editor.cc:1906 -#, fuzzy -msgid "Peak hold time" -msgstr "Przytrzymanie metrum" - -#: rc_option_editor.cc:1912 -#, fuzzy -msgid "short" -msgstr "Krótko" - -#: rc_option_editor.cc:1913 -#, fuzzy -msgid "medium" -msgstr "Åšrednio" - #: rc_option_editor.cc:1914 msgid "long" msgstr "" -#: rc_option_editor.cc:1920 -#, fuzzy -msgid "DPM fall-off" -msgstr "Zmniejszanie metrum" - #: rc_option_editor.cc:1926 msgid "slowest [6.6dB/sec]" msgstr "" @@ -10210,11 +5717,6 @@ msgstr "" msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1985 -#, fuzzy -msgid "Peak threshold [dBFS]" -msgstr "Wartość progowa" - #: rc_option_editor.cc:1993 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " @@ -10229,11 +5731,6 @@ msgstr "" msgid "audition this region" msgstr "przesÅ‚uchaj ten obszar" -#: region_editor.cc:88 region_layering_order_editor.cc:74 -#, fuzzy -msgid "Position:" -msgstr "Pozycja" - #: region_editor.cc:90 add_video_dialog.cc:170 msgid "End:" msgstr "" @@ -10250,25 +5747,10 @@ msgstr "" msgid "Sync point (absolute):" msgstr "" -#: region_editor.cc:98 -#, fuzzy -msgid "File start:" -msgstr "Pliki" - #: region_editor.cc:102 msgid "Sources:" msgstr "" -#: region_editor.cc:104 -#, fuzzy -msgid "Source:" -msgstr "ŹródÅ‚o sygnaÅ‚u" - -#: region_editor.cc:166 -#, fuzzy -msgid "Region '%1'" -msgstr "Obszar %1" - #: region_editor.cc:273 msgid "change region start position" msgstr "zmieÅ„ pozycjÄ™ poczÄ…tkowÄ… obszaru" @@ -10281,39 +5763,14 @@ msgstr "zmieÅ„ pozycjÄ™ koÅ„cowÄ… obszaru" msgid "change region length" msgstr "zmieÅ„ dÅ‚ugość obszaru" -#: region_editor.cc:403 region_editor.cc:415 -#, fuzzy -msgid "change region sync point" -msgstr "zmieÅ„ pozycjÄ™ koÅ„cowÄ… obszaru" - #: region_layering_order_editor.cc:41 msgid "RegionLayeringOrderEditor" msgstr "" -#: region_layering_order_editor.cc:54 -#, fuzzy -msgid "Region Name" -msgstr "WedÅ‚ug nazwy obszaru" - -#: region_layering_order_editor.cc:71 -#, fuzzy -msgid "Track:" -msgstr "Åšcieżka" - -#: region_layering_order_editor.cc:103 -#, fuzzy -msgid "Choose Top Region" -msgstr "ZapÄ™tl obszar" - #: region_view.cc:274 msgid "SilenceText" msgstr "" -#: region_view.cc:290 region_view.cc:309 -#, fuzzy -msgid "minutes" -msgstr "Minuty" - #: region_view.cc:293 region_view.cc:312 msgid "msecs" msgstr "" @@ -10339,11 +5796,6 @@ msgid "" " (shortest audible segment = %1 %2)" msgstr "" -#: return_ui.cc:103 -#, fuzzy -msgid "Return " -msgstr "Autopowracanie" - #: rhythm_ferret.cc:49 msgid "Percussive Onset" msgstr "WystÄ…pienie perkusji" @@ -10368,11 +5820,6 @@ msgstr "" msgid "Complex Domain" msgstr "" -#: rhythm_ferret.cc:59 -#, fuzzy -msgid "Phase Deviation" -msgstr "Pozycja" - #: rhythm_ferret.cc:60 msgid "Kullback-Liebler" msgstr "" @@ -10381,21 +5828,6 @@ msgstr "" msgid "Modified Kullback-Liebler" msgstr "" -#: rhythm_ferret.cc:66 -#, fuzzy -msgid "Split region" -msgstr "Dzielenie obszaru" - -#: rhythm_ferret.cc:67 -#, fuzzy -msgid "Snap regions" -msgstr "Dzielenie obszaru" - -#: rhythm_ferret.cc:68 -#, fuzzy -msgid "Conform regions" -msgstr "Dostosowanie obszaru" - #: rhythm_ferret.cc:73 msgid "Rhythm Ferret" msgstr "" @@ -10404,30 +5836,10 @@ msgstr "" msgid "Analyze" msgstr "Analizuj" -#: rhythm_ferret.cc:114 -#, fuzzy -msgid "Detection function" -msgstr "Ustaw pozycjÄ™ synchronizacji" - -#: rhythm_ferret.cc:118 -#, fuzzy -msgid "Trigger gap" -msgstr "Przerwa wywoÅ‚ania (ms)" - #: rhythm_ferret.cc:123 strip_silence_dialog.cc:68 msgid "Threshold" msgstr "Wartość progowa" -#: rhythm_ferret.cc:128 -#, fuzzy -msgid "Peak threshold" -msgstr "Wartość progowa" - -#: rhythm_ferret.cc:133 -#, fuzzy -msgid "Silence threshold" -msgstr "Wartość progowa" - #: rhythm_ferret.cc:138 msgid "Sensitivity" msgstr "CzuÅ‚ość" @@ -10444,43 +5856,18 @@ msgstr "" msgid "Track/bus Group" msgstr "" -#: route_group_dialog.cc:41 -#, fuzzy -msgid "Relative" -msgstr "Wyrównaj relatywnie" - #: route_group_dialog.cc:42 msgid "Muting" msgstr "" -#: route_group_dialog.cc:43 -#, fuzzy -msgid "Soloing" -msgstr "Solo" - -#: route_group_dialog.cc:44 -#, fuzzy -msgid "Record enable" -msgstr "Tylko nagrywanie" - #: route_group_dialog.cc:45 time_info_box.cc:66 msgid "Selection" msgstr "Zaznaczenie" -#: route_group_dialog.cc:46 -#, fuzzy -msgid "Active state" -msgstr "Włącz" - #: route_group_dialog.cc:47 route_group_dialog.cc:76 theme_manager.cc:71 msgid "Color" msgstr "Kolor" -#: route_group_dialog.cc:53 -#, fuzzy -msgid "RouteGroupDialog" -msgstr "Okno dialogowe czyszczenia" - #: route_group_dialog.cc:92 msgid "Sharing" msgstr "" @@ -10519,11 +5906,6 @@ msgstr "" msgid "NO TRACK" msgstr "BRAK ÅšCIEÅ»KI" -#: route_params_ui.cc:613 route_params_ui.cc:614 -#, fuzzy -msgid "No Track or Bus Selected" -msgstr "Brak zaznaczonego szlaku" - #: route_time_axis.cc:97 msgid "g" msgstr "g" @@ -10544,41 +5926,6 @@ msgstr "" msgid "Record" msgstr "Nagrywanie" -#: route_time_axis.cc:210 -#, fuzzy -msgid "Route Group" -msgstr "Edycja grupy" - -#: route_time_axis.cc:213 -#, fuzzy -msgid "MIDI Controllers and Automation" -msgstr "Reguluje automatyzacjÄ™ wzmocnienia" - -#: route_time_axis.cc:390 -#, fuzzy -msgid "Show All Automation" -msgstr "WyÅ›wietl całą automatykÄ™" - -#: route_time_axis.cc:393 -#, fuzzy -msgid "Show Existing Automation" -msgstr "WyÅ›wietl istniejÄ…cÄ… automatykÄ™" - -#: route_time_axis.cc:396 -#, fuzzy -msgid "Hide All Automation" -msgstr "Ukryj całą automatykÄ™" - -#: route_time_axis.cc:405 -#, fuzzy -msgid "Processor automation" -msgstr "wyczyść automatyzacjÄ™" - -#: route_time_axis.cc:424 -#, fuzzy -msgid "Color..." -msgstr "Kolor" - #: route_time_axis.cc:481 msgid "Overlaid" msgstr "" @@ -10587,112 +5934,22 @@ msgstr "" msgid "Stacked" msgstr "" -#: route_time_axis.cc:495 -#, fuzzy -msgid "Layers" -msgstr "Warstwy" - -#: route_time_axis.cc:564 -#, fuzzy -msgid "Automatic (based on I/O connections)" -msgstr "Automatyczne łączenie wyjść" - -#: route_time_axis.cc:573 -#, fuzzy -msgid "(Currently: Existing Material)" -msgstr "Do istniejÄ…cego materiaÅ‚u" - -#: route_time_axis.cc:576 -#, fuzzy -msgid "(Currently: Capture Time)" -msgstr "Z czasem nagrania" - -#: route_time_axis.cc:584 -#, fuzzy -msgid "Align With Existing Material" -msgstr "Do istniejÄ…cego materiaÅ‚u" - -#: route_time_axis.cc:589 -#, fuzzy -msgid "Align With Capture Time" -msgstr "Z czasem nagrania" - #: route_time_axis.cc:594 msgid "Alignment" msgstr "Wyrównanie" -#: route_time_axis.cc:629 -#, fuzzy -msgid "Normal Mode" -msgstr "Tryb standardowy" - -#: route_time_axis.cc:635 -#, fuzzy -msgid "Tape Mode" -msgstr "Tryb taÅ›mowy" - -#: route_time_axis.cc:641 -#, fuzzy -msgid "Non-Layered Mode" -msgstr "Tryb przyciÄ…gania" - #: route_time_axis.cc:654 route_time_axis.cc:1601 msgid "Playlist" msgstr "Lista odtwarzania" -#: route_time_axis.cc:979 -#, fuzzy -msgid "Rename Playlist" -msgstr "Nazwa listy odtwarzania" - -#: route_time_axis.cc:980 -#, fuzzy -msgid "New name for playlist:" -msgstr "Nazwa listy odtwarzania" - -#: route_time_axis.cc:1065 -#, fuzzy -msgid "New Copy Playlist" -msgstr "Nazwa listy odtwarzania" - -#: route_time_axis.cc:1066 route_time_axis.cc:1119 -#, fuzzy -msgid "Name for new playlist:" -msgstr "Nazwa listy odtwarzania" - -#: route_time_axis.cc:1118 -#, fuzzy -msgid "New Playlist" -msgstr "Lista odtwarzania" - #: route_time_axis.cc:1309 msgid "You cannot create a track with that name as it is reserved for %1" msgstr "" -#: route_time_axis.cc:1490 -#, fuzzy -msgid "New Copy..." -msgstr "Nowa kopia" - -#: route_time_axis.cc:1494 -#, fuzzy -msgid "New Take" -msgstr "Nowe tempo" - -#: route_time_axis.cc:1495 -#, fuzzy -msgid "Copy Take" -msgstr "Skopiuj" - #: route_time_axis.cc:1500 msgid "Clear Current" msgstr "Wyczyść aktualnÄ…" -#: route_time_axis.cc:1503 -#, fuzzy -msgid "Select From All..." -msgstr "Wybierz spoÅ›ród wszystkich..." - #: route_time_axis.cc:1591 msgid "Take: %1.%2" msgstr "" @@ -10701,25 +5958,10 @@ msgstr "" msgid "Underlays" msgstr "" -#: route_time_axis.cc:2294 -#, fuzzy -msgid "Remove \"%1\"" -msgstr "UsuÅ„" - #: route_time_axis.cc:2344 route_time_axis.cc:2381 msgid "programming error: underlay reference pointer pairs are inconsistent!" msgstr "" -#: route_time_axis.cc:2408 -#, fuzzy -msgid "After-fade listen (AFL)" -msgstr "Stefan Kersten" - -#: route_time_axis.cc:2412 -#, fuzzy -msgid "Pre-fade listen (PFL)" -msgstr "Przekierowania przed potencjometrem" - #: route_time_axis.cc:2416 msgid "s" msgstr "s" @@ -10728,11 +5970,6 @@ msgstr "s" msgid "m" msgstr "w" -#: route_ui.cc:119 -#, fuzzy -msgid "Mute this track" -msgstr "Ukryj tÄ™ Å›cieżkÄ™" - #: route_ui.cc:123 msgid "Mute other (non-soloed) tracks" msgstr "" @@ -10745,68 +5982,18 @@ msgstr "" msgid "make mixer strips show sends to this bus" msgstr "" -#: route_ui.cc:138 -#, fuzzy -msgid "Monitor input" -msgstr "Monitorowanie" - -#: route_ui.cc:144 -#, fuzzy -msgid "Monitor playback" -msgstr "Zatrzymaj odtwarzanie" - #: route_ui.cc:591 msgid "Not connected to JACK - cannot engage record" msgstr "Brak połączenia z JACK - nie można rozpocząć nagrywania" -#: route_ui.cc:786 -#, fuzzy -msgid "Step Entry" -msgstr "Ustawianie edytora" - #: route_ui.cc:859 msgid "Assign all tracks (prefader)" msgstr "" -#: route_ui.cc:863 -#, fuzzy -msgid "Assign all tracks and buses (prefader)" -msgstr "do zaznaczonych Å›cieżek" - #: route_ui.cc:867 msgid "Assign all tracks (postfader)" msgstr "" -#: route_ui.cc:871 -#, fuzzy -msgid "Assign all tracks and buses (postfader)" -msgstr "do zaznaczonych Å›cieżek" - -#: route_ui.cc:875 -#, fuzzy -msgid "Assign selected tracks (prefader)" -msgstr "do zaznaczonych Å›cieżek" - -#: route_ui.cc:879 -#, fuzzy -msgid "Assign selected tracks and buses (prefader)" -msgstr "do zaznaczonych Å›cieżek" - -#: route_ui.cc:882 -#, fuzzy -msgid "Assign selected tracks (postfader)" -msgstr "do zaznaczonych Å›cieżek" - -#: route_ui.cc:886 -#, fuzzy -msgid "Assign selected tracks and buses (postfader)" -msgstr "do zaznaczonych Å›cieżek" - -#: route_ui.cc:889 -#, fuzzy -msgid "Copy track/bus gains to sends" -msgstr "Skopiuj pliki do sesji" - #: route_ui.cc:890 msgid "Set sends gain to -inf" msgstr "" @@ -10815,11 +6002,6 @@ msgstr "" msgid "Set sends gain to 0dB" msgstr "" -#: route_ui.cc:1211 -#, fuzzy -msgid "Solo Isolate" -msgstr "Bezpieczne solo" - #: route_ui.cc:1240 msgid "Pre Fader" msgstr "Przed potencjometrem" @@ -10836,58 +6018,12 @@ msgstr "" msgid "Main Outs" msgstr "Główne wyjÅ›cia" -#: route_ui.cc:1390 -#, fuzzy -msgid "Color Selection" -msgstr "Odtwórz zaznaczenie" - -#: route_ui.cc:1477 -#, fuzzy -msgid "" -"Do you really want to remove track \"%1\" ?\n" -"\n" -"You may also lose the playlist used by this track.\n" -"\n" -"(This action cannot be undone, and the session file will be overwritten)" -msgstr "" -"Na pewno usunąć tÄ™ Å›cieżkÄ™ \"%1\" ?\n" -"\n" -"Można również utracić listÄ™ odtwarzania używanÄ… przez tÄ™ Å›cieżkÄ™.\n" -"(tej operacji nie można cofnąć)" - -#: route_ui.cc:1479 -#, fuzzy -msgid "" -"Do you really want to remove bus \"%1\" ?\n" -"\n" -"(This action cannot be undone, and the session file will be overwritten)" -msgstr "" -"Na pewno usunąć tÄ™ Å›cieżkÄ™ \"%1\" ?\n" -"\n" -"Można również utracić listÄ™ odtwarzania używanÄ… przez tÄ™ Å›cieżkÄ™.\n" -"(tej operacji nie można cofnąć)" - -#: route_ui.cc:1487 -#, fuzzy -msgid "Remove track" -msgstr "UsuÅ„ znak" - -#: route_ui.cc:1489 -#, fuzzy -msgid "Remove bus" -msgstr "UsuÅ„" - #: route_ui.cc:1516 msgid "" "The use of colons (':') is discouraged in track and bus names.\n" "Do you want to use this new name?" msgstr "" -#: route_ui.cc:1520 -#, fuzzy -msgid "Use the new name" -msgstr "nazwa:" - #: route_ui.cc:1521 msgid "Re-edit the name" msgstr "" @@ -10896,39 +6032,14 @@ msgstr "" msgid "Rename Track" msgstr "ZmieÅ„ nazwÄ™ Å›cieżki" -#: route_ui.cc:1536 -#, fuzzy -msgid "Rename Bus" -msgstr "ZmieÅ„ nazwÄ™" - -#: route_ui.cc:1695 -#, fuzzy -msgid " latency" -msgstr "Opóźnienie" - #: route_ui.cc:1708 msgid "Cannot create route template directory %1" msgstr "" -#: route_ui.cc:1714 -#, fuzzy -msgid "Save As Template" -msgstr "Zapisz szablon" - -#: route_ui.cc:1715 -#, fuzzy -msgid "Template name:" -msgstr "Szablon:" - #: route_ui.cc:1788 msgid "Remote Control ID" msgstr "ID zdalnego sterowania" -#: route_ui.cc:1798 -#, fuzzy -msgid "Remote control ID:" -msgstr "ID zdalnego sterowania" - #: route_ui.cc:1812 msgid "" "The remote control ID of %1 is: %2\n" @@ -10937,16 +6048,6 @@ msgid "" "The remote control ID of %3 cannot be changed." msgstr "" -#: route_ui.cc:1816 -#, fuzzy -msgid "the master bus" -msgstr "Tworzenie głównej szyny" - -#: route_ui.cc:1816 -#, fuzzy -msgid "the monitor bus" -msgstr "Tworzenie głównej szyny" - #: route_ui.cc:1818 msgid "" "The remote control ID of %6 is: %3\n" @@ -10958,16 +6059,6 @@ msgid "" "change this%5" msgstr "" -#: route_ui.cc:1821 -#, fuzzy -msgid "the mixer" -msgstr "Mikser" - -#: route_ui.cc:1821 -#, fuzzy -msgid "the editor" -msgstr "edytor" - #: route_ui.cc:1876 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " @@ -10982,45 +6073,10 @@ msgstr "" msgid "Select folder to search for media" msgstr "" -#: search_path_option.cc:44 -#, fuzzy -msgid "Click to add a new location" -msgstr "Wyczyść wszystkie poÅ‚ożenia" - -#: search_path_option.cc:51 -#, fuzzy -msgid "the session folder" -msgstr "Wybieranie pliku sesji" - -#: send_ui.cc:126 -#, fuzzy -msgid "Send " -msgstr "WysyÅ‚anie MTC" - -#: session_import_dialog.cc:64 -#, fuzzy -msgid "Import from Session" -msgstr "Ekspor sesji" - -#: session_import_dialog.cc:73 -#, fuzzy -msgid "Elements" -msgstr "Komentarze" - -#: session_import_dialog.cc:110 -#, fuzzy -msgid "Cannot load XML for session from %1" -msgstr "nie można otworzyć pliku pango.rc %1" - #: session_import_dialog.cc:127 session_import_dialog.cc:211 msgid "Some elements had errors in them. Please see the log for details" msgstr "" -#: session_import_dialog.cc:163 -#, fuzzy -msgid "Import from session" -msgstr "Ekspor sesji" - #: session_import_dialog.cc:227 msgid "This will select all elements of this type!" msgstr "" @@ -11033,11 +6089,6 @@ msgstr "" msgid "Values (current value on top)" msgstr "" -#: session_metadata_dialog.cc:520 -#, fuzzy -msgid "User" -msgstr "Użytkownik:" - #: session_metadata_dialog.cc:528 msgid "Email" msgstr "" @@ -11046,11 +6097,6 @@ msgstr "" msgid "Web" msgstr "" -#: session_metadata_dialog.cc:534 -#, fuzzy -msgid "Organization" -msgstr "Tryb automatyzacji panoramy" - #: session_metadata_dialog.cc:537 msgid "Country" msgstr "" @@ -11067,11 +6113,6 @@ msgstr "" msgid "Subtitle" msgstr "" -#: session_metadata_dialog.cc:560 -#, fuzzy -msgid "Grouping" -msgstr "Grupa" - #: session_metadata_dialog.cc:563 msgid "Artist" msgstr "" @@ -11080,16 +6121,6 @@ msgstr "" msgid "Genre" msgstr "" -#: session_metadata_dialog.cc:569 -#, fuzzy -msgid "Comment" -msgstr "Komentarze" - -#: session_metadata_dialog.cc:572 -#, fuzzy -msgid "Copyright" -msgstr "Skopiuj" - #: session_metadata_dialog.cc:580 session_metadata_dialog.cc:585 msgid "Album" msgstr "" @@ -11102,11 +6133,6 @@ msgstr "" msgid "Album Artist" msgstr "" -#: session_metadata_dialog.cc:594 -#, fuzzy -msgid "Total Tracks" -msgstr "Åšcieżki" - #: session_metadata_dialog.cc:597 msgid "Disc Subtitle" msgstr "" @@ -11119,11 +6145,6 @@ msgstr "" msgid "Total Discs" msgstr "" -#: session_metadata_dialog.cc:606 -#, fuzzy -msgid "Compilation" -msgstr "automatyka" - #: session_metadata_dialog.cc:609 msgid "ISRC" msgstr "" @@ -11144,16 +6165,6 @@ msgstr "" msgid "Conductor" msgstr "" -#: session_metadata_dialog.cc:631 -#, fuzzy -msgid "Remixer" -msgstr "Mikser" - -#: session_metadata_dialog.cc:634 -#, fuzzy -msgid "Arranger" -msgstr " zakres" - #: session_metadata_dialog.cc:637 msgid "Engineer" msgstr "" @@ -11162,11 +6173,6 @@ msgstr "" msgid "Producer" msgstr "" -#: session_metadata_dialog.cc:643 -#, fuzzy -msgid "DJ Mixer" -msgstr "Mikser" - #: session_metadata_dialog.cc:646 msgid "Metadata|Mixer" msgstr "" @@ -11183,16 +6189,6 @@ msgstr "" msgid "Course" msgstr "" -#: session_metadata_dialog.cc:670 -#, fuzzy -msgid "Edit Session Metadata" -msgstr "od poczÄ…tku sesji" - -#: session_metadata_dialog.cc:701 -#, fuzzy -msgid "Import session metadata" -msgstr "od poczÄ…tku sesji" - #: session_metadata_dialog.cc:722 msgid "Choose session to import metadata from" msgstr "" @@ -11211,21 +6207,6 @@ msgstr "" msgid "Import all from:" msgstr "" -#: session_option_editor.cc:32 -#, fuzzy -msgid "Session Properties" -msgstr "Operacje na obszarach" - -#: session_option_editor.cc:41 -#, fuzzy -msgid "Timecode Settings" -msgstr "Klatek na sekundÄ™ licznika czasu" - -#: session_option_editor.cc:45 -#, fuzzy -msgid "Timecode frames-per-second" -msgstr "Klatek na sekundÄ™ licznika czasu" - #: session_option_editor.cc:50 msgid "23.976" msgstr "23.976" @@ -11234,11 +6215,6 @@ msgstr "23.976" msgid "24" msgstr "24" -#: session_option_editor.cc:52 -#, fuzzy -msgid "24.975" -msgstr "24.976" - #: session_option_editor.cc:53 msgid "25" msgstr "25" @@ -11271,26 +6247,6 @@ msgstr "60" msgid "Pull-up / pull-down" msgstr "" -#: session_option_editor.cc:70 -#, fuzzy -msgid "4.1667 + 0.1%" -msgstr "+4.1667% + 0.1%" - -#: session_option_editor.cc:71 -#, fuzzy -msgid "4.1667" -msgstr "+4.1667%" - -#: session_option_editor.cc:72 -#, fuzzy -msgid "4.1667 - 0.1%" -msgstr "+4.1667% - 0.1%" - -#: session_option_editor.cc:73 -#, fuzzy -msgid "0.1" -msgstr "+ 0.1%" - #: session_option_editor.cc:74 msgid "none" msgstr "brak" @@ -11299,21 +6255,6 @@ msgstr "brak" msgid "-0.1" msgstr "" -#: session_option_editor.cc:76 -#, fuzzy -msgid "-4.1667 + 0.1%" -msgstr "-4.1667% + 0.1%" - -#: session_option_editor.cc:77 -#, fuzzy -msgid "-4.1667" -msgstr "-4.1667%" - -#: session_option_editor.cc:78 -#, fuzzy -msgid "-4.1667 - 0.1%" -msgstr "-4.1667% - 0.1%" - #: session_option_editor.cc:84 msgid "" "Use Video File's FPS Instead of Timecode Value for Timeline and Video " @@ -11325,25 +6266,10 @@ msgid "" "Apply Pull-Up/Down to Video Timeline and Video Monitor (Unless in JACK-sync)." msgstr "" -#: session_option_editor.cc:96 -#, fuzzy -msgid "Ext Timecode Offsets" -msgstr "Klatek na sekundÄ™ licznika czasu" - -#: session_option_editor.cc:100 -#, fuzzy -msgid "Slave Timecode offset" -msgstr "Klatek na sekundÄ™ licznika czasu" - #: session_option_editor.cc:107 msgid "The specified offset is added to the received timecode (MTC or LTC)." msgstr "" -#: session_option_editor.cc:113 -#, fuzzy -msgid "Timecode Generator offset" -msgstr "Klatek na sekundÄ™ licznika czasu" - #: session_option_editor.cc:120 msgid "" "Specify an offset which is added to the generated timecode (so far only LTC)." @@ -11358,11 +6284,6 @@ msgid "" "%1 is JACK Time Master (provides Bar|Beat|Tick and other information to JACK)" msgstr "" -#: session_option_editor.cc:137 -#, fuzzy -msgid "Default crossfade type" -msgstr "PrzejÅ›cie krzyżowe" - #: session_option_editor.cc:142 msgid "Constant power (-3dB) crossfade" msgstr "" @@ -11375,38 +6296,6 @@ msgstr "" msgid "destructive-xfade-seconds" msgstr "" -#: session_option_editor.cc:149 -#, fuzzy -msgid "Destructive crossfade length" -msgstr "DÅ‚ugość destruktywnego przejÅ›cia krzyżowego (ms)" - -#: session_option_editor.cc:158 -#, fuzzy -msgid "Region fades active" -msgstr "włącz stopniowe wzmocnienie" - -#: session_option_editor.cc:165 -#, fuzzy -msgid "Region fades visible" -msgstr "WedÅ‚ug koÅ„ca obszaru w pliku" - -#: session_option_editor.cc:172 session_option_editor.cc:185 -#: session_option_editor.cc:199 session_option_editor.cc:201 -#: session_option_editor.cc:207 session_option_editor.cc:214 -#, fuzzy -msgid "Media" -msgstr "Åšrednio" - -#: session_option_editor.cc:172 -#, fuzzy -msgid "Audio file format" -msgstr "Format pliku dźwiÄ™kowego" - -#: session_option_editor.cc:176 -#, fuzzy -msgid "Sample format" -msgstr "Format próbkowania" - #: session_option_editor.cc:181 msgid "32-bit floating point" msgstr "" @@ -11419,11 +6308,6 @@ msgstr "" msgid "16-bit integer" msgstr "" -#: session_option_editor.cc:189 -#, fuzzy -msgid "File type" -msgstr "Format pliku" - #: session_option_editor.cc:194 msgid "Broadcast WAVE" msgstr "" @@ -11436,11 +6320,6 @@ msgstr "" msgid "WAVE-64" msgstr "" -#: session_option_editor.cc:201 -#, fuzzy -msgid "File locations" -msgstr "wyczyść poÅ‚ożenia" - #: session_option_editor.cc:203 msgid "Search for audio files in:" msgstr "" @@ -11454,11 +6333,6 @@ msgid "" "Track Input Monitoring automatically follows transport state (\"auto-input\")" msgstr "" -#: session_option_editor.cc:227 -#, fuzzy -msgid "Use monitor section in this session" -msgstr "Nie Å‚aduj sesji" - #: session_option_editor.cc:238 msgid "MIDI region copies are independent" msgstr "" @@ -11493,77 +6367,18 @@ msgstr "" msgid "replace both overlapping notes with a single note" msgstr "" -#: session_option_editor.cc:259 -#, fuzzy -msgid "Glue to bars and beats" -msgstr "Przyklejenie do taktów i uderzeÅ„" - -#: session_option_editor.cc:263 -#, fuzzy -msgid "Glue new markers to bars and beats" -msgstr "Przyklejenie do taktów i uderzeÅ„" - -#: session_option_editor.cc:270 -#, fuzzy -msgid "Glue new regions to bars and beats" -msgstr "Przyklejenie do taktów i uderzeÅ„" - -#: session_option_editor.cc:275 session_option_editor.cc:277 -#: session_option_editor.cc:284 session_option_editor.cc:291 -#: session_option_editor.cc:298 session_option_editor.cc:300 -#: session_option_editor.cc:307 session_option_editor.cc:314 -#: session_option_editor.cc:321 session_option_editor.cc:323 -#, fuzzy -msgid "Meterbridge" -msgstr "Ustawienia metrum" - #: session_option_editor.cc:275 msgid "Route Display" msgstr "" -#: session_option_editor.cc:279 -#, fuzzy -msgid "Show Midi Tracks" -msgstr "WyÅ›wietl wszystkie Å›cieżki audio" - -#: session_option_editor.cc:286 -#, fuzzy -msgid "Show Busses" -msgstr "szyny" - -#: session_option_editor.cc:293 -#, fuzzy -msgid "Include Master Bus" -msgstr "Tworzenie głównej szyny" - #: session_option_editor.cc:298 msgid "Button Area" msgstr "" -#: session_option_editor.cc:302 -#, fuzzy -msgid "Rec-enable Button" -msgstr "zmiana ustawienia nagrywania" - -#: session_option_editor.cc:309 -#, fuzzy -msgid "Mute Button" -msgstr "i przycisk:" - -#: session_option_editor.cc:316 -#, fuzzy -msgid "Solo Button" -msgstr "i przycisk:" - #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" -#: session_option_editor.cc:325 -#, fuzzy -msgid "Track Name" -msgstr "Åšcieżki/szyny" - #: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 msgid "as new tracks" msgstr "jako nowe Å›cieżki" @@ -11588,11 +6403,6 @@ msgstr "" msgid "Auto-play" msgstr "Autoodtwarzanie" -#: sfdb_ui.cc:129 sfdb_ui.cc:236 -#, fuzzy -msgid "Sound File Information" -msgstr "Informacje o pliku dźwiÄ™kowym" - #: sfdb_ui.cc:141 msgid "Timestamp:" msgstr "" @@ -11625,20 +6435,10 @@ msgstr "" msgid "Search" msgstr "Szukaj" -#: sfdb_ui.cc:449 -#, fuzzy -msgid "Audio and MIDI files" -msgstr "Pliki dźwiÄ™kowe" - #: sfdb_ui.cc:452 msgid "Audio files" msgstr "Pliki dźwiÄ™kowe" -#: sfdb_ui.cc:455 -#, fuzzy -msgid "MIDI files" -msgstr "Wszystkie pliki" - #: sfdb_ui.cc:458 add_video_dialog.cc:132 msgid "All files" msgstr "Wszystkie pliki" @@ -11655,26 +6455,6 @@ msgstr "Åšcieżki" msgid "Search Tags" msgstr "Wyszukiwanie etykiet" -#: sfdb_ui.cc:531 -#, fuzzy -msgid "Sort:" -msgstr "Sortuj" - -#: sfdb_ui.cc:539 -#, fuzzy -msgid "Longest" -msgstr "NajwiÄ™kszy" - -#: sfdb_ui.cc:540 -#, fuzzy -msgid "Shortest" -msgstr "Skrót" - -#: sfdb_ui.cc:541 -#, fuzzy -msgid "Newest" -msgstr "Najwolniej" - #: sfdb_ui.cc:542 msgid "Oldest" msgstr "" @@ -11683,11 +6463,6 @@ msgstr "" msgid "Most downloaded" msgstr "" -#: sfdb_ui.cc:544 -#, fuzzy -msgid "Least downloaded" -msgstr "Rozpocznij pobieranie" - #: sfdb_ui.cc:545 msgid "Highest rated" msgstr "" @@ -11704,31 +6479,6 @@ msgstr "" msgid "Similar" msgstr "" -#: sfdb_ui.cc:567 -#, fuzzy -msgid "ID" -msgstr "MIDI" - -#: sfdb_ui.cc:568 add_video_dialog.cc:84 -#, fuzzy -msgid "Filename" -msgstr "ZmieÅ„ nazwÄ™" - -#: sfdb_ui.cc:570 -#, fuzzy -msgid "Duration" -msgstr "Czas trwania (s)" - -#: sfdb_ui.cc:571 -#, fuzzy -msgid "Size" -msgstr "NajwiÄ™kszy rozmiar" - -#: sfdb_ui.cc:572 -#, fuzzy -msgid "Samplerate" -msgstr "CzÄ™stotliwość próbkowania:" - #: sfdb_ui.cc:573 msgid "License" msgstr "" @@ -11776,11 +6526,6 @@ msgstr "" msgid "MB" msgstr "" -#: sfdb_ui.cc:1086 -#, fuzzy -msgid "GB" -msgstr "Przejdź" - #: sfdb_ui.cc:1298 sfdb_ui.cc:1606 sfdb_ui.cc:1656 sfdb_ui.cc:1674 msgid "one track per file" msgstr "jedna Å›cieżka na plik" @@ -11793,11 +6538,6 @@ msgstr "jedna Å›cieżka na kanaÅ‚" msgid "sequence files" msgstr "" -#: sfdb_ui.cc:1312 sfdb_ui.cc:1664 -#, fuzzy -msgid "all files in one track" -msgstr "jako nowe Å›cieżki" - #: sfdb_ui.cc:1313 sfdb_ui.cc:1658 msgid "merge files" msgstr "połącz pliki" @@ -11824,45 +6564,10 @@ msgstr "" msgid "Copy files to session" msgstr "Skopiuj pliki do sesji" -#: sfdb_ui.cc:1551 sfdb_ui.cc:1714 -#, fuzzy -msgid "file timestamp" -msgstr "WedÅ‚ug timestamp obszaru" - -#: sfdb_ui.cc:1552 sfdb_ui.cc:1716 -#, fuzzy -msgid "edit point" -msgstr "Punkt edycji" - -#: sfdb_ui.cc:1553 sfdb_ui.cc:1718 -#, fuzzy -msgid "playhead" -msgstr "GÅ‚owica" - -#: sfdb_ui.cc:1554 -#, fuzzy -msgid "session start" -msgstr "od poczÄ…tku sesji" - #: sfdb_ui.cc:1559 msgid "Add files as ..." msgstr "" -#: sfdb_ui.cc:1581 -#, fuzzy -msgid "Insert at" -msgstr "Wstaw:" - -#: sfdb_ui.cc:1594 -#, fuzzy -msgid "Mapping" -msgstr "WyjÅ›cia" - -#: sfdb_ui.cc:1612 -#, fuzzy -msgid "Conversion quality" -msgstr "Jakość konwersji:" - #: sfdb_ui.cc:1624 sfdb_ui.cc:1730 msgid "Best" msgstr "Najlepsza" @@ -11883,78 +6588,18 @@ msgstr "Najszybciej" msgid "Shuttle speed control (Context-click for options)" msgstr "" -#: shuttle_control.cc:165 -#, fuzzy -msgid "Percent" -msgstr "Procenty" - #: shuttle_control.cc:173 msgid "Units" msgstr "" -#: shuttle_control.cc:179 shuttle_control.cc:599 -#, fuzzy -msgid "Sprung" -msgstr "sprężyna" - -#: shuttle_control.cc:183 shuttle_control.cc:602 -#, fuzzy -msgid "Wheel" -msgstr "koÅ‚o" - #: shuttle_control.cc:217 msgid "Maximum speed" msgstr "Maksymalna prÄ™dkość" -#: shuttle_control.cc:561 -#, fuzzy -msgid "Playing" -msgstr "Odtwórz" - -#: shuttle_control.cc:576 -#, fuzzy, c-format -msgid "<<< %+d semitones" -msgstr "Półtony" - -#: shuttle_control.cc:578 -#, fuzzy, c-format -msgid ">>> %+d semitones" -msgstr "Półtony" - -#: shuttle_control.cc:583 -#, fuzzy -msgid "Stopped" -msgstr "Zatrzymaj" - -#: splash.cc:73 -#, fuzzy -msgid "%1 loading ..." -msgstr "Wczytywanie..." - -#: speaker_dialog.cc:40 -#, fuzzy -msgid "Add Speaker" -msgstr "Dodaj nowy znacznik" - -#: speaker_dialog.cc:41 -#, fuzzy -msgid "Remove Speaker" -msgstr "usuÅ„ znacznik" - #: speaker_dialog.cc:63 msgid "Azimuth:" msgstr "" -#: startup.cc:72 -#, fuzzy -msgid "Create a new session" -msgstr "Otwieranie sesji" - -#: startup.cc:73 -#, fuzzy -msgid "Open an existing session" -msgstr "Otwieranie sesji" - #: startup.cc:74 msgid "" "Use an external mixer or the hardware mixer of your audio interface.\n" @@ -11998,11 +6643,6 @@ msgstr "" msgid "This is a BETA RELEASE" msgstr "" -#: startup.cc:324 -#, fuzzy -msgid "Audio / MIDI Setup" -msgstr "Ustawienia dźwiÄ™ku" - #: startup.cc:336 msgid "" "%1 is a digital audio workstation. You can use it to " @@ -12049,11 +6689,6 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:457 -#, fuzzy -msgid "Monitoring Choices" -msgstr "Monitorowanie" - #: startup.cc:480 msgid "Use a Master bus directly" msgstr "" @@ -12082,11 +6717,6 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:527 -#, fuzzy -msgid "Monitor Section" -msgstr "Monitorowanie" - #: startup.cc:573 msgid "Check the website for more..." msgstr "" @@ -12095,63 +6725,18 @@ msgstr "" msgid "Click to open the program website in your web browser" msgstr "" -#: startup.cc:729 -#, fuzzy -msgid "Open" -msgstr "Otwórz" - -#: startup.cc:775 -#, fuzzy -msgid "Session name:" -msgstr "Sesja" - -#: startup.cc:798 -#, fuzzy -msgid "Create session folder in:" -msgstr "PoÅ‚ożenie folderu:" - -#: startup.cc:821 -#, fuzzy -msgid "Select folder for session" -msgstr "Wszystko przed punktem edycji" - -#: startup.cc:853 -#, fuzzy -msgid "Use this template" -msgstr "Wybieranie szablonu" - -#: startup.cc:856 -#, fuzzy -msgid "no template" -msgstr "-szablon" - #: startup.cc:884 msgid "Use an existing session as a template:" msgstr "" -#: startup.cc:896 -#, fuzzy -msgid "Select template" -msgstr "Wybieranie szablonu" - #: startup.cc:922 msgid "New Session" msgstr "Nowa Sesja" -#: startup.cc:1077 -#, fuzzy -msgid "Select session file" -msgstr "Wybieranie pliku sesji" - #: startup.cc:1093 msgid "Browse:" msgstr "PoÅ‚ożenie:" -#: startup.cc:1102 -#, fuzzy -msgid "Select a session" -msgstr "Wybieranie pliku sesji" - #: startup.cc:1129 startup.cc:1130 startup.cc:1131 msgid "channels" msgstr " " @@ -12168,40 +6753,10 @@ msgstr "WejÅ›cia" msgid "Outputs" msgstr "WyjÅ›cia" -#: startup.cc:1155 -#, fuzzy -msgid "Create master bus" -msgstr "Tworzenie głównej szyny" - -#: startup.cc:1165 -#, fuzzy -msgid "Automatically connect to physical inputs" -msgstr "Automatyczne łączenie do wejść fizycznych" - #: startup.cc:1172 startup.cc:1231 msgid "Use only" msgstr "Ilość używanych kanałów:" -#: startup.cc:1225 -#, fuzzy -msgid "Automatically connect outputs" -msgstr "Automatyczne łączenie wyjść" - -#: startup.cc:1247 -#, fuzzy -msgid "... to master bus" -msgstr "do głównej szyny" - -#: startup.cc:1257 -#, fuzzy -msgid "... to physical outputs" -msgstr "do wyjść fizycznych" - -#: startup.cc:1307 -#, fuzzy -msgid "Advanced Session Options" -msgstr "Opcje zaawansowane" - #: step_entry.cc:59 msgid "Step Entry: %1" msgstr "" @@ -12230,11 +6785,6 @@ msgstr "" msgid "g-rest" msgstr "" -#: step_entry.cc:70 -#, fuzzy -msgid "back" -msgstr "Sprzężenie zwrotne" - #: step_entry.cc:81 step_entry.cc:84 msgid "+" msgstr "" @@ -12259,11 +6809,6 @@ msgstr "" msgid "Set note length to a sixteenth note" msgstr "" -#: step_entry.cc:195 -#, fuzzy -msgid "Set note length to a thirty-second note" -msgstr "Do trzydziestodwójek" - #: step_entry.cc:196 msgid "Set note length to a sixty-fourth note" msgstr "" @@ -12308,16 +6853,6 @@ msgstr "" msgid "Extend selected notes by note length" msgstr "" -#: step_entry.cc:332 -#, fuzzy -msgid "Use undotted note lengths" -msgstr "zmieÅ„ dÅ‚ugość stopniowego wyciszenia" - -#: step_entry.cc:333 -#, fuzzy -msgid "Use dotted (* 1.5) note lengths" -msgstr "zmieÅ„ dÅ‚ugość stopniowego wyciszenia" - #: step_entry.cc:334 msgid "Use double-dotted (* 1.75) note lengths" msgstr "" @@ -12326,11 +6861,6 @@ msgstr "" msgid "Use triple-dotted (* 1.875) note lengths" msgstr "" -#: step_entry.cc:336 -#, fuzzy -msgid "Insert a note-length's rest" -msgstr "zmieÅ„ dÅ‚ugość stopniowego wyciszenia" - #: step_entry.cc:337 msgid "Insert a grid-unit's rest" msgstr "" @@ -12363,100 +6893,30 @@ msgstr "" msgid "1/Note" msgstr "" -#: step_entry.cc:414 -#, fuzzy -msgid "Octave" -msgstr "Oktawy" - -#: step_entry.cc:597 -#, fuzzy -msgid "Insert Note A" -msgstr "Czas wstawienia" - #: step_entry.cc:598 msgid "Insert Note A-sharp" msgstr "" -#: step_entry.cc:599 -#, fuzzy -msgid "Insert Note B" -msgstr "Czas wstawienia" - -#: step_entry.cc:600 -#, fuzzy -msgid "Insert Note C" -msgstr "Czas wstawienia" - #: step_entry.cc:601 msgid "Insert Note C-sharp" msgstr "" -#: step_entry.cc:602 -#, fuzzy -msgid "Insert Note D" -msgstr "Czas wstawienia" - #: step_entry.cc:603 msgid "Insert Note D-sharp" msgstr "" -#: step_entry.cc:604 -#, fuzzy -msgid "Insert Note E" -msgstr "Czas wstawienia" - -#: step_entry.cc:605 -#, fuzzy -msgid "Insert Note F" -msgstr "Czas wstawienia" - #: step_entry.cc:606 msgid "Insert Note F-sharp" msgstr "" -#: step_entry.cc:607 -#, fuzzy -msgid "Insert Note G" -msgstr "Czas wstawienia" - #: step_entry.cc:608 msgid "Insert Note G-sharp" msgstr "" -#: step_entry.cc:610 -#, fuzzy -msgid "Insert a Note-length Rest" -msgstr "zmieÅ„ dÅ‚ugość stopniowego wyciszenia" - -#: step_entry.cc:611 -#, fuzzy -msgid "Insert a Snap-length Rest" -msgstr "zmieÅ„ dÅ‚ugość stopniowego wzmocnienia" - #: step_entry.cc:613 step_entry.cc:614 msgid "Move to next octave" msgstr "" -#: step_entry.cc:616 -#, fuzzy -msgid "Move to Next Note Length" -msgstr "ZmieÅ„ dÅ‚ugość stopniowego wyciszenia" - -#: step_entry.cc:617 -#, fuzzy -msgid "Move to Previous Note Length" -msgstr "Do koÅ„ca poprzedniego obszaru" - -#: step_entry.cc:619 -#, fuzzy -msgid "Increase Note Length" -msgstr "ZmieÅ„ dÅ‚ugość stopniowego wyciszenia" - -#: step_entry.cc:620 -#, fuzzy -msgid "Decrease Note Length" -msgstr "ZmieÅ„ dÅ‚ugość stopniowego wyciszenia" - #: step_entry.cc:622 msgid "Move to Next Note Velocity" msgstr "" @@ -12521,26 +6981,6 @@ msgstr "" msgid "Set Note Length to Whole" msgstr "" -#: step_entry.cc:645 -#, fuzzy -msgid "Set Note Length to 1/2" -msgstr "ZmieÅ„ dÅ‚ugość stopniowego wzmocnienia" - -#: step_entry.cc:647 -#, fuzzy -msgid "Set Note Length to 1/3" -msgstr "ZmieÅ„ dÅ‚ugość stopniowego wzmocnienia" - -#: step_entry.cc:649 -#, fuzzy -msgid "Set Note Length to 1/4" -msgstr "ZmieÅ„ dÅ‚ugość stopniowego wzmocnienia" - -#: step_entry.cc:651 -#, fuzzy -msgid "Set Note Length to 1/8" -msgstr "ZmieÅ„ dÅ‚ugość stopniowego wzmocnienia" - #: step_entry.cc:653 msgid "Set Note Length to 1/16" msgstr "" @@ -12581,20 +7021,10 @@ msgstr "" msgid "Set Note Velocity to Fortississimo" msgstr "" -#: step_entry.cc:678 -#, fuzzy -msgid "Toggle Triple Notes" -msgstr "Przełącz tryb edycji" - #: step_entry.cc:683 msgid "No Dotted Notes" msgstr "" -#: step_entry.cc:685 -#, fuzzy -msgid "Toggled Dotted Notes" -msgstr "Przełącz tryb edycji" - #: step_entry.cc:687 msgid "Toggled Double-Dotted Notes" msgstr "" @@ -12603,11 +7033,6 @@ msgstr "" msgid "Toggled Triple-Dotted Notes" msgstr "" -#: step_entry.cc:692 -#, fuzzy -msgid "Toggle Chord Entry" -msgstr "Przełącz nagrywanie Åšcieżki1" - #: step_entry.cc:694 msgid "Sustain Selected Notes by Note Length" msgstr "" @@ -12617,30 +7042,10 @@ msgstr "" msgid "L:%3d R:%3d Width:%d%%" msgstr "" -#: stereo_panner_editor.cc:35 -#, fuzzy -msgid "Stereo Panner" -msgstr "Stereo" - -#: stereo_panner_editor.cc:49 -#, fuzzy -msgid "Width" -msgstr "szerokość" - -#: strip_silence_dialog.cc:48 -#, fuzzy -msgid "Strip Silence" -msgstr "Liniowe" - #: strip_silence_dialog.cc:79 msgid "Minimum length" msgstr "" -#: strip_silence_dialog.cc:87 -#, fuzzy -msgid "Fade length" -msgstr "zmieÅ„ dÅ‚ugość stopniowego wzmocnienia" - #: tempo_dialog.cc:43 tempo_dialog.cc:58 msgid "bar:" msgstr "" @@ -12649,58 +7054,6 @@ msgstr "" msgid "beat:" msgstr "" -#: tempo_dialog.cc:45 tempo_dialog.cc:60 -#, fuzzy -msgid "Pulse note" -msgstr "usuniÄ™ty plik" - -#: tempo_dialog.cc:55 -#, fuzzy -msgid "Edit Tempo" -msgstr "Punkt edycji" - -#: tempo_dialog.cc:76 tempo_dialog.cc:77 tempo_dialog.cc:282 -#: tempo_dialog.cc:283 -#, fuzzy -msgid "whole" -msgstr "caÅ‚a nuta (1)" - -#: tempo_dialog.cc:78 tempo_dialog.cc:79 tempo_dialog.cc:284 -#: tempo_dialog.cc:285 -#, fuzzy -msgid "second" -msgstr "1 sekunda" - -#: tempo_dialog.cc:80 tempo_dialog.cc:81 tempo_dialog.cc:286 -#: tempo_dialog.cc:287 -#, fuzzy -msgid "third" -msgstr "trzecia część nuty (3)" - -#: tempo_dialog.cc:82 tempo_dialog.cc:83 tempo_dialog.cc:288 -#: tempo_dialog.cc:289 -#, fuzzy -msgid "quarter" -msgstr "ćwierćnuta (4)" - -#: tempo_dialog.cc:84 tempo_dialog.cc:85 tempo_dialog.cc:290 -#: tempo_dialog.cc:291 -#, fuzzy -msgid "eighth" -msgstr "Rozmiar" - -#: tempo_dialog.cc:86 tempo_dialog.cc:87 tempo_dialog.cc:292 -#: tempo_dialog.cc:293 -#, fuzzy -msgid "sixteenth" -msgstr "szesnastka (16)" - -#: tempo_dialog.cc:88 tempo_dialog.cc:89 tempo_dialog.cc:294 -#: tempo_dialog.cc:295 -#, fuzzy -msgid "thirty-second" -msgstr "trzydziestodwójka (32)" - #: tempo_dialog.cc:90 tempo_dialog.cc:91 tempo_dialog.cc:296 #: tempo_dialog.cc:297 msgid "sixty-fourth" @@ -12711,11 +7064,6 @@ msgstr "" msgid "one-hundred-twenty-eighth" msgstr "" -#: tempo_dialog.cc:120 -#, fuzzy -msgid "Beats per minute:" -msgstr "UderzeÅ„ na minutÄ™:" - #: tempo_dialog.cc:152 msgid "Tempo begins at" msgstr "" @@ -12724,26 +7072,6 @@ msgstr "" msgid "incomprehensible pulse note type (%1)" msgstr "" -#: tempo_dialog.cc:266 -#, fuzzy -msgid "Edit Meter" -msgstr "Tryb dźwiÄ™ku" - -#: tempo_dialog.cc:314 -#, fuzzy -msgid "Note value:" -msgstr "Wartość nuty:" - -#: tempo_dialog.cc:315 -#, fuzzy -msgid "Beats per bar:" -msgstr "UderzeÅ„ na takt:" - -#: tempo_dialog.cc:330 -#, fuzzy -msgid "Meter begins at bar:" -msgstr "PoczÄ…tek metrum w takcie:" - #: tempo_dialog.cc:441 msgid "incomprehensible meter note type (%1)" msgstr "" @@ -12760,20 +7088,10 @@ msgstr "" msgid "Restore Defaults" msgstr "" -#: theme_manager.cc:60 -#, fuzzy -msgid "Draw \"flat\" buttons" -msgstr "Reguluje automatyzacjÄ™ wzmocnienia" - #: theme_manager.cc:61 msgid "All floating windows are dialogs" msgstr "" -#: theme_manager.cc:62 -#, fuzzy -msgid "Draw waveforms with color gradient" -msgstr "WyÅ›wietl obszary automatyczne" - #: theme_manager.cc:68 msgid "Object" msgstr "Obiekt" @@ -12829,26 +7147,6 @@ msgstr "Okno rozciÄ…gania w czasie" msgid "Pitch Shift Audio" msgstr "" -#: time_fx_dialog.cc:76 -#, fuzzy -msgid "Time Stretch Audio" -msgstr "RozciÄ…ganie w czasie" - -#: time_fx_dialog.cc:104 transpose_dialog.cc:41 -#, fuzzy -msgid "Octaves:" -msgstr "Oktawy" - -#: time_fx_dialog.cc:109 transpose_dialog.cc:46 -#, fuzzy -msgid "Semitones:" -msgstr "Półtony" - -#: time_fx_dialog.cc:114 -#, fuzzy -msgid "Cents:" -msgstr "Zawartość:" - #: time_fx_dialog.cc:122 msgid "Time|Shift" msgstr "" @@ -12861,11 +7159,6 @@ msgstr "" msgid "Stretch/Shrink" msgstr "RozciÄ…gnij/skurcz" -#: time_fx_dialog.cc:164 -#, fuzzy -msgid "Progress" -msgstr "Szyny" - #: time_info_box.cc:121 msgid "Start recording at auto-punch start" msgstr "Rozpocznij nagrywanie przy napotkaniu przełącznika" @@ -12878,11 +7171,6 @@ msgstr "Zatrzymaj nagrywanie na koÅ„cu przełącznika" msgid "programming error: request for non-existent audio range (%1)!" msgstr "" -#: transpose_dialog.cc:30 -#, fuzzy -msgid "Transpose MIDI" -msgstr "Transponuj" - #: transpose_dialog.cc:55 msgid "Transpose" msgstr "Transponuj" @@ -12903,11 +7191,6 @@ msgstr "" msgid "Loading user ui configuration file %1" msgstr "" -#: ui_config.cc:137 -#, fuzzy -msgid "cannot read ui configuration file \"%1\"" -msgstr "nie można otworzyć pliku pango.rc %1" - #: ui_config.cc:142 msgid "user ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -12928,16 +7211,6 @@ msgstr "" msgid "missing RGBA style for \"%1\"" msgstr "" -#: utils.cc:591 -#, fuzzy -msgid "cannot find XPM file for %1" -msgstr "nie można otworzyć pliku pango.rc %1" - -#: utils.cc:617 -#, fuzzy -msgid "cannot find icon image for %1 using %2" -msgstr "nie można otworzyć pliku pango.rc %1" - #: utils.cc:632 msgid "Caught exception while loading icon named %1" msgstr "" @@ -12946,16 +7219,6 @@ msgstr "" msgid "VerboseCanvasCursor" msgstr "" -#: add_video_dialog.cc:55 -#, fuzzy -msgid "Set Video Track" -msgstr "Dodaj Å›cieżkÄ™ dźwiÄ™kowÄ…" - -#: add_video_dialog.cc:63 -#, fuzzy -msgid "Launch External Video Monitor" -msgstr "Rozszerzone" - #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -12968,26 +7231,6 @@ msgstr "" msgid "VideoServerIndex" msgstr "" -#: add_video_dialog.cc:129 -#, fuzzy -msgid "Video files" -msgstr "Pliki dźwiÄ™kowe" - -#: add_video_dialog.cc:164 -#, fuzzy -msgid "Video Information" -msgstr "Informacje o pliku dźwiÄ™kowym" - -#: add_video_dialog.cc:167 -#, fuzzy -msgid "Start:" -msgstr "Wyrównaj relatywnie" - -#: add_video_dialog.cc:173 -#, fuzzy -msgid "Frame rate:" -msgstr "CzÄ™stotliwość próbkowania:" - #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -13033,11 +7276,6 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" -#: video_monitor.cc:281 -#, fuzzy -msgid "Video Monitor: File Not Found." -msgstr "Monitorowanie" - #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -13054,25 +7292,10 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:56 -#, fuzzy -msgid "Transcode/Import Video File " -msgstr "SesjÄ™ do pliku dźwiÄ™kowego..." - -#: transcode_video_dialog.cc:58 -#, fuzzy -msgid "Output File:" -msgstr "UrzÄ…dzenie wyjÅ›ciowe" - #: transcode_video_dialog.cc:61 export_video_dialog.cc:73 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:63 -#, fuzzy -msgid "Height = " -msgstr "Rozmiar" - #: transcode_video_dialog.cc:66 msgid "Manual Override" msgstr "" @@ -13081,11 +7304,6 @@ msgstr "" msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:107 -#, fuzzy -msgid "File Information" -msgstr "Informacje o pliku dźwiÄ™kowym" - #: transcode_video_dialog.cc:113 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " @@ -13103,11 +7321,6 @@ msgstr "" msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:136 -#, fuzzy -msgid "Duration:" -msgstr "Czas trwania (s)" - #: transcode_video_dialog.cc:138 msgid "Codec:" msgstr "" @@ -13116,16 +7329,6 @@ msgstr "" msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:155 -#, fuzzy -msgid "??" -msgstr "???" - -#: transcode_video_dialog.cc:176 -#, fuzzy -msgid "Import Settings" -msgstr "WyjÅ›cia" - #: transcode_video_dialog.cc:181 msgid "Do Not Import Video" msgstr "" @@ -13134,34 +7337,14 @@ msgstr "" msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:184 -#, fuzzy -msgid "Import/Transcode Video to Session" -msgstr "Ekspor sesji" - #: transcode_video_dialog.cc:198 msgid "Scale Video: Width = " msgstr "" -#: transcode_video_dialog.cc:205 -#, fuzzy -msgid "Original Width" -msgstr "Pozycja poczÄ…tkowa" - #: transcode_video_dialog.cc:220 msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:225 -#, fuzzy -msgid "Extract Audio:" -msgstr "Eksportuj obszar" - -#: transcode_video_dialog.cc:345 -#, fuzzy -msgid "Extracting Audio.." -msgstr "Eksportuj obszar" - #: transcode_video_dialog.cc:348 msgid "Audio Extraction Failed." msgstr "" @@ -13174,11 +7357,6 @@ msgstr "" msgid "Transcoding Failed." msgstr "" -#: transcode_video_dialog.cc:491 -#, fuzzy -msgid "Save Transcoded Video File" -msgstr "SesjÄ™ do pliku dźwiÄ™kowego..." - #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -13187,11 +7365,6 @@ msgstr "" msgid "Server Executable:" msgstr "" -#: video_server_dialog.cc:46 -#, fuzzy -msgid "Server Docroot:" -msgstr "Serwer:" - #: video_server_dialog.cc:52 msgid "Don't show this dialog again. (Reset in Edit->Preferences)." msgstr "" @@ -13207,16 +7380,6 @@ msgstr "" msgid "Listen Address:" msgstr "" -#: video_server_dialog.cc:125 -#, fuzzy -msgid "Listen Port:" -msgstr "Pozycja" - -#: video_server_dialog.cc:130 -#, fuzzy -msgid "Cache Size:" -msgstr "NajwiÄ™kszy rozmiar" - #: video_server_dialog.cc:136 msgid "" "%1 relies on an external Video Server for the videotimeline.\n" @@ -13250,26 +7413,6 @@ msgstr "" msgid "Confirm Overwrite" msgstr "" -#: utils_videotl.cc:64 -#, fuzzy -msgid "A file with the same name already exists. Do you want to overwrite it?" -msgstr "Plik już istnieje. ZastÄ…pić go?" - -#: utils_videotl.cc:74 utils_videotl.cc:90 -#, fuzzy -msgid "Cannot create video folder \"%1\" (%2)" -msgstr "Nie można odczytać pliku: %1 (%2)." - -#: export_video_dialog.cc:66 -#, fuzzy -msgid "Export Video File " -msgstr "SesjÄ™ do pliku dźwiÄ™kowego..." - -#: export_video_dialog.cc:70 -#, fuzzy -msgid "Video:" -msgstr "Wyrównaj relatywnie" - #: export_video_dialog.cc:74 msgid "Scale Video (W x H):" msgstr "" @@ -13278,11 +7421,6 @@ msgstr "" msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:80 -#, fuzzy -msgid "Normalize Audio" -msgstr "Normalizuj" - #: export_video_dialog.cc:81 msgid "2 Pass Encoding" msgstr "" @@ -13291,11 +7429,6 @@ msgstr "" msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:84 -#, fuzzy -msgid "Deinterlace" -msgstr "WyÅ›rodkuj" - #: export_video_dialog.cc:85 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" @@ -13304,11 +7437,6 @@ msgstr "" msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:87 -#, fuzzy -msgid "Include Session Metadata" -msgstr "od poczÄ…tku sesji" - #: export_video_dialog.cc:107 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " @@ -13316,26 +7444,6 @@ msgid "" "information." msgstr "" -#: export_video_dialog.cc:117 -#, fuzzy -msgid "Output:" -msgstr "WyjÅ›cia" - -#: export_video_dialog.cc:127 -#, fuzzy -msgid "Input:" -msgstr "WejÅ›cia" - -#: export_video_dialog.cc:138 -#, fuzzy -msgid "Audio:" -msgstr "OdsÅ‚uch" - -#: export_video_dialog.cc:140 -#, fuzzy -msgid "Master Bus" -msgstr "Tworzenie głównej szyny" - #: export_video_dialog.cc:145 msgid "from the %1 session's start to the session's end" msgstr "" @@ -13348,60 +7456,10 @@ msgstr "" msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:184 -#, fuzzy -msgid "Settings:" -msgstr "WejÅ›cia" - -#: export_video_dialog.cc:192 -#, fuzzy -msgid "Range:" -msgstr "Zakresy" - -#: export_video_dialog.cc:195 -#, fuzzy -msgid "Preset:" -msgstr "Zresetuj" - #: export_video_dialog.cc:198 msgid "Video Codec:" msgstr "" -#: export_video_dialog.cc:201 -#, fuzzy -msgid "Video KBit/s:" -msgstr "Wyrównaj relatywnie" - -#: export_video_dialog.cc:204 -#, fuzzy -msgid "Audio Codec:" -msgstr "Tryb dźwiÄ™ku" - -#: export_video_dialog.cc:207 -#, fuzzy -msgid "Audio KBit/s:" -msgstr "Pliki dźwiÄ™kowe" - -#: export_video_dialog.cc:210 -#, fuzzy -msgid "Audio Samplerate:" -msgstr "CzÄ™stotliwość próbkowania:" - -#: export_video_dialog.cc:387 -#, fuzzy -msgid "Normalizing audio" -msgstr "Normalizacja wartoÅ›ci" - -#: export_video_dialog.cc:391 -#, fuzzy -msgid "Exporting audio" -msgstr "Eksportuj obszar" - -#: export_video_dialog.cc:437 -#, fuzzy -msgid "Exporting Audio..." -msgstr "Eksportuj obszar" - #: export_video_dialog.cc:494 msgid "" "Export Video: Cannot query duration of video-file, using duration from " @@ -13432,16 +7490,6 @@ msgstr "" msgid "Transcoding failed." msgstr "" -#: export_video_dialog.cc:948 export_video_dialog.cc:968 -#, fuzzy -msgid "Save Exported Video File" -msgstr "SesjÄ™ do pliku dźwiÄ™kowego..." - -#: export_video_infobox.cc:30 -#, fuzzy -msgid "Video Export Info" -msgstr "Monitorowanie" - #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -13458,1477 +7506,3 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" - -#, fuzzy -#~ msgid "slowest" -#~ msgstr "Najwolniej" - -#, fuzzy -#~ msgid "fast" -#~ msgstr "najszybsza" - -#, fuzzy -#~ msgid "faster" -#~ msgstr "Szybciej" - -#~ msgid "fastest" -#~ msgstr "najszybsza" - -#~ msgid "Connect" -#~ msgstr "Połącz" - -#~ msgid "Add Audio Track" -#~ msgstr "Dodaj Å›cieżkÄ™ dźwiÄ™kowÄ…" - -#~ msgid "Add Audio Bus" -#~ msgstr "Dodaj szynÄ™ dźwiÄ™kowÄ…" - -#, fuzzy -#~ msgid "Add MIDI Track" -#~ msgstr "Dodaj Å›cieżkÄ™ dźwiÄ™kowÄ…" - -#, fuzzy -#~ msgid "Control surfaces" -#~ msgstr "UrzÄ…dzenia sterujÄ…ce" - -#, fuzzy -#~ msgid "Hid" -#~ msgstr "Ukryj" - -#~ msgid "Locate to Range Mark" -#~ msgstr "PrzenieÅ› gÅ‚owicÄ™ do znacznika zakresu" - -#~ msgid "Play from Range Mark" -#~ msgstr "Odtwórz od znacznika zakresu" - -#~ msgid "Playback/Recording on 1 Device" -#~ msgstr "Odtwarzanie/nagrywanie przy użyciu 1 urzÄ…dzenia" - -#~ msgid "Playback/Recording on 2 Devices" -#~ msgstr "Odtwarzanie/nagrywanie przy użyciu 2 urzÄ…dzeÅ„" - -#, fuzzy -#~ msgid "Channel:" -#~ msgstr "KanaÅ‚y:" - -#, fuzzy -#~ msgid "Lck" -#~ msgstr "Zablokuj" - -#, fuzzy -#~ msgid "Subframes per frame" -#~ msgstr "80 na klatkÄ™" - -#, fuzzy -#~ msgid "100" -#~ msgstr "44100Hz" - -#, fuzzy -#~ msgid "could not create a new mixed track" -#~ msgstr "nie można byÅ‚o utworzyć nowej Å›cieżki dźwiÄ™kowej" - -#, fuzzy -#~ msgid "could not create new audio bus" -#~ msgid_plural "could not create %1 new audio busses" -#~ msgstr[0] "nie można byÅ‚o utworzyć nowej Å›cieżki dźwiÄ™kowej" -#~ msgstr[1] "nie można byÅ‚o utworzyć nowej Å›cieżki dźwiÄ™kowej" -#~ msgstr[2] "nie można byÅ‚o utworzyć nowej Å›cieżki dźwiÄ™kowej" - -#~ msgid "could only create %1 of %2 new audio %3" -#~ msgstr "można byÅ‚o utworzyć jedynie %1 z %2 nowego audio %3" - -#, fuzzy -#~ msgid "Always Play Range Selection (if any)" -#~ msgstr "Odtwórz zakres/zaznaczenie" - -#~ msgid "Start playback after any locate" -#~ msgstr "Rozpocznij odtwarzanie przy każdym ustaleniu poÅ‚ożenia gÅ‚owicy" - -#, fuzzy -#~ msgid "Always Play Range" -#~ msgstr "Odtwórz zakres" - -#~ msgid "Select/Move Objects" -#~ msgstr "Zaznacza i przesuwa obiekty" - -#~ msgid "Select/Move Ranges" -#~ msgstr "Zaznacza przesuwa zakresy" - -#, fuzzy -#~ msgid "Link Object / Range Tools" -#~ msgstr "NarzÄ™dzie obiektów" - -#, fuzzy -#~ msgid "editing|E" -#~ msgstr "Zmienianie przy użyciu:" - -#, fuzzy -#~ msgid "Sharing Editing?" -#~ msgstr "ZmieÅ„ punkt edycji" - -#, fuzzy -#~ msgid "Disable plugins during recording" -#~ msgstr "Brak uruchamiania wtyczek podczas nagrywania" - -#, fuzzy -#~ msgid "Visual|Interface" -#~ msgstr "Interfejs" - -#, fuzzy -#~ msgid "Editing" -#~ msgstr "Zmienianie przy użyciu:" - -#, fuzzy -#~ msgid "Timecode Offset Negative" -#~ msgstr "Ujemne" - -#, fuzzy -#~ msgid "Crossfades are created" -#~ msgstr "PrzejÅ›cia krzyżowe" - -#, fuzzy -#~ msgid "to span entire overlap" -#~ msgstr "ObejmujÄ… wszystkie nakÅ‚adajÄ…ce siÄ™ fragmenty" - -#, fuzzy -#~ msgid "Short crossfade length" -#~ msgstr "DÅ‚ugość krótkiego przejÅ›cia krzyżowego (ms)" - -#, fuzzy -#~ msgid "Create crossfades automatically" -#~ msgstr "Tworzenie automatyczne" - -#~ msgid "Add files:" -#~ msgstr "Dodaj pliki:" - -#~ msgid "Mapping:" -#~ msgstr "Mapowanie:" - -#~ msgid "" -#~ "Russian:\n" -#~ "\t Igor Blinov \n" -#~ msgstr "" -#~ "Russian:\n" -#~ "\t Igor Blinov \n" - -#, fuzzy -#~ msgid "%1 could not start JACK" -#~ msgstr "Nie można połączyć siÄ™ z JACK." - -#~ msgid "" -#~ "There are several possible reasons:\n" -#~ "\n" -#~ "1) You requested audio parameters that are not supported..\n" -#~ "2) JACK is running as another user.\n" -#~ "\n" -#~ "Please consider the possibilities, and perhaps try different parameters." -#~ msgstr "" -#~ "Istnieje kilka możliwych przyczyn:\n" -#~ "\n" -#~ "1) Wprowadzono nieobsÅ‚ugiwane parametry dźwiÄ™ku.\n" -#~ "2) JACK jest uruchomiony przez innego użytkownika.\n" -#~ "\n" -#~ "Należy rozważyć wszystkie możliwoÅ›ci i wypróbować inne ustawienia." - -#~ msgid "Mixer" -#~ msgstr "Mikser" - -#, fuzzy -#~ msgid "Show All Crossfades" -#~ msgstr "WyÅ›wietlanie wszystkich przejść krzyżowych" - -#, fuzzy -#~ msgid "Edit Crossfade" -#~ msgstr "PrzejÅ›cie krzyżowe" - -#~ msgid "Out (dry)" -#~ msgstr "WyjÅ›cie (suche)" - -#~ msgid "In (dry)" -#~ msgstr "WejÅ›cie (suche)" - -#~ msgid "With Pre-roll" -#~ msgstr "Z Pre-roll" - -#~ msgid "With Post-roll" -#~ msgstr "Z Post-roll" - -#, fuzzy -#~ msgid "Edit crossfade" -#~ msgstr "PrzejÅ›cie krzyżowe" - -#, fuzzy -#~ msgid "Route Groups" -#~ msgstr "Zmiany grup" - -#~ msgid "Unmute" -#~ msgstr "WyÅ‚. wyciszenie" - -#, fuzzy -#~ msgid "Convert to Short" -#~ msgstr "Konwertuj na krótki" - -#, fuzzy -#~ msgid "Convert to Full" -#~ msgstr "Konwertuj na dÅ‚ugi" - -#, fuzzy -#~ msgid "Nudge Entire Track Backward" -#~ msgstr "Pchnij całą Å›cieżkÄ™ do przodu" - -#, fuzzy -#~ msgid "Nudge Track After Edit Point Backward" -#~ msgstr "Pchnij Å›cieżkÄ™ za punktem edycji do przodu" - -#~ msgid "Nudge Region/Selection Backwards" -#~ msgstr "Pchnij obszar/zaznaczenie w tyÅ‚" - -#~ msgid "Undo" -#~ msgstr "Cofnij" - -#~ msgid "Jump Forward to Mark" -#~ msgstr "Do nastÄ™pnego znacznika" - -#~ msgid "Jump Backward to Mark" -#~ msgstr "Do poprzedniego znacznika" - -#~ msgid "Nudge Next Backward" -#~ msgstr "Pchnij nastÄ™pny do tyÅ‚u" - -#, fuzzy -#~ msgid "Forward to Grid" -#~ msgstr "Do siatki z przodu" - -#, fuzzy -#~ msgid "Backward to Grid" -#~ msgstr "Do siatki z tyÅ‚u" - -#~ msgid "Move Backwards to Transient" -#~ msgstr "Do poprzedniego przejÅ›cia" - -#, fuzzy -#~ msgid "Add Range Marker(s)" -#~ msgstr "Dodaj znaczniki zakresu" - -#~ msgid "Envelope Visible" -#~ msgstr "WyÅ›wietl obwiedniÄ™" - -#, fuzzy -#~ msgid "Nudge Backward by Capture Offset" -#~ msgstr "Do przodu wg wyrównania nagrania" - -#, fuzzy -#~ msgid "Rel" -#~ msgstr "Ustaw" - -#, fuzzy -#~ msgid "Sel" -#~ msgstr "Ustaw" - -#, fuzzy -#~ msgid "region gain envelope visible" -#~ msgstr "WyÅ›wietl obwiedniÄ™" - -#~ msgid "time stretch" -#~ msgstr "rozciÄ…ganie w czasie" - -#~ msgid "Realtime Priority" -#~ msgstr "Priorytet" - -#, fuzzy -#~ msgid "Input channels:" -#~ msgstr "KanaÅ‚y wejÅ›ciowe" - -#, fuzzy -#~ msgid "Output channels:" -#~ msgstr "KanaÅ‚y wyjÅ›ciowe" - -#, fuzzy -#~ msgid "Advanced options" -#~ msgstr "Opcje zaawansowane" - -#, fuzzy -#~ msgid "New From" -#~ msgstr "Nowa kopia" - -#, fuzzy -#~ msgid "Move tempo and meter changes" -#~ msgstr "miejsce zmiany metrum" - -#~ msgid "Option-" -#~ msgstr "Opcja " - -#~ msgid "Control-" -#~ msgstr "Sterowanie " - -#~ msgid "SCMS" -#~ msgstr "SCMS" - -#, fuzzy -#~ msgid "Set value to playhead" -#~ msgstr "Wszystko przed gÅ‚owicÄ…" - -#, fuzzy -#~ msgid "End time" -#~ msgstr "Punkt koÅ„cowy przyciÄ™cia" - -#, fuzzy -#~ msgid "Could not create user configuration directory" -#~ msgstr "Nie udaÅ‚o siÄ™ utworzyć sesji w \"%1\"" - -#, fuzzy -#~ msgid "MIDI Thru" -#~ msgstr "MIDI" - -#~ msgid "close" -#~ msgstr "zamknij" - -#~ msgid "New send" -#~ msgstr "Nowy wysyÅ‚" - -#~ msgid "New Send ..." -#~ msgstr "Nowy wysyÅ‚..." - -#, fuzzy -#~ msgid "Controls..." -#~ msgstr "Sterowanie" - -#, fuzzy -#~ msgid "Quantize Type" -#~ msgstr "Format pliku" - -#, fuzzy -#~ msgid "Secondary clock delta to edit cursor" -#~ msgstr "Zegar dodatkowy wyÅ›wietla odstÄ™p od wskaźnika" - -#, fuzzy -#~ msgid "Route active state" -#~ msgstr "stan automatyki" - -#, fuzzy -#~ msgid "Crossfades active" -#~ msgstr "PrzejÅ›cia krzyżowe" - -#, fuzzy -#~ msgid "Layering model" -#~ msgstr "Warstwy" - -#, fuzzy -#~ msgid "later is higher" -#~ msgstr "Późniejsza jest wyżej" - -#, fuzzy -#~ msgid "most recently moved or added is higher" -#~ msgstr "Ostatnio przesuniÄ™ta/dodana jest wyżej" - -#, fuzzy -#~ msgid "most recently added is higher" -#~ msgstr "Ostatnio dodana jest wyżej" - -#, fuzzy -#~ msgid "Page:" -#~ msgstr "Użycie:" - -#~ msgid "second (2)" -#~ msgstr "półnuta (2)" - -#~ msgid "eighth (8)" -#~ msgstr "ósemka (8)" - -#~ msgid "Strict Linear" -#~ msgstr "Liniowe" - -#~ msgid "" -#~ "time\n" -#~ "master" -#~ msgstr "" -#~ "zarzÄ…dzanie\n" -#~ "czasem" - -#~ msgid "AUDITION" -#~ msgstr "ODSÅUCH" - -#~ msgid "SOLO" -#~ msgstr "SOLO" - -#~ msgid "%.1f kHz / %4.1f ms" -#~ msgstr "%.1f kHz / %4.1f ms" - -#, fuzzy -#~ msgid "% kHz / %4.1f ms" -#~ msgstr "%u kHz / %4.1f ms" - -#~ msgid "DSP: %5.1f%%" -#~ msgstr "DSP: %5.1f%%" - -#~ msgid "Buffers p:%%% c:%%%" -#~ msgstr "Bufory p:%%% c:%%%" - -#~ msgid "Disk: 24hrs+" -#~ msgstr "Dysk: 24hrs+" - -#, fuzzy -#~ msgid "Does %1 control the time?" -#~ msgstr "OkreÅ›la, czy Ardour kontroluje czas." - -#, fuzzy -#~ msgid "External" -#~ msgstr "wewnÄ™trzny" - -#, fuzzy -#~ msgid " " -#~ msgstr "% " - -#~ msgid "automation" -#~ msgstr "automatyka" - -#, fuzzy -#~ msgid "Delete Unused" -#~ msgstr "Usuwanie przy użyciu:" - -#~ msgid "No devices found for driver \"%1\"" -#~ msgstr "Brak urzÄ…dzeÅ„ sterownika \"%1\"" - -#, fuzzy -#~ msgid "Solo/Mute" -#~ msgstr "Solo" - -#~ msgid "Activate all" -#~ msgstr "Włącz wszystko" - -#~ msgid "A track already exists with that name" -#~ msgstr "Åšcieżka o tej nazwie już istnieje" - -#~ msgid "r" -#~ msgstr "n" - -#~ msgid "Password:" -#~ msgstr "HasÅ‚o:" - -#~ msgid "Cancelling.." -#~ msgstr "Anulowanie..." - -#~ msgid "Off" -#~ msgstr "Wyłączony" - -#~ msgid "Smaller" -#~ msgstr "Mniejszy" - -#~ msgid "quit" -#~ msgstr "zakoÅ„cz" - -#~ msgid "session" -#~ msgstr "Sesja" - -#~ msgid "snapshot" -#~ msgstr "zrzut" - -#, fuzzy -#~ msgid "Save Mix Template" -#~ msgstr "Zapisz szablon" - -#~ msgid "Clean Up" -#~ msgstr "Wyczyść" - -#~ msgid "Select semitones or %%-age for speed display" -#~ msgstr "Wybierz półtony lub procenty dla wyÅ›wietlania prÄ™dkoÅ›ci" - -#~ msgid "Current transport speed" -#~ msgstr "Aktualna prÄ™dkość nagrywania i odtwarzania" - -#~ msgid "stop" -#~ msgstr "zatrz." - -#~ msgid "Cleanup" -#~ msgstr "Wyczyść" - -#, fuzzy -#~ msgid "DSP: 100.0%" -#~ msgstr "DSP: %5.1f%%" - -#~ msgid "ST" -#~ msgstr "ST" - -#~ msgid "Extend Range to End of Region" -#~ msgstr "Rozszerz zakres do koÅ„ca obszaru" - -#~ msgid "Extend Range to Start of Region" -#~ msgstr "Rozszerz zakres do poczÄ…tku obszaru " - -#, fuzzy -#~ msgid "Key Mouse" -#~ msgstr "Wskaźnik myszy" - -#~ msgid "goto" -#~ msgstr "przejdź do" - -#~ msgid "Center Active Marker" -#~ msgstr "WyÅ›rodkuj wskaźnik" - -#~ msgid "Brush at Mouse" -#~ msgstr "PÄ™dzel" - -#~ msgid "Bounce" -#~ msgstr "Zgraj" - -#~ msgid "timestretch" -#~ msgstr "rozciÄ…ganie w czasie" - -#~ msgid "extend selection" -#~ msgstr "rozszerz zanaczenie" - -#~ msgid "Clear tempo" -#~ msgstr "Wyczyść tempo" - -#~ msgid "Clear meter" -#~ msgstr "Wyczyść metrum" - -#, fuzzy -#~ msgid "Default Channel" -#~ msgstr "3 kanaÅ‚y" - -#~ msgid "input" -#~ msgstr "wejÅ›cie" - -#, fuzzy -#~ msgid "Inserts, sends & plugins:" -#~ msgstr "Wstaw wtyczkÄ™" - -#, fuzzy -#~ msgid "insert file" -#~ msgstr "wstaw plik dźwiÄ™kowy" - -#~ msgid "region fill" -#~ msgstr "wypeÅ‚nienie obszaru" - -#~ msgid "fill selection" -#~ msgstr "wypeÅ‚nij zaznaczenie" - -#~ msgid "duplicate region" -#~ msgstr "duplikuj obszar" - -#, fuzzy -#~ msgid "C" -#~ msgstr "CD" - -#~ msgid "link" -#~ msgstr "łącze" - -#~ msgid "panning link control" -#~ msgstr "kontrola łączenia panoramowania" - -#~ msgid "panning link direction" -#~ msgstr "kierunek łączenia panoramowania" - -#~ msgid "Reset all" -#~ msgstr "Resetuj wszystko" - -#, fuzzy -#~ msgid "Set tempo map" -#~ msgstr "Ustawienie mapy tempa" - -#~ msgid "" -#~ "Ardour comes with ABSOLUTELY NO WARRANTY\n" -#~ "This is free software, and you are welcome to redistribute it\n" -#~ "under certain conditions; see the file COPYING for details.\n" -#~ msgstr "" -#~ "Na program Ardour nie udziela siÄ™ ABSOLUTNIE Å»ADNEJ GWARANCJI\n" -#~ "To jest wolne oprogramowanie i wolno Ci je rozpowszechniać\n" -#~ "na okreÅ›lonych warunkach - zobacz plik COPYING, by dowiedzieć siÄ™ " -#~ "wiÄ™cej.\n" - -#~ msgid "Unknown action name: %1" -#~ msgstr "Nieznana nazwa czynnoÅ›ci: %1" - -#~ msgid "Manual Setup" -#~ msgstr "RÄ™czne Ustawienia" - -#~ msgid "ardour: add track/bus" -#~ msgstr "Dodawanie Å›cieżek/szyn" - -#~ msgid "Name (template)" -#~ msgstr "Nazwa (szablon)" - -#~ msgid "Primary clock" -#~ msgstr "Zegar podstawowy" - -#~ msgid "secondary clock" -#~ msgstr "zegar dodatkowy" - -#~ msgid "ardour: save session?" -#~ msgstr "Pytanie o zapisanie sesji" - -#~ msgid "Ardour sessions" -#~ msgstr "Sesje Ardour" - -#~ msgid "Patience is a virtue.\n" -#~ msgstr "Cierpliwość jest cnotÄ….\n" - -#~ msgid "" -#~ "You do not have write access to this session.\n" -#~ "This prevents the session from being loaded." -#~ msgstr "" -#~ "Nie posiadasz dostÄ™pu do zapisu tej sesji.\n" -#~ "Uniemożliwia to wczytanie sesji." - -#~ msgid "ardour: cleanup" -#~ msgstr "Czyszczenie" - -#~ msgid "files were" -#~ msgstr "pliki byÅ‚y" - -#~ msgid "file was" -#~ msgstr "plik byÅ‚" - -#~ msgid "Import/Export" -#~ msgstr "Importuj/Eksportuj" - -#~ msgid "Export selection to audiofile..." -#~ msgstr "Zaznaczenie do pliku dźwiÄ™kowego..." - -#~ msgid "Export range markers to audiofile..." -#~ msgstr "Znaczniki zakresu do pliku dźwiÄ™kowego..." - -#~ msgid "Show Mixer" -#~ msgstr "Mikser" - -#~ msgid "Track/Bus Inspector" -#~ msgstr "Kontroler Å›cieżek/szyn" - -#~ msgid "Toggle Record Enable Track2" -#~ msgstr "Przełącz nagrywanie Åšcieżki2" - -#~ msgid "Toggle Record Enable Track3" -#~ msgstr "Przełącz nagrywanie Åšcieżki3" - -#~ msgid "Toggle Record Enable Track4" -#~ msgstr "Przełącz nagrywanie Åšcieżki4" - -#~ msgid "Toggle Record Enable Track5" -#~ msgstr "Przełącz nagrywanie Åšcieżki5" - -#~ msgid "Toggle Record Enable Track6" -#~ msgstr "Przełącz nagrywanie Åšcieżki6" - -#~ msgid "Toggle Record Enable Track7" -#~ msgstr "Przełącz nagrywanie Åšcieżki7" - -#~ msgid "Toggle Record Enable Track8" -#~ msgstr "Przełącz nagrywanie Åšcieżki8" - -#~ msgid "Toggle Record Enable Track9" -#~ msgstr "Przełącz nagrywanie Åšcieżki9" - -#~ msgid "Toggle Record Enable Track10" -#~ msgstr "Przełącz nagrywanie Åšcieżki10" - -#~ msgid "Toggle Record Enable Track11" -#~ msgstr "Przełącz nagrywanie Åšcieżki11" - -#~ msgid "Toggle Record Enable Track12" -#~ msgstr "Przełącz nagrywanie Åšcieżki12" - -#~ msgid "Toggle Record Enable Track13" -#~ msgstr "Przełącz nagrywanie Åšcieżki13" - -#~ msgid "Toggle Record Enable Track14" -#~ msgstr "Przełącz nagrywanie Åšcieżki14" - -#~ msgid "Toggle Record Enable Track15" -#~ msgstr "Przełącz nagrywanie Åšcieżki15" - -#~ msgid "Toggle Record Enable Track16" -#~ msgstr "Przełącz nagrywanie Åšcieżki16" - -#~ msgid "Toggle Record Enable Track17" -#~ msgstr "Przełącz nagrywanie Åšcieżki17" - -#~ msgid "Toggle Record Enable Track18" -#~ msgstr "Przełącz nagrywanie Åšcieżki18" - -#~ msgid "Toggle Record Enable Track19" -#~ msgstr "Przełącz nagrywanie Åšcieżki19" - -#~ msgid "Toggle Record Enable Track20" -#~ msgstr "Przełącz nagrywanie Åšcieżki20" - -#~ msgid "Toggle Record Enable Track21" -#~ msgstr "Przełącz nagrywanie Åšcieżki21" - -#~ msgid "Toggle Record Enable Track22" -#~ msgstr "Przełącz nagrywanie Åšcieżki22" - -#~ msgid "Toggle Record Enable Track23" -#~ msgstr "Przełącz nagrywanie Åšcieżki23" - -#~ msgid "Toggle Record Enable Track24" -#~ msgstr "Przełącz nagrywanie Åšcieżki24" - -#~ msgid "Toggle Record Enable Track25" -#~ msgstr "Przełącz nagrywanie Åšcieżki25" - -#~ msgid "Toggle Record Enable Track26" -#~ msgstr "Przełącz nagrywanie Åšcieżki26" - -#~ msgid "Toggle Record Enable Track27" -#~ msgstr "Przełącz nagrywanie Åšcieżki27" - -#~ msgid "Toggle Record Enable Track28" -#~ msgstr "Przełącz nagrywanie Åšcieżki28" - -#~ msgid "Toggle Record Enable Track29" -#~ msgstr "Przełącz nagrywanie Åšcieżki29" - -#~ msgid "Toggle Record Enable Track30" -#~ msgstr "Przełącz nagrywanie Åšcieżki30" - -#~ msgid "Toggle Record Enable Track31" -#~ msgstr "Przełącz nagrywanie Åšcieżki31" - -#~ msgid "Toggle Record Enable Track32" -#~ msgstr "Przełącz nagrywanie Åšcieżki32" - -#~ msgid "Use OSC" -#~ msgstr "OSC" - -#~ msgid "Stop transport at session end" -#~ msgstr "Zatrzymaj nagrywanie i odtwarzanie na koÅ„cu sesji" - -#~ msgid "Region equivalents overlap" -#~ msgstr "NakÅ‚adanie odpowiedników obszarów" - -#~ msgid "Use DC bias" -#~ msgstr "Używanie DC bias" - -#~ msgid "Hardware monitoring" -#~ msgstr "SprzÄ™towe" - -#~ msgid "Software monitoring" -#~ msgstr "Programowe" - -#~ msgid "Auto-connect inputs to physical inputs" -#~ msgstr "ÅÄ…cz wejÅ›cia z wejÅ›ciami fizycznymi automatycznie" - -#~ msgid "Manually connect inputs" -#~ msgstr "ÅÄ…cz wejÅ›cia rÄ™cznie" - -#~ msgid "Auto-connect outputs to physical outs" -#~ msgstr "ÅÄ…cz wyjÅ›cia z wyjÅ›ciami fizycznymi automatycznie" - -#, fuzzy -#~ msgid "Auto Rebind Controls" -#~ msgstr "Kontrola automatyzacji" - -#~ msgid "NAME:" -#~ msgstr "NAZWA:" - -#~ msgid "play" -#~ msgstr "odtwórz" - -#~ msgid "START:" -#~ msgstr "POCZÄ„TEK:" - -#~ msgid "END:" -#~ msgstr "KONIEC:" - -#~ msgid "LENGTH:" -#~ msgstr "DÅUGOŚĆ:" - -#~ msgid "Show waveforms" -#~ msgstr "Wykres fali" - -#~ msgid "Waveform" -#~ msgstr "Wykres fali" - -#~ msgid "gain" -#~ msgstr "wzmocnienie" - -#~ msgid "pan" -#~ msgstr "panorama" - -#~ msgid "track height" -#~ msgstr "rozmiar wyÅ›wietlania" - -#~ msgid "clear track" -#~ msgstr "wyczyść Å›cieżkÄ™" - -#~ msgid "the width" -#~ msgstr "szerokość" - -#~ msgid "drawwidth" -#~ msgstr "szerokość rysowania" - -#~ msgid "drawn width" -#~ msgstr "zarysowana szerokość" - -#~ msgid "height" -#~ msgstr "wysokość" - -#~ msgid "anchor" -#~ msgstr "kotwica" - -#~ msgid "the anchor" -#~ msgstr "kotwica" - -#~ msgid "ardour: x-fade edit" -#~ msgstr "Zmiana pÅ‚ynnego przejÅ›cia" - -#~ msgid "Locate to Mark 2" -#~ msgstr "Przejdź do znacznika 2" - -#~ msgid "Locate to Mark 3" -#~ msgstr "Przejdź do znacznika 3" - -#~ msgid "Locate to Mark 4" -#~ msgstr "Przejdź do znacznika 4" - -#~ msgid "Locate to Mark 5" -#~ msgstr "Przejdź do znacznika 5" - -#~ msgid "Locate to Mark 6" -#~ msgstr "Przejdź do znacznika 6" - -#~ msgid "Locate to Mark 7" -#~ msgstr "Przejdź do znacznika 7" - -#~ msgid "Locate to Mark 8" -#~ msgstr "Przejdź do znacznika 8" - -#~ msgid "Locate to Mark 9" -#~ msgstr "Przejdź do znacznika 9" - -#, fuzzy -#~ msgid "Start To Edit Point" -#~ msgstr "PoczÄ…tek do punktu edycji" - -#, fuzzy -#~ msgid "Edit Point To End" -#~ msgstr "Punkt edycji do koÅ„ca" - -#~ msgid "Set Loop From Region" -#~ msgstr "Ustaw pÄ™tlÄ™ w obszarze" - -#~ msgid "Set Punch From Region" -#~ msgstr "Ustaw przełącznik w obszarze" - -#~ msgid "Toggle Fade In Active" -#~ msgstr "Przełącz stopniowe wzmocnienie" - -#~ msgid "Toggle Fade Out Active" -#~ msgstr "Przełącz stopniowe wyciszenie" - -#~ msgid "Duplicate Region" -#~ msgstr "Duplikuj" - -#~ msgid "Multi-Duplicate Region" -#~ msgstr "Powiel" - -#~ msgid "Insert Region" -#~ msgstr "Wstaw" - -#~ msgid "Auto-Rename" -#~ msgstr "Automatyczna zmiana nazwy" - -#~ msgid "Remove Region Sync" -#~ msgstr "UsuÅ„ synchronizacjÄ™" - -#, fuzzy -#~ msgid "Glue Region To Bars&Beats" -#~ msgstr "Takty:Uderzenia" - -#~ msgid "Mute/Unmute Region" -#~ msgstr "Wycisz/wyłącz wyciszenie" - -#~ msgid "Insert Chunk" -#~ msgstr "Wstaw fragment" - -#~ msgid "Split At Edit Point" -#~ msgstr "Podziel w punkcie edycji" - -#~ msgid "Snap to SMPTE frame" -#~ msgstr "Do klatek SMPTE" - -#~ msgid "Snap to SMPTE seconds" -#~ msgstr "Do sekund SMPTE" - -#~ msgid "Snap to SMPTE minutes" -#~ msgstr "Do minut SMPTE" - -#~ msgid "Show Waveforms" -#~ msgstr "Wykres fali" - -#~ msgid "Show Waveforms While Recording" -#~ msgstr "Wykres fali podczas nagrywania" - -#~ msgid "- 0.1%" -#~ msgstr "- 0.1%" - -#~ msgid "100 per frame" -#~ msgstr "100 na klatkÄ™" - -#~ msgid "Add existing audio" -#~ msgstr "Dodaj istniejÄ…ce audio" - -#~ msgid "importing %1" -#~ msgstr "importowanie %1" - -#~ msgid "SMPTE Frames" -#~ msgstr "Klatki SMPTE" - -#~ msgid "SMPTE Seconds" -#~ msgstr "Sekundy SMPTE" - -#~ msgid "SMPTE Minutes" -#~ msgstr "Minuty SMPTE" - -#~ msgid "Chunks" -#~ msgstr "Fragmenty" - -#~ msgid "Popup region editor" -#~ msgstr "Okno zmiany obszaru" - -#~ msgid "Define sync point" -#~ msgstr "Zdefiniuj punkt synchronizacji" - -#~ msgid "Nudge fwd" -#~ msgstr "Do przodu" - -#~ msgid "Nudge bwd" -#~ msgstr "Do tyÅ‚u" - -#~ msgid "Nudge bwd by capture offset" -#~ msgstr "Do tyÅ‚u wg wyrównania nagrania" - -#~ msgid "Start to edit point" -#~ msgstr "PoczÄ…tek do punktu edycji" - -#~ msgid "Edit point to end" -#~ msgstr "Punkt edycji do koÅ„ca" - -#~ msgid "Play range" -#~ msgstr "Odtwórz zakres" - -#~ msgid "Loop range" -#~ msgstr "ZapÄ™tl zakres" - -#~ msgid "Select all in range" -#~ msgstr "Zaznasz caÅ‚y obszar" - -#~ msgid "Set loop from selection" -#~ msgstr "Ustaw pÄ™tlÄ™ w miejscu zaznaczenia" - -#~ msgid "Set punch from selection" -#~ msgstr "Ustaw przełącznik w miejscu zaznaczenia" - -#~ msgid "Duplicate range" -#~ msgstr "Duplikuj zakres" - -#~ msgid "Create chunk from range" -#~ msgstr "Utwórz fragment z zakresu" - -#~ msgid "Bounce range" -#~ msgstr "Zgraj zakres" - -#~ msgid "Export range" -#~ msgstr "Eksportuj zakres" - -#~ msgid "Play from edit point" -#~ msgstr "Od punktu edycji" - -#~ msgid "Insert chunk" -#~ msgstr "Wstaw fragment" - -#~ msgid "Nudge entire track bwd" -#~ msgstr "Pchnij całą Å›cieżkÄ™ do tyÅ‚u" - -#~ msgid "Nudge track after edit point bwd" -#~ msgstr "Pchnij Å›cieżkÄ™ za punktem edycji do tyÅ‚u" - -#~ msgid "Magnetic Snap" -#~ msgstr "PrzyciÄ…ganie magnetyczne" - -#~ msgid "Splice Edit" -#~ msgstr "Edycja klockowa" - -#~ msgid "Slide Edit" -#~ msgstr "Edycja Å›lizgowa" - -#~ msgid "Lock Edit" -#~ msgstr "Edycja zablokowana" - -#~ msgid "Unlock" -#~ msgstr "Odblokuj" - -#~ msgid "move region(s)" -#~ msgstr "przesuÅ„ obszar(y)" - -#~ msgid "move selection" -#~ msgstr "przesuÅ„ zaznaczenie" - -#~ msgid "these regions" -#~ msgstr "te obszary" - -#~ msgid "this region" -#~ msgstr "ten obszar" - -#~ msgid "Yes, destroy them." -#~ msgstr "Tak, usuÅ„ je." - -#~ msgid "naturalize" -#~ msgstr "naturalizuj" - -#~ msgid "trim region start to edit point" -#~ msgstr "przytnij poczÄ…tek obszaru do punktu edycji" - -#~ msgid "trim region end to edit point" -#~ msgstr "przytnij koniec obszaru do punktu edycji" - -#~ msgid "paste chunk" -#~ msgstr "wklej fragment" - -#~ msgid "clear playlist" -#~ msgstr "wyczyść listÄ™ odtwarzania" - -#~ msgid "toggle fade in active" -#~ msgstr "włącz stopniowe wzmocnienie" - -#~ msgid "toggle fade out active" -#~ msgstr "włącz stopniowe wyciszenie" - -#~ msgid "Move" -#~ msgstr "PrzesuÅ„" - -#~ msgid "Name for Chunk:" -#~ msgstr "Nazwa fragmentu:" - -#~ msgid "Create Chunk" -#~ msgstr "Utwórz fragment" - -#~ msgid "Forget it" -#~ msgstr "Zapomnij" - -#~ msgid "Semitones (12TET)" -#~ msgstr "Półtony (12TET)" - -#~ msgid "Sample Rate" -#~ msgstr "CzÄ™stotliwość próbkowania" - -#~ msgid "22.05kHz" -#~ msgstr "22.05kHz" - -#~ msgid "44.1kHz" -#~ msgstr "44.1kHz" - -#~ msgid "48kHz" -#~ msgstr "48kHz" - -#~ msgid "88.2kHz" -#~ msgstr "88.2kHz" - -#~ msgid "96kHz" -#~ msgstr "96kHz" - -#~ msgid "192kHz" -#~ msgstr "192kHz" - -#~ msgid "best" -#~ msgstr "najlepsza" - -#~ msgid "intermediate" -#~ msgstr "Å›rednia" - -#~ msgid "stereo" -#~ msgstr "stereo" - -#~ msgid "CUE" -#~ msgstr "CUE" - -#~ msgid "TOC" -#~ msgstr "TOC" - -#~ msgid "Conversion Quality" -#~ msgstr "Jakość konwersji" - -#~ msgid "Specific tracks ..." -#~ msgstr "OkreÅ›lone Å›cieżki..." - -#~ msgid "Please enter a valid filename." -#~ msgstr "Wpisz poprawnÄ… nazwÄ™ pliku." - -#~ msgid "Please specify a complete filename for the audio file." -#~ msgstr "OkreÅ›l kompletnÄ… nazwÄ™ dla pliku dźwiÄ™kowego." - -#~ msgid "Cannot write file in: " -#~ msgstr "Nie można zapisać pliku w: " - -#~ msgid "ardour: export ranges" -#~ msgstr "Eksportowanie zakresów" - -#~ msgid "Export to Directory" -#~ msgstr "Eksport do katalogu" - -#~ msgid "Please enter a valid target directory." -#~ msgstr "OkreÅ›l poprawny katalog docelowy." - -#~ msgid "Please select an existing target directory. Files are not allowed!" -#~ msgstr "Wybierz istniejÄ…cy katalog docelowy." - -#~ msgid "ardour: export region" -#~ msgstr "Eksportowanie obszaru" - -#~ msgid "add gain automation event" -#~ msgstr "dodaj zdarzenie automatyki wzmocnienia" - -#~ msgid "0.5 seconds" -#~ msgstr "0.5 sekundy" - -#~ msgid "1.5 seconds" -#~ msgstr "1.5 sekundy" - -#~ msgid "2 seconds" -#~ msgstr "2 sekundy" - -#~ msgid "2.5 seconds" -#~ msgstr "2.5 sekundy" - -#~ msgid "3 seconds" -#~ msgstr "3 sekundy" - -#~ msgid "Remove Frame" -#~ msgstr "UsuÅ„ klatkÄ™" - -#~ msgid "Add Input" -#~ msgstr "Dodaj" - -#~ msgid "Add Output" -#~ msgstr "Dodaj" - -#~ msgid "Remove Input" -#~ msgstr "UsuÅ„" - -#~ msgid "Remove Output" -#~ msgstr "UsuÅ„" - -#~ msgid "Disconnect All" -#~ msgstr "Rozłącz wszystkie" - -#~ msgid "Available connections" -#~ msgstr "DostÄ™pne połączenia" - -#~ msgid "Unknown" -#~ msgstr "Nieznany" - -#~ msgid "Ardour key bindings file not found at \"%1\" or contains errors." -#~ msgstr "" -#~ "Nie znaleziono pliku strótów klawiaturowych w \"%1\" lub zawieraÅ‚ on " -#~ "błędy." - -#~ msgid "Shortcut Editor" -#~ msgstr "Edytor skrótów" - -#~ msgid "Add New Location" -#~ msgstr "Dodaj nowe poÅ‚ożenie" - -#~ msgid "Location (CD Index) Markers" -#~ msgstr "Znaczniki poÅ‚ożenia (CD Index)" - -#~ msgid "Range (CD Track) Markers" -#~ msgstr "Znaczniki zakresu (CD Track)" - -#~ msgid "Ardour/GTK " -#~ msgstr "Ardour/GTK " - -#~ msgid "comments" -#~ msgstr "komentarze" - -#~ msgid "*comments*" -#~ msgstr "*komentarze*" - -#~ msgid " Input" -#~ msgstr " WejÅ›cie" - -#~ msgid "Invert Polarity" -#~ msgstr "Odwróć polaryzacjÄ™" - -#~ msgid "Recent:" -#~ msgstr "Poprzednie:" - -#~ msgid "Session Control" -#~ msgstr "Kontrola sesji" - -#~ msgid "select directory" -#~ msgstr "Wybieranie folderu" - -#~ msgid "Paths/Files" -#~ msgstr "PoÅ‚ożenia/Pliki" - -#~ msgid "Kbd/Mouse" -#~ msgstr "Klawiatura/Mysz" - -#~ msgid "session RAID path" -#~ msgstr "PoÅ‚ożenie sesji RAID" - -#~ msgid "History depth (commands)" -#~ msgstr "Ilość operacji:" - -#~ msgid "Saved history depth (commands)" -#~ msgstr "Ilość zapisywanych operacji:" - -#~ msgid "SMPTE Offset" -#~ msgstr "Wyrównanie SMPTE" - -#~ msgid "Offline" -#~ msgstr "Połączenie" - -#~ msgid "" -#~ "Trace\n" -#~ "Input" -#~ msgstr "" -#~ "Namierzanie\n" -#~ "wejÅ›cia" - -#~ msgid "" -#~ "Trace\n" -#~ "Output" -#~ msgstr "" -#~ "Namierzanie\n" -#~ "wyjÅ›cia" - -#~ msgid "MTC" -#~ msgstr "MTC" - -#~ msgid "MMC" -#~ msgstr "MMC" - -#~ msgid "online" -#~ msgstr "połączono" - -#~ msgid "offline" -#~ msgstr "rozłączono" - -#~ msgid "output" -#~ msgstr "wyjÅ›cie" - -#~ msgid "" -#~ "The auditioner is a dedicated mixer strip used\n" -#~ "for listening to specific regions outside the context\n" -#~ "of the overall mix. It can be connected just like any\n" -#~ "other mixer strip." -#~ msgstr "" -#~ "OdsÅ‚uch to specjalny pas miksera używany do\n" -#~ "sÅ‚uchania konkretnych obszarów poza kontekstem\n" -#~ "caÅ‚ego miksu. Może być połączony jak każdy inny\n" -#~ "pas miksera." - -#~ msgid "You need to select which line to edit" -#~ msgstr "Musisz wybrać liniÄ™ do edycji" - -#~ msgid "ardour: plugins" -#~ msgstr "Wtyczki" - -#~ msgid "# Inputs" -#~ msgstr "# Wejść" - -#~ msgid "# Outputs" -#~ msgstr "# Wyjść" - -#~ msgid "rename redirect" -#~ msgstr "zmieÅ„ nazwÄ™ przekierowania" - -#~ msgid "" -#~ "Do you really want to remove all pre-fader redirects from this track?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Na pewno sunąć wszystkie przekierowania przed potencjometrem z tej " -#~ "Å›cieżki?\n" -#~ "(tej operacji nie można cofnąć)" - -#~ msgid "" -#~ "Do you really want to remove all post-fader redirects from this track?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Na pewno sunąć wszystkie przekierowania za potencjometrem z tej Å›cieżki?\n" -#~ "(tej operacji nie można cofnąć)" - -#~ msgid "Analysis" -#~ msgstr "Analiza" - -#~ msgid "Post-fader Redirects" -#~ msgstr "Przekierowania za potencjometrem" - -#~ msgid "v" -#~ msgstr "v" - -#~ msgid "Display Height" -#~ msgstr "Rozmiar wyÅ›wietlania" - -#~ msgid "ardour: color selection" -#~ msgstr "Wybieranie koloru" - -#~ msgid "New Name: " -#~ msgstr "Nazwa: " - -#~ msgid "Play (double click)" -#~ msgstr "Odtwórz" - -#~ msgid "at edit point" -#~ msgstr "od punktu edycji" - -#~ msgid "at playhead" -#~ msgstr "od gÅ‚owicy" - -#~ msgid "Bar" -#~ msgstr "Takt" - -#~ msgid "Beat" -#~ msgstr "Uderzenie" - -#~ msgid "thirtq-second (32)" -#~ msgstr "trzydziestodwójka (32)" - -#~ msgid "ardour: connections" -#~ msgstr "Połączenia" - -#~ msgid "Output Connections" -#~ msgstr "Połączenia wyjÅ›ciowe" - -#~ msgid "New Input" -#~ msgstr "Nowe wejÅ›cie" - -#~ msgid "New Output" -#~ msgstr "Nowe wyjÅ›cie" - -#~ msgid "Add Port" -#~ msgstr "Dodaj port" - -#~ msgid "in %d" -#~ msgstr "wejÅ›cie %d" - -#~ msgid "out %d" -#~ msgstr "wyjÅ›cie %d" - -#~ msgid "Name for new connection:" -#~ msgstr "Nazwa nowego połączenia:" - -#~ msgid "KeyMouse Actions" -#~ msgstr "CzynnoÅ›ci myszy i klawiatury" - -#~ msgid "to Center" -#~ msgstr "Do Å›rodka" - -#~ msgid "Reverse Region" -#~ msgstr "Odwróć obszar" - -#~ msgid "Add External Audio" -#~ msgstr "Dodaj zewnÄ™trzne audio" - -#~ msgid "Analyze region" -#~ msgstr "Analizuj obszar" - -#~ msgid "Analyze range" -#~ msgstr "Analizuj zakres" - -#~ msgid "Copyright (C) 1999-2007 Paul Davis" -#~ msgstr "Prawa autorskie (C) 1999-2007 Paul Davis" - -#~ msgid "Could not connect to JACK server as \"%1\"" -#~ msgstr "Nie można siÄ™ połączyć z serwerem JACK jako \"%1\"" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "No session named \"%1\" exists.\n" -#~ "To create it from the command line, start ardour as \"ardour --new %1" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Sesja o nazwie \"%1\" nie istnieje.\n" -#~ "By utworzyć jÄ… z linii komend, uruchom ardoura poprzez polecenie: " -#~ "\"ardour --new %1" - -#~ msgid "Setup" -#~ msgstr "Ustawienia" - -#~ msgid "Edit Cursor" -#~ msgstr "Wskaźnik" - -#~ msgid "Frames" -#~ msgstr "Klatki" - -#~ msgid "Select all between cursors" -#~ msgstr "Zaznacz wszystko miÄ™dzy gÅ‚owicÄ… a wskaźnikiem" - -#~ msgid "Paste at edit cursor" -#~ msgstr "Wklej w poÅ‚ożeniu wskaźnika" - -#~ msgid "Paste at mouse" -#~ msgstr "Wklej w poÅ‚ożeniu kursora" - -#~ msgid "Duplicate how many times?" -#~ msgstr "Ile razy powielić?" - -#~ msgid "Move edit cursor" -#~ msgstr "PrzesuÅ„ wskaźnik" - -#~ msgid "Edit Cursor to Next Region Start" -#~ msgstr "Wskaźnik do poczÄ…tku nastÄ™pnego obszaru" - -#~ msgid "Edit Cursor to Next Region End" -#~ msgstr "Wskaźnik do koÅ„ca nastÄ™pnego obszaru" - -#~ msgid "Edit Cursor to Next Region Sync" -#~ msgstr "Wskaźnik do nastÄ™pnej synchronizacji obszaru" - -#~ msgid "Edit Cursor to Previous Region Start" -#~ msgstr "Wskaźnik do poczÄ…tku poprzedniego obszaru" - -#~ msgid "Edit Cursor to Previous Region End" -#~ msgstr "Wskaźnik do koÅ„ca poprzedniego obszaru" - -#~ msgid "Edit Cursor to Previous Region Sync" -#~ msgstr "Wskaźnik do poprzedniej synchronizacji obszaru" - -#~ msgid "Edit Cursor to Range Start" -#~ msgstr "Wskaźnik do poczÄ…tku zakresu" - -#~ msgid "Edit Cursor to Range End" -#~ msgstr "Wskaźnik do koÅ„ca zakresu" - -#~ msgid "Select All Between Cursors" -#~ msgstr "Zaznacz wszystko miÄ™dzy gÅ‚owicÄ… a wskaźnikiem" - -#~ msgid "Center Edit Cursor" -#~ msgstr "WyÅ›rodkuj wskaźnik" - -#~ msgid "Edit to Playhead" -#~ msgstr "Kursor edycji do gÅ‚owicy" - -#~ msgid "crop" -#~ msgstr "Przytnij" - -#~ msgid "Hide Mark" -#~ msgstr "Ukryj znak" - -#~ msgid "cancel selection" -#~ msgstr "anuluj zaznaczenie" - -#~ msgid "set region sync position" -#~ msgstr "ustaw pozycjÄ™ synchronizacji obszaru" - -#~ msgid "Place the edit cursor at the desired sync point" -#~ msgstr "Umieść wskaźnik w pożądanym punkcie synchronizacji" - -#~ msgid "set sync from edit cursor" -#~ msgstr "ustaw synchronizacjÄ™ wg poÅ‚ożenia wskaźnika" - -#~ msgid "could not start JACK server: " -#~ msgstr "nie można byÅ‚o uruchomić serwera JACK: " - -#~ msgid "Available LADSPA Plugins" -#~ msgstr "DostÄ™pne wtyczki LADSPA" - -#~ msgid "VST" -#~ msgstr "VST" - -#~ msgid "AudioUnit" -#~ msgstr "Jednostka audio" diff --git a/gtk2_ardour/po/pt.po b/gtk2_ardour/po/pt.po index 01dfaa9ffc..7289e49cd0 100644 --- a/gtk2_ardour/po/pt.po +++ b/gtk2_ardour/po/pt.po @@ -51,11 +51,6 @@ msgstr "" msgid "Chris Cannam" msgstr "" -#: about.cc:130 -#, fuzzy -msgid "Jesse Chappell" -msgstr "reiniciar todos" - #: about.cc:131 msgid "Thomas Charbonnel" msgstr "" @@ -216,11 +211,6 @@ msgstr "" msgid "Lincoln Spiteri" msgstr "" -#: about.cc:171 -#, fuzzy -msgid "Mike Start" -msgstr "Começo de regiões" - #: about.cc:172 msgid "Mark Stewart" msgstr "" @@ -358,11 +348,6 @@ msgstr "" msgid "Loading menus from %1" msgstr "" -#: actions.cc:88 actions.cc:89 -#, fuzzy -msgid "badly formatted UI definition file: %1" -msgstr "não foi possível abrir o arquivo de imagem \"%1\"" - #: actions.cc:91 msgid "%1 menu definition file not found" msgstr "" @@ -371,77 +356,14 @@ msgstr "" msgid "%1 will not work without a valid ardour.menus file" msgstr "" -#: add_route_dialog.cc:53 route_params_ui.cc:500 -#, fuzzy -msgid "Add Track or Bus" -msgstr "Adicionar Trilha/Barramento" - -#: add_route_dialog.cc:56 -#, fuzzy -msgid "Configuration:" -msgstr "Cancelar importação" - -#: add_route_dialog.cc:57 -#, fuzzy -msgid "Track mode:" -msgstr "Trilha" - #: add_route_dialog.cc:58 msgid "Instrument:" msgstr "" -#: add_route_dialog.cc:76 -#, fuzzy -msgid "Audio Tracks" -msgstr "Adicionar Trilha/Barramento" - -#: add_route_dialog.cc:77 -#, fuzzy -msgid "MIDI Tracks" -msgstr "Adicionar Trilha/Barramento" - -#: add_route_dialog.cc:78 -#, fuzzy -msgid "Audio+MIDI Tracks" -msgstr "Adicionar Trilha/Barramento" - -#: add_route_dialog.cc:79 -#, fuzzy -msgid "Busses" -msgstr "Barramentos" - #: add_route_dialog.cc:101 msgid "Add:" msgstr "" -#: add_route_dialog.cc:114 startup.cc:841 time_fx_dialog.cc:91 -#: add_video_dialog.cc:150 video_server_dialog.cc:112 -#, fuzzy -msgid "Options" -msgstr "Preferências" - -#: add_route_dialog.cc:124 bundle_manager.cc:192 region_editor.cc:50 -#: route_group_dialog.cc:65 -#, fuzzy -msgid "Name:" -msgstr "Quadros" - -#: add_route_dialog.cc:154 -#, fuzzy -msgid "Group:" -msgstr "Grupos de Mixer" - -#: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 -#: rc_option_editor.cc:1456 rc_option_editor.cc:1458 rc_option_editor.cc:1460 -#: rc_option_editor.cc:1478 rc_option_editor.cc:1480 rc_option_editor.cc:1488 -#: rc_option_editor.cc:1490 rc_option_editor.cc:1508 rc_option_editor.cc:1521 -#: rc_option_editor.cc:1523 rc_option_editor.cc:1525 rc_option_editor.cc:1556 -#: rc_option_editor.cc:1558 rc_option_editor.cc:1560 rc_option_editor.cc:1568 -#: rc_option_editor.cc:1576 rc_option_editor.cc:1584 -#, fuzzy -msgid "Audio" -msgstr "Audição" - #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 #: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1707 #: rc_option_editor.cc:1715 rc_option_editor.cc:1723 rc_option_editor.cc:1732 @@ -451,16 +373,6 @@ msgstr "Audição" msgid "MIDI" msgstr "MIDI" -#: add_route_dialog.cc:217 add_route_dialog.cc:230 add_route_dialog.cc:300 -#, fuzzy -msgid "Audio+MIDI" -msgstr "Audição" - -#: add_route_dialog.cc:218 add_route_dialog.cc:233 add_route_dialog.cc:301 -#, fuzzy -msgid "Bus" -msgstr "Barramentos" - #: add_route_dialog.cc:260 msgid "" "Audio+MIDI tracks are intended for use ONLY with plugins that use " @@ -475,75 +387,10 @@ msgstr "" msgid "Normal" msgstr "Normal" -#: add_route_dialog.cc:322 add_route_dialog.cc:340 -#, fuzzy -msgid "Non Layered" -msgstr "Camada" - -#: add_route_dialog.cc:323 add_route_dialog.cc:342 -#, fuzzy -msgid "Tape" -msgstr "Estado" - -#: add_route_dialog.cc:423 -#, fuzzy -msgid "Mono" -msgstr "mono" - -#: add_route_dialog.cc:427 -#, fuzzy -msgid "Stereo" -msgstr "estéreo" - -#: add_route_dialog.cc:451 -#, fuzzy -msgid "3 Channel" -msgstr "cancelar" - -#: add_route_dialog.cc:455 -#, fuzzy -msgid "4 Channel" -msgstr "cancelar" - -#: add_route_dialog.cc:459 -#, fuzzy -msgid "5 Channel" -msgstr "cancelar" - -#: add_route_dialog.cc:463 -#, fuzzy -msgid "6 Channel" -msgstr "cancelar" - -#: add_route_dialog.cc:467 -#, fuzzy -msgid "8 Channel" -msgstr "cancelar" - -#: add_route_dialog.cc:471 -#, fuzzy -msgid "12 Channel" -msgstr "cancelar" - #: add_route_dialog.cc:475 mixer_strip.cc:2131 msgid "Custom" msgstr "" -#: add_route_dialog.cc:508 add_route_dialog.cc:524 route_group_menu.cc:81 -#, fuzzy -msgid "New Group..." -msgstr "Sem grupo" - -#: add_route_dialog.cc:512 route_group_menu.cc:85 -#, fuzzy -msgid "No Group" -msgstr "Sem grupo" - -#: add_route_dialog.cc:588 -#, fuzzy -msgid "-none-" -msgstr "nenhum" - #: ambiguous_file_dialog.cc:30 msgid "Ambiguous File" msgstr "" @@ -569,21 +416,6 @@ msgstr "" msgid "Signal source" msgstr "" -#: analysis_window.cc:47 -#, fuzzy -msgid "Selected ranges" -msgstr "selecionar/mover intervalos" - -#: analysis_window.cc:48 -#, fuzzy -msgid "Selected regions" -msgstr "Loop região selecionada" - -#: analysis_window.cc:50 -#, fuzzy -msgid "Display model" -msgstr "Visualização" - #: analysis_window.cc:51 msgid "Composite graphs for each track" msgstr "" @@ -596,11 +428,6 @@ msgstr "" msgid "Show frequency power range" msgstr "" -#: analysis_window.cc:55 -#, fuzzy -msgid "Normalize values" -msgstr "Normalizar" - #: analysis_window.cc:59 msgid "FFT analysis window" msgstr "" @@ -614,12 +441,6 @@ msgstr "" msgid "Track" msgstr "Trilha" -#: analysis_window.cc:68 editor_actions.cc:616 mixer_ui.cc:125 -#: mixer_ui.cc:1795 -#, fuzzy -msgid "Show" -msgstr "Mostrar tudo" - #: analysis_window.cc:135 msgid "Re-analyze data" msgstr "" @@ -628,30 +449,10 @@ msgstr "" msgid "button cannot watch state of non-existing Controllable\n" msgstr "" -#: ardour_ui.cc:180 -#, fuzzy -msgid "audition" -msgstr "Audição" - -#: ardour_ui.cc:181 -#, fuzzy -msgid "solo" -msgstr "solo" - #: ardour_ui.cc:182 msgid "feedback" msgstr "" -#: ardour_ui.cc:187 speaker_dialog.cc:36 -#, fuzzy -msgid "Speaker Configuration" -msgstr "Cancelar importação" - -#: ardour_ui.cc:188 theme_manager.cc:56 theme_manager.cc:64 -#, fuzzy -msgid "Theme Manager" -msgstr "Remover Marca" - #: ardour_ui.cc:189 keyeditor.cc:53 msgid "Key Bindings" msgstr "" @@ -660,11 +461,6 @@ msgstr "" msgid "Preferences" msgstr "" -#: ardour_ui.cc:191 ardour_ui.cc:196 -#, fuzzy -msgid "Add Tracks/Busses" -msgstr "Trilhas/Barramentos" - #: ardour_ui.cc:192 msgid "About" msgstr "Sobre" @@ -673,11 +469,6 @@ msgstr "Sobre" msgid "Locations" msgstr "Localizações" -#: ardour_ui.cc:194 route_params_ui.cc:58 route_params_ui.cc:606 -#, fuzzy -msgid "Tracks and Busses" -msgstr "Trilhas/Barramentos" - #: ardour_ui.cc:195 msgid "Properties" msgstr "" @@ -690,25 +481,10 @@ msgstr "" msgid "Big Clock" msgstr "Metrônomo" -#: ardour_ui.cc:199 -#, fuzzy -msgid "Audio Connections" -msgstr "Conexões" - -#: ardour_ui.cc:200 -#, fuzzy -msgid "MIDI Connections" -msgstr "Conexões" - #: ardour_ui.cc:202 msgid "Errors" msgstr "" -#: ardour_ui.cc:388 -#, fuzzy -msgid "Starting audio engine" -msgstr "Separar intervalo" - #: ardour_ui.cc:758 startup.cc:638 msgid "%1 is ready for use" msgstr "" @@ -726,85 +502,6 @@ msgstr "" msgid "Do not show this window again" msgstr "" -#: ardour_ui.cc:865 -#, fuzzy -msgid "Don't quit" -msgstr "Não %1" - -#: ardour_ui.cc:866 -#, fuzzy -msgid "Just quit" -msgstr "Apenas %1" - -#: ardour_ui.cc:867 -#, fuzzy -msgid "Save and quit" -msgstr "Salvar e %1" - -#: ardour_ui.cc:877 -#, fuzzy -msgid "" -"%1 was unable to save your session.\n" -"\n" -"If you still wish to quit, please use the\n" -"\n" -"\"Just quit\" option." -msgstr "" -"Ardour não pôde salvar sua sessão\n" -"\n" -"Se mesmo assim você deseja sair, por favor utilize\n" -"a opção \"Apenas Sair\"." - -#: ardour_ui.cc:908 -#, fuzzy -msgid "Please wait while %1 cleans up..." -msgstr "Continuar com a limpeza" - -#: ardour_ui.cc:925 -#, fuzzy -msgid "Unsaved Session" -msgstr "Sessão" - -#: ardour_ui.cc:946 -#, fuzzy -msgid "" -"The session \"%1\"\n" -"has not been saved.\n" -"\n" -"Any changes made this time\n" -"will be lost unless you save it.\n" -"\n" -"What do you want to do?" -msgstr "" -"A \"%1\"\n" -"\"%2\"\n" -"ainda não foi salva.\n" -"\n" -"Qualquer alteração feita até o momento\n" -"será perdida se você não salvar.\n" -"\n" -"O que você quer fazer?" - -#: ardour_ui.cc:949 -#, fuzzy -msgid "" -"The snapshot \"%1\"\n" -"has not been saved.\n" -"\n" -"Any changes made this time\n" -"will be lost unless you save it.\n" -"\n" -"What do you want to do?" -msgstr "" -"A \"%1\"\n" -"\"%2\"\n" -"ainda não foi salva.\n" -"\n" -"Qualquer alteração feita até o momento\n" -"será perdida se você não salvar.\n" -"\n" -"O que você quer fazer?" - #: ardour_ui.cc:963 msgid "Prompter" msgstr "" @@ -823,11 +520,6 @@ msgstr "" msgid "JACK: % kHz / %4.1f ms" msgstr "" -#: ardour_ui.cc:1078 export_video_dialog.cc:68 -#, fuzzy -msgid "File:" -msgstr "Renomear" - #: ardour_ui.cc:1082 msgid "BWF" msgstr "" @@ -881,11 +573,6 @@ msgid "" "\">%%%" msgstr "" -#: ardour_ui.cc:1188 -#, fuzzy -msgid "Disk: Unknown" -msgstr "espaço: %02dh:%02dm:%02ds" - #: ardour_ui.cc:1190 msgid "Disk: 24hrs+" msgstr "" @@ -894,95 +581,17 @@ msgstr "" msgid "Disk: >24 hrs" msgstr "" -#: ardour_ui.cc:1219 -#, fuzzy, c-format -msgid "Disk: %02dh:%02dm:%02ds" -msgstr "espaço: %02dh:%02dm:%02ds" - -#: ardour_ui.cc:1245 -#, fuzzy, c-format -msgid "Timecode|TC: %s" -msgstr "espaço: %02dh:%02dm:%02ds" - -# -#: ardour_ui.cc:1362 ardour_ui.cc:1371 startup.cc:1054 -#, fuzzy -msgid "Recent Sessions" -msgstr "abrir sessão" - #: ardour_ui.cc:1451 msgid "" "%1 is not connected to JACK\n" "You cannot open or close sessions in this condition" msgstr "" -# -#: ardour_ui.cc:1478 -#, fuzzy -msgid "Open Session" -msgstr "abrir sessão" - -#: ardour_ui.cc:1503 session_import_dialog.cc:169 -#: session_metadata_dialog.cc:729 startup.cc:1083 -#, fuzzy -msgid "%1 sessions" -msgstr "sessão" - #: ardour_ui.cc:1540 msgid "You cannot add a track without a session already loaded." msgstr "" "Você não pode adicionar uma trilha se uma sessão não estiver carregada." -#: ardour_ui.cc:1548 -#, fuzzy -msgid "could not create %1 new mixed track" -msgid_plural "could not create %1 new mixed tracks" -msgstr[0] "não pôde criar uma nova trilha de áudio" -msgstr[1] "não pôde criar uma nova trilha de áudio" - -#: ardour_ui.cc:1554 ardour_ui.cc:1615 -#, fuzzy -msgid "" -"There are insufficient JACK ports available\n" -"to create a new track or bus.\n" -"You should save %1, exit and\n" -"restart JACK with more ports." -msgstr "" -"Não existe um número suficiente de portas do JACK disponíveis\n" -"para criar uma nova trilha ou barramento.\n" -"Você deve salvar Ardour, sair e\n" -"reiniciar o JACK com mais portas." - -#: ardour_ui.cc:1589 -#, fuzzy -msgid "You cannot add a track or bus without a session already loaded." -msgstr "" -"Você não pode adicionar uma trilha se uma sessão não estiver carregada." - -#: ardour_ui.cc:1598 -#, fuzzy -msgid "could not create %1 new audio track" -msgid_plural "could not create %1 new audio tracks" -msgstr[0] "não pôde criar uma nova trilha de áudio" -msgstr[1] "não pôde criar uma nova trilha de áudio" - -#: ardour_ui.cc:1607 -#, fuzzy -msgid "could not create %1 new audio bus" -msgid_plural "could not create %1 new audio busses" -msgstr[0] "não pôde criar uma nova trilha de áudio" -msgstr[1] "não pôde criar uma nova trilha de áudio" - -#: ardour_ui.cc:1724 -#, fuzzy -msgid "" -"Please create one or more tracks before trying to record.\n" -"You can do this with the \"Add Track or Bus\" option in the Session menu." -msgstr "" -"Faça favor criar um ou mais trilhas\n" -"antes de tentar gravar.\n" -"Vir o menu de Sessão." - #: ardour_ui.cc:2114 msgid "" "The audio backend (JACK) was shutdown because:\n" @@ -990,34 +599,10 @@ msgid "" "%1" msgstr "" -#: ardour_ui.cc:2116 -#, fuzzy -msgid "" -"JACK has either been shutdown or it\n" -"disconnected %1 because %1\n" -"was not fast enough. Try to restart\n" -"JACK, reconnect and save the session." -msgstr "" -"O serviço de audio (JACK) foi terminado ou\n" -"o mesmo desligou a sua conexão com o Ardour,\n" -"talvez porque este não foi rápido o suficiente.\n" -"A sessão corrente deverá ser salva e\n" -"o serviço JACK reiniciado, tal como o Ardour." - #: ardour_ui.cc:2142 msgid "Unable to start the session running" msgstr "Impossível iniciar a sessão" -#: ardour_ui.cc:2222 -#, fuzzy -msgid "Take Snapshot" -msgstr "Capturar instantâneo" - -#: ardour_ui.cc:2223 -#, fuzzy -msgid "Name of new snapshot" -msgstr "Nome para a imagem capturada" - #: ardour_ui.cc:2247 msgid "" "To ensure compatibility with various systems\n" @@ -1028,25 +613,10 @@ msgstr "" msgid "Confirm Snapshot Overwrite" msgstr "" -#: ardour_ui.cc:2260 -#, fuzzy -msgid "A snapshot already exists with that name. Do you want to overwrite it?" -msgstr "já existe uma trilha com este nome" - #: ardour_ui.cc:2263 utils_videotl.cc:67 msgid "Overwrite" msgstr "" -#: ardour_ui.cc:2297 -#, fuzzy -msgid "Rename Session" -msgstr "inverter horizontalmente as regiões" - -#: ardour_ui.cc:2298 -#, fuzzy -msgid "New session name" -msgstr "Nome da sessão:" - #: ardour_ui.cc:2312 ardour_ui.cc:2692 ardour_ui.cc:2737 msgid "" "To ensure compatibility with various systems\n" @@ -1064,34 +634,10 @@ msgid "" "Things could be seriously messed up at this point" msgstr "" -#: ardour_ui.cc:2440 -#, fuzzy -msgid "Save Template" -msgstr "Salvar Esquema..." - -#: ardour_ui.cc:2441 -#, fuzzy -msgid "Name for template:" -msgstr "Nome para o esquema de mixer" - #: ardour_ui.cc:2442 msgid "-template" msgstr "-esquema/template" -#: ardour_ui.cc:2480 -#, fuzzy -msgid "" -"This session\n" -"%1\n" -"already exists. Do you want to open it?" -msgstr "Sessão %1 ainda existe à %2" - -# -#: ardour_ui.cc:2490 -#, fuzzy -msgid "Open Existing Session" -msgstr "abrir sessão" - #: ardour_ui.cc:2728 msgid "There is no existing session at \"%1\"" msgstr "" @@ -1120,34 +666,10 @@ msgstr "" msgid "Click the Refresh button to try again." msgstr "" -#: ardour_ui.cc:2941 -#, fuzzy -msgid "Could not create session in \"%1\"" -msgstr "não foi possível carregar a sessão da linha de comando \"%1\"" - #: ardour_ui.cc:3041 msgid "No files were ready for clean-up" msgstr "" -#: ardour_ui.cc:3045 ardour_ui.cc:3055 ardour_ui.cc:3188 ardour_ui.cc:3195 -#: ardour_ui_ed.cc:104 -#, fuzzy -msgid "Clean-up" -msgstr "Limpar" - -#: ardour_ui.cc:3046 -#, fuzzy -msgid "" -"If this seems suprising, \n" -"check for any existing snapshots.\n" -"These may still include regions that\n" -"require some unused files to continue to exist." -msgstr "" -"Não existem arquivos de audio para serem limpos\n" -"Se isto parece estranho, procure por instantâneos existentes.\n" -"Eles podem conter regiões que requeiram a existência\n" -"de arquivos não utlizados." - #: ardour_ui.cc:3105 msgid "kilo" msgstr "" @@ -1160,77 +682,14 @@ msgstr "" msgid "giga" msgstr "" -#: ardour_ui.cc:3116 -#, fuzzy -msgid "" -"The following file was deleted from %2,\n" -"releasing %3 %4bytes of disk space" -msgid_plural "" -"The following %1 files were deleted from %2,\n" -"releasing %3 %4bytes of disk space" -msgstr[0] "" -"Os seguintes %1 arquivo%2 foram deletados, liberando %3 %4bytes de espaço no " -"disco rígido" -msgstr[1] "" -"Os seguintes %1 arquivo%2 foram deletados, liberando %3 %4bytes de espaço no " -"disco rígido" - -#: ardour_ui.cc:3123 -#, fuzzy -msgid "" -"The following file was not in use and \n" -"has been moved to: %2\n" -"\n" -"After a restart of %5\n" -"\n" -"Session -> Clean-up -> Flush Wastebasket\n" -"\n" -"will release an additional %3 %4bytes of disk space.\n" -msgid_plural "" -"The following %1 files were not in use and \n" -"have been moved to: %2\n" -"\n" -"After a restart of %5\n" -"\n" -"Session -> Clean-up -> Flush Wastebasket\n" -"\n" -"will release an additional %3 %4bytes of disk space.\n" -msgstr[0] "" -"Os seguintes %1 %2 não estão em uso.\n" -"Na próxima vez limpe sua lixeira\n" -"isto vai liberar %3 %4bytes\n" -"de espaço no disco rígido" -msgstr[1] "" -"Os seguintes %1 %2 não estão em uso.\n" -"Na próxima vez limpe sua lixeira\n" -"isto vai liberar %3 %4bytes\n" -"de espaço no disco rígido" - #: ardour_ui.cc:3183 msgid "Are you sure you want to clean-up?" msgstr "" -#: ardour_ui.cc:3190 -#, fuzzy -msgid "" -"Clean-up is a destructive operation.\n" -"ALL undo/redo information will be lost if you clean-up.\n" -"Clean-up will move all unused files to a \"dead\" location." -msgstr "" -"A limpeza é uma operação destrutiva\n" -"TODAS as informações de desfazer/refazer serão perdidas se\n" -"você continuar. Arquivos de audio não usados serão movidos\n" -"para \"dead sounds\"" - #: ardour_ui.cc:3198 msgid "CleanupDialog" msgstr "Limpar" -#: ardour_ui.cc:3228 -#, fuzzy -msgid "Cleaned Files" -msgstr "arquivos limpos" - #: ardour_ui.cc:3245 msgid "deleted file" msgstr "arquivo removido" @@ -1248,11 +707,6 @@ msgstr "" msgid "Do you really want to stop the Video Server?" msgstr "" -#: ardour_ui.cc:3345 -#, fuzzy -msgid "Yes, Stop It" -msgstr "Sim, remova definitivamente isto." - #: ardour_ui.cc:3371 msgid "The Video Server is already started." msgstr "" @@ -1338,11 +792,6 @@ msgstr "" msgid "Recover from crash" msgstr "" -#: ardour_ui.cc:3795 -#, fuzzy -msgid "Sample Rate Mismatch" -msgstr "Separar Região" - #: ardour_ui.cc:3796 msgid "" "This session was created with a sample rate of %1 Hz, but\n" @@ -1350,11 +799,6 @@ msgid "" "audio may be played at the wrong sample rate.\n" msgstr "" -#: ardour_ui.cc:3805 -#, fuzzy -msgid "Do not load session" -msgstr "Zoom na sessão" - #: ardour_ui.cc:3806 msgid "Load session anyway" msgstr "" @@ -1363,11 +807,6 @@ msgstr "" msgid "Could not disconnect from JACK" msgstr "Não foi possível se desconectar ao servidor JACK" -#: ardour_ui.cc:3842 -#, fuzzy -msgid "Could not reconnect to JACK" -msgstr "Não foi possível se conectar ao servidor JACK" - #: ardour_ui.cc:4116 msgid "" "%4This is a session from an older version of %3%5\n" @@ -1391,11 +830,6 @@ msgstr "não foi possível iniciar o editor" msgid "UI: cannot setup mixer" msgstr "não foi possível iniciar o mixer" -#: ardour_ui2.cc:82 -#, fuzzy -msgid "UI: cannot setup meterbridge" -msgstr "não foi possível iniciar o medidor volumétrico (VU)" - #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "Reproduzir a partir do início" @@ -1404,11 +838,6 @@ msgstr "Reproduzir a partir do início" msgid "Stop playback" msgstr "Parar reprodução" -#: ardour_ui2.cc:132 -#, fuzzy -msgid "Toggle record" -msgstr "Gravar" - #: ardour_ui2.cc:133 msgid "Play range/selection" msgstr "Reproduzir intervalo/seleção" @@ -1435,11 +864,6 @@ msgstr "" msgid "Return to last playback start when stopped" msgstr "Ir para o início da última reprodução quando parar" -#: ardour_ui2.cc:139 -#, fuzzy -msgid "Playhead follows Range Selections and Edits" -msgstr "Reproduzir intervalo/seleção" - #: ardour_ui2.cc:140 msgid "Be sensible about input monitoring" msgstr "Sensível à monitoração na entrada" @@ -1480,11 +904,6 @@ msgid "" "confirm; postfix the edit with '+' or '-' to enter delta times.\n" msgstr "" -#: ardour_ui2.cc:147 -#, fuzzy -msgid "Reset Level Meter" -msgstr "reiniciar todos" - #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "" @@ -1497,13 +916,6 @@ msgstr "" msgid "[INFO]: " msgstr "" -#: ardour_ui2.cc:247 ardour_ui_ed.cc:377 -#, fuzzy -msgid "Auto Return" -msgstr "" -"retorno\n" -"automático" - #: ardour_ui2.cc:249 ardour_ui_ed.cc:380 msgid "Follow Edits" msgstr "" @@ -1520,35 +932,10 @@ msgstr "" msgid "Misc" msgstr "Miscelânea" -#: ardour_ui_dependents.cc:77 -#, fuzzy -msgid "Setup Editor" -msgstr "Cursor de Edição" - -#: ardour_ui_dependents.cc:79 -#, fuzzy -msgid "Setup Mixer" -msgstr "Mixer" - #: ardour_ui_dependents.cc:85 msgid "Reload Session History" msgstr "" -#: ardour_ui_dialogs.cc:242 -#, fuzzy -msgid "Don't close" -msgstr "Não %1" - -#: ardour_ui_dialogs.cc:243 -#, fuzzy -msgid "Just close" -msgstr "fechar" - -#: ardour_ui_dialogs.cc:244 -#, fuzzy -msgid "Save and close" -msgstr "Salvar e %1" - #: ardour_ui_dialogs.cc:340 msgid "This screen is not tall enough to display the mixer window" msgstr "" @@ -1562,16 +949,6 @@ msgstr "Sessão" msgid "Sync" msgstr "Sincronia" -#: ardour_ui_ed.cc:107 engine_dialog.cc:369 -#, fuzzy -msgid "Options" -msgstr "Preferências" - -#: ardour_ui_ed.cc:108 -#, fuzzy -msgid "Window" -msgstr "Janelas" - #: ardour_ui_ed.cc:109 msgid "Help" msgstr "" @@ -1580,35 +957,10 @@ msgstr "" msgid "Misc. Shortcuts" msgstr "" -#: ardour_ui_ed.cc:111 -#, fuzzy -msgid "Audio File Format" -msgstr "Quadros de Ãudio" - -#: ardour_ui_ed.cc:112 -#, fuzzy -msgid "File Type" -msgstr "Sistema de arquivos" - -#: ardour_ui_ed.cc:113 export_format_dialog.cc:65 -#, fuzzy -msgid "Sample Format" -msgstr "Separar Região" - -#: ardour_ui_ed.cc:114 rc_option_editor.cc:1826 rc_option_editor.cc:1839 -#, fuzzy -msgid "Control Surfaces" -msgstr "Controle de Saídas" - #: ardour_ui_ed.cc:115 rc_option_editor.cc:1558 msgid "Plugins" msgstr "Entradas" -#: ardour_ui_ed.cc:116 rc_option_editor.cc:1902 -#, fuzzy -msgid "Metering" -msgstr "VU (medidor volumétrico)" - #: ardour_ui_ed.cc:117 msgid "Fall Off Rate" msgstr "" @@ -1625,57 +977,10 @@ msgstr "" msgid "New..." msgstr "" -#: ardour_ui_ed.cc:125 -#, fuzzy -msgid "Open..." -msgstr "Abrir" - -#: ardour_ui_ed.cc:126 -#, fuzzy -msgid "Recent..." -msgstr "Recente" - #: ardour_ui_ed.cc:127 panner_editor.cc:29 playlist_selector.cc:64 msgid "Close" msgstr "Fechar" -#: ardour_ui_ed.cc:130 -#, fuzzy -msgid "Add Track or Bus..." -msgstr "Adicionar Trilha/Barramento" - -# -#: ardour_ui_ed.cc:135 -#, fuzzy -msgid "Open Video" -msgstr "abrir sessão" - -#: ardour_ui_ed.cc:138 -#, fuzzy -msgid "Remove Video" -msgstr "Remover Campo" - -#: ardour_ui_ed.cc:141 -#, fuzzy -msgid "Export To Video File" -msgstr "Exportar sessão para arquivo de áudio" - -#: ardour_ui_ed.cc:145 -#, fuzzy -msgid "Snapshot..." -msgstr "Capturar instantâneo" - -#: ardour_ui_ed.cc:149 -#, fuzzy -msgid "Save As..." -msgstr "Salvar Esquema..." - -#: ardour_ui_ed.cc:153 editor_actions.cc:1719 editor_markers.cc:858 -#: editor_snapshots.cc:123 mixer_strip.cc:1471 route_time_axis.cc:1485 -#, fuzzy -msgid "Rename..." -msgstr "Renomear" - #: ardour_ui_ed.cc:157 msgid "Save Template..." msgstr "Salvar Esquema..." @@ -1688,36 +993,11 @@ msgstr "" msgid "Edit Metadata..." msgstr "" -#: ardour_ui_ed.cc:166 -#, fuzzy -msgid "Import Metadata..." -msgstr "Importar seleção" - -#: ardour_ui_ed.cc:169 -#, fuzzy -msgid "Export To Audio File(s)..." -msgstr "Exportar sessão para arquivo de áudio" - -#: ardour_ui_ed.cc:172 -#, fuzzy -msgid "Stem export..." -msgstr "Exportar" - #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 #: export_video_dialog.cc:72 msgid "Export" msgstr "Exportar" -#: ardour_ui_ed.cc:178 -#, fuzzy -msgid "Clean-up Unused Sources..." -msgstr "Limpar fontes não usadas" - -#: ardour_ui_ed.cc:182 -#, fuzzy -msgid "Flush Wastebasket" -msgstr "Esvaziar lixeira" - #: ardour_ui_ed.cc:189 keyeditor.cc:253 rc_option_editor.cc:1472 msgid "JACK" msgstr "JACK" @@ -1726,11 +1006,6 @@ msgstr "JACK" msgid "Latency" msgstr "" -#: ardour_ui_ed.cc:192 -#, fuzzy -msgid "Reconnect" -msgstr "Conectar" - #: ardour_ui_ed.cc:195 global_port_matrix.cc:207 io_selector.cc:210 #: mixer_strip.cc:719 mixer_strip.cc:845 msgid "Disconnect" @@ -1744,26 +1019,6 @@ msgstr "Sair" msgid "Maximise Editor Space" msgstr "" -#: ardour_ui_ed.cc:227 -#, fuzzy -msgid "Show Toolbars" -msgstr "Por Posição da Região" - -#: ardour_ui_ed.cc:230 mixer_ui.cc:1865 mixer_ui.cc:1871 -#, fuzzy -msgid "Window|Mixer" -msgstr "Janelas" - -#: ardour_ui_ed.cc:231 -#, fuzzy -msgid "Toggle Editor+Mixer" -msgstr "Modo de edição" - -#: ardour_ui_ed.cc:232 meterbridge.cc:230 meterbridge.cc:236 -#, fuzzy -msgid "Window|Meterbridge" -msgstr "Janelas" - #: ardour_ui_ed.cc:234 midi_tracer.cc:39 msgid "MIDI Tracer" msgstr "" @@ -1784,17 +1039,6 @@ msgstr "" msgid "Save" msgstr "Salvar" -#: ardour_ui_ed.cc:249 rc_option_editor.cc:1114 rc_option_editor.cc:1125 -#: rc_option_editor.cc:1134 rc_option_editor.cc:1147 rc_option_editor.cc:1160 -#: rc_option_editor.cc:1169 rc_option_editor.cc:1179 rc_option_editor.cc:1181 -#: rc_option_editor.cc:1191 rc_option_editor.cc:1207 rc_option_editor.cc:1220 -#: rc_option_editor.cc:1238 rc_option_editor.cc:1240 rc_option_editor.cc:1254 -#: rc_option_editor.cc:1257 rc_option_editor.cc:1259 rc_option_editor.cc:1276 -#: rc_option_editor.cc:1287 -#, fuzzy -msgid "Transport" -msgstr "Tradutores" - #: ardour_ui_ed.cc:255 engine_dialog.cc:85 msgid "Stop" msgstr "Parar" @@ -1803,59 +1047,14 @@ msgstr "Parar" msgid "Roll" msgstr "" -#: ardour_ui_ed.cc:262 -#, fuzzy -msgid "Start/Stop" -msgstr "Inicio:" - -#: ardour_ui_ed.cc:265 -#, fuzzy -msgid "Start/Continue/Stop" -msgstr "Inicio:" - #: ardour_ui_ed.cc:268 msgid "Stop and Forget Capture" msgstr "" -#: ardour_ui_ed.cc:278 -#, fuzzy -msgid "Transition To Roll" -msgstr "Tradicional" - #: ardour_ui_ed.cc:282 msgid "Transition To Reverse" msgstr "" -#: ardour_ui_ed.cc:286 -#, fuzzy -msgid "Play Loop Range" -msgstr "Reproduzir intervalo" - -#: ardour_ui_ed.cc:289 -#, fuzzy -msgid "Play Selected Range" -msgstr "Separar intervalo" - -#: ardour_ui_ed.cc:292 -#, fuzzy -msgid "Play Selection w/Preroll" -msgstr "Reproduzir região selecionada" - -#: ardour_ui_ed.cc:296 -#, fuzzy -msgid "Enable Record" -msgstr "Gravar" - -#: ardour_ui_ed.cc:299 -#, fuzzy -msgid "Start Recording" -msgstr "Separar intervalo" - -#: ardour_ui_ed.cc:303 -#, fuzzy -msgid "Rewind" -msgstr "Região" - #: ardour_ui_ed.cc:306 msgid "Rewind (Slow)" msgstr "" @@ -1880,11 +1079,6 @@ msgstr "" msgid "Goto Zero" msgstr "" -#: ardour_ui_ed.cc:324 -#, fuzzy -msgid "Goto Start" -msgstr "Inicio:" - #: ardour_ui_ed.cc:327 msgid "Goto End" msgstr "" @@ -1906,84 +1100,23 @@ msgstr "" msgid "Timecode" msgstr "" -#: ardour_ui_ed.cc:340 ardour_ui_ed.cc:349 editor_actions.cc:542 -#, fuzzy -msgid "Bars & Beats" -msgstr "Compassos:Batimentos" - -#: ardour_ui_ed.cc:342 ardour_ui_ed.cc:351 -#, fuzzy -msgid "Minutes & Seconds" -msgstr "Minutos:Segundos" - -#: ardour_ui_ed.cc:344 ardour_ui_ed.cc:353 audio_clock.cc:2050 editor.cc:238 -#: editor_actions.cc:543 -#, fuzzy -msgid "Samples" -msgstr "Separar Região" - -#: ardour_ui_ed.cc:356 -#, fuzzy -msgid "Punch In" -msgstr "Inserção" - #: ardour_ui_ed.cc:357 mixer_strip.cc:1905 route_ui.cc:137 #: time_info_box.cc:113 msgid "In" msgstr "Entrada" -#: ardour_ui_ed.cc:360 -#, fuzzy -msgid "Punch Out" -msgstr "" -"finalizar\n" -"inserção" - #: ardour_ui_ed.cc:361 time_info_box.cc:114 msgid "Out" msgstr "Saídas" -#: ardour_ui_ed.cc:364 -#, fuzzy -msgid "Punch In/Out" -msgstr "" -"finalizar\n" -"inserção" - -#: ardour_ui_ed.cc:365 -#, fuzzy -msgid "In/Out" -msgstr "" -"finalizar\n" -"inserção" - #: ardour_ui_ed.cc:368 rc_option_editor.cc:1071 msgid "Click" msgstr "Metrônomo" -#: ardour_ui_ed.cc:371 -#, fuzzy -msgid "Auto Input" -msgstr "" -"entrada\n" -"automática" - -#: ardour_ui_ed.cc:374 -#, fuzzy -msgid "Auto Play" -msgstr "" -"reprodução\n" -"automática" - #: ardour_ui_ed.cc:385 msgid "Sync Startup to Video" msgstr "" -#: ardour_ui_ed.cc:387 -#, fuzzy -msgid "Time Master" -msgstr "Modo supervisor de tempo (JACK)" - #: ardour_ui_ed.cc:394 msgid "Toggle Record Enable Track %1" msgstr "" @@ -2004,16 +1137,6 @@ msgstr "Enviar MTC" msgid "Send MMC" msgstr "Enviar MMC" -#: ardour_ui_ed.cc:410 -#, fuzzy -msgid "Use MMC" -msgstr "Enviar MMC" - -#: ardour_ui_ed.cc:412 rc_option_editor.cc:1710 -#, fuzzy -msgid "Send MIDI Clock" -msgstr "Enviar MTC" - #: ardour_ui_ed.cc:414 msgid "Send MIDI Feedback" msgstr "" @@ -2022,11 +1145,6 @@ msgstr "" msgid "Panic" msgstr "" -#: ardour_ui_ed.cc:560 -#, fuzzy -msgid "Wall Clock" -msgstr "Metrônomo" - #: ardour_ui_ed.cc:561 msgid "Disk Space" msgstr "" @@ -2043,41 +1161,16 @@ msgstr "" msgid "JACK Sampling Rate and Latency" msgstr "" -#: ardour_ui_ed.cc:565 -#, fuzzy -msgid "Timecode Format" -msgstr "Quadros de Ãudio" - -#: ardour_ui_ed.cc:566 -#, fuzzy -msgid "File Format" -msgstr "Quadros de Ãudio" - #: ardour_ui_options.cc:65 msgid "" "It is not possible to use JACK as the the sync source\n" "when the pull up/down setting is non-zero." msgstr "" -#: ardour_ui_options.cc:321 -#, fuzzy -msgid "Internal" -msgstr "interno" - -#: ardour_ui_options.cc:482 -#, fuzzy -msgid "Enable/Disable external positional sync" -msgstr "Habilitar/desabilitar metrônomo" - #: ardour_ui_options.cc:484 msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "" -#: audio_clock.cc:1012 audio_clock.cc:1031 -#, fuzzy -msgid "--pending--" -msgstr "Ascendente" - #: audio_clock.cc:1083 msgid "SR" msgstr "" @@ -2119,26 +1212,11 @@ msgstr "Compassos:Batimentos" msgid "Minutes:Seconds" msgstr "Minutos:Segundos" -#: audio_clock.cc:2054 -#, fuzzy -msgid "Set From Playhead" -msgstr "Início" - -#: audio_clock.cc:2055 -#, fuzzy -msgid "Locate to This Time" -msgstr "Ir para" - #: audio_region_editor.cc:63 control_point_dialog.cc:49 rhythm_ferret.cc:125 #: rhythm_ferret.cc:130 rhythm_ferret.cc:135 msgid "dB" msgstr "" -#: audio_region_editor.cc:66 -#, fuzzy -msgid "Region gain:" -msgstr "Fim de regiões" - #: audio_region_editor.cc:76 export_format_dialog.cc:43 msgid "dBFS" msgstr "" @@ -2151,30 +1229,10 @@ msgstr "" msgid "Calculating..." msgstr "" -#: audio_region_view.cc:1001 -#, fuzzy -msgid "add gain control point" -msgstr "Remover ponto de controlo" - -#: audio_time_axis.cc:389 -#, fuzzy -msgid "Fader" -msgstr "Fade" - -#: audio_time_axis.cc:396 -#, fuzzy -msgid "Pan" -msgstr "pan" - #: automation_line.cc:252 automation_line.cc:435 msgid "automation event move" msgstr "mover evento de automação" -#: automation_line.cc:462 automation_line.cc:483 -#, fuzzy -msgid "automation range move" -msgstr "arrastar intervalo de automação" - #: automation_line.cc:823 region_gain_line.cc:73 msgid "remove control point" msgstr "Remover ponto de controlo" @@ -2183,11 +1241,6 @@ msgstr "Remover ponto de controlo" msgid "Ignoring illegal points on AutomationLine \"%1\"" msgstr "" -#: automation_region_view.cc:160 automation_time_axis.cc:583 -#, fuzzy -msgid "add automation event" -msgstr "adicionar evento de automação para " - #: automation_time_axis.cc:146 msgid "automation state" msgstr "estado do automação" @@ -2196,13 +1249,6 @@ msgstr "estado do automação" msgid "hide track" msgstr "ocultar esta trilha" -#: automation_time_axis.cc:255 automation_time_axis.cc:307 -#: automation_time_axis.cc:496 gain_meter.cc:195 generic_pluginui.cc:456 -#: generic_pluginui.cc:746 panner_ui.cc:150 -#, fuzzy -msgid "Automation|Manual" -msgstr "Automação" - #: automation_time_axis.cc:257 automation_time_axis.cc:318 #: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 #: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 @@ -2211,20 +1257,6 @@ msgstr "Automação" msgid "Play" msgstr "Reproduzir" -#: automation_time_axis.cc:259 automation_time_axis.cc:329 -#: automation_time_axis.cc:506 gain_meter.cc:201 generic_pluginui.cc:462 -#: generic_pluginui.cc:750 panner_ui.cc:156 -#, fuzzy -msgid "Write" -msgstr "escrever" - -#: automation_time_axis.cc:261 automation_time_axis.cc:340 -#: automation_time_axis.cc:511 gain_meter.cc:204 generic_pluginui.cc:465 -#: generic_pluginui.cc:752 panner_ui.cc:159 -#, fuzzy -msgid "Touch" -msgstr "marca como novo" - #: automation_time_axis.cc:351 generic_pluginui.cc:468 meter_patterns.cc:108 msgid "???" msgstr "" @@ -2246,11 +1278,6 @@ msgstr "Limpar" msgid "State" msgstr "Estado" -#: automation_time_axis.cc:531 -#, fuzzy -msgid "Discrete" -msgstr "Desconectar" - #: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 #: editor.cc:1526 export_format_dialog.cc:476 msgid "Linear" @@ -2265,28 +1292,6 @@ msgstr "Modo" msgid "Disassociate" msgstr "" -#: bundle_manager.cc:185 -#, fuzzy -msgid "Edit Bundle" -msgstr "Modo de edição" - -#: bundle_manager.cc:200 -#, fuzzy -msgid "Direction:" -msgstr "Reproduzir seleção" - -#: bundle_manager.cc:205 bundle_manager.cc:209 mixer_strip.cc:158 -#: mixer_strip.cc:2127 -#, fuzzy -msgid "Input" -msgstr "Entradas" - -#: bundle_manager.cc:206 bundle_manager.cc:211 bundle_manager.cc:245 -#: mixer_strip.cc:163 mixer_strip.cc:2130 -#, fuzzy -msgid "Output" -msgstr "Saídas" - #: bundle_manager.cc:264 editor.cc:1974 editor_actions.cc:90 #: editor_actions.cc:100 msgid "Edit" @@ -2298,12 +1303,6 @@ msgstr "Editar" msgid "Delete" msgstr "Apagar" -#: bundle_manager.cc:271 bundle_manager.cc:439 editor_route_groups.cc:96 -#: editor_routes.cc:202 midi_list_editor.cc:106 session_metadata_dialog.cc:525 -#, fuzzy -msgid "Name" -msgstr "Quadros" - #: bundle_manager.cc:282 msgid "New" msgstr "Novo" @@ -2312,16 +1311,6 @@ msgstr "Novo" msgid "Bundle" msgstr "" -#: bundle_manager.cc:417 -#, fuzzy -msgid "Add Channel" -msgstr "cancelar" - -#: bundle_manager.cc:424 -#, fuzzy -msgid "Rename Channel" -msgstr "Renomear" - #: canvas-simpleline.c:111 canvas-simplerect.c:106 msgid "x1" msgstr "" @@ -2358,11 +1347,6 @@ msgstr "" msgid "color rgba" msgstr "" -#: canvas-simpleline.c:152 -#, fuzzy -msgid "color of line" -msgstr "linear" - #: canvas-simplerect.c:148 msgid "outline pixels" msgstr "" @@ -2383,20 +1367,10 @@ msgstr "" msgid "fill" msgstr "" -#: canvas-simplerect.c:172 -#, fuzzy -msgid "fill rectangle" -msgstr "Reproduzir seleção continuamente" - #: canvas-simplerect.c:179 msgid "draw" msgstr "" -#: canvas-simplerect.c:180 -#, fuzzy -msgid "draw rectangle" -msgstr "intervalo" - #: canvas-simplerect.c:188 msgid "outline color rgba" msgstr "" @@ -2413,16 +1387,6 @@ msgstr "" msgid "color of fill" msgstr "" -#: configinfo.cc:28 -#, fuzzy -msgid "Build Configuration" -msgstr "Cancelar importação" - -#: control_point_dialog.cc:33 -#, fuzzy -msgid "Control point" -msgstr "Remover ponto de controlo" - #: control_point_dialog.cc:45 msgid "Value" msgstr "Valor" @@ -2431,37 +1395,6 @@ msgstr "Valor" msgid "Note" msgstr "" -#: edit_note_dialog.cc:45 -#, fuzzy -msgid "Set selected notes to this channel" -msgstr "Remover ponto de controlo" - -#: edit_note_dialog.cc:46 -#, fuzzy -msgid "Set selected notes to this pitch" -msgstr "Remover ponto de controlo" - -#: edit_note_dialog.cc:47 -#, fuzzy -msgid "Set selected notes to this velocity" -msgstr "Remover ponto de controlo" - -#: edit_note_dialog.cc:49 -#, fuzzy -msgid "Set selected notes to this time" -msgstr "Remover ponto de controlo" - -#: edit_note_dialog.cc:51 -#, fuzzy -msgid "Set selected notes to this length" -msgstr "Remover ponto de controlo" - -#: edit_note_dialog.cc:58 midi_list_editor.cc:104 patch_change_dialog.cc:91 -#: step_entry.cc:393 -#, fuzzy -msgid "Channel" -msgstr "cancelar" - #: edit_note_dialog.cc:68 msgid "Pitch" msgstr "" @@ -2480,30 +1413,10 @@ msgstr "" msgid "Length" msgstr "" -#: edit_note_dialog.cc:165 -#, fuzzy -msgid "edit note" -msgstr "Modo de edição" - #: editor.cc:137 editor.cc:3429 msgid "CD Frames" msgstr "Quadros de CD" -#: editor.cc:138 editor.cc:3431 -#, fuzzy -msgid "Timecode Frames" -msgstr "Quadros de Ãudio" - -#: editor.cc:139 editor.cc:3433 -#, fuzzy -msgid "Timecode Seconds" -msgstr "SMPTE segundo" - -#: editor.cc:140 editor.cc:3435 -#, fuzzy -msgid "Timecode Minutes" -msgstr "SMPTE Minutos" - #: editor.cc:141 editor.cc:3437 msgid "Seconds" msgstr "Segundos" @@ -2512,75 +1425,19 @@ msgstr "Segundos" msgid "Minutes" msgstr "Minutos" -#: editor.cc:143 editor.cc:3413 quantize_dialog.cc:37 quantize_dialog.cc:141 -#, fuzzy -msgid "Beats/128" -msgstr "Batimentos/8" - -#: editor.cc:144 editor.cc:3411 quantize_dialog.cc:38 quantize_dialog.cc:143 -#, fuzzy -msgid "Beats/64" -msgstr "Batimentos/4" - # ## msgstr "Saídas Principais" #: editor.cc:145 editor.cc:3409 quantize_dialog.cc:39 quantize_dialog.cc:145 msgid "Beats/32" msgstr "Batimentos/32" -#: editor.cc:146 editor.cc:3407 -#, fuzzy -msgid "Beats/28" -msgstr "Batimentos/8" - -#: editor.cc:147 editor.cc:3405 -#, fuzzy -msgid "Beats/24" -msgstr "Batimentos/4" - -# ## msgstr "Saídas Principais" -#: editor.cc:148 editor.cc:3403 -#, fuzzy -msgid "Beats/20" -msgstr "Batimentos/32" - #: editor.cc:149 editor.cc:3401 quantize_dialog.cc:40 quantize_dialog.cc:147 msgid "Beats/16" msgstr "Batimentos/16" -#: editor.cc:150 editor.cc:3399 -#, fuzzy -msgid "Beats/14" -msgstr "Batimentos/4" - -#: editor.cc:151 editor.cc:3397 -#, fuzzy -msgid "Beats/12" -msgstr "Batimentos/16" - -#: editor.cc:152 editor.cc:3395 -#, fuzzy -msgid "Beats/10" -msgstr "Batimentos/16" - #: editor.cc:153 editor.cc:3393 quantize_dialog.cc:41 quantize_dialog.cc:149 msgid "Beats/8" msgstr "Batimentos/8" -#: editor.cc:154 editor.cc:3391 -#, fuzzy -msgid "Beats/7" -msgstr "Batimentos/8" - -#: editor.cc:155 editor.cc:3389 -#, fuzzy -msgid "Beats/6" -msgstr "Batimentos/16" - -#: editor.cc:156 editor.cc:3387 -#, fuzzy -msgid "Beats/5" -msgstr "Batimentos/8" - #: editor.cc:157 editor.cc:3385 quantize_dialog.cc:42 quantize_dialog.cc:151 msgid "Beats/4" msgstr "Batimentos/4" @@ -2589,12 +1446,6 @@ msgstr "Batimentos/4" msgid "Beats/3" msgstr "Batimentos/3" -# ## msgstr "Saídas Principais" -#: editor.cc:159 editor.cc:3381 quantize_dialog.cc:44 quantize_dialog.cc:155 -#, fuzzy -msgid "Beats/2" -msgstr "Batimentos/32" - #: editor.cc:160 editor.cc:3415 quantize_dialog.cc:45 quantize_dialog.cc:157 msgid "Beats" msgstr "Batimentos" @@ -2644,11 +1495,6 @@ msgstr "Início" msgid "Marker" msgstr "Marca" -#: editor.cc:180 editor.cc:189 editor.cc:3525 editor_actions.cc:469 -#, fuzzy -msgid "Mouse" -msgstr "Teclado/Mouse" - #: editor.cc:185 editor.cc:3517 mono_panner_editor.cc:42 msgid "Left" msgstr "Esquerdo" @@ -2661,11 +1507,6 @@ msgstr "Direito" msgid "Center" msgstr "Centro" -#: editor.cc:190 editor.cc:3090 editor.cc:3527 -#, fuzzy -msgid "Edit point" -msgstr "Editar com" - #: editor.cc:196 msgid "Mushy" msgstr "" @@ -2710,11 +1551,6 @@ msgstr "Marcas de Intervalos" msgid "Loop/Punch Ranges" msgstr "Intervalos Loop/Insersão" -#: editor.cc:244 editor_actions.cc:540 -#, fuzzy -msgid "CD Markers" -msgstr "Marca" - #: editor.cc:245 msgid "Video Timeline" msgstr "" @@ -2723,41 +1559,10 @@ msgstr "" msgid "mode" msgstr "modo" -#: editor.cc:542 -#, fuzzy -msgid "Regions" -msgstr "Região" - -#: editor.cc:543 -#, fuzzy -msgid "Tracks & Busses" -msgstr "Trilhas/Barramentos" - #: editor.cc:544 msgid "Snapshots" msgstr "Capturas" -#: editor.cc:545 -#, fuzzy -msgid "Track & Bus Groups" -msgstr "Trilhas/Barramentos" - -#: editor.cc:546 -#, fuzzy -msgid "Ranges & Marks" -msgstr "Marcas de Intervalos" - -#: editor.cc:690 editor.cc:5345 rc_option_editor.cc:1294 -#: rc_option_editor.cc:1302 rc_option_editor.cc:1310 rc_option_editor.cc:1318 -#: rc_option_editor.cc:1335 rc_option_editor.cc:1337 rc_option_editor.cc:1345 -#: rc_option_editor.cc:1353 rc_option_editor.cc:1373 rc_option_editor.cc:1385 -#: rc_option_editor.cc:1387 rc_option_editor.cc:1395 rc_option_editor.cc:1403 -#: rc_option_editor.cc:1411 rc_option_editor.cc:1419 rc_option_editor.cc:1427 -#: rc_option_editor.cc:1442 rc_option_editor.cc:1446 -#, fuzzy -msgid "Editor" -msgstr "editor" - #: editor.cc:1215 editor.cc:1225 editor.cc:4440 editor_actions.cc:130 #: editor_actions.cc:1813 msgid "Loop" @@ -2817,187 +1622,27 @@ msgstr "Congelar" msgid "Unfreeze" msgstr "Descongelar" -#: editor.cc:1816 -#, fuzzy -msgid "Selected Regions" -msgstr "Loop região selecionada" - -#: editor.cc:1852 editor_markers.cc:895 -#, fuzzy -msgid "Play Range" -msgstr "Reproduzir intervalo" - -#: editor.cc:1853 editor_markers.cc:898 -#, fuzzy -msgid "Loop Range" -msgstr "Loop no intervalo" - -#: editor.cc:1862 editor_actions.cc:332 -#, fuzzy -msgid "Move Range Start to Previous Region Boundary" -msgstr "Do cursor de edição ao final" - -#: editor.cc:1869 editor_actions.cc:339 -#, fuzzy -msgid "Move Range Start to Next Region Boundary" -msgstr "Divisas de região" - -#: editor.cc:1876 editor_actions.cc:346 -#, fuzzy -msgid "Move Range End to Previous Region Boundary" -msgstr "Do cursor de edição ao final" - -#: editor.cc:1883 editor_actions.cc:353 -#, fuzzy -msgid "Move Range End to Next Region Boundary" -msgstr "Divisas de região" - -#: editor.cc:1889 -#, fuzzy -msgid "Convert to Region In-Place" -msgstr "Sincronizações de região" - #: editor.cc:1890 msgid "Convert to Region in Region List" msgstr "" -#: editor.cc:1893 editor_markers.cc:925 -#, fuzzy -msgid "Select All in Range" -msgstr "Selecionar tudo na trilha" - -#: editor.cc:1896 -#, fuzzy -msgid "Set Loop from Range" -msgstr "Marcar um intervalo de loop" - -#: editor.cc:1897 -#, fuzzy -msgid "Set Punch from Range" -msgstr "Fazer intervalo de inserção" - -#: editor.cc:1900 -#, fuzzy -msgid "Add Range Markers" -msgstr "Marcas de Intervalos" - -#: editor.cc:1903 -#, fuzzy -msgid "Crop Region to Range" -msgstr "Cortar região pela intervalo" - -#: editor.cc:1904 -#, fuzzy -msgid "Fill Range with Region" -msgstr "Preencher intervalo com região" - -#: editor.cc:1905 editor_actions.cc:289 -#, fuzzy -msgid "Duplicate Range" -msgstr "Duplicar" - -#: editor.cc:1908 -#, fuzzy -msgid "Consolidate Range" -msgstr "Duplicar" - #: editor.cc:1909 msgid "Consolidate Range With Processing" msgstr "" -#: editor.cc:1910 -#, fuzzy -msgid "Bounce Range to Region List" -msgstr "Loop região selecionada" - #: editor.cc:1911 msgid "Bounce Range to Region List With Processing" msgstr "" -#: editor.cc:1912 editor_markers.cc:908 -#, fuzzy -msgid "Export Range..." -msgstr "Separar intervalo" - -#: editor.cc:1927 editor.cc:2008 editor_actions.cc:281 -#, fuzzy -msgid "Play From Edit Point" -msgstr "Reproduzir a partir do cursor" - -#: editor.cc:1928 editor.cc:2009 -#, fuzzy -msgid "Play From Start" -msgstr "Reproduzir do início" - -#: editor.cc:1929 -#, fuzzy -msgid "Play Region" -msgstr "Reproduzir região" - #: editor.cc:1931 msgid "Loop Region" msgstr "Região de loop" -#: editor.cc:1941 editor.cc:2018 -#, fuzzy -msgid "Select All in Track" -msgstr "Selecionar tudo na trilha" - #: editor.cc:1942 editor.cc:2019 editor_actions.cc:185 #: export_timespan_selector.cc:53 processor_box.cc:2237 msgid "Select All" msgstr "Selecionar Tudo" -#: editor.cc:1943 editor.cc:2020 -#, fuzzy -msgid "Invert Selection in Track" -msgstr "Inverter verticalmente na trilha" - -#: editor.cc:1944 editor.cc:2021 editor_actions.cc:187 -#, fuzzy -msgid "Invert Selection" -msgstr "Saltar Seleção" - -#: editor.cc:1946 -#, fuzzy -msgid "Set Range to Loop Range" -msgstr "Selecionar intervalo de loop" - -#: editor.cc:1947 -#, fuzzy -msgid "Set Range to Punch Range" -msgstr "Selecionar intervalo de inserção" - -#: editor.cc:1949 editor.cc:2023 editor_actions.cc:188 -#, fuzzy -msgid "Select All After Edit Point" -msgstr "Reproduzir a partir do cursor" - -#: editor.cc:1950 editor.cc:2024 editor_actions.cc:189 -#, fuzzy -msgid "Select All Before Edit Point" -msgstr "Do início ao cursor de edição" - -#: editor.cc:1951 editor.cc:2025 -#, fuzzy -msgid "Select All After Playhead" -msgstr "Marcar aqui" - -#: editor.cc:1952 editor.cc:2026 -#, fuzzy -msgid "Select All Before Playhead" -msgstr "Marcar aqui" - -#: editor.cc:1953 -#, fuzzy -msgid "Select All Between Playhead and Edit Point" -msgstr "Marcar aqui" - -#: editor.cc:1954 -#, fuzzy -msgid "Select All Within Playhead and Edit Point" -msgstr "Marcar aqui" - #: editor.cc:1955 msgid "Select Range Between Playhead and Edit Point" msgstr "" @@ -3026,36 +1671,6 @@ msgstr "Alinhamento" msgid "Align Relative" msgstr "Alinhamento Relativo" -#: editor.cc:1979 -#, fuzzy -msgid "Insert Selected Region" -msgstr "Loop região selecionada" - -#: editor.cc:1980 -#, fuzzy -msgid "Insert Existing Media" -msgstr "Inserir seleção" - -#: editor.cc:1989 editor.cc:2045 -#, fuzzy -msgid "Nudge Entire Track Later" -msgstr "Retorcar toda a trilha para frente" - -#: editor.cc:1990 editor.cc:2046 -#, fuzzy -msgid "Nudge Track After Edit Point Later" -msgstr "Retocar trilha após o cursor de edição" - -#: editor.cc:1991 editor.cc:2047 -#, fuzzy -msgid "Nudge Entire Track Earlier" -msgstr "Retorcar toda a trilha para frente" - -#: editor.cc:1992 editor.cc:2048 -#, fuzzy -msgid "Nudge Track After Edit Point Earlier" -msgstr "Retocar trilha após o cursor de edição" - #: editor.cc:1994 editor.cc:2050 msgid "Nudge" msgstr "Retocar" @@ -3064,40 +1679,10 @@ msgstr "Retocar" msgid "Smart Mode (add Range functions to Object mode)" msgstr "" -#: editor.cc:3071 -#, fuzzy -msgid "Object Mode (select/move Objects)" -msgstr "selecionar/mover intervalos" - -#: editor.cc:3072 -#, fuzzy -msgid "Range Mode (select/move Ranges)" -msgstr "selecionar/mover intervalos" - #: editor.cc:3073 msgid "Draw/Edit MIDI Notes" msgstr "" -#: editor.cc:3074 -#, fuzzy -msgid "Draw Region Gain" -msgstr "desenhar ganho automático" - -#: editor.cc:3075 -#, fuzzy -msgid "Select Zoom Range" -msgstr "selecionar intervalo de zoom" - -#: editor.cc:3076 -#, fuzzy -msgid "Stretch/Shrink Regions and MIDI Notes" -msgstr "esticar/encolher regiões" - -#: editor.cc:3077 -#, fuzzy -msgid "Listen to Specific Regions" -msgstr "Ouça no região especifica" - #: editor.cc:3078 msgid "Note Level Editing" msgstr "" @@ -3108,55 +1693,10 @@ msgid "" "Context-click for other operations" msgstr "" -#: editor.cc:3080 -#, fuzzy -msgid "Nudge Region/Selection Later" -msgstr "Avançar o mínimo região/seleção" - -#: editor.cc:3081 -#, fuzzy -msgid "Nudge Region/Selection Earlier" -msgstr "Avançar o mínimo região/seleção" - -#: editor.cc:3082 editor_actions.cc:242 -#, fuzzy -msgid "Zoom In" -msgstr "Mais Zoom" - -#: editor.cc:3083 editor_actions.cc:241 -#, fuzzy -msgid "Zoom Out" -msgstr "Menos Zoom" - -#: editor.cc:3084 editor_actions.cc:243 -#, fuzzy -msgid "Zoom to Session" -msgstr "Zoom na sessão" - -#: editor.cc:3085 -#, fuzzy -msgid "Zoom focus" -msgstr "Foco de Zoom" - -#: editor.cc:3086 -#, fuzzy -msgid "Expand Tracks" -msgstr "Trilhas" - -#: editor.cc:3087 -#, fuzzy -msgid "Shrink Tracks" -msgstr "Outras trilhas" - #: editor.cc:3088 msgid "Snap/Grid Units" msgstr "" -#: editor.cc:3089 -#, fuzzy -msgid "Snap/Grid Mode" -msgstr "Modo de Ajuste" - #: editor.cc:3091 msgid "Edit Mode" msgstr "Modo de edição" @@ -3175,11 +1715,6 @@ msgstr "" msgid "Command|Undo" msgstr "" -#: editor.cc:3258 -#, fuzzy -msgid "Command|Undo (%1)" -msgstr "Desfazer (%1)" - #: editor.cc:3265 editor_actions.cc:292 msgid "Redo" msgstr "Refazer" @@ -3196,11 +1731,6 @@ msgstr "Duplicar" msgid "Number of duplications:" msgstr "" -#: editor.cc:3864 -#, fuzzy -msgid "Playlist Deletion" -msgstr "Reproduzir região selecionada" - #: editor.cc:3865 msgid "" "Playlist %1 is currently unused.\n" @@ -3208,75 +1738,15 @@ msgid "" "If it is deleted, audio files used by it alone will be cleaned." msgstr "" -#: editor.cc:3875 -#, fuzzy -msgid "Delete Playlist" -msgstr "Nome para a imagem capturada" - -#: editor.cc:3876 -#, fuzzy -msgid "Keep Playlist" -msgstr "Nome para a imagem capturada" - #: editor.cc:3877 editor_audio_import.cc:581 editor_ops.cc:5856 #: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 msgid "Cancel" msgstr "Cancelar" -#: editor.cc:4021 -#, fuzzy -msgid "new playlists" -msgstr "Nome para a imagem capturada" - -#: editor.cc:4037 -#, fuzzy -msgid "copy playlists" -msgstr "Nome para a imagem capturada" - -#: editor.cc:4052 -#, fuzzy -msgid "clear playlists" -msgstr "Nome para a imagem capturada" - #: editor.cc:4687 msgid "Please wait while %1 loads visual data." msgstr "" -#: editor.cc:5492 editor_markers.cc:940 panner_ui.cc:393 processor_box.cc:2253 -#, fuzzy -msgid "Edit..." -msgstr "Editar" - -#: editor_actions.cc:88 -#, fuzzy -msgid "Autoconnect" -msgstr "Conectar" - -#: editor_actions.cc:89 -#, fuzzy -msgid "Crossfades" -msgstr "Fade cruzado" - -#: editor_actions.cc:91 -#, fuzzy -msgid "Move Selected Marker" -msgstr "remover marca" - -#: editor_actions.cc:92 -#, fuzzy -msgid "Select Range Operations" -msgstr "Loop região selecionada" - -#: editor_actions.cc:93 -#, fuzzy -msgid "Select Regions" -msgstr "Loop região selecionada" - -#: editor_actions.cc:94 -#, fuzzy -msgid "Edit Point" -msgstr "Editar com" - #: editor_actions.cc:95 msgid "Fade" msgstr "Fade" @@ -3285,22 +1755,6 @@ msgstr "Fade" msgid "Latch" msgstr "" -#: editor_actions.cc:97 editor_regions.cc:111 region_editor.cc:46 -#, fuzzy -msgid "Region" -msgstr "Região" - -#: editor_actions.cc:98 -#, fuzzy -msgid "Layering" -msgstr "Camada" - -#: editor_actions.cc:99 editor_regions.cc:112 gtk-custom-ruler.c:152 -#: stereo_panner_editor.cc:44 -#, fuzzy -msgid "Position" -msgstr "Audição" - #: editor_actions.cc:101 gain_meter.cc:121 gain_meter.cc:791 panner_ui.cc:177 #: panner_ui.cc:586 msgid "Trim" @@ -3310,18 +1764,6 @@ msgstr "Cortar" msgid "Gain" msgstr "" -#: editor_actions.cc:103 editor_actions.cc:538 -#, fuzzy -msgid "Ranges" -msgstr "Intervalo" - -#: editor_actions.cc:104 editor_actions.cc:1790 session_option_editor.cc:145 -#: session_option_editor.cc:147 session_option_editor.cc:156 -#: session_option_editor.cc:163 -#, fuzzy -msgid "Fades" -msgstr "Fade" - #: editor_actions.cc:107 msgid "Link" msgstr "" @@ -3330,60 +1772,14 @@ msgstr "" msgid "Zoom Focus" msgstr "Foco de Zoom" -#: editor_actions.cc:109 -#, fuzzy -msgid "Locate to Markers" -msgstr "Ir para" - -#: editor_actions.cc:110 editor_actions.cc:539 -#, fuzzy -msgid "Markers" -msgstr "Marca" - #: editor_actions.cc:111 msgid "Meter falloff" msgstr "" -#: editor_actions.cc:112 -#, fuzzy -msgid "Meter hold" -msgstr "VU (medidor volumétrico)" - -#: editor_actions.cc:113 session_option_editor.cc:234 -#, fuzzy -msgid "MIDI Options" -msgstr "Preferências" - -#: editor_actions.cc:114 -#, fuzzy -msgid "Misc Options" -msgstr "Preferências" - -#: editor_actions.cc:115 rc_option_editor.cc:1460 route_group_dialog.cc:48 -#: session_option_editor.cc:218 session_option_editor.cc:225 -#, fuzzy -msgid "Monitoring" -msgstr "Usar Monitoração de Hardware" - -#: editor_actions.cc:116 -#, fuzzy -msgid "Active Mark" -msgstr "Ativar" - -#: editor_actions.cc:119 -#, fuzzy -msgid "Primary Clock" -msgstr "Relógio primeiramente" - #: editor_actions.cc:120 msgid "Pullup / Pulldown" msgstr "" -#: editor_actions.cc:121 -#, fuzzy -msgid "Region operations" -msgstr "Regiões/criação" - #: editor_actions.cc:123 msgid "Rulers" msgstr "" @@ -3396,26 +1792,11 @@ msgstr "" msgid "Scroll" msgstr "" -#: editor_actions.cc:126 -#, fuzzy -msgid "Secondary Clock" -msgstr "Relógio secundário" - -#: editor_actions.cc:129 editor_actions.cc:297 -#, fuzzy -msgid "Separate" -msgstr "Separar Região" - #: editor_actions.cc:132 mixer_strip.cc:1914 route_time_axis.cc:208 #: route_time_axis.cc:2417 msgid "Solo" msgstr "Solo" -#: editor_actions.cc:133 -#, fuzzy -msgid "Subframes" -msgstr "Quadros" - #: editor_actions.cc:136 msgid "Timecode fps" msgstr "" @@ -3432,39 +1813,14 @@ msgstr "" msgid "View" msgstr "" -#: editor_actions.cc:142 -#, fuzzy -msgid "Zoom" -msgstr "Mais Zoom" - #: editor_actions.cc:148 msgid "Break drag or deselect all" msgstr "" -#: editor_actions.cc:150 -#, fuzzy -msgid "Show Editor Mixer" -msgstr "Mostrar painéis de mixer de todas as trilhas de áudio" - -#: editor_actions.cc:151 -#, fuzzy -msgid "Show Editor List" -msgstr "Editor" - -#: editor_actions.cc:153 -#, fuzzy -msgid "Playhead to Next Region Boundary" -msgstr "Divisas de região" - #: editor_actions.cc:154 msgid "Playhead to Next Region Boundary (No Track Selection)" msgstr "" -#: editor_actions.cc:155 -#, fuzzy -msgid "Playhead to Previous Region Boundary" -msgstr "Do cursor de edição ao final" - #: editor_actions.cc:156 msgid "Playhead to Previous Region Boundary (No Track Selection)" msgstr "" @@ -3493,104 +1849,14 @@ msgstr "" msgid "Playhead to Previous Region Sync" msgstr "" -#: editor_actions.cc:166 -#, fuzzy -msgid "To Next Region Boundary" -msgstr "Divisas de região" - #: editor_actions.cc:167 msgid "To Next Region Boundary (No Track Selection)" msgstr "" -#: editor_actions.cc:168 -#, fuzzy -msgid "To Previous Region Boundary" -msgstr "Do cursor de edição ao final" - -#: editor_actions.cc:169 -#, fuzzy -msgid "To Previous Region Boundary (No Track Selection)" -msgstr "Do cursor de edição ao final" - -#: editor_actions.cc:171 -#, fuzzy -msgid "To Next Region Start" -msgstr "Do cursor de edição ao final" - -#: editor_actions.cc:172 -#, fuzzy -msgid "To Next Region End" -msgstr "Do cursor de edição ao final" - -#: editor_actions.cc:173 -#, fuzzy -msgid "To Next Region Sync" -msgstr "Do cursor de edição ao final" - -#: editor_actions.cc:175 -#, fuzzy -msgid "To Previous Region Start" -msgstr "Começo de regiões" - -#: editor_actions.cc:176 -#, fuzzy -msgid "To Previous Region End" -msgstr "Do cursor de edição ao final" - -#: editor_actions.cc:177 -#, fuzzy -msgid "To Previous Region Sync" -msgstr "Do cursor de edição ao final" - -#: editor_actions.cc:179 -#, fuzzy -msgid "To Range Start" -msgstr "Do cursor de edição ao final" - -#: editor_actions.cc:180 -#, fuzzy -msgid "To Range End" -msgstr "Reproduzir intervalo" - #: editor_actions.cc:182 msgid "Playhead to Range Start" msgstr "" -#: editor_actions.cc:183 -#, fuzzy -msgid "Playhead to Range End" -msgstr "Reproduzir intervalo" - -#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2239 -#, fuzzy -msgid "Deselect All" -msgstr "Selecionar Tudo" - -#: editor_actions.cc:191 -#, fuzzy -msgid "Select All Overlapping Edit Range" -msgstr "Selecionar tudo na trilha" - -#: editor_actions.cc:192 -#, fuzzy -msgid "Select All Inside Edit Range" -msgstr "Selecionar tudo na trilha" - -#: editor_actions.cc:194 -#, fuzzy -msgid "Select Edit Range" -msgstr "Selecionar tudo na trilha" - -#: editor_actions.cc:196 -#, fuzzy -msgid "Select All in Punch Range" -msgstr "Fazer intervalo de inserção" - -#: editor_actions.cc:197 -#, fuzzy -msgid "Select All in Loop Range" -msgstr "Selecionar intervalo de loop" - #: editor_actions.cc:199 msgid "Select Next Track or Bus" msgstr "" @@ -3603,128 +1869,18 @@ msgstr "" msgid "Toggle Record Enable" msgstr "" -#: editor_actions.cc:204 -#, fuzzy -msgid "Toggle Solo" -msgstr "Gravar" - -#: editor_actions.cc:206 -#, fuzzy -msgid "Toggle Mute" -msgstr "ativo" - -#: editor_actions.cc:208 -#, fuzzy -msgid "Toggle Solo Isolate" -msgstr "Solo" - -#: editor_actions.cc:213 -#, fuzzy -msgid "Save View %1" -msgstr "Salvar e %1" - #: editor_actions.cc:219 msgid "Goto View %1" msgstr "" -#: editor_actions.cc:225 -#, fuzzy -msgid "Locate to Mark %1" -msgstr "Ir para" - -#: editor_actions.cc:229 -#, fuzzy -msgid "Jump to Next Mark" -msgstr "remover marca" - -#: editor_actions.cc:230 -#, fuzzy -msgid "Jump to Previous Mark" -msgstr "Do início ao cursor de edição" - -#: editor_actions.cc:231 -#, fuzzy -msgid "Add Mark from Playhead" -msgstr "Marcar aqui" - -#: editor_actions.cc:233 -#, fuzzy -msgid "Nudge Next Later" -msgstr "Avançar o mínimo região/seleção" - -#: editor_actions.cc:234 -#, fuzzy -msgid "Nudge Next Earlier" -msgstr "Avançar o mínimo região/seleção" - -#: editor_actions.cc:236 -#, fuzzy -msgid "Nudge Playhead Forward" -msgstr "Início" - -#: editor_actions.cc:237 -#, fuzzy -msgid "Nudge Playhead Backward" -msgstr "Início" - -#: editor_actions.cc:238 -#, fuzzy -msgid "Playhead To Next Grid" -msgstr "Divisas de região" - -#: editor_actions.cc:239 -#, fuzzy -msgid "Playhead To Previous Grid" -msgstr "Do cursor de edição ao final" - -#: editor_actions.cc:244 -#, fuzzy -msgid "Zoom to Region" -msgstr "Zoom na sessão" - #: editor_actions.cc:245 msgid "Zoom to Region (Width and Height)" msgstr "" -#: editor_actions.cc:246 -#, fuzzy -msgid "Toggle Zoom State" -msgstr "ativo" - -#: editor_actions.cc:248 -#, fuzzy -msgid "Expand Track Height" -msgstr "Trilhas" - -#: editor_actions.cc:249 -#, fuzzy -msgid "Shrink Track Height" -msgstr "Outras trilhas" - -#: editor_actions.cc:251 -#, fuzzy -msgid "Move Selected Tracks Up" -msgstr "Outras trilhas" - -#: editor_actions.cc:253 -#, fuzzy -msgid "Move Selected Tracks Down" -msgstr "Inserir seleção" - -#: editor_actions.cc:256 -#, fuzzy -msgid "Scroll Tracks Up" -msgstr "Preencher Trilha" - #: editor_actions.cc:258 msgid "Scroll Tracks Down" msgstr "" -#: editor_actions.cc:260 -#, fuzzy -msgid "Step Tracks Up" -msgstr "Outras trilhas" - #: editor_actions.cc:262 msgid "Step Tracks Down" msgstr "" @@ -3737,100 +1893,10 @@ msgstr "" msgid "Scroll Forward" msgstr "" -#: editor_actions.cc:267 -#, fuzzy -msgid "Center Playhead" -msgstr "Início" - -#: editor_actions.cc:268 -#, fuzzy -msgid "Center Edit Point" -msgstr "Cancelar importação" - -#: editor_actions.cc:270 -#, fuzzy -msgid "Playhead Forward" -msgstr "Início" - -#: editor_actions.cc:271 -#, fuzzy -msgid "Playhead Backward" -msgstr "Início" - -#: editor_actions.cc:273 -#, fuzzy -msgid "Playhead to Active Mark" -msgstr "Início" - -#: editor_actions.cc:274 -#, fuzzy -msgid "Active Mark to Playhead" -msgstr "Marcar aqui" - -#: editor_actions.cc:276 -#, fuzzy -msgid "Set Loop from Edit Range" -msgstr "Marcar um intervalo de loop" - -#: editor_actions.cc:277 -#, fuzzy -msgid "Set Punch from Edit Range" -msgstr "Fazer intervalo de inserção" - -#: editor_actions.cc:280 -#, fuzzy -msgid "Play Selected Regions" -msgstr "Loop região selecionada" - -#: editor_actions.cc:282 -#, fuzzy -msgid "Play from Edit Point and Return" -msgstr "Reproduzir a partir do cursor" - -#: editor_actions.cc:284 -#, fuzzy -msgid "Play Edit Range" -msgstr "Reproduzir intervalo" - -#: editor_actions.cc:286 -#, fuzzy -msgid "Playhead to Mouse" -msgstr "Início" - -#: editor_actions.cc:287 -#, fuzzy -msgid "Active Marker to Mouse" -msgstr "Audição" - -#: editor_actions.cc:294 -#, fuzzy -msgid "Export Audio" -msgstr "Exportar região" - -#: editor_actions.cc:295 export_dialog.cc:406 -#, fuzzy -msgid "Export Range" -msgstr "Separar intervalo" - -#: editor_actions.cc:300 -#, fuzzy -msgid "Separate Using Punch Range" -msgstr "Nova região a partir da intervalo" - -#: editor_actions.cc:303 -#, fuzzy -msgid "Separate Using Loop Range" -msgstr "Nova região a partir da intervalo" - #: editor_actions.cc:306 editor_actions.cc:323 msgid "Crop" msgstr "" -#: editor_actions.cc:315 -#, fuzzy -msgid "Set Tempo from Edit Range = Bar" -msgstr "Marcar um intervalo de loop" - #: editor_actions.cc:317 msgid "Log" msgstr "" @@ -3843,56 +1909,16 @@ msgstr "" msgid "Move Earlier to Transient" msgstr "" -#: editor_actions.cc:325 -#, fuzzy -msgid "Start Range" -msgstr "Separar intervalo" - #: editor_actions.cc:326 msgid "Finish Range" msgstr "" -#: editor_actions.cc:327 -#, fuzzy -msgid "Finish Add Range" -msgstr "Adicionar Novo Intervalo" - -#: editor_actions.cc:357 -#, fuzzy -msgid "Follow Playhead" -msgstr "Reproduzir a partir do início" - -#: editor_actions.cc:358 -#, fuzzy -msgid "Remove Last Capture" -msgstr "Remover última captura" - -#: editor_actions.cc:360 -#, fuzzy -msgid "Stationary Playhead" -msgstr "Início" - -#: editor_actions.cc:362 insert_time_dialog.cc:32 -#, fuzzy -msgid "Insert Time" -msgstr "Inserir região" - -#: editor_actions.cc:365 -#, fuzzy -msgid "Toggle Active" -msgstr "ativo" - #: editor_actions.cc:370 editor_actions.cc:1716 editor_markers.cc:876 #: editor_markers.cc:941 editor_snapshots.cc:121 mixer_strip.cc:1495 #: route_time_axis.cc:710 msgid "Remove" msgstr "Remover" -#: editor_actions.cc:374 -#, fuzzy -msgid "Fit Selected Tracks" -msgstr "Inserir seleção" - #: editor_actions.cc:376 time_axis_view.cc:1302 msgid "Largest" msgstr "Enorme" @@ -3913,41 +1939,6 @@ msgstr "Pequeno" msgid "Sound Selected MIDI Notes" msgstr "" -#: editor_actions.cc:397 -#, fuzzy -msgid "Zoom Focus Left" -msgstr "Foco de Zoom" - -#: editor_actions.cc:398 -#, fuzzy -msgid "Zoom Focus Right" -msgstr "Foco de Zoom" - -#: editor_actions.cc:399 -#, fuzzy -msgid "Zoom Focus Center" -msgstr "Foco de Zoom" - -#: editor_actions.cc:400 -#, fuzzy -msgid "Zoom Focus Playhead" -msgstr "Foco de Zoom" - -#: editor_actions.cc:401 -#, fuzzy -msgid "Zoom Focus Mouse" -msgstr "Foco de Zoom" - -#: editor_actions.cc:402 -#, fuzzy -msgid "Zoom Focus Edit Point" -msgstr "Foco de Zoom" - -#: editor_actions.cc:404 -#, fuzzy -msgid "Next Zoom Focus" -msgstr "Foco de Zoom" - #: editor_actions.cc:410 msgid "Smart Object Mode" msgstr "" @@ -3960,11 +1951,6 @@ msgstr "" msgid "Object Tool" msgstr "" -#: editor_actions.cc:423 -#, fuzzy -msgid "Range Tool" -msgstr "Intervalo" - #: editor_actions.cc:429 msgid "Note Drawing Tool" msgstr "" @@ -3973,16 +1959,6 @@ msgstr "" msgid "Gain Tool" msgstr "" -#: editor_actions.cc:441 -#, fuzzy -msgid "Zoom Tool" -msgstr "Menos Zoom" - -#: editor_actions.cc:447 -#, fuzzy -msgid "Audition Tool" -msgstr "Audição" - #: editor_actions.cc:453 msgid "Time FX Tool" msgstr "" @@ -3991,16 +1967,6 @@ msgstr "" msgid "Step Mouse Mode" msgstr "" -#: editor_actions.cc:461 -#, fuzzy -msgid "Edit MIDI" -msgstr "Modo de edição" - -#: editor_actions.cc:472 -#, fuzzy -msgid "Change Edit Point" -msgstr "Cancelar importação" - #: editor_actions.cc:473 msgid "Change Edit Point Including Marker" msgstr "" @@ -4018,34 +1984,14 @@ msgstr "Deslizar" msgid "Lock" msgstr "Trancar" -#: editor_actions.cc:479 -#, fuzzy -msgid "Toggle Edit Mode" -msgstr "Modo de edição" - -#: editor_actions.cc:481 -#, fuzzy -msgid "Snap to" -msgstr "Ajustar a" - #: editor_actions.cc:482 msgid "Snap Mode" msgstr "Modo de Ajuste" -#: editor_actions.cc:489 -#, fuzzy -msgid "Next Snap Mode" -msgstr "Modo de Ajuste" - #: editor_actions.cc:490 msgid "Next Snap Choice" msgstr "" -#: editor_actions.cc:491 -#, fuzzy -msgid "Next Musical Snap Choice" -msgstr "Modo de Ajuste" - #: editor_actions.cc:492 msgid "Previous Snap Choice" msgstr "" @@ -4054,213 +2000,18 @@ msgstr "" msgid "Previous Musical Snap Choice" msgstr "" -#: editor_actions.cc:498 -#, fuzzy -msgid "Snap to CD Frame" -msgstr "Modo de Ajuste" - -#: editor_actions.cc:499 -#, fuzzy -msgid "Snap to Timecode Frame" -msgstr "Modo de Ajuste" - -#: editor_actions.cc:500 -#, fuzzy -msgid "Snap to Timecode Seconds" -msgstr "Segundos" - -#: editor_actions.cc:501 -#, fuzzy -msgid "Snap to Timecode Minutes" -msgstr "SMPTE Minutos" - -#: editor_actions.cc:502 -#, fuzzy -msgid "Snap to Seconds" -msgstr "Segundos" - -#: editor_actions.cc:503 -#, fuzzy -msgid "Snap to Minutes" -msgstr "SMPTE Minutos" - -#: editor_actions.cc:505 -#, fuzzy -msgid "Snap to One Twenty Eighths" -msgstr "Modo de Ajuste" - -#: editor_actions.cc:506 -#, fuzzy -msgid "Snap to Sixty Fourths" -msgstr "Do início ao cursor de edição" - -#: editor_actions.cc:507 -#, fuzzy -msgid "Snap to Thirty Seconds" -msgstr "trigésima segunda (32)" - -#: editor_actions.cc:508 -#, fuzzy -msgid "Snap to Twenty Eighths" -msgstr "Modo de Ajuste" - -#: editor_actions.cc:509 -#, fuzzy -msgid "Snap to Twenty Fourths" -msgstr "Do início ao cursor de edição" - -#: editor_actions.cc:510 -#, fuzzy -msgid "Snap to Twentieths" -msgstr "Modo de Ajuste" - -#: editor_actions.cc:511 -#, fuzzy -msgid "Snap to Sixteenths" -msgstr "Modo de Ajuste" - -#: editor_actions.cc:512 -#, fuzzy -msgid "Snap to Fourteenths" -msgstr "Modo de Ajuste" - -#: editor_actions.cc:513 -#, fuzzy -msgid "Snap to Twelfths" -msgstr "Modo de Ajuste" - -#: editor_actions.cc:514 -#, fuzzy -msgid "Snap to Tenths" -msgstr "Modo de Ajuste" - -#: editor_actions.cc:515 -#, fuzzy -msgid "Snap to Eighths" -msgstr "Modo de Ajuste" - -#: editor_actions.cc:516 -#, fuzzy -msgid "Snap to Sevenths" -msgstr "Modo de Ajuste" - -#: editor_actions.cc:517 -#, fuzzy -msgid "Snap to Sixths" -msgstr "Modo de Ajuste" - -#: editor_actions.cc:518 -#, fuzzy -msgid "Snap to Fifths" -msgstr "Modo de Ajuste" - -#: editor_actions.cc:519 -#, fuzzy -msgid "Snap to Quarters" -msgstr "Ajustar a" - -#: editor_actions.cc:520 -#, fuzzy -msgid "Snap to Thirds" -msgstr "Modo de Ajuste" - -#: editor_actions.cc:521 -#, fuzzy -msgid "Snap to Halves" -msgstr "Modo de Ajuste" - -#: editor_actions.cc:523 -#, fuzzy -msgid "Snap to Beat" -msgstr "Modo de Ajuste" - -#: editor_actions.cc:524 -#, fuzzy -msgid "Snap to Bar" -msgstr "Ajustar a" - -#: editor_actions.cc:525 -#, fuzzy -msgid "Snap to Mark" -msgstr "adicionar marca de intervalo" - -#: editor_actions.cc:526 -#, fuzzy -msgid "Snap to Region Start" -msgstr "Começo de regiões" - -#: editor_actions.cc:527 -#, fuzzy -msgid "Snap to Region End" -msgstr "Fim de regiões" - -#: editor_actions.cc:528 -#, fuzzy -msgid "Snap to Region Sync" -msgstr "Sincronizações de região" - -#: editor_actions.cc:529 -#, fuzzy -msgid "Snap to Region Boundary" -msgstr "Divisas de região" - -#: editor_actions.cc:531 -#, fuzzy -msgid "Show Marker Lines" -msgstr "Mostrar linhas de medida" - -#: editor_actions.cc:541 -#, fuzzy -msgid "Loop/Punch" -msgstr "Intervalos Loop/Insersão" - -#: editor_actions.cc:545 -#, fuzzy -msgid "Min:Sec" -msgstr "Min:Segs" - -#: editor_actions.cc:547 editor_actions.cc:550 -#, fuzzy -msgid "Video Monitor" -msgstr "Usar Monitoração de Hardware" - #: editor_actions.cc:549 rc_option_editor.cc:1842 msgid "Video" msgstr "" -#: editor_actions.cc:552 -#, fuzzy -msgid "Always on Top" -msgstr "Trazer região para frente, primeira camada" - -#: editor_actions.cc:554 -#, fuzzy -msgid "Frame number" -msgstr "remover marca" - -#: editor_actions.cc:555 -#, fuzzy -msgid "Timecode Background" -msgstr "SMPTE segundo" - #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" -#: editor_actions.cc:557 -#, fuzzy -msgid "Letterbox" -msgstr "bom" - #: editor_actions.cc:558 msgid "Original Size" msgstr "" -#: editor_actions.cc:608 -#, fuzzy -msgid "Sort" -msgstr "porta" - #: editor_actions.cc:610 region_editor.cc:51 msgid "Audition" msgstr "Audição" @@ -4269,11 +2020,6 @@ msgstr "Audição" msgid "Show All" msgstr "Mostrar Tudo" -#: editor_actions.cc:620 -#, fuzzy -msgid "Show Automatic Regions" -msgstr "mostra toda a automação" - #: editor_actions.cc:622 msgid "Ascending" msgstr "Ascendente" @@ -4322,46 +2068,16 @@ msgstr "Por data de criação do arquivo original" msgid "By Source Filesystem" msgstr "Por sistema de arquivos original" -#: editor_actions.cc:648 -#, fuzzy -msgid "Remove Unused" -msgstr "Remover" - #: editor_actions.cc:652 editor_audio_import.cc:279 #: session_import_dialog.cc:74 session_import_dialog.cc:94 #: session_metadata_dialog.cc:297 editor_videotimeline.cc:108 msgid "Import" msgstr "Importar" -#: editor_actions.cc:655 -#, fuzzy -msgid "Import to Region List..." -msgstr "Loop região selecionada" - -#: editor_actions.cc:658 session_import_dialog.cc:43 -#, fuzzy -msgid "Import From Session" -msgstr "Exportar região" - -#: editor_actions.cc:661 -#, fuzzy -msgid "Show Summary" -msgstr "Mostrar tudo" - #: editor_actions.cc:663 msgid "Show Group Tabs" msgstr "" -#: editor_actions.cc:665 -#, fuzzy -msgid "Show Measures" -msgstr "Mostrar linhas de medida" - -#: editor_actions.cc:669 -#, fuzzy -msgid "Show Logo" -msgstr "Por Posição da Região" - #: editor_actions.cc:673 msgid "Toggle MIDI Input Active for Editor-Selected Tracks/Busses" msgstr "" @@ -4384,26 +2100,6 @@ msgstr "" msgid "Raise" msgstr "" -#: editor_actions.cc:1725 -#, fuzzy -msgid "Raise to Top" -msgstr "Trazer região para frente, primeira camada" - -#: editor_actions.cc:1728 gtk-custom-ruler.c:132 -#, fuzzy -msgid "Lower" -msgstr "Camada" - -#: editor_actions.cc:1731 -#, fuzzy -msgid "Lower to Bottom" -msgstr "Enviar região para a trás, última camada" - -#: editor_actions.cc:1734 -#, fuzzy -msgid "Move to Original Position" -msgstr "Posição original" - #: editor_actions.cc:1739 msgid "Lock to Video" msgstr "" @@ -4412,29 +2108,14 @@ msgstr "" msgid "Glue to Bars and Beats" msgstr "" -#: editor_actions.cc:1749 -#, fuzzy -msgid "Remove Sync" -msgstr "Remover ponto de sincronia" - #: editor_actions.cc:1752 mixer_strip.cc:1904 route_time_axis.cc:209 msgid "Mute" msgstr "Mutar" -#: editor_actions.cc:1755 -#, fuzzy -msgid "Normalize..." -msgstr "Normalizar" - #: editor_actions.cc:1758 msgid "Reverse" msgstr "Inverter horizontalmente" -#: editor_actions.cc:1761 -#, fuzzy -msgid "Make Mono Regions" -msgstr "Criar regiões mono" - #: editor_actions.cc:1764 msgid "Boost Gain" msgstr "" @@ -4447,16 +2128,6 @@ msgstr "" msgid "Pitch Shift..." msgstr "" -#: editor_actions.cc:1773 -#, fuzzy -msgid "Transpose..." -msgstr "Tradutores" - -#: editor_actions.cc:1776 -#, fuzzy -msgid "Opaque" -msgstr "opaco" - #: editor_actions.cc:1780 editor_regions.cc:116 msgid "Fade In" msgstr "Fade In" @@ -4465,11 +2136,6 @@ msgstr "Fade In" msgid "Fade Out" msgstr "Fade Out" -#: editor_actions.cc:1800 -#, fuzzy -msgid "Multi-Duplicate..." -msgstr "Duplicar" - #: editor_actions.cc:1805 msgid "Fill Track" msgstr "Preencher Trilha" @@ -4478,70 +2144,10 @@ msgstr "Preencher Trilha" msgid "Set Loop Range" msgstr "Marcar um intervalo de loop" -#: editor_actions.cc:1816 -#, fuzzy -msgid "Set Punch" -msgstr "Fazer intervalo de inserção" - -#: editor_actions.cc:1820 -#, fuzzy -msgid "Add Single Range Marker" -msgstr "Marcas de Intervalos" - -#: editor_actions.cc:1825 -#, fuzzy -msgid "Add Range Marker Per Region" -msgstr "Marcas de Intervalos" - -#: editor_actions.cc:1829 -#, fuzzy -msgid "Snap Position To Grid" -msgstr "Ajustar a" - -#: editor_actions.cc:1832 -#, fuzzy -msgid "Close Gaps" -msgstr "Fechar" - #: editor_actions.cc:1835 msgid "Rhythm Ferret..." msgstr "" -#: editor_actions.cc:1838 -#, fuzzy -msgid "Export..." -msgstr "Exportar" - -#: editor_actions.cc:1844 -#, fuzzy -msgid "Separate Under" -msgstr "Separar intervalo" - -#: editor_actions.cc:1848 -#, fuzzy -msgid "Set Fade In Length" -msgstr "fade in na edição" - -#: editor_actions.cc:1849 -#, fuzzy -msgid "Set Fade Out Length" -msgstr "fade out na edição" - -#: editor_actions.cc:1850 -#, fuzzy -msgid "Set Tempo from Region = Bar" -msgstr "Nova região a partir da seleção" - -#: editor_actions.cc:1855 -#, fuzzy -msgid "Split at Percussion Onsets" -msgstr "Do início ao cursor de edição" - -#: editor_actions.cc:1860 -#, fuzzy -msgid "List Editor..." -msgstr "Preferências" - #: editor_actions.cc:1863 msgid "Properties..." msgstr "" @@ -4566,26 +2172,6 @@ msgstr "" msgid "Spectral Analysis..." msgstr "" -#: editor_actions.cc:1874 -#, fuzzy -msgid "Reset Envelope" -msgstr "reiniciar todos" - -#: editor_actions.cc:1876 -#, fuzzy -msgid "Reset Gain" -msgstr "reiniciar todos" - -#: editor_actions.cc:1881 -#, fuzzy -msgid "Envelope Active" -msgstr "ativo" - -#: editor_actions.cc:1885 -#, fuzzy -msgid "Quantize..." -msgstr "Sistema de arquivos" - #: editor_actions.cc:1886 editor_actions.cc:1887 msgid "Insert Patch Change..." msgstr "" @@ -4598,31 +2184,6 @@ msgstr "" msgid "Strip Silence..." msgstr "" -#: editor_actions.cc:1890 -#, fuzzy -msgid "Set Range Selection" -msgstr "Reproduzir seleção" - -#: editor_actions.cc:1892 -#, fuzzy -msgid "Nudge Later" -msgstr "Retocar" - -#: editor_actions.cc:1893 -#, fuzzy -msgid "Nudge Earlier" -msgstr "Retocar" - -#: editor_actions.cc:1898 -#, fuzzy -msgid "Nudge Later by Capture Offset" -msgstr "Retocar" - -#: editor_actions.cc:1905 -#, fuzzy -msgid "Nudge Earlier by Capture Offset" -msgstr "Retocar" - #: editor_actions.cc:1909 msgid "Trim to Loop" msgstr "" @@ -4631,26 +2192,6 @@ msgstr "" msgid "Trim to Punch" msgstr "" -#: editor_actions.cc:1912 -#, fuzzy -msgid "Trim to Previous" -msgstr "Do início ao cursor de edição" - -#: editor_actions.cc:1913 -#, fuzzy -msgid "Trim to Next" -msgstr "Do início ao cursor de edição" - -#: editor_actions.cc:1920 -#, fuzzy -msgid "Insert Region From Region List" -msgstr "Nova região a partir da seleção" - -#: editor_actions.cc:1926 -#, fuzzy -msgid "Set Sync Position" -msgstr "Por Posição da Região" - #: editor_actions.cc:1927 msgid "Place Transient" msgstr "" @@ -4667,51 +2208,10 @@ msgstr "" msgid "Trim End at Edit Point" msgstr "" -#: editor_actions.cc:1935 -#, fuzzy -msgid "Align Start" -msgstr "Começo de regiões" - -#: editor_actions.cc:1942 -#, fuzzy -msgid "Align Start Relative" -msgstr "Alinhamento Relativo" - -#: editor_actions.cc:1946 -#, fuzzy -msgid "Align End" -msgstr "Alinhamento" - -#: editor_actions.cc:1951 -#, fuzzy -msgid "Align End Relative" -msgstr "Alinhamento Relativo" - -#: editor_actions.cc:1958 -#, fuzzy -msgid "Align Sync" -msgstr "normalizar região" - -#: editor_actions.cc:1965 -#, fuzzy -msgid "Align Sync Relative" -msgstr "Alinhamento Relativo" - #: editor_actions.cc:1969 editor_actions.cc:1972 msgid "Choose Top..." msgstr "" -#: editor_audio_import.cc:77 editor_audio_import.cc:99 -#, fuzzy -msgid "You can't import or embed an audiofile until you have a session loaded." -msgstr "" -"Você não pode importar um arquivo de áudio se tiver uma sessão carregada" - -#: editor_audio_import.cc:83 editor_audio_import.cc:127 -#, fuzzy -msgid "Add Existing Media" -msgstr "Adicionar na lista de regiões" - #: editor_audio_import.cc:177 msgid "" "The session already contains a source file named %1. Do you want to import " @@ -4728,54 +2228,10 @@ msgstr "" msgid "Cancel Import" msgstr "Cancelar importação" -#: editor_audio_import.cc:543 -#, fuzzy -msgid "Editor: cannot open file \"%1\", (%2)" -msgstr "Editor: não foi possível abrir o arquivo \"%1\" (%2)" - -#: editor_audio_import.cc:551 -#, fuzzy -msgid "Cancel entire import" -msgstr "Cancelar importação" - -#: editor_audio_import.cc:552 -#, fuzzy -msgid "Don't embed it" -msgstr "Não %1" - #: editor_audio_import.cc:553 msgid "Embed all without questions" msgstr "" -#: editor_audio_import.cc:556 editor_audio_import.cc:585 -#: export_format_dialog.cc:58 -#, fuzzy -msgid "Sample rate" -msgstr "Separar Região" - -#: editor_audio_import.cc:557 editor_audio_import.cc:586 -#, fuzzy -msgid "" -"%1\n" -"This audiofile's sample rate doesn't match the session sample rate!" -msgstr "" -"A freqüência de áudio deste arquivo não corresponde à freqüência da sessão!" - -#: editor_audio_import.cc:582 -#, fuzzy -msgid "Embed it anyway" -msgstr "Embutir mesmo assim" - -#: editor_drag.cc:1000 -#, fuzzy -msgid "fixed time region drag" -msgstr "região aparado" - -#: editor_drag.cc:1700 -#, fuzzy -msgid "Video Start:" -msgstr "Começo de regiões" - #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -4784,41 +2240,6 @@ msgstr "" msgid "Move Video" msgstr "" -#: editor_drag.cc:2200 -#, fuzzy -msgid "copy meter mark" -msgstr "remover marca" - -#: editor_drag.cc:2208 -#, fuzzy -msgid "move meter mark" -msgstr "remover marca" - -#: editor_drag.cc:2320 -#, fuzzy -msgid "copy tempo mark" -msgstr "remover marca" - -#: editor_drag.cc:2328 -#, fuzzy -msgid "move tempo mark" -msgstr "remover marca" - -#: editor_drag.cc:2545 -#, fuzzy -msgid "change fade in length" -msgstr "fade in na edição" - -#: editor_drag.cc:2663 -#, fuzzy -msgid "change fade out length" -msgstr "fade out na edição" - -#: editor_drag.cc:3018 -#, fuzzy -msgid "move marker" -msgstr "remover marca" - #: editor_drag.cc:3581 msgid "An error occurred while executing time stretch operation" msgstr "" @@ -4827,125 +2248,34 @@ msgstr "" msgid "programming_error: %1" msgstr "" -#: editor_drag.cc:4081 editor_markers.cc:680 -#, fuzzy -msgid "new range marker" -msgstr "adicionar marca de intervalo" - -#: editor_drag.cc:4762 -#, fuzzy -msgid "rubberband selection" -msgstr "Reproduzir seleção" - -#: editor_route_groups.cc:66 -#, fuzzy -msgid "No Selection = All Tracks?" -msgstr "Selecionar tudo na trilha" - -#: editor_route_groups.cc:95 -#, fuzzy -msgid "Col" -msgstr "Cor" - -#: editor_route_groups.cc:95 -#, fuzzy -msgid "Group Tab Color" -msgstr "Cor" - -#: editor_route_groups.cc:96 -#, fuzzy -msgid "Name of Group" -msgstr "Sem grupo" - #: editor_route_groups.cc:97 editor_routes.cc:203 msgid "V" msgstr "" -#: editor_route_groups.cc:97 -#, fuzzy -msgid "Group is visible?" -msgstr "Fade Cruzado em uso" - -#: editor_route_groups.cc:98 -#, fuzzy -msgid "On" -msgstr "OU" - #: editor_route_groups.cc:98 msgid "Group is enabled?" msgstr "" -#: editor_route_groups.cc:99 -#, fuzzy -msgid "group|G" -msgstr "Sem grupo" - #: editor_route_groups.cc:99 msgid "Sharing Gain?" msgstr "" -#: editor_route_groups.cc:100 -#, fuzzy -msgid "relative|Rel" -msgstr "Alinhamento Relativo" - #: editor_route_groups.cc:100 msgid "Relative Gain Changes?" msgstr "" -#: editor_route_groups.cc:101 -#, fuzzy -msgid "mute|M" -msgstr "mudo" - #: editor_route_groups.cc:101 msgid "Sharing Mute?" msgstr "" -#: editor_route_groups.cc:102 -#, fuzzy -msgid "solo|S" -msgstr "solo" - #: editor_route_groups.cc:102 msgid "Sharing Solo?" msgstr "" -#: editor_route_groups.cc:103 midi_time_axis.cc:1504 midi_time_axis.cc:1507 -#: midi_time_axis.cc:1510 mixer_strip.cc:1903 -#, fuzzy -msgid "Rec" -msgstr "Rescanear" - #: editor_route_groups.cc:103 msgid "Sharing Record-enable Status?" msgstr "" -#: editor_route_groups.cc:104 -#, fuzzy -msgid "monitoring|Mon" -msgstr "Usar Monitoração de Hardware" - -#: editor_route_groups.cc:104 -#, fuzzy -msgid "Sharing Monitoring Choice?" -msgstr "Usar Monitoração de Hardware" - -#: editor_route_groups.cc:105 -#, fuzzy -msgid "selection|Sel" -msgstr "Selecionar" - -#: editor_route_groups.cc:105 -#, fuzzy -msgid "Sharing Selected/Editing Status?" -msgstr "Inserir seleção" - -#: editor_route_groups.cc:106 -#, fuzzy -msgid "active|A" -msgstr "ativo" - #: editor_route_groups.cc:106 msgid "Sharing Active Status?" msgstr "" @@ -4954,11 +2284,6 @@ msgstr "" msgid "Activate this button to operate on all tracks when none are selected." msgstr "" -#: editor_route_groups.cc:442 mixer_ui.cc:1449 -#, fuzzy -msgid "unnamed" -msgstr "Renomear" - #: editor_export_audio.cc:90 editor_markers.cc:695 editor_markers.cc:782 #: editor_markers.cc:967 editor_markers.cc:985 editor_markers.cc:1003 #: editor_markers.cc:1022 editor_markers.cc:1041 editor_markers.cc:1071 @@ -4973,149 +2298,24 @@ msgstr "" msgid "File Exists!" msgstr "" -#: editor_export_audio.cc:151 -#, fuzzy -msgid "Overwrite Existing File" -msgstr "Inserir seleção" - -#: editor_group_tabs.cc:162 -#, fuzzy -msgid "Fit to Window" -msgstr "Janelas" - -#: editor_markers.cc:129 -#, fuzzy -msgid "start" -msgstr "Inicio:" - -#: editor_markers.cc:130 -#, fuzzy -msgid "end" -msgstr "Segundos" - #: editor_markers.cc:646 editor_ops.cc:1744 editor_ops.cc:1764 #: editor_ops.cc:1788 editor_ops.cc:1815 location_ui.cc:1017 msgid "add marker" msgstr "adicionar marca" -#: editor_markers.cc:677 -#, fuzzy -msgid "range" -msgstr "intervalo" - #: editor_markers.cc:713 location_ui.cc:852 msgid "remove marker" msgstr "remover marca" -#: editor_markers.cc:849 -#, fuzzy -msgid "Locate to Here" -msgstr "Ir para" - -#: editor_markers.cc:850 -#, fuzzy -msgid "Play from Here" -msgstr "Reproduzir do início" - -#: editor_markers.cc:851 -#, fuzzy -msgid "Move Mark to Playhead" -msgstr "Marcar aqui" - -#: editor_markers.cc:855 -#, fuzzy -msgid "Create Range to Next Marker" -msgstr "Separar intervalo" - -#: editor_markers.cc:896 -#, fuzzy -msgid "Locate to Marker" -msgstr "Ir para" - -#: editor_markers.cc:897 -#, fuzzy -msgid "Play from Marker" -msgstr "Reproduzir do início" - -#: editor_markers.cc:900 -#, fuzzy -msgid "Set Marker from Playhead" -msgstr "Marcar aqui" - -#: editor_markers.cc:902 -#, fuzzy -msgid "Set Range from Selection" -msgstr "Reproduzir seleção" - -#: editor_markers.cc:905 -#, fuzzy -msgid "Zoom to Range" -msgstr "Zoom na sessão" - -#: editor_markers.cc:912 -#, fuzzy -msgid "Hide Range" -msgstr "Adicionar Novo Intervalo" - -#: editor_markers.cc:913 -#, fuzzy -msgid "Rename Range..." -msgstr "Renomear" - -#: editor_markers.cc:917 -#, fuzzy -msgid "Remove Range" -msgstr "Remover Campo" - -#: editor_markers.cc:924 -#, fuzzy -msgid "Separate Regions in Range" -msgstr "Nova região a partir da intervalo" - -#: editor_markers.cc:927 -#, fuzzy -msgid "Select Range" -msgstr "Separar intervalo" - #: editor_markers.cc:956 msgid "Set Punch Range" msgstr "Fazer intervalo de inserção" -#: editor_markers.cc:1351 editor_ops.cc:1699 -#, fuzzy -msgid "New Name:" -msgstr "novo nome: " - -#: editor_markers.cc:1354 -#, fuzzy -msgid "Rename Mark" -msgstr "Renomear" - -#: editor_markers.cc:1356 -#, fuzzy -msgid "Rename Range" -msgstr "Renomear" - #: editor_markers.cc:1363 editor_mouse.cc:2510 processor_box.cc:1781 #: processor_box.cc:2235 route_time_axis.cc:982 route_ui.cc:1540 msgid "Rename" msgstr "Renomear" -#: editor_markers.cc:1376 -#, fuzzy -msgid "rename marker" -msgstr "remover marca" - -#: editor_markers.cc:1399 -#, fuzzy -msgid "set loop range" -msgstr "selecionar intervalo de zoom" - -#: editor_markers.cc:1405 -#, fuzzy -msgid "set punch range" -msgstr "Selecionar intervalo atual" - #: editor_mixer.cc:90 msgid "This screen is not tall enough to display the editor mixer" msgstr "" @@ -5130,11 +2330,6 @@ msgid "" "pointer!" msgstr "" -#: editor_mouse.cc:2416 -#, fuzzy -msgid "start point trim" -msgstr "Do início ao cursor de edição" - #: editor_mouse.cc:2441 msgid "End point trim" msgstr "" @@ -5143,54 +2338,14 @@ msgstr "" msgid "Name for region:" msgstr "Nome para a região:" -#: editor_ops.cc:140 -#, fuzzy -msgid "split" -msgstr "Separar" - -#: editor_ops.cc:256 -#, fuzzy -msgid "alter selection" -msgstr "Separar Seleção" - -#: editor_ops.cc:298 -#, fuzzy -msgid "nudge regions forward" -msgstr "Avançar o mínimo região/seleção" - -#: editor_ops.cc:321 editor_ops.cc:406 -#, fuzzy -msgid "nudge location forward" -msgstr "Avançar o mínimo região/seleção" - -#: editor_ops.cc:379 -#, fuzzy -msgid "nudge regions backward" -msgstr "Voltar o mínimo região/seleção" - #: editor_ops.cc:468 msgid "nudge forward" msgstr "" -#: editor_ops.cc:492 -#, fuzzy -msgid "nudge backward" -msgstr "Retocar" - #: editor_ops.cc:557 msgid "build_region_boundary_cache called with snap_type = %1" msgstr "" -#: editor_ops.cc:1701 -#, fuzzy -msgid "New Location Marker" -msgstr "Nova marca de localização" - -#: editor_ops.cc:1788 -#, fuzzy -msgid "add markers" -msgstr "adicionar marca" - #: editor_ops.cc:1894 msgid "clear markers" msgstr "limpar marcas" @@ -5203,136 +2358,6 @@ msgstr "limpar intervalos" msgid "clear locations" msgstr "limpar localizações" -#: editor_ops.cc:2000 -#, fuzzy -msgid "insert dragged region" -msgstr "Inserir Região" - -#: editor_ops.cc:2078 -#, fuzzy -msgid "insert region" -msgstr "Inserir Região" - -#: editor_ops.cc:2261 -#, fuzzy -msgid "raise regions" -msgstr "Normalizar" - -#: editor_ops.cc:2263 -#, fuzzy -msgid "raise region" -msgstr "inverter horizontalmente as regiões" - -#: editor_ops.cc:2269 -#, fuzzy -msgid "raise regions to top" -msgstr "Cortar região pela intervalo" - -#: editor_ops.cc:2271 -#, fuzzy -msgid "raise region to top" -msgstr "Trazer região para frente, primeira camada" - -#: editor_ops.cc:2277 -#, fuzzy -msgid "lower regions" -msgstr "inverter horizontalmente as regiões" - -#: editor_ops.cc:2279 editor_ops.cc:2287 -#, fuzzy -msgid "lower region" -msgstr "Inserir Região" - -#: editor_ops.cc:2285 -#, fuzzy -msgid "lower regions to bottom" -msgstr "Enviar região para a trás, última camada" - -#: editor_ops.cc:2370 -#, fuzzy -msgid "Rename Region" -msgstr "inverter horizontalmente as regiões" - -#: editor_ops.cc:2372 processor_box.cc:1779 route_ui.cc:1538 -#, fuzzy -msgid "New name:" -msgstr "novo nome: " - -#: editor_ops.cc:2682 -#, fuzzy -msgid "separate" -msgstr "Separar Região" - -#: editor_ops.cc:2795 -#, fuzzy -msgid "separate region under" -msgstr "Nova região a partir da intervalo" - -#: editor_ops.cc:2916 -#, fuzzy -msgid "trim to selection" -msgstr "Desde a localização" - -#: editor_ops.cc:3052 -#, fuzzy -msgid "set sync point" -msgstr "Definir ponto de sincronia" - -#: editor_ops.cc:3076 -#, fuzzy -msgid "remove region sync" -msgstr "inverter horizontalmente as regiões" - -#: editor_ops.cc:3098 -#, fuzzy -msgid "move regions to original position" -msgstr "Regiões/posição" - -#: editor_ops.cc:3100 -#, fuzzy -msgid "move region to original position" -msgstr "Regiões/posição" - -#: editor_ops.cc:3121 -#, fuzzy -msgid "align selection" -msgstr "Saltar Seleção" - -#: editor_ops.cc:3195 -#, fuzzy -msgid "align selection (relative)" -msgstr "Alinhamento Relativo" - -#: editor_ops.cc:3229 -#, fuzzy -msgid "align region" -msgstr "normalizar região" - -#: editor_ops.cc:3280 -#, fuzzy -msgid "trim front" -msgstr "região aparado" - -#: editor_ops.cc:3280 -#, fuzzy -msgid "trim back" -msgstr "cortar" - -#: editor_ops.cc:3310 -#, fuzzy -msgid "trim to loop" -msgstr "Desde a localização" - -#: editor_ops.cc:3320 -#, fuzzy -msgid "trim to punch" -msgstr "Do início ao cursor de edição" - -#: editor_ops.cc:3382 -#, fuzzy -msgid "trim to region" -msgstr "região aparado" - #: editor_ops.cc:3492 msgid "" "This track/bus cannot be frozen because the signal adds or loses channels " @@ -5341,11 +2366,6 @@ msgid "" "input or vice versa." msgstr "" -#: editor_ops.cc:3495 -#, fuzzy -msgid "Cannot freeze" -msgstr "Cancelar" - #: editor_ops.cc:3501 msgid "" "%1\n" @@ -5355,26 +2375,6 @@ msgid "" "Freezing will only process the signal as far as the first send/insert/return." msgstr "" -#: editor_ops.cc:3505 -#, fuzzy -msgid "Freeze anyway" -msgstr "Congelar" - -#: editor_ops.cc:3506 -#, fuzzy -msgid "Don't freeze" -msgstr "Cancelar" - -#: editor_ops.cc:3507 -#, fuzzy -msgid "Freeze Limits" -msgstr "Congelar" - -#: editor_ops.cc:3522 -#, fuzzy -msgid "Cancel Freeze" -msgstr "Cancelar" - #: editor_ops.cc:3553 msgid "" "You can't perform this operation because the processing of the signal will " @@ -5388,16 +2388,6 @@ msgstr "" msgid "Cannot bounce" msgstr "" -#: editor_ops.cc:3568 -#, fuzzy -msgid "bounce range" -msgstr "intervalo" - -#: editor_ops.cc:3678 -#, fuzzy -msgid "delete" -msgstr "Apagar" - #: editor_ops.cc:3681 msgid "cut" msgstr "cortar" @@ -5418,21 +2408,6 @@ msgstr "objetos" msgid " range" msgstr "intervalo" -#: editor_ops.cc:3957 editor_ops.cc:3984 -#, fuzzy -msgid "remove region" -msgstr "inverter horizontalmente as regiões" - -#: editor_ops.cc:4391 -#, fuzzy -msgid "duplicate selection" -msgstr "Saltar Seleção" - -#: editor_ops.cc:4469 -#, fuzzy -msgid "nudge track" -msgstr "Ocultar esta trilha" - #: editor_ops.cc:4506 msgid "" "Do you really want to destroy the last capture?\n" @@ -5450,16 +2425,6 @@ msgstr "Não, não faça nada." msgid "Yes, destroy it." msgstr "Sim, remova definitivamente isto." -#: editor_ops.cc:4512 -#, fuzzy -msgid "Destroy last capture" -msgstr "Remover última captura" - -#: editor_ops.cc:4573 -#, fuzzy -msgid "normalize" -msgstr "Normalizar" - #: editor_ops.cc:4668 msgid "reverse regions" msgstr "inverter horizontalmente as regiões" @@ -5468,31 +2433,6 @@ msgstr "inverter horizontalmente as regiões" msgid "strip silence" msgstr "" -#: editor_ops.cc:4763 -#, fuzzy -msgid "Fork Region(s)" -msgstr "normalizar região" - -#: editor_ops.cc:4963 -#, fuzzy -msgid "reset region gain" -msgstr "inverter horizontalmente as regiões" - -#: editor_ops.cc:5016 -#, fuzzy -msgid "region gain envelope active" -msgstr "ativo" - -#: editor_ops.cc:5043 -#, fuzzy -msgid "toggle region lock" -msgstr "mutar esta região" - -#: editor_ops.cc:5067 -#, fuzzy -msgid "Toggle Video Lock" -msgstr "mutar esta região" - #: editor_ops.cc:5091 msgid "region lock style" msgstr "" @@ -5501,71 +2441,6 @@ msgstr "" msgid "change region opacity" msgstr "" -#: editor_ops.cc:5231 -#, fuzzy -msgid "set fade in length" -msgstr "fade in na edição" - -#: editor_ops.cc:5238 -#, fuzzy -msgid "set fade out length" -msgstr "fade out na edição" - -#: editor_ops.cc:5283 -#, fuzzy -msgid "set fade in shape" -msgstr "Fade Cruzado em uso" - -#: editor_ops.cc:5314 -#, fuzzy -msgid "set fade out shape" -msgstr "fade out na edição" - -#: editor_ops.cc:5344 -#, fuzzy -msgid "set fade in active" -msgstr "fade in na edição" - -#: editor_ops.cc:5373 -#, fuzzy -msgid "set fade out active" -msgstr "fade out na edição" - -#: editor_ops.cc:5638 -#, fuzzy -msgid "set loop range from selection" -msgstr "Reproduzir seleção" - -#: editor_ops.cc:5660 -#, fuzzy -msgid "set loop range from edit range" -msgstr "Nova região a partir da seleção" - -#: editor_ops.cc:5689 -#, fuzzy -msgid "set loop range from region" -msgstr "Nova região a partir da seleção" - -#: editor_ops.cc:5707 -#, fuzzy -msgid "set punch range from selection" -msgstr "Reproduzir seleção" - -#: editor_ops.cc:5724 -#, fuzzy -msgid "set punch range from edit range" -msgstr "Selecionar intervalo atual" - -#: editor_ops.cc:5748 -#, fuzzy -msgid "set punch range from region" -msgstr "Selecionar intervalo atual" - -#: editor_ops.cc:5857 -#, fuzzy -msgid "Add new marker" -msgstr "adicionar marca de intervalo" - #: editor_ops.cc:5858 msgid "Set global tempo" msgstr "" @@ -5578,16 +2453,6 @@ msgstr "" msgid "Do you want to set the global tempo or add a new tempo marker?" msgstr "" -#: editor_ops.cc:5888 -#, fuzzy -msgid "set tempo from region" -msgstr "Nova região a partir da seleção" - -#: editor_ops.cc:5918 -#, fuzzy -msgid "split regions" -msgstr "Loop região selecionada" - #: editor_ops.cc:5960 msgid "" "You are about to split\n" @@ -5618,21 +2483,6 @@ msgstr "" msgid "place transient" msgstr "" -#: editor_ops.cc:6160 -#, fuzzy -msgid "snap regions to grid" -msgstr "Cortar região pela intervalo" - -#: editor_ops.cc:6199 -#, fuzzy -msgid "Close Region Gaps" -msgstr "normalizar região" - -#: editor_ops.cc:6204 -#, fuzzy -msgid "Crossfade length" -msgstr "Fade cruzado" - #: editor_ops.cc:6213 editor_ops.cc:6224 rhythm_ferret.cc:120 #: session_option_editor.cc:153 msgid "ms" @@ -5642,16 +2492,6 @@ msgstr "" msgid "Pull-back length" msgstr "" -#: editor_ops.cc:6228 -#, fuzzy -msgid "Ok" -msgstr "OU" - -#: editor_ops.cc:6243 -#, fuzzy -msgid "close region gaps" -msgstr "inverter horizontalmente as regiões" - #: editor_ops.cc:6461 route_ui.cc:1456 msgid "That would be bad news ...." msgstr "" @@ -5666,76 +2506,14 @@ msgid "" "\"allow-special-bus-removal\" option to be \"yes\"" msgstr "" -#: editor_ops.cc:6483 -#, fuzzy -msgid "tracks" -msgstr "Trilhas" - -#: editor_ops.cc:6485 route_ui.cc:1822 -#, fuzzy -msgid "track" -msgstr "Trilha" - -#: editor_ops.cc:6489 -#, fuzzy -msgid "busses" -msgstr "Barramentos" - #: editor_ops.cc:6491 route_ui.cc:1822 msgid "bus" msgstr "" -#: editor_ops.cc:6496 -#, fuzzy -msgid "" -"Do you really want to remove %1 %2 and %3 %4?\n" -"(You may also lose the playlists associated with the %2)\n" -"\n" -"This action cannot be undone, and the session file will be overwritten!" -msgstr "" -"Tem certeza de que deseja remover a trilha \"%1\" ?\n" -"(não será possível voltar)" - -#: editor_ops.cc:6501 -#, fuzzy -msgid "" -"Do you really want to remove %1 %2?\n" -"(You may also lose the playlists associated with the %2)\n" -"\n" -"This action cannot be undone, and the session file will be overwritten!" -msgstr "" -"Tem certeza de que deseja remover a trilha \"%1\" ?\n" -"(não será possível voltar)" - -#: editor_ops.cc:6507 -#, fuzzy -msgid "" -"Do you really want to remove %1 %2?\n" -"\n" -"This action cannot be undon, and the session file will be overwritten" -msgstr "" -"Deseja realmente remover o barramento \"%1\" ?\n" -"(esta operação não poderá ser desfeita)" - -#: editor_ops.cc:6514 -#, fuzzy -msgid "Yes, remove them." -msgstr "Sim, remova isto." - #: editor_ops.cc:6516 editor_snapshots.cc:159 route_ui.cc:1483 msgid "Yes, remove it." msgstr "Sim, remova isto." -#: editor_ops.cc:6521 editor_ops.cc:6523 -#, fuzzy -msgid "Remove %1" -msgstr "Remover" - -#: editor_ops.cc:6582 -#, fuzzy -msgid "insert time" -msgstr "Inserir arquivo de áudio externo" - #: editor_ops.cc:6739 msgid "There are too many tracks to fit in the current window" msgstr "" @@ -5745,50 +2523,10 @@ msgstr "" msgid "Saved view %u" msgstr "" -#: editor_ops.cc:6864 -#, fuzzy -msgid "mute regions" -msgstr "mutar esta região" - -#: editor_ops.cc:6866 -#, fuzzy -msgid "mute region" -msgstr "mutar esta região" - -#: editor_ops.cc:6903 -#, fuzzy -msgid "combine regions" -msgstr "Normalizar" - -#: editor_ops.cc:6941 -#, fuzzy -msgid "uncombine regions" -msgstr "Normalizar" - #: editor_regions.cc:111 msgid "Region name, with number of channels in []'s" msgstr "" -#: editor_regions.cc:112 -#, fuzzy -msgid "Position of start of region" -msgstr "Ir para o início da sessão" - -#: editor_regions.cc:113 editor_regions.cc:849 time_info_box.cc:98 -#, fuzzy -msgid "End" -msgstr "Final:" - -#: editor_regions.cc:113 -#, fuzzy -msgid "Position of end of region" -msgstr "Ir para o fim da sessão" - -#: editor_regions.cc:114 -#, fuzzy -msgid "Length of the region" -msgstr "mutar esta região" - #: editor_regions.cc:115 msgid "Position of region sync point, relative to start of the region" msgstr "" @@ -5806,16 +2544,6 @@ msgstr "" msgid "L" msgstr "" -#: editor_regions.cc:118 -#, fuzzy -msgid "Region position locked?" -msgstr "Por Posição da Região" - -#: editor_regions.cc:119 -#, fuzzy -msgid "G" -msgstr "Ir" - #: editor_regions.cc:119 msgid "Region position glued to Bars|Beats time?" msgstr "" @@ -5826,16 +2554,6 @@ msgstr "" msgid "M" msgstr "" -#: editor_regions.cc:120 -#, fuzzy -msgid "Region muted?" -msgstr "Fim de regiões" - -#: editor_regions.cc:121 -#, fuzzy -msgid "O" -msgstr "OU" - #: editor_regions.cc:121 msgid "Region opaque (blocks regions below it from being heard)?" msgstr "" @@ -5848,35 +2566,10 @@ msgstr "Oculto" msgid "(MISSING) " msgstr "" -#: editor_regions.cc:457 -#, fuzzy -msgid "" -"Do you really want to remove unused regions?\n" -"(This is destructive and cannot be undone)" -msgstr "" -"Você quer realmente remover definitivamente a última captura?\n" -"(Isto não poderá ser desfeito)" - -#: editor_regions.cc:461 -#, fuzzy -msgid "Yes, remove." -msgstr "Sim, remova isto." - -#: editor_regions.cc:463 -#, fuzzy -msgid "Remove unused regions" -msgstr "Loop região selecionada" - #: editor_regions.cc:816 editor_regions.cc:830 editor_regions.cc:844 msgid "Mult." msgstr "" -#: editor_regions.cc:847 engine_dialog.cc:84 midi_list_editor.cc:103 -#: time_info_box.cc:91 -#, fuzzy -msgid "Start" -msgstr "Inicio:" - #: editor_regions.cc:865 editor_regions.cc:881 msgid "Multiple" msgstr "" @@ -5889,109 +2582,24 @@ msgstr "" msgid "SS" msgstr "" -#: editor_routes.cc:202 -#, fuzzy -msgid "Track/Bus Name" -msgstr "Trilhas/Barramentos" - -#: editor_routes.cc:203 -#, fuzzy -msgid "Track/Bus visible ?" -msgstr "Trilhas/Barramentos" - #: editor_routes.cc:204 mixer_strip.cc:1945 meter_strip.cc:334 #: route_time_axis.cc:2407 msgid "A" msgstr "" -#: editor_routes.cc:204 -#, fuzzy -msgid "Track/Bus active ?" -msgstr "Trilhas/Barramentos" - -#: editor_routes.cc:205 mixer_strip.cc:1932 -#, fuzzy -msgid "I" -msgstr "ENTRADA" - -#: editor_routes.cc:205 -#, fuzzy -msgid "MIDI input enabled" -msgstr "MIDI" - #: editor_routes.cc:206 mixer_strip.cc:1930 mono_panner.cc:198 #: stereo_panner.cc:215 stereo_panner.cc:242 msgid "R" msgstr "" -#: editor_routes.cc:206 -#, fuzzy -msgid "Record enabled" -msgstr "Gravar" - -#: editor_routes.cc:207 -#, fuzzy -msgid "Muted" -msgstr "Mutar" - #: editor_routes.cc:208 mixer_strip.cc:1941 meter_strip.cc:330 msgid "S" msgstr "" -#: editor_routes.cc:208 -#, fuzzy -msgid "Soloed" -msgstr "Solo" - -#: editor_routes.cc:209 -#, fuzzy -msgid "SI" -msgstr "ENTRADA" - -#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1880 -#, fuzzy -msgid "Solo Isolated" -msgstr "Solo" - -#: editor_routes.cc:210 -#, fuzzy -msgid "Solo Safe (Locked)" -msgstr "Solo" - #: editor_routes.cc:471 mixer_ui.cc:1162 msgid "Hide All" msgstr "Ocultar Tudo" -#: editor_routes.cc:472 mixer_ui.cc:1163 -#, fuzzy -msgid "Show All Audio Tracks" -msgstr "Mostrar todos os barramentos de áudio" - -#: editor_routes.cc:473 mixer_ui.cc:1164 -#, fuzzy -msgid "Hide All Audio Tracks" -msgstr "Ocultar todos os barramentos de áudio" - -#: editor_routes.cc:474 mixer_ui.cc:1165 -#, fuzzy -msgid "Show All Audio Busses" -msgstr "Mostrar todos os barramentos de áudio" - -#: editor_routes.cc:475 mixer_ui.cc:1166 -#, fuzzy -msgid "Hide All Audio Busses" -msgstr "Ocultar todos os barramentos de áudio" - -#: editor_routes.cc:476 -#, fuzzy -msgid "Show All Midi Tracks" -msgstr "Mostrar todos os barramentos de áudio" - -#: editor_routes.cc:477 -#, fuzzy -msgid "Hide All Midi Tracks" -msgstr "Ocultar todos os barramentos de áudio" - #: editor_routes.cc:478 msgid "Show Tracks With Regions Under Playhead" msgstr "" @@ -6004,30 +2612,10 @@ msgstr "Nova marca de localização" msgid "Clear all locations" msgstr "Apagar todas as localizações" -#: editor_rulers.cc:342 -#, fuzzy -msgid "Unhide locations" -msgstr "limpar localizações" - -#: editor_rulers.cc:346 -#, fuzzy -msgid "New range" -msgstr "Adicionar Novo Intervalo" - #: editor_rulers.cc:347 msgid "Clear all ranges" msgstr "Remover todos os intervalos" -#: editor_rulers.cc:348 -#, fuzzy -msgid "Unhide ranges" -msgstr "Adicionar Novo Intervalo" - -#: editor_rulers.cc:358 -#, fuzzy -msgid "New CD track marker" -msgstr "Marcas de Intervalos" - #: editor_rulers.cc:363 tempo_dialog.cc:40 msgid "New Tempo" msgstr "Novo Andamento" @@ -6036,71 +2624,6 @@ msgstr "Novo Andamento" msgid "New Meter" msgstr "Novo Meter" -#: editor_rulers.cc:373 -#, fuzzy -msgid "Timeline height" -msgstr "Altura" - -#: editor_rulers.cc:383 -#, fuzzy -msgid "Align Video Track" -msgstr "Adicionar Trilha/Barramento" - -#: editor_selection.cc:889 editor_selection.cc:932 -#, fuzzy -msgid "set selected regions" -msgstr "Loop região selecionada" - -#: editor_selection.cc:1414 -#, fuzzy -msgid "select all" -msgstr "Selecionar Tudo" - -#: editor_selection.cc:1506 -#, fuzzy -msgid "select all within" -msgstr "Selecionar Tudo" - -#: editor_selection.cc:1564 -#, fuzzy -msgid "set selection from range" -msgstr "Nova região a partir da seleção" - -#: editor_selection.cc:1604 -#, fuzzy -msgid "select all from range" -msgstr "selecionar intervalo de zoom" - -#: editor_selection.cc:1635 -#, fuzzy -msgid "select all from punch" -msgstr "Selecionar Tudo" - -#: editor_selection.cc:1666 -#, fuzzy -msgid "select all from loop" -msgstr "Selecionar Tudo" - -#: editor_selection.cc:1702 -#, fuzzy -msgid "select all after cursor" -msgstr "Colar à cursor de edição" - -#: editor_selection.cc:1704 -#, fuzzy -msgid "select all before cursor" -msgstr "Reproduzir a partir do cursor" - -#: editor_selection.cc:1753 -#, fuzzy -msgid "select all after edit" -msgstr "Do início ao cursor de edição" - -#: editor_selection.cc:1755 -#, fuzzy -msgid "select all before edit" -msgstr "Do início ao cursor de edição" - #: editor_selection.cc:1888 msgid "No edit range defined" msgstr "" @@ -6111,44 +2634,10 @@ msgid "" "but there is no selected marker." msgstr "" -#: editor_snapshots.cc:136 -#, fuzzy -msgid "Rename Snapshot" -msgstr "Remover ponto de sincronia" - -#: editor_snapshots.cc:138 -#, fuzzy -msgid "New name of snapshot" -msgstr "Nome para a imagem capturada" - -#: editor_snapshots.cc:156 -#, fuzzy -msgid "" -"Do you really want to remove snapshot \"%1\" ?\n" -"(which cannot be undone)" -msgstr "" -"Deseja realmente remover o barramento \"%1\" ?\n" -"(esta operação não poderá ser desfeita)" - -#: editor_snapshots.cc:161 -#, fuzzy -msgid "Remove snapshot" -msgstr "Remover ponto de sincronia" - #: editor_tempodisplay.cc:208 editor_tempodisplay.cc:250 msgid "add" msgstr "adicionar" -#: editor_tempodisplay.cc:231 -#, fuzzy -msgid "add tempo mark" -msgstr "adicionar marca de intervalo" - -#: editor_tempodisplay.cc:272 -#, fuzzy -msgid "add meter mark" -msgstr "adicionar marca de intervalo" - #: editor_tempodisplay.cc:288 editor_tempodisplay.cc:367 #: editor_tempodisplay.cc:386 msgid "" @@ -6171,21 +2660,11 @@ msgstr "" msgid "programming error: marker for meter is not a meter marker!" msgstr "" -#: editor_tempodisplay.cc:401 editor_tempodisplay.cc:435 -#, fuzzy -msgid "remove tempo mark" -msgstr "remover marca" - #: editor_tempodisplay.cc:418 msgid "" "programming error: meter marker canvas item has no marker object pointer!" msgstr "" -#: editor_timefx.cc:68 -#, fuzzy -msgid "stretch/shrink" -msgstr "Esticar/Encolher isto" - #: editor_timefx.cc:129 msgid "pitch shift" msgstr "" @@ -6202,11 +2681,6 @@ msgstr "" msgid "Do not lock memory" msgstr "" -#: engine_dialog.cc:77 -#, fuzzy -msgid "Unlock memory" -msgstr "Destrancar" - #: engine_dialog.cc:78 msgid "No zombies" msgstr "" @@ -6219,21 +2693,6 @@ msgstr "" msgid "Force 16 bit" msgstr "" -#: engine_dialog.cc:81 -#, fuzzy -msgid "H/W monitoring" -msgstr "Usar Monitoração de Hardware" - -#: engine_dialog.cc:82 -#, fuzzy -msgid "H/W metering" -msgstr "VU (medidor volumétrico)" - -#: engine_dialog.cc:83 -#, fuzzy -msgid "Verbose output" -msgstr "# Saídas" - #: engine_dialog.cc:103 msgid "8000Hz" msgstr "" @@ -6277,11 +2736,6 @@ msgstr "Triangular" msgid "Rectangular" msgstr "Retangular" -#: engine_dialog.cc:130 engine_dialog.cc:567 -#, fuzzy -msgid "Shaped" -msgstr "Perfil de Ruído" - #: engine_dialog.cc:158 engine_dialog.cc:483 engine_dialog.cc:974 msgid "Playback/recording on 1 device" msgstr "" @@ -6295,11 +2749,6 @@ msgstr "" msgid "Playback only" msgstr "" -#: engine_dialog.cc:161 engine_dialog.cc:505 engine_dialog.cc:983 -#, fuzzy -msgid "Recording only" -msgstr "Suspender gravaçãoo em caso de falha sincrônica (XRUN)" - #: engine_dialog.cc:171 engine_dialog.cc:448 msgid "coremidi" msgstr "" @@ -6316,16 +2765,6 @@ msgstr "" msgid "Driver:" msgstr "" -#: engine_dialog.cc:186 -#, fuzzy -msgid "Audio Interface:" -msgstr "interno" - -#: engine_dialog.cc:191 sfdb_ui.cc:147 sfdb_ui.cc:260 sfdb_ui.cc:265 -#, fuzzy -msgid "Sample rate:" -msgstr "Separar Região" - #: engine_dialog.cc:196 msgid "Buffer size:" msgstr "" @@ -6338,11 +2777,6 @@ msgstr "" msgid "Approximate latency:" msgstr "" -#: engine_dialog.cc:222 -#, fuzzy -msgid "Audio mode:" -msgstr "Quadros de Ãudio" - #: engine_dialog.cc:284 engine_dialog.cc:408 msgid "Ignore" msgstr "" @@ -6376,20 +2810,10 @@ msgstr "" msgid "Input device:" msgstr "" -#: engine_dialog.cc:343 -#, fuzzy -msgid "Output device:" -msgstr "Saídas" - #: engine_dialog.cc:348 msgid "Hardware input latency:" msgstr "" -#: engine_dialog.cc:351 engine_dialog.cc:357 -#, fuzzy -msgid "samples" -msgstr "Separar Região" - #: engine_dialog.cc:354 msgid "Hardware output latency:" msgstr "" @@ -6398,11 +2822,6 @@ msgstr "" msgid "Device" msgstr "" -#: engine_dialog.cc:370 -#, fuzzy -msgid "Advanced" -msgstr "Avançado ..." - #: engine_dialog.cc:653 msgid "cannot open JACK rc file %1 to store parameters" msgstr "" @@ -6448,20 +2867,10 @@ msgstr "" msgid "configuration files contain a JACK server path that doesn't exist (%1)" msgstr "" -#: export_channel_selector.cc:45 sfdb_ui.cc:145 -#, fuzzy -msgid "Channels:" -msgstr "cancelar" - #: export_channel_selector.cc:46 msgid "Split to mono files" msgstr "" -#: export_channel_selector.cc:182 -#, fuzzy -msgid "Bus or Track" -msgstr "Trilhas" - #: export_channel_selector.cc:459 msgid "Region contents without fades nor region gain (channels: %1)" msgstr "" @@ -6474,38 +2883,12 @@ msgstr "" msgid "Track output (channels: %1)" msgstr "" -#: export_channel_selector.cc:536 -#, fuzzy -msgid "Export region contents" -msgstr "Exportar região" - -#: export_channel_selector.cc:537 -#, fuzzy -msgid "Export track output" -msgstr "concetar automaticamente saídas das trilhas com as saídas master" - #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten." msgstr "" -#: export_dialog.cc:47 -#, fuzzy -msgid "List files" -msgstr "Inserir arquivo de áudio externo" - -#: export_dialog.cc:164 export_timespan_selector.cc:355 -#: export_timespan_selector.cc:417 -#, fuzzy -msgid "Time Span" -msgstr "Alcance de zoom" - -#: export_dialog.cc:176 -#, fuzzy -msgid "Channels" -msgstr "cancelar" - #: export_dialog.cc:187 msgid "Time span and channel options" msgstr "" @@ -6524,11 +2907,6 @@ msgstr "" msgid "Stop Export" msgstr "Cancelar Exportação" -#: export_dialog.cc:337 -#, fuzzy -msgid "export" -msgstr "Exportar" - #: export_dialog.cc:356 msgid "Normalizing '%3' (timespan %1 of %2)" msgstr "" @@ -6551,68 +2929,18 @@ msgid "" "Warning: " msgstr "" -#: export_dialog.cc:420 -#, fuzzy -msgid "Export Selection" -msgstr "Exportar região" - -#: export_dialog.cc:433 -#, fuzzy -msgid "Export Region" -msgstr "Exportar região" - #: export_dialog.cc:443 msgid "Source" msgstr "" -#: export_dialog.cc:458 -#, fuzzy -msgid "Stem Export" -msgstr "Cancelar Exportação" - -#: export_file_notebook.cc:38 -#, fuzzy -msgid "Add another format" -msgstr "Quadros de Ãudio" - -#: export_file_notebook.cc:178 -#, fuzzy -msgid "Format" -msgstr "Normal" - #: export_file_notebook.cc:179 msgid "Location" msgstr "Localização" -#: export_file_notebook.cc:255 -#, fuzzy -msgid "No format!" -msgstr "Normal" - -#: export_file_notebook.cc:267 -#, fuzzy -msgid "Format %1: %2" -msgstr "Normal" - #: export_filename_selector.cc:32 msgid "Label:" msgstr "" -#: export_filename_selector.cc:33 -#, fuzzy -msgid "Session Name" -msgstr "Nome da sessão:" - -#: export_filename_selector.cc:34 -#, fuzzy -msgid "Revision:" -msgstr "sessão" - -#: export_filename_selector.cc:36 -#, fuzzy -msgid "Folder:" -msgstr "Nome do diretório:" - #: export_filename_selector.cc:37 session_import_dialog.cc:44 #: transcode_video_dialog.cc:59 video_server_dialog.cc:45 #: video_server_dialog.cc:47 export_video_dialog.cc:69 @@ -6644,39 +2972,14 @@ msgstr "" msgid "Choose export folder" msgstr "" -#: export_format_dialog.cc:31 -#, fuzzy -msgid "New Export Format Profile" -msgstr "Exportar para CD" - -#: export_format_dialog.cc:31 -#, fuzzy -msgid "Edit Export Format Profile" -msgstr "Exportar para CD" - #: export_format_dialog.cc:38 msgid "Label: " msgstr "" -#: export_format_dialog.cc:41 normalize_dialog.cc:42 -#, fuzzy -msgid "Normalize to:" -msgstr "Normalizar" - -#: export_format_dialog.cc:46 -#, fuzzy -msgid "Trim silence at start" -msgstr "Desde a localização" - #: export_format_dialog.cc:47 msgid "Add silence at start:" msgstr "" -#: export_format_dialog.cc:50 -#, fuzzy -msgid "Trim silence at end" -msgstr "Desde a localização" - #: export_format_dialog.cc:51 msgid "Add silence at end:" msgstr "" @@ -6689,20 +2992,10 @@ msgstr "" msgid "Quality" msgstr "" -#: export_format_dialog.cc:57 -#, fuzzy -msgid "File format" -msgstr "Quadros de Ãudio" - #: export_format_dialog.cc:59 msgid "Sample rate conversion quality:" msgstr "" -#: export_format_dialog.cc:66 -#, fuzzy -msgid "Dithering" -msgstr "VU (medidor volumétrico)" - #: export_format_dialog.cc:68 msgid "Create CUE file for disk-at-once CD/DVD creation" msgstr "" @@ -6727,56 +3020,12 @@ msgstr "" msgid "Fast (sinc)" msgstr "" -#: export_format_dialog.cc:481 -#, fuzzy -msgid "Zero order hold" -msgstr "VU (medidor volumétrico)" - -#: export_format_dialog.cc:879 -#, fuzzy -msgid "Linear encoding options" -msgstr "limpar conexões" - -#: export_format_dialog.cc:895 -#, fuzzy -msgid "Ogg Vorbis options" -msgstr "Opções de aparência" - -#: export_format_dialog.cc:908 -#, fuzzy -msgid "FLAC options" -msgstr "Localizações" - -#: export_format_dialog.cc:925 -#, fuzzy -msgid "Broadcast Wave options" -msgstr "Broadcast WAVE/vírgula flutuante" - -#: export_format_selector.cc:136 -#, fuzzy -msgid "Do you really want to remove the format?" -msgstr "" -"Tem certeza de que deseja remover a trilha \"%1\" ?\n" -"(não será possível voltar)" - -#: export_preset_selector.cc:28 -#, fuzzy -msgid "Preset" -msgstr "Reiniciar" - #: export_preset_selector.cc:104 msgid "" "The selected preset did not load successfully!\n" "Perhaps it references a format that has been removed?" msgstr "" -#: export_preset_selector.cc:156 -#, fuzzy -msgid "Do you really want to remove this preset?" -msgstr "" -"Tem certeza de que deseja remover a trilha \"%1\" ?\n" -"(não será possível voltar)" - #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "" @@ -6785,11 +3034,6 @@ msgstr "" msgid " to " msgstr "" -#: export_timespan_selector.cc:348 export_timespan_selector.cc:407 -#, fuzzy -msgid "Range" -msgstr "Intervalo" - #: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 msgid "curl error %1 (%2)" msgstr "" @@ -6806,21 +3050,6 @@ msgstr "" msgid "%1" msgstr "" -#: gain_meter.cc:106 gain_meter.cc:357 gain_meter.cc:462 gain_meter.cc:856 -#, fuzzy -msgid "-inf" -msgstr "entrada" - -#: gain_meter.cc:112 gain_meter.cc:913 -#, fuzzy -msgid "Fader automation mode" -msgstr "modo automático de pan" - -#: gain_meter.cc:113 gain_meter.cc:914 -#, fuzzy -msgid "Fader automation type" -msgstr "Tipo do pan automático" - #: gain_meter.cc:122 gain_meter.cc:795 panner_ui.cc:178 panner_ui.cc:590 msgid "Abs" msgstr "" @@ -6846,27 +3075,12 @@ msgstr "" msgid "Switches" msgstr "" -#: generic_pluginui.cc:242 generic_pluginui.cc:376 processor_box.cc:2212 -#, fuzzy -msgid "Controls" -msgstr "Controle de Saídas" - #: generic_pluginui.cc:270 msgid "Plugin Editor: could not build control element for port %1" msgstr "" "Plugin Editor: não foi possível construir elemento de controle para a porta " "%1" -#: generic_pluginui.cc:408 -#, fuzzy -msgid "Meters" -msgstr "VU (medidor volumétrico)" - -#: generic_pluginui.cc:423 -#, fuzzy -msgid "Automation control" -msgstr "controle de automação" - #: generic_pluginui.cc:430 msgid "Mgnual" msgstr "" @@ -6875,86 +3089,26 @@ msgstr "" msgid "Audio Connection Manager" msgstr "" -#: global_port_matrix.cc:167 -#, fuzzy -msgid "MIDI Connection Manager" -msgstr "Conexões de entrada" - #: global_port_matrix.cc:213 io_selector.cc:216 msgid "port" msgstr "porta" -#: group_tabs.cc:308 -#, fuzzy -msgid "Selection..." -msgstr "Reproduzir região selecionada" - #: group_tabs.cc:309 msgid "Record Enabled..." msgstr "" -#: group_tabs.cc:310 -#, fuzzy -msgid "Soloed..." -msgstr "Solo" - -#: group_tabs.cc:316 -#, fuzzy -msgid "Create New Group ..." -msgstr "Sem grupo" - #: group_tabs.cc:317 msgid "Create New Group From" msgstr "" -#: group_tabs.cc:320 -#, fuzzy -msgid "Edit Group..." -msgstr "Sem grupo" - -#: group_tabs.cc:321 -#, fuzzy -msgid "Collect Group" -msgstr "Selecionar" - -#: group_tabs.cc:322 -#, fuzzy -msgid "Remove Group" -msgstr "Editar Grupo" - -#: group_tabs.cc:325 -#, fuzzy -msgid "Remove Subgroup Bus" -msgstr "Sem grupo" - -#: group_tabs.cc:327 -#, fuzzy -msgid "Add New Subgroup Bus" -msgstr "Sem grupo" - #: group_tabs.cc:329 msgid "Add New Aux Bus (pre-fader)" msgstr "" -#: group_tabs.cc:330 -#, fuzzy -msgid "Add New Aux Bus (post-fader)" -msgstr "Apagar meter" - #: group_tabs.cc:336 msgid "Enable All Groups" msgstr "" -#: group_tabs.cc:337 -#, fuzzy -msgid "Disable All Groups" -msgstr "Desconectar" - -#: gtk-custom-ruler.c:133 -#, fuzzy -msgid "Lower limit of ruler" -msgstr "Enviar região para a trás, última camada" - #: gtk-custom-ruler.c:142 msgid "Upper" msgstr "" @@ -6975,11 +3129,6 @@ msgstr "" msgid "Maximum size of the ruler" msgstr "" -#: gtk-custom-ruler.c:172 -#, fuzzy -msgid "Show Position" -msgstr "Por Posição da Região" - #: gtk-custom-ruler.c:173 msgid "Draw current ruler position" msgstr "" @@ -6988,70 +3137,20 @@ msgstr "" msgid "Time to insert:" msgstr "" -#: insert_time_dialog.cc:54 -#, fuzzy -msgid "Intersected regions should:" -msgstr "Loop região selecionada" - -#: insert_time_dialog.cc:57 -#, fuzzy -msgid "stay in position" -msgstr "Por Posição da Região" - -#: insert_time_dialog.cc:58 -#, fuzzy -msgid "move" -msgstr "Remover" - -#: insert_time_dialog.cc:59 -#, fuzzy -msgid "be split" -msgstr "Separar" - #: insert_time_dialog.cc:65 msgid "Insert time on all the track's playlists" msgstr "" -#: insert_time_dialog.cc:68 -#, fuzzy -msgid "Move glued regions" -msgstr "Loop região selecionada" - -#: insert_time_dialog.cc:70 -#, fuzzy -msgid "Move markers" -msgstr "remover marca" - -#: insert_time_dialog.cc:73 -#, fuzzy -msgid "Move glued markers" -msgstr "remover marca" - -#: insert_time_dialog.cc:78 -#, fuzzy -msgid "Move locked markers" -msgstr "remover marca" - #: insert_time_dialog.cc:83 msgid "" "Move tempo and meter changes\n" "(may cause oddities in the tempo map)" msgstr "" -#: insert_time_dialog.cc:91 -#, fuzzy -msgid "Insert time" -msgstr "Inserir seleção" - #: interthread_progress_window.cc:103 msgid "Importing file: %1 of %2" msgstr "" -#: io_selector.cc:220 -#, fuzzy -msgid "I/O selector" -msgstr "Saltar Seleção" - #: io_selector.cc:265 msgid "%1 input" msgstr "%1 entrada" @@ -7072,21 +3171,6 @@ msgstr "" msgid "Key bindings file \"%1\" not found. Default bindings used instead" msgstr "" -#: keyeditor.cc:54 -#, fuzzy -msgid "Remove shortcut" -msgstr "# Saídas" - -#: keyeditor.cc:64 -#, fuzzy -msgid "Action" -msgstr "Audição" - -#: keyeditor.cc:65 -#, fuzzy -msgid "Shortcut" -msgstr "porta" - #: keyeditor.cc:86 msgid "Select an action, then press the key(s) to (re)set its shortcut" msgstr "" @@ -7095,47 +3179,10 @@ msgstr "" msgid "Main_menu" msgstr "" -#: keyeditor.cc:255 -#, fuzzy -msgid "redirectmenu" -msgstr "Pré Redirecionamentos" - -#: keyeditor.cc:257 -#, fuzzy -msgid "Editor_menus" -msgstr "editor" - -#: keyeditor.cc:259 -#, fuzzy -msgid "RegionList" -msgstr "Região" - -#: keyeditor.cc:261 -#, fuzzy -msgid "ProcessorMenu" -msgstr "Renomear" - -#: latency_gui.cc:39 -#, fuzzy -msgid "sample" -msgstr "Separar Região" - -#: latency_gui.cc:40 -#, fuzzy -msgid "msec" -msgstr "milisecs." - #: latency_gui.cc:41 msgid "period" msgstr "" -#: latency_gui.cc:55 -#, fuzzy -msgid "%1 sample" -msgid_plural "%1 samples" -msgstr[0] "Separar Região" -msgstr[1] "Separar Região" - #: latency_gui.cc:72 panner_ui.cc:392 msgid "Reset" msgstr "Reiniciar" @@ -7144,11 +3191,6 @@ msgstr "Reiniciar" msgid "programming error: %1 (%2)" msgstr "" -#: location_ui.cc:50 location_ui.cc:52 -#, fuzzy -msgid "Use PH" -msgstr "Enviar MMC" - #: location_ui.cc:54 msgid "CD" msgstr "CD" @@ -7169,11 +3211,6 @@ msgstr "" msgid "Pre-Emphasis" msgstr "" -#: location_ui.cc:314 -#, fuzzy -msgid "Remove this range" -msgstr "Selecionar intervalo atual" - #: location_ui.cc:315 msgid "Start time - middle click to locate here" msgstr "" @@ -7182,49 +3219,14 @@ msgstr "" msgid "End time - middle click to locate here" msgstr "" -#: location_ui.cc:319 -#, fuzzy -msgid "Set range start from playhead location" -msgstr "Marcar aqui" - -#: location_ui.cc:320 -#, fuzzy -msgid "Set range end from playhead location" -msgstr "Reproduzir seleção" - -#: location_ui.cc:324 -#, fuzzy -msgid "Remove this marker" -msgstr "remover marca" - #: location_ui.cc:325 msgid "Position - middle click to locate here" msgstr "" -#: location_ui.cc:327 -#, fuzzy -msgid "Set marker time from playhead location" -msgstr "Reproduzir seleção" - #: location_ui.cc:494 msgid "You cannot put a CD marker at the start of the session" msgstr "" -#: location_ui.cc:720 -#, fuzzy -msgid "New Marker" -msgstr "Marca" - -#: location_ui.cc:721 -#, fuzzy -msgid "New Range" -msgstr "Adicionar Novo Intervalo" - -#: location_ui.cc:734 -#, fuzzy -msgid "Loop/Punch Ranges" -msgstr "Intervalos Loop/Insersão" - #: location_ui.cc:759 msgid "Markers (Including CD Index)" msgstr "" @@ -7237,40 +3239,10 @@ msgstr "" msgid "add range marker" msgstr "adicionar marca de intervalo" -#: main.cc:83 -#, fuzzy -msgid "%1 could not connect to JACK." -msgstr "Não foi possível se conectar ao servidor JACK" - -#: main.cc:87 -#, fuzzy -msgid "" -"There are several possible reasons:\n" -"\n" -"1) JACK is not running.\n" -"2) JACK is running as another user, perhaps root.\n" -"3) There is already another client called \"%1\".\n" -"\n" -"Please consider the possibilities, and perhaps (re)start JACK." -msgstr "" -"Ardour não pôde se conectar ao JACK.\n" -"Podem existir várias razões para isso:\n" -"\n" -"1) JACK não está rodando.\n" -"2) JACK está rodando como outro usuário, talvez o root.\n" -"3) Já existe um outro cliente chamado \"ardour\".\n" -"\n" -"Por favor, considere essas razões, e talvez (re)inicie o JACK." - #: main.cc:203 main.cc:324 msgid "cannot create user %3 folder %1 (%2)" msgstr "" -#: main.cc:210 main.cc:331 -#, fuzzy -msgid "cannot open pango.rc file %1" -msgstr "não foi possível abrir o arquivo de imagem \"%1\"" - #: main.cc:235 main.cc:358 msgid "Cannot find ArdourMono TrueType font" msgstr "" @@ -7328,11 +3300,6 @@ msgid "" "Baker, Robin Gareus" msgstr "" -#: main.cc:503 -#, fuzzy -msgid "%1 comes with ABSOLUTELY NO WARRANTY" -msgstr "Ardour não oferece ABSOLUTAMENTE NENHUMA GARANTIA" - #: main.cc:504 msgid "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." msgstr "" @@ -7345,30 +3312,10 @@ msgstr "Isto é um Software Livre. Fique à vontade para redistribuí-lo " msgid "under certain conditions; see the source for copying conditions." msgstr "com algumas condições; veja o fonte para mais detalhes" -#: main.cc:513 -#, fuzzy -msgid "could not initialize %1." -msgstr "não foi possível iniciar o Ardour." - #: main.cc:522 msgid "Cannot xinstall SIGPIPE error handler" msgstr "" -#: main.cc:528 -#, fuzzy -msgid "could not create %1 GUI" -msgstr "não foi possível criar a INTERFACE ARDOUR" - -#: main_clock.cc:51 -#, fuzzy -msgid "Display delta to edit cursor" -msgstr "Do início ao cursor de edição" - -#: marker.cc:251 video_image_frame.cc:121 -#, fuzzy -msgid "MarkerText" -msgstr "Marcas" - #: midi_channel_selector.cc:159 midi_channel_selector.cc:397 #: midi_channel_selector.cc:433 msgid "All" @@ -7383,45 +3330,10 @@ msgstr "Inverter verticalmente" msgid "Force" msgstr "" -#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 -#, fuzzy -msgid "MIDI Channel Control" -msgstr "Porta MMC" - -#: midi_channel_selector.cc:332 -#, fuzzy -msgid "Playback all channels" -msgstr "cancelar" - -#: midi_channel_selector.cc:333 -#, fuzzy -msgid "Play only selected channels" -msgstr "Separar intervalo" - #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" -#: midi_channel_selector.cc:335 -#, fuzzy -msgid "Record all channels" -msgstr "cancelar" - -#: midi_channel_selector.cc:336 -#, fuzzy -msgid "Record only selected channels" -msgstr "Modo de edição" - -#: midi_channel_selector.cc:337 -#, fuzzy -msgid "Force all channels to 1 channel" -msgstr "cancelar" - -#: midi_channel_selector.cc:378 -#, fuzzy -msgid "Inbound" -msgstr "Divisas de região" - #: midi_channel_selector.cc:398 msgid "Click to enable recording all channels" msgstr "" @@ -7434,11 +3346,6 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" -#: midi_channel_selector.cc:415 -#, fuzzy -msgid "Playback" -msgstr "Parar reprodução" - #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -7483,26 +3390,6 @@ msgstr "" msgid "Triplet" msgstr "" -#: midi_list_editor.cc:58 -#, fuzzy -msgid "Quarter" -msgstr "quarta (4)" - -#: midi_list_editor.cc:59 -#, fuzzy -msgid "Eighth" -msgstr "Direito" - -#: midi_list_editor.cc:60 -#, fuzzy -msgid "Sixteenth" -msgstr "décima sexta (16)" - -#: midi_list_editor.cc:61 -#, fuzzy -msgid "Thirty-second" -msgstr "trigésima segunda (32)" - #: midi_list_editor.cc:62 msgid "Sixty-fourth" msgstr "" @@ -7515,89 +3402,14 @@ msgstr "" msgid "Vel" msgstr "" -#: midi_list_editor.cc:215 -#, fuzzy -msgid "edit note start" -msgstr "Modo de edição" - -#: midi_list_editor.cc:224 -#, fuzzy -msgid "edit note channel" -msgstr "Modo de edição" - -#: midi_list_editor.cc:234 -#, fuzzy -msgid "edit note number" -msgstr "Modo de edição" - -#: midi_list_editor.cc:244 -#, fuzzy -msgid "edit note velocity" -msgstr "Modo de edição" - -#: midi_list_editor.cc:258 -#, fuzzy -msgid "edit note length" -msgstr "fade out na edição" - -#: midi_list_editor.cc:460 -#, fuzzy -msgid "insert new note" -msgstr "Inserir arquivo de áudio externo" - -#: midi_list_editor.cc:524 -#, fuzzy -msgid "delete notes (from list)" -msgstr "arquivo removido" - -#: midi_list_editor.cc:599 -#, fuzzy -msgid "change note channel" -msgstr "cancelar" - -#: midi_list_editor.cc:607 -#, fuzzy -msgid "change note number" -msgstr "fade out na edição" - -#: midi_list_editor.cc:617 -#, fuzzy -msgid "change note velocity" -msgstr "Reproduzir seleção" - -#: midi_list_editor.cc:687 -#, fuzzy -msgid "change note length" -msgstr "fade out na edição" - -#: midi_port_dialog.cc:39 -#, fuzzy -msgid "Add MIDI Port" -msgstr "Adicionar Porta" - -#: midi_port_dialog.cc:40 -#, fuzzy -msgid "Port name:" -msgstr "Nome do diretório:" - #: midi_port_dialog.cc:45 msgid "MidiPortDialog" msgstr "" -#: midi_region_view.cc:838 -#, fuzzy -msgid "channel edit" -msgstr "cancelar" - #: midi_region_view.cc:874 msgid "velocity edit" msgstr "" -#: midi_region_view.cc:931 -#, fuzzy -msgid "add note" -msgstr "Modo de edição" - #: midi_region_view.cc:1779 msgid "step add" msgstr "" @@ -7606,69 +3418,14 @@ msgstr "" msgid "insane MIDI patch key %1:%2" msgstr "" -#: midi_region_view.cc:1870 midi_region_view.cc:1890 -#, fuzzy -msgid "alter patch change" -msgstr "Fazer intervalo de inserção" - #: midi_region_view.cc:1924 msgid "add patch change" msgstr "" -#: midi_region_view.cc:1942 -#, fuzzy -msgid "move patch change" -msgstr "Fazer intervalo de inserção" - -#: midi_region_view.cc:1953 -#, fuzzy -msgid "delete patch change" -msgstr "Selecionar intervalo atual" - -#: midi_region_view.cc:2022 -#, fuzzy -msgid "delete selection" -msgstr "Separar Seleção" - -#: midi_region_view.cc:2038 -#, fuzzy -msgid "delete note" -msgstr "arquivo removido" - -#: midi_region_view.cc:2425 -#, fuzzy -msgid "move notes" -msgstr "Remover Campo" - #: midi_region_view.cc:2647 msgid "resize notes" msgstr "" -#: midi_region_view.cc:2901 -#, fuzzy -msgid "change velocities" -msgstr "Reproduzir seleção" - -#: midi_region_view.cc:2967 -#, fuzzy -msgid "transpose" -msgstr "Tradutores" - -#: midi_region_view.cc:3001 -#, fuzzy -msgid "change note lengths" -msgstr "fade out na edição" - -#: midi_region_view.cc:3070 -#, fuzzy -msgid "nudge" -msgstr "Retocar" - -#: midi_region_view.cc:3085 -#, fuzzy -msgid "change channel" -msgstr "cancelar" - #: midi_region_view.cc:3130 msgid "Bank " msgstr "" @@ -7677,73 +3434,18 @@ msgstr "" msgid "Program " msgstr "" -#: midi_region_view.cc:3132 -#, fuzzy -msgid "Channel " -msgstr "cancelar" - -#: midi_region_view.cc:3301 midi_region_view.cc:3303 -#, fuzzy -msgid "paste" -msgstr "Colar" - -#: midi_region_view.cc:3761 -#, fuzzy -msgid "delete sysex" -msgstr "arquivo removido" - -#: midi_streamview.cc:479 -#, fuzzy -msgid "failed to create MIDI region" -msgstr "ardour: renomear região" - #: midi_time_axis.cc:262 msgid "External MIDI Device" msgstr "" -#: midi_time_axis.cc:263 -#, fuzzy -msgid "External Device Mode" -msgstr "Usar Monitoração de Hardware" - #: midi_time_axis.cc:271 msgid "Chns" msgstr "" -#: midi_time_axis.cc:272 -#, fuzzy -msgid "Click to edit channel settings" -msgstr "Apagar todas as localizações" - -#: midi_time_axis.cc:486 -#, fuzzy -msgid "Show Full Range" -msgstr "Mostrar tudo" - #: midi_time_axis.cc:491 msgid "Fit Contents" msgstr "" -#: midi_time_axis.cc:495 -#, fuzzy -msgid "Note Range" -msgstr "intervalo" - -#: midi_time_axis.cc:496 -#, fuzzy -msgid "Note Mode" -msgstr "modo" - -#: midi_time_axis.cc:497 -#, fuzzy -msgid "Channel Selector" -msgstr "Cancelar importação" - -#: midi_time_axis.cc:502 -#, fuzzy -msgid "Color Mode" -msgstr "Cor" - #: midi_time_axis.cc:561 msgid "Bender" msgstr "" @@ -7752,41 +3454,6 @@ msgstr "" msgid "Pressure" msgstr "" -#: midi_time_axis.cc:578 -#, fuzzy -msgid "Controllers" -msgstr "Controle de Saídas" - -#: midi_time_axis.cc:583 -#, fuzzy -msgid "No MIDI Channels selected" -msgstr "Inserir seleção" - -#: midi_time_axis.cc:640 midi_time_axis.cc:769 -#, fuzzy -msgid "Hide all channels" -msgstr "cancelar" - -#: midi_time_axis.cc:644 midi_time_axis.cc:773 -#, fuzzy -msgid "Show all channels" -msgstr "Separar Canais" - -#: midi_time_axis.cc:655 midi_time_axis.cc:784 -#, fuzzy -msgid "Channel %1" -msgstr "cancelar" - -#: midi_time_axis.cc:910 midi_time_axis.cc:942 -#, fuzzy -msgid "Controllers %1-%2" -msgstr "Controle de Saídas" - -#: midi_time_axis.cc:933 midi_time_axis.cc:936 -#, fuzzy -msgid "Controller %1" -msgstr "Controle de Saídas" - #: midi_time_axis.cc:959 msgid "Sustained" msgstr "" @@ -7795,27 +3462,6 @@ msgstr "" msgid "Percussive" msgstr "" -#: midi_time_axis.cc:986 -#, fuzzy -msgid "Meter Colors" -msgstr "VU (medidor volumétrico)" - -#: midi_time_axis.cc:993 -#, fuzzy -msgid "Channel Colors" -msgstr "Cancelar importação" - -#: midi_time_axis.cc:1000 -#, fuzzy -msgid "Track Color" -msgstr "Cor" - -#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 -#: midi_time_axis.cc:1510 -#, fuzzy -msgid "all" -msgstr "Pequeno" - #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" @@ -7832,49 +3478,14 @@ msgstr "" msgid "Decimal" msgstr "" -#: midi_tracer.cc:53 rc_option_editor.cc:659 -#, fuzzy -msgid "Enabled" -msgstr "Gravar" - -#: midi_tracer.cc:54 -#, fuzzy -msgid "Delta times" -msgstr "Do início ao cursor de edição" - -#: midi_tracer.cc:66 -#, fuzzy -msgid "Port:" -msgstr "Adicionar Porta" - -#: midi_velocity_dialog.cc:31 -#, fuzzy -msgid "New velocity" -msgstr "Reproduzir seleção" - #: missing_file_dialog.cc:34 msgid "Missing File!" msgstr "" -#: missing_file_dialog.cc:36 -#, fuzzy -msgid "Select a folder to search" -msgstr "Do início ao cursor de edição" - #: missing_file_dialog.cc:37 msgid "Add chosen folder to search path, and try again" msgstr "" -#: missing_file_dialog.cc:39 -#, fuzzy -msgid "Stop loading this session" -msgstr "Suspender o transporte no final da sessão" - -#: missing_file_dialog.cc:40 -#, fuzzy -msgid "Skip all missing files" -msgstr "Pular Anti-aliasing" - #: missing_file_dialog.cc:41 msgid "Skip this file" msgstr "" @@ -7899,11 +3510,6 @@ msgstr "" msgid "Click to choose an additional folder" msgstr "" -#: missing_plugin_dialog.cc:29 -#, fuzzy -msgid "Missing Plugins" -msgstr "Entradas" - #: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 msgid "OK" msgstr "OK" @@ -7932,41 +3538,6 @@ msgstr "" msgid "Set Gain to 0dB on Mixer-Selected Tracks/Busses" msgstr "" -#: mixer_actor.cc:63 -#, fuzzy -msgid "Copy Selected Processors" -msgstr "Loop região selecionada" - -#: mixer_actor.cc:64 -#, fuzzy -msgid "Cut Selected Processors" -msgstr "Inserir seleção" - -#: mixer_actor.cc:65 -#, fuzzy -msgid "Paste Selected Processors" -msgstr "Loop região selecionada" - -#: mixer_actor.cc:66 -#, fuzzy -msgid "Delete Selected Processors" -msgstr "Loop região selecionada" - -#: mixer_actor.cc:67 -#, fuzzy -msgid "Select All (visible) Processors" -msgstr "Portas disponíveis" - -#: mixer_actor.cc:68 -#, fuzzy -msgid "Toggle Selected Processors" -msgstr "remover marca" - -#: mixer_actor.cc:69 -#, fuzzy -msgid "Toggle Selected Plugins" -msgstr "Loop região selecionada" - #: mixer_actor.cc:72 mixer_actor.cc:73 msgid "Scroll Mixer Window to the left" msgstr "" @@ -7987,12 +3558,6 @@ msgstr "" msgid "pre" msgstr "" -#: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 -#: rc_option_editor.cc:1881 -#, fuzzy -msgid "Comments" -msgstr "Centro" - #: mixer_strip.cc:147 msgid "Click to toggle the width of this mixer strip." msgstr "" @@ -8003,16 +3568,6 @@ msgid "" "%1-%2-click to toggle the width of all strips." msgstr "" -#: mixer_strip.cc:156 -#, fuzzy -msgid "Hide this mixer strip" -msgstr "Ocultar os painéis de mixer de todo os barramento de áudio" - -#: mixer_strip.cc:167 -#, fuzzy -msgid "Click to select metering point" -msgstr "Loop região selecionada" - #: mixer_strip.cc:173 msgid "tupni" msgstr "" @@ -8029,53 +3584,6 @@ msgstr "" msgid "lock" msgstr "bloquear" -#: mixer_strip.cc:204 mixer_strip.cc:1925 -#, fuzzy -msgid "iso" -msgstr "entradas" - -#: mixer_strip.cc:258 -#, fuzzy -msgid "Mix group" -msgstr "Sem grupo" - -#: mixer_strip.cc:351 rc_option_editor.cc:1878 -#, fuzzy -msgid "Phase Invert" -msgstr "Inverter verticalmente" - -#: mixer_strip.cc:352 rc_option_editor.cc:1879 route_ui.cc:1218 -#, fuzzy -msgid "Solo Safe" -msgstr "Solo" - -#: mixer_strip.cc:355 mixer_ui.cc:124 route_time_axis.cc:673 -#, fuzzy -msgid "Group" -msgstr "Grupos de Mixer" - -#: mixer_strip.cc:356 rc_option_editor.cc:1882 -#, fuzzy -msgid "Meter Point" -msgstr "VU (medidor volumétrico)" - -#: mixer_strip.cc:470 -#, fuzzy -msgid "Enable/Disable MIDI input" -msgstr "Habilitar/desabilitar metrônomo" - -#: mixer_strip.cc:622 -#, fuzzy -msgid "" -"Aux\n" -"Sends" -msgstr "Segundos" - -#: mixer_strip.cc:646 -#, fuzzy -msgid "Snd" -msgstr "Segundos" - #: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 msgid "Not connected to JACK - no I/O changes are possible" msgstr "" @@ -8088,21 +3596,6 @@ msgstr "" msgid "OUTPUT from %1" msgstr "" -#: mixer_strip.cc:1174 -#, fuzzy -msgid "Disconnected" -msgstr "desconectado" - -#: mixer_strip.cc:1303 -#, fuzzy -msgid "*Comments*" -msgstr "Centro" - -#: mixer_strip.cc:1310 -#, fuzzy -msgid "Cmt" -msgstr "cortar" - #: mixer_strip.cc:1313 msgid "*Cmt*" msgstr "" @@ -8111,11 +3604,6 @@ msgstr "" msgid "Click to Add/Edit Comments" msgstr "" -#: mixer_strip.cc:1358 -#, fuzzy -msgid ": comment editor" -msgstr "não foi possível iniciar o editor" - #: mixer_strip.cc:1435 msgid "Grp" msgstr "" @@ -8128,11 +3616,6 @@ msgstr "" msgid "Comments..." msgstr "" -#: mixer_strip.cc:1469 -#, fuzzy -msgid "Save As Template..." -msgstr "Salvar Esquema..." - #: mixer_strip.cc:1475 route_group_dialog.cc:39 route_time_axis.cc:696 msgid "Active" msgstr "Ativar" @@ -8145,20 +3628,10 @@ msgstr "" msgid "Protect Against Denormals" msgstr "" -#: mixer_strip.cc:1491 route_time_axis.cc:435 -#, fuzzy -msgid "Remote Control ID..." -msgstr "Remover ponto de controlo" - #: mixer_strip.cc:1717 mixer_strip.cc:1741 msgid "in" msgstr "entrada" -#: mixer_strip.cc:1725 -#, fuzzy -msgid "post" -msgstr "porta" - #: mixer_strip.cc:1729 msgid "out" msgstr "saída" @@ -8167,21 +3640,6 @@ msgstr "saída" msgid "custom" msgstr "" -#: mixer_strip.cc:1745 -#, fuzzy -msgid "pr" -msgstr "porta" - -#: mixer_strip.cc:1749 -#, fuzzy -msgid "po" -msgstr "porta" - -#: mixer_strip.cc:1753 -#, fuzzy -msgid "o" -msgstr "mono" - #: mixer_strip.cc:1758 msgid "c" msgstr "" @@ -8198,35 +3656,10 @@ msgstr "" msgid "PFL" msgstr "" -#: mixer_strip.cc:1933 -#, fuzzy -msgid "D" -msgstr "CD" - -#: mixer_strip.cc:1953 -#, fuzzy -msgid "i" -msgstr "entrada" - -#: mixer_strip.cc:2128 -#, fuzzy -msgid "Pre-fader" -msgstr "Pré Fade" - -#: mixer_strip.cc:2129 -#, fuzzy -msgid "Post-fader" -msgstr "Pós Fade" - #: mixer_strip.cc:2166 meter_strip.cc:728 msgid "Change all in Group to %1" msgstr "" -#: mixer_strip.cc:2168 meter_strip.cc:730 -#, fuzzy -msgid "Change all to %1" -msgstr "cancelar" - #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -8243,16 +3676,6 @@ msgstr "-tudo-" msgid "Strips" msgstr "Painéis" -#: meter_strip.cc:764 -#, fuzzy -msgid "Variable height" -msgstr "Altura" - -#: meter_strip.cc:765 -#, fuzzy -msgid "Short" -msgstr "porta" - #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -8305,20 +3728,10 @@ msgstr "" msgid "SiP" msgstr "" -#: monitor_section.cc:86 -#, fuzzy -msgid "soloing" -msgstr "solo" - #: monitor_section.cc:90 msgid "isolated" msgstr "" -#: monitor_section.cc:94 -#, fuzzy -msgid "auditioning" -msgstr "Audição" - #: monitor_section.cc:104 msgid "" "When active, something is solo-isolated.\n" @@ -8399,25 +3812,10 @@ msgstr "" msgid "mono" msgstr "mono" -#: monitor_section.cc:266 -#, fuzzy -msgid "Monitor" -msgstr "Usar Monitoração de Hardware" - #: monitor_section.cc:678 msgid "Switch monitor to mono" msgstr "" -#: monitor_section.cc:681 -#, fuzzy -msgid "Cut monitor" -msgstr "Usar Monitoração de Hardware" - -#: monitor_section.cc:684 -#, fuzzy -msgid "Dim monitor" -msgstr "Usar Monitoração de Hardware" - #: monitor_section.cc:687 msgid "Toggle exclusive solo mode" msgstr "" @@ -8426,41 +3824,6 @@ msgstr "" msgid "Toggle mute overrides solo mode" msgstr "" -#: monitor_section.cc:705 -#, fuzzy -msgid "Cut monitor channel %1" -msgstr "Controle de Saídas" - -#: monitor_section.cc:710 -#, fuzzy -msgid "Dim monitor channel %1" -msgstr "Controle de Saídas" - -#: monitor_section.cc:715 -#, fuzzy -msgid "Solo monitor channel %1" -msgstr "Controle de Saídas" - -#: monitor_section.cc:720 -#, fuzzy -msgid "Invert monitor channel %1" -msgstr "Controle de Saídas" - -#: monitor_section.cc:730 -#, fuzzy -msgid "In-place solo" -msgstr "Solo alternado" - -#: monitor_section.cc:732 -#, fuzzy -msgid "After Fade Listen (AFL) solo" -msgstr "Pré Redirecionamentos" - -#: monitor_section.cc:734 -#, fuzzy -msgid "Pre Fade Listen (PFL) solo" -msgstr "Pré Redirecionamentos" - #: mono_panner.cc:101 #, c-format msgid "L:%3d R:%3d" @@ -8526,31 +3889,6 @@ msgid "" "relies on a stable, sustainable income stream. Thanks for using Ardour!" msgstr "" -#: new_plugin_preset_dialog.cc:29 -#, fuzzy -msgid "New Preset" -msgstr "nova entrada" - -#: new_plugin_preset_dialog.cc:30 -#, fuzzy -msgid "Replace existing preset with this name" -msgstr "já existe uma trilha com este nome" - -#: new_plugin_preset_dialog.cc:34 -#, fuzzy -msgid "Name of new preset" -msgstr "Nome para a nova conexão:" - -#: normalize_dialog.cc:34 -#, fuzzy -msgid "Normalize regions" -msgstr "Normalizar" - -#: normalize_dialog.cc:34 -#, fuzzy -msgid "Normalize region" -msgstr "Normalizar" - #: normalize_dialog.cc:49 strip_silence_dialog.cc:70 msgid "dbFS" msgstr "" @@ -8571,43 +3909,11 @@ msgstr "Normalizar" msgid "Usage: " msgstr "Usual: " -#: opts.cc:58 -#, fuzzy -msgid " [SESSION_NAME] Name of session to load\n" -msgstr " [session-name] Nome da sessão para carregar\n" - -#: opts.cc:59 -#, fuzzy -msgid " -v, --version Show version information\n" -msgstr " -v, --version Mostra informação sobre a versão\n" - -#: opts.cc:60 -#, fuzzy -msgid " -h, --help Print this message\n" -msgstr " -h, --help Mostra esta mensagem\n" - #: opts.cc:61 msgid "" " -a, --no-announcements Do not contact website for announcements\n" msgstr "" -#: opts.cc:62 -#, fuzzy -msgid "" -" -b, --bindings Print all possible keyboard binding names\n" -msgstr "" -" -b, --bindings Mostra todos os atalhos de teclado " -"possíveis nomes\n" - -#: opts.cc:63 -#, fuzzy -msgid "" -" -c, --name Use a specific jack client name, default is " -"ardour\n" -msgstr "" -" -c, --jack-client-name nome Use o cliente jack especificado por nome. " -"O padrão é o ardour\n" - #: opts.cc:64 msgid "" " -d, --disable-plugins Disable all plugins in an existing session\n" @@ -8619,21 +3925,10 @@ msgid "" "available options\n" msgstr "" -#: opts.cc:66 -#, fuzzy -msgid " -n, --no-splash Do not show splash screen\n" -msgstr " -n, --no-splash Não mostra imagem de abertura\n" - #: opts.cc:67 msgid " -m, --menus file Use \"file\" to define menus\n" msgstr "" -#: opts.cc:68 -#, fuzzy -msgid "" -" -N, --new session-name Create a new session from the command line\n" -msgstr " [session-name] Nome da sessão para carregar\n" - #: opts.cc:69 msgid " -O, --no-hw-optimizations Disable h/w specific optimizations\n" msgstr "" @@ -8642,16 +3937,6 @@ msgstr "" msgid " -P, --no-connect-ports Do not connect any ports at startup\n" msgstr "" -#: opts.cc:71 -#, fuzzy -msgid " -S, --sync Draw the gui synchronously \n" -msgstr " -v, --version Mostra informação sobre a versão\n" - -#: opts.cc:73 -#, fuzzy -msgid " -V, --novst Do not use VST support\n" -msgstr " -n, --no-splash Não mostra imagem de abertura\n" - #: opts.cc:75 msgid "" " -E, --save Load the specified session, save it to " @@ -8693,20 +3978,10 @@ msgid "" "No panner user interface is currently available for %1-in/2out tracks/busses" msgstr "" -#: playlist_selector.cc:43 -#, fuzzy -msgid "Playlists" -msgstr "Lista de reprodução" - #: playlist_selector.cc:54 msgid "Playlists grouped by track" msgstr "" -#: playlist_selector.cc:101 -#, fuzzy -msgid "Playlist for %1" -msgstr "Lista de reprodução" - #: playlist_selector.cc:114 msgid "Other tracks" msgstr "Outras trilhas" @@ -8716,54 +3991,14 @@ msgstr "Outras trilhas" msgid "unassigned" msgstr "" -#: playlist_selector.cc:194 -#, fuzzy -msgid "Imported" -msgstr "Importar" - #: plugin_eq_gui.cc:75 plugin_eq_gui.cc:99 msgid "dB scale" msgstr "" -#: plugin_eq_gui.cc:106 -#, fuzzy -msgid "Show phase" -msgstr "Mostrar linhas de medida" - -#: plugin_selector.cc:53 plugin_selector.cc:220 -#, fuzzy -msgid "Name contains" -msgstr "Nome para a lista de reprodução" - -#: plugin_selector.cc:54 plugin_selector.cc:224 -#, fuzzy -msgid "Type contains" -msgstr "limpar conexões" - -#: plugin_selector.cc:55 plugin_selector.cc:222 -#, fuzzy -msgid "Category contains" -msgstr "ardour: conexões" - -#: plugin_selector.cc:56 plugin_selector.cc:244 -#, fuzzy -msgid "Author contains" -msgstr "Autores" - -#: plugin_selector.cc:57 plugin_selector.cc:246 -#, fuzzy -msgid "Library contains" -msgstr "limpar conexões" - #: plugin_selector.cc:58 plugin_selector.cc:210 plugin_selector.cc:521 msgid "Favorites only" msgstr "" -#: plugin_selector.cc:59 plugin_selector.cc:214 plugin_selector.cc:521 -#, fuzzy -msgid "Hidden only" -msgstr "Oculto" - #: plugin_selector.cc:64 msgid "Plugin Manager" msgstr "" @@ -8772,11 +4007,6 @@ msgstr "" msgid "Fav" msgstr "" -#: plugin_selector.cc:86 -#, fuzzy -msgid "Available Plugins" -msgstr "VST plugins disponíveis" - #: plugin_selector.cc:87 msgid "Type" msgstr "Tipo" @@ -8785,36 +4015,6 @@ msgstr "Tipo" msgid "Category" msgstr "" -#: plugin_selector.cc:89 -#, fuzzy -msgid "Creator" -msgstr "Criar" - -#: plugin_selector.cc:90 -#, fuzzy -msgid "# Audio In" -msgstr "Audição" - -#: plugin_selector.cc:91 -#, fuzzy -msgid "# Audio Out" -msgstr "Ocultar todos os barramentos de áudio" - -#: plugin_selector.cc:92 -#, fuzzy -msgid "# MIDI In" -msgstr "MIDI" - -#: plugin_selector.cc:93 -#, fuzzy -msgid "# MIDI Out" -msgstr "Rastrear Saída MIDI" - -#: plugin_selector.cc:115 -#, fuzzy -msgid "Plugins to be connected" -msgstr "desconectado" - #: plugin_selector.cc:128 msgid "Add a plugin to the effect list" msgstr "Adicionar plugin na lista de efeitos" @@ -8827,11 +4027,6 @@ msgstr "Remover plugin da lista de efeitos" msgid "Update available plugins" msgstr "Atualizar plugins disponíveis" -#: plugin_selector.cc:171 -#, fuzzy -msgid "Insert Plugin(s)" -msgstr "Inserir região" - #: plugin_selector.cc:320 plugin_selector.cc:321 plugin_selector.cc:322 #: plugin_selector.cc:323 msgid "variable" @@ -8852,11 +4047,6 @@ msgstr "" msgid "Plugin Manager..." msgstr "" -#: plugin_selector.cc:634 -#, fuzzy -msgid "By Creator" -msgstr "Criar" - #: plugin_selector.cc:637 msgid "By Category" msgstr "" @@ -8865,31 +4055,6 @@ msgstr "" msgid "Eh? LADSPA plugins don't have editors!" msgstr "" -#: plugin_ui.cc:125 plugin_ui.cc:227 -#, fuzzy -msgid "" -"unknown type of editor-supplying plugin (note: no VST support in this " -"version of %1)" -msgstr "" -"tipo desconhecido do plugin fornecido para o editor (nota: sem suporte VST " -"nesta versão do ardour)" - -#: plugin_ui.cc:128 -#, fuzzy -msgid "unknown type of editor-supplying plugin" -msgstr "" -"tipo desconhecido do plugin fornecido para o editor (nota: sem suporte VST " -"nesta versão do ardour)" - -#: plugin_ui.cc:257 -#, fuzzy -msgid "" -"unknown type of editor-supplying plugin (note: no linuxVST support in this " -"version of %1)" -msgstr "" -"tipo desconhecido do plugin fornecido para o editor (nota: sem suporte VST " -"nesta versão do ardour)" - #: plugin_ui.cc:329 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "" @@ -8898,27 +4063,12 @@ msgstr "" msgid "Add" msgstr "Adicionar" -#: plugin_ui.cc:421 -#, fuzzy -msgid "Description" -msgstr "Reproduzir seleção" - -#: plugin_ui.cc:422 -#, fuzzy -msgid "Plugin analysis" -msgstr "Entradas" - #: plugin_ui.cc:429 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:430 -#, fuzzy -msgid "Save a new preset" -msgstr "Nome para a nova conexão:" - #: plugin_ui.cc:431 msgid "Save the current preset" msgstr "" @@ -8975,26 +4125,6 @@ msgstr "" msgid "Click to allow normal use of %1 keyboard shortcuts" msgstr "" -#: port_group.cc:335 -#, fuzzy -msgid "%1 Busses" -msgstr "Barramentos" - -#: port_group.cc:336 -#, fuzzy -msgid "%1 Tracks" -msgstr "Trilhas" - -#: port_group.cc:337 -#, fuzzy -msgid "Hardware" -msgstr "Quadros de Ãudio" - -#: port_group.cc:338 -#, fuzzy -msgid "%1 Misc" -msgstr "Miscelânea" - #: port_group.cc:339 msgid "Other" msgstr "" @@ -9011,30 +4141,10 @@ msgstr "" msgid "MTC in" msgstr "" -#: port_group.cc:466 -#, fuzzy -msgid "MIDI control in" -msgstr "Porta MMC" - -#: port_group.cc:469 -#, fuzzy -msgid "MIDI clock in" -msgstr "MIDI" - #: port_group.cc:472 msgid "MMC in" msgstr "" -#: port_group.cc:476 -#, fuzzy -msgid "MTC out" -msgstr "Porta MTC" - -#: port_group.cc:479 -#, fuzzy -msgid "MIDI control out" -msgstr "Porta MMC" - #: port_group.cc:482 msgid "MIDI clock out" msgstr "" @@ -9043,11 +4153,6 @@ msgstr "" msgid "MMC out" msgstr "" -#: port_group.cc:540 -#, fuzzy -msgid ":monitor" -msgstr "Usar Monitoração de Hardware" - #: port_group.cc:552 msgid "system:" msgstr "" @@ -9060,11 +4165,6 @@ msgstr "" msgid "Measure Latency" msgstr "" -#: port_insert_ui.cc:51 -#, fuzzy -msgid "Send/Output" -msgstr "Saídas" - #: port_insert_ui.cc:52 msgid "Return/Input" msgstr "" @@ -9081,16 +4181,6 @@ msgstr "" msgid "Detecting ..." msgstr "" -#: port_insert_ui.cc:166 -#, fuzzy -msgid "Port Insert " -msgstr "nova entrada" - -#: port_matrix.cc:331 port_matrix.cc:357 -#, fuzzy -msgid "Sources" -msgstr "Avançado ..." - #: port_matrix.cc:332 port_matrix.cc:358 msgid "Destinations" msgstr "" @@ -9100,21 +4190,6 @@ msgstr "" msgid "Add %s %s" msgstr "" -#: port_matrix.cc:456 -#, fuzzy, c-format -msgid "Rename '%s'..." -msgstr "Renomear" - -#: port_matrix.cc:472 -#, fuzzy -msgid "Remove all" -msgstr "Remover Marca" - -#: port_matrix.cc:492 port_matrix.cc:504 -#, fuzzy, c-format -msgid "%s all" -msgstr "reiniciar todos" - #: port_matrix.cc:527 msgid "Rescan" msgstr "Rescanear" @@ -9148,21 +4223,6 @@ msgid "" "the new number of inputs or the last plugin has more outputs." msgstr "" -#: port_matrix.cc:966 -#, fuzzy, c-format -msgid "Remove '%s'" -msgstr "Remover" - -#: port_matrix.cc:981 -#, fuzzy, c-format -msgid "%s all from '%s'" -msgstr "Selecionar Tudo" - -#: port_matrix.cc:1047 -#, fuzzy -msgid "channel" -msgstr "cancelar" - #: port_matrix_body.cc:82 msgid "There are no ports to connect." msgstr "" @@ -9184,21 +4244,6 @@ msgid "" "Double-click to show generic GUI." msgstr "" -#: processor_box.cc:372 -#, fuzzy -msgid "Show All Controls" -msgstr "Velocidade do controle" - -#: processor_box.cc:376 -#, fuzzy -msgid "Hide All Controls" -msgstr "Ocultar todos os barramentos de áudio" - -#: processor_box.cc:465 -#, fuzzy -msgid "on" -msgstr "mono" - #: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 msgid "off" msgstr "desligado" @@ -9223,44 +4268,12 @@ msgid "" "This plugin has:\n" msgstr "" -#: processor_box.cc:1209 -#, fuzzy -msgid "\t%1 MIDI input\n" -msgid_plural "\t%1 MIDI inputs\n" -msgstr[0] "%1 entrada" -msgstr[1] "%1 entrada" - -#: processor_box.cc:1213 -#, fuzzy -msgid "\t%1 audio input\n" -msgid_plural "\t%1 audio inputs\n" -msgstr[0] "" -"entrada\n" -"automática" -msgstr[1] "" -"entrada\n" -"automática" - #: processor_box.cc:1216 msgid "" "\n" "but at the insertion point, there are:\n" msgstr "" -#: processor_box.cc:1219 -#, fuzzy -msgid "\t%1 MIDI channel\n" -msgid_plural "\t%1 MIDI channels\n" -msgstr[0] "cancelar" -msgstr[1] "cancelar" - -#: processor_box.cc:1223 -#, fuzzy -msgid "\t%1 audio channel\n" -msgid_plural "\t%1 audio channels\n" -msgstr[0] "cancelar" -msgstr[1] "cancelar" - #: processor_box.cc:1226 msgid "" "\n" @@ -9278,11 +4291,6 @@ msgid "" "outputs will not work correctly." msgstr "" -#: processor_box.cc:1778 -#, fuzzy -msgid "Rename Processor" -msgstr "Renomear" - #: processor_box.cc:1809 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "" @@ -9298,53 +4306,6 @@ msgid "" "could not match the configuration of this track." msgstr "" -#: processor_box.cc:2000 -#, fuzzy -msgid "" -"Do you really want to remove all processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Tem certeza de que deseja remover a trilha \"%1\" ?\n" -"(não será possível voltar)" - -#: processor_box.cc:2004 processor_box.cc:2029 -#, fuzzy -msgid "Yes, remove them all" -msgstr "Sim, remova isto." - -#: processor_box.cc:2006 processor_box.cc:2031 -#, fuzzy -msgid "Remove processors" -msgstr "Remover Marca" - -#: processor_box.cc:2021 -#, fuzzy -msgid "" -"Do you really want to remove all pre-fader processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Tem certeza de que deseja remover a trilha \"%1\" ?\n" -"(não será possível voltar)" - -#: processor_box.cc:2024 -#, fuzzy -msgid "" -"Do you really want to remove all post-fader processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Tem certeza de que deseja remover a trilha \"%1\" ?\n" -"(não será possível voltar)" - -#: processor_box.cc:2200 -#, fuzzy -msgid "New Plugin" -msgstr "Entradas" - -#: processor_box.cc:2203 -#, fuzzy -msgid "New Insert" -msgstr "nova entrada" - #: processor_box.cc:2206 msgid "New External Send ..." msgstr "" @@ -9353,55 +4314,10 @@ msgstr "" msgid "New Aux Send ..." msgstr "" -#: processor_box.cc:2214 -#, fuzzy -msgid "Clear (all)" -msgstr "Remover todos os intervalos" - -#: processor_box.cc:2216 -#, fuzzy -msgid "Clear (pre-fader)" -msgstr "Apagar meter" - -#: processor_box.cc:2218 -#, fuzzy -msgid "Clear (post-fader)" -msgstr "Apagar meter" - -#: processor_box.cc:2244 -#, fuzzy -msgid "Activate All" -msgstr "Ativar" - -#: processor_box.cc:2246 -#, fuzzy -msgid "Deactivate All" -msgstr "Desativar" - -#: processor_box.cc:2248 -#, fuzzy -msgid "A/B Plugins" -msgstr "Entradas" - #: processor_box.cc:2257 msgid "Edit with generic controls..." msgstr "" -#: processor_box.cc:2557 -#, fuzzy -msgid "%1: %2 (by %3)" -msgstr "ardour: região" - -#: patch_change_dialog.cc:51 -#, fuzzy -msgid "Patch Change" -msgstr "Reproduzir intervalo" - -#: patch_change_dialog.cc:77 -#, fuzzy -msgid "Patch Bank" -msgstr "Reproduzir intervalo" - #: patch_change_dialog.cc:84 msgid "Patch" msgstr "" @@ -9434,40 +4350,10 @@ msgstr "" msgid "Threshold (ticks)" msgstr "" -#: quantize_dialog.cc:63 -#, fuzzy -msgid "Snap note start" -msgstr "Começo de regiões" - -#: quantize_dialog.cc:64 -#, fuzzy -msgid "Snap note end" -msgstr "Segundos" - -#: rc_option_editor.cc:69 -#, fuzzy -msgid "Click audio file:" -msgstr "Metrônomo no arquivo de áudio" - -#: rc_option_editor.cc:72 rc_option_editor.cc:79 -#, fuzzy -msgid "Browse..." -msgstr "Localizar" - -#: rc_option_editor.cc:76 -#, fuzzy -msgid "Click emphasis audio file:" -msgstr "Metrônomo acentuado no arquivo de áudio" - #: rc_option_editor.cc:108 msgid "Choose Click" msgstr "" -#: rc_option_editor.cc:128 -#, fuzzy -msgid "Choose Click Emphasis" -msgstr "Usar com metrônomo acentuado" - #: rc_option_editor.cc:160 msgid "Limit undo history to" msgstr "" @@ -9480,30 +4366,10 @@ msgstr "" msgid "commands" msgstr "" -#: rc_option_editor.cc:315 -#, fuzzy -msgid "Edit using:" -msgstr "Editar com" - #: rc_option_editor.cc:321 rc_option_editor.cc:347 rc_option_editor.cc:374 msgid "+ button" msgstr "+ button" -#: rc_option_editor.cc:341 -#, fuzzy -msgid "Delete using:" -msgstr "Apagar com" - -#: rc_option_editor.cc:368 -#, fuzzy -msgid "Insert note using:" -msgstr "Inserir seleção" - -#: rc_option_editor.cc:395 -#, fuzzy -msgid "Ignore snap using:" -msgstr "Ignorar ajuste com" - #: rc_option_editor.cc:411 msgid "Keyboard layout:" msgstr "" @@ -9520,11 +4386,6 @@ msgstr "" msgid "Recording (seconds of buffering):" msgstr "" -#: rc_option_editor.cc:656 -#, fuzzy -msgid "Control Surface Protocol" -msgstr "Controle de Saídas" - #: rc_option_editor.cc:660 msgid "Feedback" msgstr "" @@ -9562,11 +4423,6 @@ msgid "" "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:836 -#, fuzzy -msgid "Video Folder:" -msgstr "Nome do diretório:" - #: rc_option_editor.cc:841 msgid "" "Local path to the video-server document-root. Only files below this " @@ -9604,11 +4460,6 @@ msgstr "" msgid "all but one processor" msgstr "" -#: rc_option_editor.cc:1014 -#, fuzzy -msgid "all available processors" -msgstr "Portas disponíveis" - #: rc_option_editor.cc:1017 msgid "%1 processors" msgstr "" @@ -9617,43 +4468,18 @@ msgstr "" msgid "This setting will only take effect when %1 is restarted." msgstr "" -#: rc_option_editor.cc:1025 -#, fuzzy -msgid "Options|Undo" -msgstr "Preferências" - -#: rc_option_editor.cc:1032 -#, fuzzy -msgid "Verify removal of last capture" -msgstr "Remover última captura" - #: rc_option_editor.cc:1040 msgid "Make periodic backups of the session file" msgstr "" -#: rc_option_editor.cc:1045 -#, fuzzy -msgid "Session Management" -msgstr "Nome da sessão:" - #: rc_option_editor.cc:1050 msgid "Always copy imported files" msgstr "" -#: rc_option_editor.cc:1057 -#, fuzzy -msgid "Default folder for new sessions:" -msgstr "Loop região selecionada" - #: rc_option_editor.cc:1065 msgid "Maximum number of recent sessions" msgstr "" -#: rc_option_editor.cc:1078 -#, fuzzy -msgid "Click gain level" -msgstr "Metrônomo no arquivo de áudio" - #: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "Automação" @@ -9670,11 +4496,6 @@ msgstr "" msgid "Keep record-enable engaged on stop" msgstr "" -#: rc_option_editor.cc:1118 -#, fuzzy -msgid "Stop recording when an xrun occurs" -msgstr "Suspender gravaçãoo em caso de falha sincrônica (XRUN)" - #: rc_option_editor.cc:1123 msgid "" "When enabled %1 will stop recording if an over- or underrun is " @@ -9685,11 +4506,6 @@ msgstr "" msgid "Create markers where xruns occur" msgstr "" -#: rc_option_editor.cc:1138 -#, fuzzy -msgid "Stop at the end of the session" -msgstr "Ir para o fim da sessão" - #: rc_option_editor.cc:1143 msgid "" "When enabled if %1 is not recording, it will stop the " @@ -9737,11 +4553,6 @@ msgstr "" msgid "Sync/Slave" msgstr "" -#: rc_option_editor.cc:1185 -#, fuzzy -msgid "External timecode source" -msgstr "Usar Monitoração de Hardware" - #: rc_option_editor.cc:1195 msgid "Match session video frame rate to external timecode" msgstr "" @@ -9760,11 +4571,6 @@ msgid "" "external timecode standard and the session standard." msgstr "" -#: rc_option_editor.cc:1211 -#, fuzzy -msgid "External timecode is sync locked" -msgstr "Usar Monitoração de Hardware" - #: rc_option_editor.cc:1217 msgid "" "When enabled indicates that the selected external timecode source " @@ -9788,25 +4594,10 @@ msgid "" "variant of using exactly 29.97 fps has zero timecode drift.\n" msgstr "" -#: rc_option_editor.cc:1240 -#, fuzzy -msgid "LTC Reader" -msgstr "Pré Fade" - #: rc_option_editor.cc:1244 msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1257 -#, fuzzy -msgid "LTC Generator" -msgstr "Criar" - -#: rc_option_editor.cc:1262 -#, fuzzy -msgid "Enable LTC generator" -msgstr "Gravar" - #: rc_option_editor.cc:1269 msgid "send LTC while stopped" msgstr "" @@ -9817,22 +4608,12 @@ msgid "" "transport (playhead) is not moving" msgstr "" -#: rc_option_editor.cc:1281 -#, fuzzy -msgid "LTC generator level" -msgstr "Criar" - #: rc_option_editor.cc:1285 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " "is 0dBu ^= -18dbFS in an EBU calibrated system" msgstr "" -#: rc_option_editor.cc:1297 -#, fuzzy -msgid "Link selection of regions and tracks" -msgstr "Inverter verticalmente na trilha" - #: rc_option_editor.cc:1305 msgid "Move relevant automation when audio regions are moved" msgstr "" @@ -9861,16 +4642,6 @@ msgstr "" msgid "Make rubberband selection rectangle snap to the grid" msgstr "" -#: rc_option_editor.cc:1348 -#, fuzzy -msgid "Show waveforms in regions" -msgstr "mostra toda a automação" - -#: rc_option_editor.cc:1356 -#, fuzzy -msgid "Show gain envelopes in audio regions" -msgstr "mostra toda a automação" - #: rc_option_editor.cc:1357 msgid "in all modes" msgstr "" @@ -9879,11 +4650,6 @@ msgstr "" msgid "only in region gain mode" msgstr "" -#: rc_option_editor.cc:1365 -#, fuzzy -msgid "Waveform scale" -msgstr "Forma de onda" - #: rc_option_editor.cc:1370 msgid "linear" msgstr "linear" @@ -9892,21 +4658,6 @@ msgstr "linear" msgid "logarithmic" msgstr "" -#: rc_option_editor.cc:1377 -#, fuzzy -msgid "Waveform shape" -msgstr "Forma de onda" - -#: rc_option_editor.cc:1382 -#, fuzzy -msgid "traditional" -msgstr "Tradicional" - -#: rc_option_editor.cc:1383 -#, fuzzy -msgid "rectified" -msgstr "Corrigido" - #: rc_option_editor.cc:1390 msgid "Show waveforms for audio while it is being recorded" msgstr "" @@ -9931,11 +4682,6 @@ msgstr "" msgid "Synchronise editor and mixer selection" msgstr "" -#: rc_option_editor.cc:1437 -#, fuzzy -msgid "Name new markers" -msgstr "remover marca" - #: rc_option_editor.cc:1443 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " @@ -9952,26 +4698,6 @@ msgstr "" msgid "Buffering" msgstr "" -#: rc_option_editor.cc:1464 -#, fuzzy -msgid "Record monitoring handled by" -msgstr "Usar Monitoração de Hardware" - -#: rc_option_editor.cc:1475 -#, fuzzy -msgid "ardour" -msgstr "ardour: relógio" - -#: rc_option_editor.cc:1476 -#, fuzzy -msgid "audio hardware" -msgstr "Quadros de Ãudio" - -#: rc_option_editor.cc:1483 -#, fuzzy -msgid "Tape machine mode" -msgstr "modo automático de pan" - #: rc_option_editor.cc:1488 msgid "Connection of tracks and busses" msgstr "" @@ -9980,40 +4706,10 @@ msgstr "" msgid "Auto-connect master/monitor busses" msgstr "" -#: rc_option_editor.cc:1500 -#, fuzzy -msgid "Connect track inputs" -msgstr "Conectar novas faixas automaticamente" - -#: rc_option_editor.cc:1505 -#, fuzzy -msgid "automatically to physical inputs" -msgstr "conectar automaticamente entradas das trilhas com as portas físicas" - #: rc_option_editor.cc:1506 rc_option_editor.cc:1519 msgid "manually" msgstr "" -#: rc_option_editor.cc:1512 -#, fuzzy -msgid "Connect track and bus outputs" -msgstr "concetar automaticamente saídas das trilhas com as saídas master" - -#: rc_option_editor.cc:1517 -#, fuzzy -msgid "automatically to physical outputs" -msgstr "conectar manualmente saídas das trilhas" - -#: rc_option_editor.cc:1518 -#, fuzzy -msgid "automatically to master bus" -msgstr "concetar automaticamente saídas das trilhas com as saídas master" - -#: rc_option_editor.cc:1523 -#, fuzzy -msgid "Denormals" -msgstr "Normal" - #: rc_option_editor.cc:1528 msgid "Use DC bias to protect against denormals" msgstr "" @@ -10038,11 +4734,6 @@ msgstr "" msgid "use FlushToZero and DenormalsAreZero" msgstr "" -#: rc_option_editor.cc:1563 -#, fuzzy -msgid "Silence plugins when the transport is stopped" -msgstr "Suspender efeitos/plugins em transporte" - #: rc_option_editor.cc:1571 msgid "Make new plugins active" msgstr "" @@ -10063,38 +4754,18 @@ msgstr "" msgid "Solo / mute" msgstr "" -#: rc_option_editor.cc:1597 -#, fuzzy -msgid "Solo-in-place mute cut (dB)" -msgstr "Solo" - #: rc_option_editor.cc:1604 msgid "Solo controls are Listen controls" msgstr "" -#: rc_option_editor.cc:1613 -#, fuzzy -msgid "Listen Position" -msgstr "Audição" - #: rc_option_editor.cc:1618 msgid "after-fader (AFL)" msgstr "" -#: rc_option_editor.cc:1619 -#, fuzzy -msgid "pre-fader (PFL)" -msgstr "Pré Redirecionamentos" - #: rc_option_editor.cc:1625 msgid "PFL signals come from" msgstr "" -#: rc_option_editor.cc:1630 -#, fuzzy -msgid "before pre-fader processors" -msgstr "Remover Marca" - #: rc_option_editor.cc:1631 msgid "pre-fader but after pre-fader processors" msgstr "" @@ -10103,34 +4774,14 @@ msgstr "" msgid "AFL signals come from" msgstr "" -#: rc_option_editor.cc:1642 -#, fuzzy -msgid "immediately post-fader" -msgstr "Apagar meter" - -#: rc_option_editor.cc:1643 -#, fuzzy -msgid "after post-fader processors (before pan)" -msgstr "Remover Marca" - #: rc_option_editor.cc:1652 msgid "Exclusive solo" msgstr "" -#: rc_option_editor.cc:1660 -#, fuzzy -msgid "Show solo muting" -msgstr "mostra toda a automação" - #: rc_option_editor.cc:1668 msgid "Soloing overrides muting" msgstr "" -#: rc_option_editor.cc:1673 -#, fuzzy -msgid "Default track / bus muting options" -msgstr "Inspetador de Trilhas/Barramentos" - #: rc_option_editor.cc:1678 msgid "Mute affects pre-fader sends" msgstr "" @@ -10139,11 +4790,6 @@ msgstr "" msgid "Mute affects post-fader sends" msgstr "" -#: rc_option_editor.cc:1694 -#, fuzzy -msgid "Mute affects control outputs" -msgstr "usar controles de saída" - #: rc_option_editor.cc:1702 msgid "Mute affects main outputs" msgstr "" @@ -10164,11 +4810,6 @@ msgstr "" msgid "Send MIDI Machine Control commands" msgstr "" -#: rc_option_editor.cc:1751 -#, fuzzy -msgid "Send MIDI control feedback" -msgstr "Porta MMC" - #: rc_option_editor.cc:1759 msgid "Inbound MMC device ID" msgstr "" @@ -10189,16 +4830,6 @@ msgstr "" msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "" -#: rc_option_editor.cc:1802 -#, fuzzy -msgid "Sound MIDI notes as they are selected" -msgstr "Inserir seleção" - -#: rc_option_editor.cc:1810 rc_option_editor.cc:1820 rc_option_editor.cc:1822 -#, fuzzy -msgid "User interaction" -msgstr "Regiões/criação" - #: rc_option_editor.cc:1813 msgid "" "Use translations of %1 messages\n" @@ -10210,11 +4841,6 @@ msgstr "" msgid "Keyboard" msgstr "" -#: rc_option_editor.cc:1830 -#, fuzzy -msgid "Control surface remote ID" -msgstr "Controle de Saídas" - #: rc_option_editor.cc:1835 msgid "assigned by user" msgstr "" @@ -10251,26 +4877,6 @@ msgstr "" msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" -#: rc_option_editor.cc:1887 -#, fuzzy -msgid "Mixer Strip" -msgstr "Mixer" - -#: rc_option_editor.cc:1897 -#, fuzzy -msgid "Use narrow strips in the mixer by default" -msgstr "Estreitar painéis de mixer" - -#: rc_option_editor.cc:1906 -#, fuzzy -msgid "Peak hold time" -msgstr "VU (medidor volumétrico)" - -#: rc_option_editor.cc:1912 -#, fuzzy -msgid "short" -msgstr "porta" - #: rc_option_editor.cc:1913 msgid "medium" msgstr "" @@ -10387,11 +4993,6 @@ msgstr "" msgid "audition this region" msgstr "ouvir esta região" -#: region_editor.cc:88 region_layering_order_editor.cc:74 -#, fuzzy -msgid "Position:" -msgstr "Audição" - #: region_editor.cc:90 add_video_dialog.cc:170 msgid "End:" msgstr "Final:" @@ -10420,65 +5021,10 @@ msgstr "" msgid "Source:" msgstr "" -#: region_editor.cc:166 -#, fuzzy -msgid "Region '%1'" -msgstr "Região" - -#: region_editor.cc:273 -#, fuzzy -msgid "change region start position" -msgstr "Regiões/posição" - -#: region_editor.cc:289 -#, fuzzy -msgid "change region end position" -msgstr "Regiões/posição" - -#: region_editor.cc:309 -#, fuzzy -msgid "change region length" -msgstr "fade in na edição" - -#: region_editor.cc:403 region_editor.cc:415 -#, fuzzy -msgid "change region sync point" -msgstr "Regiões/posição" - -#: region_layering_order_editor.cc:41 -#, fuzzy -msgid "RegionLayeringOrderEditor" -msgstr "Fim de regiões" - -#: region_layering_order_editor.cc:54 -#, fuzzy -msgid "Region Name" -msgstr "Por Nome da Região" - -#: region_layering_order_editor.cc:71 -#, fuzzy -msgid "Track:" -msgstr "Trilha" - -#: region_layering_order_editor.cc:103 -#, fuzzy -msgid "Choose Top Region" -msgstr "Região de loop" - #: region_view.cc:274 msgid "SilenceText" msgstr "" -#: region_view.cc:290 region_view.cc:309 -#, fuzzy -msgid "minutes" -msgstr "Minutos" - -#: region_view.cc:293 region_view.cc:312 -#, fuzzy -msgid "msecs" -msgstr "milisecs." - #: region_view.cc:296 region_view.cc:315 msgid "secs" msgstr "" @@ -10527,11 +5073,6 @@ msgstr "" msgid "Complex Domain" msgstr "" -#: rhythm_ferret.cc:59 -#, fuzzy -msgid "Phase Deviation" -msgstr "Audição" - #: rhythm_ferret.cc:60 msgid "Kullback-Liebler" msgstr "" @@ -10540,35 +5081,10 @@ msgstr "" msgid "Modified Kullback-Liebler" msgstr "" -#: rhythm_ferret.cc:66 -#, fuzzy -msgid "Split region" -msgstr "Separar Região" - -#: rhythm_ferret.cc:67 -#, fuzzy -msgid "Snap regions" -msgstr "Separar Região" - -#: rhythm_ferret.cc:68 -#, fuzzy -msgid "Conform regions" -msgstr "Nome para a região:" - #: rhythm_ferret.cc:73 msgid "Rhythm Ferret" msgstr "" -#: rhythm_ferret.cc:79 -#, fuzzy -msgid "Analyze" -msgstr "Reproduzir intervalo" - -#: rhythm_ferret.cc:114 -#, fuzzy -msgid "Detection function" -msgstr "Por Posição da Região" - #: rhythm_ferret.cc:118 msgid "Trigger gap" msgstr "" @@ -10589,11 +5105,6 @@ msgstr "" msgid "Sensitivity" msgstr "" -#: rhythm_ferret.cc:142 -#, fuzzy -msgid "Operation" -msgstr "Preferências" - #: rhythm_ferret.cc:356 msgid "split regions (rhythm ferret)" msgstr "" @@ -10602,60 +5113,15 @@ msgstr "" msgid "Track/bus Group" msgstr "" -#: route_group_dialog.cc:41 -#, fuzzy -msgid "Relative" -msgstr "Alinhamento Relativo" - -#: route_group_dialog.cc:42 -#, fuzzy -msgid "Muting" -msgstr "Ordernação" - -#: route_group_dialog.cc:43 -#, fuzzy -msgid "Soloing" -msgstr "Solo" - -#: route_group_dialog.cc:44 -#, fuzzy -msgid "Record enable" -msgstr "Gravar" - -#: route_group_dialog.cc:45 time_info_box.cc:66 -#, fuzzy -msgid "Selection" -msgstr "Selecionar" - -#: route_group_dialog.cc:46 -#, fuzzy -msgid "Active state" -msgstr "Ativar" - #: route_group_dialog.cc:47 route_group_dialog.cc:76 theme_manager.cc:71 msgid "Color" msgstr "Cor" -#: route_group_dialog.cc:53 -#, fuzzy -msgid "RouteGroupDialog" -msgstr "Limpar" - -#: route_group_dialog.cc:92 -#, fuzzy -msgid "Sharing" -msgstr "Avançado ..." - #: route_group_dialog.cc:182 msgid "" "A route group of this name already exists. Please use a different name." msgstr "" -#: route_params_ui.cc:83 -#, fuzzy -msgid "Tracks/Busses" -msgstr "Trilhas/Barramentos" - #: route_params_ui.cc:102 msgid "Inputs" msgstr "Entradas" @@ -10681,11 +5147,6 @@ msgstr "" msgid "NO TRACK" msgstr "NENHUMA TRILHA" -#: route_params_ui.cc:613 route_params_ui.cc:614 -#, fuzzy -msgid "No Track or Bus Selected" -msgstr "Caminho não selecionado" - #: route_time_axis.cc:97 msgid "g" msgstr "" @@ -10706,41 +5167,6 @@ msgstr "" msgid "Record" msgstr "Gravar" -#: route_time_axis.cc:210 -#, fuzzy -msgid "Route Group" -msgstr "Editar Grupo" - -#: route_time_axis.cc:213 -#, fuzzy -msgid "MIDI Controllers and Automation" -msgstr "Porta MMC" - -#: route_time_axis.cc:390 -#, fuzzy -msgid "Show All Automation" -msgstr "mostra toda a automação" - -#: route_time_axis.cc:393 -#, fuzzy -msgid "Show Existing Automation" -msgstr "mostra a automação existente" - -#: route_time_axis.cc:396 -#, fuzzy -msgid "Hide All Automation" -msgstr "ocultar toda a automação" - -#: route_time_axis.cc:405 -#, fuzzy -msgid "Processor automation" -msgstr "limpar automação" - -#: route_time_axis.cc:424 -#, fuzzy -msgid "Color..." -msgstr "Cor" - #: route_time_axis.cc:481 msgid "Overlaid" msgstr "" @@ -10749,115 +5175,14 @@ msgstr "" msgid "Stacked" msgstr "" -#: route_time_axis.cc:495 -#, fuzzy -msgid "Layers" -msgstr "Camada" - -#: route_time_axis.cc:564 -#, fuzzy -msgid "Automatic (based on I/O connections)" -msgstr "conectar manualmente saídas das trilhas" - -#: route_time_axis.cc:573 -#, fuzzy -msgid "(Currently: Existing Material)" -msgstr "Material existente" - -#: route_time_axis.cc:576 -#, fuzzy -msgid "(Currently: Capture Time)" -msgstr "Tempo de captura" - -#: route_time_axis.cc:584 -#, fuzzy -msgid "Align With Existing Material" -msgstr "Material existente" - -#: route_time_axis.cc:589 -#, fuzzy -msgid "Align With Capture Time" -msgstr "Tempo de captura" - -#: route_time_axis.cc:594 -#, fuzzy -msgid "Alignment" -msgstr "Alinhamento" - -#: route_time_axis.cc:629 -#, fuzzy -msgid "Normal Mode" -msgstr "Normal" - -#: route_time_axis.cc:635 -#, fuzzy -msgid "Tape Mode" -msgstr "Modo de Ajuste" - -#: route_time_axis.cc:641 -#, fuzzy -msgid "Non-Layered Mode" -msgstr "Fim de regiões" - #: route_time_axis.cc:654 route_time_axis.cc:1601 msgid "Playlist" msgstr "Lista de reprodução" -#: route_time_axis.cc:979 -#, fuzzy -msgid "Rename Playlist" -msgstr "Nome para a lista de reprodução" - -#: route_time_axis.cc:980 -#, fuzzy -msgid "New name for playlist:" -msgstr "Nome para a lista de reprodução" - -#: route_time_axis.cc:1065 -#, fuzzy -msgid "New Copy Playlist" -msgstr "Nome para a lista de reprodução" - -#: route_time_axis.cc:1066 route_time_axis.cc:1119 -#, fuzzy -msgid "Name for new playlist:" -msgstr "Nome para a lista de reprodução" - -#: route_time_axis.cc:1118 -#, fuzzy -msgid "New Playlist" -msgstr "Lista de reprodução" - -#: route_time_axis.cc:1309 -#, fuzzy -msgid "You cannot create a track with that name as it is reserved for %1" -msgstr "" -"Você não pode adicionar uma trilha se uma sessão não estiver carregada." - -#: route_time_axis.cc:1490 -#, fuzzy -msgid "New Copy..." -msgstr "Nova Cópia" - -#: route_time_axis.cc:1494 -#, fuzzy -msgid "New Take" -msgstr "Novo Andamento" - -#: route_time_axis.cc:1495 -#, fuzzy -msgid "Copy Take" -msgstr "Copiar" - #: route_time_axis.cc:1500 msgid "Clear Current" msgstr "Limpar Atual" -#: route_time_axis.cc:1503 -#, fuzzy -msgid "Select From All..." -msgstr "Selecionar Tudo" - #: route_time_axis.cc:1591 msgid "Take: %1.%2" msgstr "" @@ -10866,11 +5191,6 @@ msgstr "" msgid "Underlays" msgstr "" -#: route_time_axis.cc:2294 -#, fuzzy -msgid "Remove \"%1\"" -msgstr "Remover" - #: route_time_axis.cc:2344 route_time_axis.cc:2381 msgid "programming error: underlay reference pointer pairs are inconsistent!" msgstr "" @@ -10879,11 +5199,6 @@ msgstr "" msgid "After-fade listen (AFL)" msgstr "" -#: route_time_axis.cc:2412 -#, fuzzy -msgid "Pre-fade listen (PFL)" -msgstr "Pré Redirecionamentos" - #: route_time_axis.cc:2416 msgid "s" msgstr "" @@ -10892,11 +5207,6 @@ msgstr "" msgid "m" msgstr "" -#: route_ui.cc:119 -#, fuzzy -msgid "Mute this track" -msgstr "Ocultar esta trilha" - #: route_ui.cc:123 msgid "Mute other (non-soloed) tracks" msgstr "" @@ -10909,68 +5219,18 @@ msgstr "" msgid "make mixer strips show sends to this bus" msgstr "" -#: route_ui.cc:138 -#, fuzzy -msgid "Monitor input" -msgstr "Usar Monitoração de Hardware" - -#: route_ui.cc:144 -#, fuzzy -msgid "Monitor playback" -msgstr "Parar reprodução" - #: route_ui.cc:591 msgid "Not connected to JACK - cannot engage record" msgstr "" -#: route_ui.cc:786 -#, fuzzy -msgid "Step Entry" -msgstr "Editar" - #: route_ui.cc:859 msgid "Assign all tracks (prefader)" msgstr "" -#: route_ui.cc:863 -#, fuzzy -msgid "Assign all tracks and buses (prefader)" -msgstr "Inserir seleção" - #: route_ui.cc:867 msgid "Assign all tracks (postfader)" msgstr "" -#: route_ui.cc:871 -#, fuzzy -msgid "Assign all tracks and buses (postfader)" -msgstr "Inserir seleção" - -#: route_ui.cc:875 -#, fuzzy -msgid "Assign selected tracks (prefader)" -msgstr "Inserir seleção" - -#: route_ui.cc:879 -#, fuzzy -msgid "Assign selected tracks and buses (prefader)" -msgstr "Inserir seleção" - -#: route_ui.cc:882 -#, fuzzy -msgid "Assign selected tracks (postfader)" -msgstr "Inserir seleção" - -#: route_ui.cc:886 -#, fuzzy -msgid "Assign selected tracks and buses (postfader)" -msgstr "Inserir seleção" - -#: route_ui.cc:889 -#, fuzzy -msgid "Copy track/bus gains to sends" -msgstr "ardour: adicionar trilhas/barramento" - #: route_ui.cc:890 msgid "Set sends gain to -inf" msgstr "" @@ -10979,11 +5239,6 @@ msgstr "" msgid "Set sends gain to 0dB" msgstr "" -#: route_ui.cc:1211 -#, fuzzy -msgid "Solo Isolate" -msgstr "Solo" - #: route_ui.cc:1240 msgid "Pre Fader" msgstr "Pré Fade" @@ -11000,68 +5255,16 @@ msgstr "Controle de Saídas" msgid "Main Outs" msgstr "Saídas Principais" -#: route_ui.cc:1390 -#, fuzzy -msgid "Color Selection" -msgstr "Reproduzir região selecionada" - -#: route_ui.cc:1477 -#, fuzzy -msgid "" -"Do you really want to remove track \"%1\" ?\n" -"\n" -"You may also lose the playlist used by this track.\n" -"\n" -"(This action cannot be undone, and the session file will be overwritten)" -msgstr "" -"Tem certeza de que deseja remover a trilha \"%1\" ?\n" -"(não será possível voltar)" - -#: route_ui.cc:1479 -#, fuzzy -msgid "" -"Do you really want to remove bus \"%1\" ?\n" -"\n" -"(This action cannot be undone, and the session file will be overwritten)" -msgstr "" -"Deseja realmente remover o barramento \"%1\" ?\n" -"(esta operação não poderá ser desfeita)" - -#: route_ui.cc:1487 -#, fuzzy -msgid "Remove track" -msgstr "Remover Marca" - -#: route_ui.cc:1489 -#, fuzzy -msgid "Remove bus" -msgstr "Remover" - #: route_ui.cc:1516 msgid "" "The use of colons (':') is discouraged in track and bus names.\n" "Do you want to use this new name?" msgstr "" -#: route_ui.cc:1520 -#, fuzzy -msgid "Use the new name" -msgstr "novo nome: " - #: route_ui.cc:1521 msgid "Re-edit the name" msgstr "" -#: route_ui.cc:1534 -#, fuzzy -msgid "Rename Track" -msgstr "Renomear" - -#: route_ui.cc:1536 -#, fuzzy -msgid "Rename Bus" -msgstr "Renomear" - #: route_ui.cc:1695 msgid " latency" msgstr "" @@ -11070,26 +5273,6 @@ msgstr "" msgid "Cannot create route template directory %1" msgstr "" -#: route_ui.cc:1714 -#, fuzzy -msgid "Save As Template" -msgstr "Salvar Esquema..." - -#: route_ui.cc:1715 -#, fuzzy -msgid "Template name:" -msgstr "Nome do campo:" - -#: route_ui.cc:1788 -#, fuzzy -msgid "Remote Control ID" -msgstr "Remover ponto de controlo" - -#: route_ui.cc:1798 -#, fuzzy -msgid "Remote control ID:" -msgstr "Remover ponto de controlo" - #: route_ui.cc:1812 msgid "" "The remote control ID of %1 is: %2\n" @@ -11098,16 +5281,6 @@ msgid "" "The remote control ID of %3 cannot be changed." msgstr "" -#: route_ui.cc:1816 -#, fuzzy -msgid "the master bus" -msgstr "usar saída master" - -#: route_ui.cc:1816 -#, fuzzy -msgid "the monitor bus" -msgstr "usar saída master" - #: route_ui.cc:1818 msgid "" "The remote control ID of %6 is: %3\n" @@ -11119,16 +5292,6 @@ msgid "" "change this%5" msgstr "" -#: route_ui.cc:1821 -#, fuzzy -msgid "the mixer" -msgstr "Mixer" - -#: route_ui.cc:1821 -#, fuzzy -msgid "the editor" -msgstr "editor" - #: route_ui.cc:1876 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " @@ -11143,26 +5306,6 @@ msgstr "" msgid "Select folder to search for media" msgstr "" -#: search_path_option.cc:44 -#, fuzzy -msgid "Click to add a new location" -msgstr "Apagar todas as localizações" - -#: search_path_option.cc:51 -#, fuzzy -msgid "the session folder" -msgstr "Loop região selecionada" - -#: send_ui.cc:126 -#, fuzzy -msgid "Send " -msgstr "Segundos" - -#: session_import_dialog.cc:64 -#, fuzzy -msgid "Import from Session" -msgstr "Exportar região" - #: session_import_dialog.cc:73 msgid "Elements" msgstr "" @@ -11175,11 +5318,6 @@ msgstr "" msgid "Some elements had errors in them. Please see the log for details" msgstr "" -#: session_import_dialog.cc:163 -#, fuzzy -msgid "Import from session" -msgstr "Exportar região" - #: session_import_dialog.cc:227 msgid "This will select all elements of this type!" msgstr "" @@ -11204,11 +5342,6 @@ msgstr "" msgid "Web" msgstr "" -#: session_metadata_dialog.cc:534 -#, fuzzy -msgid "Organization" -msgstr "modo automático de ganho" - #: session_metadata_dialog.cc:537 msgid "Country" msgstr "" @@ -11225,11 +5358,6 @@ msgstr "" msgid "Subtitle" msgstr "" -#: session_metadata_dialog.cc:560 -#, fuzzy -msgid "Grouping" -msgstr "Grupos de Mixer" - #: session_metadata_dialog.cc:563 msgid "Artist" msgstr "" @@ -11242,11 +5370,6 @@ msgstr "" msgid "Comment" msgstr "" -#: session_metadata_dialog.cc:572 -#, fuzzy -msgid "Copyright" -msgstr "Copiar" - #: session_metadata_dialog.cc:580 session_metadata_dialog.cc:585 msgid "Album" msgstr "" @@ -11259,11 +5382,6 @@ msgstr "" msgid "Album Artist" msgstr "" -#: session_metadata_dialog.cc:594 -#, fuzzy -msgid "Total Tracks" -msgstr "Trilhas" - #: session_metadata_dialog.cc:597 msgid "Disc Subtitle" msgstr "" @@ -11276,11 +5394,6 @@ msgstr "" msgid "Total Discs" msgstr "" -#: session_metadata_dialog.cc:606 -#, fuzzy -msgid "Compilation" -msgstr "Automação" - #: session_metadata_dialog.cc:609 msgid "ISRC" msgstr "" @@ -11305,11 +5418,6 @@ msgstr "" msgid "Remixer" msgstr "" -#: session_metadata_dialog.cc:634 -#, fuzzy -msgid "Arranger" -msgstr "intervalo" - #: session_metadata_dialog.cc:637 msgid "Engineer" msgstr "" @@ -11318,11 +5426,6 @@ msgstr "" msgid "Producer" msgstr "" -#: session_metadata_dialog.cc:643 -#, fuzzy -msgid "DJ Mixer" -msgstr "Mixer" - #: session_metadata_dialog.cc:646 msgid "Metadata|Mixer" msgstr "" @@ -11343,20 +5446,10 @@ msgstr "" msgid "Edit Session Metadata" msgstr "" -#: session_metadata_dialog.cc:701 -#, fuzzy -msgid "Import session metadata" -msgstr "Importar seleção" - #: session_metadata_dialog.cc:722 msgid "Choose session to import metadata from" msgstr "" -#: session_metadata_dialog.cc:760 -#, fuzzy -msgid "This session file could not be read!" -msgstr "arquivo \"%1\" não pôde ser aberto" - #: session_metadata_dialog.cc:770 msgid "" "The session file didn't contain metadata!\n" @@ -11367,16 +5460,6 @@ msgstr "" msgid "Import all from:" msgstr "" -#: session_option_editor.cc:32 -#, fuzzy -msgid "Session Properties" -msgstr "Regiões/criação" - -#: session_option_editor.cc:41 -#, fuzzy -msgid "Timecode Settings" -msgstr "SMPTE segundo" - #: session_option_editor.cc:45 msgid "Timecode frames-per-second" msgstr "" @@ -11472,25 +5555,10 @@ msgid "" "Apply Pull-Up/Down to Video Timeline and Video Monitor (Unless in JACK-sync)." msgstr "" -#: session_option_editor.cc:96 -#, fuzzy -msgid "Ext Timecode Offsets" -msgstr "Quadros de Ãudio" - -#: session_option_editor.cc:100 -#, fuzzy -msgid "Slave Timecode offset" -msgstr "Quadros de Ãudio" - #: session_option_editor.cc:107 msgid "The specified offset is added to the received timecode (MTC or LTC)." msgstr "" -#: session_option_editor.cc:113 -#, fuzzy -msgid "Timecode Generator offset" -msgstr "Quadros de Ãudio" - #: session_option_editor.cc:120 msgid "" "Specify an offset which is added to the generated timecode (so far only LTC)." @@ -11505,11 +5573,6 @@ msgid "" "%1 is JACK Time Master (provides Bar|Beat|Tick and other information to JACK)" msgstr "" -#: session_option_editor.cc:137 -#, fuzzy -msgid "Default crossfade type" -msgstr "Fade cruzado" - #: session_option_editor.cc:142 msgid "Constant power (-3dB) crossfade" msgstr "" @@ -11526,37 +5589,12 @@ msgstr "" msgid "Destructive crossfade length" msgstr "" -#: session_option_editor.cc:158 -#, fuzzy -msgid "Region fades active" -msgstr "Regiões/data do arquivo" - -#: session_option_editor.cc:165 -#, fuzzy -msgid "Region fades visible" -msgstr "Regiões/tamanho do arquivo" - #: session_option_editor.cc:172 session_option_editor.cc:185 #: session_option_editor.cc:199 session_option_editor.cc:201 #: session_option_editor.cc:207 session_option_editor.cc:214 msgid "Media" msgstr "" -#: session_option_editor.cc:172 -#, fuzzy -msgid "Audio file format" -msgstr "Quadros de Ãudio" - -#: session_option_editor.cc:176 -#, fuzzy -msgid "Sample format" -msgstr "Separar Região" - -#: session_option_editor.cc:181 -#, fuzzy -msgid "32-bit floating point" -msgstr "WAVE/vírgula flutuante" - #: session_option_editor.cc:182 msgid "24-bit integer" msgstr "" @@ -11565,16 +5603,6 @@ msgstr "" msgid "16-bit integer" msgstr "" -#: session_option_editor.cc:189 -#, fuzzy -msgid "File type" -msgstr "Sistema de arquivos" - -#: session_option_editor.cc:194 -#, fuzzy -msgid "Broadcast WAVE" -msgstr "Broadcast WAVE/vírgula flutuante" - #: session_option_editor.cc:195 msgid "WAVE" msgstr "" @@ -11583,11 +5611,6 @@ msgstr "" msgid "WAVE-64" msgstr "" -#: session_option_editor.cc:201 -#, fuzzy -msgid "File locations" -msgstr "limpar localizações" - #: session_option_editor.cc:203 msgid "Search for audio files in:" msgstr "" @@ -11601,11 +5624,6 @@ msgid "" "Track Input Monitoring automatically follows transport state (\"auto-input\")" msgstr "" -#: session_option_editor.cc:227 -#, fuzzy -msgid "Use monitor section in this session" -msgstr "Suspender o transporte no final da sessão" - #: session_option_editor.cc:238 msgid "MIDI region copies are independent" msgstr "" @@ -11652,108 +5670,22 @@ msgstr "" msgid "Glue new regions to bars and beats" msgstr "" -#: session_option_editor.cc:275 session_option_editor.cc:277 -#: session_option_editor.cc:284 session_option_editor.cc:291 -#: session_option_editor.cc:298 session_option_editor.cc:300 -#: session_option_editor.cc:307 session_option_editor.cc:314 -#: session_option_editor.cc:321 session_option_editor.cc:323 -#, fuzzy -msgid "Meterbridge" -msgstr "VU (medidor volumétrico)" - #: session_option_editor.cc:275 msgid "Route Display" msgstr "" -#: session_option_editor.cc:279 -#, fuzzy -msgid "Show Midi Tracks" -msgstr "Mostrar todos os barramentos de áudio" - -#: session_option_editor.cc:286 -#, fuzzy -msgid "Show Busses" -msgstr "Barramentos" - -#: session_option_editor.cc:293 -#, fuzzy -msgid "Include Master Bus" -msgstr "usar saída master" - #: session_option_editor.cc:298 msgid "Button Area" msgstr "" -#: session_option_editor.cc:302 -#, fuzzy -msgid "Rec-enable Button" -msgstr "Gravar" - -#: session_option_editor.cc:309 -#, fuzzy -msgid "Mute Button" -msgstr "+ button" - -#: session_option_editor.cc:316 -#, fuzzy -msgid "Solo Button" -msgstr "+ button" - #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" -#: session_option_editor.cc:325 -#, fuzzy -msgid "Track Name" -msgstr "Trilhas/Barramentos" - -#: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 -#, fuzzy -msgid "as new tracks" -msgstr "Trilhas" - -#: sfdb_ui.cc:88 sfdb_ui.cc:108 -#, fuzzy -msgid "to selected tracks" -msgstr "Inserir seleção" - -#: sfdb_ui.cc:90 sfdb_ui.cc:110 -#, fuzzy -msgid "to region list" -msgstr "Começo de regiões" - -#: sfdb_ui.cc:92 sfdb_ui.cc:112 -#, fuzzy -msgid "as new tape tracks" -msgstr "Outras trilhas" - #: sfdb_ui.cc:96 msgid "programming error: unknown import mode string %1" msgstr "" -#: sfdb_ui.cc:123 -#, fuzzy -msgid "Auto-play" -msgstr "" -"reprodução\n" -"automática" - -#: sfdb_ui.cc:129 sfdb_ui.cc:236 -#, fuzzy -msgid "Sound File Information" -msgstr "Informação do arquivo de áudio" - -#: sfdb_ui.cc:141 -#, fuzzy -msgid "Timestamp:" -msgstr "Por tempo data/hora da Região" - -#: sfdb_ui.cc:143 -#, fuzzy -msgid "Format:" -msgstr "Normal" - #: sfdb_ui.cc:182 sfdb_ui.cc:526 msgid "Tags:" msgstr "" @@ -11778,60 +5710,10 @@ msgstr "" msgid "Search" msgstr "" -#: sfdb_ui.cc:449 -#, fuzzy -msgid "Audio and MIDI files" -msgstr "Quadros de Ãudio" - -#: sfdb_ui.cc:452 -#, fuzzy -msgid "Audio files" -msgstr "Quadros de Ãudio" - -#: sfdb_ui.cc:455 -#, fuzzy -msgid "MIDI files" -msgstr "MIDI" - -#: sfdb_ui.cc:458 add_video_dialog.cc:132 -#, fuzzy -msgid "All files" -msgstr "arquivos limpos" - -#: sfdb_ui.cc:477 add_video_dialog.cc:143 -#, fuzzy -msgid "Browse Files" -msgstr "Localizar" - -#: sfdb_ui.cc:506 -#, fuzzy -msgid "Paths" -msgstr "Diretórios/Arquivos" - #: sfdb_ui.cc:515 msgid "Search Tags" msgstr "" -#: sfdb_ui.cc:531 -#, fuzzy -msgid "Sort:" -msgstr "porta" - -#: sfdb_ui.cc:539 -#, fuzzy -msgid "Longest" -msgstr "Enorme" - -#: sfdb_ui.cc:540 -#, fuzzy -msgid "Shortest" -msgstr "porta" - -#: sfdb_ui.cc:541 -#, fuzzy -msgid "Newest" -msgstr "Menor" - #: sfdb_ui.cc:542 msgid "Oldest" msgstr "" @@ -11840,11 +5722,6 @@ msgstr "" msgid "Most downloaded" msgstr "" -#: sfdb_ui.cc:544 -#, fuzzy -msgid "Least downloaded" -msgstr "Separar intervalo" - #: sfdb_ui.cc:545 msgid "Highest rated" msgstr "" @@ -11861,30 +5738,10 @@ msgstr "" msgid "Similar" msgstr "" -#: sfdb_ui.cc:567 -#, fuzzy -msgid "ID" -msgstr "ENTRADA" - -#: sfdb_ui.cc:568 add_video_dialog.cc:84 -#, fuzzy -msgid "Filename" -msgstr "Renomear" - -#: sfdb_ui.cc:570 -#, fuzzy -msgid "Duration" -msgstr "normalizar região" - #: sfdb_ui.cc:571 msgid "Size" msgstr "" -#: sfdb_ui.cc:572 -#, fuzzy -msgid "Samplerate" -msgstr "Separar Região" - #: sfdb_ui.cc:573 msgid "License" msgstr "" @@ -11931,11 +5788,6 @@ msgstr "" msgid "MB" msgstr "" -#: sfdb_ui.cc:1086 -#, fuzzy -msgid "GB" -msgstr "Ir" - #: sfdb_ui.cc:1298 sfdb_ui.cc:1606 sfdb_ui.cc:1656 sfdb_ui.cc:1674 msgid "one track per file" msgstr "" @@ -11944,80 +5796,20 @@ msgstr "" msgid "one track per channel" msgstr "" -#: sfdb_ui.cc:1309 sfdb_ui.cc:1659 sfdb_ui.cc:1676 -#, fuzzy -msgid "sequence files" -msgstr "arquivos limpos" - #: sfdb_ui.cc:1312 sfdb_ui.cc:1664 msgid "all files in one track" msgstr "" -#: sfdb_ui.cc:1313 sfdb_ui.cc:1658 -#, fuzzy -msgid "merge files" -msgstr "arquivos limpos" - -#: sfdb_ui.cc:1319 sfdb_ui.cc:1661 -#, fuzzy -msgid "one region per file" -msgstr "Saltar Seleção" - -#: sfdb_ui.cc:1322 sfdb_ui.cc:1662 -#, fuzzy -msgid "one region per channel" -msgstr "Cortar região pela intervalo" - -#: sfdb_ui.cc:1327 sfdb_ui.cc:1663 sfdb_ui.cc:1677 -#, fuzzy -msgid "all files in one region" -msgstr "normalizar região" - #: sfdb_ui.cc:1394 msgid "" "One or more of the selected files\n" "cannot be used by %1" msgstr "" -#: sfdb_ui.cc:1534 -#, fuzzy -msgid "Copy files to session" -msgstr "Zoom na sessão" - -#: sfdb_ui.cc:1551 sfdb_ui.cc:1714 -#, fuzzy -msgid "file timestamp" -msgstr "Por tempo data/hora da Região" - -#: sfdb_ui.cc:1552 sfdb_ui.cc:1716 -#, fuzzy -msgid "edit point" -msgstr "editor" - -#: sfdb_ui.cc:1553 sfdb_ui.cc:1718 -#, fuzzy -msgid "playhead" -msgstr "Início" - -#: sfdb_ui.cc:1554 -#, fuzzy -msgid "session start" -msgstr "Começo de regiões" - #: sfdb_ui.cc:1559 msgid "Add files as ..." msgstr "" -#: sfdb_ui.cc:1581 -#, fuzzy -msgid "Insert at" -msgstr "Inverter verticalmente" - -#: sfdb_ui.cc:1594 -#, fuzzy -msgid "Mapping" -msgstr "Avançado ..." - #: sfdb_ui.cc:1612 msgid "Conversion quality" msgstr "" @@ -12038,16 +5830,6 @@ msgstr "" msgid "Fastest" msgstr "Rapidamente" -#: shuttle_control.cc:56 -#, fuzzy -msgid "Shuttle speed control (Context-click for options)" -msgstr "Velocidade do controle" - -#: shuttle_control.cc:165 -#, fuzzy -msgid "Percent" -msgstr "Percentual" - #: shuttle_control.cc:173 msgid "Units" msgstr "" @@ -12060,60 +5842,14 @@ msgstr "Retornável" msgid "Wheel" msgstr "Fixo" -#: shuttle_control.cc:217 -#, fuzzy -msgid "Maximum speed" -msgstr "velocidade variável" - -#: shuttle_control.cc:561 -#, fuzzy -msgid "Playing" -msgstr "Reproduzir" - -#: shuttle_control.cc:576 -#, fuzzy, c-format -msgid "<<< %+d semitones" -msgstr "Semitons" - -#: shuttle_control.cc:578 -#, fuzzy, c-format -msgid ">>> %+d semitones" -msgstr "Semitons" - -#: shuttle_control.cc:583 -#, fuzzy -msgid "Stopped" -msgstr "Parar" - #: splash.cc:73 msgid "%1 loading ..." msgstr "" -#: speaker_dialog.cc:40 -#, fuzzy -msgid "Add Speaker" -msgstr "adicionar marca de intervalo" - -#: speaker_dialog.cc:41 -#, fuzzy -msgid "Remove Speaker" -msgstr "remover marca" - #: speaker_dialog.cc:63 msgid "Azimuth:" msgstr "" -#: startup.cc:72 -#, fuzzy -msgid "Create a new session" -msgstr "Iniciar uma nova sessão\n" - -# -#: startup.cc:73 -#, fuzzy -msgid "Open an existing session" -msgstr "abrir sessão" - #: startup.cc:74 msgid "" "Use an external mixer or the hardware mixer of your audio interface.\n" @@ -12207,11 +5943,6 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:457 -#, fuzzy -msgid "Monitoring Choices" -msgstr "Usar Monitoração de Hardware" - #: startup.cc:480 msgid "Use a Master bus directly" msgstr "" @@ -12240,11 +5971,6 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:527 -#, fuzzy -msgid "Monitor Section" -msgstr "Usar Monitoração de Hardware" - #: startup.cc:573 msgid "Check the website for more..." msgstr "" @@ -12253,105 +5979,10 @@ msgstr "" msgid "Click to open the program website in your web browser" msgstr "" -#: startup.cc:729 -#, fuzzy -msgid "Open" -msgstr "Abrir" - -#: startup.cc:775 -#, fuzzy -msgid "Session name:" -msgstr "Nome da sessão:" - -#: startup.cc:798 -#, fuzzy -msgid "Create session folder in:" -msgstr "Loop região selecionada" - -#: startup.cc:821 -#, fuzzy -msgid "Select folder for session" -msgstr "Loop região selecionada" - -#: startup.cc:853 -#, fuzzy -msgid "Use this template" -msgstr "-esquema/template" - -#: startup.cc:856 -#, fuzzy -msgid "no template" -msgstr "-esquema/template" - -#: startup.cc:884 -#, fuzzy -msgid "Use an existing session as a template:" -msgstr "usar esquema existente" - -#: startup.cc:896 -#, fuzzy -msgid "Select template" -msgstr "-esquema/template" - -#: startup.cc:922 -#, fuzzy -msgid "New Session" -msgstr "Sessão" - -#: startup.cc:1077 -#, fuzzy -msgid "Select session file" -msgstr "Loop região selecionada" - -#: startup.cc:1093 -#, fuzzy -msgid "Browse:" -msgstr "Localizar" - -#: startup.cc:1102 -#, fuzzy -msgid "Select a session" -msgstr "Loop região selecionada" - -#: startup.cc:1129 startup.cc:1130 startup.cc:1131 -#, fuzzy -msgid "channels" -msgstr "cancelar" - -#: startup.cc:1145 -#, fuzzy -msgid "Busses" -msgstr "Barramentos" - -#: startup.cc:1146 -#, fuzzy -msgid "Inputs" -msgstr "Inspetador de Trilhas/Barramentos" - -#: startup.cc:1147 -#, fuzzy -msgid "Outputs" -msgstr "Saídas" - -#: startup.cc:1155 -#, fuzzy -msgid "Create master bus" -msgstr "usar saída master" - -#: startup.cc:1165 -#, fuzzy -msgid "Automatically connect to physical inputs" -msgstr "conectar automaticamente entradas das trilhas com as portas físicas" - #: startup.cc:1172 startup.cc:1231 msgid "Use only" msgstr "" -#: startup.cc:1225 -#, fuzzy -msgid "Automatically connect outputs" -msgstr "conectar manualmente saídas das trilhas" - #: startup.cc:1247 msgid "... to master bus" msgstr "" @@ -12360,11 +5991,6 @@ msgstr "" msgid "... to physical outputs" msgstr "" -#: startup.cc:1307 -#, fuzzy -msgid "Advanced Session Options" -msgstr "Preferências" - #: step_entry.cc:59 msgid "Step Entry: %1" msgstr "" @@ -12421,11 +6047,6 @@ msgstr "" msgid "Set note length to a sixteenth note" msgstr "" -#: step_entry.cc:195 -#, fuzzy -msgid "Set note length to a thirty-second note" -msgstr "trigésima segunda (32)" - #: step_entry.cc:196 msgid "Set note length to a sixty-fourth note" msgstr "" @@ -12526,66 +6147,26 @@ msgstr "" msgid "Octave" msgstr "" -#: step_entry.cc:597 -#, fuzzy -msgid "Insert Note A" -msgstr "Inserir seleção" - #: step_entry.cc:598 msgid "Insert Note A-sharp" msgstr "" -#: step_entry.cc:599 -#, fuzzy -msgid "Insert Note B" -msgstr "Inserir seleção" - -#: step_entry.cc:600 -#, fuzzy -msgid "Insert Note C" -msgstr "Inserir seleção" - #: step_entry.cc:601 msgid "Insert Note C-sharp" msgstr "" -#: step_entry.cc:602 -#, fuzzy -msgid "Insert Note D" -msgstr "Inserir seleção" - #: step_entry.cc:603 msgid "Insert Note D-sharp" msgstr "" -#: step_entry.cc:604 -#, fuzzy -msgid "Insert Note E" -msgstr "Inserir seleção" - -#: step_entry.cc:605 -#, fuzzy -msgid "Insert Note F" -msgstr "Inserir seleção" - #: step_entry.cc:606 msgid "Insert Note F-sharp" msgstr "" -#: step_entry.cc:607 -#, fuzzy -msgid "Insert Note G" -msgstr "Inserir seleção" - #: step_entry.cc:608 msgid "Insert Note G-sharp" msgstr "" -#: step_entry.cc:610 -#, fuzzy -msgid "Insert a Note-length Rest" -msgstr "Inserir seleção" - #: step_entry.cc:611 msgid "Insert a Snap-length Rest" msgstr "" @@ -12602,16 +6183,6 @@ msgstr "" msgid "Move to Previous Note Length" msgstr "" -#: step_entry.cc:619 -#, fuzzy -msgid "Increase Note Length" -msgstr "fade out na edição" - -#: step_entry.cc:620 -#, fuzzy -msgid "Decrease Note Length" -msgstr "fade out na edição" - #: step_entry.cc:622 msgid "Move to Next Note Velocity" msgstr "" @@ -12680,11 +6251,6 @@ msgstr "" msgid "Set Note Length to 1/2" msgstr "" -#: step_entry.cc:647 -#, fuzzy -msgid "Set Note Length to 1/3" -msgstr "fade out na edição" - #: step_entry.cc:649 msgid "Set Note Length to 1/4" msgstr "" @@ -12766,16 +6332,6 @@ msgstr "" msgid "L:%3d R:%3d Width:%d%%" msgstr "" -#: stereo_panner_editor.cc:35 -#, fuzzy -msgid "Stereo Panner" -msgstr "estéreo" - -#: stereo_panner_editor.cc:49 -#, fuzzy -msgid "Width" -msgstr "escrever" - #: strip_silence_dialog.cc:48 msgid "Strip Silence" msgstr "" @@ -12784,11 +6340,6 @@ msgstr "" msgid "Minimum length" msgstr "" -#: strip_silence_dialog.cc:87 -#, fuzzy -msgid "Fade length" -msgstr "Fade In" - #: tempo_dialog.cc:43 tempo_dialog.cc:58 msgid "bar:" msgstr "" @@ -12797,58 +6348,6 @@ msgstr "" msgid "beat:" msgstr "" -#: tempo_dialog.cc:45 tempo_dialog.cc:60 -#, fuzzy -msgid "Pulse note" -msgstr "arquivo removido" - -#: tempo_dialog.cc:55 -#, fuzzy -msgid "Edit Tempo" -msgstr "Editar com" - -#: tempo_dialog.cc:76 tempo_dialog.cc:77 tempo_dialog.cc:282 -#: tempo_dialog.cc:283 -#, fuzzy -msgid "whole" -msgstr "toda (1)" - -#: tempo_dialog.cc:78 tempo_dialog.cc:79 tempo_dialog.cc:284 -#: tempo_dialog.cc:285 -#, fuzzy -msgid "second" -msgstr "Segundos" - -#: tempo_dialog.cc:80 tempo_dialog.cc:81 tempo_dialog.cc:286 -#: tempo_dialog.cc:287 -#, fuzzy -msgid "third" -msgstr "terceira (3)" - -#: tempo_dialog.cc:82 tempo_dialog.cc:83 tempo_dialog.cc:288 -#: tempo_dialog.cc:289 -#, fuzzy -msgid "quarter" -msgstr "quarta (4)" - -#: tempo_dialog.cc:84 tempo_dialog.cc:85 tempo_dialog.cc:290 -#: tempo_dialog.cc:291 -#, fuzzy -msgid "eighth" -msgstr "Altura" - -#: tempo_dialog.cc:86 tempo_dialog.cc:87 tempo_dialog.cc:292 -#: tempo_dialog.cc:293 -#, fuzzy -msgid "sixteenth" -msgstr "décima sexta (16)" - -#: tempo_dialog.cc:88 tempo_dialog.cc:89 tempo_dialog.cc:294 -#: tempo_dialog.cc:295 -#, fuzzy -msgid "thirty-second" -msgstr "trigésima segunda (32)" - #: tempo_dialog.cc:90 tempo_dialog.cc:91 tempo_dialog.cc:296 #: tempo_dialog.cc:297 msgid "sixty-fourth" @@ -12859,45 +6358,10 @@ msgstr "" msgid "one-hundred-twenty-eighth" msgstr "" -#: tempo_dialog.cc:120 -#, fuzzy -msgid "Beats per minute:" -msgstr "Batimentos por minuto" - #: tempo_dialog.cc:152 msgid "Tempo begins at" msgstr "" -#: tempo_dialog.cc:240 -#, fuzzy -msgid "incomprehensible pulse note type (%1)" -msgstr "tipo de nota entrada incompreensível (%1)" - -#: tempo_dialog.cc:266 -#, fuzzy -msgid "Edit Meter" -msgstr "Modo de edição" - -#: tempo_dialog.cc:314 -#, fuzzy -msgid "Note value:" -msgstr "Valor do campo:" - -#: tempo_dialog.cc:315 -#, fuzzy -msgid "Beats per bar:" -msgstr "Batimentos por compasso" - -#: tempo_dialog.cc:330 -#, fuzzy -msgid "Meter begins at bar:" -msgstr "Denominador métrico" - -#: tempo_dialog.cc:441 -#, fuzzy -msgid "incomprehensible meter note type (%1)" -msgstr "tipo de nota entrada incompreensível (%1)" - #: theme_manager.cc:57 msgid "Dark Theme" msgstr "" @@ -12906,11 +6370,6 @@ msgstr "" msgid "Light Theme" msgstr "" -#: theme_manager.cc:59 -#, fuzzy -msgid "Restore Defaults" -msgstr "Resultados" - #: theme_manager.cc:60 msgid "Draw \"flat\" buttons" msgstr "" @@ -12919,16 +6378,6 @@ msgstr "" msgid "All floating windows are dialogs" msgstr "" -#: theme_manager.cc:62 -#, fuzzy -msgid "Draw waveforms with color gradient" -msgstr "mostra toda a automação" - -#: theme_manager.cc:68 -#, fuzzy -msgid "Object" -msgstr "objeto" - #: theme_manager.cc:123 msgid "" "Mark all floating windows to be type \"Dialog\" rather than using \"Utility" @@ -12967,53 +6416,18 @@ msgstr "" msgid "Minimize time distortion" msgstr "" -#: time_fx_dialog.cc:66 -#, fuzzy -msgid "Preserve Formants" -msgstr "Formato Nativo" - -#: time_fx_dialog.cc:71 -#, fuzzy -msgid "TimeFXDialog" -msgstr "Diálogo esticar no tempo" - #: time_fx_dialog.cc:74 msgid "Pitch Shift Audio" msgstr "" -#: time_fx_dialog.cc:76 -#, fuzzy -msgid "Time Stretch Audio" -msgstr "ardour: esticar no tempo" - #: time_fx_dialog.cc:104 transpose_dialog.cc:41 msgid "Octaves:" msgstr "" -#: time_fx_dialog.cc:109 transpose_dialog.cc:46 -#, fuzzy -msgid "Semitones:" -msgstr "Semitons" - -#: time_fx_dialog.cc:114 -#, fuzzy -msgid "Cents:" -msgstr "Centro" - #: time_fx_dialog.cc:122 msgid "Time|Shift" msgstr "" -#: time_fx_dialog.cc:146 time_fx_dialog.cc:149 -#, fuzzy -msgid "TimeFXButton" -msgstr "Botão esticar no tempo" - -#: time_fx_dialog.cc:154 -#, fuzzy -msgid "Stretch/Shrink" -msgstr "Esticar/Encolher isto" - #: time_fx_dialog.cc:164 msgid "Progress" msgstr "" @@ -13030,25 +6444,10 @@ msgstr "Parar gravação no final do ponto-automático" msgid "programming error: request for non-existent audio range (%1)!" msgstr "" -#: transpose_dialog.cc:30 -#, fuzzy -msgid "Transpose MIDI" -msgstr "Tradutores" - -#: transpose_dialog.cc:55 -#, fuzzy -msgid "Transpose" -msgstr "Tradutores" - #: ui_config.cc:82 ui_config.cc:113 msgid "Loading default ui configuration file %1" msgstr "" -#: ui_config.cc:85 ui_config.cc:116 -#, fuzzy -msgid "cannot read default ui configuration file \"%1\"" -msgstr "não foi possível abrir o arquivo de imagem \"%1\"" - #: ui_config.cc:90 ui_config.cc:121 msgid "default ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -13057,11 +6456,6 @@ msgstr "" msgid "Loading user ui configuration file %1" msgstr "" -#: ui_config.cc:137 -#, fuzzy -msgid "cannot read ui configuration file \"%1\"" -msgstr "não foi possível abrir o arquivo de imagem \"%1\"" - #: ui_config.cc:142 msgid "user ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -13098,16 +6492,6 @@ msgstr "" msgid "VerboseCanvasCursor" msgstr "" -#: add_video_dialog.cc:55 -#, fuzzy -msgid "Set Video Track" -msgstr "Adicionar Trilha/Barramento" - -#: add_video_dialog.cc:63 -#, fuzzy -msgid "Launch External Video Monitor" -msgstr "Usar Monitoração de Hardware" - #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -13120,26 +6504,6 @@ msgstr "" msgid "VideoServerIndex" msgstr "" -#: add_video_dialog.cc:129 -#, fuzzy -msgid "Video files" -msgstr "Quadros de Ãudio" - -#: add_video_dialog.cc:164 -#, fuzzy -msgid "Video Information" -msgstr "Informação do arquivo de áudio" - -#: add_video_dialog.cc:167 -#, fuzzy -msgid "Start:" -msgstr "Inicio:" - -#: add_video_dialog.cc:173 -#, fuzzy -msgid "Frame rate:" -msgstr "Separar Região" - #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -13185,11 +6549,6 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" -#: video_monitor.cc:281 -#, fuzzy -msgid "Video Monitor: File Not Found." -msgstr "Usar Monitoração de Hardware" - #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -13206,25 +6565,10 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:56 -#, fuzzy -msgid "Transcode/Import Video File " -msgstr "Exportar sessão para arquivo de áudio" - -#: transcode_video_dialog.cc:58 -#, fuzzy -msgid "Output File:" -msgstr "Saídas" - #: transcode_video_dialog.cc:61 export_video_dialog.cc:73 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:63 -#, fuzzy -msgid "Height = " -msgstr "Altura" - #: transcode_video_dialog.cc:66 msgid "Manual Override" msgstr "" @@ -13233,11 +6577,6 @@ msgstr "" msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:107 -#, fuzzy -msgid "File Information" -msgstr "Informação do arquivo de áudio" - #: transcode_video_dialog.cc:113 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " @@ -13255,11 +6594,6 @@ msgstr "" msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:136 -#, fuzzy -msgid "Duration:" -msgstr "normalizar região" - #: transcode_video_dialog.cc:138 msgid "Codec:" msgstr "" @@ -13272,11 +6606,6 @@ msgstr "" msgid "??" msgstr "" -#: transcode_video_dialog.cc:176 -#, fuzzy -msgid "Import Settings" -msgstr "Preferências" - #: transcode_video_dialog.cc:181 msgid "Do Not Import Video" msgstr "" @@ -13285,11 +6614,6 @@ msgstr "" msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:184 -#, fuzzy -msgid "Import/Transcode Video to Session" -msgstr "Exportar região" - #: transcode_video_dialog.cc:198 msgid "Scale Video: Width = " msgstr "" @@ -13302,16 +6626,6 @@ msgstr "" msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:225 -#, fuzzy -msgid "Extract Audio:" -msgstr "Exportar região" - -#: transcode_video_dialog.cc:345 -#, fuzzy -msgid "Extracting Audio.." -msgstr "Exportar região" - #: transcode_video_dialog.cc:348 msgid "Audio Extraction Failed." msgstr "" @@ -13324,11 +6638,6 @@ msgstr "" msgid "Transcoding Failed." msgstr "" -#: transcode_video_dialog.cc:491 -#, fuzzy -msgid "Save Transcoded Video File" -msgstr "Exportar sessão para arquivo de áudio" - #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -13356,11 +6665,6 @@ msgstr "" msgid "Listen Address:" msgstr "" -#: video_server_dialog.cc:125 -#, fuzzy -msgid "Listen Port:" -msgstr "Audição" - #: video_server_dialog.cc:130 msgid "Cache Size:" msgstr "" @@ -13398,26 +6702,6 @@ msgstr "" msgid "Confirm Overwrite" msgstr "" -#: utils_videotl.cc:64 -#, fuzzy -msgid "A file with the same name already exists. Do you want to overwrite it?" -msgstr "já existe uma trilha com este nome" - -#: utils_videotl.cc:74 utils_videotl.cc:90 -#, fuzzy -msgid "Cannot create video folder \"%1\" (%2)" -msgstr "Não foi possível ler o arquivo: %1 (%2)." - -#: export_video_dialog.cc:66 -#, fuzzy -msgid "Export Video File " -msgstr "Exportar sessão para arquivo de áudio" - -#: export_video_dialog.cc:70 -#, fuzzy -msgid "Video:" -msgstr "Começo de regiões" - #: export_video_dialog.cc:74 msgid "Scale Video (W x H):" msgstr "" @@ -13426,11 +6710,6 @@ msgstr "" msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:80 -#, fuzzy -msgid "Normalize Audio" -msgstr "Normalizar" - #: export_video_dialog.cc:81 msgid "2 Pass Encoding" msgstr "" @@ -13439,11 +6718,6 @@ msgstr "" msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:84 -#, fuzzy -msgid "Deinterlace" -msgstr "interno" - #: export_video_dialog.cc:85 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" @@ -13452,11 +6726,6 @@ msgstr "" msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:87 -#, fuzzy -msgid "Include Session Metadata" -msgstr "Importar seleção" - #: export_video_dialog.cc:107 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " @@ -13464,26 +6733,6 @@ msgid "" "information." msgstr "" -#: export_video_dialog.cc:117 -#, fuzzy -msgid "Output:" -msgstr "Saídas" - -#: export_video_dialog.cc:127 -#, fuzzy -msgid "Input:" -msgstr "Inspetador de Trilhas/Barramentos" - -#: export_video_dialog.cc:138 -#, fuzzy -msgid "Audio:" -msgstr "Audição" - -#: export_video_dialog.cc:140 -#, fuzzy -msgid "Master Bus" -msgstr "usar saída master" - #: export_video_dialog.cc:145 msgid "from the %1 session's start to the session's end" msgstr "" @@ -13496,61 +6745,6 @@ msgstr "" msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:184 -#, fuzzy -msgid "Settings:" -msgstr "Avançado ..." - -#: export_video_dialog.cc:192 -#, fuzzy -msgid "Range:" -msgstr "Intervalo" - -#: export_video_dialog.cc:195 -#, fuzzy -msgid "Preset:" -msgstr "Reiniciar" - -#: export_video_dialog.cc:198 -#, fuzzy -msgid "Video Codec:" -msgstr "Nome do diretório:" - -#: export_video_dialog.cc:201 -#, fuzzy -msgid "Video KBit/s:" -msgstr "Começo de regiões" - -#: export_video_dialog.cc:204 -#, fuzzy -msgid "Audio Codec:" -msgstr "Quadros de Ãudio" - -#: export_video_dialog.cc:207 -#, fuzzy -msgid "Audio KBit/s:" -msgstr "Quadros de Ãudio" - -#: export_video_dialog.cc:210 -#, fuzzy -msgid "Audio Samplerate:" -msgstr "Separar Região" - -#: export_video_dialog.cc:387 -#, fuzzy -msgid "Normalizing audio" -msgstr "Normalizar" - -#: export_video_dialog.cc:391 -#, fuzzy -msgid "Exporting audio" -msgstr "Exportar região" - -#: export_video_dialog.cc:437 -#, fuzzy -msgid "Exporting Audio..." -msgstr "Exportar região" - #: export_video_dialog.cc:494 msgid "" "Export Video: Cannot query duration of video-file, using duration from " @@ -13581,16 +6775,6 @@ msgstr "" msgid "Transcoding failed." msgstr "" -#: export_video_dialog.cc:948 export_video_dialog.cc:968 -#, fuzzy -msgid "Save Exported Video File" -msgstr "Exportar sessão para arquivo de áudio" - -#: export_video_infobox.cc:30 -#, fuzzy -msgid "Video Export Info" -msgstr "Usar Monitoração de Hardware" - #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -13607,1698 +6791,3 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" - -#, fuzzy -#~ msgid "-Inf" -#~ msgstr "entrada" - -#, fuzzy -#~ msgid "slowest" -#~ msgstr "Menor" - -#, fuzzy -#~ msgid "fast" -#~ msgstr "rapidamente" - -#, fuzzy -#~ msgid "faster" -#~ msgstr "Fades" - -#~ msgid "fastest" -#~ msgstr "rapidamente" - -#~ msgid "Connect" -#~ msgstr "Conectar" - -#, fuzzy -#~ msgid "Add Audio Track" -#~ msgstr "Adicionar Trilha/Barramento" - -#, fuzzy -#~ msgid "Add Audio Bus" -#~ msgstr "Ocultar todos os barramentos de áudio" - -#, fuzzy -#~ msgid "Add MIDI Track" -#~ msgstr "Adicionar Trilha/Barramento" - -#, fuzzy -#~ msgid "Control surfaces" -#~ msgstr "Controle de Saídas" - -#, fuzzy -#~ msgid "Hid" -#~ msgstr "Ocultar" - -#, fuzzy -#~ msgid "Locate to Range Mark" -#~ msgstr "Marcas de Localização" - -#, fuzzy -#~ msgid "Play from Range Mark" -#~ msgstr "Reproduzir intervalo" - -#, fuzzy -#~ msgid "Channel:" -#~ msgstr "cancelar" - -#, fuzzy -#~ msgid "Lck" -#~ msgstr "Trancar" - -#, fuzzy -#~ msgid "Use overlap equivalency for regions" -#~ msgstr "Nova região a partir da seleção" - -#~ msgid "gTortnam" -#~ msgstr "gTortnam" - -#, fuzzy -#~ msgid "could not create a new mixed track" -#~ msgstr "não pôde criar uma nova trilha de áudio" - -#, fuzzy -#~ msgid "could not create new audio bus" -#~ msgid_plural "could not create %1 new audio busses" -#~ msgstr[0] "não pôde criar uma nova trilha de áudio" -#~ msgstr[1] "não pôde criar uma nova trilha de áudio" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were not in use and \n" -#~ "have been moved to: %2\n" -#~ "\n" -#~ "After a restart of %5\n" -#~ "\n" -#~ "Session -> Clean-up -> Flush Wastebasket\n" -#~ "\n" -#~ "will release an additional %3 %4bytes of disk space.\n" -#~ msgstr "" -#~ "Os seguintes %1 %2 não estão em uso.\n" -#~ "Na próxima vez limpe sua lixeira\n" -#~ "isto vai liberar %3 %4bytes\n" -#~ "de espaço no disco rígido" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were deleted from %2,\n" -#~ "releasing %3 %4bytes of disk space" -#~ msgstr "" -#~ "Os seguintes %1 arquivo%2 foram deletados, liberando %3 %4bytes de espaço " -#~ "no disco rígido" - -#, fuzzy -#~ msgid "could only create %1 of %2 new audio %3" -#~ msgstr "não foi possível criar um novo barramento de áudio" - -#~ msgid "Start playback after any locate" -#~ msgstr "Iniciar reprodução após qualquer localização" - -#, fuzzy -#~ msgid "Always Play Range" -#~ msgstr "Reproduzir intervalo" - -#, fuzzy -#~ msgid "Select/Move Objects" -#~ msgstr "selecionar/mover objetos" - -#, fuzzy -#~ msgid "Select/Move Ranges" -#~ msgstr "selecionar/mover intervalos" - -#, fuzzy -#~ msgid "editing|E" -#~ msgstr "Editar com" - -#, fuzzy -#~ msgid "Sharing Editing?" -#~ msgstr "Cancelar importação" - -#, fuzzy -#~ msgid "Disable plugins during recording" -#~ msgstr "Executar plugins enquanto grava" - -#, fuzzy -#~ msgid "Visual|Interface" -#~ msgstr "interno" - -#, fuzzy -#~ msgid "Editing" -#~ msgstr "Editar com" - -#, fuzzy -#~ msgid "Timecode Offset Negative" -#~ msgstr "Compensar SMPTE" - -#, fuzzy -#~ msgid "Crossfades are created" -#~ msgstr "Fade Cruzado em uso" - -#, fuzzy -#~ msgid "to span entire overlap" -#~ msgstr "Trazer região uma camada para frente" - -#, fuzzy -#~ msgid "use existing region fade shape" -#~ msgstr "usar esquema existente" - -#, fuzzy -#~ msgid "Short crossfade length" -#~ msgstr "fade in na edição" - -#, fuzzy -#~ msgid "Add files:" -#~ msgstr "arquivo removido" - -#, fuzzy -#~ msgid "%1 could not start JACK" -#~ msgstr "Não foi possível se conectar ao servidor JACK" - -#, fuzzy -#~ msgid "" -#~ "There are several possible reasons:\n" -#~ "\n" -#~ "1) You requested audio parameters that are not supported..\n" -#~ "2) JACK is running as another user.\n" -#~ "\n" -#~ "Please consider the possibilities, and perhaps try different parameters." -#~ msgstr "" -#~ "Ardour não pôde se conectar ao JACK.\n" -#~ "Podem existir várias razões para isso:\n" -#~ "\n" -#~ "1) JACK não está rodando.\n" -#~ "2) JACK está rodando como outro usuário, talvez o root.\n" -#~ "3) Já existe um outro cliente chamado \"ardour\".\n" -#~ "\n" -#~ "Por favor, considere essas razões, e talvez (re)inicie o JACK." - -#, fuzzy -#~ msgid "Mixer" -#~ msgstr "Mixer" - -#, fuzzy -#~ msgid "Show All Crossfades" -#~ msgstr "Mostrar todos os barramentos de áudio" - -#, fuzzy -#~ msgid "Edit Crossfade" -#~ msgstr "Fade cruzado" - -#~ msgid "Out (dry)" -#~ msgstr "Saída (flat)" - -#~ msgid "In (dry)" -#~ msgstr "Entrada (flat)" - -#~ msgid "With Pre-roll" -#~ msgstr "Com pré-rolagem" - -#~ msgid "With Post-roll" -#~ msgstr "Com pós-rolagem" - -#, fuzzy -#~ msgid "Edit crossfade" -#~ msgstr "Editar fade" - -#, fuzzy -#~ msgid "Route Groups" -#~ msgstr "Editar Grupos" - -#~ msgid "Unmute" -#~ msgstr "Desmudo" - -#, fuzzy -#~ msgid "Convert to Full" -#~ msgstr "Exportar para CD" - -#, fuzzy -#~ msgid "Nudge Entire Track Backward" -#~ msgstr "Retorcar toda a trilha para frente" - -#, fuzzy -#~ msgid "Nudge Track After Edit Point Backward" -#~ msgstr "Retocar trilha após o cursor de edição" - -#, fuzzy -#~ msgid "Nudge Region/Selection Backwards" -#~ msgstr "Voltar o mínimo região/seleção" - -#~ msgid "Undo" -#~ msgstr "Desfazer" - -#, fuzzy -#~ msgid "Nudge Next Backward" -#~ msgstr "Retorcar toda a trilha para frente" - -#, fuzzy -#~ msgid "Add Range Marker(s)" -#~ msgstr "Marcas de Intervalos" - -#, fuzzy -#~ msgid "Envelope Visible" -#~ msgstr "visível" - -#, fuzzy -#~ msgid "Rel" -#~ msgstr "Fazer" - -#, fuzzy -#~ msgid "Sel" -#~ msgstr "Fazer" - -#, fuzzy -#~ msgid "region gain envelope visible" -#~ msgstr "mostrar envelope de ganho" - -#, fuzzy -#~ msgid "time stretch" -#~ msgstr "ardour: esticar no tempo" - -#, fuzzy -#~ msgid "Input channels:" -#~ msgstr "cancelar" - -#, fuzzy -#~ msgid "Output channels:" -#~ msgstr "cancelar" - -#, fuzzy -#~ msgid "Advanced options" -#~ msgstr "Preferências" - -#, fuzzy -#~ msgid "New From" -#~ msgstr "Nova Cópia" - -#, fuzzy -#~ msgid "Option-" -#~ msgstr "Preferências" - -#, fuzzy -#~ msgid "Control-" -#~ msgstr "Controle de Saídas" - -#, fuzzy -#~ msgid "Set value to playhead" -#~ msgstr "Marcar aqui" - -#, fuzzy -#~ msgid "Could not create user configuration directory" -#~ msgstr "não pôde criar uma nova trilha de áudio" - -#, fuzzy -#~ msgid "MIDI Thru" -#~ msgstr "MIDI" - -#~ msgid "signal" -#~ msgstr "sinal" - -#~ msgid "close" -#~ msgstr "fechar" - -#, fuzzy -#~ msgid "Controls..." -#~ msgstr "Controle de Saídas" - -#, fuzzy -#~ msgid "Quantize Type" -#~ msgstr "Sistema de arquivos" - -#, fuzzy -#~ msgid "Secondary clock delta to edit cursor" -#~ msgstr "Do início ao cursor de edição" - -#, fuzzy -#~ msgid "Route active state" -#~ msgstr "estado do automação" - -#, fuzzy -#~ msgid "Crossfades active" -#~ msgstr "Fade Cruzado em uso" - -#, fuzzy -#~ msgid "Layering model" -#~ msgstr "Camada" - -#, fuzzy -#~ msgid "later is higher" -#~ msgstr "Enviar região uma camada para trás" - -#, fuzzy -#~ msgid "most recently moved or added is higher" -#~ msgstr "Enviar região uma camada para trás" - -#, fuzzy -#~ msgid "most recently added is higher" -#~ msgstr "Enviar região uma camada para trás" - -#, fuzzy -#~ msgid "Broadcast WAVE metadata" -#~ msgstr "Broadcast WAVE/vírgula flutuante" - -#, fuzzy -#~ msgid "Page:" -#~ msgstr "Usual: " - -#~ msgid "second (2)" -#~ msgstr "segunda (2)" - -#~ msgid "eighth (8)" -#~ msgstr "oitava (8)" - -#~ msgid "garbaged note type entry (%1)" -#~ msgstr "tipo de nota entrada descartada (%1)" - -#, fuzzy -#~ msgid "Strict Linear" -#~ msgstr "Linear" - -#~ msgid "" -#~ "pre\n" -#~ "roll" -#~ msgstr "" -#~ "pré\n" -#~ "rolagem" - -#~ msgid "" -#~ "post\n" -#~ "roll" -#~ msgstr "" -#~ "pós\n" -#~ "rolagem" - -#, fuzzy -#~ msgid "" -#~ "time\n" -#~ "master" -#~ msgstr "Modo supervisor de tempo (JACK)" - -#, fuzzy -#~ msgid "AUDITION" -#~ msgstr "AUDIÇÃO" - -#~ msgid "SOLO" -#~ msgstr "SOLO" - -#, fuzzy -#~ msgid "DSP: %5.1f%%" -#~ msgstr "DSP Carregada: %.1f%%" - -#, fuzzy -#~ msgid "Disk: 24hrs+" -#~ msgstr "espaço: 24hrs+" - -#, fuzzy -#~ msgid "External" -#~ msgstr "interno" - -#~ msgid "automation" -#~ msgstr "automação" - -#, fuzzy -#~ msgid "Delete Unused" -#~ msgstr "Apagar com" - -#, fuzzy -#~ msgid "Solo/Mute" -#~ msgstr "Solo" - -#, fuzzy -#~ msgid "Activate all" -#~ msgstr "Ativar" - -#~ msgid "A track already exists with that name" -#~ msgstr "já existe uma trilha com este nome" - -#, fuzzy -#~ msgid "layer-display" -#~ msgstr "Visualização" - -#, fuzzy -#~ msgid "Cancelling.." -#~ msgstr "Cancelar" - -#~ msgid "Off" -#~ msgstr "Desligar" - -#~ msgid "Smaller" -#~ msgstr "Menor" - -#~ msgid "quit" -#~ msgstr "sair" - -#~ msgid "session" -#~ msgstr "sessão" - -#~ msgid "snapshot" -#~ msgstr "capturar instantâneo" - -#, fuzzy -#~ msgid "Save Mix Template" -#~ msgstr "Salvar Esquema..." - -#, fuzzy -#~ msgid "Clean Up" -#~ msgstr "Limpar" - -#~ msgid "Select semitones or %%-age for speed display" -#~ msgstr "Selecionar semitons ou percentual para a velocidade da tela" - -#~ msgid "Current transport speed" -#~ msgstr "Velocidade atual do transporte" - -#~ msgid "sprung" -#~ msgstr "retornável" - -#~ msgid "wheel" -#~ msgstr "fixo" - -#, fuzzy -#~ msgid "stop" -#~ msgstr "parado" - -#~ msgid "Cleanup" -#~ msgstr "Limpar" - -#, fuzzy -#~ msgid "DSP: 100.0%" -#~ msgstr "DSP Carregada: %.1f%%" - -#, fuzzy -#~ msgid "Extend Range to Start of Region" -#~ msgstr "Ir para o início da sessão" - -#, fuzzy -#~ msgid "Key Mouse" -#~ msgstr "Teclado/Mouse" - -#, fuzzy -#~ msgid "Center Active Marker" -#~ msgstr "Remover Marca" - -#, fuzzy -#~ msgid "Brush at Mouse" -#~ msgstr "Colar à mouse" - -#, fuzzy -#~ msgid "fixed time region copy" -#~ msgstr "região aparado" - -#, fuzzy -#~ msgid "region copy" -#~ msgstr "Sincronizações de região" - -#, fuzzy -#~ msgid "timestretch" -#~ msgstr "ardour: esticar no tempo" - -#, fuzzy -#~ msgid "extend selection" -#~ msgstr "Separar Seleção" - -#~ msgid "Clear tempo" -#~ msgstr "Apagar andamento" - -#~ msgid "Clear meter" -#~ msgstr "Apagar meter" - -#, fuzzy -#~ msgid "Default Channel" -#~ msgstr "Separar Canais" - -#, fuzzy -#~ msgid "input" -#~ msgstr "%1 entrada" - -#, fuzzy -#~ msgid "" -#~ "Do you really want to remove bus \"%1\" ?\n" -#~ "\n" -#~ "You may also lose the playlist used by this track.\n" -#~ "\n" -#~ "(This action cannot be undone, and the session file will be overwritten)" -#~ msgstr "" -#~ "Tem certeza de que deseja remover a trilha \"%1\" ?\n" -#~ "(não será possível voltar)" - -#, fuzzy -#~ msgid "insert file" -#~ msgstr "Inserir arquivo de áudio externo" - -#, fuzzy -#~ msgid "region drag" -#~ msgstr "Cortar região pela intervalo" - -#, fuzzy -#~ msgid "Drag region brush" -#~ msgstr "normalizar região" - -#, fuzzy -#~ msgid "selection grab" -#~ msgstr "Seleção" - -#, fuzzy -#~ msgid "fill selection" -#~ msgstr "Reproduzir seleção continuamente" - -#, fuzzy -#~ msgid "duplicate region" -#~ msgstr "Loop região selecionada" - -#, fuzzy -#~ msgid "C" -#~ msgstr "CD" - -#, fuzzy -#~ msgid "link" -#~ msgstr "entrada" - -#~ msgid "Reset all" -#~ msgstr "reiniciar todos" - -#, fuzzy -#~ msgid "Set tempo map" -#~ msgstr "remover marca" - -#, fuzzy -#~ msgid "" -#~ "%1\n" -#~ "(built with ardour/gtk %2.%3.%4 libardour: %5.%6.%7)" -#~ msgstr "" -#~ "Ardour: %1\n" -#~ "(construído com ardour/gtk %2.%3.%4 libardour: %5.%6.%7)" - -#~ msgid "ardour: add track/bus" -#~ msgstr "ardour: adicionar trilhas/barramento" - -#~ msgid "Name (template)" -#~ msgstr "Nome (esquema)" - -#~ msgid "" -#~ "punch\n" -#~ "in" -#~ msgstr "" -#~ "iniciar\n" -#~ "inserção" - -#~ msgid "" -#~ "punch\n" -#~ "out" -#~ msgstr "" -#~ "finalizar\n" -#~ "inserção" - -#~ msgid "" -#~ "auto\n" -#~ "return" -#~ msgstr "" -#~ "retorno\n" -#~ "automático" - -#~ msgid "" -#~ "auto\n" -#~ "play" -#~ msgstr "" -#~ "reprodução\n" -#~ "automática" - -#~ msgid "click" -#~ msgstr "batimento" - -#~ msgid "ardour: save session?" -#~ msgstr "ardour: salvar sessão?" - -# -#~ msgid "open session" -#~ msgstr "abrir sessão" - -#, fuzzy -#~ msgid "Ardour sessions" -#~ msgstr "ardour: salvar sessão?" - -#~ msgid "Patience is a virtue.\n" -#~ msgstr "Paciência é uma virtude.\n" - -#~ msgid "Unable to create all required ports" -#~ msgstr "Impossível criar todas as portas solicitadas" - -#~ msgid "No Stream" -#~ msgstr "Sem fluxo" - -#~ msgid "" -#~ "You do not have write access to this session.\n" -#~ "This prevents the session from being loaded." -#~ msgstr "" -#~ "Você não tem permissão de escrita nesta sessão\n" -#~ "Isto impede que a sessão seja aberta." - -#~ msgid "ardour: cleanup" -#~ msgstr "ardour: limpar" - -#~ msgid "ardour_cleanup" -#~ msgstr "ardour_limpar" - -#~ msgid "ardour: clock" -#~ msgstr "ardour: relógio" - -#~ msgid "st" -#~ msgstr "o." - -#, fuzzy -#~ msgid "Sound File Browser" -#~ msgstr "Biblioteca de Ãudio" - -#, fuzzy -#~ msgid "Export selection to audiofile..." -#~ msgstr "Exportar sessão para arquivo de áudio" - -#, fuzzy -#~ msgid "Export range markers to audiofile..." -#~ msgstr "Exportar intervalo para arquivo de áudio" - -#~ msgid "Track/Bus Inspector" -#~ msgstr "Inspetador de Trilhas/Barramentos" - -#, fuzzy -#~ msgid "Colors" -#~ msgstr "Cor" - -#, fuzzy -#~ msgid "" -#~ "Punch\n" -#~ "in" -#~ msgstr "" -#~ "iniciar\n" -#~ "inserção" - -#, fuzzy -#~ msgid "Connect new track outputs to hardware" -#~ msgstr "Conectar novas faixas automaticamente" - -#, fuzzy -#~ msgid "Manually connect new track outputs" -#~ msgstr "conectar manualmente saídas das trilhas" - -#, fuzzy -#~ msgid "Hardware monitoring" -#~ msgstr "Usar Monitoração de Hardware" - -#, fuzzy -#~ msgid "Software monitoring" -#~ msgstr "Usar Monitoração de Software" - -#, fuzzy -#~ msgid "Automatically create crossfades" -#~ msgstr "Fade cruzado automático no intervalo sobreposto" - -#~ msgid "Display Height" -#~ msgstr "Altura" - -#~ msgid "Show waveforms" -#~ msgstr "Mostrar formas de onda áudio" - -#~ msgid "a track already exists with that name" -#~ msgstr "já existe uma trilha com este nome" - -#~ msgid "gain" -#~ msgstr "ganho" - -#~ msgid "pan" -#~ msgstr "pan" - -#~ msgid "Current: %1" -#~ msgstr "Atual: %1" - -#~ msgid "clear track" -#~ msgstr "limpar trilha" - -#, fuzzy -#~ msgid "height" -#~ msgstr "Altura" - -#~ msgid "ardour: x-fade edit" -#~ msgstr "ardour: editar cross fade" - -#~ msgid "SMPTE Frames" -#~ msgstr "SMPTE Frames" - -#~ msgid "Edit Cursor" -#~ msgstr "Cursor de Edição" - -#~ msgid "object" -#~ msgstr "objeto" - -#~ msgid "zoom" -#~ msgstr "zoom" - -#~ msgid "Zoom out" -#~ msgstr "Menos Zoom" - -#~ msgid "Chunks" -#~ msgstr "Trechos" - -#~ msgid "Popup region editor" -#~ msgstr "Editor de região" - -#, fuzzy -#~ msgid "Analyze region" -#~ msgstr "Reproduzir região" - -#~ msgid "DeNormalize" -#~ msgstr "Desnormalizar" - -#, fuzzy -#~ msgid "Nudge fwd" -#~ msgstr "Retocar" - -#, fuzzy -#~ msgid "Nudge bwd" -#~ msgstr "Retocar" - -#~ msgid "Edit cursor to end" -#~ msgstr "Do cursor de edição ao final" - -#~ msgid "Destroy" -#~ msgstr "Remover definitavente" - -#~ msgid "Loop range" -#~ msgstr "Loop no intervalo" - -#, fuzzy -#~ msgid "Select all in range" -#~ msgstr "Selecionar tudo na trilha" - -#, fuzzy -#~ msgid "Duplicate range" -#~ msgstr "Duplicar" - -#~ msgid "Create chunk from range" -#~ msgstr "Criar trecho a partir da intervalo" - -#, fuzzy -#~ msgid "Bounce range" -#~ msgstr "região" - -#, fuzzy -#~ msgid "Export range" -#~ msgstr "Exportar região" - -#, fuzzy -#~ msgid "Select all before playhead" -#~ msgstr "Marcar aqui" - -#, fuzzy -#~ msgid "Select all between cursors" -#~ msgstr "Do início ao cursor de edição" - -#~ msgid "Paste at edit cursor" -#~ msgstr "Colar à cursor de edição" - -#~ msgid "Paste at mouse" -#~ msgstr "Colar à mouse" - -#~ msgid "Insert chunk" -#~ msgstr "Inserir trecho" - -#~ msgid "Nudge entire track bwd" -#~ msgstr "Retorcar toda a trilha para trás" - -#~ msgid "Nudge track after edit cursor bwd" -#~ msgstr "Retocar toda a trilha, do cursor de edição para trás" - -#, fuzzy -#~ msgid "... as new region" -#~ msgstr "normalizar região" - -#~ msgid "Import audio (copy)" -#~ msgstr "Importar áudio (copiar)" - -#~ msgid "Duplicate how many times?" -#~ msgstr "Duplicar quantas vezes?" - -#, fuzzy -#~ msgid "Move edit cursor" -#~ msgstr "Colar à cursor de edição" - -#, fuzzy -#~ msgid "ZoomFocus" -#~ msgstr "Foco de Zoom" - -#, fuzzy -#~ msgid "Edit Cursor to Range End" -#~ msgstr "Do cursor de edição ao final" - -#, fuzzy -#~ msgid "Select All Between Cursors" -#~ msgstr "Reproduzir a partir do cursor" - -#, fuzzy -#~ msgid "Add Location from Playhead" -#~ msgstr "Marcar aqui" - -#, fuzzy -#~ msgid "Center Edit Cursor" -#~ msgstr "Cursor de Edição" - -#, fuzzy -#~ msgid "Edit to Playhead" -#~ msgstr "Marcar aqui" - -#, fuzzy -#~ msgid "Align Regions End" -#~ msgstr "normalizar região" - -#, fuzzy -#~ msgid "Align Regions End Relative" -#~ msgstr "Alinhamento Relativo" - -#, fuzzy -#~ msgid "Align Regions Sync Relative" -#~ msgstr "Alinhamento Relativo" - -#, fuzzy -#~ msgid "Mute/Unmute Region" -#~ msgstr "Criar Região" - -#, fuzzy -#~ msgid "Duplicate Region" -#~ msgstr "Loop região selecionada" - -#, fuzzy -#~ msgid "crop" -#~ msgstr "copiar" - -#, fuzzy -#~ msgid "Insert Chunk" -#~ msgstr "Inserir trecho" - -#, fuzzy -#~ msgid "Snap to SMPTE frame" -#~ msgstr "SMPTE Frames" - -#, fuzzy -#~ msgid "Snap to SMPTE seconds" -#~ msgstr "SMPTE segundo" - -#, fuzzy -#~ msgid "Show Waveforms" -#~ msgstr "Mostrar formas de onda áudio" - -#, fuzzy -#~ msgid "Show Waveforms While Recording" -#~ msgstr "Mostrar formas de onda áudio quando gravando" - -#, fuzzy -#~ msgid "Add existing audio to session" -#~ msgstr "mostra a automação existente" - -#, fuzzy -#~ msgid "ardour: importing %1" -#~ msgstr "ardour: exportar" - -#, fuzzy -#~ msgid "keyboard selection" -#~ msgstr "Separar Seleção" - -#, fuzzy -#~ msgid "Hide Mark" -#~ msgstr "ocultar esta trilha" - -#~ msgid "ardour: rename mark" -#~ msgstr "ardour: renomear marca" - -#, fuzzy -#~ msgid "ardour: rename range" -#~ msgstr "ardour: renomear região" - -#, fuzzy -#~ msgid "select on click" -#~ msgstr "Usar com metrônomo" - -#, fuzzy -#~ msgid "cancel selection" -#~ msgstr "Reproduzir seleção" - -#, fuzzy -#~ msgid "move selection" -#~ msgstr "Saltar Seleção" - -#, fuzzy -#~ msgid "this region" -#~ msgstr "mutar esta região" - -#, fuzzy -#~ msgid "Yes, destroy them." -#~ msgstr "Sim, remova definitivamente isto." - -#, fuzzy -#~ msgid "select all between cursors" -#~ msgstr "Reproduzir a partir do cursor" - -#~ msgid "Place the edit cursor at the desired sync point" -#~ msgstr "Coloque o cursor de edição no ponto de sincronia desejado" - -#, fuzzy -#~ msgid "set sync from edit cursor" -#~ msgstr "Reproduzir a partir do cursor" - -#, fuzzy -#~ msgid "naturalize" -#~ msgstr "Normalizar" - -#, fuzzy -#~ msgid "ardour: freeze" -#~ msgstr "ardour: renomear região" - -#, fuzzy -#~ msgid "paste chunk" -#~ msgstr "Criar trecho" - -#, fuzzy -#~ msgid "clear playlist" -#~ msgstr "Nome para a imagem capturada" - -#, fuzzy -#~ msgid "Name for Chunk:" -#~ msgstr "nome para o trecho" - -#, fuzzy -#~ msgid "Create Chunk" -#~ msgstr "Criar trecho" - -#~ msgid "Forget it" -#~ msgstr "Esqueça isto" - -#~ msgid "ardour: timestretch" -#~ msgstr "ardour: esticar no tempo" - -#~ msgid "TimeStretchProgress" -#~ msgstr "Progresso esticar no tempo" - -#~ msgid "22.05kHz" -#~ msgstr "22.05kHz" - -#~ msgid "44.1kHz" -#~ msgstr "44.1kHz" - -#~ msgid "48kHz" -#~ msgstr "48kHz" - -#~ msgid "88.2kHz" -#~ msgstr "88.2kHz" - -#~ msgid "96kHz" -#~ msgstr "96kHz" - -#~ msgid "192kHz" -#~ msgstr "192kHz" - -#~ msgid "best" -#~ msgstr "excelente" - -#~ msgid "intermediate" -#~ msgstr "intermediário" - -#~ msgid "stereo" -#~ msgstr "estéreo" - -#~ msgid "ardour: export" -#~ msgstr "ardour: exportar" - -#, fuzzy -#~ msgid "Editor: cannot open \"%1\" as export file for CD toc file" -#~ msgstr "" -#~ "Editor: não foi possível abrir o arquivo \"%1\" para exportar marcadores " -#~ "de faixa de CD" - -#, fuzzy -#~ msgid "Editor: cannot open \"%1\" as export file for CD cue file" -#~ msgstr "" -#~ "Editor: não foi possível abrir o arquivo \"%1\" para exportar marcadores " -#~ "de faixa de CD" - -#, fuzzy -#~ msgid "add gain automation event" -#~ msgstr "adicionar evento de automação para " - -#, fuzzy -#~ msgid "0.5 seconds" -#~ msgstr "Segundos" - -#, fuzzy -#~ msgid "1.5 seconds" -#~ msgstr "Segundos" - -#, fuzzy -#~ msgid "2 seconds" -#~ msgstr "Segundos" - -#, fuzzy -#~ msgid "2.5 seconds" -#~ msgstr "Segundos" - -#, fuzzy -#~ msgid "3 seconds" -#~ msgstr "Segundos" - -#, fuzzy -#~ msgid "Remove Frame" -#~ msgstr "Remover Campo" - -#, fuzzy -#~ msgid "Image Frame" -#~ msgstr "Quadros" - -#, fuzzy -#~ msgid "Add Input" -#~ msgstr "adicionar entrada" - -#, fuzzy -#~ msgid "Add Output" -#~ msgstr "adicionar saída" - -#, fuzzy -#~ msgid "Remove Input" -#~ msgstr "Remover ponto de sincronia" - -#, fuzzy -#~ msgid "Disconnect All" -#~ msgstr "Desconectar" - -#~ msgid "Available connections" -#~ msgstr "Conexões disponíveis" - -#~ msgid "KeyboardTarget: keyname \"%1\" is unknown." -#~ msgstr "KeyboardTarget: nome da tecla \"%1\" é desconhecido." - -#~ msgid "You have %1 keys bound to \"mod1\"" -#~ msgstr "Você já tem %1 atalho de teclado para \"mod1\"" - -#~ msgid "You have %1 keys bound to \"mod2\"" -#~ msgstr "Você já tem %1 atalho de teclado para \"mod2\"" - -#~ msgid "You have %1 keys bound to \"mod3\"" -#~ msgstr "Você já tem %1 atalho de teclado para \"mod3\"" - -#~ msgid "You have %1 keys bound to \"mod4\"" -#~ msgstr "Você já tem %1 atalho de teclado para \"mod4\"" - -#~ msgid "You have %1 keys bound to \"mod5\"" -#~ msgstr "Você já tem %1 atalho de teclado para \"mod5\"" - -#~ msgid "Add New Location" -#~ msgstr "Adicionar Nova Localização" - -#~ msgid "ardour: locations" -#~ msgstr "ardour: localizações" - -#, fuzzy -#~ msgid "Location (CD Index) Markers" -#~ msgstr "Marcas de Localização" - -#~ msgid "ardour is killing itself for a clean exit\n" -#~ msgstr "o ardour está se matando para uma saída limpa\n" - -#~ msgid "stopping user interface\n" -#~ msgstr "interrompendo a interface do usuário\n" - -#, fuzzy -#~ msgid "" -#~ "Without a UI style file, ardour will look strange.\n" -#~ " Please set ARDOUR3_UI_RC to point to a valid UI style file" -#~ msgstr "" -#~ "Sem um arquivo de estilo o ardour vai ficar meio esquisito.\n" -#~ "Por favor, configure a variável ambiente ARDOUR_UI_RC para um arquivo " -#~ "válido" - -#, fuzzy -#~ msgid " with libardour " -#~ msgstr " executando com libardour " - -#~ msgid "Could not connect to JACK server as \"%1\"" -#~ msgstr "Não foi possível se conectar ao servidor JACK com \"%1\"" - -#~ msgid "ardour: meter bridge" -#~ msgstr "ardour: VU (medidor volumétrico)" - -#, fuzzy -#~ msgid "New Name for Meter:" -#~ msgstr "Novo nome para VU (medidor volumétrico)" - -#, fuzzy -#~ msgid "Varispeed" -#~ msgstr "velocidade variável" - -#~ msgid "could not register new ports required for that connection" -#~ msgstr "" -#~ "não foi posível registrar portas novas solicitadas por este conneção" - -#, fuzzy -#~ msgid " Input" -#~ msgstr "# Entradas" - -#, fuzzy -#~ msgid "Invert Polarity" -#~ msgstr "polaridade" - -#~ msgid "ardour_mixer" -#~ msgstr "ardour_mixer" - -#, fuzzy -#~ msgid "Port Limit" -#~ msgstr "Esqueça isto" - -# -#, fuzzy -#~ msgid "Open Session File :" -#~ msgstr "abrir sessão" - -#, fuzzy -#~ msgid "ardour: session control" -#~ msgstr "ardour: salvar sessão?" - -#, fuzzy -#~ msgid "select directory" -#~ msgstr "Loop região selecionada" - -#~ msgid "ardour: options editor" -#~ msgstr "ardour: preferências" - -#~ msgid "Paths/Files" -#~ msgstr "Diretórios/Arquivos" - -#~ msgid "session RAID path" -#~ msgstr "diretório para sessão RAID" - -#, fuzzy -#~ msgid "Soundfile Search Paths" -#~ msgstr "Biblioteca de Ãudio" - -#~ msgid "SMPTE Frames/second" -#~ msgstr "SMPTE Frames/segundo" - -#~ msgid "SMPTE Offset" -#~ msgstr "Compensar SMPTE" - -#, fuzzy -#~ msgid "online" -#~ msgstr "linear" - -#, fuzzy -#~ msgid "offline" -#~ msgstr "linear" - -#~ msgid "" -#~ "The auditioner is a dedicated mixer strip used\n" -#~ "for listening to specific regions outside the context\n" -#~ "of the overall mix. It can be connected just like any\n" -#~ "other mixer strip." -#~ msgstr "" -#~ "O auditor é um painel de mistura dedicado\n" -#~ "à escuta de determinadas regiões fora do contexto\n" -#~ "da mistura geral. Pode ser interconectado tal como\n" -#~ "qualquer outro painel de mistura." - -#, fuzzy -#~ msgid " -g, --gtktheme Allow GTK to load a theme\n" -#~ msgstr " -h, --help Mostra esta mensagem\n" - -#, fuzzy -#~ msgid "add pan automation event" -#~ msgstr "adicionar evento de automação para " - -#, fuzzy -#~ msgid "ardour: playlists" -#~ msgstr "ardour: plugins" - -#, fuzzy -#~ msgid "ardour: playlist for " -#~ msgstr "ardour: plugins" - -#~ msgid "ardour: plugins" -#~ msgstr "ardour: plugins" - -#, fuzzy -#~ msgid "Available LADSPA Plugins" -#~ msgstr "LADSPA plugins disponíveis" - -#~ msgid "# Inputs" -#~ msgstr "# Entradas" - -#~ msgid "# Outputs" -#~ msgstr "# Saídas" - -#~ msgid "redirect automation created for non-plugin" -#~ msgstr "redirecionamento automático criado para um não-efeito/não-plugin" - -#, fuzzy -#~ msgid "rename redirect" -#~ msgstr "ardour: renomear região" - -#, fuzzy -#~ msgid "" -#~ "Do you really want to remove all redirects from this track?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Tem certeza de que deseja remover a trilha \"%1\" ?\n" -#~ "(não será possível voltar)" - -#~ msgid "NAME:" -#~ msgstr "NOME:" - -#~ msgid "visible" -#~ msgstr "visível" - -#~ msgid "play" -#~ msgstr "reproduzir" - -#~ msgid "ENVELOPE" -#~ msgstr "ENVELOPE" - -#~ msgid "regions underneath this one cannot be heard" -#~ msgstr "regiões abaixo desta não são ouvidas" - -#~ msgid "prevent any changes to this region" -#~ msgstr "bloquear qualquer ateração nesta região" - -#~ msgid "use the gain envelope during playback" -#~ msgstr "usar envelope de ganho durante a reprodução" - -#~ msgid "use fade in curve during playback" -#~ msgstr "usar curva de fade-in durante reprodução" - -#~ msgid "use fade out curve during playback" -#~ msgstr "usar curva de fade-out durante reprodução" - -#~ msgid "START:" -#~ msgstr "INICIO" - -#~ msgid "END:" -#~ msgstr "FINAL:" - -#~ msgid "LENGTH:" -#~ msgstr "TAMANHO:" - -#~ msgid "FADE IN" -#~ msgstr "FADE IN" - -#~ msgid "FADE OUT" -#~ msgstr "FADE OUT" - -#~ msgid "ardour: region " -#~ msgstr "ardour: região" - -#, fuzzy -#~ msgid "Post-fader Redirects" -#~ msgstr "Pós Redirecionamentos" - -#, fuzzy -#~ msgid "ardour: track/bus inspector" -#~ msgstr "ardour: adicionar trilhas/barramento" - -#~ msgid "ardour_route_parameters" -#~ msgstr "ardour_route_parameters" - -#, fuzzy -#~ msgid "ardour: track/bus/inspector: no route selected" -#~ msgstr "ardour: parâmetros de encaminhamento: caminho não seleccionado" - -#, fuzzy -#~ msgid "solo change" -#~ msgstr "Loop no intervalo" - -#~ msgid "ardour: color selection" -#~ msgstr "ardour: seleção de cor" - -#, fuzzy -#~ msgid "New Name: " -#~ msgstr "novo nome: " - -#~ msgid "Add Field..." -#~ msgstr "Adicionar Campo..." - -#, fuzzy -#~ msgid "Name for Field" -#~ msgstr "Nome para a região:" - -#, fuzzy -#~ msgid "Link to an external file" -#~ msgstr "Inserir arquivo de áudio externo" - -#~ msgid "Bar" -#~ msgstr "Compasso" - -#~ msgid "Beat" -#~ msgstr "Batimentos" - -#~ msgid "" -#~ "You cannot record-enable\n" -#~ "track %1\n" -#~ "because it has no input connections.\n" -#~ "You would be wasting space recording silence." -#~ msgstr "" -#~ "Vocãonão pode habilitar para gravaãoo\n" -#~ "a trilha %1\n" -#~ "porque ela não tem conexãos de entrada.\n" -#~ "Você estaria desperdiçando espaço gravando silêncio." - -#, fuzzy -#~ msgid "set selected regionview" -#~ msgstr "Loop região selecionada" - -#~ msgid "via Session menu" -#~ msgstr "via menu de Sessão" - -#, fuzzy -#~ msgid "Select a File" -#~ msgstr "Selecionar Tudo" - -#~ msgid "RECORD" -#~ msgstr "GRAVAR" - -#~ msgid "INPUT" -#~ msgstr "ENTRADA" - -#~ msgid "OUTPUT" -#~ msgstr "SAÃDA" - -#~ msgid "Gain automation mode" -#~ msgstr "modo automático de ganho" - -#~ msgid "Gain automation type" -#~ msgstr "Tipo do ganho automático" - -#~ msgid "gain automation state" -#~ msgstr "estado do ganho automático" - -#~ msgid "pan automation state" -#~ msgstr "estado do pan automático" - -#~ msgid "REC" -#~ msgstr "GRAV" - -#~ msgid "OUT" -#~ msgstr "SAÃDA" - -#~ msgid "no group" -#~ msgstr "sem grupo" - -#~ msgid "Disk r:%5.1f w:%5.1f MB/s" -#~ msgstr "Disco r:%5.1f w:%5.1f MB/s" - -#~ msgid "ardour cleanup" -#~ msgstr "ardour limpar" - -#~ msgid "close session" -#~ msgstr "fechar sessão" - -#, fuzzy -#~ msgid "SetCrossfadeModel" -#~ msgstr "Fade Cruzado automático" - -#~ msgid "Play from" -#~ msgstr "Reproduzir de" - -#~ msgid "FORMAT" -#~ msgstr "FORMATO" - -#, fuzzy -#~ msgid "CD MARKER FILE TYPE" -#~ msgstr "TIPO DE ARQUIVO" - -#~ msgid "CHANNELS" -#~ msgstr "CANAIS" - -#~ msgid "FILE TYPE" -#~ msgstr "TIPO DE ARQUIVO" - -#~ msgid "SAMPLE FORMAT" -#~ msgstr "FORMATO DE AMOSTRA" - -#~ msgid "SAMPLE ENDIANNESS" -#~ msgstr "REPRESENTAÇÃO BINÃRIA" - -#~ msgid "SAMPLE RATE" -#~ msgstr "FREQUÊNCIA DE AMOSTRAGEM" - -#~ msgid "CONVERSION QUALITY" -#~ msgstr "QUALIDADE DE CONVERSÃO" - -#~ msgid "DITHER TYPE" -#~ msgstr "TIPO DE INTERPOLAÇÃO" - -#, fuzzy -#~ msgid "EXPORT CD MARKER FILE ONLY" -#~ msgstr "TIPO DE ARQUIVO" - -#~ msgid "EXPORT TO FILE" -#~ msgstr "EXPORTAR PARA ARQUIVO" - -#~ msgid "ardour: unplugged" -#~ msgstr "ardour: desplugado" - -#~ msgid "To be added" -#~ msgstr "Para ser adicionada" - -#~ msgid "Update" -#~ msgstr "Atualizar" - -#, fuzzy -#~ msgid "save" -#~ msgstr "Salvar" - -#~ msgid "bypass" -#~ msgstr "ignorar" - -#~ msgid "Name for plugin settings:" -#~ msgstr "Nome para efeito/plugin" - -#~ msgid "spring" -#~ msgstr "pular" - -#~ msgid "rescan" -#~ msgstr "rescanear" - -#~ msgid "Enable/Disable follow playhead" -#~ msgstr "Habilitar/desbilitar reprodução contínua" - -#~ msgid "Select sprung or wheel behaviour" -#~ msgstr "Selecionar ajuste fixo ou retornável" - -#~ msgid "Image Compositor" -#~ msgstr "Compositor de imagem" - -#~ msgid "Audio Library" -#~ msgstr "Biblioteca de Ãudio" - -#~ msgid "Output Connections" -#~ msgstr "Conexões de saída" - -#~ msgid "New Input" -#~ msgstr "Nova entrada" - -#~ msgid "New Output" -#~ msgstr "Nova saída" - -#~ msgid "in %d" -#~ msgstr "em %d" - -#~ msgid "Regions/name" -#~ msgstr "Regiões/nome" - -#~ msgid "Edit:" -#~ msgstr "Editar:" - -#~ msgid "Embed audio (link)" -#~ msgstr "Encaixar áudio (link)" - -#, fuzzy -#~ msgid "Cancel cleanup" -#~ msgstr "Limpar" - -#~ msgid "Name for new edit group" -#~ msgstr "Nome para o novo grupo de edição" - -#~ msgid "ardour: audio import in progress" -#~ msgstr "ardour: efetuando importação de áudio" - -#~ msgid "You can't embed an audiofile until you have a session loaded." -#~ msgstr "" -#~ "Você não pode embutir um arquivo de áudio se tiver uma sessão carregada" - -#, fuzzy -#~ msgid "Insert selected as new tracks" -#~ msgstr "Inserir seleção" - -#, fuzzy -#~ msgid "hidden" -#~ msgstr "Oculto" - -#~ msgid "Regions/length" -#~ msgstr "Regiões/tamanho" - -#~ msgid "Regions/start" -#~ msgstr "Regiões/início" - -#~ msgid "Regions/end" -#~ msgstr "Regiões/final" - -#~ msgid "Regions/file name" -#~ msgstr "Regiões/nome do arquivo" - -#~ msgid "Regions/file system" -#~ msgstr "Regiões/sistema de arquivos" - -#~ msgid "Show All AbstractTracks" -#~ msgstr "Mostrar todas as trilhas abstratas" - -#~ msgid "Hide All AbstractTracks" -#~ msgstr "Ocultar todas as trilhas abstratas" - -#~ msgid "KeyboardTarget: no translation found for \"%1\"" -#~ msgstr "KeyboardTarget: sem tradução encontrada para \"%1\"" - -#~ msgid "KeyboardTarget: unknown action \"%1\"" -#~ msgstr "KeyboardTarget: ação desconhecida \"%1\"" - -#~ msgid "ardour: soundfile selector" -#~ msgstr "ardour: seletor de arquivos de áudio" - -#~ msgid "Add to Library..." -#~ msgstr "Adicionar na Biblioteca..." - -#~ msgid "Remove..." -#~ msgstr "Remover..." - -#~ msgid "Find..." -#~ msgstr "Buscar..." - -#~ msgid "Add Folder" -#~ msgstr "Criar Diretório" - -#~ msgid "Add audio file or directory" -#~ msgstr "Adicionar arquivo ou diretório" - -#~ msgid "Importing" -#~ msgstr "Importando" - -#~ msgid "%1 not added to database" -#~ msgstr "%1 não foi adicionada ao banco de dados" - -#~ msgid "Find" -#~ msgstr "Buscar" - -#~ msgid "AND" -#~ msgstr "E" - -#~ msgid "ardour: locate soundfiles" -#~ msgstr "ardour: localizar arquivos de áudio" - -#~ msgid "Create multi-channel region" -#~ msgstr "Criar região multi-canal" - -#~ msgid "Ardour: Search Results" -#~ msgstr "Ardour: Resultado da Busca" - -#~ msgid "Hide All AudioTrack MixerStrips" -#~ msgstr "Ocultar os páineis de mixer de todas as trilhas de áudio " - -#~ msgid "Show All AudioBus MixerStrips" -#~ msgstr "Mostrar os painéis de mixer de todo os barramento de áudio" - -#~ msgid "Name for new mix group" -#~ msgstr "Nome para o novo grupo de mixer" - -#, fuzzy -#~ msgid "automatically connect track outputs to physical ports" -#~ msgstr "conectar automaticamente saídas das trilhas com as portas físicas" - -#~ msgid "show again" -#~ msgstr "mostra novamente" - -#~ msgid "new session setup" -#~ msgstr "nova configuração para sessão" - -#~ msgid "This session will playback and record at %1 Hz" -#~ msgstr "Esta sessão será reproduzida e gravada em %1 Hz" - -#~ msgid "" -#~ "This rate is set by JACK and cannot be changed.\n" -#~ "If you want to use a different sample rate\n" -#~ "please exit and restart JACK" -#~ msgstr "" -#~ "A freqüência de áudio é determinada pelo JACK e não pode ser mudada.\n" -#~ "Se você quiser usar outra freqüência de áudio\n" -#~ "por favor feche o programa e reinicie o JACK" - -#~ msgid "blank" -#~ msgstr "vazio" - -#, fuzzy -#~ msgid "Slave to MTC" -#~ msgstr "Enviar MTC" - -#~ msgid "Debug keyboard events" -#~ msgstr "Debug eventos do teclado" - -#~ msgid "--unknown--" -#~ msgstr "--desconhecido--" - -#~ msgid "outs" -#~ msgstr "saídas" - -#, fuzzy -#~ msgid "Select all" -#~ msgstr "Selecionar Tudo" - -#~ msgid "Post Redirects" -#~ msgstr "Pós Redirecionamentos" - -#~ msgid "Seamless Looping" -#~ msgstr "Fazendo loop sem emendas" - -#~ msgid "No toggle button pixmaps found to match toggle-button-[0-9]*.xpm$" -#~ msgstr "" -#~ "Nenhum ícone de pressionamento foi encontrado para o toggle-button-[0-9]*." -#~ "xpm$" - -#~ msgid "" -#~ "No small push button pixmaps found to match small-round-button-[0-9]*.xpm$" -#~ msgstr "" -#~ "Nenhum ícone de pressionamento foi encontrado para o small-round-button-" -#~ "[0-9]*.xpm$" - -#~ msgid "No pixmaps found to match hslider[0-9]*.xpm$" -#~ msgstr "Nenhum ícone encontrado para hslider[0-9]*.xpm$" - -#~ msgid "No pixmaps found to match vslider[0-9]*.xpm$" -#~ msgstr "Nenhum ícone encontrado para vslider[0-9]*.xpm$" - -#~ msgid "Trace MIDI Input" -#~ msgstr "Rastrear Entrada MIDI" - -#~ msgid "attempt to timestretch a non-audio track!" -#~ msgstr "tentativa de esticar temporalmente uma faixa não-áudio" - -#~ msgid "ok" -#~ msgstr "ok" - -#~ msgid "apply" -#~ msgstr "aplicar" - -#~ msgid "fade" -#~ msgstr "fade" - -#~ msgid "Edit left" -#~ msgstr "Editar a esquerda" - -#~ msgid "Edit right" -#~ msgstr "Editar a direita" - -#, fuzzy -#~ msgid "outside this computer" -#~ msgstr "Ocultar esta trilha" - -#, fuzzy -#~ msgid "inside this computer" -#~ msgstr "Ocultar esta trilha" diff --git a/gtk2_ardour/po/pt_PT.po b/gtk2_ardour/po/pt_PT.po index 380b1a71ac..1abff5c6cc 100644 --- a/gtk2_ardour/po/pt_PT.po +++ b/gtk2_ardour/po/pt_PT.po @@ -212,11 +212,6 @@ msgstr "" msgid "Lincoln Spiteri" msgstr "" -#: about.cc:171 -#, fuzzy -msgid "Mike Start" -msgstr "Alinhar regiões pelo início" - #: about.cc:172 msgid "Mark Stewart" msgstr "" @@ -354,11 +349,6 @@ msgstr "" msgid "Loading menus from %1" msgstr "" -#: actions.cc:88 actions.cc:89 -#, fuzzy -msgid "badly formatted UI definition file: %1" -msgstr "não foi possível abrir o ficheiro de definição de cores %1: %2" - #: actions.cc:91 msgid "%1 menu definition file not found" msgstr "" @@ -367,77 +357,14 @@ msgstr "" msgid "%1 will not work without a valid ardour.menus file" msgstr "" -#: add_route_dialog.cc:53 route_params_ui.cc:500 -#, fuzzy -msgid "Add Track or Bus" -msgstr "Acrescentar faixa/barramento" - -#: add_route_dialog.cc:56 -#, fuzzy -msgid "Configuration:" -msgstr "Configuração de canal" - -#: add_route_dialog.cc:57 -#, fuzzy -msgid "Track mode:" -msgstr "Faixa" - #: add_route_dialog.cc:58 msgid "Instrument:" msgstr "" -#: add_route_dialog.cc:76 -#, fuzzy -msgid "Audio Tracks" -msgstr "Acrescentar faixa/barramento audio" - -#: add_route_dialog.cc:77 -#, fuzzy -msgid "MIDI Tracks" -msgstr "Porto parameterização MIDI" - -#: add_route_dialog.cc:78 -#, fuzzy -msgid "Audio+MIDI Tracks" -msgstr "Acrescentar faixa/barramento audio" - -#: add_route_dialog.cc:79 -#, fuzzy -msgid "Busses" -msgstr "Barramentos" - #: add_route_dialog.cc:101 msgid "Add:" msgstr "" -#: add_route_dialog.cc:114 startup.cc:841 time_fx_dialog.cc:91 -#: add_video_dialog.cc:150 video_server_dialog.cc:112 -#, fuzzy -msgid "Options" -msgstr "Opções" - -#: add_route_dialog.cc:124 bundle_manager.cc:192 region_editor.cc:50 -#: route_group_dialog.cc:65 -#, fuzzy -msgid "Name:" -msgstr "Nome" - -#: add_route_dialog.cc:154 -#, fuzzy -msgid "Group:" -msgstr "Grupo" - -#: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 -#: rc_option_editor.cc:1456 rc_option_editor.cc:1458 rc_option_editor.cc:1460 -#: rc_option_editor.cc:1478 rc_option_editor.cc:1480 rc_option_editor.cc:1488 -#: rc_option_editor.cc:1490 rc_option_editor.cc:1508 rc_option_editor.cc:1521 -#: rc_option_editor.cc:1523 rc_option_editor.cc:1525 rc_option_editor.cc:1556 -#: rc_option_editor.cc:1558 rc_option_editor.cc:1560 rc_option_editor.cc:1568 -#: rc_option_editor.cc:1576 rc_option_editor.cc:1584 -#, fuzzy -msgid "Audio" -msgstr "Audição" - #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 #: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1707 #: rc_option_editor.cc:1715 rc_option_editor.cc:1723 rc_option_editor.cc:1732 @@ -447,16 +374,6 @@ msgstr "Audição" msgid "MIDI" msgstr "" -#: add_route_dialog.cc:217 add_route_dialog.cc:230 add_route_dialog.cc:300 -#, fuzzy -msgid "Audio+MIDI" -msgstr "Audição" - -#: add_route_dialog.cc:218 add_route_dialog.cc:233 add_route_dialog.cc:301 -#, fuzzy -msgid "Bus" -msgstr "Barramentos" - #: add_route_dialog.cc:260 msgid "" "Audio+MIDI tracks are intended for use ONLY with plugins that use " @@ -471,11 +388,6 @@ msgstr "" msgid "Normal" msgstr "Normal" -#: add_route_dialog.cc:322 add_route_dialog.cc:340 -#, fuzzy -msgid "Non Layered" -msgstr "Nível" - #: add_route_dialog.cc:323 add_route_dialog.cc:342 msgid "Tape" msgstr "Fita" @@ -488,55 +400,10 @@ msgstr "" msgid "Stereo" msgstr "" -#: add_route_dialog.cc:451 -#, fuzzy -msgid "3 Channel" -msgstr "Canais" - -#: add_route_dialog.cc:455 -#, fuzzy -msgid "4 Channel" -msgstr "Canais" - -#: add_route_dialog.cc:459 -#, fuzzy -msgid "5 Channel" -msgstr "Canais" - -#: add_route_dialog.cc:463 -#, fuzzy -msgid "6 Channel" -msgstr "Canais" - -#: add_route_dialog.cc:467 -#, fuzzy -msgid "8 Channel" -msgstr "Canais" - -#: add_route_dialog.cc:471 -#, fuzzy -msgid "12 Channel" -msgstr "Canais" - #: add_route_dialog.cc:475 mixer_strip.cc:2131 msgid "Custom" msgstr "" -#: add_route_dialog.cc:508 add_route_dialog.cc:524 route_group_menu.cc:81 -#, fuzzy -msgid "New Group..." -msgstr "Sem grupo" - -#: add_route_dialog.cc:512 route_group_menu.cc:85 -#, fuzzy -msgid "No Group" -msgstr "Sem grupo" - -#: add_route_dialog.cc:588 -#, fuzzy -msgid "-none-" -msgstr "nenhum" - #: ambiguous_file_dialog.cc:30 msgid "Ambiguous File" msgstr "" @@ -558,26 +425,6 @@ msgstr "" msgid "Done" msgstr "" -#: analysis_window.cc:46 -#, fuzzy -msgid "Signal source" -msgstr "Sicronia de posição" - -#: analysis_window.cc:47 -#, fuzzy -msgid "Selected ranges" -msgstr "seleccionar/mover intervalos" - -#: analysis_window.cc:48 -#, fuzzy -msgid "Selected regions" -msgstr "Seleccionar regiões" - -#: analysis_window.cc:50 -#, fuzzy -msgid "Display model" -msgstr "Visualização" - #: analysis_window.cc:51 msgid "Composite graphs for each track" msgstr "" @@ -590,11 +437,6 @@ msgstr "" msgid "Show frequency power range" msgstr "" -#: analysis_window.cc:55 -#, fuzzy -msgid "Normalize values" -msgstr "Normalizar" - #: analysis_window.cc:59 msgid "FFT analysis window" msgstr "" @@ -608,12 +450,6 @@ msgstr "" msgid "Track" msgstr "Faixa" -#: analysis_window.cc:68 editor_actions.cc:616 mixer_ui.cc:125 -#: mixer_ui.cc:1795 -#, fuzzy -msgid "Show" -msgstr "Mostrar tudo" - #: analysis_window.cc:135 msgid "Re-analyze data" msgstr "" @@ -622,30 +458,10 @@ msgstr "" msgid "button cannot watch state of non-existing Controllable\n" msgstr "" -#: ardour_ui.cc:180 -#, fuzzy -msgid "audition" -msgstr "Audição" - -#: ardour_ui.cc:181 -#, fuzzy -msgid "solo" -msgstr "solo alterado" - #: ardour_ui.cc:182 msgid "feedback" msgstr "" -#: ardour_ui.cc:187 speaker_dialog.cc:36 -#, fuzzy -msgid "Speaker Configuration" -msgstr "Configuração de canal" - -#: ardour_ui.cc:188 theme_manager.cc:56 theme_manager.cc:64 -#, fuzzy -msgid "Theme Manager" -msgstr "Remover marcador" - #: ardour_ui.cc:189 keyeditor.cc:53 msgid "Key Bindings" msgstr "" @@ -654,11 +470,6 @@ msgstr "" msgid "Preferences" msgstr "" -#: ardour_ui.cc:191 ardour_ui.cc:196 -#, fuzzy -msgid "Add Tracks/Busses" -msgstr "Faixas/barramentos" - #: ardour_ui.cc:192 msgid "About" msgstr "Acerca de" @@ -667,11 +478,6 @@ msgstr "Acerca de" msgid "Locations" msgstr "Localizações" -#: ardour_ui.cc:194 route_params_ui.cc:58 route_params_ui.cc:606 -#, fuzzy -msgid "Tracks and Busses" -msgstr "Faixas/barramentos" - #: ardour_ui.cc:195 msgid "Properties" msgstr "" @@ -684,25 +490,10 @@ msgstr "" msgid "Big Clock" msgstr "Cronómetro principal" -#: ardour_ui.cc:199 -#, fuzzy -msgid "Audio Connections" -msgstr "Ligações" - -#: ardour_ui.cc:200 -#, fuzzy -msgid "MIDI Connections" -msgstr "Ligações" - #: ardour_ui.cc:202 msgid "Errors" msgstr "" -#: ardour_ui.cc:388 -#, fuzzy -msgid "Starting audio engine" -msgstr "Iniciar intervalo" - #: ardour_ui.cc:758 startup.cc:638 msgid "%1 is ready for use" msgstr "" @@ -720,83 +511,10 @@ msgstr "" msgid "Do not show this window again" msgstr "" -#: ardour_ui.cc:865 -#, fuzzy -msgid "Don't quit" -msgstr "Não %1" - -#: ardour_ui.cc:866 -#, fuzzy -msgid "Just quit" -msgstr "Apenas %1" - -#: ardour_ui.cc:867 -#, fuzzy -msgid "Save and quit" -msgstr "Guardar e %1" - -#: ardour_ui.cc:877 -#, fuzzy -msgid "" -"%1 was unable to save your session.\n" -"\n" -"If you still wish to quit, please use the\n" -"\n" -"\"Just quit\" option." -msgstr "" -"Não foi possível guardar a sua sessão.\n" -"\n" -"Se ainda pretende sair, por favor use\n" -"\n" -" a opção \"Apenas sair\"" - #: ardour_ui.cc:908 msgid "Please wait while %1 cleans up..." msgstr "" -#: ardour_ui.cc:925 -#, fuzzy -msgid "Unsaved Session" -msgstr "Nova sessão" - -#: ardour_ui.cc:946 -#, fuzzy -msgid "" -"The session \"%1\"\n" -"has not been saved.\n" -"\n" -"Any changes made this time\n" -"will be lost unless you save it.\n" -"\n" -"What do you want to do?" -msgstr "" -"A sessão %1\"%2\"\n" -"ainda não se encontra salvaguardada.\n" -"\n" -"Qualquer alteração feita até ao momento\n" -"ficará perdida se não salvaguardar agora.\n" -"\n" -"O que pretende fazer?" - -#: ardour_ui.cc:949 -#, fuzzy -msgid "" -"The snapshot \"%1\"\n" -"has not been saved.\n" -"\n" -"Any changes made this time\n" -"will be lost unless you save it.\n" -"\n" -"What do you want to do?" -msgstr "" -"A sessão %1\"%2\"\n" -"ainda não se encontra salvaguardada.\n" -"\n" -"Qualquer alteração feita até ao momento\n" -"ficará perdida se não salvaguardar agora.\n" -"\n" -"O que pretende fazer?" - #: ardour_ui.cc:963 msgid "Prompter" msgstr "Alerta" @@ -815,11 +533,6 @@ msgstr "" msgid "JACK: % kHz / %4.1f ms" msgstr "" -#: ardour_ui.cc:1078 export_video_dialog.cc:68 -#, fuzzy -msgid "File:" -msgstr "Renomear" - #: ardour_ui.cc:1082 msgid "BWF" msgstr "" @@ -873,11 +586,6 @@ msgid "" "\">%%%" msgstr "" -#: ardour_ui.cc:1188 -#, fuzzy -msgid "Disk: Unknown" -msgstr "espaço: %02dh:%02dm:%02ds" - #: ardour_ui.cc:1190 msgid "Disk: 24hrs+" msgstr "" @@ -886,16 +594,6 @@ msgstr "" msgid "Disk: >24 hrs" msgstr "" -#: ardour_ui.cc:1219 -#, fuzzy, c-format -msgid "Disk: %02dh:%02dm:%02ds" -msgstr "espaço: %02dh:%02dm:%02ds" - -#: ardour_ui.cc:1245 -#, fuzzy, c-format -msgid "Timecode|TC: %s" -msgstr "espaço: %02dh:%02dm:%02ds" - #: ardour_ui.cc:1362 ardour_ui.cc:1371 startup.cc:1054 msgid "Recent Sessions" msgstr "Sessões recentes" @@ -910,69 +608,12 @@ msgstr "" msgid "Open Session" msgstr "Abrir sessão" -#: ardour_ui.cc:1503 session_import_dialog.cc:169 -#: session_metadata_dialog.cc:729 startup.cc:1083 -#, fuzzy -msgid "%1 sessions" -msgstr "sessão" - #: ardour_ui.cc:1540 msgid "You cannot add a track without a session already loaded." msgstr "" "Não é possível acrescentar uma faixa sem que haja uma sessão esteja " "carregada." -#: ardour_ui.cc:1548 -#, fuzzy -msgid "could not create %1 new mixed track" -msgid_plural "could not create %1 new mixed tracks" -msgstr[0] "não foi possível criar uma nova faixa audio" -msgstr[1] "não foi possível criar uma nova faixa audio" - -#: ardour_ui.cc:1554 ardour_ui.cc:1615 -#, fuzzy -msgid "" -"There are insufficient JACK ports available\n" -"to create a new track or bus.\n" -"You should save %1, exit and\n" -"restart JACK with more ports." -msgstr "" -"Não existem portos JACK disponíveis suficientes\n" -"para criar uma nova faixa ou barramento.\n" -"Deverá salvaguardar a sessão, sair e\n" -"reiniciar JACK com um maior número de portos." - -#: ardour_ui.cc:1589 -#, fuzzy -msgid "You cannot add a track or bus without a session already loaded." -msgstr "" -"Não é possível acrescentar uma faixa sem que haja uma sessão esteja " -"carregada." - -#: ardour_ui.cc:1598 -#, fuzzy -msgid "could not create %1 new audio track" -msgid_plural "could not create %1 new audio tracks" -msgstr[0] "não foi possível criar uma nova faixa audio" -msgstr[1] "não foi possível criar uma nova faixa audio" - -#: ardour_ui.cc:1607 -#, fuzzy -msgid "could not create %1 new audio bus" -msgid_plural "could not create %1 new audio busses" -msgstr[0] "não foi possível criar uma nova faixa audio" -msgstr[1] "não foi possível criar uma nova faixa audio" - -#: ardour_ui.cc:1724 -#, fuzzy -msgid "" -"Please create one or more tracks before trying to record.\n" -"You can do this with the \"Add Track or Bus\" option in the Session menu." -msgstr "" -"Por favor, cria 1 ou mais faixas\n" -"antes de tentar gravar.\n" -"Verifique o menu de Sessão." - #: ardour_ui.cc:2114 msgid "" "The audio backend (JACK) was shutdown because:\n" @@ -980,34 +621,10 @@ msgid "" "%1" msgstr "" -#: ardour_ui.cc:2116 -#, fuzzy -msgid "" -"JACK has either been shutdown or it\n" -"disconnected %1 because %1\n" -"was not fast enough. Try to restart\n" -"JACK, reconnect and save the session." -msgstr "" -"O serviço de audio (JACK) foi desligado ou\n" -"o mesmo desactivou a sua ligação com o Ardour,\n" -"talvez porque o desempenho não era o mais adequado.\n" -"A sessão corrente deverá ser salvaguardada\n" -"e o serviço JACK devidamente reiniciado." - #: ardour_ui.cc:2142 msgid "Unable to start the session running" msgstr "Não foi possível iniciar a sessão corrente" -#: ardour_ui.cc:2222 -#, fuzzy -msgid "Take Snapshot" -msgstr "Capturar" - -#: ardour_ui.cc:2223 -#, fuzzy -msgid "Name of new snapshot" -msgstr "Nome para a nova captura" - #: ardour_ui.cc:2247 msgid "" "To ensure compatibility with various systems\n" @@ -1018,26 +635,6 @@ msgstr "" msgid "Confirm Snapshot Overwrite" msgstr "" -#: ardour_ui.cc:2260 -#, fuzzy -msgid "A snapshot already exists with that name. Do you want to overwrite it?" -msgstr "O ficheiro já existe, deseja reescrevê-lo ?" - -#: ardour_ui.cc:2263 utils_videotl.cc:67 -#, fuzzy -msgid "Overwrite" -msgstr "aGrav" - -#: ardour_ui.cc:2297 -#, fuzzy -msgid "Rename Session" -msgstr "Inverter região" - -#: ardour_ui.cc:2298 -#, fuzzy -msgid "New session name" -msgstr "Novo nome de sessão:" - #: ardour_ui.cc:2312 ardour_ui.cc:2692 ardour_ui.cc:2737 msgid "" "To ensure compatibility with various systems\n" @@ -1055,33 +652,10 @@ msgid "" "Things could be seriously messed up at this point" msgstr "" -#: ardour_ui.cc:2440 -#, fuzzy -msgid "Save Template" -msgstr "Guardar modelo..." - -#: ardour_ui.cc:2441 -#, fuzzy -msgid "Name for template:" -msgstr "Nome para o modelo de mistura" - #: ardour_ui.cc:2442 msgid "-template" msgstr "-modelo" -#: ardour_ui.cc:2480 -#, fuzzy -msgid "" -"This session\n" -"%1\n" -"already exists. Do you want to open it?" -msgstr "O ficheiro já existe, deseja reescrevê-lo ?" - -#: ardour_ui.cc:2490 -#, fuzzy -msgid "Open Existing Session" -msgstr "Abrir sessão" - #: ardour_ui.cc:2728 msgid "There is no existing session at \"%1\"" msgstr "" @@ -1110,22 +684,6 @@ msgstr "" msgid "Click the Refresh button to try again." msgstr "" -#: ardour_ui.cc:2941 -#, fuzzy -msgid "Could not create session in \"%1\"" -msgstr "não foi possível carregar a sessão de linha de comando \"%1\"" - -#: ardour_ui.cc:3041 -#, fuzzy -msgid "No files were ready for clean-up" -msgstr "Não foram encontrados ficheiros audio para limpeza" - -#: ardour_ui.cc:3045 ardour_ui.cc:3055 ardour_ui.cc:3188 ardour_ui.cc:3195 -#: ardour_ui_ed.cc:104 -#, fuzzy -msgid "Clean-up" -msgstr "Limpar" - #: ardour_ui.cc:3046 msgid "" "If this seems suprising, \n" @@ -1150,82 +708,10 @@ msgstr "" msgid "giga" msgstr "" -#: ardour_ui.cc:3116 -#, fuzzy -msgid "" -"The following file was deleted from %2,\n" -"releasing %3 %4bytes of disk space" -msgid_plural "" -"The following %1 files were deleted from %2,\n" -"releasing %3 %4bytes of disk space" -msgstr[0] "" -"O(s) seguinte(s) %1 %2 eliminado(s) de\n" -"%3,\n" -"libertando %3 %4bytes de espaço em disco." -msgstr[1] "" -"O(s) seguinte(s) %1 %2 eliminado(s) de\n" -"%3,\n" -"libertando %3 %4bytes de espaço em disco." - -#: ardour_ui.cc:3123 -#, fuzzy -msgid "" -"The following file was not in use and \n" -"has been moved to: %2\n" -"\n" -"After a restart of %5\n" -"\n" -"Session -> Clean-up -> Flush Wastebasket\n" -"\n" -"will release an additional %3 %4bytes of disk space.\n" -msgid_plural "" -"The following %1 files were not in use and \n" -"have been moved to: %2\n" -"\n" -"After a restart of %5\n" -"\n" -"Session -> Clean-up -> Flush Wastebasket\n" -"\n" -"will release an additional %3 %4bytes of disk space.\n" -msgstr[0] "" -"O(s) seguinte(s) %1 %2 encontrado(s) em desuso\n" -"e automaticamente removido(s) para:\n" -"%3. \n" -"\n" -"Serão libertados %3 %4bytes de espaço em disco.\n" -msgstr[1] "" -"O(s) seguinte(s) %1 %2 encontrado(s) em desuso\n" -"e automaticamente removido(s) para:\n" -"%3. \n" -"\n" -"Serão libertados %3 %4bytes de espaço em disco.\n" - -#: ardour_ui.cc:3183 -#, fuzzy -msgid "Are you sure you want to clean-up?" -msgstr "Tem a certeza que pretende realizar a limpeza?" - -#: ardour_ui.cc:3190 -#, fuzzy -msgid "" -"Clean-up is a destructive operation.\n" -"ALL undo/redo information will be lost if you clean-up.\n" -"Clean-up will move all unused files to a \"dead\" location." -msgstr "" -"A limpeza é uma operação destrutiva.\n" -"TODA a informação de desfazer/refazer será perdida coma limpeza.Após a " -"limpeza, todos os ficheiros audio em desuso serão\n" -"removidos para um \"arquivo morto\"" - #: ardour_ui.cc:3198 msgid "CleanupDialog" msgstr "" -#: ardour_ui.cc:3228 -#, fuzzy -msgid "Cleaned Files" -msgstr "ficheiros limpos" - #: ardour_ui.cc:3245 msgid "deleted file" msgstr "ficheiro eliminado" @@ -1243,11 +729,6 @@ msgstr "" msgid "Do you really want to stop the Video Server?" msgstr "" -#: ardour_ui.cc:3345 -#, fuzzy -msgid "Yes, Stop It" -msgstr "Sim, elimine-a." - #: ardour_ui.cc:3371 msgid "The Video Server is already started." msgstr "" @@ -1294,59 +775,10 @@ msgstr "" "A gravação foi interrompida porque o seu sistema não foi capaz de a " "acompanhar adequadamente." -#: ardour_ui.cc:3702 -#, fuzzy -msgid "" -"The disk system on your computer\n" -"was not able to keep up with %1.\n" -"\n" -"Specifically, it failed to write data to disk\n" -"quickly enough to keep up with recording.\n" -msgstr "" -"O sistema de ficheiros em disco do seu computador\n" -"não foi capaz de manter o serviço audio adequadamente.\n" -"\n" -"Especificamente, a velocidade de escrita de dados em disco\n" -"foi insuficiente para acompanhar o ritmo de gravação.\n" - -#: ardour_ui.cc:3721 -#, fuzzy -msgid "" -"The disk system on your computer\n" -"was not able to keep up with %1.\n" -"\n" -"Specifically, it failed to read data from disk\n" -"quickly enough to keep up with playback.\n" -msgstr "" -"O sistema de ficheiros em disco do seu computador\n" -"não foi capaz de manter o serviço audio adequadamente.\n" -"\n" -"Especificamente, a velocidade de leitura de dados em disco\n" -"foi insuficiente para acompanhar o ritmo de reprodução.\n" - #: ardour_ui.cc:3761 msgid "Crash Recovery" msgstr "" -#: ardour_ui.cc:3762 -#, fuzzy -msgid "" -"This session appears to have been in the\n" -"middle of recording when %1 or\n" -"the computer was shutdown.\n" -"\n" -"%1 can recover any captured audio for\n" -"you, or it can ignore it. Please decide\n" -"what you would like to do.\n" -msgstr "" -"Esta sessão parece ter estado a meio\n" -"de uma gravação quando o sistema ou\n" -"o computador foi desligado.\n" -"\n" -"Pode ser tentada a recuperação da material\n" -"gravado até então ou simplesmente ignorá-lo.\n" -"Por favor decida o que pretende fazer.\n" - #: ardour_ui.cc:3774 msgid "Ignore crash data" msgstr "Ignorar" @@ -1355,11 +787,6 @@ msgstr "Ignorar" msgid "Recover from crash" msgstr "Recuperar" -#: ardour_ui.cc:3795 -#, fuzzy -msgid "Sample Rate Mismatch" -msgstr "Frequência de amostragem" - #: ardour_ui.cc:3796 msgid "" "This session was created with a sample rate of %1 Hz, but\n" @@ -1367,11 +794,6 @@ msgid "" "audio may be played at the wrong sample rate.\n" msgstr "" -#: ardour_ui.cc:3805 -#, fuzzy -msgid "Do not load session" -msgstr "Zoom (sessão)" - #: ardour_ui.cc:3806 msgid "Load session anyway" msgstr "" @@ -1407,11 +829,6 @@ msgstr "Não foi possível iniciar o painel de edição" msgid "UI: cannot setup mixer" msgstr "Não foi posivel iniciar o painel de mistura" -#: ardour_ui2.cc:82 -#, fuzzy -msgid "UI: cannot setup meterbridge" -msgstr "Não foi possível iniciar o monitor volumétrico (vuímetro)" - #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "Reproduzir desde o cursor de reprodução" @@ -1420,11 +837,6 @@ msgstr "Reproduzir desde o cursor de reprodução" msgid "Stop playback" msgstr "Parar reprodução" -#: ardour_ui2.cc:132 -#, fuzzy -msgid "Toggle record" -msgstr "gravar" - #: ardour_ui2.cc:133 msgid "Play range/selection" msgstr "Reproduzir selecção" @@ -1451,11 +863,6 @@ msgstr "" msgid "Return to last playback start when stopped" msgstr "Ir para a última posição inicial do cursor de reprodução quando parar" -#: ardour_ui2.cc:139 -#, fuzzy -msgid "Playhead follows Range Selections and Edits" -msgstr "Reprodução no início do intervalo" - #: ardour_ui2.cc:140 msgid "Be sensible about input monitoring" msgstr "Seja sensível acerca da monitorização de entradas" @@ -1496,11 +903,6 @@ msgid "" "confirm; postfix the edit with '+' or '-' to enter delta times.\n" msgstr "" -#: ardour_ui2.cc:147 -#, fuzzy -msgid "Reset Level Meter" -msgstr "Reiniciar tudo" - #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "" @@ -1513,13 +915,6 @@ msgstr "" msgid "[INFO]: " msgstr "" -#: ardour_ui2.cc:247 ardour_ui_ed.cc:377 -#, fuzzy -msgid "Auto Return" -msgstr "" -"Retorno\n" -"automático" - #: ardour_ui2.cc:249 ardour_ui_ed.cc:380 msgid "Follow Edits" msgstr "" @@ -1536,36 +931,6 @@ msgstr "" msgid "Misc" msgstr "Miscelânea" -#: ardour_ui_dependents.cc:77 -#, fuzzy -msgid "Setup Editor" -msgstr "Estabelecer cursor de edição" - -#: ardour_ui_dependents.cc:79 -#, fuzzy -msgid "Setup Mixer" -msgstr "Mostrar painel de mistura" - -#: ardour_ui_dependents.cc:85 -#, fuzzy -msgid "Reload Session History" -msgstr "Criar directório de sessão em :" - -#: ardour_ui_dialogs.cc:242 -#, fuzzy -msgid "Don't close" -msgstr "Não %1" - -#: ardour_ui_dialogs.cc:243 -#, fuzzy -msgid "Just close" -msgstr "fechar" - -#: ardour_ui_dialogs.cc:244 -#, fuzzy -msgid "Save and close" -msgstr "Guardar e %1" - #: ardour_ui_dialogs.cc:340 msgid "This screen is not tall enough to display the mixer window" msgstr "" @@ -1583,11 +948,6 @@ msgstr "Sincronia" msgid "Options" msgstr "Opções" -#: ardour_ui_ed.cc:108 -#, fuzzy -msgid "Window" -msgstr "Janelas" - #: ardour_ui_ed.cc:109 msgid "Help" msgstr "Ajuda" @@ -1620,11 +980,6 @@ msgstr "Efeitos/plug-ins" msgid "Metering" msgstr "VUímetro" -#: ardour_ui_ed.cc:117 -#, fuzzy -msgid "Fall Off Rate" -msgstr "Taxa de decaimento" - #: ardour_ui_ed.cc:118 msgid "Hold Time" msgstr "Tempo de persistência" @@ -1637,56 +992,10 @@ msgstr "" msgid "New..." msgstr "" -#: ardour_ui_ed.cc:125 -#, fuzzy -msgid "Open..." -msgstr "Abrir" - -#: ardour_ui_ed.cc:126 -#, fuzzy -msgid "Recent..." -msgstr "Recente" - #: ardour_ui_ed.cc:127 panner_editor.cc:29 playlist_selector.cc:64 msgid "Close" msgstr "Fechar" -#: ardour_ui_ed.cc:130 -#, fuzzy -msgid "Add Track or Bus..." -msgstr "Acrescentar faixa/barramento" - -#: ardour_ui_ed.cc:135 -#, fuzzy -msgid "Open Video" -msgstr "Abrir sessão" - -#: ardour_ui_ed.cc:138 -#, fuzzy -msgid "Remove Video" -msgstr "Remover campo" - -#: ardour_ui_ed.cc:141 -#, fuzzy -msgid "Export To Video File" -msgstr "Exportar sessão para ficheiro audio..." - -#: ardour_ui_ed.cc:145 -#, fuzzy -msgid "Snapshot..." -msgstr "Capturar" - -#: ardour_ui_ed.cc:149 -#, fuzzy -msgid "Save As..." -msgstr "Guardar modelo..." - -#: ardour_ui_ed.cc:153 editor_actions.cc:1719 editor_markers.cc:858 -#: editor_snapshots.cc:123 mixer_strip.cc:1471 route_time_axis.cc:1485 -#, fuzzy -msgid "Rename..." -msgstr "Renomear" - #: ardour_ui_ed.cc:157 msgid "Save Template..." msgstr "Guardar modelo..." @@ -1699,36 +1008,11 @@ msgstr "" msgid "Edit Metadata..." msgstr "" -#: ardour_ui_ed.cc:166 -#, fuzzy -msgid "Import Metadata..." -msgstr "Importar selecção" - -#: ardour_ui_ed.cc:169 -#, fuzzy -msgid "Export To Audio File(s)..." -msgstr "Exportar sessão para ficheiro audio..." - -#: ardour_ui_ed.cc:172 -#, fuzzy -msgid "Stem export..." -msgstr "Exportar" - #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 #: export_video_dialog.cc:72 msgid "Export" msgstr "Exportar" -#: ardour_ui_ed.cc:178 -#, fuzzy -msgid "Clean-up Unused Sources..." -msgstr "Limpar originais em desuso" - -#: ardour_ui_ed.cc:182 -#, fuzzy -msgid "Flush Wastebasket" -msgstr "Limpeza" - #: ardour_ui_ed.cc:189 keyeditor.cc:253 rc_option_editor.cc:1472 msgid "JACK" msgstr "" @@ -1754,31 +1038,6 @@ msgstr "Sair" msgid "Maximise Editor Space" msgstr "Maximizar o painel de edição" -#: ardour_ui_ed.cc:227 -#, fuzzy -msgid "Show Toolbars" -msgstr "Mostrar posição" - -#: ardour_ui_ed.cc:230 mixer_ui.cc:1865 mixer_ui.cc:1871 -#, fuzzy -msgid "Window|Mixer" -msgstr "Janelas" - -#: ardour_ui_ed.cc:231 -#, fuzzy -msgid "Toggle Editor+Mixer" -msgstr "Modo de edição" - -#: ardour_ui_ed.cc:232 meterbridge.cc:230 meterbridge.cc:236 -#, fuzzy -msgid "Window|Meterbridge" -msgstr "Janelas" - -#: ardour_ui_ed.cc:234 midi_tracer.cc:39 -#, fuzzy -msgid "MIDI Tracer" -msgstr "Porto parameterização MIDI" - #: ardour_ui_ed.cc:236 msgid "Chat" msgstr "" @@ -1817,21 +1076,6 @@ msgstr "Rolar" msgid "Start/Stop" msgstr "Iniciar/Parar" -#: ardour_ui_ed.cc:265 -#, fuzzy -msgid "Start/Continue/Stop" -msgstr "Iniciar/Parar" - -#: ardour_ui_ed.cc:268 -#, fuzzy -msgid "Stop and Forget Capture" -msgstr "Parar + esquecer gravação" - -#: ardour_ui_ed.cc:278 -#, fuzzy -msgid "Transition To Roll" -msgstr "Tradicional" - #: ardour_ui_ed.cc:282 msgid "Transition To Reverse" msgstr "" @@ -1840,25 +1084,10 @@ msgstr "" msgid "Play Loop Range" msgstr "Reproduzir intervalo cíclico" -#: ardour_ui_ed.cc:289 -#, fuzzy -msgid "Play Selected Range" -msgstr "Estabelecer intervalo" - -#: ardour_ui_ed.cc:292 -#, fuzzy -msgid "Play Selection w/Preroll" -msgstr "Reproduzir região seleccionada" - #: ardour_ui_ed.cc:296 msgid "Enable Record" msgstr "Gravar" -#: ardour_ui_ed.cc:299 -#, fuzzy -msgid "Start Recording" -msgstr "Iniciar intervalo" - #: ardour_ui_ed.cc:303 msgid "Rewind" msgstr "Rebobinar" @@ -1912,91 +1141,23 @@ msgstr "" msgid "Timecode" msgstr "" -#: ardour_ui_ed.cc:340 ardour_ui_ed.cc:349 editor_actions.cc:542 -#, fuzzy -msgid "Bars & Beats" -msgstr "Comp:Bat" - -#: ardour_ui_ed.cc:342 ardour_ui_ed.cc:351 -#, fuzzy -msgid "Minutes & Seconds" -msgstr "Mins:Segs" - -#: ardour_ui_ed.cc:344 ardour_ui_ed.cc:353 audio_clock.cc:2050 editor.cc:238 -#: editor_actions.cc:543 -#, fuzzy -msgid "Samples" -msgstr "Frequência de amostragem" - -#: ardour_ui_ed.cc:356 -#, fuzzy -msgid "Punch In" -msgstr "Inserção" - #: ardour_ui_ed.cc:357 mixer_strip.cc:1905 route_ui.cc:137 #: time_info_box.cc:113 msgid "In" msgstr "Entrada" -#: ardour_ui_ed.cc:360 -#, fuzzy -msgid "Punch Out" -msgstr "" -"final de\n" -"inserção" - #: ardour_ui_ed.cc:361 time_info_box.cc:114 msgid "Out" msgstr "Saída" -#: ardour_ui_ed.cc:364 -#, fuzzy -msgid "Punch In/Out" -msgstr "" -"final de\n" -"inserção" - -#: ardour_ui_ed.cc:365 -#, fuzzy -msgid "In/Out" -msgstr "" -"final de\n" -"inserção" - #: ardour_ui_ed.cc:368 rc_option_editor.cc:1071 msgid "Click" msgstr "Metrónomo" -#: ardour_ui_ed.cc:371 -#, fuzzy -msgid "Auto Input" -msgstr "" -"entrada\n" -"automática" - -#: ardour_ui_ed.cc:374 -#, fuzzy -msgid "Auto Play" -msgstr "" -"Reprodução\n" -"automática" - #: ardour_ui_ed.cc:385 msgid "Sync Startup to Video" msgstr "" -#: ardour_ui_ed.cc:387 -#, fuzzy -msgid "Time Master" -msgstr "" -"Supervisão\n" -"de tempo" - -#: ardour_ui_ed.cc:394 -#, fuzzy -msgid "Toggle Record Enable Track %1" -msgstr "Comutador de gravação Faixa 1" - #: ardour_ui_ed.cc:401 msgid "Percentage" msgstr "Percentagem" @@ -2017,25 +1178,10 @@ msgstr "Enviar MMC" msgid "Use MMC" msgstr "Usar MMC" -#: ardour_ui_ed.cc:412 rc_option_editor.cc:1710 -#, fuzzy -msgid "Send MIDI Clock" -msgstr "Enviar controlo MIDI" - -#: ardour_ui_ed.cc:414 -#, fuzzy -msgid "Send MIDI Feedback" -msgstr "Enviar controlo MIDI" - #: ardour_ui_ed.cc:420 msgid "Panic" msgstr "" -#: ardour_ui_ed.cc:560 -#, fuzzy -msgid "Wall Clock" -msgstr "Cronómetro principal" - #: ardour_ui_ed.cc:561 msgid "Disk Space" msgstr "" @@ -2052,16 +1198,6 @@ msgstr "" msgid "JACK Sampling Rate and Latency" msgstr "" -#: ardour_ui_ed.cc:565 -#, fuzzy -msgid "Timecode Format" -msgstr "Quadros audio" - -#: ardour_ui_ed.cc:566 -#, fuzzy -msgid "File Format" -msgstr "Formato de ficheiro audio" - #: ardour_ui_options.cc:65 msgid "" "It is not possible to use JACK as the the sync source\n" @@ -2072,20 +1208,10 @@ msgstr "" msgid "Internal" msgstr "Interno" -#: ardour_ui_options.cc:482 -#, fuzzy -msgid "Enable/Disable external positional sync" -msgstr "Ligar/Desligar o metrónomo" - #: ardour_ui_options.cc:484 msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "" -#: audio_clock.cc:1012 audio_clock.cc:1031 -#, fuzzy -msgid "--pending--" -msgstr "Crescente" - #: audio_clock.cc:1083 msgid "SR" msgstr "" @@ -2127,26 +1253,11 @@ msgstr "Comp:Bat" msgid "Minutes:Seconds" msgstr "Mins:Segs" -#: audio_clock.cc:2054 -#, fuzzy -msgid "Set From Playhead" -msgstr "Estabelecer cursor de reprodução" - -#: audio_clock.cc:2055 -#, fuzzy -msgid "Locate to This Time" -msgstr "Localizar ao marcador" - #: audio_region_editor.cc:63 control_point_dialog.cc:49 rhythm_ferret.cc:125 #: rhythm_ferret.cc:130 rhythm_ferret.cc:135 msgid "dB" msgstr "" -#: audio_region_editor.cc:66 -#, fuzzy -msgid "Region gain:" -msgstr "Finais de região" - #: audio_region_editor.cc:76 export_format_dialog.cc:43 msgid "dBFS" msgstr "" @@ -2175,11 +1286,6 @@ msgstr "Panorama" msgid "automation event move" msgstr "mover evento de automatização" -#: automation_line.cc:462 automation_line.cc:483 -#, fuzzy -msgid "automation range move" -msgstr "deslocar intervalo de automatização" - #: automation_line.cc:823 region_gain_line.cc:73 msgid "remove control point" msgstr "remover ponto de controlo" @@ -2188,11 +1294,6 @@ msgstr "remover ponto de controlo" msgid "Ignoring illegal points on AutomationLine \"%1\"" msgstr "" -#: automation_region_view.cc:160 automation_time_axis.cc:583 -#, fuzzy -msgid "add automation event" -msgstr "acrescentar evento de automatização a " - #: automation_time_axis.cc:146 msgid "automation state" msgstr "estado de automatização" @@ -2201,13 +1302,6 @@ msgstr "estado de automatização" msgid "hide track" msgstr "esconder faixa" -#: automation_time_axis.cc:255 automation_time_axis.cc:307 -#: automation_time_axis.cc:496 gain_meter.cc:195 generic_pluginui.cc:456 -#: generic_pluginui.cc:746 panner_ui.cc:150 -#, fuzzy -msgid "Automation|Manual" -msgstr "Automatização" - #: automation_time_axis.cc:257 automation_time_axis.cc:318 #: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 #: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 @@ -2249,11 +1343,6 @@ msgstr "Apagar" msgid "State" msgstr "Estado" -#: automation_time_axis.cc:531 -#, fuzzy -msgid "Discrete" -msgstr "Desligar" - #: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 #: editor.cc:1526 export_format_dialog.cc:476 msgid "Linear" @@ -2268,16 +1357,6 @@ msgstr "Modo" msgid "Disassociate" msgstr "" -#: bundle_manager.cc:185 -#, fuzzy -msgid "Edit Bundle" -msgstr "Modo de edição" - -#: bundle_manager.cc:200 -#, fuzzy -msgid "Direction:" -msgstr "resolução" - #: bundle_manager.cc:205 bundle_manager.cc:209 mixer_strip.cc:158 #: mixer_strip.cc:2127 msgid "Input" @@ -2312,16 +1391,6 @@ msgstr "Novo" msgid "Bundle" msgstr "" -#: bundle_manager.cc:417 -#, fuzzy -msgid "Add Channel" -msgstr "Canais" - -#: bundle_manager.cc:424 -#, fuzzy -msgid "Rename Channel" -msgstr "Renomear intervalo" - #: canvas-simpleline.c:111 canvas-simplerect.c:106 msgid "x1" msgstr "" @@ -2410,16 +1479,6 @@ msgstr "cor de preenchimento (rgba)" msgid "color of fill" msgstr "cor de preenchimento" -#: configinfo.cc:28 -#, fuzzy -msgid "Build Configuration" -msgstr "Configuração de canal" - -#: control_point_dialog.cc:33 -#, fuzzy -msgid "Control point" -msgstr "remover ponto de controlo" - #: control_point_dialog.cc:45 msgid "Value" msgstr "Valor" @@ -2428,37 +1487,6 @@ msgstr "Valor" msgid "Note" msgstr "" -#: edit_note_dialog.cc:45 -#, fuzzy -msgid "Set selected notes to this channel" -msgstr "remover ponto de controlo" - -#: edit_note_dialog.cc:46 -#, fuzzy -msgid "Set selected notes to this pitch" -msgstr "remover ponto de controlo" - -#: edit_note_dialog.cc:47 -#, fuzzy -msgid "Set selected notes to this velocity" -msgstr "remover ponto de controlo" - -#: edit_note_dialog.cc:49 -#, fuzzy -msgid "Set selected notes to this time" -msgstr "remover ponto de controlo" - -#: edit_note_dialog.cc:51 -#, fuzzy -msgid "Set selected notes to this length" -msgstr "remover ponto de controlo" - -#: edit_note_dialog.cc:58 midi_list_editor.cc:104 patch_change_dialog.cc:91 -#: step_entry.cc:393 -#, fuzzy -msgid "Channel" -msgstr "Canais" - #: edit_note_dialog.cc:68 msgid "Pitch" msgstr "" @@ -2467,41 +1495,16 @@ msgstr "" msgid "Velocity" msgstr "" -#: edit_note_dialog.cc:88 patch_change_dialog.cc:67 -#, fuzzy -msgid "Time" -msgstr "Tempo de persistência" - #: edit_note_dialog.cc:98 editor_regions.cc:114 #: export_timespan_selector.cc:359 export_timespan_selector.cc:421 #: location_ui.cc:317 midi_list_editor.cc:114 time_info_box.cc:105 msgid "Length" msgstr "" -#: edit_note_dialog.cc:165 -#, fuzzy -msgid "edit note" -msgstr "Modo de edição" - #: editor.cc:137 editor.cc:3429 msgid "CD Frames" msgstr "Quadros CD" -#: editor.cc:138 editor.cc:3431 -#, fuzzy -msgid "Timecode Frames" -msgstr "Quadros audio" - -#: editor.cc:139 editor.cc:3433 -#, fuzzy -msgid "Timecode Seconds" -msgstr "Segundos SMPTE" - -#: editor.cc:140 editor.cc:3435 -#, fuzzy -msgid "Timecode Minutes" -msgstr "Minutos SMPTE" - #: editor.cc:141 editor.cc:3437 msgid "Seconds" msgstr "Segundos" @@ -2510,73 +1513,18 @@ msgstr "Segundos" msgid "Minutes" msgstr "Minutos" -#: editor.cc:143 editor.cc:3413 quantize_dialog.cc:37 quantize_dialog.cc:141 -#, fuzzy -msgid "Beats/128" -msgstr "Batimentos/8" - -#: editor.cc:144 editor.cc:3411 quantize_dialog.cc:38 quantize_dialog.cc:143 -#, fuzzy -msgid "Beats/64" -msgstr "Batimentos/4" - #: editor.cc:145 editor.cc:3409 quantize_dialog.cc:39 quantize_dialog.cc:145 msgid "Beats/32" msgstr "Batimentos/32" -#: editor.cc:146 editor.cc:3407 -#, fuzzy -msgid "Beats/28" -msgstr "Batimentos/8" - -#: editor.cc:147 editor.cc:3405 -#, fuzzy -msgid "Beats/24" -msgstr "Batimentos/4" - -#: editor.cc:148 editor.cc:3403 -#, fuzzy -msgid "Beats/20" -msgstr "Batimentos/32" - #: editor.cc:149 editor.cc:3401 quantize_dialog.cc:40 quantize_dialog.cc:147 msgid "Beats/16" msgstr "Batimentos/16" -#: editor.cc:150 editor.cc:3399 -#, fuzzy -msgid "Beats/14" -msgstr "Batimentos/4" - -#: editor.cc:151 editor.cc:3397 -#, fuzzy -msgid "Beats/12" -msgstr "Batimentos/16" - -#: editor.cc:152 editor.cc:3395 -#, fuzzy -msgid "Beats/10" -msgstr "Batimentos/16" - #: editor.cc:153 editor.cc:3393 quantize_dialog.cc:41 quantize_dialog.cc:149 msgid "Beats/8" msgstr "Batimentos/8" -#: editor.cc:154 editor.cc:3391 -#, fuzzy -msgid "Beats/7" -msgstr "Batimentos/8" - -#: editor.cc:155 editor.cc:3389 -#, fuzzy -msgid "Beats/6" -msgstr "Batimentos/16" - -#: editor.cc:156 editor.cc:3387 -#, fuzzy -msgid "Beats/5" -msgstr "Batimentos/8" - #: editor.cc:157 editor.cc:3385 quantize_dialog.cc:42 quantize_dialog.cc:151 msgid "Beats/4" msgstr "Batimentos/4" @@ -2585,11 +1533,6 @@ msgstr "Batimentos/4" msgid "Beats/3" msgstr "Batimentos/3" -#: editor.cc:159 editor.cc:3381 quantize_dialog.cc:44 quantize_dialog.cc:155 -#, fuzzy -msgid "Beats/2" -msgstr "Batimentos/32" - #: editor.cc:160 editor.cc:3415 quantize_dialog.cc:45 quantize_dialog.cc:157 msgid "Beats" msgstr "Batimentos" @@ -2639,11 +1582,6 @@ msgstr "Cursor de reprodução" msgid "Marker" msgstr "Marcador" -#: editor.cc:180 editor.cc:189 editor.cc:3525 editor_actions.cc:469 -#, fuzzy -msgid "Mouse" -msgstr "Teclado/Rato" - #: editor.cc:185 editor.cc:3517 mono_panner_editor.cc:42 msgid "Left" msgstr "Esquerda" @@ -2656,11 +1594,6 @@ msgstr "Direita" msgid "Center" msgstr "Centro" -#: editor.cc:190 editor.cc:3090 editor.cc:3527 -#, fuzzy -msgid "Edit point" -msgstr "Editar com" - #: editor.cc:196 msgid "Mushy" msgstr "" @@ -2705,11 +1638,6 @@ msgstr "Marcadores de intervalo" msgid "Loop/Punch Ranges" msgstr "Ciclos/inserção" -#: editor.cc:244 editor_actions.cc:540 -#, fuzzy -msgid "CD Markers" -msgstr "Marcador" - #: editor.cc:245 msgid "Video Timeline" msgstr "" @@ -2722,36 +1650,10 @@ msgstr "modo" msgid "Regions" msgstr "Regiões" -#: editor.cc:543 -#, fuzzy -msgid "Tracks & Busses" -msgstr "Faixas/barramentos" - #: editor.cc:544 msgid "Snapshots" msgstr "Capturas" -#: editor.cc:545 -#, fuzzy -msgid "Track & Bus Groups" -msgstr "Faixas/barramentos" - -#: editor.cc:546 -#, fuzzy -msgid "Ranges & Marks" -msgstr "Marcadores de intervalo" - -#: editor.cc:690 editor.cc:5345 rc_option_editor.cc:1294 -#: rc_option_editor.cc:1302 rc_option_editor.cc:1310 rc_option_editor.cc:1318 -#: rc_option_editor.cc:1335 rc_option_editor.cc:1337 rc_option_editor.cc:1345 -#: rc_option_editor.cc:1353 rc_option_editor.cc:1373 rc_option_editor.cc:1385 -#: rc_option_editor.cc:1387 rc_option_editor.cc:1395 rc_option_editor.cc:1403 -#: rc_option_editor.cc:1411 rc_option_editor.cc:1419 rc_option_editor.cc:1427 -#: rc_option_editor.cc:1442 rc_option_editor.cc:1446 -#, fuzzy -msgid "Editor" -msgstr "Editar" - #: editor.cc:1215 editor.cc:1225 editor.cc:4440 editor_actions.cc:130 #: editor_actions.cc:1813 msgid "Loop" @@ -2811,45 +1713,10 @@ msgstr "Congelar" msgid "Unfreeze" msgstr "Descongelar" -#: editor.cc:1816 -#, fuzzy -msgid "Selected Regions" -msgstr "Seleccionar regiões" - -#: editor.cc:1852 editor_markers.cc:895 -#, fuzzy -msgid "Play Range" -msgstr "Reproduzir intervalo" - #: editor.cc:1853 editor_markers.cc:898 msgid "Loop Range" msgstr "Intervalo cíclico" -#: editor.cc:1862 editor_actions.cc:332 -#, fuzzy -msgid "Move Range Start to Previous Region Boundary" -msgstr "Reprodução ao final da região anterior" - -#: editor.cc:1869 editor_actions.cc:339 -#, fuzzy -msgid "Move Range Start to Next Region Boundary" -msgstr "Reprodução ao final da próxima região" - -#: editor.cc:1876 editor_actions.cc:346 -#, fuzzy -msgid "Move Range End to Previous Region Boundary" -msgstr "Reprodução ao final da região anterior" - -#: editor.cc:1883 editor_actions.cc:353 -#, fuzzy -msgid "Move Range End to Next Region Boundary" -msgstr "Reprodução ao final da próxima região" - -#: editor.cc:1889 -#, fuzzy -msgid "Convert to Region In-Place" -msgstr "Ajustar ao sincronismo de região" - #: editor.cc:1890 msgid "Convert to Region in Region List" msgstr "" @@ -2858,116 +1725,31 @@ msgstr "" msgid "Select All in Range" msgstr "Seleccionar tudo no intervalo" -#: editor.cc:1896 -#, fuzzy -msgid "Set Loop from Range" -msgstr "Estabelecer intervalo cíclico" - -#: editor.cc:1897 -#, fuzzy -msgid "Set Punch from Range" -msgstr "Estabelecer intervalo de inserção" - #: editor.cc:1900 msgid "Add Range Markers" msgstr "Acrescentar marcadores de intervalo" -#: editor.cc:1903 -#, fuzzy -msgid "Crop Region to Range" -msgstr "Cortar região no intervalo" - -#: editor.cc:1904 -#, fuzzy -msgid "Fill Range with Region" -msgstr "Preencher intervalo com região" - #: editor.cc:1905 editor_actions.cc:289 msgid "Duplicate Range" msgstr "Duplicar intervalo" -#: editor.cc:1908 -#, fuzzy -msgid "Consolidate Range" -msgstr "Duplicar intervalo" - #: editor.cc:1909 msgid "Consolidate Range With Processing" msgstr "" -#: editor.cc:1910 -#, fuzzy -msgid "Bounce Range to Region List" -msgstr "Separar intervalo em regiões" - #: editor.cc:1911 msgid "Bounce Range to Region List With Processing" msgstr "" -#: editor.cc:1912 editor_markers.cc:908 -#, fuzzy -msgid "Export Range..." -msgstr "Exportar intervalo" - -#: editor.cc:1927 editor.cc:2008 editor_actions.cc:281 -#, fuzzy -msgid "Play From Edit Point" -msgstr "Reproduzir desde o cursor de edição" - -#: editor.cc:1928 editor.cc:2009 -#, fuzzy -msgid "Play From Start" -msgstr "Reproduzir desde o início" - -#: editor.cc:1929 -#, fuzzy -msgid "Play Region" -msgstr "Reproduzir região" - #: editor.cc:1931 msgid "Loop Region" msgstr "Reproduzir região em ciclo" -#: editor.cc:1941 editor.cc:2018 -#, fuzzy -msgid "Select All in Track" -msgstr "Seleccionar tudo na faixa" - #: editor.cc:1942 editor.cc:2019 editor_actions.cc:185 #: export_timespan_selector.cc:53 processor_box.cc:2237 msgid "Select All" msgstr "Seleccionar tudo" -#: editor.cc:1943 editor.cc:2020 -#, fuzzy -msgid "Invert Selection in Track" -msgstr "Inverter selecção na faixa" - -#: editor.cc:1944 editor.cc:2021 editor_actions.cc:187 -#, fuzzy -msgid "Invert Selection" -msgstr "Inverter selecção" - -#: editor.cc:1946 -#, fuzzy -msgid "Set Range to Loop Range" -msgstr "Estabelecer intervalo cíclico" - -#: editor.cc:1947 -#, fuzzy -msgid "Set Range to Punch Range" -msgstr "Estabelecer intervalo de inserção" - -#: editor.cc:1949 editor.cc:2023 editor_actions.cc:188 -#, fuzzy -msgid "Select All After Edit Point" -msgstr "Seleccionar tudo após o cursor de edição" - -#: editor.cc:1950 editor.cc:2024 editor_actions.cc:189 -#, fuzzy -msgid "Select All Before Edit Point" -msgstr "Seleccionar tudo antes do cursor de edição" - #: editor.cc:1951 editor.cc:2025 msgid "Select All After Playhead" msgstr "Seleccionar tudo após o cursor de reprodução" @@ -2976,16 +1758,6 @@ msgstr "Seleccionar tudo após o cursor de reprodução" msgid "Select All Before Playhead" msgstr "Seleccionar tudo antes do cursor de reprodução" -#: editor.cc:1953 -#, fuzzy -msgid "Select All Between Playhead and Edit Point" -msgstr "Seleccionar tudo antes do cursor de reprodução" - -#: editor.cc:1954 -#, fuzzy -msgid "Select All Within Playhead and Edit Point" -msgstr "Seleccionar tudo após o cursor de reprodução" - #: editor.cc:1955 msgid "Select Range Between Playhead and Edit Point" msgstr "" @@ -3018,31 +1790,6 @@ msgstr "Alinhar relativamente" msgid "Insert Selected Region" msgstr "Inserir regiões seleccionadas" -#: editor.cc:1980 -#, fuzzy -msgid "Insert Existing Media" -msgstr "Inserir audio existente" - -#: editor.cc:1989 editor.cc:2045 -#, fuzzy -msgid "Nudge Entire Track Later" -msgstr "Retocar toda a faixa p/frente" - -#: editor.cc:1990 editor.cc:2046 -#, fuzzy -msgid "Nudge Track After Edit Point Later" -msgstr "Retocar a faixa p/frente do cursor de edição" - -#: editor.cc:1991 editor.cc:2047 -#, fuzzy -msgid "Nudge Entire Track Earlier" -msgstr "Retocar toda a faixa p/frente" - -#: editor.cc:1992 editor.cc:2048 -#, fuzzy -msgid "Nudge Track After Edit Point Earlier" -msgstr "Retocar a faixa p/frente do cursor de edição" - #: editor.cc:1994 editor.cc:2050 msgid "Nudge" msgstr "Retocar" @@ -3051,40 +1798,10 @@ msgstr "Retocar" msgid "Smart Mode (add Range functions to Object mode)" msgstr "" -#: editor.cc:3071 -#, fuzzy -msgid "Object Mode (select/move Objects)" -msgstr "seleccionar/mover intervalos" - -#: editor.cc:3072 -#, fuzzy -msgid "Range Mode (select/move Ranges)" -msgstr "seleccionar/mover intervalos" - #: editor.cc:3073 msgid "Draw/Edit MIDI Notes" msgstr "" -#: editor.cc:3074 -#, fuzzy -msgid "Draw Region Gain" -msgstr "Arrastar cópia de região" - -#: editor.cc:3075 -#, fuzzy -msgid "Select Zoom Range" -msgstr "seleccionar zoom" - -#: editor.cc:3076 -#, fuzzy -msgid "Stretch/Shrink Regions and MIDI Notes" -msgstr "alongar/estreitar regiões" - -#: editor.cc:3077 -#, fuzzy -msgid "Listen to Specific Regions" -msgstr "ouvir regiões específicas" - #: editor.cc:3078 msgid "Note Level Editing" msgstr "" @@ -3095,16 +1812,6 @@ msgid "" "Context-click for other operations" msgstr "" -#: editor.cc:3080 -#, fuzzy -msgid "Nudge Region/Selection Later" -msgstr "Retocar região/selecção para a frente" - -#: editor.cc:3081 -#, fuzzy -msgid "Nudge Region/Selection Earlier" -msgstr "Retocar região/selecção para a frente" - #: editor.cc:3082 editor_actions.cc:242 msgid "Zoom In" msgstr "Zoom (+)" @@ -3117,30 +1824,10 @@ msgstr "Zoom (-)" msgid "Zoom to Session" msgstr "Zoom (sessão)" -#: editor.cc:3085 -#, fuzzy -msgid "Zoom focus" -msgstr "Zoom (focagem)" - -#: editor.cc:3086 -#, fuzzy -msgid "Expand Tracks" -msgstr "como faixas" - -#: editor.cc:3087 -#, fuzzy -msgid "Shrink Tracks" -msgstr "Outras faixas" - #: editor.cc:3088 msgid "Snap/Grid Units" msgstr "" -#: editor.cc:3089 -#, fuzzy -msgid "Snap/Grid Mode" -msgstr "Modo de ajuste" - #: editor.cc:3091 msgid "Edit Mode" msgstr "Modo de edição" @@ -3155,16 +1842,6 @@ msgstr "" msgid "malformed URL passed to drag-n-drop code" msgstr "" -#: editor.cc:3256 editor_actions.cc:291 -#, fuzzy -msgid "Command|Undo" -msgstr "Comentários" - -#: editor.cc:3258 -#, fuzzy -msgid "Command|Undo (%1)" -msgstr "Desfazer (%1)" - #: editor.cc:3265 editor_actions.cc:292 msgid "Redo" msgstr "Refazer" @@ -3181,34 +1858,6 @@ msgstr "Duplicar" msgid "Number of duplications:" msgstr "" -#: editor.cc:3864 -#, fuzzy -msgid "Playlist Deletion" -msgstr "Reproduzir região seleccionada" - -#: editor.cc:3865 -#, fuzzy -msgid "" -"Playlist %1 is currently unused.\n" -"If it is kept, its audio files will not be cleaned.\n" -"If it is deleted, audio files used by it alone will be cleaned." -msgstr "" -"A lista de reprodução %1 não se encontra actualmente em uso.\n" -"Se for mantida assim, não serão eliminados os ficheiros de audio por ela " -"empregues.\n" -"Se for eliminada, todos os ficheiros de audio serão respectivamente " -"eliminados." - -#: editor.cc:3875 -#, fuzzy -msgid "Delete Playlist" -msgstr "Eliminar lista de reprodução" - -#: editor.cc:3876 -#, fuzzy -msgid "Keep Playlist" -msgstr "Manter lista de reprodução" - #: editor.cc:3877 editor_audio_import.cc:581 editor_ops.cc:5856 #: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 msgid "Cancel" @@ -3230,11 +1879,6 @@ msgstr "apagar lista de reprodução" msgid "Please wait while %1 loads visual data." msgstr "" -#: editor.cc:5492 editor_markers.cc:940 panner_ui.cc:393 processor_box.cc:2253 -#, fuzzy -msgid "Edit..." -msgstr "Editar" - #: editor_actions.cc:88 msgid "Autoconnect" msgstr "Auto-ligar" @@ -3243,26 +1887,6 @@ msgstr "Auto-ligar" msgid "Crossfades" msgstr "Desvanecimentos cruzados" -#: editor_actions.cc:91 -#, fuzzy -msgid "Move Selected Marker" -msgstr "mover marccador métrico" - -#: editor_actions.cc:92 -#, fuzzy -msgid "Select Range Operations" -msgstr "Seleccionar regiões" - -#: editor_actions.cc:93 -#, fuzzy -msgid "Select Regions" -msgstr "Seleccionar regiões" - -#: editor_actions.cc:94 -#, fuzzy -msgid "Edit Point" -msgstr "Editar com" - #: editor_actions.cc:95 msgid "Fade" msgstr "Desvanecimento" @@ -3271,11 +1895,6 @@ msgstr "Desvanecimento" msgid "Latch" msgstr "" -#: editor_actions.cc:97 editor_regions.cc:111 region_editor.cc:46 -#, fuzzy -msgid "Region" -msgstr "Regiões" - #: editor_actions.cc:98 msgid "Layering" msgstr "Nivelar" @@ -3290,23 +1909,6 @@ msgstr "Posição" msgid "Trim" msgstr "Cortar" -#: editor_actions.cc:102 editor_actions.cc:122 route_group_dialog.cc:40 -#, fuzzy -msgid "Gain" -msgstr "Ferramenta/ganho" - -#: editor_actions.cc:103 editor_actions.cc:538 -#, fuzzy -msgid "Ranges" -msgstr "Intervalo" - -#: editor_actions.cc:104 editor_actions.cc:1790 session_option_editor.cc:145 -#: session_option_editor.cc:147 session_option_editor.cc:156 -#: session_option_editor.cc:163 -#, fuzzy -msgid "Fades" -msgstr "Desvanecimento" - #: editor_actions.cc:107 msgid "Link" msgstr "" @@ -3315,16 +1917,6 @@ msgstr "" msgid "Zoom Focus" msgstr "Zoom (focagem)" -#: editor_actions.cc:109 -#, fuzzy -msgid "Locate to Markers" -msgstr "Localizar ao marcador" - -#: editor_actions.cc:110 editor_actions.cc:539 -#, fuzzy -msgid "Markers" -msgstr "Marcador" - #: editor_actions.cc:111 msgid "Meter falloff" msgstr "VUímetro (decaimento)" @@ -3333,31 +1925,11 @@ msgstr "VUímetro (decaimento)" msgid "Meter hold" msgstr "VUímetro (persistência)" -#: editor_actions.cc:113 session_option_editor.cc:234 -#, fuzzy -msgid "MIDI Options" -msgstr "Opções" - -#: editor_actions.cc:114 -#, fuzzy -msgid "Misc Options" -msgstr "Opções" - #: editor_actions.cc:115 rc_option_editor.cc:1460 route_group_dialog.cc:48 #: session_option_editor.cc:218 session_option_editor.cc:225 msgid "Monitoring" msgstr "Monitorização" -#: editor_actions.cc:116 -#, fuzzy -msgid "Active Mark" -msgstr "Activo" - -#: editor_actions.cc:119 -#, fuzzy -msgid "Primary Clock" -msgstr "Cronómetro principal" - #: editor_actions.cc:120 msgid "Pullup / Pulldown" msgstr "" @@ -3370,36 +1942,11 @@ msgstr "Operações em regiões" msgid "Rulers" msgstr "" -#: editor_actions.cc:124 -#, fuzzy -msgid "Views" -msgstr "Ver" - -#: editor_actions.cc:125 -#, fuzzy -msgid "Scroll" -msgstr "Rolar p/frente" - -#: editor_actions.cc:126 -#, fuzzy -msgid "Secondary Clock" -msgstr "Cronómetro secundário" - -#: editor_actions.cc:129 editor_actions.cc:297 -#, fuzzy -msgid "Separate" -msgstr "separar" - #: editor_actions.cc:132 mixer_strip.cc:1914 route_time_axis.cc:208 #: route_time_axis.cc:2417 msgid "Solo" msgstr "" -#: editor_actions.cc:133 -#, fuzzy -msgid "Subframes" -msgstr "Quadros" - #: editor_actions.cc:136 msgid "Timecode fps" msgstr "" @@ -3416,11 +1963,6 @@ msgstr "Ferramentas" msgid "View" msgstr "Ver" -#: editor_actions.cc:142 -#, fuzzy -msgid "Zoom" -msgstr "Zoom (+)" - #: editor_actions.cc:148 msgid "Break drag or deselect all" msgstr "" @@ -3429,31 +1971,6 @@ msgstr "" msgid "Show Editor Mixer" msgstr "Mostrar painel de mistura" -#: editor_actions.cc:151 -#, fuzzy -msgid "Show Editor List" -msgstr "Mostrar painel de edição" - -#: editor_actions.cc:153 -#, fuzzy -msgid "Playhead to Next Region Boundary" -msgstr "Reprodução ao final da próxima região" - -#: editor_actions.cc:154 -#, fuzzy -msgid "Playhead to Next Region Boundary (No Track Selection)" -msgstr "Reprodução ao início da próxima região" - -#: editor_actions.cc:155 -#, fuzzy -msgid "Playhead to Previous Region Boundary" -msgstr "Reprodução ao final da região anterior" - -#: editor_actions.cc:156 -#, fuzzy -msgid "Playhead to Previous Region Boundary (No Track Selection)" -msgstr "Reprodução ao início da região anterior" - #: editor_actions.cc:158 msgid "Playhead to Next Region Start" msgstr "Reprodução ao início da próxima região" @@ -3478,65 +1995,10 @@ msgstr "Reprodução ao final da região anterior" msgid "Playhead to Previous Region Sync" msgstr "Reprodução sincronizada com a região anterior" -#: editor_actions.cc:166 -#, fuzzy -msgid "To Next Region Boundary" -msgstr "Ajustar ao extremo de região" - #: editor_actions.cc:167 msgid "To Next Region Boundary (No Track Selection)" msgstr "" -#: editor_actions.cc:168 -#, fuzzy -msgid "To Previous Region Boundary" -msgstr "Reprodução ao final da região anterior" - -#: editor_actions.cc:169 -#, fuzzy -msgid "To Previous Region Boundary (No Track Selection)" -msgstr "Reprodução ao início da região anterior" - -#: editor_actions.cc:171 -#, fuzzy -msgid "To Next Region Start" -msgstr "Reprodução ao início da próxima região" - -#: editor_actions.cc:172 -#, fuzzy -msgid "To Next Region End" -msgstr "Reprodução ao final da próxima região" - -#: editor_actions.cc:173 -#, fuzzy -msgid "To Next Region Sync" -msgstr "Reprodução síncrona com a próxima região" - -#: editor_actions.cc:175 -#, fuzzy -msgid "To Previous Region Start" -msgstr "Reprodução ao início da região anterior" - -#: editor_actions.cc:176 -#, fuzzy -msgid "To Previous Region End" -msgstr "Reprodução ao final da região anterior" - -#: editor_actions.cc:177 -#, fuzzy -msgid "To Previous Region Sync" -msgstr "Reprodução sincronizada com a região anterior" - -#: editor_actions.cc:179 -#, fuzzy -msgid "To Range Start" -msgstr "Reprodução no início do intervalo" - -#: editor_actions.cc:180 -#, fuzzy -msgid "To Range End" -msgstr "Reprodução no final do intervalo" - #: editor_actions.cc:182 msgid "Playhead to Range Start" msgstr "Reprodução no início do intervalo" @@ -3549,21 +2011,6 @@ msgstr "Reprodução no final do intervalo" msgid "Deselect All" msgstr "Seleccionar nenhum" -#: editor_actions.cc:191 -#, fuzzy -msgid "Select All Overlapping Edit Range" -msgstr "Seleccionar tudo no intervalo" - -#: editor_actions.cc:192 -#, fuzzy -msgid "Select All Inside Edit Range" -msgstr "Seleccionar tudo no intervalo" - -#: editor_actions.cc:194 -#, fuzzy -msgid "Select Edit Range" -msgstr "Seleccionar tudo no intervalo" - #: editor_actions.cc:196 msgid "Select All in Punch Range" msgstr "Seleccionar tudo no intervalo de inserção" @@ -3580,119 +2027,14 @@ msgstr "" msgid "Select Previous Track or Bus" msgstr "" -#: editor_actions.cc:202 -#, fuzzy -msgid "Toggle Record Enable" -msgstr "Comutador de gravação Faixa 1" - -#: editor_actions.cc:204 -#, fuzzy -msgid "Toggle Solo" -msgstr "gravar" - -#: editor_actions.cc:206 -#, fuzzy -msgid "Toggle Mute" -msgstr "Comutar activação de envolvente" - -#: editor_actions.cc:208 -#, fuzzy -msgid "Toggle Solo Isolate" -msgstr "Solo livre" - -#: editor_actions.cc:213 -#, fuzzy -msgid "Save View %1" -msgstr "Guardar e %1" - #: editor_actions.cc:219 msgid "Goto View %1" msgstr "" -#: editor_actions.cc:225 -#, fuzzy -msgid "Locate to Mark %1" -msgstr "Localizar ao marcador" - -#: editor_actions.cc:229 -#, fuzzy -msgid "Jump to Next Mark" -msgstr "Saltar marcador p/frente" - -#: editor_actions.cc:230 -#, fuzzy -msgid "Jump to Previous Mark" -msgstr "cortar para edição" - -#: editor_actions.cc:231 -#, fuzzy -msgid "Add Mark from Playhead" -msgstr "Estabelecer marcador no cursor de reprodução" - -#: editor_actions.cc:233 -#, fuzzy -msgid "Nudge Next Later" -msgstr "Retocar seguinte p/frente" - -#: editor_actions.cc:234 -#, fuzzy -msgid "Nudge Next Earlier" -msgstr "Retocar seguinte p/frente" - -#: editor_actions.cc:236 -#, fuzzy -msgid "Nudge Playhead Forward" -msgstr "Cursor de reprodução p/frente" - -#: editor_actions.cc:237 -#, fuzzy -msgid "Nudge Playhead Backward" -msgstr "Cursor de reprodução p/trás" - -#: editor_actions.cc:238 -#, fuzzy -msgid "Playhead To Next Grid" -msgstr "Reprodução ao final da próxima região" - -#: editor_actions.cc:239 -#, fuzzy -msgid "Playhead To Previous Grid" -msgstr "Reprodução ao final da região anterior" - -#: editor_actions.cc:244 -#, fuzzy -msgid "Zoom to Region" -msgstr "Zoom (sessão)" - #: editor_actions.cc:245 msgid "Zoom to Region (Width and Height)" msgstr "" -#: editor_actions.cc:246 -#, fuzzy -msgid "Toggle Zoom State" -msgstr "Comutar activação de envolvente" - -#: editor_actions.cc:248 -#, fuzzy -msgid "Expand Track Height" -msgstr "como faixas" - -#: editor_actions.cc:249 -#, fuzzy -msgid "Shrink Track Height" -msgstr "Outras faixas" - -#: editor_actions.cc:251 -#, fuzzy -msgid "Move Selected Tracks Up" -msgstr "Passar faixas p/cima" - -#: editor_actions.cc:253 -#, fuzzy -msgid "Move Selected Tracks Down" -msgstr "Passar faixas p/baixo" - #: editor_actions.cc:256 msgid "Scroll Tracks Up" msgstr "Rolar faixas p/cima" @@ -3721,11 +2063,6 @@ msgstr "Rolar p/frente" msgid "Center Playhead" msgstr "Centrar cursor de reprodução" -#: editor_actions.cc:268 -#, fuzzy -msgid "Center Edit Point" -msgstr "Número de canais" - #: editor_actions.cc:270 msgid "Playhead Forward" msgstr "Cursor de reprodução p/frente" @@ -3734,84 +2071,14 @@ msgstr "Cursor de reprodução p/frente" msgid "Playhead Backward" msgstr "Cursor de reprodução p/trás" -#: editor_actions.cc:273 -#, fuzzy -msgid "Playhead to Active Mark" -msgstr "Reprodução no início do intervalo" - -#: editor_actions.cc:274 -#, fuzzy -msgid "Active Mark to Playhead" -msgstr "Estabelecer marcador no cursor de reprodução" - -#: editor_actions.cc:276 -#, fuzzy -msgid "Set Loop from Edit Range" -msgstr "Estabelecer intervalo cíclico" - -#: editor_actions.cc:277 -#, fuzzy -msgid "Set Punch from Edit Range" -msgstr "Estabelecer intervalo de inserção" - -#: editor_actions.cc:280 -#, fuzzy -msgid "Play Selected Regions" -msgstr "Seleccionar regiões" - -#: editor_actions.cc:282 -#, fuzzy -msgid "Play from Edit Point and Return" -msgstr "Reproduzir desde o cursor de edição" - -#: editor_actions.cc:284 -#, fuzzy -msgid "Play Edit Range" -msgstr "Reproduzir intervalo cíclico" - -#: editor_actions.cc:286 -#, fuzzy -msgid "Playhead to Mouse" -msgstr "Cursor de reprodução p/edição" - -#: editor_actions.cc:287 -#, fuzzy -msgid "Active Marker to Mouse" -msgstr "Ouvir ao cursor do rato" - -#: editor_actions.cc:294 -#, fuzzy -msgid "Export Audio" -msgstr "Exportar região" - #: editor_actions.cc:295 export_dialog.cc:406 msgid "Export Range" msgstr "Exportar intervalo" -#: editor_actions.cc:300 -#, fuzzy -msgid "Separate Using Punch Range" -msgstr "Separar regiões no intervalo" - -#: editor_actions.cc:303 -#, fuzzy -msgid "Separate Using Loop Range" -msgstr "Separar regiões no intervalo" - #: editor_actions.cc:306 editor_actions.cc:323 msgid "Crop" msgstr "" -#: editor_actions.cc:315 -#, fuzzy -msgid "Set Tempo from Edit Range = Bar" -msgstr "Seleccionar intervalo" - -#: editor_actions.cc:317 -#, fuzzy -msgid "Log" -msgstr "Longo" - #: editor_actions.cc:320 msgid "Move Later to Transient" msgstr "" @@ -3828,11 +2095,6 @@ msgstr "Iniciar intervalo" msgid "Finish Range" msgstr "Finalizar intervalo" -#: editor_actions.cc:327 -#, fuzzy -msgid "Finish Add Range" -msgstr "Acabar intervalo" - #: editor_actions.cc:357 msgid "Follow Playhead" msgstr "Seguir o cursor de reprodução" @@ -3841,32 +2103,12 @@ msgstr "Seguir o cursor de reprodução" msgid "Remove Last Capture" msgstr "Remover a última captura" -#: editor_actions.cc:360 -#, fuzzy -msgid "Stationary Playhead" -msgstr "Estabelecer cursor de reprodução" - -#: editor_actions.cc:362 insert_time_dialog.cc:32 -#, fuzzy -msgid "Insert Time" -msgstr "Inserir região" - -#: editor_actions.cc:365 -#, fuzzy -msgid "Toggle Active" -msgstr "Comutar activação de envolvente" - #: editor_actions.cc:370 editor_actions.cc:1716 editor_markers.cc:876 #: editor_markers.cc:941 editor_snapshots.cc:121 mixer_strip.cc:1495 #: route_time_axis.cc:710 msgid "Remove" msgstr "Remover" -#: editor_actions.cc:374 -#, fuzzy -msgid "Fit Selected Tracks" -msgstr "seleccionar visualização de faixa" - #: editor_actions.cc:376 time_axis_view.cc:1302 msgid "Largest" msgstr "Enorme" @@ -3903,21 +2145,6 @@ msgstr "Zoom (focagem/centro)" msgid "Zoom Focus Playhead" msgstr "Zoom (focagem/reprodução)" -#: editor_actions.cc:401 -#, fuzzy -msgid "Zoom Focus Mouse" -msgstr "Zoom (focagem/esquerda)" - -#: editor_actions.cc:402 -#, fuzzy -msgid "Zoom Focus Edit Point" -msgstr "Zoom (focagem/edição)" - -#: editor_actions.cc:404 -#, fuzzy -msgid "Next Zoom Focus" -msgstr "Zoom (focagem)" - #: editor_actions.cc:410 msgid "Smart Object Mode" msgstr "" @@ -3934,11 +2161,6 @@ msgstr "Ferramenta/objecto" msgid "Range Tool" msgstr "Ferramenta/intervalo" -#: editor_actions.cc:429 -#, fuzzy -msgid "Note Drawing Tool" -msgstr "Ferramenta/ganho" - #: editor_actions.cc:435 msgid "Gain Tool" msgstr "Ferramenta/ganho" @@ -3947,30 +2169,10 @@ msgstr "Ferramenta/ganho" msgid "Zoom Tool" msgstr "Ferramenta/zoom" -#: editor_actions.cc:447 -#, fuzzy -msgid "Audition Tool" -msgstr "Audição" - -#: editor_actions.cc:453 -#, fuzzy -msgid "Time FX Tool" -msgstr "Ferramenta/timefx" - #: editor_actions.cc:459 msgid "Step Mouse Mode" msgstr "" -#: editor_actions.cc:461 -#, fuzzy -msgid "Edit MIDI" -msgstr "Modo de edição" - -#: editor_actions.cc:472 -#, fuzzy -msgid "Change Edit Point" -msgstr "Número de canais" - #: editor_actions.cc:473 msgid "Change Edit Point Including Marker" msgstr "" @@ -3988,34 +2190,14 @@ msgstr "Deslizar" msgid "Lock" msgstr "Bloquear" -#: editor_actions.cc:479 -#, fuzzy -msgid "Toggle Edit Mode" -msgstr "Modo de edição" - -#: editor_actions.cc:481 -#, fuzzy -msgid "Snap to" -msgstr "Ajustar a" - #: editor_actions.cc:482 msgid "Snap Mode" msgstr "Modo de ajuste" -#: editor_actions.cc:489 -#, fuzzy -msgid "Next Snap Mode" -msgstr "Modo de ajuste" - #: editor_actions.cc:490 msgid "Next Snap Choice" msgstr "" -#: editor_actions.cc:491 -#, fuzzy -msgid "Next Musical Snap Choice" -msgstr "Modo de ajuste" - #: editor_actions.cc:492 msgid "Previous Snap Choice" msgstr "" @@ -4024,204 +2206,14 @@ msgstr "" msgid "Previous Musical Snap Choice" msgstr "" -#: editor_actions.cc:498 -#, fuzzy -msgid "Snap to CD Frame" -msgstr "Ajustar ao quadro" - -#: editor_actions.cc:499 -#, fuzzy -msgid "Snap to Timecode Frame" -msgstr "Ajustar ao quadro (CD)" - -#: editor_actions.cc:500 -#, fuzzy -msgid "Snap to Timecode Seconds" -msgstr "Ajustar ao segundo" - -#: editor_actions.cc:501 -#, fuzzy -msgid "Snap to Timecode Minutes" -msgstr "Ajustar ao minuto" - -#: editor_actions.cc:502 -#, fuzzy -msgid "Snap to Seconds" -msgstr "Ajustar ao segundo" - -#: editor_actions.cc:503 -#, fuzzy -msgid "Snap to Minutes" -msgstr "Ajustar ao minuto" - -#: editor_actions.cc:505 -#, fuzzy -msgid "Snap to One Twenty Eighths" -msgstr "Ajustar ao batimento/8" - -#: editor_actions.cc:506 -#, fuzzy -msgid "Snap to Sixty Fourths" -msgstr "Ajustar ao cursor de edição" - -#: editor_actions.cc:507 -#, fuzzy -msgid "Snap to Thirty Seconds" -msgstr "Ajustar aos 30 segundos" - -#: editor_actions.cc:508 -#, fuzzy -msgid "Snap to Twenty Eighths" -msgstr "Ajustar ao batimento/8" - -#: editor_actions.cc:509 -#, fuzzy -msgid "Snap to Twenty Fourths" -msgstr "Ajustar ao cursor de edição" - -#: editor_actions.cc:510 -#, fuzzy -msgid "Snap to Twentieths" -msgstr "Ajustar ao batimento/8" - -#: editor_actions.cc:511 -#, fuzzy -msgid "Snap to Sixteenths" -msgstr "Ajustar ao batimento/16" - -#: editor_actions.cc:512 -#, fuzzy -msgid "Snap to Fourteenths" -msgstr "Ajustar ao batimento/4" - -#: editor_actions.cc:513 -#, fuzzy -msgid "Snap to Twelfths" -msgstr "Ajustar ao batimento/8" - -#: editor_actions.cc:514 -#, fuzzy -msgid "Snap to Tenths" -msgstr "Ajustar ao batimento/8" - -#: editor_actions.cc:515 -#, fuzzy -msgid "Snap to Eighths" -msgstr "Ajustar ao batimento/8" - -#: editor_actions.cc:516 -#, fuzzy -msgid "Snap to Sevenths" -msgstr "Ajustar ao batimento/8" - -#: editor_actions.cc:517 -#, fuzzy -msgid "Snap to Sixths" -msgstr "Ajustar ao batimento/8" - -#: editor_actions.cc:518 -#, fuzzy -msgid "Snap to Fifths" -msgstr "Ajustar ao batimento/8" - -#: editor_actions.cc:519 -#, fuzzy -msgid "Snap to Quarters" -msgstr "Ajustar ao batimento/4" - -#: editor_actions.cc:520 -#, fuzzy -msgid "Snap to Thirds" -msgstr "Ajustar ao batimento/3" - -#: editor_actions.cc:521 -#, fuzzy -msgid "Snap to Halves" -msgstr "Ajustar ao quadro" - -#: editor_actions.cc:523 -#, fuzzy -msgid "Snap to Beat" -msgstr "Ajustar ao batimento" - -#: editor_actions.cc:524 -#, fuzzy -msgid "Snap to Bar" -msgstr "Ajustar ao compasso" - -#: editor_actions.cc:525 -#, fuzzy -msgid "Snap to Mark" -msgstr "Ajustar ao marcador" - -#: editor_actions.cc:526 -#, fuzzy -msgid "Snap to Region Start" -msgstr "Ajustar ao início de região" - -#: editor_actions.cc:527 -#, fuzzy -msgid "Snap to Region End" -msgstr "Ajustar ao final de região" - -#: editor_actions.cc:528 -#, fuzzy -msgid "Snap to Region Sync" -msgstr "Ajustar ao sincronismo de região" - -#: editor_actions.cc:529 -#, fuzzy -msgid "Snap to Region Boundary" -msgstr "Ajustar ao extremo de região" - -#: editor_actions.cc:531 -#, fuzzy -msgid "Show Marker Lines" -msgstr "Mostrar linhas de tempo" - -#: editor_actions.cc:541 -#, fuzzy -msgid "Loop/Punch" -msgstr "Ciclos/inserção" - -#: editor_actions.cc:545 -#, fuzzy -msgid "Min:Sec" -msgstr "Min:Segs" - -#: editor_actions.cc:547 editor_actions.cc:550 -#, fuzzy -msgid "Video Monitor" -msgstr "Monitorização" - #: editor_actions.cc:549 rc_option_editor.cc:1842 msgid "Video" msgstr "" -#: editor_actions.cc:552 -#, fuzzy -msgid "Always on Top" -msgstr "Elevar região para o nível de topo" - -#: editor_actions.cc:554 -#, fuzzy -msgid "Frame number" -msgstr "remover marcador" - -#: editor_actions.cc:555 -#, fuzzy -msgid "Timecode Background" -msgstr "Segundos SMPTE" - #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" -#: editor_actions.cc:557 -#, fuzzy -msgid "Letterbox" -msgstr "bom" - #: editor_actions.cc:558 msgid "Original Size" msgstr "" @@ -4238,11 +2230,6 @@ msgstr "Audição" msgid "Show All" msgstr "Mostrar tudo" -#: editor_actions.cc:620 -#, fuzzy -msgid "Show Automatic Regions" -msgstr "Mostrar regiões de automatização" - #: editor_actions.cc:622 msgid "Ascending" msgstr "Crescente" @@ -4291,32 +2278,12 @@ msgstr "Por data de criação do ficheiro original" msgid "By Source Filesystem" msgstr "Por sistema de ficheiros original" -#: editor_actions.cc:648 -#, fuzzy -msgid "Remove Unused" -msgstr "Remover" - #: editor_actions.cc:652 editor_audio_import.cc:279 #: session_import_dialog.cc:74 session_import_dialog.cc:94 #: session_metadata_dialog.cc:297 editor_videotimeline.cc:108 msgid "Import" msgstr "Importar" -#: editor_actions.cc:655 -#, fuzzy -msgid "Import to Region List..." -msgstr "Separar intervalo em regiões" - -#: editor_actions.cc:658 session_import_dialog.cc:43 -#, fuzzy -msgid "Import From Session" -msgstr "Exportar região" - -#: editor_actions.cc:661 -#, fuzzy -msgid "Show Summary" -msgstr "Mostrar tudo" - #: editor_actions.cc:663 msgid "Show Group Tabs" msgstr "" @@ -4325,11 +2292,6 @@ msgstr "" msgid "Show Measures" msgstr "Mostrar linhas de tempo" -#: editor_actions.cc:669 -#, fuzzy -msgid "Show Logo" -msgstr "Mostrar posição" - #: editor_actions.cc:673 msgid "Toggle MIDI Input Active for Editor-Selected Tracks/Busses" msgstr "" @@ -4352,25 +2314,10 @@ msgstr "" msgid "Raise" msgstr "" -#: editor_actions.cc:1725 -#, fuzzy -msgid "Raise to Top" -msgstr "Elevar região para o nível de topo" - #: editor_actions.cc:1728 gtk-custom-ruler.c:132 msgid "Lower" msgstr "Inferior" -#: editor_actions.cc:1731 -#, fuzzy -msgid "Lower to Bottom" -msgstr "Descer região para o nível de fundo" - -#: editor_actions.cc:1734 -#, fuzzy -msgid "Move to Original Position" -msgstr "Posição original" - #: editor_actions.cc:1739 msgid "Lock to Video" msgstr "" @@ -4379,29 +2326,14 @@ msgstr "" msgid "Glue to Bars and Beats" msgstr "" -#: editor_actions.cc:1749 -#, fuzzy -msgid "Remove Sync" -msgstr "remover sincronismo" - #: editor_actions.cc:1752 mixer_strip.cc:1904 route_time_axis.cc:209 msgid "Mute" msgstr "Mudo" -#: editor_actions.cc:1755 -#, fuzzy -msgid "Normalize..." -msgstr "Normalizar" - #: editor_actions.cc:1758 msgid "Reverse" msgstr "Inverter" -#: editor_actions.cc:1761 -#, fuzzy -msgid "Make Mono Regions" -msgstr "Criar regiões mono" - #: editor_actions.cc:1764 msgid "Boost Gain" msgstr "" @@ -4414,16 +2346,6 @@ msgstr "" msgid "Pitch Shift..." msgstr "" -#: editor_actions.cc:1773 -#, fuzzy -msgid "Transpose..." -msgstr "Transporte" - -#: editor_actions.cc:1776 -#, fuzzy -msgid "Opaque" -msgstr "opaco" - #: editor_actions.cc:1780 editor_regions.cc:116 msgid "Fade In" msgstr "Evanescimento" @@ -4432,11 +2354,6 @@ msgstr "Evanescimento" msgid "Fade Out" msgstr "Desvanecimento" -#: editor_actions.cc:1800 -#, fuzzy -msgid "Multi-Duplicate..." -msgstr "Duplicar" - #: editor_actions.cc:1805 msgid "Fill Track" msgstr "Preencher faixa" @@ -4445,70 +2362,10 @@ msgstr "Preencher faixa" msgid "Set Loop Range" msgstr "Estabelecer intervalo cíclico" -#: editor_actions.cc:1816 -#, fuzzy -msgid "Set Punch" -msgstr "Estabelecer intervalo de inserção" - -#: editor_actions.cc:1820 -#, fuzzy -msgid "Add Single Range Marker" -msgstr "Acrescentar marcadores de intervalo" - -#: editor_actions.cc:1825 -#, fuzzy -msgid "Add Range Marker Per Region" -msgstr "Acrescentar marcadores de intervalo" - -#: editor_actions.cc:1829 -#, fuzzy -msgid "Snap Position To Grid" -msgstr "Ajustar ao compasso" - -#: editor_actions.cc:1832 -#, fuzzy -msgid "Close Gaps" -msgstr "Fechar" - #: editor_actions.cc:1835 msgid "Rhythm Ferret..." msgstr "" -#: editor_actions.cc:1838 -#, fuzzy -msgid "Export..." -msgstr "Exportar" - -#: editor_actions.cc:1844 -#, fuzzy -msgid "Separate Under" -msgstr "Separar intervalo em faixa" - -#: editor_actions.cc:1848 -#, fuzzy -msgid "Set Fade In Length" -msgstr "alterar duração de evanescimento" - -#: editor_actions.cc:1849 -#, fuzzy -msgid "Set Fade Out Length" -msgstr "alterar duração de desvanecimento" - -#: editor_actions.cc:1850 -#, fuzzy -msgid "Set Tempo from Region = Bar" -msgstr "estabelecer selecção desde a região" - -#: editor_actions.cc:1855 -#, fuzzy -msgid "Split at Percussion Onsets" -msgstr "Do início ao cursor de edição" - -#: editor_actions.cc:1860 -#, fuzzy -msgid "List Editor..." -msgstr "Opções" - #: editor_actions.cc:1863 msgid "Properties..." msgstr "" @@ -4533,26 +2390,6 @@ msgstr "" msgid "Spectral Analysis..." msgstr "" -#: editor_actions.cc:1874 -#, fuzzy -msgid "Reset Envelope" -msgstr "Reiniciar tudo" - -#: editor_actions.cc:1876 -#, fuzzy -msgid "Reset Gain" -msgstr "Reiniciar tudo" - -#: editor_actions.cc:1881 -#, fuzzy -msgid "Envelope Active" -msgstr "Comutar activação de envolvente" - -#: editor_actions.cc:1885 -#, fuzzy -msgid "Quantize..." -msgstr "Tipo de ficheiro" - #: editor_actions.cc:1886 editor_actions.cc:1887 msgid "Insert Patch Change..." msgstr "" @@ -4565,31 +2402,6 @@ msgstr "" msgid "Strip Silence..." msgstr "" -#: editor_actions.cc:1890 -#, fuzzy -msgid "Set Range Selection" -msgstr "Estabelecer intervalo desde selecção de intervalo" - -#: editor_actions.cc:1892 -#, fuzzy -msgid "Nudge Later" -msgstr "Retocar p/frente" - -#: editor_actions.cc:1893 -#, fuzzy -msgid "Nudge Earlier" -msgstr "Retocar p/frente" - -#: editor_actions.cc:1898 -#, fuzzy -msgid "Nudge Later by Capture Offset" -msgstr "Retocar p/frente (gravação)" - -#: editor_actions.cc:1905 -#, fuzzy -msgid "Nudge Earlier by Capture Offset" -msgstr "Retocar p/frente (gravação)" - #: editor_actions.cc:1909 msgid "Trim to Loop" msgstr "" @@ -4598,26 +2410,6 @@ msgstr "" msgid "Trim to Punch" msgstr "" -#: editor_actions.cc:1912 -#, fuzzy -msgid "Trim to Previous" -msgstr "cortar para edição" - -#: editor_actions.cc:1913 -#, fuzzy -msgid "Trim to Next" -msgstr "cortar para edição" - -#: editor_actions.cc:1920 -#, fuzzy -msgid "Insert Region From Region List" -msgstr "estabelecer selecção desde a região" - -#: editor_actions.cc:1926 -#, fuzzy -msgid "Set Sync Position" -msgstr "Estabelecer posição de sincronia de região" - #: editor_actions.cc:1927 msgid "Place Transient" msgstr "" @@ -4634,36 +2426,6 @@ msgstr "" msgid "Trim End at Edit Point" msgstr "" -#: editor_actions.cc:1935 -#, fuzzy -msgid "Align Start" -msgstr "Alinhar regiões pelo início" - -#: editor_actions.cc:1942 -#, fuzzy -msgid "Align Start Relative" -msgstr "Alinhar regiões pelo início (relativamente)" - -#: editor_actions.cc:1946 -#, fuzzy -msgid "Align End" -msgstr "Alinhar" - -#: editor_actions.cc:1951 -#, fuzzy -msgid "Align End Relative" -msgstr "Alinhar relativamente" - -#: editor_actions.cc:1958 -#, fuzzy -msgid "Align Sync" -msgstr "Alinhar regiões sincronizadas" - -#: editor_actions.cc:1965 -#, fuzzy -msgid "Align Sync Relative" -msgstr "Alinhar relativamente" - #: editor_actions.cc:1969 editor_actions.cc:1972 msgid "Choose Top..." msgstr "" @@ -4673,11 +2435,6 @@ msgid "You can't import or embed an audiofile until you have a session loaded." msgstr "" "Não é possível importar um ficheiro audio sem que haja uma sessão carregada" -#: editor_audio_import.cc:83 editor_audio_import.cc:127 -#, fuzzy -msgid "Add Existing Media" -msgstr "Acrescenter audio existente" - #: editor_audio_import.cc:177 msgid "" "The session already contains a source file named %1. Do you want to import " @@ -4710,12 +2467,6 @@ msgstr "Não acrescentar" msgid "Embed all without questions" msgstr "Acrescentar sem qualquer questão" -#: editor_audio_import.cc:556 editor_audio_import.cc:585 -#: export_format_dialog.cc:58 -#, fuzzy -msgid "Sample rate" -msgstr "Frequência de amostragem" - #: editor_audio_import.cc:557 editor_audio_import.cc:586 msgid "" "%1\n" @@ -4728,16 +2479,6 @@ msgstr "" msgid "Embed it anyway" msgstr "Acrescentar de qualquer forma" -#: editor_drag.cc:1000 -#, fuzzy -msgid "fixed time region drag" -msgstr "região cortada" - -#: editor_drag.cc:1700 -#, fuzzy -msgid "Video Start:" -msgstr "Alinhar regiões pelo início" - #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -4786,81 +2527,26 @@ msgstr "" msgid "new range marker" msgstr "novo marcador de região" -#: editor_drag.cc:4762 -#, fuzzy -msgid "rubberband selection" -msgstr "selecção de intervalo" - -#: editor_route_groups.cc:66 -#, fuzzy -msgid "No Selection = All Tracks?" -msgstr "Seleccionar tudo na faixa" - -#: editor_route_groups.cc:95 -#, fuzzy -msgid "Col" -msgstr "Cor" - -#: editor_route_groups.cc:95 -#, fuzzy -msgid "Group Tab Color" -msgstr "Cor" - -#: editor_route_groups.cc:96 -#, fuzzy -msgid "Name of Group" -msgstr "Sem grupo" - #: editor_route_groups.cc:97 editor_routes.cc:203 msgid "V" msgstr "" -#: editor_route_groups.cc:97 -#, fuzzy -msgid "Group is visible?" -msgstr "Desvanecimentos cruzados em uso" - -#: editor_route_groups.cc:98 -#, fuzzy -msgid "On" -msgstr "Abrir" - #: editor_route_groups.cc:98 msgid "Group is enabled?" msgstr "" -#: editor_route_groups.cc:99 -#, fuzzy -msgid "group|G" -msgstr "Sem grupo" - #: editor_route_groups.cc:99 msgid "Sharing Gain?" msgstr "" -#: editor_route_groups.cc:100 -#, fuzzy -msgid "relative|Rel" -msgstr "Alinhar relativamente" - #: editor_route_groups.cc:100 msgid "Relative Gain Changes?" msgstr "" -#: editor_route_groups.cc:101 -#, fuzzy -msgid "mute|M" -msgstr "mudo" - #: editor_route_groups.cc:101 msgid "Sharing Mute?" msgstr "" -#: editor_route_groups.cc:102 -#, fuzzy -msgid "solo|S" -msgstr "solo alterado" - #: editor_route_groups.cc:102 msgid "Sharing Solo?" msgstr "" @@ -4874,31 +2560,6 @@ msgstr "" msgid "Sharing Record-enable Status?" msgstr "" -#: editor_route_groups.cc:104 -#, fuzzy -msgid "monitoring|Mon" -msgstr "Monitorização" - -#: editor_route_groups.cc:104 -#, fuzzy -msgid "Sharing Monitoring Choice?" -msgstr "Monitorização" - -#: editor_route_groups.cc:105 -#, fuzzy -msgid "selection|Sel" -msgstr "Seleccionar" - -#: editor_route_groups.cc:105 -#, fuzzy -msgid "Sharing Selected/Editing Status?" -msgstr "seleccionar visualização de faixa" - -#: editor_route_groups.cc:106 -#, fuzzy -msgid "active|A" -msgstr "activo" - #: editor_route_groups.cc:106 msgid "Sharing Active Status?" msgstr "" @@ -4925,94 +2586,19 @@ msgstr "" msgid "File Exists!" msgstr "" -#: editor_export_audio.cc:151 -#, fuzzy -msgid "Overwrite Existing File" -msgstr "Inserir audio existente" - -#: editor_group_tabs.cc:162 -#, fuzzy -msgid "Fit to Window" -msgstr "Janelas" - -#: editor_markers.cc:129 -#, fuzzy -msgid "start" -msgstr "Início:" - -#: editor_markers.cc:130 -#, fuzzy -msgid "end" -msgstr "Envios" - #: editor_markers.cc:646 editor_ops.cc:1744 editor_ops.cc:1764 #: editor_ops.cc:1788 editor_ops.cc:1815 location_ui.cc:1017 msgid "add marker" msgstr "acrescentar marcador" -#: editor_markers.cc:677 -#, fuzzy -msgid "range" -msgstr " intervalo" - #: editor_markers.cc:713 location_ui.cc:852 msgid "remove marker" msgstr "remover marcador" -#: editor_markers.cc:849 -#, fuzzy -msgid "Locate to Here" -msgstr "Localizar ao marcador" - -#: editor_markers.cc:850 -#, fuzzy -msgid "Play from Here" -msgstr "Reproduzir desde o marcador" - -#: editor_markers.cc:851 -#, fuzzy -msgid "Move Mark to Playhead" -msgstr "Estabelecer marcador no cursor de reprodução" - -#: editor_markers.cc:855 -#, fuzzy -msgid "Create Range to Next Marker" -msgstr "Separar intervalo em faixa" - -#: editor_markers.cc:896 -#, fuzzy -msgid "Locate to Marker" -msgstr "Localizar ao marcador" - -#: editor_markers.cc:897 -#, fuzzy -msgid "Play from Marker" -msgstr "Reproduzir desde o marcador" - -#: editor_markers.cc:900 -#, fuzzy -msgid "Set Marker from Playhead" -msgstr "Estabelecer marcador de intervalo desde cursor de reprodução" - -#: editor_markers.cc:902 -#, fuzzy -msgid "Set Range from Selection" -msgstr "Estabelecer intervalo desde selecção de intervalo" - -#: editor_markers.cc:905 -#, fuzzy -msgid "Zoom to Range" -msgstr "Zoom (sessão)" - #: editor_markers.cc:912 msgid "Hide Range" msgstr "Esconder intervalo" -#: editor_markers.cc:913 -#, fuzzy -msgid "Rename Range..." -msgstr "Renomear intervalo" - #: editor_markers.cc:917 msgid "Remove Range" msgstr "Remover intervalo" @@ -5021,11 +2607,6 @@ msgstr "Remover intervalo" msgid "Separate Regions in Range" msgstr "Separar regiões no intervalo" -#: editor_markers.cc:927 -#, fuzzy -msgid "Select Range" -msgstr "Estabelecer intervalo" - #: editor_markers.cc:956 msgid "Set Punch Range" msgstr "Estabelecer intervalo de inserção" @@ -5073,11 +2654,6 @@ msgid "" "pointer!" msgstr "" -#: editor_mouse.cc:2416 -#, fuzzy -msgid "start point trim" -msgstr "Ponto inicial de corte" - #: editor_mouse.cc:2441 msgid "End point trim" msgstr "Ponto final de corte" @@ -5090,49 +2666,14 @@ msgstr "Nome para a região:" msgid "split" msgstr "separar" -#: editor_ops.cc:256 -#, fuzzy -msgid "alter selection" -msgstr "extender selecção" - -#: editor_ops.cc:298 -#, fuzzy -msgid "nudge regions forward" -msgstr "Retocar região/selecção para a frente" - -#: editor_ops.cc:321 editor_ops.cc:406 -#, fuzzy -msgid "nudge location forward" -msgstr "retocar p/frente" - -#: editor_ops.cc:379 -#, fuzzy -msgid "nudge regions backward" -msgstr "Retocar região/selecção para trás" - #: editor_ops.cc:468 msgid "nudge forward" msgstr "retocar p/frente" -#: editor_ops.cc:492 -#, fuzzy -msgid "nudge backward" -msgstr "Retocar p/trás" - #: editor_ops.cc:557 msgid "build_region_boundary_cache called with snap_type = %1" msgstr "" -#: editor_ops.cc:1701 -#, fuzzy -msgid "New Location Marker" -msgstr "Novo marcador de localização" - -#: editor_ops.cc:1788 -#, fuzzy -msgid "add markers" -msgstr "acrescentar marcador" - #: editor_ops.cc:1894 msgid "clear markers" msgstr "apagar marcadores" @@ -5153,84 +2694,14 @@ msgstr "inserir região arrastada" msgid "insert region" msgstr "inserir região" -#: editor_ops.cc:2261 -#, fuzzy -msgid "raise regions" -msgstr "Normalizar região" - -#: editor_ops.cc:2263 -#, fuzzy -msgid "raise region" -msgstr "remover região" - -#: editor_ops.cc:2269 -#, fuzzy -msgid "raise regions to top" -msgstr "Cortar região no intervalo" - -#: editor_ops.cc:2271 -#, fuzzy -msgid "raise region to top" -msgstr "Elevar região para o nível de topo" - -#: editor_ops.cc:2277 -#, fuzzy -msgid "lower regions" -msgstr "mover região" - -#: editor_ops.cc:2279 editor_ops.cc:2287 -#, fuzzy -msgid "lower region" -msgstr "inserir região" - -#: editor_ops.cc:2285 -#, fuzzy -msgid "lower regions to bottom" -msgstr "Descer região para o nível de fundo" - -#: editor_ops.cc:2370 -#, fuzzy -msgid "Rename Region" -msgstr "Inverter região" - -#: editor_ops.cc:2372 processor_box.cc:1779 route_ui.cc:1538 -#, fuzzy -msgid "New name:" -msgstr "Novo nome: " - #: editor_ops.cc:2682 msgid "separate" msgstr "separar" -#: editor_ops.cc:2795 -#, fuzzy -msgid "separate region under" -msgstr "Separar regiões no intervalo" - #: editor_ops.cc:2916 msgid "trim to selection" msgstr "cortar pela selecção" -#: editor_ops.cc:3052 -#, fuzzy -msgid "set sync point" -msgstr "Definir ponto de sincronia" - -#: editor_ops.cc:3076 -#, fuzzy -msgid "remove region sync" -msgstr "remover região" - -#: editor_ops.cc:3098 -#, fuzzy -msgid "move regions to original position" -msgstr "estabelecer posição de sincronismo na região" - -#: editor_ops.cc:3100 -#, fuzzy -msgid "move region to original position" -msgstr "estabelecer posição de sincronismo na região" - #: editor_ops.cc:3121 msgid "align selection" msgstr "alinhar selecção" @@ -5243,31 +2714,6 @@ msgstr "alinhar selecção (relativamente)" msgid "align region" msgstr "alinhar região" -#: editor_ops.cc:3280 -#, fuzzy -msgid "trim front" -msgstr "região cortada" - -#: editor_ops.cc:3280 -#, fuzzy -msgid "trim back" -msgstr "cortar" - -#: editor_ops.cc:3310 -#, fuzzy -msgid "trim to loop" -msgstr "cortar pela selecção" - -#: editor_ops.cc:3320 -#, fuzzy -msgid "trim to punch" -msgstr "cortar para edição" - -#: editor_ops.cc:3382 -#, fuzzy -msgid "trim to region" -msgstr "região cortada" - #: editor_ops.cc:3492 msgid "" "This track/bus cannot be frozen because the signal adds or loses channels " @@ -5276,11 +2722,6 @@ msgid "" "input or vice versa." msgstr "" -#: editor_ops.cc:3495 -#, fuzzy -msgid "Cannot freeze" -msgstr "Cancelar congelamento" - #: editor_ops.cc:3501 msgid "" "%1\n" @@ -5290,21 +2731,6 @@ msgid "" "Freezing will only process the signal as far as the first send/insert/return." msgstr "" -#: editor_ops.cc:3505 -#, fuzzy -msgid "Freeze anyway" -msgstr "Congelar" - -#: editor_ops.cc:3506 -#, fuzzy -msgid "Don't freeze" -msgstr "Cancelar congelamento" - -#: editor_ops.cc:3507 -#, fuzzy -msgid "Freeze Limits" -msgstr "Congelar" - #: editor_ops.cc:3522 msgid "Cancel Freeze" msgstr "Cancelar congelamento" @@ -5326,11 +2752,6 @@ msgstr "" msgid "bounce range" msgstr "regravar região" -#: editor_ops.cc:3678 -#, fuzzy -msgid "delete" -msgstr "Eliminar" - #: editor_ops.cc:3681 msgid "cut" msgstr "corte" @@ -5380,11 +2801,6 @@ msgstr "Não, não fazer nada." msgid "Yes, destroy it." msgstr "Sim, elimine-a." -#: editor_ops.cc:4512 -#, fuzzy -msgid "Destroy last capture" -msgstr "Remover a última captura" - #: editor_ops.cc:4573 msgid "normalize" msgstr "normalizar" @@ -5397,106 +2813,6 @@ msgstr "inverter regiões" msgid "strip silence" msgstr "" -#: editor_ops.cc:4763 -#, fuzzy -msgid "Fork Region(s)" -msgstr "como regiões" - -#: editor_ops.cc:4963 -#, fuzzy -msgid "reset region gain" -msgstr "inverter regiões" - -#: editor_ops.cc:5016 -#, fuzzy -msgid "region gain envelope active" -msgstr "Comutar activação de envolvente" - -#: editor_ops.cc:5043 -#, fuzzy -msgid "toggle region lock" -msgstr "emudecer região" - -#: editor_ops.cc:5067 -#, fuzzy -msgid "Toggle Video Lock" -msgstr "emudecer região" - -#: editor_ops.cc:5091 -#, fuzzy -msgid "region lock style" -msgstr "preencher região" - -#: editor_ops.cc:5116 -#, fuzzy -msgid "change region opacity" -msgstr "Arrastar cópia de região" - -#: editor_ops.cc:5231 -#, fuzzy -msgid "set fade in length" -msgstr "alterar duração de evanescimento" - -#: editor_ops.cc:5238 -#, fuzzy -msgid "set fade out length" -msgstr "alterar duração de desvanecimento" - -#: editor_ops.cc:5283 -#, fuzzy -msgid "set fade in shape" -msgstr "Desvanecimentos cruzados em uso" - -#: editor_ops.cc:5314 -#, fuzzy -msgid "set fade out shape" -msgstr "alterar desvanecimento" - -#: editor_ops.cc:5344 -#, fuzzy -msgid "set fade in active" -msgstr "alterar evanescimento" - -#: editor_ops.cc:5373 -#, fuzzy -msgid "set fade out active" -msgstr "alterar desvanecimento" - -#: editor_ops.cc:5638 -#, fuzzy -msgid "set loop range from selection" -msgstr "Estabelecer intervalo desde selecção de intervalo" - -#: editor_ops.cc:5660 -#, fuzzy -msgid "set loop range from edit range" -msgstr "estabelecer selecção desde o intervalo" - -#: editor_ops.cc:5689 -#, fuzzy -msgid "set loop range from region" -msgstr "estabelecer selecção desde a região" - -#: editor_ops.cc:5707 -#, fuzzy -msgid "set punch range from selection" -msgstr "Estabelecer intervalo desde selecção de intervalo" - -#: editor_ops.cc:5724 -#, fuzzy -msgid "set punch range from edit range" -msgstr "estabelecer intervalo de inserção" - -#: editor_ops.cc:5748 -#, fuzzy -msgid "set punch range from region" -msgstr "estabelecer intervalo de inserção" - -#: editor_ops.cc:5857 -#, fuzzy -msgid "Add new marker" -msgstr "acrescentar marcador de região" - #: editor_ops.cc:5858 msgid "Set global tempo" msgstr "" @@ -5509,16 +2825,6 @@ msgstr "" msgid "Do you want to set the global tempo or add a new tempo marker?" msgstr "" -#: editor_ops.cc:5888 -#, fuzzy -msgid "set tempo from region" -msgstr "estabelecer selecção desde a região" - -#: editor_ops.cc:5918 -#, fuzzy -msgid "split regions" -msgstr "seleccionar regiões" - #: editor_ops.cc:5960 msgid "" "You are about to split\n" @@ -5549,21 +2855,6 @@ msgstr "" msgid "place transient" msgstr "" -#: editor_ops.cc:6160 -#, fuzzy -msgid "snap regions to grid" -msgstr "Cortar região no intervalo" - -#: editor_ops.cc:6199 -#, fuzzy -msgid "Close Region Gaps" -msgstr "como regiões" - -#: editor_ops.cc:6204 -#, fuzzy -msgid "Crossfade length" -msgstr "Desvanecimento cruzado" - #: editor_ops.cc:6213 editor_ops.cc:6224 rhythm_ferret.cc:120 #: session_option_editor.cc:153 msgid "ms" @@ -5577,11 +2868,6 @@ msgstr "" msgid "Ok" msgstr "" -#: editor_ops.cc:6243 -#, fuzzy -msgid "close region gaps" -msgstr "estas regiões" - #: editor_ops.cc:6461 route_ui.cc:1456 msgid "That would be bad news ...." msgstr "" @@ -5596,80 +2882,14 @@ msgid "" "\"allow-special-bus-removal\" option to be \"yes\"" msgstr "" -#: editor_ops.cc:6483 -#, fuzzy -msgid "tracks" -msgstr "Faixas" - -#: editor_ops.cc:6485 route_ui.cc:1822 -#, fuzzy -msgid "track" -msgstr "Faixa" - -#: editor_ops.cc:6489 -#, fuzzy -msgid "busses" -msgstr "Barramentos" - #: editor_ops.cc:6491 route_ui.cc:1822 msgid "bus" msgstr "" -#: editor_ops.cc:6496 -#, fuzzy -msgid "" -"Do you really want to remove %1 %2 and %3 %4?\n" -"(You may also lose the playlists associated with the %2)\n" -"\n" -"This action cannot be undone, and the session file will be overwritten!" -msgstr "" -"Deseja realmente remover a faixa \"%1\" ?\n" -"\n" -"A lista de reprodução em uso para esta faixa pode ficar perdida.\n" -"(esta operação não pode ser desfeita)" - -#: editor_ops.cc:6501 -#, fuzzy -msgid "" -"Do you really want to remove %1 %2?\n" -"(You may also lose the playlists associated with the %2)\n" -"\n" -"This action cannot be undone, and the session file will be overwritten!" -msgstr "" -"Deseja realmente remover a faixa \"%1\" ?\n" -"\n" -"A lista de reprodução em uso para esta faixa pode ficar perdida.\n" -"(esta operação não pode ser desfeita)" - -#: editor_ops.cc:6507 -#, fuzzy -msgid "" -"Do you really want to remove %1 %2?\n" -"\n" -"This action cannot be undon, and the session file will be overwritten" -msgstr "" -"Deseja realmente remover o barramento \"%1\" ?\n" -"(esta operação não pode ser desfeita)" - -#: editor_ops.cc:6514 -#, fuzzy -msgid "Yes, remove them." -msgstr "Sim, remover." - #: editor_ops.cc:6516 editor_snapshots.cc:159 route_ui.cc:1483 msgid "Yes, remove it." msgstr "Sim, remover." -#: editor_ops.cc:6521 editor_ops.cc:6523 -#, fuzzy -msgid "Remove %1" -msgstr "Remover" - -#: editor_ops.cc:6582 -#, fuzzy -msgid "insert time" -msgstr "inserir ficheiro audio" - #: editor_ops.cc:6739 msgid "There are too many tracks to fit in the current window" msgstr "" @@ -5679,49 +2899,14 @@ msgstr "" msgid "Saved view %u" msgstr "" -#: editor_ops.cc:6864 -#, fuzzy -msgid "mute regions" -msgstr "emudecer região" - #: editor_ops.cc:6866 msgid "mute region" msgstr "emudecer região" -#: editor_ops.cc:6903 -#, fuzzy -msgid "combine regions" -msgstr "Normalizar região" - -#: editor_ops.cc:6941 -#, fuzzy -msgid "uncombine regions" -msgstr "Regravar região" - #: editor_regions.cc:111 msgid "Region name, with number of channels in []'s" msgstr "" -#: editor_regions.cc:112 -#, fuzzy -msgid "Position of start of region" -msgstr "Ir para o início da sessão" - -#: editor_regions.cc:113 editor_regions.cc:849 time_info_box.cc:98 -#, fuzzy -msgid "End" -msgstr "Final:" - -#: editor_regions.cc:113 -#, fuzzy -msgid "Position of end of region" -msgstr "Ir para o final da sessão" - -#: editor_regions.cc:114 -#, fuzzy -msgid "Length of the region" -msgstr "emudecer esta região" - #: editor_regions.cc:115 msgid "Position of region sync point, relative to start of the region" msgstr "" @@ -5739,16 +2924,6 @@ msgstr "" msgid "L" msgstr "" -#: editor_regions.cc:118 -#, fuzzy -msgid "Region position locked?" -msgstr "Por posição de região" - -#: editor_regions.cc:119 -#, fuzzy -msgid "G" -msgstr "Ir" - #: editor_regions.cc:119 msgid "Region position glued to Bars|Beats time?" msgstr "" @@ -5759,11 +2934,6 @@ msgstr "" msgid "M" msgstr "" -#: editor_regions.cc:120 -#, fuzzy -msgid "Region muted?" -msgstr "Finais de região" - #: editor_regions.cc:121 msgid "O" msgstr "" @@ -5780,35 +2950,10 @@ msgstr "Escondida" msgid "(MISSING) " msgstr "" -#: editor_regions.cc:457 -#, fuzzy -msgid "" -"Do you really want to remove unused regions?\n" -"(This is destructive and cannot be undone)" -msgstr "" -"Deseja realmente eliminar a última captura?\n" -"(esta operação é destrutiva e não pode ser desfeita)" - -#: editor_regions.cc:461 -#, fuzzy -msgid "Yes, remove." -msgstr "Sim, remover." - -#: editor_regions.cc:463 -#, fuzzy -msgid "Remove unused regions" -msgstr "Seleccionar regiões" - #: editor_regions.cc:816 editor_regions.cc:830 editor_regions.cc:844 msgid "Mult." msgstr "" -#: editor_regions.cc:847 engine_dialog.cc:84 midi_list_editor.cc:103 -#: time_info_box.cc:91 -#, fuzzy -msgid "Start" -msgstr "Início:" - #: editor_regions.cc:865 editor_regions.cc:881 msgid "Multiple" msgstr "" @@ -5821,74 +2966,24 @@ msgstr "" msgid "SS" msgstr "" -#: editor_routes.cc:202 -#, fuzzy -msgid "Track/Bus Name" -msgstr "Faixas/barramentos" - -#: editor_routes.cc:203 -#, fuzzy -msgid "Track/Bus visible ?" -msgstr "Faixas/barramentos" - #: editor_routes.cc:204 mixer_strip.cc:1945 meter_strip.cc:334 #: route_time_axis.cc:2407 msgid "A" msgstr "" -#: editor_routes.cc:204 -#, fuzzy -msgid "Track/Bus active ?" -msgstr "Faixas/barramentos" - #: editor_routes.cc:205 mixer_strip.cc:1932 msgid "I" msgstr "E" -#: editor_routes.cc:205 -#, fuzzy -msgid "MIDI input enabled" -msgstr "Associação MIDI" - #: editor_routes.cc:206 mixer_strip.cc:1930 mono_panner.cc:198 #: stereo_panner.cc:215 stereo_panner.cc:242 msgid "R" msgstr "" -#: editor_routes.cc:206 -#, fuzzy -msgid "Record enabled" -msgstr "Gravar" - -#: editor_routes.cc:207 -#, fuzzy -msgid "Muted" -msgstr "Mudo" - #: editor_routes.cc:208 mixer_strip.cc:1941 meter_strip.cc:330 msgid "S" msgstr "" -#: editor_routes.cc:208 -#, fuzzy -msgid "Soloed" -msgstr "Solo livre" - -#: editor_routes.cc:209 -#, fuzzy -msgid "SI" -msgstr "E" - -#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1880 -#, fuzzy -msgid "Solo Isolated" -msgstr "Solo livre" - -#: editor_routes.cc:210 -#, fuzzy -msgid "Solo Safe (Locked)" -msgstr "Solo livre" - #: editor_routes.cc:471 mixer_ui.cc:1162 msgid "Hide All" msgstr "Esconder tudo" @@ -5909,16 +3004,6 @@ msgstr "Mostrar todos os barramentos audio" msgid "Hide All Audio Busses" msgstr "Esconder todos os barramentos audio" -#: editor_routes.cc:476 -#, fuzzy -msgid "Show All Midi Tracks" -msgstr "Mostrar todos as faixas audio" - -#: editor_routes.cc:477 -#, fuzzy -msgid "Hide All Midi Tracks" -msgstr "Esconder todos as faixas audio" - #: editor_routes.cc:478 msgid "Show Tracks With Regions Under Playhead" msgstr "" @@ -5931,30 +3016,10 @@ msgstr "Novo marcador de localização" msgid "Clear all locations" msgstr "Apagar todas as localizações" -#: editor_rulers.cc:342 -#, fuzzy -msgid "Unhide locations" -msgstr "apagar localizações" - -#: editor_rulers.cc:346 -#, fuzzy -msgid "New range" -msgstr "Adicionar novo intervalo" - #: editor_rulers.cc:347 msgid "Clear all ranges" msgstr "Apagar todos os intervalos" -#: editor_rulers.cc:348 -#, fuzzy -msgid "Unhide ranges" -msgstr "Esconder intervalo" - -#: editor_rulers.cc:358 -#, fuzzy -msgid "New CD track marker" -msgstr "Marcadores de intervalos (faixas CD)" - #: editor_rulers.cc:363 tempo_dialog.cc:40 msgid "New Tempo" msgstr "Novo tempo" @@ -5967,11 +3032,6 @@ msgstr "Novo VUímetro" msgid "Timeline height" msgstr "" -#: editor_rulers.cc:383 -#, fuzzy -msgid "Align Video Track" -msgstr "Acrescentar faixa/barramento audio" - #: editor_selection.cc:889 editor_selection.cc:932 msgid "set selected regions" msgstr "seleccionar regiões" @@ -6008,16 +3068,6 @@ msgstr "seleccionar tudo após o cursor" msgid "select all before cursor" msgstr "seleccionar tudo anterior ao cursor" -#: editor_selection.cc:1753 -#, fuzzy -msgid "select all after edit" -msgstr "Seleccionar tudo após o cursor de edição" - -#: editor_selection.cc:1755 -#, fuzzy -msgid "select all before edit" -msgstr "Seleccionar tudo antes do cursor de edição" - #: editor_selection.cc:1888 msgid "No edit range defined" msgstr "" @@ -6028,30 +3078,6 @@ msgid "" "but there is no selected marker." msgstr "" -#: editor_snapshots.cc:136 -#, fuzzy -msgid "Rename Snapshot" -msgstr "Remover ponto de sincronia" - -#: editor_snapshots.cc:138 -#, fuzzy -msgid "New name of snapshot" -msgstr "Nome para a nova captura" - -#: editor_snapshots.cc:156 -#, fuzzy -msgid "" -"Do you really want to remove snapshot \"%1\" ?\n" -"(which cannot be undone)" -msgstr "" -"Deseja realmente remover o barramento \"%1\" ?\n" -"(esta operação não pode ser desfeita)" - -#: editor_snapshots.cc:161 -#, fuzzy -msgid "Remove snapshot" -msgstr "Remover ponto de sincronia" - #: editor_tempodisplay.cc:208 editor_tempodisplay.cc:250 msgid "add" msgstr "acrescentar" @@ -6095,11 +3121,6 @@ msgid "" "programming error: meter marker canvas item has no marker object pointer!" msgstr "" -#: editor_timefx.cc:68 -#, fuzzy -msgid "stretch/shrink" -msgstr "Alongar/estreitar" - #: editor_timefx.cc:129 msgid "pitch shift" msgstr "" @@ -6116,11 +3137,6 @@ msgstr "" msgid "Do not lock memory" msgstr "" -#: engine_dialog.cc:77 -#, fuzzy -msgid "Unlock memory" -msgstr "Desbloquear" - #: engine_dialog.cc:78 msgid "No zombies" msgstr "" @@ -6133,21 +3149,6 @@ msgstr "" msgid "Force 16 bit" msgstr "" -#: engine_dialog.cc:81 -#, fuzzy -msgid "H/W monitoring" -msgstr "Monitorização" - -#: engine_dialog.cc:82 -#, fuzzy -msgid "H/W metering" -msgstr "VUímetro" - -#: engine_dialog.cc:83 -#, fuzzy -msgid "Verbose output" -msgstr "Remover saída" - #: engine_dialog.cc:103 msgid "8000Hz" msgstr "" @@ -6191,11 +3192,6 @@ msgstr "" msgid "Rectangular" msgstr "" -#: engine_dialog.cc:130 engine_dialog.cc:567 -#, fuzzy -msgid "Shaped" -msgstr "Forma de ruído" - #: engine_dialog.cc:158 engine_dialog.cc:483 engine_dialog.cc:974 msgid "Playback/recording on 1 device" msgstr "" @@ -6209,11 +3205,6 @@ msgstr "" msgid "Playback only" msgstr "" -#: engine_dialog.cc:161 engine_dialog.cc:505 engine_dialog.cc:983 -#, fuzzy -msgid "Recording only" -msgstr "Suspender gravação em caso de falha sincrónica (XRUN)" - #: engine_dialog.cc:171 engine_dialog.cc:448 msgid "coremidi" msgstr "" @@ -6222,25 +3213,10 @@ msgstr "" msgid "seq" msgstr "" -#: engine_dialog.cc:174 engine_dialog.cc:583 -#, fuzzy -msgid "raw" -msgstr "desenhar" - #: engine_dialog.cc:181 msgid "Driver:" msgstr "" -#: engine_dialog.cc:186 -#, fuzzy -msgid "Audio Interface:" -msgstr "Interno" - -#: engine_dialog.cc:191 sfdb_ui.cc:147 sfdb_ui.cc:260 sfdb_ui.cc:265 -#, fuzzy -msgid "Sample rate:" -msgstr "Frequência de amostragem" - #: engine_dialog.cc:196 msgid "Buffer size:" msgstr "" @@ -6253,11 +3229,6 @@ msgstr "" msgid "Approximate latency:" msgstr "" -#: engine_dialog.cc:222 -#, fuzzy -msgid "Audio mode:" -msgstr "Quadros audio" - #: engine_dialog.cc:284 engine_dialog.cc:408 msgid "Ignore" msgstr "" @@ -6274,11 +3245,6 @@ msgstr "" msgid "MIDI driver:" msgstr "" -#: engine_dialog.cc:310 -#, fuzzy -msgid "Dither:" -msgstr "Tipo de extrapolação" - #: engine_dialog.cc:319 msgid "" "No JACK server found anywhere on this system. Please install JACK and restart" @@ -6292,35 +3258,10 @@ msgstr "" msgid "Input device:" msgstr "" -#: engine_dialog.cc:343 -#, fuzzy -msgid "Output device:" -msgstr "Saída" - -#: engine_dialog.cc:348 -#, fuzzy -msgid "Hardware input latency:" -msgstr "Entradas Físicas: usar" - -#: engine_dialog.cc:351 engine_dialog.cc:357 -#, fuzzy -msgid "samples" -msgstr "freq.amostragem" - -#: engine_dialog.cc:354 -#, fuzzy -msgid "Hardware output latency:" -msgstr "Saídas Físicas: usar" - #: engine_dialog.cc:368 msgid "Device" msgstr "" -#: engine_dialog.cc:370 -#, fuzzy -msgid "Advanced" -msgstr "Avançado..." - #: engine_dialog.cc:653 msgid "cannot open JACK rc file %1 to store parameters" msgstr "" @@ -6366,20 +3307,10 @@ msgstr "" msgid "configuration files contain a JACK server path that doesn't exist (%1)" msgstr "" -#: export_channel_selector.cc:45 sfdb_ui.cc:145 -#, fuzzy -msgid "Channels:" -msgstr "Canais" - #: export_channel_selector.cc:46 msgid "Split to mono files" msgstr "" -#: export_channel_selector.cc:182 -#, fuzzy -msgid "Bus or Track" -msgstr "como faixas" - #: export_channel_selector.cc:459 msgid "Region contents without fades nor region gain (channels: %1)" msgstr "" @@ -6392,33 +3323,12 @@ msgstr "" msgid "Track output (channels: %1)" msgstr "" -#: export_channel_selector.cc:536 -#, fuzzy -msgid "Export region contents" -msgstr "Exportar região" - -#: export_channel_selector.cc:537 -#, fuzzy -msgid "Export track output" -msgstr "Ligar saídas principais de faixas novas a automaticamente" - #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten." msgstr "" -#: export_dialog.cc:47 -#, fuzzy -msgid "List files" -msgstr "inserir ficheiro audio" - -#: export_dialog.cc:164 export_timespan_selector.cc:355 -#: export_timespan_selector.cc:417 -#, fuzzy -msgid "Time Span" -msgstr "Zoom (alcance)" - #: export_dialog.cc:176 msgid "Channels" msgstr "Canais" @@ -6441,11 +3351,6 @@ msgstr "" msgid "Stop Export" msgstr "Cancelar exportação" -#: export_dialog.cc:337 -#, fuzzy -msgid "export" -msgstr "Exportar" - #: export_dialog.cc:356 msgid "Normalizing '%3' (timespan %1 of %2)" msgstr "" @@ -6468,30 +3373,10 @@ msgid "" "Warning: " msgstr "" -#: export_dialog.cc:420 -#, fuzzy -msgid "Export Selection" -msgstr "Exportar região" - -#: export_dialog.cc:433 -#, fuzzy -msgid "Export Region" -msgstr "Exportar região" - #: export_dialog.cc:443 msgid "Source" msgstr "" -#: export_dialog.cc:458 -#, fuzzy -msgid "Stem Export" -msgstr "Cancelar exportação" - -#: export_file_notebook.cc:38 -#, fuzzy -msgid "Add another format" -msgstr "Formato de ficheiro audio" - #: export_file_notebook.cc:178 msgid "Format" msgstr "Formato" @@ -6500,35 +3385,10 @@ msgstr "Formato" msgid "Location" msgstr "Localização" -#: export_file_notebook.cc:255 -#, fuzzy -msgid "No format!" -msgstr "formato" - -#: export_file_notebook.cc:267 -#, fuzzy -msgid "Format %1: %2" -msgstr "Formato" - #: export_filename_selector.cc:32 msgid "Label:" msgstr "" -#: export_filename_selector.cc:33 -#, fuzzy -msgid "Session Name" -msgstr "Novo nome de sessão:" - -#: export_filename_selector.cc:34 -#, fuzzy -msgid "Revision:" -msgstr "sessão" - -#: export_filename_selector.cc:36 -#, fuzzy -msgid "Folder:" -msgstr "Nome do directório:" - #: export_filename_selector.cc:37 session_import_dialog.cc:44 #: transcode_video_dialog.cc:59 video_server_dialog.cc:45 #: video_server_dialog.cc:47 export_video_dialog.cc:69 @@ -6560,39 +3420,14 @@ msgstr "" msgid "Choose export folder" msgstr "" -#: export_format_dialog.cc:31 -#, fuzzy -msgid "New Export Format Profile" -msgstr "Exportar para ficheiro" - -#: export_format_dialog.cc:31 -#, fuzzy -msgid "Edit Export Format Profile" -msgstr "Exportar para ficheiro" - #: export_format_dialog.cc:38 msgid "Label: " msgstr "" -#: export_format_dialog.cc:41 normalize_dialog.cc:42 -#, fuzzy -msgid "Normalize to:" -msgstr "Normalizar" - -#: export_format_dialog.cc:46 -#, fuzzy -msgid "Trim silence at start" -msgstr "cortar início da selecção" - #: export_format_dialog.cc:47 msgid "Add silence at start:" msgstr "" -#: export_format_dialog.cc:50 -#, fuzzy -msgid "Trim silence at end" -msgstr "cortar final da selecção" - #: export_format_dialog.cc:51 msgid "Add silence at end:" msgstr "" @@ -6605,21 +3440,6 @@ msgstr "" msgid "Quality" msgstr "" -#: export_format_dialog.cc:57 -#, fuzzy -msgid "File format" -msgstr "Formato de ficheiro audio" - -#: export_format_dialog.cc:59 -#, fuzzy -msgid "Sample rate conversion quality:" -msgstr "Qualidade de conversão" - -#: export_format_dialog.cc:66 -#, fuzzy -msgid "Dithering" -msgstr "VUímetro" - #: export_format_dialog.cc:68 msgid "Create CUE file for disk-at-once CD/DVD creation" msgstr "" @@ -6636,65 +3456,16 @@ msgstr "" msgid "Best (sinc)" msgstr "" -#: export_format_dialog.cc:466 -#, fuzzy -msgid "Medium (sinc)" -msgstr "Médio" - #: export_format_dialog.cc:471 msgid "Fast (sinc)" msgstr "" -#: export_format_dialog.cc:481 -#, fuzzy -msgid "Zero order hold" -msgstr "VUímetro (persistência)" - -#: export_format_dialog.cc:879 -#, fuzzy -msgid "Linear encoding options" -msgstr "apagar ligações" - -#: export_format_dialog.cc:895 -#, fuzzy -msgid "Ogg Vorbis options" -msgstr "Opções visuais" - -#: export_format_dialog.cc:908 -#, fuzzy -msgid "FLAC options" -msgstr "Localizações" - -#: export_format_dialog.cc:925 -#, fuzzy -msgid "Broadcast Wave options" -msgstr "WAVE/vírgula flutuante (difusão)" - -#: export_format_selector.cc:136 -#, fuzzy -msgid "Do you really want to remove the format?" -msgstr "" -"Deseja realmente remover o faixa \"%1\" ?\n" -"(esta operação não pode ser desfeita)" - -#: export_preset_selector.cc:28 -#, fuzzy -msgid "Preset" -msgstr "Reiniciar" - #: export_preset_selector.cc:104 msgid "" "The selected preset did not load successfully!\n" "Perhaps it references a format that has been removed?" msgstr "" -#: export_preset_selector.cc:156 -#, fuzzy -msgid "Do you really want to remove this preset?" -msgstr "" -"Deseja realmente remover o faixa \"%1\" ?\n" -"(esta operação não pode ser desfeita)" - #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "" @@ -6703,11 +3474,6 @@ msgstr "" msgid " to " msgstr "" -#: export_timespan_selector.cc:348 export_timespan_selector.cc:407 -#, fuzzy -msgid "Range" -msgstr "Intervalo" - #: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 msgid "curl error %1 (%2)" msgstr "" @@ -6771,11 +3537,6 @@ msgstr "" "Editor de efeitos/plug-ins: não foi possível criar elemento de controlo para " "%1" -#: generic_pluginui.cc:408 -#, fuzzy -msgid "Meters" -msgstr "VUímetro" - #: generic_pluginui.cc:423 msgid "Automation control" msgstr "Controlo de automatização" @@ -6788,20 +3549,10 @@ msgstr "" msgid "Audio Connection Manager" msgstr "" -#: global_port_matrix.cc:167 -#, fuzzy -msgid "MIDI Connection Manager" -msgstr "Ligações de entrada" - #: global_port_matrix.cc:213 io_selector.cc:216 msgid "port" msgstr "porto" -#: group_tabs.cc:308 -#, fuzzy -msgid "Selection..." -msgstr "Reproduzir região seleccionada" - #: group_tabs.cc:309 msgid "Record Enabled..." msgstr "" @@ -6810,58 +3561,18 @@ msgstr "" msgid "Soloed..." msgstr "" -#: group_tabs.cc:316 -#, fuzzy -msgid "Create New Group ..." -msgstr "Sem grupo" - #: group_tabs.cc:317 msgid "Create New Group From" msgstr "" -#: group_tabs.cc:320 -#, fuzzy -msgid "Edit Group..." -msgstr "Sem grupo" - -#: group_tabs.cc:321 -#, fuzzy -msgid "Collect Group" -msgstr "Seleccionar" - -#: group_tabs.cc:322 -#, fuzzy -msgid "Remove Group" -msgstr "Grupo" - -#: group_tabs.cc:325 -#, fuzzy -msgid "Remove Subgroup Bus" -msgstr "Acrescentar grupo" - -#: group_tabs.cc:327 -#, fuzzy -msgid "Add New Subgroup Bus" -msgstr "Acrescentar grupo" - #: group_tabs.cc:329 msgid "Add New Aux Bus (pre-fader)" msgstr "" -#: group_tabs.cc:330 -#, fuzzy -msgid "Add New Aux Bus (post-fader)" -msgstr "Apagar VUímetro" - #: group_tabs.cc:336 msgid "Enable All Groups" msgstr "" -#: group_tabs.cc:337 -#, fuzzy -msgid "Disable All Groups" -msgstr "Desabilitar tudo" - #: gtk-custom-ruler.c:133 msgid "Lower limit of ruler" msgstr "Limite inferior da régua" @@ -6898,70 +3609,20 @@ msgstr "Visualizar posição corrente da régua" msgid "Time to insert:" msgstr "" -#: insert_time_dialog.cc:54 -#, fuzzy -msgid "Intersected regions should:" -msgstr "seleccionar regiões" - -#: insert_time_dialog.cc:57 -#, fuzzy -msgid "stay in position" -msgstr "Por posição de região" - -#: insert_time_dialog.cc:58 -#, fuzzy -msgid "move" -msgstr "Remover" - -#: insert_time_dialog.cc:59 -#, fuzzy -msgid "be split" -msgstr "separar" - #: insert_time_dialog.cc:65 msgid "Insert time on all the track's playlists" msgstr "" -#: insert_time_dialog.cc:68 -#, fuzzy -msgid "Move glued regions" -msgstr "Seleccionar regiões" - -#: insert_time_dialog.cc:70 -#, fuzzy -msgid "Move markers" -msgstr "mover marcador" - -#: insert_time_dialog.cc:73 -#, fuzzy -msgid "Move glued markers" -msgstr "mover marcador" - -#: insert_time_dialog.cc:78 -#, fuzzy -msgid "Move locked markers" -msgstr "mover marcador" - #: insert_time_dialog.cc:83 msgid "" "Move tempo and meter changes\n" "(may cause oddities in the tempo map)" msgstr "" -#: insert_time_dialog.cc:91 -#, fuzzy -msgid "Insert time" -msgstr "Inserir selecção" - #: interthread_progress_window.cc:103 msgid "Importing file: %1 of %2" msgstr "" -#: io_selector.cc:220 -#, fuzzy -msgid "I/O selector" -msgstr "Inverter selecção" - #: io_selector.cc:265 msgid "%1 input" msgstr "%1 entrada" @@ -6982,21 +3643,6 @@ msgstr "" msgid "Key bindings file \"%1\" not found. Default bindings used instead" msgstr "" -#: keyeditor.cc:54 -#, fuzzy -msgid "Remove shortcut" -msgstr "Remover saída" - -#: keyeditor.cc:64 -#, fuzzy -msgid "Action" -msgstr "Audição" - -#: keyeditor.cc:65 -#, fuzzy -msgid "Shortcut" -msgstr "Curto" - #: keyeditor.cc:86 msgid "Select an action, then press the key(s) to (re)set its shortcut" msgstr "" @@ -7005,47 +3651,10 @@ msgstr "" msgid "Main_menu" msgstr "" -#: keyeditor.cc:255 -#, fuzzy -msgid "redirectmenu" -msgstr "Pré-encaminhamentos" - -#: keyeditor.cc:257 -#, fuzzy -msgid "Editor_menus" -msgstr "Editar" - -#: keyeditor.cc:259 -#, fuzzy -msgid "RegionList" -msgstr "Regiões" - -#: keyeditor.cc:261 -#, fuzzy -msgid "ProcessorMenu" -msgstr "Renomear faixa" - -#: latency_gui.cc:39 -#, fuzzy -msgid "sample" -msgstr "freq.amostragem" - -#: latency_gui.cc:40 -#, fuzzy -msgid "msec" -msgstr "msegs" - #: latency_gui.cc:41 msgid "period" msgstr "" -#: latency_gui.cc:55 -#, fuzzy -msgid "%1 sample" -msgid_plural "%1 samples" -msgstr[0] "freq.amostragem" -msgstr[1] "freq.amostragem" - #: latency_gui.cc:72 panner_ui.cc:392 msgid "Reset" msgstr "Reiniciar" @@ -7054,11 +3663,6 @@ msgstr "Reiniciar" msgid "programming error: %1 (%2)" msgstr "" -#: location_ui.cc:50 location_ui.cc:52 -#, fuzzy -msgid "Use PH" -msgstr "Usar MMC" - #: location_ui.cc:54 msgid "CD" msgstr "" @@ -7079,11 +3683,6 @@ msgstr "" msgid "Pre-Emphasis" msgstr "Pré-êmfase" -#: location_ui.cc:314 -#, fuzzy -msgid "Remove this range" -msgstr "estabelecer intervalo de inserção" - #: location_ui.cc:315 msgid "Start time - middle click to locate here" msgstr "" @@ -7092,49 +3691,14 @@ msgstr "" msgid "End time - middle click to locate here" msgstr "" -#: location_ui.cc:319 -#, fuzzy -msgid "Set range start from playhead location" -msgstr "Estabelecer marcador de intervalo desde cursor de reprodução" - -#: location_ui.cc:320 -#, fuzzy -msgid "Set range end from playhead location" -msgstr "Estabelecer intervalo desde selecção de intervalo" - -#: location_ui.cc:324 -#, fuzzy -msgid "Remove this marker" -msgstr "mover marcador" - #: location_ui.cc:325 msgid "Position - middle click to locate here" msgstr "" -#: location_ui.cc:327 -#, fuzzy -msgid "Set marker time from playhead location" -msgstr "Estabelecer intervalo desde selecção de intervalo" - #: location_ui.cc:494 msgid "You cannot put a CD marker at the start of the session" msgstr "" -#: location_ui.cc:720 -#, fuzzy -msgid "New Marker" -msgstr "Marcador" - -#: location_ui.cc:721 -#, fuzzy -msgid "New Range" -msgstr "Adicionar novo intervalo" - -#: location_ui.cc:734 -#, fuzzy -msgid "Loop/Punch Ranges" -msgstr "Ciclos/inserção" - #: location_ui.cc:759 msgid "Markers (Including CD Index)" msgstr "" @@ -7147,40 +3711,6 @@ msgstr "" msgid "add range marker" msgstr "acrescentar marcador de região" -#: main.cc:83 -#, fuzzy -msgid "%1 could not connect to JACK." -msgstr "Não foi possível ligar ao serviço JACK." - -#: main.cc:87 -#, fuzzy -msgid "" -"There are several possible reasons:\n" -"\n" -"1) JACK is not running.\n" -"2) JACK is running as another user, perhaps root.\n" -"3) There is already another client called \"%1\".\n" -"\n" -"Please consider the possibilities, and perhaps (re)start JACK." -msgstr "" -"Podem existir várias razões:\n" -"\n" -"1) O serviço JACK não se encontra activo.\n" -"2) O serviço JACK encontra-se activo por outro utilizador, talvez root.\n" -"3) Já se encontra activo outro client com o nome \"ardour\".\n" -"\n" -"Por favor, considere estas possibilidades e (re)inicie o serviço JACK." - -#: main.cc:203 main.cc:324 -#, fuzzy -msgid "cannot create user %3 folder %1 (%2)" -msgstr "não foi possível estabelecer-se como processo principal de grupo (%1)" - -#: main.cc:210 main.cc:331 -#, fuzzy -msgid "cannot open pango.rc file %1" -msgstr "não foi possível abrir o ficheiro de definição de cores %1: %2" - #: main.cc:235 main.cc:358 msgid "Cannot find ArdourMono TrueType font" msgstr "" @@ -7232,20 +3762,6 @@ msgstr " e versão GCC " msgid "Copyright (C) 1999-2012 Paul Davis" msgstr "" -#: main.cc:501 -#, fuzzy -msgid "" -"Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " -"Baker, Robin Gareus" -msgstr "" -"Algumas partes Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " -"Baker" - -#: main.cc:503 -#, fuzzy -msgid "%1 comes with ABSOLUTELY NO WARRANTY" -msgstr "Ardour é fornecido ABSOLUTAMENTE SEM QUALQUER GARANTIA" - #: main.cc:504 msgid "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." msgstr "nem mesmo para COMERCIALIZAÇÃO ou INDICADO PARA UM FIM PARTICULAR." @@ -7260,25 +3776,10 @@ msgstr "" "desde que sejam respeitadas algumas condições; para mais informações, por " "favor leia o ficheiro COPYING." -#: main.cc:513 -#, fuzzy -msgid "could not initialize %1." -msgstr "não foi possível inicializar o Ardour" - #: main.cc:522 msgid "Cannot xinstall SIGPIPE error handler" msgstr "" -#: main.cc:528 -#, fuzzy -msgid "could not create %1 GUI" -msgstr "não foi possível criar o interface gráfico (GUI)" - -#: main_clock.cc:51 -#, fuzzy -msgid "Display delta to edit cursor" -msgstr "Do início ao cursor de edição" - #: marker.cc:251 video_image_frame.cc:121 msgid "MarkerText" msgstr "Marcadores" @@ -7297,45 +3798,10 @@ msgstr "Inverter" msgid "Force" msgstr "" -#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 -#, fuzzy -msgid "MIDI Channel Control" -msgstr "Usar controlo MIDI" - -#: midi_channel_selector.cc:332 -#, fuzzy -msgid "Playback all channels" -msgstr "Esconder todos os desvanecimentos cruzados" - -#: midi_channel_selector.cc:333 -#, fuzzy -msgid "Play only selected channels" -msgstr "Estabelecer intervalo" - #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" -#: midi_channel_selector.cc:335 -#, fuzzy -msgid "Record all channels" -msgstr "Esconder todos os desvanecimentos cruzados" - -#: midi_channel_selector.cc:336 -#, fuzzy -msgid "Record only selected channels" -msgstr "Modo de edição" - -#: midi_channel_selector.cc:337 -#, fuzzy -msgid "Force all channels to 1 channel" -msgstr "canais" - -#: midi_channel_selector.cc:378 -#, fuzzy -msgid "Inbound" -msgstr "Extremos de região" - #: midi_channel_selector.cc:398 msgid "Click to enable recording all channels" msgstr "" @@ -7348,11 +3814,6 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" -#: midi_channel_selector.cc:415 -#, fuzzy -msgid "Playback" -msgstr "Parar reprodução" - #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -7397,26 +3858,6 @@ msgstr "" msgid "Triplet" msgstr "" -#: midi_list_editor.cc:58 -#, fuzzy -msgid "Quarter" -msgstr "quarta (4)" - -#: midi_list_editor.cc:59 -#, fuzzy -msgid "Eighth" -msgstr "Direita" - -#: midi_list_editor.cc:60 -#, fuzzy -msgid "Sixteenth" -msgstr "hexodécima (16)" - -#: midi_list_editor.cc:61 -#, fuzzy -msgid "Thirty-second" -msgstr "trigésima-segunda (32)" - #: midi_list_editor.cc:62 msgid "Sixty-fourth" msgstr "" @@ -7429,89 +3870,14 @@ msgstr "" msgid "Vel" msgstr "" -#: midi_list_editor.cc:215 -#, fuzzy -msgid "edit note start" -msgstr "Modo de edição" - -#: midi_list_editor.cc:224 -#, fuzzy -msgid "edit note channel" -msgstr "Modo de edição" - -#: midi_list_editor.cc:234 -#, fuzzy -msgid "edit note number" -msgstr "Modo de edição" - -#: midi_list_editor.cc:244 -#, fuzzy -msgid "edit note velocity" -msgstr "Modo de edição" - -#: midi_list_editor.cc:258 -#, fuzzy -msgid "edit note length" -msgstr "alterar duração de desvanecimento" - -#: midi_list_editor.cc:460 -#, fuzzy -msgid "insert new note" -msgstr "inserir ficheiro audio" - -#: midi_list_editor.cc:524 -#, fuzzy -msgid "delete notes (from list)" -msgstr "ficheiro eliminado" - -#: midi_list_editor.cc:599 -#, fuzzy -msgid "change note channel" -msgstr "canais" - -#: midi_list_editor.cc:607 -#, fuzzy -msgid "change note number" -msgstr "alterar duração de desvanecimento" - -#: midi_list_editor.cc:617 -#, fuzzy -msgid "change note velocity" -msgstr "selecção de intervalo" - -#: midi_list_editor.cc:687 -#, fuzzy -msgid "change note length" -msgstr "alterar duração de desvanecimento" - -#: midi_port_dialog.cc:39 -#, fuzzy -msgid "Add MIDI Port" -msgstr "Acrescentar porto" - -#: midi_port_dialog.cc:40 -#, fuzzy -msgid "Port name:" -msgstr "Nome do directório:" - #: midi_port_dialog.cc:45 msgid "MidiPortDialog" msgstr "" -#: midi_region_view.cc:838 -#, fuzzy -msgid "channel edit" -msgstr "canais" - #: midi_region_view.cc:874 msgid "velocity edit" msgstr "" -#: midi_region_view.cc:931 -#, fuzzy -msgid "add note" -msgstr "Modo de edição" - #: midi_region_view.cc:1779 msgid "step add" msgstr "" @@ -7520,69 +3886,14 @@ msgstr "" msgid "insane MIDI patch key %1:%2" msgstr "" -#: midi_region_view.cc:1870 midi_region_view.cc:1890 -#, fuzzy -msgid "alter patch change" -msgstr "mudo alterado" - #: midi_region_view.cc:1924 msgid "add patch change" msgstr "" -#: midi_region_view.cc:1942 -#, fuzzy -msgid "move patch change" -msgstr "mudo alterado" - -#: midi_region_view.cc:1953 -#, fuzzy -msgid "delete patch change" -msgstr "estabelecer intervalo de inserção" - -#: midi_region_view.cc:2022 -#, fuzzy -msgid "delete selection" -msgstr "extender selecção" - -#: midi_region_view.cc:2038 -#, fuzzy -msgid "delete note" -msgstr "ficheiro eliminado" - -#: midi_region_view.cc:2425 -#, fuzzy -msgid "move notes" -msgstr "Remover intervalo" - #: midi_region_view.cc:2647 msgid "resize notes" msgstr "" -#: midi_region_view.cc:2901 -#, fuzzy -msgid "change velocities" -msgstr "selecção de intervalo" - -#: midi_region_view.cc:2967 -#, fuzzy -msgid "transpose" -msgstr "Transporte" - -#: midi_region_view.cc:3001 -#, fuzzy -msgid "change note lengths" -msgstr "alterar duração de desvanecimento" - -#: midi_region_view.cc:3070 -#, fuzzy -msgid "nudge" -msgstr "Retocar" - -#: midi_region_view.cc:3085 -#, fuzzy -msgid "change channel" -msgstr "canais" - #: midi_region_view.cc:3130 msgid "Bank " msgstr "" @@ -7591,73 +3902,18 @@ msgstr "" msgid "Program " msgstr "" -#: midi_region_view.cc:3132 -#, fuzzy -msgid "Channel " -msgstr "Canais" - #: midi_region_view.cc:3301 midi_region_view.cc:3303 msgid "paste" msgstr "colar" -#: midi_region_view.cc:3761 -#, fuzzy -msgid "delete sysex" -msgstr "ficheiro eliminado" - -#: midi_streamview.cc:479 -#, fuzzy -msgid "failed to create MIDI region" -msgstr "ardour: renomear região" - #: midi_time_axis.cc:262 msgid "External MIDI Device" msgstr "" -#: midi_time_axis.cc:263 -#, fuzzy -msgid "External Device Mode" -msgstr "Sicronia de posição" - #: midi_time_axis.cc:271 msgid "Chns" msgstr "" -#: midi_time_axis.cc:272 -#, fuzzy -msgid "Click to edit channel settings" -msgstr "Apagar todas as localizações" - -#: midi_time_axis.cc:486 -#, fuzzy -msgid "Show Full Range" -msgstr "Mostrar tudo" - -#: midi_time_axis.cc:491 -#, fuzzy -msgid "Fit Contents" -msgstr "Comentários" - -#: midi_time_axis.cc:495 -#, fuzzy -msgid "Note Range" -msgstr " intervalo" - -#: midi_time_axis.cc:496 -#, fuzzy -msgid "Note Mode" -msgstr "modo" - -#: midi_time_axis.cc:497 -#, fuzzy -msgid "Channel Selector" -msgstr "Número de canais" - -#: midi_time_axis.cc:502 -#, fuzzy -msgid "Color Mode" -msgstr "Cor" - #: midi_time_axis.cc:561 msgid "Bender" msgstr "" @@ -7666,41 +3922,6 @@ msgstr "" msgid "Pressure" msgstr "" -#: midi_time_axis.cc:578 -#, fuzzy -msgid "Controllers" -msgstr "Controlos" - -#: midi_time_axis.cc:583 -#, fuzzy -msgid "No MIDI Channels selected" -msgstr "Inserir selecção" - -#: midi_time_axis.cc:640 midi_time_axis.cc:769 -#, fuzzy -msgid "Hide all channels" -msgstr "Esconder todos os desvanecimentos cruzados" - -#: midi_time_axis.cc:644 midi_time_axis.cc:773 -#, fuzzy -msgid "Show all channels" -msgstr "Mostrar todos os desvanecimentos cruzados" - -#: midi_time_axis.cc:655 midi_time_axis.cc:784 -#, fuzzy -msgid "Channel %1" -msgstr "Canais" - -#: midi_time_axis.cc:910 midi_time_axis.cc:942 -#, fuzzy -msgid "Controllers %1-%2" -msgstr "Controlos" - -#: midi_time_axis.cc:933 midi_time_axis.cc:936 -#, fuzzy -msgid "Controller %1" -msgstr "Controlos" - #: midi_time_axis.cc:959 msgid "Sustained" msgstr "" @@ -7709,27 +3930,6 @@ msgstr "" msgid "Percussive" msgstr "" -#: midi_time_axis.cc:986 -#, fuzzy -msgid "Meter Colors" -msgstr "VUímetro (persistência)" - -#: midi_time_axis.cc:993 -#, fuzzy -msgid "Channel Colors" -msgstr "Número de canais" - -#: midi_time_axis.cc:1000 -#, fuzzy -msgid "Track Color" -msgstr "Cor" - -#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 -#: midi_time_axis.cc:1510 -#, fuzzy -msgid "all" -msgstr "Pequeno" - #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" @@ -7746,49 +3946,14 @@ msgstr "" msgid "Decimal" msgstr "" -#: midi_tracer.cc:53 rc_option_editor.cc:659 -#, fuzzy -msgid "Enabled" -msgstr "Gravar" - -#: midi_tracer.cc:54 -#, fuzzy -msgid "Delta times" -msgstr "Ponto inicial de corte" - -#: midi_tracer.cc:66 -#, fuzzy -msgid "Port:" -msgstr "Acrescentar porto" - -#: midi_velocity_dialog.cc:31 -#, fuzzy -msgid "New velocity" -msgstr "selecção de intervalo" - #: missing_file_dialog.cc:34 msgid "Missing File!" msgstr "" -#: missing_file_dialog.cc:36 -#, fuzzy -msgid "Select a folder to search" -msgstr "Seleccionar tudo após o cursor de edição" - #: missing_file_dialog.cc:37 msgid "Add chosen folder to search path, and try again" msgstr "" -#: missing_file_dialog.cc:39 -#, fuzzy -msgid "Stop loading this session" -msgstr "Suspender transporte no final da sessão" - -#: missing_file_dialog.cc:40 -#, fuzzy -msgid "Skip all missing files" -msgstr "Ignorar anti-aliasing" - #: missing_file_dialog.cc:41 msgid "Skip this file" msgstr "" @@ -7813,11 +3978,6 @@ msgstr "" msgid "Click to choose an additional folder" msgstr "" -#: missing_plugin_dialog.cc:29 -#, fuzzy -msgid "Missing Plugins" -msgstr "Efeitos/plug-ins" - #: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 msgid "OK" msgstr "" @@ -7846,41 +4006,6 @@ msgstr "" msgid "Set Gain to 0dB on Mixer-Selected Tracks/Busses" msgstr "" -#: mixer_actor.cc:63 -#, fuzzy -msgid "Copy Selected Processors" -msgstr "Seleccionar regiões" - -#: mixer_actor.cc:64 -#, fuzzy -msgid "Cut Selected Processors" -msgstr "seleccionar visualização de faixa" - -#: mixer_actor.cc:65 -#, fuzzy -msgid "Paste Selected Processors" -msgstr "seleccionar regiões" - -#: mixer_actor.cc:66 -#, fuzzy -msgid "Delete Selected Processors" -msgstr "seleccionar regiões" - -#: mixer_actor.cc:67 -#, fuzzy -msgid "Select All (visible) Processors" -msgstr "Portos disponíveis" - -#: mixer_actor.cc:68 -#, fuzzy -msgid "Toggle Selected Processors" -msgstr "mover marccador métrico" - -#: mixer_actor.cc:69 -#, fuzzy -msgid "Toggle Selected Plugins" -msgstr "Seleccionar regiões" - #: mixer_actor.cc:72 mixer_actor.cc:73 msgid "Scroll Mixer Window to the left" msgstr "" @@ -7901,12 +4026,6 @@ msgstr "" msgid "pre" msgstr "" -#: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 -#: rc_option_editor.cc:1881 -#, fuzzy -msgid "Comments" -msgstr "Comentários" - #: mixer_strip.cc:147 msgid "Click to toggle the width of this mixer strip." msgstr "" @@ -7917,16 +4036,6 @@ msgid "" "%1-%2-click to toggle the width of all strips." msgstr "" -#: mixer_strip.cc:156 -#, fuzzy -msgid "Hide this mixer strip" -msgstr "Esconder painéis de mistura de todos os barramentos audio" - -#: mixer_strip.cc:167 -#, fuzzy -msgid "Click to select metering point" -msgstr "Seleccionar regiões" - #: mixer_strip.cc:173 msgid "tupni" msgstr "adartne" @@ -7943,52 +4052,10 @@ msgstr "" msgid "lock" msgstr "bloquear" -#: mixer_strip.cc:204 mixer_strip.cc:1925 -#, fuzzy -msgid "iso" -msgstr "entradas" - -#: mixer_strip.cc:258 -#, fuzzy -msgid "Mix group" -msgstr "Sem grupo" - -#: mixer_strip.cc:351 rc_option_editor.cc:1878 -#, fuzzy -msgid "Phase Invert" -msgstr "Inverter" - -#: mixer_strip.cc:352 rc_option_editor.cc:1879 route_ui.cc:1218 -#, fuzzy -msgid "Solo Safe" -msgstr "Solo livre" - #: mixer_strip.cc:355 mixer_ui.cc:124 route_time_axis.cc:673 msgid "Group" msgstr "Grupo" -#: mixer_strip.cc:356 rc_option_editor.cc:1882 -#, fuzzy -msgid "Meter Point" -msgstr "VUímetro" - -#: mixer_strip.cc:470 -#, fuzzy -msgid "Enable/Disable MIDI input" -msgstr "Ligar/Desligar o metrónomo" - -#: mixer_strip.cc:622 -#, fuzzy -msgid "" -"Aux\n" -"Sends" -msgstr "Envios" - -#: mixer_strip.cc:646 -#, fuzzy -msgid "Snd" -msgstr "Envios" - #: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 msgid "Not connected to JACK - no I/O changes are possible" msgstr "Desligado do JACK - não são possíveis alterações nas entradas/saídas" @@ -8001,20 +4068,10 @@ msgstr "" msgid "OUTPUT from %1" msgstr "" -#: mixer_strip.cc:1174 -#, fuzzy -msgid "Disconnected" -msgstr "desligado" - #: mixer_strip.cc:1303 msgid "*Comments*" msgstr "*Comentários*" -#: mixer_strip.cc:1310 -#, fuzzy -msgid "Cmt" -msgstr "Cortar" - #: mixer_strip.cc:1313 msgid "*Cmt*" msgstr "" @@ -8035,16 +4092,6 @@ msgstr "" msgid "~G" msgstr "" -#: mixer_strip.cc:1467 -#, fuzzy -msgid "Comments..." -msgstr "Comentários" - -#: mixer_strip.cc:1469 -#, fuzzy -msgid "Save As Template..." -msgstr "Guardar modelo..." - #: mixer_strip.cc:1475 route_group_dialog.cc:39 route_time_axis.cc:696 msgid "Active" msgstr "Activo" @@ -8057,11 +4104,6 @@ msgstr "" msgid "Protect Against Denormals" msgstr "" -#: mixer_strip.cc:1491 route_time_axis.cc:435 -#, fuzzy -msgid "Remote Control ID..." -msgstr "ID controlo remoto" - #: mixer_strip.cc:1717 mixer_strip.cc:1741 msgid "in" msgstr "entrada" @@ -8078,21 +4120,6 @@ msgstr "saída" msgid "custom" msgstr "" -#: mixer_strip.cc:1745 -#, fuzzy -msgid "pr" -msgstr "porto" - -#: mixer_strip.cc:1749 -#, fuzzy -msgid "po" -msgstr "porto" - -#: mixer_strip.cc:1753 -#, fuzzy -msgid "o" -msgstr "pronto" - #: mixer_strip.cc:1758 msgid "c" msgstr "" @@ -8113,30 +4140,10 @@ msgstr "" msgid "D" msgstr "" -#: mixer_strip.cc:1953 -#, fuzzy -msgid "i" -msgstr "entrada" - -#: mixer_strip.cc:2128 -#, fuzzy -msgid "Pre-fader" -msgstr "Pré-atenuador" - -#: mixer_strip.cc:2129 -#, fuzzy -msgid "Post-fader" -msgstr "Pós-atenuador" - #: mixer_strip.cc:2166 meter_strip.cc:728 msgid "Change all in Group to %1" msgstr "" -#: mixer_strip.cc:2168 meter_strip.cc:730 -#, fuzzy -msgid "Change all to %1" -msgstr "Canais" - #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -8153,16 +4160,6 @@ msgstr "-tudo-" msgid "Strips" msgstr "Painéis" -#: meter_strip.cc:764 -#, fuzzy -msgid "Variable height" -msgstr "altura da faixa" - -#: meter_strip.cc:765 -#, fuzzy -msgid "Short" -msgstr "Curto" - #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -8215,20 +4212,10 @@ msgstr "" msgid "SiP" msgstr "" -#: monitor_section.cc:86 -#, fuzzy -msgid "soloing" -msgstr "solo alterado" - #: monitor_section.cc:90 msgid "isolated" msgstr "" -#: monitor_section.cc:94 -#, fuzzy -msgid "auditioning" -msgstr "Audição" - #: monitor_section.cc:104 msgid "" "When active, something is solo-isolated.\n" @@ -8275,11 +4262,6 @@ msgstr "" msgid "Gain reduction to use when dimming monitor outputs" msgstr "" -#: monitor_section.cc:181 -#, fuzzy -msgid "Dim" -msgstr "Médio" - #: monitor_section.cc:190 msgid "excl. solo" msgstr "" @@ -8288,11 +4270,6 @@ msgstr "" msgid "Exclusive solo means that only 1 solo is active at a time" msgstr "" -#: monitor_section.cc:199 -#, fuzzy -msgid "solo » mute" -msgstr "Solo via barramento" - #: monitor_section.cc:201 msgid "" "If enabled, solo will override mute\n" @@ -8303,34 +4280,14 @@ msgstr "" msgid "mute" msgstr "mudo" -#: monitor_section.cc:238 -#, fuzzy -msgid "dim" -msgstr "Médio" - #: monitor_section.cc:245 msgid "mono" msgstr "" -#: monitor_section.cc:266 -#, fuzzy -msgid "Monitor" -msgstr "Monitorização" - #: monitor_section.cc:678 msgid "Switch monitor to mono" msgstr "" -#: monitor_section.cc:681 -#, fuzzy -msgid "Cut monitor" -msgstr "Monitorização" - -#: monitor_section.cc:684 -#, fuzzy -msgid "Dim monitor" -msgstr "Monitorização" - #: monitor_section.cc:687 msgid "Toggle exclusive solo mode" msgstr "" @@ -8339,41 +4296,6 @@ msgstr "" msgid "Toggle mute overrides solo mode" msgstr "" -#: monitor_section.cc:705 -#, fuzzy -msgid "Cut monitor channel %1" -msgstr "Criar barramento de controlo" - -#: monitor_section.cc:710 -#, fuzzy -msgid "Dim monitor channel %1" -msgstr "Criar barramento de controlo" - -#: monitor_section.cc:715 -#, fuzzy -msgid "Solo monitor channel %1" -msgstr "Criar barramento de controlo" - -#: monitor_section.cc:720 -#, fuzzy -msgid "Invert monitor channel %1" -msgstr "panorama para o canal %u" - -#: monitor_section.cc:730 -#, fuzzy -msgid "In-place solo" -msgstr "Solo retido" - -#: monitor_section.cc:732 -#, fuzzy -msgid "After Fade Listen (AFL) solo" -msgstr "Encaminhamentos pré-atenuador" - -#: monitor_section.cc:734 -#, fuzzy -msgid "Pre Fade Listen (PFL) solo" -msgstr "Encaminhamentos pré-atenuador" - #: mono_panner.cc:101 #, c-format msgid "L:%3d R:%3d" @@ -8439,31 +4361,6 @@ msgid "" "relies on a stable, sustainable income stream. Thanks for using Ardour!" msgstr "" -#: new_plugin_preset_dialog.cc:29 -#, fuzzy -msgid "New Preset" -msgstr "Nova inserção" - -#: new_plugin_preset_dialog.cc:30 -#, fuzzy -msgid "Replace existing preset with this name" -msgstr "Já existe uma faixa com este nome" - -#: new_plugin_preset_dialog.cc:34 -#, fuzzy -msgid "Name of new preset" -msgstr "Nome para a nova parametrização:" - -#: normalize_dialog.cc:34 -#, fuzzy -msgid "Normalize regions" -msgstr "Normalizar região" - -#: normalize_dialog.cc:34 -#, fuzzy -msgid "Normalize region" -msgstr "Normalizar região" - #: normalize_dialog.cc:49 strip_silence_dialog.cc:70 msgid "dbFS" msgstr "" @@ -8484,43 +4381,11 @@ msgstr "Normalizar" msgid "Usage: " msgstr "Uso: " -#: opts.cc:58 -#, fuzzy -msgid " [SESSION_NAME] Name of session to load\n" -msgstr " [session-name] Nome de sessão a carregar\n" - -#: opts.cc:59 -#, fuzzy -msgid " -v, --version Show version information\n" -msgstr " -v, --version Mostrar informação sobre versão\n" - -#: opts.cc:60 -#, fuzzy -msgid " -h, --help Print this message\n" -msgstr " -h, --help Mostrar esta mesma mensagem\n" - #: opts.cc:61 msgid "" " -a, --no-announcements Do not contact website for announcements\n" msgstr "" -#: opts.cc:62 -#, fuzzy -msgid "" -" -b, --bindings Print all possible keyboard binding names\n" -msgstr "" -" -b, --bindings Mostrar todas as associações de teclado " -"possíveis\n" - -#: opts.cc:63 -#, fuzzy -msgid "" -" -c, --name Use a specific jack client name, default is " -"ardour\n" -msgstr "" -" -c, --name name Empregar um nome de cliente JACK " -"específico (ardour)\n" - #: opts.cc:64 msgid "" " -d, --disable-plugins Disable all plugins in an existing session\n" @@ -8532,57 +4397,20 @@ msgid "" "available options\n" msgstr "" -#: opts.cc:66 -#, fuzzy -msgid " -n, --no-splash Do not show splash screen\n" -msgstr "" -" -n, --show-splash Mostrar ecran de apresentação inicial\n" - #: opts.cc:67 msgid " -m, --menus file Use \"file\" to define menus\n" msgstr "" -#: opts.cc:68 -#, fuzzy -msgid "" -" -N, --new session-name Create a new session from the command line\n" -msgstr "" -" -N, --new session-name Criar uma nova sessão denominada pela " -"linha de comando\n" - -#: opts.cc:69 -#, fuzzy -msgid " -O, --no-hw-optimizations Disable h/w specific optimizations\n" -msgstr "" -" -o, --use-hw-optimizations Tentar usar optimizações específicas do " -"hardware\n" - #: opts.cc:70 msgid " -P, --no-connect-ports Do not connect any ports at startup\n" msgstr "" -#: opts.cc:71 -#, fuzzy -msgid " -S, --sync Draw the gui synchronously \n" -msgstr " -v, --version Mostrar informação sobre versão\n" - -#: opts.cc:73 -#, fuzzy -msgid " -V, --novst Do not use VST support\n" -msgstr " -V, --novst Não usar suporte VST\n" - #: opts.cc:75 msgid "" " -E, --save Load the specified session, save it to " "and then quit\n" msgstr "" -#: opts.cc:76 -#, fuzzy -msgid " -C, --curvetest filename Curve algorithm debugger\n" -msgstr "" -" -C, --curvetest filename Depurador do algoritmo de curvaturas\n" - #: opts.cc:77 msgid "" " -k, --keybindings filename Name of key bindings to load (default is ~/." @@ -8614,20 +4442,10 @@ msgid "" "No panner user interface is currently available for %1-in/2out tracks/busses" msgstr "" -#: playlist_selector.cc:43 -#, fuzzy -msgid "Playlists" -msgstr "Lista de reprodução" - #: playlist_selector.cc:54 msgid "Playlists grouped by track" msgstr "Listas de reprodução agrupadas por faixa" -#: playlist_selector.cc:101 -#, fuzzy -msgid "Playlist for %1" -msgstr "Lista de reprodução" - #: playlist_selector.cc:114 msgid "Other tracks" msgstr "Outras faixas" @@ -8636,54 +4454,14 @@ msgstr "Outras faixas" msgid "unassigned" msgstr "não atribuidas" -#: playlist_selector.cc:194 -#, fuzzy -msgid "Imported" -msgstr "Importar" - #: plugin_eq_gui.cc:75 plugin_eq_gui.cc:99 msgid "dB scale" msgstr "" -#: plugin_eq_gui.cc:106 -#, fuzzy -msgid "Show phase" -msgstr "Mostrar linhas de tempo" - -#: plugin_selector.cc:53 plugin_selector.cc:220 -#, fuzzy -msgid "Name contains" -msgstr "Nome para lista de reprodução" - -#: plugin_selector.cc:54 plugin_selector.cc:224 -#, fuzzy -msgid "Type contains" -msgstr "apagar ligações" - -#: plugin_selector.cc:55 plugin_selector.cc:222 -#, fuzzy -msgid "Category contains" -msgstr "ardour: ligações" - -#: plugin_selector.cc:56 plugin_selector.cc:244 -#, fuzzy -msgid "Author contains" -msgstr "Autores" - -#: plugin_selector.cc:57 plugin_selector.cc:246 -#, fuzzy -msgid "Library contains" -msgstr "apagar ligações" - #: plugin_selector.cc:58 plugin_selector.cc:210 plugin_selector.cc:521 msgid "Favorites only" msgstr "" -#: plugin_selector.cc:59 plugin_selector.cc:214 plugin_selector.cc:521 -#, fuzzy -msgid "Hidden only" -msgstr "Escondida" - #: plugin_selector.cc:64 msgid "Plugin Manager" msgstr "" @@ -8692,11 +4470,6 @@ msgstr "" msgid "Fav" msgstr "" -#: plugin_selector.cc:86 -#, fuzzy -msgid "Available Plugins" -msgstr "Efeitos/plug-ins disponíveis" - #: plugin_selector.cc:87 msgid "Type" msgstr "Tipo" @@ -8705,36 +4478,6 @@ msgstr "Tipo" msgid "Category" msgstr "" -#: plugin_selector.cc:89 -#, fuzzy -msgid "Creator" -msgstr "Criar" - -#: plugin_selector.cc:90 -#, fuzzy -msgid "# Audio In" -msgstr "Audição" - -#: plugin_selector.cc:91 -#, fuzzy -msgid "# Audio Out" -msgstr "Acrescentar barramento audio" - -#: plugin_selector.cc:92 -#, fuzzy -msgid "# MIDI In" -msgstr "Associação MIDI" - -#: plugin_selector.cc:93 -#, fuzzy -msgid "# MIDI Out" -msgstr "Rastrear saídas MIDI" - -#: plugin_selector.cc:115 -#, fuzzy -msgid "Plugins to be connected" -msgstr "Efeitos/plug-ins para ligar e inserir" - #: plugin_selector.cc:128 msgid "Add a plugin to the effect list" msgstr "Acrescentar à lista de efeitos/plug-ins" @@ -8747,11 +4490,6 @@ msgstr "Remover da lista de efeitos/plug-ins" msgid "Update available plugins" msgstr "Actualizar efeitos/plug-ins disponíveis" -#: plugin_selector.cc:171 -#, fuzzy -msgid "Insert Plugin(s)" -msgstr "Inserir região" - #: plugin_selector.cc:320 plugin_selector.cc:321 plugin_selector.cc:322 #: plugin_selector.cc:323 msgid "variable" @@ -8764,21 +4502,6 @@ msgid "" "See the Log window for more details (maybe)" msgstr "" -#: plugin_selector.cc:628 -#, fuzzy -msgid "Favorites" -msgstr "aGrav" - -#: plugin_selector.cc:630 -#, fuzzy -msgid "Plugin Manager..." -msgstr "Novo efeito/plug-in..." - -#: plugin_selector.cc:634 -#, fuzzy -msgid "By Creator" -msgstr "Criar" - #: plugin_selector.cc:637 msgid "By Category" msgstr "" @@ -8787,31 +4510,6 @@ msgstr "" msgid "Eh? LADSPA plugins don't have editors!" msgstr "" -#: plugin_ui.cc:125 plugin_ui.cc:227 -#, fuzzy -msgid "" -"unknown type of editor-supplying plugin (note: no VST support in this " -"version of %1)" -msgstr "" -"tipo desconhecido de editor de efeito/plug-in (nota: esta versão do ardour " -"não suporta VST)" - -#: plugin_ui.cc:128 -#, fuzzy -msgid "unknown type of editor-supplying plugin" -msgstr "" -"tipo desconhecido de editor de efeito/plug-in (nota: esta versão do ardour " -"não suporta VST)" - -#: plugin_ui.cc:257 -#, fuzzy -msgid "" -"unknown type of editor-supplying plugin (note: no linuxVST support in this " -"version of %1)" -msgstr "" -"tipo desconhecido de editor de efeito/plug-in (nota: esta versão do ardour " -"não suporta VST)" - #: plugin_ui.cc:329 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "" @@ -8820,27 +4518,12 @@ msgstr "" msgid "Add" msgstr "Acrescentar" -#: plugin_ui.cc:421 -#, fuzzy -msgid "Description" -msgstr "resolução" - -#: plugin_ui.cc:422 -#, fuzzy -msgid "Plugin analysis" -msgstr "Efeitos/plug-ins" - #: plugin_ui.cc:429 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:430 -#, fuzzy -msgid "Save a new preset" -msgstr "Nome para a nova parametrização:" - #: plugin_ui.cc:431 msgid "Save the current preset" msgstr "" @@ -8863,23 +4546,6 @@ msgstr "" msgid "Click to enable/disable this plugin" msgstr "" -#: plugin_ui.cc:506 -#, fuzzy -msgid "latency (%1 sample)" -msgid_plural "latency (%1 samples)" -msgstr[0] "Latência" -msgstr[1] "Latência" - -#: plugin_ui.cc:508 -#, fuzzy -msgid "latency (%1 ms)" -msgstr "Latência" - -#: plugin_ui.cc:519 -#, fuzzy -msgid "Edit Latency" -msgstr "Latência" - #: plugin_ui.cc:558 msgid "Plugin preset %1 not found" msgstr "Parametrização de efeito/plug-in %1 inexistente" @@ -8900,26 +4566,6 @@ msgstr "" msgid "Click to allow normal use of %1 keyboard shortcuts" msgstr "" -#: port_group.cc:335 -#, fuzzy -msgid "%1 Busses" -msgstr "Barramentos" - -#: port_group.cc:336 -#, fuzzy -msgid "%1 Tracks" -msgstr "para faixas" - -#: port_group.cc:337 -#, fuzzy -msgid "Hardware" -msgstr "Quadros audio" - -#: port_group.cc:338 -#, fuzzy -msgid "%1 Misc" -msgstr "Miscelânea" - #: port_group.cc:339 msgid "Other" msgstr "" @@ -8936,30 +4582,10 @@ msgstr "" msgid "MTC in" msgstr "" -#: port_group.cc:466 -#, fuzzy -msgid "MIDI control in" -msgstr "Usar controlo MIDI" - -#: port_group.cc:469 -#, fuzzy -msgid "MIDI clock in" -msgstr "Associação MIDI" - #: port_group.cc:472 msgid "MMC in" msgstr "" -#: port_group.cc:476 -#, fuzzy -msgid "MTC out" -msgstr "Porto MTC" - -#: port_group.cc:479 -#, fuzzy -msgid "MIDI control out" -msgstr "Usar controlo MIDI" - #: port_group.cc:482 msgid "MIDI clock out" msgstr "" @@ -8968,11 +4594,6 @@ msgstr "" msgid "MMC out" msgstr "" -#: port_group.cc:540 -#, fuzzy -msgid ":monitor" -msgstr "Monitorização" - #: port_group.cc:552 msgid "system:" msgstr "" @@ -8981,16 +4602,6 @@ msgstr "" msgid "alsa_pcm" msgstr "" -#: port_insert_ui.cc:40 -#, fuzzy -msgid "Measure Latency" -msgstr "Latência" - -#: port_insert_ui.cc:51 -#, fuzzy -msgid "Send/Output" -msgstr "Saída" - #: port_insert_ui.cc:52 msgid "Return/Input" msgstr "" @@ -9007,16 +4618,6 @@ msgstr "" msgid "Detecting ..." msgstr "" -#: port_insert_ui.cc:166 -#, fuzzy -msgid "Port Insert " -msgstr "Nova inserção" - -#: port_matrix.cc:331 port_matrix.cc:357 -#, fuzzy -msgid "Sources" -msgstr "Avançado..." - #: port_matrix.cc:332 port_matrix.cc:358 msgid "Destinations" msgstr "" @@ -9026,21 +4627,6 @@ msgstr "" msgid "Add %s %s" msgstr "" -#: port_matrix.cc:456 -#, fuzzy, c-format -msgid "Rename '%s'..." -msgstr "Renomear" - -#: port_matrix.cc:472 -#, fuzzy -msgid "Remove all" -msgstr "Remover marcador" - -#: port_matrix.cc:492 port_matrix.cc:504 -#, fuzzy, c-format -msgid "%s all" -msgstr "Reiniciar tudo" - #: port_matrix.cc:527 msgid "Rescan" msgstr "Refrescar" @@ -9074,31 +4660,6 @@ msgid "" "the new number of inputs or the last plugin has more outputs." msgstr "" -#: port_matrix.cc:966 -#, fuzzy, c-format -msgid "Remove '%s'" -msgstr "Remover" - -#: port_matrix.cc:981 -#, fuzzy, c-format -msgid "%s all from '%s'" -msgstr "seleccionar tudo desde o ciclo" - -#: port_matrix.cc:1047 -#, fuzzy -msgid "channel" -msgstr "canais" - -#: port_matrix_body.cc:82 -#, fuzzy -msgid "There are no ports to connect." -msgstr "Não existem portos JACK disponíveis" - -#: port_matrix_body.cc:84 -#, fuzzy -msgid "There are no %1 ports to connect." -msgstr "Não existem portos JACK disponíveis" - #: processor_box.cc:256 msgid "" "%1\n" @@ -9112,21 +4673,6 @@ msgid "" "Double-click to show generic GUI." msgstr "" -#: processor_box.cc:372 -#, fuzzy -msgid "Show All Controls" -msgstr "Mostrar controlos de envio" - -#: processor_box.cc:376 -#, fuzzy -msgid "Hide All Controls" -msgstr "Esconder todos os desvanecimentos cruzados" - -#: processor_box.cc:465 -#, fuzzy -msgid "on" -msgstr "pronto" - #: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 msgid "off" msgstr "desligado" @@ -9151,71 +4697,18 @@ msgid "" "This plugin has:\n" msgstr "" -#: processor_box.cc:1209 -#, fuzzy -msgid "\t%1 MIDI input\n" -msgid_plural "\t%1 MIDI inputs\n" -msgstr[0] "%1 entrada" -msgstr[1] "%1 entrada" - -#: processor_box.cc:1213 -#, fuzzy -msgid "\t%1 audio input\n" -msgid_plural "\t%1 audio inputs\n" -msgstr[0] "" -"entrada\n" -"automática" -msgstr[1] "" -"entrada\n" -"automática" - #: processor_box.cc:1216 msgid "" "\n" "but at the insertion point, there are:\n" msgstr "" -#: processor_box.cc:1219 -#, fuzzy -msgid "\t%1 MIDI channel\n" -msgid_plural "\t%1 MIDI channels\n" -msgstr[0] "canais" -msgstr[1] "canais" - -#: processor_box.cc:1223 -#, fuzzy -msgid "\t%1 audio channel\n" -msgid_plural "\t%1 audio channels\n" -msgstr[0] "canais" -msgstr[1] "canais" - #: processor_box.cc:1226 msgid "" "\n" "%1 is unable to insert this plugin here.\n" msgstr "" -#: processor_box.cc:1262 -#, fuzzy -msgid "Cannot set up new send: %1" -msgstr "não foi possível estabelecer receptor de sinal %1" - -#: processor_box.cc:1594 -#, fuzzy -msgid "" -"You cannot reorder these plugins/sends/inserts\n" -"in that way because the inputs and\n" -"outputs will not work correctly." -msgstr "" -"Não é possível reordenar os redireccionamentos\n" -"na forma pretendida porque as entradas e saídas\n" -"não podem ser combinadas correctamente." - -#: processor_box.cc:1778 -#, fuzzy -msgid "Rename Processor" -msgstr "Renomear faixa" - #: processor_box.cc:1809 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "" @@ -9224,121 +4717,22 @@ msgstr "" msgid "plugin insert constructor failed" msgstr "" -#: processor_box.cc:1954 -#, fuzzy -msgid "" -"Copying the set of processors on the clipboard failed,\n" -"probably because the I/O configuration of the plugins\n" -"could not match the configuration of this track." -msgstr "" -"Não foi possível copiar o conjunto de redireccionamentos,\n" -"provavelmente porque a configuração de entradas e saídas\n" -"para os efeitos/plug-ins não combinam correctamente\n" -"com a configuração desta faixa." - -#: processor_box.cc:2000 -#, fuzzy -msgid "" -"Do you really want to remove all processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Deseja realmente remover todos os redireccionamentos para este barramento?\n" -"(esta operação não pode ser desfeita)" - #: processor_box.cc:2004 processor_box.cc:2029 msgid "Yes, remove them all" msgstr "Sim, remover todos" -#: processor_box.cc:2006 processor_box.cc:2031 -#, fuzzy -msgid "Remove processors" -msgstr "Remover marcador" - -#: processor_box.cc:2021 -#, fuzzy -msgid "" -"Do you really want to remove all pre-fader processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Deseja realmente remover todos os redireccionamentos para este barramento?\n" -"(esta operação não pode ser desfeita)" - -#: processor_box.cc:2024 -#, fuzzy -msgid "" -"Do you really want to remove all post-fader processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Deseja realmente remover todos os redireccionamentos para este barramento?\n" -"(esta operação não pode ser desfeita)" - -#: processor_box.cc:2200 -#, fuzzy -msgid "New Plugin" -msgstr "Novo efeito/plug-in..." - #: processor_box.cc:2203 msgid "New Insert" msgstr "Nova inserção" -#: processor_box.cc:2206 -#, fuzzy -msgid "New External Send ..." -msgstr "Novo envio..." - -#: processor_box.cc:2210 -#, fuzzy -msgid "New Aux Send ..." -msgstr "Novo envio..." - -#: processor_box.cc:2214 -#, fuzzy -msgid "Clear (all)" -msgstr "Apagar todos os intervalos" - -#: processor_box.cc:2216 -#, fuzzy -msgid "Clear (pre-fader)" -msgstr "Apagar VUímetro" - -#: processor_box.cc:2218 -#, fuzzy -msgid "Clear (post-fader)" -msgstr "Apagar VUímetro" - #: processor_box.cc:2244 msgid "Activate All" msgstr "Activar tudo" -#: processor_box.cc:2246 -#, fuzzy -msgid "Deactivate All" -msgstr "Desactivar todos" - -#: processor_box.cc:2248 -#, fuzzy -msgid "A/B Plugins" -msgstr "Efeitos/plug-ins" - #: processor_box.cc:2257 msgid "Edit with generic controls..." msgstr "" -#: processor_box.cc:2557 -#, fuzzy -msgid "%1: %2 (by %3)" -msgstr "ardour: %1: %2 (por %3)" - -#: patch_change_dialog.cc:51 -#, fuzzy -msgid "Patch Change" -msgstr "Reproduzir intervalo" - -#: patch_change_dialog.cc:77 -#, fuzzy -msgid "Patch Bank" -msgstr "Reproduzir intervalo" - #: patch_change_dialog.cc:84 msgid "Patch" msgstr "" @@ -9371,31 +4765,6 @@ msgstr "" msgid "Threshold (ticks)" msgstr "" -#: quantize_dialog.cc:63 -#, fuzzy -msgid "Snap note start" -msgstr "Ajustar ao início de região" - -#: quantize_dialog.cc:64 -#, fuzzy -msgid "Snap note end" -msgstr "Ajustar ao segundo" - -#: rc_option_editor.cc:69 -#, fuzzy -msgid "Click audio file:" -msgstr "Ficheiro audio para metrónomo" - -#: rc_option_editor.cc:72 rc_option_editor.cc:79 -#, fuzzy -msgid "Browse..." -msgstr "Pesquisar" - -#: rc_option_editor.cc:76 -#, fuzzy -msgid "Click emphasis audio file:" -msgstr "Ficheiro audio para metrónomo acentuado" - #: rc_option_editor.cc:108 msgid "Choose Click" msgstr "Metrónomo" @@ -9412,35 +4781,10 @@ msgstr "" msgid "Save undo history of" msgstr "" -#: rc_option_editor.cc:170 rc_option_editor.cc:177 -#, fuzzy -msgid "commands" -msgstr "comentários" - -#: rc_option_editor.cc:315 -#, fuzzy -msgid "Edit using:" -msgstr "Editar com" - #: rc_option_editor.cc:321 rc_option_editor.cc:347 rc_option_editor.cc:374 msgid "+ button" msgstr "+ botão" -#: rc_option_editor.cc:341 -#, fuzzy -msgid "Delete using:" -msgstr "Eliminar com" - -#: rc_option_editor.cc:368 -#, fuzzy -msgid "Insert note using:" -msgstr "Inserir selecção" - -#: rc_option_editor.cc:395 -#, fuzzy -msgid "Ignore snap using:" -msgstr "Ignorar ajuste com" - #: rc_option_editor.cc:411 msgid "Keyboard layout:" msgstr "" @@ -9457,11 +4801,6 @@ msgstr "" msgid "Recording (seconds of buffering):" msgstr "" -#: rc_option_editor.cc:656 -#, fuzzy -msgid "Control Surface Protocol" -msgstr "Mesas de controlo" - #: rc_option_editor.cc:660 msgid "Feedback" msgstr "" @@ -9499,11 +4838,6 @@ msgid "" "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:836 -#, fuzzy -msgid "Video Folder:" -msgstr "Nome do directório:" - #: rc_option_editor.cc:841 msgid "" "Local path to the video-server document-root. Only files below this " @@ -9541,11 +4875,6 @@ msgstr "" msgid "all but one processor" msgstr "" -#: rc_option_editor.cc:1014 -#, fuzzy -msgid "all available processors" -msgstr "Portos disponíveis" - #: rc_option_editor.cc:1017 msgid "%1 processors" msgstr "" @@ -9554,43 +4883,18 @@ msgstr "" msgid "This setting will only take effect when %1 is restarted." msgstr "" -#: rc_option_editor.cc:1025 -#, fuzzy -msgid "Options|Undo" -msgstr "Opções" - -#: rc_option_editor.cc:1032 -#, fuzzy -msgid "Verify removal of last capture" -msgstr "Verificar remoção da última captura" - #: rc_option_editor.cc:1040 msgid "Make periodic backups of the session file" msgstr "" -#: rc_option_editor.cc:1045 -#, fuzzy -msgid "Session Management" -msgstr "Novo nome de sessão:" - #: rc_option_editor.cc:1050 msgid "Always copy imported files" msgstr "" -#: rc_option_editor.cc:1057 -#, fuzzy -msgid "Default folder for new sessions:" -msgstr "Seleccionar regiões" - #: rc_option_editor.cc:1065 msgid "Maximum number of recent sessions" msgstr "" -#: rc_option_editor.cc:1078 -#, fuzzy -msgid "Click gain level" -msgstr "Ficheiro audio para metrónomo" - #: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "Automatização" @@ -9603,16 +4907,6 @@ msgstr "" msgid "Automation sampling interval (milliseconds)" msgstr "" -#: rc_option_editor.cc:1109 -#, fuzzy -msgid "Keep record-enable engaged on stop" -msgstr "Gravação permanece activa quando parar" - -#: rc_option_editor.cc:1118 -#, fuzzy -msgid "Stop recording when an xrun occurs" -msgstr "Suspender gravação em caso de falha sincrónica (XRUN)" - #: rc_option_editor.cc:1123 msgid "" "When enabled %1 will stop recording if an over- or underrun is " @@ -9623,11 +4917,6 @@ msgstr "" msgid "Create markers where xruns occur" msgstr "" -#: rc_option_editor.cc:1138 -#, fuzzy -msgid "Stop at the end of the session" -msgstr "Ir para o final da sessão" - #: rc_option_editor.cc:1143 msgid "" "When enabled if %1 is not recording, it will stop the " @@ -9661,11 +4950,6 @@ msgid "" "specific tracks recording during a take" msgstr "" -#: rc_option_editor.cc:1173 -#, fuzzy -msgid "12dB gain reduction during fast-forward and fast-rewind" -msgstr "Atenuar 12dB durante o rebobinar/avançar" - #: rc_option_editor.cc:1177 msgid "" "This will reduce the unpleasant increase in perceived volume that occurs " @@ -9676,11 +4960,6 @@ msgstr "" msgid "Sync/Slave" msgstr "" -#: rc_option_editor.cc:1185 -#, fuzzy -msgid "External timecode source" -msgstr "Sicronia de posição" - #: rc_option_editor.cc:1195 msgid "Match session video frame rate to external timecode" msgstr "" @@ -9699,11 +4978,6 @@ msgid "" "external timecode standard and the session standard." msgstr "" -#: rc_option_editor.cc:1211 -#, fuzzy -msgid "External timecode is sync locked" -msgstr "Sicronia de posição" - #: rc_option_editor.cc:1217 msgid "" "When enabled indicates that the selected external timecode source " @@ -9727,25 +5001,10 @@ msgid "" "variant of using exactly 29.97 fps has zero timecode drift.\n" msgstr "" -#: rc_option_editor.cc:1240 -#, fuzzy -msgid "LTC Reader" -msgstr "Cabeçalho" - #: rc_option_editor.cc:1244 msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1257 -#, fuzzy -msgid "LTC Generator" -msgstr "Criar" - -#: rc_option_editor.cc:1262 -#, fuzzy -msgid "Enable LTC generator" -msgstr "Gravar" - #: rc_option_editor.cc:1269 msgid "send LTC while stopped" msgstr "" @@ -9756,22 +5015,12 @@ msgid "" "transport (playhead) is not moving" msgstr "" -#: rc_option_editor.cc:1281 -#, fuzzy -msgid "LTC generator level" -msgstr "Criar" - #: rc_option_editor.cc:1285 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " "is 0dBu ^= -18dbFS in an EBU calibrated system" msgstr "" -#: rc_option_editor.cc:1297 -#, fuzzy -msgid "Link selection of regions and tracks" -msgstr "Inverter selecção na faixa" - #: rc_option_editor.cc:1305 msgid "Move relevant automation when audio regions are moved" msgstr "" @@ -9800,16 +5049,6 @@ msgstr "" msgid "Make rubberband selection rectangle snap to the grid" msgstr "" -#: rc_option_editor.cc:1348 -#, fuzzy -msgid "Show waveforms in regions" -msgstr "Mostrar regiões de automatização" - -#: rc_option_editor.cc:1356 -#, fuzzy -msgid "Show gain envelopes in audio regions" -msgstr "Mostrar regiões de automatização" - #: rc_option_editor.cc:1357 msgid "in all modes" msgstr "" @@ -9818,11 +5057,6 @@ msgstr "" msgid "only in region gain mode" msgstr "" -#: rc_option_editor.cc:1365 -#, fuzzy -msgid "Waveform scale" -msgstr "Forma de onda" - #: rc_option_editor.cc:1370 msgid "linear" msgstr "linear" @@ -9831,21 +5065,6 @@ msgstr "linear" msgid "logarithmic" msgstr "" -#: rc_option_editor.cc:1377 -#, fuzzy -msgid "Waveform shape" -msgstr "Forma de onda" - -#: rc_option_editor.cc:1382 -#, fuzzy -msgid "traditional" -msgstr "Tradicional" - -#: rc_option_editor.cc:1383 -#, fuzzy -msgid "rectified" -msgstr "Rectificado" - #: rc_option_editor.cc:1390 msgid "Show waveforms for audio while it is being recorded" msgstr "" @@ -9870,11 +5089,6 @@ msgstr "" msgid "Synchronise editor and mixer selection" msgstr "" -#: rc_option_editor.cc:1437 -#, fuzzy -msgid "Name new markers" -msgstr "remover marcador" - #: rc_option_editor.cc:1443 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " @@ -9891,26 +5105,6 @@ msgstr "" msgid "Buffering" msgstr "" -#: rc_option_editor.cc:1464 -#, fuzzy -msgid "Record monitoring handled by" -msgstr "Monitorização" - -#: rc_option_editor.cc:1475 -#, fuzzy -msgid "ardour" -msgstr "ardour: cronómetro" - -#: rc_option_editor.cc:1476 -#, fuzzy -msgid "audio hardware" -msgstr "Quadros audio" - -#: rc_option_editor.cc:1483 -#, fuzzy -msgid "Tape machine mode" -msgstr "Modo de automatizaçã" - #: rc_option_editor.cc:1488 msgid "Connection of tracks and busses" msgstr "" @@ -9919,40 +5113,10 @@ msgstr "" msgid "Auto-connect master/monitor busses" msgstr "" -#: rc_option_editor.cc:1500 -#, fuzzy -msgid "Connect track inputs" -msgstr "Ligar entradas de faixas novas automaticamente" - -#: rc_option_editor.cc:1505 -#, fuzzy -msgid "automatically to physical inputs" -msgstr "Ligar entradas automaticamente" - #: rc_option_editor.cc:1506 rc_option_editor.cc:1519 msgid "manually" msgstr "" -#: rc_option_editor.cc:1512 -#, fuzzy -msgid "Connect track and bus outputs" -msgstr "Ligar saídas principais de faixas novas a automaticamente" - -#: rc_option_editor.cc:1517 -#, fuzzy -msgid "automatically to physical outputs" -msgstr "Ligar saídas automaticamente" - -#: rc_option_editor.cc:1518 -#, fuzzy -msgid "automatically to master bus" -msgstr "ligar saídas principais automaticamente" - -#: rc_option_editor.cc:1523 -#, fuzzy -msgid "Denormals" -msgstr "normal" - #: rc_option_editor.cc:1528 msgid "Use DC bias to protect against denormals" msgstr "" @@ -9977,11 +5141,6 @@ msgstr "" msgid "use FlushToZero and DenormalsAreZero" msgstr "" -#: rc_option_editor.cc:1563 -#, fuzzy -msgid "Silence plugins when the transport is stopped" -msgstr "Suspender efeitos/plug-ins com transporte" - #: rc_option_editor.cc:1571 msgid "Make new plugins active" msgstr "" @@ -9990,20 +5149,6 @@ msgstr "" msgid "Enable automatic analysis of audio" msgstr "" -#: rc_option_editor.cc:1587 -#, fuzzy -msgid "Replicate missing region channels" -msgstr "Criar uma região para cada canal" - -#: rc_option_editor.cc:1594 rc_option_editor.cc:1609 rc_option_editor.cc:1621 -#: rc_option_editor.cc:1633 rc_option_editor.cc:1645 rc_option_editor.cc:1649 -#: rc_option_editor.cc:1657 rc_option_editor.cc:1665 rc_option_editor.cc:1673 -#: rc_option_editor.cc:1675 rc_option_editor.cc:1683 rc_option_editor.cc:1691 -#: rc_option_editor.cc:1699 -#, fuzzy -msgid "Solo / mute" -msgstr "Solo via barramento" - #: rc_option_editor.cc:1597 msgid "Solo-in-place mute cut (dB)" msgstr "" @@ -10012,29 +5157,14 @@ msgstr "" msgid "Solo controls are Listen controls" msgstr "" -#: rc_option_editor.cc:1613 -#, fuzzy -msgid "Listen Position" -msgstr "Posição" - #: rc_option_editor.cc:1618 msgid "after-fader (AFL)" msgstr "" -#: rc_option_editor.cc:1619 -#, fuzzy -msgid "pre-fader (PFL)" -msgstr "Encaminhamentos pré-atenuador" - #: rc_option_editor.cc:1625 msgid "PFL signals come from" msgstr "" -#: rc_option_editor.cc:1630 -#, fuzzy -msgid "before pre-fader processors" -msgstr "Remover marcador" - #: rc_option_editor.cc:1631 msgid "pre-fader but after pre-fader processors" msgstr "" @@ -10043,34 +5173,14 @@ msgstr "" msgid "AFL signals come from" msgstr "" -#: rc_option_editor.cc:1642 -#, fuzzy -msgid "immediately post-fader" -msgstr "Apagar VUímetro" - -#: rc_option_editor.cc:1643 -#, fuzzy -msgid "after post-fader processors (before pan)" -msgstr "Remover marcador" - #: rc_option_editor.cc:1652 msgid "Exclusive solo" msgstr "" -#: rc_option_editor.cc:1660 -#, fuzzy -msgid "Show solo muting" -msgstr "Mostrar todas as automatizações" - #: rc_option_editor.cc:1668 msgid "Soloing overrides muting" msgstr "" -#: rc_option_editor.cc:1673 -#, fuzzy -msgid "Default track / bus muting options" -msgstr "Faixas/barramentos" - #: rc_option_editor.cc:1678 msgid "Mute affects pre-fader sends" msgstr "" @@ -10079,20 +5189,10 @@ msgstr "" msgid "Mute affects post-fader sends" msgstr "" -#: rc_option_editor.cc:1694 -#, fuzzy -msgid "Mute affects control outputs" -msgstr "usar saídas de controlo" - #: rc_option_editor.cc:1702 msgid "Mute affects main outputs" msgstr "" -#: rc_option_editor.cc:1718 -#, fuzzy -msgid "Send MIDI Time Code" -msgstr "Enviar controlo MIDI" - #: rc_option_editor.cc:1726 msgid "Percentage either side of normal transport speed to transmit MTC" msgstr "" @@ -10105,11 +5205,6 @@ msgstr "" msgid "Send MIDI Machine Control commands" msgstr "" -#: rc_option_editor.cc:1751 -#, fuzzy -msgid "Send MIDI control feedback" -msgstr "Enviar controlo MIDI" - #: rc_option_editor.cc:1759 msgid "Inbound MMC device ID" msgstr "" @@ -10130,16 +5225,6 @@ msgstr "" msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "" -#: rc_option_editor.cc:1802 -#, fuzzy -msgid "Sound MIDI notes as they are selected" -msgstr "Inserir selecção" - -#: rc_option_editor.cc:1810 rc_option_editor.cc:1820 rc_option_editor.cc:1822 -#, fuzzy -msgid "User interaction" -msgstr "Operações em regiões" - #: rc_option_editor.cc:1813 msgid "" "Use translations of %1 messages\n" @@ -10151,16 +5236,6 @@ msgstr "" msgid "Keyboard" msgstr "" -#: rc_option_editor.cc:1830 -#, fuzzy -msgid "Control surface remote ID" -msgstr "Mesas de controlo" - -#: rc_option_editor.cc:1835 -#, fuzzy -msgid "assigned by user" -msgstr "não atribuidas" - #: rc_option_editor.cc:1836 msgid "follows order of mixer" msgstr "" @@ -10193,40 +5268,10 @@ msgstr "" msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" -#: rc_option_editor.cc:1887 -#, fuzzy -msgid "Mixer Strip" -msgstr "Mostrar painel de mistura" - -#: rc_option_editor.cc:1897 -#, fuzzy -msgid "Use narrow strips in the mixer by default" -msgstr "Estreitar painéis de mistura" - -#: rc_option_editor.cc:1906 -#, fuzzy -msgid "Peak hold time" -msgstr "VUímetro (persistência)" - -#: rc_option_editor.cc:1912 -#, fuzzy -msgid "short" -msgstr "Curto" - -#: rc_option_editor.cc:1913 -#, fuzzy -msgid "medium" -msgstr "Médio" - #: rc_option_editor.cc:1914 msgid "long" msgstr "" -#: rc_option_editor.cc:1920 -#, fuzzy -msgid "DPM fall-off" -msgstr "VUímetro (decaimento)" - #: rc_option_editor.cc:1926 msgid "slowest [6.6dB/sec]" msgstr "" @@ -10331,11 +5376,6 @@ msgstr "" msgid "audition this region" msgstr "ouvir esta região" -#: region_editor.cc:88 region_layering_order_editor.cc:74 -#, fuzzy -msgid "Position:" -msgstr "Posição" - #: region_editor.cc:90 add_video_dialog.cc:170 msgid "End:" msgstr "Final:" @@ -10364,65 +5404,10 @@ msgstr "" msgid "Source:" msgstr "" -#: region_editor.cc:166 -#, fuzzy -msgid "Region '%1'" -msgstr "Regiões" - -#: region_editor.cc:273 -#, fuzzy -msgid "change region start position" -msgstr "estabelecer posição de sincronismo na região" - -#: region_editor.cc:289 -#, fuzzy -msgid "change region end position" -msgstr "estabelecer posição de sincronismo na região" - -#: region_editor.cc:309 -#, fuzzy -msgid "change region length" -msgstr "alterar duração de evanescimento" - -#: region_editor.cc:403 region_editor.cc:415 -#, fuzzy -msgid "change region sync point" -msgstr "estabelecer posição de sincronismo na região" - -#: region_layering_order_editor.cc:41 -#, fuzzy -msgid "RegionLayeringOrderEditor" -msgstr "Níveis de região" - -#: region_layering_order_editor.cc:54 -#, fuzzy -msgid "Region Name" -msgstr "Por nome de região" - -#: region_layering_order_editor.cc:71 -#, fuzzy -msgid "Track:" -msgstr "Faixa" - -#: region_layering_order_editor.cc:103 -#, fuzzy -msgid "Choose Top Region" -msgstr "Reproduzir região em ciclo" - #: region_view.cc:274 msgid "SilenceText" msgstr "" -#: region_view.cc:290 region_view.cc:309 -#, fuzzy -msgid "minutes" -msgstr "Minutos" - -#: region_view.cc:293 region_view.cc:312 -#, fuzzy -msgid "msecs" -msgstr "msegs" - #: region_view.cc:296 region_view.cc:315 msgid "secs" msgstr "" @@ -10471,11 +5456,6 @@ msgstr "" msgid "Complex Domain" msgstr "" -#: rhythm_ferret.cc:59 -#, fuzzy -msgid "Phase Deviation" -msgstr "Posição" - #: rhythm_ferret.cc:60 msgid "Kullback-Liebler" msgstr "" @@ -10484,35 +5464,10 @@ msgstr "" msgid "Modified Kullback-Liebler" msgstr "" -#: rhythm_ferret.cc:66 -#, fuzzy -msgid "Split region" -msgstr "Separar região" - -#: rhythm_ferret.cc:67 -#, fuzzy -msgid "Snap regions" -msgstr "Separar região" - -#: rhythm_ferret.cc:68 -#, fuzzy -msgid "Conform regions" -msgstr "Nome para a região:" - #: rhythm_ferret.cc:73 msgid "Rhythm Ferret" msgstr "" -#: rhythm_ferret.cc:79 -#, fuzzy -msgid "Analyze" -msgstr "Analizar intervalo" - -#: rhythm_ferret.cc:114 -#, fuzzy -msgid "Detection function" -msgstr "Estabelecer posição de sincronia de região" - #: rhythm_ferret.cc:118 msgid "Trigger gap" msgstr "" @@ -10533,11 +5488,6 @@ msgstr "" msgid "Sensitivity" msgstr "" -#: rhythm_ferret.cc:142 -#, fuzzy -msgid "Operation" -msgstr "Opções" - #: rhythm_ferret.cc:356 msgid "split regions (rhythm ferret)" msgstr "" @@ -10546,36 +5496,6 @@ msgstr "" msgid "Track/bus Group" msgstr "" -#: route_group_dialog.cc:41 -#, fuzzy -msgid "Relative" -msgstr "Alinhar relativamente" - -#: route_group_dialog.cc:42 -#, fuzzy -msgid "Muting" -msgstr "Ordenação" - -#: route_group_dialog.cc:43 -#, fuzzy -msgid "Soloing" -msgstr "Solo livre" - -#: route_group_dialog.cc:44 -#, fuzzy -msgid "Record enable" -msgstr "Gravar" - -#: route_group_dialog.cc:45 time_info_box.cc:66 -#, fuzzy -msgid "Selection" -msgstr "Seleccionar" - -#: route_group_dialog.cc:46 -#, fuzzy -msgid "Active state" -msgstr "Activar" - #: route_group_dialog.cc:47 route_group_dialog.cc:76 theme_manager.cc:71 msgid "Color" msgstr "Cor" @@ -10584,11 +5504,6 @@ msgstr "Cor" msgid "RouteGroupDialog" msgstr "" -#: route_group_dialog.cc:92 -#, fuzzy -msgid "Sharing" -msgstr "Avançado..." - #: route_group_dialog.cc:182 msgid "" "A route group of this name already exists. Please use a different name." @@ -10623,11 +5538,6 @@ msgstr "" msgid "NO TRACK" msgstr "Nenhuma faixa" -#: route_params_ui.cc:613 route_params_ui.cc:614 -#, fuzzy -msgid "No Track or Bus Selected" -msgstr "Nenhum saminho seleccionado" - #: route_time_axis.cc:97 msgid "g" msgstr "" @@ -10648,41 +5558,6 @@ msgstr "" msgid "Record" msgstr "Gravar" -#: route_time_axis.cc:210 -#, fuzzy -msgid "Route Group" -msgstr "Grupo" - -#: route_time_axis.cc:213 -#, fuzzy -msgid "MIDI Controllers and Automation" -msgstr "Usar controlo MIDI" - -#: route_time_axis.cc:390 -#, fuzzy -msgid "Show All Automation" -msgstr "Mostrar todas as automatizações" - -#: route_time_axis.cc:393 -#, fuzzy -msgid "Show Existing Automation" -msgstr "Mostrar automatizações existentes" - -#: route_time_axis.cc:396 -#, fuzzy -msgid "Hide All Automation" -msgstr "Esconder todas as automatizações" - -#: route_time_axis.cc:405 -#, fuzzy -msgid "Processor automation" -msgstr "apagar automatizações" - -#: route_time_axis.cc:424 -#, fuzzy -msgid "Color..." -msgstr "Cor" - #: route_time_axis.cc:481 msgid "Overlaid" msgstr "" @@ -10691,115 +5566,18 @@ msgstr "" msgid "Stacked" msgstr "" -#: route_time_axis.cc:495 -#, fuzzy -msgid "Layers" -msgstr "Nível" - -#: route_time_axis.cc:564 -#, fuzzy -msgid "Automatic (based on I/O connections)" -msgstr "Ligar saídas automaticamente" - -#: route_time_axis.cc:573 -#, fuzzy -msgid "(Currently: Existing Material)" -msgstr "Alinhar com material existente" - -#: route_time_axis.cc:576 -#, fuzzy -msgid "(Currently: Capture Time)" -msgstr "Alinhar com tempo de gravação" - -#: route_time_axis.cc:584 -#, fuzzy -msgid "Align With Existing Material" -msgstr "Alinhar com material existente" - -#: route_time_axis.cc:589 -#, fuzzy -msgid "Align With Capture Time" -msgstr "Alinhar com tempo de gravação" - #: route_time_axis.cc:594 msgid "Alignment" msgstr "Alinhamento" -#: route_time_axis.cc:629 -#, fuzzy -msgid "Normal Mode" -msgstr "Normal" - -#: route_time_axis.cc:635 -#, fuzzy -msgid "Tape Mode" -msgstr "Modo de ajuste" - -#: route_time_axis.cc:641 -#, fuzzy -msgid "Non-Layered Mode" -msgstr "Níveis de região" - #: route_time_axis.cc:654 route_time_axis.cc:1601 msgid "Playlist" msgstr "Lista de reprodução" -#: route_time_axis.cc:979 -#, fuzzy -msgid "Rename Playlist" -msgstr "Nome para lista de reprodução" - -#: route_time_axis.cc:980 -#, fuzzy -msgid "New name for playlist:" -msgstr "Nome para lista de reprodução" - -#: route_time_axis.cc:1065 -#, fuzzy -msgid "New Copy Playlist" -msgstr "Nome para lista de reprodução" - -#: route_time_axis.cc:1066 route_time_axis.cc:1119 -#, fuzzy -msgid "Name for new playlist:" -msgstr "Nome para lista de reprodução" - -#: route_time_axis.cc:1118 -#, fuzzy -msgid "New Playlist" -msgstr "Lista de reprodução" - -#: route_time_axis.cc:1309 -#, fuzzy -msgid "You cannot create a track with that name as it is reserved for %1" -msgstr "" -"Não é possível acrescentar uma faixa sem que haja uma sessão esteja " -"carregada." - -#: route_time_axis.cc:1490 -#, fuzzy -msgid "New Copy..." -msgstr "Nova cópia" - -#: route_time_axis.cc:1494 -#, fuzzy -msgid "New Take" -msgstr "Novo tempo" - -#: route_time_axis.cc:1495 -#, fuzzy -msgid "Copy Take" -msgstr "Copiar" - #: route_time_axis.cc:1500 msgid "Clear Current" msgstr "Apagar actual" -#: route_time_axis.cc:1503 -#, fuzzy -msgid "Select From All..." -msgstr "Seleccionar tudo..." - #: route_time_axis.cc:1591 msgid "Take: %1.%2" msgstr "" @@ -10808,11 +5586,6 @@ msgstr "" msgid "Underlays" msgstr "" -#: route_time_axis.cc:2294 -#, fuzzy -msgid "Remove \"%1\"" -msgstr "Remover" - #: route_time_axis.cc:2344 route_time_axis.cc:2381 msgid "programming error: underlay reference pointer pairs are inconsistent!" msgstr "" @@ -10821,11 +5594,6 @@ msgstr "" msgid "After-fade listen (AFL)" msgstr "" -#: route_time_axis.cc:2412 -#, fuzzy -msgid "Pre-fade listen (PFL)" -msgstr "Encaminhamentos pré-atenuador" - #: route_time_axis.cc:2416 msgid "s" msgstr "" @@ -10834,11 +5602,6 @@ msgstr "" msgid "m" msgstr "" -#: route_ui.cc:119 -#, fuzzy -msgid "Mute this track" -msgstr "Esconder esta faixa" - #: route_ui.cc:123 msgid "Mute other (non-soloed) tracks" msgstr "" @@ -10851,69 +5614,14 @@ msgstr "" msgid "make mixer strips show sends to this bus" msgstr "" -#: route_ui.cc:138 -#, fuzzy -msgid "Monitor input" -msgstr "Monitorização" - -#: route_ui.cc:144 -#, fuzzy -msgid "Monitor playback" -msgstr "Parar reprodução" - -#: route_ui.cc:591 -#, fuzzy -msgid "Not connected to JACK - cannot engage record" -msgstr "Desligado do JACK - não são possíveis alterações nas entradas/saídas" - -#: route_ui.cc:786 -#, fuzzy -msgid "Step Entry" -msgstr "Editar" - #: route_ui.cc:859 msgid "Assign all tracks (prefader)" msgstr "" -#: route_ui.cc:863 -#, fuzzy -msgid "Assign all tracks and buses (prefader)" -msgstr "seleccionar visualização de faixa" - #: route_ui.cc:867 msgid "Assign all tracks (postfader)" msgstr "" -#: route_ui.cc:871 -#, fuzzy -msgid "Assign all tracks and buses (postfader)" -msgstr "seleccionar visualização de faixa" - -#: route_ui.cc:875 -#, fuzzy -msgid "Assign selected tracks (prefader)" -msgstr "seleccionar visualização de faixa" - -#: route_ui.cc:879 -#, fuzzy -msgid "Assign selected tracks and buses (prefader)" -msgstr "seleccionar visualização de faixa" - -#: route_ui.cc:882 -#, fuzzy -msgid "Assign selected tracks (postfader)" -msgstr "seleccionar visualização de faixa" - -#: route_ui.cc:886 -#, fuzzy -msgid "Assign selected tracks and buses (postfader)" -msgstr "seleccionar visualização de faixa" - -#: route_ui.cc:889 -#, fuzzy -msgid "Copy track/bus gains to sends" -msgstr "ardour: faixa/barramento: " - #: route_ui.cc:890 msgid "Set sends gain to -inf" msgstr "" @@ -10922,11 +5630,6 @@ msgstr "" msgid "Set sends gain to 0dB" msgstr "" -#: route_ui.cc:1211 -#, fuzzy -msgid "Solo Isolate" -msgstr "Solo livre" - #: route_ui.cc:1240 msgid "Pre Fader" msgstr "Pré-atenuador" @@ -10943,56 +5646,12 @@ msgstr "Saídas de controlo" msgid "Main Outs" msgstr "Saídas principais" -#: route_ui.cc:1390 -#, fuzzy -msgid "Color Selection" -msgstr "Reproduzir região seleccionada" - -#: route_ui.cc:1477 -#, fuzzy -msgid "" -"Do you really want to remove track \"%1\" ?\n" -"\n" -"You may also lose the playlist used by this track.\n" -"\n" -"(This action cannot be undone, and the session file will be overwritten)" -msgstr "" -"Deseja realmente remover a faixa \"%1\" ?\n" -"\n" -"A lista de reprodução em uso para esta faixa pode ficar perdida.\n" -"(esta operação não pode ser desfeita)" - -#: route_ui.cc:1479 -#, fuzzy -msgid "" -"Do you really want to remove bus \"%1\" ?\n" -"\n" -"(This action cannot be undone, and the session file will be overwritten)" -msgstr "" -"Deseja realmente remover o barramento \"%1\" ?\n" -"(esta operação não pode ser desfeita)" - -#: route_ui.cc:1487 -#, fuzzy -msgid "Remove track" -msgstr "Remover marcador" - -#: route_ui.cc:1489 -#, fuzzy -msgid "Remove bus" -msgstr "Remover" - #: route_ui.cc:1516 msgid "" "The use of colons (':') is discouraged in track and bus names.\n" "Do you want to use this new name?" msgstr "" -#: route_ui.cc:1520 -#, fuzzy -msgid "Use the new name" -msgstr "novo nome: " - #: route_ui.cc:1521 msgid "Re-edit the name" msgstr "" @@ -11001,39 +5660,14 @@ msgstr "" msgid "Rename Track" msgstr "Renomear faixa" -#: route_ui.cc:1536 -#, fuzzy -msgid "Rename Bus" -msgstr "Renomear" - -#: route_ui.cc:1695 -#, fuzzy -msgid " latency" -msgstr "Latência" - #: route_ui.cc:1708 msgid "Cannot create route template directory %1" msgstr "" -#: route_ui.cc:1714 -#, fuzzy -msgid "Save As Template" -msgstr "Guardar modelo..." - -#: route_ui.cc:1715 -#, fuzzy -msgid "Template name:" -msgstr "Nome para o campo:" - #: route_ui.cc:1788 msgid "Remote Control ID" msgstr "ID controlo remoto" -#: route_ui.cc:1798 -#, fuzzy -msgid "Remote control ID:" -msgstr "ID controlo remoto" - #: route_ui.cc:1812 msgid "" "The remote control ID of %1 is: %2\n" @@ -11042,16 +5676,6 @@ msgid "" "The remote control ID of %3 cannot be changed." msgstr "" -#: route_ui.cc:1816 -#, fuzzy -msgid "the master bus" -msgstr "Criar barramento para VUímetro" - -#: route_ui.cc:1816 -#, fuzzy -msgid "the monitor bus" -msgstr "Criar barramento para VUímetro" - #: route_ui.cc:1818 msgid "" "The remote control ID of %6 is: %3\n" @@ -11063,18 +5687,6 @@ msgid "" "change this%5" msgstr "" -#: route_ui.cc:1821 -#, fuzzy -msgid "the mixer" -msgstr "" -"edição\n" -"mistura" - -#: route_ui.cc:1821 -#, fuzzy -msgid "the editor" -msgstr "a altura" - #: route_ui.cc:1876 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " @@ -11089,31 +5701,6 @@ msgstr "" msgid "Select folder to search for media" msgstr "" -#: search_path_option.cc:44 -#, fuzzy -msgid "Click to add a new location" -msgstr "Apagar todas as localizações" - -#: search_path_option.cc:51 -#, fuzzy -msgid "the session folder" -msgstr "Copiar ficheiro para o directório de sessão" - -#: send_ui.cc:126 -#, fuzzy -msgid "Send " -msgstr "Envios" - -#: session_import_dialog.cc:64 -#, fuzzy -msgid "Import from Session" -msgstr "Exportar região" - -#: session_import_dialog.cc:73 -#, fuzzy -msgid "Elements" -msgstr "Comentários" - #: session_import_dialog.cc:110 msgid "Cannot load XML for session from %1" msgstr "" @@ -11122,11 +5709,6 @@ msgstr "" msgid "Some elements had errors in them. Please see the log for details" msgstr "" -#: session_import_dialog.cc:163 -#, fuzzy -msgid "Import from session" -msgstr "Exportar região" - #: session_import_dialog.cc:227 msgid "This will select all elements of this type!" msgstr "" @@ -11151,11 +5733,6 @@ msgstr "" msgid "Web" msgstr "" -#: session_metadata_dialog.cc:534 -#, fuzzy -msgid "Organization" -msgstr "modo de automatização de ganho" - #: session_metadata_dialog.cc:537 msgid "Country" msgstr "" @@ -11172,11 +5749,6 @@ msgstr "" msgid "Subtitle" msgstr "" -#: session_metadata_dialog.cc:560 -#, fuzzy -msgid "Grouping" -msgstr "Grupo" - #: session_metadata_dialog.cc:563 msgid "Artist" msgstr "" @@ -11185,16 +5757,6 @@ msgstr "" msgid "Genre" msgstr "" -#: session_metadata_dialog.cc:569 -#, fuzzy -msgid "Comment" -msgstr "Comentários" - -#: session_metadata_dialog.cc:572 -#, fuzzy -msgid "Copyright" -msgstr "Copiar" - #: session_metadata_dialog.cc:580 session_metadata_dialog.cc:585 msgid "Album" msgstr "" @@ -11207,11 +5769,6 @@ msgstr "" msgid "Album Artist" msgstr "" -#: session_metadata_dialog.cc:594 -#, fuzzy -msgid "Total Tracks" -msgstr "como faixas" - #: session_metadata_dialog.cc:597 msgid "Disc Subtitle" msgstr "" @@ -11224,11 +5781,6 @@ msgstr "" msgid "Total Discs" msgstr "" -#: session_metadata_dialog.cc:606 -#, fuzzy -msgid "Compilation" -msgstr "Automatização" - #: session_metadata_dialog.cc:609 msgid "ISRC" msgstr "" @@ -11249,18 +5801,6 @@ msgstr "" msgid "Conductor" msgstr "" -#: session_metadata_dialog.cc:631 -#, fuzzy -msgid "Remixer" -msgstr "" -"edição\n" -"mistura" - -#: session_metadata_dialog.cc:634 -#, fuzzy -msgid "Arranger" -msgstr "intervalo" - #: session_metadata_dialog.cc:637 msgid "Engineer" msgstr "" @@ -11269,11 +5809,6 @@ msgstr "" msgid "Producer" msgstr "" -#: session_metadata_dialog.cc:643 -#, fuzzy -msgid "DJ Mixer" -msgstr "Mostrar painel de mistura" - #: session_metadata_dialog.cc:646 msgid "Metadata|Mixer" msgstr "" @@ -11294,20 +5829,10 @@ msgstr "" msgid "Edit Session Metadata" msgstr "" -#: session_metadata_dialog.cc:701 -#, fuzzy -msgid "Import session metadata" -msgstr "Importar selecção" - #: session_metadata_dialog.cc:722 msgid "Choose session to import metadata from" msgstr "" -#: session_metadata_dialog.cc:760 -#, fuzzy -msgid "This session file could not be read!" -msgstr "não foi possível abrir o ficheiro \"%1\"" - #: session_metadata_dialog.cc:770 msgid "" "The session file didn't contain metadata!\n" @@ -11318,16 +5843,6 @@ msgstr "" msgid "Import all from:" msgstr "" -#: session_option_editor.cc:32 -#, fuzzy -msgid "Session Properties" -msgstr "Operações em regiões" - -#: session_option_editor.cc:41 -#, fuzzy -msgid "Timecode Settings" -msgstr "Segundos SMPTE" - #: session_option_editor.cc:45 msgid "Timecode frames-per-second" msgstr "" @@ -11423,25 +5938,10 @@ msgid "" "Apply Pull-Up/Down to Video Timeline and Video Monitor (Unless in JACK-sync)." msgstr "" -#: session_option_editor.cc:96 -#, fuzzy -msgid "Ext Timecode Offsets" -msgstr "Quadros audio" - -#: session_option_editor.cc:100 -#, fuzzy -msgid "Slave Timecode offset" -msgstr "Quadros audio" - #: session_option_editor.cc:107 msgid "The specified offset is added to the received timecode (MTC or LTC)." msgstr "" -#: session_option_editor.cc:113 -#, fuzzy -msgid "Timecode Generator offset" -msgstr "Quadros audio" - #: session_option_editor.cc:120 msgid "" "Specify an offset which is added to the generated timecode (so far only LTC)." @@ -11456,11 +5956,6 @@ msgid "" "%1 is JACK Time Master (provides Bar|Beat|Tick and other information to JACK)" msgstr "" -#: session_option_editor.cc:137 -#, fuzzy -msgid "Default crossfade type" -msgstr "Desvanecimento cruzado" - #: session_option_editor.cc:142 msgid "Constant power (-3dB) crossfade" msgstr "" @@ -11473,43 +5968,6 @@ msgstr "" msgid "destructive-xfade-seconds" msgstr "" -#: session_option_editor.cc:149 -#, fuzzy -msgid "Destructive crossfade length" -msgstr "Desvanecimento cruzado destrutivo (msegs)" - -#: session_option_editor.cc:158 -#, fuzzy -msgid "Region fades active" -msgstr "Regiões/data do ficheiro" - -#: session_option_editor.cc:165 -#, fuzzy -msgid "Region fades visible" -msgstr "Regiões/tamanho de ficheiro" - -#: session_option_editor.cc:172 session_option_editor.cc:185 -#: session_option_editor.cc:199 session_option_editor.cc:201 -#: session_option_editor.cc:207 session_option_editor.cc:214 -#, fuzzy -msgid "Media" -msgstr "Médio" - -#: session_option_editor.cc:172 -#, fuzzy -msgid "Audio file format" -msgstr "Formato de ficheiro audio" - -#: session_option_editor.cc:176 -#, fuzzy -msgid "Sample format" -msgstr "Formato de amostra" - -#: session_option_editor.cc:181 -#, fuzzy -msgid "32-bit floating point" -msgstr "WAVE/vírgula flutuante" - #: session_option_editor.cc:182 msgid "24-bit integer" msgstr "" @@ -11518,16 +5976,6 @@ msgstr "" msgid "16-bit integer" msgstr "" -#: session_option_editor.cc:189 -#, fuzzy -msgid "File type" -msgstr "Tipo de ficheiro" - -#: session_option_editor.cc:194 -#, fuzzy -msgid "Broadcast WAVE" -msgstr "WAVE/vírgula flutuante (difusão)" - #: session_option_editor.cc:195 msgid "WAVE" msgstr "" @@ -11536,11 +5984,6 @@ msgstr "" msgid "WAVE-64" msgstr "" -#: session_option_editor.cc:201 -#, fuzzy -msgid "File locations" -msgstr "apagar localizações" - #: session_option_editor.cc:203 msgid "Search for audio files in:" msgstr "" @@ -11554,11 +5997,6 @@ msgid "" "Track Input Monitoring automatically follows transport state (\"auto-input\")" msgstr "" -#: session_option_editor.cc:227 -#, fuzzy -msgid "Use monitor section in this session" -msgstr "Suspender transporte no final da sessão" - #: session_option_editor.cc:238 msgid "MIDI region copies are independent" msgstr "" @@ -11605,108 +6043,22 @@ msgstr "" msgid "Glue new regions to bars and beats" msgstr "" -#: session_option_editor.cc:275 session_option_editor.cc:277 -#: session_option_editor.cc:284 session_option_editor.cc:291 -#: session_option_editor.cc:298 session_option_editor.cc:300 -#: session_option_editor.cc:307 session_option_editor.cc:314 -#: session_option_editor.cc:321 session_option_editor.cc:323 -#, fuzzy -msgid "Meterbridge" -msgstr "VUímetro" - #: session_option_editor.cc:275 msgid "Route Display" msgstr "" -#: session_option_editor.cc:279 -#, fuzzy -msgid "Show Midi Tracks" -msgstr "Mostrar todos as faixas audio" - -#: session_option_editor.cc:286 -#, fuzzy -msgid "Show Busses" -msgstr "Barramentos" - -#: session_option_editor.cc:293 -#, fuzzy -msgid "Include Master Bus" -msgstr "Criar barramento para VUímetro" - #: session_option_editor.cc:298 msgid "Button Area" msgstr "" -#: session_option_editor.cc:302 -#, fuzzy -msgid "Rec-enable Button" -msgstr "gravar alterado" - -#: session_option_editor.cc:309 -#, fuzzy -msgid "Mute Button" -msgstr "+ botão" - -#: session_option_editor.cc:316 -#, fuzzy -msgid "Solo Button" -msgstr "Solo via barramento" - #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" -#: session_option_editor.cc:325 -#, fuzzy -msgid "Track Name" -msgstr "Faixas/barramentos" - -#: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 -#, fuzzy -msgid "as new tracks" -msgstr "... como faixa nova" - -#: sfdb_ui.cc:88 sfdb_ui.cc:108 -#, fuzzy -msgid "to selected tracks" -msgstr "seleccionar visualização de faixa" - -#: sfdb_ui.cc:90 sfdb_ui.cc:110 -#, fuzzy -msgid "to region list" -msgstr "Ajustar ao início de região" - -#: sfdb_ui.cc:92 sfdb_ui.cc:112 -#, fuzzy -msgid "as new tape tracks" -msgstr "... como faixa nova" - #: sfdb_ui.cc:96 msgid "programming error: unknown import mode string %1" msgstr "" -#: sfdb_ui.cc:123 -#, fuzzy -msgid "Auto-play" -msgstr "" -"Reprodução\n" -"automática" - -#: sfdb_ui.cc:129 sfdb_ui.cc:236 -#, fuzzy -msgid "Sound File Information" -msgstr "Informações" - -#: sfdb_ui.cc:141 -#, fuzzy -msgid "Timestamp:" -msgstr "Por instante de região" - -#: sfdb_ui.cc:143 -#, fuzzy -msgid "Format:" -msgstr "Formato" - #: sfdb_ui.cc:182 sfdb_ui.cc:526 msgid "Tags:" msgstr "" @@ -11731,31 +6083,6 @@ msgstr "" msgid "Search" msgstr "" -#: sfdb_ui.cc:449 -#, fuzzy -msgid "Audio and MIDI files" -msgstr "Quadros audio" - -#: sfdb_ui.cc:452 -#, fuzzy -msgid "Audio files" -msgstr "Quadros audio" - -#: sfdb_ui.cc:455 -#, fuzzy -msgid "MIDI files" -msgstr "Associação MIDI" - -#: sfdb_ui.cc:458 add_video_dialog.cc:132 -#, fuzzy -msgid "All files" -msgstr "ficheiros limpos" - -#: sfdb_ui.cc:477 add_video_dialog.cc:143 -#, fuzzy -msgid "Browse Files" -msgstr "Pesquisar" - #: sfdb_ui.cc:506 msgid "Paths" msgstr "Directórios" @@ -11764,26 +6091,6 @@ msgstr "Directórios" msgid "Search Tags" msgstr "" -#: sfdb_ui.cc:531 -#, fuzzy -msgid "Sort:" -msgstr "Ordenar" - -#: sfdb_ui.cc:539 -#, fuzzy -msgid "Longest" -msgstr "Enorme" - -#: sfdb_ui.cc:540 -#, fuzzy -msgid "Shortest" -msgstr "Curto" - -#: sfdb_ui.cc:541 -#, fuzzy -msgid "Newest" -msgstr "Mais lento" - #: sfdb_ui.cc:542 msgid "Oldest" msgstr "" @@ -11792,11 +6099,6 @@ msgstr "" msgid "Most downloaded" msgstr "" -#: sfdb_ui.cc:544 -#, fuzzy -msgid "Least downloaded" -msgstr "Iniciar intervalo" - #: sfdb_ui.cc:545 msgid "Highest rated" msgstr "" @@ -11813,31 +6115,6 @@ msgstr "" msgid "Similar" msgstr "" -#: sfdb_ui.cc:567 -#, fuzzy -msgid "ID" -msgstr "E" - -#: sfdb_ui.cc:568 add_video_dialog.cc:84 -#, fuzzy -msgid "Filename" -msgstr "Renomear" - -#: sfdb_ui.cc:570 -#, fuzzy -msgid "Duration" -msgstr "Duração (seg)" - -#: sfdb_ui.cc:571 -#, fuzzy -msgid "Size" -msgstr "Tamanho máximo" - -#: sfdb_ui.cc:572 -#, fuzzy -msgid "Samplerate" -msgstr "Frequência de amostragem" - #: sfdb_ui.cc:573 msgid "License" msgstr "" @@ -11884,99 +6161,24 @@ msgstr "" msgid "MB" msgstr "" -#: sfdb_ui.cc:1086 -#, fuzzy -msgid "GB" -msgstr "Ir" - #: sfdb_ui.cc:1298 sfdb_ui.cc:1606 sfdb_ui.cc:1656 sfdb_ui.cc:1674 msgid "one track per file" msgstr "" -#: sfdb_ui.cc:1301 sfdb_ui.cc:1657 sfdb_ui.cc:1675 -#, fuzzy -msgid "one track per channel" -msgstr "panorama para o canal %u" - -#: sfdb_ui.cc:1309 sfdb_ui.cc:1659 sfdb_ui.cc:1676 -#, fuzzy -msgid "sequence files" -msgstr "ficheiros limpos" - #: sfdb_ui.cc:1312 sfdb_ui.cc:1664 msgid "all files in one track" msgstr "" -#: sfdb_ui.cc:1313 sfdb_ui.cc:1658 -#, fuzzy -msgid "merge files" -msgstr "ficheiros limpos" - -#: sfdb_ui.cc:1319 sfdb_ui.cc:1661 -#, fuzzy -msgid "one region per file" -msgstr "preencher região" - -#: sfdb_ui.cc:1322 sfdb_ui.cc:1662 -#, fuzzy -msgid "one region per channel" -msgstr "Criar uma região para cada canal" - -#: sfdb_ui.cc:1327 sfdb_ui.cc:1663 sfdb_ui.cc:1677 -#, fuzzy -msgid "all files in one region" -msgstr "alinhar região" - #: sfdb_ui.cc:1394 msgid "" "One or more of the selected files\n" "cannot be used by %1" msgstr "" -#: sfdb_ui.cc:1534 -#, fuzzy -msgid "Copy files to session" -msgstr "Copiar ficheiro para o directório de sessão" - -#: sfdb_ui.cc:1551 sfdb_ui.cc:1714 -#, fuzzy -msgid "file timestamp" -msgstr "Por instante de região" - -#: sfdb_ui.cc:1552 sfdb_ui.cc:1716 -#, fuzzy -msgid "edit point" -msgstr "Editar com" - -#: sfdb_ui.cc:1553 sfdb_ui.cc:1718 -#, fuzzy -msgid "playhead" -msgstr "Cursor de reprodução" - -#: sfdb_ui.cc:1554 -#, fuzzy -msgid "session start" -msgstr "Inícios de região" - #: sfdb_ui.cc:1559 msgid "Add files as ..." msgstr "" -#: sfdb_ui.cc:1581 -#, fuzzy -msgid "Insert at" -msgstr "Inverte" - -#: sfdb_ui.cc:1594 -#, fuzzy -msgid "Mapping" -msgstr "Avançado..." - -#: sfdb_ui.cc:1612 -#, fuzzy -msgid "Conversion quality" -msgstr "Qualidade de conversão" - #: sfdb_ui.cc:1624 sfdb_ui.cc:1730 msgid "Best" msgstr "" @@ -11993,16 +6195,6 @@ msgstr "" msgid "Fastest" msgstr "Mais rápido" -#: shuttle_control.cc:56 -#, fuzzy -msgid "Shuttle speed control (Context-click for options)" -msgstr "Controlo de velocidade" - -#: shuttle_control.cc:165 -#, fuzzy -msgid "Percent" -msgstr "Percentagem" - #: shuttle_control.cc:173 msgid "Units" msgstr "" @@ -12019,54 +6211,14 @@ msgstr "Roda" msgid "Maximum speed" msgstr "Velocidade máxima" -#: shuttle_control.cc:561 -#, fuzzy -msgid "Playing" -msgstr "Reprodução" - -#: shuttle_control.cc:576 -#, fuzzy, c-format -msgid "<<< %+d semitones" -msgstr "Semi-tons" - -#: shuttle_control.cc:578 -#, fuzzy, c-format -msgid ">>> %+d semitones" -msgstr "Semi-tons" - -#: shuttle_control.cc:583 -#, fuzzy -msgid "Stopped" -msgstr "Parar" - #: splash.cc:73 msgid "%1 loading ..." msgstr "" -#: speaker_dialog.cc:40 -#, fuzzy -msgid "Add Speaker" -msgstr "acrescentar marcador de região" - -#: speaker_dialog.cc:41 -#, fuzzy -msgid "Remove Speaker" -msgstr "remover marcador" - #: speaker_dialog.cc:63 msgid "Azimuth:" msgstr "" -#: startup.cc:72 -#, fuzzy -msgid "Create a new session" -msgstr "Iniciar uma nova sessão\n" - -#: startup.cc:73 -#, fuzzy -msgid "Open an existing session" -msgstr "Abrir sessão recente" - #: startup.cc:74 msgid "" "Use an external mixer or the hardware mixer of your audio interface.\n" @@ -12160,11 +6312,6 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:457 -#, fuzzy -msgid "Monitoring Choices" -msgstr "Monitorização" - #: startup.cc:480 msgid "Use a Master bus directly" msgstr "" @@ -12193,11 +6340,6 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:527 -#, fuzzy -msgid "Monitor Section" -msgstr "Monitorização" - #: startup.cc:573 msgid "Check the website for more..." msgstr "" @@ -12206,118 +6348,18 @@ msgstr "" msgid "Click to open the program website in your web browser" msgstr "" -#: startup.cc:729 -#, fuzzy -msgid "Open" -msgstr "Abrir" - -#: startup.cc:775 -#, fuzzy -msgid "Session name:" -msgstr "Novo nome de sessão:" - -#: startup.cc:798 -#, fuzzy -msgid "Create session folder in:" -msgstr "Criar directório de sessão em :" - -#: startup.cc:821 -#, fuzzy -msgid "Select folder for session" -msgstr "Seleccionar regiões" - -#: startup.cc:853 -#, fuzzy -msgid "Use this template" -msgstr "seleccionar modelo" - -#: startup.cc:856 -#, fuzzy -msgid "no template" -msgstr "-modelo" - -#: startup.cc:884 -#, fuzzy -msgid "Use an existing session as a template:" -msgstr "Usar modelo de sessão" - -#: startup.cc:896 -#, fuzzy -msgid "Select template" -msgstr "seleccionar modelo" - #: startup.cc:922 msgid "New Session" msgstr "Nova sessão" -#: startup.cc:1077 -#, fuzzy -msgid "Select session file" -msgstr "seleccionar sessão" - -#: startup.cc:1093 -#, fuzzy -msgid "Browse:" -msgstr "Pesquisar" - -#: startup.cc:1102 -#, fuzzy -msgid "Select a session" -msgstr "seleccionar sessão" - #: startup.cc:1129 startup.cc:1130 startup.cc:1131 msgid "channels" msgstr "canais" -#: startup.cc:1145 -#, fuzzy -msgid "Busses" -msgstr "Barramentos" - -#: startup.cc:1146 -#, fuzzy -msgid "Inputs" -msgstr "Faixas/Barramentos de entrada" - -#: startup.cc:1147 -#, fuzzy -msgid "Outputs" -msgstr "Faixas/Barramentos de saída" - -#: startup.cc:1155 -#, fuzzy -msgid "Create master bus" -msgstr "Criar barramento para VUímetro" - -#: startup.cc:1165 -#, fuzzy -msgid "Automatically connect to physical inputs" -msgstr "Ligar entradas automaticamente" - #: startup.cc:1172 startup.cc:1231 msgid "Use only" msgstr "" -#: startup.cc:1225 -#, fuzzy -msgid "Automatically connect outputs" -msgstr "Ligar saídas automaticamente" - -#: startup.cc:1247 -#, fuzzy -msgid "... to master bus" -msgstr "Ligar ao barramento principal" - -#: startup.cc:1257 -#, fuzzy -msgid "... to physical outputs" -msgstr "Ligar às saídas físicas" - -#: startup.cc:1307 -#, fuzzy -msgid "Advanced Session Options" -msgstr "Opções avançadas" - #: step_entry.cc:59 msgid "Step Entry: %1" msgstr "" @@ -12374,11 +6416,6 @@ msgstr "" msgid "Set note length to a sixteenth note" msgstr "" -#: step_entry.cc:195 -#, fuzzy -msgid "Set note length to a thirty-second note" -msgstr "Ajustar aos 30 segundos" - #: step_entry.cc:196 msgid "Set note length to a sixty-fourth note" msgstr "" @@ -12479,66 +6516,26 @@ msgstr "" msgid "Octave" msgstr "" -#: step_entry.cc:597 -#, fuzzy -msgid "Insert Note A" -msgstr "Inserir selecção" - #: step_entry.cc:598 msgid "Insert Note A-sharp" msgstr "" -#: step_entry.cc:599 -#, fuzzy -msgid "Insert Note B" -msgstr "Inserir selecção" - -#: step_entry.cc:600 -#, fuzzy -msgid "Insert Note C" -msgstr "Inserir selecção" - #: step_entry.cc:601 msgid "Insert Note C-sharp" msgstr "" -#: step_entry.cc:602 -#, fuzzy -msgid "Insert Note D" -msgstr "Inserir selecção" - #: step_entry.cc:603 msgid "Insert Note D-sharp" msgstr "" -#: step_entry.cc:604 -#, fuzzy -msgid "Insert Note E" -msgstr "Inserir selecção" - -#: step_entry.cc:605 -#, fuzzy -msgid "Insert Note F" -msgstr "Inserir selecção" - #: step_entry.cc:606 msgid "Insert Note F-sharp" msgstr "" -#: step_entry.cc:607 -#, fuzzy -msgid "Insert Note G" -msgstr "Inserir selecção" - #: step_entry.cc:608 msgid "Insert Note G-sharp" msgstr "" -#: step_entry.cc:610 -#, fuzzy -msgid "Insert a Note-length Rest" -msgstr "Inserir selecção" - #: step_entry.cc:611 msgid "Insert a Snap-length Rest" msgstr "" @@ -12555,16 +6552,6 @@ msgstr "" msgid "Move to Previous Note Length" msgstr "" -#: step_entry.cc:619 -#, fuzzy -msgid "Increase Note Length" -msgstr "alterar duração de desvanecimento" - -#: step_entry.cc:620 -#, fuzzy -msgid "Decrease Note Length" -msgstr "alterar duração de desvanecimento" - #: step_entry.cc:622 msgid "Move to Next Note Velocity" msgstr "" @@ -12633,11 +6620,6 @@ msgstr "" msgid "Set Note Length to 1/2" msgstr "" -#: step_entry.cc:647 -#, fuzzy -msgid "Set Note Length to 1/3" -msgstr "alterar duração de desvanecimento" - #: step_entry.cc:649 msgid "Set Note Length to 1/4" msgstr "" @@ -12706,11 +6688,6 @@ msgstr "" msgid "Toggled Triple-Dotted Notes" msgstr "" -#: step_entry.cc:692 -#, fuzzy -msgid "Toggle Chord Entry" -msgstr "Comutador de gravação Faixa 1" - #: step_entry.cc:694 msgid "Sustain Selected Notes by Note Length" msgstr "" @@ -12724,11 +6701,6 @@ msgstr "" msgid "Stereo Panner" msgstr "" -#: stereo_panner_editor.cc:49 -#, fuzzy -msgid "Width" -msgstr "largura" - #: strip_silence_dialog.cc:48 msgid "Strip Silence" msgstr "" @@ -12737,11 +6709,6 @@ msgstr "" msgid "Minimum length" msgstr "" -#: strip_silence_dialog.cc:87 -#, fuzzy -msgid "Fade length" -msgstr "Evanescimento" - #: tempo_dialog.cc:43 tempo_dialog.cc:58 msgid "bar:" msgstr "" @@ -12750,58 +6717,6 @@ msgstr "" msgid "beat:" msgstr "" -#: tempo_dialog.cc:45 tempo_dialog.cc:60 -#, fuzzy -msgid "Pulse note" -msgstr "ficheiro eliminado" - -#: tempo_dialog.cc:55 -#, fuzzy -msgid "Edit Tempo" -msgstr "Editar com" - -#: tempo_dialog.cc:76 tempo_dialog.cc:77 tempo_dialog.cc:282 -#: tempo_dialog.cc:283 -#, fuzzy -msgid "whole" -msgstr "inteira (1)" - -#: tempo_dialog.cc:78 tempo_dialog.cc:79 tempo_dialog.cc:284 -#: tempo_dialog.cc:285 -#, fuzzy -msgid "second" -msgstr "1 segundo" - -#: tempo_dialog.cc:80 tempo_dialog.cc:81 tempo_dialog.cc:286 -#: tempo_dialog.cc:287 -#, fuzzy -msgid "third" -msgstr "terça (3)" - -#: tempo_dialog.cc:82 tempo_dialog.cc:83 tempo_dialog.cc:288 -#: tempo_dialog.cc:289 -#, fuzzy -msgid "quarter" -msgstr "quarta (4)" - -#: tempo_dialog.cc:84 tempo_dialog.cc:85 tempo_dialog.cc:290 -#: tempo_dialog.cc:291 -#, fuzzy -msgid "eighth" -msgstr "Altura" - -#: tempo_dialog.cc:86 tempo_dialog.cc:87 tempo_dialog.cc:292 -#: tempo_dialog.cc:293 -#, fuzzy -msgid "sixteenth" -msgstr "hexodécima (16)" - -#: tempo_dialog.cc:88 tempo_dialog.cc:89 tempo_dialog.cc:294 -#: tempo_dialog.cc:295 -#, fuzzy -msgid "thirty-second" -msgstr "trigésima-segunda (32)" - #: tempo_dialog.cc:90 tempo_dialog.cc:91 tempo_dialog.cc:296 #: tempo_dialog.cc:297 msgid "sixty-fourth" @@ -12812,45 +6727,10 @@ msgstr "" msgid "one-hundred-twenty-eighth" msgstr "" -#: tempo_dialog.cc:120 -#, fuzzy -msgid "Beats per minute:" -msgstr "Batimentos por minuto" - #: tempo_dialog.cc:152 msgid "Tempo begins at" msgstr "" -#: tempo_dialog.cc:240 -#, fuzzy -msgid "incomprehensible pulse note type (%1)" -msgstr "tipo de nota imcompreensível (%1)" - -#: tempo_dialog.cc:266 -#, fuzzy -msgid "Edit Meter" -msgstr "Modo de edição" - -#: tempo_dialog.cc:314 -#, fuzzy -msgid "Note value:" -msgstr "Valor para o campo:" - -#: tempo_dialog.cc:315 -#, fuzzy -msgid "Beats per bar:" -msgstr "Batimentos por compasso" - -#: tempo_dialog.cc:330 -#, fuzzy -msgid "Meter begins at bar:" -msgstr "Denominador métrico" - -#: tempo_dialog.cc:441 -#, fuzzy -msgid "incomprehensible meter note type (%1)" -msgstr "tipo de nota imcompreensível (%1)" - #: theme_manager.cc:57 msgid "Dark Theme" msgstr "" @@ -12859,11 +6739,6 @@ msgstr "" msgid "Light Theme" msgstr "" -#: theme_manager.cc:59 -#, fuzzy -msgid "Restore Defaults" -msgstr "Resultados" - #: theme_manager.cc:60 msgid "Draw \"flat\" buttons" msgstr "" @@ -12872,11 +6747,6 @@ msgstr "" msgid "All floating windows are dialogs" msgstr "" -#: theme_manager.cc:62 -#, fuzzy -msgid "Draw waveforms with color gradient" -msgstr "Mostrar regiões de automatização" - #: theme_manager.cc:68 msgid "Object" msgstr "Objecto" @@ -12897,13 +6767,6 @@ msgstr "" msgid "Track/Bus name (double click to edit)" msgstr "" -#: time_axis_view_item.cc:332 -#, fuzzy -msgid "new duration %1 frame is out of bounds for %2" -msgid_plural "new duration of %1 frames is out of bounds for %2" -msgstr[0] "nova duração de %1 quadros fora dos limites para %2" -msgstr[1] "nova duração de %1 quadros fora dos limites para %2" - #: time_fx_dialog.cc:62 msgid "Quick but Ugly" msgstr "Rápido e feio" @@ -12912,20 +6775,10 @@ msgstr "Rápido e feio" msgid "Skip Anti-aliasing" msgstr "Ignorar anti-aliasing" -#: time_fx_dialog.cc:64 -#, fuzzy -msgid "Contents:" -msgstr "Comentários" - #: time_fx_dialog.cc:65 msgid "Minimize time distortion" msgstr "" -#: time_fx_dialog.cc:66 -#, fuzzy -msgid "Preserve Formants" -msgstr "Formato nativo" - #: time_fx_dialog.cc:71 msgid "TimeFXDialog" msgstr "" @@ -12934,25 +6787,10 @@ msgstr "" msgid "Pitch Shift Audio" msgstr "" -#: time_fx_dialog.cc:76 -#, fuzzy -msgid "Time Stretch Audio" -msgstr "alongamento temporal" - #: time_fx_dialog.cc:104 transpose_dialog.cc:41 msgid "Octaves:" msgstr "" -#: time_fx_dialog.cc:109 transpose_dialog.cc:46 -#, fuzzy -msgid "Semitones:" -msgstr "Semi-tons" - -#: time_fx_dialog.cc:114 -#, fuzzy -msgid "Cents:" -msgstr "Comentários" - #: time_fx_dialog.cc:122 msgid "Time|Shift" msgstr "" @@ -12961,11 +6799,6 @@ msgstr "" msgid "TimeFXButton" msgstr "" -#: time_fx_dialog.cc:154 -#, fuzzy -msgid "Stretch/Shrink" -msgstr "Alongar/estreitar" - #: time_fx_dialog.cc:164 msgid "Progress" msgstr "" @@ -12982,25 +6815,10 @@ msgstr "Parar gravação na posição final de inserção automática" msgid "programming error: request for non-existent audio range (%1)!" msgstr "" -#: transpose_dialog.cc:30 -#, fuzzy -msgid "Transpose MIDI" -msgstr "Transporte" - -#: transpose_dialog.cc:55 -#, fuzzy -msgid "Transpose" -msgstr "Transporte" - #: ui_config.cc:82 ui_config.cc:113 msgid "Loading default ui configuration file %1" msgstr "" -#: ui_config.cc:85 ui_config.cc:116 -#, fuzzy -msgid "cannot read default ui configuration file \"%1\"" -msgstr "não foi possível abrir o ficheiro de definição de cores %1: %2" - #: ui_config.cc:90 ui_config.cc:121 msgid "default ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -13009,11 +6827,6 @@ msgstr "" msgid "Loading user ui configuration file %1" msgstr "" -#: ui_config.cc:137 -#, fuzzy -msgid "cannot read ui configuration file \"%1\"" -msgstr "não foi possível abrir o ficheiro de definição de cores %1: %2" - #: ui_config.cc:142 msgid "user ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -13038,11 +6851,6 @@ msgstr "" msgid "cannot find XPM file for %1" msgstr "" -#: utils.cc:617 -#, fuzzy -msgid "cannot find icon image for %1 using %2" -msgstr "não foi possível estabelecer receptor de sinal %1" - #: utils.cc:632 msgid "Caught exception while loading icon named %1" msgstr "" @@ -13051,16 +6859,6 @@ msgstr "" msgid "VerboseCanvasCursor" msgstr "" -#: add_video_dialog.cc:55 -#, fuzzy -msgid "Set Video Track" -msgstr "Acrescentar faixa/barramento audio" - -#: add_video_dialog.cc:63 -#, fuzzy -msgid "Launch External Video Monitor" -msgstr "Monitorização externa" - #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -13073,26 +6871,6 @@ msgstr "" msgid "VideoServerIndex" msgstr "" -#: add_video_dialog.cc:129 -#, fuzzy -msgid "Video files" -msgstr "Quadros audio" - -#: add_video_dialog.cc:164 -#, fuzzy -msgid "Video Information" -msgstr "Informações" - -#: add_video_dialog.cc:167 -#, fuzzy -msgid "Start:" -msgstr "Início:" - -#: add_video_dialog.cc:173 -#, fuzzy -msgid "Frame rate:" -msgstr "Frequência de amostragem" - #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -13138,11 +6916,6 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" -#: video_monitor.cc:281 -#, fuzzy -msgid "Video Monitor: File Not Found." -msgstr "Monitorização" - #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -13159,25 +6932,10 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:56 -#, fuzzy -msgid "Transcode/Import Video File " -msgstr "Exportar sessão para ficheiro audio..." - -#: transcode_video_dialog.cc:58 -#, fuzzy -msgid "Output File:" -msgstr "Saída" - #: transcode_video_dialog.cc:61 export_video_dialog.cc:73 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:63 -#, fuzzy -msgid "Height = " -msgstr "Altura" - #: transcode_video_dialog.cc:66 msgid "Manual Override" msgstr "" @@ -13186,11 +6944,6 @@ msgstr "" msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:107 -#, fuzzy -msgid "File Information" -msgstr "Informações" - #: transcode_video_dialog.cc:113 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " @@ -13208,11 +6961,6 @@ msgstr "" msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:136 -#, fuzzy -msgid "Duration:" -msgstr "Duração (seg)" - #: transcode_video_dialog.cc:138 msgid "Codec:" msgstr "" @@ -13225,11 +6973,6 @@ msgstr "" msgid "??" msgstr "" -#: transcode_video_dialog.cc:176 -#, fuzzy -msgid "Import Settings" -msgstr "Opções" - #: transcode_video_dialog.cc:181 msgid "Do Not Import Video" msgstr "" @@ -13238,11 +6981,6 @@ msgstr "" msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:184 -#, fuzzy -msgid "Import/Transcode Video to Session" -msgstr "Exportar região" - #: transcode_video_dialog.cc:198 msgid "Scale Video: Width = " msgstr "" @@ -13255,16 +6993,6 @@ msgstr "" msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:225 -#, fuzzy -msgid "Extract Audio:" -msgstr "Exportar região" - -#: transcode_video_dialog.cc:345 -#, fuzzy -msgid "Extracting Audio.." -msgstr "Exportar região" - #: transcode_video_dialog.cc:348 msgid "Audio Extraction Failed." msgstr "" @@ -13277,11 +7005,6 @@ msgstr "" msgid "Transcoding Failed." msgstr "" -#: transcode_video_dialog.cc:491 -#, fuzzy -msgid "Save Transcoded Video File" -msgstr "Exportar sessão para ficheiro audio..." - #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -13309,16 +7032,6 @@ msgstr "" msgid "Listen Address:" msgstr "" -#: video_server_dialog.cc:125 -#, fuzzy -msgid "Listen Port:" -msgstr "Posição" - -#: video_server_dialog.cc:130 -#, fuzzy -msgid "Cache Size:" -msgstr "Tamanho máximo" - #: video_server_dialog.cc:136 msgid "" "%1 relies on an external Video Server for the videotimeline.\n" @@ -13348,31 +7061,6 @@ msgstr "" msgid "Continue" msgstr "" -#: utils_videotl.cc:63 -#, fuzzy -msgid "Confirm Overwrite" -msgstr "aGrav" - -#: utils_videotl.cc:64 -#, fuzzy -msgid "A file with the same name already exists. Do you want to overwrite it?" -msgstr "O ficheiro já existe, deseja reescrevê-lo ?" - -#: utils_videotl.cc:74 utils_videotl.cc:90 -#, fuzzy -msgid "Cannot create video folder \"%1\" (%2)" -msgstr "não foi possível estabelecer-se como processo principal de grupo (%1)" - -#: export_video_dialog.cc:66 -#, fuzzy -msgid "Export Video File " -msgstr "Exportar sessão para ficheiro audio..." - -#: export_video_dialog.cc:70 -#, fuzzy -msgid "Video:" -msgstr "Alinhar regiões pelo início" - #: export_video_dialog.cc:74 msgid "Scale Video (W x H):" msgstr "" @@ -13381,11 +7069,6 @@ msgstr "" msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:80 -#, fuzzy -msgid "Normalize Audio" -msgstr "Normalizar" - #: export_video_dialog.cc:81 msgid "2 Pass Encoding" msgstr "" @@ -13394,11 +7077,6 @@ msgstr "" msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:84 -#, fuzzy -msgid "Deinterlace" -msgstr "interno" - #: export_video_dialog.cc:85 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" @@ -13407,11 +7085,6 @@ msgstr "" msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:87 -#, fuzzy -msgid "Include Session Metadata" -msgstr "Importar selecção" - #: export_video_dialog.cc:107 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " @@ -13419,26 +7092,6 @@ msgid "" "information." msgstr "" -#: export_video_dialog.cc:117 -#, fuzzy -msgid "Output:" -msgstr "Faixas/Barramentos de saída" - -#: export_video_dialog.cc:127 -#, fuzzy -msgid "Input:" -msgstr "Faixas/Barramentos de entrada" - -#: export_video_dialog.cc:138 -#, fuzzy -msgid "Audio:" -msgstr "Audição" - -#: export_video_dialog.cc:140 -#, fuzzy -msgid "Master Bus" -msgstr "Criar barramento para VUímetro" - #: export_video_dialog.cc:145 msgid "from the %1 session's start to the session's end" msgstr "" @@ -13451,61 +7104,6 @@ msgstr "" msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:184 -#, fuzzy -msgid "Settings:" -msgstr "Avançado..." - -#: export_video_dialog.cc:192 -#, fuzzy -msgid "Range:" -msgstr "Intervalo" - -#: export_video_dialog.cc:195 -#, fuzzy -msgid "Preset:" -msgstr "Reiniciar" - -#: export_video_dialog.cc:198 -#, fuzzy -msgid "Video Codec:" -msgstr "Nome do directório:" - -#: export_video_dialog.cc:201 -#, fuzzy -msgid "Video KBit/s:" -msgstr "Alinhar regiões pelo início" - -#: export_video_dialog.cc:204 -#, fuzzy -msgid "Audio Codec:" -msgstr "Quadros audio" - -#: export_video_dialog.cc:207 -#, fuzzy -msgid "Audio KBit/s:" -msgstr "Quadros audio" - -#: export_video_dialog.cc:210 -#, fuzzy -msgid "Audio Samplerate:" -msgstr "Frequência de amostragem" - -#: export_video_dialog.cc:387 -#, fuzzy -msgid "Normalizing audio" -msgstr "Normalizar" - -#: export_video_dialog.cc:391 -#, fuzzy -msgid "Exporting audio" -msgstr "Exportar região" - -#: export_video_dialog.cc:437 -#, fuzzy -msgid "Exporting Audio..." -msgstr "Exportar região" - #: export_video_dialog.cc:494 msgid "" "Export Video: Cannot query duration of video-file, using duration from " @@ -13536,16 +7134,6 @@ msgstr "" msgid "Transcoding failed." msgstr "" -#: export_video_dialog.cc:948 export_video_dialog.cc:968 -#, fuzzy -msgid "Save Exported Video File" -msgstr "Exportar sessão para ficheiro audio..." - -#: export_video_infobox.cc:30 -#, fuzzy -msgid "Video Export Info" -msgstr "Monitorização" - #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -13562,1995 +7150,3 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" - -#, fuzzy -#~ msgid "slowest" -#~ msgstr "Mais lento" - -#, fuzzy -#~ msgid "fast" -#~ msgstr "rápido" - -#, fuzzy -#~ msgid "faster" -#~ msgstr "Rápido" - -#~ msgid "fastest" -#~ msgstr "rápido" - -#~ msgid "Connect" -#~ msgstr "Ligar" - -#~ msgid "Add Audio Track" -#~ msgstr "Acrescentar faixa/barramento audio" - -#~ msgid "Add Audio Bus" -#~ msgstr "Acrescentar barramento audio" - -#, fuzzy -#~ msgid "Add MIDI Track" -#~ msgstr "Acrescentar faixa/barramento audio" - -#, fuzzy -#~ msgid "Control surfaces" -#~ msgstr "Mesas de controlo" - -#, fuzzy -#~ msgid "Hid" -#~ msgstr "Esconder" - -#~ msgid "Locate to Range Mark" -#~ msgstr "Localizar no marcador de intervalo" - -#~ msgid "Play from Range Mark" -#~ msgstr "Reproduzir desde marcador de intervalo" - -#, fuzzy -#~ msgid "Channel:" -#~ msgstr "Canais" - -#, fuzzy -#~ msgid "Lck" -#~ msgstr "Bloquear" - -#, fuzzy -#~ msgid "Use overlap equivalency for regions" -#~ msgstr "estabelecer selecção desde a região" - -#, fuzzy -#~ msgid "could not create a new mixed track" -#~ msgstr "não foi possível criar uma nova faixa audio" - -#, fuzzy -#~ msgid "could not create new audio bus" -#~ msgid_plural "could not create %1 new audio busses" -#~ msgstr[0] "não foi possível criar uma nova faixa audio" -#~ msgstr[1] "não foi possível criar uma nova faixa audio" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were not in use and \n" -#~ "have been moved to: %2\n" -#~ "\n" -#~ "After a restart of %5\n" -#~ "\n" -#~ "Session -> Clean-up -> Flush Wastebasket\n" -#~ "\n" -#~ "will release an additional %3 %4bytes of disk space.\n" -#~ msgstr "" -#~ "O(s) seguinte(s) %1 %2 encontrado(s) em desuso\n" -#~ "e automaticamente removido(s) para:\n" -#~ "%3. \n" -#~ "\n" -#~ "Serão libertados %3 %4bytes de espaço em disco.\n" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were deleted from %2,\n" -#~ "releasing %3 %4bytes of disk space" -#~ msgstr "" -#~ "O(s) seguinte(s) %1 %2 eliminado(s) de\n" -#~ "%3,\n" -#~ "libertando %3 %4bytes de espaço em disco." - -#, fuzzy -#~ msgid "could only create %1 of %2 new audio %3" -#~ msgstr "não foi possível criar um novo barramento audio" - -#, fuzzy -#~ msgid "Always Play Range Selection (if any)" -#~ msgstr "Reproduzir selecção" - -#~ msgid "Start playback after any locate" -#~ msgstr "Iniciar a reprodução após qualquer localização" - -#, fuzzy -#~ msgid "Always Play Range" -#~ msgstr "Reproduzir intervalo" - -#, fuzzy -#~ msgid "Select/Move Objects" -#~ msgstr "seleccionar/mover objectos" - -#, fuzzy -#~ msgid "Select/Move Ranges" -#~ msgstr "seleccionar/mover intervalos" - -#, fuzzy -#~ msgid "Link Object / Range Tools" -#~ msgstr "Ferramenta/objecto" - -#, fuzzy -#~ msgid "editing|E" -#~ msgstr "Editar com" - -#, fuzzy -#~ msgid "Sharing Editing?" -#~ msgstr "Número de canais" - -#, fuzzy -#~ msgid "Disable plugins during recording" -#~ msgstr "Não executar efeitos/plug-ins durante a gravação" - -#, fuzzy -#~ msgid "Visual|Interface" -#~ msgstr "Interno" - -#, fuzzy -#~ msgid "Editing" -#~ msgstr "Editar com" - -#, fuzzy -#~ msgid "Timecode Offset Negative" -#~ msgstr "Deslocamento SMPTE negativo" - -#, fuzzy -#~ msgid "Crossfades are created" -#~ msgstr "Desvanecimentos cruzados em uso" - -#, fuzzy -#~ msgid "to span entire overlap" -#~ msgstr "Abranger toda a sobreposição" - -#, fuzzy -#~ msgid "use existing region fade shape" -#~ msgstr "Usar modelo de sessão" - -#, fuzzy -#~ msgid "Short crossfade length" -#~ msgstr "Desvanecimento cruzado de curta duração (msegs)" - -#, fuzzy -#~ msgid "Create crossfades automatically" -#~ msgstr "Criado automaticamente" - -#, fuzzy -#~ msgid "Add files:" -#~ msgstr "ficheiro eliminado" - -#, fuzzy -#~ msgid "%1 could not start JACK" -#~ msgstr "Não foi possível ligar ao serviço JACK." - -#, fuzzy -#~ msgid "" -#~ "There are several possible reasons:\n" -#~ "\n" -#~ "1) You requested audio parameters that are not supported..\n" -#~ "2) JACK is running as another user.\n" -#~ "\n" -#~ "Please consider the possibilities, and perhaps try different parameters." -#~ msgstr "" -#~ "Podem existir várias razões:\n" -#~ "\n" -#~ "1) O serviço JACK não se encontra activo.\n" -#~ "2) O serviço JACK encontra-se activo por outro utilizador, talvez root.\n" -#~ "3) Já se encontra activo outro client com o nome \"ardour\".\n" -#~ "\n" -#~ "Por favor, considere estas possibilidades e (re)inicie o serviço JACK." - -#, fuzzy -#~ msgid "Mixer" -#~ msgstr "Mostrar painel de mistura" - -#, fuzzy -#~ msgid "Show All Crossfades" -#~ msgstr "Mostrar todos os desvanecimentos cruzados" - -#, fuzzy -#~ msgid "Edit Crossfade" -#~ msgstr "Desvanecimento cruzado" - -#~ msgid "Out (dry)" -#~ msgstr "Saída (limpa)" - -#~ msgid "In (dry)" -#~ msgstr "Entrada (limpa)" - -#~ msgid "With Pre-roll" -#~ msgstr "Com pré-batimento" - -#~ msgid "With Post-roll" -#~ msgstr "Com pós-batimento" - -#, fuzzy -#~ msgid "Edit crossfade" -#~ msgstr "Editar desvanecimento" - -#, fuzzy -#~ msgid "Route Groups" -#~ msgstr "Grupos" - -#~ msgid "Unmute" -#~ msgstr "Desmudo" - -#, fuzzy -#~ msgid "Convert to Short" -#~ msgstr "Converter para curto" - -#, fuzzy -#~ msgid "Convert to Full" -#~ msgstr "Converter para todo" - -#, fuzzy -#~ msgid "Nudge Entire Track Backward" -#~ msgstr "Retocar toda a faixa p/frente" - -#, fuzzy -#~ msgid "Nudge Track After Edit Point Backward" -#~ msgstr "Retocar a faixa p/frente do cursor de edição" - -#, fuzzy -#~ msgid "Nudge Region/Selection Backwards" -#~ msgstr "Retocar região/selecção para trás" - -#~ msgid "Undo" -#~ msgstr "Desfazer" - -#~ msgid "Jump Forward to Mark" -#~ msgstr "Saltar marcador p/frente" - -#~ msgid "Jump Backward to Mark" -#~ msgstr "Saltar marcador p/trás" - -#~ msgid "Nudge Next Backward" -#~ msgstr "Retocar seguinte p/trás" - -#, fuzzy -#~ msgid "Forward to Grid" -#~ msgstr "Saltar marcador p/frente" - -#, fuzzy -#~ msgid "Backward to Grid" -#~ msgstr "Saltar marcador p/trás" - -#, fuzzy -#~ msgid "Add Range Marker(s)" -#~ msgstr "Acrescentar marcadores de intervalo" - -#, fuzzy -#~ msgid "Envelope Visible" -#~ msgstr "Comutar visibilidade de envolvente" - -#, fuzzy -#~ msgid "Nudge Backward by Capture Offset" -#~ msgstr "Retocar p/frente (gravação)" - -#, fuzzy -#~ msgid "Rel" -#~ msgstr "Estabelecer" - -#, fuzzy -#~ msgid "Sel" -#~ msgstr "Estabelecer" - -#, fuzzy -#~ msgid "region gain envelope visible" -#~ msgstr "Comutar visibilidade de envolvente" - -#, fuzzy -#~ msgid "time stretch" -#~ msgstr "alongamento temporal" - -#, fuzzy -#~ msgid "Input channels:" -#~ msgstr "canais" - -#, fuzzy -#~ msgid "Output channels:" -#~ msgstr "canais" - -#, fuzzy -#~ msgid "Advanced options" -#~ msgstr "Opções avançadas" - -#, fuzzy -#~ msgid "New From" -#~ msgstr "Nova cópia" - -#, fuzzy -#~ msgid "Option-" -#~ msgstr "Opções" - -#, fuzzy -#~ msgid "Control-" -#~ msgstr "Controlos" - -#, fuzzy -#~ msgid "Set value to playhead" -#~ msgstr "Seleccionar tudo após o cursor de reprodução" - -#, fuzzy -#~ msgid "End time" -#~ msgstr "Ponto final de corte" - -#, fuzzy -#~ msgid "Could not create user configuration directory" -#~ msgstr "não foi possível criar uma nova faixa audio" - -#~ msgid "signal" -#~ msgstr "sinal" - -#~ msgid "close" -#~ msgstr "fechar" - -#~ msgid "New send" -#~ msgstr "Novo envio" - -#~ msgid "New Send ..." -#~ msgstr "Novo envio..." - -#, fuzzy -#~ msgid "Controls..." -#~ msgstr "Controlos" - -#, fuzzy -#~ msgid "Quantize Type" -#~ msgstr "Tipo de ficheiro" - -#, fuzzy -#~ msgid "Secondary clock delta to edit cursor" -#~ msgstr "Do início ao cursor de edição" - -#, fuzzy -#~ msgid "Route active state" -#~ msgstr "estado de automatização" - -#, fuzzy -#~ msgid "Crossfades active" -#~ msgstr "Desvanecimentos cruzados em uso" - -#, fuzzy -#~ msgid "Layering model" -#~ msgstr "Nivelar" - -#, fuzzy -#~ msgid "later is higher" -#~ msgstr "Última em cima" - -#, fuzzy -#~ msgid "most recently moved or added is higher" -#~ msgstr "Movida/acrescentada recentemente em cima" - -#, fuzzy -#~ msgid "most recently added is higher" -#~ msgstr "Acrescentada recentemente em cima" - -#, fuzzy -#~ msgid "Broadcast WAVE metadata" -#~ msgstr "WAVE/vírgula flutuante (difusão)" - -#, fuzzy -#~ msgid "Page:" -#~ msgstr "Uso: " - -#~ msgid "second (2)" -#~ msgstr "segunda (2)" - -#~ msgid "eighth (8)" -#~ msgstr "octogésima (8)" - -#~ msgid "garbaged note type entry (%1)" -#~ msgstr "tipo de nota desconhecida (%1)" - -#~ msgid "" -#~ "pre\n" -#~ "roll" -#~ msgstr "" -#~ "pré\n" -#~ "batimento" - -#~ msgid "" -#~ "post\n" -#~ "roll" -#~ msgstr "" -#~ "pós\n" -#~ "batimento" - -#~ msgid "" -#~ "time\n" -#~ "master" -#~ msgstr "" -#~ "tempo\n" -#~ "principal" - -#, fuzzy -#~ msgid "AUDITION" -#~ msgstr "AUDIÇÃO" - -#, fuzzy -#~ msgid "%.1f kHz / %4.1f ms" -#~ msgstr "FA: %.1f kHz / %4.1f msegs" - -#, fuzzy -#~ msgid "% kHz / %4.1f ms" -#~ msgstr "FA: %u kHz / %4.1f msegs" - -#, fuzzy -#~ msgid "DSP: %5.1f%%" -#~ msgstr "Carga DSP: %.1f%%" - -#, fuzzy -#~ msgid "Disk: 24hrs+" -#~ msgstr "espaço: 24hrs+" - -#, fuzzy -#~ msgid "Does %1 control the time?" -#~ msgstr "Controlo de tempo?" - -#, fuzzy -#~ msgid "External" -#~ msgstr "Interno" - -#~ msgid "automation" -#~ msgstr "automatização" - -#, fuzzy -#~ msgid "Delete Unused" -#~ msgstr "Eliminar com" - -#, fuzzy -#~ msgid "Solo/Mute" -#~ msgstr "Mudo" - -#~ msgid "Activate all" -#~ msgstr "Activar todos" - -#~ msgid "A track already exists with that name" -#~ msgstr "Já existe uma faixa com este nome" - -#, fuzzy -#~ msgid "layer-display" -#~ msgstr "Visualização" - -#, fuzzy -#~ msgid "Cancelling.." -#~ msgstr "Cancelar" - -#~ msgid "unknown track height name \"%1\" in XML GUI information" -#~ msgstr "" -#~ "altura de faixa desconhecida \"%1\" na informação XML para o interface " -#~ "gráfico (GUI)" - -#~ msgid "Off" -#~ msgstr "Desligado" - -#~ msgid "Smaller" -#~ msgstr "Menor" - -#~ msgid "quit" -#~ msgstr "sair" - -#~ msgid "session" -#~ msgstr "sessão" - -#~ msgid "snapshot" -#~ msgstr "captura" - -#, fuzzy -#~ msgid "Save Mix Template" -#~ msgstr "Guardar modelo..." - -#~ msgid "Clean Up" -#~ msgstr "Limpeza" - -#~ msgid "Select semitones or %%-age for speed display" -#~ msgstr "Seleccionar semi-tons ou %%agem para visualização de velocidade" - -#~ msgid "Current transport speed" -#~ msgstr "Velocidade de transporte actual" - -#~ msgid "sprung" -#~ msgstr "mola" - -#~ msgid "wheel" -#~ msgstr "roda" - -#, fuzzy -#~ msgid "stop" -#~ msgstr "parado" - -#~ msgid "Cleanup" -#~ msgstr "Limpar" - -#, fuzzy -#~ msgid "DSP: 100.0%" -#~ msgstr "Carga DSP: %.1f%%" - -#~ msgid "Extend Range to End of Region" -#~ msgstr "Extender intervalo ao final da região" - -#~ msgid "Extend Range to Start of Region" -#~ msgstr "Extender intervalo ao início da região" - -#, fuzzy -#~ msgid "Key Mouse" -#~ msgstr "Teclado/Rato" - -#~ msgid "goto" -#~ msgstr "ir para" - -#, fuzzy -#~ msgid "Center Active Marker" -#~ msgstr "Remover marcador" - -#~ msgid "Brush at Mouse" -#~ msgstr "Varrer ao cursor do rato" - -#~ msgid "Bounce" -#~ msgstr "Regravar" - -#, fuzzy -#~ msgid "fixed time region copy" -#~ msgstr "Arrastar cópia de região" - -#, fuzzy -#~ msgid "region copy" -#~ msgstr "Arrastar cópia de região" - -#~ msgid "timestretch" -#~ msgstr "alongamento temporal" - -#~ msgid "extend selection" -#~ msgstr "extender selecção" - -#~ msgid "Clear tempo" -#~ msgstr "Apagar tempo" - -#~ msgid "Clear meter" -#~ msgstr "Apagar VUímetro" - -#, fuzzy -#~ msgid "Default Channel" -#~ msgstr "Separar canais" - -#~ msgid "input" -#~ msgstr "entrada" - -#, fuzzy -#~ msgid "Inserts, sends & plugins:" -#~ msgstr "Inserções, envios e efeitos/plug-ins pré-atenuador" - -#, fuzzy -#~ msgid "" -#~ "Do you really want to remove bus \"%1\" ?\n" -#~ "\n" -#~ "You may also lose the playlist used by this track.\n" -#~ "\n" -#~ "(This action cannot be undone, and the session file will be overwritten)" -#~ msgstr "" -#~ "Deseja realmente remover a faixa \"%1\" ?\n" -#~ "\n" -#~ "A lista de reprodução em uso para esta faixa pode ficar perdida.\n" -#~ "(esta operação não pode ser desfeita)" - -#, fuzzy -#~ msgid "insert file" -#~ msgstr "inserir ficheiro audio" - -#, fuzzy -#~ msgid "region drag" -#~ msgstr "Cortar região no intervalo" - -#~ msgid "Drag region brush" -#~ msgstr "Arrastar região" - -#~ msgid "selection grab" -#~ msgstr "arrastar selecção" - -#~ msgid "region fill" -#~ msgstr "preencher região" - -#~ msgid "fill selection" -#~ msgstr "preencher selecção" - -#~ msgid "duplicate region" -#~ msgstr "duplicar região" - -#~ msgid "link" -#~ msgstr "ligar" - -#~ msgid "panning link control" -#~ msgstr "controlo de ligação panorâmica" - -#~ msgid "panning link direction" -#~ msgstr "direcção de ligação panorâmica" - -#~ msgid "Reset all" -#~ msgstr "Reiniciar tudo" - -#, fuzzy -#~ msgid "Set tempo map" -#~ msgstr "mover marcador de tempo" - -#~ msgid "" -#~ "Ardour comes with ABSOLUTELY NO WARRANTY\n" -#~ "This is free software, and you are welcome to redistribute it\n" -#~ "under certain conditions; see the file COPYING for details.\n" -#~ msgstr "" -#~ "Ardour é fornecido ABSOLUTAMENTE SEM QUALQUER GARANTIA\n" -#~ "Sendo software livre, é permitida e até encorajada a sua distribuição\n" -#~ "desde que sejam respeitadas algumas condições;\n" -#~ "para mais informações, por favor leia o ficheiro COPYING.\n" - -#~ msgid "" -#~ "%1\n" -#~ "(built with ardour/gtk %2.%3.%4 libardour: %5.%6.%7)" -#~ msgstr "" -#~ "%1\n" -#~ "(compilado com ardour/gtk %2.%3.%4 libardour: %5.%6.%7)" - -#~ msgid "ardour: add track/bus" -#~ msgstr "ardour: acrescentar faixa/barramento" - -#~ msgid "Name (template)" -#~ msgstr "Nome (modelo)" - -#~ msgid "" -#~ "punch\n" -#~ "in" -#~ msgstr "" -#~ "início de\n" -#~ "inserção" - -#~ msgid "" -#~ "punch\n" -#~ "out" -#~ msgstr "" -#~ "final de\n" -#~ "inserção" - -#~ msgid "" -#~ "auto\n" -#~ "return" -#~ msgstr "" -#~ "retorno\n" -#~ "automático" - -#~ msgid "" -#~ "auto\n" -#~ "play" -#~ msgstr "" -#~ "reprodução\n" -#~ "automática" - -#~ msgid "click" -#~ msgstr "metrónomo" - -#~ msgid "ardour: save session?" -#~ msgstr "ardour: guardar sessão?" - -#~ msgid "open session" -#~ msgstr "abrir sessão" - -#~ msgid "Ardour sessions" -#~ msgstr "Sessões" - -#~ msgid "Patience is a virtue.\n" -#~ msgstr "A paciência é uma virtude.\n" - -#~ msgid "Unable to create all required ports" -#~ msgstr "Não foi possível criar todos os portos necessários" - -#~ msgid "No Stream" -#~ msgstr "Sem fluxo" - -#~ msgid "" -#~ "You do not have write access to this session.\n" -#~ "This prevents the session from being loaded." -#~ msgstr "" -#~ "A sessão não pode ser carregada devidamente\n" -#~ "por deficiência de acesso privilegiado de escrita." - -#~ msgid "ardour: cleanup" -#~ msgstr "ardour: limpeza" - -#~ msgid "files were" -#~ msgstr "ficheiros foram" - -#~ msgid "file was" -#~ msgstr "ficheiro foi" - -#~ msgid "ardour_cleanup" -#~ msgstr "ardour: limpeza" - -#~ msgid "Sound File Browser" -#~ msgstr "Audioteca" - -#~ msgid "KeyMouse Actions" -#~ msgstr "Acções teclado/rato" - -#~ msgid "Data" -#~ msgstr "Dados" - -#~ msgid "Export selection to audiofile..." -#~ msgstr "Exportar selecção para ficheiro audio..." - -#~ msgid "Export range markers to audiofile..." -#~ msgstr "Exportar intervalo para ficheiro audio..." - -#~ msgid "start prefix" -#~ msgstr "prefixo" - -#~ msgid "Track/Bus Inspector" -#~ msgstr "Faixas/barramentos" - -#~ msgid "Colors" -#~ msgstr "Cores" - -#~ msgid "" -#~ "Punch\n" -#~ "in" -#~ msgstr "" -#~ "início de\n" -#~ "inserção" - -#~ msgid "Toggle Record Enable Track2" -#~ msgstr "Comutador de gravação Faixa 2" - -#~ msgid "Toggle Record Enable Track3" -#~ msgstr "Comutador de gravação Faixa 3" - -#~ msgid "Toggle Record Enable Track4" -#~ msgstr "Comutador de gravação Faixa 4" - -#~ msgid "Toggle Record Enable Track5" -#~ msgstr "Comutador de gravação Faixa 5" - -#~ msgid "Toggle Record Enable Track6" -#~ msgstr "Comutador de gravação Faixa 6" - -#~ msgid "Toggle Record Enable Track7" -#~ msgstr "Comutador de gravação Faixa 7" - -#~ msgid "Toggle Record Enable Track8" -#~ msgstr "Comutador de gravação Faixa 8" - -#~ msgid "Toggle Record Enable Track9" -#~ msgstr "Comutador de gravação Faixa 9" - -#~ msgid "Toggle Record Enable Track10" -#~ msgstr "Comutador de gravação Faixa 10" - -#~ msgid "Toggle Record Enable Track11" -#~ msgstr "Comutador de gravação Faixa 11" - -#~ msgid "Toggle Record Enable Track12" -#~ msgstr "Comutador de gravação Faixa 12" - -#~ msgid "Toggle Record Enable Track13" -#~ msgstr "Comutador de gravação Faixa 13" - -#~ msgid "Toggle Record Enable Track14" -#~ msgstr "Comutador de gravação Faixa 14" - -#~ msgid "Toggle Record Enable Track15" -#~ msgstr "Comutador de gravação Faixa 15" - -#~ msgid "Toggle Record Enable Track16" -#~ msgstr "Comutador de gravação Faixa 16" - -#~ msgid "Toggle Record Enable Track17" -#~ msgstr "Comutador de gravação Faixa 17" - -#~ msgid "Toggle Record Enable Track18" -#~ msgstr "Comutador de gravação Faixa 18" - -#~ msgid "Toggle Record Enable Track19" -#~ msgstr "Comutador de gravação Faixa 19" - -#~ msgid "Toggle Record Enable Track20" -#~ msgstr "Comutador de gravação Faixa 20" - -#~ msgid "Toggle Record Enable Track21" -#~ msgstr "Comutador de gravação Faixa 21" - -#~ msgid "Toggle Record Enable Track22" -#~ msgstr "Comutador de gravação Faixa 22" - -#~ msgid "Toggle Record Enable Track23" -#~ msgstr "Comutador de gravação Faixa 23" - -#~ msgid "Toggle Record Enable Track24" -#~ msgstr "Comutador de gravação Faixa 24" - -#~ msgid "Toggle Record Enable Track25" -#~ msgstr "Comutador de gravação Faixa 25" - -#~ msgid "Toggle Record Enable Track26" -#~ msgstr "Comutador de gravação Faixa 26" - -#~ msgid "Toggle Record Enable Track27" -#~ msgstr "Comutador de gravação Faixa 27" - -#~ msgid "Toggle Record Enable Track28" -#~ msgstr "Comutador de gravação Faixa 28" - -#~ msgid "Toggle Record Enable Track29" -#~ msgstr "Comutador de gravação Faixa 29" - -#~ msgid "Toggle Record Enable Track30" -#~ msgstr "Comutador de gravação Faixa 30" - -#~ msgid "Toggle Record Enable Track31" -#~ msgstr "Comutador de gravação Faixa 31" - -#~ msgid "Toggle Record Enable Track32" -#~ msgstr "Comutador de gravação Faixa 32" - -#~ msgid "Connect new track outputs to hardware" -#~ msgstr "Ligar saídas de faixas novas automaticamente" - -#~ msgid "Manually connect new track outputs" -#~ msgstr "Ligar saídas de faixas novas manualmente" - -#~ msgid "Hardware monitoring" -#~ msgstr "Monitorização física" - -#~ msgid "Software monitoring" -#~ msgstr "Monitorização lógica" - -#~ msgid "Automatically create crossfades" -#~ msgstr "Criar desvanecimentos cruzados automaticamente" - -#~ msgid "Unmute new full crossfades" -#~ msgstr "Desmutar desvanecimentos cruzados novos" - -#~ msgid "Display Height" -#~ msgstr "Altura" - -#~ msgid "Show waveforms" -#~ msgstr "Mostrar formas de onda" - -#~ msgid "a track already exists with that name" -#~ msgstr "já existe uma faixa com este nome" - -#~ msgid "gain" -#~ msgstr "ganho" - -#~ msgid "pan" -#~ msgstr "panorama" - -#~ msgid "Current: %1" -#~ msgstr "Actual: %1" - -#~ msgid "clear track" -#~ msgstr "apagar faixa" - -#~ msgid "pixbuf" -#~ msgstr "imagem" - -#~ msgid "the pixbuf" -#~ msgstr "a imagem" - -#~ msgid "the width" -#~ msgstr "a largura" - -#~ msgid "drawwidth" -#~ msgstr "largura visível" - -#~ msgid "drawn width" -#~ msgstr "largura visível" - -#~ msgid "height" -#~ msgstr "altura" - -#~ msgid "anchor" -#~ msgstr "referência" - -#~ msgid "the anchor" -#~ msgstr "a referência" - -#~ msgid "ardour: x-fade edit" -#~ msgstr "ardour: desvanecimento cruzado" - -#~ msgid "SMPTE Frames" -#~ msgstr "Quadros SMPTE" - -#~ msgid "Edit Cursor" -#~ msgstr "Cursor de edição" - -#~ msgid "object" -#~ msgstr "objecto" - -#~ msgid "listen" -#~ msgstr "ouvir" - -#~ msgid "Zoom out" -#~ msgstr "Zoom (-)" - -#~ msgid "Visible" -#~ msgstr "Visível" - -#~ msgid "Chunks" -#~ msgstr "Trechos" - -#~ msgid "Popup region editor" -#~ msgstr "Editor de região" - -#~ msgid "Analyze region" -#~ msgstr "Analizar região" - -#~ msgid "DeNormalize" -#~ msgstr "Denormalizar" - -#~ msgid "Nudge fwd" -#~ msgstr "Retocar p/frente" - -#~ msgid "Nudge bwd" -#~ msgstr "Retocar p/trás" - -#~ msgid "Nudge bwd by capture offset" -#~ msgstr "Retocar p/trás (gravação)" - -#~ msgid "Edit cursor to end" -#~ msgstr "Do cursor de edição ao final" - -#~ msgid "Destroy" -#~ msgstr "Destruir" - -#~ msgid "Loop range" -#~ msgstr "Intervalo cíclico" - -#~ msgid "Select all in range" -#~ msgstr "Seleccionar todo intervalo" - -#~ msgid "Duplicate range" -#~ msgstr "Duplicar intervalo" - -#~ msgid "Create chunk from range" -#~ msgstr "Criar trecho desde intervalo" - -#~ msgid "Bounce range" -#~ msgstr "Regravar intervalo" - -#~ msgid "Export range" -#~ msgstr "Exportar intervalo" - -#~ msgid "Select all before playhead" -#~ msgstr "Seleccionar tudo antes do cursor de reprodução" - -#~ msgid "Select all between cursors" -#~ msgstr "Seleccionar tudo entre cursores" - -#~ msgid "Paste at edit cursor" -#~ msgstr "Colar no cursor de edição" - -#~ msgid "Paste at mouse" -#~ msgstr "Colar no cursor do rato" - -#~ msgid "Insert chunk" -#~ msgstr "Inserir trecho" - -#~ msgid "Nudge entire track bwd" -#~ msgstr "Retocar toda a faixa p/trás" - -#~ msgid "Nudge track after edit cursor bwd" -#~ msgstr "Retocar a faixa p/trás do cursor de edição" - -#~ msgid "draw gain automation" -#~ msgstr "desenhar automatização de ganho" - -#~ msgid "... as new region" -#~ msgstr "... como região nova" - -#~ msgid "Import audio (copy)" -#~ msgstr "Importar audio (copiar)" - -#~ msgid "Duplicate how many times?" -#~ msgstr "Duplicar quantas vezes?" - -#~ msgid "Move edit cursor" -#~ msgstr "Mover cursor de edição" - -#~ msgid "ZoomFocus" -#~ msgstr "Zoom (focagem)" - -#~ msgid "Edit Cursor to Next Region Start" -#~ msgstr "Edição ao início da próxima região" - -#~ msgid "Edit Cursor to Next Region End" -#~ msgstr "Edição ao final da próxima região" - -#~ msgid "Edit Cursor to Next Region Sync" -#~ msgstr "Edição sincronizada com a próxima região" - -#~ msgid "Edit Cursor to Previous Region Start" -#~ msgstr "Edição ao início da região anterior" - -#~ msgid "Edit Cursor to Previous Region End" -#~ msgstr "Edição ao final da região anterior" - -#~ msgid "Edit Cursor to Previous Region Sync" -#~ msgstr "Edição sincronizada com região anterior" - -#~ msgid "Edit Cursor to Range Start" -#~ msgstr "Edição no início do intervalo" - -#~ msgid "Edit Cursor to Range End" -#~ msgstr "Edição no final do intervalo" - -#~ msgid "Select All Between Cursors" -#~ msgstr "Seleccionar tudo entre cursores" - -#~ msgid "Add Location from Playhead" -#~ msgstr "Acrescentar localização no cursor de reprodução" - -#~ msgid "Center Edit Cursor" -#~ msgstr "Centrar cursor de edição" - -#~ msgid "Edit to Playhead" -#~ msgstr "Cursor de edição p/reprodução" - -#~ msgid "Align Regions End" -#~ msgstr "Alinhar regiões pelo final" - -#~ msgid "Align Regions End Relative" -#~ msgstr "Alinhar regiões pelo início (relativamente)" - -#~ msgid "Align Regions Sync Relative" -#~ msgstr "Alinhar regiões sincronizadas (relativamente)" - -#~ msgid "Mute/Unmute Region" -#~ msgstr "Comutar região" - -#~ msgid "Duplicate Region" -#~ msgstr "Duplicar região" - -#~ msgid "crop" -#~ msgstr "cortar" - -#~ msgid "Insert Chunk" -#~ msgstr "Inserir trecho" - -#~ msgid "Snap to SMPTE frame" -#~ msgstr "Ajustar ao quadro (SMPTE)" - -#~ msgid "Snap to SMPTE seconds" -#~ msgstr "Ajustar ao segundo (SMPTE)" - -#~ msgid "Snap to SMPTE minutes" -#~ msgstr "Ajustar ao minuto (SMPTE)" - -#~ msgid "Add External Audio" -#~ msgstr "Acrescentar audio externo" - -#~ msgid "Show Waveforms" -#~ msgstr "Mostrar formas de onda" - -#~ msgid "Show Waveforms While Recording" -#~ msgstr "Mostrar formas de onda enquanto grava" - -#~ msgid "Add existing audio to session" -#~ msgstr "Acrescenter audio existente à sessão" - -#~ msgid "ardour: importing %1" -#~ msgstr "ardour: em importação %1" - -#~ msgid "" -#~ "There is no selection to export.\n" -#~ "\n" -#~ "Select a selection using the range mouse mode" -#~ msgstr "" -#~ "Não existe qualquer selecção para exportar.\n" -#~ "\n" -#~ "Seleccione algo com o modo de intervalo" - -#~ msgid "" -#~ "There are no ranges to export.\n" -#~ "\n" -#~ "Create 1 or more ranges by dragging the mouse in the range bar" -#~ msgstr "" -#~ "Não existe qualquer intervalo para exportar.\n" -#~ "\n" -#~ "Seleccione um ou mais por arraste na barra de intervalos" - -#~ msgid "keyboard selection" -#~ msgstr "selecção de teclado" - -#~ msgid "Hide Mark" -#~ msgstr "Esconder marcador" - -#~ msgid "ardour: rename mark" -#~ msgstr "ardour: renomear marcador" - -#~ msgid "ardour: rename range" -#~ msgstr "ardour: renomear intervalo" - -#~ msgid "select on click" -#~ msgstr "seleccionar com metrónomo" - -#~ msgid "cancel selection" -#~ msgstr "cancelar selecção" - -#~ msgid "move selection" -#~ msgstr "mover selecção" - -#~ msgid "" -#~ " This is destructive, will possibly delete audio files\n" -#~ "It cannot be undone\n" -#~ "Do you really want to destroy %1 ?" -#~ msgstr "" -#~ " Esta operação é destrutiva,\n" -#~ "irá possivelmente eliminar ficheiros audio,\n" -#~ "não podendo ser desfeita\n" -#~ "Tem a certeza que pretende destruir %1 ?" - -#~ msgid "this region" -#~ msgstr "esta região" - -#~ msgid "Yes, destroy them." -#~ msgstr "Sim, elimine-as." - -#~ msgid "select all between cursors" -#~ msgstr "seleccionar tudo entre cursores" - -#~ msgid "Place the edit cursor at the desired sync point" -#~ msgstr "Coloque o cursor de edição sobre o ponto de sincronia desejado" - -#~ msgid "set sync from edit cursor" -#~ msgstr "sincronizar pelo cursor de edição" - -#~ msgid "naturalize" -#~ msgstr "naturalizar" - -#~ msgid "ardour: freeze" -#~ msgstr "ardour: congelamento" - -#~ msgid "paste chunk" -#~ msgstr "colar trecho" - -#~ msgid "clear playlist" -#~ msgstr "limpar lista de reprodução" - -#~ msgid "Name for Chunk:" -#~ msgstr "Nome para o trecho:" - -#~ msgid "Create Chunk" -#~ msgstr "Criar trecho" - -#~ msgid "Forget it" -#~ msgstr "Esquecer" - -#~ msgid "ardour: timestretch" -#~ msgstr "ardour: alongamento temporal" - -#~ msgid "best" -#~ msgstr "excelente" - -#~ msgid "intermediate" -#~ msgstr "intermédio" - -#~ msgid "CD Marker File Type" -#~ msgstr "Tipo de marcadores CD" - -#~ msgid "Sample Endianness" -#~ msgstr "Representação binária" - -#~ msgid "Export CD Marker File Only" -#~ msgstr "Exportar marcadores CD apenas" - -#~ msgid "Specific tracks ..." -#~ msgstr "Faixas específicas ..." - -#~ msgid "ardour: export" -#~ msgstr "ardour: exportar" - -#~ msgid "Editor: cannot open \"%1\" as export file for CD toc file" -#~ msgstr "" -#~ "Editor: não foi possível abrir o ficheiro \"%1\" para exportação de " -#~ "marcadores CD (TOC)" - -#~ msgid "Editor: cannot open \"%1\" as export file for CD cue file" -#~ msgstr "" -#~ "Editor: não foi possível abrir o ficheiro \"%1\" para exportação de " -#~ "marcadores CD (CUE)" - -#~ msgid "Please enter a valid filename." -#~ msgstr "Por favor, entre um nome de ficheiro válido" - -#~ msgid "Please specify a complete filename for the audio file." -#~ msgstr "Por favor, especifique um nome completo para o ficheiro audio" - -#~ msgid "Cannot write file in: " -#~ msgstr "Não foi possível escrever o ficheiro em: " - -#~ msgid "Please enter a valid target directory." -#~ msgstr "Por favor, entre um directório de destino válido." - -#~ msgid "" -#~ "Please select an existing target directory. Files\n" -#~ "are not allowed!" -#~ msgstr "" -#~ "Por favor, seleccione um directório de destino existente.\n" -#~ "Não são permitidos ficheiros!" - -#~ msgid "add gain automation event" -#~ msgstr "acrescentar evento de automatização de ganho" - -#~ msgid "Image Compositor Socket has been shutdown/closed" -#~ msgstr "A ligação ao compositor de imagem foi desligada/fechada" - -#~ msgid "0.5 seconds" -#~ msgstr "0.5 segundos" - -#~ msgid "1.5 seconds" -#~ msgstr "1.5 segundos" - -#~ msgid "2 seconds" -#~ msgstr "2 segundos" - -#~ msgid "2.5 seconds" -#~ msgstr "2.5 segundos" - -#~ msgid "3 seconds" -#~ msgstr "3 segundos" - -#~ msgid "Remove Frame" -#~ msgstr "Remover quadro" - -#~ msgid "Image Frame" -#~ msgstr "Quadro de imagem" - -#~ msgid "Add Input" -#~ msgstr "Acrescentar entrada" - -#~ msgid "Add Output" -#~ msgstr "Acrescentar saída" - -#~ msgid "Remove Input" -#~ msgstr "Remover entrada" - -#~ msgid "Disconnect All" -#~ msgstr "Desligar tudo" - -#~ msgid "Available connections" -#~ msgstr "Ligações disponíveis" - -#~ msgid "You have %1 keys bound to \"mod1\"" -#~ msgstr "Existem %1 teclas associadas a \"mod1\"" - -#~ msgid "You have %1 keys bound to \"mod2\"" -#~ msgstr "Existem %1 teclas associadas a \"mod2\"" - -#~ msgid "You have %1 keys bound to \"mod3\"" -#~ msgstr "Existem %1 teclas associadas a \"mod3\"" - -#~ msgid "You have %1 keys bound to \"mod4\"" -#~ msgstr "Existem %1 teclas associadas a \"mod4\"" - -#~ msgid "You have %1 keys bound to \"mod5\"" -#~ msgstr "Existem %1 teclas associadas a \"mod5\"" - -#~ msgid "Add New Location" -#~ msgstr "Adicionar nova localização" - -#~ msgid "ardour: locations" -#~ msgstr "ardour: localizações" - -#~ msgid "Location (CD Index) Markers" -#~ msgstr "Marcadores de localização (índice CD)" - -#~ msgid "ardour is killing itself for a clean exit\n" -#~ msgstr "ardour entrou em auto-destruição para sair em beleza\n" - -#~ msgid "stopping user interface\n" -#~ msgstr "interface de utilizador em fase terminal\n" - -#~ msgid "%d(%d): received signal %d\n" -#~ msgstr "%d(%d): sinal %d recebido\n" - -#~ msgid "cannot set default signal mask (%1)" -#~ msgstr "não foi possível estabelecer máscara de sinal %1" - -#~ msgid "" -#~ "Without a UI style file, ardour will look strange.\n" -#~ " Please set ARDOUR3_UI_RC to point to a valid UI style file" -#~ msgstr "" -#~ "O Ardour vai parecer estranho sem um ficheiro\n" -#~ "de estilo visual para o interface de utilizador.\n" -#~ "Por favor, indique um ficheiro válido em ARDOUR_UI_RC" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "A session named \"%1\" already exists.\n" -#~ "To avoid this message, start ardour as \"ardour %1" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Já existe uma sessão denominada \"%1\".\n" -#~ "Para evitar esta mensagem, inicie ardour como \"ardour %1\"" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "No session named \"%1\" exists.\n" -#~ "To create it from the command line, start ardour as \"ardour --new %1" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Não existe nenhuma sessão denominada \"%1\".\n" -#~ "Para a criar desde a linha de comando, inicie ardour como \"ardour --new " -#~ "%1\"" - -#~ msgid " with libardour " -#~ msgstr " com libardour " - -#~ msgid "Could not connect to JACK server as \"%1\"" -#~ msgstr "Não foi possível ligar ao serviço JACK como \"%1\"" - -#~ msgid "ardour: meter bridge" -#~ msgstr "ardour: VUímetro" - -#~ msgid "# of %u-sample overs" -#~ msgstr "# de %u-quadros" - -#~ msgid "New Name for Meter:" -#~ msgstr "Novo nome para o VUímetro:" - -#~ msgid "Varispeed" -#~ msgstr "Velocidade variável" - -#~ msgid "unknown strip width \"%1\" in XML GUI information" -#~ msgstr "" -#~ "largura de painel desconhecida \"%1\" na informação XML para o interface " -#~ "gráfico (GUI)" - -#~ msgid "*comments*" -#~ msgstr "*comentários*" - -#~ msgid "could not register new ports required for that connection" -#~ msgstr "" -#~ "não foi possível criar os portos necessários para efectuar a ligação" - -#~ msgid " Input" -#~ msgstr " Entrada" - -#~ msgid "Invert Polarity" -#~ msgstr "Inverter polaridade" - -#~ msgid "ardour: mixer" -#~ msgstr "ardour: mistura" - -#~ msgid "ardour: mixer: " -#~ msgstr "ardour: mistura: " - -#~ msgid "Port Limit" -#~ msgstr "Limite de portos" - -#~ msgid "Open Session File :" -#~ msgstr "Abrir sessão :" - -#~ msgid "ardour: session control" -#~ msgstr "ardour: controlo de sessão" - -#~ msgid "select directory" -#~ msgstr "seleccionar directório" - -#~ msgid "ardour: options editor" -#~ msgstr "ardour: opções" - -#~ msgid "Paths/Files" -#~ msgstr "Directórios/Ficheiros" - -#~ msgid "Layers & Fades" -#~ msgstr "Níveis & Desvanecimentos" - -#~ msgid "session RAID path" -#~ msgstr "directório RAID de sessão" - -#~ msgid "Soundfile Search Paths" -#~ msgstr "Directórios da audioteca" - -#~ msgid "SMPTE Frames/second" -#~ msgstr "Quadros SMPTE/segundo" - -#~ msgid "SMPTE Offset" -#~ msgstr "Deslocamento SMPTE" - -#~ msgid "online" -#~ msgstr "ligado" - -#~ msgid "offline" -#~ msgstr "desligado" - -#~ msgid "" -#~ "The auditioner is a dedicated mixer strip used\n" -#~ "for listening to specific regions outside the context\n" -#~ "of the overall mix. It can be connected just like any\n" -#~ "other mixer strip." -#~ msgstr "" -#~ "O auditor é um painel de mistura dedicado usado\n" -#~ "para a escuta de determinadas regiões fora do contexto\n" -#~ "da mistura geral. Pode ser interligado tal como\n" -#~ "qualquer outro painel de mistura." - -#~ msgid " -g, --gtktheme Allow GTK to load a theme\n" -#~ msgstr "" -#~ " -g, --gtktheme Permitir que o GTK carregue um aspecto " -#~ "visual\n" - -#~ msgid "You can't graphically edit panning of more than stream" -#~ msgstr "" -#~ "Não é possível alterar gráficamente a panorâmica deste conjunto de canais" - -#~ msgid "add pan automation event" -#~ msgstr "acrescentar evento de automatização de panorâmica" - -#~ msgid "panner for channel %lu" -#~ msgstr "panorama para o canal %lu" - -#~ msgid "ardour: playlists" -#~ msgstr "ardour: listas de reprodução" - -#~ msgid "ardour: playlist for " -#~ msgstr "ardour: listas de reprodução para " - -#~ msgid "ardour: plugins" -#~ msgstr "ardour: efeitos/plug-ins" - -#~ msgid "Available LADSPA Plugins" -#~ msgstr "Efeitos/plug-ins LADSPA disponíveis" - -#~ msgid "# Inputs" -#~ msgstr "No.Entradas" - -#~ msgid "# Outputs" -#~ msgstr "No.Saídas" - -#~ msgid "redirect automation created for non-plugin" -#~ msgstr "" -#~ "automatização de re-encaminhamento criado para um não-efeito/plug-in" - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "The plugin has %2 inputs\n" -#~ "but at the insertion point, there are\n" -#~ "%3 active signal streams.\n" -#~ "\n" -#~ "This makes no sense - you are throwing away\n" -#~ "part of the signal." -#~ msgstr "" -#~ "Foi tentado acrescentar um efeito/plug-in (%1).\n" -#~ "O efeito/plug-in tem %2 entradas, mas\n" -#~ "o ponto de inserção tem %3 canais activos.\n" -#~ "\n" -#~ "Não faz sentido deitar fora parte do sinal." - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "The plugin has %2 inputs\n" -#~ "but at the insertion point there are\n" -#~ "only %3 active signal streams.\n" -#~ "\n" -#~ "This makes no sense - unless the plugin supports\n" -#~ "side-chain inputs. A future version of Ardour will\n" -#~ "support this type of configuration." -#~ msgstr "" -#~ "Foi tentado acrescentar um efeito/plug-in (%1).\n" -#~ "O efeito/plug-in tem %2 entradas, mas no ponto\n" -#~ "de inserção somente existem %3 canais activos.\n" -#~ "\n" -#~ "Não faz sentido deitar fora parte do sinal,\n" -#~ "a menos que o efeito/plug-in suporte entradas\n" -#~ "à parte. Uma futura versão do Ardour poderá viar\n" -#~ "a suportar este tipo de configuração." - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "\n" -#~ "The I/O configuration doesn't make sense:\n" -#~ "\n" -#~ "The plugin has %2 inputs and %3 outputs.\n" -#~ "The track/bus has %4 inputs and %5 outputs.\n" -#~ "The insertion point, has %6 active signals.\n" -#~ "\n" -#~ "Ardour does not understand what to do in such situations.\n" -#~ msgstr "" -#~ "Foi tentado acrescentar um efeito/plug-in (%1).\n" -#~ "\n" -#~ "No entanto, a configuração de entradas/saídas\n" -#~ "não faz qualquer sentido.\n" -#~ "\n" -#~ "O efeito/plug-in tem %2 entradas e %3 saídas,\n" -#~ "a faixa/barramento tem %4 entradas e %5 saídas,\n" -#~ "e no ponto de inserção existem %3 canais activos.\n" -#~ "\n" -#~ "Não é possível determinar o que fazer nestas situações.\n" - -#~ msgid "Post-fader inserts, sends & plugins:" -#~ msgstr "Inserções, envios e efeitos/plug-ins pós-atenuador" - -#~ msgid "rename redirect" -#~ msgstr "renomear redireccionamento" - -#~ msgid "" -#~ "Do you really want to remove all redirects from this track?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Deseja realmente remover todos os redireccionamentos para esta faixa?\n" -#~ "(esta operação não pode ser desfeita)" - -#~ msgid "NAME:" -#~ msgstr "Nome:" - -#~ msgid "visible" -#~ msgstr "visível" - -#~ msgid "play" -#~ msgstr "reproduzir" - -#~ msgid "ENVELOPE" -#~ msgstr "Envolvente" - -#~ msgid "regions underneath this one cannot be heard" -#~ msgstr "regiões abaixo desta não poderão ser ouvidas" - -#~ msgid "prevent any changes to this region" -#~ msgstr "evitar qualquer alteração nesta região" - -#~ msgid "use the gain envelope during playback" -#~ msgstr "usar a envolvente de ganho durante a reprodução" - -#~ msgid "show the gain envelope" -#~ msgstr "mostrar a curva de envolvente de ganho" - -#~ msgid "use fade in curve during playback" -#~ msgstr "usar curva de evanescimento durante a reprodução" - -#~ msgid "use fade out curve during playback" -#~ msgstr "usar curva de desvanecimento durante a reprodução" - -#~ msgid "START:" -#~ msgstr "Início:" - -#~ msgid "END:" -#~ msgstr "Final:" - -#~ msgid "LENGTH:" -#~ msgstr "Tamanho:" - -#~ msgid "FADE IN" -#~ msgstr "Evanescer" - -#~ msgid "FADE OUT" -#~ msgstr "Desvanecer" - -#~ msgid "ardour: region " -#~ msgstr "ardour: região" - -#~ msgid "Post-fader Redirects" -#~ msgstr "Encaminhamentos pós-atenuador" - -#~ msgid "ardour: track/bus inspector" -#~ msgstr "ardour: faixa/barramento" - -#~ msgid "ardour: track/bus/inspector: no route selected" -#~ msgstr "ardour: faixa/baramento: nenhum caminho seleccionado" - -#~ msgid "mix group solo change" -#~ msgstr "grupo solo alterado" - -#~ msgid "mix group mute change" -#~ msgstr "grupo mudo alterado" - -#~ msgid "mix group rec-enable change" -#~ msgstr "grupo gravar alterado" - -#~ msgid "ardour: color selection" -#~ msgstr "ardor: selecção de cor" - -#~ msgid "New Name: " -#~ msgstr "Novo nome: " - -#~ msgid "Add Field..." -#~ msgstr "Acrescentar campo..." - -#~ msgid "Name for Field" -#~ msgstr "Nome para a campo" - -#~ msgid "Embed" -#~ msgstr "Integrar" - -#~ msgid "Link to an external file" -#~ msgstr "Ligar a ficheiro audio externo" - -#~ msgid "Bar" -#~ msgstr "Compasso" - -#~ msgid "Beat" -#~ msgstr "Batimento" - -#~ msgid "set selected regionview" -#~ msgstr "seleccionar visualização de região" - -#~ msgid "via Session menu" -#~ msgstr "via menu de Sessão" - -#~ msgid "Select a File" -#~ msgstr "Seleccionar tudo" - -#~ msgid "RECORD" -#~ msgstr "Gravar" - -#~ msgid "INPUT" -#~ msgstr "Entrada" - -#~ msgid "OUTPUT" -#~ msgstr "Saída" - -#~ msgid "Gain automation mode" -#~ msgstr "Modo de automatização de ganho" - -#~ msgid "Gain automation type" -#~ msgstr "Tipo de automatização de ganho" - -#~ msgid "gain automation state" -#~ msgstr "ponto de automatização de ganho" - -#~ msgid "pan automation state" -#~ msgstr "ponto de automatização de panorâmica" - -#~ msgid "REC" -#~ msgstr "Grav" - -#~ msgid "OUT" -#~ msgstr "Saída" - -#~ msgid "aplay" -#~ msgstr "aRepr" - -#~ msgid "no group" -#~ msgstr "sem grupo" - -#~ msgid "Disk r:%5.1f w:%5.1f MB/s" -#~ msgstr "Disco r:%5.1f w:%5.1f MB/s" - -#~ msgid "file" -#~ msgstr "ficheiro" - -#~ msgid "ardour cleanup" -#~ msgstr "ardour: limpeza" - -#~ msgid "close session" -#~ msgstr "fechar sessão" - -#~ msgid "SetCrossfadeModel" -#~ msgstr "Desvanecimento cruzado" - -#~ msgid "Play from" -#~ msgstr "Reproduzir desde" - -#~ msgid "FORMAT" -#~ msgstr "Formato" - -#~ msgid "CD MARKER FILE TYPE" -#~ msgstr "Tipo de ficheiro marcadores CD" - -#~ msgid "CHANNELS" -#~ msgstr "Canais" - -#~ msgid "FILE TYPE" -#~ msgstr "Tipo de ficheiro" - -#~ msgid "SAMPLE FORMAT" -#~ msgstr "Formato de amostra" - -#~ msgid "SAMPLE ENDIANNESS" -#~ msgstr "Representação binária" - -#~ msgid "SAMPLE RATE" -#~ msgstr "Frequência de amostragem" - -#~ msgid "CONVERSION QUALITY" -#~ msgstr "Qualidade de conversão" - -#~ msgid "DITHER TYPE" -#~ msgstr "Tipo de extrapolação" - -#~ msgid "EXPORT CD MARKER FILE ONLY" -#~ msgstr "Tipo de ficheiro marcadores CD" - -#~ msgid "EXPORT TO FILE" -#~ msgstr "Exportar para ficheiro" - -#~ msgid "ardour: unplugged" -#~ msgstr "ardour: desligado" - -#~ msgid "To be added" -#~ msgstr "A serem acrescentados" - -#~ msgid "Update" -#~ msgstr "Actualizar" - -#~ msgid "save" -#~ msgstr "guardar" - -#~ msgid "bypass" -#~ msgstr "ignorar" - -#~ msgid "Name for plugin settings:" -#~ msgstr "Nome para configuração de efeito/plug-in:" - -#~ msgid "spring" -#~ msgstr "saltar" - -#~ msgid "" -#~ "follow\n" -#~ "PH" -#~ msgstr "" -#~ "acompanhar\n" -#~ "c.reprod." - -#~ msgid "rescan" -#~ msgstr "refrescar" - -#~ msgid "Session %1 already exists at %2" -#~ msgstr "Sessão %1 já existe em %2" - -#~ msgid "Enable/Disable follow playhead" -#~ msgstr "Ligar/Desligar acompanhamento ao cursor de reprodução" - -#~ msgid "Select sprung or wheel behaviour" -#~ msgstr "Seleccionar modo de salto ou de rolamento" - -#~ msgid "Image Compositor" -#~ msgstr "Compositor de imagem" - -#~ msgid "Audio Library" -#~ msgstr "Audioteca" - -#~ msgid "Output Connections" -#~ msgstr "Ligações de saída" - -#~ msgid "New Input" -#~ msgstr "Nova entrada" - -#~ msgid "New Output" -#~ msgstr "Nova saída" - -#~ msgid "in %d" -#~ msgstr "em %d" - -#~ msgid "crossfade editor" -#~ msgstr "alterar desvanescimento cruzado" - -#~ msgid "Regions/name" -#~ msgstr "Nome/regiões" - -#~ msgid "Edit:" -#~ msgstr "Editar:" - -#~ msgid "incorrectly formatted URI list, ignored" -#~ msgstr "lista de URIs mal formada, ignorada" - -#~ msgid "Embed audio (link)" -#~ msgstr "Intercalar audio (ligar)" - -#~ msgid "Cancel cleanup" -#~ msgstr "Cancelar limpeza" - -#~ msgid "Name for new edit group" -#~ msgstr "Nome para o novo grupo de edição" - -#~ msgid "ardour: audio import in progress" -#~ msgstr "ardour: importação audio em curso" - -#~ msgid "You can't embed an audiofile until you have a session loaded." -#~ msgstr "" -#~ "Não é possível intercalar um ficheiro audio sem que haja uma sessão " -#~ "carregada" - -#~ msgid "Insert selected as new tracks" -#~ msgstr "Inserir faxas seleccionadas como novas" - -#~ msgid "hidden" -#~ msgstr "esconder" - -#~ msgid "Regions/length" -#~ msgstr "Regiões/tamanho" - -#~ msgid "Regions/start" -#~ msgstr "Regiões/início" - -#~ msgid "Regions/end" -#~ msgstr "Regiões/final" - -#~ msgid "Regions/file name" -#~ msgstr "Regiões/nome de ficheiro" - -#~ msgid "Regions/file system" -#~ msgstr "Regiões/sistema de ficheiros" - -#~ msgid "Show All AbstractTracks" -#~ msgstr "Mostrar todas as faixas abstractas" - -#~ msgid "Hide All AbstractTracks" -#~ msgstr "Esconder todas as faixas abstractas" - -#~ msgid "KeyboardTarget: empty string passed to add_binding." -#~ msgstr "KeyboardTarget: combinação nula ou inválida." - -#~ msgid "KeyboardTarget: no translation found for \"%1\"" -#~ msgstr "KeyboardTarget: não existe tradução para \"%1\"" - -#~ msgid "KeyboardTarget: unknown action \"%1\"" -#~ msgstr "KeyboardTarget: acção desconhecida \"%1\"" - -#~ msgid "malformed binding node - ignored" -#~ msgstr "combinação mal formada - ignorada" - -#~ msgid "ardour: soundfile selector" -#~ msgstr "ardour: selecção de ficheiro audio" - -#~ msgid "Add to Library..." -#~ msgstr "Acrescentar à audioteca..." - -#~ msgid "Remove..." -#~ msgstr "Remover..." - -#~ msgid "Find..." -#~ msgstr "Procurar..." - -#~ msgid "Add Folder" -#~ msgstr "Acrescentar directório" - -#~ msgid "Add audio file or directory" -#~ msgstr "Acrescentar ficheiro ou directório" - -#~ msgid "Importing" -#~ msgstr "Em importação" - -#~ msgid "%1 not added to database" -#~ msgstr "%1 não foram acrescentados" - -#~ msgid "Should not be reached" -#~ msgstr "Não deve ser alcançada" - -#~ msgid "Find" -#~ msgstr "Procurar" - -#~ msgid "AND" -#~ msgstr "E" - -#~ msgid "ardour: locate soundfiles" -#~ msgstr "ardour: localizar ficheiros audio" - -#~ msgid "Uris" -#~ msgstr "URIs" - -#~ msgid "Create multi-channel region" -#~ msgstr "Criar região multi-canal" - -#~ msgid "Ardour: Search Results" -#~ msgstr "Ardour: Resultados da Procura" - -#~ msgid "Hide All AudioTrack MixerStrips" -#~ msgstr "Esconder painéis de mistura de todas as faixas audio" - -#~ msgid "Show All AudioBus MixerStrips" -#~ msgstr "Mostrar painéis de mistura de todos os barramentos audio" - -#~ msgid "Name for new mix group" -#~ msgstr "Nome para o novo grupo de mistura" - -#~ msgid "automatically connect track outputs to physical ports" -#~ msgstr "ligar saídas físicas automaticamente" - -#~ msgid "show again" -#~ msgstr "mostrar este diálogo novamente" - -#~ msgid "new session setup" -#~ msgstr "nova sessão" - -#~ msgid "This session will playback and record at %1 Hz" -#~ msgstr "Esta sessão irá reproduzir e gravar a %1 Hz" - -#~ msgid "" -#~ "This rate is set by JACK and cannot be changed.\n" -#~ "If you want to use a different sample rate\n" -#~ "please exit and restart JACK" -#~ msgstr "" -#~ "Esta frequência de amostragem é pré-estabelecida\n" -#~ "pelo serviço JACK e não pode ser alterada.\n" -#~ "Se pretende usar uma frequência de amostragem diferente\n" -#~ "terá de sair e reiniciar o serviço JACK" - -#~ msgid "blank" -#~ msgstr "vazio" - -#~ msgid "No template - create tracks/busses manually" -#~ msgstr "Sem modelo - criar faixas/barramentos manualmente" - -#~ msgid "Slave to MTC" -#~ msgstr "Escravo MTC" - -#~ msgid "Sync with JACK" -#~ msgstr "Sincronia JACK" - -#~ msgid "never used but stops crashes" -#~ msgstr "nunca usado mas evita problemas" - -#~ msgid "MIDI parameter control" -#~ msgstr "Controlo de parametros MIDI" - -#~ msgid "Debug keyboard events" -#~ msgstr "Depurar eventos programáticos de teclado" - -#~ msgid "--unknown--" -#~ msgstr "--desconhecido--" - -#~ msgid "outs" -#~ msgstr "saídas" - -#~ msgid "Select all" -#~ msgstr "Seleccionar tudo" - -#~ msgid "Post Redirects" -#~ msgstr "Pós-encaminhamentos" - -#~ msgid "Seamless Looping" -#~ msgstr "Ciclos imperceptíveis" - -#~ msgid "Recieve MMC" -#~ msgstr "Receber MMC" - -#~ msgid "Trace MIDI Input" -#~ msgstr "Rastrear entradas MIDI" - -#~ msgid "attempt to timestretch a non-audio track!" -#~ msgstr "tentativa de alongamento temporal duma faixa não-audio" - -#~ msgid "move region(s) between tracks" -#~ msgstr "Mover regiões entre faixas" - -#~ msgid "copy region(s) between tracks" -#~ msgstr "Copiar regiões entre faixas" - -#~ msgid "ardour: tempo editor" -#~ msgstr "ardour: edição de tempo" - -#~ msgid "apply" -#~ msgstr "aplicar" - -#~ msgid "fade" -#~ msgstr "desvanecimento" - -#~ msgid "Edit left" -#~ msgstr "Editar à esquerda" - -#~ msgid "Edit right" -#~ msgstr "Editar à direita" - -#~ msgid "add comments/notes here" -#~ msgstr "acrescentar comentários/notas aqui" - -#~ msgid "outside this computer" -#~ msgstr "fora deste computador" - -#~ msgid "inside this computer" -#~ msgstr "dentro deste computador" - -#~ msgid "Recorded audio is generated" -#~ msgstr "Gravação audio gerada" diff --git a/gtk2_ardour/po/ru.po b/gtk2_ardour/po/ru.po index 2ceaf3c1b0..ff6a51e8d8 100644 --- a/gtk2_ardour/po/ru.po +++ b/gtk2_ardour/po/ru.po @@ -12626,2523 +12626,3 @@ msgstr "" "#export.\n" "\n" "Открыть руководÑтво в браузере? " - -#~ msgid "Measure latency" -#~ msgstr "Измерить задержку" - -#~ msgid "Cancel measurement" -#~ msgstr "Отменить измерение" - -#~ msgid "Start MIDI ALSA/JACK bridge" -#~ msgstr "ЗапуÑтить Ñоединитель ALSA MIDI и JACK MIDI" - -#~ msgid "Starting audio engine" -#~ msgstr "ЗапуÑкаетÑÑ Ð·Ð²ÑƒÐºÐ¾Ð²Ð¾Ð¹ движок" - -#~ msgid "disconnected" -#~ msgstr "отÑоединено" - -#~ msgid "Unable to start the session running" -#~ msgstr "Ðевозможно запуÑтить уже выполнÑемый ÑеанÑ" - -#~ msgid "Click the Refresh button to try again." -#~ msgstr "Щёлкните кнопку «Обновить» Ð´Ð»Ñ Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€Ð½Ð¾Ð¹ попытки." - -#~ msgid "JACK" -#~ msgstr "JACK" - -#~ msgid "Reconnect" -#~ msgstr "ПереÑоединить" - -#~ msgid "JACK Sampling Rate and Latency" -#~ msgstr "ЧаÑтота ÑÑÐ¼Ð¿Ð»Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¸ задержка JACK" - -#~ msgid "Do not lock memory" -#~ msgstr "Ðе блокировать памÑть" - -#~ msgid "Unlock memory" -#~ msgstr "Разблокировать памÑть" - -#~ msgid "No zombies" -#~ msgstr "Без зомби" - -#~ msgid "Provide monitor ports" -#~ msgstr "ПредоÑтавить порты мониторинга" - -#~ msgid "H/W monitoring" -#~ msgstr "Ðппаратный мониторинг" - -#~ msgid "H/W metering" -#~ msgstr "Ðппаратный замер" - -#~ msgid "Verbose output" -#~ msgstr "Подробный вывод" - -#~ msgid "8000Hz" -#~ msgstr "8000 Гц" - -#~ msgid "22050Hz" -#~ msgstr "22,05 КГц" - -#~ msgid "44100Hz" -#~ msgstr "44,1 КГц" - -#~ msgid "48000Hz" -#~ msgstr "48 КГц" - -#~ msgid "88200Hz" -#~ msgstr "88,2 КГц" - -#~ msgid "96000Hz" -#~ msgstr "96 КГц" - -#~ msgid "192000Hz" -#~ msgstr "192КГц" - -#~ msgid "Triangular" -#~ msgstr "Треугольное" - -#~ msgid "Rectangular" -#~ msgstr "ПрÑмоугольное" - -#~ msgid "Shaped" -#~ msgstr "По очертаниÑм" - -#~ msgid "Playback/recording on 1 device" -#~ msgstr "ВоÑпроизведение и запиÑÑŒ на 1 уÑтройÑтве" - -#~ msgid "Playback/recording on 2 devices" -#~ msgstr "ВоÑпроизведение и запиÑÑŒ на 2 уÑтройÑтвах" - -#~ msgid "Playback only" -#~ msgstr "Только воÑпроизведение" - -#~ msgid "Recording only" -#~ msgstr "Только запиÑÑŒ" - -#~ msgid "Audio Interface:" -#~ msgstr "Звуковой интерфейÑ:" - -#~ msgid "Number of buffers:" -#~ msgstr "ЧиÑло буферов:" - -#~ msgid "Approximate latency:" -#~ msgstr "ÐŸÑ€Ð¸Ð¼ÐµÑ€Ð½Ð°Ñ Ð·Ð°Ð´ÐµÑ€Ð¶ÐºÐ°:" - -#~ msgid "Audio mode:" -#~ msgstr "Звуковой режим:" - -#~ msgid "Ignore" -#~ msgstr "Игнорировать" - -#~ msgid "Client timeout" -#~ msgstr "Ошибка времени Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ ÐºÐ»Ð¸ÐµÐ½Ñ‚Ð°" - -#~ msgid "Number of ports:" -#~ msgstr "ЧиÑло портов:" - -#~ msgid "MIDI driver:" -#~ msgstr "Драйвер MIDI:" - -#~ msgid "Dither:" -#~ msgstr "Подмешивание шума:" - -#~ msgid "" -#~ "No JACK server found anywhere on this system. Please install JACK and " -#~ "restart" -#~ msgstr "" -#~ "Сервер JACK в ÑиÑтеме не обнаружен. УÑтановить его и попробуйте Ñнова." - -#~ msgid "Server:" -#~ msgstr "Сервер:" - -#~ msgid "Input device:" -#~ msgstr "УÑтройÑтво входа:" - -#~ msgid "Output device:" -#~ msgstr "УÑтройÑтво выхода:" - -#~ msgid "Advanced" -#~ msgstr "Дополнительно" - -#~ msgid "No suitable audio devices" -#~ msgstr "Ðет подходÑщих звуковых уÑтройÑтв" - -#~ msgid "JACK appears to be missing from the %1 bundle" -#~ msgstr "JACK отÑутÑтвует в поÑтавке %1" - -#~ msgid "You need to choose an audio device first." -#~ msgstr "Ð”Ð»Ñ Ð½Ð°Ñ‡Ð°Ð»Ð° нужно выбрать звуковое уÑтройÑтво." - -#~ msgid "Audio device \"%1\" not known on this computer." -#~ msgstr "Звуковое уÑтройÑтво \"%1\" в Ñтом компьютере не обнаружено." - -#~ msgid "AudioSetup value for %1 is missing data" -#~ msgstr "Значению AudioSetup Ð´Ð»Ñ %1 не хватает данных" - -#~ msgid "" -#~ "There are several possible reasons:\n" -#~ "\n" -#~ "1) JACK is not running.\n" -#~ "2) JACK is running as another user, perhaps root.\n" -#~ "3) There is already another client called \"%1\".\n" -#~ "\n" -#~ "Please consider the possibilities, and perhaps (re)start JACK." -#~ msgstr "" -#~ "СущеÑтвует неÑколько возможных причин:\n" -#~ "\n" -#~ "1) Сервер JACK не запущен.\n" -#~ "2) Сервер JACK запущен Ñ Ð¿Ñ€Ð°Ð²Ð°Ð¼Ð¸ другого Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ â€” возможно, root.\n" -#~ "3) Уже ÑущеÑтвует клиент Ñервера JACK Ñ Ð¸Ð¼ÐµÐ½ÐµÐ¼ \"%1\".\n" -#~ "\n" -#~ "ПожалуйÑта, проверьте вÑе варианты; возможно потребуетÑÑ (пере)запуÑк " -#~ "JACK." - -#~ msgid "JACK exited" -#~ msgstr "JACk завершил работу" - -#~ msgid "Create a new session" -#~ msgstr "Ðачать новый ÑеанÑ" - -#~ msgid "Open an existing session" -#~ msgstr "Открыть ÑущеÑтвующий ÑеанÑ" - -#~ msgid "I'd like more options for this session" -#~ msgstr "Указать дополнительные параметры Ð´Ð»Ñ Ñтого ÑеанÑа" - -#~ msgid "Use an existing session as a template:" -#~ msgstr "ИÑпользовать ÑущеÑтвующий ÑÐµÐ°Ð½Ñ ÐºÐ°Ðº шаблон:" - -#~ msgid "Select template" -#~ msgstr "Выберите шаблон" - -#~ msgid "Browse:" -#~ msgstr "Обзор:" - -#~ msgid "Select a session" -#~ msgstr "Выберите ÑеанÑ" - -#~ msgid "Advanced Session Options" -#~ msgstr "Дополнительные параметры ÑеанÑа" - -#~ msgid "Change all in Group to RMS + Peak" -#~ msgstr "ПоменÑть вÑе в группе на Ñреднеквадратичное + пиковое" - -#~ msgid "Change all to RMS + Peak" -#~ msgstr "ПоменÑть вÑе на Ñреднеквадратичное + пиковое" - -#~ msgid "Change same track-type to RMS + Peak" -#~ msgstr "ПоменÑть дорожки одного типа на Ñреднеквадратичное + пиковое" - -#~ msgid "-24dB" -#~ msgstr "-24 Дб" - -#~ msgid "-15dB" -#~ msgstr "-15 Дб" - -#~ msgid "Enable Debug Mode: Print ffmpeg Command & Output to stdout." -#~ msgstr "Включить режим отладки: направлÑть вывод ffmpeg в stdout" - -#~ msgid "-Inf" -#~ msgstr "-Inf" - -#~ msgid "slowest" -#~ msgstr "Самое медленное" - -#~ msgid "slow" -#~ msgstr "Медленное" - -#~ msgid "fast" -#~ msgstr "БыÑтрое" - -#~ msgid "faster" -#~ msgstr "Ещё более быÑтрее" - -#~ msgid "fastest" -#~ msgstr "Скорейшее" - -#~ msgid "found %1 match" -#~ msgid_plural "found %1 matches" -#~ msgstr[0] "Ðайдено %1 Ñовпадение" -#~ msgstr[1] "Ðайдено %1 ÑовпадениÑ" -#~ msgstr[2] "Ðайдено %1 Ñовпадений" - -#~ msgid "Found %1 match" -#~ msgid_plural "Found %1 matches" -#~ msgstr[0] "Ðайдено %1 Ñовпадение" -#~ msgstr[1] "Ðайдено %1 ÑовпадениÑ" -#~ msgstr[2] "Ðайдено %1 Ñовпадений" - -#~ msgid "What would you like to do ?" -#~ msgstr "Что вы хотите Ñделать?" - -#~ msgid "Control surfaces" -#~ msgstr "УÑтройÑтва управлениÑ" - -#~ msgid "Use plugins' own interfaces instead of %1's" -#~ msgstr "" -#~ "По возможноÑти иÑпользовать ÑобÑтвенный Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ Ð¼Ð¾Ð´ÑƒÐ»ÐµÐ¹ вмеÑто " -#~ "интерфейÑа %1" - -#~ msgid "Connect" -#~ msgstr "Соединить" - -#~ msgid "Mixer on Top" -#~ msgstr "Микшер наверх" - -#~ msgid "Add Audio Track" -#~ msgstr "Добавить звуковую дорожку" - -#~ msgid "Add Audio Bus" -#~ msgstr "Добавить звуковую шину" - -#~ msgid "Add MIDI Track" -#~ msgstr "Добавить MIDI-дорожку" - -#~ msgid "Hid" -#~ msgstr "Скрытый" - -#~ msgid "Searching Page %1 of %2, click Stop to cancel" -#~ msgstr "ПоиÑк на Ñтранице %1 из %2, нажмите «Стоп» Ð´Ð»Ñ Ð¾Ñтановки" - -#~ msgid "Use a monitor bus (allows AFL/PFL and more control)" -#~ msgstr "" -#~ "ИÑпользовать шину мониторинга (больше контролÑ, можно иÑпользовать AFL/" -#~ "PFL )" - -#~ msgid "Lck" -#~ msgstr "Блок" - -#~ msgid "Use overlap equivalency for regions" -#~ msgstr "ИÑпользовать Ñквивалент Ð¿ÐµÑ€ÐµÐºÑ€Ñ‹Ñ‚Ð¸Ñ Ð´Ð»Ñ Ð¾Ð±Ð»Ð°Ñтей" - -#~ msgid "Translations disabled" -#~ msgstr "Ð›Ð¾ÐºÐ°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð°" - -#~ msgid "You must restart %1 for this to take effect." -#~ msgstr "Ðеобходимо перезапуÑтить %1 Ð´Ð»Ñ ÑƒÑ‡Ñ‘Ñ‚Ð° изменений." - -#~ msgid "Enable Translations" -#~ msgstr "ИÑпользовать локализованный интерфейÑ" - -#~ msgid "Locate to Range Mark" -#~ msgstr "К маркеру выделениÑ" - -#~ msgid "Play from Range Mark" -#~ msgstr "ВоÑпроизвеÑти от маркера выделениÑ" - -#~ msgid "Playback/Recording on 1 Device" -#~ msgstr "ВоÑпроизведение/ЗапиÑÑŒ на 1 уÑтройÑтве" - -#~ msgid "Playback/Recording on 2 Devices" -#~ msgstr "ВоÑпроизведение/ЗапиÑÑŒ на 2 уÑтройÑтвах" - -#~ msgid "Bank:" -#~ msgstr "Банк:" - -#~ msgid "Program:" -#~ msgstr "Программа:" - -#~ msgid "Channel:" -#~ msgstr "Канал:" - -#~ msgid "Subframes per frame" -#~ msgstr "Подвыборок на выборку" - -#~ msgid "80" -#~ msgstr "80" - -#~ msgid "100" -#~ msgstr "100" - -#~ msgid "Constant Power" -#~ msgstr "С поÑтоÑнной Ñилой" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were not in use and \n" -#~ "have been moved to: %2\n" -#~ "\n" -#~ "After a restart of %5\n" -#~ "\n" -#~ "Session -> Clean-up -> Flush Wastebasket\n" -#~ "\n" -#~ "will release an additional %3 %4bytes of disk space.\n" -#~ msgstr "" -#~ "Следующие %1 файлов не иÑпользуютÑÑ.\n" -#~ "ПоÑÐ»ÐµÐ´ÑƒÑŽÑ‰Ð°Ñ Ð¾Ñ‡Ð¸Ñтка корзины оÑвободит\n" -#~ "%2 мегабайт меÑта на диÑке.\n" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were deleted from %2,\n" -#~ "releasing %3 %4bytes of disk space" -#~ msgstr "" -#~ "Следующие %1 файлов были удалены, оÑвободив при Ñтом %2 Мб меÑта на диÑке" - -#~ msgid "could not create a new audio bus" -#~ msgstr "Ðе удалоÑÑŒ Ñоздать новую звуковую шину" - -#, fuzzy -#~ msgid "editing|E" -#~ msgstr "Редактирование" - -#, fuzzy -#~ msgid "Sharing Editing?" -#~ msgstr "Изменить точку редактированиÑ" - -#~ msgid "Editing" -#~ msgstr "Редактирование" - -#, fuzzy -#~ msgid "Always Play Range Selection (if any)" -#~ msgstr "Ð’Ñегда воÑпроизводить облаÑть или выделение" - -#, fuzzy -#~ msgid "Always Play Range" -#~ msgstr "ВоÑпроизвеÑти выделение" - -#~ msgid "Select/Move Objects" -#~ msgstr "Выбирать/двигать объекты" - -#~ msgid "Select/Move Ranges" -#~ msgstr "Выбирать или двигать облаÑти" - -#~ msgid "Edit Region Contents (e.g. notes)" -#~ msgstr "МенÑть Ñодержимое облаÑти (например, ноты)" - -#, fuzzy -#~ msgid "Link Object / Range Tools" -#~ msgstr "Объект" - -#~ msgid "Disable plugins during recording" -#~ msgstr "Отключать Ñффекты при запиÑи" - -#~ msgid "Visual|Interface" -#~ msgstr "ИнтерфейÑ" - -#~ msgid "Timecode source shares sample clock with audio interface" -#~ msgstr "У иÑточника тайм-кода и звукового интерфеÑа один ÑинхроÑигнал" - -#~ msgid "Timecode Offset Negative" -#~ msgstr "Смещение тайм-кода отрицательно" - -#~ msgid "Crossfades are created" -#~ msgstr "КроÑÑфейды ÑоздаютÑÑ" - -#~ msgid "to span entire overlap" -#~ msgstr "Через вÑÑ‘ переÑечение" - -#~ msgid "use existing region fade shape" -#~ msgstr "Форма ÑущеÑтвующего фейда облаÑти" - -#~ msgid "Short crossfade length" -#~ msgstr "ДлительноÑть короткого кроÑÑфейда" - -#~ msgid "Create crossfades automatically" -#~ msgstr "ÐвтоматичеÑки Ñоздавать кроÑÑфейды" - -#~ msgid "Page %1, [Stop]->" -#~ msgstr "Страница %1, [Стоп]->" - -#~ msgid "Add files:" -#~ msgstr "Добавить файлы:" - -#~ msgid "Mapping:" -#~ msgstr "РаÑкладка:" - -#~ msgid "Fork" -#~ msgstr "Клонировать" - -#~ msgid "Include in Filename(s):" -#~ msgstr "Включить в название файлов:" - -#~ msgid "Example filename: \"%1\"" -#~ msgstr "Пример имени файла: \"%1\"" - -#~ msgid "Toolbars when Maximised" -#~ msgstr "ВидимоÑть панелей в развёрнутом окне" - -#~ msgid "Realtime Priority" -#~ msgstr "Приоритет реального времени" - -#~ msgid "MIDI Thru" -#~ msgstr "MIDI Thru" - -#~ msgid "signal" -#~ msgstr "Ñигнал" - -#, fuzzy -#~ msgid "Could not create user configuration directory" -#~ msgstr "Ardour: не удалоÑÑŒ прочитать файл конфигурации интерфейÑа \"%1\"" - -#~ msgid "close" -#~ msgstr "Закрыть" - -#~ msgid "Secondary clock delta to edit cursor" -#~ msgstr "Дополнительный Ñчётчик показываетÑÑ Ñ€Ð°Ð·Ð½Ð¸Ñ†Ñƒ Ñ ÐºÑƒÑ€Ñором редактора" - -#~ msgid "Nudge Entire Track Backward" -#~ msgstr "Толкнуть вÑÑŽ дорожку назад" - -#~ msgid "Nudge Track After Edit Point Backward" -#~ msgstr "Толкнуть дорожку поÑле курÑора редактора назад" - -#~ msgid "Nudge Region/Selection Backwards" -#~ msgstr "Толкнуть облаÑть выделение назад" - -#~ msgid "Jump Forward to Mark" -#~ msgstr "К Ñледующей метке" - -#~ msgid "Jump Backward to Mark" -#~ msgstr "К предыдущей метке" - -#~ msgid "Nudge Next Backward" -#~ msgstr "Толкнуть Ñледующую назад" - -#~ msgid "Forward to Grid" -#~ msgstr "К Ñледующей линии Ñетки" - -#~ msgid "Backward to Grid" -#~ msgstr "К предыдущей линии Ñетки" - -#~ msgid "Nudge Backward" -#~ msgstr "Толкнуть назад" - -#~ msgid "Nudge Backward by Capture Offset" -#~ msgstr "Толкнуть назад на Ñмещение захвата" - -#~ msgid "" -#~ "Russian:\n" -#~ "\t Igor Blinov \n" -#~ msgstr "" -#~ "РуÑÑкий:\n" -#~ "\t Игорь Блинов \n" -#~ "\t ÐлекÑандр Прокудин \n" - -#~ msgid "Add MIDI Controller Track" -#~ msgstr "Добавить дорожку MIDI-контроллера" - -#~ msgid "%1 could not start JACK" -#~ msgstr "%1 не удалоÑÑŒ запуÑтить Ñервер JACK" - -#~ msgid "" -#~ "There are several possible reasons:\n" -#~ "\n" -#~ "1) You requested audio parameters that are not supported..\n" -#~ "2) JACK is running as another user.\n" -#~ "\n" -#~ "Please consider the possibilities, and perhaps try different parameters." -#~ msgstr "" -#~ "СущеÑтвует неÑколько возможных причин:\n" -#~ "\n" -#~ "1) Ð’Ñ‹ указали неподдерживаемые параметры звука.\n" -#~ "2) Сервер JACK запущен Ñ Ð¿Ñ€Ð°Ð²Ð°Ð¼Ð¸ другого пользователÑ, возможно root.\n" -#~ "\n" -#~ "ПожалуйÑта, проверьте вÑе варианты, к примеру, иные параметры." - -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "snapshot names may not contain a '\\' character" -#~ msgstr "" -#~ "Ð”Ð»Ñ Ð¾Ð±ÐµÑÐ¿ÐµÑ‡ÐµÐ½Ð¸Ñ ÑовмеÑтимоÑти Ñ Ñ€Ð°Ð·Ð»Ð¸Ñ‡Ð½Ñ‹Ð¼Ð¸ ÑиÑтемами\n" -#~ "Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ñ Ñнимков не могут Ñодержать Ñимвол '\\'." - -#, fuzzy -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "snapshot names may not contain a ':' character" -#~ msgstr "" -#~ "Ð”Ð»Ñ Ð¾Ð±ÐµÑÐ¿ÐµÑ‡ÐµÐ½Ð¸Ñ ÑовмеÑтимоÑти Ñ Ñ€Ð°Ð·Ð»Ð¸Ñ‡Ð½Ñ‹Ð¼Ð¸ ÑиÑтемами\n" -#~ "Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ñ Ñнимков не могут Ñодержать Ñимвол '/'." - -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "session names may not contain a '\\' character" -#~ msgstr "" -#~ "Ð”Ð»Ñ Ð¾Ð±ÐµÑÐ¿ÐµÑ‡ÐµÐ½Ð¸Ñ ÑовмеÑтимоÑти Ñ Ñ€Ð°Ð·Ð»Ð¸Ñ‡Ð½Ñ‹Ð¼Ð¸ ÑиÑтемами\n" -#~ "Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ñ ÑеанÑов не могут Ñодержать Ñимвол '\\'." - -#~ msgid "Sorry, MIDI Busses are not supported at this time." -#~ msgstr "Извините, но MIDI-шины пока что не поддерживаютÑÑ." - -#~ msgid "Mixer" -#~ msgstr "Микшер" - -#~ msgid "Show All Crossfades" -#~ msgstr "Показать вÑе кроÑÑфейды" - -#~ msgid "Edit Crossfade" -#~ msgstr "Изменить кроÑÑфейд" - -#~ msgid "Out (dry)" -#~ msgstr "Выход (без фейда)" - -#~ msgid "In (dry)" -#~ msgstr "Вход (без фейда)" - -#~ msgid "With Pre-roll" -#~ msgstr "С накатом" - -#~ msgid "With Post-roll" -#~ msgstr "С откатом" - -#~ msgid "Edit crossfade" -#~ msgstr "Изменить кроÑÑфейд" - -#~ msgid "Route Groups" -#~ msgstr "Группы маршрутизации" - -#~ msgid "Unmute" -#~ msgstr "СнÑть приглушение" - -#~ msgid "Convert to Short" -#~ msgstr "Сделать коротким" - -#~ msgid "Convert to Full" -#~ msgstr "Сделать полным" - -#~ msgid "Undo" -#~ msgstr "Отменить" - -#~ msgid "Add Range Marker(s)" -#~ msgstr "Добавить метки облаÑтей" - -#~ msgid "Envelope Visible" -#~ msgstr "ÐžÐ³Ð¸Ð±Ð°ÑŽÑ‰Ð°Ñ Ð²Ð¸Ð´Ð¸Ð¼Ð°" - -#, fuzzy -#~ msgid "Rel" -#~ msgstr "Выделить" - -#, fuzzy -#~ msgid "Sel" -#~ msgstr "Выделить" - -#, fuzzy -#~ msgid "region gain envelope visible" -#~ msgstr "ÐžÐ³Ð¸Ð±Ð°ÑŽÑ‰Ð°Ñ Ð²Ð¸Ð´Ð¸Ð¼Ð°" - -#, fuzzy -#~ msgid "time stretch" -#~ msgstr "ardour: Ñффект timestretch" - -#~ msgid "New From" -#~ msgstr "Создать из" - -#~ msgid "Move tempo and meter changes" -#~ msgstr "ПеремеÑтить Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ñ‚ÐµÐ¼Ð¿Ð°" - -#~ msgid "Option-" -#~ msgstr "Option-" - -#~ msgid "Shift-" -#~ msgstr "Shift-" - -#~ msgid "Control-" -#~ msgstr "Control-" - -#~ msgid "SCMS" -#~ msgstr "SCMS" - -#, fuzzy -#~ msgid "Set value to playhead" -#~ msgstr "ИÑпользовать позицию ÑƒÐºÐ°Ð·Ð°Ñ‚ÐµÐ»Ñ Ð²Ð¾ÑпроизведениÑ" - -#, fuzzy -#~ msgid "Jump to the end of this range" -#~ msgstr "Ð’ конец ÑеÑÑии" - -#~ msgid "End time" -#~ msgstr "Ð’Ñ€ÐµÐ¼Ñ ÐºÐ¾Ð½Ñ†Ð°" - -#~ msgid "Store this many lines: " -#~ msgstr "Хранить Ñтрок:" - -#~ msgid "New send" -#~ msgstr "Ðовый поÑыл" - -#~ msgid "New Send ..." -#~ msgstr "Добавить поÑыл..." - -#~ msgid "Legato" -#~ msgstr "Легато" - -#~ msgid "Groove" -#~ msgstr "Грув" - -#~ msgid "Quantize Type" -#~ msgstr "Тип квантованиÑ" - -#~ msgid "Route active state" -#~ msgstr "СоÑтоÑние маршрутизации" - -#~ msgid "" -#~ "Left-click to invert (phase reverse) all channels of this track. Right-" -#~ "click to show menu." -#~ msgstr "" -#~ "Щелчком левой клавиши мыши инвертируютÑÑ (инверÑÐ¸Ñ Ñ„Ð°Ð·Ñ‹) \n" -#~ "вÑе каналы Ñтой дорожки. По правой клавише вызываетÑÑ Ð¼ÐµÐ½ÑŽ." - -#~ msgid "Crossfades active" -#~ msgstr "КроÑÑфейды активны" - -#~ msgid "Layering (in overlaid mode)" -#~ msgstr "Слои (при перекрытии)" - -#~ msgid "Layering model" -#~ msgstr "Модель поÑÑ‚Ñ€Ð¾ÐµÐ½Ð¸Ñ Ñлоёв" - -#~ msgid "later is higher" -#~ msgstr "Более поздние — выше" - -#~ msgid "most recently moved or added is higher" -#~ msgstr "Ðедавно Ñмещённые/добавленные — выше" - -#~ msgid "most recently added is higher" -#~ msgstr "Ðедавно добавленные — выше" - -#~ msgid "Broadcast WAVE metadata" -#~ msgstr "Метаданные Broadcast WAVE" - -#, fuzzy -#~ msgid "Page:" -#~ msgstr "ИÑпользование: " - -#~ msgid "" -#~ "(You can change this preference at any time, via the " -#~ "Preferences dialog)" -#~ msgstr "" -#~ "(Это можно изменить позднее через диалог наÑтройки программы)" - -#~ msgid "second (2)" -#~ msgstr "половины (2)" - -#~ msgid "eighth (8)" -#~ msgstr "воÑьмых (8)" - -#~ msgid "garbaged note type entry (%1)" -#~ msgstr "неÑÑное определение ноты (%1)" - -#~ msgid "Strict Linear" -#~ msgstr "Строго линейное" - -#~ msgid "no style found for %1, using red" -#~ msgstr "Ðе обнаружен Ñтиль Ð´Ð»Ñ %1, иÑпользуетÑÑ ÐºÑ€Ð°Ñный цвет" - -#~ msgid " " -#~ msgstr " " - -#~ msgid "Delete Unused" -#~ msgstr "Удалить неиÑпользуемое" - -#~ msgid "Activate all" -#~ msgstr "Ðктивировать вÑе" - -#~ msgid "Password:" -#~ msgstr "Пароль:" - -#~ msgid "Cancelling.." -#~ msgstr "Отмена..." - -#~ msgid "" -#~ "pre\n" -#~ "roll" -#~ msgstr "откат" - -#~ msgid "" -#~ "post\n" -#~ "roll" -#~ msgstr "накат" - -#~ msgid "AUDITION" -#~ msgstr "КОÐТРОЛЬ" - -#~ msgid "SOLO" -#~ msgstr "СОЛО" - -#~ msgid "Does %1 control the time?" -#~ msgstr "Контролирует ли %1 времÑ?" - -#~ msgid "%.1f kHz / %4.1f ms" -#~ msgstr "%.1f КГц / %4.1f мÑ" - -#~ msgid "% kHz / %4.1f ms" -#~ msgstr "% КГц / %4.1f мÑ" - -#~ msgid "DSP: %5.1f%%" -#~ msgstr "ЦП: %.1f%%" - -#~ msgid "Buffers p:%%% c:%%%" -#~ msgstr "Буферы p:%%% c:%%%" - -#~ msgid "Disk: 24hrs+" -#~ msgstr "Ðа диÑке: 24+ чаÑа" - -#~ msgid "External" -#~ msgstr "Внешний" - -#~ msgid "automation" -#~ msgstr "ÐвтоматизациÑ" - -#~ msgid "No devices found for driver \"%1\"" -#~ msgstr "Ðе обнаружены уÑтройÑтва Ð´Ð»Ñ Ð´Ñ€Ð°Ð¹Ð²ÐµÑ€Ð° \"%1\"" - -#~ msgid "MUTE" -#~ msgstr "МОЛЧÐ" - -#~ msgid "Solo/Mute" -#~ msgstr "Соло/Молча" - -#, fuzzy -#~ msgid "Dim Cut" -#~ msgstr "Вырезать" - -#~ msgid "post-fader but before post-fader processors" -#~ msgstr "поÑле фейдера, но до поÑлефейдерных обработчиков" - -#~ msgid "A track already exists with that name" -#~ msgstr "Дорожка Ñ Ñ‚Ð°ÐºÐ¸Ð¼ именем уже ÑущеÑтвует" - -#~ msgid "r" -#~ msgstr "з" - -#~ msgid "MIDI Note Overlaps" -#~ msgstr "Перекрытие нот MIDI" - -#~ msgid "unknown track height name \"%1\" in XML GUI information" -#~ msgstr "неизвеÑтное Ð¸Ð¼Ñ ÑˆÐ¸Ñ€Ð¸Ð½Ñ‹ трека \"%1\" в XML опиÑании" - -#~ msgid "Off" -#~ msgstr "Выкл" - -#~ msgid "Smaller" -#~ msgstr "Меньше" - -#~ msgid "quit" -#~ msgstr "выйти" - -#~ msgid "session" -#~ msgstr "CеанÑ" - -#~ msgid "snapshot" -#~ msgstr "Cнимок" - -#~ msgid "" -#~ "Welcome to %1.\n" -#~ "\n" -#~ "The program will take a bit longer to start up\n" -#~ "while the system fonts are checked.\n" -#~ "\n" -#~ "This will only be done once, and you will\n" -#~ "not see this message again\n" -#~ msgstr "" -#~ "ПриветÑтвуем Ð²Ð°Ñ Ð² %1.\n" -#~ "\n" -#~ "Это первый запуÑк программы,\n" -#~ "поÑтому Ñначала она проверит ÑиÑтемные\n" -#~ "шрифты, что займет некоторое времÑ.\n" -#~ "\n" -#~ "Больше вы Ñто Ñообщение не увидите.\n" - -#~ msgid "Clean Up" -#~ msgstr "ОчиÑтить" - -#~ msgid "Select semitones or %%-age for speed display" -#~ msgstr "" -#~ "Выберите, полутонами или процентами отображать измененную ÑкороÑть " -#~ "воÑпроизведениÑ" - -#~ msgid "Current transport speed" -#~ msgstr "Ð¢ÐµÐºÑƒÑ‰Ð°Ñ ÑкороÑть транÑпорта" - -#~ msgid "stop" -#~ msgstr "cтоп" - -#~ msgid "-0.55" -#~ msgstr "-0.55" - -#~ msgid "Cleanup" -#~ msgstr "ОчиÑтить" - -#~ msgid "ST" -#~ msgstr "ПТ" - -#~ msgid "Extend Range to End of Region" -#~ msgstr "РаÑширить выделение до конца облаÑти" - -#~ msgid "Extend Range to Start of Region" -#~ msgstr "РаÑширить выделение до начала облаÑти" - -#~ msgid "Center Active Marker" -#~ msgstr "Центрировать вид по активной метке" - -#~ msgid "Bounce" -#~ msgstr "СвеÑти" - -#~ msgid "region copy" -#~ msgstr "копирование облаÑти" - -#~ msgid "timestretch" -#~ msgstr "раÑÑ‚Ñгивание во времени" - -#~ msgid "extend selection" -#~ msgstr "раÑширение выделениÑ" - -#~ msgid "Default Channel" -#~ msgstr "Канал по умолчанию" - -#~ msgid "" -#~ "Do you really want to remove bus \"%1\" ?\n" -#~ "\n" -#~ "You may also lose the playlist used by this track.\n" -#~ "\n" -#~ "(This action cannot be undone, and the session file will be overwritten)" -#~ msgstr "" -#~ "Ð’Ñ‹ дейÑтвительно хотите удалить шину \"%1\"?\n" -#~ "\n" -#~ "Ð’Ñ‹ также можете потерÑть иÑпользуемый\n" -#~ "Ñтой дорожкой ÑпиÑок воÑпроизведениÑ.\n" -#~ "(отмена невозможна, файл ÑеанÑа будет перезапиÑан)" - -#~ msgid "Speaker Config" -#~ msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð³Ñ€Ð¾Ð¼ÐºÐ¾Ð³Ð¾Ð²Ð¾Ñ€Ð¸Ñ‚ÐµÐ»ÐµÐ¹" - -#, fuzzy -#~ msgid "Key Mouse" -#~ msgstr "Клавиатура/мышь" - -#~ msgid "goto" -#~ msgstr "Перейти" - -#~ msgid "Brush at Mouse" -#~ msgstr "КиÑточка по курÑору" - -#~ msgid "input" -#~ msgstr "вход" - -#~ msgid "Save Mix Template" -#~ msgstr "Сохранить шаблон микÑа" - -#~ msgid "99:99" -#~ msgstr "99:99" - -#~ msgid "9999h:999999m:99999999s" -#~ msgstr "9999ч:999999мин:99999999Ñ" - -#~ msgid "DSP: 100.0%" -#~ msgstr "DSP: 100.0%" - -#~ msgid "Clear tempo" -#~ msgstr "ОчиÑтить темп" - -#~ msgid "Clear meter" -#~ msgstr "СброÑить Ñчётчик" - -#~ msgid "Step Edit" -#~ msgstr "Пошаговый ввод" - -#, fuzzy -#~ msgid "Direct" -#~ msgstr "ОтÑоединитьÑÑ" - -#~ msgid "Bus type:" -#~ msgstr "Тип шин:" - -#, fuzzy -#~ msgid "insert file" -#~ msgstr "вÑтавка звукового файла" - -#~ msgid "region drag" -#~ msgstr "перемещение облаÑти" - -#, fuzzy -#~ msgid "Drag region brush" -#~ msgstr "проÑлушать облаÑть" - -#, fuzzy -#~ msgid "selection grab" -#~ msgstr "Выделенное" - -#~ msgid "region fill" -#~ msgstr "заполнение облаÑти" - -#~ msgid "fill selection" -#~ msgstr "заполнение выделениÑ" - -#~ msgid "duplicate region" -#~ msgstr "дублирование облаÑти" - -#, fuzzy -#~ msgid "C" -#~ msgstr "CD" - -#, fuzzy -#~ msgid "link" -#~ msgstr "в" - -#~ msgid "Reset all" -#~ msgstr "СброÑить вÑе" - -#~ msgid "Inserts, sends & plugins:" -#~ msgstr "Возвраты, поÑылы и Ñффекты:" - -#~ msgid "Set tempo map" -#~ msgstr "Задать карту темпа" - -#, fuzzy -#~ msgid "Edit Presets" -#~ msgstr "ПредуÑтановка" - -#, fuzzy -#~ msgid "silent segments" -#~ msgstr "Тихие Ñегменты:" - -#~ msgid "Shortest silence:" -#~ msgstr "Ð¡Ð°Ð¼Ð°Ñ ÐºÐ¾Ñ€Ð¾Ñ‚ÐºÐ°Ñ Ñ‚Ð¸ÑˆÐ¸Ð½Ð°:" - -#~ msgid "" -#~ "Spanish:\n" -#~ "\tAlex Krohn \n" -#~ "\tAngel Bidinost \n" -#~ "\tPablo Enrici \n" -#~ "\tPablo Fernández \n" -#~ "\tGiovanni Martínez \n" -#~ "\tDavid Täht \n" -#~ "\tOscar Valladarez \n" -#~ "\tDaniel Vidal \n" -#~ msgstr "" -#~ "ИÑпанÑкий:\n" -#~ "\tAlex Krohn \n" -#~ "\tAngel Bidinost \n" -#~ "\tPablo Enrici \n" -#~ "\tPablo Fernández \n" -#~ "\tGiovanni Martínez \n" -#~ "\tDavid Täht \n" -#~ "\tOscar Valladarez \n" -#~ "\tDaniel Vidal \n" - -#~ msgid "" -#~ "Ardour comes with ABSOLUTELY NO WARRANTY\n" -#~ "This is free software, and you are welcome to redistribute it\n" -#~ "under certain conditions; see the file COPYING for details.\n" -#~ msgstr "" -#~ "Ardour поÑтавлÑетÑÑ Ð‘Ð•Ð— КÐКИХ-ЛИБО ГÐРÐÐТИЙ.\n" -#~ "Это Ñвободное программное обеÑпечение,\n" -#~ "вы имеете право раÑпроÑтранÑть его на определенных\n" -#~ "уÑловиÑÑ…, подробно изложенных в файле COPYING.\n" - -#~ msgid "programmer error: %1 %2" -#~ msgstr "Ошибка в программе: %1 %2" - -#~ msgid "Unknown action name: %1" -#~ msgstr "ÐеизвеÑтное Ð¸Ð¼Ñ Ð´ÐµÐ¹ÑтвиÑ: %1" - -#~ msgid "ardour: add track/bus" -#~ msgstr "Добавить дорожку/шину — Ardour" - -#~ msgid "Add this many:" -#~ msgstr "Сколько добавить:" - -#~ msgid "ardour: save session?" -#~ msgstr "Ardour: Ñохранить ÑеанÑ?" - -#~ msgid "Ardour sessions" -#~ msgstr "СеанÑÑ‹ Ardour" - -#~ msgid "Patience is a virtue.\n" -#~ msgstr "По нитке дойдёшь и до клубка.\n" - -#~ msgid "ardour: cleanup" -#~ msgstr "ardour: очиÑтка" - -#~ msgid "" -#~ "A preset with this name already exists for this plugin.\n" -#~ "\n" -#~ "What you would like to do?\n" -#~ msgstr "" -#~ "Профиль Ñ Ñ‚Ð°ÐºÐ¸Ð¼ названием Ð´Ð»Ñ Ñтого Ñффекта уже ÑущеÑтвует.\n" -#~ "Что вы хотите Ñделать?\n" - -#~ msgid "Primary clock" -#~ msgstr "ОÑновной Ñчётчик" - -#~ msgid "secondary clock" -#~ msgstr "Дополнительный Ñчётчик" - -#~ msgid "Recent" -#~ msgstr "Ðедавние ÑеанÑÑ‹..." - -#~ msgid "Snapshot" -#~ msgstr "Создать Ñнимок..." - -#~ msgid "Export selected range to audiofile..." -#~ msgstr "Выделение в звуковой файл..." - -#~ msgid "Export range markers to multiple audiofiles..." -#~ msgstr "Метки облаÑти в неÑколько звуковых файлов..." - -#~ msgid "Cleanup unused sources" -#~ msgstr "ОчиÑтить неиÑпользуемые иÑточники" - -#~ msgid "Show Mixer" -#~ msgstr "Показать микшер" - -#~ msgid "Track/Bus Inspector" -#~ msgstr "ИнÑпектор дорожек/шин" - -#~ msgid "Toggle Record Enable Track2" -#~ msgstr "Переключить запиÑываемоÑть дорожки 2" - -#~ msgid "Toggle Record Enable Track3" -#~ msgstr "Переключить запиÑываемоÑть дорожки 3" - -#~ msgid "Toggle Record Enable Track4" -#~ msgstr "Переключить запиÑываемоÑть дорожки 4" - -#~ msgid "Toggle Record Enable Track5" -#~ msgstr "Переключить запиÑываемоÑть дорожки 5" - -#~ msgid "Toggle Record Enable Track6" -#~ msgstr "Переключить запиÑываемоÑть дорожки 6" - -#~ msgid "Toggle Record Enable Track7" -#~ msgstr "Переключить запиÑываемоÑть дорожки 7" - -#~ msgid "Toggle Record Enable Track8" -#~ msgstr "Переключить запиÑываемоÑть дорожки 8" - -#~ msgid "Toggle Record Enable Track9" -#~ msgstr "Переключить запиÑываемоÑть дорожки 9" - -#~ msgid "Toggle Record Enable Track10" -#~ msgstr "Переключить запиÑываемоÑть дорожки 10" - -#~ msgid "Toggle Record Enable Track11" -#~ msgstr "Переключить запиÑываемоÑть дорожки 11" - -#~ msgid "Toggle Record Enable Track12" -#~ msgstr "Переключить запиÑываемоÑть дорожки 12" - -#~ msgid "Toggle Record Enable Track13" -#~ msgstr "Переключить запиÑываемоÑть дорожки 13" - -#~ msgid "Toggle Record Enable Track14" -#~ msgstr "Переключить запиÑываемоÑть дорожки 14" - -#~ msgid "Toggle Record Enable Track15" -#~ msgstr "Переключить запиÑываемоÑть дорожки 15" - -#~ msgid "Toggle Record Enable Track16" -#~ msgstr "Переключить запиÑываемоÑть дорожки 16" - -#~ msgid "Toggle Record Enable Track17" -#~ msgstr "Переключить запиÑываемоÑть дорожки 17" - -#~ msgid "Toggle Record Enable Track18" -#~ msgstr "Переключить запиÑываемоÑть дорожки 18" - -#~ msgid "Toggle Record Enable Track19" -#~ msgstr "Переключить запиÑываемоÑть дорожки 19" - -#~ msgid "Toggle Record Enable Track20" -#~ msgstr "Переключить запиÑываемоÑть дорожки 20" - -#~ msgid "Toggle Record Enable Track21" -#~ msgstr "Переключить запиÑываемоÑть дорожки 21" - -#~ msgid "Toggle Record Enable Track22" -#~ msgstr "Переключить запиÑываемоÑть дорожки 22" - -#~ msgid "Toggle Record Enable Track23" -#~ msgstr "Переключить запиÑываемоÑть дорожки 23" - -#~ msgid "Toggle Record Enable Track24" -#~ msgstr "Переключить запиÑываемоÑть дорожки 24" - -#~ msgid "Toggle Record Enable Track25" -#~ msgstr "Переключить запиÑываемоÑть дорожки 25" - -#~ msgid "Toggle Record Enable Track26" -#~ msgstr "Переключить запиÑываемоÑть дорожки 26" - -#~ msgid "Toggle Record Enable Track27" -#~ msgstr "Переключить запиÑываемоÑть дорожки 27" - -#~ msgid "Toggle Record Enable Track28" -#~ msgstr "Переключить запиÑываемоÑть дорожки 28" - -#~ msgid "Toggle Record Enable Track29" -#~ msgstr "Переключить запиÑываемоÑть дорожки 29" - -#~ msgid "Toggle Record Enable Track30" -#~ msgstr "Переключить запиÑываемоÑть дорожки 30" - -#~ msgid "Toggle Record Enable Track31" -#~ msgstr "Переключить запиÑываемоÑть дорожки 31" - -#~ msgid "Toggle Record Enable Track32" -#~ msgstr "Переключить запиÑываемоÑть дорожки 32" - -#~ msgid "Seamless Looping" -#~ msgstr "БеÑшовное цикличеÑкое воÑпроизведение" - -#~ msgid "Use OSC" -#~ msgstr "ИÑпользовать OSC" - -#~ msgid "Stop transport at session end" -#~ msgstr "ОÑтанавливать транÑпорт в конце ÑеанÑа" - -#~ msgid "Region equivalents overlap" -#~ msgstr "Эквиваленты облаÑтей переÑекаютÑÑ" - -#~ msgid "Enable Editor Meters" -#~ msgstr "Включить Ñчетчики редактора" - -#~ msgid "Auto-analyse new audio" -#~ msgstr "Ðвтоанализировать новые звуковые данные" - -#~ msgid "Use DC bias" -#~ msgstr "Отклонение Ñигнала от центральной оÑи" - -#~ msgid "Do Not Run Plugins while Recording" -#~ msgstr "Ðе запуÑкать Ñффекты во Ð²Ñ€ÐµÐ¼Ñ Ð·Ð°Ð¿Ð¸Ñи" - -#~ msgid "JACK does monitoring" -#~ msgstr "JACK выполнÑет контроль" - -#~ msgid "Ardour does monitoring" -#~ msgstr "Ardour выполнÑет контроль" - -#~ msgid "Audio Hardware does monitoring" -#~ msgstr "Звуковое уÑтройÑтво выполнÑет контроль" - -#~ msgid "Auto-connect inputs to physical inputs" -#~ msgstr "ÐвтоматичеÑки Ñоединить входы Ñ Ñ„Ð¸Ð·Ð¸Ñ‡ÐµÑкими входами" - -#~ msgid "Manually connect inputs" -#~ msgstr "Вручную подключитьÑÑ Ðº входам" - -#~ msgid "Auto-connect outputs to physical outs" -#~ msgstr "ÐвтоматичеÑки Ñоединить выходы Ñ Ñ„Ð¸Ð·Ð¸Ñ‡ÐµÑкими выходами" - -#~ msgid "Auto-connect outputs to master bus" -#~ msgstr "ÐвтоматичеÑки Ñоединить выходы Ñ Ð¼Ð°Ñтер-шиной" - -#, fuzzy -#~ msgid "Auto Rebind Controls" -#~ msgstr "Контроль автоматизации" - -#, fuzzy -#~ msgid "" -#~ "programming error: unknown solo model in ARDOUR_UI::set_solo_model: %1" -#~ msgstr "ошибка в программе: request for non-existent audio range (%1)!" - -#, fuzzy -#~ msgid "" -#~ "programming error: unknown remote model in ARDOUR_UI::set_remote_model: %1" -#~ msgstr "ошибка в программе: request for non-existent audio range (%1)!" - -#, fuzzy -#~ msgid "" -#~ "programming error: unknown monitor model in ARDOUR_UI::set_monitor_model: " -#~ "%1" -#~ msgstr "ошибка в программе: request for non-existent audio range (%1)!" - -#, fuzzy -#~ msgid "" -#~ "programming error: unknown denormal model in ARDOUR_UI::" -#~ "set_denormal_model: %1" -#~ msgstr "ошибка в программе: request for non-existent audio range (%1)!" - -#~ msgid "Waveform" -#~ msgstr "Форма Ñигнала" - -#, fuzzy -#~ msgid "automation range drag" -#~ msgstr "автомат" - -#~ msgid "clear track" -#~ msgstr "ОчиÑтить дорожку" - -#~ msgid "pixbuf" -#~ msgstr "pixbuf" - -#~ msgid "the pixbuf" -#~ msgstr "the pixbuf" - -#~ msgid "x" -#~ msgstr "x" - -#~ msgid "y" -#~ msgstr "y" - -#~ msgid "the width" -#~ msgstr "Ширина" - -#, fuzzy -#~ msgid "drawwidth" -#~ msgstr "Ширина" - -#, fuzzy -#~ msgid "drawn width" -#~ msgstr "Ширина" - -#~ msgid "height" -#~ msgstr "Ð’Ñ‹Ñота" - -#~ msgid "ardour: x-fade edit" -#~ msgstr "Ardour — Редактор кроÑÑфейдов" - -#~ msgid "SMPTE Frames" -#~ msgstr "Кадры SMPTE" - -#~ msgid "SMPTE Seconds" -#~ msgstr "Секунды SMPTE" - -#~ msgid "SMPTE Minutes" -#~ msgstr "Минуты SMPTE" - -#~ msgid "Chunks" -#~ msgstr "Фрагменты" - -#~ msgid "Edit Groups" -#~ msgstr "Изменить группы" - -#~ msgid "Region Editor" -#~ msgstr "Изменить в редакторе облаÑти..." - -#~ msgid "Define sync point" -#~ msgstr "Определить точку Ñинхронизации" - -#~ msgid "Add Single Range" -#~ msgstr "Добавить одиночное выделение" - -#~ msgid "Nudge fwd" -#~ msgstr "Толкнуть вперёд" - -#~ msgid "Nudge bwd" -#~ msgstr "Толкнуть назад" - -#~ msgid "Nudge bwd by capture offset" -#~ msgstr "Толкнуть назад Ñмещением захвата" - -#, fuzzy -#~ msgid "Start to edit point" -#~ msgstr "От начала до курÑора" - -#~ msgid "Edit point to end" -#~ msgstr "КурÑор редактора в конец" - -#, fuzzy -#~ msgid "Choose top region" -#~ msgstr "МаÑштабировать в облаÑть" - -#~ msgid "Loop range" -#~ msgstr "ВоÑпроизвеÑти выделение петлей" - -#~ msgid "Select all in range" -#~ msgstr "Выделить вÑÑ‘ выделении" - -#~ msgid "Set loop from selection" -#~ msgstr "Создать петлю из выделениÑ" - -#~ msgid "Set punch from selection" -#~ msgstr "Создать врезку из выделениÑ" - -#~ msgid "Create chunk from range" -#~ msgstr "Создать фрагмент из выделениÑ" - -#~ msgid "Export range" -#~ msgstr "ЭкÑпортировать выделение" - -#~ msgid "Play from edit point" -#~ msgstr "ВоÑпроизвеÑти от курÑора редактора" - -#~ msgid "Invert selection" -#~ msgstr "Обратить выделение" - -#~ msgid "Insert chunk" -#~ msgstr "Ð’Ñтавить фрагмент" - -#~ msgid "Nudge entire track bwd" -#~ msgstr "Толкнуть вÑÑŽ дорожку назад" - -#~ msgid "Nudge track after edit point bwd" -#~ msgstr "Толкнуть вÑÑŽ дорожку поÑле курÑора редактора назад" - -#~ msgid "Select all after edit point" -#~ msgstr "Выделить вÑÑ‘ поÑле курÑора редактора" - -#~ msgid "Select all before edit point" -#~ msgstr "Выделить вÑÑ‘ до курÑора редактора" - -#~ msgid "Select all after playhead" -#~ msgstr "Выделить вÑÑ‘ поÑле указателÑ" - -#~ msgid "Select all before playhead" -#~ msgstr "Выделить вÑÑ‘ до указателÑ" - -#~ msgid "Splice Edit" -#~ msgstr "Стыковка" - -#~ msgid "Slide Edit" -#~ msgstr "Скольжение" - -#~ msgid "Lock Edit" -#~ msgstr "Блокировка" - -#~ msgid "Waveforms" -#~ msgstr "Форма Ñигнала" - -#~ msgid "Link Region/Track Selection" -#~ msgstr "СвÑзать выделение облаÑтей/дорожек" - -#~ msgid "Show Region Fades" -#~ msgstr "Показывать фейды облаÑти" - -#~ msgid "Toggle Region Fade In" -#~ msgstr "Переключить фейд нараÑÑ‚Ð°Ð½Ð¸Ñ Ð¾Ð±Ð»Ð°Ñти" - -#~ msgid "Toggle Region Fade Out" -#~ msgstr "Переключить фейд Ð·Ð°Ñ‚ÑƒÑ…Ð°Ð½Ð¸Ñ Ð¾Ð±Ð»Ð°Ñти" - -#~ msgid "Toggle Region Fades" -#~ msgstr "Переключить фейды облаÑти" - -#~ msgid "Save View 2" -#~ msgstr "Сохранить вид 2" - -#~ msgid "Goto View 2" -#~ msgstr "Перейти к виду 2" - -#~ msgid "Save View 3" -#~ msgstr "Сохранить вид 3" - -#~ msgid "Goto View 3" -#~ msgstr "Перейти к виду 3" - -#~ msgid "Save View 4" -#~ msgstr "Сохранить вид 4" - -#~ msgid "Goto View 4" -#~ msgstr "Перейти к виду 4" - -#~ msgid "Save View 5" -#~ msgstr "Сохранить вид 5" - -#~ msgid "Goto View 5" -#~ msgstr "Перейти к виду 5" - -#~ msgid "Save View 6" -#~ msgstr "Сохранить вид 6" - -#~ msgid "Goto View 6" -#~ msgstr "Перейти к виду 6" - -#~ msgid "Save View 7" -#~ msgstr "Сохранить вид 7" - -#~ msgid "Goto View 7" -#~ msgstr "Перейти к виду 7" - -#~ msgid "Save View 8" -#~ msgstr "Сохранить вид 8" - -#~ msgid "Goto View 8" -#~ msgstr "Перейти к виду 8" - -#~ msgid "Save View 9" -#~ msgstr "Сохранить вид 9" - -#~ msgid "Goto View 9" -#~ msgstr "Перейти к виду 9" - -#~ msgid "Save View 10" -#~ msgstr "Перейти к виду 10" - -#~ msgid "Goto View 10" -#~ msgstr "Сохранить вид 10" - -#~ msgid "Save View 11" -#~ msgstr "Перейти к виду 11" - -#~ msgid "Goto View 11" -#~ msgstr "Сохранить вид 11" - -#~ msgid "Save View 12" -#~ msgstr "Перейти к виду 12" - -#~ msgid "Goto View 12" -#~ msgstr "Сохранить вид 12" - -#~ msgid "Locate to Mark 2" -#~ msgstr "Перейти к метку 2" - -#~ msgid "Locate to Mark 3" -#~ msgstr "Перейти к метке 3" - -#~ msgid "Locate to Mark 4" -#~ msgstr "Перейти к метке 4" - -#~ msgid "Locate to Mark 5" -#~ msgstr "Перейти к метке 5" - -#~ msgid "Locate to Mark 6" -#~ msgstr "Перейти к метке 6" - -#~ msgid "Locate to Mark 7" -#~ msgstr "Перейти к метке 7" - -#~ msgid "Locate to Mark 8" -#~ msgstr "Перейти к метке 8" - -#~ msgid "Locate to Mark 9" -#~ msgstr "Перейти к метке 9" - -#, fuzzy -#~ msgid "Start To Edit Point" -#~ msgstr "От начала до курÑора" - -#, fuzzy -#~ msgid "Edit Point To End" -#~ msgstr "От курÑора до конца" - -#~ msgid "Set Loop From Region" -#~ msgstr "Создать петлю из облаÑти" - -#~ msgid "Set Punch From Region" -#~ msgstr "Создать врезку из облаÑти" - -#~ msgid "Toggle Opaque" -#~ msgstr "Переключить непрозрачноÑть" - -#~ msgid "Toggle Fade In Active" -#~ msgstr "Переключить активноÑть фейда нараÑтаниÑ" - -#~ msgid "Toggle Fade Out Active" -#~ msgstr "Переключить активноÑть фейда затуханиÑ" - -#~ msgid "Align Regions End" -#~ msgstr "ВыровнÑть конец облаÑтей" - -#~ msgid "Align Regions End Relative" -#~ msgstr "ВыровнÑть отноÑительно конца облаÑтей" - -#~ msgid "Align Regions Sync Relative" -#~ msgstr "ВыровнÑть отноÑительно Ñинхронизаторов облаÑтей" - -#~ msgid "Duplicate Region" -#~ msgstr "Продублировать облаÑть" - -#~ msgid "Multi-Duplicate Region" -#~ msgstr "Продублировать облаÑть неоднократно..." - -#~ msgid "Normalize Region" -#~ msgstr "Ðормализовать облаÑть" - -#~ msgid "Auto-Rename" -#~ msgstr "Ðвтопереименование" - -#~ msgid "Split Region" -#~ msgstr "Разделить облаÑть" - -#~ msgid "Remove Region Sync" -#~ msgstr "СнÑть Ñинхронизатор облаÑти" - -#~ msgid "Export selected regions to audiofile..." -#~ msgstr "Выделенные облаÑти в звуковой файл..." - -#~ msgid "Lock Region" -#~ msgstr "Запереть облаÑть" - -#~ msgid "Glue Region To Bars&Beats" -#~ msgstr "Приклеить облаÑть к тактам и долÑм" - -#~ msgid "Mute/Unmute Region" -#~ msgstr "Приглушить /вернуть звук облаÑти" - -#~ msgid "Insert Chunk" -#~ msgstr "Ð’Ñтавить фрагмент" - -#~ msgid "Split At Edit Point" -#~ msgstr "Разделить по курÑору редактора" - -#~ msgid "Next Mouse Mode" -#~ msgstr "Следующий режим мыши" - -#~ msgid "Snap to SMPTE frame" -#~ msgstr "К кадру SMPTE" - -#~ msgid "Snap to SMPTE seconds" -#~ msgstr "К Ñекундам SMPTE" - -#~ msgid "Snap to SMPTE minutes" -#~ msgstr "К минутам SMPTE" - -#~ msgid "Show all" -#~ msgstr "Показать вÑе" - -#~ msgid "Show Waveforms" -#~ msgstr "Показывать форму Ñигнала" - -#~ msgid "Show Waveforms Rectified" -#~ msgstr "Показывать иÑправленную форму Ñигнала" - -#~ msgid "Set Selected Tracks to Linear Waveforms" -#~ msgstr "Ð›Ð¸Ð½ÐµÐ¹Ð½Ð°Ñ Ñ„Ð¾Ñ€Ð¼Ð° Ñигнала Ð´Ð»Ñ Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð½Ñ‹Ñ… дорожек" - -#~ msgid "80 per frame" -#~ msgstr "80 на выборку" - -#~ msgid "100 per frame" -#~ msgstr "100 на выборку" - -#~ msgid "" -#~ "There is no selection to export.\n" -#~ "\n" -#~ "Select a selection using the range mouse mode" -#~ msgstr "" -#~ "Ðет ÑкÑпортируемого выделениÑ.\n" -#~ "\n" -#~ "Выберите или Ñоздайте Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¸ помощи мыши." - -#~ msgid "" -#~ "There are no ranges to export.\n" -#~ "\n" -#~ "Create 1 or more ranges by dragging the mouse in the range bar" -#~ msgstr "" -#~ "Ðет ÑкÑпортируемых облаÑтей.\n" -#~ "\n" -#~ "Создайте одну или более облаÑтей перетаÑкиванием\n" -#~ "ÑƒÐºÐ°Ð·Ð°Ñ‚ÐµÐ»Ñ Ð¼Ñ‹ÑˆÐ¸ по линейке облаÑтей." - -#~ msgid "programming error: no ImageFrameView selected" -#~ msgstr "ошибка в программе: no ImageFrameView selected" - -#~ msgid "programming error: no MarkerView selected" -#~ msgstr "ошибка в программе: no MarkerView selected" - -#~ msgid "Unlock" -#~ msgstr "Отпереть" - -#~ msgid "programming error: start_grab called without drag item" -#~ msgstr "ошибка в программе: start_grab called without drag item" - -#, fuzzy -#~ msgid "" -#~ "programming error: fade out canvas item has no regionview data pointer!" -#~ msgstr "ошибка в программе: cursor canvas item has no cursor data pointer!" - -#~ msgid "programming error: cursor canvas item has no cursor data pointer!" -#~ msgstr "ошибка в программе: cursor canvas item has no cursor data pointer!" - -#, fuzzy -#~ msgid "programming error: line canvas item has no line pointer!" -#~ msgstr "ошибка в программе: line canvas item has no line pointer!" - -#, fuzzy -#~ msgid "move region(s)" -#~ msgstr "Создать облаÑть" - -#, fuzzy -#~ msgid "range selection" -#~ msgstr "ВоÑпроизвеÑти выделенное" - -#~ msgid "trim selection start" -#~ msgstr "начало обрезаемого выделениÑ" - -#~ msgid "trim selection end" -#~ msgstr "конец обрезаемого выделениÑ" - -#~ msgid "move selection" -#~ msgstr "Ñмещение выделениÑ" - -#~ msgid "trim region start to edit point" -#~ msgstr "обрезка от начала облаÑти до курÑора редактора" - -#~ msgid "trim region end to edit point" -#~ msgstr "обрезка от конца облаÑти до курÑора редактора" - -#~ msgid "paste chunk" -#~ msgstr "вÑтавка фрагмента" - -#~ msgid "clear playlist" -#~ msgstr "очиÑтка ÑпиÑка воÑпр." - -#~ msgid "toggle fade in active" -#~ msgstr "переключение активноÑти фейда нараÑтаниÑ" - -#~ msgid "toggle fade out active" -#~ msgstr "переключение активноÑти фейда затуханиÑ" - -#~ msgid "Split & Later Section Moves" -#~ msgstr "РазделитьÑÑ Ñ Ð¿ÐµÑ€ÐµÐ¼ÐµÑ‰ÐµÐ½Ð¸ÐµÐ¼ вторых чаÑтей" - -#~ msgid "Name for Chunk:" -#~ msgstr "Ð˜Ð¼Ñ Ñ„Ñ€Ð°Ð³Ð¼ÐµÐ½Ñ‚Ð°:" - -#~ msgid "Create Chunk" -#~ msgstr "Создать фрагмент" - -#~ msgid "Forget it" -#~ msgstr "Забыть" - -#~ msgid "Semitones (12TET)" -#~ msgstr "Полутона (12TET):" - -#, fuzzy -#~ msgid "TimeFXProgress" -#~ msgstr "TimeStretchProgress" - -#~ msgid "22.05kHz" -#~ msgstr "22,05 КГц" - -#~ msgid "44.1kHz" -#~ msgstr "44,1 КГц" - -#~ msgid "48kHz" -#~ msgstr "48 КГц" - -#~ msgid "88.2kHz" -#~ msgstr "88,2 КГц" - -#~ msgid "96kHz" -#~ msgstr "96 КГц" - -#~ msgid "192kHz" -#~ msgstr "192 КГц" - -#~ msgid "intermediate" -#~ msgstr "Среднее" - -#~ msgid "Shaped Noise" -#~ msgstr "По очертаниÑм" - -#~ msgid "stereo" -#~ msgstr "Стерео" - -#~ msgid "CUE" -#~ msgstr "CUE" - -#~ msgid "TOC" -#~ msgstr "TOC" - -#~ msgid "CD Marker File Type" -#~ msgstr "Тип файла меток CD" - -#~ msgid "Sample Endianness" -#~ msgstr "Байтовый порÑдок ÑÑмпла" - -#~ msgid "Conversion Quality" -#~ msgstr "КачеÑтво преобразованиÑ" - -#~ msgid "Dither Type" -#~ msgstr "Подмешивание шума" - -#~ msgid "Export CD Marker File Only" -#~ msgstr "ЭкÑпортировать только файл меток CD" - -#~ msgid "Specific tracks ..." -#~ msgstr "Отдельные дорожки..." - -#~ msgid "Editor: cannot open \"%1\" as export file for CD toc file" -#~ msgstr "Редактор: невозможно открыть \"%1\" как файл ÑкÑпорта CD toc" - -#~ msgid "Editor: cannot open \"%1\" as export file for CD cue file" -#~ msgstr "Редактор: невозможно открыть \"%1\" как файл ÑкÑпорта CD cue" - -#~ msgid "Not connected to audioengine" -#~ msgstr "Ðет ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ñо звуковым движком" - -#~ msgid "Ardour cannot export audio when disconnected" -#~ msgstr "Ardour не может ÑкÑпортировать звук, будучи отключенным от JACK." - -#~ msgid "Please enter a valid filename." -#~ msgstr "Введите корректное Ð¸Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð°" - -#~ msgid "Please specify a complete filename for the audio file." -#~ msgstr "Укажите полное Ð¸Ð¼Ñ Ð·Ð²ÑƒÐºÐ¾Ð²Ð¾Ð³Ð¾ файла" - -#~ msgid "Cannot write file in: " -#~ msgstr "Ðевозможно запиÑать файлв в:" - -#~ msgid "ardour: export ranges" -#~ msgstr "ЭкÑпорт облаÑтей" - -#~ msgid "Export to Directory" -#~ msgstr "ЭкÑпортировать в каталог" - -#~ msgid "Please enter a valid target directory." -#~ msgstr "Введите корректный конечный каталог." - -#~ msgid "add gain automation event" -#~ msgstr "добавление ÑÐ¾Ð±Ñ‹Ñ‚Ð¸Ñ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ð·Ð°Ñ†Ð¸Ð¸ уÑилениÑ" - -#~ msgid "0.5 seconds" -#~ msgstr "0,5 Ñекунды" - -#~ msgid "1.5 seconds" -#~ msgstr "1,5 Ñекунды" - -#~ msgid "2 seconds" -#~ msgstr "2 Ñекунды" - -#~ msgid "2.5 seconds" -#~ msgstr "2,5 Ñекунды" - -#~ msgid "3 seconds" -#~ msgstr "3 Ñекунды" - -#, fuzzy -#~ msgid "Image Frame" -#~ msgstr "Кадр" - -#~ msgid "Disconnect All" -#~ msgstr "ОтÑоединить вÑе" - -#~ msgid "Available connections" -#~ msgstr "ДоÑтупные ÑоединениÑ" - -#~ msgid "ardour: " -#~ msgstr "ardour: " - -#~ msgid "Ardour key bindings file not found at \"%1\" or contains errors." -#~ msgstr "" -#~ "Файл комбинаций клавиш Ð´Ð»Ñ Ardour не найден в каталоге \"%1\" или " -#~ "Ñодержит ошибки." - -#~ msgid "Go" -#~ msgstr "Перейти к" - -#~ msgid "Add New Location" -#~ msgstr "Добавить новый интервал" - -#~ msgid "Location (CD Index) Markers" -#~ msgstr "Метки позиций (индекÑов CD)" - -#~ msgid "Range (CD Track) Markers" -#~ msgstr "Метки выделений (дорожек CD)" - -#~ msgid "Ardour/GTK " -#~ msgstr "Ardour/GTK " - -#~ msgid "Click to choose outputs" -#~ msgstr "Щелкните Ð´Ð»Ñ Ð²Ñ‹Ð±Ð¾Ñ€Ð° выходов" - -#, fuzzy -#~ msgid "Varispeed" -#~ msgstr "МакÑ. ÑкороÑть" - -#~ msgid "could not register new ports required for that connection" -#~ msgstr "Ðе удалоÑÑŒ зарегиÑтрировать новые порты Ð´Ð»Ñ Ñтого ÑоединениÑ" - -#~ msgid "Invert Polarity" -#~ msgstr "Развернуть полÑрноÑть" - -#~ msgid "Name :" -#~ msgstr "ИмÑ:" - -#~ msgid "Template :" -#~ msgstr "Шаблон:" - -#~ msgid "Recent:" -#~ msgstr "Ðедавние:" - -#~ msgid "Session Control" -#~ msgstr "Контроль ÑеанÑа" - -#~ msgid "select directory" -#~ msgstr "Выберите каталог" - -#~ msgid "Start Audio Engine" -#~ msgstr "ЗапуÑтить звуковой движок" - -#~ msgid "Paths/Files" -#~ msgstr "РаÑположениÑ" - -#~ msgid "Kbd/Mouse" -#~ msgstr "Клавиатура и мышь" - -#~ msgid "session RAID path" -#~ msgstr "РаÑположение RAID-ÑеанÑов" - -#~ msgid "History depth (commands)" -#~ msgstr "Глубина иÑтории дейÑтвий (в командах)" - -#~ msgid "Saved history depth (commands)" -#~ msgstr "СохранÑÐµÐ¼Ð°Ñ Ð¸ÑÑ‚Ð¾Ñ€Ð¸Ñ Ð´ÐµÐ¹Ñтвий (в командах)" - -#~ msgid "SMPTE Offset" -#~ msgstr "Смещение SMPTE" - -#, fuzzy -#~ msgid "Offline" -#~ msgstr "линейное" - -#, fuzzy -#~ msgid "" -#~ "Trace\n" -#~ "Input" -#~ msgstr "%1 вход" - -#, fuzzy -#~ msgid "" -#~ "Trace\n" -#~ "Output" -#~ msgstr "%1 выход" - -#, fuzzy -#~ msgid "" -#~ "MIDI Parameter\n" -#~ "Control" -#~ msgstr "ИÑпользовать управление по MIDI" - -#, fuzzy -#~ msgid "online" -#~ msgstr "линейное" - -#, fuzzy -#~ msgid "offline" -#~ msgstr "линейное" - -#~ msgid "output" -#~ msgstr "выход" - -#~ msgid "" -#~ "The auditioner is a dedicated mixer strip used\n" -#~ "for listening to specific regions outside the context\n" -#~ "of the overall mix. It can be connected just like any\n" -#~ "other mixer strip." -#~ msgstr "" -#~ "Контрольный канал — Ñто Ñпециальный канал микшера, предназначенный \n" -#~ "Ð´Ð»Ñ Ð¿Ñ€Ð¾ÑÐ»ÑƒÑˆÐ¸Ð²Ð°Ð½Ð¸Ñ Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»Ñ‘Ð½Ð½Ñ‹Ñ… облаÑтей вне контекÑта общего микÑа. \n" -#~ "Его можно ÑоединÑть как любой другой канал микшера." - -#~ msgid "You need to select which line to edit" -#~ msgstr "Выберите редактируемую Ñтроку" - -#~ msgid "ardour: plugins" -#~ msgstr "Эффекты" - -#~ msgid "add automation event to " -#~ msgstr "добавить автомат. Ñобытие к" - -#, fuzzy -#~ msgid "ardour: weird plugin dialog" -#~ msgstr "ardour: раÑширениÑ" - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "The plugin has %2 inputs\n" -#~ "but at the insertion point, there are\n" -#~ "%3 active signal streams.\n" -#~ "\n" -#~ "This makes no sense - you are throwing away\n" -#~ "part of the signal." -#~ msgstr "" -#~ "Ð’Ñ‹ попыталиÑÑŒ добавить Ñффект (%1).\n" -#~ "У Ñффекта %2 входа, но в точке возврата\n" -#~ "%3 активных потока Ñигналов.\n" -#~ "\n" -#~ "Это не имеет ÑмыÑла — вы выкидываете чаÑть Ñигнала." - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "The plugin has %2 inputs\n" -#~ "but at the insertion point there are\n" -#~ "only %3 active signal streams.\n" -#~ "\n" -#~ "This makes no sense - unless the plugin supports\n" -#~ "side-chain inputs. A future version of Ardour will\n" -#~ "support this type of configuration." -#~ msgstr "" -#~ "Ð’Ñ‹ попыталиÑÑŒ добавить Ñффект (%1).\n" -#~ "У Ñффекта %2 входа, но в точке возврата\n" -#~ "только %3 активных потока Ñигналов.\n" -#~ "\n" -#~ "Это не имеет ÑмыÑла, только еÑли Ñффект не\n" -#~ "поддерживает side-chain входы. Ð’ будущем\n" -#~ "Ardour Ñможет поддерживать такие конфигурации." - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "\n" -#~ "The I/O configuration doesn't make sense:\n" -#~ "\n" -#~ "The plugin has %2 inputs and %3 outputs.\n" -#~ "The track/bus has %4 inputs and %5 outputs.\n" -#~ "The insertion point, has %6 active signals.\n" -#~ "\n" -#~ "Ardour does not understand what to do in such situations.\n" -#~ msgstr "" -#~ "Ð’Ñ‹ попыталиÑÑŒ добавить Ñффект (%1).\n" -#~ "\n" -#~ "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ I/O не умеет ÑмыÑла:\n" -#~ "\n" -#~ "У Ñффекта %2 входа и %3 выхода.\n" -#~ "У дорожки/шины %4 входа и %5 выхода.\n" -#~ "У точки возврата %6 активных Ñигналов.\n" -#~ "\n" -#~ "Ardour не понимает, что делать в таких ÑлучаÑÑ….\n" - -#~ msgid "Post-fader inserts, sends & plugins:" -#~ msgstr "ПоÑтфейдерные возвраты, поÑылы и Ñффекты:" - -#~ msgid "rename redirect" -#~ msgstr "Переименуйте перенаправление:" - -#~ msgid "" -#~ "Do you really want to remove all pre-fader redirects from this track?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Ð’Ñ‹ дейÑтвительно хотите удалить вÑе\n" -#~ "Ð¿ÐµÑ€ÐµÐ½Ð°Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ñ€ÐµÐ´Ñ„ÐµÐ¹Ð´ÐµÑ€Ð° из Ñтой дорожки?\n" -#~ "(отмена невозможна)" - -#~ msgid "" -#~ "Do you really want to remove all post-fader redirects from this track?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Ð’Ñ‹ дейÑтвительно хотите удалить вÑе\n" -#~ "Ð¿ÐµÑ€ÐµÐ½Ð°Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ð¾Ñтфейдера из Ñтой дорожки?\n" -#~ "(отмена невозможна)" - -#~ msgid "" -#~ "Do you really want to remove all pre-fader redirects from this bus?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Ð’Ñ‹ дейÑтвительно хотите удалить вÑе\n" -#~ "Ð¿ÐµÑ€ÐµÐ½Ð°Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ñ€ÐµÐ´Ñ„ÐµÐ¹Ð´ÐµÑ€Ð° из Ñтой шины?\n" -#~ "(отмена невозможна)" - -#~ msgid "" -#~ "Do you really want to remove all post-fader redirects from this bus?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Ð’Ñ‹ дейÑтвительно хотите удалить вÑе\n" -#~ "Ð¿ÐµÑ€ÐµÐ½Ð°Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ð¾Ñтфейдера из Ñтой шины?\n" -#~ "(отмена невозможна)" - -#~ msgid "Analysis" -#~ msgstr "Ðнализ" - -#~ msgid "Pre-fader Redirects" -#~ msgstr "Предфейдерные перенаправлениÑ" - -#~ msgid "Post-fader Redirects" -#~ msgstr "ПоÑлефейдерные перенаправлениÑ" - -#~ msgid "h" -#~ msgstr "в" - -#~ msgid "v" -#~ msgstr "п" - -#~ msgid "Display Height" -#~ msgstr "Ð’Ñ‹Ñота дорожки" - -#~ msgid "Visual options" -#~ msgstr "Параметры отображениÑ" - -#~ msgid "mute change" -#~ msgstr "Ñмена приглушенноÑти" - -#~ msgid "solo change" -#~ msgstr "Ñмена ÑолированиÑ" - -#~ msgid "Solo Lock" -#~ msgstr "Запереть Ñолирование" - -#~ msgid "mix group mute change" -#~ msgstr "переключение приглушенноÑти группы микÑа" - -#~ msgid "mix group rec-enable change" -#~ msgstr "переключение запиÑываемоÑти группы микÑа" - -#~ msgid "ardour: color selection" -#~ msgstr "ardour: выбор цвета" - -#~ msgid "New Name: " -#~ msgstr "Ðовое название: " - -#~ msgid "Play (double click)" -#~ msgstr "ВоÑпр. (двойной щелчок)" - -#~ msgid "n/a" -#~ msgstr "н/д" - -#~ msgid "at edit point" -#~ msgstr "под курÑор редактора" - -#~ msgid "at playhead" -#~ msgstr "под указатель" - -#~ msgid "Bar" -#~ msgstr "Такт" - -#~ msgid "Beat" -#~ msgstr "ДолÑ" - -#~ msgid "" -#~ "Do you really want to remove track \"%1\" ?\n" -#~ "(cannot be undone)" -#~ msgstr "" -#~ "Ð’Ñ‹ дейÑтвительно хотите удалить трек \"%1\" ?\n" -#~ "(отмена невозможна)" - -#~ msgid "ardour: connections" -#~ msgstr "Ardour — СоединениÑ" - -#~ msgid "Input Connections" -#~ msgstr "Входные ÑоединениÑ" - -#~ msgid "Output Connections" -#~ msgstr "Выходные ÑоединениÑ" - -#~ msgid "New Input" -#~ msgstr "Ðовый вход" - -#~ msgid "New Output" -#~ msgstr "Ðовый выход" - -#~ msgid "Add Port" -#~ msgstr "Добавить порт" - -#~ msgid "\"" -#~ msgstr "\"" - -#~ msgid "in %d" -#~ msgstr "вх %d" - -#~ msgid "out %d" -#~ msgstr "вых %d" - -#~ msgid "Name for new connection:" -#~ msgstr "Ð˜Ð¼Ñ Ð½Ð¾Ð²Ð¾Ð³Ð¾ ÑоединениÑ: " - -#~ msgid "open session" -#~ msgstr "Открыть ÑеанÑ" - -#~ msgid "NAME:" -#~ msgstr "ИМЯ:" - -#~ msgid "play" -#~ msgstr "воÑпроизвеÑти" - -#~ msgid "POSITION:" -#~ msgstr "ПОЛОЖЕÐИЕ:" - -#~ msgid "END:" -#~ msgstr "КОÐЕЦ:" - -#~ msgid "LENGTH:" -#~ msgstr "ДЛИÐÐ:" - -#~ msgid "SYNC POINT:" -#~ msgstr "ТОЧКРСИÐХРОÐИЗÐЦИИ:" - -#~ msgid "FILE START:" -#~ msgstr "ÐÐЧÐЛО ФÐЙЛÐ:" - -#~ msgid "Popup region editor" -#~ msgstr "Открыть редактор облаÑти" - -#~ msgid "Name New Location Marker" -#~ msgstr "Ðазвание метки позиции" - -#~ msgid "ardour: export region" -#~ msgstr "ЭкÑпорт облаÑти" - -#~ msgid "Add Input" -#~ msgstr "Добавить вход" - -#~ msgid "Add Output" -#~ msgstr "Добавить выход" - -#~ msgid "Remove Input" -#~ msgstr "Удалить вход" - -#~ msgid "Remove Output" -#~ msgstr "Удалить выход" - -#~ msgid "Shortcut Editor" -#~ msgstr "Редактор клавиатурных комбинаций" - -#~ msgid "" -#~ "You do not have write access to this session.\n" -#~ "This prevents the session from being loaded." -#~ msgstr "" -#~ "У Ð²Ð°Ñ Ð½ÐµÑ‚ прав запиÑи в Ñтот ÑеанÑ,\n" -#~ "поÑтому ÑÐµÐ°Ð½Ñ Ð½Ðµ может быть загружен." - -#~ msgid "file was" -#~ msgstr "файл был" - -#, fuzzy -#~ msgid "" -#~ "The following %1 %2 not in use and \n" -#~ "have been moved to:\n" -#~ "%3. \n" -#~ "\n" -#~ "Flushing the wastebasket will \n" -#~ "release an additional\n" -#~ "%4 %5bytes of disk space.\n" -#~ msgstr "" -#~ "Следующие %1 файлов не иÑпользуютÑÑ.\n" -#~ "ПоÑÐ»ÐµÐ´ÑƒÑŽÑ‰Ð°Ñ Ð¾Ñ‡Ð¸Ñтка корзины оÑвободит\n" -#~ "%2 мегабайт меÑта на диÑке." - -#, fuzzy -#~ msgid "" -#~ "The following %1 %2 deleted from\n" -#~ "%3,\n" -#~ "releasing %4 %5bytes of disk space" -#~ msgstr "" -#~ "Следующие %1 файлов были удалены, оÑвободив при Ñтом %2 Мб меÑта на диÑке" - -#~ msgid "Import/Export" -#~ msgstr "Импорт/ЭкÑпорт" - -#~ msgid "Show waveforms" -#~ msgstr "Показать форму Ñигнала" - -#~ msgid "gain" -#~ msgstr "УÑиление" - -#~ msgid "pan" -#~ msgstr "Панорама" - -#~ msgid "Use Region Fades (global)" -#~ msgstr "ИÑпользовать фейды облаÑти (глобально)" - -#~ msgid " Input" -#~ msgstr " Вход" - -#, fuzzy -#~ msgid "Copyright (C) 1999-2009 Paul Davis\n" -#~ msgstr "ÐвторÑкие права © 1999-2006 Paul Davis" - -#, fuzzy -#~ msgid "Line" -#~ msgstr "ЛинейнаÑ" - -#~ msgid "Type:" -#~ msgstr "Тип:" - -#, fuzzy -#~ msgid "Bundle manager" -#~ msgstr "СвеÑти выделение" - -#, fuzzy -#~ msgid "Realtime Export" -#~ msgstr "ОÑтановить ÑкÑпорт" - -#, fuzzy -#~ msgid "Fast Export" -#~ msgstr "ОÑтановить ÑкÑпорт" - -#~ msgid "Ardour" -#~ msgstr "Ardour" - -#, fuzzy -#~ msgid "Show '%s' sources" -#~ msgstr "Показывать линии тактов" - -#, fuzzy -#~ msgid "Show '%s' destinations" -#~ msgstr "Показать ÑущеÑтвующую автоматизацию" - -#, fuzzy -#~ msgid "New Return ..." -#~ msgstr "Добавить поÑыл..." - -#, fuzzy -#~ msgid " input: " -#~ msgstr "вход" - -#, fuzzy -#~ msgid " output: " -#~ msgstr "%1 выход" - -#, fuzzy -#~ msgid "Ardour Preferences" -#~ msgstr "ardour: переименовать облаÑть" - -#, fuzzy -#~ msgid "Route group" -#~ msgstr "Ðет группы" - -#~ msgid "" -#~ "German:\n" -#~ "\tKarsten Petersen \n" -#~ msgstr "" -#~ "Ðемецкий:\n" -#~ "\tKarsten Petersen \n" - -#~ msgid "Manual Setup" -#~ msgstr "Ð ÑƒÑ‡Ð½Ð°Ñ Ð½Ð°Ñтройка" - -#~ msgid "Name (template)" -#~ msgstr "Ð˜Ð¼Ñ (шаблона)" - -#~ msgid "Autuo Play" -#~ msgstr "ÐвтовоÑпр." - -#~ msgid "programming error: impossible control method" -#~ msgstr "ошибка в программе: impossible control method" - -#~ msgid "KeyMouse Actions" -#~ msgstr "Клавиатурные комбинации" - -#~ msgid "Data" -#~ msgstr "Данные" - -#~ msgid "Colors" -#~ msgstr "Цвета" - -#~ msgid "Software monitoring" -#~ msgstr "Программный контроль" - -#~ msgid "ardour: clock" -#~ msgstr "ardour: Ñчётчик" - -#~ msgid "track height" -#~ msgstr "Ð’Ñ‹Ñота дорожки" - -#~ msgid "Edit Cursor" -#~ msgstr "курÑору" - -#~ msgid "ardour: editor" -#~ msgstr "ardour: редактор" - -#~ msgid "ardour: editor: " -#~ msgstr "ardour: редактор: " - -#, fuzzy -#~ msgid "Analyze region" -#~ msgstr "ВоÑпроизвеÑти облаÑть" - -#~ msgid "Analyze range" -#~ msgstr "Проанализировать «кольцо»" - -#~ msgid "Select all between cursors" -#~ msgstr "Выделить вÑÑ‘ между курÑорами" - -#~ msgid "Paste at edit cursor" -#~ msgstr "Ð’Ñтавить под курÑор редактора" - -#~ msgid "Paste at mouse" -#~ msgstr "Ð’Ñтавить под курÑор мыши" - -#~ msgid "Duplicate how many times?" -#~ msgstr "КоличеÑтво повторов?" - -#~ msgid "Move edit cursor" -#~ msgstr "ПеремеÑтить курÑор редактора" - -#~ msgid "Edit Cursor to Next Region Start" -#~ msgstr "КурÑор редактора к началу Ñледующей облаÑти" - -#~ msgid "Edit Cursor to Next Region End" -#~ msgstr "КурÑор редактора к концу Ñледующей облаÑти" - -#~ msgid "Edit Cursor to Previous Region Start" -#~ msgstr "КурÑор редактора к началу предыдущей облаÑти" - -#~ msgid "Edit Cursor to Previous Region End" -#~ msgstr "КурÑор редактора к концу предыдущей облаÑти" - -#~ msgid "Edit Cursor to Range Start" -#~ msgstr "КурÑор редактора к началу облаÑти" - -#~ msgid "Edit Cursor to Range End" -#~ msgstr "КурÑор редактора к концу облаÑти" - -#, fuzzy -#~ msgid "Select All Between Cursors" -#~ msgstr "ВоÑпроизвеÑти от курÑора" - -#, fuzzy -#~ msgid "Add Location from Playhead" -#~ msgstr "ВоÑпроизвеÑти от указателÑ" - -#~ msgid "Center Edit Cursor" -#~ msgstr "КурÑор редактора по центру" - -#~ msgid "Edit to Playhead" -#~ msgstr "КурÑор редактора к указателю" - -#~ msgid "crop" -#~ msgstr "Обрезать" - -#~ msgid "Add External Audio" -#~ msgstr "Добавить внешний звуковой файл" - -#~ msgid "to Tracks" -#~ msgstr "в дорожки" - -#~ msgid "Import as a %1 region" -#~ msgstr "Импортировать как %1 облаÑть" - -#, fuzzy -#~ msgid "multichannel" -#~ msgstr "отмена" - -#~ msgid "Hide Mark" -#~ msgstr "Скрыть маркер" - -#~ msgid "ardour: rename mark" -#~ msgstr "ardour: переименовать маркер" - -#, fuzzy -#~ msgid "select on click" -#~ msgstr "ИÑпользовать как щелчок метронома" - -#, fuzzy -#~ msgid "cancel selection" -#~ msgstr "ВоÑпроизвеÑти выделенное" - -#, fuzzy -#~ msgid "these regions" -#~ msgstr "ВоÑпроизвеÑти выделенную облаÑть" - -#, fuzzy -#~ msgid "this region" -#~ msgstr "отключить воÑпроизведение Ñтой облаÑти" - -#, fuzzy -#~ msgid "Yes, destroy them." -#~ msgstr "Да" - -#, fuzzy -#~ msgid "select all between cursors" -#~ msgstr "ВоÑпроизвеÑти от курÑора" - -#~ msgid "ardour: rename region" -#~ msgstr "ardour: переименовать облаÑть" - -#, fuzzy -#~ msgid "Programming error. that region doesn't cover that position" -#~ msgstr "ошибка в программе: location/marker map does not contain location!" - -#, fuzzy -#~ msgid "set region sync position" -#~ msgstr "ОблаÑти/положение" - -#~ msgid "Place the edit cursor at the desired sync point" -#~ msgstr "ПомеÑтите курÑор на точку Ñинхронизации" - -#, fuzzy -#~ msgid "set sync from edit cursor" -#~ msgstr "ВоÑпроизвеÑти от курÑора" - -#, fuzzy -#~ msgid "ardour: freeze" -#~ msgstr "ardour: " - -#~ msgid "ardour: timestretch" -#~ msgstr "ardour: Ñффект timestretch" - -#~ msgid "KeyboardTarget: keyname \"%1\" is unknown." -#~ msgstr "KeyboardTarget: \"%1\" - неизвеÑтное имÑ." - -#~ msgid "You have %1 keys bound to \"mod1\"" -#~ msgstr "Ð”Ð»Ñ \"mod1\" назначено кнопок: %1" - -#~ msgid "You have %1 keys bound to \"mod2\"" -#~ msgstr "Ð”Ð»Ñ \"mod2\" назначено кнопок: %1" - -#~ msgid "You have %1 keys bound to \"mod3\"" -#~ msgstr "Ð”Ð»Ñ \"mod3\" назначено кнопок: %1" - -#~ msgid "You have %1 keys bound to \"mod4\"" -#~ msgstr "Ð”Ð»Ñ \"mod4\" назначено кнопок: %1" - -#~ msgid "You have %1 keys bound to \"mod5\"" -#~ msgstr "Ð”Ð»Ñ \"mod5\" назначено кнопок: %1" - -#~ msgid "Set" -#~ msgstr "УÑтановить" - -#~ msgid "ardour is killing itself for a clean exit\n" -#~ msgstr "ardour: принудительное завершение работы\n" - -#~ msgid "%d(%d): received signal %d\n" -#~ msgstr "%d(%d): принÑÑ‚ Ñигнал %d\n" - -#~ msgid "cannot set default signal mask (%1)" -#~ msgstr "cannot set default signal mask (%1)" - -#~ msgid "" -#~ "Without a UI style file, ardour will look strange.\n" -#~ " Please set ARDOUR3_UI_RC to point to a valid UI style file" -#~ msgstr "" -#~ "ГрафичеÑкий Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ Ardour будет выглÑдеть необычно\n" -#~ "без файла, определÑющего Ñтиль оформлениÑ.\n" -#~ "ПожалуйÑта, укажите его [файл] в переменной Ð¾ÐºÑ€ÑƒÐ¶ÐµÐ½Ð¸Ñ ARDOUR_UI_RC" - -#~ msgid "Could not connect to JACK server as \"%1\"" -#~ msgstr "Ðе удалоÑÑŒ ÑоединитьÑÑ Ñ Ñервером JACK как \"%1\"" - -#~ msgid "unknown strip width \"%1\" in XML GUI information" -#~ msgstr "неизвеÑÑ‚Ð½Ð°Ñ ÑˆÐ¸Ñ€Ð¸Ð½Ð° трека \"%1\" в XML опиÑании" - -#, fuzzy -#~ msgid "record" -#~ msgstr "ЗапиÑÑŒ" - -#~ msgid "*comments*" -#~ msgstr "*комментарии*" - -#~ msgid "ardour: mixer" -#~ msgstr "ardour: микшер" - -#~ msgid "ardour: mixer: " -#~ msgstr "ardour: микшер: " - -#~ msgid "ardour: options editor" -#~ msgstr "ardour: параметры программы" - -#~ msgid "Layers & Fades" -#~ msgstr "Слои и фейды" - -#~ msgid "ardour: playlists" -#~ msgstr "СпиÑки воÑпроизведениÑ" - -#~ msgid "ardour: playlist for " -#~ msgstr "ardour: ÑпиÑок воÑÐ¿Ñ€Ð¾Ð¸Ð·Ð²ÐµÐ´ÐµÐ½Ð¸Ñ Ð´Ð»Ñ " - -#~ msgid "Available LADSPA Plugins" -#~ msgstr "ДоÑтупные раÑÑˆÐ¸Ñ€ÐµÐ½Ð¸Ñ LADSPA" - -#~ msgid "VST" -#~ msgstr "VST" - -#~ msgid "AudioUnit" -#~ msgstr "AudioUnit" - -#, fuzzy -#~ msgid "ardour: %1" -#~ msgstr "ardour: " - -#~ msgid "ardour: region " -#~ msgstr "ardour: облаÑть " - -#~ msgid "ardour: track/bus inspector: " -#~ msgstr "ardour: инÑпектор дорожек/шин" - -#, fuzzy -#~ msgid "ardour: track/bus/inspector: no route selected" -#~ msgstr "ardour: параметры маршрутов: нет выбранных маршрутов" - -#, fuzzy -#~ msgid "Apply" -#~ msgstr "воÑпроизвеÑти" - -#~ msgid "Embed" -#~ msgstr "Ð’Ñтроить" - -#~ msgid "Link to an external file" -#~ msgstr "СоÑлатьÑÑ Ð½Ð° внешний файл" diff --git a/gtk2_ardour/po/sv.po b/gtk2_ardour/po/sv.po index 03f7db506f..1617b76ddf 100644 --- a/gtk2_ardour/po/sv.po +++ b/gtk2_ardour/po/sv.po @@ -132,11 +132,6 @@ msgstr "" msgid "Robert Jordens" msgstr "" -#: about.cc:151 -#, fuzzy -msgid "Stefan Kersten" -msgstr "efter volymreglage" - #: about.cc:152 msgid "Armand Klenk" msgstr "" @@ -213,11 +208,6 @@ msgstr "" msgid "Lincoln Spiteri" msgstr "" -#: about.cc:171 -#, fuzzy -msgid "Mike Start" -msgstr "Filstart:" - #: about.cc:172 msgid "Mark Stewart" msgstr "" @@ -349,20 +339,10 @@ msgstr "" "%1\n" "(kompilerat frÃ¥n revision %2)" -#: about.cc:589 -#, fuzzy -msgid "Config" -msgstr "Konfiguration:" - #: actions.cc:85 msgid "Loading menus from %1" msgstr "" -#: actions.cc:88 actions.cc:89 -#, fuzzy -msgid "badly formatted UI definition file: %1" -msgstr "kan ej öppna färgdefinitionsfil %1: %2" - #: actions.cc:91 msgid "%1 menu definition file not found" msgstr "" @@ -391,21 +371,6 @@ msgstr "" msgid "Audio Tracks" msgstr "LjudspÃ¥r" -#: add_route_dialog.cc:77 -#, fuzzy -msgid "MIDI Tracks" -msgstr "MIDI-spÃ¥rare" - -#: add_route_dialog.cc:78 -#, fuzzy -msgid "Audio+MIDI Tracks" -msgstr "LjudspÃ¥r" - -#: add_route_dialog.cc:79 -#, fuzzy -msgid "Busses" -msgstr "buss(ar)" - #: add_route_dialog.cc:101 msgid "Add:" msgstr "Lägg till" @@ -443,16 +408,6 @@ msgstr "LjudspÃ¥r" msgid "MIDI" msgstr "" -#: add_route_dialog.cc:217 add_route_dialog.cc:230 add_route_dialog.cc:300 -#, fuzzy -msgid "Audio+MIDI" -msgstr "LjudspÃ¥r" - -#: add_route_dialog.cc:218 add_route_dialog.cc:233 add_route_dialog.cc:301 -#, fuzzy -msgid "Bus" -msgstr "Bussar" - #: add_route_dialog.cc:260 msgid "" "Audio+MIDI tracks are intended for use ONLY with plugins that use " @@ -511,21 +466,6 @@ msgstr "12 kanaler" msgid "Custom" msgstr "Manuellt" -#: add_route_dialog.cc:508 add_route_dialog.cc:524 route_group_menu.cc:81 -#, fuzzy -msgid "New Group..." -msgstr "Ny grupp..." - -#: add_route_dialog.cc:512 route_group_menu.cc:85 -#, fuzzy -msgid "No Group" -msgstr "Ingen grupp" - -#: add_route_dialog.cc:588 -#, fuzzy -msgid "-none-" -msgstr "ingen" - #: ambiguous_file_dialog.cc:30 msgid "Ambiguous File" msgstr "" @@ -605,26 +545,6 @@ msgstr "Ã…teranalysera data" msgid "button cannot watch state of non-existing Controllable\n" msgstr "" -#: ardour_ui.cc:180 -#, fuzzy -msgid "audition" -msgstr "Avlyssna" - -#: ardour_ui.cc:181 -#, fuzzy -msgid "solo" -msgstr "Sololäge" - -#: ardour_ui.cc:182 -#, fuzzy -msgid "feedback" -msgstr "Gensvar" - -#: ardour_ui.cc:187 speaker_dialog.cc:36 -#, fuzzy -msgid "Speaker Configuration" -msgstr "Kanalkonfiguration" - #: ardour_ui.cc:188 theme_manager.cc:56 theme_manager.cc:64 msgid "Theme Manager" msgstr "Färgtema" @@ -637,11 +557,6 @@ msgstr "Kortkommandon" msgid "Preferences" msgstr "Inställningar" -#: ardour_ui.cc:191 ardour_ui.cc:196 -#, fuzzy -msgid "Add Tracks/Busses" -msgstr "SpÃ¥r/Bussar" - #: ardour_ui.cc:192 msgid "About" msgstr "Om" @@ -666,16 +581,6 @@ msgstr "Buntar" msgid "Big Clock" msgstr "Stor klocka" -#: ardour_ui.cc:199 -#, fuzzy -msgid "Audio Connections" -msgstr "Anslutningar" - -#: ardour_ui.cc:200 -#, fuzzy -msgid "MIDI Connections" -msgstr "Anslutningar" - #: ardour_ui.cc:202 msgid "Errors" msgstr "" @@ -684,11 +589,6 @@ msgstr "" msgid "Starting audio engine" msgstr "Startar ljudsystemet" -#: ardour_ui.cc:758 startup.cc:638 -#, fuzzy -msgid "%1 is ready for use" -msgstr "Ardour är redo att användas" - #: ardour_ui.cc:806 msgid "" "WARNING: Your system has a limit for maximum amount of locked memory. This " @@ -702,86 +602,6 @@ msgstr "" msgid "Do not show this window again" msgstr "" -#: ardour_ui.cc:865 -#, fuzzy -msgid "Don't quit" -msgstr "Stäng inte" - -#: ardour_ui.cc:866 -#, fuzzy -msgid "Just quit" -msgstr "Stäng utan att spara" - -#: ardour_ui.cc:867 -#, fuzzy -msgid "Save and quit" -msgstr "Spara och stäng" - -#: ardour_ui.cc:877 -#, fuzzy -msgid "" -"%1 was unable to save your session.\n" -"\n" -"If you still wish to quit, please use the\n" -"\n" -"\"Just quit\" option." -msgstr "" -"Ardour kunde inte spara din session.\n" -"\n" -"Om du fortfarande vill avsluta, välj\n" -"\n" -"\"Avsluta bara\"-alternativet." - -#: ardour_ui.cc:908 -#, fuzzy -msgid "Please wait while %1 cleans up..." -msgstr "Vänta medan Ardour laddar visuell data..." - -#: ardour_ui.cc:925 -#, fuzzy -msgid "Unsaved Session" -msgstr "Ny session" - -#: ardour_ui.cc:946 -#, fuzzy -msgid "" -"The session \"%1\"\n" -"has not been saved.\n" -"\n" -"Any changes made this time\n" -"will be lost unless you save it.\n" -"\n" -"What do you want to do?" -msgstr "" -"%1\n" -"\"%2\"\n" -"har ej sparats.\n" -"\n" -"Ändringar du gjort kommer\n" -"att förloras om du inte sparar.\n" -"\n" -"Vad vill du göra?" - -#: ardour_ui.cc:949 -#, fuzzy -msgid "" -"The snapshot \"%1\"\n" -"has not been saved.\n" -"\n" -"Any changes made this time\n" -"will be lost unless you save it.\n" -"\n" -"What do you want to do?" -msgstr "" -"%1\n" -"\"%2\"\n" -"har ej sparats.\n" -"\n" -"Ändringar du gjort kommer\n" -"att förloras om du inte sparar.\n" -"\n" -"Vad vill du göra?" - #: ardour_ui.cc:963 msgid "Prompter" msgstr "FrÃ¥ga" @@ -800,11 +620,6 @@ msgstr "" msgid "JACK: % kHz / %4.1f ms" msgstr "" -#: ardour_ui.cc:1078 export_video_dialog.cc:68 -#, fuzzy -msgid "File:" -msgstr "Filer" - #: ardour_ui.cc:1082 msgid "BWF" msgstr "" @@ -858,11 +673,6 @@ msgid "" "\">%%%" msgstr "" -#: ardour_ui.cc:1188 -#, fuzzy -msgid "Disk: Unknown" -msgstr "Utrymme: %02dh:%02dm:%02ds" - #: ardour_ui.cc:1190 msgid "Disk: 24hrs+" msgstr "" @@ -871,16 +681,6 @@ msgstr "" msgid "Disk: >24 hrs" msgstr "" -#: ardour_ui.cc:1219 -#, fuzzy, c-format -msgid "Disk: %02dh:%02dm:%02ds" -msgstr "Utrymme: %02dh:%02dm:%02ds" - -#: ardour_ui.cc:1245 -#, fuzzy, c-format -msgid "Timecode|TC: %s" -msgstr "Utrymme: %02dh:%02dm:%02ds" - #: ardour_ui.cc:1362 ardour_ui.cc:1371 startup.cc:1054 msgid "Recent Sessions" msgstr "Tidigare Sessioner" @@ -895,65 +695,10 @@ msgstr "" msgid "Open Session" msgstr "Öppna session" -#: ardour_ui.cc:1503 session_import_dialog.cc:169 -#: session_metadata_dialog.cc:729 startup.cc:1083 -#, fuzzy -msgid "%1 sessions" -msgstr "Sessionen" - #: ardour_ui.cc:1540 msgid "You cannot add a track without a session already loaded." msgstr "Du kan inte lägga till ett spÃ¥r utan en session laddad." -#: ardour_ui.cc:1548 -#, fuzzy -msgid "could not create %1 new mixed track" -msgid_plural "could not create %1 new mixed tracks" -msgstr[0] "kunde inte skapa nytt ljudspÃ¥r" -msgstr[1] "kunde inte skapa nytt ljudspÃ¥r" - -#: ardour_ui.cc:1554 ardour_ui.cc:1615 -#, fuzzy -msgid "" -"There are insufficient JACK ports available\n" -"to create a new track or bus.\n" -"You should save %1, exit and\n" -"restart JACK with more ports." -msgstr "" -"Det finns inte tillräckligt med JACK-portar\n" -"för att skapa ett nytt spÃ¥r eller en y buss.\n" -"Du bör spara, avsluta och\n" -"starta om JACK med fler portar." - -#: ardour_ui.cc:1589 -#, fuzzy -msgid "You cannot add a track or bus without a session already loaded." -msgstr "Du kan inte lägga till ett spÃ¥r utan en session laddad." - -#: ardour_ui.cc:1598 -#, fuzzy -msgid "could not create %1 new audio track" -msgid_plural "could not create %1 new audio tracks" -msgstr[0] "kunde inte skapa nytt ljudspÃ¥r" -msgstr[1] "kunde inte skapa nytt ljudspÃ¥r" - -#: ardour_ui.cc:1607 -#, fuzzy -msgid "could not create %1 new audio bus" -msgid_plural "could not create %1 new audio busses" -msgstr[0] "kunde inte skapa nytt ljudspÃ¥r" -msgstr[1] "kunde inte skapa nytt ljudspÃ¥r" - -#: ardour_ui.cc:1724 -#, fuzzy -msgid "" -"Please create one or more tracks before trying to record.\n" -"You can do this with the \"Add Track or Bus\" option in the Session menu." -msgstr "" -"Skapa 1 eller fler spÃ¥r\n" -"innan du försöker spela in.\n" -"Se Session-menyn." - #: ardour_ui.cc:2114 msgid "" "The audio backend (JACK) was shutdown because:\n" @@ -961,19 +706,6 @@ msgid "" "%1" msgstr "" -#: ardour_ui.cc:2116 -#, fuzzy -msgid "" -"JACK has either been shutdown or it\n" -"disconnected %1 because %1\n" -"was not fast enough. Try to restart\n" -"JACK, reconnect and save the session." -msgstr "" -"JACK har stängts av eller sÃ¥ har\n" -"det kopplat bort Ardour eftersom\n" -"Ardour inte var snabb nog. Du kan spara\n" -"och/eller försöka Ã¥teransluta till JACK ." - #: ardour_ui.cc:2142 msgid "Unable to start the session running" msgstr "Kan ej starta sessionen" @@ -996,25 +728,10 @@ msgstr "" msgid "Confirm Snapshot Overwrite" msgstr "" -#: ardour_ui.cc:2260 -#, fuzzy -msgid "A snapshot already exists with that name. Do you want to overwrite it?" -msgstr "Filen existerar redan, vill du skriva över den?" - #: ardour_ui.cc:2263 utils_videotl.cc:67 msgid "Overwrite" msgstr "" -#: ardour_ui.cc:2297 -#, fuzzy -msgid "Rename Session" -msgstr "Byt namn pÃ¥ region" - -#: ardour_ui.cc:2298 -#, fuzzy -msgid "New session name" -msgstr "Sessionens namn:" - #: ardour_ui.cc:2312 ardour_ui.cc:2692 ardour_ui.cc:2737 msgid "" "To ensure compatibility with various systems\n" @@ -1032,43 +749,10 @@ msgid "" "Things could be seriously messed up at this point" msgstr "" -#: ardour_ui.cc:2440 -#, fuzzy -msgid "Save Template" -msgstr "Spara mall..." - -#: ardour_ui.cc:2441 -#, fuzzy -msgid "Name for template:" -msgstr "Namn för mixmall: " - #: ardour_ui.cc:2442 msgid "-template" msgstr "-mall" -#: ardour_ui.cc:2480 -#, fuzzy -msgid "" -"This session\n" -"%1\n" -"already exists. Do you want to open it?" -msgstr "Filen existerar redan, vill du skriva över den?" - -#: ardour_ui.cc:2490 -#, fuzzy -msgid "Open Existing Session" -msgstr "Öppna en existerande session" - -#: ardour_ui.cc:2728 -#, fuzzy -msgid "There is no existing session at \"%1\"" -msgstr "Öppna en existerande session" - -#: ardour_ui.cc:2815 -#, fuzzy -msgid "Please wait while %1 loads your session" -msgstr "Vänta medan Ardour laddar din session" - #: ardour_ui.cc:2830 msgid "Port Registration Error" msgstr "" @@ -1081,31 +765,10 @@ msgstr "" msgid "Session \"%1 (snapshot %2)\" did not load successfully" msgstr "Session \"%1 (ögonblickskopia %2)\" kunde inte laddas" -#: ardour_ui.cc:2858 -#, fuzzy -msgid "Loading Error" -msgstr "programmeringsfel: " - #: ardour_ui.cc:2859 msgid "Click the Refresh button to try again." msgstr "" -#: ardour_ui.cc:2941 -#, fuzzy -msgid "Could not create session in \"%1\"" -msgstr "kunde inte ladda kommandopromptssessionen \"%1\"" - -#: ardour_ui.cc:3041 -#, fuzzy -msgid "No files were ready for clean-up" -msgstr "Inga ljudfiler var redo för rensning" - -#: ardour_ui.cc:3045 ardour_ui.cc:3055 ardour_ui.cc:3188 ardour_ui.cc:3195 -#: ardour_ui_ed.cc:104 -#, fuzzy -msgid "Clean-up" -msgstr "Upprensning" - #: ardour_ui.cc:3046 msgid "" "If this seems suprising, \n" @@ -1129,85 +792,10 @@ msgstr "" msgid "giga" msgstr "" -#: ardour_ui.cc:3116 -#, fuzzy -msgid "" -"The following file was deleted from %2,\n" -"releasing %3 %4bytes of disk space" -msgid_plural "" -"The following %1 files were deleted from %2,\n" -"releasing %3 %4bytes of disk space" -msgstr[0] "" -"Följande %1 %2 raderades frÃ¥n\n" -"%3,\n" -"vilket frigjorde %4 %5byte diskutrymme" -msgstr[1] "" -"Följande %1 %2 raderades frÃ¥n\n" -"%3,\n" -"vilket frigjorde %4 %5byte diskutrymme" - -#: ardour_ui.cc:3123 -#, fuzzy -msgid "" -"The following file was not in use and \n" -"has been moved to: %2\n" -"\n" -"After a restart of %5\n" -"\n" -"Session -> Clean-up -> Flush Wastebasket\n" -"\n" -"will release an additional %3 %4bytes of disk space.\n" -msgid_plural "" -"The following %1 files were not in use and \n" -"have been moved to: %2\n" -"\n" -"After a restart of %5\n" -"\n" -"Session -> Clean-up -> Flush Wastebasket\n" -"\n" -"will release an additional %3 %4bytes of disk space.\n" -msgstr[0] "" -"Följande %1 %2 användes inte \n" -"och har flyttats till:\n" -"%3. \n" -"\n" -"Att tömma papperskorgen kommer att \n" -"frigöra ytterligarel\n" -"%4 %5byte diskutrymme.\n" -msgstr[1] "" -"Följande %1 %2 användes inte \n" -"och har flyttats till:\n" -"%3. \n" -"\n" -"Att tömma papperskorgen kommer att \n" -"frigöra ytterligarel\n" -"%4 %5byte diskutrymme.\n" - -#: ardour_ui.cc:3183 -#, fuzzy -msgid "Are you sure you want to clean-up?" -msgstr "Är du säker pÃ¥ att du vill rensa upp?" - -#: ardour_ui.cc:3190 -#, fuzzy -msgid "" -"Clean-up is a destructive operation.\n" -"ALL undo/redo information will be lost if you clean-up.\n" -"Clean-up will move all unused files to a \"dead\" location." -msgstr "" -"Att rensa är en destruktiv funktion.\n" -"ALL Ã¥ngra-/gör om-information kommer att gÃ¥ förlorad om du rensar.\n" -"Oanvända filer kommer att flyttas till \"dead_sounds\" i sessionens mapp." - #: ardour_ui.cc:3198 msgid "CleanupDialog" msgstr "Rensadialog" -#: ardour_ui.cc:3228 -#, fuzzy -msgid "Cleaned Files" -msgstr "rensade filer" - #: ardour_ui.cc:3245 msgid "deleted file" msgstr "raderad fil" @@ -1225,11 +813,6 @@ msgstr "" msgid "Do you really want to stop the Video Server?" msgstr "" -#: ardour_ui.cc:3345 -#, fuzzy -msgid "Yes, Stop It" -msgstr "Ja, radera den." - #: ardour_ui.cc:3371 msgid "The Video Server is already started." msgstr "" @@ -1266,68 +849,14 @@ msgstr "" msgid "could not open %1" msgstr "kunde inte öppna %1" -#: ardour_ui.cc:3501 -#, fuzzy -msgid "no video-file selected" -msgstr "Ingen rutt vald" - #: ardour_ui.cc:3673 msgid "Recording was stopped because your system could not keep up." msgstr "Inspelningen stoppades eftersom ditt system inte kunde hänga med." -#: ardour_ui.cc:3702 -#, fuzzy -msgid "" -"The disk system on your computer\n" -"was not able to keep up with %1.\n" -"\n" -"Specifically, it failed to write data to disk\n" -"quickly enough to keep up with recording.\n" -msgstr "" -"HÃ¥rddisksystemet pÃ¥ din dator\n" -"kunde inte matcha Ardour.\n" -"\n" -"Närmare bestämt, det kunde inte skriva data till disk\n" -"snabbt nog för att matcha inspelningen.\n" - -#: ardour_ui.cc:3721 -#, fuzzy -msgid "" -"The disk system on your computer\n" -"was not able to keep up with %1.\n" -"\n" -"Specifically, it failed to read data from disk\n" -"quickly enough to keep up with playback.\n" -msgstr "" -"HÃ¥rddisksystemet pÃ¥ din dator\n" -"kunde inte matcha Ardour.\n" -"\n" -"Närmare bestämt, det kunde inte läsa data frÃ¥n disk\n" -"snabbt nog för att matcha uppspelningen.\n" - #: ardour_ui.cc:3761 msgid "Crash Recovery" msgstr "" -#: ardour_ui.cc:3762 -#, fuzzy -msgid "" -"This session appears to have been in the\n" -"middle of recording when %1 or\n" -"the computer was shutdown.\n" -"\n" -"%1 can recover any captured audio for\n" -"you, or it can ignore it. Please decide\n" -"what you would like to do.\n" -msgstr "" -"Denna session tycks ha varit\n" -"mitt i inspelning när ardour eller\n" -"datorn stängdes av.\n" -"\n" -"Ardour kan Ã¥terhämta inspelade ljud Ã¥t\n" -"dig, eller ignorera dem. Markera\n" -"vad du vill göra.\n" - #: ardour_ui.cc:3774 msgid "Ignore crash data" msgstr "Ignorera kraschdata" @@ -1336,11 +865,6 @@ msgstr "Ignorera kraschdata" msgid "Recover from crash" msgstr "Ã…terhämta frÃ¥n krasch" -#: ardour_ui.cc:3795 -#, fuzzy -msgid "Sample Rate Mismatch" -msgstr "Samplingsfrekvens" - #: ardour_ui.cc:3796 msgid "" "This session was created with a sample rate of %1 Hz, but\n" @@ -1348,16 +872,6 @@ msgid "" "audio may be played at the wrong sample rate.\n" msgstr "" -#: ardour_ui.cc:3805 -#, fuzzy -msgid "Do not load session" -msgstr "Zooma in/ut till hela sessionen" - -#: ardour_ui.cc:3806 -#, fuzzy -msgid "Load session anyway" -msgstr "vid början" - #: ardour_ui.cc:3829 msgid "Could not disconnect from JACK" msgstr "Kunde inte koppla loss frÃ¥n JACK" @@ -1389,11 +903,6 @@ msgstr "Gränssnitt: kan ej konfigurera editorn" msgid "UI: cannot setup mixer" msgstr "Gränssnitt: kan inte konfigurera mixern" -#: ardour_ui2.cc:82 -#, fuzzy -msgid "UI: cannot setup meterbridge" -msgstr "Gränssnitt: kan inte konfigurera mixern" - #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "Spela frÃ¥n startmarkören" @@ -1422,23 +931,10 @@ msgstr "GÃ¥ till slutet av sessionen" msgid "Play loop range" msgstr "Spela loop-omfÃ¥ng" -#: ardour_ui2.cc:137 -#, fuzzy -msgid "" -"MIDI Panic\n" -"Send note off and reset controller messages on all MIDI channels" -msgstr "" -"Skicka 'note off' och nollställ kontrollmeddelanden pÃ¥ alla MIDI-kanaler" - #: ardour_ui2.cc:138 msgid "Return to last playback start when stopped" msgstr "Ã…tervänd till senaste startmarkörpunkten vid stopp" -#: ardour_ui2.cc:139 -#, fuzzy -msgid "Playhead follows Range Selections and Edits" -msgstr "Startmarkören till omfÃ¥ngstarten" - #: ardour_ui2.cc:140 msgid "Be sensible about input monitoring" msgstr "Rimlig inljudsmedhörning" @@ -1483,11 +979,6 @@ msgid "" "confirm; postfix the edit with '+' or '-' to enter delta times.\n" msgstr "" -#: ardour_ui2.cc:147 -#, fuzzy -msgid "Reset Level Meter" -msgstr "Nollställ konvolut" - #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "" @@ -1504,11 +995,6 @@ msgstr "" msgid "Auto Return" msgstr "AutoÃ¥tervänd" -#: ardour_ui2.cc:249 ardour_ui_ed.cc:380 -#, fuzzy -msgid "Follow Edits" -msgstr "Fokus: redigeringspunkten" - #: ardour_ui2.cc:628 rc_option_editor.cc:1004 rc_option_editor.cc:1022 #: rc_option_editor.cc:1025 rc_option_editor.cc:1027 rc_option_editor.cc:1029 #: rc_option_editor.cc:1037 rc_option_editor.cc:1045 rc_option_editor.cc:1047 @@ -1533,21 +1019,6 @@ msgstr "Förbereder mixern..." msgid "Reload Session History" msgstr "Laddar sessionshistoriken..." -#: ardour_ui_dialogs.cc:242 -#, fuzzy -msgid "Don't close" -msgstr "Stäng inte" - -#: ardour_ui_dialogs.cc:243 -#, fuzzy -msgid "Just close" -msgstr "stäng" - -#: ardour_ui_dialogs.cc:244 -#, fuzzy -msgid "Save and close" -msgstr "Spara och stäng" - #: ardour_ui_dialogs.cc:340 msgid "This screen is not tall enough to display the mixer window" msgstr "" @@ -1601,11 +1072,6 @@ msgstr "Insticksprogram" msgid "Metering" msgstr "NivÃ¥mätning" -#: ardour_ui_ed.cc:117 -#, fuzzy -msgid "Fall Off Rate" -msgstr "Nedfallshastighet" - #: ardour_ui_ed.cc:118 msgid "Hold Time" msgstr "HÃ¥llningslängd" @@ -1634,21 +1100,6 @@ msgstr "Stäng" msgid "Add Track or Bus..." msgstr "Lägg till spÃ¥r eller buss..." -#: ardour_ui_ed.cc:135 -#, fuzzy -msgid "Open Video" -msgstr "Öppna session" - -#: ardour_ui_ed.cc:138 -#, fuzzy -msgid "Remove Video" -msgstr "Ta bort fält" - -#: ardour_ui_ed.cc:141 -#, fuzzy -msgid "Export To Video File" -msgstr "Exportera till ljudfil(er)..." - #: ardour_ui_ed.cc:145 msgid "Snapshot..." msgstr "Ögonblickskopia..." @@ -1666,11 +1117,6 @@ msgstr "Byt namn..." msgid "Save Template..." msgstr "Spara mall..." -#: ardour_ui_ed.cc:160 -#, fuzzy -msgid "Metadata" -msgstr "Redigera metadata..." - #: ardour_ui_ed.cc:163 msgid "Edit Metadata..." msgstr "Redigera metadata..." @@ -1683,21 +1129,11 @@ msgstr "Importera metadata..." msgid "Export To Audio File(s)..." msgstr "Exportera till ljudfil(er)..." -#: ardour_ui_ed.cc:172 -#, fuzzy -msgid "Stem export..." -msgstr "Exportera..." - #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 #: export_video_dialog.cc:72 msgid "Export" msgstr "Exportera" -#: ardour_ui_ed.cc:178 -#, fuzzy -msgid "Clean-up Unused Sources..." -msgstr "Rensa oanvända källfiler..." - #: ardour_ui_ed.cc:182 msgid "Flush Wastebasket" msgstr "Töm papperskorgen" @@ -1727,26 +1163,6 @@ msgstr "Avsluta" msgid "Maximise Editor Space" msgstr "Helskärmsläge" -#: ardour_ui_ed.cc:227 -#, fuzzy -msgid "Show Toolbars" -msgstr "Visa zoom-verktygsraden" - -#: ardour_ui_ed.cc:230 mixer_ui.cc:1865 mixer_ui.cc:1871 -#, fuzzy -msgid "Window|Mixer" -msgstr "Fönster" - -#: ardour_ui_ed.cc:231 -#, fuzzy -msgid "Toggle Editor+Mixer" -msgstr "Växla redigerare eller mixer överst" - -#: ardour_ui_ed.cc:232 meterbridge.cc:230 meterbridge.cc:236 -#, fuzzy -msgid "Window|Meterbridge" -msgstr "Fönster" - #: ardour_ui_ed.cc:234 midi_tracer.cc:39 msgid "MIDI Tracer" msgstr "MIDI-spÃ¥rare" @@ -1755,11 +1171,6 @@ msgstr "MIDI-spÃ¥rare" msgid "Chat" msgstr "Chatt" -#: ardour_ui_ed.cc:238 -#, fuzzy -msgid "Help|Manual" -msgstr "Manuell" - #: ardour_ui_ed.cc:239 msgid "Reference" msgstr "Referens" @@ -1810,16 +1221,6 @@ msgstr "ÖvergÃ¥ng till Motsatt riktning" msgid "Play Loop Range" msgstr "Spela loop-omfÃ¥ng" -#: ardour_ui_ed.cc:289 -#, fuzzy -msgid "Play Selected Range" -msgstr "Markera omfÃ¥ng" - -#: ardour_ui_ed.cc:292 -#, fuzzy -msgid "Play Selection w/Preroll" -msgstr "Spela valda regioner" - #: ardour_ui_ed.cc:296 msgid "Enable Record" msgstr "TillÃ¥t inspelning" @@ -1915,11 +1316,6 @@ msgstr "Ut" msgid "Punch In/Out" msgstr "Inslag/utslag" -#: ardour_ui_ed.cc:365 -#, fuzzy -msgid "In/Out" -msgstr "Inslag/utslag" - #: ardour_ui_ed.cc:368 rc_option_editor.cc:1071 msgid "Click" msgstr "Klick" @@ -1932,20 +1328,10 @@ msgstr "Autoinljud" msgid "Auto Play" msgstr "Autospela" -#: ardour_ui_ed.cc:385 -#, fuzzy -msgid "Sync Startup to Video" -msgstr "Synka start till video" - #: ardour_ui_ed.cc:387 msgid "Time Master" msgstr "Huvudklocka" -#: ardour_ui_ed.cc:394 -#, fuzzy -msgid "Toggle Record Enable Track %1" -msgstr "Ändra inspelningsläge för SpÃ¥r1" - #: ardour_ui_ed.cc:401 msgid "Percentage" msgstr "Procent" @@ -1970,20 +1356,10 @@ msgstr "Använd MMC" msgid "Send MIDI Clock" msgstr "Skicka MIDI-klocka" -#: ardour_ui_ed.cc:414 -#, fuzzy -msgid "Send MIDI Feedback" -msgstr "Skicka MIDI-gensvar" - #: ardour_ui_ed.cc:420 msgid "Panic" msgstr "Panik!" -#: ardour_ui_ed.cc:560 -#, fuzzy -msgid "Wall Clock" -msgstr "GÃ¥ till väggklocka" - #: ardour_ui_ed.cc:561 msgid "Disk Space" msgstr "" @@ -1992,25 +1368,10 @@ msgstr "" msgid "DSP" msgstr "" -#: ardour_ui_ed.cc:563 -#, fuzzy -msgid "Buffers" -msgstr "Buffertstorlek" - #: ardour_ui_ed.cc:564 msgid "JACK Sampling Rate and Latency" msgstr "" -#: ardour_ui_ed.cc:565 -#, fuzzy -msgid "Timecode Format" -msgstr "Tidskod: rutor" - -#: ardour_ui_ed.cc:566 -#, fuzzy -msgid "File Format" -msgstr "Sampleformat" - #: ardour_ui_options.cc:65 msgid "" "It is not possible to use JACK as the the sync source\n" @@ -2029,16 +1390,6 @@ msgstr "Välj extern positionssynkronisering" msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "" -#: audio_clock.cc:1012 audio_clock.cc:1031 -#, fuzzy -msgid "--pending--" -msgstr "Stigande" - -#: audio_clock.cc:1083 -#, fuzzy -msgid "SR" -msgstr "H" - #: audio_clock.cc:1089 audio_clock.cc:1093 msgid "Pull" msgstr "" @@ -2064,11 +1415,6 @@ msgstr "Taktart" msgid "programming error: %1" msgstr "" -#: audio_clock.cc:1952 audio_clock.cc:1980 -#, fuzzy -msgid "programming error: %1 %2" -msgstr "programmeringsfel: " - #: audio_clock.cc:2048 editor.cc:236 export_timespan_selector.cc:98 msgid "Bars:Beats" msgstr "Takt:Slag" @@ -2077,16 +1423,6 @@ msgstr "Takt:Slag" msgid "Minutes:Seconds" msgstr "Minuter:Sekunder" -#: audio_clock.cc:2054 -#, fuzzy -msgid "Set From Playhead" -msgstr "Placera startmarkör" - -#: audio_clock.cc:2055 -#, fuzzy -msgid "Locate to This Time" -msgstr "Placera startmarkören här" - #: audio_region_editor.cc:63 control_point_dialog.cc:49 rhythm_ferret.cc:125 #: rhythm_ferret.cc:130 rhythm_ferret.cc:135 msgid "dB" @@ -2124,11 +1460,6 @@ msgstr "Panorering" msgid "automation event move" msgstr "automatiseringshändelse: förflyttning" -#: automation_line.cc:462 automation_line.cc:483 -#, fuzzy -msgid "automation range move" -msgstr "automatiseringsomfÃ¥ng: dragning" - #: automation_line.cc:823 region_gain_line.cc:73 msgid "remove control point" msgstr "ta bort kontrollpunkt" @@ -2137,11 +1468,6 @@ msgstr "ta bort kontrollpunkt" msgid "Ignoring illegal points on AutomationLine \"%1\"" msgstr "" -#: automation_region_view.cc:160 automation_time_axis.cc:583 -#, fuzzy -msgid "add automation event" -msgstr "lägg till automatiseringshändelse till" - #: automation_time_axis.cc:146 msgid "automation state" msgstr "automatiseringstillstÃ¥nd" @@ -2150,13 +1476,6 @@ msgstr "automatiseringstillstÃ¥nd" msgid "hide track" msgstr "dölj spÃ¥r" -#: automation_time_axis.cc:255 automation_time_axis.cc:307 -#: automation_time_axis.cc:496 gain_meter.cc:195 generic_pluginui.cc:456 -#: generic_pluginui.cc:746 panner_ui.cc:150 -#, fuzzy -msgid "Automation|Manual" -msgstr "Automatisering" - #: automation_time_axis.cc:257 automation_time_axis.cc:318 #: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 #: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 @@ -2198,11 +1517,6 @@ msgstr "Rensa" msgid "State" msgstr "TillstÃ¥nd" -#: automation_time_axis.cc:531 -#, fuzzy -msgid "Discrete" -msgstr "Koppla frÃ¥n" - #: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 #: editor.cc:1526 export_format_dialog.cc:476 msgid "Linear" @@ -2259,11 +1573,6 @@ msgstr "Ny" msgid "Bundle" msgstr "Bunt" -#: bundle_manager.cc:417 -#, fuzzy -msgid "Add Channel" -msgstr "3 kanaler" - #: bundle_manager.cc:424 msgid "Rename Channel" msgstr "Byt namn pÃ¥ kanal" @@ -2356,16 +1665,6 @@ msgstr "" msgid "color of fill" msgstr "" -#: configinfo.cc:28 -#, fuzzy -msgid "Build Configuration" -msgstr "Konfiguration:" - -#: control_point_dialog.cc:33 -#, fuzzy -msgid "Control point" -msgstr "ta bort kontrollpunkt" - #: control_point_dialog.cc:45 msgid "Value" msgstr "Värde" @@ -2382,11 +1681,6 @@ msgstr "" msgid "Set selected notes to this pitch" msgstr "" -#: edit_note_dialog.cc:47 -#, fuzzy -msgid "Set selected notes to this velocity" -msgstr "Valda spÃ¥r till logaritmisk vÃ¥gform" - #: edit_note_dialog.cc:49 msgid "Set selected notes to this time" msgstr "" @@ -2400,31 +1694,16 @@ msgstr "" msgid "Channel" msgstr "Kanal" -#: edit_note_dialog.cc:68 -#, fuzzy -msgid "Pitch" -msgstr "Tonhöjdsändring" - #: edit_note_dialog.cc:78 step_entry.cc:407 msgid "Velocity" msgstr "" -#: edit_note_dialog.cc:88 patch_change_dialog.cc:67 -#, fuzzy -msgid "Time" -msgstr "Tidskod" - #: edit_note_dialog.cc:98 editor_regions.cc:114 #: export_timespan_selector.cc:359 export_timespan_selector.cc:421 #: location_ui.cc:317 midi_list_editor.cc:114 time_info_box.cc:105 msgid "Length" msgstr "Längd" -#: edit_note_dialog.cc:165 -#, fuzzy -msgid "edit note" -msgstr "redigeringspunkten" - #: editor.cc:137 editor.cc:3429 msgid "CD Frames" msgstr "CD-frames" @@ -2654,11 +1933,6 @@ msgstr "SpÃ¥r & bussar" msgid "Snapshots" msgstr "Ögonblickskopior" -#: editor.cc:545 -#, fuzzy -msgid "Track & Bus Groups" -msgstr "SpÃ¥r & bussar" - #: editor.cc:546 msgid "Ranges & Marks" msgstr "OmfÃ¥ng & markörer" @@ -2744,91 +2018,26 @@ msgstr "Spela omfÃ¥ng" msgid "Loop Range" msgstr "Loopa omfÃ¥ng" -#: editor.cc:1862 editor_actions.cc:332 -#, fuzzy -msgid "Move Range Start to Previous Region Boundary" -msgstr "Startmarkören till föregÃ¥ende regiongränsen" - -#: editor.cc:1869 editor_actions.cc:339 -#, fuzzy -msgid "Move Range Start to Next Region Boundary" -msgstr "Startmarkören till nästa regiongränsen" - -#: editor.cc:1876 editor_actions.cc:346 -#, fuzzy -msgid "Move Range End to Previous Region Boundary" -msgstr "Startmarkören till föregÃ¥ende regiongränsen" - -#: editor.cc:1883 editor_actions.cc:353 -#, fuzzy -msgid "Move Range End to Next Region Boundary" -msgstr "Startmarkören till nästa regiongränsen" - -#: editor.cc:1889 -#, fuzzy -msgid "Convert to Region In-Place" -msgstr "Regionsynk." - -#: editor.cc:1890 -#, fuzzy -msgid "Convert to Region in Region List" -msgstr "Infoga region frÃ¥n regionlistan" - #: editor.cc:1893 editor_markers.cc:925 msgid "Select All in Range" msgstr "Markera allt i omfÃ¥nget" -#: editor.cc:1896 -#, fuzzy -msgid "Set Loop from Range" -msgstr "Ställ in loop frÃ¥n redigeringsomfÃ¥ng" - -#: editor.cc:1897 -#, fuzzy -msgid "Set Punch from Range" -msgstr "Ställ in inslags frÃ¥n redigeringsomfÃ¥ng" - #: editor.cc:1900 msgid "Add Range Markers" msgstr "Lägg till omfÃ¥ngsmarkörer" -#: editor.cc:1903 -#, fuzzy -msgid "Crop Region to Range" -msgstr "Beskär region till omfÃ¥ng" - -#: editor.cc:1904 -#, fuzzy -msgid "Fill Range with Region" -msgstr "Fyll omfÃ¥ng med region" - #: editor.cc:1905 editor_actions.cc:289 msgid "Duplicate Range" msgstr "Duplicera omfÃ¥ng" -#: editor.cc:1908 -#, fuzzy -msgid "Consolidate Range" -msgstr "Duplicera omfÃ¥ng" - #: editor.cc:1909 msgid "Consolidate Range With Processing" msgstr "" -#: editor.cc:1910 -#, fuzzy -msgid "Bounce Range to Region List" -msgstr "Separera omfÃ¥ng till regionlista" - #: editor.cc:1911 msgid "Bounce Range to Region List With Processing" msgstr "" -#: editor.cc:1912 editor_markers.cc:908 -#, fuzzy -msgid "Export Range..." -msgstr "Exportera omfÃ¥ng" - #: editor.cc:1927 editor.cc:2008 editor_actions.cc:281 msgid "Play From Edit Point" msgstr "Spela frÃ¥n redigeringspunkten" @@ -2930,26 +2139,6 @@ msgstr "Infoga vald region" msgid "Insert Existing Media" msgstr "Infoga existerande media" -#: editor.cc:1989 editor.cc:2045 -#, fuzzy -msgid "Nudge Entire Track Later" -msgstr "Knuffa spÃ¥ret framÃ¥t" - -#: editor.cc:1990 editor.cc:2046 -#, fuzzy -msgid "Nudge Track After Edit Point Later" -msgstr "Knuffa spÃ¥ret efter redigeringspunkten framÃ¥t" - -#: editor.cc:1991 editor.cc:2047 -#, fuzzy -msgid "Nudge Entire Track Earlier" -msgstr "Knuffa spÃ¥ret framÃ¥t" - -#: editor.cc:1992 editor.cc:2048 -#, fuzzy -msgid "Nudge Track After Edit Point Earlier" -msgstr "Knuffa spÃ¥ret efter redigeringspunkten framÃ¥t" - #: editor.cc:1994 editor.cc:2050 msgid "Nudge" msgstr "Knuffa" @@ -2958,16 +2147,6 @@ msgstr "Knuffa" msgid "Smart Mode (add Range functions to Object mode)" msgstr "" -#: editor.cc:3071 -#, fuzzy -msgid "Object Mode (select/move Objects)" -msgstr "Markera/flytta objekt eller omfÃ¥ng" - -#: editor.cc:3072 -#, fuzzy -msgid "Range Mode (select/move Ranges)" -msgstr "Markera/flytta objekt eller omfÃ¥ng" - #: editor.cc:3073 msgid "Draw/Edit MIDI Notes" msgstr "Rita/redigera MIDI-noter" @@ -2998,16 +2177,6 @@ msgid "" "Context-click for other operations" msgstr "" -#: editor.cc:3080 -#, fuzzy -msgid "Nudge Region/Selection Later" -msgstr "Knuffa region/markering framÃ¥t" - -#: editor.cc:3081 -#, fuzzy -msgid "Nudge Region/Selection Earlier" -msgstr "Knuffa region/markering framÃ¥t" - #: editor.cc:3082 editor_actions.cc:242 msgid "Zoom In" msgstr "Zooma in" @@ -3054,16 +2223,6 @@ msgstr "" msgid "malformed URL passed to drag-n-drop code" msgstr "" -#: editor.cc:3256 editor_actions.cc:291 -#, fuzzy -msgid "Command|Undo" -msgstr "kommandon" - -#: editor.cc:3258 -#, fuzzy -msgid "Command|Undo (%1)" -msgstr "Ã…ngra (%1)" - #: editor.cc:3265 editor_actions.cc:292 msgid "Redo" msgstr "Gör om" @@ -3076,37 +2235,6 @@ msgstr "Gör om (%1)" msgid "Duplicate" msgstr "Duplicera" -#: editor.cc:3287 -#, fuzzy -msgid "Number of duplications:" -msgstr "Antal portar:" - -#: editor.cc:3864 -#, fuzzy -msgid "Playlist Deletion" -msgstr "Spela markering" - -#: editor.cc:3865 -#, fuzzy -msgid "" -"Playlist %1 is currently unused.\n" -"If it is kept, its audio files will not be cleaned.\n" -"If it is deleted, audio files used by it alone will be cleaned." -msgstr "" -"Spellista %1 används inte.\n" -"Om den lämnas ifred kommer inga filer använda av den rensas.\n" -"Om den tas bort kommer filer som används av den att rensas." - -#: editor.cc:3875 -#, fuzzy -msgid "Delete Playlist" -msgstr "Radera spellista" - -#: editor.cc:3876 -#, fuzzy -msgid "Keep Playlist" -msgstr "BehÃ¥ll spellista" - #: editor.cc:3877 editor_audio_import.cc:581 editor_ops.cc:5856 #: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 msgid "Cancel" @@ -3124,11 +2252,6 @@ msgstr "kopiera spellistor" msgid "clear playlists" msgstr "rensa spellistor" -#: editor.cc:4687 -#, fuzzy -msgid "Please wait while %1 loads visual data." -msgstr "Vänta medan Ardour laddar visuell data..." - #: editor.cc:5492 editor_markers.cc:940 panner_ui.cc:393 processor_box.cc:2253 msgid "Edit..." msgstr "Redigera..." @@ -3147,16 +2270,6 @@ msgstr "Övertoningar" msgid "Move Selected Marker" msgstr "Flytta vald platsmarkör" -#: editor_actions.cc:92 -#, fuzzy -msgid "Select Range Operations" -msgstr "Markera omfÃ¥ngsÃ¥tgärder" - -#: editor_actions.cc:93 -#, fuzzy -msgid "Select Regions" -msgstr "Markerade regioner" - #: editor_actions.cc:94 msgid "Edit Point" msgstr "Redigeringspunkten" @@ -3169,11 +2282,6 @@ msgstr "Tona" msgid "Latch" msgstr "" -#: editor_actions.cc:97 editor_regions.cc:111 region_editor.cc:46 -#, fuzzy -msgid "Region" -msgstr "Regioner" - #: editor_actions.cc:98 msgid "Layering" msgstr "Lager" @@ -3210,11 +2318,6 @@ msgstr "" msgid "Zoom Focus" msgstr "Zoomfokus" -#: editor_actions.cc:109 -#, fuzzy -msgid "Locate to Markers" -msgstr "Placera startmarkör här" - #: editor_actions.cc:110 editor_actions.cc:539 msgid "Markers" msgstr "Markörer" @@ -3227,11 +2330,6 @@ msgstr "NivÃ¥mätarnedfall" msgid "Meter hold" msgstr "NivÃ¥mätartopphÃ¥llning" -#: editor_actions.cc:113 session_option_editor.cc:234 -#, fuzzy -msgid "MIDI Options" -msgstr "Diverse inställningar" - #: editor_actions.cc:114 msgid "Misc Options" msgstr "Diverse inställningar" @@ -3304,11 +2402,6 @@ msgstr "Verktyg" msgid "View" msgstr "Visa" -#: editor_actions.cc:142 -#, fuzzy -msgid "Zoom" -msgstr "Zooma in" - #: editor_actions.cc:148 msgid "Break drag or deselect all" msgstr "Avbryt dragmanöver eller välj ingenting" @@ -3373,21 +2466,6 @@ msgstr "Till nästa regiongräns (inget spÃ¥rval)" msgid "To Previous Region Boundary" msgstr "Till förra regiongränsen" -#: editor_actions.cc:169 -#, fuzzy -msgid "To Previous Region Boundary (No Track Selection)" -msgstr "Startmarkören till tidigare regiongränsen (inget spÃ¥rval)" - -#: editor_actions.cc:171 -#, fuzzy -msgid "To Next Region Start" -msgstr "till nästa regions början" - -#: editor_actions.cc:172 -#, fuzzy -msgid "To Next Region End" -msgstr "till nästa regions slut" - #: editor_actions.cc:173 msgid "To Next Region Sync" msgstr "Till nästa regionsynk." @@ -3396,26 +2474,6 @@ msgstr "Till nästa regionsynk." msgid "To Previous Region Start" msgstr "Till förra regionstart" -#: editor_actions.cc:176 -#, fuzzy -msgid "To Previous Region End" -msgstr "till föregÃ¥ende regionens slut" - -#: editor_actions.cc:177 -#, fuzzy -msgid "To Previous Region Sync" -msgstr "Till föregÃ¥ende regionens synk.-punkt" - -#: editor_actions.cc:179 -#, fuzzy -msgid "To Range Start" -msgstr "till omfÃ¥ngsmarkeringens början" - -#: editor_actions.cc:180 -#, fuzzy -msgid "To Range End" -msgstr "till omfÃ¥ngsmarkeringens slut" - #: editor_actions.cc:182 msgid "Playhead to Range Start" msgstr "Startmarkören till omfÃ¥ngstarten" @@ -3460,21 +2518,6 @@ msgstr "Välj föregÃ¥ende spÃ¥r eller buss" msgid "Toggle Record Enable" msgstr "Växla tillÃ¥t inspelning" -#: editor_actions.cc:204 -#, fuzzy -msgid "Toggle Solo" -msgstr "Växla inspelningläge" - -#: editor_actions.cc:206 -#, fuzzy -msgid "Toggle Mute" -msgstr "Växla aktiv" - -#: editor_actions.cc:208 -#, fuzzy -msgid "Toggle Solo Isolate" -msgstr "Solo-säker" - #: editor_actions.cc:213 msgid "Save View %1" msgstr "Spara vy %1" @@ -3487,30 +2530,10 @@ msgstr "GÃ¥ till vy %1" msgid "Locate to Mark %1" msgstr "Hoppa till markör %1" -#: editor_actions.cc:229 -#, fuzzy -msgid "Jump to Next Mark" -msgstr "Hoppa framÃ¥t till markör" - -#: editor_actions.cc:230 -#, fuzzy -msgid "Jump to Previous Mark" -msgstr "Beskär till föregÃ¥ende" - #: editor_actions.cc:231 msgid "Add Mark from Playhead" msgstr "Lägg till markör utifrÃ¥n startmarkören" -#: editor_actions.cc:233 -#, fuzzy -msgid "Nudge Next Later" -msgstr "Knuffa nästa framÃ¥t" - -#: editor_actions.cc:234 -#, fuzzy -msgid "Nudge Next Earlier" -msgstr "Knuffa nästa framÃ¥t" - #: editor_actions.cc:236 msgid "Nudge Playhead Forward" msgstr "Knuffa startmarkören framÃ¥t" @@ -3519,16 +2542,6 @@ msgstr "Knuffa startmarkören framÃ¥t" msgid "Nudge Playhead Backward" msgstr "Knuffa startmarkören bakÃ¥t" -#: editor_actions.cc:238 -#, fuzzy -msgid "Playhead To Next Grid" -msgstr "Startmarkören till nästa regionslut" - -#: editor_actions.cc:239 -#, fuzzy -msgid "Playhead To Previous Grid" -msgstr "Startmarkören till föregÃ¥ende regionslutet" - #: editor_actions.cc:244 msgid "Zoom to Region" msgstr "Zooma till region" @@ -3541,16 +2554,6 @@ msgstr "Zooma till region (bredd och höjd)" msgid "Toggle Zoom State" msgstr "Växla zoomtillstÃ¥nd" -#: editor_actions.cc:248 -#, fuzzy -msgid "Expand Track Height" -msgstr "Expandera spÃ¥r" - -#: editor_actions.cc:249 -#, fuzzy -msgid "Shrink Track Height" -msgstr "Krymp spÃ¥r" - #: editor_actions.cc:251 msgid "Move Selected Tracks Up" msgstr "Flytta valda spÃ¥r uppÃ¥t" @@ -3615,16 +2618,6 @@ msgstr "Ställ in loop frÃ¥n redigeringsomfÃ¥ng" msgid "Set Punch from Edit Range" msgstr "Ställ in inslags frÃ¥n redigeringsomfÃ¥ng" -#: editor_actions.cc:280 -#, fuzzy -msgid "Play Selected Regions" -msgstr "Spela valda regioner" - -#: editor_actions.cc:282 -#, fuzzy -msgid "Play from Edit Point and Return" -msgstr "Spela frÃ¥n redigeringspunkten & Ã¥tervänd" - #: editor_actions.cc:284 msgid "Play Edit Range" msgstr "Spela redigeringsomfÃ¥nget" @@ -3637,11 +2630,6 @@ msgstr "Startmarkören till mus" msgid "Active Marker to Mouse" msgstr "Aktiv markör till musen" -#: editor_actions.cc:294 -#, fuzzy -msgid "Export Audio" -msgstr "Exportera session" - #: editor_actions.cc:295 export_dialog.cc:406 msgid "Export Range" msgstr "Exportera omfÃ¥ng" @@ -3658,25 +2646,10 @@ msgstr "Separera utifrÃ¥n loopomfÃ¥nget" msgid "Crop" msgstr "Beskär" -#: editor_actions.cc:315 -#, fuzzy -msgid "Set Tempo from Edit Range = Bar" -msgstr "Sätt tempo frÃ¥n redigeringsomfÃ¥ng = takt" - #: editor_actions.cc:317 msgid "Log" msgstr "Logg" -#: editor_actions.cc:320 -#, fuzzy -msgid "Move Later to Transient" -msgstr "GÃ¥ framÃ¥t till transient" - -#: editor_actions.cc:321 -#, fuzzy -msgid "Move Earlier to Transient" -msgstr "GÃ¥ framÃ¥t till transient" - #: editor_actions.cc:325 msgid "Start Range" msgstr "Börja omfÃ¥ng" @@ -3735,11 +2708,6 @@ msgstr "Större" msgid "Small" msgstr "Liten" -#: editor_actions.cc:392 -#, fuzzy -msgid "Sound Selected MIDI Notes" -msgstr "ÅšlÃ¥ an noter" - #: editor_actions.cc:397 msgid "Zoom Focus Left" msgstr "Zoomfokus: vänster" @@ -3764,11 +2732,6 @@ msgstr "Zoomfokus: mus" msgid "Zoom Focus Edit Point" msgstr "Zoomfokus: redigeringspunkten" -#: editor_actions.cc:404 -#, fuzzy -msgid "Next Zoom Focus" -msgstr "Zoomfokus" - #: editor_actions.cc:410 msgid "Smart Object Mode" msgstr "" @@ -3785,11 +2748,6 @@ msgstr "Objektverktyg" msgid "Range Tool" msgstr "OmfÃ¥ngsverktyg" -#: editor_actions.cc:429 -#, fuzzy -msgid "Note Drawing Tool" -msgstr "Volymverktyg" - #: editor_actions.cc:435 msgid "Gain Tool" msgstr "Volymverktyg" @@ -3798,11 +2756,6 @@ msgstr "Volymverktyg" msgid "Zoom Tool" msgstr "Zoomverktyg" -#: editor_actions.cc:447 -#, fuzzy -msgid "Audition Tool" -msgstr "Avlyssna" - #: editor_actions.cc:453 msgid "Time FX Tool" msgstr "TidsFX-verktyg" @@ -3856,16 +2809,6 @@ msgstr "Nästa fästläge" msgid "Next Snap Choice" msgstr "Nästa fästlägealternativ" -#: editor_actions.cc:491 -#, fuzzy -msgid "Next Musical Snap Choice" -msgstr "Nästa fästlägealternativ" - -#: editor_actions.cc:492 -#, fuzzy -msgid "Previous Snap Choice" -msgstr "Nästa fästlägealternativ" - #: editor_actions.cc:493 msgid "Previous Musical Snap Choice" msgstr "" @@ -3894,16 +2837,6 @@ msgstr "Sekunder" msgid "Snap to Minutes" msgstr "Minuter" -#: editor_actions.cc:505 -#, fuzzy -msgid "Snap to One Twenty Eighths" -msgstr "Ã…ttondelar" - -#: editor_actions.cc:506 -#, fuzzy -msgid "Snap to Sixty Fourths" -msgstr "Sjättedelar" - #: editor_actions.cc:507 msgid "Snap to Thirty Seconds" msgstr "Trettio sekunder" @@ -3928,11 +2861,6 @@ msgstr "Sextondelar" msgid "Snap to Fourteenths" msgstr "Fjortondelar" -#: editor_actions.cc:513 -#, fuzzy -msgid "Snap to Twelfths" -msgstr "Tolvdelar" - #: editor_actions.cc:514 msgid "Snap to Tenths" msgstr "Tiondelar" @@ -4005,44 +2933,14 @@ msgstr "Loop-/inslagsmarkörer" msgid "Min:Sec" msgstr "Min:sek" -#: editor_actions.cc:547 editor_actions.cc:550 -#, fuzzy -msgid "Video Monitor" -msgstr "Medhörning" - #: editor_actions.cc:549 rc_option_editor.cc:1842 msgid "Video" msgstr "" -#: editor_actions.cc:552 -#, fuzzy -msgid "Always on Top" -msgstr "Placera överst" - -#: editor_actions.cc:554 -#, fuzzy -msgid "Frame number" -msgstr "SpÃ¥rnummer" - -#: editor_actions.cc:555 -#, fuzzy -msgid "Timecode Background" -msgstr "Tidskod: sekunder" - #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" -#: editor_actions.cc:557 -#, fuzzy -msgid "Letterbox" -msgstr "bättre" - -#: editor_actions.cc:558 -#, fuzzy -msgid "Original Size" -msgstr "Ursprunglig position" - #: editor_actions.cc:608 msgid "Sort" msgstr "Sortera" @@ -4107,11 +3005,6 @@ msgstr "utifrÃ¥n Källfilens skapelsedatum" msgid "By Source Filesystem" msgstr "utifrÃ¥n Källfilsystemet" -#: editor_actions.cc:648 -#, fuzzy -msgid "Remove Unused" -msgstr "Ta bort '%s'" - #: editor_actions.cc:652 editor_audio_import.cc:279 #: session_import_dialog.cc:74 session_import_dialog.cc:94 #: session_metadata_dialog.cc:297 editor_videotimeline.cc:108 @@ -4138,11 +3031,6 @@ msgstr "Visa grupptabbar" msgid "Show Measures" msgstr "Visa rutnät" -#: editor_actions.cc:669 -#, fuzzy -msgid "Show Logo" -msgstr "Visa position" - #: editor_actions.cc:673 msgid "Toggle MIDI Input Active for Editor-Selected Tracks/Busses" msgstr "" @@ -4155,13 +3043,6 @@ msgstr "" msgid "Could not find editor.bindings in search path %1" msgstr "" -#: editor_actions.cc:1028 editor_actions.cc:1424 editor_actions.cc:1435 -#: editor_actions.cc:1488 editor_actions.cc:1499 editor_actions.cc:1546 -#: editor_actions.cc:1556 editor_regions.cc:1561 -#, fuzzy -msgid "programming error: %1: %2" -msgstr "programmeringsfel: " - #: editor_actions.cc:1722 msgid "Raise" msgstr "Högre" @@ -4218,16 +3099,6 @@ msgstr "Öka volym" msgid "Cut Gain" msgstr "Sänk volym" -#: editor_actions.cc:1770 -#, fuzzy -msgid "Pitch Shift..." -msgstr "Tonhöjdsändring" - -#: editor_actions.cc:1773 -#, fuzzy -msgid "Transpose..." -msgstr "Transponera" - #: editor_actions.cc:1776 msgid "Opaque" msgstr "Ogenomskinlig" @@ -4256,21 +3127,6 @@ msgstr "Sätt loop-omfÃ¥ng här" msgid "Set Punch" msgstr "Ställ in inslag" -#: editor_actions.cc:1820 -#, fuzzy -msgid "Add Single Range Marker" -msgstr "Lägg till 1 omfÃ¥ngsmarkör" - -#: editor_actions.cc:1825 -#, fuzzy -msgid "Add Range Marker Per Region" -msgstr "Lägg till omfÃ¥ngsmarkörer" - -#: editor_actions.cc:1829 -#, fuzzy -msgid "Snap Position To Grid" -msgstr "Fäst mot rutnät" - #: editor_actions.cc:1832 msgid "Close Gaps" msgstr "Stäng luckor" @@ -4335,20 +3191,10 @@ msgstr "Spektralanalys..." msgid "Reset Envelope" msgstr "Nollställ konvolut" -#: editor_actions.cc:1876 -#, fuzzy -msgid "Reset Gain" -msgstr "Nollställ alla" - #: editor_actions.cc:1881 msgid "Envelope Active" msgstr "Konvolut aktivt" -#: editor_actions.cc:1885 -#, fuzzy -msgid "Quantize..." -msgstr "Kvantisera" - #: editor_actions.cc:1886 editor_actions.cc:1887 msgid "Insert Patch Change..." msgstr "Infoga patchändring..." @@ -4365,26 +3211,6 @@ msgstr "Klipp ut tystnad..." msgid "Set Range Selection" msgstr "Definiera omfÃ¥ngsmarkering" -#: editor_actions.cc:1892 -#, fuzzy -msgid "Nudge Later" -msgstr "Knuffa framÃ¥t" - -#: editor_actions.cc:1893 -#, fuzzy -msgid "Nudge Earlier" -msgstr "Knuffa framÃ¥t" - -#: editor_actions.cc:1898 -#, fuzzy -msgid "Nudge Later by Capture Offset" -msgstr "Knuffa framÃ¥t utifrÃ¥n inspelningskompensation" - -#: editor_actions.cc:1905 -#, fuzzy -msgid "Nudge Earlier by Capture Offset" -msgstr "Knuffa framÃ¥t utifrÃ¥n inspelningskompensation" - #: editor_actions.cc:1909 msgid "Trim to Loop" msgstr "Beskär till loop" @@ -4493,12 +3319,6 @@ msgstr "Infoga inte" msgid "Embed all without questions" msgstr "Infoga alla" -#: editor_audio_import.cc:556 editor_audio_import.cc:585 -#: export_format_dialog.cc:58 -#, fuzzy -msgid "Sample rate" -msgstr "Samplingsfrekvens:" - #: editor_audio_import.cc:557 editor_audio_import.cc:586 msgid "" "%1\n" @@ -4511,16 +3331,6 @@ msgstr "" msgid "Embed it anyway" msgstr "Infoga ändÃ¥" -#: editor_drag.cc:1000 -#, fuzzy -msgid "fixed time region drag" -msgstr "Beskuren region" - -#: editor_drag.cc:1700 -#, fuzzy -msgid "Video Start:" -msgstr "Filstart:" - #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -4561,90 +3371,30 @@ msgstr "flytta markör" msgid "An error occurred while executing time stretch operation" msgstr "" -#: editor_drag.cc:4011 -#, fuzzy -msgid "programming_error: %1" -msgstr "programmeringsfel: " - #: editor_drag.cc:4081 editor_markers.cc:680 msgid "new range marker" msgstr "ny omfÃ¥ngsmarkör" -#: editor_drag.cc:4762 -#, fuzzy -msgid "rubberband selection" -msgstr "omfÃ¥ngsmarkering" - -#: editor_route_groups.cc:66 -#, fuzzy -msgid "No Selection = All Tracks?" -msgstr "Ingen markering = alla spÃ¥r" - -#: editor_route_groups.cc:95 -#, fuzzy -msgid "Col" -msgstr "Färg" - -#: editor_route_groups.cc:95 -#, fuzzy -msgid "Group Tab Color" -msgstr "SpÃ¥rläge" - -#: editor_route_groups.cc:96 -#, fuzzy -msgid "Name of Group" -msgstr "Ingen grupp" - #: editor_route_groups.cc:97 editor_routes.cc:203 msgid "V" msgstr "" -#: editor_route_groups.cc:97 -#, fuzzy -msgid "Group is visible?" -msgstr "Övertoningar synliga" - -#: editor_route_groups.cc:98 -#, fuzzy -msgid "On" -msgstr "A" - #: editor_route_groups.cc:98 msgid "Group is enabled?" msgstr "" -#: editor_route_groups.cc:99 -#, fuzzy -msgid "group|G" -msgstr "Undergrupp" - #: editor_route_groups.cc:99 msgid "Sharing Gain?" msgstr "" -#: editor_route_groups.cc:100 -#, fuzzy -msgid "relative|Rel" -msgstr "Relativt" - #: editor_route_groups.cc:100 msgid "Relative Gain Changes?" msgstr "" -#: editor_route_groups.cc:101 -#, fuzzy -msgid "mute|M" -msgstr "tysta" - #: editor_route_groups.cc:101 msgid "Sharing Mute?" msgstr "" -#: editor_route_groups.cc:102 -#, fuzzy -msgid "solo|S" -msgstr "Sololäge" - #: editor_route_groups.cc:102 msgid "Sharing Solo?" msgstr "" @@ -4658,31 +3408,6 @@ msgstr "Spela in" msgid "Sharing Record-enable Status?" msgstr "" -#: editor_route_groups.cc:104 -#, fuzzy -msgid "monitoring|Mon" -msgstr "Medhörning" - -#: editor_route_groups.cc:104 -#, fuzzy -msgid "Sharing Monitoring Choice?" -msgstr "Medhörningsalternativ" - -#: editor_route_groups.cc:105 -#, fuzzy -msgid "selection|Sel" -msgstr "Markering" - -#: editor_route_groups.cc:105 -#, fuzzy -msgid "Sharing Selected/Editing Status?" -msgstr "Rym valda spÃ¥r" - -#: editor_route_groups.cc:106 -#, fuzzy -msgid "active|A" -msgstr "aktivt" - #: editor_route_groups.cc:106 msgid "Sharing Active Status?" msgstr "" @@ -4705,30 +3430,10 @@ msgstr "namnlös" msgid "programming error: marker canvas item has no marker object pointer!" msgstr "" -#: editor_export_audio.cc:143 editor_export_audio.cc:148 -#, fuzzy -msgid "File Exists!" -msgstr "Fil börjar:" - -#: editor_export_audio.cc:151 -#, fuzzy -msgid "Overwrite Existing File" -msgstr "Infoga existerande media" - #: editor_group_tabs.cc:162 msgid "Fit to Window" msgstr "Anpassa till fönstret" -#: editor_markers.cc:129 -#, fuzzy -msgid "start" -msgstr "Början:" - -#: editor_markers.cc:130 -#, fuzzy -msgid "end" -msgstr "Slut" - #: editor_markers.cc:646 editor_ops.cc:1744 editor_ops.cc:1764 #: editor_ops.cc:1788 editor_ops.cc:1815 location_ui.cc:1017 msgid "add marker" @@ -4742,59 +3447,14 @@ msgstr "omfÃ¥ng" msgid "remove marker" msgstr "ta bort markör" -#: editor_markers.cc:849 -#, fuzzy -msgid "Locate to Here" -msgstr "Placera startmarkören här" - -#: editor_markers.cc:850 -#, fuzzy -msgid "Play from Here" -msgstr "Spela härifrÃ¥n" - #: editor_markers.cc:851 msgid "Move Mark to Playhead" msgstr "Flytta markör till startmarkören" -#: editor_markers.cc:855 -#, fuzzy -msgid "Create Range to Next Marker" -msgstr "Skapa omfÃ¥ng till nästa markör" - -#: editor_markers.cc:896 -#, fuzzy -msgid "Locate to Marker" -msgstr "Placera startmarkör här" - -#: editor_markers.cc:897 -#, fuzzy -msgid "Play from Marker" -msgstr "Spela from markör" - -#: editor_markers.cc:900 -#, fuzzy -msgid "Set Marker from Playhead" -msgstr "Placera omfÃ¥ngsmarkör frÃ¥n startmarkören" - -#: editor_markers.cc:902 -#, fuzzy -msgid "Set Range from Selection" -msgstr "Sätt omfÃ¥ng frÃ¥n omfÃ¥ngsmarkering" - -#: editor_markers.cc:905 -#, fuzzy -msgid "Zoom to Range" -msgstr "Zooma till region" - #: editor_markers.cc:912 msgid "Hide Range" msgstr "Göm omfÃ¥ng" -#: editor_markers.cc:913 -#, fuzzy -msgid "Rename Range..." -msgstr "Byt namn pÃ¥ omfÃ¥ng" - #: editor_markers.cc:917 msgid "Remove Range" msgstr "Ta bort omfÃ¥ng" @@ -4854,11 +3514,6 @@ msgid "" "pointer!" msgstr "" -#: editor_mouse.cc:2416 -#, fuzzy -msgid "start point trim" -msgstr "Beskär startpunkt" - #: editor_mouse.cc:2441 msgid "End point trim" msgstr "Beskär slutpunkt" @@ -4871,49 +3526,14 @@ msgstr "Namnge region:" msgid "split" msgstr "dela" -#: editor_ops.cc:256 -#, fuzzy -msgid "alter selection" -msgstr "omfÃ¥ngsmarkering" - -#: editor_ops.cc:298 -#, fuzzy -msgid "nudge regions forward" -msgstr "knuffa framÃ¥t" - -#: editor_ops.cc:321 editor_ops.cc:406 -#, fuzzy -msgid "nudge location forward" -msgstr "knuffa framÃ¥t" - -#: editor_ops.cc:379 -#, fuzzy -msgid "nudge regions backward" -msgstr "Knuffa bakÃ¥t" - #: editor_ops.cc:468 msgid "nudge forward" msgstr "knuffa framÃ¥t" -#: editor_ops.cc:492 -#, fuzzy -msgid "nudge backward" -msgstr "Knuffa bakÃ¥t" - #: editor_ops.cc:557 msgid "build_region_boundary_cache called with snap_type = %1" msgstr "" -#: editor_ops.cc:1701 -#, fuzzy -msgid "New Location Marker" -msgstr "Ny platsmarkör" - -#: editor_ops.cc:1788 -#, fuzzy -msgid "add markers" -msgstr "rensa markörer" - #: editor_ops.cc:1894 msgid "clear markers" msgstr "rensa markörer" @@ -4934,41 +3554,6 @@ msgstr "infoga dragen region" msgid "insert region" msgstr "infoga region" -#: editor_ops.cc:2261 -#, fuzzy -msgid "raise regions" -msgstr "Normalisera regioner" - -#: editor_ops.cc:2263 -#, fuzzy -msgid "raise region" -msgstr "Höj regionen" - -#: editor_ops.cc:2269 -#, fuzzy -msgid "raise regions to top" -msgstr "Beskär region till omfÃ¥ng" - -#: editor_ops.cc:2271 -#, fuzzy -msgid "raise region to top" -msgstr "Höj regionen" - -#: editor_ops.cc:2277 -#, fuzzy -msgid "lower regions" -msgstr "Sänk regionen" - -#: editor_ops.cc:2279 editor_ops.cc:2287 -#, fuzzy -msgid "lower region" -msgstr "Sänk regionen" - -#: editor_ops.cc:2285 -#, fuzzy -msgid "lower regions to bottom" -msgstr "Placera underst" - #: editor_ops.cc:2370 msgid "Rename Region" msgstr "Byt namn pÃ¥ region" @@ -4981,35 +3566,10 @@ msgstr "Nytt namn:" msgid "separate" msgstr "separera" -#: editor_ops.cc:2795 -#, fuzzy -msgid "separate region under" -msgstr "Separera regioner i omfÃ¥nget" - #: editor_ops.cc:2916 msgid "trim to selection" msgstr "beskär till markeringen" -#: editor_ops.cc:3052 -#, fuzzy -msgid "set sync point" -msgstr "Definiera synk.-punkt" - -#: editor_ops.cc:3076 -#, fuzzy -msgid "remove region sync" -msgstr "ta bort region" - -#: editor_ops.cc:3098 -#, fuzzy -msgid "move regions to original position" -msgstr "Flytta till ursprunglig position" - -#: editor_ops.cc:3100 -#, fuzzy -msgid "move region to original position" -msgstr "Flytta till ursprunglig position" - #: editor_ops.cc:3121 msgid "align selection" msgstr "justera markering" @@ -5022,30 +3582,10 @@ msgstr "justera markering (relativt)" msgid "align region" msgstr "justera region" -#: editor_ops.cc:3280 -#, fuzzy -msgid "trim front" -msgstr "Beskuren region" - #: editor_ops.cc:3280 msgid "trim back" msgstr "" -#: editor_ops.cc:3310 -#, fuzzy -msgid "trim to loop" -msgstr "Beskär till loop" - -#: editor_ops.cc:3320 -#, fuzzy -msgid "trim to punch" -msgstr "Beskär till inslag" - -#: editor_ops.cc:3382 -#, fuzzy -msgid "trim to region" -msgstr "Beskuren region" - #: editor_ops.cc:3492 msgid "" "This track/bus cannot be frozen because the signal adds or loses channels " @@ -5054,11 +3594,6 @@ msgid "" "input or vice versa." msgstr "" -#: editor_ops.cc:3495 -#, fuzzy -msgid "Cannot freeze" -msgstr "Avbryt frysning" - #: editor_ops.cc:3501 msgid "" "%1\n" @@ -5068,21 +3603,6 @@ msgid "" "Freezing will only process the signal as far as the first send/insert/return." msgstr "" -#: editor_ops.cc:3505 -#, fuzzy -msgid "Freeze anyway" -msgstr "Frys" - -#: editor_ops.cc:3506 -#, fuzzy -msgid "Don't freeze" -msgstr "Avbryt frysning" - -#: editor_ops.cc:3507 -#, fuzzy -msgid "Freeze Limits" -msgstr "Frys" - #: editor_ops.cc:3522 msgid "Cancel Freeze" msgstr "Avbryt frysning" @@ -5104,11 +3624,6 @@ msgstr "" msgid "bounce range" msgstr "omfÃ¥ng till disk" -#: editor_ops.cc:3678 -#, fuzzy -msgid "delete" -msgstr "Radera" - #: editor_ops.cc:3681 msgid "cut" msgstr "klipp ut" @@ -5158,11 +3673,6 @@ msgstr "Nej, gör ingenting." msgid "Yes, destroy it." msgstr "Ja, radera den." -#: editor_ops.cc:4512 -#, fuzzy -msgid "Destroy last capture" -msgstr "Ta bort senaste inspelningen" - #: editor_ops.cc:4573 msgid "normalize" msgstr "normalisera" @@ -5171,135 +3681,10 @@ msgstr "normalisera" msgid "reverse regions" msgstr "regioner till motsatt riktning" -#: editor_ops.cc:4702 -#, fuzzy -msgid "strip silence" -msgstr "Klipp ut tystnad..." - -#: editor_ops.cc:4763 -#, fuzzy -msgid "Fork Region(s)" -msgstr "som region(er)" - -#: editor_ops.cc:4963 -#, fuzzy -msgid "reset region gain" -msgstr "Öka regionens volym" - -#: editor_ops.cc:5016 -#, fuzzy -msgid "region gain envelope active" -msgstr "SlÃ¥ pÃ¥/av konvolut" - -#: editor_ops.cc:5043 -#, fuzzy -msgid "toggle region lock" -msgstr "till regionslistan" - -#: editor_ops.cc:5067 -#, fuzzy -msgid "Toggle Video Lock" -msgstr "till regionslistan" - -#: editor_ops.cc:5091 -#, fuzzy -msgid "region lock style" -msgstr "till regionslistan" - -#: editor_ops.cc:5116 -#, fuzzy -msgid "change region opacity" -msgstr "Dra regionskopia" - -#: editor_ops.cc:5231 -#, fuzzy -msgid "set fade in length" -msgstr "ändra intoningslängd" - -#: editor_ops.cc:5238 -#, fuzzy -msgid "set fade out length" -msgstr "ändra uttoningslängd" - -#: editor_ops.cc:5283 -#, fuzzy -msgid "set fade in shape" -msgstr "intoningsredigering" - -#: editor_ops.cc:5314 -#, fuzzy -msgid "set fade out shape" -msgstr "uttoningsredigering" - -#: editor_ops.cc:5344 -#, fuzzy -msgid "set fade in active" -msgstr "Regiontoningar aktiva" - -#: editor_ops.cc:5373 -#, fuzzy -msgid "set fade out active" -msgstr "Regiontoningar aktiva" - -#: editor_ops.cc:5638 -#, fuzzy -msgid "set loop range from selection" -msgstr "Ställ in omfÃ¥ngsmarkering" - -#: editor_ops.cc:5660 -#, fuzzy -msgid "set loop range from edit range" -msgstr "Ställ in loop frÃ¥n redigeringsomfÃ¥ng" - -#: editor_ops.cc:5689 -#, fuzzy -msgid "set loop range from region" -msgstr "ställ in markering frÃ¥n region" - -#: editor_ops.cc:5707 -#, fuzzy -msgid "set punch range from selection" -msgstr "Ställ in omfÃ¥ngsmarkering" - -#: editor_ops.cc:5724 -#, fuzzy -msgid "set punch range from edit range" -msgstr "Ställ in inslags frÃ¥n redigeringsomfÃ¥ng" - -#: editor_ops.cc:5748 -#, fuzzy -msgid "set punch range from region" -msgstr "ställ in inslagsomfÃ¥ng" - -#: editor_ops.cc:5857 -#, fuzzy -msgid "Add new marker" -msgstr "Lägg till omfÃ¥ngsmarkörer" - -#: editor_ops.cc:5858 -#, fuzzy -msgid "Set global tempo" -msgstr "Skapa tempokarta" - -#: editor_ops.cc:5861 -#, fuzzy -msgid "Define one bar" -msgstr "Definiera" - #: editor_ops.cc:5862 msgid "Do you want to set the global tempo or add a new tempo marker?" msgstr "" -#: editor_ops.cc:5888 -#, fuzzy -msgid "set tempo from region" -msgstr "ställ in markering frÃ¥n region" - -#: editor_ops.cc:5918 -#, fuzzy -msgid "split regions" -msgstr "Dela region" - #: editor_ops.cc:5960 msgid "" "You are about to split\n" @@ -5322,51 +3707,10 @@ msgstr "" msgid "Press OK to continue with this split operation" msgstr "" -#: editor_ops.cc:5973 -#, fuzzy -msgid "Excessive split?" -msgstr "Avskild solo" - -#: editor_ops.cc:6125 -#, fuzzy -msgid "place transient" -msgstr "Placera transient" - -#: editor_ops.cc:6160 -#, fuzzy -msgid "snap regions to grid" -msgstr "Beskär region till omfÃ¥ng" - -#: editor_ops.cc:6199 -#, fuzzy -msgid "Close Region Gaps" -msgstr "Stäng luckor" - -#: editor_ops.cc:6204 -#, fuzzy -msgid "Crossfade length" -msgstr "Kort övertonings längd" - -#: editor_ops.cc:6213 editor_ops.cc:6224 rhythm_ferret.cc:120 -#: session_option_editor.cc:153 -#, fuzzy -msgid "ms" -msgstr "msek" - #: editor_ops.cc:6215 msgid "Pull-back length" msgstr "" -#: editor_ops.cc:6228 -#, fuzzy -msgid "Ok" -msgstr "A" - -#: editor_ops.cc:6243 -#, fuzzy -msgid "close region gaps" -msgstr "dessa regioner" - #: editor_ops.cc:6461 route_ui.cc:1456 msgid "That would be bad news ...." msgstr "" @@ -5385,124 +3729,30 @@ msgstr "" msgid "tracks" msgstr "spÃ¥r" -#: editor_ops.cc:6485 route_ui.cc:1822 -#, fuzzy -msgid "track" -msgstr "spÃ¥r" - #: editor_ops.cc:6489 msgid "busses" msgstr "buss(ar)" -#: editor_ops.cc:6491 route_ui.cc:1822 -#, fuzzy -msgid "bus" -msgstr "buss(ar)" - -#: editor_ops.cc:6496 -#, fuzzy -msgid "" -"Do you really want to remove %1 %2 and %3 %4?\n" -"(You may also lose the playlists associated with the %2)\n" -"\n" -"This action cannot be undone, and the session file will be overwritten!" -msgstr "" -"Vill du verkligen ta bort spÃ¥r \"%1\" ?\n" -"Du kanske ocksÃ¥ förlorar spellista använd av detta spÃ¥r.\n" -"(detta kan inte Ã¥ngras)" - -#: editor_ops.cc:6501 -#, fuzzy -msgid "" -"Do you really want to remove %1 %2?\n" -"(You may also lose the playlists associated with the %2)\n" -"\n" -"This action cannot be undone, and the session file will be overwritten!" -msgstr "" -"Vill du verkligen ta bort spÃ¥r \"%1\" ?\n" -"Du kanske ocksÃ¥ förlorar spellista använd av detta spÃ¥r.\n" -"(detta kan inte Ã¥ngras)" - -#: editor_ops.cc:6507 -#, fuzzy -msgid "" -"Do you really want to remove %1 %2?\n" -"\n" -"This action cannot be undon, and the session file will be overwritten" -msgstr "" -"Vill du verkligen ta bort buss \"%1\" ?\n" -"(detta kan inte Ã¥ngras)" - -#: editor_ops.cc:6514 -#, fuzzy -msgid "Yes, remove them." -msgstr "Ja, ta bort den." - #: editor_ops.cc:6516 editor_snapshots.cc:159 route_ui.cc:1483 msgid "Yes, remove it." msgstr "Ja, ta bort den." -#: editor_ops.cc:6521 editor_ops.cc:6523 -#, fuzzy -msgid "Remove %1" -msgstr "Ta bort '%s'" - -#: editor_ops.cc:6582 -#, fuzzy -msgid "insert time" -msgstr "Infoga tid" - #: editor_ops.cc:6739 msgid "There are too many tracks to fit in the current window" msgstr "" -#: editor_ops.cc:6839 -#, fuzzy, c-format -msgid "Saved view %u" -msgstr "Spara vy %1" - -#: editor_ops.cc:6864 -#, fuzzy -msgid "mute regions" -msgstr "tysta region" - #: editor_ops.cc:6866 msgid "mute region" msgstr "tysta region" -#: editor_ops.cc:6903 -#, fuzzy -msgid "combine regions" -msgstr "Normalisera regioner" - -#: editor_ops.cc:6941 -#, fuzzy -msgid "uncombine regions" -msgstr "Normalisera regioner" - #: editor_regions.cc:111 msgid "Region name, with number of channels in []'s" msgstr "" -#: editor_regions.cc:112 -#, fuzzy -msgid "Position of start of region" -msgstr "GÃ¥ till början av sessionen" - #: editor_regions.cc:113 editor_regions.cc:849 time_info_box.cc:98 msgid "End" msgstr "Slut" -#: editor_regions.cc:113 -#, fuzzy -msgid "Position of end of region" -msgstr "GÃ¥ till slutet av sessionen" - -#: editor_regions.cc:114 -#, fuzzy -msgid "Length of the region" -msgstr "tysta denna region" - #: editor_regions.cc:115 msgid "Position of region sync point, relative to start of the region" msgstr "" @@ -5520,16 +3770,6 @@ msgstr "" msgid "L" msgstr "V" -#: editor_regions.cc:118 -#, fuzzy -msgid "Region position locked?" -msgstr "utifrÃ¥n Regionens position" - -#: editor_regions.cc:119 -#, fuzzy -msgid "G" -msgstr "GÃ¥ till" - #: editor_regions.cc:119 msgid "Region position glued to Bars|Beats time?" msgstr "" @@ -5540,11 +3780,6 @@ msgstr "" msgid "M" msgstr "" -#: editor_regions.cc:120 -#, fuzzy -msgid "Region muted?" -msgstr "Region slutar" - #: editor_regions.cc:121 msgid "O" msgstr "A" @@ -5561,25 +3796,6 @@ msgstr "Dold" msgid "(MISSING) " msgstr "" -#: editor_regions.cc:457 -#, fuzzy -msgid "" -"Do you really want to remove unused regions?\n" -"(This is destructive and cannot be undone)" -msgstr "" -"Vill du verkligen radera den senaste inspelningen?\n" -"(Detta är en destruktiv handling och kan ej Ã¥ngras)" - -#: editor_regions.cc:461 -#, fuzzy -msgid "Yes, remove." -msgstr "Ja, ta bort den." - -#: editor_regions.cc:463 -#, fuzzy -msgid "Remove unused regions" -msgstr "regioner till motsatt riktning" - #: editor_regions.cc:816 editor_regions.cc:830 editor_regions.cc:844 msgid "Mult." msgstr "" @@ -5589,11 +3805,6 @@ msgstr "" msgid "Start" msgstr "" -#: editor_regions.cc:865 editor_regions.cc:881 -#, fuzzy -msgid "Multiple" -msgstr "Multiduplicera" - #: editor_regions.cc:950 msgid "MISSING " msgstr "" @@ -5602,73 +3813,28 @@ msgstr "" msgid "SS" msgstr "" -#: editor_routes.cc:202 -#, fuzzy -msgid "Track/Bus Name" -msgstr "SpÃ¥r/Bussar" - -#: editor_routes.cc:203 -#, fuzzy -msgid "Track/Bus visible ?" -msgstr "SpÃ¥r/Bussar" - #: editor_routes.cc:204 mixer_strip.cc:1945 meter_strip.cc:334 #: route_time_axis.cc:2407 msgid "A" msgstr "" -#: editor_routes.cc:204 -#, fuzzy -msgid "Track/Bus active ?" -msgstr "SpÃ¥r/Bussar" - #: editor_routes.cc:205 mixer_strip.cc:1932 msgid "I" msgstr "" -#: editor_routes.cc:205 -#, fuzzy -msgid "MIDI input enabled" -msgstr "%1-ingÃ¥ng" - #: editor_routes.cc:206 mixer_strip.cc:1930 mono_panner.cc:198 #: stereo_panner.cc:215 stereo_panner.cc:242 msgid "R" msgstr "H" -#: editor_routes.cc:206 -#, fuzzy -msgid "Record enabled" -msgstr "Inspelningsläge" - -#: editor_routes.cc:207 -#, fuzzy -msgid "Muted" -msgstr "Tysta" - #: editor_routes.cc:208 mixer_strip.cc:1941 meter_strip.cc:330 msgid "S" msgstr "" -#: editor_routes.cc:208 -#, fuzzy -msgid "Soloed" -msgstr "Solad..." - #: editor_routes.cc:209 msgid "SI" msgstr "" -#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1880 -#, fuzzy -msgid "Solo Isolated" -msgstr "Solo-säker" - -#: editor_routes.cc:210 -#, fuzzy -msgid "Solo Safe (Locked)" -msgstr "Solo-säker" - #: editor_routes.cc:471 mixer_ui.cc:1162 msgid "Hide All" msgstr "Dölj Alla" @@ -5713,11 +3879,6 @@ msgstr "Rensa alla platsmarkörer" msgid "Unhide locations" msgstr "Visa platsmarkörer" -#: editor_rulers.cc:346 -#, fuzzy -msgid "New range" -msgstr "Nytt omfÃ¥ng" - #: editor_rulers.cc:347 msgid "Clear all ranges" msgstr "Rensa alla omfÃ¥ng" @@ -5738,16 +3899,6 @@ msgstr "Nytt tempo" msgid "New Meter" msgstr "Ny taktart" -#: editor_rulers.cc:373 -#, fuzzy -msgid "Timeline height" -msgstr "höjden" - -#: editor_rulers.cc:383 -#, fuzzy -msgid "Align Video Track" -msgstr "Lägg till spÃ¥r" - #: editor_selection.cc:889 editor_selection.cc:932 msgid "set selected regions" msgstr "ställ in valda regioner" @@ -5784,51 +3935,12 @@ msgstr "markera allt efter markör" msgid "select all before cursor" msgstr "markera allt före markör" -#: editor_selection.cc:1753 -#, fuzzy -msgid "select all after edit" -msgstr "Markera allt efter startmarkören" - -#: editor_selection.cc:1755 -#, fuzzy -msgid "select all before edit" -msgstr "Markera allt innan redigeringspunkten" - -#: editor_selection.cc:1888 -#, fuzzy -msgid "No edit range defined" -msgstr "Ställ in omfÃ¥ngsmarkering" - #: editor_selection.cc:1894 msgid "" "the edit point is Selected Marker\n" "but there is no selected marker." msgstr "" -#: editor_snapshots.cc:136 -#, fuzzy -msgid "Rename Snapshot" -msgstr "Ta bort synk.-punkt" - -#: editor_snapshots.cc:138 -#, fuzzy -msgid "New name of snapshot" -msgstr "Namnge ny ögonblickskopia" - -#: editor_snapshots.cc:156 -#, fuzzy -msgid "" -"Do you really want to remove snapshot \"%1\" ?\n" -"(which cannot be undone)" -msgstr "" -"Vill du verkligen ta bort buss \"%1\" ?\n" -"(detta kan inte Ã¥ngras)" - -#: editor_snapshots.cc:161 -#, fuzzy -msgid "Remove snapshot" -msgstr "Ta bort synk.-punkt" - #: editor_tempodisplay.cc:208 editor_tempodisplay.cc:250 msgid "add" msgstr "lägg till" @@ -5872,21 +3984,6 @@ msgid "" "programming error: meter marker canvas item has no marker object pointer!" msgstr "" -#: editor_timefx.cc:68 -#, fuzzy -msgid "stretch/shrink" -msgstr "Förläng/Förkorta" - -#: editor_timefx.cc:129 -#, fuzzy -msgid "pitch shift" -msgstr "Tonhöjdsändring" - -#: editor_timefx.cc:301 -#, fuzzy -msgid "timefx cannot be started - thread creation error" -msgstr "tidstänjning kan inte startas - trÃ¥dskapningsfel" - #: engine_dialog.cc:75 msgid "Realtime" msgstr "Realtid" @@ -6003,11 +4100,6 @@ msgstr "" msgid "Driver:" msgstr "Drivrutin:" -#: engine_dialog.cc:186 -#, fuzzy -msgid "Audio Interface:" -msgstr "Enhet:" - #: engine_dialog.cc:191 sfdb_ui.cc:147 sfdb_ui.cc:260 sfdb_ui.cc:265 msgid "Sample rate:" msgstr "Samplingsfrekvens:" @@ -6044,11 +4136,6 @@ msgstr "Antal portar:" msgid "MIDI driver:" msgstr "MIDI-drivrutin:" -#: engine_dialog.cc:310 -#, fuzzy -msgid "Dither:" -msgstr "Dither-typ" - #: engine_dialog.cc:319 msgid "" "No JACK server found anywhere on this system. Please install JACK and restart" @@ -6111,11 +4198,6 @@ msgstr "" msgid "No suitable audio devices" msgstr "" -#: engine_dialog.cc:1017 -#, fuzzy -msgid "JACK appears to be missing from the %1 bundle" -msgstr "JACK tycks saknas frÃ¥n Ardours bundle" - #: engine_dialog.cc:1087 msgid "You need to choose an audio device first." msgstr "" @@ -6140,11 +4222,6 @@ msgstr "Kanaler:" msgid "Split to mono files" msgstr "Dela upp i monofiler" -#: export_channel_selector.cc:182 -#, fuzzy -msgid "Bus or Track" -msgstr "som spÃ¥r" - #: export_channel_selector.cc:459 msgid "Region contents without fades nor region gain (channels: %1)" msgstr "" @@ -6153,32 +4230,12 @@ msgstr "" msgid "Region contents with fades and region gain (channels: %1)" msgstr "" -#: export_channel_selector.cc:467 -#, fuzzy -msgid "Track output (channels: %1)" -msgstr "UtgÃ¥ngar:" - -#: export_channel_selector.cc:536 -#, fuzzy -msgid "Export region contents" -msgstr "Exportera session" - -#: export_channel_selector.cc:537 -#, fuzzy -msgid "Export track output" -msgstr "Anslut spÃ¥r- och bussutgÃ¥ngar" - #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten." msgstr "" -#: export_dialog.cc:47 -#, fuzzy -msgid "List files" -msgstr "Ljudfiler" - #: export_dialog.cc:164 export_timespan_selector.cc:355 #: export_timespan_selector.cc:417 msgid "Time Span" @@ -6206,11 +4263,6 @@ msgstr "" msgid "Stop Export" msgstr "Avbryt Export" -#: export_dialog.cc:337 -#, fuzzy -msgid "export" -msgstr "Exportera" - #: export_dialog.cc:356 msgid "Normalizing '%3' (timespan %1 of %2)" msgstr "" @@ -6233,31 +4285,6 @@ msgid "" "Warning: " msgstr "" -#: export_dialog.cc:420 -#, fuzzy -msgid "Export Selection" -msgstr "Exportera session" - -#: export_dialog.cc:433 -#, fuzzy -msgid "Export Region" -msgstr "Exportera session" - -#: export_dialog.cc:443 -#, fuzzy -msgid "Source" -msgstr "Källa:" - -#: export_dialog.cc:458 -#, fuzzy -msgid "Stem Export" -msgstr "Avbryt Export" - -#: export_file_notebook.cc:38 -#, fuzzy -msgid "Add another format" -msgstr " Klicka här för att lägga till ett format" - #: export_file_notebook.cc:178 msgid "Format" msgstr "" @@ -6266,30 +4293,10 @@ msgstr "" msgid "Location" msgstr "Plats" -#: export_file_notebook.cc:255 -#, fuzzy -msgid "No format!" -msgstr "format" - #: export_file_notebook.cc:267 msgid "Format %1: %2" msgstr "" -#: export_filename_selector.cc:32 -#, fuzzy -msgid "Label:" -msgstr "Etikett: " - -#: export_filename_selector.cc:33 -#, fuzzy -msgid "Session Name" -msgstr "Sessionens namn:" - -#: export_filename_selector.cc:34 -#, fuzzy -msgid "Revision:" -msgstr "Sessionen" - #: export_filename_selector.cc:36 msgid "Folder:" msgstr "Mapp:" @@ -6325,16 +4332,6 @@ msgstr "" msgid "Choose export folder" msgstr "" -#: export_format_dialog.cc:31 -#, fuzzy -msgid "New Export Format Profile" -msgstr "Exportera till fil" - -#: export_format_dialog.cc:31 -#, fuzzy -msgid "Edit Export Format Profile" -msgstr "Exportera till fil" - #: export_format_dialog.cc:38 msgid "Label: " msgstr "Etikett: " @@ -6367,21 +4364,6 @@ msgstr "Kompatibilitet" msgid "Quality" msgstr "Kvalitet" -#: export_format_dialog.cc:57 -#, fuzzy -msgid "File format" -msgstr "Sampleformat" - -#: export_format_dialog.cc:59 -#, fuzzy -msgid "Sample rate conversion quality:" -msgstr "Konverteringskvalitet:" - -#: export_format_dialog.cc:66 -#, fuzzy -msgid "Dithering" -msgstr "NivÃ¥mätning" - #: export_format_dialog.cc:68 msgid "Create CUE file for disk-at-once CD/DVD creation" msgstr "" @@ -6390,11 +4372,6 @@ msgstr "" msgid "Create TOC file for disk-at-once CD/DVD creation" msgstr "" -#: export_format_dialog.cc:71 -#, fuzzy -msgid "Tag file with session's metadata" -msgstr "Importa sessionsmetadata" - #: export_format_dialog.cc:461 msgid "Best (sinc)" msgstr "" @@ -6407,54 +4384,20 @@ msgstr "" msgid "Fast (sinc)" msgstr "" -#: export_format_dialog.cc:481 -#, fuzzy -msgid "Zero order hold" -msgstr "NivÃ¥mätartopphÃ¥llning" - #: export_format_dialog.cc:879 msgid "Linear encoding options" msgstr "" -#: export_format_dialog.cc:895 -#, fuzzy -msgid "Ogg Vorbis options" -msgstr "Visuella inställningar" - -#: export_format_dialog.cc:908 -#, fuzzy -msgid "FLAC options" -msgstr "Platser" - #: export_format_dialog.cc:925 msgid "Broadcast Wave options" msgstr "" -#: export_format_selector.cc:136 -#, fuzzy -msgid "Do you really want to remove the format?" -msgstr "" -"Vill du verkligen ta bort spÃ¥r \"%1\" ?\n" -"(detta kan inte Ã¥ngras)" - -#: export_preset_selector.cc:28 -#, fuzzy -msgid "Preset" -msgstr "Ny förinställning" - #: export_preset_selector.cc:104 msgid "" "The selected preset did not load successfully!\n" "Perhaps it references a format that has been removed?" msgstr "" -#: export_preset_selector.cc:156 -#, fuzzy -msgid "Do you really want to remove this preset?" -msgstr "" -"Vill du verkligen ta bort spÃ¥r \"%1\" ?\n" -"(detta kan inte Ã¥ngras)" - #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "Visa tider som:" @@ -6467,11 +4410,6 @@ msgstr "" msgid "Range" msgstr "OmfÃ¥ng" -#: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 -#, fuzzy -msgid "curl error %1 (%2)" -msgstr "programmeringsfel: " - #: sfdb_freesound_mootcher.cc:266 msgid "getSoundResourceFile: There is no valid root in the xml file" msgstr "" @@ -6517,11 +4455,6 @@ msgstr "S" msgid "Presets" msgstr "Förinställningar" -#: generic_pluginui.cc:232 -#, fuzzy -msgid "Switches" -msgstr "Tonhöjdsändring" - #: generic_pluginui.cc:242 generic_pluginui.cc:376 processor_box.cc:2212 msgid "Controls" msgstr "Kontroller" @@ -6531,20 +4464,10 @@ msgid "Plugin Editor: could not build control element for port %1" msgstr "" "Insticksprogramsredigerare: kunde inte bygga kontrollelement för port%1" -#: generic_pluginui.cc:408 -#, fuzzy -msgid "Meters" -msgstr "Taktart" - #: generic_pluginui.cc:423 msgid "Automation control" msgstr "Automatiseringskontroll" -#: generic_pluginui.cc:430 -#, fuzzy -msgid "Mgnual" -msgstr "Manuell" - #: global_port_matrix.cc:164 msgid "Audio Connection Manager" msgstr "LjudspÃ¥rsanslutningar" @@ -6569,59 +4492,14 @@ msgstr "Inspelningsläge" msgid "Soloed..." msgstr "Solad..." -#: group_tabs.cc:316 -#, fuzzy -msgid "Create New Group ..." -msgstr "Ny grupp..." - #: group_tabs.cc:317 msgid "Create New Group From" msgstr "" -#: group_tabs.cc:320 -#, fuzzy -msgid "Edit Group..." -msgstr "Redigera Grupp" - -#: group_tabs.cc:321 -#, fuzzy -msgid "Collect Group" -msgstr "Samla" - -#: group_tabs.cc:322 -#, fuzzy -msgid "Remove Group" -msgstr "Ruttgrupp" - -#: group_tabs.cc:325 -#, fuzzy -msgid "Remove Subgroup Bus" -msgstr "Lägg till grupp" - -#: group_tabs.cc:327 -#, fuzzy -msgid "Add New Subgroup Bus" -msgstr "Lägg till grupp" - #: group_tabs.cc:329 msgid "Add New Aux Bus (pre-fader)" msgstr "" -#: group_tabs.cc:330 -#, fuzzy -msgid "Add New Aux Bus (post-fader)" -msgstr "Rensa (efterreglage)" - -#: group_tabs.cc:336 -#, fuzzy -msgid "Enable All Groups" -msgstr "Avaktivera alla insticksprogram" - -#: group_tabs.cc:337 -#, fuzzy -msgid "Disable All Groups" -msgstr "Avaktivera alla" - #: gtk-custom-ruler.c:133 msgid "Lower limit of ruler" msgstr "Lägre gräns för räcke" @@ -6654,79 +4532,20 @@ msgstr "Visa position" msgid "Draw current ruler position" msgstr "Rita upp räckets aktuellt position" -#: insert_time_dialog.cc:46 -#, fuzzy -msgid "Time to insert:" -msgstr "Beskär till nästa" - -#: insert_time_dialog.cc:54 -#, fuzzy -msgid "Intersected regions should:" -msgstr "Valda regioner" - -#: insert_time_dialog.cc:57 -#, fuzzy -msgid "stay in position" -msgstr "Avlyssningsposition" - -#: insert_time_dialog.cc:58 -#, fuzzy -msgid "move" -msgstr "Ta bort" - -#: insert_time_dialog.cc:59 -#, fuzzy -msgid "be split" -msgstr "dela" - #: insert_time_dialog.cc:65 msgid "Insert time on all the track's playlists" msgstr "" -#: insert_time_dialog.cc:68 -#, fuzzy -msgid "Move glued regions" -msgstr "Valda regioner" - -#: insert_time_dialog.cc:70 -#, fuzzy -msgid "Move markers" -msgstr "flytta markör" - -# msgid "Delete" -# msgstr "Radera" -#: insert_time_dialog.cc:73 -#, fuzzy -msgid "Move glued markers" -msgstr "Flytta vald platsmarkör" - -# msgid "Delete" -# msgstr "Radera" -#: insert_time_dialog.cc:78 -#, fuzzy -msgid "Move locked markers" -msgstr "Flytta vald platsmarkör" - #: insert_time_dialog.cc:83 msgid "" "Move tempo and meter changes\n" "(may cause oddities in the tempo map)" msgstr "" -#: insert_time_dialog.cc:91 -#, fuzzy -msgid "Insert time" -msgstr "Infoga tid" - #: interthread_progress_window.cc:103 msgid "Importing file: %1 of %2" msgstr "" -#: io_selector.cc:220 -#, fuzzy -msgid "I/O selector" -msgstr "Invertera markeringen" - #: io_selector.cc:265 msgid "%1 input" msgstr "%1-ingÃ¥ng" @@ -6771,21 +4590,6 @@ msgstr "" msgid "redirectmenu" msgstr "" -#: keyeditor.cc:257 -#, fuzzy -msgid "Editor_menus" -msgstr "Redigerare" - -#: keyeditor.cc:259 -#, fuzzy -msgid "RegionList" -msgstr "Regioner" - -#: keyeditor.cc:261 -#, fuzzy -msgid "ProcessorMenu" -msgstr "Processorhantering" - #: latency_gui.cc:39 msgid "sample" msgstr "sampling" @@ -6798,22 +4602,10 @@ msgstr "msek" msgid "period" msgstr "" -#: latency_gui.cc:55 -#, fuzzy -msgid "%1 sample" -msgid_plural "%1 samples" -msgstr[0] "sampling" -msgstr[1] "sampling" - #: latency_gui.cc:72 panner_ui.cc:392 msgid "Reset" msgstr "Nollställ" -#: latency_gui.cc:151 rhythm_ferret.cc:274 sfdb_ui.cc:1755 -#, fuzzy -msgid "programming error: %1 (%2)" -msgstr "programmeringsfel: " - #: location_ui.cc:50 location_ui.cc:52 msgid "Use PH" msgstr "Använd SM" @@ -6826,25 +4618,10 @@ msgstr "" msgid "Glue" msgstr "Klistra" -#: location_ui.cc:85 -#, fuzzy -msgid "Performer:" -msgstr "Prestanda" - -#: location_ui.cc:86 -#, fuzzy -msgid "Composer:" -msgstr "Kompositör" - #: location_ui.cc:88 msgid "Pre-Emphasis" msgstr "" -#: location_ui.cc:314 -#, fuzzy -msgid "Remove this range" -msgstr "ställ in inslagsomfÃ¥ng" - #: location_ui.cc:315 msgid "Start time - middle click to locate here" msgstr "" @@ -6853,30 +4630,10 @@ msgstr "" msgid "End time - middle click to locate here" msgstr "" -#: location_ui.cc:319 -#, fuzzy -msgid "Set range start from playhead location" -msgstr "Placera omfÃ¥ngsmarkör frÃ¥n startmarkören" - -#: location_ui.cc:320 -#, fuzzy -msgid "Set range end from playhead location" -msgstr "Sätt omfÃ¥ng frÃ¥n omfÃ¥ngsmarkering" - -#: location_ui.cc:324 -#, fuzzy -msgid "Remove this marker" -msgstr "flytta markör" - #: location_ui.cc:325 msgid "Position - middle click to locate here" msgstr "" -#: location_ui.cc:327 -#, fuzzy -msgid "Set marker time from playhead location" -msgstr "Placera markör frÃ¥n startmarkören" - #: location_ui.cc:494 msgid "You cannot put a CD marker at the start of the session" msgstr "" @@ -6905,40 +4662,6 @@ msgstr "OmfÃ¥ng (inkl CD-spÃ¥rsomfÃ¥ng)" msgid "add range marker" msgstr "lägg till omfÃ¥ngsmarkör" -#: main.cc:83 -#, fuzzy -msgid "%1 could not connect to JACK." -msgstr "Ardour kunde inte ansluta till JACK" - -#: main.cc:87 -#, fuzzy -msgid "" -"There are several possible reasons:\n" -"\n" -"1) JACK is not running.\n" -"2) JACK is running as another user, perhaps root.\n" -"3) There is already another client called \"%1\".\n" -"\n" -"Please consider the possibilities, and perhaps (re)start JACK." -msgstr "" -"Det finns flera möjliga anledningar:\n" -"\n" -"1) JACK är inte igÃ¥ng.\n" -"2) JACK är startat av en annan användare, kanske root.\n" -"3) Det finns redan en annan klient som heter \"ardour\".\n" -"\n" -"Överväg dessa möjligheter, och starta mÃ¥hända (om) JACK." - -#: main.cc:203 main.cc:324 -#, fuzzy -msgid "cannot create user %3 folder %1 (%2)" -msgstr "kan inte bli ny processgruppledare (%1)" - -#: main.cc:210 main.cc:331 -#, fuzzy -msgid "cannot open pango.rc file %1" -msgstr "kan ej öppna färgdefinitionsfil %1: %2" - #: main.cc:235 main.cc:358 msgid "Cannot find ArdourMono TrueType font" msgstr "" @@ -6978,13 +4701,6 @@ msgid "" "session at this time, because we would lose your connection information.\n" msgstr "" -#: main.cc:487 -#, fuzzy -msgid " (built using " -msgstr "" -"\n" -" (kompilerat med " - #: main.cc:490 msgid " and GCC version " msgstr " och GCC version " @@ -6993,14 +4709,6 @@ msgstr " och GCC version " msgid "Copyright (C) 1999-2012 Paul Davis" msgstr "" -#: main.cc:501 -#, fuzzy -msgid "" -"Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " -"Baker, Robin Gareus" -msgstr "" -"Vissa delar Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel Baker" - #: main.cc:503 msgid "%1 comes with ABSOLUTELY NO WARRANTY" msgstr "" @@ -7017,25 +4725,10 @@ msgstr "" msgid "under certain conditions; see the source for copying conditions." msgstr "" -#: main.cc:513 -#, fuzzy -msgid "could not initialize %1." -msgstr "kunde inte initialisera Ardour." - #: main.cc:522 msgid "Cannot xinstall SIGPIPE error handler" msgstr "" -#: main.cc:528 -#, fuzzy -msgid "could not create %1 GUI" -msgstr "kunde inte skapa ARDOUR GUI" - -#: main_clock.cc:51 -#, fuzzy -msgid "Display delta to edit cursor" -msgstr "Primär klockdelta till redigeringspunkten" - #: marker.cc:251 video_image_frame.cc:121 msgid "MarkerText" msgstr "MarkörText" @@ -7054,50 +4747,10 @@ msgstr "Invertera" msgid "Force" msgstr "Tvinga" -#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 -#, fuzzy -msgid "MIDI Channel Control" -msgstr "MIDI-kontroll" - -#: midi_channel_selector.cc:332 -#, fuzzy -msgid "Playback all channels" -msgstr "Dölj alla övertoningar" - -#: midi_channel_selector.cc:333 -#, fuzzy -msgid "Play only selected channels" -msgstr "Markera omfÃ¥ng" - #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" -#: midi_channel_selector.cc:335 -#, fuzzy -msgid "Record all channels" -msgstr "Dölj alla övertoningar" - -#: midi_channel_selector.cc:336 -#, fuzzy -msgid "Record only selected channels" -msgstr "redigeringspunkten" - -#: midi_channel_selector.cc:337 -#, fuzzy -msgid "Force all channels to 1 channel" -msgstr "kanal" - -#: midi_channel_selector.cc:378 -#, fuzzy -msgid "Inbound" -msgstr "Region gränsar" - -#: midi_channel_selector.cc:398 -#, fuzzy -msgid "Click to enable recording all channels" -msgstr "Tryck för att slÃ¥ pÃ¥/av insticksprogrammet" - #: midi_channel_selector.cc:403 msgid "Click to disable recording all channels" msgstr "" @@ -7106,11 +4759,6 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" -#: midi_channel_selector.cc:415 -#, fuzzy -msgid "Playback" -msgstr "Uppspelning endast" - #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -7155,26 +4803,6 @@ msgstr "" msgid "Triplet" msgstr "" -#: midi_list_editor.cc:58 -#, fuzzy -msgid "Quarter" -msgstr "kvart (4)" - -#: midi_list_editor.cc:59 -#, fuzzy -msgid "Eighth" -msgstr "Höger" - -#: midi_list_editor.cc:60 -#, fuzzy -msgid "Sixteenth" -msgstr "sextondel (16)" - -#: midi_list_editor.cc:61 -#, fuzzy -msgid "Thirty-second" -msgstr "trettiotvÃ¥ondel (32)" - #: midi_list_editor.cc:62 msgid "Sixty-fourth" msgstr "" @@ -7187,89 +4815,14 @@ msgstr "" msgid "Vel" msgstr "Styrka" -#: midi_list_editor.cc:215 -#, fuzzy -msgid "edit note start" -msgstr "redigeringspunkten" - -#: midi_list_editor.cc:224 -#, fuzzy -msgid "edit note channel" -msgstr "redigeringspunkten" - -#: midi_list_editor.cc:234 -#, fuzzy -msgid "edit note number" -msgstr "redigeringspunkten" - -#: midi_list_editor.cc:244 -#, fuzzy -msgid "edit note velocity" -msgstr "redigeringspunkten" - -#: midi_list_editor.cc:258 -#, fuzzy -msgid "edit note length" -msgstr "ändra uttoningslängd" - -#: midi_list_editor.cc:460 -#, fuzzy -msgid "insert new note" -msgstr "Infoga tid" - -#: midi_list_editor.cc:524 -#, fuzzy -msgid "delete notes (from list)" -msgstr "raderad fil" - -#: midi_list_editor.cc:599 -#, fuzzy -msgid "change note channel" -msgstr "kanal" - -#: midi_list_editor.cc:607 -#, fuzzy -msgid "change note number" -msgstr "ändra uttoningslängd" - -#: midi_list_editor.cc:617 -#, fuzzy -msgid "change note velocity" -msgstr "omfÃ¥ngsmarkering" - -#: midi_list_editor.cc:687 -#, fuzzy -msgid "change note length" -msgstr "ändra uttoningslängd" - -#: midi_port_dialog.cc:39 -#, fuzzy -msgid "Add MIDI Port" -msgstr "Lägg till ny MIDI-port" - -#: midi_port_dialog.cc:40 -#, fuzzy -msgid "Port name:" -msgstr "Nytt namn:" - #: midi_port_dialog.cc:45 msgid "MidiPortDialog" msgstr "" -#: midi_region_view.cc:838 -#, fuzzy -msgid "channel edit" -msgstr "kanal" - #: midi_region_view.cc:874 msgid "velocity edit" msgstr "" -#: midi_region_view.cc:931 -#, fuzzy -msgid "add note" -msgstr "redigeringspunkten" - #: midi_region_view.cc:1779 msgid "step add" msgstr "" @@ -7278,69 +4831,14 @@ msgstr "" msgid "insane MIDI patch key %1:%2" msgstr "" -#: midi_region_view.cc:1870 midi_region_view.cc:1890 -#, fuzzy -msgid "alter patch change" -msgstr "Infoga patchändring..." - #: midi_region_view.cc:1924 msgid "add patch change" msgstr "" -#: midi_region_view.cc:1942 -#, fuzzy -msgid "move patch change" -msgstr "ändra tystning" - -#: midi_region_view.cc:1953 -#, fuzzy -msgid "delete patch change" -msgstr "ställ in inslagsomfÃ¥ng" - -#: midi_region_view.cc:2022 -#, fuzzy -msgid "delete selection" -msgstr "utöka markeringen" - -#: midi_region_view.cc:2038 -#, fuzzy -msgid "delete note" -msgstr "raderad fil" - -#: midi_region_view.cc:2425 -#, fuzzy -msgid "move notes" -msgstr "Ta bort omfÃ¥ng" - #: midi_region_view.cc:2647 msgid "resize notes" msgstr "" -#: midi_region_view.cc:2901 -#, fuzzy -msgid "change velocities" -msgstr "omfÃ¥ngsmarkering" - -#: midi_region_view.cc:2967 -#, fuzzy -msgid "transpose" -msgstr "Transponera" - -#: midi_region_view.cc:3001 -#, fuzzy -msgid "change note lengths" -msgstr "ändra uttoningslängd" - -#: midi_region_view.cc:3070 -#, fuzzy -msgid "nudge" -msgstr "Knuffa" - -#: midi_region_view.cc:3085 -#, fuzzy -msgid "change channel" -msgstr "kanal" - #: midi_region_view.cc:3130 msgid "Bank " msgstr "" @@ -7349,43 +4847,18 @@ msgstr "" msgid "Program " msgstr "" -#: midi_region_view.cc:3132 -#, fuzzy -msgid "Channel " -msgstr "Kanal" - #: midi_region_view.cc:3301 midi_region_view.cc:3303 msgid "paste" msgstr "klistra" -#: midi_region_view.cc:3761 -#, fuzzy -msgid "delete sysex" -msgstr "raderad fil" - -#: midi_streamview.cc:479 -#, fuzzy -msgid "failed to create MIDI region" -msgstr "ardour: byt namn pÃ¥ region" - #: midi_time_axis.cc:262 msgid "External MIDI Device" msgstr "" -#: midi_time_axis.cc:263 -#, fuzzy -msgid "External Device Mode" -msgstr "Extern synk.-källa" - #: midi_time_axis.cc:271 msgid "Chns" msgstr "" -#: midi_time_axis.cc:272 -#, fuzzy -msgid "Click to edit channel settings" -msgstr " Klicka här för att lägga till ett format" - #: midi_time_axis.cc:486 msgid "Show Full Range" msgstr "Visa hela omfÃ¥nget" @@ -7394,26 +4867,6 @@ msgstr "Visa hela omfÃ¥nget" msgid "Fit Contents" msgstr "Anpassa innehÃ¥llet" -#: midi_time_axis.cc:495 -#, fuzzy -msgid "Note Range" -msgstr "NotomfÃ¥ng" - -#: midi_time_axis.cc:496 -#, fuzzy -msgid "Note Mode" -msgstr "Musläge" - -#: midi_time_axis.cc:497 -#, fuzzy -msgid "Channel Selector" -msgstr "Antal kanaler" - -#: midi_time_axis.cc:502 -#, fuzzy -msgid "Color Mode" -msgstr "Färg" - #: midi_time_axis.cc:561 msgid "Bender" msgstr "" @@ -7422,84 +4875,18 @@ msgstr "" msgid "Pressure" msgstr "" -#: midi_time_axis.cc:578 -#, fuzzy -msgid "Controllers" -msgstr "Kontroller" - #: midi_time_axis.cc:583 msgid "No MIDI Channels selected" msgstr "" -#: midi_time_axis.cc:640 midi_time_axis.cc:769 -#, fuzzy -msgid "Hide all channels" -msgstr "Dölj alla övertoningar" - -#: midi_time_axis.cc:644 midi_time_axis.cc:773 -#, fuzzy -msgid "Show all channels" -msgstr "Visa alla övertoningar" - -#: midi_time_axis.cc:655 midi_time_axis.cc:784 -#, fuzzy -msgid "Channel %1" -msgstr "Kanaler: %1" - -#: midi_time_axis.cc:910 midi_time_axis.cc:942 -#, fuzzy -msgid "Controllers %1-%2" -msgstr "Kontrollerare..." - -#: midi_time_axis.cc:933 midi_time_axis.cc:936 -#, fuzzy -msgid "Controller %1" -msgstr "Kontrollerare..." - #: midi_time_axis.cc:959 msgid "Sustained" msgstr "" -#: midi_time_axis.cc:966 -#, fuzzy -msgid "Percussive" -msgstr "Perkussivt anslag" - -#: midi_time_axis.cc:986 -#, fuzzy -msgid "Meter Colors" -msgstr "NivÃ¥mätartopphÃ¥llning" - -#: midi_time_axis.cc:993 -#, fuzzy -msgid "Channel Colors" -msgstr "Antal kanaler" - -#: midi_time_axis.cc:1000 -#, fuzzy -msgid "Track Color" -msgstr "SpÃ¥rläge" - -#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 -#: midi_time_axis.cc:1510 -#, fuzzy -msgid "all" -msgstr "Liten" - #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" -#: midi_tracer.cc:43 -#, fuzzy -msgid "Line history: " -msgstr "Begränsa Ã¥ngrahistoriken" - -#: midi_tracer.cc:51 -#, fuzzy -msgid "Auto-Scroll" -msgstr "Skrollning" - #: midi_tracer.cc:52 msgid "Decimal" msgstr "" @@ -7508,43 +4895,18 @@ msgstr "" msgid "Enabled" msgstr "Aktiverad" -#: midi_tracer.cc:54 -#, fuzzy -msgid "Delta times" -msgstr "Beskär startpunkt" - #: midi_tracer.cc:66 msgid "Port:" msgstr "" -#: midi_velocity_dialog.cc:31 -#, fuzzy -msgid "New velocity" -msgstr "omfÃ¥ngsmarkering" - #: missing_file_dialog.cc:34 msgid "Missing File!" msgstr "" -#: missing_file_dialog.cc:36 -#, fuzzy -msgid "Select a folder to search" -msgstr "Välj mapp för sessionen" - #: missing_file_dialog.cc:37 msgid "Add chosen folder to search path, and try again" msgstr "" -#: missing_file_dialog.cc:39 -#, fuzzy -msgid "Stop loading this session" -msgstr "Stoppa vid slutet av sessionen" - -#: missing_file_dialog.cc:40 -#, fuzzy -msgid "Skip all missing files" -msgstr "Hoppa över Anti-aliasing" - #: missing_file_dialog.cc:41 msgid "Skip this file" msgstr "" @@ -7565,16 +4927,6 @@ msgid "" "\n" msgstr "" -#: missing_file_dialog.cc:99 -#, fuzzy -msgid "Click to choose an additional folder" -msgstr "Klicka för att välja ingÃ¥ngar" - -#: missing_plugin_dialog.cc:29 -#, fuzzy -msgid "Missing Plugins" -msgstr "Insticksprogram" - #: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 msgid "OK" msgstr "" @@ -7603,43 +4955,6 @@ msgstr "" msgid "Set Gain to 0dB on Mixer-Selected Tracks/Busses" msgstr "" -#: mixer_actor.cc:63 -#, fuzzy -msgid "Copy Selected Processors" -msgstr "Valda regioner" - -#: mixer_actor.cc:64 -#, fuzzy -msgid "Cut Selected Processors" -msgstr "Rym valda spÃ¥r" - -#: mixer_actor.cc:65 -#, fuzzy -msgid "Paste Selected Processors" -msgstr "ställ in valda regioner" - -#: mixer_actor.cc:66 -#, fuzzy -msgid "Delete Selected Processors" -msgstr "ställ in valda regioner" - -#: mixer_actor.cc:67 -#, fuzzy -msgid "Select All (visible) Processors" -msgstr "alla tillgängliga processorer" - -# msgid "Delete" -# msgstr "Radera" -#: mixer_actor.cc:68 -#, fuzzy -msgid "Toggle Selected Processors" -msgstr "Flytta vald platsmarkör" - -#: mixer_actor.cc:69 -#, fuzzy -msgid "Toggle Selected Plugins" -msgstr "Spela valda regioner" - #: mixer_actor.cc:72 mixer_actor.cc:73 msgid "Scroll Mixer Window to the left" msgstr "" @@ -7660,12 +4975,6 @@ msgstr "" msgid "pre" msgstr "pre" -#: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 -#: rc_option_editor.cc:1881 -#, fuzzy -msgid "Comments" -msgstr "Kommentar" - #: mixer_strip.cc:147 msgid "Click to toggle the width of this mixer strip." msgstr "" @@ -7676,16 +4985,6 @@ msgid "" "%1-%2-click to toggle the width of all strips." msgstr "" -#: mixer_strip.cc:156 -#, fuzzy -msgid "Hide this mixer strip" -msgstr "Dölj detta spÃ¥r" - -#: mixer_strip.cc:167 -#, fuzzy -msgid "Click to select metering point" -msgstr "Välj nivÃ¥mätningskälla" - #: mixer_strip.cc:173 msgid "tupni" msgstr "ni" @@ -7710,42 +5009,10 @@ msgstr "" msgid "Mix group" msgstr "Mixgrupp" -#: mixer_strip.cc:351 rc_option_editor.cc:1878 -#, fuzzy -msgid "Phase Invert" -msgstr "Invertera" - -#: mixer_strip.cc:352 rc_option_editor.cc:1879 route_ui.cc:1218 -#, fuzzy -msgid "Solo Safe" -msgstr "Solo-säker" - #: mixer_strip.cc:355 mixer_ui.cc:124 route_time_axis.cc:673 msgid "Group" msgstr "Grupp" -#: mixer_strip.cc:356 rc_option_editor.cc:1882 -#, fuzzy -msgid "Meter Point" -msgstr "NivÃ¥mätning" - -#: mixer_strip.cc:470 -#, fuzzy -msgid "Enable/Disable MIDI input" -msgstr "SlÃ¥ pÃ¥/av audio-klick" - -#: mixer_strip.cc:622 -#, fuzzy -msgid "" -"Aux\n" -"Sends" -msgstr "Skicka MTC" - -#: mixer_strip.cc:646 -#, fuzzy -msgid "Snd" -msgstr "Slut" - #: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 msgid "Not connected to JACK - no I/O changes are possible" msgstr "Inte ansluten till JACK - in/ut-ändringar är inte möjliga" @@ -7758,11 +5025,6 @@ msgstr "" msgid "OUTPUT from %1" msgstr "" -#: mixer_strip.cc:1174 -#, fuzzy -msgid "Disconnected" -msgstr "frÃ¥nkopplad" - #: mixer_strip.cc:1303 msgid "*Comments*" msgstr "*Kommentarer" @@ -7791,11 +5053,6 @@ msgstr "" msgid "~G" msgstr "" -#: mixer_strip.cc:1467 -#, fuzzy -msgid "Comments..." -msgstr "Kommentarer" - #: mixer_strip.cc:1469 msgid "Save As Template..." msgstr "Spara som spÃ¥rmall..." @@ -7816,39 +5073,14 @@ msgstr "Skydda mot denormals" msgid "Remote Control ID..." msgstr "Fjärr-ID..." -#: mixer_strip.cc:1717 mixer_strip.cc:1741 -#, fuzzy -msgid "in" -msgstr "volym" - #: mixer_strip.cc:1725 msgid "post" msgstr "post" -#: mixer_strip.cc:1729 -#, fuzzy -msgid "out" -msgstr "Om" - #: mixer_strip.cc:1734 msgid "custom" msgstr "egen" -#: mixer_strip.cc:1745 -#, fuzzy -msgid "pr" -msgstr "pre" - -#: mixer_strip.cc:1749 -#, fuzzy -msgid "po" -msgstr "post" - -#: mixer_strip.cc:1753 -#, fuzzy -msgid "o" -msgstr "klar" - #: mixer_strip.cc:1758 msgid "c" msgstr "" @@ -7869,30 +5101,10 @@ msgstr "" msgid "D" msgstr "" -#: mixer_strip.cc:1953 -#, fuzzy -msgid "i" -msgstr "volym" - -#: mixer_strip.cc:2128 -#, fuzzy -msgid "Pre-fader" -msgstr "Före-nivÃ¥reglage" - -#: mixer_strip.cc:2129 -#, fuzzy -msgid "Post-fader" -msgstr "Efter-nivÃ¥reglage" - #: mixer_strip.cc:2166 meter_strip.cc:728 msgid "Change all in Group to %1" msgstr "" -#: mixer_strip.cc:2168 meter_strip.cc:730 -#, fuzzy -msgid "Change all to %1" -msgstr "Kanaler: %1" - #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -7909,16 +5121,6 @@ msgstr "-alla-" msgid "Strips" msgstr "Remsor" -#: meter_strip.cc:764 -#, fuzzy -msgid "Variable height" -msgstr "höjden" - -#: meter_strip.cc:765 -#, fuzzy -msgid "Short" -msgstr "kort" - #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -7971,53 +5173,10 @@ msgstr "" msgid "SiP" msgstr "" -#: monitor_section.cc:86 -#, fuzzy -msgid "soloing" -msgstr "Sololäge" - #: monitor_section.cc:90 msgid "isolated" msgstr "" -#: monitor_section.cc:94 -#, fuzzy -msgid "auditioning" -msgstr "Avlyssna" - -#: monitor_section.cc:104 -#, fuzzy -msgid "" -"When active, something is solo-isolated.\n" -"Click to de-isolate everything" -msgstr "" -"I aktivt läge är valda kanaler i sololäge.\n" -"Klicka för att stänga av" - -#: monitor_section.cc:107 -#, fuzzy -msgid "" -"When active, auditioning is active.\n" -"Click to stop the audition" -msgstr "" -"I aktivt läge avlyssnas nÃ¥got\n" -"Klicka för att stoppa avlyssningen" - -#: monitor_section.cc:124 -#, fuzzy -msgid "Solo controls affect solo-in-place" -msgstr "Solokontroller är avlyssningskontroller" - -#: monitor_section.cc:130 -#, fuzzy -msgid "Solo controls toggle after-fader-listen" -msgstr "Solokontroller är avlyssningskontroller" - -#: monitor_section.cc:136 -#, fuzzy -msgid "Solo controls toggle pre-fader-listen" -msgstr "Solokontroller är avlyssningskontroller" - #: monitor_section.cc:144 msgid "Gain increase for soloed signals (0dB is normal)" msgstr "" @@ -8044,20 +5203,10 @@ msgstr "" msgid "Dim" msgstr "" -#: monitor_section.cc:190 -#, fuzzy -msgid "excl. solo" -msgstr "Avskild solo" - #: monitor_section.cc:192 msgid "Exclusive solo means that only 1 solo is active at a time" msgstr "" -#: monitor_section.cc:199 -#, fuzzy -msgid "solo » mute" -msgstr "Solo / tysta" - #: monitor_section.cc:201 msgid "" "If enabled, solo will override mute\n" @@ -8076,78 +5225,23 @@ msgstr "" msgid "mono" msgstr "" -#: monitor_section.cc:266 -#, fuzzy -msgid "Monitor" -msgstr "Medhörning" - #: monitor_section.cc:678 msgid "Switch monitor to mono" msgstr "" -#: monitor_section.cc:681 -#, fuzzy -msgid "Cut monitor" -msgstr "Medhörning" - -#: monitor_section.cc:684 -#, fuzzy -msgid "Dim monitor" -msgstr "Medhörning" - -#: monitor_section.cc:687 -#, fuzzy -msgid "Toggle exclusive solo mode" -msgstr "Avskild solo" - #: monitor_section.cc:693 msgid "Toggle mute overrides solo mode" msgstr "" -#: monitor_section.cc:705 -#, fuzzy -msgid "Cut monitor channel %1" -msgstr "panorerare för kanal %u" - -#: monitor_section.cc:710 -#, fuzzy -msgid "Dim monitor channel %1" -msgstr "panorerare för kanal %u" - #: monitor_section.cc:715 msgid "Solo monitor channel %1" msgstr "" -#: monitor_section.cc:720 -#, fuzzy -msgid "Invert monitor channel %1" -msgstr "panorerare för kanal %u" - -#: monitor_section.cc:730 -#, fuzzy -msgid "In-place solo" -msgstr "LÃ¥st solo" - -#: monitor_section.cc:732 -#, fuzzy -msgid "After Fade Listen (AFL) solo" -msgstr "efter volymreglage" - -#: monitor_section.cc:734 -#, fuzzy -msgid "Pre Fade Listen (PFL) solo" -msgstr "före volymreglare" - #: mono_panner.cc:101 #, c-format msgid "L:%3d R:%3d" msgstr "" -#: mono_panner_editor.cc:33 -#, fuzzy -msgid "Mono Panner" -msgstr "Panorerare" - #: mono_panner_editor.cc:44 mono_panner_editor.cc:49 #: stereo_panner_editor.cc:46 stereo_panner_editor.cc:51 msgid "%" @@ -8244,42 +5338,11 @@ msgstr "Normalisera" msgid "Usage: " msgstr "Användning: " -#: opts.cc:58 -#, fuzzy -msgid " [SESSION_NAME] Name of session to load\n" -msgstr " [session-name] Namn för sessionen som ska laddas\n" - -#: opts.cc:59 -#, fuzzy -msgid " -v, --version Show version information\n" -msgstr " -v, --version Visa versionsinformation\n" - -#: opts.cc:60 -#, fuzzy -msgid " -h, --help Print this message\n" -msgstr " -h, --help Visa detta meddelande\n" - #: opts.cc:61 msgid "" " -a, --no-announcements Do not contact website for announcements\n" msgstr "" -#: opts.cc:62 -#, fuzzy -msgid "" -" -b, --bindings Print all possible keyboard binding names\n" -msgstr "" -" -b, --bindings Visa alla möjliga kortkommandonamn\n" - -#: opts.cc:63 -#, fuzzy -msgid "" -" -c, --name Use a specific jack client name, default is " -"ardour\n" -msgstr "" -" -c, --name name Använd ett specifikt jack-klientnamn, " -"standard är ardour\n" - #: opts.cc:64 msgid "" " -d, --disable-plugins Disable all plugins in an existing session\n" @@ -8291,44 +5354,14 @@ msgid "" "available options\n" msgstr "" -#: opts.cc:66 -#, fuzzy -msgid " -n, --no-splash Do not show splash screen\n" -msgstr " -n, --show-splash Visa splash-bilden\n" - #: opts.cc:67 msgid " -m, --menus file Use \"file\" to define menus\n" msgstr "" -#: opts.cc:68 -#, fuzzy -msgid "" -" -N, --new session-name Create a new session from the command line\n" -msgstr "" -" -N, --new session-name Skapa en ny session frÃ¥n kammando- " -"prompten\n" - -#: opts.cc:69 -#, fuzzy -msgid " -O, --no-hw-optimizations Disable h/w specific optimizations\n" -msgstr "" -" -o, --use-hw-optimizations Försök använda hÃ¥rdvaruspecifik " -"optimering\n" - #: opts.cc:70 msgid " -P, --no-connect-ports Do not connect any ports at startup\n" msgstr "" -#: opts.cc:71 -#, fuzzy -msgid " -S, --sync Draw the gui synchronously \n" -msgstr " -v, --version Visa versionsinformation\n" - -#: opts.cc:73 -#, fuzzy -msgid " -V, --novst Do not use VST support\n" -msgstr " -V, --novst SlÃ¥ av VST-stödet\n" - #: opts.cc:75 msgid "" " -E, --save Load the specified session, save it to " @@ -8345,11 +5378,6 @@ msgid "" "ardour3/ardour.bindings)\n" msgstr "" -#: panner2d.cc:781 -#, fuzzy -msgid "Panner (2D)" -msgstr "Panorerare" - #: panner2d.cc:783 panner_ui.cc:384 plugin_ui.cc:451 msgid "Bypass" msgstr "FörbigÃ¥" @@ -8371,20 +5399,10 @@ msgid "" "No panner user interface is currently available for %1-in/2out tracks/busses" msgstr "" -#: playlist_selector.cc:43 -#, fuzzy -msgid "Playlists" -msgstr "Spellista" - #: playlist_selector.cc:54 msgid "Playlists grouped by track" msgstr "Spellista grupperad utifrÃ¥n spÃ¥r" -#: playlist_selector.cc:101 -#, fuzzy -msgid "Playlist for %1" -msgstr "Spellista" - #: playlist_selector.cc:114 msgid "Other tracks" msgstr "Andra spÃ¥r" @@ -8393,11 +5411,6 @@ msgstr "Andra spÃ¥r" msgid "unassigned" msgstr "otilldelad" -#: playlist_selector.cc:194 -#, fuzzy -msgid "Imported" -msgstr "Importera" - #: plugin_eq_gui.cc:75 plugin_eq_gui.cc:99 msgid "dB scale" msgstr "dB-skala" @@ -8458,21 +5471,6 @@ msgstr "Kategori" msgid "Creator" msgstr "Upphovsman" -#: plugin_selector.cc:90 -#, fuzzy -msgid "# Audio In" -msgstr "LjudspÃ¥r" - -#: plugin_selector.cc:91 -#, fuzzy -msgid "# Audio Out" -msgstr "Lägg till buss" - -#: plugin_selector.cc:92 -#, fuzzy -msgid "# MIDI In" -msgstr "MIDI-bindning" - #: plugin_selector.cc:93 msgid "# MIDI Out" msgstr "" @@ -8529,31 +5527,6 @@ msgstr "Kategori" msgid "Eh? LADSPA plugins don't have editors!" msgstr "" -#: plugin_ui.cc:125 plugin_ui.cc:227 -#, fuzzy -msgid "" -"unknown type of editor-supplying plugin (note: no VST support in this " -"version of %1)" -msgstr "" -"okänd typ av editor-levererande insticksprogram (N.B.: inget VST-stöd i " -"denna version av ardour)" - -#: plugin_ui.cc:128 -#, fuzzy -msgid "unknown type of editor-supplying plugin" -msgstr "" -"okänd typ av editor-levererande insticksprogram (N.B.: inget VST-stöd i " -"denna version av ardour)" - -#: plugin_ui.cc:257 -#, fuzzy -msgid "" -"unknown type of editor-supplying plugin (note: no linuxVST support in this " -"version of %1)" -msgstr "" -"okänd typ av editor-levererande insticksprogram (N.B.: inget VST-stöd i " -"denna version av ardour)" - #: plugin_ui.cc:329 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "" @@ -8562,11 +5535,6 @@ msgstr "" msgid "Add" msgstr "Lägg till" -#: plugin_ui.cc:421 -#, fuzzy -msgid "Description" -msgstr "Riktning:" - #: plugin_ui.cc:422 msgid "Plugin analysis" msgstr "Analys av insticksprogram" @@ -8577,11 +5545,6 @@ msgid "" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:430 -#, fuzzy -msgid "Save a new preset" -msgstr "Namnge ny förinställning" - #: plugin_ui.cc:431 msgid "Save the current preset" msgstr "" @@ -8606,13 +5569,6 @@ msgstr "" msgid "Click to enable/disable this plugin" msgstr "Tryck för att slÃ¥ pÃ¥/av insticksprogrammet" -#: plugin_ui.cc:506 -#, fuzzy -msgid "latency (%1 sample)" -msgid_plural "latency (%1 samples)" -msgstr[0] "fördröjning (%1 samplingar)" -msgstr[1] "fördröjning (%1 samplingar)" - #: plugin_ui.cc:508 msgid "latency (%1 ms)" msgstr "fördröjning (%1 msek)" @@ -8653,11 +5609,6 @@ msgstr "%1-spÃ¥r" msgid "Hardware" msgstr "HÃ¥rdvara" -#: port_group.cc:338 -#, fuzzy -msgid "%1 Misc" -msgstr "Diverse" - #: port_group.cc:339 msgid "Other" msgstr "" @@ -8674,45 +5625,10 @@ msgstr "" msgid "MTC in" msgstr "" -#: port_group.cc:466 -#, fuzzy -msgid "MIDI control in" -msgstr "MIDI-kontroll" - -#: port_group.cc:469 -#, fuzzy -msgid "MIDI clock in" -msgstr "Skicka MIDI-klocka" - -#: port_group.cc:472 -#, fuzzy -msgid "MMC in" -msgstr "MMC-ID" - #: port_group.cc:476 msgid "MTC out" msgstr "" -#: port_group.cc:479 -#, fuzzy -msgid "MIDI control out" -msgstr "MIDI-kontroll" - -#: port_group.cc:482 -#, fuzzy -msgid "MIDI clock out" -msgstr "Skicka MIDI-klocka" - -#: port_group.cc:485 -#, fuzzy -msgid "MMC out" -msgstr "MMC-ID" - -#: port_group.cc:540 -#, fuzzy -msgid ":monitor" -msgstr "Medhörning" - #: port_group.cc:552 msgid "system:" msgstr "" @@ -8721,16 +5637,6 @@ msgstr "" msgid "alsa_pcm" msgstr "" -#: port_insert_ui.cc:40 -#, fuzzy -msgid "Measure Latency" -msgstr "Fördröjning" - -#: port_insert_ui.cc:51 -#, fuzzy -msgid "Send/Output" -msgstr "UtgÃ¥ng" - #: port_insert_ui.cc:52 msgid "Return/Input" msgstr "" @@ -8743,16 +5649,6 @@ msgstr "" msgid "No signal detected" msgstr "" -#: port_insert_ui.cc:135 -#, fuzzy -msgid "Detecting ..." -msgstr "Markering..." - -#: port_insert_ui.cc:166 -#, fuzzy -msgid "Port Insert " -msgstr "Ny Anslutningspunkt" - #: port_matrix.cc:331 port_matrix.cc:357 msgid "Sources" msgstr "Källor" @@ -8776,11 +5672,6 @@ msgstr "Byt namn pÃ¥ '%s'..." msgid "Remove all" msgstr "Ta bort alla" -#: port_matrix.cc:492 port_matrix.cc:504 -#, fuzzy, c-format -msgid "%s all" -msgstr "Nollställ alla" - #: port_matrix.cc:527 msgid "Rescan" msgstr "Uppdatera" @@ -8828,16 +5719,6 @@ msgstr "%s alla frÃ¥n '%s'" msgid "channel" msgstr "kanal" -#: port_matrix_body.cc:82 -#, fuzzy -msgid "There are no ports to connect." -msgstr "Det finns inga fler JACK-portar tillgängliga" - -#: port_matrix_body.cc:84 -#, fuzzy -msgid "There are no %1 ports to connect." -msgstr "Det finns inga fler JACK-portar tillgängliga" - #: processor_box.cc:256 msgid "" "%1\n" @@ -8851,21 +5732,6 @@ msgid "" "Double-click to show generic GUI." msgstr "" -#: processor_box.cc:372 -#, fuzzy -msgid "Show All Controls" -msgstr "msgstr Visa Sändkontroller" - -#: processor_box.cc:376 -#, fuzzy -msgid "Hide All Controls" -msgstr "Göm alla övertoningar" - -#: processor_box.cc:465 -#, fuzzy -msgid "on" -msgstr "klar" - #: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 msgid "off" msgstr "av" @@ -8876,11 +5742,6 @@ msgid "" "plugins,inserts,sends and more" msgstr "" -#: processor_box.cc:1197 processor_box.cc:1591 -#, fuzzy -msgid "Plugin Incompatibility" -msgstr "Kompatibilitet" - #: processor_box.cc:1200 msgid "You attempted to add the plugin \"%1\" in slot %2.\n" msgstr "" @@ -8891,20 +5752,6 @@ msgid "" "This plugin has:\n" msgstr "" -#: processor_box.cc:1209 -#, fuzzy -msgid "\t%1 MIDI input\n" -msgid_plural "\t%1 MIDI inputs\n" -msgstr[0] "%1-ingÃ¥ng" -msgstr[1] "%1-ingÃ¥ng" - -#: processor_box.cc:1213 -#, fuzzy -msgid "\t%1 audio input\n" -msgid_plural "\t%1 audio inputs\n" -msgstr[0] "%1-ingÃ¥ng" -msgstr[1] "%1-ingÃ¥ng" - #: processor_box.cc:1216 msgid "" "\n" @@ -8929,27 +5776,6 @@ msgid "" "%1 is unable to insert this plugin here.\n" msgstr "" -#: processor_box.cc:1262 -#, fuzzy -msgid "Cannot set up new send: %1" -msgstr "kan ej konfigurera signalhantering för %1" - -#: processor_box.cc:1594 -#, fuzzy -msgid "" -"You cannot reorder these plugins/sends/inserts\n" -"in that way because the inputs and\n" -"outputs will not work correctly." -msgstr "" -"Du kan inte omarrangera dessa omdirigeringar\n" -"pÃ¥ det sättet eftersom ingÃ¥ngar och\n" -"utgÃ¥ngarna inte fungerar korrekt." - -#: processor_box.cc:1778 -#, fuzzy -msgid "Rename Processor" -msgstr "Döp om spÃ¥r" - #: processor_box.cc:1809 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "" @@ -8958,53 +5784,10 @@ msgstr "" msgid "plugin insert constructor failed" msgstr "" -#: processor_box.cc:1954 -#, fuzzy -msgid "" -"Copying the set of processors on the clipboard failed,\n" -"probably because the I/O configuration of the plugins\n" -"could not match the configuration of this track." -msgstr "" -"Kopieringen av omdirigeringarna pÃ¥ klippbordet misslyckades,\n" -"förmodligen pÃ¥ grund av att I/O-konfiguration av insticksprogrammen\n" -"inte kunde matcha konfiurationen av detta spÃ¥ret." - -#: processor_box.cc:2000 -#, fuzzy -msgid "" -"Do you really want to remove all processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Vill du verkligen radera alla omdirigeringar frÃ¥n denna bussen?\n" -"(detta kan inte Ã¥ngras)" - #: processor_box.cc:2004 processor_box.cc:2029 msgid "Yes, remove them all" msgstr "Ja, ta bort alla" -#: processor_box.cc:2006 processor_box.cc:2031 -#, fuzzy -msgid "Remove processors" -msgstr "%1 processor(er)" - -#: processor_box.cc:2021 -#, fuzzy -msgid "" -"Do you really want to remove all pre-fader processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Vill du verkligen radera alla omdirigeringar frÃ¥n denna bussen?\n" -"(detta kan inte Ã¥ngras)" - -#: processor_box.cc:2024 -#, fuzzy -msgid "" -"Do you really want to remove all post-fader processors from %1?\n" -"(this cannot be undone)" -msgstr "" -"Vill du verkligen radera alla omdirigeringar frÃ¥n denna bussen?\n" -"(detta kan inte Ã¥ngras)" - #: processor_box.cc:2200 msgid "New Plugin" msgstr "Nytt insticksprogram" @@ -9013,11 +5796,6 @@ msgstr "Nytt insticksprogram" msgid "New Insert" msgstr "Ny Anslutningspunkt" -#: processor_box.cc:2206 -#, fuzzy -msgid "New External Send ..." -msgstr "Ny auxilliär sänd..." - #: processor_box.cc:2210 msgid "New Aux Send ..." msgstr "Ny auxilliär sänd..." @@ -9038,11 +5816,6 @@ msgstr "Rensa (efterreglage)" msgid "Activate All" msgstr "Aktivera alla" -#: processor_box.cc:2246 -#, fuzzy -msgid "Deactivate All" -msgstr "Avaktivera alla" - #: processor_box.cc:2248 msgid "A/B Plugins" msgstr "A/B:a insticksprogram" @@ -9051,21 +5824,6 @@ msgstr "A/B:a insticksprogram" msgid "Edit with generic controls..." msgstr "" -#: processor_box.cc:2557 -#, fuzzy -msgid "%1: %2 (by %3)" -msgstr "ardour: %1: %2 (av %3)" - -#: patch_change_dialog.cc:51 -#, fuzzy -msgid "Patch Change" -msgstr "Infoga patchändring..." - -#: patch_change_dialog.cc:77 -#, fuzzy -msgid "Patch Bank" -msgstr "Infoga patchändring..." - #: patch_change_dialog.cc:84 msgid "Patch" msgstr "" @@ -9150,16 +5908,6 @@ msgstr "+ musknapp" msgid "Delete using:" msgstr "Radera med:" -#: rc_option_editor.cc:368 -#, fuzzy -msgid "Insert note using:" -msgstr "Radera med:" - -#: rc_option_editor.cc:395 -#, fuzzy -msgid "Ignore snap using:" -msgstr "Ignorera fästläge med" - #: rc_option_editor.cc:411 msgid "Keyboard layout:" msgstr "Tangentbordslayout:" @@ -9176,11 +5924,6 @@ msgstr "Uppspelning (sekunder buffert):" msgid "Recording (seconds of buffering):" msgstr "Inspelning (sekunder buffert):" -#: rc_option_editor.cc:656 -#, fuzzy -msgid "Control Surface Protocol" -msgstr "Kontrollytor" - #: rc_option_editor.cc:660 msgid "Feedback" msgstr "Gensvar" @@ -9218,11 +5961,6 @@ msgid "" "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:836 -#, fuzzy -msgid "Video Folder:" -msgstr "Mapp:" - #: rc_option_editor.cc:841 msgid "" "Local path to the video-server document-root. Only files below this " @@ -9272,11 +6010,6 @@ msgstr "%1 processor(er)" msgid "This setting will only take effect when %1 is restarted." msgstr "" -#: rc_option_editor.cc:1025 -#, fuzzy -msgid "Options|Undo" -msgstr "Inställningar" - #: rc_option_editor.cc:1032 msgid "Verify removal of last capture" msgstr "Bekräfta borttagning av senaste inspelningen" @@ -9285,29 +6018,14 @@ msgstr "Bekräfta borttagning av senaste inspelningen" msgid "Make periodic backups of the session file" msgstr "Gör periodiska säkerhetskopior" -#: rc_option_editor.cc:1045 -#, fuzzy -msgid "Session Management" -msgstr "Sessionens namn:" - #: rc_option_editor.cc:1050 msgid "Always copy imported files" msgstr "Kopiera alltid importerade filer" -#: rc_option_editor.cc:1057 -#, fuzzy -msgid "Default folder for new sessions:" -msgstr "Standardplats för nya sessioner" - #: rc_option_editor.cc:1065 msgid "Maximum number of recent sessions" msgstr "" -#: rc_option_editor.cc:1078 -#, fuzzy -msgid "Click gain level" -msgstr "Klickljudfil" - #: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "Automatisering" @@ -9389,11 +6107,6 @@ msgstr "" msgid "Sync/Slave" msgstr "" -#: rc_option_editor.cc:1185 -#, fuzzy -msgid "External timecode source" -msgstr "Extern synk.-källa" - #: rc_option_editor.cc:1195 msgid "Match session video frame rate to external timecode" msgstr "" @@ -9412,11 +6125,6 @@ msgid "" "external timecode standard and the session standard." msgstr "" -#: rc_option_editor.cc:1211 -#, fuzzy -msgid "External timecode is sync locked" -msgstr "Extern synk.-källa" - #: rc_option_editor.cc:1217 msgid "" "When enabled indicates that the selected external timecode source " @@ -9448,16 +6156,6 @@ msgstr "" msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1257 -#, fuzzy -msgid "LTC Generator" -msgstr "Upphovsman" - -#: rc_option_editor.cc:1262 -#, fuzzy -msgid "Enable LTC generator" -msgstr "Filplatser" - #: rc_option_editor.cc:1269 msgid "send LTC while stopped" msgstr "" @@ -9468,11 +6166,6 @@ msgid "" "transport (playhead) is not moving" msgstr "" -#: rc_option_editor.cc:1281 -#, fuzzy -msgid "LTC generator level" -msgstr "Upphovsman" - #: rc_option_editor.cc:1285 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " @@ -9499,11 +6192,6 @@ msgstr "" msgid "Regions in active edit groups are edited together" msgstr "" -#: rc_option_editor.cc:1329 -#, fuzzy -msgid "whenever they overlap in time" -msgstr "förkorta den nya överlappande noten" - #: rc_option_editor.cc:1330 msgid "only if they have identical length, position and origin" msgstr "" @@ -9516,16 +6204,6 @@ msgstr "Gummibandsmarkeringen fäster mot rutnätet" msgid "Show waveforms in regions" msgstr "Visa vÃ¥gformer i regioner" -#: rc_option_editor.cc:1356 -#, fuzzy -msgid "Show gain envelopes in audio regions" -msgstr "Visa vÃ¥gformer i regioner" - -#: rc_option_editor.cc:1357 -#, fuzzy -msgid "in all modes" -msgstr "Normalt läge" - #: rc_option_editor.cc:1358 msgid "only in region gain mode" msgstr "" @@ -9570,16 +6248,6 @@ msgstr "Färglägg regioner med spÃ¥rets färg" msgid "Update editor window during drags of the summary" msgstr "" -#: rc_option_editor.cc:1422 -#, fuzzy -msgid "Synchronise editor and mixer track order" -msgstr "Matcha redigerare och mixers spÃ¥rordning" - -#: rc_option_editor.cc:1430 -#, fuzzy -msgid "Synchronise editor and mixer selection" -msgstr "Matcha redigerare och mixers spÃ¥rordning" - #: rc_option_editor.cc:1437 msgid "Name new markers" msgstr "Namnge nya markörer" @@ -9600,11 +6268,6 @@ msgstr "" msgid "Buffering" msgstr "Buffertar" -#: rc_option_editor.cc:1464 -#, fuzzy -msgid "Record monitoring handled by" -msgstr "Medhörning hanteras av" - #: rc_option_editor.cc:1475 msgid "ardour" msgstr "" @@ -9673,16 +6336,6 @@ msgstr "använd FlushToZero" msgid "use DenormalsAreZero" msgstr "använd DenormalsAreZero" -#: rc_option_editor.cc:1553 -#, fuzzy -msgid "use FlushToZero and DenormalsAreZero" -msgstr "använd FlushToZero och DenormalsAreZerO" - -#: rc_option_editor.cc:1563 -#, fuzzy -msgid "Silence plugins when the transport is stopped" -msgstr "Stoppa insticksprogram vid stopp" - #: rc_option_editor.cc:1571 msgid "Make new plugins active" msgstr "Aktivera nya insticksprogram automatiskt" @@ -9703,11 +6356,6 @@ msgstr "Ã…terskapa saknade regioners kanaler" msgid "Solo / mute" msgstr "Solo / tysta" -#: rc_option_editor.cc:1597 -#, fuzzy -msgid "Solo-in-place mute cut (dB)" -msgstr "Tystningströskel för solo (dB)" - #: rc_option_editor.cc:1604 msgid "Solo controls are Listen controls" msgstr "Solokontroller är avlyssningskontroller" @@ -9716,16 +6364,6 @@ msgstr "Solokontroller är avlyssningskontroller" msgid "Listen Position" msgstr "Avlyssningsposition" -#: rc_option_editor.cc:1618 -#, fuzzy -msgid "after-fader (AFL)" -msgstr "efter volymreglage" - -#: rc_option_editor.cc:1619 -#, fuzzy -msgid "pre-fader (PFL)" -msgstr "före volymreglare" - #: rc_option_editor.cc:1625 msgid "PFL signals come from" msgstr "PFL-signaler kommer frÃ¥n" @@ -9742,16 +6380,6 @@ msgstr "för-nivÃ¥reglage men efter för-nivÃ¥reglageprocessorer" msgid "AFL signals come from" msgstr "AFL-signaler kommer frÃ¥n" -#: rc_option_editor.cc:1642 -#, fuzzy -msgid "immediately post-fader" -msgstr "Rensa (efterreglage)" - -#: rc_option_editor.cc:1643 -#, fuzzy -msgid "after post-fader processors (before pan)" -msgstr "efter efter-nivÃ¥reglageprocessorer" - #: rc_option_editor.cc:1652 msgid "Exclusive solo" msgstr "Avskild solo" @@ -9828,11 +6456,6 @@ msgstr "" msgid "Sound MIDI notes as they are selected" msgstr "" -#: rc_option_editor.cc:1810 rc_option_editor.cc:1820 rc_option_editor.cc:1822 -#, fuzzy -msgid "User interaction" -msgstr "RegionsÃ¥tgärder" - #: rc_option_editor.cc:1813 msgid "" "Use translations of %1 messages\n" @@ -9860,15 +6483,6 @@ msgstr "följer mixerns ordning" msgid "follows order of editor" msgstr "följer redigerarens ordning" -#: rc_option_editor.cc:1846 rc_option_editor.cc:1854 rc_option_editor.cc:1864 -#: rc_option_editor.cc:1885 rc_option_editor.cc:1894 rc_option_editor.cc:1902 -#: rc_option_editor.cc:1916 rc_option_editor.cc:1935 rc_option_editor.cc:1951 -#: rc_option_editor.cc:1967 rc_option_editor.cc:1981 rc_option_editor.cc:1995 -#: rc_option_editor.cc:1997 -#, fuzzy -msgid "Preferences|GUI" -msgstr "Inställningar" - #: rc_option_editor.cc:1849 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "" @@ -9885,21 +6499,6 @@ msgstr "" msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" -#: rc_option_editor.cc:1887 -#, fuzzy -msgid "Mixer Strip" -msgstr "Mixer" - -#: rc_option_editor.cc:1897 -#, fuzzy -msgid "Use narrow strips in the mixer by default" -msgstr "Använd smala mixerremsor" - -#: rc_option_editor.cc:1906 -#, fuzzy -msgid "Peak hold time" -msgstr "HÃ¥lltid" - #: rc_option_editor.cc:1912 msgid "short" msgstr "kort" @@ -9912,11 +6511,6 @@ msgstr "" msgid "long" msgstr "lÃ¥ng" -#: rc_option_editor.cc:1920 -#, fuzzy -msgid "DPM fall-off" -msgstr "Nedfall" - #: rc_option_editor.cc:1926 msgid "slowest [6.6dB/sec]" msgstr "" @@ -10003,11 +6597,6 @@ msgstr "" msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1985 -#, fuzzy -msgid "Peak threshold [dBFS]" -msgstr "Topptröskel" - #: rc_option_editor.cc:1993 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " @@ -10022,11 +6611,6 @@ msgstr "" msgid "audition this region" msgstr "avlyssna denna region" -#: region_editor.cc:88 region_layering_order_editor.cc:74 -#, fuzzy -msgid "Position:" -msgstr "LÃ¥s position" - #: region_editor.cc:90 add_video_dialog.cc:170 msgid "End:" msgstr "Slut:" @@ -10055,69 +6639,14 @@ msgstr "Källor:" msgid "Source:" msgstr "Källa:" -#: region_editor.cc:166 -#, fuzzy -msgid "Region '%1'" -msgstr "Regioner" - -#: region_editor.cc:273 -#, fuzzy -msgid "change region start position" -msgstr "Ställ in regionssynk.-punkt" - -#: region_editor.cc:289 -#, fuzzy -msgid "change region end position" -msgstr "Ställ in regionssynk.-punkt" - -#: region_editor.cc:309 -#, fuzzy -msgid "change region length" -msgstr "ändra intoningslängd" - -#: region_editor.cc:403 region_editor.cc:415 -#, fuzzy -msgid "change region sync point" -msgstr "Ställ in regionssynk.-punkt" - -#: region_layering_order_editor.cc:41 -#, fuzzy -msgid "RegionLayeringOrderEditor" -msgstr "Regionsredigerare" - -#: region_layering_order_editor.cc:54 -#, fuzzy -msgid "Region Name" -msgstr "utifrÃ¥n Regionens namn" - -#: region_layering_order_editor.cc:71 -#, fuzzy -msgid "Track:" -msgstr "SpÃ¥r" - -#: region_layering_order_editor.cc:103 -#, fuzzy -msgid "Choose Top Region" -msgstr "Loopa region" - #: region_view.cc:274 msgid "SilenceText" msgstr "" -#: region_view.cc:290 region_view.cc:309 -#, fuzzy -msgid "minutes" -msgstr "Minuter" - #: region_view.cc:293 region_view.cc:312 msgid "msecs" msgstr "msek" -#: region_view.cc:296 region_view.cc:315 -#, fuzzy -msgid "secs" -msgstr "msek" - #: region_view.cc:299 msgid "%1 silent segment" msgid_plural "%1 silent segments" @@ -10134,11 +6663,6 @@ msgid "" " (shortest audible segment = %1 %2)" msgstr "" -#: return_ui.cc:103 -#, fuzzy -msgid "Return " -msgstr "AutoÃ¥tervänd" - #: rhythm_ferret.cc:49 msgid "Percussive Onset" msgstr "Perkussivt anslag" @@ -10159,11 +6683,6 @@ msgstr "" msgid "High-Frequency Content" msgstr "" -#: rhythm_ferret.cc:58 -#, fuzzy -msgid "Complex Domain" -msgstr "Samling" - #: rhythm_ferret.cc:59 msgid "Phase Deviation" msgstr "" @@ -10180,16 +6699,6 @@ msgstr "" msgid "Split region" msgstr "Dela region" -#: rhythm_ferret.cc:67 -#, fuzzy -msgid "Snap regions" -msgstr "Fäst mot regionssynk.-punkt" - -#: rhythm_ferret.cc:68 -#, fuzzy -msgid "Conform regions" -msgstr "Anpassa region" - #: rhythm_ferret.cc:73 msgid "Rhythm Ferret" msgstr "" @@ -10254,20 +6763,10 @@ msgstr "Inspelningsläge" msgid "Selection" msgstr "Markering" -#: route_group_dialog.cc:46 -#, fuzzy -msgid "Active state" -msgstr "Aktivera" - #: route_group_dialog.cc:47 route_group_dialog.cc:76 theme_manager.cc:71 msgid "Color" msgstr "Färg" -#: route_group_dialog.cc:53 -#, fuzzy -msgid "RouteGroupDialog" -msgstr "Ruttgrupp" - #: route_group_dialog.cc:92 msgid "Sharing" msgstr "Gemensamt" @@ -10334,11 +6833,6 @@ msgstr "Spela in" msgid "Route Group" msgstr "Ruttgrupp" -#: route_time_axis.cc:213 -#, fuzzy -msgid "MIDI Controllers and Automation" -msgstr "Rita volymautomatisering" - #: route_time_axis.cc:390 msgid "Show All Automation" msgstr "Visa all automatisering" @@ -10351,11 +6845,6 @@ msgstr "Visa existerande automatisering" msgid "Hide All Automation" msgstr "Göm all automatisering" -#: route_time_axis.cc:405 -#, fuzzy -msgid "Processor automation" -msgstr "rensa automatisering" - #: route_time_axis.cc:424 msgid "Color..." msgstr "Färg..." @@ -10372,21 +6861,6 @@ msgstr "I trappa" msgid "Layers" msgstr "Lager" -#: route_time_axis.cc:564 -#, fuzzy -msgid "Automatic (based on I/O connections)" -msgstr "Anslut automatiskt utgÃ¥ngar" - -#: route_time_axis.cc:573 -#, fuzzy -msgid "(Currently: Existing Material)" -msgstr "Efter existerande material" - -#: route_time_axis.cc:576 -#, fuzzy -msgid "(Currently: Capture Time)" -msgstr "Efter inspelningstiden" - #: route_time_axis.cc:584 msgid "Align With Existing Material" msgstr "Efter existerande material" @@ -10415,59 +6889,14 @@ msgstr "Ej i lager" msgid "Playlist" msgstr "Spellista" -#: route_time_axis.cc:979 -#, fuzzy -msgid "Rename Playlist" -msgstr "Spellistans namn" - -#: route_time_axis.cc:980 -#, fuzzy -msgid "New name for playlist:" -msgstr "Spellistans namn" - -#: route_time_axis.cc:1065 -#, fuzzy -msgid "New Copy Playlist" -msgstr "Spellistans namn" - -#: route_time_axis.cc:1066 route_time_axis.cc:1119 -#, fuzzy -msgid "Name for new playlist:" -msgstr "Spellistans namn" - -#: route_time_axis.cc:1118 -#, fuzzy -msgid "New Playlist" -msgstr "Spellista" - -#: route_time_axis.cc:1309 -#, fuzzy -msgid "You cannot create a track with that name as it is reserved for %1" -msgstr "Du kan inte lägga till ett spÃ¥r utan en session laddad." - #: route_time_axis.cc:1490 msgid "New Copy..." msgstr "Ny kopia..." -#: route_time_axis.cc:1494 -#, fuzzy -msgid "New Take" -msgstr "Ny markör" - -#: route_time_axis.cc:1495 -#, fuzzy -msgid "Copy Take" -msgstr "Kopiera" - #: route_time_axis.cc:1500 msgid "Clear Current" msgstr "Rensa aktuell" -#: route_time_axis.cc:1503 -#, fuzzy -msgid "Select From All..." -msgstr "Välj frÃ¥n alla..." - #: route_time_axis.cc:1591 msgid "Take: %1.%2" msgstr "" @@ -10476,25 +6905,10 @@ msgstr "" msgid "Underlays" msgstr "" -#: route_time_axis.cc:2294 -#, fuzzy -msgid "Remove \"%1\"" -msgstr "Ta bort '%s'" - #: route_time_axis.cc:2344 route_time_axis.cc:2381 msgid "programming error: underlay reference pointer pairs are inconsistent!" msgstr "" -#: route_time_axis.cc:2408 -#, fuzzy -msgid "After-fade listen (AFL)" -msgstr "efter volymreglage" - -#: route_time_axis.cc:2412 -#, fuzzy -msgid "Pre-fade listen (PFL)" -msgstr "före volymreglare" - #: route_time_axis.cc:2416 msgid "s" msgstr "" @@ -10519,21 +6933,6 @@ msgstr "" msgid "make mixer strips show sends to this bus" msgstr "" -#: route_ui.cc:138 -#, fuzzy -msgid "Monitor input" -msgstr "Medhörning" - -#: route_ui.cc:144 -#, fuzzy -msgid "Monitor playback" -msgstr "Stanna uppspelning" - -#: route_ui.cc:591 -#, fuzzy -msgid "Not connected to JACK - cannot engage record" -msgstr "Inte ansluten till JACK - in/ut-ändringar är inte möjliga" - #: route_ui.cc:786 msgid "Step Entry" msgstr "" @@ -10554,29 +6953,14 @@ msgstr "" msgid "Assign all tracks and buses (postfader)" msgstr "" -#: route_ui.cc:875 -#, fuzzy -msgid "Assign selected tracks (prefader)" -msgstr "till valda spÃ¥r" - #: route_ui.cc:879 msgid "Assign selected tracks and buses (prefader)" msgstr "" -#: route_ui.cc:882 -#, fuzzy -msgid "Assign selected tracks (postfader)" -msgstr "Lägg till i valt spÃ¥r" - #: route_ui.cc:886 msgid "Assign selected tracks and buses (postfader)" msgstr "" -#: route_ui.cc:889 -#, fuzzy -msgid "Copy track/bus gains to sends" -msgstr "ardour: spÃ¥r/buss-inspektör" - #: route_ui.cc:890 msgid "Set sends gain to -inf" msgstr "" @@ -10585,11 +6969,6 @@ msgstr "" msgid "Set sends gain to 0dB" msgstr "" -#: route_ui.cc:1211 -#, fuzzy -msgid "Solo Isolate" -msgstr "Solo-säker" - #: route_ui.cc:1240 msgid "Pre Fader" msgstr "Före-nivÃ¥reglage" @@ -10610,55 +6989,12 @@ msgstr "HuvudutgÃ¥ngar" msgid "Color Selection" msgstr "Färgval" -#: route_ui.cc:1477 -#, fuzzy -msgid "" -"Do you really want to remove track \"%1\" ?\n" -"\n" -"You may also lose the playlist used by this track.\n" -"\n" -"(This action cannot be undone, and the session file will be overwritten)" -msgstr "" -"Vill du verkligen ta bort spÃ¥r \"%1\" ?\n" -"Du kanske ocksÃ¥ förlorar spellista använd av detta spÃ¥r.\n" -"(detta kan inte Ã¥ngras)" - -#: route_ui.cc:1479 -#, fuzzy -msgid "" -"Do you really want to remove bus \"%1\" ?\n" -"\n" -"(This action cannot be undone, and the session file will be overwritten)" -msgstr "" -"Vill du verkligen ta bort buss \"%1\" ?\n" -"(detta kan inte Ã¥ngras)" - -#: route_ui.cc:1487 -#, fuzzy -msgid "Remove track" -msgstr "Ta bort markör" - -#: route_ui.cc:1489 -#, fuzzy -msgid "Remove bus" -msgstr "Ta bort '%s'" - #: route_ui.cc:1516 msgid "" "The use of colons (':') is discouraged in track and bus names.\n" "Do you want to use this new name?" msgstr "" -#: route_ui.cc:1520 -#, fuzzy -msgid "Use the new name" -msgstr "nytt namn: " - -#: route_ui.cc:1521 -#, fuzzy -msgid "Re-edit the name" -msgstr "ändra tempo" - #: route_ui.cc:1534 msgid "Rename Track" msgstr "Döp om spÃ¥r" @@ -10699,16 +7035,6 @@ msgid "" "The remote control ID of %3 cannot be changed." msgstr "" -#: route_ui.cc:1816 -#, fuzzy -msgid "the master bus" -msgstr "Skapa master-buss" - -#: route_ui.cc:1816 -#, fuzzy -msgid "the monitor bus" -msgstr "Skapa medhörningsbuss" - #: route_ui.cc:1818 msgid "" "The remote control ID of %6 is: %3\n" @@ -10720,16 +7046,6 @@ msgid "" "change this%5" msgstr "" -#: route_ui.cc:1821 -#, fuzzy -msgid "the mixer" -msgstr "Remixare" - -#: route_ui.cc:1821 -#, fuzzy -msgid "the editor" -msgstr "redigerare" - #: route_ui.cc:1876 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " @@ -10742,31 +7058,6 @@ msgstr "" msgid "Click to show a menu of channels for inversion (phase reverse)" msgstr "" -#: search_path_option.cc:35 -#, fuzzy -msgid "Select folder to search for media" -msgstr "Välj mapp för sessionen" - -#: search_path_option.cc:44 -#, fuzzy -msgid "Click to add a new location" -msgstr " Klicka här för att lägga till ett format" - -#: search_path_option.cc:51 -#, fuzzy -msgid "the session folder" -msgstr "Skapa sessionsmappen i:" - -#: send_ui.cc:126 -#, fuzzy -msgid "Send " -msgstr "Skicka MTC" - -#: session_import_dialog.cc:64 -#, fuzzy -msgid "Import from Session" -msgstr "Importera frÃ¥n session" - #: session_import_dialog.cc:73 msgid "Elements" msgstr "BestÃ¥ndsdelar" @@ -10779,11 +7070,6 @@ msgstr "" msgid "Some elements had errors in them. Please see the log for details" msgstr "Vissa bestÃ¥ndsdelar hade fel i sig. Se loggen" -#: session_import_dialog.cc:163 -#, fuzzy -msgid "Import from session" -msgstr "Importera frÃ¥n session" - #: session_import_dialog.cc:227 msgid "This will select all elements of this type!" msgstr "Detta väljer alla bestÃ¥ndsdelar av denna typen!" @@ -10796,11 +7082,6 @@ msgstr "Fält" msgid "Values (current value on top)" msgstr "Värden (aktuellt värde längst upp)" -#: session_metadata_dialog.cc:520 -#, fuzzy -msgid "User" -msgstr "Användarnamn:" - #: session_metadata_dialog.cc:528 msgid "Email" msgstr "" @@ -10809,16 +7090,6 @@ msgstr "" msgid "Web" msgstr "" -#: session_metadata_dialog.cc:534 -#, fuzzy -msgid "Organization" -msgstr "panoreringsautomatiseringsläge" - -#: session_metadata_dialog.cc:537 -#, fuzzy -msgid "Country" -msgstr "Landskod" - #: session_metadata_dialog.cc:551 msgid "Title" msgstr "Titel" @@ -10923,20 +7194,10 @@ msgstr "Producent" msgid "DJ Mixer" msgstr "DJ-mixer" -#: session_metadata_dialog.cc:646 -#, fuzzy -msgid "Metadata|Mixer" -msgstr "Redigera metadata..." - #: session_metadata_dialog.cc:654 msgid "School" msgstr "" -#: session_metadata_dialog.cc:659 -#, fuzzy -msgid "Instructor" -msgstr "Dirigent" - #: session_metadata_dialog.cc:662 msgid "Course" msgstr "" @@ -10971,11 +7232,6 @@ msgstr "" msgid "Session Properties" msgstr "Sessionsegenskaper" -#: session_option_editor.cc:41 -#, fuzzy -msgid "Timecode Settings" -msgstr "Tidskod: sekunder" - #: session_option_editor.cc:45 msgid "Timecode frames-per-second" msgstr "Rutor-per-sekund för tidskod" @@ -10996,11 +7252,6 @@ msgstr "" msgid "25" msgstr "" -#: session_option_editor.cc:54 -#, fuzzy -msgid "29.97" -msgstr "29.97 fall" - #: session_option_editor.cc:55 msgid "29.97 drop" msgstr "29.97 fall" @@ -11021,11 +7272,6 @@ msgstr "" msgid "60" msgstr "" -#: session_option_editor.cc:65 -#, fuzzy -msgid "Pull-up / pull-down" -msgstr "UppÃ¥tdrag / NedÃ¥tdrag" - #: session_option_editor.cc:70 msgid "4.1667 + 0.1%" msgstr "" @@ -11073,25 +7319,10 @@ msgid "" "Apply Pull-Up/Down to Video Timeline and Video Monitor (Unless in JACK-sync)." msgstr "" -#: session_option_editor.cc:96 -#, fuzzy -msgid "Ext Timecode Offsets" -msgstr "Tidskodsförskjutning" - -#: session_option_editor.cc:100 -#, fuzzy -msgid "Slave Timecode offset" -msgstr "Tidskodsförskjutning" - #: session_option_editor.cc:107 msgid "The specified offset is added to the received timecode (MTC or LTC)." msgstr "" -#: session_option_editor.cc:113 -#, fuzzy -msgid "Timecode Generator offset" -msgstr "Tidskodsförskjutning" - #: session_option_editor.cc:120 msgid "" "Specify an offset which is added to the generated timecode (so far only LTC)." @@ -11106,11 +7337,6 @@ msgid "" "%1 is JACK Time Master (provides Bar|Beat|Tick and other information to JACK)" msgstr "" -#: session_option_editor.cc:137 -#, fuzzy -msgid "Default crossfade type" -msgstr "Övertoning" - #: session_option_editor.cc:142 msgid "Constant power (-3dB) crossfade" msgstr "" @@ -11194,24 +7420,10 @@ msgid "" "Track Input Monitoring automatically follows transport state (\"auto-input\")" msgstr "" -#: session_option_editor.cc:227 -#, fuzzy -msgid "Use monitor section in this session" -msgstr "Jag vill ha fler alternativ för sessionen" - #: session_option_editor.cc:238 msgid "MIDI region copies are independent" msgstr "" -#: session_option_editor.cc:245 -#, fuzzy -msgid "" -"Policy for handling overlapping notes\n" -" on the same MIDI channel" -msgstr "" -"Hur hantera överlappningar\n" -"av identiska noter och kanaler" - #: session_option_editor.cc:250 msgid "never allow them" msgstr "tillÃ¥ter inte" @@ -11236,77 +7448,18 @@ msgstr "förkorta den nya överlappande noten" msgid "replace both overlapping notes with a single note" msgstr "ersätt bÃ¥da överlappande noter med en enstaka not" -#: session_option_editor.cc:259 -#, fuzzy -msgid "Glue to bars and beats" -msgstr "Klistra mot takt & slag" - -#: session_option_editor.cc:263 -#, fuzzy -msgid "Glue new markers to bars and beats" -msgstr "Klistra mot takt & slag" - -#: session_option_editor.cc:270 -#, fuzzy -msgid "Glue new regions to bars and beats" -msgstr "Klistra mot takt & slag" - -#: session_option_editor.cc:275 session_option_editor.cc:277 -#: session_option_editor.cc:284 session_option_editor.cc:291 -#: session_option_editor.cc:298 session_option_editor.cc:300 -#: session_option_editor.cc:307 session_option_editor.cc:314 -#: session_option_editor.cc:321 session_option_editor.cc:323 -#, fuzzy -msgid "Meterbridge" -msgstr "NivÃ¥mätning" - #: session_option_editor.cc:275 msgid "Route Display" msgstr "" -#: session_option_editor.cc:279 -#, fuzzy -msgid "Show Midi Tracks" -msgstr "Visa alla MIDI-spÃ¥r" - -#: session_option_editor.cc:286 -#, fuzzy -msgid "Show Busses" -msgstr "buss(ar)" - -#: session_option_editor.cc:293 -#, fuzzy -msgid "Include Master Bus" -msgstr "Skapa master-buss" - #: session_option_editor.cc:298 msgid "Button Area" msgstr "" -#: session_option_editor.cc:302 -#, fuzzy -msgid "Rec-enable Button" -msgstr "ändra inspelningsläge" - -#: session_option_editor.cc:309 -#, fuzzy -msgid "Mute Button" -msgstr "+ musknapp" - -#: session_option_editor.cc:316 -#, fuzzy -msgid "Solo Button" -msgstr "Solo / tysta" - #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" -#: session_option_editor.cc:325 -#, fuzzy -msgid "Track Name" -msgstr "SpÃ¥r/Bussar" - #: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 msgid "as new tracks" msgstr "som nya spÃ¥r" @@ -11323,20 +7476,10 @@ msgstr "till regionslistan" msgid "as new tape tracks" msgstr "som nya bandspÃ¥r" -#: sfdb_ui.cc:96 -#, fuzzy -msgid "programming error: unknown import mode string %1" -msgstr "programmeringsfel: omöjlig kontroll-metod" - #: sfdb_ui.cc:123 msgid "Auto-play" msgstr "Spela autom." -#: sfdb_ui.cc:129 sfdb_ui.cc:236 -#, fuzzy -msgid "Sound File Information" -msgstr "Information" - #: sfdb_ui.cc:141 msgid "Timestamp:" msgstr "" @@ -11369,11 +7512,6 @@ msgstr "" msgid "Search" msgstr "Sök" -#: sfdb_ui.cc:449 -#, fuzzy -msgid "Audio and MIDI files" -msgstr "Ljudfiler" - #: sfdb_ui.cc:452 msgid "Audio files" msgstr "Ljudfiler" @@ -11398,26 +7536,6 @@ msgstr "Sökvägar" msgid "Search Tags" msgstr "Sök taggar" -#: sfdb_ui.cc:531 -#, fuzzy -msgid "Sort:" -msgstr "Sortera" - -#: sfdb_ui.cc:539 -#, fuzzy -msgid "Longest" -msgstr "LÃ¥ng" - -#: sfdb_ui.cc:540 -#, fuzzy -msgid "Shortest" -msgstr "Kort" - -#: sfdb_ui.cc:541 -#, fuzzy -msgid "Newest" -msgstr "LÃ¥ngsammast" - #: sfdb_ui.cc:542 msgid "Oldest" msgstr "" @@ -11426,11 +7544,6 @@ msgstr "" msgid "Most downloaded" msgstr "" -#: sfdb_ui.cc:544 -#, fuzzy -msgid "Least downloaded" -msgstr "Ladda ner" - #: sfdb_ui.cc:545 msgid "Highest rated" msgstr "" @@ -11451,26 +7564,6 @@ msgstr "" msgid "ID" msgstr "" -#: sfdb_ui.cc:568 add_video_dialog.cc:84 -#, fuzzy -msgid "Filename" -msgstr "Döp om" - -#: sfdb_ui.cc:570 -#, fuzzy -msgid "Duration" -msgstr "Varaktighet (sekunder)" - -#: sfdb_ui.cc:571 -#, fuzzy -msgid "Size" -msgstr "Max storlek" - -#: sfdb_ui.cc:572 -#, fuzzy -msgid "Samplerate" -msgstr "Samplingsfrekvens:" - #: sfdb_ui.cc:573 msgid "License" msgstr "" @@ -11517,59 +7610,10 @@ msgstr "" msgid "MB" msgstr "" -#: sfdb_ui.cc:1086 -#, fuzzy -msgid "GB" -msgstr "GÃ¥ till" - #: sfdb_ui.cc:1298 sfdb_ui.cc:1606 sfdb_ui.cc:1656 sfdb_ui.cc:1674 msgid "one track per file" msgstr "ett spÃ¥r per fil" -#: sfdb_ui.cc:1301 sfdb_ui.cc:1657 sfdb_ui.cc:1675 -#, fuzzy -msgid "one track per channel" -msgstr "ett spÃ¥r per fil" - -#: sfdb_ui.cc:1309 sfdb_ui.cc:1659 sfdb_ui.cc:1676 -#, fuzzy -msgid "sequence files" -msgstr "rensade filer" - -#: sfdb_ui.cc:1312 sfdb_ui.cc:1664 -#, fuzzy -msgid "all files in one track" -msgstr "som nya spÃ¥r" - -#: sfdb_ui.cc:1313 sfdb_ui.cc:1658 -#, fuzzy -msgid "merge files" -msgstr "rensade filer" - -#: sfdb_ui.cc:1319 sfdb_ui.cc:1661 -#, fuzzy -msgid "one region per file" -msgstr "ett spÃ¥r per fil" - -#: sfdb_ui.cc:1322 sfdb_ui.cc:1662 -#, fuzzy -msgid "one region per channel" -msgstr "Skapa en region för varje kanal" - -#: sfdb_ui.cc:1327 sfdb_ui.cc:1663 sfdb_ui.cc:1677 -#, fuzzy -msgid "all files in one region" -msgstr "justera region" - -#: sfdb_ui.cc:1394 -#, fuzzy -msgid "" -"One or more of the selected files\n" -"cannot be used by %1" -msgstr "" -"En eller flera filer kunde\n" -"inte användas av Ardour" - #: sfdb_ui.cc:1534 msgid "Copy files to session" msgstr "Kopiera filer till sessionen" @@ -11594,21 +7638,6 @@ msgstr "sessionens start" msgid "Add files as ..." msgstr "" -#: sfdb_ui.cc:1581 -#, fuzzy -msgid "Insert at" -msgstr "Infoga vid:" - -#: sfdb_ui.cc:1594 -#, fuzzy -msgid "Mapping" -msgstr "Gemensamt" - -#: sfdb_ui.cc:1612 -#, fuzzy -msgid "Conversion quality" -msgstr "Konverteringskvalitet:" - #: sfdb_ui.cc:1624 sfdb_ui.cc:1730 msgid "Best" msgstr "Bäst" @@ -11625,95 +7654,26 @@ msgstr "Snabb" msgid "Fastest" msgstr "Snabbast" -#: shuttle_control.cc:56 -#, fuzzy -msgid "Shuttle speed control (Context-click for options)" -msgstr "Shuttle-hastighetskontrol" - -#: shuttle_control.cc:165 -#, fuzzy -msgid "Percent" -msgstr "Procent" - #: shuttle_control.cc:173 msgid "Units" msgstr "Enheter" -#: shuttle_control.cc:179 shuttle_control.cc:599 -#, fuzzy -msgid "Sprung" -msgstr "fjäder" - -#: shuttle_control.cc:183 shuttle_control.cc:602 -#, fuzzy -msgid "Wheel" -msgstr "hjul" - #: shuttle_control.cc:217 msgid "Maximum speed" msgstr "Maxhastighet" -#: shuttle_control.cc:561 -#, fuzzy -msgid "Playing" -msgstr "Uppspelning" - -#: shuttle_control.cc:576 -#, fuzzy, c-format -msgid "<<< %+d semitones" -msgstr "Halvtoner" - -#: shuttle_control.cc:578 -#, fuzzy, c-format -msgid ">>> %+d semitones" -msgstr "Halvtoner" - -#: shuttle_control.cc:583 -#, fuzzy -msgid "Stopped" -msgstr "stannad" - #: splash.cc:73 msgid "%1 loading ..." msgstr "" -#: speaker_dialog.cc:40 -#, fuzzy -msgid "Add Speaker" -msgstr "Lägg till omfÃ¥ngsmarkörer" - -#: speaker_dialog.cc:41 -#, fuzzy -msgid "Remove Speaker" -msgstr "Ta bort markör" - #: speaker_dialog.cc:63 msgid "Azimuth:" msgstr "" -#: startup.cc:72 -#, fuzzy -msgid "Create a new session" -msgstr "Öppna en ny session" - #: startup.cc:73 msgid "Open an existing session" msgstr "Öppna en existerande session" -#: startup.cc:74 -#, fuzzy -msgid "" -"Use an external mixer or the hardware mixer of your audio interface.\n" -"%1 will play NO role in monitoring" -msgstr "" -"Använd en extern mixer eller ljudhÃ¥rdvarans mixer.\n" -"Ardour kommer INTE hantera medhörningen" - -#: startup.cc:76 -#, fuzzy -msgid "Ask %1 to play back material as it is being recorded" -msgstr "Be %1 spela upp ljud medans det spelas in" - #: startup.cc:79 msgid "I'd like more options for this session" msgstr "Jag vill ha fler alternativ för sessionen" @@ -11751,24 +7711,6 @@ msgstr "" msgid "Audio / MIDI Setup" msgstr "Audio-/MIDI-inställningar" -#: startup.cc:336 -#, fuzzy -msgid "" -"%1 is a digital audio workstation. You can use it to " -"record, edit and mix multi-track audio. You can produce your own CDs, mix " -"video soundtracks, or experiment with new ideas about music and sound. \n" -"\n" -"There are a few things that need to be configured before you start using the " -"program. " -msgstr "" -"%1 är ett inspelningsprogram. Du kan använda det\n" -"för att spela in, redigera, mixa flerspÃ¥rigt ljud. Du kan skapa dina\n" -"egna CD-skivor, mixa videoljud eller helt enkelt experimentera med\n" -"nya idéer kring musik och ljud.\n" -"\n" -"Det finns nÃ¥gra saker som behöver ställas in innan du kan börja\n" -"använda programmet." - #: startup.cc:362 msgid "Welcome to %1" msgstr "Välkommen till %1" @@ -11798,27 +7740,6 @@ msgstr "" msgid "Default folder for new sessions" msgstr "Standardplats för nya sessioner" -#: startup.cc:436 -#, fuzzy -msgid "" -"While recording instruments or vocals, you probably want to listen to the\n" -"signal as well as record it. This is called \"monitoring\". There are\n" -"different ways to do this depending on the equipment you have and the\n" -"configuration of that equipment. The two most common are presented here.\n" -"Please choose whichever one is right for your setup.\n" -"\n" -"(You can change this preference at any time, via the Preferences dialog)\n" -"\n" -"If you do not understand what this is about, just accept the default." -msgstr "" -"DÃ¥ du spelar in instrument eller sÃ¥ng sÃ¥ vill du antagligen lyssna pÃ¥\n" -"signalen. Detta kallas \"medhörning\". Det finns olika tillvägagÃ¥ngssätt\n" -"beroende pÃ¥ utrustningen du har och hur den är konfigurerad.\n" -"De tvÃ¥ vanligaste visas nedan. Välj det som passar din situation.\n" -"\n" -"(Du kan ändra detta när du vill via Inställningar)" - #: startup.cc:457 msgid "Monitoring Choices" msgstr "Medhörningsalternativ" @@ -11827,15 +7748,6 @@ msgstr "Medhörningsalternativ" msgid "Use a Master bus directly" msgstr "Använd master-bussen" -#: startup.cc:482 -#, fuzzy -msgid "" -"Connect the Master bus directly to your hardware outputs. This is preferable " -"for simple usage." -msgstr "" -"Anslut master-bussen direkt till hÃ¥rdvaruutgÃ¥ngar.\n" -"Att föredra för enkla användningsomrÃ¥den." - #: startup.cc:491 msgid "Use an additional Monitor bus" msgstr "Använd en ytterligare medhörningsbuss" @@ -11936,11 +7848,6 @@ msgstr "UtgÃ¥ngar" msgid "Create master bus" msgstr "Skapa master-buss" -#: startup.cc:1165 -#, fuzzy -msgid "Automatically connect to physical inputs" -msgstr "Anslut automatiskt till fysiska ingÃ¥ngar" - #: startup.cc:1172 startup.cc:1231 msgid "Use only" msgstr "Använd endast" @@ -11989,11 +7896,6 @@ msgstr "" msgid "g-rest" msgstr "" -#: step_entry.cc:70 -#, fuzzy -msgid "back" -msgstr "Gensvar" - #: step_entry.cc:81 step_entry.cc:84 msgid "+" msgstr "" @@ -12018,11 +7920,6 @@ msgstr "" msgid "Set note length to a sixteenth note" msgstr "" -#: step_entry.cc:195 -#, fuzzy -msgid "Set note length to a thirty-second note" -msgstr "Fäst mot trettio sekunder" - #: step_entry.cc:196 msgid "Set note length to a sixty-fourth note" msgstr "" @@ -12103,11 +8000,6 @@ msgstr "" msgid "Insert a bank change message" msgstr "" -#: step_entry.cc:341 -#, fuzzy -msgid "Insert a program change message" -msgstr "Initiell programändring" - #: step_entry.cc:342 step_entry.cc:699 msgid "Move Insert Position Back by Note Length" msgstr "" @@ -12120,62 +8012,22 @@ msgstr "" msgid "1/Note" msgstr "" -#: step_entry.cc:414 -#, fuzzy -msgid "Octave" -msgstr "Oktaver" - -#: step_entry.cc:597 -#, fuzzy -msgid "Insert Note A" -msgstr "Infoga vid:" - #: step_entry.cc:598 msgid "Insert Note A-sharp" msgstr "" -#: step_entry.cc:599 -#, fuzzy -msgid "Insert Note B" -msgstr "Infoga vid:" - -#: step_entry.cc:600 -#, fuzzy -msgid "Insert Note C" -msgstr "Infoga vid:" - #: step_entry.cc:601 msgid "Insert Note C-sharp" msgstr "" -#: step_entry.cc:602 -#, fuzzy -msgid "Insert Note D" -msgstr "Infoga vid:" - #: step_entry.cc:603 msgid "Insert Note D-sharp" msgstr "" -#: step_entry.cc:604 -#, fuzzy -msgid "Insert Note E" -msgstr "Infoga vid:" - -#: step_entry.cc:605 -#, fuzzy -msgid "Insert Note F" -msgstr "Infoga vid:" - #: step_entry.cc:606 msgid "Insert Note F-sharp" msgstr "" -#: step_entry.cc:607 -#, fuzzy -msgid "Insert Note G" -msgstr "Infoga vid:" - #: step_entry.cc:608 msgid "Insert Note G-sharp" msgstr "" @@ -12192,26 +8044,6 @@ msgstr "" msgid "Move to next octave" msgstr "" -#: step_entry.cc:616 -#, fuzzy -msgid "Move to Next Note Length" -msgstr "Välj uttoningslängd" - -#: step_entry.cc:617 -#, fuzzy -msgid "Move to Previous Note Length" -msgstr "till föregÃ¥ende regionens slut" - -#: step_entry.cc:619 -#, fuzzy -msgid "Increase Note Length" -msgstr "ändra uttoningslängd" - -#: step_entry.cc:620 -#, fuzzy -msgid "Decrease Note Length" -msgstr "ändra uttoningslängd" - #: step_entry.cc:622 msgid "Move to Next Note Velocity" msgstr "" @@ -12276,26 +8108,6 @@ msgstr "" msgid "Set Note Length to Whole" msgstr "" -#: step_entry.cc:645 -#, fuzzy -msgid "Set Note Length to 1/2" -msgstr "Välj intoningslängd" - -#: step_entry.cc:647 -#, fuzzy -msgid "Set Note Length to 1/3" -msgstr "Välj intoningslängd" - -#: step_entry.cc:649 -#, fuzzy -msgid "Set Note Length to 1/4" -msgstr "Välj intoningslängd" - -#: step_entry.cc:651 -#, fuzzy -msgid "Set Note Length to 1/8" -msgstr "Välj intoningslängd" - #: step_entry.cc:653 msgid "Set Note Length to 1/16" msgstr "" @@ -12336,21 +8148,6 @@ msgstr "" msgid "Set Note Velocity to Fortississimo" msgstr "" -#: step_entry.cc:678 -#, fuzzy -msgid "Toggle Triple Notes" -msgstr "Skifta redigeringsläge" - -#: step_entry.cc:683 -#, fuzzy -msgid "No Dotted Notes" -msgstr "ÅšlÃ¥ an noter" - -#: step_entry.cc:685 -#, fuzzy -msgid "Toggled Dotted Notes" -msgstr "Skifta redigeringsläge" - #: step_entry.cc:687 msgid "Toggled Double-Dotted Notes" msgstr "" @@ -12359,44 +8156,14 @@ msgstr "" msgid "Toggled Triple-Dotted Notes" msgstr "" -#: step_entry.cc:692 -#, fuzzy -msgid "Toggle Chord Entry" -msgstr "Växla tillÃ¥t inspelning" - #: step_entry.cc:694 msgid "Sustain Selected Notes by Note Length" msgstr "" -#: stereo_panner.cc:108 -#, fuzzy, c-format -msgid "L:%3d R:%3d Width:%d%%" -msgstr "V:%1 H:%2 Bredd: %3%%" - -#: stereo_panner_editor.cc:35 -#, fuzzy -msgid "Stereo Panner" -msgstr "Panorerare" - -#: stereo_panner_editor.cc:49 -#, fuzzy -msgid "Width" -msgstr "bredd" - -#: strip_silence_dialog.cc:48 -#, fuzzy -msgid "Strip Silence" -msgstr "Klipp ut tystnad..." - #: strip_silence_dialog.cc:79 msgid "Minimum length" msgstr "" -#: strip_silence_dialog.cc:87 -#, fuzzy -msgid "Fade length" -msgstr "Välj intoningslängd" - #: tempo_dialog.cc:43 tempo_dialog.cc:58 msgid "bar:" msgstr "" @@ -12405,58 +8172,6 @@ msgstr "" msgid "beat:" msgstr "" -#: tempo_dialog.cc:45 tempo_dialog.cc:60 -#, fuzzy -msgid "Pulse note" -msgstr "raderad fil" - -#: tempo_dialog.cc:55 -#, fuzzy -msgid "Edit Tempo" -msgstr "redigeringspunkten" - -#: tempo_dialog.cc:76 tempo_dialog.cc:77 tempo_dialog.cc:282 -#: tempo_dialog.cc:283 -#, fuzzy -msgid "whole" -msgstr "hel (1)" - -#: tempo_dialog.cc:78 tempo_dialog.cc:79 tempo_dialog.cc:284 -#: tempo_dialog.cc:285 -#, fuzzy -msgid "second" -msgstr "1 sekund" - -#: tempo_dialog.cc:80 tempo_dialog.cc:81 tempo_dialog.cc:286 -#: tempo_dialog.cc:287 -#, fuzzy -msgid "third" -msgstr "ters (3)" - -#: tempo_dialog.cc:82 tempo_dialog.cc:83 tempo_dialog.cc:288 -#: tempo_dialog.cc:289 -#, fuzzy -msgid "quarter" -msgstr "kvart (4)" - -#: tempo_dialog.cc:84 tempo_dialog.cc:85 tempo_dialog.cc:290 -#: tempo_dialog.cc:291 -#, fuzzy -msgid "eighth" -msgstr "Höjd" - -#: tempo_dialog.cc:86 tempo_dialog.cc:87 tempo_dialog.cc:292 -#: tempo_dialog.cc:293 -#, fuzzy -msgid "sixteenth" -msgstr "sextondel (16)" - -#: tempo_dialog.cc:88 tempo_dialog.cc:89 tempo_dialog.cc:294 -#: tempo_dialog.cc:295 -#, fuzzy -msgid "thirty-second" -msgstr "trettiotvÃ¥ondel (32)" - #: tempo_dialog.cc:90 tempo_dialog.cc:91 tempo_dialog.cc:296 #: tempo_dialog.cc:297 msgid "sixty-fourth" @@ -12471,21 +8186,6 @@ msgstr "" msgid "Beats per minute:" msgstr "Slag per minut:" -#: tempo_dialog.cc:152 -#, fuzzy -msgid "Tempo begins at" -msgstr "Tempo börjar vid:" - -#: tempo_dialog.cc:240 -#, fuzzy -msgid "incomprehensible pulse note type (%1)" -msgstr "orimlig nottypsvärde (%1)" - -#: tempo_dialog.cc:266 -#, fuzzy -msgid "Edit Meter" -msgstr "Redigeringsläge" - #: tempo_dialog.cc:314 msgid "Note value:" msgstr "Notvärde:" @@ -12494,16 +8194,6 @@ msgstr "Notvärde:" msgid "Beats per bar:" msgstr "Slag per takt:" -#: tempo_dialog.cc:330 -#, fuzzy -msgid "Meter begins at bar:" -msgstr "Taktart börjar vid takt:" - -#: tempo_dialog.cc:441 -#, fuzzy -msgid "incomprehensible meter note type (%1)" -msgstr "orimlig nottypsvärde (%1)" - #: theme_manager.cc:57 msgid "Dark Theme" msgstr "Mörkt tema" @@ -12516,20 +8206,10 @@ msgstr "Ljust tema" msgid "Restore Defaults" msgstr "Nollställ" -#: theme_manager.cc:60 -#, fuzzy -msgid "Draw \"flat\" buttons" -msgstr "Rita volymautomatisering" - #: theme_manager.cc:61 msgid "All floating windows are dialogs" msgstr "" -#: theme_manager.cc:62 -#, fuzzy -msgid "Draw waveforms with color gradient" -msgstr "Visa vÃ¥gformer under inspelning" - #: theme_manager.cc:68 msgid "Object" msgstr "Objekt" @@ -12550,13 +8230,6 @@ msgstr "" msgid "Track/Bus name (double click to edit)" msgstr "" -#: time_axis_view_item.cc:332 -#, fuzzy -msgid "new duration %1 frame is out of bounds for %2" -msgid_plural "new duration of %1 frames is out of bounds for %2" -msgstr[0] "ny varaktighet %1 frames är utom räckvidd för %2" -msgstr[1] "ny varaktighet %1 frames är utom räckvidd för %2" - #: time_fx_dialog.cc:62 msgid "Quick but Ugly" msgstr "Snabbt men fult" @@ -12577,55 +8250,10 @@ msgstr "" msgid "Preserve Formants" msgstr "" -#: time_fx_dialog.cc:71 -#, fuzzy -msgid "TimeFXDialog" -msgstr "TidsTänjningsDialog" - -#: time_fx_dialog.cc:74 -#, fuzzy -msgid "Pitch Shift Audio" -msgstr "Tonhöjdsändring" - -#: time_fx_dialog.cc:76 -#, fuzzy -msgid "Time Stretch Audio" -msgstr "Förläng/förkorta" - -#: time_fx_dialog.cc:104 transpose_dialog.cc:41 -#, fuzzy -msgid "Octaves:" -msgstr "Oktaver" - -#: time_fx_dialog.cc:109 transpose_dialog.cc:46 -#, fuzzy -msgid "Semitones:" -msgstr "Halvtoner" - -#: time_fx_dialog.cc:114 -#, fuzzy -msgid "Cents:" -msgstr "Cent" - -#: time_fx_dialog.cc:122 -#, fuzzy -msgid "Time|Shift" -msgstr "Ändra" - -#: time_fx_dialog.cc:146 time_fx_dialog.cc:149 -#, fuzzy -msgid "TimeFXButton" -msgstr "TidsTänjningsKnapp" - #: time_fx_dialog.cc:154 msgid "Stretch/Shrink" msgstr "Förläng/Förkorta" -#: time_fx_dialog.cc:164 -#, fuzzy -msgid "Progress" -msgstr "Källor" - #: time_info_box.cc:121 msgid "Start recording at auto-punch start" msgstr "Starta inspelning vid autoinslagsstart" @@ -12638,11 +8266,6 @@ msgstr "Stanna inspelning vid autoinslagsslut" msgid "programming error: request for non-existent audio range (%1)!" msgstr "" -#: transpose_dialog.cc:30 -#, fuzzy -msgid "Transpose MIDI" -msgstr "Transponera" - #: transpose_dialog.cc:55 msgid "Transpose" msgstr "Transponera" @@ -12651,11 +8274,6 @@ msgstr "Transponera" msgid "Loading default ui configuration file %1" msgstr "" -#: ui_config.cc:85 ui_config.cc:116 -#, fuzzy -msgid "cannot read default ui configuration file \"%1\"" -msgstr "kan ej öppna färgdefinitionsfil %1: %2" - #: ui_config.cc:90 ui_config.cc:121 msgid "default ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -12664,11 +8282,6 @@ msgstr "" msgid "Loading user ui configuration file %1" msgstr "" -#: ui_config.cc:137 -#, fuzzy -msgid "cannot read ui configuration file \"%1\"" -msgstr "kan ej öppna färgdefinitionsfil %1: %2" - #: ui_config.cc:142 msgid "user ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -12689,16 +8302,6 @@ msgstr "" msgid "missing RGBA style for \"%1\"" msgstr "saknar RGBA-stil för \"%1\"" -#: utils.cc:591 -#, fuzzy -msgid "cannot find XPM file for %1" -msgstr "kan inte hitta bilder för reglageräcke" - -#: utils.cc:617 -#, fuzzy -msgid "cannot find icon image for %1 using %2" -msgstr "kan inte hitta bilder för reglageräcke" - #: utils.cc:632 msgid "Caught exception while loading icon named %1" msgstr "" @@ -12707,16 +8310,6 @@ msgstr "" msgid "VerboseCanvasCursor" msgstr "" -#: add_video_dialog.cc:55 -#, fuzzy -msgid "Set Video Track" -msgstr "Lägg till spÃ¥r" - -#: add_video_dialog.cc:63 -#, fuzzy -msgid "Launch External Video Monitor" -msgstr "Extern medhörning" - #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -12729,26 +8322,6 @@ msgstr "" msgid "VideoServerIndex" msgstr "" -#: add_video_dialog.cc:129 -#, fuzzy -msgid "Video files" -msgstr "Ljudfiler" - -#: add_video_dialog.cc:164 -#, fuzzy -msgid "Video Information" -msgstr "Information" - -#: add_video_dialog.cc:167 -#, fuzzy -msgid "Start:" -msgstr "Början:" - -#: add_video_dialog.cc:173 -#, fuzzy -msgid "Frame rate:" -msgstr "Samplingsfrekvens:" - #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -12794,11 +8367,6 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" -#: video_monitor.cc:281 -#, fuzzy -msgid "Video Monitor: File Not Found." -msgstr "Medhörning" - #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -12815,25 +8383,10 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:56 -#, fuzzy -msgid "Transcode/Import Video File " -msgstr "Exportera till ljudfil(er)..." - -#: transcode_video_dialog.cc:58 -#, fuzzy -msgid "Output File:" -msgstr "UtgÃ¥ngsenhet:" - #: transcode_video_dialog.cc:61 export_video_dialog.cc:73 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:63 -#, fuzzy -msgid "Height = " -msgstr "Höjd" - #: transcode_video_dialog.cc:66 msgid "Manual Override" msgstr "" @@ -12842,11 +8395,6 @@ msgstr "" msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:107 -#, fuzzy -msgid "File Information" -msgstr "Information" - #: transcode_video_dialog.cc:113 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " @@ -12864,11 +8412,6 @@ msgstr "" msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:136 -#, fuzzy -msgid "Duration:" -msgstr "Varaktighet (sekunder)" - #: transcode_video_dialog.cc:138 msgid "Codec:" msgstr "" @@ -12881,11 +8424,6 @@ msgstr "" msgid "??" msgstr "" -#: transcode_video_dialog.cc:176 -#, fuzzy -msgid "Import Settings" -msgstr "Alternativ" - #: transcode_video_dialog.cc:181 msgid "Do Not Import Video" msgstr "" @@ -12894,34 +8432,14 @@ msgstr "" msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:184 -#, fuzzy -msgid "Import/Transcode Video to Session" -msgstr "Importera frÃ¥n session" - #: transcode_video_dialog.cc:198 msgid "Scale Video: Width = " msgstr "" -#: transcode_video_dialog.cc:205 -#, fuzzy -msgid "Original Width" -msgstr "Ursprunglig position" - #: transcode_video_dialog.cc:220 msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:225 -#, fuzzy -msgid "Extract Audio:" -msgstr "Exportera session" - -#: transcode_video_dialog.cc:345 -#, fuzzy -msgid "Extracting Audio.." -msgstr "Lägg till ljudfil" - #: transcode_video_dialog.cc:348 msgid "Audio Extraction Failed." msgstr "" @@ -12934,11 +8452,6 @@ msgstr "" msgid "Transcoding Failed." msgstr "" -#: transcode_video_dialog.cc:491 -#, fuzzy -msgid "Save Transcoded Video File" -msgstr "Exportera till ljudfil(er)..." - #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -12966,16 +8479,6 @@ msgstr "" msgid "Listen Address:" msgstr "" -#: video_server_dialog.cc:125 -#, fuzzy -msgid "Listen Port:" -msgstr "Avlyssningsposition" - -#: video_server_dialog.cc:130 -#, fuzzy -msgid "Cache Size:" -msgstr "Max storlek" - #: video_server_dialog.cc:136 msgid "" "%1 relies on an external Video Server for the videotimeline.\n" @@ -13009,26 +8512,6 @@ msgstr "" msgid "Confirm Overwrite" msgstr "" -#: utils_videotl.cc:64 -#, fuzzy -msgid "A file with the same name already exists. Do you want to overwrite it?" -msgstr "Filen existerar redan, vill du skriva över den?" - -#: utils_videotl.cc:74 utils_videotl.cc:90 -#, fuzzy -msgid "Cannot create video folder \"%1\" (%2)" -msgstr "kan inte bli ny processgruppledare (%1)" - -#: export_video_dialog.cc:66 -#, fuzzy -msgid "Export Video File " -msgstr "Exportera till ljudfil(er)..." - -#: export_video_dialog.cc:70 -#, fuzzy -msgid "Video:" -msgstr "Filstart:" - #: export_video_dialog.cc:74 msgid "Scale Video (W x H):" msgstr "" @@ -13037,11 +8520,6 @@ msgstr "" msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:80 -#, fuzzy -msgid "Normalize Audio" -msgstr "Normalisera till" - #: export_video_dialog.cc:81 msgid "2 Pass Encoding" msgstr "" @@ -13050,11 +8528,6 @@ msgstr "" msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:84 -#, fuzzy -msgid "Deinterlace" -msgstr "intern" - #: export_video_dialog.cc:85 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" @@ -13063,11 +8536,6 @@ msgstr "" msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:87 -#, fuzzy -msgid "Include Session Metadata" -msgstr "Redigera sessionens metadata" - #: export_video_dialog.cc:107 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " @@ -13075,26 +8543,6 @@ msgid "" "information." msgstr "" -#: export_video_dialog.cc:117 -#, fuzzy -msgid "Output:" -msgstr "UtgÃ¥ngar" - -#: export_video_dialog.cc:127 -#, fuzzy -msgid "Input:" -msgstr "IngÃ¥ngar" - -#: export_video_dialog.cc:138 -#, fuzzy -msgid "Audio:" -msgstr "LjudspÃ¥r" - -#: export_video_dialog.cc:140 -#, fuzzy -msgid "Master Bus" -msgstr "Skapa master-buss" - #: export_video_dialog.cc:145 msgid "from the %1 session's start to the session's end" msgstr "" @@ -13107,61 +8555,6 @@ msgstr "" msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:184 -#, fuzzy -msgid "Settings:" -msgstr "Destinationer" - -#: export_video_dialog.cc:192 -#, fuzzy -msgid "Range:" -msgstr "OmfÃ¥ng" - -#: export_video_dialog.cc:195 -#, fuzzy -msgid "Preset:" -msgstr "Ny förinställning" - -#: export_video_dialog.cc:198 -#, fuzzy -msgid "Video Codec:" -msgstr "Mapp:" - -#: export_video_dialog.cc:201 -#, fuzzy -msgid "Video KBit/s:" -msgstr "Filstart:" - -#: export_video_dialog.cc:204 -#, fuzzy -msgid "Audio Codec:" -msgstr "Ljudläge:" - -#: export_video_dialog.cc:207 -#, fuzzy -msgid "Audio KBit/s:" -msgstr "Ljudfiler" - -#: export_video_dialog.cc:210 -#, fuzzy -msgid "Audio Samplerate:" -msgstr "Samplingsfrekvens:" - -#: export_video_dialog.cc:387 -#, fuzzy -msgid "Normalizing audio" -msgstr "Normalisera värden" - -#: export_video_dialog.cc:391 -#, fuzzy -msgid "Exporting audio" -msgstr "Exportera session" - -#: export_video_dialog.cc:437 -#, fuzzy -msgid "Exporting Audio..." -msgstr "Exportera session" - #: export_video_dialog.cc:494 msgid "" "Export Video: Cannot query duration of video-file, using duration from " @@ -13192,16 +8585,6 @@ msgstr "" msgid "Transcoding failed." msgstr "" -#: export_video_dialog.cc:948 export_video_dialog.cc:968 -#, fuzzy -msgid "Save Exported Video File" -msgstr "Exportera till ljudfil(er)..." - -#: export_video_infobox.cc:30 -#, fuzzy -msgid "Video Export Info" -msgstr "Medhörning" - #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -13218,2810 +8601,3 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" - -#~ msgid "slowest" -#~ msgstr "lÃ¥ngsammast" - -#~ msgid "slow" -#~ msgstr "lÃ¥ngsam" - -#~ msgid "fast" -#~ msgstr "snabb" - -#~ msgid "faster" -#~ msgstr "snabbare" - -#~ msgid "fastest" -#~ msgstr "snabbast" - -#~ msgid "What would you like to do ?" -#~ msgstr "Vad vill du göra?" - -#, fuzzy -#~ msgid "Failed to set session-framerate: " -#~ msgstr "Kopiera en fil till sessionsmappen" - -#~ msgid "Connect" -#~ msgstr "Anslut" - -#~ msgid "Mixer on Top" -#~ msgstr "Mixer överst" - -#~ msgid "Add Audio Track" -#~ msgstr "Lägg till spÃ¥r" - -#~ msgid "Add Audio Bus" -#~ msgstr "Lägg till buss" - -#, fuzzy -#~ msgid "Add MIDI Track" -#~ msgstr "MIDI-spÃ¥rare" - -#~ msgid "Control surfaces" -#~ msgstr "Kontrollytor" - -#~ msgid "Hid" -#~ msgstr "Dölj" - -#, fuzzy -#~ msgid "Enable Translations" -#~ msgstr "Filplatser" - -#~ msgid "Locate to Range Mark" -#~ msgstr "Flytta startmarkörer till omfÃ¥ngsmarkör" - -#~ msgid "Play from Range Mark" -#~ msgstr "Spela frÃ¥n omfÃ¥ngsmarkör" - -#, fuzzy -#~ msgid "Playback/Recording on 1 Device" -#~ msgstr "Upp-/inspelning pÃ¥ 1 enhet" - -#, fuzzy -#~ msgid "Playback/Recording on 2 Devices" -#~ msgstr "Upp-/inspelning pÃ¥ 2 enheter" - -#, fuzzy -#~ msgid "Channel:" -#~ msgstr "Kanaler:" - -#, fuzzy -#~ msgid "Lck" -#~ msgstr "LÃ¥s" - -#~ msgid "Use overlap equivalency for regions" -#~ msgstr "Använd överlappningsmotsvarighet för regioner" - -#~ msgid "Use a monitor bus (allows AFL/PFL and more control)" -#~ msgstr "" -#~ "Använd en medhörningsbuss (möjliggör AFL/PFL och ytterligare kontroll)" - -#~ msgid "Subframes per frame" -#~ msgstr "Underrutor per ruta" - -#, fuzzy -#~ msgid "could not create a new mixed track" -#~ msgstr "kunde inte skapa nytt ljudspÃ¥r" - -#, fuzzy -#~ msgid "could not create new audio bus" -#~ msgid_plural "could not create %1 new audio busses" -#~ msgstr[0] "kunde inte skapa nytt ljudspÃ¥r" -#~ msgstr[1] "kunde inte skapa nytt ljudspÃ¥r" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were not in use and \n" -#~ "have been moved to: %2\n" -#~ "\n" -#~ "After a restart of %5\n" -#~ "\n" -#~ "Session -> Clean-up -> Flush Wastebasket\n" -#~ "\n" -#~ "will release an additional %3 %4bytes of disk space.\n" -#~ msgstr "" -#~ "Följande %1 %2 användes inte \n" -#~ "och har flyttats till:\n" -#~ "%3. \n" -#~ "\n" -#~ "Att tömma papperskorgen kommer att \n" -#~ "frigöra ytterligarel\n" -#~ "%4 %5byte diskutrymme.\n" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were deleted from %2,\n" -#~ "releasing %3 %4bytes of disk space" -#~ msgstr "" -#~ "Följande %1 %2 raderades frÃ¥n\n" -#~ "%3,\n" -#~ "vilket frigjorde %4 %5byte diskutrymme" - -#, fuzzy -#~ msgid "could only create %1 of %2 new audio %3" -#~ msgstr "kunde inte skapa ny ljudbuss" - -#, fuzzy -#~ msgid "Always Play Range Selection (if any)" -#~ msgstr "Spela alltid omfÃ¥ng/markering" - -#~ msgid "Start playback after any locate" -#~ msgstr "Starta uppspelning vid markörsplacering" - -#, fuzzy -#~ msgid "Always Play Range" -#~ msgstr "Spela omfÃ¥ng" - -#~ msgid "Select/Move Objects" -#~ msgstr "Markera/flytta objekt" - -#~ msgid "Select/Move Ranges" -#~ msgstr "Markera/flytta omfÃ¥ng" - -#~ msgid "Edit Region Contents (e.g. notes)" -#~ msgstr "Redigera regionsinnehÃ¥ll (t.ex. noter)" - -#~ msgid "Link Object / Range Tools" -#~ msgstr "Länka objekt-/omfÃ¥ngsverktygen" - -#, fuzzy -#~ msgid "editing|E" -#~ msgstr "Redigering" - -#, fuzzy -#~ msgid "Sharing Editing?" -#~ msgstr "Ändra redigeringspunkt" - -#~ msgid "Toggle snap using:" -#~ msgstr "Växla fäst mot rutnät med:" - -#~ msgid "Disable plugins during recording" -#~ msgstr "Stäng av insticksprogram vid inspelning" - -#, fuzzy -#~ msgid "Visual|Interface" -#~ msgstr "Enhet" - -#~ msgid "Editing" -#~ msgstr "Redigering" - -#~ msgid "Timecode source shares sample clock with audio interface" -#~ msgstr "Tidskodskälla delar samplingsklocka med ljudhÃ¥rdvaran" - -#~ msgid "Timecode Offset Negative" -#~ msgstr "Tidskodsförskjutning negativ" - -#~ msgid "Crossfades are created" -#~ msgstr "Övertoningar skapas" - -#~ msgid "to span entire overlap" -#~ msgstr "för att täcka hela överlappningen" - -#, fuzzy -#~ msgid "use existing region fade shape" -#~ msgstr "Använd en existerande session som mall:" - -#~ msgid "Short crossfade length" -#~ msgstr "Kort övertonings längd" - -#~ msgid "Create crossfades automatically" -#~ msgstr "Skapa övertoningar automatiskt" - -#~ msgid "Add files:" -#~ msgstr "Lägg till:" - -#~ msgid "Mapping:" -#~ msgstr "Lägg som:" - -#, fuzzy -#~ msgid "Add MIDI Controller Track" -#~ msgstr "Skicka MIDI-kontrollgensvar" - -#, fuzzy -#~ msgid "%1 could not start JACK" -#~ msgstr "kunde inte starta JACK-servern:" - -#, fuzzy -#~ msgid "" -#~ "There are several possible reasons:\n" -#~ "\n" -#~ "1) You requested audio parameters that are not supported..\n" -#~ "2) JACK is running as another user.\n" -#~ "\n" -#~ "Please consider the possibilities, and perhaps try different parameters." -#~ msgstr "" -#~ "Det finns flera möjliga anledningar:\n" -#~ "\n" -#~ "1) JACK är inte igÃ¥ng.\n" -#~ "2) JACK är startat av en annan användare, kanske root.\n" -#~ "3) Det finns redan en annan klient som heter \"ardour\".\n" -#~ "\n" -#~ "Överväg dessa möjligheter, och starta mÃ¥hända (om) JACK." - -#~ msgid "Toolbars when Maximised" -#~ msgstr "Verktygsrader i helskärmsläge" - -#~ msgid "Mixer" -#~ msgstr "Mixer" - -#~ msgid "Show All Crossfades" -#~ msgstr "Visa alla övertoningar" - -#, fuzzy -#~ msgid "Edit Crossfade" -#~ msgstr "Övertoning" - -#~ msgid "Out (dry)" -#~ msgstr "Ut (torr)" - -#~ msgid "In (dry)" -#~ msgstr "In (torr)" - -#~ msgid "With Pre-roll" -#~ msgstr "Med För-rull" - -#~ msgid "With Post-roll" -#~ msgstr "Med Efter-rull" - -#, fuzzy -#~ msgid "Edit crossfade" -#~ msgstr "Övertoning" - -#~ msgid "Route Groups" -#~ msgstr "Ruttgrupper" - -#~ msgid "Unmute" -#~ msgstr "Sluta tysta" - -#, fuzzy -#~ msgid "Convert to Short" -#~ msgstr "Konvertera till kort" - -#, fuzzy -#~ msgid "Convert to Full" -#~ msgstr "Konvertera till full" - -#~ msgid "Nudge Entire Track Backward" -#~ msgstr "Knuffa spÃ¥ret bakÃ¥t" - -#~ msgid "Nudge Track After Edit Point Backward" -#~ msgstr "Knuffa spÃ¥ret efter redigeringspunkten bakÃ¥t" - -#~ msgid "Nudge Region/Selection Backwards" -#~ msgstr "Knuffa region/markering bakÃ¥t" - -#~ msgid "Undo" -#~ msgstr "Ã…ngra" - -#~ msgid "Jump Forward to Mark" -#~ msgstr "Hoppa framÃ¥t till markör" - -#~ msgid "Jump Backward to Mark" -#~ msgstr "Hoppa framÃ¥t till markör" - -#~ msgid "Nudge Next Backward" -#~ msgstr "Knuffa nästa bakÃ¥t" - -#~ msgid "Forward to Grid" -#~ msgstr "FramÃ¥t i rutnät" - -#~ msgid "Backward to Grid" -#~ msgstr "BakÃ¥t i rutnät" - -#~ msgid "Move Backwards to Transient" -#~ msgstr "GÃ¥ bakÃ¥t till transient" - -#~ msgid "Add Range Marker(s)" -#~ msgstr "Lägg till omfÃ¥ngsmarkörer" - -#~ msgid "Envelope Visible" -#~ msgstr "Konvolut synligt" - -#~ msgid "Fork" -#~ msgstr "Grena ut" - -#~ msgid "Nudge Backward by Capture Offset" -#~ msgstr "Knuffa bakÃ¥t utifrÃ¥n inspelningskompensation" - -#, fuzzy -#~ msgid "Rel" -#~ msgstr "Ställ in" - -#, fuzzy -#~ msgid "Sel" -#~ msgstr "Ställ in" - -#, fuzzy -#~ msgid "region gain envelope visible" -#~ msgstr "Ändra konvolutsvisning" - -#, fuzzy -#~ msgid "time stretch" -#~ msgstr "tidstänjning" - -#~ msgid "Realtime Priority" -#~ msgstr "Realtidsprioritering" - -#~ msgid "Input channels:" -#~ msgstr "IngÃ¥ngar:" - -#~ msgid "Output channels:" -#~ msgstr "UtgÃ¥ngar:" - -#, fuzzy -#~ msgid "Advanced options" -#~ msgstr "Avancerade inställningar" - -#~ msgid "Include in Filename(s):" -#~ msgstr "Inkludera i filnamn:" - -#~ msgid "New From" -#~ msgstr "Ny frÃ¥n" - -#, fuzzy -#~ msgid "Option-" -#~ msgstr "Inställningar" - -#, fuzzy -#~ msgid "Shift-" -#~ msgstr "Ändra" - -#, fuzzy -#~ msgid "Control-" -#~ msgstr "Kontroller" - -#, fuzzy -#~ msgid "Set value to playhead" -#~ msgstr "Sätt värdet till startmarkören" - -#, fuzzy -#~ msgid "Jump to the end of this range" -#~ msgstr "Stoppa vid slutet av sessionen" - -#, fuzzy -#~ msgid "End time" -#~ msgstr "Beskär slutpunkt" - -#, fuzzy -#~ msgid "Could not create user configuration directory" -#~ msgstr "kunde inte skapa nytt ljudspÃ¥r" - -#, fuzzy -#~ msgid "MIDI Thru" -#~ msgstr "MIDI-spÃ¥rare" - -#~ msgid "Store this many lines: " -#~ msgstr "Lagra sÃ¥ här mÃ¥nga rader: " - -#~ msgid "close" -#~ msgstr "stäng" - -#~ msgid "New send" -#~ msgstr "Ny Sänd" - -#~ msgid "New Send ..." -#~ msgstr "Ny Sänd..." - -#, fuzzy -#~ msgid "Controls..." -#~ msgstr "Kontroller" - -#~ msgid "Quantize Type" -#~ msgstr "Kvantiseringstyp" - -#~ msgid "Secondary clock delta to edit cursor" -#~ msgstr "Sekundär klockdelta till redigeringspunkten" - -#, fuzzy -#~ msgid "Route active state" -#~ msgstr "automatiseringstillstÃ¥nd" - -#~ msgid "" -#~ "Left-click to invert (phase reverse) all channels of this track. Right-" -#~ "click to show menu." -#~ msgstr "" -#~ "Vänsterklicka för att invertera (fasinvers) alla kanaler i detta spÃ¥ret. " -#~ "Högerklicka för att visa menyn" - -#~ msgid "Crossfades active" -#~ msgstr "Övertoningar aktiva" - -#~ msgid "Layering (in overlaid mode)" -#~ msgstr "Lagerhantering (i överlappande läge)" - -#, fuzzy -#~ msgid "Layering model" -#~ msgstr "Lager" - -#, fuzzy -#~ msgid "later is higher" -#~ msgstr "Senare är högre" - -#, fuzzy -#~ msgid "most recently moved or added is higher" -#~ msgstr "Senast flyttade/tillagda är högre" - -#, fuzzy -#~ msgid "most recently added is higher" -#~ msgstr "Senast tillagda är högre" - -#~ msgid "Broadcast WAVE metadata" -#~ msgstr "Broadcast WAVE-metadata" - -#, fuzzy -#~ msgid "Page:" -#~ msgstr "Användning: " - -#~ msgid "" -#~ "(You can change this preference at any time, via the " -#~ "Preferences dialog)" -#~ msgstr "" -#~ "(Du kan ändra detta när du vill via Inställningar)" - -#~ msgid "second (2)" -#~ msgstr "sekond (2)" - -#~ msgid "eighth (8)" -#~ msgstr "Ã¥ttondel (8)" - -#~ msgid "garbaged note type entry (%1)" -#~ msgstr "skräpad nottypsvärde (%1)" - -#~ msgid "Strict Linear" -#~ msgstr "Strikt linjär" - -#~ msgid "" -#~ "pre\n" -#~ "roll" -#~ msgstr "" -#~ "för-\n" -#~ "roll" - -#~ msgid "" -#~ "post\n" -#~ "roll" -#~ msgstr "" -#~ "efter-\n" -#~ "roll" - -#~ msgid "" -#~ "time\n" -#~ "master" -#~ msgstr "" -#~ "huvud-\n" -#~ "klocka" - -#~ msgid "AUDITION" -#~ msgstr "AVLYSSNING" - -#, fuzzy -#~ msgid "%.1f kHz / %4.1f ms" -#~ msgstr "Samplingsfrekvens: %.1f kHz / %4.1f msek" - -#, fuzzy -#~ msgid "% kHz / %4.1f ms" -#~ msgstr "Samplingsfrekvens: %u kHz / %4.1f msek" - -#, fuzzy -#~ msgid "DSP: %5.1f%%" -#~ msgstr "DSP-belastning: %.1f%%" - -#~ msgid "Buffers p:%%% c:%%%" -#~ msgstr "Buffertar u-s:%%% i-s:%%%" - -#, fuzzy -#~ msgid "Disk: 24hrs+" -#~ msgstr "Utrymme: 24h+" - -#~ msgid "Does %1 control the time?" -#~ msgstr "Är %1 huvudklocka?" - -#, fuzzy -#~ msgid "External" -#~ msgstr "Intern" - -#~ msgid "automation" -#~ msgstr "automatisering" - -#, fuzzy -#~ msgid "Delete Unused" -#~ msgstr "Radera med" - -#, fuzzy -#~ msgid "Exclusive" -#~ msgstr "Avskild solo" - -#, fuzzy -#~ msgid "Solo/Mute" -#~ msgstr "Solo / tysta" - -#~ msgid "Activate all" -#~ msgstr "Aktivera alla" - -#~ msgid "post-fader but before post-fader processors" -#~ msgstr "efter-nivÃ¥reglage men innan efter-nivÃ¥reglageprocessorer" - -#~ msgid "A track already exists with that name" -#~ msgstr "Ett spÃ¥r med det namnet existerar redan" - -#, fuzzy -#~ msgid "MIDI Note Overlaps" -#~ msgstr "Redigera MIDI-noter" - -#~ msgid "Password:" -#~ msgstr "Lösenord:" - -#, fuzzy -#~ msgid "Cancelling.." -#~ msgstr "Räknar ut..." - -#~ msgid "unknown track height name \"%1\" in XML GUI information" -#~ msgstr "okänt spÃ¥rhöjdsnamn \"%1\" i XML-GUI-informationen" - -#~ msgid "Off" -#~ msgstr "Av" - -#~ msgid "Smaller" -#~ msgstr "Mindre" - -#~ msgid "" -#~ "%1\n" -#~ "(built with ardour/gtk %2.%3.%4 libardour: %5.%6.%7)" -#~ msgstr "" -#~ "%1\n" -#~ "(kompilerat med ardour/gtk %2.%3.%4 libardour: %5.%6.%7)" - -#~ msgid "ardour: add track/bus" -#~ msgstr "ardour: lägg till spÃ¥r/buss(ar)" - -#~ msgid "Tracks" -#~ msgstr "SpÃ¥r" - -#~ msgid "Name (template)" -#~ msgstr "Namn (mall)" - -#~ msgid "3 Channels" -#~ msgstr "3 Kanaler" - -#~ msgid "4 Channels" -#~ msgstr "4 Kanaler" - -#~ msgid "6 Channels" -#~ msgstr "6 Kanaler" - -#~ msgid "8 Channels" -#~ msgstr "8 Kanaler" - -#~ msgid "Manual Setup" -#~ msgstr "Manuellt" - -#~ msgid "" -#~ "punch\n" -#~ "in" -#~ msgstr "" -#~ "punch-\n" -#~ "in" - -#~ msgid "" -#~ "punch\n" -#~ "out" -#~ msgstr "" -#~ "punch-\n" -#~ "ut" - -#~ msgid "" -#~ "auto\n" -#~ "return" -#~ msgstr "" -#~ "auto-\n" -#~ "Ã¥tervänd" - -#~ msgid "" -#~ "auto\n" -#~ "play" -#~ msgstr "" -#~ "auto-\n" -#~ "spela" - -#~ msgid "" -#~ "auto\n" -#~ "input" -#~ msgstr "" -#~ "auto-\n" -#~ "inljud" - -#~ msgid "click" -#~ msgstr "klick" - -#~ msgid "quit" -#~ msgstr "avsluta" - -#~ msgid "ardour: save session?" -#~ msgstr "ardour: spara sessionen?" - -#~ msgid "snapshot" -#~ msgstr "ögonblickskopia" - -#~ msgid "open session" -#~ msgstr "öppna session" - -#~ msgid "Ardour sessions" -#~ msgstr "Sessioner" - -#~ msgid "Patience is a virtue.\n" -#~ msgstr "TÃ¥lamod är en dygd.\n" - -#~ msgid "Unable to create all required ports" -#~ msgstr "Kan ej skapa alla nödvändiga portar" - -#~ msgid "No Stream" -#~ msgstr "Ingen ljudström" - -#~ msgid "Name of New Snapshot" -#~ msgstr "Namn för ögonblickskopia" - -#~ msgid "" -#~ "You do not have write access to this session.\n" -#~ "This prevents the session from being loaded." -#~ msgstr "" -#~ "Du har ej skrivrättigheter till denna session.\n" -#~ "Detta hindrar sessionen frÃ¥n att laddas." - -#~ msgid "ardour: cleanup" -#~ msgstr "ardour: rensning" - -#~ msgid "files were" -#~ msgstr "filer" - -#~ msgid "file was" -#~ msgstr "fil" - -#~ msgid "Clean Up" -#~ msgstr "Rensa upp" - -#~ msgid "ardour_cleanup" -#~ msgstr "ardour_rensning" - -#~ msgid "MMC + Local" -#~ msgstr "MMC + Lokal" - -#~ msgid "Local" -#~ msgstr "Lokal" - -#~ msgid "Positional sync source" -#~ msgstr "Källa till positionell synk." - -#~ msgid "Does Ardour control the time?" -#~ msgstr "Är Ardour huvudklocka?" - -#~ msgid "Select semitones or %%-age for speed display" -#~ msgstr "Markera halvtoner eller %% för hastighetsvisning" - -#~ msgid "Current transport speed" -#~ msgstr "Nuvarande uppspelningshastighet" - -#~ msgid "Primary clock" -#~ msgstr "Primär klocka" - -#~ msgid "secondary clock" -#~ msgstr "sekundär klocka" - -#~ msgid "ardour: clock" -#~ msgstr "ardour: klocka" - -#~ msgid "st" -#~ msgstr "halvtoner" - -#~ msgid "Sound File Browser" -#~ msgstr "Ljudfilsbibliotek" - -#~ msgid "KeyMouse Actions" -#~ msgstr "Tangent-/musÃ¥tgärder" - -#~ msgid "Recent" -#~ msgstr "Tidigare" - -#~ msgid "Add Track/Bus" -#~ msgstr "Lägg till SpÃ¥r/Buss" - -#~ msgid "Snapshot" -#~ msgstr "Ögonblickskopia" - -#~ msgid "Export session to audiofile..." -#~ msgstr "Exportera sessionen till en ljudfil..." - -#~ msgid "Export selection to audiofile..." -#~ msgstr "Exportera markeringen till ljudfil" - -#~ msgid "Export range markers to audiofile..." -#~ msgstr "Exportera omfÃ¥nget till ljudfil" - -#~ msgid "Cleanup unused sources" -#~ msgstr "Rensa oanvända källor" - -#~ msgid "Flush wastebasket" -#~ msgstr "Töm papperskorgen" - -#~ msgid "Windows" -#~ msgstr "Fönster" - -#~ msgid "start prefix" -#~ msgstr "start-prefix" - -#~ msgid "Show Editor" -#~ msgstr "Visa Redigerare" - -#~ msgid "Show Mixer" -#~ msgstr "Visa Mixer" - -#~ msgid "Options Editor" -#~ msgstr "Inställningar" - -#~ msgid "Track/Bus Inspector" -#~ msgstr "SpÃ¥r/Buss-inspektör" - -#~ msgid "Colors" -#~ msgstr "Färger" - -#~ msgid "Stop + Forget Capture" -#~ msgstr "Stanna + Ã¥ngra inspelning" - -#~ msgid "Time master" -#~ msgstr "Huvudklocka" - -#~ msgid "Toggle Record Enable Track2" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r2" - -#~ msgid "Toggle Record Enable Track3" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r3" - -#~ msgid "Toggle Record Enable Track4" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r4" - -#~ msgid "Toggle Record Enable Track5" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r5" - -#~ msgid "Toggle Record Enable Track6" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r6" - -#~ msgid "Toggle Record Enable Track7" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r7" - -#~ msgid "Toggle Record Enable Track8" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r8" - -#~ msgid "Toggle Record Enable Track9" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r9" - -#~ msgid "Toggle Record Enable Track10" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r10" - -#~ msgid "Toggle Record Enable Track11" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r11" - -#~ msgid "Toggle Record Enable Track12" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r12" - -#~ msgid "Toggle Record Enable Track13" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r13" - -#~ msgid "Toggle Record Enable Track14" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r14" - -#~ msgid "Toggle Record Enable Track15" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r15" - -#~ msgid "Toggle Record Enable Track16" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r16" - -#~ msgid "Toggle Record Enable Track17" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r17" - -#~ msgid "Toggle Record Enable Track18" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r18" - -#~ msgid "Toggle Record Enable Track19" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r19" - -#~ msgid "Toggle Record Enable Track20" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r20" - -#~ msgid "Toggle Record Enable Track21" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r21" - -#~ msgid "Toggle Record Enable Track22" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r22" - -#~ msgid "Toggle Record Enable Track23" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r23" - -#~ msgid "Toggle Record Enable Track24" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r24" - -#~ msgid "Toggle Record Enable Track25" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r25" - -#~ msgid "Toggle Record Enable Track26" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r26" - -#~ msgid "Toggle Record Enable Track27" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r27" - -#~ msgid "Toggle Record Enable Track28" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r28" - -#~ msgid "Toggle Record Enable Track29" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r29" - -#~ msgid "Toggle Record Enable Track30" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r30" - -#~ msgid "Toggle Record Enable Track31" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r31" - -#~ msgid "Toggle Record Enable Track32" -#~ msgstr "Ändra inspelningsläge för SpÃ¥r32" - -#~ msgid "Use MIDI control" -#~ msgstr "Använd MIDI-kontroll" - -#~ msgid "Use OSC" -#~ msgstr "Använd OSC" - -#~ msgid "Auto-connect inputs to physical inputs" -#~ msgstr "Anslut automatiskt ingÃ¥ngar till fysiska ingÃ¥ngar" - -#~ msgid "Manually connect inputs" -#~ msgstr "Anslut ingÃ¥ngar manuellt" - -#~ msgid "Auto-connect outputs to physical outs" -#~ msgstr "Anslut automatiskt utgÃ¥ngar till fysiska utgÃ¥ngar" - -#~ msgid "Auto-connect outputs to master bus" -#~ msgstr "Ansluta automatiskt utgÃ¥ngar till master-bussen" - -#~ msgid "Manually connect outputs" -#~ msgstr "Anslut utgÃ¥ngar manuellt" - -#~ msgid "Remote ID assigned by User" -#~ msgstr "Fjärr-ID bestäms av användaren" - -#~ msgid "Remote ID follows order of Mixer" -#~ msgstr "Fjärr-ID följer mixerordning" - -#~ msgid "Remote ID follows order of Editor" -#~ msgstr "Fjärr-ID flöjer redigerareordning" - -#~ msgid "Connect new track inputs to hardware" -#~ msgstr "Koppla nya ingÃ¥ngar till hÃ¥rdvara" - -#~ msgid "Connect new track outputs to hardware" -#~ msgstr "Koppla nya utgÃ¥ngar till hÃ¥rdvara" - -#~ msgid "Connect new track outputs to master" -#~ msgstr "Koppla nya utgÃ¥ngar till master" - -#~ msgid "Manually connect new track outputs" -#~ msgstr "Manuell koppling av nya utgÃ¥ngar" - -#~ msgid "Hardware monitoring" -#~ msgstr "HÃ¥rdvarumedhörning" - -#~ msgid "Software monitoring" -#~ msgstr "Mjukvarumedhörning" - -#~ msgid "Stop plugins with transport" -#~ msgstr "Stoppa insticksprogram vid stopp" - -#~ msgid "Verify remove last capture" -#~ msgstr "Bekräfta borttagning av senaste inspelade ljudet" - -#~ msgid "Make periodic safety backups" -#~ msgstr "Gör periodiska säkerhetskopior" - -#~ msgid "Stop recording on xrun" -#~ msgstr "Stanna inspelning vid xrun-förekomst" - -#~ msgid "Stop transport at session end" -#~ msgstr "Stanna uppspelning vid slutet av sessionen" - -#~ msgid "-12dB gain reduce ffwd/rewind" -#~ msgstr "-12dB volymreduktion för snabbspolning" - -#~ msgid "Rec-enable stays engaged at stop" -#~ msgstr "Inspelningsläge ändras ej vid stopp" - -#~ msgid "Region equivalents overlap" -#~ msgstr "Likvärda regioner överlappar" - -#~ msgid "Primary Clock delta to edit cursor" -#~ msgstr "Primär klockdelta till redigeringspunkten" - -#~ msgid "Secondary Clock delta to edit cursor" -#~ msgstr "Sekundär klockdelta till redigeringspunkten" - -#~ msgid "Do not run plugins while recording" -#~ msgstr "Kör ej insticksprogram vid inspelning" - -#~ msgid "Solo in-place" -#~ msgstr "In place-solo " - -#~ msgid "Solo via bus" -#~ msgstr "Solo via buss" - -#~ msgid "Automatically create crossfades" -#~ msgstr "Skapa övertoningar automatiskt" - -#~ msgid "Unmute new full crossfades" -#~ msgstr "Nya fulla övertoningar är pÃ¥slagna" - -#~ msgid "ST" -#~ msgstr "HT" - -#~ msgid "Display Height" -#~ msgstr "Visningshöjd" - -#~ msgid "Show all automation" -#~ msgstr "Visa all automatisering" - -#~ msgid "Show existing automation" -#~ msgstr "Visa existerande automatisering" - -#~ msgid "Hide all automation" -#~ msgstr "Göm all automatisering" - -#~ msgid "Show waveforms" -#~ msgstr "Visa vÃ¥gformer" - -#~ msgid "Traditional" -#~ msgstr "Traditionell" - -#~ msgid "Rectified" -#~ msgstr "Korrigerad" - -#~ msgid "Waveform" -#~ msgstr "VÃ¥gform" - -#~ msgid "Tape mode" -#~ msgstr "Band-läge" - -#~ msgid "a track already exists with that name" -#~ msgstr "ett spÃ¥r med det namnet existerar redan" - -#~ msgid "pan" -#~ msgstr "panorering" - -#~ msgid "Current: %1" -#~ msgstr "Aktuell: %1" - -#~ msgid "New Copy" -#~ msgstr "Ny kopia" - -#~ msgid "track height" -#~ msgstr "spÃ¥rhöjd" - -#~ msgid "clear track" -#~ msgstr "rensa spÃ¥r" - -#~ msgid "the width" -#~ msgstr "bredden" - -#~ msgid "drawn width" -#~ msgstr "uppritningsbredd" - -#~ msgid "height" -#~ msgstr "höjd" - -#~ msgid "anchor" -#~ msgstr "ankare" - -#~ msgid "the anchor" -#~ msgstr "ankaret" - -#~ msgid "ardour: x-fade edit" -#~ msgstr "ardour: övertoningsredigerare" - -#~ msgid "SMPTE Frames" -#~ msgstr "SMPTE-frames" - -#~ msgid "SMPTE Seconds" -#~ msgstr "SMPTE-sekunder" - -#~ msgid "SMPTE Minutes" -#~ msgstr "SMPTE-minuter" - -#~ msgid "Edit Cursor" -#~ msgstr "Redigeringspunkten" - -#~ msgid "Normal Snap" -#~ msgstr "Vanligt fästläge " - -#~ msgid "Magnetic Snap" -#~ msgstr "Magnetiskt fästläge" - -#~ msgid "Focus Left" -#~ msgstr "Fokus: vänster" - -#~ msgid "Focus Right" -#~ msgstr "Fokus: höger" - -#~ msgid "Focus Center" -#~ msgstr "Fokus: mitten" - -#~ msgid "Focus Play" -#~ msgstr "Fokus: startmarkören" - -#~ msgid "Frames" -#~ msgstr "Rutor" - -#~ msgid "object" -#~ msgstr "objekt" - -#~ msgid "timefx" -#~ msgstr "tidsfx" - -#~ msgid "listen" -#~ msgstr "lyssna" - -#~ msgid "Snap To" -#~ msgstr "Fäst mot" - -#~ msgid "Zoom out" -#~ msgstr "Zooma ut" - -#~ msgid "Zoom Span" -#~ msgstr "Zoom-räckvidd" - -#~ msgid "Chunks" -#~ msgstr "Bitar" - -#~ msgid "Edit Groups" -#~ msgstr "Redigeringsgrupper" - -#~ msgid "ardour: editor" -#~ msgstr "ardour: redigerare" - -#~ msgid "ardour: editor: " -#~ msgstr "ardour: redigerare: " - -#~ msgid "Popup region editor" -#~ msgstr "Visa regionsredigerare" - -#~ msgid "Raise to top layer" -#~ msgstr "Höj till översta lagret" - -#~ msgid "Lower to bottom layer" -#~ msgstr "Sänk till lägsta lagret" - -#~ msgid "Bounce" -#~ msgstr "Skriv till disk" - -#~ msgid "Sync points" -#~ msgstr "Synkpunkter" - -#~ msgid "Analyze region" -#~ msgstr "Analysera regioner" - -#~ msgid "Unlock Position" -#~ msgstr "Frigör position" - -#~ msgid "Transparent" -#~ msgstr "Genomskinlig" - -#~ msgid "Unlock" -#~ msgstr "LÃ¥s upp" - -#~ msgid "DeNormalize" -#~ msgstr "Avnormalisera" - -#~ msgid "Nudge forward" -#~ msgstr "Knuffa framÃ¥t" - -#~ msgid "Nudge forward by capture offset" -#~ msgstr "Knuffa framÃ¥t utifrÃ¥n inspelningskompensation" - -#~ msgid "Nudge backward by capture offset" -#~ msgstr "Knuffa bakÃ¥t utifrÃ¥n inspelningskompensation" - -#~ msgid "Set Range" -#~ msgstr "Definiera omfÃ¥ng" - -#~ msgid "Nudge fwd" -#~ msgstr "Knuffa framÃ¥t" - -#~ msgid "Nudge bwd" -#~ msgstr "Knuffa bakÃ¥t" - -#~ msgid "Nudge fwd by capture offset" -#~ msgstr "Knuffa framÃ¥t utifrÃ¥n inspelningskompensation" - -#~ msgid "Nudge bwd by capture offset" -#~ msgstr "Knuffa bakÃ¥t utifrÃ¥n inspelningskompensation" - -#~ msgid "Start to edit cursor" -#~ msgstr "Början till redigeringspunkten" - -#~ msgid "Edit cursor to end" -#~ msgstr "Redigeringspunkten till slutet" - -#~ msgid "Make mono regions" -#~ msgstr "Skapa monoregioner" - -#~ msgid "Fill track" -#~ msgstr "Fyll spÃ¥ret" - -#~ msgid "Play range" -#~ msgstr "Spela omfÃ¥ng" - -#~ msgid "Destroy" -#~ msgstr "Förstör" - -#~ msgid "Loop range" -#~ msgstr "Loop-omfÃ¥ng" - -#~ msgid "Analyze range" -#~ msgstr "Analysera omfÃ¥ng" - -#~ msgid "Separate range to track" -#~ msgstr "Separera omfÃ¥ng till spÃ¥r" - -#~ msgid "Select all in range" -#~ msgstr "Markera allt i omfÃ¥ng" - -#~ msgid "Set range to punch range" -#~ msgstr "Ställ in omfÃ¥ng till inslagsomfÃ¥nget" - -#~ msgid "Duplicate range" -#~ msgstr "Duplicera region" - -#~ msgid "Create chunk from range" -#~ msgstr "Skapa bit frÃ¥n omfÃ¥ng" - -#~ msgid "Bounce range" -#~ msgstr "OmfÃ¥ng till disk" - -#~ msgid "Export range" -#~ msgstr "Exportera omfÃ¥ng" - -#~ msgid "Play from edit cursor" -#~ msgstr "Spela frÃ¥n redigeringspunkten" - -#~ msgid "Play from start" -#~ msgstr "Spela frÃ¥n början" - -#~ msgid "Play region" -#~ msgstr "Spela region" - -#~ msgid "Loop region" -#~ msgstr "Loopa region" - -#~ msgid "Select all in track" -#~ msgstr "Markera allt i spÃ¥ret" - -#~ msgid "Select all in tracks" -#~ msgstr "Markera allt i spÃ¥ren" - -#~ msgid "Select all" -#~ msgstr "Markera allt" - -#~ msgid "Select All in track" -#~ msgstr "Markera allt i spÃ¥ret" - -#~ msgid "Select all before playhead" -#~ msgstr "Markera allt innan startmarkören" - -#~ msgid "Select all between cursors" -#~ msgstr "Markera allt mellan markörerna" - -#~ msgid "Paste at edit cursor" -#~ msgstr "Klistra in vid redigeringspunkten" - -#~ msgid "Paste at mouse" -#~ msgstr "Klistra in vid muspekaren" - -#~ msgid "Align relative" -#~ msgstr "Justera relativt" - -#~ msgid "Insert chunk" -#~ msgstr "Infoga bit" - -#~ msgid "Insert Existing Audio" -#~ msgstr "Infoga ljudfil" - -#~ msgid "Nudge entire track bwd" -#~ msgstr "Knuffa spÃ¥ret bakÃ¥t" - -#~ msgid "Nudge track after edit cursor bwd" -#~ msgstr "Knuffa spÃ¥ret bakÃ¥t efter redigeringspunkten" - -#~ msgid "Stretch/Shrink Regions" -#~ msgstr "Förläng/förkorta regioner" - -#~ msgid "... as new track" -#~ msgstr "... som nytt spÃ¥r" - -#~ msgid "... as new region" -#~ msgstr "... som ny region" - -#~ msgid "Import audio (copy)" -#~ msgstr "Importera ljudfil (kopiera)" - -#~ msgid "Duplicate how many times?" -#~ msgstr "Duplicera hur mÃ¥nga gÃ¥nger?" - -#~ msgid "Select regions" -#~ msgstr "Markera regioner" - -#~ msgid "Move edit cursor" -#~ msgstr "Flytta redigeringspunkten" - -#~ msgid "ZoomFocus" -#~ msgstr "Zoomfokus" - -#~ msgid "Span Entire Overlap" -#~ msgstr "Sträck över hela överlappningen" - -#~ msgid "Created Automatically" -#~ msgstr "Skapas automatiskt" - -#~ msgid "Edit Cursor to Next Region Start" -#~ msgstr "Redigeringspunkten till nästa regionstart" - -#~ msgid "Edit Cursor to Next Region End" -#~ msgstr "Redigeringspunkten till nästa regionslut" - -#~ msgid "Edit Cursor to Next Region Sync" -#~ msgstr "Redigeringspunkten till nästa regionssynk.-punkt" - -#~ msgid "Edit Cursor to Previous Region Start" -#~ msgstr "Redigeringspunkten till föregÃ¥ende regionstart" - -#~ msgid "Edit Cursor to Previous Region End" -#~ msgstr "Redigeringspunkten till föregÃ¥ende regionslutet" - -#~ msgid "Edit Cursor to Previous Region Sync" -#~ msgstr "Redigeringspunkten till föregÃ¥ende regionssynk.-punkten" - -#~ msgid "Edit Cursor to Range Start" -#~ msgstr "Redigeringspunkten till omfÃ¥ngstarten" - -#~ msgid "Edit Cursor to Range End" -#~ msgstr "Redigeringspunkten till omfÃ¥ngslutet" - -#~ msgid "Select All After Edit Cursor" -#~ msgstr "Markera allt efter redigeringspunkten" - -#~ msgid "Select All Before Edit Cursor" -#~ msgstr "Markera allt innan redigeringspunkten" - -#~ msgid "Select All Between Cursors" -#~ msgstr "Markera allt mellan markörerna" - -#~ msgid "Add Location from Playhead" -#~ msgstr "Lägg till Plats frÃ¥n startmarkören" - -#~ msgid "goto" -#~ msgstr "gÃ¥ till" - -#~ msgid "Center Edit Cursor" -#~ msgstr "Centrera redigeringspunkten" - -#~ msgid "Playhead forward" -#~ msgstr "Startmarkören framÃ¥t" - -#~ msgid "Playhead to Edit" -#~ msgstr "Startmarkören till redigeringspunkten" - -#~ msgid "Edit to Playhead" -#~ msgstr "Redigeringspunkten till Startmarkören" - -#~ msgid "Align Regions Start" -#~ msgstr "Justera regioners start" - -#~ msgid "Align Regions Start Relative" -#~ msgstr "Justera regioners start relativt" - -#~ msgid "Align Regions End" -#~ msgstr "Justera regions slut" - -#~ msgid "Align Regions End Relative" -#~ msgstr "Justera regions slut relativt" - -#~ msgid "Align Regions Sync" -#~ msgstr "Justera regions synk." - -#~ msgid "Align Regions Sync Relative" -#~ msgstr "Justera regions synk. relativt" - -#~ msgid "Audition at Mouse" -#~ msgstr "Avlyssning vid muspekaren" - -#~ msgid "Brush at Mouse" -#~ msgstr "MÃ¥la vid mus" - -#~ msgid "Set Edit Cursor" -#~ msgstr "Placera redigeringspunkten" - -#~ msgid "Mute/Unmute Region" -#~ msgstr "Tysta/stäng av tysta region" - -#~ msgid "Split Region" -#~ msgstr "Dela region" - -#~ msgid "Set Region Sync Position" -#~ msgstr "Definiera regionssynk.-position" - -#~ msgid "Duplicate Region" -#~ msgstr "Duplicera region" - -#~ msgid "Insert Region" -#~ msgstr "Infoga region" - -#~ msgid "Reverse Region" -#~ msgstr "Motsatt riktning" - -#~ msgid "Normalize Regions" -#~ msgstr "Normalisera regioner" - -#~ msgid "Quantize Regions" -#~ msgstr "Kvantisera regioner" - -#~ msgid "crop" -#~ msgstr "Beskär" - -#~ msgid "Insert Chunk" -#~ msgstr "Infoga bit" - -#~ msgid "Split at edit cursor" -#~ msgstr "Dela vid redigeringspunkten" - -#~ msgid "Finish add Range" -#~ msgstr "Lägg till slutomfÃ¥ng" - -#~ msgid "Extend Range to End of Region" -#~ msgstr "Utöka omfÃ¥ng till slutet av regionen" - -#~ msgid "Extend Range to Start of Region" -#~ msgstr "Utöka omfÃ¥ng till början av regionen" - -#~ msgid "Zoom Focus Edit" -#~ msgstr "Zoomfokus: redigeringspunkten" - -#~ msgid "Timefx Tool" -#~ msgstr "TidsFX-verktyg" - -#~ msgid "Snap to frame" -#~ msgstr "Fäst mot frames" - -#~ msgid "Snap to cd frame" -#~ msgstr "Fäst mot CD-frames" - -#~ msgid "Snap to SMPTE frame" -#~ msgstr "Fäst mot SMPTE-frames" - -#~ msgid "Snap to SMPTE seconds" -#~ msgstr "Fäst mot SMPTE-sekunder" - -#~ msgid "Snap to SMPTE minutes" -#~ msgstr "Fäst mot SMPTE-minuter" - -#~ msgid "Snap to seconds" -#~ msgstr "Fäst mot sekunder" - -#~ msgid "Snap to minutes" -#~ msgstr "Fäst mot minuter" - -#~ msgid "Snap to asixteenthbeat" -#~ msgstr "Fäst mot en sextondel" - -#~ msgid "Snap to eighths" -#~ msgstr "Fäst mot Ã¥ttondelar" - -#~ msgid "Snap to quarters" -#~ msgstr "Fäst mot fjärdedelar" - -#~ msgid "Snap to thirds" -#~ msgstr "Fäst mot redjedelar" - -#~ msgid "Snap to beat" -#~ msgstr "Fäst mot slag" - -#~ msgid "Snap to bar" -#~ msgstr "Fäst mot takt" - -#~ msgid "Snap to mark" -#~ msgstr "Fäst mot markörer" - -#~ msgid "Snap to edit cursor" -#~ msgstr "Fäst mot redigeringspunkten" - -#~ msgid "Snap to region start" -#~ msgstr "Fäst mot regionstart" - -#~ msgid "Snap to region end" -#~ msgstr "Fäst mot regionslut" - -#~ msgid "Snap to region boundary" -#~ msgstr "Fäst mot regionsgräns" - -#~ msgid "Show all" -#~ msgstr "Visa allt" - -#~ msgid "Show automatic regions" -#~ msgstr "Visa automatiska regioner" - -#~ msgid "Add External Audio" -#~ msgstr "Lägg till ljudfil" - -#~ msgid "as Tape Tracks" -#~ msgstr "som rullbandsspÃ¥r" - -#~ msgid "to Tracks" -#~ msgstr "till spÃ¥r" - -#~ msgid "Show Waveforms" -#~ msgstr "Visa vÃ¥gformer" - -#~ msgid "Show Waveforms While Recording" -#~ msgstr "Visa vÃ¥gformer vid inspelning" - -#~ msgid "Faster" -#~ msgstr "Snabbare" - -#~ msgid "80 per frame" -#~ msgstr "80 per ruta" - -#~ msgid "100 per frame" -#~ msgstr "100 per ruta" - -#~ msgid "Add existing audio to session" -#~ msgstr "Lägg till ljudfil(er) till sessionen" - -#~ msgid "ardour: importing %1" -#~ msgstr "ardour: importerar %1" - -#~ msgid "insert sndfile" -#~ msgstr "infoga ljudfil" - -#~ msgid "" -#~ "There is no selection to export.\n" -#~ "\n" -#~ "Select a selection using the range mouse mode" -#~ msgstr "" -#~ "Det finns ingen markering att exportera.\n" -#~ "\n" -#~ "Markera en markering i omfÃ¥ngsläget" - -#~ msgid "" -#~ "There are no ranges to export.\n" -#~ "\n" -#~ "Create 1 or more ranges by dragging the mouse in the range bar" -#~ msgstr "" -#~ "TDet finns inga omfÃ¥ng att exportera.\n" -#~ "\n" -#~ "Skapa 1 eller flera omfÃ¥ng genom att dra musen i omfÃ¥ngs-fältet." - -#~ msgid "keyboard selection" -#~ msgstr "tangentbordsmarkering" - -#~ msgid "Hide Mark" -#~ msgstr "Göm markör" - -#~ msgid "ardour: rename mark" -#~ msgstr "ardour: byt namn pÃ¥ markör" - -#~ msgid "ardour: rename range" -#~ msgstr "ardour: byt namn pÃ¥ omfÃ¥ng" - -#~ msgid "move region(s)" -#~ msgstr "flytta region(er)" - -#~ msgid "Drag region brush" -#~ msgstr "Dra regionspensel" - -#~ msgid "selection grab" -#~ msgstr "markeringsgrepp" - -#~ msgid "cancel selection" -#~ msgstr "avbryt markering" - -#~ msgid "trim selection start" -#~ msgstr "beskär markerings början" - -#~ msgid "trim selection end" -#~ msgstr "beskär markerings slut" - -#~ msgid "move selection" -#~ msgstr "flytta markering" - -#~ msgid "select regions" -#~ msgstr "välj regioner" - -#~ msgid "" -#~ " This is destructive, will possibly delete audio files\n" -#~ "It cannot be undone\n" -#~ "Do you really want to destroy %1 ?" -#~ msgstr "" -#~ " Detta är en destruktiv operation, kommer möjligt radera filer\n" -#~ "Detta kan ej Ã¥ngras\n" -#~ "Vill du verkligen radera %1 ?" - -#~ msgid "this region" -#~ msgstr "denna region" - -#~ msgid "Yes, destroy them." -#~ msgstr "Ja, radera dem." - -#~ msgid "select all between cursors" -#~ msgstr "markera allt mellan markörerna" - -#~ msgid "region fill" -#~ msgstr "regionsfyllning" - -#~ msgid "fill selection" -#~ msgstr "fyll markeringen" - -#~ msgid "Place the edit cursor at the desired sync point" -#~ msgstr "Placera redigerinsmarkören pÃ¥ avsedd synk.-punkt" - -#~ msgid "set sync from edit cursor" -#~ msgstr "ställ synk. frÃ¥n redigeringspunkten" - -#~ msgid "remove sync" -#~ msgstr "ta bort synk." - -#~ msgid "naturalize" -#~ msgstr "naturalisera" - -#~ msgid "trim to edit" -#~ msgstr "beskär till redigering" - -#~ msgid "ardour: freeze" -#~ msgstr "ardour: frys" - -#~ msgid "paste chunk" -#~ msgstr "klistra bit" - -#~ msgid "duplicate region" -#~ msgstr "duplicera region" - -#~ msgid "clear playlist" -#~ msgstr "rensa spellista" - -#~ msgid "Clear tempo" -#~ msgstr "Ta bort tempo" - -#~ msgid "Clear meter" -#~ msgstr "Ta bort taktart" - -#~ msgid "Min:Secs" -#~ msgstr "Min:Sek" - -#~ msgid "Name for Chunk:" -#~ msgstr "Namn för bit:" - -#~ msgid "Create Chunk" -#~ msgstr "Skapa bit" - -#~ msgid "Forget it" -#~ msgstr "Glöm det" - -#~ msgid "ardour: timestretch" -#~ msgstr "ardour: tidstänjning" - -#~ msgid "Stretch/Shrink it" -#~ msgstr "Förläng/Förkorta den" - -#~ msgid "TimeStretchProgress" -#~ msgstr "TidsTänjningsFörlopp" - -#~ msgid "best" -#~ msgstr "bäst" - -#~ msgid "intermediate" -#~ msgstr "mellanliggande" - -#~ msgid "Shaped Noise" -#~ msgstr "Format Oväsen" - -#~ msgid "CD Marker File Type" -#~ msgstr "CD-markörsfiltyp" - -#~ msgid "Sample Endianness" -#~ msgstr "Samplings-endian" - -#~ msgid "Conversion Quality" -#~ msgstr "Konverteringskvalitet" - -#~ msgid "Export CD Marker File Only" -#~ msgstr "Exportera endast CD-markörsfil" - -#~ msgid "Specific tracks ..." -#~ msgstr "Enstaka spÃ¥r..." - -#~ msgid "ardour: export" -#~ msgstr "ardour: exportera" - -#~ msgid "Editor: cannot open \"%1\" as export file for CD toc file" -#~ msgstr "Redigerare: kan ej öppna \"%1\" som exportfil för CD-TOC-fil" - -#~ msgid "Editor: cannot open \"%1\" as export file for CD cue file" -#~ msgstr "Redigerare: kan ej öppna \"%1\" som exportfil för CD-CUE-fil" - -#~ msgid "Please enter a valid filename." -#~ msgstr "Var vänlig använd ett giltigt filnamn." - -#~ msgid "Please specify a complete filename for the audio file." -#~ msgstr "Var vänlig skriv in ett fullständigt filnamn för ljudfilen" - -#~ msgid "Cannot write file in: " -#~ msgstr "Kan ej skriva till fil i: " - -#~ msgid "Please enter a valid target directory." -#~ msgstr "Var vänlig välj en giltig mapp." - -#~ msgid "" -#~ "Please select an existing target directory. Files\n" -#~ "are not allowed!" -#~ msgstr "" -#~ "Var vänliga välj en existerande mapp. Filer\n" -#~ "är inte tillÃ¥tna!" - -#~ msgid "add gain automation event" -#~ msgstr "lägg till volymautomatiseringshändelse" - -#~ msgid "cannot find images for fader slider" -#~ msgstr "kan inte hitta bilder för reglage" - -#~ msgid "0.5 seconds" -#~ msgstr "0.5 sekunder" - -#~ msgid "1.5 seconds" -#~ msgstr "1.5 sekunder" - -#~ msgid "2 seconds" -#~ msgstr "2 sekunder" - -#~ msgid "2.5 seconds" -#~ msgstr "2.5 sekunder" - -#~ msgid "3 seconds" -#~ msgstr "3 sekunder" - -#~ msgid "Remove Frame" -#~ msgstr "Ta bort ruta" - -#~ msgid "Image Frame" -#~ msgstr "Bildruta" - -#~ msgid "Add Input" -#~ msgstr "Lägg till ingÃ¥ng" - -#~ msgid "Add Output" -#~ msgstr "Lägg till utgÃ¥ng" - -#~ msgid "Remove Input" -#~ msgstr "Ta bort ingÃ¥ng" - -#~ msgid "Remove Output" -#~ msgstr "Ta bort utgÃ¥ng" - -#~ msgid "Disconnect All" -#~ msgstr "Koppla bort alla" - -#~ msgid "Available connections" -#~ msgstr "Tillgängliga anslutningar" - -#~ msgid "KeyboardTarget: keyname \"%1\" is unknown." -#~ msgstr "KeyboardTarget: tangent \"%1\" är okänd." - -#~ msgid "" -#~ "Your system is completely broken - NumLock uses \"%1\"as its modifier. " -#~ "This is madness - see the man page for xmodmap to find out how to fix " -#~ "this." -#~ msgstr "" -#~ "Ditt system är totalt trasigt - NumLock använder \"%1\" som sin " -#~ "modifikator. Detta är galenskap - se xmodmaps manualsida för att fixa " -#~ "detta." - -#~ msgid "" -#~ "Your system generates \"%1\" when the NumLock key is pressed. This can " -#~ "cause problems when editing so Ardour will use %2 to mean Meta rather " -#~ "than %1" -#~ msgstr "" -#~ "Ditt system genererar \"%1\" när NumLock trycks. Detta kan orsaka problem " -#~ "vid redigering, sÃ¥ Ardour kommer att använda %2 som Meta snarare än %1" - -#~ msgid "You have %1 keys bound to \"mod1\"" -#~ msgstr "Du har %1 tangenter bundna till \"mod1\"" - -#~ msgid "You have %1 keys bound to \"mod2\"" -#~ msgstr "Du har %1 tangenter bundna till \"mod2\"" - -#~ msgid "You have %1 keys bound to \"mod3\"" -#~ msgstr "Du har %1 tangenter bundna till \"mod3\"" - -#~ msgid "You have %1 keys bound to \"mod4\"" -#~ msgstr "Du har %1 tangenter bundna till \"mod4\"" - -#~ msgid "You have %1 keys bound to \"mod5\"" -#~ msgstr "Du har %1 tangenter bundna till \"mod5\"" - -#~ msgid "Add New Location" -#~ msgstr "Lägg till ny Plats" - -#~ msgid "Add New Range" -#~ msgstr "Lägg till nytt OmfÃ¥ng" - -#~ msgid "ardour: locations" -#~ msgstr "ardour: platser" - -#~ msgid "Location (CD Index) Markers" -#~ msgstr "Platsmarkörer (CD-Index)" - -#~ msgid "Range (CD Track) Markers" -#~ msgstr "OmfÃ¥ngsmarkörer (CD-spÃ¥r)" - -#~ msgid "ardour is killing itself for a clean exit\n" -#~ msgstr "ardour dödar sig själv för ett rent avslut\n" - -#~ msgid "stopping user interface\n" -#~ msgstr "stoppar användargränssnittet\n" - -#~ msgid "%d(%d): received signal %d\n" -#~ msgstr "%d(%d): mottog signal %d\n" - -#~ msgid "cannot set default signal mask (%1)" -#~ msgstr "kan inte ställa in standardsignalmask (%1)" - -#~ msgid "" -#~ "Without a UI style file, ardour will look strange.\n" -#~ " Please set ARDOUR2_UI_RC to point to a valid UI style file" -#~ msgstr "" -#~ "Utan en UI-stilfil kommer Ardour att se underligt ut.\n" -#~ " Ställ in ARDOUR2_UI_RC sÃ¥ att det pekar till en giltig UI-stilfil" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "A session named \"%1\" already exists.\n" -#~ "To avoid this message, start ardour as \"ardour %1" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "En session med namnet \"%1\" existerar redan.\n" -#~ "För att undvika detta meddelande, starta Ardour som \"ardour %1" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "No session named \"%1\" exists.\n" -#~ "To create it from the command line, start ardour as \"ardour --new %1" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Ingen session med namnet \"%1\" existerar.\n" -#~ "För att skapa den frÃ¥n kommandoprompten, starta Ardour som följer: " -#~ "\"ardour --new %1" - -#~ msgid " with libardour " -#~ msgstr " med libardour" - -#~ msgid "Could not connect to JACK server as \"%1\"" -#~ msgstr "Kunde inte ansluta till JACK-servern som \"%1\"" - -#~ msgid "ardour: meter bridge" -#~ msgstr "ardour: taktartsbrygga" - -#~ msgid "# of %u-sample overs" -#~ msgstr "# %u-samplings-över" - -#~ msgid "New Name for Meter:" -#~ msgstr "Nytt namn för taktart" - -#~ msgid "input" -#~ msgstr "in" - -#~ msgid "Varispeed" -#~ msgstr "variabel hastighet" - -#~ msgid "unknown strip width \"%1\" in XML GUI information" -#~ msgstr "okänd strip-bredd \"%1\" i XML-GUI-informationen" - -#~ msgid "record" -#~ msgstr "Spela in" - -#~ msgid "comments" -#~ msgstr "kommentarer" - -#~ msgid "*comments*" -#~ msgstr "*kommentarer*" - -#~ msgid "could not register new ports required for that connection" -#~ msgstr "kunde inte registrera nya porter nödvändiga för anslutningen" - -#~ msgid " Input" -#~ msgstr " IngÃ¥ng" - -#~ msgid "Invert Polarity" -#~ msgstr "Invertera polaritet" - -#~ msgid "Name :" -#~ msgstr "Namn:" - -#~ msgid "Create Folder In :" -#~ msgstr "Skapa i:" - -#~ msgid "Template :" -#~ msgstr "Använd mall:" - -#~ msgid "Automatically Connect Inputs" -#~ msgstr "Anslut automatiskt ingÃ¥ngar" - -#~ msgid "... to Master Bus" -#~ msgstr "... till Master-bussen" - -#~ msgid "... to Physical Outputs" -#~ msgstr "... till fysiska utgÃ¥ngar" - -#~ msgid "Port Limit" -#~ msgstr "Portgräns" - -#~ msgid "Track/Bus Inputs" -#~ msgstr "SpÃ¥r/bussingÃ¥ngar" - -#~ msgid "Automatically Connect Outputs" -#~ msgstr "Anslut automatiskt utgÃ¥ngar..." - -#~ msgid "Connect to Master Bus" -#~ msgstr "Anslut till master-bussen" - -#~ msgid "Automatically Connect to Physical Inputs" -#~ msgstr "Anslut automatiskt till fysiska utgÃ¥ngar" - -#~ msgid "Track/Bus Outputs" -#~ msgstr "SpÃ¥r/bussutgÃ¥ngar" - -#~ msgid "Recent:" -#~ msgstr "Tidigare:" - -#~ msgid "ardour: session control" -#~ msgstr "ardour: session" - -#~ msgid "Session Control" -#~ msgstr "Session" - -#~ msgid "select template" -#~ msgstr "välj mall" - -#~ msgid "select session file" -#~ msgstr "välj sessionsfil" - -#~ msgid "select directory" -#~ msgstr "välj mapp" - -#~ msgid "SMPTE offset is negative" -#~ msgstr "SMPTE-förskjutning är negativ" - -#~ msgid "ardour: options editor" -#~ msgstr "ardour: inställningar" - -#~ msgid "Paths/Files" -#~ msgstr "Sökvägar/filer" - -#~ msgid "Kbd/Mouse" -#~ msgstr "Tangentbord/mus" - -#~ msgid "Layers & Fades" -#~ msgstr "Lager & Toningar" - -#~ msgid "30 FPS drop" -#~ msgstr "30 FPS-drop" - -#~ msgid "session RAID path" -#~ msgstr "Sessionens RAID-sökväg" - -#~ msgid "Soundfile Search Paths" -#~ msgstr "Sökvägar för ljudfiler" - -#~ msgid "Short crossfade length (msecs)" -#~ msgstr "Kort övertonings längd (msek)" - -#~ msgid "Destructive crossfade length (msecs)" -#~ msgstr "Destruktiv övertonings längd (msek)" - -#~ msgid "SMPTE Frames/second" -#~ msgstr "SMPTE-Frames/sekund" - -#~ msgid "SMPTE Offset" -#~ msgstr "SMPTE-förskjutning" - -#~ msgid "online" -#~ msgstr "ansluten" - -#~ msgid "offline" -#~ msgstr "frÃ¥nkopplad" - -#~ msgid "Click emphasis audiofile" -#~ msgstr "Betoningsljudfil" - -#~ msgid "" -#~ "The auditioner is a dedicated mixer strip used\n" -#~ "for listening to specific regions outside the context\n" -#~ "of the overall mix. It can be connected just like any\n" -#~ "other mixer strip." -#~ msgstr "" -#~ "Avlyssnaren är en dedikerad mixerremsa som används\n" -#~ "för att lyssna pÃ¥ specifika regioner utanför den\n" -#~ "generalla mixen. Den kan anslutas precis som vilken\n" -#~ "annan mixerremsa." - -#~ msgid "Edit using" -#~ msgstr "Redigera med" - -#~ msgid " -g, --gtktheme Allow GTK to load a theme\n" -#~ msgstr " -g, --gtktheme TillÃ¥t GTK att ladda ett tema\n" - -#~ msgid "You can't graphically edit panning of more than stream" -#~ msgstr "Du kan inte grafiskt redigera panorering för mer en än en ström" - -#~ msgid "add pan automation event" -#~ msgstr "lägg till panoreringsautomatiseringshändelse" - -#~ msgid "link" -#~ msgstr "länka" - -#~ msgid "panning link control" -#~ msgstr "kontroll för panoreringslänkning" - -#~ msgid "panning link direction" -#~ msgstr "riktning för panoreringslänkning" - -#~ msgid "panner for channel %lu" -#~ msgstr "panorerare för kanal %lu" - -#~ msgid "ardour: playlists" -#~ msgstr "ardour: spellistor" - -#~ msgid "ardour: playlist for " -#~ msgstr "ardour: spellista för " - -#~ msgid "ardour: plugins" -#~ msgstr "ardour: insticksprogram" - -#~ msgid "Available LADSPA Plugins" -#~ msgstr "Tillgängliga LADSPA-insticksprogram" - -#~ msgid "# Inputs" -#~ msgstr "# IngÃ¥ngar" - -#~ msgid "# Outputs" -#~ msgstr "# UtgÃ¥ngar" - -#~ msgid "Plugins to be Connected to Insert" -#~ msgstr "Insticksprogram att anslutas till Anslutningspunkt" - -#~ msgid "Available plugins" -#~ msgstr "Tillgänliga insticksprogram" - -#~ msgid "Name of New Preset:" -#~ msgstr "Namn för insticksprogramsinställningar:" - -#~ msgid "redirect automation created for non-plugin" -#~ msgstr "omdirigera automatisering skapa för icke-insticksprogram" - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "The plugin has %2 inputs\n" -#~ "but at the insertion point, there are\n" -#~ "%3 active signal streams.\n" -#~ "\n" -#~ "This makes no sense - you are throwing away\n" -#~ "part of the signal." -#~ msgstr "" -#~ "Du försökte lägga till ett insticksprogram (%1).\n" -#~ "Det har %2 ingÃ¥ngar\n" -#~ "men vid punkten det infogades finns bara\n" -#~ "%3 aktiva signalströmmar.\n" -#~ "\n" -#~ "Detta är orimligt - du slänger bort\n" -#~ "en del av signalen." - -#~ msgid "ardour: weird plugin dialog" -#~ msgstr "ardour: underlig plugin" - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "The plugin has %2 inputs\n" -#~ "but at the insertion point there are\n" -#~ "only %3 active signal streams.\n" -#~ "\n" -#~ "This makes no sense - unless the plugin supports\n" -#~ "side-chain inputs. A future version of Ardour will\n" -#~ "support this type of configuration." -#~ msgstr "" -#~ "Du försökte lägga till ett insticksprogram (%1).\n" -#~ "Det har %2 ingÃ¥ngar\n" -#~ "men vid punkten det infogades finns bara\n" -#~ "%3 aktiva signalströmmar.\n" -#~ "\n" -#~ "Detta är orimligt - förutom om insticksprogrammet\n" -#~ "stödjer sidokedjeingÃ¥ngar. Framtida versioner av\n" -#~ "Ardour kommer att stödja detta." - -#~ msgid "" -#~ "You attempted to add a plugin (%1).\n" -#~ "\n" -#~ "The I/O configuration doesn't make sense:\n" -#~ "\n" -#~ "The plugin has %2 inputs and %3 outputs.\n" -#~ "The track/bus has %4 inputs and %5 outputs.\n" -#~ "The insertion point, has %6 active signals.\n" -#~ "\n" -#~ "Ardour does not understand what to do in such situations.\n" -#~ msgstr "" -#~ "Du försökte lägga till ett insticksprogram (%1).\n" -#~ "\n" -#~ "In/Ut-konfigurationen är orimlig:\n" -#~ "\n" -#~ "Insticksprogrammet har %2 ingÃ¥ngar och %3 ut.\n" -#~ "SpÃ¥ret/bussen har %4 ingÃ¥ngar och %5 ut.\n" -#~ "Infogningspunkten har %6 aktiva signaler.\n" -#~ "\n" -#~ "Ardour förstÃ¥r inte vad det ska göra i sÃ¥dana situationer.\n" - -#~ msgid "Pre-fader inserts, sends & plugins:" -#~ msgstr "För-nivÃ¥reglage-anslutningspunkter, sändningar & insticksprogram:" - -#~ msgid "Post-fader inserts, sends & plugins:" -#~ msgstr "Efter-nivÃ¥reglage-anslutningspunkter, sändningar & insticksprogram:" - -#~ msgid "rename redirect" -#~ msgstr "döp om omdirigering" - -#~ msgid "" -#~ "Do you really want to remove all redirects from this track?\n" -#~ "(this cannot be undone)" -#~ msgstr "" -#~ "Vill du verkligen radera alla omdirigeringar frÃ¥n detta spÃ¥ret?\n" -#~ "(detta kan inte Ã¥ngras)" - -#~ msgid "New Plugin ..." -#~ msgstr "Nytt Insticksprogram..." - -#~ msgid "NAME:" -#~ msgstr "NAMN:" - -#~ msgid "opaque" -#~ msgstr "ogenomskinlig" - -#~ msgid "show" -#~ msgstr "visa" - -#~ msgid "Layer" -#~ msgstr "Lager" - -#~ msgid "play" -#~ msgstr "spela" - -#~ msgid "ENVELOPE" -#~ msgstr "KONVOLUT" - -#~ msgid "regions underneath this one cannot be heard" -#~ msgstr "regoner under denna kan inte höras" - -#~ msgid "prevent any changes to this region" -#~ msgstr "förhindra ändringar för denna region" - -#~ msgid "use the gain envelope during playback" -#~ msgstr "använd volymkonvolutet under uppspelning" - -#~ msgid "show the gain envelope" -#~ msgstr "visa volymkonvolutet" - -#~ msgid "use fade in curve during playback" -#~ msgstr "använd intoningskurvan under uppspelning" - -#~ msgid "use fade out curve during playback" -#~ msgstr "använd uttoningskurvan under uppspelning" - -#~ msgid "END:" -#~ msgstr "SLUT:" - -#~ msgid "LENGTH:" -#~ msgstr "LÄNGD:" - -#~ msgid "FADE IN" -#~ msgstr "TONA IN" - -#~ msgid "FADE OUT" -#~ msgstr "TONA UT" - -#~ msgid "Pre-fader Redirects" -#~ msgstr "För-omdirigeringar" - -#~ msgid "Post-fader Redirects" -#~ msgstr "Efter-omdirigeringar" - -#~ msgid "ardour: track/bus inspector" -#~ msgstr "ardour: spÃ¥r/buss-inspektör" - -#~ msgid "ardour: track/bus/inspector: no route selected" -#~ msgstr "ardour: spÃ¥r/buss-inspektör: ingen rutt vald" - -#~ msgid "solo change" -#~ msgstr "ändra solo" - -#~ msgid "mix group solo change" -#~ msgstr "mixgrupp-solo-ändring" - -#~ msgid "mix group mute change" -#~ msgstr "mixgrupp-tystnings-ändring" - -#~ msgid "mix group rec-enable change" -#~ msgstr "mixgrupp-inspelningsmöjliggörning-ändring" - -#~ msgid "ardour: color selection" -#~ msgstr "ardour: färgval" - -#~ msgid "New Name: " -#~ msgstr "Nytt namn: " - -#~ msgid "Add Field..." -#~ msgstr "Lägg till fält..." - -#~ msgid "Soundfile Info" -#~ msgstr "Ljudfilsinformation" - -#~ msgid "samplerate" -#~ msgstr "samplingsfrekvens" - -#~ msgid "resolution" -#~ msgstr "upplösning" - -#~ msgid "Name for Field" -#~ msgstr "Ange namn för fält" - -#~ msgid "Split Channels" -#~ msgstr "Dela kanaler" - -#~ msgid "Embed" -#~ msgstr "Infoga" - -#~ msgid "Link to an external file" -#~ msgstr "Länka till en extern fil" - -#~ msgid "Beats per minute" -#~ msgstr "Slag per minut" - -#~ msgid "Bar" -#~ msgstr "Takt" - -#~ msgid "Beat" -#~ msgstr "Slag" - -#~ msgid "Meter denominator" -#~ msgstr "Taktartsnämnare" - -#~ msgid "Beats per bar" -#~ msgstr "Slag per takt" - -#~ msgid "Add to Region list" -#~ msgstr "Lägg till i regionlistan" - -#~ msgid "Add as new Track(s)" -#~ msgstr "Lägg till som nytt/nya spÃ¥r" - -#~ msgid "Add as new Tape Track(s)" -#~ msgstr "Lägg till som Band-spÃ¥r" - -#~ msgid "Tags" -#~ msgstr "Taggar" - -#~ msgid "Channels: n/a" -#~ msgstr "Kanaler: n/a" - -#~ msgid "Samplerate: n/a" -#~ msgstr "Samplefrekvens: n/a" - -#~ msgid "Timecode: n/a" -#~ msgstr "Tidskod: n/a" - -#~ msgid "Length: %1" -#~ msgstr "Längd: %1" - -#~ msgid "Samplerate: %1" -#~ msgstr "Samplingsfrekvens: %1" - -#~ msgid "Timecode: %1" -#~ msgstr "Tidskod: %1" - -#~ msgid "Apply" -#~ msgstr "Verkställ" - -#~ msgid "comma seperated tags" -#~ msgstr "komma-separerade taggar" - -#~ msgid "stop" -#~ msgstr "stopp" - -#~ msgid "Logarithmic" -#~ msgstr "Logaritmisk" - -#~ msgid "Use DC bias" -#~ msgstr "Använd DC-bias" - -#~ msgid "No processor handling" -#~ msgstr "Ingen processorhantering" - -#~ msgid "Use FlushToZero" -#~ msgstr "Använd FlushToZero" - -#~ msgid "Use DenormalsAreZero" -#~ msgstr "Använd DenormalsAreZero" - -#~ msgid "Use FlushToZero & DenormalsAreZero" -#~ msgstr "Använd FlushToZero och DenormalsAreZero" - -#~ msgid "add midi controller automation event" -#~ msgstr "lägg till automatiseringshändelse för midi-kontroller" - -#~ msgid "A/B All Plugins" -#~ msgstr "A/B:a alla insticksprogram" - -#~ msgid "Driver" -#~ msgstr "Drivrutin" - -#~ msgid "Number of buffers" -#~ msgstr "Antal buffertar" - -#~ msgid "Approximate latency" -#~ msgstr "Ungefärlig fördröjning" - -#~ msgid "Audio Mode" -#~ msgstr "Audio-läge" - -#~ msgid "Number of ports" -#~ msgstr "Antal portar" - -#~ msgid "Input device" -#~ msgstr "Inljudsenhet" - -#~ msgid "Output device" -#~ msgstr "Utljudsenhet" - -#~ msgid "Input channels" -#~ msgstr "IngÃ¥ngar" - -#~ msgid "Output channels" -#~ msgstr "UtgÃ¥ngar" - -#~ msgid "Hardware input latency (samples)" -#~ msgstr "HÃ¥rdvarans ingÃ¥ngsfördröjning (smpl)" - -#~ msgid "Hardware output latency (samples)" -#~ msgstr "HÃ¥rdvarans utgÃ¥ngsfördröjning (smpl)" - -#~ msgid "to Next Region Sync" -#~ msgstr "till nästa regions synk.-punkt" - -#~ msgid "to Previous Region Start" -#~ msgstr "Till föregÃ¥ende regionens början" - -#~ msgid "Set Edit Point" -#~ msgstr "Markera redigeringspunkten" - -#~ msgid "Change edit point" -#~ msgstr "Ändra redigeringspunkten" - -#~ msgid "Select Range Between Playhead & Edit Point" -#~ msgstr "Markera omfÃ¥ng mellan startmarkör & redigeringspunkten" - -# msgid "Select All After Playhead" -# msgstr "Markera allt efter startmarkören" -# msgid "Select All Before Playhead" -# msgstr "Markera allt efter startmarkören" -#~ msgid "Select All Between Playhead & Edit Point" -#~ msgstr "Markera allt mellan startmarkör & redigeringspunkten" - -#~ msgid "Select All Within Playhead & Edit Point" -#~ msgstr "Markera allt inom startmarkör & redigeringspunkten" - -# msgid "Select Range Between Playhead & Edit Point" -# msgstr "Markera omfÃ¥ng mellan startmarkör & redigeringspunkten" -#~ msgid "Multi-Duplicate Region" -#~ msgstr "Multiduplicera region" - -#~ msgid "Normalize Region" -#~ msgstr "Normalisera region" - -#~ msgid "Trim front at edit point" -#~ msgstr "Beskär början vid redingeringspunkt" - -#~ msgid "Trim back at edit point" -#~ msgstr "Beskär slutet vid redingerspunkt" - -#~ msgid "Start to edit point" -#~ msgstr "Början till redigeringspunkten" - -#~ msgid "Edit point to end" -#~ msgstr "Redigeringspunkt till slutet" - -#~ msgid "Trim To Loop" -#~ msgstr "Beskär till loop" - -#~ msgid "Trim To Punch" -#~ msgstr "Beskär till in-/utslag" - -#~ msgid "Sync Editor and Mixer track order" -#~ msgstr "Matcha Redigerare och Mixers spÃ¥rordning" - -#~ msgid "Keybindings" -#~ msgstr "Kortkommandon" - -#~ msgid "Keybinding Editor" -#~ msgstr "Kortkommandon" - -#~ msgid "Binding" -#~ msgstr "Bindning" - -#~ msgid "Primary Clock delta to edit point" -#~ msgstr "Primär klock-delta till redigeringspunkten" - -#~ msgid "Secondary Clock delta to edit point" -#~ msgstr "Sekundär klock-delta till redigeringspunkta" - -#~ msgid "Enable Editor Meters" -#~ msgstr "Sätt pÃ¥ nivÃ¥mätare i redigeraren" - -#~ msgid "Timecode source is sample-clock synced" -#~ msgstr "Tidskodens källa är samplingsklocka-synkad" - -#~ msgid "Save undo history" -#~ msgstr "Spara Ã¥ngrahistorik" - -#~ msgid "History depth (commands)" -#~ msgstr "Historikdjup (kommandon)" - -#~ msgid "Saved history depth (commands)" -#~ msgstr "Sparad historiks djup (kommando)" - -#~ msgid "Audio Setup" -#~ msgstr "Ljudinställningar" - -#~ msgid "Nudge track after edit point fwd" -#~ msgstr "Knuffa spÃ¥ret framÃ¥t efter redigeringspunkten" - -#~ msgid "Nudge track after edit point bwd" -#~ msgstr "Knuffa spÃ¥ret bakÃ¥t efter redigeringspunkten" - -#~ msgid "to Center" -#~ msgstr "Startmarkören till mitten" - -#~ msgid "to Edit" -#~ msgstr "Startmarkören till redigeringspunkten" - -#~ msgid "Trim start at edit point" -#~ msgstr "Beskär början vid redigeringspunkten" - -#~ msgid "Trim end at edit point" -#~ msgstr "Beskär slutet vid redigeringspunkten" - -#~ msgid "Locate to Mark 1" -#~ msgstr "Hoppa till markör 1" - -#~ msgid "Locate to Mark 2" -#~ msgstr "Hoppa till markör 2" - -#~ msgid "Locate to Mark 3" -#~ msgstr "Hoppa till markör 3" - -#~ msgid "Locate to Mark 4" -#~ msgstr "Hoppa till markör 4" - -#~ msgid "Locate to Mark 5" -#~ msgstr "Hoppa till markör 5" - -#~ msgid "Locate to Mark 6" -#~ msgstr "Hoppa till markör 6" - -#~ msgid "Locate to Mark 7" -#~ msgstr "Hoppa till markör 7" - -#~ msgid "Locate to Mark 8" -#~ msgstr "Hoppa till markör 8" - -#~ msgid "Locate to Mark 9" -#~ msgstr "Hoppa till markör 9" - -#~ msgid "Play from edit point" -#~ msgstr "Spela frÃ¥n redigeringspunkten" - -#~ msgid "Link Region/Track Selection" -#~ msgstr "LÃ¥s region/spÃ¥r-markeringen" - -#~ msgid "Insert:" -#~ msgstr "Infoga:" - -#~ msgid "Conversion Quality:" -#~ msgstr "Konverteringskvalitet:" - -#~ msgid "use file timestamp" -#~ msgstr "använd timestamp i filen" - -#~ msgid "at edit point" -#~ msgstr "vid redigeringspunkten" - -#~ msgid "at playhead" -#~ msgstr "vid startmarkören" - -#~ msgid "Play (double click)" -#~ msgstr "Spela (dblklicka)" - -#~ msgid "Shortcut Editor" -#~ msgstr "Kortkommandon" - -#~ msgid "Set Loop From Edit Range" -#~ msgstr "Sätt loop frÃ¥n redigeringsomfÃ¥ng" - -#~ msgid "Set Loop From Region" -#~ msgstr "Sätt loop frÃ¥n region" - -#~ msgid "Set Punch From Edit Range" -#~ msgstr "Sätt inslag frÃ¥n redigeringsomfÃ¥ng" - -#~ msgid "Set Punch From Region" -#~ msgstr "Sätt inslag frÃ¥n region" - -#~ msgid "to Playhead" -#~ msgstr "till startmarkören" - -#~ msgid "Change edit point (w/Marker)" -#~ msgstr "Ändra redigeringspunkten (med platsmarkör)" - -#~ msgid "Toggle Fade In Active" -#~ msgstr "Intoning av/pÃ¥" - -#~ msgid "Toggle Fade Out Active" -#~ msgstr "Uttoning av/pÃ¥" - -#~ msgid "Select Next Track/Bus" -#~ msgstr "Välj nästa spÃ¥r/buss" - -#~ msgid "Select Previous Track/Bus" -#~ msgstr "Välj tidigare spÃ¥r/buss" - -#~ msgid "Semitones (12TET)" -#~ msgstr "Halvtoner (12TET)" - -#~ msgid "Clock" -#~ msgstr "Klocka" - -#~ msgid "Playhead To Active Mark" -#~ msgstr "Startmarkören till aktiv markör" - -#~ msgid "Forward To Grid" -#~ msgstr "FramÃ¥t till rutnät" - -#~ msgid "Backward To Grid" -#~ msgstr "BakÃ¥t till rutnät" - -#~ msgid "to Next Region Boundary" -#~ msgstr "till nästa regionsgränsen" - -#~ msgid "to Previous Region Boundary" -#~ msgstr "till föregÃ¥ende regionsgränsen" - -#~ msgid "Active Mark To Playhead" -#~ msgstr "Aktiv markör till startmarkören" - -#~ msgid "Split Regions At Percussion Onsets" -#~ msgstr "Dela regioner vid perkussiva anslag" - -#~ msgid "Trim Start At Edit Point" -#~ msgstr "Beskär början vid redigeringspunkten" - -#~ msgid "Trim End At Edit Point" -#~ msgstr "Beskär slutet vid redigeringspunkten" - -#~ msgid "Cut Region Gain" -#~ msgstr "Sänk regionens volym" - -#~ msgid "Break drag" -#~ msgstr "Avbryt dragning" - -#~ msgid "Lock Region" -#~ msgstr "LÃ¥s region" - -#~ msgid "Remove Region Sync" -#~ msgstr "Ta bort regionsynk.-punkt" - -#~ msgid "Waveforms" -#~ msgstr "VÃ¥gformer" - -#~ msgid "Analysis" -#~ msgstr "Analys" - -#~ msgid "Trigger gap (msecs)" -#~ msgstr "Utlösningsmellanrum (msek)" - -#~ msgid "Set Tempo Map" -#~ msgstr "Sätt tempokarta" - -#~ msgid "Conform Region" -#~ msgstr "Anpassa region" - -#~ msgid "Set Tempo from Region=Bar" -#~ msgstr "Sätt tempo frÃ¥n region=takt" - -#~ msgid "JACK does monitoring" -#~ msgstr "JACK sköter medhörning" - -#~ msgid "Ardour does monitoring" -#~ msgstr "Ardour sköter medhörning" - -#~ msgid "Audio Hardware does monitoring" -#~ msgstr "LjudhÃ¥rdvaran sköter medhörning" - -#~ msgid "Tape Machine mode" -#~ msgstr "Bandmaskinläge" - -#~ msgid "Create marker at xrun location" -#~ msgstr "Skapa markör vid xrun-förekomst" - -#~ msgid "Rubberbanding Snaps to Grid" -#~ msgstr "Gummibandning fäster mot rutnätet" - -#~ msgid "Auto-analyse new audio" -#~ msgstr "Autoanalysera nya ljud" - -#~ msgid "Import to Region List" -#~ msgstr "Importera till regionslistan" - -#~ msgid "Protect against denormals" -#~ msgstr "Skydda mot denormals" - -#~ msgid "Keyboard layout" -#~ msgstr "Tangentbordslayout" - -#~ msgid "Font Scaling" -#~ msgstr "Typsnittsskalning" - -#~ msgid "Glue to Bars&Beats" -#~ msgstr "Klistra mot takt&slag" - -#~ msgid "Toggle Opaque" -#~ msgstr "Växla genomskinligt" - -#~ msgid "Zoom to Region (W&H)" -#~ msgstr "Zooma till region (bredd & höjd)" - -#~ msgid "Save View 1" -#~ msgstr "Spara läge 1" - -#~ msgid "Goto View 1" -#~ msgstr "Använd läge 1" - -#~ msgid "Save View 2" -#~ msgstr "Spara läge 2" - -#~ msgid "Goto View 2" -#~ msgstr "Använd läge 2 " - -#~ msgid "Save View 3" -#~ msgstr "Spara läge 3" - -#~ msgid "Goto View 3" -#~ msgstr "Använd läge 3" - -#~ msgid "Save View 4" -#~ msgstr "Spara läge 4" - -#~ msgid "Goto View 4" -#~ msgstr "Använd läge 4" - -#~ msgid "Save View 5" -#~ msgstr "Spara läge 5" - -#~ msgid "Goto View 5" -#~ msgstr "Använd läge 5" - -#~ msgid "Save View 6" -#~ msgstr "Spara läge 6" - -#~ msgid "Goto View 6" -#~ msgstr "Använd läge 6" - -#~ msgid "Save View 7" -#~ msgstr "Spara läge 7" - -#~ msgid "Goto View 7" -#~ msgstr "Använd läge 7" - -#~ msgid "Save View 8" -#~ msgstr "Spara läge 8" - -#~ msgid "Goto View 8" -#~ msgstr "Använd läge 8" - -#~ msgid "Save View 9" -#~ msgstr "Spara läge 9" - -#~ msgid "Goto View 9" -#~ msgstr "Använd läge 9" - -#~ msgid "Save View 10" -#~ msgstr "Spara läge 10" - -#~ msgid "Goto View 10" -#~ msgstr "Använd läge 10" - -#~ msgid "Save View 11" -#~ msgstr "Spara läge 11" - -#~ msgid "Goto View 11" -#~ msgstr "Använd läge 11" - -#~ msgid "Save View 12" -#~ msgstr "Spara läge 12" - -#~ msgid "Goto View 12" -#~ msgstr "Använd läge 12" - -#~ msgid "Name New Markers" -#~ msgstr "Namnge nya markörer" - -#~ msgid "Name New Location Marker" -#~ msgstr "Namnge ny platsmarkör" - -#~ msgid "Show Region Fades" -#~ msgstr "Visa regiontoningar" - -#~ msgid "Toggle Region Fade In" -#~ msgstr "Växla regionintoning" - -#~ msgid "Toggle Region Fade Out" -#~ msgstr "Växla regionuttoning" - -#~ msgid "Toggle Region Fades" -#~ msgstr "Växla regiontoningar" - -#~ msgid "Import/Export" -#~ msgstr "Importera/Expoertera" - -#~ msgid "Use Region Fades (global)" -#~ msgstr "Använd regiontoningar (globalt)" - -#~ msgid "Using this template:" -#~ msgstr "Med denna spÃ¥rmall:" - -#~ msgid "Add this many:" -#~ msgstr "Lägg till:" - -#~ msgid "OR" -#~ msgstr "ELLER" - -#~ msgid "New plugins are active" -#~ msgstr "Nya insticksprogram är aktiverade" - -#~ msgid "Auto Rebind Controls" -#~ msgstr "Ã…terkoppla kontroller automatiskt" - -#~ msgid "Override muting" -#~ msgstr "Ã…sidosätt tystning " - -#~ msgid "Add Single Range" -#~ msgstr "Lägg till enskilt omfÃ¥ng" - -#~ msgid "Click to choose outputs" -#~ msgstr "Klicka för att välja utgÃ¥ngar" - -#~ msgid "Playhead to Previous Region Boundary (No Track Selection" -#~ msgstr "Startmarkören till föregÃ¥ende regiongräns (ingen spÃ¥rmarkering)" - -#~ msgid "Editing Modes" -#~ msgstr "Redigeringslägen" - -#~ msgid "Next Edit Mode" -#~ msgstr "Nästa redigeringsläge" - -#~ msgid "Next Mouse Mode" -#~ msgstr "Nästa musläge" - -#~ msgid "Insert Region from List" -#~ msgstr "Infoga region frÃ¥n lista" - -#~ msgid "Set Selected Tracks to Linear Waveforms" -#~ msgstr "Valda spÃ¥r till linjär vÃ¥gform" - -#~ msgid "Show Waveforms Rectified" -#~ msgstr "Visa korrigerade vÃ¥gformer" - -#~ msgid "Do Not Run Plugins while Recording" -#~ msgstr "Använd ej insticksprogram under inspelning" - -#~ msgid "Use Region Fades" -#~ msgstr "Använd regiontoningar" - -#~ msgid "Seamless Looping" -#~ msgstr "Loopa sömlöst" - -#~ msgid "Sync Point:" -#~ msgstr "Synk.-punkt:" - -#~ msgid "Scale amplitude:" -#~ msgstr "Skala amplitud:" - -#~ msgid "Note Value:" -#~ msgstr "Notvärde" - -#~ msgid "Beats Per Bar:" -#~ msgstr "Slag per takt:" - -#~ msgid "Beats Per Minute:" -#~ msgstr "Slag per minut:" - -#~ msgid "Export selected range to audiofile..." -#~ msgstr "Exportera valt omfÃ¥ng till en ljudfil..." - -#~ msgid "Export selected regions to audiofile..." -#~ msgstr "Exportera valda regioner till en ljudfil..." - -#~ msgid "Export range markers to multiple audiofiles..." -#~ msgstr "Exportera valda omfÃ¥ngsmarkörer till ljudfiler..." - -#~ msgid "Export to Directory" -#~ msgstr "Exportera till mapp" - -#~ msgid "ardour: export ranges" -#~ msgstr "ardour: exportera omfÃ¥ng" - -#~ msgid "panner for channel %zu" -#~ msgstr "panorering för kanal %zu" - -#~ msgid "Save Mix Template" -#~ msgstr "Spara mixmall" - -#~ msgid "Audio Regions" -#~ msgstr "Ljudregioner" - -#~ msgid "Audio Playlists" -#~ msgstr "Spellistor" - -#~ msgid "Tempo Map" -#~ msgstr "Tempokarta" - -#~ msgid "" -#~ "The location is the Punch range. It will be imported as a normal range.\n" -#~ "You may rename the imported location:" -#~ msgstr "" -#~ "Platsen är inslagsomfÃ¥nget. Den kommer att importeras som ett normalt " -#~ "omfÃ¥ng.\n" -#~ "Du kan byta namn pÃ¥ den importerade platsen:" - -#~ msgid "" -#~ "The location is a Loop range. It will be imported as a normal range.\n" -#~ "You may rename the imported location:" -#~ msgstr "" -#~ "Platsen är loopomfÃ¥nget. Den kommer att importeras som ett normalt " -#~ "omfÃ¥ng.\n" -#~ "Du kan byta namn pÃ¥ den importerade platsen:" - -#~ msgid "" -#~ "This will replace the current tempo map!\n" -#~ "Are you shure you want to do this?" -#~ msgstr "" -#~ "Detta ersätter den nuvarande tempokartan!\n" -#~ "Är du säker att du vill göra detta?" - -#~ msgid "Bus type:" -#~ msgstr "Busstyp:" - -#~ msgid "Aux" -#~ msgstr "Auxilliär" - -#~ msgid "Direct" -#~ msgstr "Direkt" - -#~ msgid "No format selected!" -#~ msgstr "Inget format valt!" diff --git a/gtk2_ardour/po/zh.po b/gtk2_ardour/po/zh.po index f03eaf1506..761312995a 100644 --- a/gtk2_ardour/po/zh.po +++ b/gtk2_ardour/po/zh.po @@ -57,11 +57,6 @@ msgstr "" msgid "Jesse Chappell" msgstr "" -#: about.cc:131 -#, fuzzy -msgid "Thomas Charbonnel" -msgstr "三声é“" - #: about.cc:132 msgid "Sam Chessman" msgstr "" @@ -218,16 +213,6 @@ msgstr "" msgid "Lincoln Spiteri" msgstr "" -#: about.cc:171 -#, fuzzy -msgid "Mike Start" -msgstr "开始" - -#: about.cc:172 -#, fuzzy -msgid "Mark Stewart" -msgstr "标记" - #: about.cc:173 msgid "Roland Stigge" msgstr "" @@ -389,26 +374,6 @@ msgstr "音轨模å¼:" msgid "Instrument:" msgstr "" -#: add_route_dialog.cc:76 -#, fuzzy -msgid "Audio Tracks" -msgstr "添加音频音轨" - -#: add_route_dialog.cc:77 -#, fuzzy -msgid "MIDI Tracks" -msgstr "MIDI示踪" - -#: add_route_dialog.cc:78 -#, fuzzy -msgid "Audio+MIDI Tracks" -msgstr "添加MIDI音轨" - -#: add_route_dialog.cc:79 -#, fuzzy -msgid "Busses" -msgstr "总线" - #: add_route_dialog.cc:101 msgid "Add:" msgstr "添加:" @@ -446,11 +411,6 @@ msgstr "音频" msgid "MIDI" msgstr "MIDI" -#: add_route_dialog.cc:217 add_route_dialog.cc:230 add_route_dialog.cc:300 -#, fuzzy -msgid "Audio+MIDI" -msgstr "音频" - #: add_route_dialog.cc:218 add_route_dialog.cc:233 add_route_dialog.cc:301 msgid "Bus" msgstr "总线" @@ -529,15 +489,6 @@ msgstr "" msgid "Ambiguous File" msgstr "模糊的文件" -#: ambiguous_file_dialog.cc:35 -#, fuzzy -msgid "" -"%1 has found the file %2 in the following places:\n" -"\n" -msgstr "" -"Ardour å·²ç»åœ¨ä¸‹åˆ—地方找到文件%1:\n" -"\n" - #: ambiguous_file_dialog.cc:44 msgid "" "\n" @@ -610,20 +561,10 @@ msgstr "釿–°åˆ†æžæ•°æ®" msgid "button cannot watch state of non-existing Controllable\n" msgstr "" -#: ardour_ui.cc:180 -#, fuzzy -msgid "audition" -msgstr "监å¬" - #: ardour_ui.cc:181 msgid "solo" msgstr "" -#: ardour_ui.cc:182 -#, fuzzy -msgid "feedback" -msgstr "å馈" - #: ardour_ui.cc:187 speaker_dialog.cc:36 msgid "Speaker Configuration" msgstr "扬声器é…ç½®" @@ -640,11 +581,6 @@ msgstr "按键绑定" msgid "Preferences" msgstr "首选项" -#: ardour_ui.cc:191 ardour_ui.cc:196 -#, fuzzy -msgid "Add Tracks/Busses" -msgstr "音轨/总线" - #: ardour_ui.cc:192 msgid "About" msgstr "关于" @@ -669,16 +605,6 @@ msgstr "æ†ç»‘管ç†" msgid "Big Clock" msgstr "大时钟" -#: ardour_ui.cc:199 -#, fuzzy -msgid "Audio Connections" -msgstr "音频连结管ç†" - -#: ardour_ui.cc:200 -#, fuzzy -msgid "MIDI Connections" -msgstr "MIDI连接管ç†" - #: ardour_ui.cc:202 msgid "Errors" msgstr "错误" @@ -691,20 +617,6 @@ msgstr "å¯åŠ¨éŸ³é¢‘å¼•æ“Ž" msgid "%1 is ready for use" msgstr "%1 准备就绪" -#: ardour_ui.cc:806 -#, fuzzy -msgid "" -"WARNING: Your system has a limit for maximum amount of locked memory. This " -"might cause %1 to run out of memory before your system runs out of memory. \n" -"\n" -"You can view the memory limit with 'ulimit -l', and it is normally " -"controlled by %2" -msgstr "" -"警告: 你的系统内存å—到最大é™çš„ä¿æŠ¤è¿™å¯èƒ½å¯¼è‡´è¿è¡Œ %1 时内存溢出 ä½ å¯ä»¥ç”¨å‘½" -"令'ulimit -l'查看内存的é™åˆ¶.\n" -"\n" -"此命令由 /etc/security/limits.conf 控制." - #: ardour_ui.cc:823 msgid "Do not show this window again" msgstr "ä¸å†æ˜¾ç¤ºæ­¤çª—å£" @@ -721,21 +633,6 @@ msgstr "ä¸ä¿å­˜è€Œé€€å‡º" msgid "Save and quit" msgstr "ä¿å­˜å¹¶é€€å‡º" -#: ardour_ui.cc:877 -#, fuzzy -msgid "" -"%1 was unable to save your session.\n" -"\n" -"If you still wish to quit, please use the\n" -"\n" -"\"Just quit\" option." -msgstr "Ardour 无法ä¿å­˜æ­¤ä¼šè¯.\n" - -#: ardour_ui.cc:908 -#, fuzzy -msgid "Please wait while %1 cleans up..." -msgstr "请等待,%1 载入å¯è§†åŒ–æ•°æ®" - #: ardour_ui.cc:925 msgid "Unsaved Session" msgstr "未ä¿å­˜çš„会è¯" @@ -792,20 +689,10 @@ msgstr "" msgid "JACK: % kHz / %4.1f ms" msgstr "" -#: ardour_ui.cc:1078 export_video_dialog.cc:68 -#, fuzzy -msgid "File:" -msgstr "文件开始:" - #: ardour_ui.cc:1082 msgid "BWF" msgstr "" -#: ardour_ui.cc:1085 -#, fuzzy -msgid "WAV" -msgstr "WAVE" - #: ardour_ui.cc:1088 msgid "WAV64" msgstr "" @@ -898,13 +785,6 @@ msgstr "%1 会è¯" msgid "You cannot add a track without a session already loaded." msgstr "您åªèƒ½åœ¨å·²è½½å…¥çš„会è¯ä¸­æ·»åŠ éŸ³è½¨" -#: ardour_ui.cc:1548 -#, fuzzy -msgid "could not create %1 new mixed track" -msgid_plural "could not create %1 new mixed tracks" -msgstr[0] "无法创建 %1 æ–°çš„MIDI音轨" -msgstr[1] "无法创建 %1 æ–°çš„MIDI音轨" - #: ardour_ui.cc:1554 ardour_ui.cc:1615 msgid "" "There are insufficient JACK ports available\n" @@ -920,29 +800,6 @@ msgstr "" msgid "You cannot add a track or bus without a session already loaded." msgstr "您åªèƒ½åœ¨å·²è½½å…¥çš„ä¼šè¯æˆ–总线中添加音轨和总线" -#: ardour_ui.cc:1598 -#, fuzzy -msgid "could not create %1 new audio track" -msgid_plural "could not create %1 new audio tracks" -msgstr[0] "无法新建音频音轨" -msgstr[1] "无法新建音频音轨" - -#: ardour_ui.cc:1607 -#, fuzzy -msgid "could not create %1 new audio bus" -msgid_plural "could not create %1 new audio busses" -msgstr[0] "无法新建 %1 新的音频总线" -msgstr[1] "无法新建 %1 新的音频总线" - -#: ardour_ui.cc:1724 -#, fuzzy -msgid "" -"Please create one or more tracks before trying to record.\n" -"You can do this with the \"Add Track or Bus\" option in the Session menu." -msgstr "" -"在录音之å‰ï¼Œè¯·åˆ›å»ºè‡³å°‘一个音轨\n" -"请查看会è¯èœå•." - #: ardour_ui.cc:2114 msgid "" "The audio backend (JACK) was shutdown because:\n" @@ -976,15 +833,6 @@ msgstr "å¿«ç…§" msgid "Name of new snapshot" msgstr "新建快照的åç§°" -#: ardour_ui.cc:2247 -#, fuzzy -msgid "" -"To ensure compatibility with various systems\n" -"snapshot names may not contain a '%1' character" -msgstr "" -"为了确ä¿åœ¨ä¸åŒç³»ç»Ÿçš„兼容性\n" -"快照文件åä¸è¦åŒ…å«å­—符 '/'" - #: ardour_ui.cc:2259 msgid "Confirm Snapshot Overwrite" msgstr "确定覆盖快照" @@ -1005,15 +853,6 @@ msgstr "é‡å‘½å会è¯" msgid "New session name" msgstr "新建快照的åç§°" -#: ardour_ui.cc:2312 ardour_ui.cc:2692 ardour_ui.cc:2737 -#, fuzzy -msgid "" -"To ensure compatibility with various systems\n" -"session names may not contain a '%1' character" -msgstr "" -"为了确ä¿åœ¨ä¸åŒç³»ç»Ÿçš„兼容性\n" -"ä¼šè¯æ–‡ä»¶åä¸è¦åŒ…å«å­—符 '/'" - #: ardour_ui.cc:2320 msgid "" "That name is already in use by another directory/folder. Please try again." @@ -1114,66 +953,6 @@ msgstr "" msgid "giga" msgstr "" -#: ardour_ui.cc:3116 -#, fuzzy -msgid "" -"The following file was deleted from %2,\n" -"releasing %3 %4bytes of disk space" -msgid_plural "" -"The following %1 files were deleted from %2,\n" -"releasing %3 %4bytes of disk space" -msgstr[0] "" -"下列文件被删除于\n" -"%2,\n" -"释放出 %3 %4 bytes çš„ç£ç›˜ç©ºé—´" -msgstr[1] "" -"下列文件被删除于\n" -"%2,\n" -"释放出 %3 %4 bytes çš„ç£ç›˜ç©ºé—´" - -#: ardour_ui.cc:3123 -#, fuzzy -msgid "" -"The following file was not in use and \n" -"has been moved to: %2\n" -"\n" -"After a restart of %5\n" -"\n" -"Session -> Clean-up -> Flush Wastebasket\n" -"\n" -"will release an additional %3 %4bytes of disk space.\n" -msgid_plural "" -"The following %1 files were not in use and \n" -"have been moved to: %2\n" -"\n" -"After a restart of %5\n" -"\n" -"Session -> Clean-up -> Flush Wastebasket\n" -"\n" -"will release an additional %3 %4bytes of disk space.\n" -msgstr[0] "" -"以下文件 %1 没被用到,\n" -"并且被移动到:\n" -"\t\t\t\t%2\n" -"\n" -"é‡å¯ArdouråŽ\n" -"\n" -"ä¼šè¯ -> 清空 -> 回收站\n" -"\n" -"将会释放é¢å¤–çš„\n" -"%3 %4bytes çš„ç£ç›˜ç©ºé—´.\n" -msgstr[1] "" -"以下文件 %1 没被用到,\n" -"并且被移动到:\n" -"\t\t\t\t%2\n" -"\n" -"é‡å¯ArdouråŽ\n" -"\n" -"ä¼šè¯ -> 清空 -> 回收站\n" -"\n" -"将会释放é¢å¤–çš„\n" -"%3 %4bytes çš„ç£ç›˜ç©ºé—´.\n" - #: ardour_ui.cc:3183 msgid "Are you sure you want to clean-up?" msgstr "您确认è¦åˆ é™¤è¿™äº›æ–‡ä»¶å—" @@ -1213,11 +992,6 @@ msgstr "" msgid "Do you really want to stop the Video Server?" msgstr "" -#: ardour_ui.cc:3345 -#, fuzzy -msgid "Yes, Stop It" -msgstr "是, 销æ¯å®ƒ." - #: ardour_ui.cc:3371 msgid "The Video Server is already started." msgstr "" @@ -1292,23 +1066,6 @@ msgstr "" msgid "Crash Recovery" msgstr "崩溃æ¢å¤" -#: ardour_ui.cc:3762 -#, fuzzy -msgid "" -"This session appears to have been in the\n" -"middle of recording when %1 or\n" -"the computer was shutdown.\n" -"\n" -"%1 can recover any captured audio for\n" -"you, or it can ignore it. Please decide\n" -"what you would like to do.\n" -msgstr "" -"这个会è¯è²Œä¼¼æ›¾åœ¨å½•音的时候被\n" -"Ardour或计算机强制关闭了\n" -"\n" -"Ardourå¯ä»¥ä¸ºä½ æ¢å¤ä¸€äº›æ•æ‰åˆ°çš„音频\n" -"你也å¯ä»¥å¿½ç•¥å®ƒ. 请你选择.\n" - #: ardour_ui.cc:3774 msgid "Ignore crash data" msgstr "忽略崩æ¯çš„æ•°æ®" @@ -1321,17 +1078,6 @@ msgstr "æ¢å¤åˆ°å´©æºƒå‰" msgid "Sample Rate Mismatch" msgstr "采样率ä¸åŒ¹é…" -#: ardour_ui.cc:3796 -#, fuzzy -msgid "" -"This session was created with a sample rate of %1 Hz, but\n" -"%2 is currently running at %3 Hz. If you load this session,\n" -"audio may be played at the wrong sample rate.\n" -msgstr "" -"此会è¯è®¾ç½®çš„采样率为 %1 Hz.\n" -"\n" -"当å‰éŸ³é¢‘引擎的采样率为 %2 Hz.\n" - #: ardour_ui.cc:3805 msgid "Do not load session" msgstr "ä¸è¦è£…载会è¯" @@ -1371,11 +1117,6 @@ msgstr "用户界é¢: 无法设置编辑器." msgid "UI: cannot setup mixer" msgstr "用户界é¢: 无法设置混音器." -#: ardour_ui2.cc:82 -#, fuzzy -msgid "UI: cannot setup meterbridge" -msgstr "用户界é¢: 无法设置混音器." - #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "从播放头播放" @@ -1414,11 +1155,6 @@ msgstr "" msgid "Return to last playback start when stopped" msgstr "å½“åœæ­¢æ—¶è¿”回至最åŽä¸€æ¬¡å›žæ”¾èµ·ç‚¹" -#: ardour_ui2.cc:139 -#, fuzzy -msgid "Playhead follows Range Selections and Edits" -msgstr "播放头到范围开始" - #: ardour_ui2.cc:140 msgid "Be sensible about input monitoring" msgstr "" @@ -1461,11 +1197,6 @@ msgid "" "confirm; postfix the edit with '+' or '-' to enter delta times.\n" msgstr "" -#: ardour_ui2.cc:147 -#, fuzzy -msgid "Reset Level Meter" -msgstr "é‡ç½®åŒ…络线" - #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "[错误]:" @@ -1607,21 +1338,6 @@ msgstr "关闭" msgid "Add Track or Bus..." msgstr "添加音轨或总线..." -#: ardour_ui_ed.cc:135 -#, fuzzy -msgid "Open Video" -msgstr "打开会è¯" - -#: ardour_ui_ed.cc:138 -#, fuzzy -msgid "Remove Video" -msgstr "移除范围" - -#: ardour_ui_ed.cc:141 -#, fuzzy -msgid "Export To Video File" -msgstr "导出为音频文件..." - #: ardour_ui_ed.cc:145 msgid "Snapshot..." msgstr "å¿«ç…§..." @@ -1697,26 +1413,6 @@ msgstr "退出" msgid "Maximise Editor Space" msgstr "最大化编辑空间" -#: ardour_ui_ed.cc:227 -#, fuzzy -msgid "Show Toolbars" -msgstr "显示缩放工具æ " - -#: ardour_ui_ed.cc:230 mixer_ui.cc:1865 mixer_ui.cc:1871 -#, fuzzy -msgid "Window|Mixer" -msgstr "窗å£" - -#: ardour_ui_ed.cc:231 -#, fuzzy -msgid "Toggle Editor+Mixer" -msgstr "显示编辑器混音器" - -#: ardour_ui_ed.cc:232 meterbridge.cc:230 meterbridge.cc:236 -#, fuzzy -msgid "Window|Meterbridge" -msgstr "窗å£" - #: ardour_ui_ed.cc:234 midi_tracer.cc:39 msgid "MIDI Tracer" msgstr "MIDI示踪" @@ -1725,11 +1421,6 @@ msgstr "MIDI示踪" msgid "Chat" msgstr "èŠå¤©" -#: ardour_ui_ed.cc:238 -#, fuzzy -msgid "Help|Manual" -msgstr "手册" - #: ardour_ui_ed.cc:239 msgid "Reference" msgstr "å‚考" @@ -1784,11 +1475,6 @@ msgstr "循环播放范围" msgid "Play Selected Range" msgstr "播放已选择的范围" -#: ardour_ui_ed.cc:292 -#, fuzzy -msgid "Play Selection w/Preroll" -msgstr "播放被选区域" - #: ardour_ui_ed.cc:296 msgid "Enable Record" msgstr "å¯ç”¨å½•音" @@ -1964,11 +1650,6 @@ msgstr "缓冲" msgid "JACK Sampling Rate and Latency" msgstr "JACK采样率和延迟" -#: ardour_ui_ed.cc:565 -#, fuzzy -msgid "Timecode Format" -msgstr "æ—¶é—´ç æ¡†æž¶" - #: ardour_ui_ed.cc:566 msgid "File Format" msgstr "文件格å¼" @@ -1991,11 +1672,6 @@ msgstr "å¯ç”¨/ç¦ç”¨å¤–部ä½ç½®åŒæ­¥" msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "" -#: audio_clock.cc:1012 audio_clock.cc:1031 -#, fuzzy -msgid "--pending--" -msgstr "上å‡" - #: audio_clock.cc:1083 msgid "SR" msgstr "" @@ -2025,11 +1701,6 @@ msgstr "标尺" msgid "programming error: %1" msgstr "程åºé”™è¯¯: %1" -#: audio_clock.cc:1952 audio_clock.cc:1980 -#, fuzzy -msgid "programming error: %1 %2" -msgstr "程åºé”™è¯¯: %1: %2" - #: audio_clock.cc:2048 editor.cc:236 export_timespan_selector.cc:98 msgid "Bars:Beats" msgstr "å°èŠ‚:æ‹å­" @@ -2107,13 +1778,6 @@ msgstr "自动化状æ€" msgid "hide track" msgstr "éšè—音轨" -#: automation_time_axis.cc:255 automation_time_axis.cc:307 -#: automation_time_axis.cc:496 gain_meter.cc:195 generic_pluginui.cc:456 -#: generic_pluginui.cc:746 panner_ui.cc:150 -#, fuzzy -msgid "Automation|Manual" -msgstr "自动化" - #: automation_time_axis.cc:257 automation_time_axis.cc:318 #: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 #: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 @@ -2327,31 +1991,6 @@ msgstr "值" msgid "Note" msgstr "音符" -#: edit_note_dialog.cc:45 -#, fuzzy -msgid "Set selected notes to this channel" -msgstr "延伸所选音符的长度" - -#: edit_note_dialog.cc:46 -#, fuzzy -msgid "Set selected notes to this pitch" -msgstr "延伸所选音符的长度" - -#: edit_note_dialog.cc:47 -#, fuzzy -msgid "Set selected notes to this velocity" -msgstr "延伸所选音符的长度" - -#: edit_note_dialog.cc:49 -#, fuzzy -msgid "Set selected notes to this time" -msgstr "延伸所选音符的长度" - -#: edit_note_dialog.cc:51 -#, fuzzy -msgid "Set selected notes to this length" -msgstr "延伸所选音符的长度" - #: edit_note_dialog.cc:58 midi_list_editor.cc:104 patch_change_dialog.cc:91 #: step_entry.cc:393 msgid "Channel" @@ -2608,11 +2247,6 @@ msgstr "音轨&总线" msgid "Snapshots" msgstr "" -#: editor.cc:545 -#, fuzzy -msgid "Track & Bus Groups" -msgstr "音轨&总线" - #: editor.cc:546 msgid "Ranges & Marks" msgstr "" @@ -2875,20 +2509,10 @@ msgstr "æ’入已存在的媒体" msgid "Nudge Entire Track Later" msgstr "" -#: editor.cc:1990 editor.cc:2046 -#, fuzzy -msgid "Nudge Track After Edit Point Later" -msgstr "在编辑点åŽé€‰æ‹©æ‰€æœ‰" - #: editor.cc:1991 editor.cc:2047 msgid "Nudge Entire Track Earlier" msgstr "" -#: editor.cc:1992 editor.cc:2048 -#, fuzzy -msgid "Nudge Track After Edit Point Earlier" -msgstr "在编辑点åŽé€‰æ‹©æ‰€æœ‰" - #: editor.cc:1994 editor.cc:2050 msgid "Nudge" msgstr "" @@ -2897,16 +2521,6 @@ msgstr "" msgid "Smart Mode (add Range functions to Object mode)" msgstr "" -#: editor.cc:3071 -#, fuzzy -msgid "Object Mode (select/move Objects)" -msgstr "选择/移动 对象" - -#: editor.cc:3072 -#, fuzzy -msgid "Range Mode (select/move Ranges)" -msgstr "选择/移动范围" - #: editor.cc:3073 msgid "Draw/Edit MIDI Notes" msgstr "绘画/编辑MIDI音符" @@ -2991,16 +2605,6 @@ msgstr "" msgid "malformed URL passed to drag-n-drop code" msgstr "" -#: editor.cc:3256 editor_actions.cc:291 -#, fuzzy -msgid "Command|Undo" -msgstr "命令-" - -#: editor.cc:3258 -#, fuzzy -msgid "Command|Undo (%1)" -msgstr "撤销 (%1)" - #: editor.cc:3265 editor_actions.cc:292 msgid "Redo" msgstr "é‡åš" @@ -3053,11 +2657,6 @@ msgstr "å¤åˆ¶æ’­æ”¾åˆ—表" msgid "clear playlists" msgstr "清除播放列表" -#: editor.cc:4687 -#, fuzzy -msgid "Please wait while %1 loads visual data." -msgstr "请等待,%1 载入å¯è§†åŒ–æ•°æ®" - #: editor.cc:5492 editor_markers.cc:940 panner_ui.cc:393 processor_box.cc:2253 msgid "Edit..." msgstr "编辑..." @@ -3292,11 +2891,6 @@ msgstr "到下一个区域边界 (没有音轨选区)" msgid "To Previous Region Boundary" msgstr "到上一个区域边界" -#: editor_actions.cc:169 -#, fuzzy -msgid "To Previous Region Boundary (No Track Selection)" -msgstr "到上一个区域边界 (没有音轨选区)" - #: editor_actions.cc:171 msgid "To Next Region Start" msgstr "到下一个区域开始" @@ -3397,16 +2991,6 @@ msgstr "跳转到视图 %1" msgid "Locate to Mark %1" msgstr "定ä½åˆ°æ ‡è®° %1" -#: editor_actions.cc:229 -#, fuzzy -msgid "Jump to Next Mark" -msgstr "跳至此标记" - -#: editor_actions.cc:230 -#, fuzzy -msgid "Jump to Previous Mark" -msgstr "跳至此标记" - #: editor_actions.cc:231 msgid "Add Mark from Playhead" msgstr "从播放头添加编辑" @@ -3427,16 +3011,6 @@ msgstr "" msgid "Nudge Playhead Backward" msgstr "" -#: editor_actions.cc:238 -#, fuzzy -msgid "Playhead To Next Grid" -msgstr "播放头到下一个区域结æŸ" - -#: editor_actions.cc:239 -#, fuzzy -msgid "Playhead To Previous Grid" -msgstr "播放头到上一个区域结æŸ" - #: editor_actions.cc:244 msgid "Zoom to Region" msgstr "" @@ -3635,11 +3209,6 @@ msgstr "大" msgid "Small" msgstr "å°" -#: editor_actions.cc:392 -#, fuzzy -msgid "Sound Selected MIDI Notes" -msgstr "å¥å…¨çš„音符" - #: editor_actions.cc:397 msgid "Zoom Focus Left" msgstr "" @@ -3664,11 +3233,6 @@ msgstr "" msgid "Zoom Focus Edit Point" msgstr "" -#: editor_actions.cc:404 -#, fuzzy -msgid "Next Zoom Focus" -msgstr "缩放到焦点" - #: editor_actions.cc:410 msgid "Smart Object Mode" msgstr "" @@ -3790,16 +3354,6 @@ msgstr "对é½åˆ°ç§’" msgid "Snap to Minutes" msgstr "对é½åˆ°åˆ†" -#: editor_actions.cc:505 -#, fuzzy -msgid "Snap to One Twenty Eighths" -msgstr "对é½åˆ°ç¬¬28" - -#: editor_actions.cc:506 -#, fuzzy -msgid "Snap to Sixty Fourths" -msgstr "对é½åˆ°ç¬¬24" - #: editor_actions.cc:507 msgid "Snap to Thirty Seconds" msgstr "对é½åˆ°30ç§’" @@ -3900,30 +3454,10 @@ msgstr "循环/Punch" msgid "Min:Sec" msgstr "分:ç§’" -#: editor_actions.cc:547 editor_actions.cc:550 -#, fuzzy -msgid "Video Monitor" -msgstr "监控中" - #: editor_actions.cc:549 rc_option_editor.cc:1842 msgid "Video" msgstr "" -#: editor_actions.cc:552 -#, fuzzy -msgid "Always on Top" -msgstr "上å‡åˆ°é¡¶" - -#: editor_actions.cc:554 -#, fuzzy -msgid "Frame number" -msgstr "音轨åºå·" - -#: editor_actions.cc:555 -#, fuzzy -msgid "Timecode Background" -msgstr "æ—¶é—´ç ç§’" - #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" @@ -4000,11 +3534,6 @@ msgstr "ç”±æºæ–‡ä»¶åˆ›å»ºæ—¥æœŸ" msgid "By Source Filesystem" msgstr "ç”±æºæ–‡ä»¶ç³»ç»Ÿ" -#: editor_actions.cc:648 -#, fuzzy -msgid "Remove Unused" -msgstr "移除总线" - #: editor_actions.cc:652 editor_audio_import.cc:279 #: session_import_dialog.cc:74 session_import_dialog.cc:94 #: session_metadata_dialog.cc:297 editor_videotimeline.cc:108 @@ -4039,11 +3568,6 @@ msgstr "显示Logo" msgid "Toggle MIDI Input Active for Editor-Selected Tracks/Busses" msgstr "" -#: editor_actions.cc:696 -#, fuzzy -msgid "Loaded editor bindings from %1" -msgstr "载入èœå• %1" - #: editor_actions.cc:698 msgid "Could not find editor.bindings in search path %1" msgstr "" @@ -4146,21 +3670,6 @@ msgstr "设置循环范围" msgid "Set Punch" msgstr "设置Punch" -#: editor_actions.cc:1820 -#, fuzzy -msgid "Add Single Range Marker" -msgstr "添加一个范围标记" - -#: editor_actions.cc:1825 -#, fuzzy -msgid "Add Range Marker Per Region" -msgstr "添加范围标记" - -#: editor_actions.cc:1829 -#, fuzzy -msgid "Snap Position To Grid" -msgstr "对é½åˆ°ç½‘络" - #: editor_actions.cc:1832 msgid "Close Gaps" msgstr "" @@ -4233,11 +3742,6 @@ msgstr "预设增益" msgid "Envelope Active" msgstr "激活包络线" -#: editor_actions.cc:1885 -#, fuzzy -msgid "Quantize..." -msgstr "é‡åŒ–" - #: editor_actions.cc:1886 editor_actions.cc:1887 msgid "Insert Patch Change..." msgstr "" @@ -4403,11 +3907,6 @@ msgstr "嵌入之, ä¸ç®¡äº†" msgid "fixed time region drag" msgstr "固定时间区域拖拽" -#: editor_drag.cc:1700 -#, fuzzy -msgid "Video Start:" -msgstr "开始" - #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -4448,11 +3947,6 @@ msgstr "移动标记" msgid "An error occurred while executing time stretch operation" msgstr "当执行时间延伸æ“作时出现错误" -#: editor_drag.cc:4011 -#, fuzzy -msgid "programming_error: %1" -msgstr "程åºé”™è¯¯: %1" - #: editor_drag.cc:4081 editor_markers.cc:680 msgid "new range marker" msgstr "新范围标记" @@ -4461,67 +3955,22 @@ msgstr "新范围标记" msgid "rubberband selection" msgstr "" -#: editor_route_groups.cc:66 -#, fuzzy -msgid "No Selection = All Tracks?" -msgstr "ä¸é€‰æ‹© = 所有音轨" - -#: editor_route_groups.cc:95 -#, fuzzy -msgid "Col" -msgstr "颜色" - -#: editor_route_groups.cc:95 -#, fuzzy -msgid "Group Tab Color" -msgstr "音轨颜色" - -#: editor_route_groups.cc:96 -#, fuzzy -msgid "Name of Group" -msgstr "没有群组" - #: editor_route_groups.cc:97 editor_routes.cc:203 msgid "V" msgstr "" -#: editor_route_groups.cc:97 -#, fuzzy -msgid "Group is visible?" -msgstr "äº¤å‰æ·¡å…¥æ·¡å‡ºå¯è§" - -#: editor_route_groups.cc:98 -#, fuzzy -msgid "On" -msgstr "打开 " - #: editor_route_groups.cc:98 msgid "Group is enabled?" msgstr "" -#: editor_route_groups.cc:99 -#, fuzzy -msgid "group|G" -msgstr "组" - #: editor_route_groups.cc:99 msgid "Sharing Gain?" msgstr "" -#: editor_route_groups.cc:100 -#, fuzzy -msgid "relative|Rel" -msgstr "å…³è”çš„" - #: editor_route_groups.cc:100 msgid "Relative Gain Changes?" msgstr "" -#: editor_route_groups.cc:101 -#, fuzzy -msgid "mute|M" -msgstr "å–æ¶ˆé™éŸ³" - #: editor_route_groups.cc:101 msgid "Sharing Mute?" msgstr "" @@ -4543,30 +3992,10 @@ msgstr "" msgid "Sharing Record-enable Status?" msgstr "" -#: editor_route_groups.cc:104 -#, fuzzy -msgid "monitoring|Mon" -msgstr "监控中" - -#: editor_route_groups.cc:104 -#, fuzzy -msgid "Sharing Monitoring Choice?" -msgstr "检控选择" - -#: editor_route_groups.cc:105 -#, fuzzy -msgid "selection|Sel" -msgstr "转æ¢é€‰åŒº" - #: editor_route_groups.cc:105 msgid "Sharing Selected/Editing Status?" msgstr "" -#: editor_route_groups.cc:106 -#, fuzzy -msgid "active|A" -msgstr "å¯ç”¨(Active)" - #: editor_route_groups.cc:106 msgid "Sharing Active Status?" msgstr "" @@ -4589,16 +4018,6 @@ msgstr "未命åçš„" msgid "programming error: marker canvas item has no marker object pointer!" msgstr "" -#: editor_export_audio.cc:143 editor_export_audio.cc:148 -#, fuzzy -msgid "File Exists!" -msgstr "文件开始:" - -#: editor_export_audio.cc:151 -#, fuzzy -msgid "Overwrite Existing File" -msgstr "æ’入已存在的媒体" - #: editor_group_tabs.cc:162 msgid "Fit to Window" msgstr "放置窗å£" @@ -4616,11 +4035,6 @@ msgstr "结æŸ" msgid "add marker" msgstr "添加标记" -#: editor_markers.cc:677 -#, fuzzy -msgid "range" -msgstr "范围" - #: editor_markers.cc:713 location_ui.cc:852 msgid "remove marker" msgstr "移除标记" @@ -4641,31 +4055,6 @@ msgstr "移动标记到播放头" msgid "Create Range to Next Marker" msgstr "创建范围到下一个标记" -#: editor_markers.cc:896 -#, fuzzy -msgid "Locate to Marker" -msgstr "定ä½åˆ°æ ‡è®°" - -#: editor_markers.cc:897 -#, fuzzy -msgid "Play from Marker" -msgstr "从这儿播放" - -#: editor_markers.cc:900 -#, fuzzy -msgid "Set Marker from Playhead" -msgstr "从播放头设置范围标记" - -#: editor_markers.cc:902 -#, fuzzy -msgid "Set Range from Selection" -msgstr "从区间选择设置范围" - -#: editor_markers.cc:905 -#, fuzzy -msgid "Zoom to Range" -msgstr "音符范围" - #: editor_markers.cc:912 msgid "Hide Range" msgstr "éšè—范围" @@ -4805,41 +4194,6 @@ msgstr "æ’入拖拽区域" msgid "insert region" msgstr "摄入区域" -#: editor_ops.cc:2261 -#, fuzzy -msgid "raise regions" -msgstr "标准化区域" - -#: editor_ops.cc:2263 -#, fuzzy -msgid "raise region" -msgstr "摄入区域" - -#: editor_ops.cc:2269 -#, fuzzy -msgid "raise regions to top" -msgstr "标准化区域" - -#: editor_ops.cc:2271 -#, fuzzy -msgid "raise region to top" -msgstr "上å‡åˆ°é¡¶" - -#: editor_ops.cc:2277 -#, fuzzy -msgid "lower regions" -msgstr "关闭区间空白" - -#: editor_ops.cc:2279 editor_ops.cc:2287 -#, fuzzy -msgid "lower region" -msgstr "摄入区域" - -#: editor_ops.cc:2285 -#, fuzzy -msgid "lower regions to bottom" -msgstr "移动区域到原始ä½ç½®" - #: editor_ops.cc:2370 msgid "Rename Region" msgstr "é‡å‘½å区域" @@ -4929,21 +4283,6 @@ msgid "" "Freezing will only process the signal as far as the first send/insert/return." msgstr "" -#: editor_ops.cc:3505 -#, fuzzy -msgid "Freeze anyway" -msgstr "冻结" - -#: editor_ops.cc:3506 -#, fuzzy -msgid "Don't freeze" -msgstr "无法冻结" - -#: editor_ops.cc:3507 -#, fuzzy -msgid "Freeze Limits" -msgstr "冻结" - #: editor_ops.cc:3522 msgid "Cancel Freeze" msgstr "å–æ¶ˆå†»ç»“" @@ -5050,11 +4389,6 @@ msgstr "区域增益包络å¯ç”¨" msgid "toggle region lock" msgstr "切æ¢åŒºåŸŸé”定" -#: editor_ops.cc:5067 -#, fuzzy -msgid "Toggle Video Lock" -msgstr "切æ¢åŒºåŸŸé”定" - #: editor_ops.cc:5091 msgid "region lock style" msgstr "区域é”定风格" @@ -5309,25 +4643,10 @@ msgstr "å–æ¶ˆè¿™äº›åŒºåŸŸçš„组åˆ" msgid "Region name, with number of channels in []'s" msgstr "" -#: editor_regions.cc:112 -#, fuzzy -msgid "Position of start of region" -msgstr "转至会è¯èµ·ç‚¹" - #: editor_regions.cc:113 editor_regions.cc:849 time_info_box.cc:98 msgid "End" msgstr "结æŸ" -#: editor_regions.cc:113 -#, fuzzy -msgid "Position of end of region" -msgstr "转至会è¯ç»ˆç‚¹" - -#: editor_regions.cc:114 -#, fuzzy -msgid "Length of the region" -msgstr "删除区间" - #: editor_regions.cc:115 msgid "Position of region sync point, relative to start of the region" msgstr "" @@ -5345,11 +4664,6 @@ msgstr "" msgid "L" msgstr "" -#: editor_regions.cc:118 -#, fuzzy -msgid "Region position locked?" -msgstr "由区域ä½ç½®" - #: editor_regions.cc:119 msgid "G" msgstr "" @@ -5364,11 +4678,6 @@ msgstr "" msgid "M" msgstr "" -#: editor_regions.cc:120 -#, fuzzy -msgid "Region muted?" -msgstr "区域åç§°" - #: editor_regions.cc:121 msgid "O" msgstr "" @@ -5420,73 +4729,28 @@ msgstr "找ä¸åˆ°" msgid "SS" msgstr "" -#: editor_routes.cc:202 -#, fuzzy -msgid "Track/Bus Name" -msgstr "音轨/总线" - -#: editor_routes.cc:203 -#, fuzzy -msgid "Track/Bus visible ?" -msgstr "音轨/总线" - #: editor_routes.cc:204 mixer_strip.cc:1945 meter_strip.cc:334 #: route_time_axis.cc:2407 msgid "A" msgstr "" -#: editor_routes.cc:204 -#, fuzzy -msgid "Track/Bus active ?" -msgstr "音轨/总线" - #: editor_routes.cc:205 mixer_strip.cc:1932 msgid "I" msgstr "" -#: editor_routes.cc:205 -#, fuzzy -msgid "MIDI input enabled" -msgstr "\t%1 MIDI inputs\n" - #: editor_routes.cc:206 mixer_strip.cc:1930 mono_panner.cc:198 #: stereo_panner.cc:215 stereo_panner.cc:242 msgid "R" msgstr "" -#: editor_routes.cc:206 -#, fuzzy -msgid "Record enabled" -msgstr "å¯ç”¨å½•音" - -#: editor_routes.cc:207 -#, fuzzy -msgid "Muted" -msgstr "é™éŸ³" - #: editor_routes.cc:208 mixer_strip.cc:1941 meter_strip.cc:330 msgid "S" msgstr "" -#: editor_routes.cc:208 -#, fuzzy -msgid "Soloed" -msgstr "独å¥..." - #: editor_routes.cc:209 msgid "SI" msgstr "" -#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1880 -#, fuzzy -msgid "Solo Isolated" -msgstr "Solo隔离" - -#: editor_routes.cc:210 -#, fuzzy -msgid "Solo Safe (Locked)" -msgstr "Solo安全" - #: editor_routes.cc:471 mixer_ui.cc:1162 msgid "Hide All" msgstr "éšè—所有" @@ -5531,11 +4795,6 @@ msgstr "清除所有ä½ç½®" msgid "Unhide locations" msgstr "å–æ¶ˆéšè—ä½ç½®" -#: editor_rulers.cc:346 -#, fuzzy -msgid "New range" -msgstr "新范围" - #: editor_rulers.cc:347 msgid "Clear all ranges" msgstr "清除所有范围" @@ -5560,11 +4819,6 @@ msgstr "新标尺" msgid "Timeline height" msgstr "" -#: editor_rulers.cc:383 -#, fuzzy -msgid "Align Video Track" -msgstr "添加音频音轨" - #: editor_selection.cc:889 editor_selection.cc:932 msgid "set selected regions" msgstr "设置所选区域" @@ -5621,11 +4875,6 @@ msgstr "" "这个编辑点是已选择的标记,\n" "但是没有已选择的标记." -#: editor_snapshots.cc:136 -#, fuzzy -msgid "Rename Snapshot" -msgstr "移除快照" - #: editor_snapshots.cc:138 msgid "New name of snapshot" msgstr "å¿«ç…§æ–°åç§°" @@ -5685,11 +4934,6 @@ msgid "" "programming error: meter marker canvas item has no marker object pointer!" msgstr "" -#: editor_timefx.cc:68 -#, fuzzy -msgid "stretch/shrink" -msgstr "伸展/收缩" - #: editor_timefx.cc:129 msgid "pitch shift" msgstr "音调切æ¢" @@ -5816,11 +5060,6 @@ msgstr "" msgid "Driver:" msgstr "驱动:" -#: engine_dialog.cc:186 -#, fuzzy -msgid "Audio Interface:" -msgstr "接å£:" - #: engine_dialog.cc:191 sfdb_ui.cc:147 sfdb_ui.cc:260 sfdb_ui.cc:265 msgid "Sample rate:" msgstr "采样率:" @@ -5968,16 +5207,6 @@ msgstr "" msgid "Track output (channels: %1)" msgstr "音轨输出 (声é“: %1)" -#: export_channel_selector.cc:536 -#, fuzzy -msgid "Export region contents" -msgstr "导出区域" - -#: export_channel_selector.cc:537 -#, fuzzy -msgid "Export track output" -msgstr "链接音轨和总线的输出" - #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten.Error: " msgstr "错误: " @@ -6063,11 +5282,6 @@ msgstr "æº" msgid "Stem Export" msgstr "" -#: export_file_notebook.cc:38 -#, fuzzy -msgid "Add another format" -msgstr " ç‚¹å‡»è¿™é‡Œæ¥æ·»åŠ å¦ä¸€æ ¼å¼" - #: export_file_notebook.cc:178 msgid "Format" msgstr "æ ¼å¼" @@ -6076,16 +5290,6 @@ msgstr "æ ¼å¼" msgid "Location" msgstr "ä½ç½®" -#: export_file_notebook.cc:255 -#, fuzzy -msgid "No format!" -msgstr "文件格å¼" - -#: export_file_notebook.cc:267 -#, fuzzy -msgid "Format %1: %2" -msgstr "æ ¼å¼:" - #: export_filename_selector.cc:32 msgid "Label:" msgstr "标签:" @@ -6229,13 +5433,6 @@ msgstr "FLAC选项" msgid "Broadcast Wave options" msgstr "广播Wave (Broadcast Wave) 选项" -#: export_format_selector.cc:136 -#, fuzzy -msgid "Do you really want to remove the format?" -msgstr "" -"你确定移除快照 \"%1\"?\n" -"(ä¸å¯æ’¤é”€)" - #: export_preset_selector.cc:28 msgid "Preset" msgstr "预设" @@ -6248,13 +5445,6 @@ msgstr "" "è¢«é€‰ä¸­çš„é¢„è®¾è½½å…¥ä¸æˆåŠŸ!\n" "æ˜¯ä¸æ˜¯å…¶å¼•用的的格å¼è¢«åˆ é™¤äº†?" -#: export_preset_selector.cc:156 -#, fuzzy -msgid "Do you really want to remove this preset?" -msgstr "" -"你确定移除快照 \"%1\"?\n" -"(ä¸å¯æ’¤é”€)" - #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "显示时间:" @@ -6267,11 +5457,6 @@ msgstr "到" msgid "Range" msgstr "范围" -#: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 -#, fuzzy -msgid "curl error %1 (%2)" -msgstr "程åºé”™è¯¯: %1 (%2)" - #: sfdb_freesound_mootcher.cc:266 msgid "getSoundResourceFile: There is no valid root in the xml file" msgstr "" @@ -6365,35 +5550,10 @@ msgstr "å¯ç”¨å½•音..." msgid "Soloed..." msgstr "独å¥..." -#: group_tabs.cc:316 -#, fuzzy -msgid "Create New Group ..." -msgstr "新群组" - #: group_tabs.cc:317 msgid "Create New Group From" msgstr "" -#: group_tabs.cc:320 -#, fuzzy -msgid "Edit Group..." -msgstr "新群组" - -#: group_tabs.cc:321 -#, fuzzy -msgid "Collect Group" -msgstr "没有群组" - -#: group_tabs.cc:322 -#, fuzzy -msgid "Remove Group" -msgstr "移除总线" - -#: group_tabs.cc:325 -#, fuzzy -msgid "Remove Subgroup Bus" -msgstr "移除总线" - #: group_tabs.cc:327 msgid "Add New Subgroup Bus" msgstr "" @@ -6410,11 +5570,6 @@ msgstr "" msgid "Enable All Groups" msgstr "" -#: group_tabs.cc:337 -#, fuzzy -msgid "Disable All Groups" -msgstr "ç¦ç”¨æ‰€æœ‰" - #: gtk-custom-ruler.c:133 msgid "Lower limit of ruler" msgstr "" @@ -6549,42 +5704,10 @@ msgstr "" msgid "redirectmenu" msgstr "" -#: keyeditor.cc:257 -#, fuzzy -msgid "Editor_menus" -msgstr "编辑器" - -#: keyeditor.cc:259 -#, fuzzy -msgid "RegionList" -msgstr "区域" - -#: keyeditor.cc:261 -#, fuzzy -msgid "ProcessorMenu" -msgstr "处ç†å™¨å¤„ç†" - -#: latency_gui.cc:39 -#, fuzzy -msgid "sample" -msgstr "采样" - -#: latency_gui.cc:40 -#, fuzzy -msgid "msec" -msgstr "毫秒数" - #: latency_gui.cc:41 msgid "period" msgstr "" -#: latency_gui.cc:55 -#, fuzzy -msgid "%1 sample" -msgid_plural "%1 samples" -msgstr[0] "采样" -msgstr[1] "采样" - #: latency_gui.cc:72 panner_ui.cc:392 msgid "Reset" msgstr "预设" @@ -6617,11 +5740,6 @@ msgstr "" msgid "Pre-Emphasis" msgstr "" -#: location_ui.cc:314 -#, fuzzy -msgid "Remove this range" -msgstr "忘记此范围" - #: location_ui.cc:315 msgid "Start time - middle click to locate here" msgstr "" @@ -6630,30 +5748,10 @@ msgstr "" msgid "End time - middle click to locate here" msgstr "" -#: location_ui.cc:319 -#, fuzzy -msgid "Set range start from playhead location" -msgstr "从播放头设置范围标记" - -#: location_ui.cc:320 -#, fuzzy -msgid "Set range end from playhead location" -msgstr "从区间选择设置范围" - -#: location_ui.cc:324 -#, fuzzy -msgid "Remove this marker" -msgstr "忘记这个标记" - #: location_ui.cc:325 msgid "Position - middle click to locate here" msgstr "" -#: location_ui.cc:327 -#, fuzzy -msgid "Set marker time from playhead location" -msgstr "从区间选择设置范围" - #: location_ui.cc:494 msgid "You cannot put a CD marker at the start of the session" msgstr "无法在会è¯å¼€å§‹æ”¾ç½®CD标记" @@ -6686,30 +5784,6 @@ msgstr "添加范围标记" msgid "%1 could not connect to JACK." msgstr "%1 无法连接到JACK" -#: main.cc:87 -#, fuzzy -msgid "" -"There are several possible reasons:\n" -"\n" -"1) JACK is not running.\n" -"2) JACK is running as another user, perhaps root.\n" -"3) There is already another client called \"%1\".\n" -"\n" -"Please consider the possibilities, and perhaps (re)start JACK." -msgstr "" -"å¯èƒ½æœ‰ä»¥ä¸‹åŽŸå› :\n" -"\n" -"1) JACK 没è¿è¡Œ.\n" -"2) JACK 被其他用户è¿è¡Œ, å¯èƒ½æ˜¯æ ¹ç”¨æˆ·(root).\n" -"3) å¯èƒ½è¿˜å­˜åœ¨å¦ä¸€ä¸ªç”¨æˆ·(client)也å«åš\"ardour\".\n" -"\n" -"请考虑以上原因, å¯èƒ½è¿˜è¦(é‡)å¯åЍJACK." - -#: main.cc:203 main.cc:324 -#, fuzzy -msgid "cannot create user %3 folder %1 (%2)" -msgstr "无法创建用户Ardour文件夹 %1 (%2)" - #: main.cc:210 main.cc:331 msgid "cannot open pango.rc file %1" msgstr "无法打开pango.rc 文件 %1" @@ -6805,20 +5879,10 @@ msgstr "无法åˆå§‹åŒ– %1." msgid "Cannot xinstall SIGPIPE error handler" msgstr "" -#: main.cc:528 -#, fuzzy -msgid "could not create %1 GUI" -msgstr "无法创建Ardour用户图形界é¢" - #: main_clock.cc:51 msgid "Display delta to edit cursor" msgstr "" -#: marker.cc:251 video_image_frame.cc:121 -#, fuzzy -msgid "MarkerText" -msgstr "标记" - #: midi_channel_selector.cc:159 midi_channel_selector.cc:397 #: midi_channel_selector.cc:433 msgid "All" @@ -6833,50 +5897,10 @@ msgstr "å转" msgid "Force" msgstr "" -#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 -#, fuzzy -msgid "MIDI Channel Control" -msgstr "通é“颜色" - -#: midi_channel_selector.cc:332 -#, fuzzy -msgid "Playback all channels" -msgstr "éšè—所有通é“" - -#: midi_channel_selector.cc:333 -#, fuzzy -msgid "Play only selected channels" -msgstr "播放已选择的范围" - #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" -#: midi_channel_selector.cc:335 -#, fuzzy -msgid "Record all channels" -msgstr "éšè—所有通é“" - -#: midi_channel_selector.cc:336 -#, fuzzy -msgid "Record only selected channels" -msgstr "编辑音符" - -#: midi_channel_selector.cc:337 -#, fuzzy -msgid "Force all channels to 1 channel" -msgstr "改å˜å£°é“" - -#: midi_channel_selector.cc:378 -#, fuzzy -msgid "Inbound" -msgstr "区域界é™" - -#: midi_channel_selector.cc:398 -#, fuzzy -msgid "Click to enable recording all channels" -msgstr "å•击æ¥å¯ç”¨/ç¦ç”¨æ­¤æ’ä»¶" - #: midi_channel_selector.cc:403 msgid "Click to disable recording all channels" msgstr "" @@ -6885,11 +5909,6 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" -#: midi_channel_selector.cc:415 -#, fuzzy -msgid "Playback" -msgstr "仅播放" - #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -6934,26 +5953,6 @@ msgstr "" msgid "Triplet" msgstr "" -#: midi_list_editor.cc:58 -#, fuzzy -msgid "Quarter" -msgstr "四分(4)" - -#: midi_list_editor.cc:59 -#, fuzzy -msgid "Eighth" -msgstr "å³" - -#: midi_list_editor.cc:60 -#, fuzzy -msgid "Sixteenth" -msgstr "å六分(16)" - -#: midi_list_editor.cc:61 -#, fuzzy -msgid "Thirty-second" -msgstr "三å二分(32)" - #: midi_list_editor.cc:62 msgid "Sixty-fourth" msgstr "" @@ -6966,61 +5965,6 @@ msgstr "" msgid "Vel" msgstr "" -#: midi_list_editor.cc:215 -#, fuzzy -msgid "edit note start" -msgstr "编辑音符" - -#: midi_list_editor.cc:224 -#, fuzzy -msgid "edit note channel" -msgstr "编辑音符" - -#: midi_list_editor.cc:234 -#, fuzzy -msgid "edit note number" -msgstr "编辑音符" - -#: midi_list_editor.cc:244 -#, fuzzy -msgid "edit note velocity" -msgstr "编辑音符" - -#: midi_list_editor.cc:258 -#, fuzzy -msgid "edit note length" -msgstr "改å˜éŸ³ç¬¦é•¿åº¦" - -#: midi_list_editor.cc:460 -#, fuzzy -msgid "insert new note" -msgstr "æ’入时间" - -#: midi_list_editor.cc:524 -#, fuzzy -msgid "delete notes (from list)" -msgstr "删除音符" - -#: midi_list_editor.cc:599 -#, fuzzy -msgid "change note channel" -msgstr "改å˜å£°é“" - -#: midi_list_editor.cc:607 -#, fuzzy -msgid "change note number" -msgstr "改å˜éŸ³ç¬¦é•¿åº¦" - -#: midi_list_editor.cc:617 -#, fuzzy -msgid "change note velocity" -msgstr "改å˜åŠ›åº¦" - -#: midi_list_editor.cc:687 -#, fuzzy -msgid "change note length" -msgstr "改å˜éŸ³ç¬¦é•¿åº¦" - #: midi_port_dialog.cc:39 msgid "Add MIDI Port" msgstr "添加MIDI端å£" @@ -7037,16 +5981,6 @@ msgstr "" msgid "channel edit" msgstr "声é“编辑" -#: midi_region_view.cc:874 -#, fuzzy -msgid "velocity edit" -msgstr "力度" - -#: midi_region_view.cc:931 -#, fuzzy -msgid "add note" -msgstr "编辑音符" - #: midi_region_view.cc:1779 msgid "step add" msgstr "步增" @@ -7111,25 +6045,10 @@ msgstr "改å˜å£°é“" msgid "Bank " msgstr "" -#: midi_region_view.cc:3131 -#, fuzzy -msgid "Program " -msgstr "程åºï¼š" - -#: midi_region_view.cc:3132 -#, fuzzy -msgid "Channel " -msgstr "音轨" - #: midi_region_view.cc:3301 midi_region_view.cc:3303 msgid "paste" msgstr "粘贴" -#: midi_region_view.cc:3761 -#, fuzzy -msgid "delete sysex" -msgstr "删除音符" - #: midi_streamview.cc:479 msgid "failed to create MIDI region" msgstr "" @@ -7138,11 +6057,6 @@ msgstr "" msgid "External MIDI Device" msgstr "" -#: midi_time_axis.cc:263 -#, fuzzy -msgid "External Device Mode" -msgstr "å¤–éƒ¨æ—¶é—´ç æº" - #: midi_time_axis.cc:271 msgid "Chns" msgstr "" @@ -7167,11 +6081,6 @@ msgstr "音符范围" msgid "Note Mode" msgstr "音符模å¼" -#: midi_time_axis.cc:497 -#, fuzzy -msgid "Channel Selector" -msgstr "通é“颜色" - #: midi_time_axis.cc:502 msgid "Color Mode" msgstr "颜色模å¼" @@ -7208,11 +6117,6 @@ msgstr "é€šé“ %1" msgid "Controllers %1-%2" msgstr "控制器 %1-%2" -#: midi_time_axis.cc:933 midi_time_axis.cc:936 -#, fuzzy -msgid "Controller %1" -msgstr "控制器 %1-%2" - #: midi_time_axis.cc:959 msgid "Sustained" msgstr "ä¿æŒ" @@ -7233,21 +6137,10 @@ msgstr "通é“颜色" msgid "Track Color" msgstr "音轨颜色" -#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 -#: midi_time_axis.cc:1510 -#, fuzzy -msgid "all" -msgstr "å°" - #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" -#: midi_tracer.cc:43 -#, fuzzy -msgid "Line history: " -msgstr "显示撤销历å²" - #: midi_tracer.cc:51 msgid "Auto-Scroll" msgstr "自动滚动" @@ -7260,20 +6153,10 @@ msgstr "å进制" msgid "Enabled" msgstr "å¯ç”¨" -#: midi_tracer.cc:54 -#, fuzzy -msgid "Delta times" -msgstr "开始时间" - #: midi_tracer.cc:66 msgid "Port:" msgstr "端å£:" -#: midi_velocity_dialog.cc:31 -#, fuzzy -msgid "New velocity" -msgstr "力度" - #: missing_file_dialog.cc:34 msgid "Missing File!" msgstr "找ä¸åˆ°æ–‡ä»¶!" @@ -7358,41 +6241,6 @@ msgstr "" msgid "Set Gain to 0dB on Mixer-Selected Tracks/Busses" msgstr "" -#: mixer_actor.cc:63 -#, fuzzy -msgid "Copy Selected Processors" -msgstr "选择区域" - -#: mixer_actor.cc:64 -#, fuzzy -msgid "Cut Selected Processors" -msgstr "选择区域" - -#: mixer_actor.cc:65 -#, fuzzy -msgid "Paste Selected Processors" -msgstr "设置所选区域" - -#: mixer_actor.cc:66 -#, fuzzy -msgid "Delete Selected Processors" -msgstr "设置所选区域" - -#: mixer_actor.cc:67 -#, fuzzy -msgid "Select All (visible) Processors" -msgstr "所有å¯ç”¨çš„处ç†å™¨" - -#: mixer_actor.cc:68 -#, fuzzy -msgid "Toggle Selected Processors" -msgstr "移动选择的标记" - -#: mixer_actor.cc:69 -#, fuzzy -msgid "Toggle Selected Plugins" -msgstr "播放被选区域" - #: mixer_actor.cc:72 mixer_actor.cc:73 msgid "Scroll Mixer Window to the left" msgstr "" @@ -7401,11 +6249,6 @@ msgstr "" msgid "Toggle MIDI Input Active for Mixer-Selected Tracks/Busses" msgstr "" -#: mixer_actor.cc:90 -#, fuzzy -msgid "Loaded mixer bindings from %1" -msgstr "载入èœå• %1" - #: mixer_actor.cc:92 msgid "Could not find mixer.bindings in search path %1" msgstr "" @@ -7414,12 +6257,6 @@ msgstr "" msgid "pre" msgstr "" -#: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 -#: rc_option_editor.cc:1881 -#, fuzzy -msgid "Comments" -msgstr "注释" - #: mixer_strip.cc:147 msgid "Click to toggle the width of this mixer strip." msgstr "" @@ -7430,16 +6267,6 @@ msgid "" "%1-%2-click to toggle the width of all strips." msgstr "" -#: mixer_strip.cc:156 -#, fuzzy -msgid "Hide this mixer strip" -msgstr "éšè—此音轨" - -#: mixer_strip.cc:167 -#, fuzzy -msgid "Click to select metering point" -msgstr "选择测é‡ç‚¹" - #: mixer_strip.cc:173 msgid "tupni" msgstr "" @@ -7464,11 +6291,6 @@ msgstr "" msgid "Mix group" msgstr "" -#: mixer_strip.cc:351 rc_option_editor.cc:1878 -#, fuzzy -msgid "Phase Invert" -msgstr "å转" - #: mixer_strip.cc:352 rc_option_editor.cc:1879 route_ui.cc:1218 msgid "Solo Safe" msgstr "Solo安全" @@ -7477,11 +6299,6 @@ msgstr "Solo安全" msgid "Group" msgstr "组" -#: mixer_strip.cc:356 rc_option_editor.cc:1882 -#, fuzzy -msgid "Meter Point" -msgstr "编辑点" - #: mixer_strip.cc:470 msgid "Enable/Disable MIDI input" msgstr "å¯ç”¨/ç¦ç”¨MIDI输入" @@ -7512,16 +6329,6 @@ msgstr "" msgid "Disconnected" msgstr "失去连接" -#: mixer_strip.cc:1303 -#, fuzzy -msgid "*Comments*" -msgstr "注释" - -#: mixer_strip.cc:1310 -#, fuzzy -msgid "Cmt" -msgstr "剪切" - #: mixer_strip.cc:1313 msgid "*Cmt*" msgstr "" @@ -7622,20 +6429,10 @@ msgstr "" msgid "Pre-fader" msgstr "" -#: mixer_strip.cc:2129 -#, fuzzy -msgid "Post-fader" -msgstr "äº¤å‰æ·¡å…¥æ·¡å‡º" - #: mixer_strip.cc:2166 meter_strip.cc:728 msgid "Change all in Group to %1" msgstr "" -#: mixer_strip.cc:2168 meter_strip.cc:730 -#, fuzzy -msgid "Change all to %1" -msgstr "é€šé“ %1" - #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -7656,11 +6453,6 @@ msgstr "" msgid "Variable height" msgstr "" -#: meter_strip.cc:765 -#, fuzzy -msgid "Short" -msgstr "短" - #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -7777,31 +6569,16 @@ msgstr "" msgid "Dim" msgstr "" -#: monitor_section.cc:190 -#, fuzzy -msgid "excl. solo" -msgstr "执行solo" - #: monitor_section.cc:192 msgid "Exclusive solo means that only 1 solo is active at a time" msgstr "" -#: monitor_section.cc:199 -#, fuzzy -msgid "solo » mute" -msgstr "独å¥/é™éŸ³" - #: monitor_section.cc:201 msgid "" "If enabled, solo will override mute\n" "(a soloed & muted track or bus will be audible)" msgstr "" -#: monitor_section.cc:227 -#, fuzzy -msgid "mute" -msgstr "å–æ¶ˆé™éŸ³" - #: monitor_section.cc:238 msgid "dim" msgstr "" @@ -7814,26 +6591,6 @@ msgstr "å•声é“" msgid "Monitor" msgstr "" -#: monitor_section.cc:678 -#, fuzzy -msgid "Switch monitor to mono" -msgstr "切æ¢åˆ°ç¬¬äºŒä¸ªå…«åº¦" - -#: monitor_section.cc:681 -#, fuzzy -msgid "Cut monitor" -msgstr "监控中" - -#: monitor_section.cc:684 -#, fuzzy -msgid "Dim monitor" -msgstr "监控中" - -#: monitor_section.cc:687 -#, fuzzy -msgid "Toggle exclusive solo mode" -msgstr "执行solo" - #: monitor_section.cc:693 msgid "Toggle mute overrides solo mode" msgstr "" @@ -7880,11 +6637,6 @@ msgstr "" msgid "%" msgstr "" -#: nag.cc:41 -#, fuzzy -msgid "Support %1 Development" -msgstr "支æŒArdour的开å‘" - #: nag.cc:42 msgid "I'd like to make a one-time donation" msgstr "我想æ¥ä¸ªä¸€æ¬¡æ€§æèµ " @@ -8028,11 +6780,6 @@ msgid "" msgstr "" " -D, --debug 设置调试标志. 使用 \"-D list\" 显示å¯ç”¨çš„选项\n" -#: opts.cc:66 -#, fuzzy -msgid " -n, --no-splash Do not show splash screen\n" -msgstr " -n, --show-splash 显示欢迎画é¢\n" - #: opts.cc:67 msgid " -m, --menus file Use \"file\" to define menus\n" msgstr " -m, --menus file 使用 \"file\" 定义èœå•\n" @@ -8253,24 +7000,10 @@ msgstr "æ ¹æ®ç±»åˆ«" msgid "Eh? LADSPA plugins don't have editors!" msgstr "呃?LADSPAæ’件没有编辑器" -#: plugin_ui.cc:125 plugin_ui.cc:227 -#, fuzzy -msgid "" -"unknown type of editor-supplying plugin (note: no VST support in this " -"version of %1)" -msgstr "未知类型编辑器æ’ä»¶ (æç¤º: 此版本的Ardour没有VST支æŒ)" - #: plugin_ui.cc:128 msgid "unknown type of editor-supplying plugin" msgstr "未知类型编辑器æ’ä»¶" -#: plugin_ui.cc:257 -#, fuzzy -msgid "" -"unknown type of editor-supplying plugin (note: no linuxVST support in this " -"version of %1)" -msgstr "未知类型编辑器æ’ä»¶ (æç¤º: 此版本的Ardour没有LinuxVST支æŒ)" - #: plugin_ui.cc:329 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "" @@ -8279,11 +7012,6 @@ msgstr "" msgid "Add" msgstr "增添" -#: plugin_ui.cc:421 -#, fuzzy -msgid "Description" -msgstr "æ–¹å‘:" - #: plugin_ui.cc:422 msgid "Plugin analysis" msgstr "æ’件分æž" @@ -8294,11 +7022,6 @@ msgid "" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:430 -#, fuzzy -msgid "Save a new preset" -msgstr "新预设的åç§°" - #: plugin_ui.cc:431 msgid "Save the current preset" msgstr "" @@ -8321,13 +7044,6 @@ msgstr "å•击æ¥å…许此æ’件接å—键盘事件, 这样å­å°±å¯ä»¥æ­£å¸¸åœ° msgid "Click to enable/disable this plugin" msgstr "å•击æ¥å¯ç”¨/ç¦ç”¨æ­¤æ’ä»¶" -#: plugin_ui.cc:506 -#, fuzzy -msgid "latency (%1 sample)" -msgid_plural "latency (%1 samples)" -msgstr[0] "延迟 (%1 采样)" -msgstr[1] "延迟 (%1 采样)" - #: plugin_ui.cc:508 msgid "latency (%1 ms)" msgstr "延迟 (%1 毫秒)" @@ -8416,11 +7132,6 @@ msgstr "MIDI时钟输出" msgid "MMC out" msgstr "MMC输出" -#: port_group.cc:540 -#, fuzzy -msgid ":monitor" -msgstr "监控中" - #: port_group.cc:552 msgid "system:" msgstr "" @@ -8496,13 +7207,6 @@ msgstr "显示å„个端å£" msgid "Flip" msgstr "" -#: port_matrix.cc:723 -#, fuzzy -msgid "" -"It is not possible to add a port here, as the first processor in the track " -"or buss cannot support the new configuration." -msgstr "此端å£ä¸å¯ç§»é™¤, 作为音轨或总线的第一个æ’ä»¶, 䏿ޥ嗿–°çš„输入数目." - #: port_matrix.cc:726 msgid "Cannot add port" msgstr "" @@ -8511,14 +7215,6 @@ msgstr "" msgid "Port removal not allowed" msgstr "ä¸å…许端å£ç§»é™¤" -#: port_matrix.cc:749 -#, fuzzy -msgid "" -"This port cannot be removed.\n" -"Either the first plugin in the track or buss cannot accept\n" -"the new number of inputs or the last plugin has more outputs." -msgstr "此端å£ä¸å¯ç§»é™¤, 作为音轨或总线的第一个æ’ä»¶, 䏿ޥ嗿–°çš„输入数目." - #: port_matrix.cc:966 #, c-format msgid "Remove '%s'" @@ -8554,21 +7250,6 @@ msgid "" "Double-click to show generic GUI." msgstr "" -#: processor_box.cc:372 -#, fuzzy -msgid "Show All Controls" -msgstr "显示所有的自动化" - -#: processor_box.cc:376 -#, fuzzy -msgid "Hide All Controls" -msgstr "éšè—所有自动化" - -#: processor_box.cc:465 -#, fuzzy -msgid "on" -msgstr "完æˆ" - #: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 msgid "off" msgstr "" @@ -8595,40 +7276,12 @@ msgstr "" "\n" "æ­¤æ’ä»¶:\n" -#: processor_box.cc:1209 -#, fuzzy -msgid "\t%1 MIDI input\n" -msgid_plural "\t%1 MIDI inputs\n" -msgstr[0] "\t%1 MIDI inputs\n" -msgstr[1] "\t%1 MIDI inputs\n" - -#: processor_box.cc:1213 -#, fuzzy -msgid "\t%1 audio input\n" -msgid_plural "\t%1 audio inputs\n" -msgstr[0] "\t%1 audio inputs\n" -msgstr[1] "\t%1 audio inputs\n" - #: processor_box.cc:1216 msgid "" "\n" "but at the insertion point, there are:\n" msgstr "" -#: processor_box.cc:1219 -#, fuzzy -msgid "\t%1 MIDI channel\n" -msgid_plural "\t%1 MIDI channels\n" -msgstr[0] "\t%1 MIDI channels\n" -msgstr[1] "\t%1 MIDI channels\n" - -#: processor_box.cc:1223 -#, fuzzy -msgid "\t%1 audio channel\n" -msgid_plural "\t%1 audio channels\n" -msgstr[0] "\t%1 audio channels\n" -msgstr[1] "\t%1 audio channels\n" - #: processor_box.cc:1226 msgid "" "\n" @@ -8727,11 +7380,6 @@ msgstr "" msgid "Activate All" msgstr "激活所有" -#: processor_box.cc:2246 -#, fuzzy -msgid "Deactivate All" -msgstr "å–æ¶ˆæ¿€æ´»æ‰€æœ‰" - #: processor_box.cc:2248 msgid "A/B Plugins" msgstr "A/B æ’ä»¶" @@ -8840,11 +7488,6 @@ msgstr "用于删除:" msgid "Insert note using:" msgstr "用户æ’入音符:" -#: rc_option_editor.cc:395 -#, fuzzy -msgid "Ignore snap using:" -msgstr "用于切æ¢ç®¡ç†å•å…ƒ:" - #: rc_option_editor.cc:411 msgid "Keyboard layout:" msgstr "键盘布局:" @@ -8861,11 +7504,6 @@ msgstr "回放(缓冲的秒数):" msgid "Recording (seconds of buffering):" msgstr "录音(缓冲的秒数):" -#: rc_option_editor.cc:656 -#, fuzzy -msgid "Control Surface Protocol" -msgstr "控制表é¢" - #: rc_option_editor.cc:660 msgid "Feedback" msgstr "å馈" @@ -8903,11 +7541,6 @@ msgid "" "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:836 -#, fuzzy -msgid "Video Folder:" -msgstr "文件:" - #: rc_option_editor.cc:841 msgid "" "Local path to the video-server document-root. Only files below this " @@ -8957,11 +7590,6 @@ msgstr "ï¼…1 处ç†å™¨" msgid "This setting will only take effect when %1 is restarted." msgstr "" -#: rc_option_editor.cc:1025 -#, fuzzy -msgid "Options|Undo" -msgstr "选项" - #: rc_option_editor.cc:1032 msgid "Verify removal of last capture" msgstr "确认移除最åŽçš„录音" @@ -8970,29 +7598,14 @@ msgstr "确认移除最åŽçš„录音" msgid "Make periodic backups of the session file" msgstr "å®šæœŸå¤‡ä»½ä¼šè¯æ–‡ä»¶" -#: rc_option_editor.cc:1045 -#, fuzzy -msgid "Session Management" -msgstr "会è¯åç§°:" - #: rc_option_editor.cc:1050 msgid "Always copy imported files" msgstr "总是å¤åˆ¶å¯¼å…¥çš„æ–‡ä»¶" -#: rc_option_editor.cc:1057 -#, fuzzy -msgid "Default folder for new sessions:" -msgstr "ä¼šè¯æ–‡ä»¶é»˜è®¤çš„æ–‡ä»¶å¤¹" - #: rc_option_editor.cc:1065 msgid "Maximum number of recent sessions" msgstr "" -#: rc_option_editor.cc:1078 -#, fuzzy -msgid "Click gain level" -msgstr "å•击音频文件:" - #: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "自动化" @@ -9096,11 +7709,6 @@ msgid "" "external timecode standard and the session standard." msgstr "" -#: rc_option_editor.cc:1211 -#, fuzzy -msgid "External timecode is sync locked" -msgstr "å¤–éƒ¨æ—¶é—´ç æº" - #: rc_option_editor.cc:1217 msgid "" "When enabled indicates that the selected external timecode source " @@ -9132,16 +7740,6 @@ msgstr "" msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1257 -#, fuzzy -msgid "LTC Generator" -msgstr "创建者" - -#: rc_option_editor.cc:1262 -#, fuzzy -msgid "Enable LTC generator" -msgstr "Povolit pÅ™eklady" - #: rc_option_editor.cc:1269 msgid "send LTC while stopped" msgstr "" @@ -9152,11 +7750,6 @@ msgid "" "transport (playhead) is not moving" msgstr "" -#: rc_option_editor.cc:1281 -#, fuzzy -msgid "LTC generator level" -msgstr "创建者" - #: rc_option_editor.cc:1285 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " @@ -9183,11 +7776,6 @@ msgstr "" msgid "Regions in active edit groups are edited together" msgstr "" -#: rc_option_editor.cc:1329 -#, fuzzy -msgid "whenever they overlap in time" -msgstr "缩短已存在的新音符" - #: rc_option_editor.cc:1330 msgid "only if they have identical length, position and origin" msgstr "" @@ -9200,11 +7788,6 @@ msgstr "" msgid "Show waveforms in regions" msgstr "显示区域的波形" -#: rc_option_editor.cc:1356 -#, fuzzy -msgid "Show gain envelopes in audio regions" -msgstr "显示区域的波形" - #: rc_option_editor.cc:1357 msgid "in all modes" msgstr "" @@ -9357,11 +7940,6 @@ msgstr "" msgid "use FlushToZero and DenormalsAreZero" msgstr "" -#: rc_option_editor.cc:1563 -#, fuzzy -msgid "Silence plugins when the transport is stopped" -msgstr "当è¿è¾“åœæ­¢æ—¶åœæ­¢æ’ä»¶" - #: rc_option_editor.cc:1571 msgid "Make new plugins active" msgstr "å¯ç”¨æ–°æ’ä»¶" @@ -9498,16 +8076,6 @@ msgstr "" msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "" -#: rc_option_editor.cc:1802 -#, fuzzy -msgid "Sound MIDI notes as they are selected" -msgstr "没有选择MIDI通é“" - -#: rc_option_editor.cc:1810 rc_option_editor.cc:1820 rc_option_editor.cc:1822 -#, fuzzy -msgid "User interaction" -msgstr "区域æ“作" - #: rc_option_editor.cc:1813 msgid "" "Use translations of %1 messages\n" @@ -9535,15 +8103,6 @@ msgstr "混音器的如下顺åº" msgid "follows order of editor" msgstr "编辑器的如下顺åº" -#: rc_option_editor.cc:1846 rc_option_editor.cc:1854 rc_option_editor.cc:1864 -#: rc_option_editor.cc:1885 rc_option_editor.cc:1894 rc_option_editor.cc:1902 -#: rc_option_editor.cc:1916 rc_option_editor.cc:1935 rc_option_editor.cc:1951 -#: rc_option_editor.cc:1967 rc_option_editor.cc:1981 rc_option_editor.cc:1995 -#: rc_option_editor.cc:1997 -#, fuzzy -msgid "Preferences|GUI" -msgstr "首选项" - #: rc_option_editor.cc:1849 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "" @@ -9560,20 +8119,10 @@ msgstr "" msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" -#: rc_option_editor.cc:1887 -#, fuzzy -msgid "Mixer Strip" -msgstr "混音器" - #: rc_option_editor.cc:1897 msgid "Use narrow strips in the mixer by default" msgstr "" -#: rc_option_editor.cc:1906 -#, fuzzy -msgid "Peak hold time" -msgstr "峰阈值" - #: rc_option_editor.cc:1912 msgid "short" msgstr "短" @@ -9586,11 +8135,6 @@ msgstr "中" msgid "long" msgstr "é•¿" -#: rc_option_editor.cc:1920 -#, fuzzy -msgid "DPM fall-off" -msgstr "标尺衰å‡" - #: rc_option_editor.cc:1926 msgid "slowest [6.6dB/sec]" msgstr "" @@ -9677,11 +8221,6 @@ msgstr "" msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1985 -#, fuzzy -msgid "Peak threshold [dBFS]" -msgstr "峰阈值" - #: rc_option_editor.cc:1993 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " @@ -9780,13 +8319,6 @@ msgstr "毫秒数" msgid "secs" msgstr "ç§’æ•°" -#: region_view.cc:299 -#, fuzzy -msgid "%1 silent segment" -msgid_plural "%1 silent segments" -msgstr[0] "%1 silent segments" -msgstr[1] "%1 silent segments" - #: region_view.cc:301 msgid "shortest = %1 %2" msgstr "最短 = %1 %2" @@ -9803,16 +8335,6 @@ msgstr "" msgid "Return " msgstr "返回" -#: rhythm_ferret.cc:49 -#, fuzzy -msgid "Percussive Onset" -msgstr "百分比 '%'" - -#: rhythm_ferret.cc:50 -#, fuzzy -msgid "Note Onset" -msgstr "音符范围" - #: rhythm_ferret.cc:55 msgid "Energy Based" msgstr "" @@ -9829,11 +8351,6 @@ msgstr "" msgid "Complex Domain" msgstr "" -#: rhythm_ferret.cc:59 -#, fuzzy -msgid "Phase Deviation" -msgstr "播放列表删除" - #: rhythm_ferret.cc:60 msgid "Kullback-Liebler" msgstr "" @@ -9842,21 +8359,6 @@ msgstr "" msgid "Modified Kullback-Liebler" msgstr "" -#: rhythm_ferret.cc:66 -#, fuzzy -msgid "Split region" -msgstr "分离区域" - -#: rhythm_ferret.cc:67 -#, fuzzy -msgid "Snap regions" -msgstr "分离区域" - -#: rhythm_ferret.cc:68 -#, fuzzy -msgid "Conform regions" -msgstr "标准化区域" - #: rhythm_ferret.cc:73 msgid "Rhythm Ferret" msgstr "èŠ‚å¥æœç´¢" @@ -9921,20 +8423,10 @@ msgstr "å¯ç”¨å½•音" msgid "Selection" msgstr "" -#: route_group_dialog.cc:46 -#, fuzzy -msgid "Active state" -msgstr "激活" - #: route_group_dialog.cc:47 route_group_dialog.cc:76 theme_manager.cc:71 msgid "Color" msgstr "颜色" -#: route_group_dialog.cc:53 -#, fuzzy -msgid "RouteGroupDialog" -msgstr "æ¸…ç©ºå¯¹è¯æ¡†" - #: route_group_dialog.cc:92 msgid "Sharing" msgstr "共享中" @@ -10001,11 +8493,6 @@ msgstr "录制" msgid "Route Group" msgstr "" -#: route_time_axis.cc:213 -#, fuzzy -msgid "MIDI Controllers and Automation" -msgstr "MIDI控制输入" - #: route_time_axis.cc:390 msgid "Show All Automation" msgstr "显示所有的自动化" @@ -10018,11 +8505,6 @@ msgstr "显示已有的自动化" msgid "Hide All Automation" msgstr "éšè—所有自动化" -#: route_time_axis.cc:405 -#, fuzzy -msgid "Processor automation" -msgstr "清除自动化" - #: route_time_axis.cc:424 msgid "Color..." msgstr "颜色..." @@ -10343,16 +8825,6 @@ msgid "" "The remote control ID of %3 cannot be changed." msgstr "" -#: route_ui.cc:1816 -#, fuzzy -msgid "the master bus" -msgstr "创建主控总线" - -#: route_ui.cc:1816 -#, fuzzy -msgid "the monitor bus" -msgstr "创建主控总线" - #: route_ui.cc:1818 msgid "" "The remote control ID of %6 is: %3\n" @@ -10364,16 +8836,6 @@ msgid "" "change this%5" msgstr "" -#: route_ui.cc:1821 -#, fuzzy -msgid "the mixer" -msgstr "混音师" - -#: route_ui.cc:1821 -#, fuzzy -msgid "the editor" -msgstr "高度" - #: route_ui.cc:1876 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " @@ -10432,11 +8894,6 @@ msgstr "" msgid "Values (current value on top)" msgstr "" -#: session_metadata_dialog.cc:520 -#, fuzzy -msgid "User" -msgstr "用户:" - #: session_metadata_dialog.cc:528 msgid "Email" msgstr "" @@ -10445,16 +8902,6 @@ msgstr "" msgid "Web" msgstr "" -#: session_metadata_dialog.cc:534 -#, fuzzy -msgid "Organization" -msgstr "组织代ç " - -#: session_metadata_dialog.cc:537 -#, fuzzy -msgid "Country" -msgstr "国家代ç " - #: session_metadata_dialog.cc:551 msgid "Title" msgstr "标题" @@ -10559,11 +9006,6 @@ msgstr "" msgid "DJ Mixer" msgstr "" -#: session_metadata_dialog.cc:646 -#, fuzzy -msgid "Metadata|Mixer" -msgstr "元数æ®" - #: session_metadata_dialog.cc:654 msgid "School" msgstr "" @@ -10622,11 +9064,6 @@ msgstr "23.976" msgid "24" msgstr "24" -#: session_option_editor.cc:52 -#, fuzzy -msgid "24.975" -msgstr "24.976" - #: session_option_editor.cc:53 msgid "25" msgstr "25" @@ -10706,25 +9143,10 @@ msgid "" "Apply Pull-Up/Down to Video Timeline and Video Monitor (Unless in JACK-sync)." msgstr "" -#: session_option_editor.cc:96 -#, fuzzy -msgid "Ext Timecode Offsets" -msgstr "æ—¶é—´ç ä¾¿å®œ" - -#: session_option_editor.cc:100 -#, fuzzy -msgid "Slave Timecode offset" -msgstr "æ—¶é—´ç ä¾¿å®œ" - #: session_option_editor.cc:107 msgid "The specified offset is added to the received timecode (MTC or LTC)." msgstr "" -#: session_option_editor.cc:113 -#, fuzzy -msgid "Timecode Generator offset" -msgstr "æ—¶é—´ç ä¾¿å®œ" - #: session_option_editor.cc:120 msgid "" "Specify an offset which is added to the generated timecode (so far only LTC)." @@ -10739,11 +9161,6 @@ msgid "" "%1 is JACK Time Master (provides Bar|Beat|Tick and other information to JACK)" msgstr "" -#: session_option_editor.cc:137 -#, fuzzy -msgid "Default crossfade type" -msgstr "销æ¯äº¤å‰æ·¡å…¥æ·¡å‡ºé•¿åº¦" - #: session_option_editor.cc:142 msgid "Constant power (-3dB) crossfade" msgstr "" @@ -10827,24 +9244,10 @@ msgid "" "Track Input Monitoring automatically follows transport state (\"auto-input\")" msgstr "" -#: session_option_editor.cc:227 -#, fuzzy -msgid "Use monitor section in this session" -msgstr "我想è¦å…³äºŽè¿™ä¸ªä¼šè¯çš„æ›´å¤šé€‰é¡¹" - #: session_option_editor.cc:238 msgid "MIDI region copies are independent" msgstr "" -#: session_option_editor.cc:245 -#, fuzzy -msgid "" -"Policy for handling overlapping notes\n" -" on the same MIDI channel" -msgstr "" -"处ç†ç›¸åŒéŸ³ç¬¦å’Œ\n" -"声é“é‡å çš„ç­–ç•¥" - #: session_option_editor.cc:250 msgid "never allow them" msgstr "从ä¸å…许" @@ -10881,62 +9284,18 @@ msgstr "" msgid "Glue new regions to bars and beats" msgstr "" -#: session_option_editor.cc:275 session_option_editor.cc:277 -#: session_option_editor.cc:284 session_option_editor.cc:291 -#: session_option_editor.cc:298 session_option_editor.cc:300 -#: session_option_editor.cc:307 session_option_editor.cc:314 -#: session_option_editor.cc:321 session_option_editor.cc:323 -#, fuzzy -msgid "Meterbridge" -msgstr "标尺" - #: session_option_editor.cc:275 msgid "Route Display" msgstr "" -#: session_option_editor.cc:279 -#, fuzzy -msgid "Show Midi Tracks" -msgstr "显示所有MIDI轨" - -#: session_option_editor.cc:286 -#, fuzzy -msgid "Show Busses" -msgstr "总线" - -#: session_option_editor.cc:293 -#, fuzzy -msgid "Include Master Bus" -msgstr "创建主控总线" - #: session_option_editor.cc:298 msgid "Button Area" msgstr "" -#: session_option_editor.cc:302 -#, fuzzy -msgid "Rec-enable Button" -msgstr "å¯ç”¨å½•音" - -#: session_option_editor.cc:309 -#, fuzzy -msgid "Mute Button" -msgstr "+按钮" - -#: session_option_editor.cc:316 -#, fuzzy -msgid "Solo Button" -msgstr "独å¥/é™éŸ³" - #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" -#: session_option_editor.cc:325 -#, fuzzy -msgid "Track Name" -msgstr "音轨/总线" - #: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 msgid "as new tracks" msgstr "" @@ -10997,11 +9356,6 @@ msgstr "" msgid "Search" msgstr "æœç´¢" -#: sfdb_ui.cc:449 -#, fuzzy -msgid "Audio and MIDI files" -msgstr "音频文件" - #: sfdb_ui.cc:452 msgid "Audio files" msgstr "音频文件" @@ -11026,26 +9380,6 @@ msgstr "路径" msgid "Search Tags" msgstr "æœç´¢æ ‡ç­¾" -#: sfdb_ui.cc:531 -#, fuzzy -msgid "Sort:" -msgstr "æ•´ç†" - -#: sfdb_ui.cc:539 -#, fuzzy -msgid "Longest" -msgstr "最大的" - -#: sfdb_ui.cc:540 -#, fuzzy -msgid "Shortest" -msgstr "å¿«æ·é”®" - -#: sfdb_ui.cc:541 -#, fuzzy -msgid "Newest" -msgstr "最慢" - #: sfdb_ui.cc:542 msgid "Oldest" msgstr "" @@ -11054,11 +9388,6 @@ msgstr "" msgid "Most downloaded" msgstr "" -#: sfdb_ui.cc:544 -#, fuzzy -msgid "Least downloaded" -msgstr "开始下载" - #: sfdb_ui.cc:545 msgid "Highest rated" msgstr "" @@ -11075,31 +9404,6 @@ msgstr "" msgid "Similar" msgstr "" -#: sfdb_ui.cc:567 -#, fuzzy -msgid "ID" -msgstr "MIDI" - -#: sfdb_ui.cc:568 add_video_dialog.cc:84 -#, fuzzy -msgid "Filename" -msgstr "é‡å‘½å" - -#: sfdb_ui.cc:570 -#, fuzzy -msgid "Duration" -msgstr "æŒç»­æ—¶é—´(ç§’)" - -#: sfdb_ui.cc:571 -#, fuzzy -msgid "Size" -msgstr "最大化尺寸" - -#: sfdb_ui.cc:572 -#, fuzzy -msgid "Samplerate" -msgstr "采样率" - #: sfdb_ui.cc:573 msgid "License" msgstr "" @@ -11214,21 +9518,6 @@ msgstr "开始会è¯" msgid "Add files as ..." msgstr "" -#: sfdb_ui.cc:1581 -#, fuzzy -msgid "Insert at" -msgstr "æ’入于:" - -#: sfdb_ui.cc:1594 -#, fuzzy -msgid "Mapping" -msgstr "共享中" - -#: sfdb_ui.cc:1612 -#, fuzzy -msgid "Conversion quality" -msgstr "采样率转æ¢è´¨é‡" - #: sfdb_ui.cc:1624 sfdb_ui.cc:1730 msgid "Best" msgstr "最佳质é‡" @@ -11303,29 +9592,10 @@ msgstr "èµ·åˆæ‰¬å£°å™¨" msgid "Azimuth:" msgstr "" -#: startup.cc:72 -#, fuzzy -msgid "Create a new session" -msgstr "打开一个新建的会è¯" - #: startup.cc:73 msgid "Open an existing session" msgstr "打开一个已存在的会è¯" -#: startup.cc:74 -#, fuzzy -msgid "" -"Use an external mixer or the hardware mixer of your audio interface.\n" -"%1 will play NO role in monitoring" -msgstr "" -"用一个外部的混音器或者音频接å£çš„硬件混音器.\n" -"Ardour将没有控制作用." - -#: startup.cc:76 -#, fuzzy -msgid "Ask %1 to play back material as it is being recorded" -msgstr "当 %1 录音时, 询问回放介质" - #: startup.cc:79 msgid "I'd like more options for this session" msgstr "我想è¦å…³äºŽè¿™ä¸ªä¼šè¯çš„æ›´å¤šé€‰é¡¹" @@ -11355,31 +9625,10 @@ msgid "" " http://ardour.org/support\n" msgstr "" -#: startup.cc:218 -#, fuzzy -msgid "This is a BETA RELEASE" -msgstr "这是Alpha版" - #: startup.cc:324 msgid "Audio / MIDI Setup" msgstr "音频/MIDI设置" -#: startup.cc:336 -#, fuzzy -msgid "" -"%1 is a digital audio workstation. You can use it to " -"record, edit and mix multi-track audio. You can produce your own CDs, mix " -"video soundtracks, or experiment with new ideas about music and sound. \n" -"\n" -"There are a few things that need to be configured before you start using the " -"program. " -msgstr "" -"%1 是一个数字音频工作站. ä½ å¯ä»¥ç”¨å®ƒ\n" -"在一个多轨的音频文件录音, 编辑和混音. ä½ å¯ä»¥åˆ¶ä½œä½ è‡ªå·±çš„CD\n" -"在视频中æ’入音轨, æˆ–ä»…ä»…å®žçŽ°å…³äºŽéŸ³ä¹æˆ–声音的新点å­\n" -"\n" -"在开始用这个程åºä¹‹å‰å¾—å…ˆé…置一些东西." - #: startup.cc:362 msgid "Welcome to %1" msgstr "欢迎进入 %1" @@ -11408,27 +9657,6 @@ msgstr "" msgid "Default folder for new sessions" msgstr "ä¼šè¯æ–‡ä»¶é»˜è®¤çš„æ–‡ä»¶å¤¹" -#: startup.cc:436 -#, fuzzy -msgid "" -"While recording instruments or vocals, you probably want to listen to the\n" -"signal as well as record it. This is called \"monitoring\". There are\n" -"different ways to do this depending on the equipment you have and the\n" -"configuration of that equipment. The two most common are presented here.\n" -"Please choose whichever one is right for your setup.\n" -"\n" -"(You can change this preference at any time, via the Preferences dialog)\n" -"\n" -"If you do not understand what this is about, just accept the default." -msgstr "" -"å½“å½•åˆ¶å™¨ä¹æˆ–声乿—¶, ä½ å¯èƒ½æƒ³åœ¨å½•制的时候å¬å½•制åŽçš„ä¿¡å·.\n" -"è¿™å«åš \"检控\". 其实有很多检测的方法,\n" -"但å–决于你的设备和设备的é…ç½®. è¿™é‡Œæœ‰ä¸¤ç§æœ€å¸¸ç”¨çš„æ–¹æ³•\n" -"请针对你的设置选择一ç§.\n" -"\n" -"(ä½ å¯ä»¥é€šè¿‡é¦–é€‰é¡¹å¯¹è¯æ¡†éšæ—¶æ”¹å˜è¿™ä¸ªé¦–选项)" - #: startup.cc:457 msgid "Monitoring Choices" msgstr "检控选择" @@ -11437,15 +9665,6 @@ msgstr "检控选择" msgid "Use a Master bus directly" msgstr "直接用主控总线" -#: startup.cc:482 -#, fuzzy -msgid "" -"Connect the Master bus directly to your hardware outputs. This is preferable " -"for simple usage." -msgstr "" -"直接连接主控总线到硬件输出.\n" -"适åˆäºŽç®€å•的使用." - #: startup.cc:491 msgid "Use an additional Monitor bus" msgstr "用一个é¢å¤–的主控总线" @@ -11546,11 +9765,6 @@ msgstr "输出" msgid "Create master bus" msgstr "创建主控总线" -#: startup.cc:1165 -#, fuzzy -msgid "Automatically connect to physical inputs" -msgstr "自动连接物ç†è¾“å…¥" - #: startup.cc:1172 startup.cc:1231 msgid "Use only" msgstr "仅使用" @@ -11960,16 +10174,6 @@ msgstr "é€šè¿‡éŸ³ç¬¦é•¿åº¦ä¿æŒé€‰æ‹©éŸ³ç¬¦" msgid "L:%3d R:%3d Width:%d%%" msgstr "" -#: stereo_panner_editor.cc:35 -#, fuzzy -msgid "Stereo Panner" -msgstr "åŒå£°é“" - -#: stereo_panner_editor.cc:49 -#, fuzzy -msgid "Width" -msgstr "宽度" - #: strip_silence_dialog.cc:48 msgid "Strip Silence" msgstr "剥去沉默" @@ -11990,58 +10194,6 @@ msgstr "å°èŠ‚:" msgid "beat:" msgstr "æ‹å­:" -#: tempo_dialog.cc:45 tempo_dialog.cc:60 -#, fuzzy -msgid "Pulse note" -msgstr "删除音符" - -#: tempo_dialog.cc:55 -#, fuzzy -msgid "Edit Tempo" -msgstr "编辑点" - -#: tempo_dialog.cc:76 tempo_dialog.cc:77 tempo_dialog.cc:282 -#: tempo_dialog.cc:283 -#, fuzzy -msgid "whole" -msgstr "全分(1)" - -#: tempo_dialog.cc:78 tempo_dialog.cc:79 tempo_dialog.cc:284 -#: tempo_dialog.cc:285 -#, fuzzy -msgid "second" -msgstr "1ç§’" - -#: tempo_dialog.cc:80 tempo_dialog.cc:81 tempo_dialog.cc:286 -#: tempo_dialog.cc:287 -#, fuzzy -msgid "third" -msgstr "三分(3)" - -#: tempo_dialog.cc:82 tempo_dialog.cc:83 tempo_dialog.cc:288 -#: tempo_dialog.cc:289 -#, fuzzy -msgid "quarter" -msgstr "四分(4)" - -#: tempo_dialog.cc:84 tempo_dialog.cc:85 tempo_dialog.cc:290 -#: tempo_dialog.cc:291 -#, fuzzy -msgid "eighth" -msgstr "高度" - -#: tempo_dialog.cc:86 tempo_dialog.cc:87 tempo_dialog.cc:292 -#: tempo_dialog.cc:293 -#, fuzzy -msgid "sixteenth" -msgstr "å六分(16)" - -#: tempo_dialog.cc:88 tempo_dialog.cc:89 tempo_dialog.cc:294 -#: tempo_dialog.cc:295 -#, fuzzy -msgid "thirty-second" -msgstr "三å二分(32)" - #: tempo_dialog.cc:90 tempo_dialog.cc:91 tempo_dialog.cc:296 #: tempo_dialog.cc:297 msgid "sixty-fourth" @@ -12064,11 +10216,6 @@ msgstr "节å¥å¼€å§‹äºŽ" msgid "incomprehensible pulse note type (%1)" msgstr "" -#: tempo_dialog.cc:266 -#, fuzzy -msgid "Edit Meter" -msgstr "编辑模å¼" - #: tempo_dialog.cc:314 msgid "Note value:" msgstr "音符值:" @@ -12105,11 +10252,6 @@ msgstr "" msgid "All floating windows are dialogs" msgstr "" -#: theme_manager.cc:62 -#, fuzzy -msgid "Draw waveforms with color gradient" -msgstr "显示区域的波形" - #: theme_manager.cc:68 msgid "Object" msgstr "对象" @@ -12272,16 +10414,6 @@ msgstr "" msgid "VerboseCanvasCursor" msgstr "" -#: add_video_dialog.cc:55 -#, fuzzy -msgid "Set Video Track" -msgstr "添加音频音轨" - -#: add_video_dialog.cc:63 -#, fuzzy -msgid "Launch External Video Monitor" -msgstr "监控中" - #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -12294,26 +10426,6 @@ msgstr "" msgid "VideoServerIndex" msgstr "" -#: add_video_dialog.cc:129 -#, fuzzy -msgid "Video files" -msgstr "音频文件" - -#: add_video_dialog.cc:164 -#, fuzzy -msgid "Video Information" -msgstr "声音文件信æ¯" - -#: add_video_dialog.cc:167 -#, fuzzy -msgid "Start:" -msgstr "开始" - -#: add_video_dialog.cc:173 -#, fuzzy -msgid "Frame rate:" -msgstr "采样率:" - #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -12359,11 +10471,6 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" -#: video_monitor.cc:281 -#, fuzzy -msgid "Video Monitor: File Not Found." -msgstr "监控中" - #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -12380,25 +10487,10 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:56 -#, fuzzy -msgid "Transcode/Import Video File " -msgstr "导出为音频文件..." - -#: transcode_video_dialog.cc:58 -#, fuzzy -msgid "Output File:" -msgstr "输出设备:" - #: transcode_video_dialog.cc:61 export_video_dialog.cc:73 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:63 -#, fuzzy -msgid "Height = " -msgstr "高度" - #: transcode_video_dialog.cc:66 msgid "Manual Override" msgstr "" @@ -12407,11 +10499,6 @@ msgstr "" msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:107 -#, fuzzy -msgid "File Information" -msgstr "声音文件信æ¯" - #: transcode_video_dialog.cc:113 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " @@ -12429,11 +10516,6 @@ msgstr "" msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:136 -#, fuzzy -msgid "Duration:" -msgstr "æŒç»­æ—¶é—´(ç§’)" - #: transcode_video_dialog.cc:138 msgid "Codec:" msgstr "" @@ -12442,16 +10524,6 @@ msgstr "" msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:155 -#, fuzzy -msgid "??" -msgstr "???" - -#: transcode_video_dialog.cc:176 -#, fuzzy -msgid "Import Settings" -msgstr "选项" - #: transcode_video_dialog.cc:181 msgid "Do Not Import Video" msgstr "" @@ -12460,11 +10532,6 @@ msgstr "" msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:184 -#, fuzzy -msgid "Import/Transcode Video to Session" -msgstr "从会è¯å¯¼å…¥" - #: transcode_video_dialog.cc:198 msgid "Scale Video: Width = " msgstr "" @@ -12477,16 +10544,6 @@ msgstr "" msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:225 -#, fuzzy -msgid "Extract Audio:" -msgstr "导出音频" - -#: transcode_video_dialog.cc:345 -#, fuzzy -msgid "Extracting Audio.." -msgstr "导出音频" - #: transcode_video_dialog.cc:348 msgid "Audio Extraction Failed." msgstr "" @@ -12495,16 +10552,6 @@ msgstr "" msgid "Transcoding Video.." msgstr "" -#: transcode_video_dialog.cc:408 -#, fuzzy -msgid "Transcoding Failed." -msgstr "å¼€å¯ç¿»è¯‘功能" - -#: transcode_video_dialog.cc:491 -#, fuzzy -msgid "Save Transcoded Video File" -msgstr "导出为音频文件..." - #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -12513,11 +10560,6 @@ msgstr "" msgid "Server Executable:" msgstr "" -#: video_server_dialog.cc:46 -#, fuzzy -msgid "Server Docroot:" -msgstr "æœåС噍:" - #: video_server_dialog.cc:52 msgid "Don't show this dialog again. (Reset in Edit->Preferences)." msgstr "" @@ -12537,11 +10579,6 @@ msgstr "" msgid "Listen Port:" msgstr "" -#: video_server_dialog.cc:130 -#, fuzzy -msgid "Cache Size:" -msgstr "最大化尺寸" - #: video_server_dialog.cc:136 msgid "" "%1 relies on an external Video Server for the videotimeline.\n" @@ -12571,31 +10608,6 @@ msgstr "" msgid "Continue" msgstr "" -#: utils_videotl.cc:63 -#, fuzzy -msgid "Confirm Overwrite" -msgstr "确定覆盖快照" - -#: utils_videotl.cc:64 -#, fuzzy -msgid "A file with the same name already exists. Do you want to overwrite it?" -msgstr "已存在åŒåå¿«ç…§. 覆盖之?" - -#: utils_videotl.cc:74 utils_videotl.cc:90 -#, fuzzy -msgid "Cannot create video folder \"%1\" (%2)" -msgstr "无法创建用户Ardour文件夹 %1 (%2)" - -#: export_video_dialog.cc:66 -#, fuzzy -msgid "Export Video File " -msgstr "导出为音频文件..." - -#: export_video_dialog.cc:70 -#, fuzzy -msgid "Video:" -msgstr "开始" - #: export_video_dialog.cc:74 msgid "Scale Video (W x H):" msgstr "" @@ -12604,11 +10616,6 @@ msgstr "" msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:80 -#, fuzzy -msgid "Normalize Audio" -msgstr "标准化到:" - #: export_video_dialog.cc:81 msgid "2 Pass Encoding" msgstr "" @@ -12629,11 +10636,6 @@ msgstr "" msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:87 -#, fuzzy -msgid "Include Session Metadata" -msgstr "标记会è¯å…ƒæ•°æ®" - #: export_video_dialog.cc:107 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " @@ -12641,26 +10643,6 @@ msgid "" "information." msgstr "" -#: export_video_dialog.cc:117 -#, fuzzy -msgid "Output:" -msgstr "输出" - -#: export_video_dialog.cc:127 -#, fuzzy -msgid "Input:" -msgstr "输入" - -#: export_video_dialog.cc:138 -#, fuzzy -msgid "Audio:" -msgstr "音频" - -#: export_video_dialog.cc:140 -#, fuzzy -msgid "Master Bus" -msgstr "创建主控总线" - #: export_video_dialog.cc:145 msgid "from the %1 session's start to the session's end" msgstr "" @@ -12673,61 +10655,6 @@ msgstr "" msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:184 -#, fuzzy -msgid "Settings:" -msgstr "目的地" - -#: export_video_dialog.cc:192 -#, fuzzy -msgid "Range:" -msgstr "范围" - -#: export_video_dialog.cc:195 -#, fuzzy -msgid "Preset:" -msgstr "预设" - -#: export_video_dialog.cc:198 -#, fuzzy -msgid "Video Codec:" -msgstr "文件:" - -#: export_video_dialog.cc:201 -#, fuzzy -msgid "Video KBit/s:" -msgstr "开始" - -#: export_video_dialog.cc:204 -#, fuzzy -msgid "Audio Codec:" -msgstr "音频模å¼:" - -#: export_video_dialog.cc:207 -#, fuzzy -msgid "Audio KBit/s:" -msgstr "音频文件" - -#: export_video_dialog.cc:210 -#, fuzzy -msgid "Audio Samplerate:" -msgstr "采样率:" - -#: export_video_dialog.cc:387 -#, fuzzy -msgid "Normalizing audio" -msgstr "归一化值" - -#: export_video_dialog.cc:391 -#, fuzzy -msgid "Exporting audio" -msgstr "导出音频" - -#: export_video_dialog.cc:437 -#, fuzzy -msgid "Exporting Audio..." -msgstr "导出音频" - #: export_video_dialog.cc:494 msgid "" "Export Video: Cannot query duration of video-file, using duration from " @@ -12738,11 +10665,6 @@ msgstr "" msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" -#: export_video_dialog.cc:562 -#, fuzzy -msgid "Encoding Video..." -msgstr "å¼€å¯ç¿»è¯‘功能" - #: export_video_dialog.cc:581 msgid "Export Video: Video input file cannot be read." msgstr "" @@ -12755,21 +10677,6 @@ msgstr "" msgid "Encoding Video.. Pass 2/2" msgstr "" -#: export_video_dialog.cc:779 -#, fuzzy -msgid "Transcoding failed." -msgstr "å¼€å¯ç¿»è¯‘功能" - -#: export_video_dialog.cc:948 export_video_dialog.cc:968 -#, fuzzy -msgid "Save Exported Video File" -msgstr "导出为音频文件..." - -#: export_video_infobox.cc:30 -#, fuzzy -msgid "Video Export Info" -msgstr "监控中" - #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -12786,403 +10693,3 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" - -#~ msgid "slowest" -#~ msgstr "最慢" - -#~ msgid "slow" -#~ msgstr "æ…¢" - -#~ msgid "fast" -#~ msgstr "å¿«" - -#~ msgid "faster" -#~ msgstr "较快" - -#~ msgid "fastest" -#~ msgstr "最快" - -#~ msgid "What would you like to do ?" -#~ msgstr "你想干什么?" - -#~ msgid "Connect" -#~ msgstr "连接" - -#~ msgid "Mixer on Top" -#~ msgstr "混音器(置顶)" - -#~ msgid "Add Audio Track" -#~ msgstr "添加音频音轨" - -#~ msgid "Add Audio Bus" -#~ msgstr "添加音频总线" - -#~ msgid "Add MIDI Track" -#~ msgstr "添加MIDI音轨" - -#~ msgid "Control surfaces" -#~ msgstr "控制表é¢" - -#~ msgid "Hid" -#~ msgstr "éš" - -#~ msgid "Translations disabled" -#~ msgstr "å–æ¶ˆç¿»è¯‘功能" - -#~ msgid "You must restart %1 for this to take effect." -#~ msgstr "请é‡å¯ %1 使之生效." - -#~ msgid "Enable Translations" -#~ msgstr "Povolit pÅ™eklady" - -#~ msgid "Locate to Range Mark" -#~ msgstr "定ä½åˆ°èŒƒå›´æ ‡è®°" - -#~ msgid "Play from Range Mark" -#~ msgstr "从范围标记播放" - -#~ msgid "Playback/Recording on 1 Device" -#~ msgstr "在一个设备上回放/录音" - -#~ msgid "Playback/Recording on 2 Devices" -#~ msgstr "在两个设备上回放/录音" - -#~ msgid "Channel:" -#~ msgstr "声é“" - -#~ msgid "Use overlap equivalency for regions" -#~ msgstr "区域使用é‡å ç­‰åŒ" - -#~ msgid "Use a monitor bus (allows AFL/PFL and more control)" -#~ msgstr "使用监视总线 (å…许AFL/PFL和更多的控制)" - -#~ msgid "Subframes per frame" -#~ msgstr "æ¯å¸§çš„å­å¸§æ•°" - -#~ msgid "80" -#~ msgstr "80" - -#~ msgid "100" -#~ msgstr "100" - -#, fuzzy -#~ msgid "could not create a new mixed track" -#~ msgstr "无法创建新的MIDI音轨" - -#, fuzzy -#~ msgid "could not create new audio bus" -#~ msgid_plural "could not create %1 new audio busses" -#~ msgstr[0] "无法新建音频总线" -#~ msgstr[1] "无法新建音频总线" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were not in use and \n" -#~ "have been moved to: %2\n" -#~ "\n" -#~ "After a restart of %5\n" -#~ "\n" -#~ "Session -> Clean-up -> Flush Wastebasket\n" -#~ "\n" -#~ "will release an additional %3 %4bytes of disk space.\n" -#~ msgstr "" -#~ "以下文件 %1 没被用到,\n" -#~ "并且被移动到:\n" -#~ "\n" -#~ "%2\n" -#~ "\n" -#~ "é‡å¯ArdouråŽ\n" -#~ "\n" -#~ "ä¼šè¯ -> 清空 -> 回收站\n" -#~ "\n" -#~ "将会释放é¢å¤–çš„\n" -#~ "%3 %4bytes çš„ç£ç›˜ç©ºé—´.\n" - -#, fuzzy -#~ msgid "" -#~ "The following %1 files were deleted from %2,\n" -#~ "releasing %3 %4bytes of disk space" -#~ msgstr "" -#~ "下列文件 %1 被删除于\n" -#~ "%2,\n" -#~ "释放出 %3 %4 bytes çš„ç£ç›˜ç©ºé—´" - -#~ msgid "the width" -#~ msgstr "宽度" - -#~ msgid "drawn width" -#~ msgstr "画宽" - -#~ msgid "Display Height" -#~ msgstr "窗å£é«˜åº¦" - -#~ msgid "Visual options" -#~ msgstr "视觉选项" - -#~ msgid "new name: " -#~ msgstr "æ–°åç§°:" - -#~ msgid "A track already exists with that name" -#~ msgstr "已存在åŒå音轨" - -#~ msgid "Strict Linear" -#~ msgstr "严格线性" - -#~ msgid "Advanced options" -#~ msgstr "高级选项" - -#~ msgid "close" -#~ msgstr "关闭" - -#~ msgid "Export Ranges" -#~ msgstr "导出范围" - -#~ msgid "Export to Directory" -#~ msgstr "导出至文件夹" - -#~ msgid "Cannot write file in: " -#~ msgstr "此文件夹ä¸èƒ½å†™å…¥æ–‡ä»¶" - -#~ msgid "Activate all" -#~ msgstr "激活所有" - -#~ msgid "Controls..." -#~ msgstr "控制..." - -#~ msgid "Realtime Priority" -#~ msgstr "实时优先级" - -#~ msgid "Input channels:" -#~ msgstr "输入声é“:" - -#~ msgid "Output channels:" -#~ msgstr "输出声é“:" - -#~ msgid "" -#~ "(You can change this preference at any time, via the " -#~ "Preferences dialog)" -#~ msgstr "(ä½ å¯ä»¥é€šè¿‡é¦–é€‰é¡¹å¯¹è¯æ¡†éšæ—¶æ”¹å˜è¿™ä¸ªé¦–选项)" - -#~ msgid "Select/Move Objects or Ranges" -#~ msgstr "选择/移动对象或范围" - -#~ msgid "Edit Region Contents (e.g. notes)" -#~ msgstr "编辑区域内容(例如:音符)" - -#~ msgid "Undo" -#~ msgstr "撤销" - -#~ msgid "" -#~ "Left-click to invert (phase reverse) all channels of this track. Right-" -#~ "click to show menu." -#~ msgstr "" -#~ " levým tlaÄítkem myÅ¡i pro obrácení (otoÄení fáze) vÅ¡ech kanálů této " -#~ "stopy. Klepnutí pravým tlaÄítkem myÅ¡i pro ukázání nabídky." - -#~ msgid "Quantize Type" -#~ msgstr "é‡åŒ–类型" - -#~ msgid "Include in Filename(s):" -#~ msgstr "åŒ…å«æ–‡ä»¶å:" - -#~ msgid "Editing" -#~ msgstr "编辑中" - -#~ msgid "Add MIDI Controller Track" -#~ msgstr "添加MIDI控制轨" - -#~ msgid "Could not create user configuration directory" -#~ msgstr "无法创建用户é…置目录" - -#~ msgid "Solo/Mute" -#~ msgstr "独å¥/é™éŸ³" - -#~ msgid "Always play range/selection" -#~ msgstr "总是播放范围/选区" - -#~ msgid "Does %1 control the time?" -#~ msgstr "%1 控制时间å—?" - -#~ msgid "Jump Forward to Mark" -#~ msgstr "å‘å‰è·³åˆ°æ ‡è®°" - -#~ msgid "Jump Backward to Mark" -#~ msgstr "å‘åŽè·³åˆ°æ ‡è®°" - -#~ msgid "Delete Unused" -#~ msgstr "å选未用的" - -#~ msgid "Add Range Marker(s)" -#~ msgstr "添加范围标记" - -#~ msgid "Envelope Visible" -#~ msgstr "包络线å¯è§" - -#~ msgid "Toolbars when Maximised" -#~ msgstr "æœ€å¤§åŒ–ç¼–è¾‘ç©ºé—´åŽæ˜¾ç¤ºå·¥å…·æ " - -#~ msgid "Password:" -#~ msgstr "密ç :" - -#~ msgid "Cancelling.." -#~ msgstr "å–æ¶ˆä¸­..." - -#~ msgid "Add files:" -#~ msgstr "添加文件" - -#~ msgid "" -#~ "time\n" -#~ "master" -#~ msgstr "" -#~ "æ—¶é—´\n" -#~ "主控" - -#~ msgid "AUDITION" -#~ msgstr "监å¬" - -#~ msgid "SOLO" -#~ msgstr "独å¥" - -#~ msgid "%1 could not start JACK" -#~ msgstr "%1 无法å¯åЍJACK" - -#~ msgid "" -#~ "There are several possible reasons:\n" -#~ "\n" -#~ "1) You requested audio parameters that are not supported..\n" -#~ "2) JACK is running as another user.\n" -#~ "\n" -#~ "Please consider the possibilities, and perhaps try different parameters." -#~ msgstr "" -#~ "è¿™å¯èƒ½æ˜¯ä»¥ä¸‹åŽŸå› æ‰€å¯¼è‡´:\n" -#~ "\n" -#~ "1) 䏿”¯æŒæ‚¨æ‰€è¦æ±‚çš„éŸ³é¢‘å‚æ•°..\n" -#~ "2) JACK被其他用户使用.\n" -#~ "\n" -#~ "请考虑以上å¯èƒ½è¯·å†µ,或å°è¯•ä¸åŒçš„傿•°." - -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "snapshot names may not contain a '\\' character" -#~ msgstr "" -#~ "为了确ä¿åœ¨ä¸åŒç³»ç»Ÿçš„兼容性\n" -#~ "快照文件åä¸è¦åŒ…å«å­—符 ''\\'" - -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "snapshot names may not contain a ':' character" -#~ msgstr "" -#~ "为了确ä¿åœ¨ä¸åŒç³»ç»Ÿçš„兼容性\n" -#~ "快照文件åä¸è¦åŒ…å«å­—符 ':'" - -#~ msgid "" -#~ "To ensure compatibility with various systems\n" -#~ "session names may not contain a '\\' character" -#~ msgstr "" -#~ "为了确ä¿åœ¨ä¸åŒç³»ç»Ÿçš„兼容性\n" -#~ "ä¼šè¯æ–‡ä»¶åä¸è¦åŒ…å«å­—符 '\\'" - -#~ msgid "Sorry, MIDI Busses are not supported at this time." -#~ msgstr "抱歉, 此时无法支æŒMIDI总线" - -#~ msgid "Option-" -#~ msgstr "选项-" - -#~ msgid "time stretch" -#~ msgstr "拉伸时间" - -#~ msgid "second (2)" -#~ msgstr "二分(2)" - -#~ msgid "eighth (8)" -#~ msgstr "八分(8)" - -#~ msgid "" -#~ "This route cannot be frozen because it has more outputs than inputs. You " -#~ "can fix this by increasing the number of inputs." -#~ msgstr "" -#~ "此路ç»ä¸å¯è¢«å†»ç»“,因为它的输入比输出多。你å¯ä»¥é€šè¿‡å¢žåŠ è¾“å…¥æ¥ä¿®æ”¹å®ƒã€‚" - -#~ msgid "region gain envelope visible" -#~ msgstr "区域增益包络å¯è§" - -#~ msgid "1.5 seconds" -#~ msgstr "1.5ç§’" - -#~ msgid "2 seconds" -#~ msgstr "2ç§’" - -#~ msgid "2.5 seconds" -#~ msgstr "2.5ç§’" - -#~ msgid "3 seconds" -#~ msgstr "3ç§’" - -#~ msgid "Remove Marker" -#~ msgstr "移除所有标记" - -#~ msgid "0.5 seconds" -#~ msgstr "0.5ç§’" - -#~ msgid "Remove Frame" -#~ msgstr "移除框架" - -#~ msgid "Image Frame" -#~ msgstr "å›¾åƒæ¡†æž¶" - -#~ msgid "Disable plugins during recording" -#~ msgstr "在录音时ç¦ç”¨æ’ä»¶" - -#~ msgid "Name for Chunk:" -#~ msgstr "å—å" - -#~ msgid "Create Chunk" -#~ msgstr "创建å—" - -#~ msgid "Timecode source shares sample clock with audio interface" -#~ msgstr "æºæ—¶é—´ç å…±äº«éŸ³é¢‘接å£çš„采样时钟" - -#~ msgid "Timecode Offset Negative" -#~ msgstr "负移时间ç " - -#~ msgid "Crossfades are created" -#~ msgstr "äº¤å‰æ·¡å…¥æ·¡å‡ºå·²åˆ›å»º" - -#~ msgid "to span entire overlap" -#~ msgstr "跨越整个é‡å " - -#~ msgid "Short crossfade length" -#~ msgstr "çŸ­äº¤å‰æ·¡å…¥æ·¡å‡ºé•¿åº¦" - -#~ msgid "Create crossfades automatically" -#~ msgstr "è‡ªåŠ¨åˆ›å»ºäº¤å‰æ·¡å…¥æ·¡å‡º" - -#~ msgid "Crossfades active" -#~ msgstr "äº¤å‰æ·¡å…¥æ·¡å‡ºæ´»åЍ" - -#~ msgid "Layering (in overlaid mode)" -#~ msgstr "分层(在é‡å æ¨¡å¼)" - -#~ msgid "Layering model" -#~ msgstr "分层模型" - -#~ msgid "MIDI Note Overlaps" -#~ msgstr "MIDI音符é‡å " - -#~ msgid "Broadcast WAVE metadata" -#~ msgstr "广播WAVE (Broadcast WAVE) 元数æ®" - -#~ msgid "SCMS" -#~ msgstr "SCMS" - -#~ msgid "Set value to playhead" -#~ msgstr "设置播放头值" - -#~ msgid "Jump to the end of this range" -#~ msgstr "跳至此范围的结尾" - -#~ msgid "Jump to the start of this range" -#~ msgstr "跳至此范围的开始" - -#~ msgid "End time" -#~ msgstr "ç»“æŸæ—¶é—´" diff --git a/libs/ardour/po/cs.po b/libs/ardour/po/cs.po index 6df4ac1894..63dc0b3263 100644 --- a/libs/ardour/po/cs.po +++ b/libs/ardour/po/cs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-10-23 19:09+0200\n" "PO-Revision-Date: 2013-06-13 22:47+0200\n" "Last-Translator: Pavel Fric \n" "Language-Team: Czech \n" @@ -134,7 +134,7 @@ msgstr "Seznamy zvukových skladeb (nepoužívané)" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2465 session.cc:2498 session.cc:3643 +#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "Chyba v programování: %1" @@ -203,66 +203,6 @@ msgstr "Nelze nahrát přídavný modul VAMP \"%1\"" msgid "VAMP Plugin \"%1\" could not be loaded" msgstr "Přídavný modul VAMP \"%1\" se nepodaÅ™ilo nahrát" -#: audioengine.cc:186 -msgid "" -"This version of JACK is old - you should upgrade to a newer version that " -"supports jack_port_type_get_buffer_size()" -msgstr "" -"tato verze JACK je stará - MÄ›l byste provést povýšení na novÄ›jší verzi, " -"která podporuje jack_port_type_get_buffer_size()" - -#: audioengine.cc:190 -msgid "Connect session to engine" -msgstr "Spojit sezení se strojem" - -#: audioengine.cc:843 -msgid "" -"a port with the name \"%1\" already exists: check for duplicated track/bus " -"names" -msgstr "" -"Přípojka s názvem \"%1\" již existuje: Prověřte na zdvojené názvy stop/" -"sbÄ›rnic" - -#: audioengine.cc:845 session.cc:1698 -msgid "" -"No more JACK ports are available. You will need to stop %1 and restart JACK " -"with more ports if you need this many tracks." -msgstr "" -"Nejsou dostupné další přípojky JACK. Pokud potÅ™ebujete tolik stop, musíte " -"zastavit %1 a spustit JACK znovu s více přípojkami." - -#: audioengine.cc:848 -msgid "AudioEngine: cannot register port \"%1\": %2" -msgstr "AudioEngine: Nelze zaregistrovat přípojku \"%1\": %2" - -#: audioengine.cc:878 -msgid "unable to create port: %1" -msgstr "Nelze vytvoÅ™it přípojku: %1" - -#: audioengine.cc:932 -msgid "connect called before engine was started" -msgstr "Zavolání connect (spojení) pÅ™ed spuÅ¡tÄ›ním stroje" - -#: audioengine.cc:958 -msgid "AudioEngine: cannot connect %1 (%2) to %3 (%4)" -msgstr "AudioEngine: Nelze spojit %1 (%2) s %3 (%4)" - -#: audioengine.cc:973 audioengine.cc:1004 -msgid "disconnect called before engine was started" -msgstr "Zavolání disconnect (odpojení) pÅ™ed spuÅ¡tÄ›ním stroje" - -#: audioengine.cc:1052 -msgid "get_port_by_name() called before engine was started" -msgstr "Zavolání get_port_by_name() pÅ™ed spuÅ¡tÄ›ním stroje" - -#: audioengine.cc:1104 -msgid "get_ports called before engine was started" -msgstr "Zavolání get_ports pÅ™ed spuÅ¡tÄ›ním stroje" - -#: audioengine.cc:1427 -msgid "failed to connect to JACK" -msgstr "NepodaÅ™ilo se spojit se s JACK" - #: audioregion.cc:1643 msgid "" "You have requested an operation that requires audio analysis.\n" @@ -462,7 +402,7 @@ msgstr "Nelze nalézt takt CPU (MHz) v /proc/cpuinfo" msgid "audio" msgstr "Zvuk" -#: data_type.cc:28 session.cc:1640 session.cc:1643 +#: data_type.cc:28 session.cc:1790 session.cc:1793 msgid "MIDI" msgstr "MIDI" @@ -577,7 +517,7 @@ msgstr "Trojúhelníkový" msgid "Rectangular" msgstr "Obdélníkový" -#: export_formats.cc:52 session.cc:4861 session.cc:4877 +#: export_formats.cc:52 session.cc:5008 session.cc:5024 msgid "None" msgstr "Žádný" @@ -688,7 +628,7 @@ msgid "" msgstr "" "% podporuje jen %2 kanály, ale ve vaÅ¡em nastavení kanálů se nachází %3 kanál" -#: file_source.cc:198 session_state.cc:2891 +#: file_source.cc:198 session_state.cc:2807 msgid "" "there are already 1000 files with names like %1; versioning discontinued" msgstr "Je již 1000 souborů s názvem, jako je %1; verzování skonÄeno" @@ -790,25 +730,25 @@ msgstr "Nelze urÄit nynÄ›jší pracovní adresář (%1)" msgid "unknown file type for session %1" msgstr "Neznámý typ souboru pro sezení %1" -#: globals.cc:205 +#: globals.cc:207 msgid "Could not set system open files limit to \"unlimited\"" msgstr "" "NepodaÅ™ilo se nastavit systémové omezení pro otevÅ™ené soubory na \"neomezeno" "\"" -#: globals.cc:207 +#: globals.cc:209 msgid "Could not set system open files limit to %1" msgstr "NepodaÅ™ilo se nastavit systémové omezení pro otevÅ™ené soubory na %1" -#: globals.cc:211 +#: globals.cc:213 msgid "Your system is configured to limit %1 to only %2 open files" msgstr "VaÅ¡e systémové nastavení omezuje %1 na jen %2 otevÅ™ené soubory" -#: globals.cc:215 +#: globals.cc:217 msgid "Could not get system open files limit (%1)" msgstr "NepodaÅ™ilo se dostat systémové omezení pro otevÅ™ené soubory (%1)" -#: globals.cc:266 +#: globals.cc:268 msgid "Loading configuration" msgstr "Nahrává se nastavení" @@ -929,47 +869,47 @@ msgstr "IO: Å patnÄ› utvoÅ™ený Å™etÄ›zec v uzlu XML pro výstupy \"%1\"" msgid "IO: bad output string in XML node \"%1\"" msgstr "IO: Å patný Å™etÄ›zec pro výstup v uzlu XML \"%1\"" -#: io.cc:1410 +#: io.cc:1411 #, c-format msgid "%s %u" msgstr "%s %u" -#: io.cc:1457 +#: io.cc:1458 #, c-format msgid "%s in" msgstr "%s vstup" -#: io.cc:1459 +#: io.cc:1460 #, c-format msgid "%s out" msgstr "%s výstup" -#: io.cc:1534 session.cc:494 session.cc:523 +#: io.cc:1535 session.cc:685 session.cc:714 msgid "mono" msgstr "Mono" -#: io.cc:1536 session.cc:507 session.cc:537 +#: io.cc:1537 session.cc:698 session.cc:728 msgid "L" msgstr "L" -#: io.cc:1536 session.cc:509 session.cc:539 +#: io.cc:1537 session.cc:700 session.cc:730 msgid "R" msgstr "P" -#: io.cc:1538 io.cc:1544 +#: io.cc:1539 io.cc:1545 #, c-format msgid "%d" msgstr "%d" -#: ladspa_plugin.cc:88 +#: ladspa_plugin.cc:86 msgid "LADSPA: module has no descriptor function." msgstr "LADSPA: Modul nemá žádnou funkci popisu" -#: ladspa_plugin.cc:93 +#: ladspa_plugin.cc:91 msgid "LADSPA: plugin has gone away since discovery!" msgstr "LADSPA: Přídavný modul už není více nalezitelný!" -#: ladspa_plugin.cc:100 +#: ladspa_plugin.cc:98 msgid "LADSPA: \"%1\" cannot be used, since it cannot do inplace processing" msgstr "" "LADSPA: \"%1\" nemůže být použit, neboÅ¥ nedÄ›lá žádný \"inplace processing\"" @@ -1050,7 +990,7 @@ msgstr "Locations: Pokus o použití neznámé polohy jako vybrané polohy" msgid "incorrect XML mode passed to Locations::set_state" msgstr "Nesprávný uzel XML pÅ™edán dál Locations::set_state" -#: location.cc:842 session.cc:4362 session_state.cc:1114 +#: location.cc:842 session.cc:4510 session_state.cc:1031 msgid "session" msgstr "Sezení" @@ -1227,11 +1167,11 @@ msgstr "Ovládání polarity" msgid "solo control" msgstr "Ovládání sóla" -#: mtc_slave.cc:235 +#: mtc_slave.cc:238 msgid "MTC Slave: atomic read of current time failed, sleeping!" msgstr "MTC Slave: Chyba pÅ™i atomickém Ätení nynÄ›jšího Äasu, spánek!" -#: mtc_slave.cc:359 +#: mtc_slave.cc:361 msgid "" "Unknown rate/drop value %1 in incoming MTC stream, session values used " "instead" @@ -1239,11 +1179,11 @@ msgstr "" "Neznámá hodnota %1 pro rychlost snímkování/zahozené snímky v příchozím " "datovém proudu MTC, místo ní se používají hodnoty sezení" -#: mtc_slave.cc:379 +#: mtc_slave.cc:381 msgid "Session framerate adjusted from %1 TO: MTC's %2." msgstr "Rychlost snímkování sezení zmÄ›nÄ›na z %1 na MTC: %2" -#: mtc_slave.cc:393 +#: mtc_slave.cc:395 msgid "Session and MTC framerate mismatch: MTC:%1 %2:%3." msgstr "Rychlost snímkování sezení a MTC se neshodují: MTC: %1 %2:%3." @@ -1307,19 +1247,19 @@ msgstr "Cíli vyvážení pÅ™edána data XML pro %1 - pÅ™ehlíží se" msgid "looking for panners in %1" msgstr "Hledání vyvážení v %1" -#: panner_manager.cc:99 +#: panner_manager.cc:100 msgid "Panner discovered: \"%1\" in %2" msgstr "Vyvážení nalezeno: \"%1\" v %2" -#: panner_manager.cc:116 +#: panner_manager.cc:117 msgid "PannerManager: cannot load module \"%1\" (%2)" msgstr "SprávceVyvážení: Nelze nahrát modul \"%1\" (%2)" -#: panner_manager.cc:123 +#: panner_manager.cc:124 msgid "PannerManager: module \"%1\" has no descriptor function." msgstr "SprávceVyvážení: Modul \"%1\" nemá žádnou funkci popisu" -#: panner_manager.cc:186 +#: panner_manager.cc:187 msgid "no panner discovered for in/out = %1/%2" msgstr "Nenalezeno žádné vyvážení pro vstupy/výstupy %1/%2" @@ -1439,11 +1379,7 @@ msgstr "" msgid "unknown plugin type \"%1\" - ignored" msgstr "Neznámý typ přídavného modulu \"%1\" - pÅ™ehlíží se" -#: port.cc:367 -msgid "get_connected_latency_range() called while disconnected from JACK" -msgstr "Zavolání get_connected_latency_range() bÄ›hem odpojení od JACK" - -#: port.cc:450 +#: port.cc:410 msgid "could not reregister %1" msgstr "NepodaÅ™ilo se znovu zaregistrovat %1" @@ -1460,6 +1396,30 @@ msgid "non-port insert XML used for port plugin insert" msgstr "" "XML pro vložení ne-přípojky použito ke vložení přídavného modulu přípojky" +#: port_manager.cc:270 +msgid "" +"a port with the name \"%1\" already exists: check for duplicated track/bus " +"names" +msgstr "" +"Přípojka s názvem \"%1\" již existuje: Prověřte na zdvojené názvy stop/" +"sbÄ›rnic" + +#: port_manager.cc:275 +msgid "AudioEngine: cannot register port \"%1\": %2" +msgstr "AudioEngine: Nelze zaregistrovat přípojku \"%1\": %2" + +#: port_manager.cc:314 +msgid "unable to create port: %1" +msgstr "Nelze vytvoÅ™it přípojku: %1" + +#: port_manager.cc:401 +msgid "AudioEngine: cannot connect %1 (%2) to %3 (%4)" +msgstr "AudioEngine: Nelze spojit %1 (%2) s %3 (%4)" + +#: port_manager.cc:453 port_manager.cc:454 +msgid "Re-establising port %1 failed" +msgstr "" + #: processor.cc:207 msgid "No %1 property flag in element %2" msgstr "Žádný příznak pro vlastnost \"%1\" v prvku %2" @@ -1468,19 +1428,19 @@ msgstr "Žádný příznak pro vlastnost \"%1\" v prvku %2" msgid "No child node with active property" msgstr "Žádný uzel potomka s vlastností \"Äinný\"" -#: rc_configuration.cc:93 +#: rc_configuration.cc:88 msgid "Loading system configuration file %1" msgstr "Nahrává se soubor s nastavením systému %1" -#: rc_configuration.cc:97 +#: rc_configuration.cc:92 msgid "%1: cannot read system configuration file \"%2\"" msgstr "%1: Nelze pÅ™eÄíst soubor s nastavením systému \"%2\"" -#: rc_configuration.cc:102 +#: rc_configuration.cc:97 msgid "%1: system configuration file \"%2\" not loaded successfully." msgstr "%1: Soubor s nastavením systému \"%2\" se nepodaÅ™ilo nahrát." -#: rc_configuration.cc:106 +#: rc_configuration.cc:101 msgid "" "Your system %1 configuration file is empty. This probably means that there " "was an error installing %1" @@ -1488,23 +1448,23 @@ msgstr "" "Váš soubor s nastavením systému %1 je prázdný. To zÅ™ejmÄ› znamená, že pÅ™i " "instalaci %1 se vyskytla chyba." -#: rc_configuration.cc:121 +#: rc_configuration.cc:116 msgid "Loading user configuration file %1" msgstr "Nahrává se soubor s uživatelovým nastavením %1" -#: rc_configuration.cc:125 +#: rc_configuration.cc:120 msgid "%1: cannot read configuration file \"%2\"" msgstr "%1: Nelze pÅ™eÄíst soubor s nastavením\"%2\"" -#: rc_configuration.cc:130 +#: rc_configuration.cc:125 msgid "%1: user configuration file \"%2\" not loaded successfully." msgstr "%1: Soubor s uživatelovým nastavením \"%2\" se nepodaÅ™ilo nahrát." -#: rc_configuration.cc:134 +#: rc_configuration.cc:129 msgid "your %1 configuration file is empty. This is not normal." msgstr "Váš soubor s nastavením %1 je prázdný. To není obvyklé." -#: rc_configuration.cc:151 +#: rc_configuration.cc:146 msgid "Config file %1 not saved" msgstr "Soubor s nastavením %1 nebyl uložen" @@ -1544,29 +1504,33 @@ msgstr "Zavedení: Chyba v src_new() : %1" msgid "return %1" msgstr "Vrácená hodnota: %1" -#: route.cc:1105 route.cc:2581 +#: route.cc:1075 route.cc:2528 msgid "unknown Processor type \"%1\"; ignored" msgstr "Neznámý typ procesoru \"%1\"; pÅ™ehlíží se" -#: route.cc:1117 +#: route.cc:1087 msgid "processor could not be created. Ignored." msgstr "Procesor se nepodaÅ™ilo vytvoÅ™it. PÅ™ehlíží se." -#: route.cc:2007 route.cc:2234 +#: route.cc:1962 route.cc:2187 msgid "Bad node sent to Route::set_state() [%1]" msgstr "Å patný uzel poslán Route::set_state() [%1]" -#: route.cc:2067 +#: route.cc:2022 msgid "Pannable state found for route (%1) without a panner!" msgstr "" "Nalezen stav cíle vyvážení pro cestu (%1), aniž by bylo nalezeno vyvážení!" -#: route.cc:2137 route.cc:2141 route.cc:2348 route.cc:2352 +#: route.cc:2096 route.cc:2100 route.cc:2301 route.cc:2305 msgid "badly formed order key string in state file! [%1] ... ignored." msgstr "" "Å patnÄ› utvoÅ™ený Å™etÄ›zec znaků pro klÃ­Ä poÅ™adí roztřídÄ›ní v souboru sezení! " "[%1] ... PÅ™ehlíží se." +#: route.cc:2311 +msgid "Converting deprecated order key for %1 using Editor order %2" +msgstr "" + #: route_group.cc:459 msgid "You cannot subgroup MIDI tracks at this time" msgstr "Stopy MIDI nelze nyní sdružit do podskupin" @@ -1591,104 +1555,80 @@ msgstr "Poslání (send) %1" msgid "programming error: send created using role %1" msgstr "Chyba v programování: Poslání vytvoÅ™eno pomocí role %1" -#: session.cc:347 -msgid "Set block size and sample rate" -msgstr "Nastavit velikost bloku a vzorkovací kmitoÄet" +#: session.cc:343 +msgid "Connect to engine" +msgstr "Spojit se strojem" -#: session.cc:352 -msgid "Using configuration" -msgstr "Používané nastavení" +#: session.cc:348 +msgid "Session loading complete" +msgstr "Nahrání sezení dokonÄeno" -#: session.cc:377 -msgid "LTC In" -msgstr "Vstup LTC" +#: session.cc:420 +msgid "Set up LTC" +msgstr "" -#: session.cc:378 -msgid "LTC Out" -msgstr "Výstup LTC" +#: session.cc:422 +msgid "Set up Click" +msgstr "" -#: session.cc:404 -msgid "LTC-in" -msgstr "Vstup LTC" - -#: session.cc:405 -msgid "LTC-out" -msgstr "Výstup LTC" - -#: session.cc:434 -msgid "could not setup Click I/O" -msgstr "NepodaÅ™ilo se nastavit vstup/výstup metronomu" - -#: session.cc:461 -msgid "cannot setup Click I/O" -msgstr "Nelze nastavit vstup/výstup metronomu" - -#: session.cc:464 -msgid "Compute I/O Latencies" -msgstr "VypoÄítat prodlevy vstupu/výstupu" - -#: session.cc:470 +#: session.cc:424 msgid "Set up standard connections" msgstr "Nastavit standardní spojení" -#: session.cc:491 +#: session.cc:634 +msgid "could not setup Click I/O" +msgstr "NepodaÅ™ilo se nastavit vstup/výstup metronomu" + +#: session.cc:682 #, c-format msgid "out %" msgstr "Výstup %" -#: session.cc:505 +#: session.cc:696 #, c-format msgid "out %+%" msgstr "Výstup %+%" -#: session.cc:520 +#: session.cc:711 #, c-format msgid "in %" msgstr "Vstup %" -#: session.cc:534 +#: session.cc:725 #, c-format msgid "in %+%" msgstr "Vstup %+%" -#: session.cc:570 -msgid "Setup signal flow and plugins" -msgstr "Nastavit signálový tok a přídavné moduly" - -#: session.cc:614 -msgid "Connect to engine" -msgstr "Spojit se strojem" - -#: session.cc:645 +#: session.cc:789 msgid "cannot connect master output %1 to %2" msgstr "Nelze spojit hlavní výstup %1 s %2" -#: session.cc:704 +#: session.cc:848 msgid "monitor" msgstr "Sledování" -#: session.cc:749 +#: session.cc:893 msgid "cannot connect control input %1 to %2" msgstr "Nelze spojit vstup ovládání %1 s %2" -#: session.cc:769 +#: session.cc:913 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "UpÅ™ednostňovaný vstup/výstup pro sledovací sbÄ›rnici (%1) nelze najít" -#: session.cc:800 +#: session.cc:944 msgid "cannot connect control output %1 to %2" msgstr "Nelze spojit výstup ovládání %1 s %2" -#: session.cc:864 +#: session.cc:1008 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "Nelze vytvoÅ™it poslechový systém: Žádný poslech oblastí není možný" -#: session.cc:1043 +#: session.cc:1192 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" "Sezení: Tuto polohu nelze pro automatický pÅ™epis použít (ZaÄátek <= Konec) " -#: session.cc:1083 +#: session.cc:1232 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" @@ -1696,83 +1636,91 @@ msgstr "" "Tuto polohu nelze pro automatickou smyÄku použít, protože nemá žádnou, nebo " "má zápornou délku" -#: session.cc:1396 +#: session.cc:1546 msgid "feedback loop setup between %1 and %2" msgstr "SmyÄka zpÄ›tné vazby rozpoznána mezi %1 a %2" -#: session.cc:1692 +#: session.cc:1842 msgid "Session: could not create new midi track." msgstr "Sezení: NepodaÅ™ilo se vytvoÅ™it novou stopu MIDI" -#: session.cc:1875 session.cc:1878 +#: session.cc:1848 +msgid "" +"No more JACK ports are available. You will need to stop %1 and restart JACK " +"with more ports if you need this many tracks." +msgstr "" +"Nejsou dostupné další přípojky JACK. Pokud potÅ™ebujete tolik stop, musíte " +"zastavit %1 a spustit JACK znovu s více přípojkami." + +#: session.cc:2025 session.cc:2028 msgid "Audio" msgstr "Zvuk" -#: session.cc:1902 session.cc:1910 session.cc:1987 session.cc:1995 +#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "Nelze nastavit %1 nastavení vstup/%2 výstup pro novou zvukovou stopu" -#: session.cc:1933 +#: session.cc:2083 msgid "Session: could not create new audio track." msgstr "Sezení: NepodaÅ™ilo se vytvoÅ™it novou zvukovou stopu" -#: session.cc:1965 session.cc:1968 +#: session.cc:2115 session.cc:2118 msgid "Bus" msgstr "SbÄ›rnice" -#: session.cc:2018 +#: session.cc:2168 msgid "Session: could not create new audio route." msgstr "Sezení: NepodaÅ™ilo se vytvoÅ™it novou zvukovou cestu" -#: session.cc:2077 session.cc:2087 +#: session.cc:2227 session.cc:2237 msgid "Session: UINT_MAX routes? impossible!" msgstr "Sezení: Cesty UINT_MAX? Nemožné!" -#: session.cc:2109 +#: session.cc:2259 msgid "Session: cannot create track/bus from template description" msgstr "Sezení: Nelze vytvoÅ™it stopu/sbÄ›rnici z popisu pÅ™edlohy" -#: session.cc:2135 +#: session.cc:2285 msgid "Session: could not create new route from template" msgstr "Sezení: NepodaÅ™ilo se vytvoÅ™it novou cestu z pÅ™edlohy" -#: session.cc:2164 +#: session.cc:2314 msgid "Adding new tracks/busses failed" msgstr "Chyba pÅ™i pÅ™idávání nové stopy/sbÄ›rnice" -#: session.cc:3265 +#: session.cc:3413 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "OSUDOVà CHYBA! NepodaÅ™ilo se najít vhodnou verzi %1 pro pÅ™ejmenování" -#: session.cc:3385 session.cc:3443 +#: session.cc:3533 session.cc:3591 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "Již je %1 nahrávek pro %2, což je příliÅ¡ mnoho." -#: session.cc:3833 +#: session.cc:3981 msgid "send ID %1 appears to be in use already" msgstr "Zdá se, že ID poslání (send) %1, se již používá" -#: session.cc:3845 +#: session.cc:3993 msgid "aux send ID %1 appears to be in use already" msgstr "Zdá se, že ID pomocného-poslání (aux-send) %1, se již používá" -#: session.cc:3857 +#: session.cc:4005 msgid "return ID %1 appears to be in use already" msgstr "Zdá se, že ID vrácení (return) %1, se již používá" -#: session.cc:3869 +#: session.cc:4017 msgid "insert ID %1 appears to be in use already" msgstr "Zdá se, že ID vložení (insert) %1, se již používá" -#: session.cc:3996 +#: session.cc:4144 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "Nelze zapsat oblast s Konec <= ZaÄátek (napÅ™. %1 <= %2)" -#: session.cc:4025 +#: session.cc:4173 msgid "too many bounced versions of playlist \"%1\"" msgstr "PříliÅ¡ mnoho odhozených verzí seznamu skladeb \"%1\"" -#: session.cc:4035 +#: session.cc:4183 msgid "cannot create new audio file \"%1\" for %2" msgstr "Nelze vytvoÅ™it nový zvukový soubor \"%1\" pro %2" @@ -1815,11 +1763,11 @@ msgstr "Adresář se sezením v cestÄ› %1 neexistuje" msgid "Session: cannot have two events of type %1 at the same frame (%2)." msgstr "Sezení: Není možné mít ve stejném snímku (%2) dvÄ› události typu %1." -#: session_export.cc:126 +#: session_export.cc:125 msgid "%1: cannot seek to %2 for export" msgstr "%1: Polohu souboru %2 nelze vyhledat pro vyvedení" -#: session_export.cc:183 +#: session_export.cc:182 msgid "Export ended unexpectedly: %1" msgstr "Vyvedení skonÄilo neoÄekávanÄ›: %1" @@ -1831,10 +1779,6 @@ msgstr "" "Kodér LTC: Neplatná rychlost snímkování - Kódování LTC je pro zbývající Äást " "tohoto sezení zakázáno." -#: session_midi.cc:428 -msgid "Session: could not send full MIDI time code" -msgstr "Sezení: NepodaÅ™ilo se poslat úplný Äasový kód MIDI" - #: session_midi.cc:520 msgid "Session: cannot send quarter-frame MTC message (%1)" msgstr "Sezení: Nelze poslat quarter-frame MTC (%1)" @@ -1843,92 +1787,96 @@ msgstr "Sezení: Nelze poslat quarter-frame MTC (%1)" msgid "Session: cannot create Playlist from XML description." msgstr "Sezení: Nelze vytvoÅ™it seznam skladeb z popisu XML" -#: session_process.cc:133 +#: session_process.cc:132 msgid "Session: error in no roll for %1" msgstr "Sezení: Chyba v no_roll pro %1" -#: session_process.cc:1158 +#: session_process.cc:1157 msgid "Programming error: illegal event type in process_event (%1)" msgstr "Chyba v programování: Neplatný typ události v process_event (%1)" -#: session_state.cc:139 +#: session_state.cc:140 msgid "Could not use path %1 (%2)" msgstr "NepodaÅ™ilo se použít cestu %1 (%2)" -#: session_state.cc:267 +#: session_state.cc:184 msgid "solo cut control (dB)" msgstr "Nastavení Solo Cut (dB)" -#: session_state.cc:360 +#: session_state.cc:208 +msgid "Set block size and sample rate" +msgstr "Nastavit velikost bloku a vzorkovací kmitoÄet" + +#: session_state.cc:213 +msgid "Using configuration" +msgstr "Používané nastavení" + +#: session_state.cc:325 msgid "Reset Remote Controls" msgstr "Nastavit dálkové ovládání znovu" -#: session_state.cc:385 -msgid "Session loading complete" -msgstr "Nahrání sezení dokonÄeno" - -#: session_state.cc:452 +#: session_state.cc:417 msgid "Session: cannot create session peakfile folder \"%1\" (%2)" msgstr "Sezení: Nelze vytvoÅ™it složku Peakfile \"%1\" (%2)" -#: session_state.cc:459 +#: session_state.cc:424 msgid "Session: cannot create session sounds dir \"%1\" (%2)" msgstr "Sezení: Nelze vytvoÅ™it adresář sezení pro zvuková data \"%1\" (%2)" -#: session_state.cc:466 +#: session_state.cc:431 msgid "Session: cannot create session midi dir \"%1\" (%2)" msgstr "Sezení: Nelze vytvoÅ™it adresář sezení pro MIDI \"%1\" (%2)" -#: session_state.cc:473 +#: session_state.cc:438 msgid "Session: cannot create session dead sounds folder \"%1\" (%2)" msgstr "" "Sezení: Nelze vytvoÅ™it odpadkový koÅ¡ sezení pro zahozený zvuk \"%1\" (%2)" -#: session_state.cc:480 +#: session_state.cc:445 msgid "Session: cannot create session export folder \"%1\" (%2)" msgstr "Sezení: Nelze vytvoÅ™it složku sezení pro vyvedené soubory \"%1\" (%2)" -#: session_state.cc:487 +#: session_state.cc:452 msgid "Session: cannot create session analysis folder \"%1\" (%2)" msgstr "Sezení: Nelze vytvoÅ™it složku sezení pro data rozboru \"%1\" (%2)" -#: session_state.cc:494 +#: session_state.cc:459 msgid "Session: cannot create session plugins folder \"%1\" (%2)" msgstr "Sezení: Nelze vytvoÅ™it složku sezení pro přídavné moduly \"%1\" (%2)" -#: session_state.cc:501 +#: session_state.cc:466 msgid "Session: cannot create session externals folder \"%1\" (%2)" msgstr "Sezení: Nelze vytvoÅ™it složku sezení pro vnÄ›jší \"%1\" (%2)" -#: session_state.cc:515 +#: session_state.cc:480 msgid "Session: cannot create session folder \"%1\" (%2)" msgstr "Sezení: Nelze vytvoÅ™it složku sezení \"%1\" (%2)" -#: session_state.cc:548 +#: session_state.cc:514 msgid "Could not open %1 for writing session template" msgstr "NepodaÅ™ilo se otevřít %1 pro zápis pÅ™edlohy sezení" -#: session_state.cc:554 +#: session_state.cc:520 msgid "Could not open session template %1 for reading" msgstr "NepodaÅ™ilo se otevřít pÅ™edlohu sezení %1 pro Ätení" -#: session_state.cc:573 +#: session_state.cc:539 msgid "master" msgstr "Master" -#: session_state.cc:636 +#: session_state.cc:600 msgid "Could not remove pending capture state at path \"%1\" (%2)" msgstr "NepodaÅ™ilo se odstranit pÅ™edběžný stav nahrávání v cestÄ› \"%1\" (%2)" -#: session_state.cc:660 +#: session_state.cc:624 msgid "could not rename snapshot %1 to %2 (%3)" msgstr "NepodaÅ™ilo se pÅ™ejmenovat snímek obrazovky %1 na %2 (%3)" -#: session_state.cc:688 +#: session_state.cc:652 msgid "Could not remove session file at path \"%1\" (%2)" msgstr "NepodaÅ™ilo se odstranit soubor se sezením v cestÄ› \"%1\" (%2)" -#: session_state.cc:761 +#: session_state.cc:669 msgid "" "the %1 audio engine is not connected and state saving would lose all I/O " "connections. Session not saved" @@ -1936,134 +1884,134 @@ msgstr "" "Zvukový stroj %1 není spojen, a pÅ™i ukládání stavu by doÅ¡lo ke ztrátÄ› vÅ¡ech " "spojení vstup/výstup. Sezení neuloženo" -#: session_state.cc:812 +#: session_state.cc:720 msgid "state could not be saved to %1" msgstr "Stav se do %1 uložit nepodaÅ™ilo" -#: session_state.cc:814 session_state.cc:825 +#: session_state.cc:722 session_state.cc:733 msgid "Could not remove temporary session file at path \"%1\" (%2)" msgstr "NepodaÅ™ilo se odstranit doÄasný soubor se sezením v cestÄ› \"%1\" (%2)" -#: session_state.cc:822 +#: session_state.cc:730 msgid "could not rename temporary session file %1 to %2" msgstr "NepodaÅ™ilo se pÅ™ejmenovat doÄasný soubor se sezením %1 na %2" -#: session_state.cc:890 +#: session_state.cc:798 msgid "%1: session file \"%2\" doesn't exist!" msgstr "%1: Soubor se sezením \"%2\" neexistuje!" -#: session_state.cc:902 +#: session_state.cc:810 msgid "Could not understand session file %1" msgstr "NepodaÅ™ilo se porozumÄ›t souboru se sezením\"%1\"" -#: session_state.cc:911 +#: session_state.cc:819 msgid "Session file %1 is not a session" msgstr "Soubor se sezením %1 není sezením" -#: session_state.cc:1208 +#: session_state.cc:1125 msgid "programming error: Session: incorrect XML node sent to set_state()" msgstr "Chyba v programování: Sezení: Nesprávný uzel XML poslán set_state()" -#: session_state.cc:1257 +#: session_state.cc:1179 msgid "Session: XML state has no options section" msgstr "Sezení: XML nemá žádnou Äást \"options\"" -#: session_state.cc:1262 +#: session_state.cc:1184 msgid "Session: XML state has no metadata section" msgstr "Sezení: XML nemá žádnou Äást \"metadata\"" -#: session_state.cc:1273 +#: session_state.cc:1195 msgid "Session: XML state has no sources section" msgstr "Sezení: XML nemá žádnou Äást \"sources\"" -#: session_state.cc:1280 +#: session_state.cc:1202 msgid "Session: XML state has no Tempo Map section" msgstr "Sezení: XML nemá žádnou Äást \"Tempo Map\"" -#: session_state.cc:1287 +#: session_state.cc:1209 msgid "Session: XML state has no locations section" msgstr "Sezení: XML nemá žádnou Äást \"locations\"" -#: session_state.cc:1313 +#: session_state.cc:1235 msgid "Session: XML state has no Regions section" msgstr "Sezení: XML nemá žádnou Äást \"Regions\"" -#: session_state.cc:1320 +#: session_state.cc:1242 msgid "Session: XML state has no playlists section" msgstr "Sezení: XML nemá žádnou Äást \"playlists\"" -#: session_state.cc:1340 +#: session_state.cc:1262 msgid "Session: XML state has no bundles section" msgstr "Sezení: XML nemá žádnou Äást \"bundles\"" -#: session_state.cc:1352 +#: session_state.cc:1274 msgid "Session: XML state has no diskstreams section" msgstr "Sezení: XML nemá žádnou Äást \"diskstreams\"" -#: session_state.cc:1360 +#: session_state.cc:1282 msgid "Session: XML state has no routes section" msgstr "Sezení: XML nemá žádnou Äást \"routes\"" -#: session_state.cc:1372 +#: session_state.cc:1294 msgid "Session: XML state has no route groups section" msgstr "Sezení: XML nemá žádnou Äást \"route groups\"" -#: session_state.cc:1381 +#: session_state.cc:1303 msgid "Session: XML state has no edit groups section" msgstr "Sezení: XML nemá žádnou Äást \"edit groups\"" -#: session_state.cc:1388 +#: session_state.cc:1310 msgid "Session: XML state has no mix groups section" msgstr "Sezení: XML nemá žádnou Äást \"mix groups\"" -#: session_state.cc:1396 +#: session_state.cc:1318 msgid "Session: XML state has no click section" msgstr "Sezení: XML nemá žádnou Äást \"click\"" -#: session_state.cc:1444 +#: session_state.cc:1360 msgid "Session: cannot create Route from XML description." msgstr "Sezení: Nelze vytvoÅ™it cestu z popisu XML" -#: session_state.cc:1448 +#: session_state.cc:1364 msgid "Loaded track/bus %1" msgstr "Byla nahrána stopa/sbÄ›rnice %1" -#: session_state.cc:1546 +#: session_state.cc:1462 msgid "Could not find diskstream for route" msgstr "NepodaÅ™ilo se najít Diskstream pro cestu" -#: session_state.cc:1600 +#: session_state.cc:1516 msgid "Session: cannot create Region from XML description." msgstr "Sezení: Nelze vytvoÅ™it oblast z popisu XML" -#: session_state.cc:1604 +#: session_state.cc:1520 msgid "Can not load state for region '%1'" msgstr "Nelze nahrát stav pro oblast '%1'" -#: session_state.cc:1640 +#: session_state.cc:1556 msgid "Regions in compound description not found (ID's %1 and %2): ignored" msgstr "Oblasti ve spojeném popisu nenalezeny (ID %1 a %2): pÅ™ehlíží se" -#: session_state.cc:1668 +#: session_state.cc:1584 msgid "Nested source has no ID info in session file! (ignored)" msgstr "" "VnoÅ™ený zdroj nemá v souboru se sezením žádné informace ID! (pÅ™ehlíží se)" -#: session_state.cc:1680 +#: session_state.cc:1596 msgid "Cannot reconstruct nested source for region %1" msgstr "Nelze obnovit vnoÅ™ený zdroj pro oblast %1" -#: session_state.cc:1742 +#: session_state.cc:1658 msgid "Session: XMLNode describing a AudioRegion is incomplete (no source)" msgstr "Sezení: Uzel XML k popisu zvukové oblasti je neúplný (chybí zdroj)" -#: session_state.cc:1750 session_state.cc:1771 session_state.cc:1791 +#: session_state.cc:1666 session_state.cc:1687 session_state.cc:1707 msgid "" "Session: XMLNode describing a AudioRegion references an unknown source id =%1" msgstr "" "Sezení: Uzel XML k popisu zvukové oblasti odkazuje na ID neznámého zdroje =%1" -#: session_state.cc:1756 session_state.cc:1777 session_state.cc:1797 +#: session_state.cc:1672 session_state.cc:1693 session_state.cc:1713 msgid "" "Session: XMLNode describing a AudioRegion references a non-audio source id =" "%1" @@ -2071,7 +2019,7 @@ msgstr "" "Sezení: Uzel XML k popisu zvukové oblasti odkazuje na ID nezvukového zdroje =" "%1" -#: session_state.cc:1820 +#: session_state.cc:1736 msgid "" "Session: XMLNode describing an AudioRegion is missing some master sources; " "ignored" @@ -2079,23 +2027,23 @@ msgstr "" "Sezení: Uzlu XML k popisu zvukové oblasti chybí nÄ›které hlavní zdroje; " "pÅ™ehlíží se" -#: session_state.cc:1854 +#: session_state.cc:1770 msgid "Session: XMLNode describing a MidiRegion is incomplete (no source)" msgstr "Sezení: Uzel XML k popisu oblasti MIDI je neúplný (chybí zdroj)" -#: session_state.cc:1862 +#: session_state.cc:1778 msgid "" "Session: XMLNode describing a MidiRegion references an unknown source id =%1" msgstr "" "Sezení: Uzel XML k popisu oblasti MIDI odkazuje na ID neznámého zdroje =%1" -#: session_state.cc:1868 +#: session_state.cc:1784 msgid "" "Session: XMLNode describing a MidiRegion references a non-midi source id =%1" msgstr "" "Sezení: Uzel XML k popisu oblasti MIDI odkazuje na ID ne-MIDI zdroje =%1" -#: session_state.cc:1936 +#: session_state.cc:1852 msgid "" "cannot create new file from region name \"%1\" with ident = \"%2\": too many " "existing files with similar names" @@ -2103,122 +2051,122 @@ msgstr "" "Nelze vytvoÅ™it nový soubor z názvu oblasti \"%1\" s ident = \"%2\": Je " "příliÅ¡ mnoho souborů s podobnými názvy" -#: session_state.cc:1959 +#: session_state.cc:1875 msgid "Session: cannot create Source from XML description." msgstr "Sezení: Nelze vytvoÅ™it zdroj z popisu XML" -#: session_state.cc:1993 +#: session_state.cc:1909 msgid "A sound file is missing. It will be replaced by silence." msgstr "Chybí zvukový soubor. Bude nahrazen tichem." -#: session_state.cc:2016 +#: session_state.cc:1932 msgid "Found a sound file that cannot be used by %1. Talk to the progammers." msgstr "" "Byl nalezen zvukový soubor, který není použitelný %1. Promluvte si s " "programátory." -#: session_state.cc:2033 +#: session_state.cc:1949 msgid "Could not create templates directory \"%1\" (%2)" msgstr "NepodaÅ™ilo se vytvoÅ™it adresář s pÅ™edlohami \"%1\" (%2)" -#: session_state.cc:2046 +#: session_state.cc:1962 msgid "Template \"%1\" already exists - new version not created" msgstr "PÅ™edloha \"%1\" již existuje - nová verze nebyla vytvoÅ™ena" -#: session_state.cc:2052 +#: session_state.cc:1968 msgid "Could not create directory for Session template\"%1\" (%2)" msgstr "NepodaÅ™ilo se vytvoÅ™it adresář pro pÅ™edlohu sezení \"%1\" (%2)" -#: session_state.cc:2062 +#: session_state.cc:1978 msgid "template not saved" msgstr "PÅ™edloha neuložena" -#: session_state.cc:2072 +#: session_state.cc:1988 msgid "Could not create directory for Session template plugin state\"%1\" (%2)" msgstr "" "NepodaÅ™ilo se vytvoÅ™it adresář pro stav přídavného modulu pÅ™edlohy sezení " "\"%1\" (%2)" -#: session_state.cc:2267 +#: session_state.cc:2183 msgid "Unknown node \"%1\" found in Bundles list from session file" msgstr "Nalezen neznámý uzel \"%1\" v seznamu svazků souboru sezení" -#: session_state.cc:2809 session_state.cc:2815 +#: session_state.cc:2725 session_state.cc:2731 msgid "Cannot expand path %1 (%2)" msgstr "Nelze rozšířit cestu %1 (%2)" -#: session_state.cc:2868 +#: session_state.cc:2784 msgid "Session: cannot create dead file folder \"%1\" (%2)" msgstr "Sezení: Nelze vytvoÅ™it odpadkový koÅ¡ pro zahozen soubory \"%1\" (%2)" -#: session_state.cc:2907 +#: session_state.cc:2823 msgid "cannot rename unused file source from %1 to %2 (%3)" msgstr "Nelze pÅ™ejmenovat nepoužívaný souborový zdroj z %1 na %2 (%3)" -#: session_state.cc:2925 +#: session_state.cc:2841 msgid "cannot remove peakfile %1 for %2 (%3)" msgstr "Nelze odstranit vrcholový soubor %1 pro %2 (%3)" -#: session_state.cc:3227 +#: session_state.cc:3143 msgid "could not backup old history file, current history not saved" msgstr "" "NepodaÅ™ilo se vytvoÅ™it zálohu starého souboru se seznamem Äinností, nynÄ›jší " "historie neuložena" -#: session_state.cc:3240 +#: session_state.cc:3156 msgid "history could not be saved to %1" msgstr "NepodaÅ™ilo se uložit seznam Äinností do %1" -#: session_state.cc:3243 +#: session_state.cc:3159 msgid "Could not remove history file at path \"%1\" (%2)" msgstr "" "NepodaÅ™ilo se odstranit soubor se seznamem Äinností v cestÄ› \"%1\" (%2)" -#: session_state.cc:3247 +#: session_state.cc:3163 msgid "could not restore history file from backup %1 (%2)" msgstr "NepodaÅ™ilo se obnovit soubor se seznamem Äinností ze zálohy %1 (%2)" -#: session_state.cc:3272 +#: session_state.cc:3188 msgid "%1: no history file \"%2\" for this session." msgstr "%1: Žádný soubor se seznamem Äinností \"%2\" pro toto sezení." -#: session_state.cc:3278 +#: session_state.cc:3194 msgid "Could not understand session history file \"%1\"" msgstr "NepodaÅ™ilo se porozumÄ›t souboru se seznamem Äinností sezení \"%1\"" -#: session_state.cc:3320 +#: session_state.cc:3236 msgid "Failed to downcast MidiSource for NoteDiffCommand" msgstr "NepodaÅ™ilo se najít MidiSource pro NoteDiffCommand" -#: session_state.cc:3331 +#: session_state.cc:3247 msgid "Failed to downcast MidiSource for SysExDiffCommand" msgstr "NepodaÅ™ilo se najít MidiSource pro SysExDiffCommand" -#: session_state.cc:3342 +#: session_state.cc:3258 msgid "Failed to downcast MidiSource for PatchChangeDiffCommand" msgstr "NepodaÅ™ilo se najít MidiSource pro PatchChangeDiffCommand" -#: session_state.cc:3350 +#: session_state.cc:3266 msgid "Couldn't figure out how to make a Command out of a %1 XMLNode." msgstr "NepodaÅ™ilo se rozpoznat žádný příkaz v uzlu XML \"%1\"." -#: session_state.cc:3602 +#: session_state.cc:3502 msgid "Session: unknown diskstream type in XML" msgstr "Sezení: Neznámý typ Diskstream v XML" -#: session_state.cc:3607 +#: session_state.cc:3507 msgid "Session: could not load diskstream via XML state" msgstr "Sezení: NepodaÅ™ilo se nahrát Diskstream pomocí stavu XML" -#: session_time.cc:215 -msgid "Unknown JACK transport state %1 in sync callback" -msgstr "Neznámý stav transportu JACK v Sync-Callback" +#: session_time.cc:214 +msgid "Unknown transport state %1 in sync callback" +msgstr "" -#: session_transport.cc:168 +#: session_transport.cc:167 msgid "Cannot loop - no loop range defined" msgstr "Nelze pÅ™ehrávat ve smyÄce - Nestanovena žádná oblast smyÄky" -#: session_transport.cc:728 +#: session_transport.cc:739 msgid "" "Seamless looping cannot be supported while %1 is using JACK transport.\n" "Recommend changing the configured options" @@ -2226,7 +2174,7 @@ msgstr "" "Souvislé pÅ™ehrávání ve smyÄce není možné, dokud %1 používá transport JACK.\n" "DoporuÄuje se zmÄ›na volby v nastavení" -#: session_transport.cc:1094 +#: session_transport.cc:1105 msgid "" "Global varispeed cannot be supported while %1 is connected to JACK transport " "control" @@ -2377,7 +2325,7 @@ msgid "attempt to write a non-writable audio file source (%1)" msgstr "" "Pokus o zápis zvukového zdrojového souboru chránÄ›ného proti zápisu (%1)" -#: sndfilesource.cc:396 utils.cc:507 utils.cc:531 utils.cc:545 utils.cc:564 +#: sndfilesource.cc:396 utils.cc:510 utils.cc:534 utils.cc:548 utils.cc:567 msgid "programming error: %1 %2" msgstr "Chyba v programování: %1 %2" @@ -2614,19 +2562,19 @@ msgstr "Zamknout" msgid "programming error: unknown edit mode string \"%1\"" msgstr "Chyba v programování: neznámý Å™etÄ›zec pro režim úprav \"%1\"" -#: utils.cc:389 utils.cc:418 +#: utils.cc:389 utils.cc:421 msgid "MIDI Timecode" msgstr "ÄŒasový kód MIDI" -#: utils.cc:389 utils.cc:416 +#: utils.cc:389 utils.cc:419 msgid "MTC" msgstr "MTC" -#: utils.cc:393 utils.cc:425 +#: utils.cc:393 utils.cc:428 msgid "MIDI Clock" msgstr "Hodiny MIDI" -#: utils.cc:397 utils.cc:412 utils.cc:432 +#: utils.cc:397 utils.cc:415 utils.cc:435 msgid "JACK" msgstr "JACK" @@ -2634,50 +2582,18 @@ msgstr "JACK" msgid "programming error: unknown sync source string \"%1\"" msgstr "Chyba v programování: neznámý Å™etÄ›zec pro zdroj seřízení \"%1\"" -#: utils.cc:423 +#: utils.cc:426 msgid "M-Clock" msgstr "M-Clock" -#: utils.cc:429 +#: utils.cc:432 msgid "LTC" msgstr "LTC" -#: utils.cc:599 +#: utils.cc:602 msgid "programming error: unknown native header format: %1" msgstr "Chyba v programování: neznámý nativní formát hlaviÄky: %1" -#: utils.cc:614 +#: utils.cc:617 msgid "cannot open directory %1 (%2)" msgstr "Nelze otevřít adresář %1 (%2)" - -#~ msgid "Session" -#~ msgstr "Sezení" - -#~ msgid "midi" -#~ msgstr "midi" - -#~ msgid "MidiDiskstream: XML property channel-mask out of range" -#~ msgstr "MidiDiskstream: PÅ™ekroÄení hodnoty masky kanálu vlastnosti XML" - -#~ msgid "timefx code failure. please notify ardour-developers." -#~ msgstr "Chyba v kódu TimeFX. Vyrozumte, prosím, vývojáře Ardouru." - -#~ msgid "" -#~ "Copying old session file %1 to %2\n" -#~ "Use %2 with %3 versions before 2.0 from now on" -#~ msgstr "" -#~ "Kopíruje se starý soubor se sezením %1 do %2\n" -#~ "Od nynÄ›jÅ¡ka dál používejte %2 s verzemi %3 pÅ™ed 2.0" - -#~ msgid "Session: you can't use a mark for auto loop" -#~ msgstr "Session: Sie können diesen Marker nicht für Auto-Loop verwenden " - -#~ msgid "" -#~ "No more JACK ports are available. You will need to stop %1 and restart " -#~ "JACK with ports if you need this many tracks." -#~ msgstr "" -#~ "Keine JACK-Ports mehr verfügbar. Sie müssen %1 stoppen und JACK mit mehr " -#~ "Ports neustarten, wenn Sie so viele Spuren benötigen." - -#~ msgid "Could not understand ardour file %1" -#~ msgstr "Konnte die Projektdatei %1 nicht verstehen" diff --git a/libs/ardour/po/de.po b/libs/ardour/po/de.po index f92bf49d1e..b49efa92a4 100644 --- a/libs/ardour/po/de.po +++ b/libs/ardour/po/de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-26 16:09+0200\n" +"POT-Creation-Date: 2013-10-23 19:07+0200\n" "PO-Revision-Date: 2013-09-26 16:32+0200\n" "Last-Translator: Edgar Aichinger \n" "Language-Team: German \n" @@ -137,7 +137,7 @@ msgstr "Audio-Wiedergabelisten (unbenutzt)" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2606 session.cc:2639 session.cc:3784 +#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "Programmierfehler: %1" @@ -206,19 +206,19 @@ msgstr "kann VAMP-Plugin \"%1\" nicht laden" msgid "VAMP Plugin \"%1\" could not be loaded" msgstr "VAMP-Plugin \"%1\" konnte nicht geladen werden" -#: audioengine.cc:489 +#: audioengine.cc:488 msgid "looking for backends in %1\n" msgstr "Suche nach Backends in %1\n" -#: audioengine.cc:512 +#: audioengine.cc:511 msgid "AudioEngine: cannot load module \"%1\" (%2)" msgstr "AudioEngine: kann Modul \"%1\" nicht laden (%2)" -#: audioengine.cc:518 +#: audioengine.cc:517 msgid "AudioEngine: backend at \"%1\" has no descriptor function." msgstr "AudioEngine: Backend an \"%1\" hat keine Beschreibungsfunktion." -#: audioengine.cc:580 +#: audioengine.cc:589 msgid "Could not create backend for %1: %2" msgstr "Konnte Backend für %1 nicht erzeugen: %2" @@ -272,8 +272,8 @@ msgstr "AudioSource: kann Pfad für Peaks (b) \"%1\" nicht öffnen (%2)" msgid "" "AudioSource[%1]: peak read - cannot read %2 samples at offset %3 of %4 (%5)" msgstr "" -"AudioSource[%1]: peak read - kann %2 Samples bei Offset %3 von %4 nicht " -"lesen(%5)" +"AudioSource[%1]: peak read - kann %2 Samples bei Offset %3 von %4 nicht lesen" +"(%5)" #: audiosource.cc:667 msgid "%1: could not write read raw data for peak computation (%2)" @@ -423,7 +423,7 @@ msgstr "kann CPU-Takt in /proc/cpuinfo nicht finden" msgid "audio" msgstr "Audio" -#: data_type.cc:28 session.cc:1781 session.cc:1784 +#: data_type.cc:28 session.cc:1790 session.cc:1793 msgid "MIDI" msgstr "MIDI" @@ -538,7 +538,7 @@ msgstr "Dreieck" msgid "Rectangular" msgstr "Rechteck" -#: export_formats.cc:52 session.cc:5002 session.cc:5018 +#: export_formats.cc:52 session.cc:5008 session.cc:5024 msgid "None" msgstr "Kein" @@ -652,7 +652,7 @@ msgstr "" "% unterstützt nur %2 Kanäle, in Ihrer Kanalkonfiguration befinden sich " "jedoch %3 Kanäle" -#: file_source.cc:198 session_state.cc:2813 +#: file_source.cc:198 session_state.cc:2807 msgid "" "there are already 1000 files with names like %1; versioning discontinued" msgstr "" @@ -910,15 +910,15 @@ msgstr "%s in" msgid "%s out" msgstr "%s out" -#: io.cc:1535 session.cc:676 session.cc:705 +#: io.cc:1535 session.cc:685 session.cc:714 msgid "mono" msgstr "Mono" -#: io.cc:1537 session.cc:689 session.cc:719 +#: io.cc:1537 session.cc:698 session.cc:728 msgid "L" msgstr "L" -#: io.cc:1537 session.cc:691 session.cc:721 +#: io.cc:1537 session.cc:700 session.cc:730 msgid "R" msgstr "R" @@ -1019,7 +1019,7 @@ msgstr "" msgid "incorrect XML mode passed to Locations::set_state" msgstr "unkorrekter XML-Modus an Locations::set_state weitergereicht" -#: location.cc:842 session.cc:4503 session_state.cc:1031 +#: location.cc:842 session.cc:4510 session_state.cc:1031 msgid "session" msgstr "Projekt" @@ -1166,38 +1166,6 @@ msgstr "Fehlende Eigenschaft \"state\" bei AutomationState" msgid "MIDI stretch created non-MIDI source" msgstr "MIDI Streckung erzeugte Nicht-MIDI Quelle" -#: midiport_manager.cc:71 -msgid "MIDI control in" -msgstr "MIDI control in" - -#: midiport_manager.cc:72 -msgid "MIDI control out" -msgstr "MIDI control out" - -#: midiport_manager.cc:74 -msgid "MMC in" -msgstr "MMC in" - -#: midiport_manager.cc:75 -msgid "MMC out" -msgstr "MMC out" - -#: midiport_manager.cc:96 -msgid "MTC in" -msgstr "MTC in" - -#: midiport_manager.cc:98 -msgid "MTC out" -msgstr "MTC out" - -#: midiport_manager.cc:101 -msgid "MIDI Clock in" -msgstr "MIDI Clock in" - -#: midiport_manager.cc:103 -msgid "MIDI Clock out" -msgstr "MIDI Clock out" - #: monitor_processor.cc:53 msgid "monitor dim" msgstr "Monitor dämpfen" @@ -1582,28 +1550,32 @@ msgstr "Import: Fehler in src_new() : %1" msgid "return %1" msgstr "Rückgabewert: %1" -#: route.cc:1105 route.cc:2581 +#: route.cc:1075 route.cc:2528 msgid "unknown Processor type \"%1\"; ignored" msgstr "unbekannter Prozessortyp \"%1\"; ignoriert" -#: route.cc:1117 +#: route.cc:1087 msgid "processor could not be created. Ignored." msgstr "Prozessor konnte nicht erzeugt werden. Ignoriert." -#: route.cc:2007 route.cc:2234 +#: route.cc:1962 route.cc:2187 msgid "Bad node sent to Route::set_state() [%1]" msgstr "Schlechter Knoten an Route::set_state() gesendet [%1]" -#: route.cc:2067 +#: route.cc:2022 msgid "Pannable state found for route (%1) without a panner!" msgstr "Pannerziel-Status für Route (%1) ohne Panner gefunden!" -#: route.cc:2137 route.cc:2141 route.cc:2348 route.cc:2352 +#: route.cc:2096 route.cc:2100 route.cc:2301 route.cc:2305 msgid "badly formed order key string in state file! [%1] ... ignored." msgstr "" "schlecht geformte Zeichenkette für den Schlüssel der Sortierreihenfolge in " "der Projektdatei! [%1] ... ignoriert" +#: route.cc:2311 +msgid "Converting deprecated order key for %1 using Editor order %2" +msgstr "" + #: route_group.cc:459 msgid "You cannot subgroup MIDI tracks at this time" msgstr "MIDI-Spuren können zur Zeit nicht zu Subgruppen zusammengefasst werden" @@ -1650,78 +1622,62 @@ msgstr "Klick einrichten" msgid "Set up standard connections" msgstr "Richte Standard-Verbindungen ein" -#: session.cc:561 -msgid "LTC In" -msgstr "LTC In" - -#: session.cc:562 -msgid "LTC Out" -msgstr "LTC Out" - -#: session.cc:588 -msgid "LTC-in" -msgstr "LTC-in" - -#: session.cc:589 -msgid "LTC-out" -msgstr "LTC-out" - -#: session.cc:625 +#: session.cc:634 msgid "could not setup Click I/O" msgstr "konnte Metronom-E/A nicht einrichten" -#: session.cc:673 +#: session.cc:682 #, c-format msgid "out %" msgstr "out %" -#: session.cc:687 +#: session.cc:696 #, c-format msgid "out %+%" msgstr "out %+%" -#: session.cc:702 +#: session.cc:711 #, c-format msgid "in %" msgstr "in %" -#: session.cc:716 +#: session.cc:725 #, c-format msgid "in %+%" msgstr "in %+%" -#: session.cc:780 +#: session.cc:789 msgid "cannot connect master output %1 to %2" msgstr "kann Master-Ausgang %1 nicht mit %2 verbinden" -#: session.cc:839 +#: session.cc:848 msgid "monitor" msgstr "Monitor" -#: session.cc:884 +#: session.cc:893 msgid "cannot connect control input %1 to %2" msgstr "kann Kontrolleingang %1 nicht mit %2 verbinden" -#: session.cc:904 +#: session.cc:913 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "Bevorzugte E/A für den Monitorbus (%1) kann nicht gefunden werden" -#: session.cc:935 +#: session.cc:944 msgid "cannot connect control output %1 to %2" msgstr "kann Kontrollausgang %1 nicht mit %2 verbinden" -#: session.cc:999 +#: session.cc:1008 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "" "Kann das Vorhör-System nicht einrichten: kein Vorhören von Regionen möglich" -#: session.cc:1183 +#: session.cc:1192 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" "Session: Sie können diese Position nicht für Auto-Punch verwenden (Start <= " "Ende) " -#: session.cc:1223 +#: session.cc:1232 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" @@ -1729,15 +1685,15 @@ msgstr "" "Sie können diese Position nicht für \"automatische Schleife\" verwenden, da " "sie keine oder eine negative Länge hat" -#: session.cc:1537 +#: session.cc:1546 msgid "feedback loop setup between %1 and %2" msgstr "Feedbackschleife zwischen %1 und %2 erkannt" -#: session.cc:1833 +#: session.cc:1842 msgid "Session: could not create new midi track." msgstr "Session: konnte keine neue MIDI-Spur erzeugen." -#: session.cc:1839 +#: session.cc:1848 msgid "" "No more JACK ports are available. You will need to stop %1 and restart JACK " "with more ports if you need this many tracks." @@ -1745,76 +1701,76 @@ msgstr "" "Keine JACK-Ports mehr verfügbar. Wenn Sie so viele Spuren benötigen, müssen " "Sie %1 stoppen und JACK mit mehr Ports neu starten." -#: session.cc:2016 session.cc:2019 +#: session.cc:2025 session.cc:2028 msgid "Audio" msgstr "Audio" -#: session.cc:2043 session.cc:2051 session.cc:2128 session.cc:2136 +#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "kann %1 ein/%2 aus für neue Audiospur nicht konfigurieren" -#: session.cc:2074 +#: session.cc:2083 msgid "Session: could not create new audio track." msgstr "Session: konnte keine neue Audios.pur erzeugen" -#: session.cc:2106 session.cc:2109 +#: session.cc:2115 session.cc:2118 msgid "Bus" msgstr "Bus" -#: session.cc:2159 +#: session.cc:2168 msgid "Session: could not create new audio route." msgstr "Session: konnte keine neueAudio-Route erzeugen" -#: session.cc:2218 session.cc:2228 +#: session.cc:2227 session.cc:2237 msgid "Session: UINT_MAX routes? impossible!" msgstr "Session: UINT_MAX Routen? unmöglich!" -#: session.cc:2250 +#: session.cc:2259 msgid "Session: cannot create track/bus from template description" msgstr "Session: Kann die Route aus der Vorlagenbeschreibung nicht erzeugen" -#: session.cc:2276 +#: session.cc:2285 msgid "Session: could not create new route from template" msgstr "Session: konnte keine neue Route aus der Vorlage erzeugen." -#: session.cc:2305 +#: session.cc:2314 msgid "Adding new tracks/busses failed" msgstr "Fehler beim Hinzufügen neuer Spuren/Busse" -#: session.cc:3406 +#: session.cc:3413 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "" "FATALER FEHLER! Konnte keine passende Version von %1 zum Umbenennen finden" -#: session.cc:3526 session.cc:3584 +#: session.cc:3533 session.cc:3591 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "Es gibt bereits %1 Aufnahmen für %2, was ich als zu viele erachte." -#: session.cc:3974 +#: session.cc:3981 msgid "send ID %1 appears to be in use already" msgstr "Send ID %1 ist offenbar schon in Gebrauch" -#: session.cc:3986 +#: session.cc:3993 msgid "aux send ID %1 appears to be in use already" msgstr "Aux-Send ID %1 ist offenbar schon in Gebrauch" -#: session.cc:3998 +#: session.cc:4005 msgid "return ID %1 appears to be in use already" msgstr "Return ID %1 ist offenbar schon in Gebrauch" -#: session.cc:4010 +#: session.cc:4017 msgid "insert ID %1 appears to be in use already" msgstr "Insert ID %1 ist offenbar schon in Gebrauch" -#: session.cc:4137 +#: session.cc:4144 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "Kann einen Bereich mit Ende <= Start nicht schreiben (z.B. %1 <= %2)" -#: session.cc:4166 +#: session.cc:4173 msgid "too many bounced versions of playlist \"%1\"" msgstr "zu viele gebouncete Versionen der Wiedergabeliste \"%1\"" -#: session.cc:4176 +#: session.cc:4183 msgid "cannot create new audio file \"%1\" for %2" msgstr "kann keine neue Audiodatei \"%1\" für %2 erzeugen" @@ -2072,55 +2028,55 @@ msgstr "Session: XML hat keinen Abschnitt \"mix groups\"" msgid "Session: XML state has no click section" msgstr "Session: XML hat keinen Abschnitt \"click\"" -#: session_state.cc:1366 +#: session_state.cc:1360 msgid "Session: cannot create Route from XML description." msgstr "Session: Kann die Route aus der XML-Beschreibung nicht erzeugen" -#: session_state.cc:1370 +#: session_state.cc:1364 msgid "Loaded track/bus %1" msgstr "Spur/Bus %1 wurde geladen" -#: session_state.cc:1468 +#: session_state.cc:1462 msgid "Could not find diskstream for route" msgstr "Konnte Diskstream für Route nicht finden" -#: session_state.cc:1522 +#: session_state.cc:1516 msgid "Session: cannot create Region from XML description." msgstr "Session: kann Region nicht aus XML-Beschreibung erzeugen" -#: session_state.cc:1526 +#: session_state.cc:1520 msgid "Can not load state for region '%1'" msgstr "Kann Status für Region '%1' nicht laden" -#: session_state.cc:1562 +#: session_state.cc:1556 msgid "Regions in compound description not found (ID's %1 and %2): ignored" msgstr "" "Regionen der Verbindungsbeschreibung nicht gefunden (IDs %1 and %2): " "ignoriert" -#: session_state.cc:1590 +#: session_state.cc:1584 msgid "Nested source has no ID info in session file! (ignored)" msgstr "" "Verschachtelte Quelle hat keine ID-Information in Projektdatei! (ignoriert)" -#: session_state.cc:1602 +#: session_state.cc:1596 msgid "Cannot reconstruct nested source for region %1" msgstr "Kann verschachtelte Quelle für Region %1 nicht wiederherstellen" -#: session_state.cc:1664 +#: session_state.cc:1658 msgid "Session: XMLNode describing a AudioRegion is incomplete (no source)" msgstr "" "Session: XML-Knoten zur Beschreibung einer Audioregion ist unvollständig " "(Quelle fehlt)" -#: session_state.cc:1672 session_state.cc:1693 session_state.cc:1713 +#: session_state.cc:1666 session_state.cc:1687 session_state.cc:1707 msgid "" "Session: XMLNode describing a AudioRegion references an unknown source id =%1" msgstr "" "Session: XML-Knoten zur Beschreibung einer Audioregion referenziert eine " "unbekannte Quell-ID =%1" -#: session_state.cc:1678 session_state.cc:1699 session_state.cc:1719 +#: session_state.cc:1672 session_state.cc:1693 session_state.cc:1713 msgid "" "Session: XMLNode describing a AudioRegion references a non-audio source id =" "%1" @@ -2128,7 +2084,7 @@ msgstr "" "Session: XML-Knoten zur Beschreibung einer Audioregion referenziert eine " "Nicht-Audio Quell-ID =%1" -#: session_state.cc:1742 +#: session_state.cc:1736 msgid "" "Session: XMLNode describing an AudioRegion is missing some master sources; " "ignored" @@ -2136,27 +2092,27 @@ msgstr "" "Session: dem XML-Knoten zur Beschreibung einer Audioregion fehlen einige " "Hauptquellen; ignoriert" -#: session_state.cc:1776 +#: session_state.cc:1770 msgid "Session: XMLNode describing a MidiRegion is incomplete (no source)" msgstr "" "Session: XML-Knoten zur Beschreibung einer MIDI-Region ist unvollständig " "(Quelle fehlt)" -#: session_state.cc:1784 +#: session_state.cc:1778 msgid "" "Session: XMLNode describing a MidiRegion references an unknown source id =%1" msgstr "" "Session: XML-Knoten zur Beschreibung einer MIDI-Region referenziert eine " "unbekannte Quell-ID =%1" -#: session_state.cc:1790 +#: session_state.cc:1784 msgid "" "Session: XMLNode describing a MidiRegion references a non-midi source id =%1" msgstr "" "Session: XML-Knoten zur Beschreibung einer MIDI-Region referenziert eine " "Nicht-MIDI Quell-ID =%1" -#: session_state.cc:1858 +#: session_state.cc:1852 msgid "" "cannot create new file from region name \"%1\" with ident = \"%2\": too many " "existing files with similar names" @@ -2164,109 +2120,109 @@ msgstr "" "kann keine neue Datei aus dem Regionennamen \"%1\" mit ident = \"%2\" " "erzeugen: zu viele Dateien mit ähnlichen Namen existieren" -#: session_state.cc:1881 +#: session_state.cc:1875 msgid "Session: cannot create Source from XML description." msgstr "Session: Kann Quelle aus der XML-Beschreibung nicht erzeugen" -#: session_state.cc:1915 +#: session_state.cc:1909 msgid "A sound file is missing. It will be replaced by silence." msgstr "Eine Audiodatei fehlt. Sie wird durch Stille ersetzt werden." -#: session_state.cc:1938 +#: session_state.cc:1932 msgid "Found a sound file that cannot be used by %1. Talk to the progammers." msgstr "" "Eine nicht mit %1 benutzbare Audiodatei wurde gefunden. Sprechen Sie mit den " "Programmierern." -#: session_state.cc:1955 +#: session_state.cc:1949 msgid "Could not create templates directory \"%1\" (%2)" msgstr "Konnte Vorlagenverzeichnis \"%1\" nicht erzeugen (%2)" -#: session_state.cc:1968 +#: session_state.cc:1962 msgid "Template \"%1\" already exists - new version not created" msgstr "Vorlage \"%1\" existiert bereits - neue Version wurde nicht erzeugt" -#: session_state.cc:1974 +#: session_state.cc:1968 msgid "Could not create directory for Session template\"%1\" (%2)" msgstr "Konnte kein Verzeichnis für Projektvorlage \"%1\" erzeugen (%2)" -#: session_state.cc:1984 +#: session_state.cc:1978 msgid "template not saved" msgstr "Vorlage nicht gesichert" -#: session_state.cc:1994 +#: session_state.cc:1988 msgid "Could not create directory for Session template plugin state\"%1\" (%2)" msgstr "" "Konnte Verzeichnis für Projektvorlagen-Pluginstatus \"%1\" nicht erzeugen " "(%2)" -#: session_state.cc:2189 +#: session_state.cc:2183 msgid "Unknown node \"%1\" found in Bundles list from session file" msgstr "Unbekannter Knoten \"%1\" in Bündelliste der Projektdatei gefunden" -#: session_state.cc:2731 session_state.cc:2737 +#: session_state.cc:2725 session_state.cc:2731 msgid "Cannot expand path %1 (%2)" msgstr "Kann Pfad %1 nicht expandieren (%2)" -#: session_state.cc:2790 +#: session_state.cc:2784 msgid "Session: cannot create dead file folder \"%1\" (%2)" msgstr "Session: kann den Mülleimer \"%1\" nicht erzeugen (%2)" -#: session_state.cc:2829 +#: session_state.cc:2823 msgid "cannot rename unused file source from %1 to %2 (%3)" msgstr "kann unbenutzte Dateiquelle nicht von %1 nach %2 umbenennen (%3)" -#: session_state.cc:2847 +#: session_state.cc:2841 msgid "cannot remove peakfile %1 for %2 (%3)" msgstr "kann Peakdatei %1 für %2 nicht entfernen (%3)" -#: session_state.cc:3149 +#: session_state.cc:3143 msgid "could not backup old history file, current history not saved" msgstr "" "konnte kein Backup der alten Aktionsliste erstellen, momentane Aktionsliste " "ungesichert" -#: session_state.cc:3162 +#: session_state.cc:3156 msgid "history could not be saved to %1" msgstr "Aktionsliste konnte nicht nach %1 gesichert werden" -#: session_state.cc:3165 +#: session_state.cc:3159 msgid "Could not remove history file at path \"%1\" (%2)" msgstr "Konnte Aktionslistendatei im Pfad \"%1\" nicht entfernen (%2)" -#: session_state.cc:3169 +#: session_state.cc:3163 msgid "could not restore history file from backup %1 (%2)" msgstr "konnte Aktionslistendatei nicht aus dem Backup %1 restaurieren (%2)" -#: session_state.cc:3194 +#: session_state.cc:3188 msgid "%1: no history file \"%2\" for this session." msgstr "%1: keine Aktionslistendatei \"%2\" für dieses Projekt." -#: session_state.cc:3200 +#: session_state.cc:3194 msgid "Could not understand session history file \"%1\"" msgstr "Konnte Projekt-Aktionslistendatei \"%1\" nicht verstehen" -#: session_state.cc:3242 +#: session_state.cc:3236 msgid "Failed to downcast MidiSource for NoteDiffCommand" msgstr "MidiSource für NoteDiffCommand nicht auffindbar" -#: session_state.cc:3253 +#: session_state.cc:3247 msgid "Failed to downcast MidiSource for SysExDiffCommand" msgstr "MidiSource für SysExDiffCommand nicht auffindbar" -#: session_state.cc:3264 +#: session_state.cc:3258 msgid "Failed to downcast MidiSource for PatchChangeDiffCommand" msgstr "MidiSource für PatchChangeDiffCommand nicht auffindbar" -#: session_state.cc:3272 +#: session_state.cc:3266 msgid "Couldn't figure out how to make a Command out of a %1 XMLNode." msgstr "Konnte im XML-Knoten \"%1\" keinen Befehl erkennen." -#: session_state.cc:3524 +#: session_state.cc:3502 msgid "Session: unknown diskstream type in XML" msgstr "Session: Unbekannter Diskstream im XML" -#: session_state.cc:3529 +#: session_state.cc:3507 msgid "Session: could not load diskstream via XML state" msgstr "Session: konnte Diskstream nicht via XML-Status laden" @@ -2710,56 +2666,3 @@ msgstr "Programmierfehler: unbekanntes natives Dateikopfformat: %1" #: utils.cc:617 msgid "cannot open directory %1 (%2)" msgstr "kann Verzeichnis %1 nicht öffnen (%2)" - -#~ msgid "Setup signal flow and plugins" -#~ msgstr "Richte Signalfluss and Plugins ein" - -#~ msgid "cannot setup Click I/O" -#~ msgstr "kann Metronom-E/A nicht einrichten" - -#~ msgid "Compute I/O Latencies" -#~ msgstr "Berechne E/A-Latenzen" - -#~ msgid "" -#~ "This version of JACK is old - you should upgrade to a newer version that " -#~ "supports jack_port_type_get_buffer_size()" -#~ msgstr "" -#~ "Diese JACK-Version ist alt - Sie sollten auf eine Version upgraden, die " -#~ "jack_port_type_get_buffer_size() unterstützt" - -#~ msgid "Connect session to engine" -#~ msgstr "Verbinde Projekt mit Engine" - -#~ msgid "connect called before engine was started" -#~ msgstr "Aufruf von connect vor dem Start der Engine" - -#~ msgid "disconnect called before engine was started" -#~ msgstr "Aufruf von disconnect vor dem Start der Engine" - -#~ msgid "get_port_by_name() called before engine was started" -#~ msgstr "Aufruf von get_port_by_name() vor dem Start der Engine" - -#~ msgid "get_ports called before engine was started" -#~ msgstr "Aufruf von get_ports vor dem Start der Engine" - -#~ msgid "failed to connect to JACK" -#~ msgstr "Verbindung zu JACK fehlgeschlagen" - -#~ msgid "get_connected_latency_range() called while disconnected from JACK" -#~ msgstr "Aufruf von get_connected_latency_range(), während von JACK getrennt" - -#~ msgid "Session: could not send full MIDI time code" -#~ msgstr "Session: konnte vollständigen MIDI-Timecode nicht senden" - -#~ msgid "Session" -#~ msgstr "Projekt" - -#~ msgid "MidiDiskstream: XML property channel-mask out of range" -#~ msgstr "MidiDiskstream: Wertüberschreitung der XML-Eigenschaft Kanalmaske" - -#~ msgid "" -#~ "Copying old session file %1 to %2\n" -#~ "Use %2 with %3 versions before 2.0 from now on" -#~ msgstr "" -#~ "Kopiere alte Projektdatei %1 nach %2\n" -#~ "Benutzen Sie von jetzt an %2 mit %3-Versionen vor 2.0" diff --git a/libs/ardour/po/el.po b/libs/ardour/po/el.po index 5801300003..ad6f38be97 100644 --- a/libs/ardour/po/el.po +++ b/libs/ardour/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libardour 0.664.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-10-23 19:09+0200\n" "PO-Revision-Date: 2007-04-16 00:38+0200\n" "Last-Translator: Klearchos Gourgourinis \n" "Language-Team: Hellenic(Greek)\n" @@ -108,14 +108,12 @@ msgid "Audio Playlists" msgstr "" #: audio_playlist_importer.cc:161 -#, fuzzy msgid "region" -msgstr "Ï€Ïόσθεση πεÏιοχής" +msgstr "" #: audio_playlist_importer.cc:163 -#, fuzzy msgid "regions" -msgstr "Ï€Ïόσθεση πεÏιοχής" +msgstr "" #: audio_playlist_importer.cc:174 audio_track_importer.cc:245 msgid "A playlist with this name already exists, please rename it." @@ -132,15 +130,14 @@ msgstr "" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2465 session.cc:2498 session.cc:3643 +#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: %1" #: audio_region_importer.cc:75 -#, fuzzy msgid "Audio Regions" -msgstr "χτίσιμο πεÏιοχών" +msgstr "" #: audio_region_importer.cc:145 msgid "Length: " @@ -159,24 +156,20 @@ msgid "" msgstr "" #: audio_track.cc:167 -#, fuzzy msgid "Unknown bundle \"%1\" listed for input of %2" -msgstr "Άγνωστη σÏνδεση \"%1\" στη λίστα εισόδου του %2" +msgstr "" #: audio_track.cc:169 msgid "in 1" msgstr "" #: audio_track.cc:170 -#, fuzzy msgid "No input bundles available as a replacement" -msgstr "Καμία διαθέσιμη input σÏνδεση ως εναλλακτική" +msgstr "" #: audio_track.cc:174 -#, fuzzy msgid "Bundle %1 was not available - \"in 1\" used instead" msgstr "" -"Η ΣÏνδεση %1 δεν ήταν διαθέσιμη - Αντ'αυτής χÏησιμοποιήθηκε η \"in 1\" " #: audio_track.cc:183 msgid "improper input channel list in XML node (%1)" @@ -202,62 +195,10 @@ msgstr "" msgid "VAMP Plugin \"%1\" could not be loaded" msgstr "" -#: audioengine.cc:186 -msgid "" -"This version of JACK is old - you should upgrade to a newer version that " -"supports jack_port_type_get_buffer_size()" +#: audioengine.cc:488 +msgid "looking for backends in %1\n" msgstr "" -#: audioengine.cc:190 -msgid "Connect session to engine" -msgstr "" - -#: audioengine.cc:843 -msgid "" -"a port with the name \"%1\" already exists: check for duplicated track/bus " -"names" -msgstr "" - -#: audioengine.cc:845 session.cc:1698 -msgid "" -"No more JACK ports are available. You will need to stop %1 and restart JACK " -"with more ports if you need this many tracks." -msgstr "" - -#: audioengine.cc:848 -#, fuzzy -msgid "AudioEngine: cannot register port \"%1\": %2" -msgstr "IO: δεν μποÏεί να καταχώÏηθεί η θÏÏα εισόδου %1" - -#: audioengine.cc:878 -msgid "unable to create port: %1" -msgstr "" - -#: audioengine.cc:932 -msgid "connect called before engine was started" -msgstr "η σÏνδεση εκλήθη Ï€Ïιν να εκκινηθεί η engine" - -#: audioengine.cc:958 -msgid "AudioEngine: cannot connect %1 (%2) to %3 (%4)" -msgstr "AudioEngine: αδÏνατη η σÏνδεση %1 (%2) σε %3 (%4)" - -#: audioengine.cc:973 audioengine.cc:1004 -msgid "disconnect called before engine was started" -msgstr "η αποσÏνδεση εκλήθη Ï€Ïιν να εκκινηθεί η engine" - -#: audioengine.cc:1052 -#, fuzzy -msgid "get_port_by_name() called before engine was started" -msgstr "η Ïουτίνα get_port_by_name() εκλήθη Ï€Ïιν να εκκινηθεί η engine" - -#: audioengine.cc:1104 -msgid "get_ports called before engine was started" -msgstr "η Ïουτίνα get_ports εκλήθη Ï€Ïιν να εκκινηθεί η engine" - -#: audioengine.cc:1427 -msgid "failed to connect to JACK" -msgstr "Αποτυχία συνδέσεως με τον JACK" - #: audioregion.cc:1643 msgid "" "You have requested an operation that requires audio analysis.\n" @@ -286,23 +227,10 @@ msgid "cannot read sample data for unscaled peak computation" msgstr "" "δεν μποÏÏŽ να διαβάσω δεδομένα δείγματος για υπολογισμό μη-κλιμακώτου peak" -#: audiosource.cc:387 -#, fuzzy -msgid "AudioSource: cannot open peakpath (a) \"%1\" (%2)" -msgstr "AudioSource: δεν μποÏÏŽ να ανοίξω το peakpath \"%1\" (%2)" - -#: audiosource.cc:463 -#, fuzzy -msgid "AudioSource: cannot open peakpath (b) \"%1\" (%2)" -msgstr "AudioSource: δεν μποÏÏŽ να ανοίξω το peakpath \"%1\" (%2)" - #: audiosource.cc:587 -#, fuzzy msgid "" "AudioSource[%1]: peak read - cannot read %2 samples at offset %3 of %4 (%5)" msgstr "" -"AudioSource[%1]: ανάγνωση peak - δεν μποÏÏŽ να διαβάσω %2 δείγματα στο " -"(offset) %3" #: audiosource.cc:667 msgid "%1: could not write read raw data for peak computation (%2)" @@ -310,20 +238,10 @@ msgstr "" "%1: δεν μποÏεσα να γÏάψω ανεγνωσμένα raw δεδομένα για τον υπολογισμό του " "peak (%2)" -#: audiosource.cc:706 -#, fuzzy -msgid "AudioSource: cannot open peakpath (c) \"%1\" (%2)" -msgstr "AudioSource: δεν μποÏÏŽ να ανοίξω το peakpath \"%1\" (%2)" - #: audiosource.cc:773 audiosource.cc:886 msgid "%1: could not write peak file data (%2)" msgstr "%1: δεν μπόÏεσα να γÏάψω δεδομένα του αÏχείου peak (%2)" -#: audiosource.cc:924 -#, fuzzy -msgid "could not truncate peakfile %1 to %2 (error: %3)" -msgstr "δεν μποÏÏŽ να απαλοίψω το peakfile %1 για %2 (%3)" - #: auditioner.cc:87 msgid "no outputs available for auditioner - manual connection required" msgstr "" @@ -336,27 +254,9 @@ msgstr "" msgid "Cannot setup auditioner processing flow for %1 channels" msgstr "" -#: automatable.cc:81 -#, fuzzy -msgid "Automation node has no path property" -msgstr "%1: Ο Κόμβος Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Î´ÎµÎ½ έχει οÏισμένο path" - #: automatable.cc:101 -#, fuzzy msgid "cannot open %2 to load automation data (%3)" -msgstr "%1: δεν μποÏÏŽ να ανοίξω %2 για ανάκληση δεδομένων Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï (%3)" - -#: automatable.cc:129 -#, fuzzy -msgid "cannot load automation data from %2" -msgstr "%1: δεν μποÏοÏν να ανακληθοÏν δεδομένα Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Î±Ï€ÏŒ %2" - -#: automation_list.cc:353 -#, fuzzy -msgid "automation list: cannot load coordinates from XML, all points ignored" msgstr "" -"λίστα αυτοματισμοÏ: καμία x-συντεταγμένη αποθηκευμένη για σημείο ελέγχου (το " -"σημείο αγνοήθηκε)" #: automation_list.cc:399 msgid "" @@ -393,11 +293,6 @@ msgstr "ΣυνεδÏία: δεν μπόÏεσα να δημιουÏγήσω δέ msgid "poll on butler request pipe failed (%1)" msgstr "" -#: butler.cc:163 -#, fuzzy -msgid "Error on butler thread request pipe: fd=%1 err=%2" -msgstr "Σφάλμα στο butler thread request pipe" - #: butler.cc:201 msgid "Error reading from butler request pipe" msgstr "Σφάλμα στην ανάγνωση από butler request pipe" @@ -458,14 +353,13 @@ msgstr "δεν ευÏέθη το cpu MHz στο /proc/cpuinfo" msgid "audio" msgstr "" -#: data_type.cc:28 session.cc:1640 session.cc:1643 +#: data_type.cc:28 session.cc:1790 session.cc:1793 msgid "MIDI" msgstr "" #: data_type.cc:29 -#, fuzzy msgid "unknown" -msgstr "Άγνωστο" +msgstr "" #: delivery.cc:114 msgid "main outs" @@ -483,11 +377,6 @@ msgstr "Η Τοποθεσία \"%1\" δεν είναι ικανή για track l msgid "Could not get port for export channel \"%1\", dropping the channel" msgstr "" -#: export_failed.cc:32 -#, fuzzy -msgid "Export failed: %1" -msgstr "Εισαγωγή: src_new() απέτυχε : %1" - #: export_filename.cc:118 msgid "Existing export folder for this session (%1) does not exist - ignored" msgstr "" @@ -545,18 +434,16 @@ msgid "Session rate" msgstr "" #: export_format_specification.cc:537 -#, fuzzy msgid "normalize" -msgstr "εξομαλÏνθηκε στα %.2fdB" +msgstr "" #: export_format_specification.cc:541 msgid "trim" msgstr "" #: export_format_specification.cc:543 -#, fuzzy msgid "trim start" -msgstr "Ï€ÏωταÏχική κατάσταση" +msgstr "" #: export_format_specification.cc:545 msgid "trim end" @@ -574,7 +461,7 @@ msgstr "" msgid "Rectangular" msgstr "" -#: export_formats.cc:52 session.cc:4861 session.cc:4877 +#: export_formats.cc:52 session.cc:5008 session.cc:5024 msgid "None" msgstr "" @@ -619,9 +506,8 @@ msgid "Editor: cannot open \"%1\" as export file for CD marker file" msgstr "" #: export_handler.cc:417 export_handler.cc:420 -#, fuzzy msgid "an error occured while writing a TOC/CUE file: %1" -msgstr "παÏουσιάστηκε σφάλμα κάτα την μετατÏοπή του ÏÏ…Î¸Î¼Î¿Ï Î´ÎµÎ¹Î³Î¼Î±Ï„Î¿Î»Î·ÏˆÎ¯Î±Ï‚: %1" +msgstr "" #: export_handler.cc:642 export_handler.cc:700 msgid "Cannot convert %1 to Latin-1 text" @@ -632,29 +518,24 @@ msgid "Searching for export formats in %1" msgstr "" #: export_profile_manager.cc:99 -#, fuzzy msgid "Unable to create export format directory %1: %2" -msgstr "δεν μποÏÏŽ να δημιουÏγήσω φάκελο συνεδÏίας \"%1\"; αγνοήθηκε" +msgstr "" #: export_profile_manager.cc:257 -#, fuzzy msgid "Unable to remove export preset %1: %2" -msgstr "δεν μποÏÏŽ να δημιουÏγήσω φάκελο συνεδÏίας \"%1\"; αγνοήθηκε" +msgstr "" #: export_profile_manager.cc:347 -#, fuzzy msgid "Selection" -msgstr "ανάλυση" +msgstr "" #: export_profile_manager.cc:600 -#, fuzzy msgid "Unable to rename export format %1 to %2: %3" -msgstr "δεν μποÏÏŽ να μετονομάσω την πηγή του audio file από %1 σε %2 (%3)" +msgstr "" #: export_profile_manager.cc:632 -#, fuzzy msgid "Unable to remove export profile %1: %2" -msgstr "δεν μποÏÏŽ να ελέγξω το αÏχείο κατάστασεως %1 (%2)" +msgstr "" #: export_profile_manager.cc:649 msgid "empty format" @@ -690,16 +571,11 @@ msgid "" "configuration" msgstr "" -#: file_source.cc:198 session_state.cc:2891 +#: file_source.cc:198 session_state.cc:2807 msgid "" "there are already 1000 files with names like %1; versioning discontinued" msgstr "ΥπάÏχουν ήδη 1000 αÏχεία με ονόματα όπως %1; μη-συνεχές versioning" -#: file_source.cc:207 -#, fuzzy -msgid "cannot rename file source from %1 to %2 (%3)" -msgstr "δεν μποÏÏŽ να μετονομάσω την πηγή του audio file από %1 σε %2 (%3)" - #: file_source.cc:250 file_source.cc:378 msgid "FileSource: search path not set" msgstr "FileSource: μονοπάτι αναζητήσεως δεν ετέθη" @@ -731,15 +607,9 @@ msgid "" "continue working, but please report this to the developers." msgstr "" -#: file_source.cc:540 -#, fuzzy -msgid "cannot rename file %1 to %2 (%3)" -msgstr "δεν μποÏÏŽ να απαλοίψω το peakfile %1 για %2 (%3)" - #: filesystem_paths.cc:73 -#, fuzzy msgid "Cannot create Configuration directory %1 - cannot run" -msgstr "δεν μποÏÏŽ να δημιουÏγήσω τον φάκελο 'sounds' \"%1\"; αγνοήθηκε" +msgstr "" #: filesystem_paths.cc:78 msgid "" @@ -760,16 +630,12 @@ msgid "ARDOUR_DATA_PATH not set in environment - exiting\n" msgstr "" #: filter.cc:66 -#, fuzzy msgid "filter: error creating name for new file based on %1" msgstr "" -"audiofilter: σφάλμα στη δημιουÏγία ονόματος για νέο audio file βασισμένο σε " -"%1" #: filter.cc:78 -#, fuzzy msgid "filter: error creating new file %1 (%2)" -msgstr "audiofilter: σφάλμα στη δημιουÏγία νέου audio file %1 (%2)" +msgstr "" #: find_session.cc:51 msgid "Could not resolve path: %1 (%2)" @@ -784,9 +650,8 @@ msgid "cannot check statefile %1 (%2)" msgstr "δεν μποÏÏŽ να ελέγξω το αÏχείο κατάστασεως %1 (%2)" #: find_session.cc:125 -#, fuzzy msgid "%1 is not a snapshot file" -msgstr "Το %1 δεν έιναι αÏχείο-στιγμιότυπο του Ardour" +msgstr "" #: find_session.cc:142 msgid "cannot determine current working directory (%1)" @@ -796,28 +661,17 @@ msgstr "δεν μποÏÏŽ να καθοÏίσω τον Ï„Ïέχοντα ÎµÎ½ÎµÏ msgid "unknown file type for session %1" msgstr "άγνωστος Ï„Ïπος αÏχείου για την συνεδÏία %1" -#: globals.cc:205 +#: globals.cc:207 msgid "Could not set system open files limit to \"unlimited\"" msgstr "" -#: globals.cc:207 -#, fuzzy +#: globals.cc:209 msgid "Could not set system open files limit to %1" -msgstr "αδÏνατη η επαναφοÏά του state file από backup %1" - -#: globals.cc:211 -msgid "Your system is configured to limit %1 to only %2 open files" msgstr "" -#: globals.cc:215 -#, fuzzy -msgid "Could not get system open files limit (%1)" -msgstr "%1: δεν μπόÏεσα να γÏάψω δεδομένα του αÏχείου peak (%2)" - -#: globals.cc:266 -#, fuzzy -msgid "Loading configuration" -msgstr "Ανάκληση αÏχείου Ïυθμίσεων χÏήστη %1" +#: globals.cc:213 +msgid "Your system is configured to limit %1 to only %2 open files" +msgstr "" #: import.cc:207 msgid "Could not find a source for %1 even though we are updating this file!" @@ -847,11 +701,6 @@ msgstr "" msgid "Import: cannot open input sound file \"%1\"" msgstr "Εισαγωγή: δεν μποÏÏŽ να ανοίξω το εισαγμένο αÏχείο ήχου \"%1\"" -#: import.cc:510 -#, fuzzy -msgid "Import: error opening MIDI file" -msgstr "Εισαγωγή: σφάλμα κατά την Ï„Ïοποποίηση αÏχείου \"%1\"" - #: import.cc:549 msgid "Loading MIDI file %1" msgstr "" @@ -861,9 +710,8 @@ msgid "Failed to remove some files after failed/cancelled import operation" msgstr "" #: instrument_info.cc:40 instrument_info.cc:61 -#, fuzzy msgid "Unknown" -msgstr "Άγνωστο" +msgstr "" #: instrument_info.cc:230 msgid "preset %1 (bank %2)" @@ -873,11 +721,6 @@ msgstr "" msgid "%1 - cannot find any track/bus with the ID %2 to connect to" msgstr "" -#: io.cc:208 -#, fuzzy -msgid "IO: cannot disconnect port %1 from %2" -msgstr "IO: δεν μποÏει να αποσυνδεθεί η θÏÏα εισόδου %1 από %2" - #: io.cc:343 io.cc:428 msgid "IO: cannot register input port %1" msgstr "IO: δεν μποÏεί να καταχώÏηθεί η θÏÏα εισόδου %1" @@ -895,9 +738,8 @@ msgid "in" msgstr "" #: io.cc:706 -#, fuzzy msgid "out" -msgstr "κοπή" +msgstr "" #: io.cc:707 msgid "input" @@ -908,20 +750,16 @@ msgid "output" msgstr "" #: io.cc:717 -#, fuzzy msgid "Unknown bundle \"%1\" listed for %2 of %3" -msgstr "Άγνωστη σÏνδεση \"%1\" στη λίστα εισόδου του %2" +msgstr "" #: io.cc:783 -#, fuzzy msgid "Bundle %1 was not available - \"%2\" used instead" msgstr "" -"Η ΣÏνδεση %1 δεν ήταν διαθέσιμη - Αντ'αυτής χÏησιμοποιήθηκε η \"in 1\" " #: io.cc:786 -#, fuzzy msgid "No %1 bundles available as a replacement" -msgstr "Καμία διαθέσιμη input σÏνδεση ως εναλλακτική" +msgstr "" #: io.cc:889 msgid "%1: cannot create I/O ports" @@ -943,61 +781,57 @@ msgstr "IO: δÏσμοÏφη γÏαμμή στον κόμβο XML για τις msgid "IO: bad output string in XML node \"%1\"" msgstr "IO: κακή γÏαμμή εξόδουστον κόμβο XML \"%1\"" -#: io.cc:1410 +#: io.cc:1411 #, c-format msgid "%s %u" msgstr "" -#: io.cc:1457 +#: io.cc:1458 #, c-format msgid "%s in" msgstr "" -#: io.cc:1459 +#: io.cc:1460 #, c-format msgid "%s out" msgstr "" -#: io.cc:1534 session.cc:494 session.cc:523 +#: io.cc:1535 session.cc:685 session.cc:714 msgid "mono" msgstr "" -#: io.cc:1536 session.cc:507 session.cc:537 +#: io.cc:1537 session.cc:698 session.cc:728 msgid "L" msgstr "" -#: io.cc:1536 session.cc:509 session.cc:539 +#: io.cc:1537 session.cc:700 session.cc:730 msgid "R" msgstr "" -#: io.cc:1538 io.cc:1544 +#: io.cc:1539 io.cc:1545 #, c-format msgid "%d" msgstr "" -#: ladspa_plugin.cc:88 +#: ladspa_plugin.cc:86 msgid "LADSPA: module has no descriptor function." msgstr "LADSPA: το module δεν έχει ενδεικτική λειτουÏγία." -#: ladspa_plugin.cc:93 +#: ladspa_plugin.cc:91 msgid "LADSPA: plugin has gone away since discovery!" msgstr "LADSPA: το plugin την 'κοπάνισε' μετά την ανακάλυψη του!" -#: ladspa_plugin.cc:100 +#: ladspa_plugin.cc:98 msgid "LADSPA: \"%1\" cannot be used, since it cannot do inplace processing" msgstr "" "LADSPA: \"%1\" δεν μποÏεί να χÏησιμοποιηθεί, εφ'όσον δεν μποÏεί να κάνει επι " "τόπου επεξεÏγασία" #: ladspa_plugin.cc:297 -#, fuzzy msgid "" "illegal parameter number used with plugin \"%1\". This may indicate a change " "in the plugin design, and presets may be invalid" msgstr "" -"παÏάνομος αÏιθμός παÏαμέτÏου σε χÏήση με το plugin \"%1\". Ίσως να " -"ενδείκνυται αλλαγή στο σχεδιασμό του plugin, και οι Ïυθμίσεις ίσως να είναι " -"άκυÏες" #: ladspa_plugin.cc:376 ladspa_plugin.cc:426 msgid "Bad node sent to LadspaPlugin::set_state" @@ -1015,11 +849,6 @@ msgstr "LADSPA: κανένα δεδομένο θÏÏας ladspa" msgid "LADSPA: cannot load module from \"%1\"" msgstr "LADSPA: δεν μποÏÏŽ να φοÏτώσω module από \"%1\"" -#: ladspa_plugin.cc:827 -#, fuzzy -msgid "Could not locate HOME. Preset not removed." -msgstr "Δεν μπόÏεσα να βÏÏŽ το HOME. ΠÏο-ÏÏθμιση δεν αποθηκεÏθηκε." - #: ladspa_plugin.cc:864 ladspa_plugin.cc:870 msgid "Could not create %1. Preset not saved. (%2)" msgstr "Δεν μπόÏεσα να δημιουÏγήσω το %1. ΠÏο-ÏÏθμιση δεν αποθηκεÏθηκε. (%2)" @@ -1040,11 +869,6 @@ msgstr "" msgid "incorrect XML node passed to Location::set_state" msgstr "λανθασμένος κόμβος XML πέÏασε στην Τοποθεσία::set_state" -#: location.cc:455 -#, fuzzy -msgid "XML node for Location has no ID information" -msgstr "Ο κόμβος XML για την Τοποθεσία δεν έχει πληÏοφοÏίες τέλους" - #: location.cc:459 msgid "XML node for Location has no name information" msgstr "Ο κόμβος XML για την Τοποθεσία δεν έχει πληÏοφοÏίες ονόματος" @@ -1071,7 +895,7 @@ msgstr "" msgid "incorrect XML mode passed to Locations::set_state" msgstr "λανθασμένο XML mode πέÏασε στις Τοποθεσίες::set_state" -#: location.cc:842 session.cc:4362 session_state.cc:1114 +#: location.cc:842 session.cc:4510 session_state.cc:1031 msgid "session" msgstr "" @@ -1135,47 +959,6 @@ msgid "" "%1: I/O configuration change %4 requested to use %2, but channel setup is %3" msgstr "" -#: midi_diskstream.cc:219 -#, fuzzy -msgid "MidiDiskstream: Playlist \"%1\" isn't a midi playlist" -msgstr "AudioDiskStream: Η Λίστα \"%1\" δεν είναι ηχητική λίστα αναπαÏ/γής" - -#: midi_diskstream.cc:270 -#, fuzzy -msgid "MidiDiskstream %1: there is no existing playlist to make a copy of!" -msgstr "" -"AudioDiskstream %1: δεν υπάÏχει λίστα αναπαÏ/γής για να γίνει αντιγÏαφή!" - -#: midi_diskstream.cc:699 -#, fuzzy -msgid "MidiDiskstream %1: cannot read %2 from playlist at frame %3" -msgstr "" -"AudioDiskstream %1: δεν μπόÏεσα να διαβάσω %2 από τη λίστα αναπαÏ/γής στο " -"frame %3" - -#: midi_diskstream.cc:834 -#, fuzzy -msgid "MidiDiskstream %1: cannot write to disk" -msgstr "AudioDiskstream %1: δεν μποÏÏŽ να γÏάψω στο δίσκο" - -#: midi_diskstream.cc:868 -#, fuzzy -msgid "MidiDiskstream \"%1\": cannot flush captured data to disk!" -msgstr "" -"AudioDiskstream \"%1\": αδÏνατη η εκκαθάÏιση δειγματοληπτικών δεδομένων στο " -"δίσκο!" - -#: midi_diskstream.cc:955 -#, fuzzy -msgid "%1: could not create region for complete midi file" -msgstr "%1: δεν μπόÏεσα να δημιουÏγήσω πεÏιοχή για ολόκληÏο audio file" - -#: midi_diskstream.cc:992 -#, fuzzy -msgid "MidiDiskstream: could not create region for captured midi!" -msgstr "" -"AudioDiskstream: δεν μπόÏεσα να δημιουÏγήσω πεÏιοχή για δειγματοληψίες!" - #: midi_model.cc:634 msgid "No NoteID found for note property change - ignored" msgstr "" @@ -1212,65 +995,46 @@ msgstr "" msgid "MIDI stretch created non-MIDI source" msgstr "" -#: monitor_processor.cc:53 -#, fuzzy -msgid "monitor dim" -msgstr "monitor" - -#: monitor_processor.cc:54 -#, fuzzy -msgid "monitor cut" -msgstr "monitor" - -#: monitor_processor.cc:55 -#, fuzzy -msgid "monitor mono" -msgstr "monitor" - #: monitor_processor.cc:58 -#, fuzzy msgid "monitor dim level" -msgstr "monitor" +msgstr "" #: monitor_processor.cc:62 msgid "monitor solo boost level" msgstr "" #: monitor_processor.cc:512 -#, fuzzy msgid "cut control %1" -msgstr "[έλεγχος]" +msgstr "" #: monitor_processor.cc:513 -#, fuzzy msgid "dim control" -msgstr "[έλεγχος]" +msgstr "" #: monitor_processor.cc:514 msgid "polarity control" msgstr "" #: monitor_processor.cc:515 -#, fuzzy msgid "solo control" -msgstr "[έλεγχος]" +msgstr "" -#: mtc_slave.cc:235 +#: mtc_slave.cc:238 msgid "MTC Slave: atomic read of current time failed, sleeping!" msgstr "" "MTC Slave: ατομική ανάγνωση του Ï„Ïέχοντος χÏόνου απέτυχε, πίσω για Ïπνο!" -#: mtc_slave.cc:359 +#: mtc_slave.cc:361 msgid "" "Unknown rate/drop value %1 in incoming MTC stream, session values used " "instead" msgstr "" -#: mtc_slave.cc:379 +#: mtc_slave.cc:381 msgid "Session framerate adjusted from %1 TO: MTC's %2." msgstr "" -#: mtc_slave.cc:393 +#: mtc_slave.cc:395 msgid "Session and MTC framerate mismatch: MTC:%1 %2:%3." msgstr "" @@ -1283,52 +1047,44 @@ msgid "paste" msgstr "επικόλληση" #: operations.cc:26 -#, fuzzy msgid "duplicate region" -msgstr "αντικατάσταση πεÏιοχής" +msgstr "" #: operations.cc:27 msgid "insert file" msgstr "" #: operations.cc:28 -#, fuzzy msgid "insert region" -msgstr "χτίσιμο πεÏιοχής" +msgstr "" #: operations.cc:29 msgid "drag region brush" msgstr "" #: operations.cc:30 -#, fuzzy msgid "region drag" -msgstr "Ï€Ïόσθεση πεÏιοχής" +msgstr "" #: operations.cc:31 -#, fuzzy msgid "selection grab" -msgstr "ανάλυση" +msgstr "" #: operations.cc:32 -#, fuzzy msgid "region fill" -msgstr "Ï€Ïόσθεση πεÏιοχής" +msgstr "" #: operations.cc:33 -#, fuzzy msgid "fill selection" -msgstr "ανάλυση" +msgstr "" #: operations.cc:34 -#, fuzzy msgid "create region" -msgstr "αντικατάσταση πεÏιοχής" +msgstr "" #: operations.cc:35 -#, fuzzy msgid "region copy" -msgstr "Ï€Ïόσθεση πεÏιοχής" +msgstr "" #: operations.cc:36 msgid "fixed time region copy" @@ -1342,21 +1098,11 @@ msgstr "" msgid "looking for panners in %1" msgstr "" -#: panner_manager.cc:99 +#: panner_manager.cc:100 msgid "Panner discovered: \"%1\" in %2" msgstr "" -#: panner_manager.cc:116 -#, fuzzy -msgid "PannerManager: cannot load module \"%1\" (%2)" -msgstr "ControlProtocolManager: δεν μποÏÏŽ να φοÏτώσω το module \"%1\" (%2)" - -#: panner_manager.cc:123 -#, fuzzy -msgid "PannerManager: module \"%1\" has no descriptor function." -msgstr "ControlProtocolManager: το module \"%1\" δεν έχει descriptor function." - -#: panner_manager.cc:186 +#: panner_manager.cc:187 msgid "no panner discovered for in/out = %1/%2" msgstr "" @@ -1372,11 +1118,6 @@ msgstr "ο κόμβος για τα plugin του panner δεν έχει πλη msgid "region state node has no ID, ignored" msgstr "" -#: playlist.cc:2088 -#, fuzzy -msgid "Playlist: cannot create region from XML" -msgstr "Playlist: αδÏνατη η δημιουÏγία ΠεÏιοχής από αÏχείο καταστάσεως" - #: playlist_source.cc:99 msgid "No playlist ID in PlaylistSource XML!" msgstr "" @@ -1402,9 +1143,8 @@ msgid "programming error: " msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: " #: plugin_insert.cc:926 -#, fuzzy msgid "XML node describing plugin is missing the `type' field" -msgstr "Στον κόμβο XML που πεÏιγÏάφει το insert λείπει το πεδίο `type'" +msgstr "" #: plugin_insert.cc:941 msgid "unknown plugin type %1 in plugin insert state" @@ -1430,15 +1170,9 @@ msgstr "PluginInsert: Auto: χωÏίς αÏιθμό θÏÏας ladspa" msgid "PluginInsert: Auto: port id out of range" msgstr "PluginInsert: Auto: το id θÏÏας είναι εκτός πεδίου" -#: plugin_insert.cc:1137 -#, fuzzy -msgid "PluginInsert: automatable control %1 not found - ignored" -msgstr "αβέβαιο συμβάν Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï ÎµÏ…Ïέθηκε (και αγνοήθηκε)" - #: plugin_manager.cc:161 -#, fuzzy msgid "Discovering Plugins" -msgstr "μετατÏοπή ήχου" +msgstr "" #: plugin_manager.cc:335 msgid "Could not parse rdf file: %1" @@ -1453,38 +1187,18 @@ msgid "LADSPA: module \"%1\" has no descriptor function." msgstr "LADSPA: το module \"%1\" δεν έχει λειτουÏγία πεÏιγÏαφής." #: plugin_manager.cc:602 -#, fuzzy msgid "" "VST plugin %1 does not support processReplacing, and so cannot be used in %2 " "at this time" msgstr "" -"Το VST plugin %1 δεν υποστηÏίζει processReplacing, και έτσι δεν μποÏεί να " -"χÏησιμοποιηθεί στον ardour αυτή τη φοÏά" #: plugin_manager.cc:709 -#, fuzzy msgid "" "linuxVST plugin %1 does not support processReplacing, and so cannot be used " "in %2 at this time" msgstr "" -"Το VST plugin %1 δεν υποστηÏίζει processReplacing, και έτσι δεν μποÏεί να " -"χÏησιμοποιηθεί στον ardour αυτή τη φοÏά" -#: plugin_manager.cc:870 -#, fuzzy -msgid "unknown plugin status type \"%1\" - all entries ignored" -msgstr "άγνωστος Ï„Ïπος Λήψης(Insert) \"%1\"... αγνοήθηκε" - -#: plugin_manager.cc:887 -#, fuzzy -msgid "unknown plugin type \"%1\" - ignored" -msgstr "άγνωστος Ï„Ïπος Λήψης(Insert) \"%1\"... αγνοήθηκε" - -#: port.cc:367 -msgid "get_connected_latency_range() called while disconnected from JACK" -msgstr "" - -#: port.cc:450 +#: port.cc:410 msgid "could not reregister %1" msgstr "αδÏνατη η επανακαταγÏαφή %1" @@ -1493,14 +1207,37 @@ msgid "insert %1" msgstr "" #: port_insert.cc:198 -#, fuzzy msgid "XML node describing port insert is missing the `type' field" -msgstr "Στον κόμβο XML που πεÏιγÏάφει το insert λείπει το πεδίο `type'" +msgstr "" #: port_insert.cc:203 msgid "non-port insert XML used for port plugin insert" msgstr "εισαγωγή μη-θÏÏας XML για χÏήση σε εισαγωγή plugin θÏÏας" +#: port_manager.cc:270 +msgid "" +"a port with the name \"%1\" already exists: check for duplicated track/bus " +"names" +msgstr "" + +#: port_manager.cc:272 +msgid "" +"No more ports are available. You will need to stop %1 and restart with more " +"ports if you need this many tracks." +msgstr "" + +#: port_manager.cc:314 +msgid "unable to create port: %1" +msgstr "" + +#: port_manager.cc:401 +msgid "AudioEngine: cannot connect %1 (%2) to %3 (%4)" +msgstr "AudioEngine: αδÏνατη η σÏνδεση %1 (%2) σε %3 (%4)" + +#: port_manager.cc:453 port_manager.cc:454 +msgid "Re-establising port %1 failed" +msgstr "" + #: processor.cc:207 msgid "No %1 property flag in element %2" msgstr "" @@ -1509,47 +1246,33 @@ msgstr "" msgid "No child node with active property" msgstr "" -#: rc_configuration.cc:93 +#: rc_configuration.cc:88 msgid "Loading system configuration file %1" msgstr "Ανάκληση αÏχείου Ïυθμίσεων συστήματος %1" #: rc_configuration.cc:97 -#, fuzzy -msgid "%1: cannot read system configuration file \"%2\"" -msgstr "" -"Ardour: δεν μποÏÏŽ να διαβάσω το αÏχείο διαÏÏυθμίσεως του συστήματος \"%1\"" - -#: rc_configuration.cc:102 -#, fuzzy msgid "%1: system configuration file \"%2\" not loaded successfully." msgstr "" -"Ardour: το αÏχείο διαÏÏυθμίσεως του συστήματος \"%1\" δεν φοÏτώθηκε επιτυχώς." -#: rc_configuration.cc:106 +#: rc_configuration.cc:101 msgid "" "Your system %1 configuration file is empty. This probably means that there " "was an error installing %1" msgstr "" -#: rc_configuration.cc:121 +#: rc_configuration.cc:116 msgid "Loading user configuration file %1" msgstr "Ανάκληση αÏχείου Ïυθμίσεων χÏήστη %1" #: rc_configuration.cc:125 -#, fuzzy -msgid "%1: cannot read configuration file \"%2\"" -msgstr "Ardour: αÏχείο διαÏÏυθμίσεως μή αναγνώσιμο \"%1\"" - -#: rc_configuration.cc:130 -#, fuzzy msgid "%1: user configuration file \"%2\" not loaded successfully." -msgstr "Ardour: αÏχείο Ïυθμίσεων χÏήστη \"%1\" δεν φοÏτώθηκε επιτυχώς." +msgstr "" -#: rc_configuration.cc:134 +#: rc_configuration.cc:129 msgid "your %1 configuration file is empty. This is not normal." msgstr "" -#: rc_configuration.cc:151 +#: rc_configuration.cc:146 msgid "Config file %1 not saved" msgstr "ΑÏχείο Ïυθμίσεων %1 δεν αποθηκεÏθηκε" @@ -1559,11 +1282,9 @@ msgstr "δεν μποÏÏŽ να ανοίξω το Ï€Ïόσφατο αÏχείο #: region_factory.cc:67 region_factory.cc:109 region_factory.cc:150 #: region_factory.cc:192 -#, fuzzy msgid "" "programming error: RegionFactory::create() called with unknown Region type" msgstr "" -"σφάλμα Ï€ÏογÏαμματισμοÏ: Playlist::createRegion εκλήθη με άγνωστο Ï„Ïπο Πε" #: region_factory.cc:554 msgid "%1 compound-%2 (%3)" @@ -1589,38 +1310,35 @@ msgstr "Εισαγωγή: src_new() απέτυχε : %1" msgid "return %1" msgstr "" -#: route.cc:1105 route.cc:2581 -#, fuzzy +#: route.cc:1075 route.cc:2528 msgid "unknown Processor type \"%1\"; ignored" -msgstr "άγνωστος Ï„Ïπος Λήψης(Insert) \"%1\"... αγνοήθηκε" +msgstr "" -#: route.cc:1117 -#, fuzzy -msgid "processor could not be created. Ignored." -msgstr "εισαγωγή δεν μπόÏεσε να δημιουÏγηθεί. Αγνοήθηκε." - -#: route.cc:2007 route.cc:2234 +#: route.cc:1962 route.cc:2187 msgid "Bad node sent to Route::set_state() [%1]" msgstr "Κακός κόμβος εστάλη στο Route::set_state() [%1]" -#: route.cc:2067 +#: route.cc:2022 msgid "Pannable state found for route (%1) without a panner!" msgstr "" -#: route.cc:2137 route.cc:2141 route.cc:2348 route.cc:2352 +#: route.cc:2096 route.cc:2100 route.cc:2301 route.cc:2305 msgid "badly formed order key string in state file! [%1] ... ignored." msgstr "" "δÏσμοÏφη γÏαμμή ÎºÎ»ÎµÎ¹Î´Î¹Î¿Ï Ï„Î±Î¾Î¹Î½Î¿Î¼Î®ÏƒÎµÏ‰Ï‚ στο αÏχείο καταστάσεως ! [%1] ... " "αγνοήθηκε." +#: route.cc:2311 +msgid "Converting deprecated order key for %1 using Editor order %2" +msgstr "" + #: route_group.cc:459 msgid "You cannot subgroup MIDI tracks at this time" msgstr "" #: rb_effect.cc:233 rb_effect.cc:274 -#, fuzzy msgid "tempoize: error reading data from %1 at %2 (wanted %3, got %4)" -msgstr "tempoize: σφάλμα στην ανάγνωση δεδομένων από %1" +msgstr "" #: rb_effect.cc:303 rb_effect.cc:325 msgid "error writing tempo-adjusted data to %1" @@ -1634,200 +1352,141 @@ msgstr "" msgid "send %1" msgstr "" -#: send.cc:65 -#, fuzzy -msgid "programming error: send created using role %1" -msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: άγνωστος Ï„Ïπος of Redirect διεγÏάφη!" - -#: session.cc:347 -msgid "Set block size and sample rate" +#: session.cc:343 +msgid "Connect to engine" msgstr "" -#: session.cc:352 -#, fuzzy -msgid "Using configuration" -msgstr "Ανάκληση αÏχείου Ïυθμίσεων χÏήστη %1" - -#: session.cc:377 -msgid "LTC In" +#: session.cc:348 +msgid "Session loading complete" msgstr "" -#: session.cc:378 -msgid "LTC Out" +#: session.cc:420 +msgid "Set up LTC" msgstr "" -#: session.cc:404 -msgid "LTC-in" +#: session.cc:422 +msgid "Set up Click" msgstr "" -#: session.cc:405 -msgid "LTC-out" -msgstr "" - -#: session.cc:434 -msgid "could not setup Click I/O" -msgstr "Δεν μπόÏεσα να διαμοÏφώσω το I/O του ΜετÏονόμου(click)" - -#: session.cc:461 -msgid "cannot setup Click I/O" -msgstr "Δεν μποÏÏŽ να διαμοÏφώσω το I/O του ΜετÏονόμου(click)" - -#: session.cc:464 -msgid "Compute I/O Latencies" -msgstr "" - -#: session.cc:470 +#: session.cc:424 msgid "Set up standard connections" msgstr "" -#: session.cc:491 +#: session.cc:634 +msgid "could not setup Click I/O" +msgstr "Δεν μπόÏεσα να διαμοÏφώσω το I/O του ΜετÏονόμου(click)" + +#: session.cc:682 #, c-format msgid "out %" msgstr "" -#: session.cc:505 +#: session.cc:696 #, c-format msgid "out %+%" msgstr "" -#: session.cc:520 +#: session.cc:711 #, c-format msgid "in %" msgstr "" -#: session.cc:534 +#: session.cc:725 #, c-format msgid "in %+%" msgstr "" -#: session.cc:570 -msgid "Setup signal flow and plugins" -msgstr "" - -#: session.cc:614 -msgid "Connect to engine" -msgstr "" - -#: session.cc:645 -#, fuzzy -msgid "cannot connect master output %1 to %2" -msgstr "IO: δεν μποÏεί να συνδεθεί η θÏÏα εξόδου %1 στο %2" - -#: session.cc:704 +#: session.cc:848 msgid "monitor" msgstr "monitor" -#: session.cc:749 -#, fuzzy -msgid "cannot connect control input %1 to %2" -msgstr "IO: δεν μποÏεί να συνδεθεί η θÏÏα εισόδου %1 στο %2" - -#: session.cc:769 +#: session.cc:913 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "" -#: session.cc:800 -#, fuzzy -msgid "cannot connect control output %1 to %2" -msgstr "IO: δεν μποÏεί να συνδεθεί η θÏÏα εξόδου %1 στο %2" - -#: session.cc:864 +#: session.cc:1008 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "δεν μποÏÏŽ να δημιουÏγήσω τον ΑκÏοατή: καμία ακÏόαση πεÏιοχών δυνατή" -#: session.cc:1043 +#: session.cc:1192 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" "ΣυνεδÏία: δεν μποÏείτε να χÏησιμοποιήσετε αυτήν την τοποθεσία για auto punch " "(αÏχή <= τέλος)" -#: session.cc:1083 +#: session.cc:1232 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" msgstr "" -#: session.cc:1396 +#: session.cc:1546 msgid "feedback loop setup between %1 and %2" msgstr "διαμόÏφωση feedback loop ανάμεσα σε %1 και %2" -#: session.cc:1692 -#, fuzzy -msgid "Session: could not create new midi track." -msgstr "ΣυνεδÏία: δεν μπόÏεσα να δημιουÏγήσω νέο κανάλι ήχου." +#: session.cc:1848 +msgid "" +"No more JACK ports are available. You will need to stop %1 and restart JACK " +"with more ports if you need this many tracks." +msgstr "" -#: session.cc:1875 session.cc:1878 +#: session.cc:2025 session.cc:2028 msgid "Audio" msgstr "" -#: session.cc:1902 session.cc:1910 session.cc:1987 session.cc:1995 +#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "δεν μποÏÏŽ να διαμοÏφώσω %1 in/%2 out διάταξη για νέο κανάλι ήχου" -#: session.cc:1933 +#: session.cc:2083 msgid "Session: could not create new audio track." msgstr "ΣυνεδÏία: δεν μπόÏεσα να δημιουÏγήσω νέο κανάλι ήχου." -#: session.cc:1965 session.cc:1968 +#: session.cc:2115 session.cc:2118 msgid "Bus" msgstr "" -#: session.cc:2018 -#, fuzzy -msgid "Session: could not create new audio route." -msgstr "ΣυνεδÏία: δεν μπόÏεσα να δημιουÏγήσω διαδÏομή." - -#: session.cc:2077 session.cc:2087 +#: session.cc:2227 session.cc:2237 msgid "Session: UINT_MAX routes? impossible!" msgstr "" -#: session.cc:2109 -#, fuzzy -msgid "Session: cannot create track/bus from template description" -msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω Πηγή από XML πεÏιγÏαφή." - -#: session.cc:2135 -#, fuzzy -msgid "Session: could not create new route from template" -msgstr "ΣυνεδÏία: δεν μπόÏεσα να δημιουÏγήσω διαδÏομή." - -#: session.cc:2164 +#: session.cc:2314 msgid "Adding new tracks/busses failed" msgstr "" -#: session.cc:3265 +#: session.cc:3413 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "" -#: session.cc:3385 session.cc:3443 +#: session.cc:3533 session.cc:3591 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "ΥπάÏχουν ήδη %1 εγγÏαφές για %2, τις οποίες θεωÏÏŽ πάÏα πολλές." -#: session.cc:3833 +#: session.cc:3981 msgid "send ID %1 appears to be in use already" msgstr "" -#: session.cc:3845 +#: session.cc:3993 msgid "aux send ID %1 appears to be in use already" msgstr "" -#: session.cc:3857 +#: session.cc:4005 msgid "return ID %1 appears to be in use already" msgstr "" -#: session.cc:3869 +#: session.cc:4017 msgid "insert ID %1 appears to be in use already" msgstr "" -#: session.cc:3996 +#: session.cc:4144 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "" -#: session.cc:4025 +#: session.cc:4173 msgid "too many bounced versions of playlist \"%1\"" msgstr "πάÏα πολλές bounced εκδόσεις της Playlist \"%1\"" -#: session.cc:4035 +#: session.cc:4183 msgid "cannot create new audio file \"%1\" for %2" msgstr "δεν μποÏÏŽ να δημιουÏγήσω νέο αÏχείο ήχου \"%1\" για %2" @@ -1854,11 +1513,6 @@ msgid "" "= %2" msgstr "" -#: session_directory.cc:59 -#, fuzzy -msgid "Cannot create Session directory at path %1 Error: %2" -msgstr "δεν μποÏÏŽ να δημιουÏγήσω φάκελο συνεδÏίας \"%1\"; αγνοήθηκε" - #: session_directory.cc:76 msgid "Session subdirectory does not exist at path %1" msgstr "" @@ -1869,11 +1523,11 @@ msgstr "" "ΣυνεδÏία: δεν γίνεται να υπάÏχουν δÏο συμβάντα του Ï„Ïπου %1 στο ίδιο frame " "(%2)." -#: session_export.cc:126 +#: session_export.cc:125 msgid "%1: cannot seek to %2 for export" msgstr "%1: δεν μποÏÏŽ να αναζητήσω στο %2 για εξαγωγή" -#: session_export.cc:183 +#: session_export.cc:182 msgid "Export ended unexpectedly: %1" msgstr "" @@ -1883,10 +1537,6 @@ msgid "" "of this session." msgstr "" -#: session_midi.cc:428 -msgid "Session: could not send full MIDI time code" -msgstr "ΣυνεδÏία: δεν μπόÏεσα να στείλω ολόκληÏο MIDI time code" - #: session_midi.cc:520 msgid "Session: cannot send quarter-frame MTC message (%1)" msgstr "ΣυνεδÏία: δεν μποÏÏŽ να στείλω τέταÏτο-frame MTC μήνυμα (%1)" @@ -1895,255 +1545,140 @@ msgstr "ΣυνεδÏία: δεν μποÏÏŽ να στείλω τέταÏτο-fra msgid "Session: cannot create Playlist from XML description." msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω την Playlist από την XML πεÏιγÏαφή." -#: session_process.cc:133 +#: session_process.cc:132 msgid "Session: error in no roll for %1" msgstr "ΣυνεδÏία: σφάλμα στο no roll για %1" -#: session_process.cc:1158 +#: session_process.cc:1157 msgid "Programming error: illegal event type in process_event (%1)" msgstr "" "Σφάλμα Ï€ÏογÏαμματισμοÏ: παÏάνομος Ï„Ïπος συμβάντος στο process_event (%1)" -#: session_state.cc:139 -#, fuzzy -msgid "Could not use path %1 (%2)" -msgstr "ΑδÏνατη η χÏήση του path %1 (%s)" - -#: session_state.cc:267 -#, fuzzy +#: session_state.cc:184 msgid "solo cut control (dB)" -msgstr "[έλεγχος]" +msgstr "" -#: session_state.cc:360 +#: session_state.cc:208 +msgid "Set block size and sample rate" +msgstr "" + +#: session_state.cc:325 msgid "Reset Remote Controls" msgstr "" -#: session_state.cc:385 -msgid "Session loading complete" -msgstr "" - -#: session_state.cc:452 -#, fuzzy -msgid "Session: cannot create session peakfile folder \"%1\" (%2)" -msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω peakfile dir συνεδÏίας \"%1\" (%2)" - -#: session_state.cc:459 +#: session_state.cc:424 msgid "Session: cannot create session sounds dir \"%1\" (%2)" msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω φάκελο ήχων συνεδÏίας \"%1\" (%2)" -#: session_state.cc:466 -#, fuzzy -msgid "Session: cannot create session midi dir \"%1\" (%2)" -msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω φάκελο συνεδÏίας \"%1\" (%2)" - -#: session_state.cc:473 -#, fuzzy -msgid "Session: cannot create session dead sounds folder \"%1\" (%2)" -msgstr "" -"ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω φάκελο 'νεκÏών' ήχων συνεδÏίας \"%1\" (%2)" - -#: session_state.cc:480 -#, fuzzy -msgid "Session: cannot create session export folder \"%1\" (%2)" -msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω φάκελο συνεδÏίας \"%1\" (%2)" - -#: session_state.cc:487 -#, fuzzy -msgid "Session: cannot create session analysis folder \"%1\" (%2)" -msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω φάκελο συνεδÏίας \"%1\" (%2)" - -#: session_state.cc:494 -#, fuzzy -msgid "Session: cannot create session plugins folder \"%1\" (%2)" -msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω φάκελο συνεδÏίας \"%1\" (%2)" - -#: session_state.cc:501 -#, fuzzy -msgid "Session: cannot create session externals folder \"%1\" (%2)" -msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω φάκελο συνεδÏίας \"%1\" (%2)" - -#: session_state.cc:515 -#, fuzzy -msgid "Session: cannot create session folder \"%1\" (%2)" -msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω φάκελο συνεδÏίας \"%1\" (%2)" - -#: session_state.cc:548 -#, fuzzy +#: session_state.cc:514 msgid "Could not open %1 for writing session template" -msgstr "Δεν μπόÏεσα να ανοίξω %1 για γÏάψιμο του Ï€Ïοσχεδίου μίξεως" +msgstr "" -#: session_state.cc:554 -#, fuzzy +#: session_state.cc:520 msgid "Could not open session template %1 for reading" -msgstr "Δεν μπόÏεσα να ανοίξω Ï€Ïοσχέδιο μίξεως %1 για ανάγνωση" +msgstr "" -#: session_state.cc:573 +#: session_state.cc:539 msgid "master" msgstr "master" -#: session_state.cc:636 -#, fuzzy -msgid "Could not remove pending capture state at path \"%1\" (%2)" -msgstr "ΑδÏνατη η εÏÏεση path: %1 (%2)" - -#: session_state.cc:660 -#, fuzzy -msgid "could not rename snapshot %1 to %2 (%3)" -msgstr "ΑδÏνατη η επανασÏνδεση %1 και %2 (err = %3)" - -#: session_state.cc:688 -#, fuzzy -msgid "Could not remove session file at path \"%1\" (%2)" -msgstr "ΑδÏνατη η εÏÏεση path: %1 (%2)" - -#: session_state.cc:761 +#: session_state.cc:669 msgid "" "the %1 audio engine is not connected and state saving would lose all I/O " "connections. Session not saved" msgstr "" -#: session_state.cc:812 +#: session_state.cc:720 msgid "state could not be saved to %1" msgstr "η κατάσταση δεν μποÏοÏσε να σωθεί στο %1" -#: session_state.cc:814 session_state.cc:825 -#, fuzzy -msgid "Could not remove temporary session file at path \"%1\" (%2)" -msgstr "ΑδÏνατη η εÏÏεση path: %1 (%2)" - -#: session_state.cc:822 -#, fuzzy -msgid "could not rename temporary session file %1 to %2" -msgstr "δεν μποÏÏŽ να μετονομάσω το audio file για το %1 σε %2" - -#: session_state.cc:890 -#, fuzzy +#: session_state.cc:798 msgid "%1: session file \"%2\" doesn't exist!" -msgstr "%1: το αÏχείο πληÏοφοÏιών καταστάσεως συνεδÏίας \"%2\" δεν υπάÏχει!" +msgstr "" -#: session_state.cc:902 -#, fuzzy -msgid "Could not understand session file %1" -msgstr "Δεν μπόÏεσα να κατανοήσω το ardour αÏχείο %1" - -#: session_state.cc:911 -#, fuzzy -msgid "Session file %1 is not a session" -msgstr "ΑÏχείο Ïυθμίσεων %1 δεν αποθηκεÏθηκε" - -#: session_state.cc:1208 +#: session_state.cc:1125 msgid "programming error: Session: incorrect XML node sent to set_state()" msgstr "" "σφάλμα Ï€ÏογÏαμματισμοÏ: ΣυνεδÏία: λανθασμένος κόμβος XML εστάλη στην " "set_state()" -#: session_state.cc:1257 +#: session_state.cc:1179 msgid "Session: XML state has no options section" msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα επιλογών(options)" -#: session_state.cc:1262 -#, fuzzy -msgid "Session: XML state has no metadata section" -msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα διαδÏομών" - -#: session_state.cc:1273 +#: session_state.cc:1195 msgid "Session: XML state has no sources section" msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα πηγών" -#: session_state.cc:1280 +#: session_state.cc:1202 msgid "Session: XML state has no Tempo Map section" msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα Tempo Map" -#: session_state.cc:1287 +#: session_state.cc:1209 msgid "Session: XML state has no locations section" msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα τοποθεσιών" -#: session_state.cc:1313 +#: session_state.cc:1235 msgid "Session: XML state has no Regions section" msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα ΠεÏιοχών" -#: session_state.cc:1320 +#: session_state.cc:1242 msgid "Session: XML state has no playlists section" msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα playlists" -#: session_state.cc:1340 -#, fuzzy -msgid "Session: XML state has no bundles section" -msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα διαδÏομών" - -#: session_state.cc:1352 +#: session_state.cc:1274 msgid "Session: XML state has no diskstreams section" msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα diskstreams" -#: session_state.cc:1360 +#: session_state.cc:1282 msgid "Session: XML state has no routes section" msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα διαδÏομών" -#: session_state.cc:1372 -#, fuzzy -msgid "Session: XML state has no route groups section" -msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα διαδÏομών" - -#: session_state.cc:1381 +#: session_state.cc:1303 msgid "Session: XML state has no edit groups section" msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα επεξεÏ/σίας ομάδων" -#: session_state.cc:1388 +#: session_state.cc:1310 msgid "Session: XML state has no mix groups section" msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα μίξεως ομάδων" -#: session_state.cc:1396 +#: session_state.cc:1318 msgid "Session: XML state has no click section" msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα μετÏονόμου" -#: session_state.cc:1444 +#: session_state.cc:1360 msgid "Session: cannot create Route from XML description." msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω ΔιαδÏομή από XML πεÏιγÏαφή." -#: session_state.cc:1448 +#: session_state.cc:1364 msgid "Loaded track/bus %1" msgstr "" -#: session_state.cc:1546 -#, fuzzy -msgid "Could not find diskstream for route" -msgstr "Δεν ευÏέθη το αÏχείο μέλους" - -#: session_state.cc:1600 +#: session_state.cc:1516 msgid "Session: cannot create Region from XML description." msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω ΠεÏιοχή από XML πεÏιγÏαφή." -#: session_state.cc:1604 -#, fuzzy -msgid "Can not load state for region '%1'" -msgstr "δεν μποÏÏŽ να δημιουÏγήσω νέο όνομα για την πεÏιοχή \"%1\"" - -#: session_state.cc:1640 +#: session_state.cc:1556 msgid "Regions in compound description not found (ID's %1 and %2): ignored" msgstr "" -#: session_state.cc:1668 +#: session_state.cc:1584 msgid "Nested source has no ID info in session file! (ignored)" msgstr "" -#: session_state.cc:1680 -#, fuzzy -msgid "Cannot reconstruct nested source for region %1" -msgstr "δεν μποÏÏŽ να δημιουÏγήσω νέο όνομα για την πεÏιοχή \"%1\"" - -#: session_state.cc:1742 +#: session_state.cc:1658 msgid "Session: XMLNode describing a AudioRegion is incomplete (no source)" msgstr "" "ΣυνεδÏία: Ο XMLΚόμβος που πεÏιγÏάφει AudioΠεÏιοχή είναι ημιτελής (δίχως πηγή)" -#: session_state.cc:1750 session_state.cc:1771 session_state.cc:1791 +#: session_state.cc:1666 session_state.cc:1687 session_state.cc:1707 msgid "" "Session: XMLNode describing a AudioRegion references an unknown source id =%1" msgstr "" "ΣυνεδÏία: Ο XMLΚόμβος που πεÏιγÏάφει AudioΠεÏιοχή αναφέÏει άγνωστο id πηγής =" "%1" -#: session_state.cc:1756 session_state.cc:1777 session_state.cc:1797 +#: session_state.cc:1672 session_state.cc:1693 session_state.cc:1713 msgid "" "Session: XMLNode describing a AudioRegion references a non-audio source id =" "%1" @@ -2151,188 +1686,83 @@ msgstr "" "ΣυνεδÏία: Ο XMLNode που πεÏιγÏάφει AudioRegion αναφέÏει μη-ηχητική πηγή με " "id =%1" -#: session_state.cc:1820 -#, fuzzy -msgid "" -"Session: XMLNode describing an AudioRegion is missing some master sources; " -"ignored" -msgstr "" -"ΣυνεδÏία: Ο XMLΚόμβος που πεÏιγÏάφει AudioΠεÏιοχή είναι ημιτελής (δίχως πηγή)" - -#: session_state.cc:1854 -#, fuzzy -msgid "Session: XMLNode describing a MidiRegion is incomplete (no source)" -msgstr "" -"ΣυνεδÏία: Ο XMLΚόμβος που πεÏιγÏάφει AudioΠεÏιοχή είναι ημιτελής (δίχως πηγή)" - -#: session_state.cc:1862 -#, fuzzy -msgid "" -"Session: XMLNode describing a MidiRegion references an unknown source id =%1" -msgstr "" -"ΣυνεδÏία: Ο XMLΚόμβος που πεÏιγÏάφει AudioΠεÏιοχή αναφέÏει άγνωστο id πηγής =" -"%1" - -#: session_state.cc:1868 -#, fuzzy -msgid "" -"Session: XMLNode describing a MidiRegion references a non-midi source id =%1" -msgstr "" -"ΣυνεδÏία: Ο XMLNode που πεÏιγÏάφει AudioRegion αναφέÏει μη-ηχητική πηγή με " -"id =%1" - -#: session_state.cc:1936 +#: session_state.cc:1852 msgid "" "cannot create new file from region name \"%1\" with ident = \"%2\": too many " "existing files with similar names" msgstr "" -#: session_state.cc:1959 +#: session_state.cc:1875 msgid "Session: cannot create Source from XML description." msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω Πηγή από XML πεÏιγÏαφή." -#: session_state.cc:1993 +#: session_state.cc:1909 msgid "A sound file is missing. It will be replaced by silence." msgstr "" -#: session_state.cc:2016 -#, fuzzy +#: session_state.cc:1932 msgid "Found a sound file that cannot be used by %1. Talk to the progammers." msgstr "" -"ΕυÏέθη sound file που δεν μποÏεί να χÏησιμοποιηθεί από τον Ardour. " -"Επικοινωνήστε με τους Ï€ÏογÏαμματιστές." -#: session_state.cc:2033 -#, fuzzy -msgid "Could not create templates directory \"%1\" (%2)" -msgstr "Δεν μπόÏεσα να δημιουÏγήσω φάκελο Ï€Ïοσχεδίων μίξεως \"%1\" (%2)" - -#: session_state.cc:2046 +#: session_state.cc:1962 msgid "Template \"%1\" already exists - new version not created" msgstr "Το Ï€Ïοσχέδιο \"%1\" ήδη υπάÏχει - νέα έκδοση δεν δημιουÏγήθηκε" -#: session_state.cc:2052 -#, fuzzy -msgid "Could not create directory for Session template\"%1\" (%2)" -msgstr "Δεν μπόÏεσα να δημιουÏγήσω φάκελο Ï€Ïοσχεδίων μίξεως \"%1\" (%2)" - -#: session_state.cc:2062 -#, fuzzy +#: session_state.cc:1978 msgid "template not saved" -msgstr "Ï€Ïοσχέδιο μίξεως δεν αποθηκεÏτηκε" - -#: session_state.cc:2072 -#, fuzzy -msgid "Could not create directory for Session template plugin state\"%1\" (%2)" -msgstr "Δεν μπόÏεσα να δημιουÏγήσω φάκελο Ï€Ïοσχεδίων μίξεως \"%1\" (%2)" - -#: session_state.cc:2267 -#, fuzzy -msgid "Unknown node \"%1\" found in Bundles list from session file" msgstr "" -"Άγνωστος κόμβος \"%1\" ευÏέθη στη λίστα 'Συνδέσεις' από το αÏχείο καταστάσεως" -#: session_state.cc:2809 session_state.cc:2815 -#, fuzzy -msgid "Cannot expand path %1 (%2)" -msgstr "δεν μποÏÏŽ να ελέγξω το μονοπάτι συνεδÏίας %1 (%2)" - -#: session_state.cc:2868 -#, fuzzy -msgid "Session: cannot create dead file folder \"%1\" (%2)" -msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω peakfile dir συνεδÏίας \"%1\" (%2)" - -#: session_state.cc:2907 -#, fuzzy -msgid "cannot rename unused file source from %1 to %2 (%3)" -msgstr "δεν μποÏÏŽ να μετονομάσω την πηγή του audio file από %1 σε %2 (%3)" - -#: session_state.cc:2925 +#: session_state.cc:2841 msgid "cannot remove peakfile %1 for %2 (%3)" msgstr "δεν μποÏÏŽ να απαλοίψω το peakfile %1 για %2 (%3)" -#: session_state.cc:3227 -#, fuzzy +#: session_state.cc:3143 msgid "could not backup old history file, current history not saved" msgstr "" -"δεν μπόÏεσα να διασώσω το παλαιό αÏχείο καταστάσεως, η Ï„Ïέχουσα κατάσταση " -"δεν αποθηκεÏτηκε." -#: session_state.cc:3240 -#, fuzzy -msgid "history could not be saved to %1" -msgstr "η κατάσταση δεν μποÏοÏσε να σωθεί στο %1" - -#: session_state.cc:3243 -#, fuzzy -msgid "Could not remove history file at path \"%1\" (%2)" -msgstr "αδÏνατη η επαναφοÏά του state file από backup %1" - -#: session_state.cc:3247 -#, fuzzy -msgid "could not restore history file from backup %1 (%2)" -msgstr "αδÏνατη η επαναφοÏά του state file από backup %1" - -#: session_state.cc:3272 +#: session_state.cc:3188 msgid "%1: no history file \"%2\" for this session." msgstr "" -#: session_state.cc:3278 -#, fuzzy -msgid "Could not understand session history file \"%1\"" -msgstr "Δεν μπόÏεσα να κατανοήσω το ardour αÏχείο %1" - -#: session_state.cc:3320 +#: session_state.cc:3236 msgid "Failed to downcast MidiSource for NoteDiffCommand" msgstr "" -#: session_state.cc:3331 +#: session_state.cc:3247 msgid "Failed to downcast MidiSource for SysExDiffCommand" msgstr "" -#: session_state.cc:3342 +#: session_state.cc:3258 msgid "Failed to downcast MidiSource for PatchChangeDiffCommand" msgstr "" -#: session_state.cc:3350 +#: session_state.cc:3266 msgid "Couldn't figure out how to make a Command out of a %1 XMLNode." msgstr "" -#: session_state.cc:3602 -#, fuzzy -msgid "Session: unknown diskstream type in XML" -msgstr "ΣυνεδÏία: δεν μπόÏεσα να φοÏτώσω diskstream μέσω καταστάσεως XML" - -#: session_state.cc:3607 +#: session_state.cc:3507 msgid "Session: could not load diskstream via XML state" msgstr "ΣυνεδÏία: δεν μπόÏεσα να φοÏτώσω diskstream μέσω καταστάσεως XML" -#: session_time.cc:215 -msgid "Unknown JACK transport state %1 in sync callback" -msgstr "Άγνωστη κατάσταση του JACK transport %1 στην ανάκληση sync" +#: session_time.cc:214 +msgid "Unknown transport state %1 in sync callback" +msgstr "" -#: session_transport.cc:168 +#: session_transport.cc:167 msgid "Cannot loop - no loop range defined" msgstr "Δεν γίνεται loop - κανένα διάστημα loop δεν Ï€ÏοσδιοÏίστηκε" -#: session_transport.cc:728 -#, fuzzy +#: session_transport.cc:739 msgid "" "Seamless looping cannot be supported while %1 is using JACK transport.\n" "Recommend changing the configured options" msgstr "" -"Μονοκόμματο looping δεν υποστηÏίζεται ενώ ο Ardour χÏησιμοποιεί το JACK " -"transport.\n" -"ΣυνιστοÏμε την αλλαγή των διαμοÏφωμένων Ïυθμίσεων" -#: session_transport.cc:1094 -#, fuzzy +#: session_transport.cc:1105 msgid "" "Global varispeed cannot be supported while %1 is connected to JACK transport " "control" msgstr "" -"Η Global varispeed δεν μποÏεί να υποστηÏιχθεί ενώ ο Ardour είναι " -"συνδεδεμένος με τον JACK transport control" #: smf_source.cc:252 msgid "Unable to read event prefix, corrupt MIDI ring" @@ -2350,11 +1780,6 @@ msgstr "" msgid "Skipping event with unordered time %1" msgstr "" -#: smf_source.cc:410 -#, fuzzy -msgid "cannot open MIDI file %1 for write" -msgstr "δεν μποÏÏŽ να δημιουÏγήσω νέο αÏχείο ήχου \"%1\" για %2" - #: sndfile_helpers.cc:32 msgid "WAV" msgstr "WAV" @@ -2428,18 +1853,16 @@ msgid "Signed 8 bit PCM" msgstr "" #: sndfile_helpers.cc:68 -#, fuzzy msgid "32 bit float" -msgstr "32 bit" +msgstr "" #: sndfile_helpers.cc:81 msgid "Little-endian (Intel)" msgstr "Little-endian (Intel)" #: sndfile_helpers.cc:82 -#, fuzzy msgid "Big-endian (PowerPC)" -msgstr "Big-endian (Mac)" +msgstr "" #: sndfilesource.cc:201 msgid "SndFileSource: cannot open file \"%1\" for %2 (%3)" @@ -2462,25 +1885,18 @@ msgstr "" "info για αυτό το αÏχείο" #: sndfilesource.cc:302 -#, fuzzy msgid "could not allocate file %1 for reading." -msgstr "Δεν μπόÏεσα να ανοίξω Ï€Ïοσχέδιο μίξεως %1 για ανάγνωση" +msgstr "" #: sndfilesource.cc:337 msgid "SndFileSource: could not seek to frame %1 within %2 (%3)" msgstr "SndFileSource: δεν μποÏοÏσα να αναζητήσω στο frame %1 μέσα στο %2 (%3)" -#: sndfilesource.cc:347 -#, fuzzy -msgid "" -"SndFileSource: @ %1 could not read %2 within %3 (%4) (len = %5, ret was %6)" -msgstr "SndFileSource: δεν μποÏοÏσα να αναζητήσω στο frame %1 μέσα στο %2 (%3)" - #: sndfilesource.cc:391 sndfilesource.cc:420 msgid "attempt to write a non-writable audio file source (%1)" msgstr "" -#: sndfilesource.cc:396 utils.cc:507 utils.cc:531 utils.cc:545 utils.cc:564 +#: sndfilesource.cc:396 utils.cc:510 utils.cc:534 utils.cc:548 utils.cc:567 msgid "programming error: %1 %2" msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: %1 %2" @@ -2505,22 +1921,6 @@ msgstr "" msgid "attempt to set BWF info for an un-opened audio file source (%1)" msgstr "" -#: sndfilesource.cc:614 -#, fuzzy -msgid "%1: cannot seek to %2 (libsndfile error: %3)" -msgstr "%1: δεν μποÏÏŽ να αναζητήσω στο %2 για εξαγωγή" - -#: sndfilesource.cc:727 -#, fuzzy -msgid "SndFileSource: \"%1\" bad read retval: %2 of %5 (%3: %4)" -msgstr "" -"ΚαταστÏεπτικήΠηγήΑÏχείου: \"%1\" κακή ανάγνωση retval: %2 of %5 (%3: %4)" - -#: sndfilesource.cc:740 sndfilesource.cc:790 sndfilesource.cc:797 -#, fuzzy -msgid "SndFileSource: \"%1\" bad write (%2)" -msgstr "FileSource: \"%1\" κακή εγγÏαφή (%2)" - #: sndfilesource.cc:820 msgid "" "Filesource: start time is already set for existing file (%1): Cannot change " @@ -2559,20 +1959,10 @@ msgstr "Κόμβος του TempoSection XML δεν έχει \"κτÏπων-αν msgid "TempoSection XML node has an illegal \"beats_per_minute\" value" msgstr "Κόμβος του TempoSection XML έχει αθέμιτη \"κτÏπων_ανά_λεπτό\" αξία" -#: tempo.cc:108 -#, fuzzy -msgid "TempoSection XML node has an illegal \"note-type\" value" -msgstr "Κόμβος του MeterSection XML έχει αθέμιτη \"Ï„Ïπος-νότας\" αξία" - #: tempo.cc:114 msgid "TempoSection XML node has no \"movable\" property" msgstr "Κόμβος του TempoSection XML δεν έχει \"κινητή\" ιδιότητα" -#: tempo.cc:124 -#, fuzzy -msgid "TempoSection XML node has an illegal \"bar-offset\" value" -msgstr "Κόμβος του TempoSection XML έχει αθέμιτη αξία \"έναÏξη\"" - #: tempo.cc:201 msgid "MeterSection XML node has no \"start\" property" msgstr "Κόμβος του MeterSection XML δεν έχει \"έναÏξη\" ιδιότητα" @@ -2581,20 +1971,6 @@ msgstr "Κόμβος του MeterSection XML δεν έχει \"έναÏξη\" ι msgid "MeterSection XML node has an illegal \"start\" value" msgstr "Κόμβος του MeterSection XML έχει αθέμιτη \"έναÏξη\" αξία" -#: tempo.cc:219 -#, fuzzy -msgid "" -"MeterSection XML node has no \"beats-per-bar\" or \"divisions-per-bar\" " -"property" -msgstr "Κόμβος του MeterSection XML δεν έχει \"κτÏπων-ανά-μπάÏα\" ιδιότητα" - -#: tempo.cc:225 -#, fuzzy -msgid "" -"MeterSection XML node has an illegal \"beats-per-bar\" or \"divisions-per-bar" -"\" value" -msgstr "Κόμβος του MeterSection XML έχει αθέμιτη \"κτÏπων-ανά-μπάÏα\" αξία" - #: tempo.cc:230 msgid "MeterSection XML node has no \"note-type\" property" msgstr "Κόμβος του MeterSection XML δεν έχει \"Ï„Ïπος-νότας\" ιδιότητα" @@ -2670,35 +2046,14 @@ msgid "" "Are you sure you want to do this?" msgstr "" -#: user_bundle.cc:47 -#, fuzzy -msgid "Node for Bundle has no \"name\" property" -msgstr "Κόμβος Ï€Ïος ΣÏνδεση δεν έχει \"όνομα\" ιδιότητα" - #: user_bundle.cc:59 user_bundle.cc:80 #, c-format msgid "Unknown node \"%s\" in Bundle" msgstr "" -#: user_bundle.cc:64 -#, fuzzy -msgid "Node for Channel has no \"name\" property" -msgstr "Κόμβος Ï€Ïος ΣÏνδεση δεν έχει \"όνομα\" ιδιότητα" - -#: user_bundle.cc:70 -#, fuzzy -msgid "Node for Channel has no \"type\" property" -msgstr "Κόμβος Ï€Ïος ΣÏνδεση δεν έχει \"όνομα\" ιδιότητα" - -#: user_bundle.cc:85 -#, fuzzy -msgid "Node for Port has no \"name\" property" -msgstr "Κόμβος Ï€Ïος ΣÏνδεση δεν έχει \"όνομα\" ιδιότητα" - #: utils.cc:358 utils.cc:382 -#, fuzzy msgid "Splice" -msgstr "αντιγÏαφή" +msgstr "" #: utils.cc:360 utils.cc:375 msgid "Slide" @@ -2708,1028 +2063,26 @@ msgstr "" msgid "Lock" msgstr "" -#: utils.cc:365 -#, fuzzy -msgid "programming error: unknown edit mode string \"%1\"" -msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: άγνωστος Ï„Ïπος of Redirect διεγÏάφη!" - -#: utils.cc:389 utils.cc:418 +#: utils.cc:389 utils.cc:421 msgid "MIDI Timecode" msgstr "" -#: utils.cc:389 utils.cc:416 +#: utils.cc:389 utils.cc:419 msgid "MTC" msgstr "" -#: utils.cc:393 utils.cc:425 +#: utils.cc:393 utils.cc:428 msgid "MIDI Clock" msgstr "" -#: utils.cc:397 utils.cc:412 utils.cc:432 +#: utils.cc:397 utils.cc:415 utils.cc:435 msgid "JACK" msgstr "" -#: utils.cc:401 -#, fuzzy -msgid "programming error: unknown sync source string \"%1\"" -msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: άγνωστος Ï„Ïπος Εισόδου εδημιουÏγήθη!" - -#: utils.cc:423 +#: utils.cc:426 msgid "M-Clock" msgstr "" -#: utils.cc:429 +#: utils.cc:432 msgid "LTC" msgstr "" - -#: utils.cc:599 -#, fuzzy -msgid "programming error: unknown native header format: %1" -msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: άγνωστος Ï„Ïπος Redirect εδημιουÏγήθη!" - -#: utils.cc:614 -#, fuzzy -msgid "cannot open directory %1 (%2)" -msgstr "δεν μποÏÏŽ να ανοίξω το Ï€Ïόσφατο αÏχείο συνεδÏίας %1 (%2)" - -#, fuzzy -#~ msgid "MidiDiskstream: XML property channel-mask out of range" -#~ msgstr "AudioDiskstream: κανάλι %1 εκτός διαστήματος" - -#~ msgid "timefx code failure. please notify ardour-developers." -#~ msgstr "" -#~ "αποτυχία κώδικα timefx. παÏακαλώ ειδοποιήστε τους Ï€ÏογÏαμματιστές του " -#~ "ardour." - -#~ msgid "Session: you can't use a mark for auto loop" -#~ msgstr "ΣυνεδÏία: δεν μποÏείτε να χÏησιμοποιήσετε στίγμα για auto loop" - -#~ msgid "Could not understand ardour file %1" -#~ msgstr "Δεν μπόÏεσα να κατανοήσω το ardour αÏχείο %1" - -#, fuzzy -#~ msgid "control protocol XML node has no name property. Ignored." -#~ msgstr "Το όνομα Ï€Ïωτοκόλλου ελέγχου \"%1\" δεν έχει descriptor" - -#, fuzzy -#~ msgid "control protocol \"%1\" is not known. Ignored" -#~ msgstr "Το όνομα Ï€Ïωτοκόλλου ελέγχου \"%1\" δεν έχει descriptor" - -#~ msgid "" -#~ "programming error: non-audio Region passed to remove_overlap in audio " -#~ "playlist" -#~ msgstr "" -#~ "σφάλμα Ï€ÏογÏαμματισμοÏ: μη-ηχητική ΠεÏιοχή πέÏασε σε remove_overlap στην " -#~ "audio playlist" - -#~ msgid "" -#~ "programming error: non-audio Region tested for overlap in audio playlist" -#~ msgstr "" -#~ "σφάλμα Ï€ÏογÏαμματισμοÏ: μη-ηχητική ΠεÏιοχή ελέγχθη για υπεÏπήδηση" -#~ "(overlap) στην λίστα αναπαÏ/γής του ήχου" - -#~ msgid "Crossfade: no \"in\" region in state" -#~ msgstr "Crossfade: χωÏίς \"in\" πεÏιοχή σε κατάσταση" - -#, fuzzy -#~ msgid "" -#~ "Crossfade: no \"in\" region %1 found in playlist %2 nor in region map" -#~ msgstr "Crossfade: no \"in\" πεÏιοχή %1 δεν ευÏέθη στη λίστα αναπαÏ/γής %2" - -#~ msgid "Crossfade: no \"out\" region in state" -#~ msgstr "Crossfade: χωÏίς \"out\" πεÏιοχή σε κατάσταση" - -#, fuzzy -#~ msgid "" -#~ "Crossfade: no \"out\" region %1 found in playlist %2 nor in region map" -#~ msgstr "" -#~ "Crossfade: no \"out\" πεÏιοχή %1 δεν ευÏέθη στη λίστα αναπαÏ/γής %2" - -#~ msgid "old-style crossfade information - no position information" -#~ msgstr "παλαιοÏ-Ï„Ïπου crossfade πληÏοφοÏία - καμία πληÏοφοÏία θέσεως" - -#~ msgid "Chunk %1 uses an unknown playlist \"%2\"" -#~ msgstr "Το κομμάτι %1 χÏησιμοποιεί άγνωστη λίστα αναπαÏ/γής \"%2\"" - -#~ msgid "Chunk %1 contains malformed playlist information" -#~ msgstr "" -#~ "Το κομμάτι %1 πεÏιέχει δÏσμοÏφες πληÏοφοÏίες για τη λίστα αναπαÏ/γής" - -#~ msgid "signal" -#~ msgstr "σήμα" - -#, fuzzy -#~ msgid "editor" -#~ msgstr "monitor" - -#, fuzzy -#~ msgid "Template \"%1\" already exists - template not renamed" -#~ msgstr "Το Ï€Ïοσχέδιο \"%1\" ήδη υπάÏχει - νέα έκδοση δεν δημιουÏγήθηκε" - -#~ msgid "Session: cannot create Named Selection from XML description." -#~ msgstr "" -#~ "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω την ονομασμένη επιλογή από την XML " -#~ "πεÏιγÏαφή." - -#, fuzzy -#~ msgid "Unable to create a backup copy of file %1 (%2)" -#~ msgstr "audiofilter: σφάλμα στη δημιουÏγία νέου audio file %1 (%2)" - -#, fuzzy -#~ msgid "programming error: realpath(%1) failed, errcode %2" -#~ msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: %1 %2" - -#~ msgid "illegal or badly-formed string used for path (%1)" -#~ msgstr "αθέμιτη ή κακοσχηματισμένη γÏαμμή για το μονοπάτι (%1)" - -#~ msgid "path (%1) is ambiguous" -#~ msgstr "Το μονοπάτι (%1) είναι αμφίβολο" - -#, fuzzy -#~ msgid "Could not move capture file from %1" -#~ msgstr "αδÏνατη η επαναφοÏά του state file από backup %1" - -#~ msgid "cannot open click emphasis soundfile %1 (%2)" -#~ msgstr "δεν μποÏÏŽ να ανοίξω το soundfile εμφάσεως μετÏονόμου %1 (%2)" - -#~ msgid "cannot read data from click emphasis soundfile" -#~ msgstr "δεν μποÏÏŽ να διαβάσω δεδομένα από το soundfile εμφάσεως μετÏονόμου" - -#, fuzzy -#~ msgid "Reset Control Protocols" -#~ msgstr "ΠÏωτόκολλο ελέγχου %1 μη χÏησιμοποιήσιμο" - -#, fuzzy -#~ msgid "Session: cannot create session stub sounds dir \"%1\" (%2)" -#~ msgstr "" -#~ "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω φάκελο ήχων συνεδÏίας \"%1\" (%2)" - -#, fuzzy -#~ msgid "Session: cannot create session stub midi dir \"%1\" (%2)" -#~ msgstr "" -#~ "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω φάκελο ήχων συνεδÏίας \"%1\" (%2)" - -#, fuzzy -#~ msgid "Session: XML state has no speakers section - assuming simple stereo" -#~ msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα πηγών" - -#, fuzzy -#~ msgid "could not allocate file %1" -#~ msgstr "αδÏνατη η διαγÏαφή αÏχείου διεφθαÏμένης state %1" - -#~ msgid "" -#~ "badly formatted pan automation event record at line %1 of %2 (ignored) " -#~ "[%3]" -#~ msgstr "" -#~ "δÏσμοÏφη εγγÏαφή συμβάντος pan Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï ÏƒÏ„Î· γÏαμμή %1 of %2 " -#~ "(αγνοήθηκε) [%3]" - -#~ msgid "badly-formed positional data for Multi2dPanner - ignored" -#~ msgstr "δÏσμοÏφα δεδομένα θέσεως για το Multi2dPanner - αγνοήθηκε" - -#~ msgid "programming error:" -#~ msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ:" - -#~ msgid "cannot open pan automation file %1 (%2)" -#~ msgstr "δεν μποÏÏŽ να ανοίξω αÏχείο Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… pan %1 (%2)" - -#~ msgid "badly formed version number in pan automation event file \"%1\"" -#~ msgstr "" -#~ "δÏσμοÏφος αÏιθμός εκδόσεως στο αÏχείο συμβάντων Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… pan " -#~ "\"%1\"" - -#~ msgid "" -#~ "no version information in pan automation event file \"%1\" (first line = " -#~ "%2)" -#~ msgstr "" -#~ "καμία πληÏοφοÏία εκδόσεως στο αÏχείο συμβάντων Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… pan " -#~ "\"%1\" (Ï€Ïώτη γÏαμμή = %2)" - -#~ msgid "too many panner states found in pan automation file %1" -#~ msgstr "" -#~ "πάÏα πολλές καταστάσεις panner ευÏέθησαν στο αÏχείο των αυτοματισμών pan " -#~ "%1" - -#~ msgid "AudioDiskstream: Session doesn't know about a Playlist called \"%1\"" -#~ msgstr "" -#~ "AudioDiskStream: Η ΣυνεδÏία δεν γνωÏίζει για λίστα ΑναπαÏ/γής με όνομα " -#~ "\"%1\"" - -#~ msgid "%1: cannot create region from pending capture sources" -#~ msgstr "%1: δεν μπόÏεσα να δημιουÏγήσω πεÏιοχή για τις απαιτοÏμενες πηγές" - -#~ msgid "xfade change" -#~ msgstr "αλλαγή xfade" - -#~ msgid "region modified" -#~ msgstr "η πεÏιοχή μετεβλήθη" - -#~ msgid "AudioTrack: diskstream \"%1\" not known by session" -#~ msgstr "" -#~ "AudioTrack: το diskstream \"%1\" είναι μή αναγνωÏίσιμο από τη συνεδÏία" - -#~ msgid "" -#~ "MIDI rec_enable control specification for %1 is incomplete, so it has " -#~ "been ignored" -#~ msgstr "" -#~ "Η Ï€ÏοδιαγÏαφή ελέγχου του MIDI rec_enable για το %1 είναι ημιτελής, με " -#~ "αποτέλεσμα να αγνοηθεί" - -#~ msgid "programming error: AudioTrack given state without diskstream!" -#~ msgstr "" -#~ "σφάλμα Ï€ÏογÏαμματισμοÏ: εδόθη κατάσταση στην AudioTrack δίχως diskstream!" - -#~ msgid "cannot activate JACK client" -#~ msgstr "Ο JACK δεν μποÏεί να ενεÏγοποιηθεί" - -#~ msgid "register audio input port called before engine was started" -#~ msgstr "η register audio input port εκλήθη Ï€Ïιν να εκκινηθεί η engine" - -#~ msgid "register audio output port called before engine was started" -#~ msgstr "η register audio output port εκλήθη Ï€Ïίν να εκκινηθεί η engine" - -#~ msgid "get_nth_physical called before engine was started" -#~ msgstr "η Ïουτίνα get_nth_physical εκλήθη Ï€Ïιν να εκκινηθεί η engine" - -#~ msgid "get_port_total_latency() called with no JACK client connection" -#~ msgstr "" -#~ "η Ïουτίνα get_port_total_latency() εκλήθη χωÏίς την εκκίνηση κάποιου JACK " -#~ "client" - -#~ msgid "get_port_total_latency() called before engine was started" -#~ msgstr "" -#~ "η Ïουτίνα get_port_total_latency() εκλήθη Ï€Ïιν να εκκινηθεί η engine" - -#~ msgid "Unable to connect to JACK server" -#~ msgstr "ΑδÏνατη η σÏνδεση στον JACK server" - -#~ msgid "Could not connect to JACK server as \"%1\"" -#~ msgstr "ΑδÏνατη η σÏνδεση στον JACK server ως \"%1\"" - -#~ msgid "JACK server started" -#~ msgstr "ΈναÏξη JACK server" - -#~ msgid "cannot shutdown connection to JACK" -#~ msgstr "ΑδÏνατος ο τεÏματισμός συνδέσεως με τον JACK" - -#~ msgid "fade in change" -#~ msgstr "αλλαγή fade in" - -#~ msgid "envelope change" -#~ msgstr "αλλαγή envelope" - -#~ msgid "Error on peak thread request pipe" -#~ msgstr "Σφάλμα στο peak thread request pipe" - -#~ msgid "Error reading from peak request pipe" -#~ msgstr "Σφάλμα στην ανάγνωση από peak request pipe" - -#~ msgid "UI: cannot set O_NONBLOCK on peak request pipe (%1)" -#~ msgstr "UI: δεν μποÏÏŽ να θέσω O_NONBLOCK στο peak read pipe (%1)" - -#~ msgid "AudioSource: could not create peak thread" -#~ msgstr "AudioSource: δεν μπόÏεσα να δημιουÏγήσω peak thread" - -#~ msgid "initial" -#~ msgstr "Ï€ÏωταÏχικό" - -#~ msgid "cleared" -#~ msgstr "εκκαθαÏίσθη" - -#~ msgid "added event" -#~ msgstr "συμβάν Ï€Ïοστέθηκε" - -#~ msgid "removed event" -#~ msgstr "συμβάν απαλοίφθηκε" - -#~ msgid "removed multiple events" -#~ msgstr "πολλαπλά συμβάντα απαλοίφθηκαν" - -#~ msgid "removed range" -#~ msgstr "διάστημα απαλοίφθηκε" - -#~ msgid "event range adjusted" -#~ msgstr "διάστημα συμβάντων Ïυθμίστηκε" - -#~ msgid "event adjusted" -#~ msgstr "συμβάν Ïυθμίστηκε" - -#~ msgid "cut/copy/clear" -#~ msgstr "κοπή/αντιγÏαφή/εκκαθάÏιση" - -#~ msgid "copy" -#~ msgstr "αντιγÏαφή" - -#~ msgid "ill-formed MIDI port specification in ardour rcfile (ignored)" -#~ msgstr "" -#~ "κακοσχηματισμένος καθοÏισμός MIDI θÏÏας στο ardour rcfile (αγνοήθηκε)" - -#~ msgid "Node for Connection has no \"connections\" property" -#~ msgstr "Κόμβος Ï€Ïος ΣÏνδεση δεν έχει \"συνδέσεις\" ιδιότητα" - -#~ msgid "active changed" -#~ msgstr "αλλαγή ενεÏγοÏ" - -#~ msgid "DestructiveFileSource: \"%1\" bad write (%2)" -#~ msgstr "DestructiveFileSource: \"%1\" κακή εγγÏαφή (%2)" - -#~ msgid "no MIDI ports specified: no MMC or MTC control possible" -#~ msgstr "καμία MIDI θÏÏα δεν επελέχθη: έλεγχος MMC ή MTC αδÏνατος" - -#~ msgid "MIDI port specifications for \"%1\" are not understandable." -#~ msgstr "Οι Ï€ÏοδιαγÏαφές της θÏÏας MIDI για το \"%1\" δεν είναι κατανοητές." - -#~ msgid "default" -#~ msgstr "Ï€ÏοκαθοÏισμένο" - -#~ msgid "No MMC control (MIDI port \"%1\" not available)" -#~ msgstr "ΧωÏίς έλεγχο MMC (θÏÏα MIDI \"%1\" μη διαθέσιμη)" - -#~ msgid "No MTC support (MIDI port \"%1\" not available)" -#~ msgstr "ΧωÏίς έλεγχο MTC (θÏÏα MIDI \"%1\" μη διαθέσιμη)" - -#~ msgid "No MIDI parameter support (MIDI port \"%1\" not available)" -#~ msgstr "ΧωÏίς υποστήÏιξη MIDI παÏαμέτÏων (θÏÏα MIDI \"%1\" μη διαθέσιμη)" - -#~ msgid "resampling audio" -#~ msgstr "επανά-ληψη(resampling) ήχου" - -#~ msgid "Import: cannot open converted sound file \"%1\"" -#~ msgstr "Εισαγωγή: δεν μποÏÏŽ να ανοίξω το Ï„Ïοποποιημένο αÏχείο ήχου \"%1\"" - -#~ msgid "" -#~ "Session::import_audiofile: cannot open new file source for channel %1" -#~ msgstr "" -#~ "ΣυνεδÏία::εισαγωγή_αÏχείου: δεν μποÏÏŽ να ανοίξω νέα πηγή αÏχείου για το " -#~ "κανάλι %1" - -#~ msgid "Import: could not open temp file: %1" -#~ msgstr "Εισαγωγή: δεν μπόÏεσα να ανοίξω το temp αÏχείο: %1" - -#~ msgid "XML node describing insert is missing the `id' field" -#~ msgstr "Στον κόμβο XML που πεÏιγÏάφει το insert λείπει το πεδίο `id'" - -#~ msgid "XML node describing insert is missing a Redirect node" -#~ msgstr "Στον κόμβο XML που πεÏιγÏάφει το insert λείπει ένας κόμβος Redirect" - -#~ msgid "XML node describing a plugin insert is missing the `%1' information" -#~ msgstr "" -#~ "Στον κόμβο XML που πεÏιγÏάφει ένα plugin insert λείπουν οι πληÏοφοÏίες `" -#~ "%1' " - -#~ msgid "" -#~ "XML node describing a port automation is missing the `%1' information" -#~ msgstr "" -#~ "Στον κόμβο XML που πεÏιγÏάφει έναν αυτοματισμό θÏÏας λείπουν οι " -#~ "πληÏοφοÏίες `%1' " - -#~ msgid "PortInsert: cannot add input port" -#~ msgstr "PortInsert: δεν μποÏεί να Ï€Ïοστεθει θÏÏα εισόδου" - -#~ msgid "PortInsert: cannot add output port" -#~ msgstr "PortInsert: δεν μποÏεί να Ï€Ïοστεθεί θÏÏα εξόδου" - -#~ msgid "IO: cannot disconnect output port %1 from %2" -#~ msgstr "IO: δεν μποÏεί να αποσυνδεθεί η θÏÏα εξόδου %1 από %2" - -#~ msgid "%s/out" -#~ msgstr "%s/out" - -#~ msgid "%s/out %u" -#~ msgstr "%s/out %u" - -#~ msgid "%s/in" -#~ msgstr "%s/in" - -#~ msgid "%s/in %u" -#~ msgstr "%s/in %u" - -#~ msgid "IO::connecting_became_legal() called without a pending state node" -#~ msgstr "" -#~ "IO::connecting_became_legal() εκλήθη χωÏίς κόμβο καταστάσεως εν αναμονή" - -#~ msgid "IO::ports_became_legal() called without a pending state node" -#~ msgstr "IO::ports_became_legal() εκλήθη χωÏίς κόμβο καταστάσεως εν αναμονή" - -#~ msgid "" -#~ "MIDI gain control specification for %1 is incomplete, so it has been " -#~ "ignored" -#~ msgstr "" -#~ "Η Ï€ÏοδιαγÏαφή ελέγχου του MIDI gain για το %1 είναι ημιτελής, με " -#~ "αποτέλεσμα να αγνοηθεί" - -#~ msgid "Unknown connection \"%1\" listed for output of %2" -#~ msgstr "Άγνωστη σÏνδεση \"%1\" καταχωÏήθη για την έξοδο του %2" - -#~ msgid "No output connections available as a replacement" -#~ msgstr "Καμία σÏνδεση output διαθέσιμη σαν εναλλακτική" - -#~ msgid "Connection %1 was not available - \"out 1\" used instead" -#~ msgstr "" -#~ "Η σÏνδεση %1 δεν ήταν διαθέσιμη - αντ'αυτής χÏησιμοποιήθηκε η \"out 1\" " - -#~ msgid "improper output channel list in XML node (%1)" -#~ msgstr "ασαφής λίστα καναλιών εξόδου στον κόμβο XML (%1)" - -#~ msgid "%1: could not open automation event file \"%2\"" -#~ msgstr "%1: δεν μπόÏεσα να ανοίξω το αÏχείο συμβάντων Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï \"%2\"" - -#~ msgid "%1: cannot open automation event file \"%2\"" -#~ msgstr "%1: δεν μποÏÏŽ να ανοίξω το αÏχείο συμβάντων Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï \"%2\"" - -#~ msgid "badly formed version number in automation event file \"%1\"" -#~ msgstr "δÏσμοÏφος αÏιθμός εκδόσεως στο αÏχείο συμβάντων Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï \"%1\"" - -#~ msgid "no version information in automation event file \"%1\"" -#~ msgstr "" -#~ "δεν υπάÏχουν πληÏοφοÏίες πεÏί εκδόσεων στο αÏχείο συμβάντων Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï " -#~ "\"%1\"" - -#~ msgid "mismatched automation event file version (%1)" -#~ msgstr "αταίÏιαστη έκδοση αÏχείου συμβάντων Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï (%1)" - -#~ msgid "badly formatted automation event record at line %1 of %2 (ignored)" -#~ msgstr "" -#~ "κακώς φοÏμαÏισμένη καταγÏαφή συμβάντων Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï ÏƒÏ„Î· γÏαμμή %1 of %2 " -#~ "(αγνοήθηκε)" - -#~ msgid "loaded from disk" -#~ msgstr "φοÏτώθηκε από το δίσκο" - -#~ msgid "automation write/touch" -#~ msgstr "αυτοματισμός εγγÏαφή/αφή(write/touch)" - -#~ msgid "" -#~ "LADSPA LadspaPlugin MIDI control specification for port %1 is incomplete, " -#~ "so it has been ignored" -#~ msgstr "" -#~ "Ο καθοÏισμός ελέγχου LADSPA LadspaPlugin για MIDI για την θÏÏα %1 είναι " -#~ "ημιτελής, έτσι αγνοήθηκε." - -#~ msgid "clear" -#~ msgstr "εκκαθάÏιση" - -#~ msgid "clear markers" -#~ msgstr "εκκαθάÏιση στιγμάτων" - -#~ msgid "clear ranges" -#~ msgstr "εκκαθάÏιση διαστημάτων" - -#~ msgid "add" -#~ msgstr "Ï€Ïόσθεση" - -#~ msgid "remove" -#~ msgstr "απαλοιφή" - -#~ msgid "MIDI pan control specification is incomplete, so it has been ignored" -#~ msgstr "" -#~ "Η Ï€ÏοδιαγÏαφή ελέγχου του MIDI pan είναι ημιτελής, με αποτέλεσμα να " -#~ "αγνοηθεί" - -#~ msgid "automation write pass" -#~ msgstr "πέÏασμα εγγÏαφής αυτοματισμοÏ" - -#~ msgid "error writing pan automation file (%s)" -#~ msgstr "σφάλμα στην εγγÏαφή του pan στο αÏχείο Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï (%s)" - -#~ msgid "cannot open pan automation file \"%1\" for saving (%s)" -#~ msgstr "" -#~ "δεν μποÏÏŽ να ανοίξω αÏχείο Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… pan \"%1\" για αποθήκευση (%s)" - -#~ msgid "mismatched pan automation event file version (%1)" -#~ msgstr "αταίÏιαστη έκδοση αÏχείου συμβάντων Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Î³Î¹Î± το pan (%1)" - -#~ msgid "playlist const copy constructor called" -#~ msgstr "λίστα αναπαÏ/γής const εκλήθη από κατασκευαστή αντιγÏάφου" - -#~ msgid "playlist non-const copy constructor called" -#~ msgstr "λίστα αναπαÏ/γής non-const εκλήθη από κατασκευαστή αντιγÏάφου" - -#~ msgid "remove region" -#~ msgstr "απαλοιφή πεÏιοχής" - -#~ msgid "separate" -#~ msgstr "ξεχωÏιστό" - -#~ msgid "split" -#~ msgstr "διαχωÏισμός" - -#~ msgid "%1: bounds changed received for region (%2)not in playlist" -#~ msgstr "" -#~ "%1: τα αλλαγμένα ÏŒÏια που ελήφθησαν για την πεÏιοχή (%2)δεν είναι στη " -#~ "λίστα αναπαÏ/γής" - -#~ msgid "nudged" -#~ msgstr "νυχθέν" - -#~ msgid "" -#~ "programming error: Playlist::copyPlaylist called with unknown Playlist " -#~ "type" -#~ msgstr "" -#~ "σφάλμα Ï€ÏογÏαμματισμοÏ: Playlist::copyPlaylist με άγνωστο Ï„Ïπο Playlist" - -#~ msgid "VST: cannot load module from \"%1\"" -#~ msgstr "VST: δεν μποÏÏŽ να φοÏτώσω module από \"%1\"" - -#~ msgid "You asked ardour to not use any VST plugins" -#~ msgstr "Ζητήσατε απ'το Ardour να μή χÏησιμοποιήσει VST plugins" - -#~ msgid "This version of ardour has no support for VST plugins" -#~ msgstr "Η παÏοÏσα έκδοση του ardour δεν υποστηÏίζει VST plugins" - -#~ msgid "programming error: unknown Redirect type in Redirect::Clone!\n" -#~ msgstr "" -#~ "σφάλμα Ï€ÏογÏαμματισμοÏ: άγνωστος Ï„Ïπος Redirect στο Redirect::Clone!\n" - -#~ msgid "pre" -#~ msgstr "pre" - -#~ msgid "post" -#~ msgstr "post" - -#~ msgid "Redirect: unknown placement string \"%1\" (ignored)" -#~ msgstr "Redirect: άγνωστη γÏαμμή τοποθετήσεως \"%1\" (αγνοήθηκε)" - -#~ msgid "%1: cannot open %2 to store automation data (%3)" -#~ msgstr "" -#~ "%1: δεν μποÏÏŽ να ανοίξω %2 για αποθήκευση δεδομένων Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï (%3)" - -#~ msgid "%1: could not save automation state to %2" -#~ msgstr "%1: δεν μπόÏεσα να αποθηκεÏσω την κατάσταση Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï ÏƒÏ„Î¿ %2" - -#~ msgid "" -#~ "Could not get state from Redirect (%1). Problem with save_automation" -#~ msgstr "" -#~ "Δεν μπόÏεσα να πάÏω κατάσταση από το Redirect (%1). ΠÏόβλημα με την " -#~ "αποθήκευση_αυτοματισμοÏ" - -#~ msgid "incorrect XML node \"%1\" passed to Redirect object" -#~ msgstr "λανθασμένος κόμβος XML \"%1\" πέÏασε στο αντικείμενο Redirect" - -#~ msgid "XML node describing an IO is missing an IO node" -#~ msgstr "Στον κόμβο XML που πεÏιγÏάφει I/O λείπει ένας κόμβος IO" - -#~ msgid "XML node describing a redirect is missing the `active' field" -#~ msgstr "" -#~ "Στον κόμβο XML που πεÏιγÏάφει ένα redirect λείπει το πεδίο " -#~ "`ενεÏγό'(active)" - -#~ msgid "XML node describing a redirect is missing the `placement' field" -#~ msgstr "" -#~ "Στον κόμβο XML που πεÏιγÏάφει ένα redirect λείπει το πεδίο " -#~ "`τοποθέτηση'(placement)" - -#~ msgid "active_changed" -#~ msgstr "αλλαγή_ενεÏγοÏ" - -#~ msgid "Session: XMLNode describing a Region is incomplete (no id)" -#~ msgstr "" -#~ "ΣυνεδÏία: XMLΚόμβος που πεÏιγÏάφει ΠεÏιοχή είναι ημιτελής (χωÏίς id)" - -#~ msgid "Session: XMLNode describing a Region is incomplete (no name)" -#~ msgstr "" -#~ "ΣυνεδÏία: XMLΚόμβος που πεÏιγÏάφει ΠεÏιοχή είναι ημιτελής (χωÏίς όνομα)" - -#~ msgid "Could not get state of route. Problem with save_automation" -#~ msgstr "" -#~ "Δεν μπόÏεσα να πάÏω κατάσταση διαδÏομής. ΠÏόβλημα με " -#~ "αποθήκευση_αυτοματισμοÏ" - -#~ msgid "Send construction failed" -#~ msgstr "Αποστολή κατασκευής απέτυχε" - -#~ msgid "Insert XML node has no type property" -#~ msgstr "Εισηχθέντας κόμβος XML δεν έχει στοιχεία Ï„Ïπου" - -#~ msgid "Route %1: unknown edit group \"%2 in saved state (ignored)" -#~ msgstr "" -#~ "Route %1: άγνωστη ομάδα επεξεÏγασίας \"%2 στην αποθηκευμένη κατάσταση " -#~ "(αγνοήθηκε)" - -#~ msgid "Route %1: unknown mix group \"%2 in saved state (ignored)" -#~ msgstr "" -#~ "Route %1: άγνωστη ομάδα μίξεως \"%2 στην αποθηκευμένη κατάσταση " -#~ "(αγνοήθηκε)" - -#~ msgid "" -#~ "MIDI mute control specification for %1 is incomplete, so it has been " -#~ "ignored" -#~ msgstr "" -#~ "Η Ï€ÏοδιαγÏαφή ελέγχου του MIDI mute για το %1 είναι ημιτελής, με " -#~ "αποτέλεσμα να αγνοηθεί" - -#~ msgid "XML node describing a send is missing a Redirect node" -#~ msgstr "" -#~ "Στον κόμβο XML όπου πεÏιγÏάφεται ένα send λείπει ένας κόμβος Redirect" - -#~ msgid "cannot setup master inputs" -#~ msgstr "δεν μποÏÏŽ να διαμοÏφώσω τις master εισόδους" - -#~ msgid "cannot setup master outputs" -#~ msgstr "δεν μποÏÏŽ να διαμοÏφώσω τις master εξόδους" - -#~ msgid "cannot setup control inputs" -#~ msgstr "δεν μποÏÏŽ να διαμοÏφώσω τις εισόδους ελέγχου" - -#~ msgid "cannot set up master outputs" -#~ msgstr "δεν μποÏÏŽ να διαμοÏφώσω τις εξόδους ελέγχου" - -#~ msgid "too many regions with names like %1" -#~ msgstr "πάÏα πολλές πεÏιοχές με ονόματα σαν %1" - -#~ msgid "programming error: unknown type of Insert deleted!" -#~ msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: άγνωστος Ï„Ïπος of Insert διεγÏάφη!" - -#~ msgid "Export: no output file specified" -#~ msgstr "Εξαγωγή: κανένα αÏχείο εξόδου δεν Ï€ÏοσδιοÏίστηκε" - -#~ msgid "illegal frame range in export specification" -#~ msgstr "παÏάνομο διάστημα frame στον Ï€ÏοσδιοÏισμό εξαγωγής" - -#~ msgid "Bad data width size. Report me!" -#~ msgstr "Κακό μέγεθος εÏÏους δεδομένων. ΑνάφεÏέ με!" - -#~ msgid "Export: cannot open output file \"%1\" (%2)" -#~ msgstr "Εξαγωγή: δεν μποÏÏŽ να ανοίξω αÏχείο εξόδου \"%1\" (%2)" - -#~ msgid "cannot initialize sample rate conversion: %1" -#~ msgstr "δεν μποÏÏŽ να καλέσω την μετατÏοπή του ÏÏ…Î¸Î¼Î¿Ï Î´ÎµÎ¹Î³Î¼Î±Ï„Î¿Î»Î·ÏˆÎ¯Î±Ï‚: %1" - -#~ msgid "warning, leftover frames overflowed, glitches might occur in output" -#~ msgstr "" -#~ "Ï€Ïοσοχή, παÏατημένα frames διέÏÏευσαν, πιθανόν να παÏουσιαστοÏν ατέλειες " -#~ "στην έξοδο" - -#~ msgid "Export: could not write data to output file (%1)" -#~ msgstr "Εξαγωγή: δεν μπόÏεσα να γÏάψω δεδομένα στο αÏχείο εξόδου (%1)" - -#~ msgid "Ardour is slaved to MTC - port cannot be reset" -#~ msgstr "Το Ardour υπακοÏει το MTC - η θÏÏα δεν γίνεται reset" - -#~ msgid "unknown port %1 requested for MTC" -#~ msgstr "Εζητήθη άγνωστη θÏÏα %1 για το MTC" - -#~ msgid "Error reading from MIDI port %1" -#~ msgstr "Σφάλμα στην ανάγνωση της θÏÏας MIDI %1" - -#~ msgid "MMC: cannot send command %1%2%3" -#~ msgstr "MMC: δεν μποÏÏŽ να στείλω την εντολή %1%2%3" - -#~ msgid "UI: cannot set O_NONBLOCK on signal read pipe (%1)" -#~ msgstr "UI: δεν μποÏÏŽ να θέσω O_NONBLOCK στο signal read pipe (%1)" - -#~ msgid "UI: cannot set O_NONBLOCK on signal write pipe (%1)" -#~ msgstr "UI: δεν μποÏÏŽ να θέσω O_NONBLOCK στο signal write pipe (%1)" - -#~ msgid "Session: could not create transport thread" -#~ msgstr "ΣυνεδÏία: δεν μπόÏεσα να δημιουÏγήσω δέσμη με transport" - -#~ msgid "cannot send signal to midi thread! (%1)" -#~ msgstr "δεν μποÏÏŽ να στείλω σήμα στη δέσμη midi! (%1)" - -#~ msgid "MIDI thread poll failed (%1)" -#~ msgstr "Αίτηση δέσμης MIDI απέτυχε (%1)" - -#~ msgid "Error on transport thread request pipe" -#~ msgstr "Σφάλμα στο transport thread request pipe" - -#~ msgid "Error reading from transport request pipe" -#~ msgstr "Σφάλμα στην ανάγνωση από transport request pipe" - -#~ msgid "end" -#~ msgstr "τέλος" - -#~ msgid "Session: cannot create session tape dir \"%1\" (%2)" -#~ msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω tape dir συνεδÏίας \"%1\" (%2)" - -#~ msgid "Session: cannot create session automation dir \"%1\" (%2)" -#~ msgstr "" -#~ "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω φάκελο αυτοματισμών της συνεδÏίας " -#~ "\"%1\" (%2)" - -#~ msgid "Session already exists. Not overwriting" -#~ msgstr "Η ΣυνεδÏία ήδη υπάÏχει. ΑκÏÏωση overwriting" - -#~ msgid "Session: XML state has no connections section" -#~ msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα συνδέσεων" - -#~ msgid "cannot create dead sounds directory \"%1\"; ignored" -#~ msgstr "δεν μποÏÏŽ να δημιουÏγήσω τον φάκελο 'dead sounds' \"%1\"; αγνοήθηκε" - -#~ msgid "cannot create peak file directory \"%1\"; ignored" -#~ msgstr "αδÏνατη η δημιουÏγία φακέλου peak file \"%1\"; αγνοήθηκε" - -#~ msgid "cannot remove dead sound file %1 (%2)" -#~ msgstr "δεν μποÏÏŽ να απαλοίψω το 'νεκÏο' ηχο-αÏχείο %1 (%2)" - -#~ msgid "tempoize: error creating name for new audio file based on %1" -#~ msgstr "" -#~ "tempoize: σφάλμα στη δημιουÏγία ονόματος για νέο αÏχείο ήχου βασισμένο σε " -#~ "%1" - -#~ msgid "tempoize: error creating new audio file %1 (%2)" -#~ msgstr "tempoize: σφάλμα στη δημιουÏγία νέου αÏχείου ήχου %1 (%2)" - -#~ msgid "please stop the transport before adjusting slave settings" -#~ msgstr "" -#~ "παÏακαλώ σταματήστε το transport Ï€Ïιν την ÏÏθμιση των επιλογων εξαÏτήσεως" - -#~ msgid "No MTC port defined: MTC slaving is impossible." -#~ msgstr "" -#~ "Καμμία θÏÏα MTC δεν Ï€ÏοσδιοÏίστηκε: η εξάÏτηση του MTC (slaving) είναι " -#~ "αδÏνατη." - -#~ msgid "PAF (Ensoniq Paris)" -#~ msgstr "PAF (Ensoniq Paris)" - -#~ msgid "AU (Sun/NeXT)" -#~ msgstr "AU (Sun/NeXT)" - -#~ msgid "IRCAM" -#~ msgstr "IRCAM" - -#~ msgid "16 bit" -#~ msgstr "16 bit" - -#~ msgid "24 bit" -#~ msgstr "24 bit" - -#~ msgid "8 bit" -#~ msgstr "8 bit" - -#~ msgid "FileSource: cannot get host information for BWF header (%1)" -#~ msgstr "" -#~ "FileSource: δεν μποÏÏŽ να βÏÏŽ πληÏοφοÏίες οικοδεσπότη(host) για " -#~ "επικεφαλίδα BWF (%1)" - -#~ msgid "" -#~ "cannot set broadcast info for audio file %1; Dropping broadcast info for " -#~ "this file" -#~ msgstr "" -#~ "Δεν ετέθησαν broadcast info για το audio file %1; ΑπόÏÏιψη broadcast info " -#~ "για αυτό το αÏχείο" - -#~ msgid "%1: cannot seek to %2" -#~ msgstr "%1: αδÏνατη η αναζήτηση στο %2" - -#~ msgid "cleared history" -#~ msgstr "εκκαθάÏιση ιστοÏικοÏ" - -#~ msgid "" -#~ "programming error: illegal state ID (%1) passed to StateManager::set_state" -#~ "() (range = 0-%2)" -#~ msgstr "" -#~ "σφάλμα Ï€ÏογÏαμματισμοÏ: αθέμιτη κατάσταση ID (%1) πέÏασε στον " -#~ "StateManager::set_state() (range = 0-%2)" - -#~ msgid "Error: could not write %1" -#~ msgstr "Σφάλμα: δεν μπόÏεσα να γÏάψω %1" - -#~ msgid "Could not understand XML file %1" -#~ msgstr "Δεν μπόÏεσα να κατανοήσω το XML αÏχείο %1" - -#~ msgid "move metric" -#~ msgstr "μετακίνηση μετÏικοÏ" - -#~ msgid "metric removed" -#~ msgstr "μετÏικό απεσÏÏθη" - -#~ msgid "add tempo" -#~ msgstr "Ï€Ïόσθεση ÏυθμοÏ" - -#~ msgid "replace tempo" -#~ msgstr "αντικατάσταση ÏυθμοÏ" - -#~ msgid "add meter" -#~ msgstr "Ï€Ïόσθεση μετÏητή" - -#~ msgid "replaced meter" -#~ msgstr "αντικατεστημένος μετÏητής" - -#~ msgid "load XML data" -#~ msgstr "ΦόÏτωμα δεδομένων XML" - -#~ msgid "cannot create VST chunk directory: %1" -#~ msgstr "δεν μποÏÏŽ να δημιουÏγήσω φάκελο κομματιών VST: %1" - -#~ msgid "cannot check VST chunk directory: %1" -#~ msgstr "δεν μποÏÏŽ να ελέγξω το φάκελο κομματιών VST: %1" - -#~ msgid "%1 exists but is not a directory" -#~ msgstr "%1 υπάÏχει αλλά δεν είναι φάκελος" - -#~ msgid "Bad node sent to VSTPlugin::set_state" -#~ msgstr "Κακός κόμβος εστάλη στο VSTPlugin::set_state" - -#~ msgid "no support for presets using chunks at this time" -#~ msgstr "" -#~ "καμμία υποστήÏιξη αυτή τη στιγμή για Ïυθμίσεις που χÏησιμοποιοÏν κομμάτια" - -#~ msgid "" -#~ "CoreAudioSource: file only contains %1 channels; %2 is invalid as a " -#~ "channel number" -#~ msgstr "" -#~ "CoreAudioSource: το αÏχείο πεÏιέχει μόνο %1 κανάλια; το %2 δεν έχει αξία " -#~ "σαν αÏιθμός καναλιών" - -#~ msgid "CoreAudioSource: could not seek to frame %1 within %2 (%3)" -#~ msgstr "" -#~ "CoreAudioSource: δεν μποÏοÏσα να αναζητήσω στο frame %1 μέσα στο %2 (%3)" - -#~ msgid "FileSource: \"%1\" not found when searching %2 using %3" -#~ msgstr "FileSource: \"%1\" δεν ευÏέθη όταν αναζητείτο %2 χÏησιμοποιώντας %3" - -#~ msgid "FileSource: could not open \"%1\": (%2)" -#~ msgstr "FileSource: δεν μπόÏεσα να ανοίξω \"%1\": (%2)" - -#~ msgid "FileSource: cannot write header in %1" -#~ msgstr "FileSource: δεν μποÏÏŽ να γÏάψω επικεφαλίδα στο %1" - -#~ msgid "FileSource: cannot locate chunks in %1" -#~ msgstr "FileSource: δεν μποÏÏŽ να ανιχνεÏσω κομμάτια στο %1" - -#~ msgid "FileSource: cannot read header in %1" -#~ msgstr "FileSource: δεν μποÏÏŽ να διαβάσω επικεφαλίδα στο %1" - -#~ msgid "FileSource: cannot check header in %1" -#~ msgstr "FileSource: δεν μποÏÏŽ να ελέγξω επικεφαλίδα στο %1" - -#, fuzzy -#~ msgid "FileSource: cannot initialize peakfile for %1 as %2" -#~ msgstr "FileSource: δεν μποÏÏŽ να εκκινήσω το peakfile για %1" - -#~ msgid "FileSource: cannot seek to end of file" -#~ msgstr "FileSource: δεν μποÏÏŽ να ανιχνεÏσω το τέλος του αÏχείου" - -#~ msgid "FileSource: cannot read RIFF/WAVE chunk from file" -#~ msgstr "FileSource: δεν μποÏÏŽ να διαβάσω κομμάτι RIFF/WAVE από το αÏχείο" - -#~ msgid "FileSource %1: not a RIFF/WAVE file" -#~ msgstr "FileSource %1: δεν είναι RIFF/WAVE αÏχείο" - -#~ msgid "FileSource: can't read a chunk" -#~ msgstr "FileSource: δεν μποÏÏŽ να διαβάσω κομμάτι" - -#~ msgid "FileSource: cannot get user information for BWF header (%1)" -#~ msgstr "" -#~ "FileSource: δεν μποÏÏŽ να βÏÏŽ πληÏοφοÏίες χÏήστη για επικεφαλίδα BWF (%1)" - -#~ msgid "FileSource[%1]: cannot update data size: %2" -#~ msgstr "FileSource[%1]: δεν μποÏÏŽ να ανανεώσω το μέγεθος δεδομένων: %2" - -#~ msgid "FileSource: can't find RIFF chunk info" -#~ msgstr "FileSource: δεν ευÏέθησαν πληÏοφοÏίες για RIFF κομμάτι" - -#, fuzzy -#~ msgid "FileSource: can't find RIFX chunk info" -#~ msgstr "FileSource: δεν ευÏέθησαν πληÏοφοÏίες για RIFF κομμάτι" - -#~ msgid "FileSource: can't read RIFF chunk" -#~ msgstr "FileSource: δεν μποÏÏŽ να διαβάσω RIFF κομμάτι" - -#~ msgid "FileSource: can't find format chunk info" -#~ msgstr "FileSource: δεν ευÏέθησαν πληÏοφοÏίες για το κομμάτι φοÏμαÏίσματος" - -#~ msgid "FileSource: can't read format chunk" -#~ msgstr "FileSource: δεν μποÏÏŽ να διαβάσω το κομμάτι φοÏμαÏίσματος" - -#~ msgid "FileSource: can't find data chunk info" -#~ msgstr "FileSource: δεν μποÏÏŽ να βÏÏŽ πληÏοφοÏίες για το κομμάτι δεδομένων" - -#~ msgid "FileSource: can't read data chunk" -#~ msgstr "FileSource: δεν μποÏÏŽ να διαβάσω το κομμάτι δεδομένων" - -#~ msgid "" -#~ "FileSource: cannot read Broadcast Wave data from existing audio file " -#~ "\"%1\" (%2)" -#~ msgstr "" -#~ "FileSource: δεν μποÏÏŽ να διαβάσω δεδομένα Broadcast Wave από το υπάÏχον " -#~ "αÏχείο \"%1\" (%2)" - -#~ msgid "" -#~ "FileSource: cannot read Broadcast Wave coding history from audio file " -#~ "\"%1\" (%2)" -#~ msgstr "" -#~ "FileSource: δεν μποÏÏŽ να διαβάσω το ιστοÏικό του κώδικα Broadcast Wave " -#~ "από το αÏχείο \"%1\" (%2)" - -#, fuzzy -#~ msgid "" -#~ "FileSource \"%1\" does not use valid sample format.\n" -#~ "This is probably a programming error." -#~ msgstr "" -#~ "FileSource \"%1\" δεν χÏησιμοποιεί format μεταβλητής υποδιαστολής.\n" -#~ "Αυτό πιθανόν να είναι σφάλμα Ï€ÏογÏαμματισμοÏ." - -#~ msgid "FileSource \"%1\" has no \"data\" chunk" -#~ msgstr "FileSource \"%1\" δεν έχει \"data\" κομμάτι" - -#~ msgid "" -#~ "%1: data length in header (%2) differs from implicit size in file (%3)" -#~ msgstr "" -#~ "%1: το μέγεθος δεδομένων της επικεφαλίδας (%2) διαφέÏει από το δεδηλωμένο " -#~ "μέγεθος στο αÏχείο (%3)" - -#~ msgid "\"%1\" has a sample rate of %2 instead of %3 as used by this session" -#~ msgstr "" -#~ "\"%1\" έχει Ïυθμό δειγματοληψίας %2 αντί του %3 όπως στην παÏοÏσα συνεδÏία" - -#~ msgid "FileSource: cannot write WAVE chunk: %1" -#~ msgstr "FileSource: δεν μποÏÏŽ να γÏάψω WAVE κομμάτι: %1" - -#~ msgid "FileSource: cannot write format chunk: %1" -#~ msgstr "FileSource: δεν μποÏÏŽ να γÏάψω format κομμάτι: %1" - -#~ msgid "FileSource: cannot data chunk: %1" -#~ msgstr "FileSource: cδεν μποÏÏŽ να γÏάψω κομμάτι δεδομένων: %1" - -#, fuzzy -#~ msgid "cannot create feedback request pipe (%1)" -#~ msgstr "Δεν μποÏÏŽ να δημιουÏγήσω transport request signal pipe (%1)" - -#, fuzzy -#~ msgid "Session: could not create feedback thread" -#~ msgstr "ΣυνεδÏία: δεν μπόÏεσα να δημιουÏγήσω δέσμη με τον butler" - -#, fuzzy -#~ msgid "Feedback thread poll failed (%1)" -#~ msgstr "Αίτηση δέσμης MIDI απέτυχε (%1)" - -#, fuzzy -#~ msgid "Error on feedback thread request pipe" -#~ msgstr "Σφάλμα στο transport thread request pipe" - -#, fuzzy -#~ msgid "Error reading from feedback request pipe" -#~ msgstr "Σφάλμα στην ανάγνωση από transport request pipe" - -#~ msgid "could not create crossfade object in playlist %1" -#~ msgstr "δεν έγινε δημιουÏγία αντικειμένου crossfade στη λίστα αναπαÏ/γής%1" - -#~ msgid "" -#~ "There are too many frozen versions of playlist \"%1\" to create another " -#~ "one" -#~ msgstr "" -#~ "ΠάÏα πολλές εκδόσεις λίστας αναπαÏ/γής \"%1\" για τη δημιουÏγία άλλης" - -#~ msgid "alsa_pcm:playback_1" -#~ msgstr "alsa_pcm:playback_1" - -#~ msgid "alsa_pcm:playback_2" -#~ msgstr "alsa_pcm:playback_2" - -#, fuzzy -#~ msgid "Could not find a template called %1 in %2" -#~ msgstr "Δεν μπόÏεσα να ανοίξω Ï€Ïοσχέδιο μίξεως %1 για ανάγνωση" - -#, fuzzy -#~ msgid "Source: cannot stat peakfile \"%1\" or \"%2\"" -#~ msgstr "Source: δεν μποÏÏŽ να μετÏήσω το αυτοστιγμεί peakfile \"%1\"" - -#~ msgid "Transport: error polling extra MIDI port #1 (revents =%1%2%3" -#~ msgstr "" -#~ "Transport: σφάλμα στην αίτηση επιπλέον θÏÏας MIDI #1 (revents =%1%2%3" - -#~ msgid "Transport: error polling extra MIDI port #2 (revents =%1%2%3" -#~ msgstr "" -#~ "Transport: σφάλμα στην αίτηση επιπλέον θÏÏας MIDI #2 (revents =%1%2%3" - -#~ msgid "Source: cannot seek to frame %1 in peakfile!" -#~ msgstr "Source: δεν μποÏÏŽ να αναζητήσω το frame %1 στο peakfile!" - -#~ msgid "Source[%1]: cannot seek to frame %2 in peakfile!" -#~ msgstr "Source[%1]: δεν μποÏÏŽ να αναζητήσω το frame %2 στο peakfile!" - -#~ msgid "%1: could not seek to byte %2 in peakfile (%3" -#~ msgstr "%1: δεν μποÏÏŽ να αναζητήσω σε byte %2 στο peakfile (%3" - -#~ msgid "could not register an input port called \"%1\"" -#~ msgstr "δεν μπόÏεσα να register μία θÏÏα εισόδου με όνομα \"%1\"" - -#~ msgid "could not register an output port called \"%1\"" -#~ msgstr "δεν μπόÏεσα να register μία θÏÏα εξόδου με όνομα \"%1\"" - -#~ msgid "%1: disk stream error at frame %2 (%3)" -#~ msgstr "%1: σφάλμα disk stream στο frame %2 (%3)" - -#~ msgid "Playlist: cannot create from state." -#~ msgstr "Playlist: δεν μποÏÏŽ να δημιουÏγήσω από κατάσταση." - -#~ msgid "" -#~ "for various reasons, it is no longer valid to use one of the plugins " -#~ "listed for this session. it will be ignored" -#~ msgstr "" -#~ "για διάφοÏους λόγους, δεν είναι πλέον χÏήσιμο να χÏησιμοποιηθεί ένα από " -#~ "τα καταχωÏημένα pluginsγια αυτή τη συνεδÏία. Θα αγνοηθεί." - -#~ msgid "cannot connect click track to %1" -#~ msgstr "δεν μποÏÏŽ να διασυνδέσω το κανάλι MετÏονόμου(click track) στο %1" - -#~ msgid "out %lu+%lu" -#~ msgstr "out %lu+%lu" - -#~ msgid "in %lu+%lu" -#~ msgstr "in %lu+%lu" - -#~ msgid "Session: error for %1 at frame %2 (%3)" -#~ msgstr "ΣυνεδÏία: σφάλμα για %1 στο frame %2 (%3)" diff --git a/libs/ardour/po/es.po b/libs/ardour/po/es.po index e8f43cea11..842c5fc385 100644 --- a/libs/ardour/po/es.po +++ b/libs/ardour/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libardour\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-10-23 19:09+0200\n" "PO-Revision-Date: \n" "Last-Translator: Pablo Fernández \n" "Language-Team: Grupo de Traducción al Español \n" @@ -131,7 +131,7 @@ msgstr "" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2465 session.cc:2498 session.cc:3643 +#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "error de programación: %1" @@ -200,64 +200,10 @@ msgstr "no se puede cargar el plugin VAMP \"%1\"" msgid "VAMP Plugin \"%1\" could not be loaded" msgstr "el plugin VAMP \"%1\" no pudo ser cargado" -#: audioengine.cc:186 -msgid "" -"This version of JACK is old - you should upgrade to a newer version that " -"supports jack_port_type_get_buffer_size()" +#: audioengine.cc:517 +msgid "AudioEngine: backend at \"%1\" has no descriptor function." msgstr "" -#: audioengine.cc:190 -msgid "Connect session to engine" -msgstr "Conectar sesión al motor" - -#: audioengine.cc:843 -msgid "" -"a port with the name \"%1\" already exists: check for duplicated track/bus " -"names" -msgstr "" -"ya existe un puerto con el nombre \"%1\": compruebe si hay nombres de pistas/" -"buses duplicados" - -#: audioengine.cc:845 session.cc:1698 -msgid "" -"No more JACK ports are available. You will need to stop %1 and restart JACK " -"with more ports if you need this many tracks." -msgstr "" -"JACK no dispone de más puertos. Debes salir de %1 y reiniciar JACK con más " -"puertos si necesitas tantas pistas." - -#: audioengine.cc:848 -msgid "AudioEngine: cannot register port \"%1\": %2" -msgstr "AudioEngine: no se puede registrar el puerto \"%1\": %2" - -#: audioengine.cc:878 -msgid "unable to create port: %1" -msgstr "Incapaz de crear puerto: %1" - -#: audioengine.cc:932 -msgid "connect called before engine was started" -msgstr "conexión invocada antes de que se inicie el motor" - -#: audioengine.cc:958 -msgid "AudioEngine: cannot connect %1 (%2) to %3 (%4)" -msgstr "AudioEngine: no se puede conectar %1 (%2) a %3 (%4)" - -#: audioengine.cc:973 audioengine.cc:1004 -msgid "disconnect called before engine was started" -msgstr "desconexión invocada antes de que se inicie el motor" - -#: audioengine.cc:1052 -msgid "get_port_by_name() called before engine was started" -msgstr "get_port_by_name() invocada antes de que se inicie el motor" - -#: audioengine.cc:1104 -msgid "get_ports called before engine was started" -msgstr "get_ports invocada antes de que se inicie el motor" - -#: audioengine.cc:1427 -msgid "failed to connect to JACK" -msgstr "falló la conexión a JACK" - #: audioregion.cc:1643 msgid "" "You have requested an operation that requires audio analysis.\n" @@ -427,9 +373,8 @@ msgid "Control protocol %1 not usable" msgstr "Protocolo de control %1 no usable." #: control_protocol_manager.cc:264 -#, fuzzy msgid "Control surface protocol discovered: \"%1\"\n" -msgstr "Se descubrió protocolo de superficie de control: \"%1\"" +msgstr "" #: control_protocol_manager.cc:282 msgid "ControlProtocolManager: cannot load module \"%1\" (%2)" @@ -455,7 +400,7 @@ msgstr "" msgid "audio" msgstr "" -#: data_type.cc:28 session.cc:1640 session.cc:1643 +#: data_type.cc:28 session.cc:1790 session.cc:1793 msgid "MIDI" msgstr "" @@ -568,7 +513,7 @@ msgstr "" msgid "Rectangular" msgstr "" -#: export_formats.cc:52 session.cc:4861 session.cc:4877 +#: export_formats.cc:52 session.cc:5008 session.cc:5024 msgid "None" msgstr "" @@ -678,7 +623,7 @@ msgid "" "configuration" msgstr "" -#: file_source.cc:198 session_state.cc:2891 +#: file_source.cc:198 session_state.cc:2807 msgid "" "there are already 1000 files with names like %1; versioning discontinued" msgstr "ya hay 1000 archivos con nombres como %1; se discontinúa el versionado" @@ -776,23 +721,23 @@ msgstr "" msgid "unknown file type for session %1" msgstr "tipo de archivo desconocido para la sesión %1" -#: globals.cc:205 +#: globals.cc:207 msgid "Could not set system open files limit to \"unlimited\"" msgstr "No se pudo establecer el límite de archivos abiertos a \"unlimited\"" -#: globals.cc:207 +#: globals.cc:209 msgid "Could not set system open files limit to %1" msgstr "No se pudo establecer el límite de archivos abiertos a \"unlimited\"" -#: globals.cc:211 +#: globals.cc:213 msgid "Your system is configured to limit %1 to only %2 open files" msgstr "" -#: globals.cc:215 +#: globals.cc:217 msgid "Could not get system open files limit (%1)" msgstr "No se pudo obtener el límite de archivos abiertos del sistema (%1) " -#: globals.cc:266 +#: globals.cc:268 msgid "Loading configuration" msgstr "Cargando configuración" @@ -912,47 +857,47 @@ msgstr "" msgid "IO: bad output string in XML node \"%1\"" msgstr "" -#: io.cc:1410 +#: io.cc:1411 #, c-format msgid "%s %u" msgstr "%s %u" -#: io.cc:1457 +#: io.cc:1458 #, c-format msgid "%s in" msgstr "" -#: io.cc:1459 +#: io.cc:1460 #, c-format msgid "%s out" msgstr "" -#: io.cc:1534 session.cc:494 session.cc:523 +#: io.cc:1535 session.cc:685 session.cc:714 msgid "mono" msgstr "" -#: io.cc:1536 session.cc:507 session.cc:537 +#: io.cc:1537 session.cc:698 session.cc:728 msgid "L" msgstr "" -#: io.cc:1536 session.cc:509 session.cc:539 +#: io.cc:1537 session.cc:700 session.cc:730 msgid "R" msgstr "" -#: io.cc:1538 io.cc:1544 +#: io.cc:1539 io.cc:1545 #, c-format msgid "%d" msgstr "" -#: ladspa_plugin.cc:88 +#: ladspa_plugin.cc:86 msgid "LADSPA: module has no descriptor function." msgstr "" -#: ladspa_plugin.cc:93 +#: ladspa_plugin.cc:91 msgid "LADSPA: plugin has gone away since discovery!" msgstr "" -#: ladspa_plugin.cc:100 +#: ladspa_plugin.cc:98 msgid "LADSPA: \"%1\" cannot be used, since it cannot do inplace processing" msgstr "" @@ -1030,7 +975,7 @@ msgstr "" msgid "incorrect XML mode passed to Locations::set_state" msgstr "" -#: location.cc:842 session.cc:4362 session_state.cc:1114 +#: location.cc:842 session.cc:4510 session_state.cc:1031 msgid "session" msgstr "sesión" @@ -1096,13 +1041,6 @@ msgid "" "%1: I/O configuration change %4 requested to use %2, but channel setup is %3" msgstr "" -#: midi_diskstream.cc:219 -#, fuzzy -msgid "MidiDiskstream: Playlist \"%1\" isn't a midi playlist" -msgstr "" -"AudioDiskstream: La lista de reproducción \"%1\" no es una lista de " -"reproducción de audio." - #: midi_diskstream.cc:270 msgid "MidiDiskstream %1: there is no existing playlist to make a copy of!" msgstr "" @@ -1199,21 +1137,21 @@ msgstr "" msgid "solo control" msgstr "" -#: mtc_slave.cc:235 +#: mtc_slave.cc:238 msgid "MTC Slave: atomic read of current time failed, sleeping!" msgstr "" -#: mtc_slave.cc:359 +#: mtc_slave.cc:361 msgid "" "Unknown rate/drop value %1 in incoming MTC stream, session values used " "instead" msgstr "" -#: mtc_slave.cc:379 +#: mtc_slave.cc:381 msgid "Session framerate adjusted from %1 TO: MTC's %2." msgstr "" -#: mtc_slave.cc:393 +#: mtc_slave.cc:395 msgid "Session and MTC framerate mismatch: MTC:%1 %2:%3." msgstr "" @@ -1277,19 +1215,19 @@ msgstr "" msgid "looking for panners in %1" msgstr "" -#: panner_manager.cc:99 +#: panner_manager.cc:100 msgid "Panner discovered: \"%1\" in %2" msgstr "" -#: panner_manager.cc:116 +#: panner_manager.cc:117 msgid "PannerManager: cannot load module \"%1\" (%2)" msgstr "" -#: panner_manager.cc:123 +#: panner_manager.cc:124 msgid "PannerManager: module \"%1\" has no descriptor function." msgstr "" -#: panner_manager.cc:186 +#: panner_manager.cc:187 msgid "no panner discovered for in/out = %1/%2" msgstr "" @@ -1401,11 +1339,7 @@ msgstr "unknown plugin status type \"%1\" - all entries ignored" msgid "unknown plugin type \"%1\" - ignored" msgstr "Tipo de plugin desconocido \"%1\" - ignorado" -#: port.cc:367 -msgid "get_connected_latency_range() called while disconnected from JACK" -msgstr "" - -#: port.cc:450 +#: port.cc:410 msgid "could not reregister %1" msgstr "no se pudo registrar %1" @@ -1421,6 +1355,30 @@ msgstr "" msgid "non-port insert XML used for port plugin insert" msgstr "" +#: port_manager.cc:270 +msgid "" +"a port with the name \"%1\" already exists: check for duplicated track/bus " +"names" +msgstr "" +"ya existe un puerto con el nombre \"%1\": compruebe si hay nombres de pistas/" +"buses duplicados" + +#: port_manager.cc:275 +msgid "AudioEngine: cannot register port \"%1\": %2" +msgstr "AudioEngine: no se puede registrar el puerto \"%1\": %2" + +#: port_manager.cc:314 +msgid "unable to create port: %1" +msgstr "Incapaz de crear puerto: %1" + +#: port_manager.cc:401 +msgid "AudioEngine: cannot connect %1 (%2) to %3 (%4)" +msgstr "AudioEngine: no se puede conectar %1 (%2) a %3 (%4)" + +#: port_manager.cc:453 port_manager.cc:454 +msgid "Re-establising port %1 failed" +msgstr "" + #: processor.cc:207 msgid "No %1 property flag in element %2" msgstr "" @@ -1429,46 +1387,39 @@ msgstr "" msgid "No child node with active property" msgstr "" -#: rc_configuration.cc:93 +#: rc_configuration.cc:88 msgid "Loading system configuration file %1" msgstr "Cargando el archivo de configuración del sistema %1" -#: rc_configuration.cc:97 +#: rc_configuration.cc:92 msgid "%1: cannot read system configuration file \"%2\"" msgstr "%1: No pude leer archivo de configuración del sistema \"%2\"" -#: rc_configuration.cc:102 +#: rc_configuration.cc:97 msgid "%1: system configuration file \"%2\" not loaded successfully." msgstr "" "%1: El archivo de configuración del sistema \"%2\" no se ha cargado con " "éxito." -#: rc_configuration.cc:106 -#, fuzzy -msgid "" -"Your system %1 configuration file is empty. This probably means that there " -"was an error installing %1" -msgstr "Tu archivo de configuración de %1 está vacío. Esto no es normal." - -#: rc_configuration.cc:121 +#: rc_configuration.cc:116 msgid "Loading user configuration file %1" msgstr "Cargando el archivo de configuración de usuario %1" -#: rc_configuration.cc:125 +#: rc_configuration.cc:120 msgid "%1: cannot read configuration file \"%2\"" msgstr "%1: No pude leer archivo de configuración \"%2\"" -#: rc_configuration.cc:130 +#: rc_configuration.cc:125 msgid "%1: user configuration file \"%2\" not loaded successfully." msgstr "" "%1: El archivo de configuración de usuario \"%2\" no se ha cargado con " "éxito." -#: rc_configuration.cc:134 +#: rc_configuration.cc:129 msgid "your %1 configuration file is empty. This is not normal." msgstr "Tu archivo de configuración de %1 está vacío. Esto no es normal." -#: rc_configuration.cc:151 +#: rc_configuration.cc:146 msgid "Config file %1 not saved" msgstr "Archivo de configuración %1 no guardado" @@ -1506,26 +1457,30 @@ msgstr "" msgid "return %1" msgstr "retorno %1" -#: route.cc:1105 route.cc:2581 +#: route.cc:1075 route.cc:2528 msgid "unknown Processor type \"%1\"; ignored" msgstr "" -#: route.cc:1117 +#: route.cc:1087 msgid "processor could not be created. Ignored." msgstr "" -#: route.cc:2007 route.cc:2234 +#: route.cc:1962 route.cc:2187 msgid "Bad node sent to Route::set_state() [%1]" msgstr "" -#: route.cc:2067 +#: route.cc:2022 msgid "Pannable state found for route (%1) without a panner!" msgstr "" -#: route.cc:2137 route.cc:2141 route.cc:2348 route.cc:2352 +#: route.cc:2096 route.cc:2100 route.cc:2301 route.cc:2305 msgid "badly formed order key string in state file! [%1] ... ignored." msgstr "" +#: route.cc:2311 +msgid "Converting deprecated order key for %1 using Editor order %2" +msgstr "" + #: route_group.cc:459 msgid "You cannot subgroup MIDI tracks at this time" msgstr "" @@ -1550,185 +1505,169 @@ msgstr "send %1" msgid "programming error: send created using role %1" msgstr "" -#: session.cc:347 -msgid "Set block size and sample rate" +#: session.cc:343 +msgid "Connect to engine" +msgstr "Conectar a motor" + +#: session.cc:348 +msgid "Session loading complete" +msgstr "Carga de sesión completada" + +#: session.cc:420 +msgid "Set up LTC" msgstr "" -#: session.cc:352 -msgid "Using configuration" +#: session.cc:422 +msgid "Set up Click" msgstr "" -#: session.cc:377 -msgid "LTC In" -msgstr "" - -#: session.cc:378 -msgid "LTC Out" -msgstr "" - -#: session.cc:404 -msgid "LTC-in" -msgstr "" - -#: session.cc:405 -msgid "LTC-out" -msgstr "" - -#: session.cc:434 -msgid "could not setup Click I/O" -msgstr "no se pudo configurar la E/S del click" - -#: session.cc:461 -msgid "cannot setup Click I/O" -msgstr "no se puede configurar la E/S del click" - -#: session.cc:464 -msgid "Compute I/O Latencies" -msgstr "Calcular las latencias de E/S" - -#: session.cc:470 +#: session.cc:424 msgid "Set up standard connections" msgstr "Configurar las conexiones estándar" -#: session.cc:491 +#: session.cc:634 +msgid "could not setup Click I/O" +msgstr "no se pudo configurar la E/S del click" + +#: session.cc:682 #, c-format msgid "out %" msgstr "" -#: session.cc:505 +#: session.cc:696 #, c-format msgid "out %+%" msgstr "" -#: session.cc:520 +#: session.cc:711 #, c-format msgid "in %" msgstr "" -#: session.cc:534 +#: session.cc:725 #, c-format msgid "in %+%" msgstr "" -#: session.cc:570 -msgid "Setup signal flow and plugins" -msgstr "Configurar rutas de señales y plugins" - -#: session.cc:614 -msgid "Connect to engine" -msgstr "Conectar a motor" - -#: session.cc:645 +#: session.cc:789 msgid "cannot connect master output %1 to %2" msgstr "no se puede conectar salida master %1 a %2" -#: session.cc:704 +#: session.cc:848 msgid "monitor" msgstr "" -#: session.cc:749 +#: session.cc:893 msgid "cannot connect control input %1 to %2" msgstr "" -#: session.cc:769 +#: session.cc:913 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "" -#: session.cc:800 +#: session.cc:944 msgid "cannot connect control output %1 to %2" msgstr "" -#: session.cc:864 +#: session.cc:1008 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "" -#: session.cc:1043 +#: session.cc:1192 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" -#: session.cc:1083 +#: session.cc:1232 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" msgstr "" -#: session.cc:1396 +#: session.cc:1546 msgid "feedback loop setup between %1 and %2" msgstr "" -#: session.cc:1692 +#: session.cc:1842 msgid "Session: could not create new midi track." msgstr "" -#: session.cc:1875 session.cc:1878 +#: session.cc:1848 +msgid "" +"No more JACK ports are available. You will need to stop %1 and restart JACK " +"with more ports if you need this many tracks." +msgstr "" +"JACK no dispone de más puertos. Debes salir de %1 y reiniciar JACK con más " +"puertos si necesitas tantas pistas." + +#: session.cc:2025 session.cc:2028 msgid "Audio" msgstr "" -#: session.cc:1902 session.cc:1910 session.cc:1987 session.cc:1995 +#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "" -#: session.cc:1933 +#: session.cc:2083 msgid "Session: could not create new audio track." msgstr "" -#: session.cc:1965 session.cc:1968 +#: session.cc:2115 session.cc:2118 msgid "Bus" msgstr "" -#: session.cc:2018 +#: session.cc:2168 msgid "Session: could not create new audio route." msgstr "Sesión: No se pudo crear la ruta del nuevo audio" -#: session.cc:2077 session.cc:2087 +#: session.cc:2227 session.cc:2237 msgid "Session: UINT_MAX routes? impossible!" msgstr "" -#: session.cc:2109 +#: session.cc:2259 msgid "Session: cannot create track/bus from template description" msgstr "" -#: session.cc:2135 +#: session.cc:2285 msgid "Session: could not create new route from template" msgstr "Sesión: No se pudo crear la nueva ruta desde plantilla" -#: session.cc:2164 +#: session.cc:2314 msgid "Adding new tracks/busses failed" msgstr "" -#: session.cc:3265 +#: session.cc:3413 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "" -#: session.cc:3385 session.cc:3443 +#: session.cc:3533 session.cc:3591 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "" -#: session.cc:3833 +#: session.cc:3981 msgid "send ID %1 appears to be in use already" msgstr "" -#: session.cc:3845 +#: session.cc:3993 msgid "aux send ID %1 appears to be in use already" msgstr "" -#: session.cc:3857 +#: session.cc:4005 msgid "return ID %1 appears to be in use already" msgstr "" -#: session.cc:3869 +#: session.cc:4017 msgid "insert ID %1 appears to be in use already" msgstr "" -#: session.cc:3996 +#: session.cc:4144 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "" -#: session.cc:4025 +#: session.cc:4173 msgid "too many bounced versions of playlist \"%1\"" msgstr "" -#: session.cc:4035 +#: session.cc:4183 msgid "cannot create new audio file \"%1\" for %2" msgstr "no se puede crear nuevo archivo de audio" @@ -1767,11 +1706,11 @@ msgstr "" msgid "Session: cannot have two events of type %1 at the same frame (%2)." msgstr "" -#: session_export.cc:126 +#: session_export.cc:125 msgid "%1: cannot seek to %2 for export" msgstr "" -#: session_export.cc:183 +#: session_export.cc:182 msgid "Export ended unexpectedly: %1" msgstr "" @@ -1781,10 +1720,6 @@ msgid "" "of this session." msgstr "" -#: session_midi.cc:428 -msgid "Session: could not send full MIDI time code" -msgstr "" - #: session_midi.cc:520 msgid "Session: cannot send quarter-frame MTC message (%1)" msgstr "" @@ -1793,373 +1728,357 @@ msgstr "" msgid "Session: cannot create Playlist from XML description." msgstr "" -#: session_process.cc:133 +#: session_process.cc:132 msgid "Session: error in no roll for %1" msgstr "" -#: session_process.cc:1158 +#: session_process.cc:1157 msgid "Programming error: illegal event type in process_event (%1)" msgstr "" -#: session_state.cc:139 -#, fuzzy -msgid "Could not use path %1 (%2)" -msgstr "No se pudo usar la ruta %1 (%s)" - -#: session_state.cc:267 +#: session_state.cc:184 msgid "solo cut control (dB)" msgstr "" -#: session_state.cc:360 +#: session_state.cc:208 +msgid "Set block size and sample rate" +msgstr "" + +#: session_state.cc:213 +msgid "Using configuration" +msgstr "" + +#: session_state.cc:325 msgid "Reset Remote Controls" msgstr "Restablecer controles remotos" -#: session_state.cc:385 -msgid "Session loading complete" -msgstr "Carga de sesión completada" - -#: session_state.cc:452 +#: session_state.cc:417 msgid "Session: cannot create session peakfile folder \"%1\" (%2)" msgstr "" -#: session_state.cc:459 +#: session_state.cc:424 msgid "Session: cannot create session sounds dir \"%1\" (%2)" msgstr "" -#: session_state.cc:466 +#: session_state.cc:431 msgid "Session: cannot create session midi dir \"%1\" (%2)" msgstr "" -#: session_state.cc:473 +#: session_state.cc:438 msgid "Session: cannot create session dead sounds folder \"%1\" (%2)" msgstr "" -#: session_state.cc:480 +#: session_state.cc:445 msgid "Session: cannot create session export folder \"%1\" (%2)" msgstr "" -#: session_state.cc:487 +#: session_state.cc:452 msgid "Session: cannot create session analysis folder \"%1\" (%2)" msgstr "" -#: session_state.cc:494 +#: session_state.cc:459 msgid "Session: cannot create session plugins folder \"%1\" (%2)" msgstr "" -#: session_state.cc:501 +#: session_state.cc:466 msgid "Session: cannot create session externals folder \"%1\" (%2)" msgstr "" -#: session_state.cc:515 +#: session_state.cc:480 msgid "Session: cannot create session folder \"%1\" (%2)" msgstr "" -#: session_state.cc:548 +#: session_state.cc:514 msgid "Could not open %1 for writing session template" msgstr "" -#: session_state.cc:554 +#: session_state.cc:520 msgid "Could not open session template %1 for reading" msgstr "" -#: session_state.cc:573 +#: session_state.cc:539 msgid "master" msgstr "" -#: session_state.cc:636 +#: session_state.cc:600 msgid "Could not remove pending capture state at path \"%1\" (%2)" msgstr "Could not remove pending capture state at path \"%1\" (%2)" -#: session_state.cc:660 +#: session_state.cc:624 msgid "could not rename snapshot %1 to %2 (%3)" msgstr "" -#: session_state.cc:688 -#, fuzzy -msgid "Could not remove session file at path \"%1\" (%2)" -msgstr "Could not remove state file at path \"%1\" (%2)" - -#: session_state.cc:761 +#: session_state.cc:669 msgid "" "the %1 audio engine is not connected and state saving would lose all I/O " "connections. Session not saved" msgstr "" -#: session_state.cc:812 +#: session_state.cc:720 msgid "state could not be saved to %1" msgstr "" -#: session_state.cc:814 session_state.cc:825 -#, fuzzy -msgid "Could not remove temporary session file at path \"%1\" (%2)" -msgstr "Could not remove history file at path \"%1\" (%2)" - -#: session_state.cc:822 +#: session_state.cc:730 msgid "could not rename temporary session file %1 to %2" msgstr "" -#: session_state.cc:890 +#: session_state.cc:798 msgid "%1: session file \"%2\" doesn't exist!" msgstr "" -#: session_state.cc:902 -#, fuzzy -msgid "Could not understand session file %1" -msgstr "No se pudo interpretar el archivo de historial de sesión \"%1\"." - -#: session_state.cc:911 +#: session_state.cc:819 msgid "Session file %1 is not a session" msgstr "El archivo de sesión %1 no es una sesión" -#: session_state.cc:1208 +#: session_state.cc:1125 msgid "programming error: Session: incorrect XML node sent to set_state()" msgstr "" -#: session_state.cc:1257 +#: session_state.cc:1179 msgid "Session: XML state has no options section" msgstr "" -#: session_state.cc:1262 +#: session_state.cc:1184 msgid "Session: XML state has no metadata section" msgstr "" -#: session_state.cc:1273 +#: session_state.cc:1195 msgid "Session: XML state has no sources section" msgstr "" -#: session_state.cc:1280 +#: session_state.cc:1202 msgid "Session: XML state has no Tempo Map section" msgstr "" -#: session_state.cc:1287 +#: session_state.cc:1209 msgid "Session: XML state has no locations section" msgstr "" -#: session_state.cc:1313 +#: session_state.cc:1235 msgid "Session: XML state has no Regions section" msgstr "" -#: session_state.cc:1320 +#: session_state.cc:1242 msgid "Session: XML state has no playlists section" msgstr "" -#: session_state.cc:1340 +#: session_state.cc:1262 msgid "Session: XML state has no bundles section" msgstr "" -#: session_state.cc:1352 +#: session_state.cc:1274 msgid "Session: XML state has no diskstreams section" msgstr "" -#: session_state.cc:1360 +#: session_state.cc:1282 msgid "Session: XML state has no routes section" msgstr "" -#: session_state.cc:1372 +#: session_state.cc:1294 msgid "Session: XML state has no route groups section" msgstr "" -#: session_state.cc:1381 +#: session_state.cc:1303 msgid "Session: XML state has no edit groups section" msgstr "" -#: session_state.cc:1388 +#: session_state.cc:1310 msgid "Session: XML state has no mix groups section" msgstr "" -#: session_state.cc:1396 +#: session_state.cc:1318 msgid "Session: XML state has no click section" msgstr "" -#: session_state.cc:1444 +#: session_state.cc:1360 msgid "Session: cannot create Route from XML description." msgstr "" -#: session_state.cc:1448 +#: session_state.cc:1364 msgid "Loaded track/bus %1" msgstr "Pista/bus %1 cargado" -#: session_state.cc:1546 +#: session_state.cc:1462 msgid "Could not find diskstream for route" msgstr "" -#: session_state.cc:1600 +#: session_state.cc:1516 msgid "Session: cannot create Region from XML description." msgstr "" -#: session_state.cc:1604 +#: session_state.cc:1520 msgid "Can not load state for region '%1'" msgstr "No se puede cargar el estado de la región '%1'" -#: session_state.cc:1640 +#: session_state.cc:1556 msgid "Regions in compound description not found (ID's %1 and %2): ignored" msgstr "" -#: session_state.cc:1668 +#: session_state.cc:1584 msgid "Nested source has no ID info in session file! (ignored)" msgstr "" -#: session_state.cc:1680 +#: session_state.cc:1596 msgid "Cannot reconstruct nested source for region %1" msgstr "" -#: session_state.cc:1742 +#: session_state.cc:1658 msgid "Session: XMLNode describing a AudioRegion is incomplete (no source)" msgstr "" -#: session_state.cc:1750 session_state.cc:1771 session_state.cc:1791 +#: session_state.cc:1666 session_state.cc:1687 session_state.cc:1707 msgid "" "Session: XMLNode describing a AudioRegion references an unknown source id =%1" msgstr "" -#: session_state.cc:1756 session_state.cc:1777 session_state.cc:1797 +#: session_state.cc:1672 session_state.cc:1693 session_state.cc:1713 msgid "" "Session: XMLNode describing a AudioRegion references a non-audio source id =" "%1" msgstr "" -#: session_state.cc:1820 +#: session_state.cc:1736 msgid "" "Session: XMLNode describing an AudioRegion is missing some master sources; " "ignored" msgstr "" -#: session_state.cc:1854 +#: session_state.cc:1770 msgid "Session: XMLNode describing a MidiRegion is incomplete (no source)" msgstr "" -#: session_state.cc:1862 +#: session_state.cc:1778 msgid "" "Session: XMLNode describing a MidiRegion references an unknown source id =%1" msgstr "" -#: session_state.cc:1868 +#: session_state.cc:1784 msgid "" "Session: XMLNode describing a MidiRegion references a non-midi source id =%1" msgstr "" -#: session_state.cc:1936 +#: session_state.cc:1852 msgid "" "cannot create new file from region name \"%1\" with ident = \"%2\": too many " "existing files with similar names" msgstr "" -#: session_state.cc:1959 +#: session_state.cc:1875 msgid "Session: cannot create Source from XML description." msgstr "" -#: session_state.cc:1993 +#: session_state.cc:1909 msgid "A sound file is missing. It will be replaced by silence." msgstr "No se encuentra un archivo de audio. Será reemplazado por silencio." -#: session_state.cc:2016 +#: session_state.cc:1932 msgid "Found a sound file that cannot be used by %1. Talk to the progammers." msgstr "Found a sound file that cannot be used by %1. Talk to the progammers." -#: session_state.cc:2033 +#: session_state.cc:1949 msgid "Could not create templates directory \"%1\" (%2)" msgstr "" -#: session_state.cc:2046 +#: session_state.cc:1962 msgid "Template \"%1\" already exists - new version not created" msgstr "La plantilla \"%1\" ya existe - no se creará una nueva versión" -#: session_state.cc:2052 +#: session_state.cc:1968 msgid "Could not create directory for Session template\"%1\" (%2)" msgstr "Could not create directory for Session template\"%1\" (%2)" -#: session_state.cc:2062 +#: session_state.cc:1978 msgid "template not saved" msgstr "plantilla no guardada" -#: session_state.cc:2072 +#: session_state.cc:1988 msgid "Could not create directory for Session template plugin state\"%1\" (%2)" msgstr "" "Could not create directory for Session template plugin state\"%1\" (%2)" -#: session_state.cc:2267 +#: session_state.cc:2183 msgid "Unknown node \"%1\" found in Bundles list from session file" msgstr "" -#: session_state.cc:2809 session_state.cc:2815 +#: session_state.cc:2725 session_state.cc:2731 msgid "Cannot expand path %1 (%2)" msgstr "" -#: session_state.cc:2868 +#: session_state.cc:2784 msgid "Session: cannot create dead file folder \"%1\" (%2)" msgstr "" -#: session_state.cc:2907 +#: session_state.cc:2823 msgid "cannot rename unused file source from %1 to %2 (%3)" msgstr "" -#: session_state.cc:2925 +#: session_state.cc:2841 msgid "cannot remove peakfile %1 for %2 (%3)" msgstr "" -#: session_state.cc:3227 +#: session_state.cc:3143 msgid "could not backup old history file, current history not saved" msgstr "" -#: session_state.cc:3240 +#: session_state.cc:3156 msgid "history could not be saved to %1" msgstr "No se pudo guardar el historial a %1" -#: session_state.cc:3243 +#: session_state.cc:3159 msgid "Could not remove history file at path \"%1\" (%2)" msgstr "Could not remove history file at path \"%1\" (%2)" -#: session_state.cc:3247 +#: session_state.cc:3163 msgid "could not restore history file from backup %1 (%2)" msgstr "" -#: session_state.cc:3272 +#: session_state.cc:3188 msgid "%1: no history file \"%2\" for this session." msgstr "" -#: session_state.cc:3278 +#: session_state.cc:3194 msgid "Could not understand session history file \"%1\"" msgstr "No se pudo interpretar el archivo de historial de sesión \"%1\"." -#: session_state.cc:3320 +#: session_state.cc:3236 msgid "Failed to downcast MidiSource for NoteDiffCommand" msgstr "" -#: session_state.cc:3331 +#: session_state.cc:3247 msgid "Failed to downcast MidiSource for SysExDiffCommand" msgstr "" -#: session_state.cc:3342 +#: session_state.cc:3258 msgid "Failed to downcast MidiSource for PatchChangeDiffCommand" msgstr "" -#: session_state.cc:3350 +#: session_state.cc:3266 msgid "Couldn't figure out how to make a Command out of a %1 XMLNode." msgstr "" -#: session_state.cc:3602 +#: session_state.cc:3502 msgid "Session: unknown diskstream type in XML" msgstr "" -#: session_state.cc:3607 +#: session_state.cc:3507 msgid "Session: could not load diskstream via XML state" msgstr "" -#: session_time.cc:215 -msgid "Unknown JACK transport state %1 in sync callback" +#: session_time.cc:214 +msgid "Unknown transport state %1 in sync callback" msgstr "" -#: session_transport.cc:168 +#: session_transport.cc:167 msgid "Cannot loop - no loop range defined" msgstr "No se puede reproducir en bucle - no se definió un rango de bucle." -#: session_transport.cc:728 +#: session_transport.cc:739 msgid "" "Seamless looping cannot be supported while %1 is using JACK transport.\n" "Recommend changing the configured options" msgstr "" -#: session_transport.cc:1094 +#: session_transport.cc:1105 msgid "" "Global varispeed cannot be supported while %1 is connected to JACK transport " "control" @@ -2302,7 +2221,7 @@ msgstr "" msgid "attempt to write a non-writable audio file source (%1)" msgstr "" -#: sndfilesource.cc:396 utils.cc:507 utils.cc:531 utils.cc:545 utils.cc:564 +#: sndfilesource.cc:396 utils.cc:510 utils.cc:534 utils.cc:548 utils.cc:567 msgid "programming error: %1 %2" msgstr "error de programación: %1 %2" @@ -2520,19 +2439,19 @@ msgstr "Bloquear" msgid "programming error: unknown edit mode string \"%1\"" msgstr "" -#: utils.cc:389 utils.cc:418 +#: utils.cc:389 utils.cc:421 msgid "MIDI Timecode" msgstr "" -#: utils.cc:389 utils.cc:416 +#: utils.cc:389 utils.cc:419 msgid "MTC" msgstr "MTC" -#: utils.cc:393 utils.cc:425 +#: utils.cc:393 utils.cc:428 msgid "MIDI Clock" msgstr "" -#: utils.cc:397 utils.cc:412 utils.cc:432 +#: utils.cc:397 utils.cc:415 utils.cc:435 msgid "JACK" msgstr "JACK" @@ -2540,137 +2459,18 @@ msgstr "JACK" msgid "programming error: unknown sync source string \"%1\"" msgstr "" -#: utils.cc:423 +#: utils.cc:426 msgid "M-Clock" msgstr "" -#: utils.cc:429 +#: utils.cc:432 msgid "LTC" msgstr "LTC" -#: utils.cc:599 +#: utils.cc:602 msgid "programming error: unknown native header format: %1" msgstr "" -#: utils.cc:614 +#: utils.cc:617 msgid "cannot open directory %1 (%2)" msgstr "" - -#~ msgid "Session" -#~ msgstr "Sesión" - -#~ msgid "" -#~ "No more JACK ports are available. You will need to stop %1 and restart " -#~ "JACK with ports if you need this many tracks." -#~ msgstr "" -#~ "JACK no disponde de más puertos. Debes salir de %1 y reiniciar JACK con " -#~ "más puertos si necesitas tantas pistas" - -#~ msgid "control protocol \"%1\" is not known. Ignored" -#~ msgstr "el protocolo de control \"%1\" no existe. No hecho caso." - -#~ msgid "Removed open file count limit. Excellent!" -#~ msgstr "Suprimido el límite del contador de archivos abiertos. ¡Excelente!" - -#~ msgid "%1 will be limited to %2 open files" -#~ msgstr "%1 será limitado a %2 archivos abiertos" - -#~ msgid "signal" -#~ msgstr "señal" - -#~ msgid "editor" -#~ msgstr "editor" - -#~ msgid "Template \"%1\" already exists - template not renamed" -#~ msgstr "La plantilla \"%1\" ya existe - plantilla no renombrada" - -#~ msgid "path (%1) is ambiguous" -#~ msgstr "la ruta (%1) es ambigua" - -#~ msgid "Reset Control Protocols" -#~ msgstr "Restablecer protocolos de control" - -#~ msgid "%1: cannot create region from pending capture sources" -#~ msgstr "" -#~ "%1: no se puede crear la región desde las fuentes de captura pendientes" - -#~ msgid "register input port called before engine was started" -#~ msgstr "" -#~ "registro de puerto de entrada invocado antes de que se inicie el motor" - -#~ msgid "register output port called before engine was started" -#~ msgstr "" -#~ "registro de puerto de salida invocado antes de que se inicie el motor" - -#~ msgid "AudioEngine: connection already exists: %1 (%2) to %3 (%4)" -#~ msgstr "AudioEngine: la conexión ya existe: %1 (%2) a %3 (%4)" - -#~ msgid "Disconnected from JACK while reconnecting. You should quit %1 now." -#~ msgstr "" -#~ "Se desconectó de JACK mientras se reconectaba. Deberías salir de %1 ahora" - -#~ msgid "" -#~ "This is an old session that does not have\n" -#~ "sufficient information for rendered FX" -#~ msgstr "" -#~ "Esta es una sesión antigua que no tiene\n" -#~ "información suficiente para efectos renderizados" - -#~ msgid "programming error:" -#~ msgstr "error de programación:" - -#~ msgid "Starting OSC" -#~ msgstr "Iniciando OSC" - -#~ msgid "no MIDI ports specified: no MMC or MTC control possible" -#~ msgstr "" -#~ "no se han especificado puertos MIDI: no es posible control MMC ni MTC " - -#~ msgid "Configuring MIDI ports" -#~ msgstr "Configurando puertos MIDI" - -#~ msgid "default" -#~ msgstr "default" - -#~ msgid "No MMC control (MIDI port \"%1\" not available)" -#~ msgstr "No MMC control (MIDI port \"%1\" not available)" - -#~ msgid "No MTC support (MIDI port \"%1\" not available)" -#~ msgstr "No hay soporte MTC (puerto MIDI \"%1\" no disponible)" - -#~ msgid "No MIDI parameter support (MIDI port \"%1\" not available)" -#~ msgstr "" -#~ "No hay soporte de parámetros MIDI (puerto MIDI \"%1\" no disponible)" - -#~ msgid "" -#~ "converting %1\n" -#~ "(resample from %2KHz to %3KHz)\n" -#~ "(%4 of %5)" -#~ msgstr "" -#~ "convirtiendo %1\n" -#~ "(remuestreo desde %2KHz a %3KHz)\n" -#~ "(%4 de %5)" - -#~ msgid "" -#~ "converting %1\n" -#~ "(%2 of %3)" -#~ msgstr "" -#~ "convirtiendo %1\n" -#~ "(%2 de %3)" - -#~ msgid "cannot setup master inputs" -#~ msgstr "no se pueden configurar las entradas principales" - -#~ msgid "OSC startup" -#~ msgstr "Inicio de OSC" - -#~ msgid "Export: no output file specified" -#~ msgstr "Exportación: No se ha especificado archivo de salida" - -#~ msgid "Export: could not write data to output file (%1)" -#~ msgstr "" -#~ "Exportación: No se pudieron escribir datos al archivo de salida (%1)" - -#~ msgid "cannot create dead sounds directory \"%1\"; ignored" -#~ msgstr "" -#~ "No se puede crear el directorio para archivos purgados \"%1\"; ignorado." diff --git a/libs/ardour/po/it.po b/libs/ardour/po/it.po index 532e23c348..0c9799a5e3 100644 --- a/libs/ardour/po/it.po +++ b/libs/ardour/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libardour 0.664.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-10-23 19:09+0200\n" "PO-Revision-Date: 2003-05-21 12:50+0500\n" "Last-Translator: Filippo Pappalardo \n" "Language-Team: Italian\n" @@ -25,67 +25,45 @@ msgid "AudioDiskstream: Playlist \"%1\" isn't an audio playlist" msgstr "" #: audio_diskstream.cc:296 -#, fuzzy msgid "AudioDiskstream %1: there is no existing playlist to make a copy of!" -msgstr "DiskStream %1: non esiste alcuna playlist di cui fare una copia!" +msgstr "" #: audio_diskstream.cc:848 audio_diskstream.cc:858 -#, fuzzy msgid "" "AudioDiskstream %1: when refilling, cannot read %2 from playlist at frame %3" -msgstr "DiskStream %1: impossibile leggere %2 dalla playlista al frame %3" +msgstr "" #: audio_diskstream.cc:1014 -#, fuzzy msgid "AudioDiskstream %1: cannot read %2 from playlist at frame %3" -msgstr "DiskStream %1: impossibile leggere %2 dalla playlista al frame %3" +msgstr "" #: audio_diskstream.cc:1383 audio_diskstream.cc:1400 -#, fuzzy msgid "AudioDiskstream %1: cannot write to disk" -msgstr "DiskStream %1: impossibile scrivere sul disco" +msgstr "" #: audio_diskstream.cc:1443 -#, fuzzy msgid "AudioDiskstream \"%1\": cannot flush captured data to disk!" -msgstr "DiskStream \"%1\": impossibile scaricare i dati acquisiti sul disco!" +msgstr "" #: audio_diskstream.cc:1537 msgid "%1: could not create region for complete audio file" msgstr "%1: impossibile creare una regione per il file audio completo" -#: audio_diskstream.cc:1571 -#, fuzzy -msgid "AudioDiskstream: could not create region for captured audio!" -msgstr "DiskStream: impossibile creare una regione per l'audio registrato!" - -#: audio_diskstream.cc:1679 -#, fuzzy -msgid "programmer error: %1" -msgstr "errore di programmazione: %1" - #: audio_diskstream.cc:1905 -#, fuzzy msgid "AudioDiskstream: channel %1 out of range" -msgstr "DiskStream: canale fuori margine" +msgstr "" #: audio_diskstream.cc:1919 midi_diskstream.cc:1210 msgid "%1:%2 new capture file not initialized correctly" msgstr "%1:%2 nuovo file di registrazione non è stato avviato correttamente" -#: audio_diskstream.cc:2200 -#, fuzzy -msgid "%1: cannot restore pending capture source file %2" -msgstr "Import: impossibile aprire il file audio di input \"%1\"" - #: audio_diskstream.cc:2222 msgid "%1: incorrect number of pending sources listed - ignoring them all" msgstr "" #: audio_diskstream.cc:2246 -#, fuzzy msgid "%1: cannot create whole-file region from pending capture sources" -msgstr "Playlist: impossibile creare la Regione dal file di stato" +msgstr "" #: audio_library.cc:71 msgid "Could not open %1. Audio Library not saved" @@ -108,14 +86,12 @@ msgid "Audio Playlists" msgstr "" #: audio_playlist_importer.cc:161 -#, fuzzy msgid "region" -msgstr "aggiungi regione" +msgstr "" #: audio_playlist_importer.cc:163 -#, fuzzy msgid "regions" -msgstr "aggiungi regione" +msgstr "" #: audio_playlist_importer.cc:174 audio_track_importer.cc:245 msgid "A playlist with this name already exists, please rename it." @@ -132,15 +108,14 @@ msgstr "" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2465 session.cc:2498 session.cc:3643 +#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "errore di programmazione: %1" #: audio_region_importer.cc:75 -#, fuzzy msgid "Audio Regions" -msgstr "costruzione delle regioni" +msgstr "" #: audio_region_importer.cc:145 msgid "Length: " @@ -159,9 +134,8 @@ msgid "" msgstr "" #: audio_track.cc:167 -#, fuzzy msgid "Unknown bundle \"%1\" listed for input of %2" -msgstr "Connessione sconosciuta \"%1\" come input di %2" +msgstr "" #: audio_track.cc:169 msgid "in 1" @@ -199,62 +173,8 @@ msgstr "" msgid "VAMP Plugin \"%1\" could not be loaded" msgstr "" -#: audioengine.cc:186 -msgid "" -"This version of JACK is old - you should upgrade to a newer version that " -"supports jack_port_type_get_buffer_size()" -msgstr "" - -#: audioengine.cc:190 -msgid "Connect session to engine" -msgstr "" - -#: audioengine.cc:843 -msgid "" -"a port with the name \"%1\" already exists: check for duplicated track/bus " -"names" -msgstr "" - -#: audioengine.cc:845 session.cc:1698 -msgid "" -"No more JACK ports are available. You will need to stop %1 and restart JACK " -"with more ports if you need this many tracks." -msgstr "" - -#: audioengine.cc:848 -#, fuzzy -msgid "AudioEngine: cannot register port \"%1\": %2" -msgstr "IO: impossibile registrare la porta %1" - -#: audioengine.cc:878 -msgid "unable to create port: %1" -msgstr "" - -#: audioengine.cc:932 -msgid "connect called before engine was started" -msgstr "richiesta di connessione avvenuta prima dell'avvio dell'applicazione" - -#: audioengine.cc:958 -msgid "AudioEngine: cannot connect %1 (%2) to %3 (%4)" -msgstr "" - -#: audioengine.cc:973 audioengine.cc:1004 -msgid "disconnect called before engine was started" -msgstr "" -"richiesta di disconnessione avvenuta prima dell'avvio dell'applicazione" - -#: audioengine.cc:1052 -#, fuzzy -msgid "get_port_by_name() called before engine was started" -msgstr "" -"richiesta get_port_by_name() avvenuta prima dell'avvio dell'applicazione" - -#: audioengine.cc:1104 -msgid "get_ports called before engine was started" -msgstr "richiesta di get_ports avvenuta prima dell'avvio dell'applicazione" - -#: audioengine.cc:1427 -msgid "failed to connect to JACK" +#: audioengine.cc:488 +msgid "looking for backends in %1\n" msgstr "" #: audioregion.cc:1643 @@ -272,54 +192,39 @@ msgid "" "this and future transient-detection operations.\n" msgstr "" -#: audiosource.cc:199 -#, fuzzy -msgid "cannot rename peakfile for %1 from %2 to %3 (%4)" -msgstr "impossibile eliminare il peakfile %1 per %2 (%3)" - #: audiosource.cc:226 -#, fuzzy msgid "AudioSource: cannot stat peakfile \"%1\"" -msgstr "FileSource: impossibile avviare il peakfile per %1" +msgstr "" #: audiosource.cc:366 msgid "cannot read sample data for unscaled peak computation" msgstr "" #: audiosource.cc:387 -#, fuzzy msgid "AudioSource: cannot open peakpath (a) \"%1\" (%2)" -msgstr "SndFileSource: impossibile accedere al file \"%1\" (%2)" +msgstr "" #: audiosource.cc:463 -#, fuzzy msgid "AudioSource: cannot open peakpath (b) \"%1\" (%2)" -msgstr "SndFileSource: impossibile accedere al file \"%1\" (%2)" +msgstr "" #: audiosource.cc:587 -#, fuzzy msgid "" "AudioSource[%1]: peak read - cannot read %2 samples at offset %3 of %4 (%5)" -msgstr "DiskStream %1: impossibile leggere %2 dalla playlista al frame %3" +msgstr "" #: audiosource.cc:667 msgid "%1: could not write read raw data for peak computation (%2)" msgstr "" #: audiosource.cc:706 -#, fuzzy msgid "AudioSource: cannot open peakpath (c) \"%1\" (%2)" -msgstr "SndFileSource: impossibile accedere al file \"%1\" (%2)" +msgstr "" #: audiosource.cc:773 audiosource.cc:886 msgid "%1: could not write peak file data (%2)" msgstr "" -#: audiosource.cc:924 -#, fuzzy -msgid "could not truncate peakfile %1 to %2 (error: %3)" -msgstr "impossibile eliminare il peakfile %1 per %2 (%3)" - #: auditioner.cc:87 msgid "no outputs available for auditioner - manual connection required" msgstr "" @@ -337,21 +242,8 @@ msgid "Automation node has no path property" msgstr "" #: automatable.cc:101 -#, fuzzy msgid "cannot open %2 to load automation data (%3)" -msgstr "impossibile accedere al file dell'automazione pan %1 (%2)" - -#: automatable.cc:129 -#, fuzzy -msgid "cannot load automation data from %2" -msgstr "impossibile accedere al file dell'automazione pan %1 (%2)" - -#: automation_list.cc:353 -#, fuzzy -msgid "automation list: cannot load coordinates from XML, all points ignored" msgstr "" -"lista automazione: nessuna coordinata X salvata per punto di controllo " -"(ignorato)" #: automation_list.cc:399 msgid "" @@ -389,14 +281,12 @@ msgid "poll on butler request pipe failed (%1)" msgstr "" #: butler.cc:163 -#, fuzzy msgid "Error on butler thread request pipe: fd=%1 err=%2" -msgstr "Errore nel leggere dalla porta MIDI %1" +msgstr "" #: butler.cc:201 -#, fuzzy msgid "Error reading from butler request pipe" -msgstr "Errore nel leggere dalla porta MIDI %1" +msgstr "" #: butler.cc:248 msgid "Butler read ahead failure on dstream %1" @@ -423,24 +313,13 @@ msgid "looking for control protocols in %1\n" msgstr "" #: control_protocol_manager.cc:247 -#, fuzzy msgid "Control protocol %1 not usable" -msgstr "La porta MIDI \"%1\" non disponibile: nessun controllo MTC possibile" +msgstr "" #: control_protocol_manager.cc:264 msgid "Control surface protocol discovered: \"%1\"\n" msgstr "" -#: control_protocol_manager.cc:282 -#, fuzzy -msgid "ControlProtocolManager: cannot load module \"%1\" (%2)" -msgstr "LADSPA: impossibile caricare il modulo \"%1\" (%2)" - -#: control_protocol_manager.cc:290 -#, fuzzy -msgid "ControlProtocolManager: module \"%1\" has no descriptor function." -msgstr "LADSPA: il modulo \"%1\" non ha alcuna funzione descriptor." - #: cycle_timer.cc:38 msgid "CycleTimer::get_mhz(): can't open /proc/cpuinfo" msgstr "CycleTimer::get_mhz(): impossibile accedere a /proc/cpuinfo" @@ -458,7 +337,7 @@ msgstr "impossibile localizzare \"cpu MHz\" in /proc/cpuinfo" msgid "audio" msgstr "" -#: data_type.cc:28 session.cc:1640 session.cc:1643 +#: data_type.cc:28 session.cc:1790 session.cc:1793 msgid "MIDI" msgstr "" @@ -543,18 +422,16 @@ msgid "Session rate" msgstr "" #: export_format_specification.cc:537 -#, fuzzy msgid "normalize" -msgstr "normalizzato a %.2fdB" +msgstr "" #: export_format_specification.cc:541 msgid "trim" msgstr "" #: export_format_specification.cc:543 -#, fuzzy msgid "trim start" -msgstr "separa" +msgstr "" #: export_format_specification.cc:545 msgid "trim end" @@ -572,7 +449,7 @@ msgstr "" msgid "Rectangular" msgstr "" -#: export_formats.cc:52 session.cc:4861 session.cc:4877 +#: export_formats.cc:52 session.cc:5008 session.cc:5024 msgid "None" msgstr "" @@ -605,23 +482,20 @@ msgid "8bit unsigned" msgstr "" #: export_formats.cc:173 -#, fuzzy msgid "Vorbis sample format" -msgstr "separa" +msgstr "" #: export_formats.cc:175 -#, fuzzy msgid "No sample format" -msgstr "separa" +msgstr "" #: export_handler.cc:335 msgid "Editor: cannot open \"%1\" as export file for CD marker file" msgstr "" #: export_handler.cc:417 export_handler.cc:420 -#, fuzzy msgid "an error occured while writing a TOC/CUE file: %1" -msgstr "c'è stato un errore durante la conversione di campionatura: %1" +msgstr "" #: export_handler.cc:642 export_handler.cc:700 msgid "Cannot convert %1 to Latin-1 text" @@ -632,33 +506,28 @@ msgid "Searching for export formats in %1" msgstr "" #: export_profile_manager.cc:99 -#, fuzzy msgid "Unable to create export format directory %1: %2" -msgstr "impossibile creare la cartella per la sessione %1; ignorato" +msgstr "" #: export_profile_manager.cc:257 -#, fuzzy msgid "Unable to remove export preset %1: %2" -msgstr "impossibile creare la cartella per la sessione %1; ignorato" +msgstr "" #: export_profile_manager.cc:347 msgid "Selection" msgstr "" #: export_profile_manager.cc:600 -#, fuzzy msgid "Unable to rename export format %1 to %2: %3" -msgstr "impossibile rinominare file audio sorgente da %1 a %2 (%3)" +msgstr "" #: export_profile_manager.cc:632 -#, fuzzy msgid "Unable to remove export profile %1: %2" -msgstr "impossibile controllare il file di stato %1 (%2)" +msgstr "" #: export_profile_manager.cc:649 -#, fuzzy msgid "empty format" -msgstr "separa" +msgstr "" #: export_profile_manager.cc:818 msgid "No timespan has been selected!" @@ -690,26 +559,16 @@ msgid "" "configuration" msgstr "" -#: file_source.cc:198 session_state.cc:2891 +#: file_source.cc:198 session_state.cc:2807 msgid "" "there are already 1000 files with names like %1; versioning discontinued" msgstr "" "ci sono gia' 1000 file con nomi come %1; tracciamento di versione interrotto" -#: file_source.cc:207 -#, fuzzy -msgid "cannot rename file source from %1 to %2 (%3)" -msgstr "impossibile rinominare file audio sorgente da %1 a %2 (%3)" - #: file_source.cc:250 file_source.cc:378 msgid "FileSource: search path not set" msgstr "FileSource: percorso di ricerca non specificato" -#: file_source.cc:313 file_source.cc:448 -#, fuzzy -msgid "Filesource: cannot find required file (%1): while searching %2" -msgstr "FileSource: impossibile trovare il file richiesto (%1): %2" - #: file_source.cc:440 msgid "" "FileSource: \"%1\" is ambigous when searching %2\n" @@ -732,15 +591,9 @@ msgid "" "continue working, but please report this to the developers." msgstr "" -#: file_source.cc:540 -#, fuzzy -msgid "cannot rename file %1 to %2 (%3)" -msgstr "impossibile eliminare il peakfile %1 per %2 (%3)" - #: filesystem_paths.cc:73 -#, fuzzy msgid "Cannot create Configuration directory %1 - cannot run" -msgstr "impossibile creare la cartella sounds \"%1\"; ignorato" +msgstr "" #: filesystem_paths.cc:78 msgid "" @@ -761,20 +614,12 @@ msgid "ARDOUR_DATA_PATH not set in environment - exiting\n" msgstr "" #: filter.cc:66 -#, fuzzy msgid "filter: error creating name for new file based on %1" msgstr "" -"audiofilter: errore nel creare il nome per il nuovo file audio basato su %1" #: filter.cc:78 -#, fuzzy msgid "filter: error creating new file %1 (%2)" -msgstr "audiofilter: errore nel creare un nuovo file audio %1 (%2)" - -#: find_session.cc:51 -#, fuzzy -msgid "Could not resolve path: %1 (%2)" -msgstr "impossibile controllare il percorso %1 (%2)" +msgstr "" #: find_session.cc:63 msgid "cannot check session path %1 (%2)" @@ -785,9 +630,8 @@ msgid "cannot check statefile %1 (%2)" msgstr "impossibile controllare il file di stato %1 (%2)" #: find_session.cc:125 -#, fuzzy msgid "%1 is not a snapshot file" -msgstr "%1 non è un file di istantanea di Ardour" +msgstr "" #: find_session.cc:142 msgid "cannot determine current working directory (%1)" @@ -797,28 +641,25 @@ msgstr "impossibile determinare la cartella di lavoro corrente (%1)" msgid "unknown file type for session %1" msgstr "tipo di fle sconosciuto per la sessione %1" -#: globals.cc:205 +#: globals.cc:207 msgid "Could not set system open files limit to \"unlimited\"" msgstr "" -#: globals.cc:207 -#, fuzzy +#: globals.cc:209 msgid "Could not set system open files limit to %1" -msgstr "Esportazione: impossibile scrivere dati sul file di output (%1)" +msgstr "" -#: globals.cc:211 +#: globals.cc:213 msgid "Your system is configured to limit %1 to only %2 open files" msgstr "" -#: globals.cc:215 -#, fuzzy +#: globals.cc:217 msgid "Could not get system open files limit (%1)" -msgstr "IO: impossibile registrare la porta %1" +msgstr "" -#: globals.cc:266 -#, fuzzy +#: globals.cc:268 msgid "Loading configuration" -msgstr "Ardour: impossibile la lettura del file di configurazione \"%1\"" +msgstr "" #: import.cc:207 msgid "Could not find a source for %1 even though we are updating this file!" @@ -848,11 +689,6 @@ msgstr "" msgid "Import: cannot open input sound file \"%1\"" msgstr "Import: impossibile aprire il file audio di input \"%1\"" -#: import.cc:510 -#, fuzzy -msgid "Import: error opening MIDI file" -msgstr "Import: errore nel resampling deil file audio \"%1\"" - #: import.cc:549 msgid "Loading MIDI file %1" msgstr "" @@ -873,11 +709,6 @@ msgstr "" msgid "%1 - cannot find any track/bus with the ID %2 to connect to" msgstr "" -#: io.cc:208 -#, fuzzy -msgid "IO: cannot disconnect port %1 from %2" -msgstr "IO: impossibile disconnettere la porta d'entrata %1 da %2" - #: io.cc:343 io.cc:428 msgid "IO: cannot register input port %1" msgstr "IO: impossibile registrare la porta %1" @@ -895,9 +726,8 @@ msgid "in" msgstr "" #: io.cc:706 -#, fuzzy msgid "out" -msgstr "taglia" +msgstr "" #: io.cc:707 msgid "input" @@ -908,9 +738,8 @@ msgid "output" msgstr "" #: io.cc:717 -#, fuzzy msgid "Unknown bundle \"%1\" listed for %2 of %3" -msgstr "Connessione sconosciuta \"%1\" come input di %2" +msgstr "" #: io.cc:783 msgid "Bundle %1 was not available - \"%2\" used instead" @@ -940,47 +769,47 @@ msgstr "IO: stringa mal formata nel nodo XML per le uscite \"%1\"" msgid "IO: bad output string in XML node \"%1\"" msgstr "IO: stringa mal formata nel nodo XML \"%1\"" -#: io.cc:1410 +#: io.cc:1411 #, c-format msgid "%s %u" msgstr "" -#: io.cc:1457 +#: io.cc:1458 #, c-format msgid "%s in" msgstr "" -#: io.cc:1459 +#: io.cc:1460 #, c-format msgid "%s out" msgstr "" -#: io.cc:1534 session.cc:494 session.cc:523 +#: io.cc:1535 session.cc:685 session.cc:714 msgid "mono" msgstr "" -#: io.cc:1536 session.cc:507 session.cc:537 +#: io.cc:1537 session.cc:698 session.cc:728 msgid "L" msgstr "" -#: io.cc:1536 session.cc:509 session.cc:539 +#: io.cc:1537 session.cc:700 session.cc:730 msgid "R" msgstr "" -#: io.cc:1538 io.cc:1544 +#: io.cc:1539 io.cc:1545 #, c-format msgid "%d" msgstr "" -#: ladspa_plugin.cc:88 +#: ladspa_plugin.cc:86 msgid "LADSPA: module has no descriptor function." msgstr "LADSPA: il modulo non ha alcuna funzione descriptor." -#: ladspa_plugin.cc:93 +#: ladspa_plugin.cc:91 msgid "LADSPA: plugin has gone away since discovery!" msgstr "LADSPA: il plugin è stato rimosso" -#: ladspa_plugin.cc:100 +#: ladspa_plugin.cc:98 msgid "LADSPA: \"%1\" cannot be used, since it cannot do inplace processing" msgstr "" @@ -1006,11 +835,6 @@ msgstr "" msgid "LADSPA: cannot load module from \"%1\"" msgstr "LADPSA: impossibile caricare il modulo da \"%1\"" -#: ladspa_plugin.cc:827 -#, fuzzy -msgid "Could not locate HOME. Preset not removed." -msgstr "impossibile localizzare HOME. Preset non salvato." - #: ladspa_plugin.cc:864 ladspa_plugin.cc:870 msgid "Could not create %1. Preset not saved. (%2)" msgstr "Impossibile creare %1 . Preset non salvato. (%2)" @@ -1031,11 +855,6 @@ msgstr "" msgid "incorrect XML node passed to Location::set_state" msgstr "" -#: location.cc:455 -#, fuzzy -msgid "XML node for Location has no ID information" -msgstr "il nodo XML per la Location non ha informazioni sulla fine" - #: location.cc:459 msgid "XML node for Location has no name information" msgstr "il nodo XML per la Location non ha informazioni sul nome" @@ -1060,7 +879,7 @@ msgstr "" msgid "incorrect XML mode passed to Locations::set_state" msgstr "" -#: location.cc:842 session.cc:4362 session_state.cc:1114 +#: location.cc:842 session.cc:4510 session_state.cc:1031 msgid "session" msgstr "" @@ -1125,39 +944,24 @@ msgid "" msgstr "" #: midi_diskstream.cc:219 -#, fuzzy msgid "MidiDiskstream: Playlist \"%1\" isn't a midi playlist" -msgstr "DiskStream %1: impossibile leggere %2 dalla playlista al frame %3" +msgstr "" #: midi_diskstream.cc:270 -#, fuzzy msgid "MidiDiskstream %1: there is no existing playlist to make a copy of!" -msgstr "DiskStream %1: non esiste alcuna playlist di cui fare una copia!" +msgstr "" #: midi_diskstream.cc:699 -#, fuzzy msgid "MidiDiskstream %1: cannot read %2 from playlist at frame %3" -msgstr "DiskStream %1: impossibile leggere %2 dalla playlista al frame %3" +msgstr "" #: midi_diskstream.cc:834 -#, fuzzy msgid "MidiDiskstream %1: cannot write to disk" -msgstr "DiskStream %1: impossibile scrivere sul disco" +msgstr "" #: midi_diskstream.cc:868 -#, fuzzy msgid "MidiDiskstream \"%1\": cannot flush captured data to disk!" -msgstr "DiskStream \"%1\": impossibile scaricare i dati acquisiti sul disco!" - -#: midi_diskstream.cc:955 -#, fuzzy -msgid "%1: could not create region for complete midi file" -msgstr "%1: impossibile creare una regione per il file audio completo" - -#: midi_diskstream.cc:992 -#, fuzzy -msgid "MidiDiskstream: could not create region for captured midi!" -msgstr "DiskStream: impossibile creare una regione per l'audio registrato!" +msgstr "" #: midi_model.cc:634 msgid "No NoteID found for note property change - ignored" @@ -1231,21 +1035,21 @@ msgstr "" msgid "solo control" msgstr "" -#: mtc_slave.cc:235 +#: mtc_slave.cc:238 msgid "MTC Slave: atomic read of current time failed, sleeping!" msgstr "" -#: mtc_slave.cc:359 +#: mtc_slave.cc:361 msgid "" "Unknown rate/drop value %1 in incoming MTC stream, session values used " "instead" msgstr "" -#: mtc_slave.cc:379 +#: mtc_slave.cc:381 msgid "Session framerate adjusted from %1 TO: MTC's %2." msgstr "" -#: mtc_slave.cc:393 +#: mtc_slave.cc:395 msgid "Session and MTC framerate mismatch: MTC:%1 %2:%3." msgstr "" @@ -1258,50 +1062,44 @@ msgid "paste" msgstr "incolla" #: operations.cc:26 -#, fuzzy msgid "duplicate region" -msgstr "sostituisci la regione" +msgstr "" #: operations.cc:27 msgid "insert file" msgstr "" #: operations.cc:28 -#, fuzzy msgid "insert region" -msgstr "costruzione della regione" +msgstr "" #: operations.cc:29 msgid "drag region brush" msgstr "" #: operations.cc:30 -#, fuzzy msgid "region drag" -msgstr "aggiungi regione" +msgstr "" #: operations.cc:31 msgid "selection grab" msgstr "" #: operations.cc:32 -#, fuzzy msgid "region fill" -msgstr "aggiungi regione" +msgstr "" #: operations.cc:33 msgid "fill selection" msgstr "" #: operations.cc:34 -#, fuzzy msgid "create region" -msgstr "sostituisci la regione" +msgstr "" #: operations.cc:35 -#, fuzzy msgid "region copy" -msgstr "aggiungi regione" +msgstr "" #: operations.cc:36 msgid "fixed time region copy" @@ -1315,43 +1113,22 @@ msgstr "" msgid "looking for panners in %1" msgstr "" -#: panner_manager.cc:99 +#: panner_manager.cc:100 msgid "Panner discovered: \"%1\" in %2" msgstr "" -#: panner_manager.cc:116 -#, fuzzy -msgid "PannerManager: cannot load module \"%1\" (%2)" -msgstr "LADSPA: impossibile caricare il modulo \"%1\" (%2)" - -#: panner_manager.cc:123 -#, fuzzy -msgid "PannerManager: module \"%1\" has no descriptor function." -msgstr "LADSPA: il modulo \"%1\" non ha alcuna funzione descriptor." - -#: panner_manager.cc:186 +#: panner_manager.cc:187 msgid "no panner discovered for in/out = %1/%2" msgstr "" #: panner_shell.cc:179 -#, fuzzy msgid "Unknown panner plugin \"%1\" found in pan state - ignored" -msgstr "Nodo sconosciuto \"%1\" trovato in Connections list dal file di stato" - -#: panner_shell.cc:185 -#, fuzzy -msgid "panner plugin node has no type information!" -msgstr "il nodo XML per la Location non ha informazioni sulla fine" +msgstr "" #: playlist.cc:2070 msgid "region state node has no ID, ignored" msgstr "" -#: playlist.cc:2088 -#, fuzzy -msgid "Playlist: cannot create region from XML" -msgstr "Playlist: impossibile creare la Regione dal file di stato" - #: playlist_source.cc:99 msgid "No playlist ID in PlaylistSource XML!" msgstr "" @@ -1377,9 +1154,8 @@ msgid "programming error: " msgstr "errore di programmazione: " #: plugin_insert.cc:926 -#, fuzzy msgid "XML node describing plugin is missing the `type' field" -msgstr "Il nodo XML descrivente l'insert manca del campo `type'" +msgstr "" #: plugin_insert.cc:941 msgid "unknown plugin type %1 in plugin insert state" @@ -1410,14 +1186,12 @@ msgid "PluginInsert: automatable control %1 not found - ignored" msgstr "" #: plugin_manager.cc:161 -#, fuzzy msgid "Discovering Plugins" -msgstr "conversione dell'audio" +msgstr "" #: plugin_manager.cc:335 -#, fuzzy msgid "Could not parse rdf file: %1" -msgstr "IO: impossibile registrare la porta %1" +msgstr "" #: plugin_manager.cc:374 msgid "LADSPA: cannot load module \"%1\" (%2)" @@ -1444,32 +1218,49 @@ msgid "unknown plugin status type \"%1\" - all entries ignored" msgstr "" #: plugin_manager.cc:887 -#, fuzzy msgid "unknown plugin type \"%1\" - ignored" -msgstr "Nodo sconosciuto \"%1\" trovato in Connections list dal file di stato" - -#: port.cc:367 -msgid "get_connected_latency_range() called while disconnected from JACK" msgstr "" -#: port.cc:450 -#, fuzzy +#: port.cc:410 msgid "could not reregister %1" -msgstr "Esportazione: impossibile scrivere dati sul file di output (%1)" +msgstr "" #: port_insert.cc:43 msgid "insert %1" msgstr "" #: port_insert.cc:198 -#, fuzzy msgid "XML node describing port insert is missing the `type' field" -msgstr "Il nodo XML descrivente l'insert manca del campo `type'" +msgstr "" #: port_insert.cc:203 msgid "non-port insert XML used for port plugin insert" msgstr "insert non-port XML usato per insert di plugin di porta" +#: port_manager.cc:270 +msgid "" +"a port with the name \"%1\" already exists: check for duplicated track/bus " +"names" +msgstr "" + +#: port_manager.cc:272 +msgid "" +"No more ports are available. You will need to stop %1 and restart with more " +"ports if you need this many tracks." +msgstr "" + +#: port_manager.cc:314 +msgid "unable to create port: %1" +msgstr "" + +#: port_manager.cc:401 +msgid "AudioEngine: cannot connect %1 (%2) to %3 (%4)" +msgstr "" + +#: port_manager.cc:453 port_manager.cc:454 +msgid "Re-establising port %1 failed" +msgstr "" + #: processor.cc:207 msgid "No %1 property flag in element %2" msgstr "" @@ -1478,60 +1269,35 @@ msgstr "" msgid "No child node with active property" msgstr "" -#: rc_configuration.cc:93 -#, fuzzy +#: rc_configuration.cc:88 msgid "Loading system configuration file %1" msgstr "" -"Ardour: impossibile leggere il file di configurazione di sistema \"%1\"" #: rc_configuration.cc:97 -#, fuzzy -msgid "%1: cannot read system configuration file \"%2\"" -msgstr "" -"Ardour: impossibile leggere il file di configurazione di sistema \"%1\"" - -#: rc_configuration.cc:102 -#, fuzzy msgid "%1: system configuration file \"%2\" not loaded successfully." msgstr "" -"Ardour: il file di configurazione di sistema \"%1\" non stato caricato con " -"successo" -#: rc_configuration.cc:106 +#: rc_configuration.cc:101 msgid "" "Your system %1 configuration file is empty. This probably means that there " "was an error installing %1" msgstr "" -#: rc_configuration.cc:121 -#, fuzzy +#: rc_configuration.cc:116 msgid "Loading user configuration file %1" -msgstr "Ardour: impossibile la lettura del file di configurazione \"%1\"" +msgstr "" #: rc_configuration.cc:125 -#, fuzzy -msgid "%1: cannot read configuration file \"%2\"" -msgstr "Ardour: impossibile la lettura del file di configurazione \"%1\"" - -#: rc_configuration.cc:130 -#, fuzzy msgid "%1: user configuration file \"%2\" not loaded successfully." msgstr "" -"Ardour: il file di configurazione \"%1\" non stato caricato con successo" -#: rc_configuration.cc:134 +#: rc_configuration.cc:129 msgid "your %1 configuration file is empty. This is not normal." msgstr "" -#: rc_configuration.cc:151 -#, fuzzy +#: rc_configuration.cc:146 msgid "Config file %1 not saved" -msgstr "File di configurazione non salvato" - -#: recent_sessions.cc:54 -#, fuzzy -msgid "cannot open recent session file %1 (%2)" -msgstr "impossibile accedere al file di sessione recente %1 (%2)" +msgstr "" #: region_factory.cc:67 region_factory.cc:109 region_factory.cc:150 #: region_factory.cc:192 @@ -1563,36 +1329,33 @@ msgstr "" msgid "return %1" msgstr "" -#: route.cc:1105 route.cc:2581 -#, fuzzy +#: route.cc:1075 route.cc:2528 msgid "unknown Processor type \"%1\"; ignored" -msgstr "impossibile creare la cartella per la sessione %1; ignorato" +msgstr "" -#: route.cc:1117 -#, fuzzy -msgid "processor could not be created. Ignored." -msgstr "Sessione: impossibile creare un nuovo route" - -#: route.cc:2007 route.cc:2234 +#: route.cc:1962 route.cc:2187 msgid "Bad node sent to Route::set_state() [%1]" msgstr "" -#: route.cc:2067 +#: route.cc:2022 msgid "Pannable state found for route (%1) without a panner!" msgstr "" -#: route.cc:2137 route.cc:2141 route.cc:2348 route.cc:2352 +#: route.cc:2096 route.cc:2100 route.cc:2301 route.cc:2305 msgid "badly formed order key string in state file! [%1] ... ignored." msgstr "" +#: route.cc:2311 +msgid "Converting deprecated order key for %1 using Editor order %2" +msgstr "" + #: route_group.cc:459 msgid "You cannot subgroup MIDI tracks at this time" msgstr "" #: rb_effect.cc:233 rb_effect.cc:274 -#, fuzzy msgid "tempoize: error reading data from %1 at %2 (wanted %3, got %4)" -msgstr "tempoize: errore nel leggere dati da %1" +msgstr "" #: rb_effect.cc:303 rb_effect.cc:325 msgid "error writing tempo-adjusted data to %1" @@ -1606,199 +1369,140 @@ msgstr "" msgid "send %1" msgstr "" -#: send.cc:65 -#, fuzzy -msgid "programming error: send created using role %1" -msgstr "errore di programmazione: %1" - -#: session.cc:347 -msgid "Set block size and sample rate" +#: session.cc:343 +msgid "Connect to engine" msgstr "" -#: session.cc:352 -#, fuzzy -msgid "Using configuration" -msgstr "Ardour: impossibile la lettura del file di configurazione \"%1\"" - -#: session.cc:377 -msgid "LTC In" +#: session.cc:348 +msgid "Session loading complete" msgstr "" -#: session.cc:378 -msgid "LTC Out" +#: session.cc:420 +msgid "Set up LTC" msgstr "" -#: session.cc:404 -msgid "LTC-in" +#: session.cc:422 +msgid "Set up Click" msgstr "" -#: session.cc:405 -msgid "LTC-out" -msgstr "" - -#: session.cc:434 -msgid "could not setup Click I/O" -msgstr "impossibile impostare entrata/uscita del click" - -#: session.cc:461 -msgid "cannot setup Click I/O" -msgstr "impossibile impostare entrata/uscita del click" - -#: session.cc:464 -msgid "Compute I/O Latencies" -msgstr "" - -#: session.cc:470 +#: session.cc:424 msgid "Set up standard connections" msgstr "" -#: session.cc:491 +#: session.cc:634 +msgid "could not setup Click I/O" +msgstr "impossibile impostare entrata/uscita del click" + +#: session.cc:682 #, c-format msgid "out %" msgstr "" -#: session.cc:505 +#: session.cc:696 #, c-format msgid "out %+%" msgstr "" -#: session.cc:520 +#: session.cc:711 #, c-format msgid "in %" msgstr "" -#: session.cc:534 +#: session.cc:725 #, c-format msgid "in %+%" msgstr "" -#: session.cc:570 -msgid "Setup signal flow and plugins" -msgstr "" - -#: session.cc:614 -msgid "Connect to engine" -msgstr "" - -#: session.cc:645 -#, fuzzy -msgid "cannot connect master output %1 to %2" -msgstr "IO: impossibile registrare la porta %1" - -#: session.cc:704 +#: session.cc:848 msgid "monitor" msgstr "" -#: session.cc:749 -#, fuzzy -msgid "cannot connect control input %1 to %2" -msgstr "impossibile impostare entrata/uscita del click" - -#: session.cc:769 +#: session.cc:913 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "" -#: session.cc:800 -#, fuzzy -msgid "cannot connect control output %1 to %2" -msgstr "IO: impossibile disconnettere la porta d'uscita %1 da %2" - -#: session.cc:864 +#: session.cc:1008 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "impossibile creare l'Auditioner" -#: session.cc:1043 +#: session.cc:1192 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" "Sessione: non si può usare quella location per l'auto punch (inizio <= fine)" -#: session.cc:1083 +#: session.cc:1232 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" msgstr "" -#: session.cc:1396 +#: session.cc:1546 msgid "feedback loop setup between %1 and %2" msgstr "" -#: session.cc:1692 -#, fuzzy -msgid "Session: could not create new midi track." -msgstr "Sessione: impossibile creare una nuova traccia audio" +#: session.cc:1848 +msgid "" +"No more JACK ports are available. You will need to stop %1 and restart JACK " +"with more ports if you need this many tracks." +msgstr "" -#: session.cc:1875 session.cc:1878 +#: session.cc:2025 session.cc:2028 msgid "Audio" msgstr "" -#: session.cc:1902 session.cc:1910 session.cc:1987 session.cc:1995 +#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "" -#: session.cc:1933 +#: session.cc:2083 msgid "Session: could not create new audio track." msgstr "Sessione: impossibile creare una nuova traccia audio" -#: session.cc:1965 session.cc:1968 +#: session.cc:2115 session.cc:2118 msgid "Bus" msgstr "" -#: session.cc:2018 -#, fuzzy -msgid "Session: could not create new audio route." -msgstr "Sessione: impossibile creare un nuovo route" - -#: session.cc:2077 session.cc:2087 +#: session.cc:2227 session.cc:2237 msgid "Session: UINT_MAX routes? impossible!" msgstr "" -#: session.cc:2109 -#, fuzzy -msgid "Session: cannot create track/bus from template description" -msgstr "Sessione: impossibile creare Source dalla descrizione XML" - -#: session.cc:2135 -#, fuzzy -msgid "Session: could not create new route from template" -msgstr "Sessione: impossibile creare un nuovo route" - -#: session.cc:2164 +#: session.cc:2314 msgid "Adding new tracks/busses failed" msgstr "" -#: session.cc:3265 +#: session.cc:3413 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "" -#: session.cc:3385 session.cc:3443 +#: session.cc:3533 session.cc:3591 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "Ci sono già %1 registrazioni per %2, che io considero troppe" -#: session.cc:3833 +#: session.cc:3981 msgid "send ID %1 appears to be in use already" msgstr "" -#: session.cc:3845 +#: session.cc:3993 msgid "aux send ID %1 appears to be in use already" msgstr "" -#: session.cc:3857 +#: session.cc:4005 msgid "return ID %1 appears to be in use already" msgstr "" -#: session.cc:3869 +#: session.cc:4017 msgid "insert ID %1 appears to be in use already" msgstr "" -#: session.cc:3996 +#: session.cc:4144 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "" -#: session.cc:4025 +#: session.cc:4173 msgid "too many bounced versions of playlist \"%1\"" msgstr "" -#: session.cc:4035 +#: session.cc:4183 msgid "cannot create new audio file \"%1\" for %2" msgstr "impossibile creare un nuovo file audio \"%1\" per %2" @@ -1825,11 +1529,6 @@ msgid "" "= %2" msgstr "" -#: session_directory.cc:59 -#, fuzzy -msgid "Cannot create Session directory at path %1 Error: %2" -msgstr "impossibile creare la cartella per la sessione %1; ignorato" - #: session_directory.cc:76 msgid "Session subdirectory does not exist at path %1" msgstr "" @@ -1838,11 +1537,11 @@ msgstr "" msgid "Session: cannot have two events of type %1 at the same frame (%2)." msgstr "" -#: session_export.cc:126 +#: session_export.cc:125 msgid "%1: cannot seek to %2 for export" msgstr "" -#: session_export.cc:183 +#: session_export.cc:182 msgid "Export ended unexpectedly: %1" msgstr "" @@ -1852,10 +1551,6 @@ msgid "" "of this session." msgstr "" -#: session_midi.cc:428 -msgid "Session: could not send full MIDI time code" -msgstr "" - #: session_midi.cc:520 msgid "Session: cannot send quarter-frame MTC message (%1)" msgstr "" @@ -1864,432 +1559,269 @@ msgstr "" msgid "Session: cannot create Playlist from XML description." msgstr "Sessione: impossibile creare Playlist dalla descrizione XML" -#: session_process.cc:133 +#: session_process.cc:132 msgid "Session: error in no roll for %1" msgstr "" -#: session_process.cc:1158 +#: session_process.cc:1157 msgid "Programming error: illegal event type in process_event (%1)" msgstr "" -#: session_state.cc:139 -#, fuzzy -msgid "Could not use path %1 (%2)" -msgstr "impossibile controllare il percorso %1 (%2)" - -#: session_state.cc:267 +#: session_state.cc:184 msgid "solo cut control (dB)" msgstr "" -#: session_state.cc:360 +#: session_state.cc:208 +msgid "Set block size and sample rate" +msgstr "" + +#: session_state.cc:213 +msgid "Using configuration" +msgstr "" + +#: session_state.cc:325 msgid "Reset Remote Controls" msgstr "" -#: session_state.cc:385 -msgid "Session loading complete" -msgstr "" - -#: session_state.cc:452 -#, fuzzy -msgid "Session: cannot create session peakfile folder \"%1\" (%2)" -msgstr "Sessione: impossibile creare la cartella per la sessione \"%1\" (%2)" - -#: session_state.cc:459 +#: session_state.cc:424 msgid "Session: cannot create session sounds dir \"%1\" (%2)" msgstr "" "Sessione: impossibile creare la cartella sounds per la sessione \"%1\" (%2)" -#: session_state.cc:466 -#, fuzzy -msgid "Session: cannot create session midi dir \"%1\" (%2)" -msgstr "Sessione: impossibile creare la cartella per la sessione \"%1\" (%2)" - -#: session_state.cc:473 -#, fuzzy -msgid "Session: cannot create session dead sounds folder \"%1\" (%2)" -msgstr "" -"Sessione: impossibile creare la cartella sounds per la sessione \"%1\" (%2)" - -#: session_state.cc:480 -#, fuzzy -msgid "Session: cannot create session export folder \"%1\" (%2)" -msgstr "Sessione: impossibile creare la cartella per la sessione \"%1\" (%2)" - -#: session_state.cc:487 -#, fuzzy -msgid "Session: cannot create session analysis folder \"%1\" (%2)" -msgstr "Sessione: impossibile creare la cartella per la sessione \"%1\" (%2)" - -#: session_state.cc:494 -#, fuzzy -msgid "Session: cannot create session plugins folder \"%1\" (%2)" -msgstr "Sessione: impossibile creare la cartella per la sessione \"%1\" (%2)" - -#: session_state.cc:501 -#, fuzzy -msgid "Session: cannot create session externals folder \"%1\" (%2)" -msgstr "Sessione: impossibile creare la cartella per la sessione \"%1\" (%2)" - -#: session_state.cc:515 -#, fuzzy -msgid "Session: cannot create session folder \"%1\" (%2)" -msgstr "Sessione: impossibile creare la cartella per la sessione \"%1\" (%2)" - -#: session_state.cc:548 -#, fuzzy +#: session_state.cc:514 msgid "Could not open %1 for writing session template" -msgstr "Impossibile accedere a %1 per scrivere il modello di mixaggio" +msgstr "" -#: session_state.cc:554 -#, fuzzy +#: session_state.cc:520 msgid "Could not open session template %1 for reading" -msgstr "Impossibile aprire il modello di mixaggio %1 per leggere" +msgstr "" -#: session_state.cc:573 +#: session_state.cc:539 msgid "master" msgstr "" -#: session_state.cc:636 -#, fuzzy +#: session_state.cc:600 msgid "Could not remove pending capture state at path \"%1\" (%2)" -msgstr "impossibile controllare il percorso %1 (%2)" +msgstr "" -#: session_state.cc:660 -#, fuzzy -msgid "could not rename snapshot %1 to %2 (%3)" -msgstr "impossibile rinominare file audio sorgente da %1 a %2 (%3)" - -#: session_state.cc:688 -#, fuzzy -msgid "Could not remove session file at path \"%1\" (%2)" -msgstr "impossibile controllare il percorso %1 (%2)" - -#: session_state.cc:761 +#: session_state.cc:669 msgid "" "the %1 audio engine is not connected and state saving would lose all I/O " "connections. Session not saved" msgstr "" -#: session_state.cc:812 -#, fuzzy +#: session_state.cc:720 msgid "state could not be saved to %1" -msgstr "stato non salvato" +msgstr "" -#: session_state.cc:814 session_state.cc:825 -#, fuzzy +#: session_state.cc:722 session_state.cc:733 msgid "Could not remove temporary session file at path \"%1\" (%2)" -msgstr "impossibile controllare il percorso %1 (%2)" +msgstr "" -#: session_state.cc:822 -#, fuzzy -msgid "could not rename temporary session file %1 to %2" -msgstr "impossibile rinominare file audio sorgente da %1 a %2 (%3)" - -#: session_state.cc:890 -#, fuzzy +#: session_state.cc:798 msgid "%1: session file \"%2\" doesn't exist!" msgstr "" -"%1: il file di informazioni sullo stato della sessione \"%2\" non esiste!" -#: session_state.cc:902 -#, fuzzy +#: session_state.cc:810 msgid "Could not understand session file %1" -msgstr "IO: impossibile registrare la porta %1" +msgstr "" -#: session_state.cc:911 -#, fuzzy -msgid "Session file %1 is not a session" -msgstr "File di configurazione non salvato" - -#: session_state.cc:1208 +#: session_state.cc:1125 msgid "programming error: Session: incorrect XML node sent to set_state()" msgstr "" -#: session_state.cc:1257 +#: session_state.cc:1179 msgid "Session: XML state has no options section" msgstr "Sessione: il file di stato XML non ha alcuna sezione option" -#: session_state.cc:1262 -#, fuzzy -msgid "Session: XML state has no metadata section" -msgstr "Sessione: il file di stato XML non ha alcuna sezione routes" - -#: session_state.cc:1273 +#: session_state.cc:1195 msgid "Session: XML state has no sources section" msgstr "Sessione: il file di stato XML non ha alcuna sezione sources" -#: session_state.cc:1280 +#: session_state.cc:1202 msgid "Session: XML state has no Tempo Map section" msgstr "Sessione: il file di stato XML non ha alcuna sezione Tempo Map" -#: session_state.cc:1287 +#: session_state.cc:1209 msgid "Session: XML state has no locations section" msgstr "Sessione: il file di stato XML non ha alcuna sezione locations" -#: session_state.cc:1313 +#: session_state.cc:1235 msgid "Session: XML state has no Regions section" msgstr "Sessione: il file di stato XML non ha alcuna sezione Regions" -#: session_state.cc:1320 +#: session_state.cc:1242 msgid "Session: XML state has no playlists section" msgstr "Sessione: il file di stato XML non ha alcuna sezione playlist" -#: session_state.cc:1340 -#, fuzzy -msgid "Session: XML state has no bundles section" -msgstr "Sessione: il file di stato XML non ha alcuna sezione routes" - -#: session_state.cc:1352 +#: session_state.cc:1274 msgid "Session: XML state has no diskstreams section" msgstr "Sessione: il file di stato XML non ha alcuna sezione diskstream" -#: session_state.cc:1360 +#: session_state.cc:1282 msgid "Session: XML state has no routes section" msgstr "Sessione: il file di stato XML non ha alcuna sezione routes" -#: session_state.cc:1372 -#, fuzzy -msgid "Session: XML state has no route groups section" -msgstr "Sessione: il file di stato XML non ha alcuna sezione routes" - -#: session_state.cc:1381 +#: session_state.cc:1303 msgid "Session: XML state has no edit groups section" msgstr "Sessione: il file di stato XML non ha alcuna sezione edit groups" -#: session_state.cc:1388 +#: session_state.cc:1310 msgid "Session: XML state has no mix groups section" msgstr "Sessione: il file di stato XML non ha alcuna sezione mix groups" -#: session_state.cc:1396 -#, fuzzy -msgid "Session: XML state has no click section" -msgstr "Sessione: il file di stato XML non ha alcuna sezione click" - -#: session_state.cc:1444 +#: session_state.cc:1360 msgid "Session: cannot create Route from XML description." msgstr "Sessione: impossibile creare Route dalla descrizione XML" -#: session_state.cc:1448 +#: session_state.cc:1364 msgid "Loaded track/bus %1" msgstr "" -#: session_state.cc:1546 +#: session_state.cc:1462 msgid "Could not find diskstream for route" msgstr "" -#: session_state.cc:1600 +#: session_state.cc:1516 msgid "Session: cannot create Region from XML description." msgstr "Sessione: impossibile creare regione dalla descrizione XML" -#: session_state.cc:1604 -#, fuzzy -msgid "Can not load state for region '%1'" -msgstr "impossibile creare un nuovo nome per la regione \"%1\"" - -#: session_state.cc:1640 +#: session_state.cc:1556 msgid "Regions in compound description not found (ID's %1 and %2): ignored" msgstr "" -#: session_state.cc:1668 +#: session_state.cc:1584 msgid "Nested source has no ID info in session file! (ignored)" msgstr "" -#: session_state.cc:1680 -#, fuzzy -msgid "Cannot reconstruct nested source for region %1" -msgstr "impossibile creare un nuovo nome per la regione \"%1\"" - -#: session_state.cc:1742 -#, fuzzy +#: session_state.cc:1658 msgid "Session: XMLNode describing a AudioRegion is incomplete (no source)" msgstr "" -"Sessione: il nodo XML descrivente una Regione è incompleto (nessun source)" -#: session_state.cc:1750 session_state.cc:1771 session_state.cc:1791 -#, fuzzy +#: session_state.cc:1666 session_state.cc:1687 session_state.cc:1707 msgid "" "Session: XMLNode describing a AudioRegion references an unknown source id =%1" msgstr "" -"Sessione: il nodo XML descrivente una Regione fa riferimento ad un source " -"con id sconosciuto =%1" -#: session_state.cc:1756 session_state.cc:1777 session_state.cc:1797 -#, fuzzy +#: session_state.cc:1672 session_state.cc:1693 session_state.cc:1713 msgid "" "Session: XMLNode describing a AudioRegion references a non-audio source id =" "%1" msgstr "" -"Sessione: il nodo XML descrivente una Regione fa riferimento ad un source " -"con id sconosciuto =%1" -#: session_state.cc:1820 -#, fuzzy +#: session_state.cc:1736 msgid "" "Session: XMLNode describing an AudioRegion is missing some master sources; " "ignored" msgstr "" -"Sessione: il nodo XML descrivente una Regione è incompleto (nessun source)" -#: session_state.cc:1854 -#, fuzzy +#: session_state.cc:1770 msgid "Session: XMLNode describing a MidiRegion is incomplete (no source)" msgstr "" -"Sessione: il nodo XML descrivente una Regione è incompleto (nessun source)" -#: session_state.cc:1862 -#, fuzzy +#: session_state.cc:1778 msgid "" "Session: XMLNode describing a MidiRegion references an unknown source id =%1" msgstr "" -"Sessione: il nodo XML descrivente una Regione fa riferimento ad un source " -"con id sconosciuto =%1" -#: session_state.cc:1868 -#, fuzzy +#: session_state.cc:1784 msgid "" "Session: XMLNode describing a MidiRegion references a non-midi source id =%1" msgstr "" -"Sessione: il nodo XML descrivente una Regione fa riferimento ad un source " -"con id sconosciuto =%1" -#: session_state.cc:1936 +#: session_state.cc:1852 msgid "" "cannot create new file from region name \"%1\" with ident = \"%2\": too many " "existing files with similar names" msgstr "" -#: session_state.cc:1959 +#: session_state.cc:1875 msgid "Session: cannot create Source from XML description." msgstr "Sessione: impossibile creare Source dalla descrizione XML" -#: session_state.cc:1993 +#: session_state.cc:1909 msgid "A sound file is missing. It will be replaced by silence." msgstr "" -#: session_state.cc:2016 -#, fuzzy +#: session_state.cc:1932 msgid "Found a sound file that cannot be used by %1. Talk to the progammers." -msgstr "E' stato trovato un file audio che non può essere usato da Ardour." +msgstr "" -#: session_state.cc:2033 -#, fuzzy -msgid "Could not create templates directory \"%1\" (%2)" -msgstr "Impossibile creare la cartella per i modelli di mixaggio \"%1\" (%2)" - -#: session_state.cc:2046 +#: session_state.cc:1962 msgid "Template \"%1\" already exists - new version not created" msgstr "Il modello \"%1\" esiste già - non è stata creata una nuova versione" -#: session_state.cc:2052 -#, fuzzy -msgid "Could not create directory for Session template\"%1\" (%2)" -msgstr "Impossibile creare la cartella per i modelli di mixaggio \"%1\" (%2)" - -#: session_state.cc:2062 -#, fuzzy +#: session_state.cc:1978 msgid "template not saved" -msgstr "modello di mixaggio non salvato" +msgstr "" -#: session_state.cc:2072 -#, fuzzy -msgid "Could not create directory for Session template plugin state\"%1\" (%2)" -msgstr "Impossibile creare la cartella per i modelli di mixaggio \"%1\" (%2)" - -#: session_state.cc:2267 -#, fuzzy +#: session_state.cc:2183 msgid "Unknown node \"%1\" found in Bundles list from session file" -msgstr "Nodo sconosciuto \"%1\" trovato in Connections list dal file di stato" +msgstr "" -#: session_state.cc:2809 session_state.cc:2815 -#, fuzzy -msgid "Cannot expand path %1 (%2)" -msgstr "impossibile controllare il percorso %1 (%2)" - -#: session_state.cc:2868 -#, fuzzy -msgid "Session: cannot create dead file folder \"%1\" (%2)" -msgstr "Sessione: impossibile creare la cartella per la sessione \"%1\" (%2)" - -#: session_state.cc:2907 -#, fuzzy -msgid "cannot rename unused file source from %1 to %2 (%3)" -msgstr "impossibile rinominare file audio sorgente da %1 a %2 (%3)" - -#: session_state.cc:2925 +#: session_state.cc:2841 msgid "cannot remove peakfile %1 for %2 (%3)" msgstr "impossibile eliminare il peakfile %1 per %2 (%3)" -#: session_state.cc:3227 -#, fuzzy +#: session_state.cc:3143 msgid "could not backup old history file, current history not saved" msgstr "" -"impossibile fare copia di sicurezza del file di stato, stato attuale non " -"salvato" -#: session_state.cc:3240 -#, fuzzy +#: session_state.cc:3156 msgid "history could not be saved to %1" -msgstr "stato non salvato" +msgstr "" -#: session_state.cc:3243 -#, fuzzy +#: session_state.cc:3159 msgid "Could not remove history file at path \"%1\" (%2)" -msgstr "Esportazione: impossibile scrivere dati sul file di output (%1)" +msgstr "" -#: session_state.cc:3247 -#, fuzzy +#: session_state.cc:3163 msgid "could not restore history file from backup %1 (%2)" -msgstr "Esportazione: impossibile scrivere dati sul file di output (%1)" +msgstr "" -#: session_state.cc:3272 +#: session_state.cc:3188 msgid "%1: no history file \"%2\" for this session." msgstr "" -#: session_state.cc:3278 -#, fuzzy +#: session_state.cc:3194 msgid "Could not understand session history file \"%1\"" -msgstr "IO: impossibile registrare la porta %1" +msgstr "" -#: session_state.cc:3320 +#: session_state.cc:3236 msgid "Failed to downcast MidiSource for NoteDiffCommand" msgstr "" -#: session_state.cc:3331 +#: session_state.cc:3247 msgid "Failed to downcast MidiSource for SysExDiffCommand" msgstr "" -#: session_state.cc:3342 +#: session_state.cc:3258 msgid "Failed to downcast MidiSource for PatchChangeDiffCommand" msgstr "" -#: session_state.cc:3350 +#: session_state.cc:3266 msgid "Couldn't figure out how to make a Command out of a %1 XMLNode." msgstr "" -#: session_state.cc:3602 -#, fuzzy -msgid "Session: unknown diskstream type in XML" -msgstr "Sessione: il file di stato XML non ha alcuna sezione diskstream" - -#: session_state.cc:3607 +#: session_state.cc:3507 msgid "Session: could not load diskstream via XML state" msgstr "" -#: session_time.cc:215 -msgid "Unknown JACK transport state %1 in sync callback" +#: session_time.cc:214 +msgid "Unknown transport state %1 in sync callback" msgstr "" -#: session_transport.cc:168 +#: session_transport.cc:167 msgid "Cannot loop - no loop range defined" msgstr "" -#: session_transport.cc:728 +#: session_transport.cc:739 msgid "" "Seamless looping cannot be supported while %1 is using JACK transport.\n" "Recommend changing the configured options" msgstr "" -#: session_transport.cc:1094 +#: session_transport.cc:1105 msgid "" "Global varispeed cannot be supported while %1 is connected to JACK transport " "control" @@ -2311,11 +1843,6 @@ msgstr "" msgid "Skipping event with unordered time %1" msgstr "" -#: smf_source.cc:410 -#, fuzzy -msgid "cannot open MIDI file %1 for write" -msgstr "impossibile creare un nuovo file audio \"%1\" per %2" - #: sndfile_helpers.cc:32 msgid "WAV" msgstr "" @@ -2400,11 +1927,6 @@ msgstr "" msgid "Big-endian (PowerPC)" msgstr "" -#: sndfilesource.cc:201 -#, fuzzy -msgid "SndFileSource: cannot open file \"%1\" for %2 (%3)" -msgstr "SndFileSource: impossibile accedere al file \"%1\" (%2)" - #: sndfilesource.cc:209 msgid "" "SndFileSource: file only contains %1 channels; %2 is invalid as a channel " @@ -2420,29 +1942,22 @@ msgid "" msgstr "" #: sndfilesource.cc:302 -#, fuzzy msgid "could not allocate file %1 for reading." -msgstr "Impossibile aprire il modello di mixaggio %1 per leggere" +msgstr "" #: sndfilesource.cc:337 msgid "SndFileSource: could not seek to frame %1 within %2 (%3)" msgstr "" #: sndfilesource.cc:347 -#, fuzzy msgid "" "SndFileSource: @ %1 could not read %2 within %3 (%4) (len = %5, ret was %6)" -msgstr "FileSource: impossibile aprire \"%1\": (%2)" +msgstr "" #: sndfilesource.cc:391 sndfilesource.cc:420 msgid "attempt to write a non-writable audio file source (%1)" msgstr "" -#: sndfilesource.cc:396 utils.cc:507 utils.cc:531 utils.cc:545 utils.cc:564 -#, fuzzy -msgid "programming error: %1 %2" -msgstr "errore di programmazione: %1" - #: sndfilesource.cc:523 msgid "attempt to flush a non-writable audio file source (%1)" msgstr "" @@ -2469,14 +1984,8 @@ msgid "%1: cannot seek to %2 (libsndfile error: %3)" msgstr "" #: sndfilesource.cc:727 -#, fuzzy msgid "SndFileSource: \"%1\" bad read retval: %2 of %5 (%3: %4)" -msgstr "SndFileSource: impossibile accedere al file \"%1\" (%2)" - -#: sndfilesource.cc:740 sndfilesource.cc:790 sndfilesource.cc:797 -#, fuzzy -msgid "SndFileSource: \"%1\" bad write (%2)" -msgstr "SndFileSource: impossibile accedere al file \"%1\" (%2)" +msgstr "" #: sndfilesource.cc:820 msgid "" @@ -2622,35 +2131,18 @@ msgid "" "Are you sure you want to do this?" msgstr "" -#: user_bundle.cc:47 -#, fuzzy -msgid "Node for Bundle has no \"name\" property" -msgstr "Il nodo per la connessione non possiede l'attributo \"nome\"" - #: user_bundle.cc:59 user_bundle.cc:80 #, c-format msgid "Unknown node \"%s\" in Bundle" msgstr "" -#: user_bundle.cc:64 -#, fuzzy -msgid "Node for Channel has no \"name\" property" -msgstr "Il nodo per la connessione non possiede l'attributo \"nome\"" - #: user_bundle.cc:70 -#, fuzzy msgid "Node for Channel has no \"type\" property" -msgstr "Il nodo per la connessione non possiede l'attributo \"nome\"" - -#: user_bundle.cc:85 -#, fuzzy -msgid "Node for Port has no \"name\" property" -msgstr "Il nodo per la connessione non possiede l'attributo \"nome\"" +msgstr "" #: utils.cc:358 utils.cc:382 -#, fuzzy msgid "Splice" -msgstr "duplica" +msgstr "" #: utils.cc:360 utils.cc:375 msgid "Slide" @@ -2660,24 +2152,19 @@ msgstr "" msgid "Lock" msgstr "" -#: utils.cc:365 -#, fuzzy -msgid "programming error: unknown edit mode string \"%1\"" -msgstr "errore di programmazione: %1" - -#: utils.cc:389 utils.cc:418 +#: utils.cc:389 utils.cc:421 msgid "MIDI Timecode" msgstr "" -#: utils.cc:389 utils.cc:416 +#: utils.cc:389 utils.cc:419 msgid "MTC" msgstr "" -#: utils.cc:393 utils.cc:425 +#: utils.cc:393 utils.cc:428 msgid "MIDI Clock" msgstr "" -#: utils.cc:397 utils.cc:412 utils.cc:432 +#: utils.cc:397 utils.cc:415 utils.cc:435 msgid "JACK" msgstr "" @@ -2685,523 +2172,14 @@ msgstr "" msgid "programming error: unknown sync source string \"%1\"" msgstr "" -#: utils.cc:423 +#: utils.cc:426 msgid "M-Clock" msgstr "" -#: utils.cc:429 +#: utils.cc:432 msgid "LTC" msgstr "" -#: utils.cc:599 +#: utils.cc:602 msgid "programming error: unknown native header format: %1" msgstr "" - -#: utils.cc:614 -#, fuzzy -msgid "cannot open directory %1 (%2)" -msgstr "impossibile accedere al file di sessione recente %1 (%2)" - -#, fuzzy -#~ msgid "MidiDiskstream: XML property channel-mask out of range" -#~ msgstr "DiskStream: canale fuori margine" - -#~ msgid "Session: you can't use a mark for auto loop" -#~ msgstr "Sessione: non si può usare un marcatore per l'auto loop" - -#, fuzzy -#~ msgid "Could not understand ardour file %1" -#~ msgstr "IO: impossibile registrare la porta %1" - -#, fuzzy -#~ msgid "control protocol \"%1\" is not known. Ignored" -#~ msgstr "" -#~ "La porta MIDI \"%1\" non disponibile: nessun controllo MTC possibile" - -#, fuzzy -#~ msgid "old-style crossfade information - no position information" -#~ msgstr "il nodo XML per la Location non ha informazioni sull'inizio" - -#~ msgid "Chunk %1 uses an unknown playlist \"%2\"" -#~ msgstr "Lo spezzone %1 usa una playlist sconosciuta \"%2\"" - -#~ msgid "Chunk %1 contains malformed playlist information" -#~ msgstr "Lo spezzone %1 contiene informazioni sulla playlist mal formate" - -#~ msgid "signal" -#~ msgstr "segnale" - -#, fuzzy -#~ msgid "Template \"%1\" already exists - template not renamed" -#~ msgstr "" -#~ "Il modello \"%1\" esiste già - non è stata creata una nuova versione" - -#~ msgid "Session: cannot create Named Selection from XML description." -#~ msgstr "Sessione: impossibile creare Named Selection dalla descizione XML" - -#, fuzzy -#~ msgid "Unable to create a backup copy of file %1 (%2)" -#~ msgstr "audiofilter: errore nel creare un nuovo file audio %1 (%2)" - -#, fuzzy -#~ msgid "programming error: realpath(%1) failed, errcode %2" -#~ msgstr "errore di programmazione: %1" - -#, fuzzy -#~ msgid "illegal or badly-formed string used for path (%1)" -#~ msgstr "il percorso indicato per il RAID è non valido o malformato" - -#, fuzzy -#~ msgid "path (%1) is ambiguous" -#~ msgstr "il percorso indicato per la ricerca RAID è ambiguo" - -#, fuzzy -#~ msgid "Could not move capture file from %1" -#~ msgstr "Esportazione: impossibile scrivere dati sul file di output (%1)" - -#~ msgid "cannot open click emphasis soundfile %1 (%2)" -#~ msgstr "impossibile accedere al file audio di enfasi per il click %1 (%2)" - -#~ msgid "cannot read data from click emphasis soundfile" -#~ msgstr "impossibile leggere dati dal file audio di enfasi per il click" - -#, fuzzy -#~ msgid "Reset Control Protocols" -#~ msgstr "" -#~ "La porta MIDI \"%1\" non disponibile: nessun controllo MTC possibile" - -#, fuzzy -#~ msgid "Session: cannot create session stub sounds dir \"%1\" (%2)" -#~ msgstr "" -#~ "Sessione: impossibile creare la cartella sounds per la sessione " -#~ "\"%1\" (%2)" - -#, fuzzy -#~ msgid "Session: cannot create session stub midi dir \"%1\" (%2)" -#~ msgstr "" -#~ "Sessione: impossibile creare la cartella sounds per la sessione " -#~ "\"%1\" (%2)" - -#, fuzzy -#~ msgid "Session: XML state has no speakers section - assuming simple stereo" -#~ msgstr "Sessione: il file di stato XML non ha alcuna sezione sources" - -#, fuzzy -#~ msgid "could not allocate file %1" -#~ msgstr "IO: impossibile registrare la porta %1" - -#~ msgid "programming error:" -#~ msgstr "errore di programmazione:" - -#~ msgid "cannot open pan automation file %1 (%2)" -#~ msgstr "impossibile accedere al file dell'automazione pan %1 (%2)" - -#, fuzzy -#~ msgid "AudioDiskstream: Session doesn't know about a Playlist called \"%1\"" -#~ msgstr "DiskStream: La sessione non riconosce la Playlist chiamata \"%1\"" - -#, fuzzy -#~ msgid "%1: cannot create region from pending capture sources" -#~ msgstr "Playlist: impossibile creare la Regione dal file di stato" - -#~ msgid "initial state" -#~ msgstr "stato iniziale" - -#~ msgid "xfade change" -#~ msgstr "cambio dello smorzamento incrociato" - -#~ msgid "region modified" -#~ msgstr "regione modificata" - -#~ msgid "AudioTrack: diskstream \"%1\" not known by session" -#~ msgstr "AudioTrack: diskstream \"%1\" non riconosciuto dalla sessione" - -#~ msgid "cannot activate JACK client" -#~ msgstr "impossibile attivare il client JACK" - -#~ msgid "register audio input port called before engine was started" -#~ msgstr "" -#~ "la richiesta di registrazione di una porta di entrata avvenuta prima " -#~ "dell'avvio dell'applicazione" - -#~ msgid "register audio output port called before engine was started" -#~ msgstr "" -#~ "la richiesta di registrazione di una porta di uscita avvenuta prima " -#~ "dell'avvio dell'applicazione" - -#~ msgid "get_nth_physical called before engine was started" -#~ msgstr "" -#~ "richiesta di get_nth_physical avvenuta prima dell'avvio dell'applicazione" - -#, fuzzy -#~ msgid "get_port_total_latency() called with no JACK client connection" -#~ msgstr "" -#~ "richiesta di get_port_total_latency() avvenuta prima dell'avvio " -#~ "dell'applicazione" - -#~ msgid "get_port_total_latency() called before engine was started" -#~ msgstr "" -#~ "richiesta di get_port_total_latency() avvenuta prima dell'avvio " -#~ "dell'applicazione" - -#, fuzzy -#~ msgid "fade in change" -#~ msgstr "cambio dello smorzamento incrociato" - -#, fuzzy -#~ msgid "envelope change" -#~ msgstr "livello cambiato" - -#, fuzzy -#~ msgid "Error reading from peak request pipe" -#~ msgstr "Errore nel leggere dalla porta MIDI %1" - -#, fuzzy -#~ msgid "AudioSource: could not create peak thread" -#~ msgstr "Sessione: impossibile creare un nuovo route" - -#~ msgid "initial" -#~ msgstr "iniziale" - -#~ msgid "cleared" -#~ msgstr "pulito" - -#~ msgid "added event" -#~ msgstr "aggiunto evento" - -#~ msgid "removed event" -#~ msgstr "rimosso evento" - -#~ msgid "removed multiple events" -#~ msgstr "rimossi molteplici eventi" - -#~ msgid "removed range" -#~ msgstr "rimosso intervallo" - -#~ msgid "cut/copy/clear" -#~ msgstr "taglia/copia/pulisci" - -#~ msgid "copy" -#~ msgstr "copia" - -#~ msgid "ill-formed MIDI port specification in ardour rcfile (ignored)" -#~ msgstr "" -#~ "porta MIDI mal configurata nel file di configurazione di ardour (ignorato)" - -#~ msgid "Node for Connection has no \"connections\" property" -#~ msgstr "Il nodo per la connessione non ha l'attributo \"connessioni\"" - -#, fuzzy -#~ msgid "active changed" -#~ msgstr "livello cambiato" - -#~ msgid "no MIDI ports specified: no MMC or MTC control possible" -#~ msgstr "" -#~ "Nessuna porta MIDI specificata: impossibile alcun controllo MMC o MTC" - -#~ msgid "MIDI port specifications for \"%1\" are not understandable." -#~ msgstr "Le specifiche per la porta MIDI \"%1\" non sono state capite" - -#~ msgid "No MMC control (MIDI port \"%1\" not available)" -#~ msgstr "" -#~ "La porta MIDI \"%1\" non disponibile: nessun controllo MTC possibile" - -#~ msgid "No MTC support (MIDI port \"%1\" not available)" -#~ msgstr "" -#~ "La porta MIDI \"%1\" non disponibile: nessun controllo MTC possibile" - -#, fuzzy -#~ msgid "No MIDI parameter support (MIDI port \"%1\" not available)" -#~ msgstr "" -#~ "La porta MIDI \"%1\" non disponibile: nessun controllo MTC possibile" - -#~ msgid "Import: cannot open converted sound file \"%1\"" -#~ msgstr "Import: impossibile aprire il file audio convertito \"%1\"" - -#~ msgid "" -#~ "Session::import_audiofile: cannot open new file source for channel %1" -#~ msgstr "" -#~ "Session::import_audiofile: impossibile aprire il nuovo file per il canale " -#~ "%1" - -#~ msgid "Import: could not open temp file: %1" -#~ msgstr "Import: impossibile aprire il file audio temporaneo \"%1\"" - -#~ msgid "XML node describing insert is missing the `id' field" -#~ msgstr "Il nodo XML descrivente l'insert manca del campo `id'" - -#~ msgid "XML node describing insert is missing a Redirect node" -#~ msgstr "Il nodo XML descrivente l'insert manca di un nodo Redirect" - -#~ msgid "XML node describing a plugin insert is missing the `%1' information" -#~ msgstr "" -#~ "Il nodo XML descrivente un insert plugin manca della informazione `%1'" - -#, fuzzy -#~ msgid "" -#~ "XML node describing a port automation is missing the `%1' information" -#~ msgstr "" -#~ "Il nodo XML descrivente un insert LADSPA manca della informazione `%1'" - -#~ msgid "PortInsert: cannot add input port" -#~ msgstr "PortInsert: impossibile aggiungere una porta d'entrata" - -#~ msgid "PortInsert: cannot add output port" -#~ msgstr "PortInsert: impossibile aggiungere una porta d'uscita" - -#~ msgid "clear" -#~ msgstr "pulisci" - -#~ msgid "remove" -#~ msgstr "rimuovi" - -#~ msgid "error writing pan automation file (%s)" -#~ msgstr "errore nello scrivere il file per l'automazione pan (%s)" - -#~ msgid "cannot open pan automation file \"%1\" for saving (%s)" -#~ msgstr "" -#~ "impossibile aprire il file dell'automazione pan \"%1\" per salvare (%s)" - -#~ msgid "remove region" -#~ msgstr "rimuovi la regione" - -#~ msgid "separate" -#~ msgstr "separa" - -#~ msgid "split" -#~ msgstr "spezza" - -#~ msgid "nudged" -#~ msgstr "spostato" - -#, fuzzy -#~ msgid "VST: cannot load module from \"%1\"" -#~ msgstr "LADPSA: impossibile caricare il modulo da \"%1\"" - -#, fuzzy -#~ msgid "post" -#~ msgstr "incolla" - -#, fuzzy -#~ msgid "XML node describing a redirect is missing the `active' field" -#~ msgstr "Il nodo XML descrivente l'insert manca del campo `type'" - -#, fuzzy -#~ msgid "active_changed" -#~ msgstr "livello cambiato" - -#, fuzzy -#~ msgid "cannot setup master inputs" -#~ msgstr "IO: impossibile registrare la porta %1" - -#, fuzzy -#~ msgid "cannot set up master outputs" -#~ msgstr "IO: impossibile registrare la porta %1" - -#~ msgid "too many regions with names like %1" -#~ msgstr "troppe regioni con nomi come %1" - -#~ msgid "Export: no output file specified" -#~ msgstr "Esportazione: nessun file di output scpecificato" - -#~ msgid "Export: cannot open output file \"%1\" (%2)" -#~ msgstr "Esportazione: impossibile accedere al fil di output \"%1\" (%2)" - -#~ msgid "cannot initialize sample rate conversion: %1" -#~ msgstr "impossibile avviare la conversione di campionatura: %1" - -#~ msgid "Export: could not write data to output file (%1)" -#~ msgstr "Esportazione: impossibile scrivere dati sul file di output (%1)" - -#~ msgid "Error reading from MIDI port %1" -#~ msgstr "Errore nel leggere dalla porta MIDI %1" - -#, fuzzy -#~ msgid "Session: cannot create session tape dir \"%1\" (%2)" -#~ msgstr "" -#~ "Sessione: impossibile creare la cartella per la sessione \"%1\" (%2)" - -#~ msgid "Session: cannot create session automation dir \"%1\" (%2)" -#~ msgstr "" -#~ "Sessione: impossibile creare la cartella automation per la sessione " -#~ "\"%1\" (%2)" - -#~ msgid "Session already exists. Not overwriting" -#~ msgstr "La sessione esiste già. Non sovrascrivo" - -#~ msgid "Session: XML state has no connections section" -#~ msgstr "Sessione: il file di stato XML non ha alcuna sezione connections" - -#, fuzzy -#~ msgid "cannot create dead sounds directory \"%1\"; ignored" -#~ msgstr "impossibile creare la cartella sounds \"%1\"; ignorato" - -#, fuzzy -#~ msgid "cannot create peak file directory \"%1\"; ignored" -#~ msgstr "impossibile creare la cartella per la sessione %1; ignorato" - -#, fuzzy -#~ msgid "cannot remove dead sound file %1 (%2)" -#~ msgstr "impossibile accedere al file audio per il click %1 (%2)" - -#~ msgid "tempoize: error creating name for new audio file based on %1" -#~ msgstr "" -#~ "tempoize: errore nel creare il nome per il nuovo file audio basato su %1" - -#~ msgid "tempoize: error creating new audio file %1 (%2)" -#~ msgstr "tempoize: errore nel creare un nuovo file audio %1 (%2)" - -#~ msgid "FileSource: cannot get host information for BWF header (%1)" -#~ msgstr "" -#~ "FileSource: impossibile ottenere info sull'host dall'header BWF (%1)" - -#, fuzzy -#~ msgid "cleared history" -#~ msgstr "pulito" - -#, fuzzy -#~ msgid "Error: could not write %1" -#~ msgstr "Esportazione: impossibile scrivere dati sul file di output (%1)" - -#, fuzzy -#~ msgid "add tempo" -#~ msgstr "aggiungi regione" - -#, fuzzy -#~ msgid "replace tempo" -#~ msgstr "sostituisci la regione" - -#, fuzzy -#~ msgid "replaced meter" -#~ msgstr "sostituisci la regione" - -#, fuzzy -#~ msgid "cannot create VST chunk directory: %1" -#~ msgstr "impossibile creare la cartella sounds \"%1\"; ignorato" - -#, fuzzy -#~ msgid "cannot check VST chunk directory: %1" -#~ msgstr "impossibile determinare la cartella di lavoro corrente (%1)" - -#, fuzzy -#~ msgid "" -#~ "CoreAudioSource: file only contains %1 channels; %2 is invalid as a " -#~ "channel number" -#~ msgstr "" -#~ "SndFileSource: il file contiene solo %1 canali; %2 non è valido come " -#~ "numero di canale" - -#~ msgid "FileSource: \"%1\" not found when searching %2 using %3" -#~ msgstr "FileSource: \"%1\" non trovato nel cercare %2 utilizzando %3" - -#~ msgid "FileSource: cannot write header in %1" -#~ msgstr "FileSource: impossibile scrivere header in %1" - -#~ msgid "FileSource: cannot locate chunks in %1" -#~ msgstr "FileSource: impossibile trovare spezzoni in %1" - -#~ msgid "FileSource: cannot read header in %1" -#~ msgstr "FileSource: impossibile leggere header in %1" - -#~ msgid "FileSource: cannot check header in %1" -#~ msgstr "FileSource: impossibile controllare header in %1" - -#, fuzzy -#~ msgid "FileSource: cannot initialize peakfile for %1 as %2" -#~ msgstr "FileSource: impossibile avviare il peakfile per %1" - -#~ msgid "FileSource: cannot seek to end of file" -#~ msgstr "FileSource: impossibile cercare fino alla fine del file" - -#~ msgid "FileSource: cannot read RIFF/WAVE chunk from file" -#~ msgstr "FileSource: impossibile accedere allo spezzone RIFF/WAVE dal file" - -#~ msgid "FileSource %1: not a RIFF/WAVE file" -#~ msgstr "FileSource %1: il file non un file RIFF/WAVE" - -#~ msgid "FileSource: can't read a chunk" -#~ msgstr "FileSource: impossibile accedere ad uno spezzone" - -#~ msgid "FileSource: cannot get user information for BWF header (%1)" -#~ msgstr "FileSource: impossibile otterene info utente dall'header BWF (%1)" - -#~ msgid "FileSource[%1]: cannot update data size: %2" -#~ msgstr "FileSource[%1]: impossibile aggiornare la dimensione dei dati: %2" - -#~ msgid "FileSource: can't find RIFF chunk info" -#~ msgstr "FileSource: impossibile trovare info sullo spezzone RIFF" - -#, fuzzy -#~ msgid "FileSource: can't find RIFX chunk info" -#~ msgstr "FileSource: impossibile trovare info sullo spezzone RIFF" - -#~ msgid "FileSource: can't read RIFF chunk" -#~ msgstr "FileSource: impossibile accedere allo spezzone RIFF" - -#~ msgid "FileSource: can't find format chunk info" -#~ msgstr "FileSource: impossibile trovare info sul formato dello spezzone" - -#~ msgid "FileSource: can't read format chunk" -#~ msgstr "FileSource: impossibile leggere il formato dello spezzone" - -#~ msgid "FileSource: can't find data chunk info" -#~ msgstr "FileSource: impossibile trovare info sui dati dello spezzone" - -#~ msgid "FileSource: can't read data chunk" -#~ msgstr "FileSource: impossibile leggere dati dello spezzone" - -#~ msgid "" -#~ "FileSource: cannot read Broadcast Wave data from existing audio file " -#~ "\"%1\" (%2)" -#~ msgstr "" -#~ "FileSource: impossibile leggere dati Broadcast Wave dal file audio " -#~ "esistente \"%1\" (%2) " - -#~ msgid "" -#~ "FileSource: cannot read Broadcast Wave coding history from audio file " -#~ "\"%1\" (%2)" -#~ msgstr "" -#~ "FileSource: impossibile leggere lo storico del Broadcast Wave dal file " -#~ "audio \"%1\" (%2)" - -#, fuzzy -#~ msgid "" -#~ "FileSource \"%1\" does not use valid sample format.\n" -#~ "This is probably a programming error." -#~ msgstr "" -#~ "FileSource \"%1\" non usa il formato floating point.\n" -#~ "Questo probabilmente un errore di programmazione." - -#~ msgid "FileSource \"%1\" has no \"data\" chunk" -#~ msgstr "FileSource \"%1\" non ha uno spezzone di \"dati\"" - -#~ msgid "" -#~ "%1: data length in header (%2) differs from implicit size in file (%3)" -#~ msgstr "" -#~ "%1: la lunghezza dei dati nell'header (%2) diversa dalla dimensione " -#~ "implicita nel file (%3)" - -#~ msgid "\"%1\" has a sample rate of %2 instead of %3 as used by this session" -#~ msgstr "" -#~ "\"%1\" ha una sample rate di %2 anzicch di %3 come il resto della sessione" - -#~ msgid "FileSource: cannot write WAVE chunk: %1" -#~ msgstr "FileSource: impossibile scrivere lo spezzone WAVE: %1" - -#~ msgid "FileSource: cannot write format chunk: %1" -#~ msgstr "FileSource: impossibile scrivere il formato dello spezzone: %1" - -#, fuzzy -#~ msgid "cannot create feedback request pipe (%1)" -#~ msgstr "Errore nel leggere dalla porta MIDI %1" - -#, fuzzy -#~ msgid "Error reading from feedback request pipe" -#~ msgstr "Errore nel leggere dalla porta MIDI %1" - -#~ msgid "could not create crossfade object in playlist %1" -#~ msgstr "impossibile creare smorzamento incrociato nella playlist %1" - -#, fuzzy -#~ msgid "Could not find a template called %1 in %2" -#~ msgstr "Impossibile aprire il modello di mixaggio %1 per leggere" diff --git a/libs/ardour/po/nn.po b/libs/ardour/po/nn.po index e5c22966c4..41cade21bc 100644 --- a/libs/ardour/po/nn.po +++ b/libs/ardour/po/nn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libardour\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-10-23 19:09+0200\n" "PO-Revision-Date: 2011-09-13 22:43+0100\n" "Last-Translator: Eivind ØdegÃ¥rd \n" "Language-Team: Nynorsk \n" @@ -126,7 +126,7 @@ msgstr "Lydspelelister (ubrukte)" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2465 session.cc:2498 session.cc:3643 +#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "Programmeringsfeil: %1" @@ -195,67 +195,6 @@ msgstr "greier ikkje lasta VAMP-innstikket \"%1\"" msgid "VAMP Plugin \"%1\" could not be loaded" msgstr "VAMP-innstikket \"%1\" vart ikkje lasta" -#: audioengine.cc:186 -msgid "" -"This version of JACK is old - you should upgrade to a newer version that " -"supports jack_port_type_get_buffer_size()" -msgstr "" -"Denne utgÃ¥va av JACK er gamal - du bør oppgradera til ei utgÃ¥ve som støttar " -"jack_port_type_get_buffer_size()" - -#: audioengine.cc:190 -msgid "Connect session to engine" -msgstr "Kople økta til maskin" - -#: audioengine.cc:843 -msgid "" -"a port with the name \"%1\" already exists: check for duplicated track/bus " -"names" -msgstr "" -"ein port med namnet \"%1\" finst frÃ¥ før: sjekk opp dublettar i namn pÃ¥ spor " -"eller bussar" - -#: audioengine.cc:845 session.cc:1698 -#, fuzzy -msgid "" -"No more JACK ports are available. You will need to stop %1 and restart JACK " -"with more ports if you need this many tracks." -msgstr "" -"Det finst ikkje fleire JACK-portar. Du mÃ¥ stoppa %1 og starta JACK pÃ¥ nytt " -"med nok portar viss du treng sÃ¥ mange spor." - -#: audioengine.cc:848 -msgid "AudioEngine: cannot register port \"%1\": %2" -msgstr "AudioEngine: greier ikkje registrera porten \"%1\": %2" - -#: audioengine.cc:878 -msgid "unable to create port: %1" -msgstr "greidde ikkje laga port: %1" - -#: audioengine.cc:932 -msgid "connect called before engine was started" -msgstr "tilkoplinga vart oppkalla frø tenaren starta" - -#: audioengine.cc:958 -msgid "AudioEngine: cannot connect %1 (%2) to %3 (%4)" -msgstr "Lydmaskineri: Klarte ikkje kopla %1 (%2) til %3 (%4)." - -#: audioengine.cc:973 audioengine.cc:1004 -msgid "disconnect called before engine was started" -msgstr "frÃ¥koplinga vart oppkalla før tenaren starta" - -#: audioengine.cc:1052 -msgid "get_port_by_name() called before engine was started" -msgstr "get_port_by_name() vart oppkalla før tenaren starta" - -#: audioengine.cc:1104 -msgid "get_ports called before engine was started" -msgstr "get_ports vart oppkalla før tenaren starta" - -#: audioengine.cc:1427 -msgid "failed to connect to JACK" -msgstr "greidde ikkje kopla til JACK" - #: audioregion.cc:1643 msgid "" "You have requested an operation that requires audio analysis.\n" @@ -320,11 +259,6 @@ msgstr "Lydkjelde: kan ikkje opna toppstig (c) \"%1\" (%2)" msgid "%1: could not write peak file data (%2)" msgstr "%1: greidde ikkje skriva toppfildata (%2)" -#: audiosource.cc:924 -#, fuzzy -msgid "could not truncate peakfile %1 to %2 (error: %3)" -msgstr "kan ikkje døypa om %1 til %2 (%3)" - #: auditioner.cc:87 msgid "no outputs available for auditioner - manual connection required" msgstr "ingen utgangar for lyttinga - du mÃ¥ kopla til manuelt" @@ -421,19 +355,13 @@ msgstr "kontrollprotokollnamnet \"%1\" greidde ikkje starta opp" msgid "Instantiating mandatory control protocol %1" msgstr "Lagar obligatorisk kontrollprotokolløkt %1" -#: control_protocol_manager.cc:222 -#, fuzzy -msgid "looking for control protocols in %1\n" -msgstr "ser etter kontrollprotokollar i %1\n" - #: control_protocol_manager.cc:247 msgid "Control protocol %1 not usable" msgstr "Kontrollprotokollen %1 er ikkje brukande" #: control_protocol_manager.cc:264 -#, fuzzy msgid "Control surface protocol discovered: \"%1\"\n" -msgstr "Kontrollflateprotokollen \"%1\" oppdaga" +msgstr "" #: control_protocol_manager.cc:282 msgid "ControlProtocolManager: cannot load module \"%1\" (%2)" @@ -460,7 +388,7 @@ msgstr "finn ikkje prosessor-MHz i /proc/cpuinfo" msgid "audio" msgstr "lyd" -#: data_type.cc:28 session.cc:1640 session.cc:1643 +#: data_type.cc:28 session.cc:1790 session.cc:1793 msgid "MIDI" msgstr "MIDI" @@ -546,24 +474,20 @@ msgid "Session rate" msgstr "Øktrate" #: export_format_specification.cc:537 -#, fuzzy msgid "normalize" -msgstr "normaliser, " +msgstr "" #: export_format_specification.cc:541 -#, fuzzy msgid "trim" -msgstr "tilskjering, " +msgstr "" #: export_format_specification.cc:543 -#, fuzzy msgid "trim start" -msgstr "start tilskjering, " +msgstr "" #: export_format_specification.cc:545 -#, fuzzy msgid "trim end" -msgstr "skjer sluttpunktet, " +msgstr "" #: export_formats.cc:49 msgid "Shaped Noise" @@ -577,7 +501,7 @@ msgstr "Trekant" msgid "Rectangular" msgstr "Firkant" -#: export_formats.cc:52 session.cc:4861 session.cc:4877 +#: export_formats.cc:52 session.cc:5008 session.cc:5024 msgid "None" msgstr "Ingen" @@ -622,9 +546,8 @@ msgid "Editor: cannot open \"%1\" as export file for CD marker file" msgstr "Redigering: greier ikkje opna \"%1\" som eksportfil for CD-markørfil" #: export_handler.cc:417 export_handler.cc:420 -#, fuzzy msgid "an error occured while writing a TOC/CUE file: %1" -msgstr "ompunktinga var mislukka: %1" +msgstr "" #: export_handler.cc:642 export_handler.cc:700 msgid "Cannot convert %1 to Latin-1 text" @@ -634,35 +557,10 @@ msgstr "" msgid "Searching for export formats in %1" msgstr "Leitar etter eksportformat i %1" -#: export_profile_manager.cc:99 -#, fuzzy -msgid "Unable to create export format directory %1: %2" -msgstr "greier ikkje laga øktmappa pÃ¥ stigen %1 : %2" - -#: export_profile_manager.cc:257 -#, fuzzy -msgid "Unable to remove export preset %1: %2" -msgstr "greidde ikkje laga port: %1" - #: export_profile_manager.cc:347 msgid "Selection" msgstr "Val" -#: export_profile_manager.cc:600 -#, fuzzy -msgid "Unable to rename export format %1 to %2: %3" -msgstr "kan ikkje døypa om filkjelda frÃ¥ %1 til %2 (%3)" - -#: export_profile_manager.cc:632 -#, fuzzy -msgid "Unable to remove export profile %1: %2" -msgstr "Greier ikkje laga tryggingskopi av tilstandsfila %1 (%2)" - -#: export_profile_manager.cc:649 -#, fuzzy -msgid "empty format" -msgstr "format" - #: export_profile_manager.cc:818 msgid "No timespan has been selected!" msgstr "Du har ikkje valt noko tidsomfang!" @@ -694,7 +592,7 @@ msgid "" msgstr "" "%1 støttar berre %2 kanalar, men du har %3 kanalar i kanaloppsettet ditt" -#: file_source.cc:198 session_state.cc:2891 +#: file_source.cc:198 session_state.cc:2807 msgid "" "there are already 1000 files with names like %1; versioning discontinued" msgstr "Det er alt 1000 filer med namn som %1, kuttar ut versjonsnamn" @@ -740,11 +638,6 @@ msgstr "" msgid "cannot rename file %1 to %2 (%3)" msgstr "kan ikkje døypa om %1 til %2 (%3)" -#: filesystem_paths.cc:73 -#, fuzzy -msgid "Cannot create Configuration directory %1 - cannot run" -msgstr "greier ikkje laga lydmappa \"%1\", hoppa over" - #: filesystem_paths.cc:78 msgid "" "Configuration directory %1 already exists and is not a directory/folder - " @@ -795,23 +688,23 @@ msgstr "greier ikkje avgjera kva som er arbeidsmappa no (%1)" msgid "unknown file type for session %1" msgstr "ukjend filtype for økta %1" -#: globals.cc:205 +#: globals.cc:207 msgid "Could not set system open files limit to \"unlimited\"" msgstr "Greidde ikkje setja systemgrensa for opne filer til \"uavgrensa\"" -#: globals.cc:207 +#: globals.cc:209 msgid "Could not set system open files limit to %1" msgstr "Greidde ikkje setja grensa for opne systemfiler til %1" -#: globals.cc:211 +#: globals.cc:213 msgid "Your system is configured to limit %1 to only %2 open files" msgstr "" -#: globals.cc:215 +#: globals.cc:217 msgid "Could not get system open files limit (%1)" msgstr "Greidde ikkje fÃ¥ tak i grensa for opne systemfiler (%1)" -#: globals.cc:266 +#: globals.cc:268 msgid "Loading configuration" msgstr "Lastar oppsettet" @@ -837,9 +730,8 @@ msgid "Track %1 of %2 contained no usable MIDI data" msgstr "Spor %1 av %2 inneheld ingen brukbare MIDI-data" #: import.cc:453 -#, fuzzy msgid "MIDI file %1 was not readable (no reason available)" -msgstr "MIDI-fila %1 kan ikkje lesast (og me finn ingen grunn til det" +msgstr "" #: import.cc:499 msgid "Import: cannot open input sound file \"%1\"" @@ -857,11 +749,6 @@ msgstr "Lastar MIDI-fila %1" msgid "Failed to remove some files after failed/cancelled import operation" msgstr "" -#: instrument_info.cc:40 instrument_info.cc:61 -#, fuzzy -msgid "Unknown" -msgstr "ukjend" - #: instrument_info.cc:230 msgid "preset %1 (bank %2)" msgstr "" @@ -934,60 +821,56 @@ msgstr "IU: feilforma streng i XML-punktet for utgangane \"%1\"" msgid "IO: bad output string in XML node \"%1\"" msgstr "IU: feil utgangsstreng i XML-punktet \"%1\"" -#: io.cc:1410 +#: io.cc:1411 #, c-format msgid "%s %u" msgstr "%s %u" -#: io.cc:1457 +#: io.cc:1458 #, c-format msgid "%s in" msgstr " %s inn" -#: io.cc:1459 +#: io.cc:1460 #, c-format msgid "%s out" msgstr "%s ut" -#: io.cc:1534 session.cc:494 session.cc:523 +#: io.cc:1535 session.cc:685 session.cc:714 msgid "mono" msgstr "mono" -#: io.cc:1536 session.cc:507 session.cc:537 +#: io.cc:1537 session.cc:698 session.cc:728 msgid "L" msgstr "V" -#: io.cc:1536 session.cc:509 session.cc:539 +#: io.cc:1537 session.cc:700 session.cc:730 msgid "R" msgstr "H" -#: io.cc:1538 io.cc:1544 +#: io.cc:1539 io.cc:1545 #, c-format msgid "%d" msgstr "%d" -#: ladspa_plugin.cc:88 +#: ladspa_plugin.cc:86 msgid "LADSPA: module has no descriptor function." msgstr "LADSPA: modulen har ingen skildringsfunksjon" -#: ladspa_plugin.cc:93 +#: ladspa_plugin.cc:91 msgid "LADSPA: plugin has gone away since discovery!" msgstr "LADSPA: tilleggsprogrammet har vorte borte sidan det vart oppdaga!" -#: ladspa_plugin.cc:100 +#: ladspa_plugin.cc:98 msgid "LADSPA: \"%1\" cannot be used, since it cannot do inplace processing" msgstr "" "LADSPA: kan ikkje bruka \"%1\", sidan han ikkje kan prosessera pÃ¥ staden" #: ladspa_plugin.cc:297 -#, fuzzy msgid "" "illegal parameter number used with plugin \"%1\". This may indicate a change " "in the plugin design, and presets may be invalid" msgstr "" -"ein ulovleg parameter vart brukt med tilleggsprogrammet \"%1\". Dette kan " -"tyda pÃ¥ feil i korleis tilleggsprogrammet er utforma, og at eventuelle " -"ferdigprogram kan vera ugyldige." #: ladspa_plugin.cc:376 ladspa_plugin.cc:426 msgid "Bad node sent to LadspaPlugin::set_state" @@ -1057,7 +940,7 @@ msgstr "Stader: forsøk pÃ¥ Ã¥ bruka ukjend stad som vald stad" msgid "incorrect XML mode passed to Locations::set_state" msgstr "feil XML-modus send til Locations::set_state" -#: location.cc:842 session.cc:4362 session_state.cc:1114 +#: location.cc:842 session.cc:4510 session_state.cc:1031 msgid "session" msgstr "økt" @@ -1131,11 +1014,6 @@ msgid "" "%1: I/O configuration change %4 requested to use %2, but channel setup is %3" msgstr "%1: I/U-oppsettsendringa %4 ba om Ã¥ bruka %2, men kanaloppsettet er %3" -#: midi_diskstream.cc:219 -#, fuzzy -msgid "MidiDiskstream: Playlist \"%1\" isn't a midi playlist" -msgstr "MIDI-diskstraum: Spelelista \"%1\" er ikkje ei midispeleliste" - #: midi_diskstream.cc:270 msgid "MidiDiskstream %1: there is no existing playlist to make a copy of!" msgstr "MIDI-diskstraum %1: det finst inga speleliste Ã¥ kopiera!" @@ -1232,22 +1110,22 @@ msgstr "polaritetskontroll" msgid "solo control" msgstr "solo kontroll" -#: mtc_slave.cc:235 +#: mtc_slave.cc:238 msgid "MTC Slave: atomic read of current time failed, sleeping!" msgstr "MTC-slave: greidde ikkje lesa gyldig tid. Søv." -#: mtc_slave.cc:359 +#: mtc_slave.cc:361 msgid "" "Unknown rate/drop value %1 in incoming MTC stream, session values used " "instead" msgstr "" "Ukjent rate/sleppverdi %1 i innkomande MTC-straum, bruker øktverdiar i staden" -#: mtc_slave.cc:379 +#: mtc_slave.cc:381 msgid "Session framerate adjusted from %1 TO: MTC's %2." msgstr "" -#: mtc_slave.cc:393 +#: mtc_slave.cc:395 msgid "Session and MTC framerate mismatch: MTC:%1 %2:%3." msgstr "" @@ -1271,11 +1149,6 @@ msgstr "set inn fil" msgid "insert region" msgstr "set inn bolk" -#: operations.cc:29 -#, fuzzy -msgid "drag region brush" -msgstr "dra bolk-børsting" - #: operations.cc:30 msgid "region drag" msgstr "bolkdraging" @@ -1312,20 +1185,15 @@ msgstr "Panoreringa fekk XML-data for %1 - ignorert" msgid "looking for panners in %1" msgstr "ser etter panoreringar i %1" -#: panner_manager.cc:99 -#, fuzzy -msgid "Panner discovered: \"%1\" in %2" -msgstr "Fann panoreringar: \"%1\"" - -#: panner_manager.cc:116 +#: panner_manager.cc:117 msgid "PannerManager: cannot load module \"%1\" (%2)" msgstr "Panoreringsstyring: kan ikkje lasta modulen \"%1\" (%2)" -#: panner_manager.cc:123 +#: panner_manager.cc:124 msgid "PannerManager: module \"%1\" has no descriptor function." msgstr "Panoreringsstyring: modulen \"%1\" har ingen skildringsfunksjon." -#: panner_manager.cc:186 +#: panner_manager.cc:187 msgid "no panner discovered for in/out = %1/%2" msgstr "fann inga panorering for inn/ut = %1/%2" @@ -1356,22 +1224,16 @@ msgid "Could not construct playlist for PlaylistSource from session data!" msgstr "Greidde ikkje byggja speleliste for PlaylistSource frÃ¥ øktdata!" #: plugin.cc:324 -#, fuzzy msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "full version" msgstr "" -"Du kan ikkje lagra førehandsoppsett for AudioUnit i denne versjonen av " -"Ardour. Du bør vurdera Ã¥ betala for ein nyare verjson" #: plugin.cc:398 -#, fuzzy msgid "" "Saving plugin settings is not supported in this build of %1. Consider paying " "for the full version" msgstr "" -"Du kan ikkje lagra AudioUnit-innstillingar i denne versjonen av Ardour. Du " -"bør vurdera Ã¥ betala for ein nyare verjson" #: plugin_insert.cc:598 msgid "programming error: " @@ -1428,22 +1290,16 @@ msgid "LADSPA: module \"%1\" has no descriptor function." msgstr "LADSPA: modulen \"%1\" har ingen skildringsfunksjon." #: plugin_manager.cc:602 -#, fuzzy msgid "" "VST plugin %1 does not support processReplacing, and so cannot be used in %2 " "at this time" msgstr "" -"VST-tilleggsprogrammet %1 støttar ikkje prosessbyte, og kan ikkje brukast i " -"Ardour nett no." #: plugin_manager.cc:709 -#, fuzzy msgid "" "linuxVST plugin %1 does not support processReplacing, and so cannot be used " "in %2 at this time" msgstr "" -"VST-tilleggsprogrammet %1 støttar ikkje prosessbyte, og kan ikkje brukast i " -"Ardour nett no." #: plugin_manager.cc:870 msgid "unknown plugin status type \"%1\" - all entries ignored" @@ -1453,11 +1309,7 @@ msgstr "\"%1\" er ein ukjend utvidingsstatustype, sÃ¥g bort frÃ¥ alt" msgid "unknown plugin type \"%1\" - ignored" msgstr "\"%1\" er ein ukjend innstikktype - hoppa over" -#: port.cc:367 -msgid "get_connected_latency_range() called while disconnected from JACK" -msgstr "get_connected_latency_range() kalla opp dÃ¥ JACK vart frÃ¥kopla" - -#: port.cc:450 +#: port.cc:410 msgid "could not reregister %1" msgstr "greidde ikkje registrera %1." @@ -1474,6 +1326,36 @@ msgid "non-port insert XML used for port plugin insert" msgstr "" "tappingspunkt-XML som ikkje er ein port er brukt for porttilleggstapping" +#: port_manager.cc:270 +msgid "" +"a port with the name \"%1\" already exists: check for duplicated track/bus " +"names" +msgstr "" +"ein port med namnet \"%1\" finst frÃ¥ før: sjekk opp dublettar i namn pÃ¥ spor " +"eller bussar" + +#: port_manager.cc:272 +msgid "" +"No more ports are available. You will need to stop %1 and restart with more " +"ports if you need this many tracks." +msgstr "" + +#: port_manager.cc:275 +msgid "AudioEngine: cannot register port \"%1\": %2" +msgstr "AudioEngine: greier ikkje registrera porten \"%1\": %2" + +#: port_manager.cc:314 +msgid "unable to create port: %1" +msgstr "greidde ikkje laga port: %1" + +#: port_manager.cc:401 +msgid "AudioEngine: cannot connect %1 (%2) to %3 (%4)" +msgstr "Lydmaskineri: Klarte ikkje kopla %1 (%2) til %3 (%4)." + +#: port_manager.cc:453 port_manager.cc:454 +msgid "Re-establising port %1 failed" +msgstr "" + #: processor.cc:207 msgid "No %1 property flag in element %2" msgstr "Ikkje noko %1-eigenskapsflagg i elementet %2" @@ -1482,44 +1364,35 @@ msgstr "Ikkje noko %1-eigenskapsflagg i elementet %2" msgid "No child node with active property" msgstr "Ingen undernode med aktiv eigenskap" -#: rc_configuration.cc:93 +#: rc_configuration.cc:88 msgid "Loading system configuration file %1" msgstr "Lastar systemoppsettfila %1" -#: rc_configuration.cc:97 +#: rc_configuration.cc:92 msgid "%1: cannot read system configuration file \"%2\"" msgstr "%1: greier ikkje lesa systemoppsettfila \"%2\"" -#: rc_configuration.cc:102 +#: rc_configuration.cc:97 msgid "%1: system configuration file \"%2\" not loaded successfully." msgstr "%1: greidde ikkje lasta systemoppsettfila \"%2\" skikkeleg." -#: rc_configuration.cc:106 -#, fuzzy -msgid "" -"Your system %1 configuration file is empty. This probably means that there " -"was an error installing %1" -msgstr "" -"Oppsettsfila for %1 er tom. Dette tyder truleg at det var ein feil dÃ¥ %1 " -"vart installert." - -#: rc_configuration.cc:121 +#: rc_configuration.cc:116 msgid "Loading user configuration file %1" msgstr "Lastar brukaroppsettfila %1" -#: rc_configuration.cc:125 +#: rc_configuration.cc:120 msgid "%1: cannot read configuration file \"%2\"" msgstr "%1: greier ikkje lesa oppsettfila \"%2\"" -#: rc_configuration.cc:130 +#: rc_configuration.cc:125 msgid "%1: user configuration file \"%2\" not loaded successfully." msgstr "%1: greidde ikkje lasta brukaroppsettfila \"%2\" skikkeleg." -#: rc_configuration.cc:134 +#: rc_configuration.cc:129 msgid "your %1 configuration file is empty. This is not normal." msgstr "%1-oppsettsfila di er tom. Dette er ikkje normalt." -#: rc_configuration.cc:151 +#: rc_configuration.cc:146 msgid "Config file %1 not saved" msgstr "Oppsettfila %1 er ikkje lagra" @@ -1559,26 +1432,30 @@ msgstr "Import: src_new()-funkjsonen lukkast ikkje: %1" msgid "return %1" msgstr "retur %1" -#: route.cc:1105 route.cc:2581 +#: route.cc:1075 route.cc:2528 msgid "unknown Processor type \"%1\"; ignored" msgstr "\"%1\" er ein ukjend prosesseringstype, hoppa over" -#: route.cc:1117 +#: route.cc:1087 msgid "processor could not be created. Ignored." msgstr "greidde ikkje laga prosessering. Hoppa over." -#: route.cc:2007 route.cc:2234 +#: route.cc:1962 route.cc:2187 msgid "Bad node sent to Route::set_state() [%1]" msgstr "Feil punkt sendt til Route::set_state()-funksjonen [%1]" -#: route.cc:2067 +#: route.cc:2022 msgid "Pannable state found for route (%1) without a panner!" msgstr "Fann panoreringsstatus for ruta (%1) utan panorering!" -#: route.cc:2137 route.cc:2141 route.cc:2348 route.cc:2352 +#: route.cc:2096 route.cc:2100 route.cc:2301 route.cc:2305 msgid "badly formed order key string in state file! [%1] ... ignored." msgstr "feilforma tingingsnykjelstreng i tilstandsfil! [%1] ... hoppa over." +#: route.cc:2311 +msgid "Converting deprecated order key for %1 using Editor order %2" +msgstr "" + #: route_group.cc:459 msgid "You cannot subgroup MIDI tracks at this time" msgstr "Du kan ikkje laga undergrupper for MIDI-spor no" @@ -1600,193 +1477,165 @@ msgstr "" msgid "send %1" msgstr "send %1" -#: send.cc:65 -#, fuzzy -msgid "programming error: send created using role %1" -msgstr "programmeringsfeil: ukjend redigeringsmodus-streng \"%1\"" +#: session.cc:343 +msgid "Connect to engine" +msgstr "Kople til maskin" -#: session.cc:347 -msgid "Set block size and sample rate" -msgstr "Set blokkstorleik og punktrate" +#: session.cc:348 +msgid "Session loading complete" +msgstr "Ferdig Ã¥ lasta økta." -#: session.cc:352 -msgid "Using configuration" -msgstr "Bruker oppsett" - -#: session.cc:377 -msgid "LTC In" +#: session.cc:420 +msgid "Set up LTC" msgstr "" -#: session.cc:378 -msgid "LTC Out" +#: session.cc:422 +msgid "Set up Click" msgstr "" -#: session.cc:404 -msgid "LTC-in" -msgstr "" - -#: session.cc:405 -msgid "LTC-out" -msgstr "" - -#: session.cc:434 -msgid "could not setup Click I/O" -msgstr "greidde ikkje setja opp klikk-I/U" - -#: session.cc:461 -msgid "cannot setup Click I/O" -msgstr "greier ikkje setja opp klikk-I/U" - -#: session.cc:464 -msgid "Compute I/O Latencies" -msgstr "Rekn ut I/U-seinkingar" - -#: session.cc:470 +#: session.cc:424 msgid "Set up standard connections" msgstr "Set opp standartilkoplingar" -#: session.cc:491 +#: session.cc:634 +msgid "could not setup Click I/O" +msgstr "greidde ikkje setja opp klikk-I/U" + +#: session.cc:682 #, c-format msgid "out %" msgstr "ut %" -#: session.cc:505 +#: session.cc:696 #, c-format msgid "out %+%" msgstr "ut %+%" -#: session.cc:520 +#: session.cc:711 #, c-format msgid "in %" msgstr "inn %" -#: session.cc:534 +#: session.cc:725 #, c-format msgid "in %+%" msgstr "inn %+%" -#: session.cc:570 -msgid "Setup signal flow and plugins" -msgstr "Set opp signalflyt og innstikk" - -#: session.cc:614 -msgid "Connect to engine" -msgstr "Kople til maskin" - -#: session.cc:645 +#: session.cc:789 msgid "cannot connect master output %1 to %2" msgstr "greier ikkje kopla til hovudutgangane %1 til %2" -#: session.cc:704 +#: session.cc:848 msgid "monitor" msgstr "lytting" -#: session.cc:749 +#: session.cc:893 msgid "cannot connect control input %1 to %2" msgstr "greier ikkje kopla til kontrollinngangane %1 til %2" -#: session.cc:769 +#: session.cc:913 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "Greidde ikkje finna føretrekt I/U for lyttebussen (%1)" -#: session.cc:800 +#: session.cc:944 msgid "cannot connect control output %1 to %2" msgstr "greier ikkje kopla til kontrollutgangane %1 til %2" -#: session.cc:864 +#: session.cc:1008 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "greier ikkje laga Lytting: det er ikkje rÃ¥d Ã¥ lytta pÃ¥ nokon bolkar." -#: session.cc:1043 +#: session.cc:1192 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "Økt: du kan ikkje bruka denne staden for autoinnslag (start<=slutt)" -#: session.cc:1083 +#: session.cc:1232 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" msgstr "" -#: session.cc:1396 +#: session.cc:1546 msgid "feedback loop setup between %1 and %2" msgstr "rundgang-lykkjeoppsett mellom %1 og %2" -#: session.cc:1692 +#: session.cc:1842 msgid "Session: could not create new midi track." msgstr "Økt: greidde ikkje laga nytt midispor." -#: session.cc:1875 session.cc:1878 +#: session.cc:1848 +msgid "" +"No more JACK ports are available. You will need to stop %1 and restart JACK " +"with more ports if you need this many tracks." +msgstr "" + +#: session.cc:2025 session.cc:2028 msgid "Audio" msgstr "Lyd" -#: session.cc:1902 session.cc:1910 session.cc:1987 session.cc:1995 +#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "" "greier ikkje stilla inn %1 inn/%2 ut-innstillingane for det nye lydsporet" -#: session.cc:1933 +#: session.cc:2083 msgid "Session: could not create new audio track." msgstr "Økt: greidde ikkje laga nytt lydspor." -#: session.cc:1965 session.cc:1968 +#: session.cc:2115 session.cc:2118 msgid "Bus" msgstr "Buss" -#: session.cc:2018 +#: session.cc:2168 msgid "Session: could not create new audio route." msgstr "Økt: greidde ikkje laga ny lydrute." -#: session.cc:2077 session.cc:2087 +#: session.cc:2227 session.cc:2237 msgid "Session: UINT_MAX routes? impossible!" msgstr "Økt: UINT_MAX-ruter? GÃ¥r ikkje an!" -#: session.cc:2109 +#: session.cc:2259 msgid "Session: cannot create track/bus from template description" msgstr "Økt: greier ikkje laga spor/buss frÃ¥ malskildringa" -#: session.cc:2135 +#: session.cc:2285 msgid "Session: could not create new route from template" msgstr "Økt: greidde ikkje laga ny lydrute frÃ¥ malen" -#: session.cc:2164 +#: session.cc:2314 msgid "Adding new tracks/busses failed" msgstr "" -#: session.cc:3265 +#: session.cc:3413 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "" "ALVORLEG FEIL! Greidde ikkje finna ei høveleg utgÃ¥ve av %1 for Ã¥ døypa om" -#: session.cc:3385 session.cc:3443 +#: session.cc:3533 session.cc:3591 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "Det er alt %1 opptak for %2, og eg synest det er for mange." -#: session.cc:3833 +#: session.cc:3981 msgid "send ID %1 appears to be in use already" msgstr "send-IDen %1 ser ut til Ã¥ vera i bruk frÃ¥ før" -#: session.cc:3845 -#, fuzzy -msgid "aux send ID %1 appears to be in use already" -msgstr "send-IDen %1 ser ut til Ã¥ vera i bruk frÃ¥ før" - -#: session.cc:3857 +#: session.cc:4005 msgid "return ID %1 appears to be in use already" msgstr "retur-IDen %1 ser ut til Ã¥ vera i bruk frÃ¥ før" -#: session.cc:3869 +#: session.cc:4017 msgid "insert ID %1 appears to be in use already" msgstr "send-IDen %2 ser ut til Ã¥ vera i bruk frÃ¥ før" -#: session.cc:3996 +#: session.cc:4144 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "Kan ikkje skriva eit omrÃ¥de der slutten <= starten (td. %1 <= %2)" -#: session.cc:4025 +#: session.cc:4173 msgid "too many bounced versions of playlist \"%1\"" msgstr "for mange samanmiksa versjonar av spelelista \"%1\"" -#: session.cc:4035 +#: session.cc:4183 msgid "cannot create new audio file \"%1\" for %2" msgstr "greier ikkje laga ny lydfil \"%1\" for %2" @@ -1799,10 +1648,8 @@ msgid "cannot read data from click soundfile" msgstr "greier ikkje lesa data frÃ¥ klikklydfila" #: session_command.cc:87 -#, fuzzy msgid "Tried to reconstitute a MementoCommand with no contents, failing. id=%1" msgstr "" -"Prøvde Ã¥ byggja opp att ein memento-kommando utan innhald, og mislukkast. id=" #: session_command.cc:148 msgid "" @@ -1831,11 +1678,11 @@ msgstr "Undermappa for økta finst ikkje i stigen %1" msgid "Session: cannot have two events of type %1 at the same frame (%2)." msgstr "Økt: du kan ikkje ha to handlingar av typen %1 pÃ¥ same ramma (%2)." -#: session_export.cc:126 +#: session_export.cc:125 msgid "%1: cannot seek to %2 for export" msgstr "%1: greier ikkje finna %2 for eksportering" -#: session_export.cc:183 +#: session_export.cc:182 msgid "Export ended unexpectedly: %1" msgstr "" @@ -1845,10 +1692,6 @@ msgid "" "of this session." msgstr "" -#: session_midi.cc:428 -msgid "Session: could not send full MIDI time code" -msgstr "Økt: greidde ikke senda full MIDI-tidskode" - #: session_midi.cc:520 msgid "Session: cannot send quarter-frame MTC message (%1)" msgstr "Økt: greidde ikkje senda kvartramme-MTC-melding (%1)" @@ -1857,97 +1700,75 @@ msgstr "Økt: greidde ikkje senda kvartramme-MTC-melding (%1)" msgid "Session: cannot create Playlist from XML description." msgstr "Økt: greier ikkje laga speleliste ut frÃ¥ XML-skildringa." -#: session_process.cc:133 +#: session_process.cc:132 msgid "Session: error in no roll for %1" msgstr "Økt: feil pÃ¥ ingen rull for %1" -#: session_process.cc:1158 +#: session_process.cc:1157 msgid "Programming error: illegal event type in process_event (%1)" msgstr "Programmeringsfeil: ulovleg handlingstype i process-event (%1)" -#: session_state.cc:139 -#, fuzzy -msgid "Could not use path %1 (%2)" -msgstr "Greidde ikkje bruka stigen %1 (%s)" - -#: session_state.cc:267 +#: session_state.cc:184 msgid "solo cut control (dB)" msgstr "solokutt-kontroll (dB)" -#: session_state.cc:360 +#: session_state.cc:208 +msgid "Set block size and sample rate" +msgstr "Set blokkstorleik og punktrate" + +#: session_state.cc:213 +msgid "Using configuration" +msgstr "Bruker oppsett" + +#: session_state.cc:325 msgid "Reset Remote Controls" msgstr "Still tilbake fjernkontrollar" -#: session_state.cc:385 -msgid "Session loading complete" -msgstr "Ferdig Ã¥ lasta økta." - -#: session_state.cc:452 +#: session_state.cc:417 msgid "Session: cannot create session peakfile folder \"%1\" (%2)" msgstr "Økt: greier ikkje laga mappa \"%1\" for økttoppfiler (%2)" -#: session_state.cc:459 +#: session_state.cc:424 msgid "Session: cannot create session sounds dir \"%1\" (%2)" msgstr "Økt: greier ikkje laga øktmappa \"%1\" for lydfiler (%2)" -#: session_state.cc:466 +#: session_state.cc:431 msgid "Session: cannot create session midi dir \"%1\" (%2)" msgstr "Økt: greier ikkje laga midimappa \"%1\" for økta (%2)" -#: session_state.cc:473 +#: session_state.cc:438 msgid "Session: cannot create session dead sounds folder \"%1\" (%2)" msgstr "Økt: greier ikkje laga mappa \"%1\" for daudlyd (%2)" -#: session_state.cc:480 +#: session_state.cc:445 msgid "Session: cannot create session export folder \"%1\" (%2)" msgstr "Økt: greidde ikkje laga mappa \"%1\" for eksportlyd (%2)" -#: session_state.cc:487 +#: session_state.cc:452 msgid "Session: cannot create session analysis folder \"%1\" (%2)" msgstr "Økt: greidde ikkje laga mappa \"%1\" for øktanalyse (%2)" -#: session_state.cc:494 +#: session_state.cc:459 msgid "Session: cannot create session plugins folder \"%1\" (%2)" msgstr "Økt: greier ikkje laga utvidingmappa \"%1\" for økta (%2)" -#: session_state.cc:501 -#, fuzzy -msgid "Session: cannot create session externals folder \"%1\" (%2)" -msgstr "Økt: greidde ikkje laga mappa \"%1\" for øktanalyse (%2)" - -#: session_state.cc:515 +#: session_state.cc:480 msgid "Session: cannot create session folder \"%1\" (%2)" msgstr "Økt: greidde ikkje laga øktmappa \"%1\" (%2)" -#: session_state.cc:548 -#, fuzzy +#: session_state.cc:514 msgid "Could not open %1 for writing session template" -msgstr "Greidde ikkje opna %1 for Ã¥ skriva miksarmal" +msgstr "" -#: session_state.cc:554 -#, fuzzy -msgid "Could not open session template %1 for reading" -msgstr "Greidde ikkje opna miksarmalen %1 for Ã¥ lesa han" - -#: session_state.cc:573 +#: session_state.cc:539 msgid "master" msgstr "master" -#: session_state.cc:636 -#, fuzzy -msgid "Could not remove pending capture state at path \"%1\" (%2)" -msgstr "Greidde ikkje fjerna opptaksstatusen pÃ¥ stigen \"%1\" (%2)" - -#: session_state.cc:660 +#: session_state.cc:624 msgid "could not rename snapshot %1 to %2 (%3)" msgstr "greidde ikkje døypa om snøggbiletet %1 til %2 (%3)" -#: session_state.cc:688 -#, fuzzy -msgid "Could not remove session file at path \"%1\" (%2)" -msgstr "Greidde ikkje fjerna opptaksstatusen pÃ¥ stigen \"%1\" (%2)" - -#: session_state.cc:761 +#: session_state.cc:669 msgid "" "the %1 audio engine is not connected and state saving would lose all I/O " "connections. Session not saved" @@ -1955,138 +1776,122 @@ msgstr "" "lydmotoren i %1 er ikkje kopla til, og Ã¥ lagra statusen ville kasta bort " "alle I/U-tilkoplingar. Økta er ikkje lagra" -#: session_state.cc:812 +#: session_state.cc:720 msgid "state could not be saved to %1" msgstr "greidde ikkje lagra tilstanden til %1" -#: session_state.cc:814 session_state.cc:825 -#, fuzzy -msgid "Could not remove temporary session file at path \"%1\" (%2)" -msgstr "Greidde ikkje fjerna opptaksstatusen pÃ¥ stigen \"%1\" (%2)" - -#: session_state.cc:822 +#: session_state.cc:730 msgid "could not rename temporary session file %1 to %2" msgstr "greidde ikkje døypa om mellombels øktfil %1 til %2" -#: session_state.cc:890 -#, fuzzy +#: session_state.cc:798 msgid "%1: session file \"%2\" doesn't exist!" -msgstr "%1: tilstandsinformasjonsfila \"%2\" for økta finst ikkje!" +msgstr "" -#: session_state.cc:902 -#, fuzzy -msgid "Could not understand session file %1" -msgstr "Skjønte ikkje økthistoriefila \"%1\"" - -#: session_state.cc:911 +#: session_state.cc:819 msgid "Session file %1 is not a session" msgstr "Øktfila %1 er ikkje ei økt" -#: session_state.cc:1208 +#: session_state.cc:1125 msgid "programming error: Session: incorrect XML node sent to set_state()" msgstr "" "programmeringsfeil: Økt: feil XML-punkt sendt til set_state()-funksjonen" -#: session_state.cc:1257 +#: session_state.cc:1179 msgid "Session: XML state has no options section" msgstr "Økt: XML-tilstandsfila har ikkje noko avsnitt om instillingar" -#: session_state.cc:1262 +#: session_state.cc:1184 msgid "Session: XML state has no metadata section" msgstr "Økt: XML-fila har inga avdeling for metadata" -#: session_state.cc:1273 +#: session_state.cc:1195 msgid "Session: XML state has no sources section" msgstr "Økt: XML-tilstandsfila har ikkje noko avsnitt om kjelder" -#: session_state.cc:1280 +#: session_state.cc:1202 msgid "Session: XML state has no Tempo Map section" msgstr "Økt: XML-fila har ikkje noko avsnitt om tempokart" -#: session_state.cc:1287 +#: session_state.cc:1209 msgid "Session: XML state has no locations section" msgstr "Økt: XML-fila har ikkje noko avsnitt om stader" -#: session_state.cc:1313 +#: session_state.cc:1235 msgid "Session: XML state has no Regions section" msgstr "Økt: XML-tilstandsfila har ikkje noko avsnitt om bolkar" -#: session_state.cc:1320 +#: session_state.cc:1242 msgid "Session: XML state has no playlists section" msgstr "Økt: XML-tilstandsfila har ikkje noko avsnitt om spelelister" -#: session_state.cc:1340 +#: session_state.cc:1262 msgid "Session: XML state has no bundles section" msgstr "Økt: XML-fila har inga avdeling for bundlar" -#: session_state.cc:1352 +#: session_state.cc:1274 msgid "Session: XML state has no diskstreams section" msgstr "Økt: XML-fila har ikkje nok avsnitt om diskstraumar" -#: session_state.cc:1360 +#: session_state.cc:1282 msgid "Session: XML state has no routes section" msgstr "Økt: XML-fila har ikkje noko avsnitt om ruter" -#: session_state.cc:1372 +#: session_state.cc:1294 msgid "Session: XML state has no route groups section" msgstr "Økt: XML-fila har inga avdeling for rutegrupper" -#: session_state.cc:1381 +#: session_state.cc:1303 msgid "Session: XML state has no edit groups section" msgstr "Økt: XML-fila har ikkje noko avsnitt om grupperedigering" -#: session_state.cc:1388 +#: session_state.cc:1310 msgid "Session: XML state has no mix groups section" msgstr "Økt: XML-fila har ikkje noko avsnitt om miksgrupper" -#: session_state.cc:1396 +#: session_state.cc:1318 msgid "Session: XML state has no click section" msgstr "Økt: XML-fila har ikkje noko avsnitt om klikk" -#: session_state.cc:1444 +#: session_state.cc:1360 msgid "Session: cannot create Route from XML description." msgstr "Økt: greier ikkje laga rute ut frÃ¥ XML-skildringa." -#: session_state.cc:1448 +#: session_state.cc:1364 msgid "Loaded track/bus %1" msgstr "Lasta spor/buss %1" -#: session_state.cc:1546 +#: session_state.cc:1462 msgid "Could not find diskstream for route" msgstr "Greidde ikkje finna diskstraumen for rute" -#: session_state.cc:1600 +#: session_state.cc:1516 msgid "Session: cannot create Region from XML description." msgstr "Økt: greier ikkje laga bolkar ut frÃ¥ XML-skildringa." -#: session_state.cc:1604 +#: session_state.cc:1520 msgid "Can not load state for region '%1'" msgstr "Greier ikkje laga status for bolken '%1'" -#: session_state.cc:1640 +#: session_state.cc:1556 msgid "Regions in compound description not found (ID's %1 and %2): ignored" msgstr "Fann ikkje bolkar i samansetjingsstatus (IDar %1 og %2): ignorert" -#: session_state.cc:1668 -#, fuzzy -msgid "Nested source has no ID info in session file! (ignored)" -msgstr "Nøsta kjelde har ingen ID-info i øktstatusfila! (ignorert)" - -#: session_state.cc:1680 +#: session_state.cc:1596 msgid "Cannot reconstruct nested source for region %1" msgstr "Greier ikkje rekonstruera nøsta kjelde for bolken %1" -#: session_state.cc:1742 +#: session_state.cc:1658 msgid "Session: XMLNode describing a AudioRegion is incomplete (no source)" msgstr "Økt: XML-punktet som skildrar ein lydbolk er uferdig (manglar kjelde)" -#: session_state.cc:1750 session_state.cc:1771 session_state.cc:1791 +#: session_state.cc:1666 session_state.cc:1687 session_state.cc:1707 msgid "" "Session: XMLNode describing a AudioRegion references an unknown source id =%1" msgstr "" "Økt: XML-punktet som skildrar ein lydbolk peikar pÃ¥ ein ukjend kjelde-ID = %1" -#: session_state.cc:1756 session_state.cc:1777 session_state.cc:1797 +#: session_state.cc:1672 session_state.cc:1693 session_state.cc:1713 msgid "" "Session: XMLNode describing a AudioRegion references a non-audio source id =" "%1" @@ -2094,7 +1899,7 @@ msgstr "" "Økt: XML-punktet som skildrar ein lydbolk peikar pÃ¥ ein kjelde-ID %1 som " "ikkje er ei lydfil" -#: session_state.cc:1820 +#: session_state.cc:1736 msgid "" "Session: XMLNode describing an AudioRegion is missing some master sources; " "ignored" @@ -2102,25 +1907,25 @@ msgstr "" "Økt: XML-punktet som skildrar ein lydbolk manglar nokre masterkjelder, ser " "bort frÃ¥" -#: session_state.cc:1854 +#: session_state.cc:1770 msgid "Session: XMLNode describing a MidiRegion is incomplete (no source)" msgstr "Økt: XML-punktet som skildrar ein midibolk er uferdig (manglar kjelde)" -#: session_state.cc:1862 +#: session_state.cc:1778 msgid "" "Session: XMLNode describing a MidiRegion references an unknown source id =%1" msgstr "" "Økt: XML-punktet som skildrar ein midibolk peikar pÃ¥ ein ukjend kjelde-ID = " "%1" -#: session_state.cc:1868 +#: session_state.cc:1784 msgid "" "Session: XMLNode describing a MidiRegion references a non-midi source id =%1" msgstr "" "Økt: XML-punktet som skildrar ein midibolk peikar pÃ¥ ein kjelde-ID %1 som " "ikkje er ei midi-fil" -#: session_state.cc:1936 +#: session_state.cc:1852 msgid "" "cannot create new file from region name \"%1\" with ident = \"%2\": too many " "existing files with similar names" @@ -2128,122 +1933,97 @@ msgstr "" "greier ikkje laga ny fil frÃ¥ bolknamn \"%1\" med ident = \"%2\": det finst " "for mange med same namnet" -#: session_state.cc:1959 +#: session_state.cc:1875 msgid "Session: cannot create Source from XML description." msgstr "Økt: greier ikkje laga kjelde ut frÃ¥ XML-skildringa." -#: session_state.cc:1993 +#: session_state.cc:1909 msgid "A sound file is missing. It will be replaced by silence." msgstr "Det manglar ei lydfil. Ho vil bli erstatta med stille." -#: session_state.cc:2016 +#: session_state.cc:1932 msgid "Found a sound file that cannot be used by %1. Talk to the progammers." msgstr "Fann ei lydfil som %1 ikkje kan bruka. Prat med utviklarane." -#: session_state.cc:2033 -#, fuzzy -msgid "Could not create templates directory \"%1\" (%2)" -msgstr "Greidde ikkje laga miksarmalmappa \"%1\" (%2)" - -#: session_state.cc:2046 +#: session_state.cc:1962 msgid "Template \"%1\" already exists - new version not created" msgstr "Malen \"%1\" finst alt - laga ingen ny versjon" -#: session_state.cc:2052 -#, fuzzy -msgid "Could not create directory for Session template\"%1\" (%2)" -msgstr "Greidde ikkje laga miksarmalmappa \"%1\" (%2)" - -#: session_state.cc:2062 +#: session_state.cc:1978 msgid "template not saved" msgstr "malen vart ikkje lagra" -#: session_state.cc:2072 -#, fuzzy -msgid "Could not create directory for Session template plugin state\"%1\" (%2)" -msgstr "Greidde ikkje laga miksarmalmappa \"%1\" (%2)" - -#: session_state.cc:2267 -#, fuzzy -msgid "Unknown node \"%1\" found in Bundles list from session file" -msgstr "Fann ukjent punkt \"%1\" i bundellista frÃ¥ tilstandsfila" - -#: session_state.cc:2809 session_state.cc:2815 +#: session_state.cc:2725 session_state.cc:2731 msgid "Cannot expand path %1 (%2)" msgstr "Greier ikkje utvida stigen %1 (%2)" -#: session_state.cc:2868 +#: session_state.cc:2784 msgid "Session: cannot create dead file folder \"%1\" (%2)" msgstr "Økt: greier ikkje laga mappa \"%1\" for daudlyd (%2)" -#: session_state.cc:2907 +#: session_state.cc:2823 msgid "cannot rename unused file source from %1 to %2 (%3)" msgstr "kan ikkje døypa om den ubrukte filkjelda frÃ¥ %1 til %2 (%3)" -#: session_state.cc:2925 +#: session_state.cc:2841 msgid "cannot remove peakfile %1 for %2 (%3)" msgstr "kan ikkje fjerna toppfil %1 for %2 (%3)" -#: session_state.cc:3227 +#: session_state.cc:3143 msgid "could not backup old history file, current history not saved" msgstr "" "greidde ikkje ta tryggingskopi av den gamle historiefila, noverande historie " "vart ikkje lagra." -#: session_state.cc:3240 +#: session_state.cc:3156 msgid "history could not be saved to %1" msgstr "greidde ikkje lagra historia til %1" -#: session_state.cc:3243 -#, fuzzy -msgid "Could not remove history file at path \"%1\" (%2)" -msgstr "greidde ikkje henta fram att historiefila frÃ¥ tryggingskopien %1 (%2)" - -#: session_state.cc:3247 +#: session_state.cc:3163 msgid "could not restore history file from backup %1 (%2)" msgstr "greidde ikkje henta fram att historiefila frÃ¥ tryggingskopien %1 (%2)" -#: session_state.cc:3272 +#: session_state.cc:3188 msgid "%1: no history file \"%2\" for this session." msgstr "%1: inga historiefil \"%2\" for denne økta." -#: session_state.cc:3278 +#: session_state.cc:3194 msgid "Could not understand session history file \"%1\"" msgstr "Skjønte ikkje økthistoriefila \"%1\"" -#: session_state.cc:3320 +#: session_state.cc:3236 msgid "Failed to downcast MidiSource for NoteDiffCommand" msgstr "Greidde ikkje kasta ned midi-kjelde for NoteDiffCommand" -#: session_state.cc:3331 +#: session_state.cc:3247 msgid "Failed to downcast MidiSource for SysExDiffCommand" msgstr "Greidde ikkje kasta ned midi-kjelde for SysExDiffCommand" -#: session_state.cc:3342 +#: session_state.cc:3258 msgid "Failed to downcast MidiSource for PatchChangeDiffCommand" msgstr "Greidde ikkje kasta ned midi-kjelde for PatchChangeDiffCommand" -#: session_state.cc:3350 +#: session_state.cc:3266 msgid "Couldn't figure out how to make a Command out of a %1 XMLNode." msgstr "Fann ikkje ut korleis eg skal laga ein kommando av eit %1-XML-punkt." -#: session_state.cc:3602 +#: session_state.cc:3502 msgid "Session: unknown diskstream type in XML" msgstr "Økt: ukjend diskstraumtype i XML" -#: session_state.cc:3607 +#: session_state.cc:3507 msgid "Session: could not load diskstream via XML state" msgstr "Økt: greidde ikkje lasta diskstraumen via XML-tilstand" -#: session_time.cc:215 -msgid "Unknown JACK transport state %1 in sync callback" -msgstr "Ukjend JACK-transporttilstand %1 i synk-tilbakekallet" +#: session_time.cc:214 +msgid "Unknown transport state %1 in sync callback" +msgstr "" -#: session_transport.cc:168 +#: session_transport.cc:167 msgid "Cannot loop - no loop range defined" msgstr "Greidde ikkje spela i lykkje - du har ikkje gjeve noko lykkjeomrÃ¥de" -#: session_transport.cc:728 +#: session_transport.cc:739 msgid "" "Seamless looping cannot be supported while %1 is using JACK transport.\n" "Recommend changing the configured options" @@ -2251,7 +2031,7 @@ msgstr "" "Samanhengande lykkjespeling er ikkje støtta nÃ¥r %1 bruker JACK-transporten.\n" "Me rÃ¥r til at du endrar innstillingane." -#: session_transport.cc:1094 +#: session_transport.cc:1105 msgid "" "Global varispeed cannot be supported while %1 is connected to JACK transport " "control" @@ -2260,14 +2040,12 @@ msgstr "" "transportkontrollen" #: smf_source.cc:252 -#, fuzzy msgid "Unable to read event prefix, corrupt MIDI ring" -msgstr "Greier ikkje lesa handlingsprefiks, MIDI-ringbufferen i ulage" +msgstr "" #: smf_source.cc:265 -#, fuzzy msgid "Event has time and size but no body, corrupt MIDI ring" -msgstr "Les tid/storleik men ikkje buffer, MIDI-ringbufferen i ulage" +msgstr "" #: smf_source.cc:271 msgid "Event time is before MIDI source position" @@ -2392,17 +2170,11 @@ msgstr "greidde ikkje tildela fila %1 for Ã¥ lesa" msgid "SndFileSource: could not seek to frame %1 within %2 (%3)" msgstr "Lydfilkjelde: greier ikkje leita fram til ramma %1 innan %2 (%3)" -#: sndfilesource.cc:347 -#, fuzzy -msgid "" -"SndFileSource: @ %1 could not read %2 within %3 (%4) (len = %5, ret was %6)" -msgstr "SndFileSource: @ %1 greidde ikkje lesa %2 i %3 (%4) (len = %5)" - #: sndfilesource.cc:391 sndfilesource.cc:420 msgid "attempt to write a non-writable audio file source (%1)" msgstr "prøvde Ã¥ skriva til ei ikkje-skrivbar lydkjeldefil (%1)" -#: sndfilesource.cc:396 utils.cc:507 utils.cc:531 utils.cc:545 utils.cc:564 +#: sndfilesource.cc:396 utils.cc:510 utils.cc:534 utils.cc:548 utils.cc:567 msgid "programming error: %1 %2" msgstr "programmeringsfeil: %1 %2" @@ -2428,11 +2200,6 @@ msgstr "" msgid "attempt to set BWF info for an un-opened audio file source (%1)" msgstr "prøvde Ã¥ laga BWF-info for ei uopna lydkjeldefil (%1)" -#: sndfilesource.cc:614 -#, fuzzy -msgid "%1: cannot seek to %2 (libsndfile error: %3)" -msgstr "%1: greier ikkje gÃ¥ til %2 (libsndfile-feil: %3" - #: sndfilesource.cc:727 msgid "SndFileSource: \"%1\" bad read retval: %2 of %5 (%3: %4)" msgstr "SndFileSource: \"%1\" feillesen returverdi: %2 av %5 (%3: %4)" @@ -2492,11 +2259,6 @@ msgstr "TempoSection-XML-punktet har ein ulovleg \"note-type\"-verdi" msgid "TempoSection XML node has no \"movable\" property" msgstr "TempoSection-XML-punktet har ingen \"flyttbar\"-eigenskap" -#: tempo.cc:124 -#, fuzzy -msgid "TempoSection XML node has an illegal \"bar-offset\" value" -msgstr "TempoSection-XML-punktet har ein ulovleg \"start\"-verdi" - #: tempo.cc:201 msgid "MeterSection XML node has no \"start\" property" msgstr "MeterSection-XML-punktet har ingen \"start\"-eigenskap" @@ -2505,20 +2267,6 @@ msgstr "MeterSection-XML-punktet har ingen \"start\"-eigenskap" msgid "MeterSection XML node has an illegal \"start\" value" msgstr "MeterSection-XML-punktet har ein ulovleg \"start\"-verdi" -#: tempo.cc:219 -#, fuzzy -msgid "" -"MeterSection XML node has no \"beats-per-bar\" or \"divisions-per-bar\" " -"property" -msgstr "MeterSection-XML-punktet har ingen \"slag per takt\"-eigenskap" - -#: tempo.cc:225 -#, fuzzy -msgid "" -"MeterSection XML node has an illegal \"beats-per-bar\" or \"divisions-per-bar" -"\" value" -msgstr "MeterSection-XML-punktet har ein ulovleg \"start\"-verdi" - #: tempo.cc:230 msgid "MeterSection XML node has no \"note-type\" property" msgstr "MeterSection-XML-punktet har ingen \"notetype\"-eigenskap" @@ -2593,13 +2341,10 @@ msgstr "" "Taktmerke:" #: tempo_map_importer.cc:89 -#, fuzzy msgid "" "This will replace the current tempo map!\n" "Are you sure you want to do this?" msgstr "" -"Dette byter ut det gjeldande tempokartet!\n" -"Er du sikker pÃ¥ at du vil gjera dette?" #: user_bundle.cc:47 msgid "Node for Bundle has no \"name\" property" @@ -2638,19 +2383,19 @@ msgstr "LÃ¥s" msgid "programming error: unknown edit mode string \"%1\"" msgstr "programmeringsfeil: ukjend redigeringsmodus-streng \"%1\"" -#: utils.cc:389 utils.cc:418 +#: utils.cc:389 utils.cc:421 msgid "MIDI Timecode" msgstr "MIDI-tidskode" -#: utils.cc:389 utils.cc:416 +#: utils.cc:389 utils.cc:419 msgid "MTC" msgstr "MTC" -#: utils.cc:393 utils.cc:425 +#: utils.cc:393 utils.cc:428 msgid "MIDI Clock" msgstr "MIDI-klokke" -#: utils.cc:397 utils.cc:412 utils.cc:432 +#: utils.cc:397 utils.cc:415 utils.cc:435 msgid "JACK" msgstr "JACK" @@ -2658,969 +2403,10 @@ msgstr "JACK" msgid "programming error: unknown sync source string \"%1\"" msgstr "programmeringsfeil: ukjend synkkjeldestreng \"%1\"" -#: utils.cc:423 -#, fuzzy -msgid "M-Clock" -msgstr "MIDI-klokke" - -#: utils.cc:429 -#, fuzzy -msgid "LTC" -msgstr "MTC" - -#: utils.cc:599 +#: utils.cc:602 msgid "programming error: unknown native header format: %1" msgstr "programmeringsfeil: ukjent opphavleg hovudformat: \"%1\"" -#: utils.cc:614 +#: utils.cc:617 msgid "cannot open directory %1 (%2)" msgstr "greier ikkje opna mappa %1 (%2)" - -#~ msgid "Session" -#~ msgstr "Økt" - -#~ msgid "MidiDiskstream: XML property channel-mask out of range" -#~ msgstr "MIDI-diskstraum: kanalmaske for XML-eigenskap utanfor rekkjevidd" - -#~ msgid "" -#~ "Copying old session file %1 to %2\n" -#~ "Use %2 with %3 versions before 2.0 from now on" -#~ msgstr "" -#~ "Kopierer gamal øktfil %1 til %2\n" -#~ "Bruk %2 med %3-versjonar før 2.0 frÃ¥ no av" - -#~ msgid "midi" -#~ msgstr "midi" - -#~ msgid "timefx code failure. please notify ardour-developers." -#~ msgstr "kodefeil pÃ¥ tidseffektar, sei frÃ¥ til Ardour-utviklarane" - -#~ msgid "Session: you can't use a mark for auto loop" -#~ msgstr "Økt: du kan ikkje bruka eit merke for auto-lykkjespel" - -#~ msgid "" -#~ "No more JACK ports are available. You will need to stop %1 and restart " -#~ "JACK with ports if you need this many tracks." -#~ msgstr "" -#~ "Det finst ikkje fleire JACK-portar. Du mÃ¥ stoppa %1 og starta JACK pÃ¥ " -#~ "nytt med nok portar viss du treng sÃ¥ mange spor." - -#~ msgid "Could not understand ardour file %1" -#~ msgstr "Skjønte ikkje ardour-fila %1" - -#~ msgid "control protocol XML node has no name property. Ignored." -#~ msgstr "" -#~ "XML-noden for kontrollprotokollen har ingen namneeigenskap. SÃ¥g bort frÃ¥." - -#~ msgid "control protocol \"%1\" is not known. Ignored" -#~ msgstr "kontrollprotokollen \"%1\" er ukjent. SÃ¥g bort frÃ¥" - -#~ msgid "Removed open file count limit. Excellent!" -#~ msgstr "Fjerna teljegrensa for opne filer. Steikande bra!" - -#~ msgid "%1 will be limited to %2 open files" -#~ msgstr "%1 vil vera avgrensa til Ã¥ opna %2 filer" - -#~ msgid "" -#~ "programming error: non-audio Region passed to remove_overlap in audio " -#~ "playlist" -#~ msgstr "" -#~ "programmeringsfeil: ikkje-lydbolk gjeve til fjern_overlapping i " -#~ "lydspelelista" - -#~ msgid "" -#~ "programming error: non-audio Region tested for overlap in audio playlist" -#~ msgstr "" -#~ "programmeringsfeil: ikkje-lydbolk prøvd for overlapping i lydspelelista" - -#~ msgid "Crossfade: no \"in\" region in state" -#~ msgstr "Overtoning: Ingen \"inn\"-bolk her" - -#~ msgid "" -#~ "Crossfade: no \"in\" region %1 found in playlist %2 nor in region map" -#~ msgstr "" -#~ "Krysstoning: fann ingen \"inn\"-bolk %1, korkje i spelelista %2 eller i " -#~ "bolkkartet" - -#~ msgid "Crossfade: no \"out\" region in state" -#~ msgstr "Overtoning: ingen \"ut\"-bolk her" - -#~ msgid "" -#~ "Crossfade: no \"out\" region %1 found in playlist %2 nor in region map" -#~ msgstr "" -#~ "Krysstoning: fann ingen \"ut\"-bolk %1, korkje i spelelista %2 eller i " -#~ "bolkkartet" - -#~ msgid "old-style crossfade information - no position information" -#~ msgstr "gamaldags overtoningsinformasjon - ingen posisjonsinformasjon" - -#~ msgid "midiui" -#~ msgstr "midibrukarflate" - -#~ msgid "Chunk %1 uses an unknown playlist \"%2\"" -#~ msgstr "Beten %1 bruker ei ukjend speleliste, \"%2\"" - -#~ msgid "Chunk %1 contains malformed playlist information" -#~ msgstr "Beten %1 inneheld feilforma spelelisteinformasjon" - -#~ msgid "signal" -#~ msgstr "signal" - -#~ msgid "editor" -#~ msgstr "redigering" - -#~ msgid "Template \"%1\" already exists - template not renamed" -#~ msgstr "Malen \"%1\" finst alt - malen fekk ikkje nytt namn" - -#~ msgid "Session: cannot create Named Selection from XML description." -#~ msgstr "Økt: greier ikkje laga namngjeve utval ut frÃ¥ XML-skildringa." - -#~ msgid "Unable to create a backup copy of file %1 (%2)" -#~ msgstr "Greidde ikkje laga tryggingskopi av fila %1 (%2)" - -#, fuzzy -#~ msgid "programming error: realpath(%1) failed, errcode %2" -#~ msgstr "programmeringsfeil: %1 %2" - -#~ msgid "Cannot become GUI app" -#~ msgstr "Greier ikkje bli grafisk program" - -#~ msgid "" -#~ "%1: could not find configuration file (ardour.rc), canvas will look " -#~ "broken." -#~ msgstr "" -#~ "%1: greidde ikkje finna oppsettsfila (ardour.rc), arbeidsomrÃ¥det vil sjÃ¥ " -#~ "øydelagt ut." - -#~ msgid "Midi" -#~ msgstr "Midi" - -#~ msgid "illegal or badly-formed string used for path (%1)" -#~ msgstr "ulovleg eller feilforma streng brukt for stigen (%1)" - -#~ msgid "path (%1) is ambiguous" -#~ msgstr "stigen (%1) er tvitydig" - -#~ msgid "Could not move capture file from %1" -#~ msgstr "Greidde ikkje flytta opptaksfila frÃ¥ %1" - -#~ msgid "Cannot create temporary MIDI port to determine MIDI buffer size" -#~ msgstr "" -#~ "Greier ikkje laga mellombels MIDI-port for Ã¥ avgjera MIDI-bufferstorleiken" - -#~ msgid "Pan %1" -#~ msgstr "Pan %1" - -#~ msgid "rename from %1 to %2 failed: %3)" -#~ msgstr "omdøyping frÃ¥ %1 til %2 mislukka: %3)" - -#~ msgid "Using %2 threads on %1 CPUs" -#~ msgstr "Brukar %2 trÃ¥dar pÃ¥ %1 prosessorar" - -#~ msgid "direction" -#~ msgstr "retning" - -#~ msgid "" -#~ "badly formatted pan automation event record at line %1 of %2 (ignored) " -#~ "[%3]" -#~ msgstr "" -#~ "feilformatert handlingsopptak av panoreringsautomasjon pÃ¥ linja %1 av %2 " -#~ "(hoppa over) [%3]" - -#~ msgid "programming error:" -#~ msgstr "programmeringsfeil: " - -#~ msgid "cannot open pan automation file %1 (%2)" -#~ msgstr "greier ikkje opna panoreringsautomasjonsfil %1 (%2)" - -#~ msgid "badly formed version number in pan automation event file \"%1\"" -#~ msgstr "" -#~ "feilforma versjonsnummer i handlingsfila for panoreringsautomasjon \"%1\"" - -#~ msgid "" -#~ "no version information in pan automation event file \"%1\" (first line = " -#~ "%2)" -#~ msgstr "" -#~ "ingen versjonsinformasjon i handlingsfila for panoreringsautomasjon " -#~ "\"%1\" (fyrste linja= %2)" - -#~ msgid "too many panner states found in pan automation file %1" -#~ msgstr "for mange panoreringstilstandar i automasjonsfila %1" - -#~ msgid "C" -#~ msgstr "S" - -#~ msgid "lr" -#~ msgstr "vh" - -#~ msgid "width" -#~ msgstr "breidd" - -#~ msgid "cannot open click emphasis soundfile %1 (%2)" -#~ msgstr "greier ikkje opna uthevings-klikklydfila %1 (%2)" - -#~ msgid "cannot read data from click emphasis soundfile" -#~ msgstr "greier ikkje lesa data frÃ¥ uthevings-klikklydfila" - -#~ msgid "Reset Control Protocols" -#~ msgstr "Still tilbake kontrollprotokollar" - -#~ msgid "Session: cannot create session stub sounds dir \"%1\" (%2)" -#~ msgstr "Økt: greier ikkje laga mappa \"%1\" for lydfilbetar (%2)" - -#~ msgid "Session: cannot create session stub midi dir \"%1\" (%2)" -#~ msgstr "Økt: greier ikkje laga midibetemappa \"%1\" for økta (%2)" - -#~ msgid "could not allocate file %1" -#~ msgstr "greidde ikkje tildela fila %1" - -#~ msgid "" -#~ "AudioDiskstream %1: cannot read xfade samples %2 from playlist at frame %3" -#~ msgstr "" -#~ "Lyd-diskstraum %1: greidde ikkje lesa krysstoningspunkt %2 frÃ¥ " -#~ "spelelista, ramme %3" - -#~ msgid "%1: cannot create region from pending capture sources" -#~ msgstr "%1: greidde ikkje laga bolk frÃ¥ ventande opptakskjelder" - -#~ msgid "register input port called before engine was started" -#~ msgstr "registerinngangsporten vart oppkalla før tenaren starta" - -#~ msgid "register output port called before engine was started" -#~ msgstr "registerutgangsporten vart oppkalla før tenaren starta" - -#~ msgid "AudioEngine: connection already exists: %1 (%2) to %3 (%4)" -#~ msgstr "AudioEngine: tilkoplinga finst frÃ¥ før: %1 (%2) til %3 (%4)." - -#~ msgid "" -#~ "Disconnected from JACK while reconnecting. You should quit Ardour now." -#~ msgstr "Kopla frÃ¥ JACK ved ny tilkopling. Du bør avslutta Ardour no." - -#~ msgid "could not reconnect %1 and %2 (err = %3)" -#~ msgstr "greidde ikkje kopla til att %1 og %2 (feil = %3)" - -#~ msgid "" -#~ "This is an old Ardour session that does not have\n" -#~ "sufficient information for rendered FX" -#~ msgstr "" -#~ "Dette er ei gamal Ardour-økt som ikkje har\n" -#~ "nok informasjon for oppteikna effektar" - -#~ msgid "in 1+2" -#~ msgstr "inn 1+2" - -#~ msgid "AudioTrack: audio diskstream \"%1\" not known by session" -#~ msgstr "Lydspor: økta kjenner ikkje att lyd-diskstraumen \"%1\"" - -#~ msgid "programming error: AudioTrack given state without diskstream!" -#~ msgstr "Programmeringsfeil: Ardour fekk tilstand utan diskstraum1" - -#~ msgid "ill-formed MIDI port specification in ardour rcfile (ignored)" -#~ msgstr "" -#~ "feilforma MIDI-portspesifikasjon oppgjeve i ardour-rc-fila (hoppa over)" - -#~ msgid "Node for Connection has no \"connections\" property" -#~ msgstr "Punkt for tilkopling har ingen \"tilkopingar\"-eigenskapar" - -#~ msgid "Starting OSC" -#~ msgstr "Startar OSC" - -#~ msgid "no MIDI ports specified: no MMC or MTC control possible" -#~ msgstr "" -#~ "ingen MIDI-portar er spesifiserte. MMC- eller MTC-kontroll er ikkje " -#~ "mogleg." - -#~ msgid "Configuring MIDI ports" -#~ msgstr "Set opp MIDI-portar" - -#~ msgid "default" -#~ msgstr "standard" - -#~ msgid "No MMC control (MIDI port \"%1\" not available)" -#~ msgstr "Ingen MMC-kontroll (MIDI-porten \"%1\" er ikkje tilgjengeleg)" - -#~ msgid "No MTC support (MIDI port \"%1\" not available)" -#~ msgstr "Inga MTC-støtte (MIDI-porten \"%1\" er ikkje tilgjengeleg)" - -#~ msgid "No MIDI parameter support (MIDI port \"%1\" not available)" -#~ msgstr "" -#~ "Ingen MIDI-parameterstøtte (MIDI-porten \"%1\" er ikkje tilgjengeleg)" - -#~ msgid "" -#~ "converting %1\n" -#~ "(resample from %2KHz to %3KHz)\n" -#~ "(%4 of %5)" -#~ msgstr "" -#~ "omdannar %1\n" -#~ "(ompunkting frÃ¥ %1KHz til %3KHz)\n" -#~ "(%4 av %5)" - -#~ msgid "" -#~ "converting %1\n" -#~ "(%2 of %3)" -#~ msgstr "" -#~ "omdannar %1\n" -#~ "(%2 av %3)" - -#~ msgid "XML node describing a plugin insert is missing the `%1' information" -#~ msgstr "" -#~ "XML-punktet som skildrar tilleggsprogramtappinga manglar '%1'-informasjon" - -#~ msgid "XML node describing insert is missing a Redirect node" -#~ msgstr "XML-punktet som skildrar tappinga manglar omdirigeringspunkt" - -#~ msgid "" -#~ "XML node describing a port automation is missing the `%1' information" -#~ msgstr "XML-punktet som skildrar portautomasjonen manglar '%1'-informasjon" - -#~ msgid "%1: cannot open automation event file \"%2\"" -#~ msgstr "%1: greier ikkje opna automasjonshendingsfila \"%2\"" - -#~ msgid "badly formed version number in automation event file \"%1\"" -#~ msgstr "feilforma versjonsnummer i automasjonshendingsfila \"%1\"" - -#~ msgid "no version information in automation event file \"%1\"" -#~ msgstr "ingen versjonsinformasjon i automasjonshendingsfila \"%1\"" - -#~ msgid "badly formatted automation event record at line %1 of %2 (ignored)" -#~ msgstr "" -#~ "feilformatert automasjonshendingsopptak pÃ¥ linje %1 av %2 (hoppa over)" - -#~ msgid "IO::connecting_became_legal() called without a pending state node" -#~ msgstr "" -#~ "IO::connecting_became_legal()-funksjonen vart oppkalla utan ventande " -#~ "tilstandsnode" - -#~ msgid "IO::ports_became_legal() called without a pending state node" -#~ msgstr "" -#~ "IO::ports_became_legal()-funksjonen vart oppkalla utan ventande " -#~ "tilstandsnode" - -#~ msgid "improper output channel list in XML node (%1)" -#~ msgstr "feil utgangskanalliste i XML-punktet %1" - -#~ msgid "you cannot use colons to name objects with I/O connections" -#~ msgstr "du kan ikkje bruka kolon i namn pÃ¥ objekt med I/U-tilkoplingar" - -#~ msgid "badly-formed positional data for Multi2dPanner - ignored" -#~ msgstr "feilforma posisjonsdata for Multi2dPanner - hoppa over" - -#~ msgid "playlist const copy constructor called" -#~ msgstr "konstant kopikonstruktør for speleliste vart oppkalla" - -#~ msgid "playlist non-const copy constructor called" -#~ msgstr "ikkje-konstant kopikonstruktør for speleliste vart oppkalla" - -#~ msgid "%1: bounds changed received for region (%2)not in playlist" -#~ msgstr "%1: mottok grenseendring for bolken (%2) - ikkje i spelelista" - -#~ msgid "Playlist: cannot reset region state from XML" -#~ msgstr "Speleliste: greier ikkje stilla bolkstatusen tilbake frÃ¥ XML" - -#~ msgid "programming error: unknown Redirect type in Redirect::Clone!\n" -#~ msgstr "" -#~ "programmeringsfeil: ukjend omdirigeringstype i Redirect::Clone-" -#~ "funksjonen!\n" - -#~ msgid "%2: badly formatted node name in XML automation state, ignored" -#~ msgstr "%2: feilforma nodenamn i XML-automasjonsstatusen, sÃ¥g bort frÃ¥" - -#~ msgid "%1: cannot load automation data from XML" -#~ msgstr "%1: greier ikkje lasta automasjonsdata frÃ¥ XML" - -#~ msgid "incorrect XML node \"%1\" passed to Redirect object" -#~ msgstr "feil XML-punkt, \"%1\", vart sendt til omdirigeringsobjektet" - -#~ msgid "XML node describing an IO is missing an IO node" -#~ msgstr "XML-punktet som skildrar IU manglar eit IU-punkt" - -#~ msgid "XML node describing a redirect is missing the `active' field" -#~ msgstr "XML-punktet som skildrar ei omdirigering manglar 'aktiv'-feltet" - -#~ msgid "XML node describing a redirect is missing the `placement' field" -#~ msgstr "" -#~ "XML-punktet som skildrar ei omdirigering manglar 'plassering'-feltet" - -#~ msgid "XMLNode describing a Region is incomplete (no name)" -#~ msgstr "XML-punktet som skildrar ein bolk er ufullstendig (utan namn)" - -#~ msgid "Session: XMLNode describing a Region is incomplete (no id)" -#~ msgstr "Økt: XML-punktet som skildrar ein bolk er ufullstendig (ingen id)" - -#~ msgid "Send construction failed" -#~ msgstr "Send-konstruksjon mislukka" - -#~ msgid "Insert XML node has no type property" -#~ msgstr "Tappings-XML-punkt har ingen typeeigenskapar" - -#~ msgid "Route %1: unknown edit group \"%2 in saved state (ignored)" -#~ msgstr "" -#~ "Ruting %1: ukjend redigert gruppe \"%2 i lagra tilstand (hoppa over)" - -#~ msgid "Route %1: unknown mix group \"%2 in saved state (ignored)" -#~ msgstr "Ruting %1: ukjend miksgruppe \"%2 i lagra tilstand (hoppa over)" - -#~ msgid "could not connect %1 to %2" -#~ msgstr "greidde ikkje kopla %1 til %2" - -#~ msgid "XML node describing a send is missing a Redirect node" -#~ msgstr "XML-punktet som skildrar ein send manglar eit omdirigeringspunkt" - -#~ msgid "cannot setup master inputs" -#~ msgstr "greier ikkje setja opp masterinngangar" - -#~ msgid "Master Out" -#~ msgstr "Master ut" - -#~ msgid "Catch up with send/insert state" -#~ msgstr "Ta att send/omvegstatus" - -#~ msgid "OSC startup" -#~ msgstr "OSC-oppstart" - -#~ msgid "cannot set up master outputs" -#~ msgstr "greier ikkje setja opp masterutgangar" - -#~ msgid "" -#~ "Session::add_region() ignored a null region. Warning: you might have lost " -#~ "a region." -#~ msgstr "" -#~ "Økt::add_region() sÃ¥g bort frÃ¥ ein null-bolk. Pass pÃ¥: det kan henda du " -#~ "har mista ein bolk." - -#~ msgid "programming error: unknown type of Insert created!" -#~ msgstr "programmeringsfeil: det er laga ein ukjend tappingstype!" - -#~ msgid "programming error: unknown type of Redirect created!" -#~ msgstr "programmeringsfeil: det er laga ein ukjend omdirigeringstype!" - -#~ msgid "programming error: unknown type of Redirect deleted!" -#~ msgstr "programmeringsfeil: det er sletta ein ukjend omdirigeringstype!" - -#~ msgid "Memory allocation error: posix_memalign (%1 * %2) failed (%3)" -#~ msgstr "Minnetildelingsfeil: posix_memalign (%1 * %2) mislukka (%3)" - -#~ msgid "" -#~ "Programming error: get_silent_buffers() called for %1 buffers but only %2 " -#~ "exist" -#~ msgstr "" -#~ "Programmeringsfeil: get_silent_buffers() oppropt for %1 bufrar, men det " -#~ "finst berre %2" - -#~ msgid "GlobalRouteStateCommand has no \"type\" node, ignoring" -#~ msgstr "GlobalRouteStateCommand har ingen \"type\"-node, ser bort frÃ¥" - -#~ msgid "unknown type of GlobalRouteStateCommand (%1), ignored" -#~ msgstr "ukjent slag GlobalRouteStateCommand (%1), ser bort frÃ¥" - -#~ msgid "" -#~ "global route state command has no \"%1\" node, ignoring entire command" -#~ msgstr "" -#~ "allmenn rutestatuskommando har ingen \"%1\"-node, ser bort frÃ¥ heile " -#~ "kommandoen" - -#~ msgid "" -#~ "cannot find track/bus \"%1\" while rebuilding a global route state " -#~ "command, ignored" -#~ msgstr "" -#~ "greier ikkje finna spor/buss \"%1\" ved oppattbygging ein allmenn " -#~ "rutestatuskommando, sÃ¥g bort frÃ¥" - -#~ msgid "" -#~ "global route meter state command has no \"%1\" node, ignoring entire " -#~ "command" -#~ msgstr "" -#~ "allmenn kommando for rutemælestatus har ingen \"%1\"-node, ser bort frÃ¥ " -#~ "heile kommandoen" - -#~ msgid "Export: no output file specified" -#~ msgstr "Eksport: du har ikkje skrive inn ut-fil" - -#~ msgid "illegal frame range in export specification" -#~ msgstr "ulovleg " - -#~ msgid "Bad data width size. Report me!" -#~ msgstr "Feil storleik pÃ¥ databreidd. Sei frÃ¥ om dette til utviklarane!" - -#~ msgid "Export: cannot open output file \"%1\" (%2)" -#~ msgstr "Eksport: greier ikkje opna utfila \"%1\" (%2)" - -#~ msgid "cannot initialize sample rate conversion: %1" -#~ msgstr "greier ikkje byrja punktrateomdanning: %1" - -#~ msgid "warning, leftover frames overflowed, glitches might occur in output" -#~ msgstr "Ã¥tvaring: nokre rammer vart til overs i, det kan vera hakk i utfila" - -#~ msgid "Export: could not write data to output file (%1)" -#~ msgstr "Eksport: greidde ikkje skriva data til utfil (%1)" - -#~ msgid "Ardour is slaved to MTC - port cannot be reset" -#~ msgstr "Ardour er slave til ein MTC-port og kan ikkje nullstillast" - -#~ msgid "unknown port %1 requested for MTC" -#~ msgstr "førespurnad til ukjend MTC-port %1" - -#~ msgid "Error reading from MIDI port %1" -#~ msgstr "Greidde ikkje lesa frÃ¥ MIDI-port %1" - -#~ msgid "MMC: cannot send command %1%2%3" -#~ msgstr "MMC: greier ikkje senda kommandoen %1%2%3" - -#~ msgid "UI: cannot set O_NONBLOCK on signal read pipe (%1)" -#~ msgstr "Grensesnitt: O_NONBLOCK fastsett for signallesingsrøyr (%1)" - -#~ msgid "UI: cannot set O_NONBLOCK on signal write pipe (%1)" -#~ msgstr "" -#~ "Grensesnitt: greier ikkje fastsetja O_NONBLOCK for signalskrivingsrøyr " -#~ "(%1)" - -#~ msgid "Session: could not create transport thread" -#~ msgstr "Økt: greidde ikkje laga transporttrÃ¥d" - -#~ msgid "cannot send signal to midi thread! (%1)" -#~ msgstr "greier ikkje senda signal til MIDI-trÃ¥den! (%1)" - -#~ msgid "MIDI thread poll failed (%1)" -#~ msgstr "Spørjing pÃ¥ MIDI-trÃ¥d mislukka (%1)" - -#~ msgid "Error on transport thread request pipe" -#~ msgstr "Feil pÃ¥ transporttrÃ¥dspørjingsrøyr" - -#~ msgid "Error reading from transport request pipe" -#~ msgstr "Greidde ikkje lesa frÃ¥ transportspørjingsrøyr" - -#~ msgid "start" -#~ msgstr "start" - -#~ msgid "Session: XML state has no connections section" -#~ msgstr "Økt: XML-fila har ikkje noko avsnitt om tilkoplingar" - -#~ msgid "cannot create dead sounds directory \"%1\"; ignored" -#~ msgstr "greier ikkje laga daudlydmappa \"%1\", hoppa over" - -#~ msgid "cannot create peak file directory \"%1\"; ignored" -#~ msgstr "greier ikkje laga toppfilmappa \"%1\", hoppa over" - -#~ msgid "cannot remove dead sound file %1 (%2)" -#~ msgstr "greier ikkje fjerna daudlyd-fila %1 (%2)" - -#~ msgid "could not remove corrupt history file %1" -#~ msgstr "greidde ikkje fjerna den øydelagde historiefila %1" - -#~ msgid "Loading history from '%1'." -#~ msgstr "Lastar historie frÃ¥ '%1'." - -#~ msgid "please stop the transport before adjusting slave settings" -#~ msgstr "hugs Ã¥ stoppa spelinga før du justerer slaveinnstillingar" - -#~ msgid "No MTC port defined: MTC slaving is impossible." -#~ msgstr "Ingen MTC-port er gjeven. MTC-slaving er umogleg." - -#~ msgid "" -#~ "cannot set broadcast info for audio file %1; Dropping broadcast info for " -#~ "this file" -#~ msgstr "" -#~ "greier ikkje fastsetja kringkastingsinformasjon for lydfila %1, hoppar " -#~ "over kringkastingsinformasjon for denne fila" - -#~ msgid "Internal" -#~ msgstr "Intern" - -#~ msgid "Bad node sent to VSTPlugin::set_state" -#~ msgstr "Feil punkt sendt til VSTPlugin::set_state-funksjonen" - -#~ msgid "no support for presets using chunks at this time" -#~ msgstr "" -#~ "det er ikkje støtte for ferdigprogram som brukar bitar for augneblinken" - -#~ msgid "VST plugin called with zero frames - please notify Ardour developers" -#~ msgstr "" -#~ "VST-innstikk pÃ¥kalla med null rammer - sei frÃ¥ til Ardour-utviklarane" - -#~ msgid "VST: cannot load module from \"%1\"" -#~ msgstr "VST: greier ikkje lasta modul frÃ¥ \"%1\"" - -#~ msgid "You asked ardour to not use any VST plugins" -#~ msgstr "Du sa at Ardour ikkje skulle bruka nokon VST-tilleggsprogram" - -#~ msgid "CoreAudioSource: cannot open file \"%1\" for %2" -#~ msgstr "CoreAudioSource: greier ikkje opna fila \"%1\" for %2" - -#~ msgid "Could not create XML version of property list" -#~ msgstr "Greidde ikkje laga XML-versjon av eigenskaplista" - -#~ msgid "Cannot open preset file %1 (%2)" -#~ msgstr "Greier ikkje opna ferdigoppsettfila %1 (%2)" - -#~ msgid "Exception thrown during AudioUnit plugin loading - plugin ignored" -#~ msgstr "" -#~ "Det vart kasta inn eit unntak under AudioUnit-innstikklastinga - sÃ¥g bort " -#~ "frÃ¥ innstikket" - -#~ msgid "AudioUnit: Could not convert CAComponent to CAAudioUnit" -#~ msgstr "Lydeinging: Greidde ikkje gjera om CAComponent til CAAudioUnit" - -#~ msgid "AUPlugin: cannot set processing block size" -#~ msgstr "AUPlugin: Greier ikkje setja opp blokkstorleik for handsaming" - -#~ msgid "AUPlugin: %1 cannot initialize plugin (err = %2)" -#~ msgstr "AUPlugin: %1 greier ikkje starta innstikk (feil = %2)" - -#~ msgid "AU %1 has zero outputs - configuration ignored" -#~ msgstr "AU %1 har ingen utgangar - sÃ¥g bort frÃ¥ oppsettet" - -#~ msgid "AU plugin %1 has illegal IO configuration (-2,-2)" -#~ msgstr "AU-innstikket %1 har ugyldig IU-oppsett (-2,-2)" - -#~ msgid "AUPlugin: could not set stream format for %1/%2 (err = %3)" -#~ msgstr "" -#~ "AUPlugin: greidde ikkje setja opp straumformat for %1/%2 (feil = %3)" - -#~ msgid "AUPlugin: %1 input_streams() called without any format set!" -#~ msgstr "AUPlugin: %1 input_streams() pÃ¥kalla utan oppsett format!" - -#~ msgid "AUPlugin: %1 output_streams() called without any format set!" -#~ msgstr "AUPlugin: %1 output_streams() pÃ¥kalla utan oppsett format!" - -#~ msgid "AUPlugin: render callback called illegally!" -#~ msgstr "AUPlugin: oppteiknings-tilbakekall pÃ¥kalla ulovleg!" - -#~ msgid "Bad node sent to AUPlugin::set_state" -#~ msgstr "Feil punkt sendt til AUPlugin::set_state" - -#~ msgid "" -#~ "Restoring AudioUnit settings is not supported in this build of Ardour. " -#~ "Consider paying for a newer version" -#~ msgstr "" -#~ "Du kan ikkje henta framatt AudioUnit-innstillingar i denne versjonen av " -#~ "Ardour. Du bør vurdera Ã¥ betala for ein nyare verjson" - -#~ msgid "" -#~ "Loading AudioUnit presets is not supported in this build of Ardour. " -#~ "Consider paying for a newer version" -#~ msgstr "" -#~ "Du kan ikkje lagra AudioUnit-innstillingar i denne versjonen av Ardour. " -#~ "Du bør vurdera Ã¥ betala for ein nyare verjson" - -#~ msgid "Cannot create user plugin presets folder (%1)" -#~ msgstr "Greier ikkje laga mappe for brukarlaga innstikkoppsett (%1)" - -#~ msgid "Saving plugin state to %1 failed" -#~ msgstr "Greidde ikkje lagra innstikkstatus til %1" - -#~ msgid "Discovering AudioUnit plugins (could take some time ...)" -#~ msgstr "Finn AudioUnit-innstikk (dette kan ta litt tid...)" - -#~ msgid "Cannot get I/O configuration info for AU %1" -#~ msgstr "Greier ikkje fÃ¥ tak i I/U-oppsettsinfo for AU %1" - -#~ msgid "Checking AudioUnit: %1" -#~ msgstr "Sjekkar AudioUnit: %1" - -#~ msgid "Could not load AU plugin %1 - ignored" -#~ msgstr "Greier ikkje lasta AU-innstikk %1 - sÃ¥g bort frÃ¥" - -#~ msgid "could not save AU cache to %1" -#~ msgstr "greidde ikkje lagra AU-mellomlageret til %1" - -#~ msgid "initial state" -#~ msgstr "opphavstilstand" - -#~ msgid "xfade change" -#~ msgstr "overtoningsendring" - -#~ msgid "region modified" -#~ msgstr "bolk endra" - -#~ msgid "cannot activate JACK client" -#~ msgstr "greier ikkje slÃ¥ pÃ¥ JACK-klienten" - -#~ msgid "get_nth_physical called before engine was started" -#~ msgstr "get_nth_physical vart oppkalla før tenaren starta" - -#~ msgid "get_port_total_latency() called with no JACK client connection" -#~ msgstr "" -#~ "get_port_total_latency()-funksjonen vart oppkalla utan tilknyting til " -#~ "JACK-klienten" - -#~ msgid "get_port_total_latency() called before engine was started" -#~ msgstr "" -#~ "get_port_total_latency()-funksjonen vart oppkalla før tenaren starta" - -#~ msgid "Unable to connect to JACK server" -#~ msgstr "Greidde ikkje kopla til JACK-tenaren" - -#~ msgid "Could not connect to JACK server as \"%1\"" -#~ msgstr "Greidde ikkje kopla til JACK-tenaren som \"%1\"" - -#~ msgid "JACK server started" -#~ msgstr "JACK-tenaren er starta" - -#~ msgid "cannot shutdown connection to JACK" -#~ msgstr "greier ikkje kopla frÃ¥ JACK" - -#~ msgid "fade in change" -#~ msgstr "inntoningsendring" - -#~ msgid "envelope change" -#~ msgstr "omhyllingsendring" - -#~ msgid "poll on peak request pipe failed (%1)" -#~ msgstr "undersøking ved toppspørjingsrøyr gjekk gale (%1)" - -#~ msgid "Error on peak thread request pipe" -#~ msgstr "Feil pÃ¥ topptrÃ¥dspørjingsrøyr" - -#~ msgid "Error reading from peak request pipe" -#~ msgstr "Feil ved lesing frÃ¥ toppspørjingsrøyr" - -#~ msgid "UI: cannot set O_NONBLOCK on peak request pipe (%1)" -#~ msgstr "Brukarflate: Kan ikkje bruka O_NONBLOCK ved toppspørjingsrøyr (%1)" - -#~ msgid "AudioSource: could not create peak thread" -#~ msgstr "Lydkjelde: greidde ikkje laga topptrÃ¥d" - -#~ msgid "initial" -#~ msgstr "fyrste" - -#~ msgid "cleared" -#~ msgstr "tom" - -#~ msgid "added event" -#~ msgstr "la til hending" - -#~ msgid "removed event" -#~ msgstr "fjerna hending" - -#~ msgid "removed multiple events" -#~ msgstr "fjerna fleire hendingar" - -#~ msgid "removed range" -#~ msgstr "fjerna omrÃ¥de" - -#~ msgid "event range adjusted" -#~ msgstr "justert hendingsomrÃ¥de" - -#~ msgid "event adjusted" -#~ msgstr "justert hending" - -#~ msgid "cut/copy/clear" -#~ msgstr "klypp/kopier/tøm" - -#~ msgid "copy" -#~ msgstr "kopier" - -#~ msgid "active changed" -#~ msgstr "endra pÃ¥/av" - -#~ msgid "MIDI port specifications for \"%1\" are not understandable." -#~ msgstr "MIDI-portspesifikasjonane for \"%1\" er uforstÃ¥elege." - -#, fuzzy -#~ msgid "resampling audio" -#~ msgstr "samplar om lyd" - -#~ msgid "Import: cannot open converted sound file \"%1\"" -#~ msgstr "Import: kan ikkje opna den omkoda lydfila \"%1\"" - -#~ msgid "" -#~ "Session::import_audiofile: cannot open new file source for channel %1" -#~ msgstr "Økt::import_lydfil: kan ikkje opna ny kjeldefil for kanalen %1" - -#~ msgid "Import/SRC: could not open input file: %1" -#~ msgstr "Import/kjelde: greidde ikkje opna innfila: %1" - -#~ msgid "Import/SRC: could not open output file: %1" -#~ msgstr "Import/kjelde: greidde ikkje opna utfila: %1" - -#~ msgid "XML node describing insert is missing the `id' field" -#~ msgstr "XML-punktet som skildrar tappinga manglar 'id'-feltet" - -#~ msgid "PortInsert: cannot add input port" -#~ msgstr "PortInsert: greier ikkje leggja til inngangsport" - -#~ msgid "PortInsert: cannot add output port" -#~ msgstr "PortInsert: greier ikkje leggja til utgangsport" - -#~ msgid "%s/out %u" -#~ msgstr "%s/ut %u" - -#~ msgid "Unknown connection \"%1\" listed for output of %2" -#~ msgstr "Ukjend tilkopling \"%1\" lista opp for %2-utgangen" - -#~ msgid "No output connections available as a replacement" -#~ msgstr "Det finst ingen utgangstilkoplingar som kan brukast som erstatting" - -#~ msgid "%1: could not open automation event file \"%2\"" -#~ msgstr "%1: greier ikkje opna automasjonshendingsfila \"%2\"" - -#~ msgid "mismatched automation event file version (%1)" -#~ msgstr "ikkje like versjonsnummer i automasjonshendingsfila (%1)" - -#~ msgid "loaded from disk" -#~ msgstr "lasta frÃ¥ disk" - -#~ msgid "automation write/touch" -#~ msgstr "automasjonsskriving/rørsle" - -#~ msgid "clear" -#~ msgstr "tøm" - -#~ msgid "clear markers" -#~ msgstr "tøm merke" - -#~ msgid "clear ranges" -#~ msgstr "tøm omrÃ¥de" - -#~ msgid "add" -#~ msgstr "legg til" - -#~ msgid "remove" -#~ msgstr "fjern" - -#~ msgid "automation write pass" -#~ msgstr "automasjonsskriveomgang" - -#~ msgid "error writing pan automation file (%s)" -#~ msgstr "greidde ikkje skriva panoreringsautomasjonsfil (%s)" - -#~ msgid "cannot open pan automation file \"%1\" for saving (%2)" -#~ msgstr "" -#~ "kan ikkje opna panoreringsautomasjonsfil \"%1\" for Ã¥ lagra henne (%2)" - -#~ msgid "mismatched pan automation event file version (%1)" -#~ msgstr "" -#~ "handlingsfila for panoreringsautomasjon har versjonsnummer som ikkje " -#~ "stemmer overeins (%1)" - -#~ msgid "remove region" -#~ msgstr "fjern bolk" - -#~ msgid "separate" -#~ msgstr "del opp" - -#~ msgid "cut" -#~ msgstr "klypp" - -#~ msgid "duplicate" -#~ msgstr "klon" - -#~ msgid "split" -#~ msgstr "del" - -#~ msgid "nudged" -#~ msgstr "skubba" - -#~ msgid "" -#~ "programming error: Playlist::copyPlaylist called with unknown Playlist " -#~ "type" -#~ msgstr "" -#~ "programmeringsfeil: Playlist::copyPlaylist-funksjonen vart oppkalla med " -#~ "ukjend spelelistetype" - -#~ msgid "post" -#~ msgstr "etter" - -#~ msgid "Redirect: unknown placement string \"%1\" (ignored)" -#~ msgstr "Omdirigering: ukjend plasseringsstreng \"%1\" (hoppa over)" - -#~ msgid "%1: cannot open %2 to store automation data (%3)" -#~ msgstr "%1: greier ikkje opna %2 for Ã¥ lagra automasjonsdata (%3)" - -#~ msgid "%1: could not save automation state to %2" -#~ msgstr "%1: greier ikkje lagra automasjonstilstanden til %2" - -#~ msgid "" -#~ "Could not get state from Redirect (%1). Problem with save_automation" -#~ msgstr "" -#~ "Greier ikkje fÃ¥ tak i tilstanden frÃ¥ omdirigeringa (%1). Problem med Ã¥ " -#~ "lagra automasjonen." - -#~ msgid "active_changed" -#~ msgstr "aktiv_endra" - -#~ msgid "Could not get state of route. Problem with save_automation" -#~ msgstr "" -#~ "Greidde ikkje fÃ¥ tak i tilstanden for rutinga. Problem med Ã¥ lagra " -#~ "automasjon." - -#~ msgid "too many regions with names like %1" -#~ msgstr "for mange bolkar med namn som %1" - -#~ msgid "programming error: unknown type of Insert deleted!" -#~ msgstr "programmeringsfeil: ein ukjend tappingstype er sletta!" - -#~ msgid "could not backup old state file, current state not saved." -#~ msgstr "" -#~ "greidde ikkje ta tryggingskopi av den gamle tilstandsfila. Den noverande " -#~ "tilstanden er ikkje lagra." - -#~ msgid "tempoize: error creating name for new audio file based on %1" -#~ msgstr "" -#~ "lag tempo: greidde ikkje gje namn til den nye lydfila som er bygd pÃ¥ %1" - -#~ msgid "tempoize: error creating new audio file %1 (%2)" -#~ msgstr "lag tempo: greidde ikkje laga den nye lydfila %1 (%2)" - -#~ msgid "PAF (Ensoniq Paris)" -#~ msgstr "PAF (Ensoniq Paris)" - -#~ msgid "AU (Sun/NeXT)" -#~ msgstr "AU (Sun/NeXT)" - -#~ msgid "IRCAM" -#~ msgstr "IRCAM" - -#~ msgid ".au" -#~ msgstr ".au" - -#~ msgid ".ircam" -#~ msgstr ".ircam" - -#~ msgid "FileSource: cannot get host information for BWF header (%1)" -#~ msgstr "" -#~ "Filkjelde: greier ikkje finna vertsinformasjonen for BWF-tittellinja (%1)" - -#~ msgid "%1: cannot seek to %2" -#~ msgstr "%1: greier ikkje leita fram til %2" - -#~ msgid "cleared history" -#~ msgstr "tømte historia" - -#~ msgid "" -#~ "programming error: illegal state ID (%1) passed to StateManager::set_state" -#~ "() (range = 0-%2)" -#~ msgstr "" -#~ "programmeringsfeil: ulovleg tilgangs-ID (%1) send til StateManager::" -#~ "set_state()-funksjonen (omrÃ¥de = 0-%2)" - -#, fuzzy -#~ msgid "move metric" -#~ msgstr "flytt taktart" - -#~ msgid "metric removed" -#~ msgstr "fjerna taktart" - -#~ msgid "add tempo" -#~ msgstr "legg til tempo" - -#~ msgid "replace tempo" -#~ msgstr "byt ut tempo" - -#~ msgid "add meter" -#~ msgstr "legg til taktart" - -#~ msgid "replaced meter" -#~ msgstr "bytte ut taktart" - -#~ msgid "load XML data" -#~ msgstr "last XML-data" - -#~ msgid "cannot create VST chunk directory: %1" -#~ msgstr "greier ikkje laga mappe for VST-bitar: %1" - -#~ msgid "cannot check VST chunk directory: %1" -#~ msgstr "greier ikkje sjekka mappe for VST-bitar: %1" - -#~ msgid "%1 exists but is not a directory" -#~ msgstr "%1 finst, men det er ikkje ei mappe" diff --git a/libs/ardour/po/pl.po b/libs/ardour/po/pl.po index c9a01282a5..86b04669da 100644 --- a/libs/ardour/po/pl.po +++ b/libs/ardour/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libardour3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-10-23 19:09+0200\n" "PO-Revision-Date: 2008-04-10 10:51+0100\n" "Last-Translator: Piotr Zaryk \n" "Language-Team: Polish \n" @@ -120,7 +120,7 @@ msgstr "" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2465 session.cc:2498 session.cc:3643 +#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "" @@ -185,60 +185,22 @@ msgstr "" msgid "VAMP Plugin \"%1\" could not be loaded" msgstr "" -#: audioengine.cc:186 -msgid "" -"This version of JACK is old - you should upgrade to a newer version that " -"supports jack_port_type_get_buffer_size()" +#: audioengine.cc:488 +msgid "looking for backends in %1\n" msgstr "" -#: audioengine.cc:190 -msgid "Connect session to engine" +#: audioengine.cc:511 +msgid "AudioEngine: cannot load module \"%1\" (%2)" msgstr "" -#: audioengine.cc:843 -msgid "" -"a port with the name \"%1\" already exists: check for duplicated track/bus " -"names" +#: audioengine.cc:517 +msgid "AudioEngine: backend at \"%1\" has no descriptor function." msgstr "" -#: audioengine.cc:845 session.cc:1698 -msgid "" -"No more JACK ports are available. You will need to stop %1 and restart JACK " -"with more ports if you need this many tracks." +#: audioengine.cc:589 +msgid "Could not create backend for %1: %2" msgstr "" -#: audioengine.cc:848 -msgid "AudioEngine: cannot register port \"%1\": %2" -msgstr "" - -#: audioengine.cc:878 -msgid "unable to create port: %1" -msgstr "" - -#: audioengine.cc:932 -msgid "connect called before engine was started" -msgstr "" - -#: audioengine.cc:958 -msgid "AudioEngine: cannot connect %1 (%2) to %3 (%4)" -msgstr "" - -#: audioengine.cc:973 audioengine.cc:1004 -msgid "disconnect called before engine was started" -msgstr "" - -#: audioengine.cc:1052 -msgid "get_port_by_name() called before engine was started" -msgstr "" - -#: audioengine.cc:1104 -msgid "get_ports called before engine was started" -msgstr "" - -#: audioengine.cc:1427 -msgid "failed to connect to JACK" -msgstr "nie udaÅ‚o siÄ™ połączyć z JACK" - #: audioregion.cc:1643 msgid "" "You have requested an operation that requires audio analysis.\n" @@ -292,9 +254,8 @@ msgid "%1: could not write peak file data (%2)" msgstr "" #: audiosource.cc:924 -#, fuzzy msgid "could not truncate peakfile %1 to %2 (error: %3)" -msgstr "nie można otworzyć pliku dźwiÄ™kowego metronomu %1 (%2)" +msgstr "" #: auditioner.cc:87 msgid "no outputs available for auditioner - manual connection required" @@ -419,7 +380,7 @@ msgstr "nie można zlokalizować taktowania CPU w /proc/cpuinfo" msgid "audio" msgstr "" -#: data_type.cc:28 session.cc:1640 session.cc:1643 +#: data_type.cc:28 session.cc:1790 session.cc:1793 msgid "MIDI" msgstr "" @@ -512,9 +473,8 @@ msgid "trim" msgstr "" #: export_format_specification.cc:543 -#, fuzzy msgid "trim start" -msgstr "poczÄ…tek" +msgstr "" #: export_format_specification.cc:545 msgid "trim end" @@ -532,7 +492,7 @@ msgstr "" msgid "Rectangular" msgstr "" -#: export_formats.cc:52 session.cc:4861 session.cc:4877 +#: export_formats.cc:52 session.cc:5008 session.cc:5024 msgid "None" msgstr "" @@ -601,9 +561,8 @@ msgid "Selection" msgstr "" #: export_profile_manager.cc:600 -#, fuzzy msgid "Unable to rename export format %1 to %2: %3" -msgstr "nie można byÅ‚o połączyć ponownie %1 i %2 (błąd = %3)" +msgstr "" #: export_profile_manager.cc:632 msgid "Unable to remove export profile %1: %2" @@ -643,7 +602,7 @@ msgid "" "configuration" msgstr "" -#: file_source.cc:198 session_state.cc:2891 +#: file_source.cc:198 session_state.cc:2807 msgid "" "there are already 1000 files with names like %1; versioning discontinued" msgstr "" @@ -680,11 +639,6 @@ msgid "" "continue working, but please report this to the developers." msgstr "" -#: file_source.cc:540 -#, fuzzy -msgid "cannot rename file %1 to %2 (%3)" -msgstr "nie można otworzyć pliku dźwiÄ™kowego metronomu %1 (%2)" - #: filesystem_paths.cc:73 msgid "Cannot create Configuration directory %1 - cannot run" msgstr "" @@ -739,23 +693,23 @@ msgstr "" msgid "unknown file type for session %1" msgstr "" -#: globals.cc:205 +#: globals.cc:207 msgid "Could not set system open files limit to \"unlimited\"" msgstr "" -#: globals.cc:207 +#: globals.cc:209 msgid "Could not set system open files limit to %1" msgstr "" -#: globals.cc:211 +#: globals.cc:213 msgid "Your system is configured to limit %1 to only %2 open files" msgstr "" -#: globals.cc:215 +#: globals.cc:217 msgid "Could not get system open files limit (%1)" msgstr "" -#: globals.cc:266 +#: globals.cc:268 msgid "Loading configuration" msgstr "" @@ -875,47 +829,47 @@ msgstr "" msgid "IO: bad output string in XML node \"%1\"" msgstr "" -#: io.cc:1410 +#: io.cc:1411 #, c-format msgid "%s %u" msgstr "%s %u" -#: io.cc:1457 +#: io.cc:1458 #, c-format msgid "%s in" msgstr "" -#: io.cc:1459 +#: io.cc:1460 #, c-format msgid "%s out" msgstr "" -#: io.cc:1534 session.cc:494 session.cc:523 +#: io.cc:1535 session.cc:685 session.cc:714 msgid "mono" msgstr "" -#: io.cc:1536 session.cc:507 session.cc:537 +#: io.cc:1537 session.cc:698 session.cc:728 msgid "L" msgstr "" -#: io.cc:1536 session.cc:509 session.cc:539 +#: io.cc:1537 session.cc:700 session.cc:730 msgid "R" msgstr "" -#: io.cc:1538 io.cc:1544 +#: io.cc:1539 io.cc:1545 #, c-format msgid "%d" msgstr "" -#: ladspa_plugin.cc:88 +#: ladspa_plugin.cc:86 msgid "LADSPA: module has no descriptor function." msgstr "" -#: ladspa_plugin.cc:93 +#: ladspa_plugin.cc:91 msgid "LADSPA: plugin has gone away since discovery!" msgstr "" -#: ladspa_plugin.cc:100 +#: ladspa_plugin.cc:98 msgid "LADSPA: \"%1\" cannot be used, since it cannot do inplace processing" msgstr "" @@ -993,7 +947,7 @@ msgstr "" msgid "incorrect XML mode passed to Locations::set_state" msgstr "" -#: location.cc:842 session.cc:4362 session_state.cc:1114 +#: location.cc:842 session.cc:4510 session_state.cc:1031 msgid "session" msgstr "" @@ -1121,25 +1075,9 @@ msgstr "" msgid "MIDI stretch created non-MIDI source" msgstr "" -#: monitor_processor.cc:53 -#, fuzzy -msgid "monitor dim" -msgstr "monitor" - -#: monitor_processor.cc:54 -#, fuzzy -msgid "monitor cut" -msgstr "monitor" - -#: monitor_processor.cc:55 -#, fuzzy -msgid "monitor mono" -msgstr "monitor" - #: monitor_processor.cc:58 -#, fuzzy msgid "monitor dim level" -msgstr "monitor" +msgstr "" #: monitor_processor.cc:62 msgid "monitor solo boost level" @@ -1161,21 +1099,21 @@ msgstr "" msgid "solo control" msgstr "" -#: mtc_slave.cc:235 +#: mtc_slave.cc:238 msgid "MTC Slave: atomic read of current time failed, sleeping!" msgstr "" -#: mtc_slave.cc:359 +#: mtc_slave.cc:361 msgid "" "Unknown rate/drop value %1 in incoming MTC stream, session values used " "instead" msgstr "" -#: mtc_slave.cc:379 +#: mtc_slave.cc:381 msgid "Session framerate adjusted from %1 TO: MTC's %2." msgstr "" -#: mtc_slave.cc:393 +#: mtc_slave.cc:395 msgid "Session and MTC framerate mismatch: MTC:%1 %2:%3." msgstr "" @@ -1183,11 +1121,6 @@ msgstr "" msgid "capture" msgstr "" -#: operations.cc:25 -#, fuzzy -msgid "paste" -msgstr "główna" - #: operations.cc:26 msgid "duplicate region" msgstr "" @@ -1240,19 +1173,19 @@ msgstr "" msgid "looking for panners in %1" msgstr "" -#: panner_manager.cc:99 +#: panner_manager.cc:100 msgid "Panner discovered: \"%1\" in %2" msgstr "" -#: panner_manager.cc:116 +#: panner_manager.cc:117 msgid "PannerManager: cannot load module \"%1\" (%2)" msgstr "" -#: panner_manager.cc:123 +#: panner_manager.cc:124 msgid "PannerManager: module \"%1\" has no descriptor function." msgstr "" -#: panner_manager.cc:186 +#: panner_manager.cc:187 msgid "no panner discovered for in/out = %1/%2" msgstr "" @@ -1362,11 +1295,7 @@ msgstr "" msgid "unknown plugin type \"%1\" - ignored" msgstr "" -#: port.cc:367 -msgid "get_connected_latency_range() called while disconnected from JACK" -msgstr "" - -#: port.cc:450 +#: port.cc:410 msgid "could not reregister %1" msgstr "nie można byÅ‚o zarejestrować %1" @@ -1382,6 +1311,34 @@ msgstr "" msgid "non-port insert XML used for port plugin insert" msgstr "" +#: port_manager.cc:270 +msgid "" +"a port with the name \"%1\" already exists: check for duplicated track/bus " +"names" +msgstr "" + +#: port_manager.cc:272 +msgid "" +"No more ports are available. You will need to stop %1 and restart with more " +"ports if you need this many tracks." +msgstr "" + +#: port_manager.cc:275 +msgid "AudioEngine: cannot register port \"%1\": %2" +msgstr "" + +#: port_manager.cc:314 +msgid "unable to create port: %1" +msgstr "" + +#: port_manager.cc:401 +msgid "AudioEngine: cannot connect %1 (%2) to %3 (%4)" +msgstr "" + +#: port_manager.cc:453 port_manager.cc:454 +msgid "Re-establising port %1 failed" +msgstr "" + #: processor.cc:207 msgid "No %1 property flag in element %2" msgstr "" @@ -1390,41 +1347,41 @@ msgstr "" msgid "No child node with active property" msgstr "" -#: rc_configuration.cc:93 +#: rc_configuration.cc:88 msgid "Loading system configuration file %1" msgstr "" -#: rc_configuration.cc:97 +#: rc_configuration.cc:92 msgid "%1: cannot read system configuration file \"%2\"" msgstr "" -#: rc_configuration.cc:102 +#: rc_configuration.cc:97 msgid "%1: system configuration file \"%2\" not loaded successfully." msgstr "" -#: rc_configuration.cc:106 +#: rc_configuration.cc:101 msgid "" "Your system %1 configuration file is empty. This probably means that there " "was an error installing %1" msgstr "" -#: rc_configuration.cc:121 +#: rc_configuration.cc:116 msgid "Loading user configuration file %1" msgstr "" -#: rc_configuration.cc:125 +#: rc_configuration.cc:120 msgid "%1: cannot read configuration file \"%2\"" msgstr "" -#: rc_configuration.cc:130 +#: rc_configuration.cc:125 msgid "%1: user configuration file \"%2\" not loaded successfully." msgstr "" -#: rc_configuration.cc:134 +#: rc_configuration.cc:129 msgid "your %1 configuration file is empty. This is not normal." msgstr "" -#: rc_configuration.cc:151 +#: rc_configuration.cc:146 msgid "Config file %1 not saved" msgstr "Plik konfiguracji %1 nie zapisany" @@ -1462,26 +1419,30 @@ msgstr "" msgid "return %1" msgstr "" -#: route.cc:1105 route.cc:2581 +#: route.cc:1075 route.cc:2528 msgid "unknown Processor type \"%1\"; ignored" msgstr "" -#: route.cc:1117 +#: route.cc:1087 msgid "processor could not be created. Ignored." msgstr "" -#: route.cc:2007 route.cc:2234 +#: route.cc:1962 route.cc:2187 msgid "Bad node sent to Route::set_state() [%1]" msgstr "" -#: route.cc:2067 +#: route.cc:2022 msgid "Pannable state found for route (%1) without a panner!" msgstr "" -#: route.cc:2137 route.cc:2141 route.cc:2348 route.cc:2352 +#: route.cc:2096 route.cc:2100 route.cc:2301 route.cc:2305 msgid "badly formed order key string in state file! [%1] ... ignored." msgstr "" +#: route.cc:2311 +msgid "Converting deprecated order key for %1 using Editor order %2" +msgstr "" + #: route_group.cc:459 msgid "You cannot subgroup MIDI tracks at this time" msgstr "" @@ -1506,186 +1467,167 @@ msgstr "" msgid "programming error: send created using role %1" msgstr "" -#: session.cc:347 -msgid "Set block size and sample rate" +#: session.cc:343 +msgid "Connect to engine" msgstr "" -#: session.cc:352 -msgid "Using configuration" +#: session.cc:348 +msgid "Session loading complete" msgstr "" -#: session.cc:377 -msgid "LTC In" +#: session.cc:420 +msgid "Set up LTC" msgstr "" -#: session.cc:378 -msgid "LTC Out" +#: session.cc:422 +msgid "Set up Click" msgstr "" -#: session.cc:404 -msgid "LTC-in" -msgstr "" - -#: session.cc:405 -msgid "LTC-out" -msgstr "" - -#: session.cc:434 -msgid "could not setup Click I/O" -msgstr "nie można byÅ‚o ustawić I/O metronomu" - -#: session.cc:461 -msgid "cannot setup Click I/O" -msgstr "nie można ustawić I/O metronomu" - -#: session.cc:464 -msgid "Compute I/O Latencies" -msgstr "" - -#: session.cc:470 +#: session.cc:424 msgid "Set up standard connections" msgstr "" -#: session.cc:491 +#: session.cc:634 +msgid "could not setup Click I/O" +msgstr "nie można byÅ‚o ustawić I/O metronomu" + +#: session.cc:682 #, c-format msgid "out %" msgstr "wyjÅ›cie %" -#: session.cc:505 +#: session.cc:696 #, c-format msgid "out %+%" msgstr "wyjÅ›cie %+%" -#: session.cc:520 +#: session.cc:711 #, c-format msgid "in %" msgstr "wejÅ›cie %" -#: session.cc:534 +#: session.cc:725 #, c-format msgid "in %+%" msgstr "wejÅ›cie %+%" -#: session.cc:570 -msgid "Setup signal flow and plugins" -msgstr "" - -#: session.cc:614 -msgid "Connect to engine" -msgstr "" - -#: session.cc:645 -#, fuzzy +#: session.cc:789 msgid "cannot connect master output %1 to %2" -msgstr "nie można ustawić głównych wyjść" +msgstr "" -#: session.cc:704 +#: session.cc:848 msgid "monitor" msgstr "monitor" -#: session.cc:749 +#: session.cc:893 msgid "cannot connect control input %1 to %2" msgstr "" -#: session.cc:769 +#: session.cc:913 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "" -#: session.cc:800 +#: session.cc:944 msgid "cannot connect control output %1 to %2" msgstr "" -#: session.cc:864 +#: session.cc:1008 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "" -#: session.cc:1043 +#: session.cc:1192 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" -#: session.cc:1083 +#: session.cc:1232 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" msgstr "" -#: session.cc:1396 +#: session.cc:1546 msgid "feedback loop setup between %1 and %2" msgstr "" -#: session.cc:1692 +#: session.cc:1842 msgid "Session: could not create new midi track." msgstr "" -#: session.cc:1875 session.cc:1878 +#: session.cc:1848 +msgid "" +"No more JACK ports are available. You will need to stop %1 and restart JACK " +"with more ports if you need this many tracks." +msgstr "" + +#: session.cc:2025 session.cc:2028 msgid "Audio" msgstr "" -#: session.cc:1902 session.cc:1910 session.cc:1987 session.cc:1995 +#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "" -#: session.cc:1933 +#: session.cc:2083 msgid "Session: could not create new audio track." msgstr "" -#: session.cc:1965 session.cc:1968 +#: session.cc:2115 session.cc:2118 msgid "Bus" msgstr "" -#: session.cc:2018 +#: session.cc:2168 msgid "Session: could not create new audio route." msgstr "" -#: session.cc:2077 session.cc:2087 +#: session.cc:2227 session.cc:2237 msgid "Session: UINT_MAX routes? impossible!" msgstr "" -#: session.cc:2109 +#: session.cc:2259 msgid "Session: cannot create track/bus from template description" msgstr "" -#: session.cc:2135 +#: session.cc:2285 msgid "Session: could not create new route from template" msgstr "" -#: session.cc:2164 +#: session.cc:2314 msgid "Adding new tracks/busses failed" msgstr "" -#: session.cc:3265 +#: session.cc:3413 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "" -#: session.cc:3385 session.cc:3443 +#: session.cc:3533 session.cc:3591 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "" -#: session.cc:3833 +#: session.cc:3981 msgid "send ID %1 appears to be in use already" msgstr "" -#: session.cc:3845 +#: session.cc:3993 msgid "aux send ID %1 appears to be in use already" msgstr "" -#: session.cc:3857 +#: session.cc:4005 msgid "return ID %1 appears to be in use already" msgstr "" -#: session.cc:3869 +#: session.cc:4017 msgid "insert ID %1 appears to be in use already" msgstr "" -#: session.cc:3996 +#: session.cc:4144 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "" -#: session.cc:4025 +#: session.cc:4173 msgid "too many bounced versions of playlist \"%1\"" msgstr "" -#: session.cc:4035 +#: session.cc:4183 msgid "cannot create new audio file \"%1\" for %2" msgstr "" @@ -1724,11 +1666,11 @@ msgstr "" msgid "Session: cannot have two events of type %1 at the same frame (%2)." msgstr "" -#: session_export.cc:126 +#: session_export.cc:125 msgid "%1: cannot seek to %2 for export" msgstr "" -#: session_export.cc:183 +#: session_export.cc:182 msgid "Export ended unexpectedly: %1" msgstr "" @@ -1738,10 +1680,6 @@ msgid "" "of this session." msgstr "" -#: session_midi.cc:428 -msgid "Session: could not send full MIDI time code" -msgstr "" - #: session_midi.cc:520 msgid "Session: cannot send quarter-frame MTC message (%1)" msgstr "" @@ -1750,385 +1688,364 @@ msgstr "" msgid "Session: cannot create Playlist from XML description." msgstr "" -#: session_process.cc:133 +#: session_process.cc:132 msgid "Session: error in no roll for %1" msgstr "" -#: session_process.cc:1158 +#: session_process.cc:1157 msgid "Programming error: illegal event type in process_event (%1)" msgstr "" -#: session_state.cc:139 -#, fuzzy +#: session_state.cc:140 msgid "Could not use path %1 (%2)" -msgstr "nie można byÅ‚o zarejestrować %1" +msgstr "" -#: session_state.cc:267 +#: session_state.cc:184 msgid "solo cut control (dB)" msgstr "" -#: session_state.cc:360 +#: session_state.cc:208 +msgid "Set block size and sample rate" +msgstr "" + +#: session_state.cc:213 +msgid "Using configuration" +msgstr "" + +#: session_state.cc:325 msgid "Reset Remote Controls" msgstr "" -#: session_state.cc:385 -msgid "Session loading complete" -msgstr "" - -#: session_state.cc:452 +#: session_state.cc:417 msgid "Session: cannot create session peakfile folder \"%1\" (%2)" msgstr "" -#: session_state.cc:459 -#, fuzzy +#: session_state.cc:424 msgid "Session: cannot create session sounds dir \"%1\" (%2)" -msgstr "Nie można utworzyć folderu dźwiÄ™ków sesji \"%1\" (%2)" +msgstr "" -#: session_state.cc:466 -#, fuzzy +#: session_state.cc:431 msgid "Session: cannot create session midi dir \"%1\" (%2)" -msgstr "Nie można utworzyć folderu dźwiÄ™ków sesji \"%1\" (%2)" +msgstr "" -#: session_state.cc:473 +#: session_state.cc:438 msgid "Session: cannot create session dead sounds folder \"%1\" (%2)" msgstr "" -#: session_state.cc:480 +#: session_state.cc:445 msgid "Session: cannot create session export folder \"%1\" (%2)" msgstr "" -#: session_state.cc:487 +#: session_state.cc:452 msgid "Session: cannot create session analysis folder \"%1\" (%2)" msgstr "" -#: session_state.cc:494 -#, fuzzy +#: session_state.cc:459 msgid "Session: cannot create session plugins folder \"%1\" (%2)" -msgstr "Nie można utworzyć folderu dźwiÄ™ków sesji \"%1\" (%2)" +msgstr "" -#: session_state.cc:501 -#, fuzzy +#: session_state.cc:466 msgid "Session: cannot create session externals folder \"%1\" (%2)" -msgstr "Nie można utworzyć folderu dźwiÄ™ków sesji \"%1\" (%2)" +msgstr "" -#: session_state.cc:515 +#: session_state.cc:480 msgid "Session: cannot create session folder \"%1\" (%2)" msgstr "" -#: session_state.cc:548 +#: session_state.cc:514 msgid "Could not open %1 for writing session template" msgstr "" -#: session_state.cc:554 +#: session_state.cc:520 msgid "Could not open session template %1 for reading" msgstr "" -#: session_state.cc:573 +#: session_state.cc:539 msgid "master" msgstr "główna" -#: session_state.cc:636 -#, fuzzy +#: session_state.cc:600 msgid "Could not remove pending capture state at path \"%1\" (%2)" -msgstr "nie można byÅ‚o zarejestrować %1" +msgstr "" -#: session_state.cc:660 -#, fuzzy +#: session_state.cc:624 msgid "could not rename snapshot %1 to %2 (%3)" -msgstr "nie można byÅ‚o połączyć ponownie %1 i %2 (błąd = %3)" +msgstr "" -#: session_state.cc:688 -#, fuzzy +#: session_state.cc:652 msgid "Could not remove session file at path \"%1\" (%2)" -msgstr "nie można byÅ‚o zarejestrować %1" +msgstr "" -#: session_state.cc:761 +#: session_state.cc:669 msgid "" "the %1 audio engine is not connected and state saving would lose all I/O " "connections. Session not saved" msgstr "" -#: session_state.cc:812 +#: session_state.cc:720 msgid "state could not be saved to %1" msgstr "" -#: session_state.cc:814 session_state.cc:825 -#, fuzzy +#: session_state.cc:722 session_state.cc:733 msgid "Could not remove temporary session file at path \"%1\" (%2)" -msgstr "nie można byÅ‚o zarejestrować %1" +msgstr "" -#: session_state.cc:822 +#: session_state.cc:730 msgid "could not rename temporary session file %1 to %2" msgstr "" -#: session_state.cc:890 +#: session_state.cc:798 msgid "%1: session file \"%2\" doesn't exist!" msgstr "" -#: session_state.cc:902 -#, fuzzy +#: session_state.cc:810 msgid "Could not understand session file %1" -msgstr "nie można byÅ‚o zarejestrować %1" +msgstr "" -#: session_state.cc:911 -#, fuzzy -msgid "Session file %1 is not a session" -msgstr "Plik konfiguracji %1 nie zapisany" - -#: session_state.cc:1208 +#: session_state.cc:1125 msgid "programming error: Session: incorrect XML node sent to set_state()" msgstr "" -#: session_state.cc:1257 +#: session_state.cc:1179 msgid "Session: XML state has no options section" msgstr "" -#: session_state.cc:1262 +#: session_state.cc:1184 msgid "Session: XML state has no metadata section" msgstr "" -#: session_state.cc:1273 +#: session_state.cc:1195 msgid "Session: XML state has no sources section" msgstr "" -#: session_state.cc:1280 +#: session_state.cc:1202 msgid "Session: XML state has no Tempo Map section" msgstr "" -#: session_state.cc:1287 +#: session_state.cc:1209 msgid "Session: XML state has no locations section" msgstr "" -#: session_state.cc:1313 +#: session_state.cc:1235 msgid "Session: XML state has no Regions section" msgstr "" -#: session_state.cc:1320 +#: session_state.cc:1242 msgid "Session: XML state has no playlists section" msgstr "" -#: session_state.cc:1340 +#: session_state.cc:1262 msgid "Session: XML state has no bundles section" msgstr "" -#: session_state.cc:1352 +#: session_state.cc:1274 msgid "Session: XML state has no diskstreams section" msgstr "" -#: session_state.cc:1360 +#: session_state.cc:1282 msgid "Session: XML state has no routes section" msgstr "" -#: session_state.cc:1372 +#: session_state.cc:1294 msgid "Session: XML state has no route groups section" msgstr "" -#: session_state.cc:1381 +#: session_state.cc:1303 msgid "Session: XML state has no edit groups section" msgstr "" -#: session_state.cc:1388 +#: session_state.cc:1310 msgid "Session: XML state has no mix groups section" msgstr "" -#: session_state.cc:1396 +#: session_state.cc:1318 msgid "Session: XML state has no click section" msgstr "" -#: session_state.cc:1444 +#: session_state.cc:1360 msgid "Session: cannot create Route from XML description." msgstr "" -#: session_state.cc:1448 +#: session_state.cc:1364 msgid "Loaded track/bus %1" msgstr "" -#: session_state.cc:1546 +#: session_state.cc:1462 msgid "Could not find diskstream for route" msgstr "" -#: session_state.cc:1600 +#: session_state.cc:1516 msgid "Session: cannot create Region from XML description." msgstr "" -#: session_state.cc:1604 +#: session_state.cc:1520 msgid "Can not load state for region '%1'" msgstr "" -#: session_state.cc:1640 +#: session_state.cc:1556 msgid "Regions in compound description not found (ID's %1 and %2): ignored" msgstr "" -#: session_state.cc:1668 +#: session_state.cc:1584 msgid "Nested source has no ID info in session file! (ignored)" msgstr "" -#: session_state.cc:1680 +#: session_state.cc:1596 msgid "Cannot reconstruct nested source for region %1" msgstr "" -#: session_state.cc:1742 +#: session_state.cc:1658 msgid "Session: XMLNode describing a AudioRegion is incomplete (no source)" msgstr "" -#: session_state.cc:1750 session_state.cc:1771 session_state.cc:1791 +#: session_state.cc:1666 session_state.cc:1687 session_state.cc:1707 msgid "" "Session: XMLNode describing a AudioRegion references an unknown source id =%1" msgstr "" -#: session_state.cc:1756 session_state.cc:1777 session_state.cc:1797 +#: session_state.cc:1672 session_state.cc:1693 session_state.cc:1713 msgid "" "Session: XMLNode describing a AudioRegion references a non-audio source id =" "%1" msgstr "" -#: session_state.cc:1820 +#: session_state.cc:1736 msgid "" "Session: XMLNode describing an AudioRegion is missing some master sources; " "ignored" msgstr "" -#: session_state.cc:1854 +#: session_state.cc:1770 msgid "Session: XMLNode describing a MidiRegion is incomplete (no source)" msgstr "" -#: session_state.cc:1862 +#: session_state.cc:1778 msgid "" "Session: XMLNode describing a MidiRegion references an unknown source id =%1" msgstr "" -#: session_state.cc:1868 +#: session_state.cc:1784 msgid "" "Session: XMLNode describing a MidiRegion references a non-midi source id =%1" msgstr "" -#: session_state.cc:1936 +#: session_state.cc:1852 msgid "" "cannot create new file from region name \"%1\" with ident = \"%2\": too many " "existing files with similar names" msgstr "" -#: session_state.cc:1959 +#: session_state.cc:1875 msgid "Session: cannot create Source from XML description." msgstr "" -#: session_state.cc:1993 +#: session_state.cc:1909 msgid "A sound file is missing. It will be replaced by silence." msgstr "" -#: session_state.cc:2016 +#: session_state.cc:1932 msgid "Found a sound file that cannot be used by %1. Talk to the progammers." msgstr "" -#: session_state.cc:2033 -#, fuzzy +#: session_state.cc:1949 msgid "Could not create templates directory \"%1\" (%2)" -msgstr "nie można otworzyć pliku dźwiÄ™kowego metronomu %1 (%2)" +msgstr "" -#: session_state.cc:2046 +#: session_state.cc:1962 msgid "Template \"%1\" already exists - new version not created" msgstr "" -#: session_state.cc:2052 -#, fuzzy +#: session_state.cc:1968 msgid "Could not create directory for Session template\"%1\" (%2)" -msgstr "nie można byÅ‚o zarejestrować %1" +msgstr "" -#: session_state.cc:2062 +#: session_state.cc:1978 msgid "template not saved" msgstr "" -#: session_state.cc:2072 +#: session_state.cc:1988 msgid "Could not create directory for Session template plugin state\"%1\" (%2)" msgstr "" -#: session_state.cc:2267 +#: session_state.cc:2183 msgid "Unknown node \"%1\" found in Bundles list from session file" msgstr "" -#: session_state.cc:2809 session_state.cc:2815 +#: session_state.cc:2725 session_state.cc:2731 msgid "Cannot expand path %1 (%2)" msgstr "" -#: session_state.cc:2868 -#, fuzzy +#: session_state.cc:2784 msgid "Session: cannot create dead file folder \"%1\" (%2)" -msgstr "Nie można utworzyć folderu dźwiÄ™ków sesji \"%1\" (%2)" +msgstr "" -#: session_state.cc:2907 -#, fuzzy +#: session_state.cc:2823 msgid "cannot rename unused file source from %1 to %2 (%3)" -msgstr "nie można otworzyć pliku dźwiÄ™kowego metronomu %1 (%2)" +msgstr "" -#: session_state.cc:2925 +#: session_state.cc:2841 msgid "cannot remove peakfile %1 for %2 (%3)" msgstr "" -#: session_state.cc:3227 +#: session_state.cc:3143 msgid "could not backup old history file, current history not saved" msgstr "" -#: session_state.cc:3240 +#: session_state.cc:3156 msgid "history could not be saved to %1" msgstr "" -#: session_state.cc:3243 -#, fuzzy +#: session_state.cc:3159 msgid "Could not remove history file at path \"%1\" (%2)" -msgstr "nie można byÅ‚o zarejestrować %1" +msgstr "" -#: session_state.cc:3247 -#, fuzzy -msgid "could not restore history file from backup %1 (%2)" -msgstr "nie można byÅ‚o zarejestrować %1" - -#: session_state.cc:3272 +#: session_state.cc:3188 msgid "%1: no history file \"%2\" for this session." msgstr "" -#: session_state.cc:3278 +#: session_state.cc:3194 msgid "Could not understand session history file \"%1\"" msgstr "" -#: session_state.cc:3320 +#: session_state.cc:3236 msgid "Failed to downcast MidiSource for NoteDiffCommand" msgstr "" -#: session_state.cc:3331 +#: session_state.cc:3247 msgid "Failed to downcast MidiSource for SysExDiffCommand" msgstr "" -#: session_state.cc:3342 +#: session_state.cc:3258 msgid "Failed to downcast MidiSource for PatchChangeDiffCommand" msgstr "" -#: session_state.cc:3350 +#: session_state.cc:3266 msgid "Couldn't figure out how to make a Command out of a %1 XMLNode." msgstr "" -#: session_state.cc:3602 +#: session_state.cc:3502 msgid "Session: unknown diskstream type in XML" msgstr "" -#: session_state.cc:3607 +#: session_state.cc:3507 msgid "Session: could not load diskstream via XML state" msgstr "" -#: session_time.cc:215 -msgid "Unknown JACK transport state %1 in sync callback" +#: session_time.cc:214 +msgid "Unknown transport state %1 in sync callback" msgstr "" -#: session_transport.cc:168 +#: session_transport.cc:167 msgid "Cannot loop - no loop range defined" msgstr "" -#: session_transport.cc:728 +#: session_transport.cc:739 msgid "" "Seamless looping cannot be supported while %1 is using JACK transport.\n" "Recommend changing the configured options" msgstr "" -#: session_transport.cc:1094 +#: session_transport.cc:1105 msgid "" "Global varispeed cannot be supported while %1 is connected to JACK transport " "control" @@ -2150,11 +2067,6 @@ msgstr "" msgid "Skipping event with unordered time %1" msgstr "" -#: smf_source.cc:410 -#, fuzzy -msgid "cannot open MIDI file %1 for write" -msgstr "nie można otworzyć pliku dźwiÄ™kowego metronomu %1 (%2)" - #: sndfile_helpers.cc:32 msgid "WAV" msgstr "WAV" @@ -2228,18 +2140,16 @@ msgid "Signed 8 bit PCM" msgstr "" #: sndfile_helpers.cc:68 -#, fuzzy msgid "32 bit float" -msgstr "32 bit" +msgstr "" #: sndfile_helpers.cc:81 msgid "Little-endian (Intel)" msgstr "Little-endian (Intel)" #: sndfile_helpers.cc:82 -#, fuzzy msgid "Big-endian (PowerPC)" -msgstr "Big-endian (Mac)" +msgstr "" #: sndfilesource.cc:201 msgid "SndFileSource: cannot open file \"%1\" for %2 (%3)" @@ -2274,7 +2184,7 @@ msgstr "" msgid "attempt to write a non-writable audio file source (%1)" msgstr "" -#: sndfilesource.cc:396 utils.cc:507 utils.cc:531 utils.cc:545 utils.cc:564 +#: sndfilesource.cc:396 utils.cc:510 utils.cc:534 utils.cc:548 utils.cc:567 msgid "programming error: %1 %2" msgstr "" @@ -2477,37 +2387,34 @@ msgid "Node for Port has no \"name\" property" msgstr "" #: utils.cc:358 utils.cc:382 -#, fuzzy msgid "Splice" -msgstr "Edycja klockowa" +msgstr "" #: utils.cc:360 utils.cc:375 -#, fuzzy msgid "Slide" -msgstr "Edycja Å›lizgowa" +msgstr "" #: utils.cc:362 utils.cc:378 -#, fuzzy msgid "Lock" -msgstr "Edycja zablokowana" +msgstr "" #: utils.cc:365 msgid "programming error: unknown edit mode string \"%1\"" msgstr "" -#: utils.cc:389 utils.cc:418 +#: utils.cc:389 utils.cc:421 msgid "MIDI Timecode" msgstr "" -#: utils.cc:389 utils.cc:416 +#: utils.cc:389 utils.cc:419 msgid "MTC" msgstr "MTC" -#: utils.cc:393 utils.cc:425 +#: utils.cc:393 utils.cc:428 msgid "MIDI Clock" msgstr "" -#: utils.cc:397 utils.cc:412 utils.cc:432 +#: utils.cc:397 utils.cc:415 utils.cc:435 msgid "JACK" msgstr "JACK" @@ -2515,74 +2422,10 @@ msgstr "JACK" msgid "programming error: unknown sync source string \"%1\"" msgstr "" -#: utils.cc:423 +#: utils.cc:426 msgid "M-Clock" msgstr "" -#: utils.cc:429 -#, fuzzy -msgid "LTC" -msgstr "MTC" - -#: utils.cc:599 +#: utils.cc:602 msgid "programming error: unknown native header format: %1" msgstr "" - -#: utils.cc:614 -#, fuzzy -msgid "cannot open directory %1 (%2)" -msgstr "nie można otworzyć pliku dźwiÄ™kowego metronomu %1 (%2)" - -#~ msgid "cannot open click emphasis soundfile %1 (%2)" -#~ msgstr "" -#~ "nie można otworzyć pliku dźwiÄ™kowego akcentowanego uderzenia metronomu %1 " -#~ "(%2)" - -#~ msgid "cannot read data from click emphasis soundfile" -#~ msgstr "" -#~ "nie można odczytać danych z pliku dźwiÄ™kowego akcentowanego uderzenia " -#~ "metronomu" - -#, fuzzy -#~ msgid "Session: cannot create session stub sounds dir \"%1\" (%2)" -#~ msgstr "Nie można utworzyć folderu dźwiÄ™ków sesji \"%1\" (%2)" - -#, fuzzy -#~ msgid "Session: cannot create session stub midi dir \"%1\" (%2)" -#~ msgstr "Nie można utworzyć folderu dźwiÄ™ków sesji \"%1\" (%2)" - -#~ msgid "in 1+2" -#~ msgstr "wejÅ›cie 1+2" - -#~ msgid "default" -#~ msgstr "domyÅ›lnie" - -#~ msgid "cannot setup master inputs" -#~ msgstr "nie można ustawić głównych wejść" - -#~ msgid "Master Out" -#~ msgstr "Główne wyjÅ›cie" - -#~ msgid "OSC startup" -#~ msgstr "poczÄ…tek OSC" - -#~ msgid "end" -#~ msgstr "koniec" - -#~ msgid "16 bit" -#~ msgstr "16 bit" - -#~ msgid "24 bit" -#~ msgstr "24 bit" - -#~ msgid "8 bit" -#~ msgstr "8 bit" - -#~ msgid "Internal" -#~ msgstr "Wew." - -#~ msgid "%s/out %u" -#~ msgstr "%s/wyjÅ›cie %u" - -#~ msgid "%s/in" -#~ msgstr "%s/wejÅ›cie" diff --git a/libs/ardour/po/ru.po b/libs/ardour/po/ru.po index 9d4f2d3bfa..2ef870835b 100644 --- a/libs/ardour/po/ru.po +++ b/libs/ardour/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libardour 3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-10-15 21:42+0400\n" +"POT-Creation-Date: 2013-10-23 19:07+0200\n" "PO-Revision-Date: 2013-10-15 21:40+0300\n" "Last-Translator: ÐлекÑандр Прокудин \n" "Language-Team: руÑÑкий <>\n" @@ -391,7 +391,7 @@ msgstr "" msgid "audio" msgstr "" -#: data_type.cc:28 session.cc:1788 session.cc:1791 +#: data_type.cc:28 session.cc:1790 session.cc:1793 msgid "MIDI" msgstr "" @@ -503,7 +503,7 @@ msgstr "Треугольное" msgid "Rectangular" msgstr "ПрÑмоугольное" -#: export_formats.cc:52 session.cc:5009 session.cc:5025 +#: export_formats.cc:52 session.cc:5008 session.cc:5024 msgid "None" msgstr "Ðет" @@ -859,15 +859,15 @@ msgstr "" msgid "%s out" msgstr "" -#: io.cc:1535 session.cc:683 session.cc:712 +#: io.cc:1535 session.cc:685 session.cc:714 msgid "mono" msgstr "" -#: io.cc:1537 session.cc:696 session.cc:726 +#: io.cc:1537 session.cc:698 session.cc:728 msgid "L" msgstr "" -#: io.cc:1537 session.cc:698 session.cc:728 +#: io.cc:1537 session.cc:700 session.cc:730 msgid "R" msgstr "" @@ -1094,38 +1094,6 @@ msgstr "" msgid "MIDI stretch created non-MIDI source" msgstr "" -#: midiport_manager.cc:71 -msgid "MIDI control in" -msgstr "" - -#: midiport_manager.cc:72 -msgid "MIDI control out" -msgstr "" - -#: midiport_manager.cc:74 -msgid "MMC in" -msgstr "" - -#: midiport_manager.cc:75 -msgid "MMC out" -msgstr "" - -#: midiport_manager.cc:96 -msgid "MTC in" -msgstr "" - -#: midiport_manager.cc:98 -msgid "MTC out" -msgstr "" - -#: midiport_manager.cc:101 -msgid "MIDI Clock in" -msgstr "" - -#: midiport_manager.cc:103 -msgid "MIDI Clock out" -msgstr "" - #: monitor_processor.cc:53 msgid "monitor dim" msgstr "" @@ -1486,26 +1454,30 @@ msgstr "" msgid "return %1" msgstr "" -#: route.cc:1107 route.cc:2584 +#: route.cc:1075 route.cc:2528 msgid "unknown Processor type \"%1\"; ignored" msgstr "" -#: route.cc:1119 +#: route.cc:1087 msgid "processor could not be created. Ignored." msgstr "" -#: route.cc:2010 route.cc:2237 +#: route.cc:1962 route.cc:2187 msgid "Bad node sent to Route::set_state() [%1]" msgstr "" -#: route.cc:2070 +#: route.cc:2022 msgid "Pannable state found for route (%1) without a panner!" msgstr "" -#: route.cc:2140 route.cc:2144 route.cc:2351 route.cc:2355 +#: route.cc:2096 route.cc:2100 route.cc:2301 route.cc:2305 msgid "badly formed order key string in state file! [%1] ... ignored." msgstr "" +#: route.cc:2311 +msgid "Converting deprecated order key for %1 using Editor order %2" +msgstr "" + #: route_group.cc:459 msgid "You cannot subgroup MIDI tracks at this time" msgstr "" @@ -1550,127 +1522,111 @@ msgstr "" msgid "Set up standard connections" msgstr "ÐаÑтройка обычных Ñоединений" -#: session.cc:561 -msgid "LTC In" -msgstr "" - -#: session.cc:562 -msgid "LTC Out" -msgstr "" - -#: session.cc:588 -msgid "LTC-in" -msgstr "" - -#: session.cc:589 -msgid "LTC-out" -msgstr "" - -#: session.cc:632 +#: session.cc:634 msgid "could not setup Click I/O" msgstr "" -#: session.cc:680 +#: session.cc:682 #, c-format msgid "out %" msgstr "" -#: session.cc:694 +#: session.cc:696 #, c-format msgid "out %+%" msgstr "" -#: session.cc:709 +#: session.cc:711 #, c-format msgid "in %" msgstr "" -#: session.cc:723 +#: session.cc:725 #, c-format msgid "in %+%" msgstr "" -#: session.cc:787 +#: session.cc:789 msgid "cannot connect master output %1 to %2" msgstr "" -#: session.cc:846 +#: session.cc:848 msgid "monitor" msgstr "" -#: session.cc:891 +#: session.cc:893 msgid "cannot connect control input %1 to %2" msgstr "" -#: session.cc:911 +#: session.cc:913 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "" -#: session.cc:942 +#: session.cc:944 msgid "cannot connect control output %1 to %2" msgstr "" -#: session.cc:1006 +#: session.cc:1008 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "" -#: session.cc:1190 +#: session.cc:1192 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" -#: session.cc:1230 +#: session.cc:1232 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" msgstr "" -#: session.cc:1544 +#: session.cc:1546 msgid "feedback loop setup between %1 and %2" msgstr "" -#: session.cc:1840 +#: session.cc:1842 msgid "Session: could not create new midi track." msgstr "" -#: session.cc:1846 +#: session.cc:1848 msgid "" "No more JACK ports are available. You will need to stop %1 and restart JACK " "with more ports if you need this many tracks." msgstr "" -#: session.cc:2023 session.cc:2026 +#: session.cc:2025 session.cc:2028 msgid "Audio" msgstr "" -#: session.cc:2050 session.cc:2058 session.cc:2135 session.cc:2143 +#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "" -#: session.cc:2081 +#: session.cc:2083 msgid "Session: could not create new audio track." msgstr "" -#: session.cc:2113 session.cc:2116 +#: session.cc:2115 session.cc:2118 msgid "Bus" msgstr "" -#: session.cc:2166 +#: session.cc:2168 msgid "Session: could not create new audio route." msgstr "" -#: session.cc:2225 session.cc:2235 +#: session.cc:2227 session.cc:2237 msgid "Session: UINT_MAX routes? impossible!" msgstr "" -#: session.cc:2257 +#: session.cc:2259 msgid "Session: cannot create track/bus from template description" msgstr "" -#: session.cc:2283 +#: session.cc:2285 msgid "Session: could not create new route from template" msgstr "" -#: session.cc:2312 +#: session.cc:2314 msgid "Adding new tracks/busses failed" msgstr "Ðе удалоÑÑŒ добавить новые дорожки/шины" @@ -2110,11 +2066,11 @@ msgstr "" msgid "Couldn't figure out how to make a Command out of a %1 XMLNode." msgstr "" -#: session_state.cc:3518 +#: session_state.cc:3502 msgid "Session: unknown diskstream type in XML" msgstr "" -#: session_state.cc:3523 +#: session_state.cc:3507 msgid "Session: could not load diskstream via XML state" msgstr "" @@ -2528,66 +2484,3 @@ msgstr "programming error: unknown native header format: %1" #: utils.cc:617 msgid "cannot open directory %1 (%2)" msgstr "cannot open directory %1 (%2)" - -#~ msgid "Setup signal flow and plugins" -#~ msgstr "ÐаÑтройка модулей и звукового потока" - -#~ msgid "Session" -#~ msgstr "СеанÑ" - -#, fuzzy -#~ msgid "editor" -#~ msgstr "монитор" - -#, fuzzy -#~ msgid "programming error: realpath(%1) failed, errcode %2" -#~ msgstr "ошибка программы: " - -#, fuzzy -#~ msgid "programming error:" -#~ msgstr "ошибка программы: " - -#~ msgid "cannot activate JACK client" -#~ msgstr "не удалоÑÑŒ активировать клиента JACK Ñервера" - -#, fuzzy -#~ msgid "removed event" -#~ msgstr "удалить облаÑть" - -#, fuzzy -#~ msgid "removed range" -#~ msgstr "удалить облаÑть" - -#~ msgid "add" -#~ msgstr "добавить" - -#~ msgid "remove" -#~ msgstr "удалить" - -#~ msgid "remove region" -#~ msgstr "удалить облаÑть" - -#~ msgid "separate" -#~ msgstr "разделить" - -#~ msgid "split" -#~ msgstr "Ñклеить" - -#~ msgid "pre" -#~ msgstr "пре" - -#~ msgid "post" -#~ msgstr "поÑÑ‚" - -#, fuzzy -#~ msgid "Master Out" -#~ msgstr "маÑтер" - -#~ msgid "16 bit" -#~ msgstr "16 бит" - -#~ msgid "24 bit" -#~ msgstr "24 бита" - -#~ msgid "8 bit" -#~ msgstr "8 бит" diff --git a/libs/ardour/po/sv.po b/libs/ardour/po/sv.po index 2e7c6e0ddc..899b6bfeab 100644 --- a/libs/ardour/po/sv.po +++ b/libs/ardour/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ardour\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-10-23 19:09+0200\n" "PO-Revision-Date: 2006-10-03 01:09+GMT+1\n" "Last-Translator: Petter Sundlöf \n" "Language-Team: Swedish \n" @@ -120,7 +120,7 @@ msgstr "" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2465 session.cc:2498 session.cc:3643 +#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "" @@ -146,9 +146,8 @@ msgid "" msgstr "" #: audio_track.cc:167 -#, fuzzy msgid "Unknown bundle \"%1\" listed for input of %2" -msgstr "Okänd anslutning \"%1\" listad för %2 av %3" +msgstr "" #: audio_track.cc:169 msgid "in 1" @@ -159,9 +158,8 @@ msgid "No input bundles available as a replacement" msgstr "" #: audio_track.cc:174 -#, fuzzy msgid "Bundle %1 was not available - \"in 1\" used instead" -msgstr "Anslutning %1 inte tillgänglig - \"in 1\" används instället" +msgstr "" #: audio_track.cc:183 msgid "improper input channel list in XML node (%1)" @@ -187,60 +185,16 @@ msgstr "" msgid "VAMP Plugin \"%1\" could not be loaded" msgstr "" -#: audioengine.cc:186 -msgid "" -"This version of JACK is old - you should upgrade to a newer version that " -"supports jack_port_type_get_buffer_size()" +#: audioengine.cc:488 +msgid "looking for backends in %1\n" msgstr "" -#: audioengine.cc:190 -#, fuzzy -msgid "Connect session to engine" -msgstr "Ansluter till ljudmotorn" - -#: audioengine.cc:843 -msgid "" -"a port with the name \"%1\" already exists: check for duplicated track/bus " -"names" +#: audioengine.cc:517 +msgid "AudioEngine: backend at \"%1\" has no descriptor function." msgstr "" -#: audioengine.cc:845 session.cc:1698 -msgid "" -"No more JACK ports are available. You will need to stop %1 and restart JACK " -"with more ports if you need this many tracks." -msgstr "" - -#: audioengine.cc:848 -#, fuzzy -msgid "AudioEngine: cannot register port \"%1\": %2" -msgstr "AudioEngine: kan inte ansluta %1 (%2) till %3 (%4)" - -#: audioengine.cc:878 -msgid "unable to create port: %1" -msgstr "" - -#: audioengine.cc:932 -msgid "connect called before engine was started" -msgstr "" - -#: audioengine.cc:958 -msgid "AudioEngine: cannot connect %1 (%2) to %3 (%4)" -msgstr "AudioEngine: kan inte ansluta %1 (%2) till %3 (%4)" - -#: audioengine.cc:973 audioengine.cc:1004 -msgid "disconnect called before engine was started" -msgstr "" - -#: audioengine.cc:1052 -msgid "get_port_by_name() called before engine was started" -msgstr "" - -#: audioengine.cc:1104 -msgid "get_ports called before engine was started" -msgstr "" - -#: audioengine.cc:1427 -msgid "failed to connect to JACK" +#: audioengine.cc:589 +msgid "Could not create backend for %1: %2" msgstr "" #: audioregion.cc:1643 @@ -270,16 +224,6 @@ msgstr "" msgid "cannot read sample data for unscaled peak computation" msgstr "" -#: audiosource.cc:387 -#, fuzzy -msgid "AudioSource: cannot open peakpath (a) \"%1\" (%2)" -msgstr "AudioEngine: kan inte ansluta %1 (%2) till %3 (%4)" - -#: audiosource.cc:463 -#, fuzzy -msgid "AudioSource: cannot open peakpath (b) \"%1\" (%2)" -msgstr "AudioEngine: kan inte ansluta %1 (%2) till %3 (%4)" - #: audiosource.cc:587 msgid "" "AudioSource[%1]: peak read - cannot read %2 samples at offset %3 of %4 (%5)" @@ -289,11 +233,6 @@ msgstr "" msgid "%1: could not write read raw data for peak computation (%2)" msgstr "" -#: audiosource.cc:706 -#, fuzzy -msgid "AudioSource: cannot open peakpath (c) \"%1\" (%2)" -msgstr "AudioEngine: kan inte ansluta %1 (%2) till %3 (%4)" - #: audiosource.cc:773 audiosource.cc:886 msgid "%1: could not write peak file data (%2)" msgstr "" @@ -425,7 +364,7 @@ msgstr "" msgid "audio" msgstr "" -#: data_type.cc:28 session.cc:1640 session.cc:1643 +#: data_type.cc:28 session.cc:1790 session.cc:1793 msgid "MIDI" msgstr "" @@ -537,7 +476,7 @@ msgstr "" msgid "Rectangular" msgstr "" -#: export_formats.cc:52 session.cc:4861 session.cc:4877 +#: export_formats.cc:52 session.cc:5008 session.cc:5024 msgid "None" msgstr "" @@ -617,15 +556,9 @@ msgstr "" msgid "empty format" msgstr "" -#: export_profile_manager.cc:818 -#, fuzzy -msgid "No timespan has been selected!" -msgstr "Inget format valt!" - #: export_profile_manager.cc:822 -#, fuzzy msgid "No channels have been selected!" -msgstr "Inget format valt!" +msgstr "" #: export_profile_manager.cc:826 msgid "Some channels are empty" @@ -649,7 +582,7 @@ msgid "" "configuration" msgstr "" -#: file_source.cc:198 session_state.cc:2891 +#: file_source.cc:198 session_state.cc:2807 msgid "" "there are already 1000 files with names like %1; versioning discontinued" msgstr "" @@ -744,23 +677,23 @@ msgstr "" msgid "unknown file type for session %1" msgstr "" -#: globals.cc:205 +#: globals.cc:207 msgid "Could not set system open files limit to \"unlimited\"" msgstr "" -#: globals.cc:207 +#: globals.cc:209 msgid "Could not set system open files limit to %1" msgstr "" -#: globals.cc:211 +#: globals.cc:213 msgid "Your system is configured to limit %1 to only %2 open files" msgstr "" -#: globals.cc:215 +#: globals.cc:217 msgid "Could not get system open files limit (%1)" msgstr "" -#: globals.cc:266 +#: globals.cc:268 msgid "Loading configuration" msgstr "" @@ -836,11 +769,6 @@ msgstr "" msgid "in" msgstr "" -#: io.cc:706 -#, fuzzy -msgid "out" -msgstr "utgÃ¥ng" - #: io.cc:707 msgid "input" msgstr "ingÃ¥ng" @@ -850,14 +778,12 @@ msgid "output" msgstr "utgÃ¥ng" #: io.cc:717 -#, fuzzy msgid "Unknown bundle \"%1\" listed for %2 of %3" -msgstr "Okänd anslutning \"%1\" listad för %2 av %3" +msgstr "" #: io.cc:783 -#, fuzzy msgid "Bundle %1 was not available - \"%2\" used instead" -msgstr "Anslutning %1 inte tillgänglig - \"%2\" används istället" +msgstr "" #: io.cc:786 msgid "No %1 bundles available as a replacement" @@ -883,47 +809,47 @@ msgstr "" msgid "IO: bad output string in XML node \"%1\"" msgstr "" -#: io.cc:1410 +#: io.cc:1411 #, c-format msgid "%s %u" msgstr "" -#: io.cc:1457 +#: io.cc:1458 #, c-format msgid "%s in" msgstr "" -#: io.cc:1459 +#: io.cc:1460 #, c-format msgid "%s out" msgstr "" -#: io.cc:1534 session.cc:494 session.cc:523 +#: io.cc:1535 session.cc:685 session.cc:714 msgid "mono" msgstr "" -#: io.cc:1536 session.cc:507 session.cc:537 +#: io.cc:1537 session.cc:698 session.cc:728 msgid "L" msgstr "" -#: io.cc:1536 session.cc:509 session.cc:539 +#: io.cc:1537 session.cc:700 session.cc:730 msgid "R" msgstr "" -#: io.cc:1538 io.cc:1544 +#: io.cc:1539 io.cc:1545 #, c-format msgid "%d" msgstr "" -#: ladspa_plugin.cc:88 +#: ladspa_plugin.cc:86 msgid "LADSPA: module has no descriptor function." msgstr "" -#: ladspa_plugin.cc:93 +#: ladspa_plugin.cc:91 msgid "LADSPA: plugin has gone away since discovery!" msgstr "" -#: ladspa_plugin.cc:100 +#: ladspa_plugin.cc:98 msgid "LADSPA: \"%1\" cannot be used, since it cannot do inplace processing" msgstr "" @@ -1001,7 +927,7 @@ msgstr "" msgid "incorrect XML mode passed to Locations::set_state" msgstr "" -#: location.cc:842 session.cc:4362 session_state.cc:1114 +#: location.cc:842 session.cc:4510 session_state.cc:1031 msgid "session" msgstr "" @@ -1165,21 +1091,21 @@ msgstr "" msgid "solo control" msgstr "" -#: mtc_slave.cc:235 +#: mtc_slave.cc:238 msgid "MTC Slave: atomic read of current time failed, sleeping!" msgstr "" -#: mtc_slave.cc:359 +#: mtc_slave.cc:361 msgid "" "Unknown rate/drop value %1 in incoming MTC stream, session values used " "instead" msgstr "" -#: mtc_slave.cc:379 +#: mtc_slave.cc:381 msgid "Session framerate adjusted from %1 TO: MTC's %2." msgstr "" -#: mtc_slave.cc:393 +#: mtc_slave.cc:395 msgid "Session and MTC framerate mismatch: MTC:%1 %2:%3." msgstr "" @@ -1243,19 +1169,19 @@ msgstr "" msgid "looking for panners in %1" msgstr "" -#: panner_manager.cc:99 +#: panner_manager.cc:100 msgid "Panner discovered: \"%1\" in %2" msgstr "" -#: panner_manager.cc:116 +#: panner_manager.cc:117 msgid "PannerManager: cannot load module \"%1\" (%2)" msgstr "" -#: panner_manager.cc:123 +#: panner_manager.cc:124 msgid "PannerManager: module \"%1\" has no descriptor function." msgstr "" -#: panner_manager.cc:186 +#: panner_manager.cc:187 msgid "no panner discovered for in/out = %1/%2" msgstr "" @@ -1365,11 +1291,7 @@ msgstr "" msgid "unknown plugin type \"%1\" - ignored" msgstr "" -#: port.cc:367 -msgid "get_connected_latency_range() called while disconnected from JACK" -msgstr "" - -#: port.cc:450 +#: port.cc:410 msgid "could not reregister %1" msgstr "" @@ -1385,6 +1307,30 @@ msgstr "" msgid "non-port insert XML used for port plugin insert" msgstr "" +#: port_manager.cc:270 +msgid "" +"a port with the name \"%1\" already exists: check for duplicated track/bus " +"names" +msgstr "" + +#: port_manager.cc:272 +msgid "" +"No more ports are available. You will need to stop %1 and restart with more " +"ports if you need this many tracks." +msgstr "" + +#: port_manager.cc:314 +msgid "unable to create port: %1" +msgstr "" + +#: port_manager.cc:401 +msgid "AudioEngine: cannot connect %1 (%2) to %3 (%4)" +msgstr "AudioEngine: kan inte ansluta %1 (%2) till %3 (%4)" + +#: port_manager.cc:453 port_manager.cc:454 +msgid "Re-establising port %1 failed" +msgstr "" + #: processor.cc:207 msgid "No %1 property flag in element %2" msgstr "" @@ -1393,41 +1339,41 @@ msgstr "" msgid "No child node with active property" msgstr "" -#: rc_configuration.cc:93 +#: rc_configuration.cc:88 msgid "Loading system configuration file %1" msgstr "" -#: rc_configuration.cc:97 +#: rc_configuration.cc:92 msgid "%1: cannot read system configuration file \"%2\"" msgstr "" -#: rc_configuration.cc:102 +#: rc_configuration.cc:97 msgid "%1: system configuration file \"%2\" not loaded successfully." msgstr "" -#: rc_configuration.cc:106 +#: rc_configuration.cc:101 msgid "" "Your system %1 configuration file is empty. This probably means that there " "was an error installing %1" msgstr "" -#: rc_configuration.cc:121 +#: rc_configuration.cc:116 msgid "Loading user configuration file %1" msgstr "" -#: rc_configuration.cc:125 +#: rc_configuration.cc:120 msgid "%1: cannot read configuration file \"%2\"" msgstr "" -#: rc_configuration.cc:130 +#: rc_configuration.cc:125 msgid "%1: user configuration file \"%2\" not loaded successfully." msgstr "" -#: rc_configuration.cc:134 +#: rc_configuration.cc:129 msgid "your %1 configuration file is empty. This is not normal." msgstr "" -#: rc_configuration.cc:151 +#: rc_configuration.cc:146 msgid "Config file %1 not saved" msgstr "" @@ -1465,26 +1411,30 @@ msgstr "" msgid "return %1" msgstr "" -#: route.cc:1105 route.cc:2581 +#: route.cc:1075 route.cc:2528 msgid "unknown Processor type \"%1\"; ignored" msgstr "" -#: route.cc:1117 +#: route.cc:1087 msgid "processor could not be created. Ignored." msgstr "" -#: route.cc:2007 route.cc:2234 +#: route.cc:1962 route.cc:2187 msgid "Bad node sent to Route::set_state() [%1]" msgstr "" -#: route.cc:2067 +#: route.cc:2022 msgid "Pannable state found for route (%1) without a panner!" msgstr "" -#: route.cc:2137 route.cc:2141 route.cc:2348 route.cc:2352 +#: route.cc:2096 route.cc:2100 route.cc:2301 route.cc:2305 msgid "badly formed order key string in state file! [%1] ... ignored." msgstr "" +#: route.cc:2311 +msgid "Converting deprecated order key for %1 using Editor order %2" +msgstr "" + #: route_group.cc:459 msgid "You cannot subgroup MIDI tracks at this time" msgstr "" @@ -1509,185 +1459,167 @@ msgstr "" msgid "programming error: send created using role %1" msgstr "" -#: session.cc:347 -msgid "Set block size and sample rate" +#: session.cc:343 +msgid "Connect to engine" +msgstr "Ansluter till ljudmotorn" + +#: session.cc:348 +msgid "Session loading complete" msgstr "" -#: session.cc:352 -msgid "Using configuration" +#: session.cc:420 +msgid "Set up LTC" msgstr "" -#: session.cc:377 -msgid "LTC In" +#: session.cc:422 +msgid "Set up Click" msgstr "" -#: session.cc:378 -msgid "LTC Out" -msgstr "" - -#: session.cc:404 -msgid "LTC-in" -msgstr "" - -#: session.cc:405 -msgid "LTC-out" -msgstr "" - -#: session.cc:434 -msgid "could not setup Click I/O" -msgstr "" - -#: session.cc:461 -msgid "cannot setup Click I/O" -msgstr "" - -#: session.cc:464 -msgid "Compute I/O Latencies" -msgstr "" - -#: session.cc:470 +#: session.cc:424 msgid "Set up standard connections" msgstr "" -#: session.cc:491 +#: session.cc:634 +msgid "could not setup Click I/O" +msgstr "" + +#: session.cc:682 #, c-format msgid "out %" msgstr "" -#: session.cc:505 +#: session.cc:696 #, c-format msgid "out %+%" msgstr "" -#: session.cc:520 +#: session.cc:711 #, c-format msgid "in %" msgstr "" -#: session.cc:534 +#: session.cc:725 #, c-format msgid "in %+%" msgstr "" -#: session.cc:570 -msgid "Setup signal flow and plugins" -msgstr "Ställer in signalflöde och insticksprogram" - -#: session.cc:614 -msgid "Connect to engine" -msgstr "Ansluter till ljudmotorn" - -#: session.cc:645 +#: session.cc:789 msgid "cannot connect master output %1 to %2" msgstr "" -#: session.cc:704 +#: session.cc:848 msgid "monitor" msgstr "" -#: session.cc:749 +#: session.cc:893 msgid "cannot connect control input %1 to %2" msgstr "" -#: session.cc:769 +#: session.cc:913 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "" -#: session.cc:800 +#: session.cc:944 msgid "cannot connect control output %1 to %2" msgstr "" -#: session.cc:864 +#: session.cc:1008 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "" -#: session.cc:1043 +#: session.cc:1192 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" -#: session.cc:1083 +#: session.cc:1232 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" msgstr "" -#: session.cc:1396 +#: session.cc:1546 msgid "feedback loop setup between %1 and %2" msgstr "" -#: session.cc:1692 +#: session.cc:1842 msgid "Session: could not create new midi track." msgstr "" -#: session.cc:1875 session.cc:1878 +#: session.cc:1848 +msgid "" +"No more JACK ports are available. You will need to stop %1 and restart JACK " +"with more ports if you need this many tracks." +msgstr "" + +#: session.cc:2025 session.cc:2028 msgid "Audio" msgstr "" -#: session.cc:1902 session.cc:1910 session.cc:1987 session.cc:1995 +#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "" -#: session.cc:1933 +#: session.cc:2083 msgid "Session: could not create new audio track." msgstr "" -#: session.cc:1965 session.cc:1968 +#: session.cc:2115 session.cc:2118 msgid "Bus" msgstr "" -#: session.cc:2018 +#: session.cc:2168 msgid "Session: could not create new audio route." msgstr "" -#: session.cc:2077 session.cc:2087 +#: session.cc:2227 session.cc:2237 msgid "Session: UINT_MAX routes? impossible!" msgstr "" -#: session.cc:2109 +#: session.cc:2259 msgid "Session: cannot create track/bus from template description" msgstr "" -#: session.cc:2135 +#: session.cc:2285 msgid "Session: could not create new route from template" msgstr "" -#: session.cc:2164 +#: session.cc:2314 msgid "Adding new tracks/busses failed" msgstr "" -#: session.cc:3265 +#: session.cc:3413 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "" -#: session.cc:3385 session.cc:3443 +#: session.cc:3533 session.cc:3591 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "" -#: session.cc:3833 +#: session.cc:3981 msgid "send ID %1 appears to be in use already" msgstr "" -#: session.cc:3845 +#: session.cc:3993 msgid "aux send ID %1 appears to be in use already" msgstr "" -#: session.cc:3857 +#: session.cc:4005 msgid "return ID %1 appears to be in use already" msgstr "" -#: session.cc:3869 +#: session.cc:4017 msgid "insert ID %1 appears to be in use already" msgstr "" -#: session.cc:3996 +#: session.cc:4144 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "" -#: session.cc:4025 +#: session.cc:4173 msgid "too many bounced versions of playlist \"%1\"" msgstr "" -#: session.cc:4035 +#: session.cc:4183 msgid "cannot create new audio file \"%1\" for %2" msgstr "" @@ -1726,11 +1658,11 @@ msgstr "" msgid "Session: cannot have two events of type %1 at the same frame (%2)." msgstr "" -#: session_export.cc:126 +#: session_export.cc:125 msgid "%1: cannot seek to %2 for export" msgstr "" -#: session_export.cc:183 +#: session_export.cc:182 msgid "Export ended unexpectedly: %1" msgstr "" @@ -1740,10 +1672,6 @@ msgid "" "of this session." msgstr "" -#: session_midi.cc:428 -msgid "Session: could not send full MIDI time code" -msgstr "" - #: session_midi.cc:520 msgid "Session: cannot send quarter-frame MTC message (%1)" msgstr "" @@ -1752,368 +1680,372 @@ msgstr "" msgid "Session: cannot create Playlist from XML description." msgstr "" -#: session_process.cc:133 +#: session_process.cc:132 msgid "Session: error in no roll for %1" msgstr "" -#: session_process.cc:1158 +#: session_process.cc:1157 msgid "Programming error: illegal event type in process_event (%1)" msgstr "" -#: session_state.cc:139 +#: session_state.cc:140 msgid "Could not use path %1 (%2)" msgstr "" -#: session_state.cc:267 +#: session_state.cc:184 msgid "solo cut control (dB)" msgstr "" -#: session_state.cc:360 +#: session_state.cc:208 +msgid "Set block size and sample rate" +msgstr "" + +#: session_state.cc:213 +msgid "Using configuration" +msgstr "" + +#: session_state.cc:325 msgid "Reset Remote Controls" msgstr "" -#: session_state.cc:385 -msgid "Session loading complete" -msgstr "" - -#: session_state.cc:452 +#: session_state.cc:417 msgid "Session: cannot create session peakfile folder \"%1\" (%2)" msgstr "" -#: session_state.cc:459 +#: session_state.cc:424 msgid "Session: cannot create session sounds dir \"%1\" (%2)" msgstr "" -#: session_state.cc:466 +#: session_state.cc:431 msgid "Session: cannot create session midi dir \"%1\" (%2)" msgstr "" -#: session_state.cc:473 +#: session_state.cc:438 msgid "Session: cannot create session dead sounds folder \"%1\" (%2)" msgstr "" -#: session_state.cc:480 +#: session_state.cc:445 msgid "Session: cannot create session export folder \"%1\" (%2)" msgstr "" -#: session_state.cc:487 +#: session_state.cc:452 msgid "Session: cannot create session analysis folder \"%1\" (%2)" msgstr "" -#: session_state.cc:494 +#: session_state.cc:459 msgid "Session: cannot create session plugins folder \"%1\" (%2)" msgstr "" -#: session_state.cc:501 +#: session_state.cc:466 msgid "Session: cannot create session externals folder \"%1\" (%2)" msgstr "" -#: session_state.cc:515 +#: session_state.cc:480 msgid "Session: cannot create session folder \"%1\" (%2)" msgstr "" -#: session_state.cc:548 +#: session_state.cc:514 msgid "Could not open %1 for writing session template" msgstr "" -#: session_state.cc:554 +#: session_state.cc:520 msgid "Could not open session template %1 for reading" msgstr "" -#: session_state.cc:573 +#: session_state.cc:539 msgid "master" msgstr "" -#: session_state.cc:636 +#: session_state.cc:600 msgid "Could not remove pending capture state at path \"%1\" (%2)" msgstr "" -#: session_state.cc:660 +#: session_state.cc:624 msgid "could not rename snapshot %1 to %2 (%3)" msgstr "" -#: session_state.cc:688 +#: session_state.cc:652 msgid "Could not remove session file at path \"%1\" (%2)" msgstr "" -#: session_state.cc:761 +#: session_state.cc:669 msgid "" "the %1 audio engine is not connected and state saving would lose all I/O " "connections. Session not saved" msgstr "" -#: session_state.cc:812 +#: session_state.cc:720 msgid "state could not be saved to %1" msgstr "" -#: session_state.cc:814 session_state.cc:825 +#: session_state.cc:722 session_state.cc:733 msgid "Could not remove temporary session file at path \"%1\" (%2)" msgstr "" -#: session_state.cc:822 +#: session_state.cc:730 msgid "could not rename temporary session file %1 to %2" msgstr "" -#: session_state.cc:890 +#: session_state.cc:798 msgid "%1: session file \"%2\" doesn't exist!" msgstr "" -#: session_state.cc:902 +#: session_state.cc:810 msgid "Could not understand session file %1" msgstr "" -#: session_state.cc:911 +#: session_state.cc:819 msgid "Session file %1 is not a session" msgstr "" -#: session_state.cc:1208 +#: session_state.cc:1125 msgid "programming error: Session: incorrect XML node sent to set_state()" msgstr "" -#: session_state.cc:1257 +#: session_state.cc:1179 msgid "Session: XML state has no options section" msgstr "" -#: session_state.cc:1262 +#: session_state.cc:1184 msgid "Session: XML state has no metadata section" msgstr "" -#: session_state.cc:1273 +#: session_state.cc:1195 msgid "Session: XML state has no sources section" msgstr "" -#: session_state.cc:1280 +#: session_state.cc:1202 msgid "Session: XML state has no Tempo Map section" msgstr "" -#: session_state.cc:1287 +#: session_state.cc:1209 msgid "Session: XML state has no locations section" msgstr "" -#: session_state.cc:1313 +#: session_state.cc:1235 msgid "Session: XML state has no Regions section" msgstr "" -#: session_state.cc:1320 +#: session_state.cc:1242 msgid "Session: XML state has no playlists section" msgstr "" -#: session_state.cc:1340 +#: session_state.cc:1262 msgid "Session: XML state has no bundles section" msgstr "" -#: session_state.cc:1352 +#: session_state.cc:1274 msgid "Session: XML state has no diskstreams section" msgstr "" -#: session_state.cc:1360 +#: session_state.cc:1282 msgid "Session: XML state has no routes section" msgstr "" -#: session_state.cc:1372 +#: session_state.cc:1294 msgid "Session: XML state has no route groups section" msgstr "" -#: session_state.cc:1381 +#: session_state.cc:1303 msgid "Session: XML state has no edit groups section" msgstr "" -#: session_state.cc:1388 +#: session_state.cc:1310 msgid "Session: XML state has no mix groups section" msgstr "" -#: session_state.cc:1396 +#: session_state.cc:1318 msgid "Session: XML state has no click section" msgstr "" -#: session_state.cc:1444 +#: session_state.cc:1360 msgid "Session: cannot create Route from XML description." msgstr "" -#: session_state.cc:1448 +#: session_state.cc:1364 msgid "Loaded track/bus %1" msgstr "" -#: session_state.cc:1546 +#: session_state.cc:1462 msgid "Could not find diskstream for route" msgstr "" -#: session_state.cc:1600 +#: session_state.cc:1516 msgid "Session: cannot create Region from XML description." msgstr "" -#: session_state.cc:1604 +#: session_state.cc:1520 msgid "Can not load state for region '%1'" msgstr "" -#: session_state.cc:1640 +#: session_state.cc:1556 msgid "Regions in compound description not found (ID's %1 and %2): ignored" msgstr "" -#: session_state.cc:1668 +#: session_state.cc:1584 msgid "Nested source has no ID info in session file! (ignored)" msgstr "" -#: session_state.cc:1680 +#: session_state.cc:1596 msgid "Cannot reconstruct nested source for region %1" msgstr "" -#: session_state.cc:1742 +#: session_state.cc:1658 msgid "Session: XMLNode describing a AudioRegion is incomplete (no source)" msgstr "" -#: session_state.cc:1750 session_state.cc:1771 session_state.cc:1791 +#: session_state.cc:1666 session_state.cc:1687 session_state.cc:1707 msgid "" "Session: XMLNode describing a AudioRegion references an unknown source id =%1" msgstr "" -#: session_state.cc:1756 session_state.cc:1777 session_state.cc:1797 +#: session_state.cc:1672 session_state.cc:1693 session_state.cc:1713 msgid "" "Session: XMLNode describing a AudioRegion references a non-audio source id =" "%1" msgstr "" -#: session_state.cc:1820 +#: session_state.cc:1736 msgid "" "Session: XMLNode describing an AudioRegion is missing some master sources; " "ignored" msgstr "" -#: session_state.cc:1854 +#: session_state.cc:1770 msgid "Session: XMLNode describing a MidiRegion is incomplete (no source)" msgstr "" -#: session_state.cc:1862 +#: session_state.cc:1778 msgid "" "Session: XMLNode describing a MidiRegion references an unknown source id =%1" msgstr "" -#: session_state.cc:1868 +#: session_state.cc:1784 msgid "" "Session: XMLNode describing a MidiRegion references a non-midi source id =%1" msgstr "" -#: session_state.cc:1936 +#: session_state.cc:1852 msgid "" "cannot create new file from region name \"%1\" with ident = \"%2\": too many " "existing files with similar names" msgstr "" -#: session_state.cc:1959 +#: session_state.cc:1875 msgid "Session: cannot create Source from XML description." msgstr "" -#: session_state.cc:1993 +#: session_state.cc:1909 msgid "A sound file is missing. It will be replaced by silence." msgstr "" -#: session_state.cc:2016 +#: session_state.cc:1932 msgid "Found a sound file that cannot be used by %1. Talk to the progammers." msgstr "" -#: session_state.cc:2033 +#: session_state.cc:1949 msgid "Could not create templates directory \"%1\" (%2)" msgstr "" -#: session_state.cc:2046 +#: session_state.cc:1962 msgid "Template \"%1\" already exists - new version not created" msgstr "" -#: session_state.cc:2052 +#: session_state.cc:1968 msgid "Could not create directory for Session template\"%1\" (%2)" msgstr "" -#: session_state.cc:2062 +#: session_state.cc:1978 msgid "template not saved" msgstr "" -#: session_state.cc:2072 +#: session_state.cc:1988 msgid "Could not create directory for Session template plugin state\"%1\" (%2)" msgstr "" -#: session_state.cc:2267 +#: session_state.cc:2183 msgid "Unknown node \"%1\" found in Bundles list from session file" msgstr "" -#: session_state.cc:2809 session_state.cc:2815 +#: session_state.cc:2725 session_state.cc:2731 msgid "Cannot expand path %1 (%2)" msgstr "" -#: session_state.cc:2868 +#: session_state.cc:2784 msgid "Session: cannot create dead file folder \"%1\" (%2)" msgstr "" -#: session_state.cc:2907 +#: session_state.cc:2823 msgid "cannot rename unused file source from %1 to %2 (%3)" msgstr "" -#: session_state.cc:2925 +#: session_state.cc:2841 msgid "cannot remove peakfile %1 for %2 (%3)" msgstr "" -#: session_state.cc:3227 +#: session_state.cc:3143 msgid "could not backup old history file, current history not saved" msgstr "" -#: session_state.cc:3240 +#: session_state.cc:3156 msgid "history could not be saved to %1" msgstr "" -#: session_state.cc:3243 +#: session_state.cc:3159 msgid "Could not remove history file at path \"%1\" (%2)" msgstr "" -#: session_state.cc:3247 +#: session_state.cc:3163 msgid "could not restore history file from backup %1 (%2)" msgstr "" -#: session_state.cc:3272 +#: session_state.cc:3188 msgid "%1: no history file \"%2\" for this session." msgstr "" -#: session_state.cc:3278 +#: session_state.cc:3194 msgid "Could not understand session history file \"%1\"" msgstr "" -#: session_state.cc:3320 +#: session_state.cc:3236 msgid "Failed to downcast MidiSource for NoteDiffCommand" msgstr "" -#: session_state.cc:3331 +#: session_state.cc:3247 msgid "Failed to downcast MidiSource for SysExDiffCommand" msgstr "" -#: session_state.cc:3342 +#: session_state.cc:3258 msgid "Failed to downcast MidiSource for PatchChangeDiffCommand" msgstr "" -#: session_state.cc:3350 +#: session_state.cc:3266 msgid "Couldn't figure out how to make a Command out of a %1 XMLNode." msgstr "" -#: session_state.cc:3602 +#: session_state.cc:3502 msgid "Session: unknown diskstream type in XML" msgstr "" -#: session_state.cc:3607 +#: session_state.cc:3507 msgid "Session: could not load diskstream via XML state" msgstr "" -#: session_time.cc:215 -msgid "Unknown JACK transport state %1 in sync callback" +#: session_time.cc:214 +msgid "Unknown transport state %1 in sync callback" msgstr "" -#: session_transport.cc:168 +#: session_transport.cc:167 msgid "Cannot loop - no loop range defined" msgstr "" -#: session_transport.cc:728 +#: session_transport.cc:739 msgid "" "Seamless looping cannot be supported while %1 is using JACK transport.\n" "Recommend changing the configured options" msgstr "" -#: session_transport.cc:1094 +#: session_transport.cc:1105 msgid "" "Global varispeed cannot be supported while %1 is connected to JACK transport " "control" @@ -2256,7 +2188,7 @@ msgstr "" msgid "attempt to write a non-writable audio file source (%1)" msgstr "" -#: sndfilesource.cc:396 utils.cc:507 utils.cc:531 utils.cc:545 utils.cc:564 +#: sndfilesource.cc:396 utils.cc:510 utils.cc:534 utils.cc:548 utils.cc:567 msgid "programming error: %1 %2" msgstr "" @@ -2474,19 +2406,19 @@ msgstr "LÃ¥s" msgid "programming error: unknown edit mode string \"%1\"" msgstr "" -#: utils.cc:389 utils.cc:418 +#: utils.cc:389 utils.cc:421 msgid "MIDI Timecode" msgstr "" -#: utils.cc:389 utils.cc:416 +#: utils.cc:389 utils.cc:419 msgid "MTC" msgstr "" -#: utils.cc:393 utils.cc:425 +#: utils.cc:393 utils.cc:428 msgid "MIDI Clock" msgstr "" -#: utils.cc:397 utils.cc:412 utils.cc:432 +#: utils.cc:397 utils.cc:415 utils.cc:435 msgid "JACK" msgstr "" @@ -2494,42 +2426,18 @@ msgstr "" msgid "programming error: unknown sync source string \"%1\"" msgstr "" -#: utils.cc:423 +#: utils.cc:426 msgid "M-Clock" msgstr "" -#: utils.cc:429 +#: utils.cc:432 msgid "LTC" msgstr "" -#: utils.cc:599 +#: utils.cc:602 msgid "programming error: unknown native header format: %1" msgstr "" -#: utils.cc:614 +#: utils.cc:617 msgid "cannot open directory %1 (%2)" msgstr "" - -#~ msgid "Connection %1 was not available - \"out 1\" used instead" -#~ msgstr "Anslutning %1 inte tillgänglig - \"out 1\" används instället" - -#~ msgid "Splice Edit" -#~ msgstr "Fogredigering" - -#~ msgid "Slide Edit" -#~ msgstr "Glidredigering" - -#~ msgid "Lock Edit" -#~ msgstr "LÃ¥st redigering" - -#~ msgid "Internal" -#~ msgstr "Intern" - -#~ msgid "Catch up with send/insert state" -#~ msgstr "Kommer ikapp sänd/anslutningstillstÃ¥nd" - -#~ msgid "OSC startup" -#~ msgstr "OSC-uppstart" - -#~ msgid "Configuring MIDI ports" -#~ msgstr "Konfigurerar MIDI-portar" diff --git a/libs/ardour/po/zh.po b/libs/ardour/po/zh.po index 1d0e8f3d44..3cab1e71d9 100644 --- a/libs/ardour/po/zh.po +++ b/libs/ardour/po/zh.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Ardour 3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-10-23 19:09+0200\n" "PO-Revision-Date: 2012-08-26 13:43+0800\n" "Last-Translator: Rui-huai Zhang \n" "Language-Team: zrhzrh \n" @@ -121,7 +121,7 @@ msgstr "音频播放列表(未使用)" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2465 session.cc:2498 session.cc:3643 +#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "程åºé”™è¯¯: %1" @@ -190,60 +190,10 @@ msgstr "无法载入VAMPæ’ä»¶ \"%1\"" msgid "VAMP Plugin \"%1\" could not be loaded" msgstr "无法载入VAMPæ’ä»¶ \"%1\"" -#: audioengine.cc:186 -msgid "" -"This version of JACK is old - you should upgrade to a newer version that " -"supports jack_port_type_get_buffer_size()" +#: audioengine.cc:488 +msgid "looking for backends in %1\n" msgstr "" -#: audioengine.cc:190 -msgid "Connect session to engine" -msgstr "连接会è¯åˆ°å¼•擎" - -#: audioengine.cc:843 -msgid "" -"a port with the name \"%1\" already exists: check for duplicated track/bus " -"names" -msgstr "" - -#: audioengine.cc:845 session.cc:1698 -msgid "" -"No more JACK ports are available. You will need to stop %1 and restart JACK " -"with more ports if you need this many tracks." -msgstr "" - -#: audioengine.cc:848 -msgid "AudioEngine: cannot register port \"%1\": %2" -msgstr "" - -#: audioengine.cc:878 -msgid "unable to create port: %1" -msgstr "无法创建端å£: %1" - -#: audioengine.cc:932 -msgid "connect called before engine was started" -msgstr "" - -#: audioengine.cc:958 -msgid "AudioEngine: cannot connect %1 (%2) to %3 (%4)" -msgstr "音频引擎: 无法连接 %1 (%2) 到 %3 (%4)" - -#: audioengine.cc:973 audioengine.cc:1004 -msgid "disconnect called before engine was started" -msgstr "" - -#: audioengine.cc:1052 -msgid "get_port_by_name() called before engine was started" -msgstr "" - -#: audioengine.cc:1104 -msgid "get_ports called before engine was started" -msgstr "" - -#: audioengine.cc:1427 -msgid "failed to connect to JACK" -msgstr "连接JACK失败" - #: audioregion.cc:1643 msgid "" "You have requested an operation that requires audio analysis.\n" @@ -296,11 +246,6 @@ msgstr "" msgid "%1: could not write peak file data (%2)" msgstr "" -#: audiosource.cc:924 -#, fuzzy -msgid "could not truncate peakfile %1 to %2 (error: %3)" -msgstr "无法é‡å‘½å文件 %1 到 %2 (%3)" - #: auditioner.cc:87 msgid "no outputs available for auditioner - manual connection required" msgstr "" @@ -388,11 +333,6 @@ msgstr "控制åè®®åç§° \"%1\" 无法åˆå§‹åŒ–" msgid "Instantiating mandatory control protocol %1" msgstr "实例强制性控制åè®® %1" -#: control_protocol_manager.cc:222 -#, fuzzy -msgid "looking for control protocols in %1\n" -msgstr "寻找控制åè®®, 在 %1\n" - #: control_protocol_manager.cc:247 msgid "Control protocol %1 not usable" msgstr "" @@ -425,7 +365,7 @@ msgstr "" msgid "audio" msgstr "音频" -#: data_type.cc:28 session.cc:1640 session.cc:1643 +#: data_type.cc:28 session.cc:1790 session.cc:1793 msgid "MIDI" msgstr "MIDI" @@ -537,7 +477,7 @@ msgstr "三角形" msgid "Rectangular" msgstr "长方形" -#: export_formats.cc:52 session.cc:4861 session.cc:4877 +#: export_formats.cc:52 session.cc:5008 session.cc:5024 msgid "None" msgstr "" @@ -593,35 +533,10 @@ msgstr "" msgid "Searching for export formats in %1" msgstr "" -#: export_profile_manager.cc:99 -#, fuzzy -msgid "Unable to create export format directory %1: %2" -msgstr "无法创建混音模æ¿ç›®å½• \"%1\" (%2)" - -#: export_profile_manager.cc:257 -#, fuzzy -msgid "Unable to remove export preset %1: %2" -msgstr "无法创建端å£: %1" - #: export_profile_manager.cc:347 msgid "Selection" msgstr "选å–" -#: export_profile_manager.cc:600 -#, fuzzy -msgid "Unable to rename export format %1 to %2: %3" -msgstr "无法é‡å‘½åå¿«ç…§ %1 到 %2 (%3)" - -#: export_profile_manager.cc:632 -#, fuzzy -msgid "Unable to remove export profile %1: %2" -msgstr "æ— æ³•å¤‡ä»½çŠ¶æ€æ–‡ä»¶%1 (%2)" - -#: export_profile_manager.cc:649 -#, fuzzy -msgid "empty format" -msgstr "无采样格å¼" - #: export_profile_manager.cc:818 msgid "No timespan has been selected!" msgstr "" @@ -652,7 +567,7 @@ msgid "" "configuration" msgstr "" -#: file_source.cc:198 session_state.cc:2891 +#: file_source.cc:198 session_state.cc:2807 msgid "" "there are already 1000 files with names like %1; versioning discontinued" msgstr "" @@ -693,11 +608,6 @@ msgstr "" msgid "cannot rename file %1 to %2 (%3)" msgstr "无法é‡å‘½å文件 %1 到 %2 (%3)" -#: filesystem_paths.cc:73 -#, fuzzy -msgid "Cannot create Configuration directory %1 - cannot run" -msgstr "无法创建会è¯ç›®å½•在路径 %1 错误: %2" - #: filesystem_paths.cc:78 msgid "" "Configuration directory %1 already exists and is not a directory/folder - " @@ -748,23 +658,23 @@ msgstr "" msgid "unknown file type for session %1" msgstr "" -#: globals.cc:205 +#: globals.cc:207 msgid "Could not set system open files limit to \"unlimited\"" msgstr "" -#: globals.cc:207 +#: globals.cc:209 msgid "Could not set system open files limit to %1" msgstr "" -#: globals.cc:211 +#: globals.cc:213 msgid "Your system is configured to limit %1 to only %2 open files" msgstr "" -#: globals.cc:215 +#: globals.cc:217 msgid "Could not get system open files limit (%1)" msgstr "" -#: globals.cc:266 +#: globals.cc:268 msgid "Loading configuration" msgstr "载入é…ç½®" @@ -808,11 +718,6 @@ msgstr "载入MIDI文件 %1" msgid "Failed to remove some files after failed/cancelled import operation" msgstr "" -#: instrument_info.cc:40 instrument_info.cc:61 -#, fuzzy -msgid "Unknown" -msgstr "未知" - #: instrument_info.cc:230 msgid "preset %1 (bank %2)" msgstr "" @@ -885,57 +790,55 @@ msgstr "" msgid "IO: bad output string in XML node \"%1\"" msgstr "" -#: io.cc:1410 +#: io.cc:1411 #, c-format msgid "%s %u" msgstr "" -#: io.cc:1457 +#: io.cc:1458 #, c-format msgid "%s in" msgstr "" -#: io.cc:1459 +#: io.cc:1460 #, c-format msgid "%s out" msgstr "" -#: io.cc:1534 session.cc:494 session.cc:523 +#: io.cc:1535 session.cc:685 session.cc:714 msgid "mono" msgstr "å•声é“" -#: io.cc:1536 session.cc:507 session.cc:537 +#: io.cc:1537 session.cc:698 session.cc:728 msgid "L" msgstr "" -#: io.cc:1536 session.cc:509 session.cc:539 +#: io.cc:1537 session.cc:700 session.cc:730 msgid "R" msgstr "" -#: io.cc:1538 io.cc:1544 +#: io.cc:1539 io.cc:1545 #, c-format msgid "%d" msgstr "" -#: ladspa_plugin.cc:88 +#: ladspa_plugin.cc:86 msgid "LADSPA: module has no descriptor function." msgstr "LADSPA: æ¨¡å—æ²¡æœ‰æè¿°ç¬¦å‡½æ•°." -#: ladspa_plugin.cc:93 +#: ladspa_plugin.cc:91 msgid "LADSPA: plugin has gone away since discovery!" msgstr "LADSPA: 当å‘现æ’ä»¶æ—¶, æ’ä»¶å·²ç»ä¸è§äº†." -#: ladspa_plugin.cc:100 +#: ladspa_plugin.cc:98 msgid "LADSPA: \"%1\" cannot be used, since it cannot do inplace processing" msgstr "" #: ladspa_plugin.cc:297 -#, fuzzy msgid "" "illegal parameter number used with plugin \"%1\". This may indicate a change " "in the plugin design, and presets may be invalid" msgstr "" -"æ’ä»¶\"%1\"ä½¿ç”¨éžæ³•傿•°æ•°é‡. è¿™å¯èƒ½æ„å‘³ç€æ’件的设计有所å˜åЍ, 而且预设失效了." #: ladspa_plugin.cc:376 ladspa_plugin.cc:426 msgid "Bad node sent to LadspaPlugin::set_state" @@ -1005,7 +908,7 @@ msgstr "" msgid "incorrect XML mode passed to Locations::set_state" msgstr "" -#: location.cc:842 session.cc:4362 session_state.cc:1114 +#: location.cc:842 session.cc:4510 session_state.cc:1031 msgid "session" msgstr "会è¯" @@ -1169,21 +1072,21 @@ msgstr "" msgid "solo control" msgstr "" -#: mtc_slave.cc:235 +#: mtc_slave.cc:238 msgid "MTC Slave: atomic read of current time failed, sleeping!" msgstr "" -#: mtc_slave.cc:359 +#: mtc_slave.cc:361 msgid "" "Unknown rate/drop value %1 in incoming MTC stream, session values used " "instead" msgstr "" -#: mtc_slave.cc:379 +#: mtc_slave.cc:381 msgid "Session framerate adjusted from %1 TO: MTC's %2." msgstr "" -#: mtc_slave.cc:393 +#: mtc_slave.cc:395 msgid "Session and MTC framerate mismatch: MTC:%1 %2:%3." msgstr "" @@ -1247,19 +1150,19 @@ msgstr "" msgid "looking for panners in %1" msgstr "" -#: panner_manager.cc:99 +#: panner_manager.cc:100 msgid "Panner discovered: \"%1\" in %2" msgstr "" -#: panner_manager.cc:116 +#: panner_manager.cc:117 msgid "PannerManager: cannot load module \"%1\" (%2)" msgstr "" -#: panner_manager.cc:123 +#: panner_manager.cc:124 msgid "PannerManager: module \"%1\" has no descriptor function." msgstr "" -#: panner_manager.cc:186 +#: panner_manager.cc:187 msgid "no panner discovered for in/out = %1/%2" msgstr "" @@ -1369,11 +1272,7 @@ msgstr "" msgid "unknown plugin type \"%1\" - ignored" msgstr "ä½ç½®æ’件类型 \"%1\" - 忽略之" -#: port.cc:367 -msgid "get_connected_latency_range() called while disconnected from JACK" -msgstr "" - -#: port.cc:450 +#: port.cc:410 msgid "could not reregister %1" msgstr "无法注册 %1." @@ -1389,6 +1288,34 @@ msgstr "" msgid "non-port insert XML used for port plugin insert" msgstr "" +#: port_manager.cc:270 +msgid "" +"a port with the name \"%1\" already exists: check for duplicated track/bus " +"names" +msgstr "" + +#: port_manager.cc:272 +msgid "" +"No more ports are available. You will need to stop %1 and restart with more " +"ports if you need this many tracks." +msgstr "" + +#: port_manager.cc:275 +msgid "AudioEngine: cannot register port \"%1\": %2" +msgstr "" + +#: port_manager.cc:314 +msgid "unable to create port: %1" +msgstr "无法创建端å£: %1" + +#: port_manager.cc:401 +msgid "AudioEngine: cannot connect %1 (%2) to %3 (%4)" +msgstr "音频引擎: 无法连接 %1 (%2) 到 %3 (%4)" + +#: port_manager.cc:453 port_manager.cc:454 +msgid "Re-establising port %1 failed" +msgstr "" + #: processor.cc:207 msgid "No %1 property flag in element %2" msgstr "" @@ -1397,41 +1324,41 @@ msgstr "" msgid "No child node with active property" msgstr "" -#: rc_configuration.cc:93 +#: rc_configuration.cc:88 msgid "Loading system configuration file %1" msgstr "载入系统é…置文件 %1" -#: rc_configuration.cc:97 +#: rc_configuration.cc:92 msgid "%1: cannot read system configuration file \"%2\"" msgstr "%1: 无法读å–系统é…置文件\"%2\"" -#: rc_configuration.cc:102 +#: rc_configuration.cc:97 msgid "%1: system configuration file \"%2\" not loaded successfully." msgstr "%1: 系统é…置文件 \"%2\" è½½å…¥ä¸æˆåŠŸ" -#: rc_configuration.cc:106 +#: rc_configuration.cc:101 msgid "" "Your system %1 configuration file is empty. This probably means that there " "was an error installing %1" msgstr "" -#: rc_configuration.cc:121 +#: rc_configuration.cc:116 msgid "Loading user configuration file %1" msgstr "载入用户é…置文件 %1" -#: rc_configuration.cc:125 +#: rc_configuration.cc:120 msgid "%1: cannot read configuration file \"%2\"" msgstr "%1: 无法读å–é…置文件 \"%2\"" -#: rc_configuration.cc:130 +#: rc_configuration.cc:125 msgid "%1: user configuration file \"%2\" not loaded successfully." msgstr "%1: 用户é…置文件 \"%2\" è½½å…¥ä¸æˆåŠŸ" -#: rc_configuration.cc:134 +#: rc_configuration.cc:129 msgid "your %1 configuration file is empty. This is not normal." msgstr "" -#: rc_configuration.cc:151 +#: rc_configuration.cc:146 msgid "Config file %1 not saved" msgstr "é…置文件 %1 没有ä¿å­˜" @@ -1469,26 +1396,30 @@ msgstr "导入: src_new() 失败 : %1" msgid "return %1" msgstr "返回 %1" -#: route.cc:1105 route.cc:2581 +#: route.cc:1075 route.cc:2528 msgid "unknown Processor type \"%1\"; ignored" msgstr "" -#: route.cc:1117 +#: route.cc:1087 msgid "processor could not be created. Ignored." msgstr "" -#: route.cc:2007 route.cc:2234 +#: route.cc:1962 route.cc:2187 msgid "Bad node sent to Route::set_state() [%1]" msgstr "æŸå的符å·å‘é€è‡³ Route::set_state() [%1]" -#: route.cc:2067 +#: route.cc:2022 msgid "Pannable state found for route (%1) without a panner!" msgstr "" -#: route.cc:2137 route.cc:2141 route.cc:2348 route.cc:2352 +#: route.cc:2096 route.cc:2100 route.cc:2301 route.cc:2305 msgid "badly formed order key string in state file! [%1] ... ignored." msgstr "" +#: route.cc:2311 +msgid "Converting deprecated order key for %1 using Editor order %2" +msgstr "" + #: route_group.cc:459 msgid "You cannot subgroup MIDI tracks at this time" msgstr "此时你无法å­åˆ†ç»„MIDI声é“" @@ -1509,190 +1440,167 @@ msgstr "" msgid "send %1" msgstr "å‘é€ %1" -#: send.cc:65 -#, fuzzy -msgid "programming error: send created using role %1" -msgstr "程åºé”™è¯¯: 无法识别编辑模å¼å­—符串 \"%1\"" +#: session.cc:343 +msgid "Connect to engine" +msgstr "连接到引擎" -#: session.cc:347 -msgid "Set block size and sample rate" +#: session.cc:348 +msgid "Session loading complete" +msgstr "会è¯è½½å…¥å®Œæˆ" + +#: session.cc:420 +msgid "Set up LTC" msgstr "" -#: session.cc:352 -msgid "Using configuration" -msgstr "使用é…ç½®" - -#: session.cc:377 -msgid "LTC In" +#: session.cc:422 +msgid "Set up Click" msgstr "" -#: session.cc:378 -msgid "LTC Out" -msgstr "" - -#: session.cc:404 -msgid "LTC-in" -msgstr "" - -#: session.cc:405 -msgid "LTC-out" -msgstr "" - -#: session.cc:434 -msgid "could not setup Click I/O" -msgstr "" - -#: session.cc:461 -msgid "cannot setup Click I/O" -msgstr "" - -#: session.cc:464 -msgid "Compute I/O Latencies" -msgstr "" - -#: session.cc:470 +#: session.cc:424 msgid "Set up standard connections" msgstr "设置标准连接" -#: session.cc:491 +#: session.cc:634 +msgid "could not setup Click I/O" +msgstr "" + +#: session.cc:682 #, c-format msgid "out %" msgstr "" -#: session.cc:505 +#: session.cc:696 #, c-format msgid "out %+%" msgstr "" -#: session.cc:520 +#: session.cc:711 #, c-format msgid "in %" msgstr "" -#: session.cc:534 +#: session.cc:725 #, c-format msgid "in %+%" msgstr "" -#: session.cc:570 -msgid "Setup signal flow and plugins" -msgstr "" - -#: session.cc:614 -msgid "Connect to engine" -msgstr "连接到引擎" - -#: session.cc:645 +#: session.cc:789 msgid "cannot connect master output %1 to %2" msgstr "" -#: session.cc:704 +#: session.cc:848 msgid "monitor" msgstr "" -#: session.cc:749 +#: session.cc:893 msgid "cannot connect control input %1 to %2" msgstr "" -#: session.cc:769 +#: session.cc:913 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "" -#: session.cc:800 +#: session.cc:944 msgid "cannot connect control output %1 to %2" msgstr "" -#: session.cc:864 +#: session.cc:1008 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "" -#: session.cc:1043 +#: session.cc:1192 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" -#: session.cc:1083 +#: session.cc:1232 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" msgstr "" -#: session.cc:1396 +#: session.cc:1546 msgid "feedback loop setup between %1 and %2" msgstr "" -#: session.cc:1692 +#: session.cc:1842 msgid "Session: could not create new midi track." msgstr "" -#: session.cc:1875 session.cc:1878 +#: session.cc:1848 +msgid "" +"No more JACK ports are available. You will need to stop %1 and restart JACK " +"with more ports if you need this many tracks." +msgstr "" + +#: session.cc:2025 session.cc:2028 msgid "Audio" msgstr "音频" -#: session.cc:1902 session.cc:1910 session.cc:1987 session.cc:1995 +#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "" -#: session.cc:1933 +#: session.cc:2083 msgid "Session: could not create new audio track." msgstr "" -#: session.cc:1965 session.cc:1968 +#: session.cc:2115 session.cc:2118 msgid "Bus" msgstr "总线" -#: session.cc:2018 +#: session.cc:2168 msgid "Session: could not create new audio route." msgstr "" -#: session.cc:2077 session.cc:2087 +#: session.cc:2227 session.cc:2237 msgid "Session: UINT_MAX routes? impossible!" msgstr "" -#: session.cc:2109 +#: session.cc:2259 msgid "Session: cannot create track/bus from template description" msgstr "" -#: session.cc:2135 +#: session.cc:2285 msgid "Session: could not create new route from template" msgstr "" -#: session.cc:2164 +#: session.cc:2314 msgid "Adding new tracks/busses failed" msgstr "" -#: session.cc:3265 +#: session.cc:3413 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "" -#: session.cc:3385 session.cc:3443 +#: session.cc:3533 session.cc:3591 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "" -#: session.cc:3833 +#: session.cc:3981 msgid "send ID %1 appears to be in use already" msgstr "" -#: session.cc:3845 +#: session.cc:3993 msgid "aux send ID %1 appears to be in use already" msgstr "" -#: session.cc:3857 +#: session.cc:4005 msgid "return ID %1 appears to be in use already" msgstr "" -#: session.cc:3869 +#: session.cc:4017 msgid "insert ID %1 appears to be in use already" msgstr "" -#: session.cc:3996 +#: session.cc:4144 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "" -#: session.cc:4025 +#: session.cc:4173 msgid "too many bounced versions of playlist \"%1\"" msgstr "" -#: session.cc:4035 +#: session.cc:4183 msgid "cannot create new audio file \"%1\" for %2" msgstr "" @@ -1731,11 +1639,11 @@ msgstr "会è¯å­ç›®å½•ä¸å­˜åœ¨äºŽè·¯å¾„ %1" msgid "Session: cannot have two events of type %1 at the same frame (%2)." msgstr "" -#: session_export.cc:126 +#: session_export.cc:125 msgid "%1: cannot seek to %2 for export" msgstr "" -#: session_export.cc:183 +#: session_export.cc:182 msgid "Export ended unexpectedly: %1" msgstr "" @@ -1745,10 +1653,6 @@ msgid "" "of this session." msgstr "" -#: session_midi.cc:428 -msgid "Session: could not send full MIDI time code" -msgstr "" - #: session_midi.cc:520 msgid "Session: cannot send quarter-frame MTC message (%1)" msgstr "" @@ -1757,380 +1661,328 @@ msgstr "" msgid "Session: cannot create Playlist from XML description." msgstr "会è¯: 无法从XMLæè¿°ç¬¦åˆ›å»ºæ’­æ”¾åˆ—表." -#: session_process.cc:133 +#: session_process.cc:132 msgid "Session: error in no roll for %1" msgstr "" -#: session_process.cc:1158 +#: session_process.cc:1157 msgid "Programming error: illegal event type in process_event (%1)" msgstr "" -#: session_state.cc:139 -#, fuzzy -msgid "Could not use path %1 (%2)" -msgstr "无法使用路径 %1 (%s)" - -#: session_state.cc:267 +#: session_state.cc:184 msgid "solo cut control (dB)" msgstr "" -#: session_state.cc:360 +#: session_state.cc:208 +msgid "Set block size and sample rate" +msgstr "" + +#: session_state.cc:213 +msgid "Using configuration" +msgstr "使用é…ç½®" + +#: session_state.cc:325 msgid "Reset Remote Controls" msgstr "" -#: session_state.cc:385 -msgid "Session loading complete" -msgstr "会è¯è½½å…¥å®Œæˆ" - -#: session_state.cc:452 +#: session_state.cc:417 msgid "Session: cannot create session peakfile folder \"%1\" (%2)" msgstr "会è¯: 无法创建会è¯å³°æ–‡ä»¶çš„æ–‡ä»¶å¤¹ \"%1\" (%2)" -#: session_state.cc:459 +#: session_state.cc:424 msgid "Session: cannot create session sounds dir \"%1\" (%2)" msgstr "" -#: session_state.cc:466 +#: session_state.cc:431 msgid "Session: cannot create session midi dir \"%1\" (%2)" msgstr "" -#: session_state.cc:473 +#: session_state.cc:438 msgid "Session: cannot create session dead sounds folder \"%1\" (%2)" msgstr "" -#: session_state.cc:480 +#: session_state.cc:445 msgid "Session: cannot create session export folder \"%1\" (%2)" msgstr "会è¯: 无法创建会è¯å¯¼å‡ºæ–‡ä»¶å¤¹ \"%1\" (%2)" -#: session_state.cc:487 +#: session_state.cc:452 msgid "Session: cannot create session analysis folder \"%1\" (%2)" msgstr "会è¯: 无法创建会è¯åˆ†æžæ–‡ä»¶å¤¹ \"%1\" (%2)" -#: session_state.cc:494 +#: session_state.cc:459 msgid "Session: cannot create session plugins folder \"%1\" (%2)" msgstr "会è¯: æ— æ³•åˆ›å»ºä¼šè¯æ’件文件夹 \"%1\" (%2)" -#: session_state.cc:501 -#, fuzzy -msgid "Session: cannot create session externals folder \"%1\" (%2)" -msgstr "会è¯: 无法创建会è¯åˆ†æžæ–‡ä»¶å¤¹ \"%1\" (%2)" - -#: session_state.cc:515 +#: session_state.cc:480 msgid "Session: cannot create session folder \"%1\" (%2)" msgstr "会è¯: æ— æ³•åˆ›å»ºä¼šè¯æ–‡ä»¶å¤¹ \"%1\" (%2)" -#: session_state.cc:548 -#, fuzzy +#: session_state.cc:514 msgid "Could not open %1 for writing session template" -msgstr "无法打开 %1 用于写入混音模æ¿" +msgstr "" -#: session_state.cc:554 -#, fuzzy -msgid "Could not open session template %1 for reading" -msgstr "æ— æ³•æ‰“å¼€æ··éŸ³æ¨¡æ¿ %1 用于读å–" - -#: session_state.cc:573 +#: session_state.cc:539 msgid "master" msgstr "主控" -#: session_state.cc:636 -#, fuzzy -msgid "Could not remove pending capture state at path \"%1\" (%2)" -msgstr "无法解决路径: %1 (%2)" - -#: session_state.cc:660 +#: session_state.cc:624 msgid "could not rename snapshot %1 to %2 (%3)" msgstr "无法é‡å‘½åå¿«ç…§ %1 到 %2 (%3)" -#: session_state.cc:688 -#, fuzzy -msgid "Could not remove session file at path \"%1\" (%2)" -msgstr "无法解决路径: %1 (%2)" - -#: session_state.cc:761 +#: session_state.cc:669 msgid "" "the %1 audio engine is not connected and state saving would lose all I/O " "connections. Session not saved" msgstr "" -#: session_state.cc:812 +#: session_state.cc:720 msgid "state could not be saved to %1" msgstr "" -#: session_state.cc:814 session_state.cc:825 -#, fuzzy -msgid "Could not remove temporary session file at path \"%1\" (%2)" -msgstr "无法创建混音模æ¿ç›®å½• \"%1\" (%2)" - -#: session_state.cc:822 +#: session_state.cc:730 msgid "could not rename temporary session file %1 to %2" msgstr "" -#: session_state.cc:890 +#: session_state.cc:798 msgid "%1: session file \"%2\" doesn't exist!" msgstr "" -#: session_state.cc:902 -#, fuzzy -msgid "Could not understand session file %1" -msgstr "无法ç†è§£ä¼šè¯åކ岿–‡ä»¶ \"%1\"" - -#: session_state.cc:911 +#: session_state.cc:819 msgid "Session file %1 is not a session" msgstr "ä¼šè¯æ–‡ä»¶ %1 䏿˜¯ä¸€ä¸ªä¼šè¯" -#: session_state.cc:1208 +#: session_state.cc:1125 msgid "programming error: Session: incorrect XML node sent to set_state()" msgstr "" -#: session_state.cc:1257 +#: session_state.cc:1179 msgid "Session: XML state has no options section" msgstr "" -#: session_state.cc:1262 +#: session_state.cc:1184 msgid "Session: XML state has no metadata section" msgstr "" -#: session_state.cc:1273 +#: session_state.cc:1195 msgid "Session: XML state has no sources section" msgstr "" -#: session_state.cc:1280 +#: session_state.cc:1202 msgid "Session: XML state has no Tempo Map section" msgstr "" -#: session_state.cc:1287 +#: session_state.cc:1209 msgid "Session: XML state has no locations section" msgstr "" -#: session_state.cc:1313 +#: session_state.cc:1235 msgid "Session: XML state has no Regions section" msgstr "" -#: session_state.cc:1320 +#: session_state.cc:1242 msgid "Session: XML state has no playlists section" msgstr "" -#: session_state.cc:1340 +#: session_state.cc:1262 msgid "Session: XML state has no bundles section" msgstr "" -#: session_state.cc:1352 +#: session_state.cc:1274 msgid "Session: XML state has no diskstreams section" msgstr "" -#: session_state.cc:1360 +#: session_state.cc:1282 msgid "Session: XML state has no routes section" msgstr "" -#: session_state.cc:1372 +#: session_state.cc:1294 msgid "Session: XML state has no route groups section" msgstr "" -#: session_state.cc:1381 +#: session_state.cc:1303 msgid "Session: XML state has no edit groups section" msgstr "" -#: session_state.cc:1388 +#: session_state.cc:1310 msgid "Session: XML state has no mix groups section" msgstr "" -#: session_state.cc:1396 +#: session_state.cc:1318 msgid "Session: XML state has no click section" msgstr "" -#: session_state.cc:1444 +#: session_state.cc:1360 msgid "Session: cannot create Route from XML description." msgstr "" -#: session_state.cc:1448 +#: session_state.cc:1364 msgid "Loaded track/bus %1" msgstr "载入音轨/总线 %1" -#: session_state.cc:1546 +#: session_state.cc:1462 msgid "Could not find diskstream for route" msgstr "" -#: session_state.cc:1600 +#: session_state.cc:1516 msgid "Session: cannot create Region from XML description." msgstr "" -#: session_state.cc:1604 +#: session_state.cc:1520 msgid "Can not load state for region '%1'" msgstr "" -#: session_state.cc:1640 +#: session_state.cc:1556 msgid "Regions in compound description not found (ID's %1 and %2): ignored" msgstr "" -#: session_state.cc:1668 +#: session_state.cc:1584 msgid "Nested source has no ID info in session file! (ignored)" msgstr "" -#: session_state.cc:1680 +#: session_state.cc:1596 msgid "Cannot reconstruct nested source for region %1" msgstr "" -#: session_state.cc:1742 +#: session_state.cc:1658 msgid "Session: XMLNode describing a AudioRegion is incomplete (no source)" msgstr "" -#: session_state.cc:1750 session_state.cc:1771 session_state.cc:1791 +#: session_state.cc:1666 session_state.cc:1687 session_state.cc:1707 msgid "" "Session: XMLNode describing a AudioRegion references an unknown source id =%1" msgstr "" -#: session_state.cc:1756 session_state.cc:1777 session_state.cc:1797 +#: session_state.cc:1672 session_state.cc:1693 session_state.cc:1713 msgid "" "Session: XMLNode describing a AudioRegion references a non-audio source id =" "%1" msgstr "" -#: session_state.cc:1820 +#: session_state.cc:1736 msgid "" "Session: XMLNode describing an AudioRegion is missing some master sources; " "ignored" msgstr "" -#: session_state.cc:1854 +#: session_state.cc:1770 msgid "Session: XMLNode describing a MidiRegion is incomplete (no source)" msgstr "" -#: session_state.cc:1862 +#: session_state.cc:1778 msgid "" "Session: XMLNode describing a MidiRegion references an unknown source id =%1" msgstr "" -#: session_state.cc:1868 +#: session_state.cc:1784 msgid "" "Session: XMLNode describing a MidiRegion references a non-midi source id =%1" msgstr "" -#: session_state.cc:1936 +#: session_state.cc:1852 msgid "" "cannot create new file from region name \"%1\" with ident = \"%2\": too many " "existing files with similar names" msgstr "" -#: session_state.cc:1959 +#: session_state.cc:1875 msgid "Session: cannot create Source from XML description." msgstr "" -#: session_state.cc:1993 +#: session_state.cc:1909 msgid "A sound file is missing. It will be replaced by silence." msgstr "" -#: session_state.cc:2016 +#: session_state.cc:1932 msgid "Found a sound file that cannot be used by %1. Talk to the progammers." msgstr "" -#: session_state.cc:2033 -#, fuzzy -msgid "Could not create templates directory \"%1\" (%2)" -msgstr "无法创建混音模æ¿ç›®å½• \"%1\" (%2)" - -#: session_state.cc:2046 +#: session_state.cc:1962 msgid "Template \"%1\" already exists - new version not created" msgstr "" -#: session_state.cc:2052 -#, fuzzy -msgid "Could not create directory for Session template\"%1\" (%2)" -msgstr "无法创建混音模æ¿ç›®å½• \"%1\" (%2)" - -#: session_state.cc:2062 +#: session_state.cc:1978 msgid "template not saved" msgstr "æ¨¡æ¿æ²¡ä¿å­˜" -#: session_state.cc:2072 -#, fuzzy -msgid "Could not create directory for Session template plugin state\"%1\" (%2)" -msgstr "无法创建混音模æ¿ç›®å½• \"%1\" (%2)" - -#: session_state.cc:2267 +#: session_state.cc:2183 msgid "Unknown node \"%1\" found in Bundles list from session file" msgstr "" -#: session_state.cc:2809 session_state.cc:2815 +#: session_state.cc:2725 session_state.cc:2731 msgid "Cannot expand path %1 (%2)" msgstr "无法扩展路径 %1 (%2)" -#: session_state.cc:2868 +#: session_state.cc:2784 msgid "Session: cannot create dead file folder \"%1\" (%2)" msgstr "" -#: session_state.cc:2907 +#: session_state.cc:2823 msgid "cannot rename unused file source from %1 to %2 (%3)" msgstr "" -#: session_state.cc:2925 +#: session_state.cc:2841 msgid "cannot remove peakfile %1 for %2 (%3)" msgstr "" -#: session_state.cc:3227 +#: session_state.cc:3143 msgid "could not backup old history file, current history not saved" msgstr "" -#: session_state.cc:3240 +#: session_state.cc:3156 msgid "history could not be saved to %1" msgstr "åŽ†å²æ— æ³•被ä¿å­˜åˆ° %1" -#: session_state.cc:3243 -#, fuzzy -msgid "Could not remove history file at path \"%1\" (%2)" -msgstr "无法解决路径: %1 (%2)" - -#: session_state.cc:3247 +#: session_state.cc:3163 msgid "could not restore history file from backup %1 (%2)" msgstr "" -#: session_state.cc:3272 +#: session_state.cc:3188 msgid "%1: no history file \"%2\" for this session." msgstr "" -#: session_state.cc:3278 +#: session_state.cc:3194 msgid "Could not understand session history file \"%1\"" msgstr "无法ç†è§£ä¼šè¯åކ岿–‡ä»¶ \"%1\"" -#: session_state.cc:3320 +#: session_state.cc:3236 msgid "Failed to downcast MidiSource for NoteDiffCommand" msgstr "" -#: session_state.cc:3331 +#: session_state.cc:3247 msgid "Failed to downcast MidiSource for SysExDiffCommand" msgstr "" -#: session_state.cc:3342 +#: session_state.cc:3258 msgid "Failed to downcast MidiSource for PatchChangeDiffCommand" msgstr "" -#: session_state.cc:3350 +#: session_state.cc:3266 msgid "Couldn't figure out how to make a Command out of a %1 XMLNode." msgstr "" -#: session_state.cc:3602 +#: session_state.cc:3502 msgid "Session: unknown diskstream type in XML" msgstr "" -#: session_state.cc:3607 +#: session_state.cc:3507 msgid "Session: could not load diskstream via XML state" msgstr "" -#: session_time.cc:215 -msgid "Unknown JACK transport state %1 in sync callback" +#: session_time.cc:214 +msgid "Unknown transport state %1 in sync callback" msgstr "" -#: session_transport.cc:168 +#: session_transport.cc:167 msgid "Cannot loop - no loop range defined" msgstr "" -#: session_transport.cc:728 +#: session_transport.cc:739 msgid "" "Seamless looping cannot be supported while %1 is using JACK transport.\n" "Recommend changing the configured options" msgstr "" -#: session_transport.cc:1094 +#: session_transport.cc:1105 msgid "" "Global varispeed cannot be supported while %1 is connected to JACK transport " "control" @@ -2273,7 +2125,7 @@ msgstr "" msgid "attempt to write a non-writable audio file source (%1)" msgstr "" -#: sndfilesource.cc:396 utils.cc:507 utils.cc:531 utils.cc:545 utils.cc:564 +#: sndfilesource.cc:396 utils.cc:510 utils.cc:534 utils.cc:548 utils.cc:567 msgid "programming error: %1 %2" msgstr "程åºé”™è¯¯: %1 %2" @@ -2493,19 +2345,19 @@ msgstr "" msgid "programming error: unknown edit mode string \"%1\"" msgstr "程åºé”™è¯¯: 无法识别编辑模å¼å­—符串 \"%1\"" -#: utils.cc:389 utils.cc:418 +#: utils.cc:389 utils.cc:421 msgid "MIDI Timecode" msgstr "MIDIæ—¶é—´ç " -#: utils.cc:389 utils.cc:416 +#: utils.cc:389 utils.cc:419 msgid "MTC" msgstr "MTC" -#: utils.cc:393 utils.cc:425 +#: utils.cc:393 utils.cc:428 msgid "MIDI Clock" msgstr "MIDIæ—¶é’Ÿ" -#: utils.cc:397 utils.cc:412 utils.cc:432 +#: utils.cc:397 utils.cc:415 utils.cc:435 msgid "JACK" msgstr "" @@ -2513,88 +2365,10 @@ msgstr "" msgid "programming error: unknown sync source string \"%1\"" msgstr "程åºé”™è¯¯: æ— æ³•è¯†åˆ«åŒæ­¥æºå­—符串 \"%1\"" -#: utils.cc:423 -#, fuzzy -msgid "M-Clock" -msgstr "MIDIæ—¶é’Ÿ" - -#: utils.cc:429 -#, fuzzy -msgid "LTC" -msgstr "MTC" - -#: utils.cc:599 +#: utils.cc:602 msgid "programming error: unknown native header format: %1" msgstr "" -#: utils.cc:614 +#: utils.cc:617 msgid "cannot open directory %1 (%2)" msgstr "无法打开目录 %1 (%2)" - -#~ msgid "Session" -#~ msgstr "会è¯" - -#~ msgid "Could not understand ardour file %1" -#~ msgstr "无法ç†è§£ardour文件 %1" - -#~ msgid "control protocol XML node has no name property. Ignored." -#~ msgstr "控制åè®®XMLç¬¦å·æ²¡æœ‰å称属性. 忽略之" - -#~ msgid "control protocol \"%1\" is not known. Ignored" -#~ msgstr "控制åè®® \"%1\" 未知. 忽略之" - -#~ msgid "Crossfade: no \"in\" region in state" -#~ msgstr "淡入淡出: 没有 \"å…¥\" 区域" - -#~ msgid "old-style crossfade information - no position information" -#~ msgstr "æ—§æ ·å¼æ·¡å…¥æ·¡å‡ºä¿¡æ¯ - 没有ä½ç½®ä¿¡æ¯" - -#~ msgid "Preset file %1 exists; not overwriting" -#~ msgstr "预设文件 %1 已存在; ä¸è¦†ç›–" - -#~ msgid "Cannot open preset file %1 (%2)" -#~ msgstr "无法打开预设文件 %1 (%2)" - -#~ msgid "AudioUnit Outputs" -#~ msgstr "音频å•元输出" - -#~ msgid "AudioUnit Effects" -#~ msgstr "音频å•元效果" - -#~ msgid "AudioUnit (Unknown)" -#~ msgstr "音频å•å…ƒ(未知)" - -#~ msgid "Checking AudioUnit: %1" -#~ msgstr "检查音频å•å…ƒ %1" - -#~ msgid "" -#~ "%1: could not find configuration file (ardour.rc), canvas will look " -#~ "broken." -#~ msgstr "%1: 无法找到é…置文件(ardour.rc), è¯ä¸çœ‹èµ·æ¥ä¼šç ´ç ´çš„." - -#~ msgid "VST: cannot load module from \"%1\"" -#~ msgstr "VST: 无法从 %1 载入模å—" - -#~ msgid "You asked ardour to not use any VST plugins" -#~ msgstr "æ‚¨è¦æ±‚Ardourä¸è¦ä½¿ç”¨ä»»ä½•VSTæ’ä»¶" - -#~ msgid "Preset %1" -#~ msgstr "预设 %1" - -#~ msgid "Template \"%1\" already exists - template not renamed" -#~ msgstr "æ¨¡æ¿ \"%1\" 已存在 - æ¨¡æ¿æ²¡è¢«é‡å‘½å" - -#~ msgid "Midi" -#~ msgstr "MIDI" - -#~ msgid "Unable to create a backup copy of file %1 (%2)" -#~ msgstr "无法创建 %1 (%2) 的备份文件" - -#~ msgid "CoreAudioSource: cannot open file \"%1\" for %2" -#~ msgstr "核心音频æº: 无法打开文件 \"%1\" 用于 %2" - -#~ msgid "path (%1) is ambiguous" -#~ msgstr "路径 (%1) 有歧义" - -#~ msgid "LXVST: cannot load module from \"%1\"" -#~ msgstr "LXVST: 无法从 \"%1\" 载入载入模å—" diff --git a/libs/gtkmm2ext/po/el.po b/libs/gtkmm2ext/po/el.po index 62b4303bbf..37e152725d 100644 --- a/libs/gtkmm2ext/po/el.po +++ b/libs/gtkmm2ext/po/el.po @@ -20,11 +20,6 @@ msgstr "" msgid "Unknown action name: %1" msgstr "" -#: binding_proxy.cc:84 -#, fuzzy -msgid "operate controller now" -msgstr "λειτουÏγία ελεγκτή MIDI τώÏα" - #: bindable_button.cc:48 msgid "button cannot watch state of non-existing Controllable\n" msgstr "" @@ -91,33 +86,3 @@ msgstr "" #: textviewer.cc:34 msgid "Close" msgstr "Κλείσιμο" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Location:" -#~ msgstr "Τοποθεσία:" - -#~ msgid "Browse ..." -#~ msgstr "Αναζήτηση ..." - -#~ msgid "Cancel" -#~ msgstr "ΑκÏÏωση" - -#~ msgid "New folder" -#~ msgstr "Îέος φάκελος" - -#~ msgid "Add to favorites" -#~ msgstr "ΠÏόσθεση στα 'Αγαπημένα'" - -#~ msgid "Remove from favorites" -#~ msgstr "Απαλοιφή από τα 'Αγαπημένα'" - -#~ msgid "Show Hidden" -#~ msgstr "Ανάδειξη κÏυμμένων" - -#~ msgid "Hide browser" -#~ msgstr "ΑπόκÏυψη browser" - -#~ msgid "Rescan" -#~ msgstr "Ανανέωση" diff --git a/libs/gtkmm2ext/po/es.po b/libs/gtkmm2ext/po/es.po index 220c7501ee..b9f574e48b 100644 --- a/libs/gtkmm2ext/po/es.po +++ b/libs/gtkmm2ext/po/es.po @@ -94,36 +94,3 @@ msgstr "Pulsa para llevarlo a la ventana principal" #: textviewer.cc:34 msgid "Close" msgstr "Cerrar" - -#~ msgid "Error" -#~ msgstr "Error" - -#~ msgid "OK" -#~ msgstr "ACEPTAR" - -#~ msgid "Location:" -#~ msgstr "Localización:" - -#~ msgid "Browse ..." -#~ msgstr "Seleccionar ..." - -#~ msgid "Cancel" -#~ msgstr "Cancelar" - -#~ msgid "New folder" -#~ msgstr "Nueva carpeta" - -#~ msgid "Add to favorites" -#~ msgstr "Agregar a favoritos" - -#~ msgid "Remove from favorites" -#~ msgstr "Quitar de favoritos" - -#~ msgid "Show Hidden" -#~ msgstr "Mostrar ocultos" - -#~ msgid "Hide browser" -#~ msgstr "Ocultar explorador" - -#~ msgid "Rescan" -#~ msgstr "Buscar de nuevo" diff --git a/libs/gtkmm2ext/po/fr.po b/libs/gtkmm2ext/po/fr.po index b9ad99d844..56808e9281 100644 --- a/libs/gtkmm2ext/po/fr.po +++ b/libs/gtkmm2ext/po/fr.po @@ -54,11 +54,6 @@ msgstr "Commande" msgid "Control" msgstr "Ctrl" -#: keyboard.cc:70 keyboard.cc:73 keyboard.cc:87 keyboard.cc:90 -#, fuzzy -msgid "Key|Shift" -msgstr "Maj" - #: keyboard.cc:71 msgid "Option" msgstr "Option" @@ -75,11 +70,6 @@ msgstr "Meta" msgid "Unknown" msgstr "Inconnu" -#: keyboard.cc:542 -#, fuzzy -msgid "key bindings file not found at \"%2\" or contains errors." -msgstr "Raccourcis clavier pour %1 introuvable dans \"%1\" ou corrompu." - #: tearoff.cc:57 msgid "Click to tear this into its own window" msgstr "Cliquez pour afficher dans une fenêtre séparée" @@ -91,6 +81,3 @@ msgstr "Cliquez pour remettre dans la fenêtre principale" #: textviewer.cc:34 msgid "Close" msgstr "Fermer" - -#~ msgid "Mod1" -#~ msgstr "Mod1" diff --git a/libs/gtkmm2ext/po/nn.po b/libs/gtkmm2ext/po/nn.po index 7e3d72bed1..fd2ec5bb05 100644 --- a/libs/gtkmm2ext/po/nn.po +++ b/libs/gtkmm2ext/po/nn.po @@ -55,11 +55,6 @@ msgstr "" msgid "Command" msgstr "" -#: keyboard.cc:69 keyboard.cc:72 keyboard.cc:85 keyboard.cc:89 -#, fuzzy -msgid "Control" -msgstr "dim kontroll" - #: keyboard.cc:70 keyboard.cc:73 keyboard.cc:87 keyboard.cc:90 msgid "Key|Shift" msgstr "" @@ -95,2973 +90,3 @@ msgstr "" #: textviewer.cc:34 msgid "Close" msgstr "" - -#~ msgid "Fader" -#~ msgstr "Volumkontroll" - -#~ msgid "AudioDiskstream: Playlist \"%1\" isn't an audio playlist" -#~ msgstr "Lyd-diskstraum: Spelelista \"%1\" er ikkje ei lydspeleliste" - -#~ msgid "AudioDiskstream %1: there is no existing playlist to make a copy of!" -#~ msgstr "Lyd-diskstraum %1: det finst inga speleliste Ã¥ kopiera!" - -#~ msgid "" -#~ "AudioDiskstream %1: when refilling, cannot read %2 from playlist at frame " -#~ "%3" -#~ msgstr "" -#~ "Lyd-diskstraum %1: greidde ikkje lesa %2 frÃ¥ spelelista, ramme %3, ved " -#~ "attfylling" - -#~ msgid "AudioDiskstream %1: cannot read %2 from playlist at frame %3" -#~ msgstr "Lyd-diskstraum %1: greidde ikkje lesa %2 frÃ¥ spelelista, ramme %3" - -#~ msgid "AudioDiskstream %1: cannot write to disk" -#~ msgstr "Lyd-diskstraum %1: greidde ikkje skriva til disk" - -#~ msgid "AudioDiskstream \"%1\": cannot flush captured data to disk!" -#~ msgstr "Lyd-diskstraum \"%1\": greier ikkje skriva opptaket til disken!" - -#~ msgid "%1: could not create region for complete audio file" -#~ msgstr "%1: greidde ikkje laga bolk for heil lydfil" - -#~ msgid "AudioDiskstream: could not create region for captured audio!" -#~ msgstr "Lyd-diskstraum: greidde ikkje laga bolk frÃ¥ opptaket!" - -#~ msgid "programmer error: %1" -#~ msgstr "programmerarfeil: %1" - -#~ msgid "AudioDiskstream: channel %1 out of range" -#~ msgstr "Lyd-diskstraum: kanal %1 utanfor rekkjevidd" - -#~ msgid "%1:%2 new capture file not initialized correctly" -#~ msgstr "%1: ny opptaksfil %2 vart ikkje pÃ¥byrja rett" - -#~ msgid "%1: cannot restore pending capture source file %2" -#~ msgstr "%1: greidde ikkje henta fram att den ventande opptakskjeldefila %2" - -#~ msgid "%1: incorrect number of pending sources listed - ignoring them all" -#~ msgstr "%1: feil tal pÃ¥ ventande kjelder pÃ¥ lista - ser bort frÃ¥ alle" - -#~ msgid "%1: cannot create whole-file region from pending capture sources" -#~ msgstr "%1: greidde ikkje laga heilfilbolk frÃ¥ ventande opptakskjelder" - -#~ msgid "Could not open %1. Audio Library not saved" -#~ msgstr "Greidde ikkje opna %1. Lydbiblioteket er ikkje lagra" - -#~ msgid "" -#~ "Legacy crossfade involved an incoming region not present in playlist " -#~ "\"%1\" - crossfade discarded" -#~ msgstr "" -#~ "Gamal overtoning inneheld ein innkomande bolk som ikkje finst i " -#~ "spelelista «%1» - overtoninga ignorert" - -#~ msgid "" -#~ "Legacy crossfade involved an outgoing region not present in playlist " -#~ "\"%1\" - crossfade discarded" -#~ msgstr "" -#~ "Gamal overtoning inneheld ein utgÃ¥ande bolk som ikkje finst i spelelista " -#~ "«%1» - overtoninga ignorert" - -#~ msgid "Audio Playlists" -#~ msgstr "Lydspelelister" - -#~ msgid "region" -#~ msgstr "bolk" - -#~ msgid "regions" -#~ msgstr "bolkar" - -#~ msgid "A playlist with this name already exists, please rename it." -#~ msgstr "" -#~ "Det finst alt ei speleliste med dette namnet, gje henne eit nytt namn." - -#~ msgid "badly-formed XML in imported playlist" -#~ msgstr "feilforma XML i den importerte spelelista" - -#~ msgid "Audio Playlists (unused)" -#~ msgstr "Lydspelelister (ubrukte)" - -#~ msgid "programming error: %1" -#~ msgstr "Programmeringsfeil: %1" - -#~ msgid "Audio Regions" -#~ msgstr "Lydbolkar" - -#~ msgid "Length: " -#~ msgstr "Lengd:" - -#~ msgid "" -#~ "\n" -#~ "Position: " -#~ msgstr "" -#~ "\n" -#~ "Posisjon:" - -#~ msgid "" -#~ "\n" -#~ "Channels: " -#~ msgstr "" -#~ "\n" -#~ "Kanalar:" - -#~ msgid "Unknown bundle \"%1\" listed for input of %2" -#~ msgstr "Ukjend bundel \"%1\" lista opp for inngangen pÃ¥ %2" - -#~ msgid "in 1" -#~ msgstr "inn 1" - -#~ msgid "No input bundles available as a replacement" -#~ msgstr "Ingen inngangsbundlar klare som erstatting" - -#~ msgid "Bundle %1 was not available - \"in 1\" used instead" -#~ msgstr "Bundelen %1 var ikkje tilgjengeleg - brukar \"inn 1\" i staden for" - -#~ msgid "improper input channel list in XML node (%1)" -#~ msgstr "Feil inngangskanalliste i XML-node (%1)" - -#~ msgid "Audio Tracks" -#~ msgstr "Lydspor" - -#~ msgid "badly-formed XML in imported track" -#~ msgstr "feilforma XML i det importerte sporet" - -#~ msgid "Error Importing Audio track %1" -#~ msgstr "Greidde ikkje importera lydsporet %1" - -#~ msgid "cannot load VAMP plugin \"%1\"" -#~ msgstr "greier ikkje lasta VAMP-innstikket \"%1\"" - -#~ msgid "VAMP Plugin \"%1\" could not be loaded" -#~ msgstr "VAMP-innstikket \"%1\" vart ikkje lasta" - -#~ msgid "" -#~ "This version of JACK is old - you should upgrade to a newer version that " -#~ "supports jack_port_type_get_buffer_size()" -#~ msgstr "" -#~ "Denne utgÃ¥va av JACK er gamal - du bør oppgradera til ei utgÃ¥ve som " -#~ "støttar jack_port_type_get_buffer_size()" - -#~ msgid "Connect session to engine" -#~ msgstr "Kople økta til maskin" - -#~ msgid "" -#~ "a port with the name \"%1\" already exists: check for duplicated track/" -#~ "bus names" -#~ msgstr "" -#~ "ein port med namnet \"%1\" finst frÃ¥ før: sjekk opp dublettar i namn pÃ¥ " -#~ "spor eller bussar" - -#~ msgid "" -#~ "No more JACK ports are available. You will need to stop %1 and restart " -#~ "JACK with more ports if you need this many tracks." -#~ msgstr "" -#~ "Det finst ikkje fleire JACK-portar. Du mÃ¥ stoppa %1 og starta JACK pÃ¥ " -#~ "nytt med nok portar viss du treng sÃ¥ mange spor." - -#~ msgid "AudioEngine: cannot register port \"%1\": %2" -#~ msgstr "AudioEngine: greier ikkje registrera porten \"%1\": %2" - -#~ msgid "unable to create port: %1" -#~ msgstr "greidde ikkje laga port: %1" - -#~ msgid "connect called before engine was started" -#~ msgstr "tilkoplinga vart oppkalla frø tenaren starta" - -#~ msgid "AudioEngine: cannot connect %1 (%2) to %3 (%4)" -#~ msgstr "Lydmaskineri: Klarte ikkje kopla %1 (%2) til %3 (%4)." - -#~ msgid "disconnect called before engine was started" -#~ msgstr "frÃ¥koplinga vart oppkalla før tenaren starta" - -#~ msgid "get_port_by_name() called before engine was started" -#~ msgstr "get_port_by_name() vart oppkalla før tenaren starta" - -#~ msgid "get_ports called before engine was started" -#~ msgstr "get_ports vart oppkalla før tenaren starta" - -#~ msgid "failed to connect to JACK" -#~ msgstr "greidde ikkje kopla til JACK" - -#~ msgid "" -#~ "You have requested an operation that requires audio analysis.\n" -#~ "\n" -#~ "You currently have \"auto-analyse-audio\" disabled, which means that " -#~ "transient data must be generated every time it is required.\n" -#~ "\n" -#~ "If you are doing work that will require transient data on a regular " -#~ "basis, you should probably enable \"auto-analyse-audio\" then quit ardour " -#~ "and restart.\n" -#~ "\n" -#~ "This dialog will not display again. But you may notice a slight delay in " -#~ "this and future transient-detection operations.\n" -#~ msgstr "" -#~ "Du spurde etter ein operasjon som krev lydanalyse.\n" -#~ "\n" -#~ "Du har skrudd av \"auto-lydanalyse\", som tyder at lydtoppdata mÃ¥ lagast " -#~ "pÃ¥ nytt kvar gong det krevst.\n" -#~ "\n" -#~ "Viss du arbeider med lydtoppdata ofte, bør du truleg skru pÃ¥ \"auto-" -#~ "lydanalyse\", og so starta Ardour pÃ¥ nytt.\n" -#~ "\n" -#~ "Denne ruta blir ikkje synt pÃ¥ nytt, men du vil kanskje merka smÃ¥ " -#~ "forseinkingar i denne og framtidige lydtoppdata-søk.\n" - -#~ msgid "cannot rename peakfile for %1 from %2 to %3 (%4)" -#~ msgstr "kan ikkje døypa om toppfil for %1 frÃ¥ %2 til %3 (%4)" - -#~ msgid "AudioSource: cannot stat peakfile \"%1\"" -#~ msgstr "Lydkjelde: kan ikkje bruka toppfil \"%1\"" - -#~ msgid "cannot read sample data for unscaled peak computation" -#~ msgstr "kan ikkje lesa lyddata for uskalert topputrekning" - -#~ msgid "AudioSource: cannot open peakpath (a) \"%1\" (%2)" -#~ msgstr "Lydkjelde: kan ikkje opna toppstig (a) \"%1\" (%2)" - -#~ msgid "AudioSource: cannot open peakpath (b) \"%1\" (%2)" -#~ msgstr "Lydkjelde: kan ikkje opna toppstig (b) \"%1\" (%2)" - -#~ msgid "" -#~ "AudioSource[%1]: peak read - cannot read %2 samples at offset %3 of %4 " -#~ "(%5)" -#~ msgstr "" -#~ "AudioSource [%1]: topplesing - kan ikkje lesa %2 punkt ved forskuvinga %3 " -#~ "av %4 (%5)" - -#~ msgid "%1: could not write read raw data for peak computation (%2)" -#~ msgstr "%1 greidde ikkje skriva/lesa rÃ¥data for topputrekninga (%2)" - -#~ msgid "AudioSource: cannot open peakpath (c) \"%1\" (%2)" -#~ msgstr "Lydkjelde: kan ikkje opna toppstig (c) \"%1\" (%2)" - -#~ msgid "%1: could not write peak file data (%2)" -#~ msgstr "%1: greidde ikkje skriva toppfildata (%2)" - -#~ msgid "could not truncate peakfile %1 to %2 (error: %3)" -#~ msgstr "kan ikkje korta ned toppfila %1 til %2 (feil: %3)" - -#~ msgid "no outputs available for auditioner - manual connection required" -#~ msgstr "ingen utgangar for lyttinga - du mÃ¥ kopla til manuelt" - -#~ msgid "Auditioning of non-audio regions not yet supported" -#~ msgstr "Me har ikkje laga lytting for bolkar som ikkje er lyd enno" - -#~ msgid "Cannot setup auditioner processing flow for %1 channels" -#~ msgstr "Greier ikkje setja opp lyttehandteringsflyt for %1 kanalar" - -#~ msgid "Automation node has no path property" -#~ msgstr "Automasjonspunktet har ingen stigeigenskapar" - -#~ msgid "cannot open %2 to load automation data (%3)" -#~ msgstr "greier ikkje opna %2 for Ã¥ lasta automasjonsdata (%3)" - -#~ msgid "cannot load automation data from %2" -#~ msgstr "greier ikkje lasta automasjonsdata frÃ¥ %2" - -#~ msgid "" -#~ "automation list: cannot load coordinates from XML, all points ignored" -#~ msgstr "" -#~ "automasjonsliste: greier ikkje lasta koordinater frÃ¥ XML, sÃ¥g bort frÃ¥ " -#~ "alle punkt" - -#~ msgid "" -#~ "automation list: no x-coordinate stored for control point (point ignored)" -#~ msgstr "" -#~ "automasjonsliste: ingen x-koordinatar er lagra for kontrollpunktet " -#~ "(hoppar over)" - -#~ msgid "" -#~ "automation list: no y-coordinate stored for control point (point ignored)" -#~ msgstr "" -#~ "automasjonsliste: ingen y-koordinatar er lagra for kontrollpunktet " -#~ "(hoppar over)" - -#~ msgid "" -#~ "AutomationList: passed XML node called %1, not \"AutomationList\" - " -#~ "ignored" -#~ msgstr "" -#~ "AutomationList: gav XML-node med namet %1, ikkje \"AutomationList\" - sÃ¥g " -#~ "bort frÃ¥." - -#~ msgid "Cannot create transport request signal pipe (%1)" -#~ msgstr "Kan ikkje laga transportspørjingssignalrøyr (%1)" - -#~ msgid "UI: cannot set O_NONBLOCK on butler request pipe (%1)" -#~ msgstr "" -#~ "Grensesnitt: greier ikkje setja opp O_NONBLOCK pÃ¥ butler-spørjingsrøyret " -#~ "(%1)" - -#~ msgid "Session: could not create butler thread" -#~ msgstr "Økt: greier ikkje laga butler-trÃ¥d" - -#~ msgid "poll on butler request pipe failed (%1)" -#~ msgstr "undersøkjing pÃ¥ butler-spørjingsrøyret mislukka (%1)" - -#~ msgid "Error on butler thread request pipe: fd=%1 err=%2" -#~ msgstr "Feil pÃ¥ butler-spørsjingsrøyret: fd=%1 feil=%2" - -#~ msgid "Error reading from butler request pipe" -#~ msgstr "Feil: greidde ikkje lesa frÃ¥ butlerspørjingsrøyr" - -#~ msgid "Butler read ahead failure on dstream %1" -#~ msgstr "Butler-førlesingsfeil pÃ¥ dstream %1" - -#~ msgid "Butler write-behind failure on dstream %1" -#~ msgstr "Butler-etterskrivingsfeil pÃ¥ dstream %1" - -#~ msgid "control protocol name \"%1\" has no descriptor" -#~ msgstr "kontrollprotokollnamnet \"%1\" har inga skildring" - -#~ msgid "control protocol name \"%1\" could not be initialized" -#~ msgstr "kontrollprotokollnamnet \"%1\" greidde ikkje starta opp" - -#~ msgid "Instantiating mandatory control protocol %1" -#~ msgstr "Lagar obligatorisk kontrollprotokolløkt %1" - -#~ msgid "looking for control protocols in %1\n" -#~ msgstr "ser etter kontrollprotokollar i %1\n" - -#~ msgid "Control protocol %1 not usable" -#~ msgstr "Kontrollprotokollen %1 er ikkje brukande" - -#~ msgid "Control surface protocol discovered: \"%1\"" -#~ msgstr "Kontrollflateprotokollen \"%1\" oppdaga" - -#~ msgid "ControlProtocolManager: cannot load module \"%1\" (%2)" -#~ msgstr "Kontrollprotokollstyring: kan ikkje lasta modulen \"%1\" (%2)" - -#~ msgid "ControlProtocolManager: module \"%1\" has no descriptor function." -#~ msgstr "" -#~ "Kontrollprotokollstyring: modulen \"%1\" har ingen skildringsfunksjon." - -#~ msgid "CycleTimer::get_mhz(): can't open /proc/cpuinfo" -#~ msgstr "CycleTimer::get:mhz()-funksjonen: kan ikkje opna /proc/cpuinfo" - -#~ msgid "CycleTimer::get_mhz(): cannot locate cpu MHz in /proc/cpuinfo" -#~ msgstr "" -#~ "CycleTimer::get:mhz()-funksjonen: finn ikkje prosessor-MHz i /proc/cpuinfo" - -#~ msgid "cannot locate cpu MHz in /proc/cpuinfo" -#~ msgstr "finn ikkje prosessor-MHz i /proc/cpuinfo" - -#~ msgid "audio" -#~ msgstr "lyd" - -#~ msgid "MIDI" -#~ msgstr "MIDI" - -#~ msgid "unknown" -#~ msgstr "ukjend" - -#~ msgid "main outs" -#~ msgstr "hovudutgangar" - -#~ msgid "listen" -#~ msgstr "høyr pÃ¥" - -#~ msgid "Location \"%1\" not valid for track loop (start >= end)" -#~ msgstr "" -#~ "Staden \"%1\" er ikkje gyldig for Ã¥ spela spor i lykkje (start >= slutt)" - -#~ msgid "Could not get port for export channel \"%1\", dropping the channel" -#~ msgstr "" -#~ "Greidde ikkje fÃ¥ port for eksportkanalen \"%1\", hoppar over kanalen" - -#~ msgid "Export failed: %1" -#~ msgstr "Eksportfeil: %1" - -#~ msgid "" -#~ "Existing export folder for this session (%1) does not exist - ignored" -#~ msgstr "" -#~ "Eksisterande eksportmappe for denne økta (%1) finst ikkje - ignorert" - -#~ msgid "No Time" -#~ msgstr "Inga tid" - -#~ msgid "Invalid time format" -#~ msgstr "Ugyldig tidsformat" - -#~ msgid "No Date" -#~ msgstr "Ingen dato" - -#~ msgid "Invalid date format" -#~ msgstr "Ugyldig datoformat" - -#~ msgid "CD" -#~ msgstr "CD" - -#~ msgid "DVD-A" -#~ msgstr "DVD-A" - -#~ msgid "iPod" -#~ msgstr "iPod" - -#~ msgid "Something else" -#~ msgstr "Noko anna" - -#~ msgid "Any" -#~ msgstr "Alt" - -#~ msgid "Lossless (linear PCM)" -#~ msgstr "Tapsfritt (lineær PCM)" - -#~ msgid "Lossy compression" -#~ msgstr "Komprimering med tap" - -#~ msgid "Lossless compression" -#~ msgstr "Tapsfri komprimering" - -#~ msgid "Session rate" -#~ msgstr "Øktrate" - -#~ msgid "normalize" -#~ msgstr "normaliser" - -#~ msgid "trim" -#~ msgstr "skjer til" - -#~ msgid "trim start" -#~ msgstr "start tilskjering" - -#~ msgid "trim end" -#~ msgstr "slutt tilskjering" - -#~ msgid "Shaped Noise" -#~ msgstr "Forma støy" - -#~ msgid "Triangular" -#~ msgstr "Trekant" - -#~ msgid "Rectangular" -#~ msgstr "Firkant" - -#~ msgid "None" -#~ msgstr "Ingen" - -#~ msgid "8bit" -#~ msgstr "8-bit" - -#~ msgid "16bit" -#~ msgstr "16-bit" - -#~ msgid "24bit" -#~ msgstr "24-bit" - -#~ msgid "32bit" -#~ msgstr "32-bit" - -#~ msgid "float" -#~ msgstr "flyttal" - -#~ msgid "double" -#~ msgstr "dobbel" - -#~ msgid "8bit unsigned" -#~ msgstr "8bit usignert" - -#~ msgid "Vorbis sample format" -#~ msgstr "Vorbis-punktformat" - -#~ msgid "No sample format" -#~ msgstr "Ikkje noko punktformat" - -#~ msgid "Editor: cannot open \"%1\" as export file for CD marker file" -#~ msgstr "" -#~ "Redigering: greier ikkje opna \"%1\" som eksportfil for CD-markørfil" - -#~ msgid "an error occured while writing a TOC/CUE file: %1" -#~ msgstr "greidde ikkje skriva ei TOC/CUE-fil: %1" - -#~ msgid "Cannot convert %1 to Latin-1 text" -#~ msgstr "Greier ikkje omdanna %1 til Latin-1-tekst" - -#~ msgid "Searching for export formats in %1" -#~ msgstr "Leitar etter eksportformat i %1" - -#~ msgid "Unable to create export format directory %1: %2" -#~ msgstr "Greier ikkje laga eksportformatmappa %1 : %2" - -#~ msgid "Unable to remove export preset %1: %2" -#~ msgstr "Greier ikkje fjerna eksportoppsettet %1: %2" - -#~ msgid "Selection" -#~ msgstr "Val" - -#~ msgid "Session" -#~ msgstr "Økt" - -#~ msgid "Unable to rename export format %1 to %2: %3" -#~ msgstr "kan ikkje døypa om eksportformatet frÃ¥ %1 til %2: %3" - -#~ msgid "Unable to remove export profile %1: %2" -#~ msgstr "Greier ikkje fjerna eksportprofilen %1: %2" - -#~ msgid "empty format" -#~ msgstr "tomt format" - -#~ msgid "No timespan has been selected!" -#~ msgstr "Du har ikkje valt noko tidsomfang!" - -#~ msgid "No channels have been selected!" -#~ msgstr "Ingen MIDI-kanalar er valde!" - -#~ msgid "Some channels are empty" -#~ msgstr "Nokre av kanalane er tomme" - -#~ msgid "No format selected!" -#~ msgstr "Du har ikkje valt noko format!" - -#~ msgid "All channels are empty!" -#~ msgstr "Alle kanalane er tomme!" - -#~ msgid "" -#~ "One or more of the selected formats is not compatible with this system!" -#~ msgstr "" -#~ "Eitt eller fleire av desse formata samsvarar ikkje med dette systemet!" - -#~ msgid "" -#~ "%1 supports only %2 channels, but you have %3 channels in your channel " -#~ "configuration" -#~ msgstr "" -#~ "%1 støttar berre %2 kanalar, men du har %3 kanalar i kanaloppsettet ditt" - -#~ msgid "" -#~ "there are already 1000 files with names like %1; versioning discontinued" -#~ msgstr "Det er alt 1000 filer med namn som %1, kuttar ut versjonsnamn" - -#~ msgid "cannot rename file source from %1 to %2 (%3)" -#~ msgstr "kan ikkje døypa om filkjelda frÃ¥ %1 til %2 (%3)" - -#~ msgid "FileSource: search path not set" -#~ msgstr "Filkjelde: søkjestigen er ikkje sett opp" - -#~ msgid "Filesource: cannot find required file (%1): while searching %2" -#~ msgstr "Filkjelde: Kan ikkje finna fila (%1) under søking i %2" - -#~ msgid "" -#~ "FileSource: \"%1\" is ambigous when searching %2\n" -#~ "\t" -#~ msgstr "" -#~ "Filkjelde: \"%1\" er tvetydig nÃ¥r du søkjer %2\n" -#~ "\t" - -#~ msgid "Filesource: cannot find required file (%1): %2" -#~ msgstr "Filkjelde: Kan ikkje finna den naudsynte fila %1: %2" - -#~ msgid "Filesource: cannot check for existing file (%1): %2" -#~ msgstr "Filkjelde:Kan ikkje sjÃ¥ etter eksisterande fil %1: %2" - -#~ msgid "" -#~ "Programming error! %1 tried to rename a file over another file! It's safe " -#~ "to continue working, but please report this to the developers." -#~ msgstr "" -#~ "Programmeringsfeil! %1 prøvde Ã¥ døypa ei fil til eit filnamn som alt " -#~ "eksisterer. Det er trygt Ã¥ halda fram Ã¥ arbeida, men ver god Ã¥ seia frÃ¥ " -#~ "til utviklarane." - -#~ msgid "cannot rename file %1 to %2 (%3)" -#~ msgstr "kan ikkje døypa om %1 til %2 (%3)" - -#~ msgid "Cannot create Configuration directory %1 - cannot run" -#~ msgstr "Greier ikkje laga oppsettsmappa %1 - kan ikkje køyra" - -#~ msgid "" -#~ "Configuration directory %1 already exists and is not a directory/folder - " -#~ "cannot run" -#~ msgstr "" -#~ "Oppsettsmappa %1 finst allereie, men er ikkje ei mappe/katalog - kan " -#~ "ikkje køyra" - -#~ msgid "ARDOUR_DLL_PATH not set in environment - exiting\n" -#~ msgstr "ARDOUR_DLL_PATH ikkje sett i miljøet - avsluttar\n" - -#~ msgid "ARDOUR_CONFIG_PATH not set in environment - exiting\n" -#~ msgstr "ARDOUR_CONFIG_PATH ikkje sett i miljøet - avsluttar\n" - -#~ msgid "ARDOUR_DATA_PATH not set in environment - exiting\n" -#~ msgstr "ARDOUR_DATA_PATH ikkje sett i miljøet - avsluttar\n" - -#~ msgid "filter: error creating name for new file based on %1" -#~ msgstr "lydfilter: feil med Ã¥ laga namn for ny fil bygd pÃ¥ %1" - -#~ msgid "filter: error creating new file %1 (%2)" -#~ msgstr "lydfilter: feil med Ã¥ laga den nye fila %1 (%2)" - -#~ msgid "Could not resolve path: %1 (%2)" -#~ msgstr "Greidde ikkje finna stigen: %1: (%2)" - -#~ msgid "cannot check session path %1 (%2)" -#~ msgstr "greier ikkje sjekka øktstigen %1 (%2)" - -#~ msgid "cannot check statefile %1 (%2)" -#~ msgstr "greier ikkje sjekka tilstandsfila %1 (%2)" - -#~ msgid "%1 is not a snapshot file" -#~ msgstr "%1 er ikkje ei snøggbiletefil" - -#~ msgid "cannot determine current working directory (%1)" -#~ msgstr "greier ikkje avgjera kva som er arbeidsmappa no (%1)" - -#~ msgid "unknown file type for session %1" -#~ msgstr "ukjend filtype for økta %1" - -#~ msgid "Could not set system open files limit to \"unlimited\"" -#~ msgstr "Greidde ikkje setja systemgrensa for opne filer til \"uavgrensa\"" - -#~ msgid "Could not set system open files limit to %1" -#~ msgstr "Greidde ikkje setja grensa for opne systemfiler til %1" - -#~ msgid "Your system is configured to limit %1 to only %2 open files" -#~ msgstr "Maskina di er avgrensa til at %1 berre kan opna %2 filer" - -#~ msgid "Could not get system open files limit (%1)" -#~ msgstr "Greidde ikkje fÃ¥ tak i grensa for opne systemfiler (%1)" - -#~ msgid "Loading configuration" -#~ msgstr "Lastar oppsettet" - -#~ msgid "" -#~ "Could not find a source for %1 even though we are updating this file!" -#~ msgstr "" -#~ "Greier ikkje finna kjelda for %1, sjølv om det er denne fila me " -#~ "oppdaterer!" - -#~ msgid "Unable to create file %1 during import" -#~ msgstr "Greier ikkje laga fila %1 under import!" - -#~ msgid "Resampling %1 from %2kHz to %3kHz" -#~ msgstr "Kodar om %1 frÃ¥ %2kHz til %3kHz" - -#~ msgid "Copying %1" -#~ msgstr "Kopierer%1" - -#~ msgid "Track %1 of %2 contained no usable MIDI data" -#~ msgstr "Spor %1 av %2 inneheld ingen brukbare MIDI-data" - -#~ msgid "MIDI file %1 was not readable (no reason available" -#~ msgstr "MIDI-fila %1 kan ikkje lesast (og me finn ingen grunn til det" - -#~ msgid "Import: cannot open input sound file \"%1\"" -#~ msgstr "Import: greier ikkje opna inn-lydfila \"%1\"" - -#~ msgid "Import: error opening MIDI file" -#~ msgstr "Import: greidde ikkje opna MIDI-fil" - -#~ msgid "Loading MIDI file %1" -#~ msgstr "Lastar MIDI-fila %1" - -#~ msgid "Failed to remove some files after failed/cancelled import operation" -#~ msgstr "Greidde ikkje fjerna nokre filer etter mislukka/avbroten import" - -#~ msgid "preset %1 (bank %2)" -#~ msgstr "førehandsoppsett %1 (bank %2)" - -#~ msgid "%1 - cannot find any track/bus with the ID %2 to connect to" -#~ msgstr "%1 - finn ingen spor/buss med ID-en %2 Ã¥ kopla til" - -#~ msgid "IO: cannot disconnect port %1 from %2" -#~ msgstr "IU: kan ikkje kopla porten %1 frÃ¥ %2" - -#~ msgid "IO: cannot register input port %1" -#~ msgstr "IU: greier ikkje registrera inngangsporten %1" - -#~ msgid "IO: cannot register output port %1" -#~ msgstr "IU: greier ikkje registrera utgangsporten %1" - -#~ msgid "incorrect XML node \"%1\" passed to IO object" -#~ msgstr "feil XML-punkt, \"%1\", sendt til IU-objektet" - -#~ msgid "in" -#~ msgstr "inn" - -#~ msgid "out" -#~ msgstr "ut" - -#~ msgid "input" -#~ msgstr "inngang" - -#~ msgid "output" -#~ msgstr "utgang" - -#~ msgid "Unknown bundle \"%1\" listed for %2 of %3" -#~ msgstr "Ukjend bundel \"%1\" lista for %2 av %3" - -#~ msgid "Bundle %1 was not available - \"%2\" used instead" -#~ msgstr "Bundelen %1 var ikkje tilgjengeleg - brukte \"%2\" i staden" - -#~ msgid "No %1 bundles available as a replacement" -#~ msgstr "Ingen %1-bundlar klare som erstatting" - -#~ msgid "%1: cannot create I/O ports" -#~ msgstr "%1: greier ikkje laga I/U-portar" - -#~ msgid "IO: badly formed string in XML node for inputs \"%1\"" -#~ msgstr "IU: feilforma streng i XML-opunkt for inngangane \"%1\"" - -#~ msgid "bad input string in XML node \"%1\"" -#~ msgstr "feil inngangsstreng i XML-punktet \"%1\"" - -#~ msgid "IO: badly formed string in XML node for outputs \"%1\"" -#~ msgstr "IU: feilforma streng i XML-punktet for utgangane \"%1\"" - -#~ msgid "IO: bad output string in XML node \"%1\"" -#~ msgstr "IU: feil utgangsstreng i XML-punktet \"%1\"" - -#~ msgid "midi" -#~ msgstr "midi" - -#~ msgid "%s %u" -#~ msgstr "%s %u" - -#~ msgid "%s in" -#~ msgstr " %s inn" - -#~ msgid "%s out" -#~ msgstr "%s ut" - -#~ msgid "mono" -#~ msgstr "mono" - -#~ msgid "L" -#~ msgstr "V" - -#~ msgid "R" -#~ msgstr "H" - -#~ msgid "%d" -#~ msgstr "%d" - -#~ msgid "LADSPA: module has no descriptor function." -#~ msgstr "LADSPA: modulen har ingen skildringsfunksjon" - -#~ msgid "LADSPA: plugin has gone away since discovery!" -#~ msgstr "LADSPA: tilleggsprogrammet har vorte borte sidan det vart oppdaga!" - -#~ msgid "LADSPA: \"%1\" cannot be used, since it cannot do inplace processing" -#~ msgstr "" -#~ "LADSPA: kan ikkje bruka \"%1\", sidan han ikkje kan prosessera pÃ¥ staden" - -#~ msgid "" -#~ "illegal parameter number used with plugin \"%1\". This mayindicate a " -#~ "change in the plugin design, and presets may beinvalid" -#~ msgstr "" -#~ "ein ulovleg parameter vart brukt med tilleggsprogrammet \"%1\". Dette kan " -#~ "tyda pÃ¥ feil i korleis tilleggsprogrammet er utforma, og at eventuelle " -#~ "ferdigprogram kan vera ugyldige." - -#~ msgid "Bad node sent to LadspaPlugin::set_state" -#~ msgstr "Feil punkt sendt til LadspaPlugin::set_state" - -#~ msgid "LADSPA: no ladspa port number" -#~ msgstr "LADSPA: ikkje noko Ladspa-portnummer" - -#~ msgid "LADSPA: no ladspa port data" -#~ msgstr "LADSPA: ingen portdata" - -#~ msgid "LADSPA: cannot load module from \"%1\"" -#~ msgstr "LADSPA: greier ikkje lasta modul frÃ¥ \"%1\"" - -#~ msgid "Could not locate HOME. Preset not removed." -#~ msgstr "Greidde ikkje finna heimemappa. Har ikkje fjera ferdigoppsett." - -#~ msgid "Could not create %1. Preset not saved. (%2)" -#~ msgstr "Greidde ikkje laga %1. Har ikkje lagra ferdigoppsett. (%2)" - -#~ msgid "Error saving presets file %1." -#~ msgstr "Feil med Ã¥ lagra ferdigoppsettfila %1." - -#~ msgid "Could not locate HOME. Preset not saved." -#~ msgstr "Greidde ikkje finna heimemappa. Har ikkje lagra ferdigoppsett." - -#~ msgid "You cannot put a CD marker at this position" -#~ msgstr "Du kan ikkje leggja til ein CD-markør her" - -#~ msgid "incorrect XML node passed to Location::set_state" -#~ msgstr "feil XML-punkt sendt til Location::set_state" - -#~ msgid "XML node for Location has no ID information" -#~ msgstr "XML-punktet for denne staden har ingen ID-informasjon" - -#~ msgid "XML node for Location has no name information" -#~ msgstr "XML-punktet for denne staden har ingen namneinformasjon" - -#~ msgid "XML node for Location has no start information" -#~ msgstr "XML-punktet for denne staden har ingen startinformasjon" - -#~ msgid "XML node for Location has no end information" -#~ msgstr "XML-punktet for denne staden har ingen sluttinformasjon" - -#~ msgid "XML node for Location has no flags information" -#~ msgstr "XML-punktet for denne staden har ingen flagginformasjon" - -#~ msgid "Locations: attempt to use unknown location as selected location" -#~ msgstr "Stader: forsøk pÃ¥ Ã¥ bruka ukjend stad som vald stad" - -#~ msgid "incorrect XML mode passed to Locations::set_state" -#~ msgstr "feil XML-modus send til Locations::set_state" - -#~ msgid "session" -#~ msgstr "økt" - -#~ msgid "could not load location from session file - ignored" -#~ msgstr "greidde ikkje lasta stad frÃ¥ øktfila - hoppa over" - -#~ msgid "Locations" -#~ msgstr "Plasseringar" - -#~ msgid "Location: " -#~ msgstr "Plassering:" - -#~ msgid "" -#~ "Range\n" -#~ "start: " -#~ msgstr "" -#~ "Bolk-\n" -#~ "start:" - -#~ msgid "" -#~ "\n" -#~ "end: " -#~ msgstr "" -#~ "\n" -#~ "slutten:" - -#~ msgid "" -#~ "The location is the Punch range. It will be imported as a normal range.\n" -#~ "You may rename the imported location:" -#~ msgstr "" -#~ "Plasseringa er innslagsomrÃ¥det, som vil bli importert som ein vanleg " -#~ "bolk.\n" -#~ "Du kan gje eit nytt namn til den importerte plasseringa:" - -#~ msgid "" -#~ "The location is a Loop range. It will be imported as a normal range.\n" -#~ "You may rename the imported location:" -#~ msgstr "" -#~ "Plasseringa er lykkjeomrÃ¥det, som vil bli importert som ein vanleg bolk.\n" -#~ "Du kan gje eit nytt namn til den importerte plasseringa:" - -#~ msgid "" -#~ "A location with that name already exists.\n" -#~ "You may rename the imported location:" -#~ msgstr "" -#~ "Det finst alt ei plassering med det namnet.\n" -#~ "Du kan gje eit nytt namn til den importerte plasseringa:" - -#~ msgid "Session framerate adjusted from %1 to LTC's %2." -#~ msgstr "Rammeraten for økta er endra frÃ¥ %1 til LTC %2" - -#~ msgid "Session and LTC framerate mismatch: LTC:%1 Session:%2." -#~ msgstr "Økt- og LTC-rammerate passar ikkje. LTC: %1 Økt: %2" - -#~ msgid "flywheel" -#~ msgstr "svinghjul" - -#~ msgid "" -#~ "%1: I/O configuration change %4 requested to use %2, but channel setup is " -#~ "%3" -#~ msgstr "" -#~ "%1: I/U-oppsettsendringa %4 ba om Ã¥ bruka %2, men kanaloppsettet er %3" - -#~ msgid "MidiDiskstream: Playlist \"%1\" isn't an midi playlist" -#~ msgstr "MIDI-diskstraum: Spelelista \"%1\" er ikkje ei midispeleliste" - -#~ msgid "MidiDiskstream %1: there is no existing playlist to make a copy of!" -#~ msgstr "MIDI-diskstraum %1: det finst inga speleliste Ã¥ kopiera!" - -#~ msgid "MidiDiskstream %1: cannot read %2 from playlist at frame %3" -#~ msgstr "MIDI-diskstraum %1: greidde ikkje lesa %2 frÃ¥ spelelista, ramme %3" - -#~ msgid "MidiDiskstream %1: cannot write to disk" -#~ msgstr "MIDI-diskstraum %1: greidde ikkje skriva til disk" - -#~ msgid "MidiDiskstream \"%1\": cannot flush captured data to disk!" -#~ msgstr "MIDI-diskstraum \"%1\": greier ikkje skriva opptaket til disken!" - -#~ msgid "%1: could not create region for complete midi file" -#~ msgstr "%1: greidde ikkje laga bolk for heil midifil" - -#~ msgid "MidiDiskstream: could not create region for captured midi!" -#~ msgstr "MIDI-diskstraum: greidde ikkje laga bolk frÃ¥ midi-opptaket!" - -#~ msgid "MidiDiskstream: XML property channel-mask out of range" -#~ msgstr "MIDI-diskstraum: kanalmaske for XML-eigenskap utanfor rekkjevidd" - -#~ msgid "No NoteID found for note property change - ignored" -#~ msgstr "Fann ingen NoteID for noteeigenskapsendringa - sÃ¥g bort frÃ¥" - -#~ msgid "No SysExID found for sys-ex property change - ignored" -#~ msgstr "Fann ingen SysExID for sys-ex-eigenskapsendring - sÃ¥g bort frÃ¥" - -#~ msgid "transpose" -#~ msgstr "transponer" - -#~ msgid "Missing parameter property on InterpolationStyle" -#~ msgstr "Manglar parametereigenskap pÃ¥ InterpolationStyle" - -#~ msgid "Missing style property on InterpolationStyle" -#~ msgstr "Manglar stileigenskap pÃ¥ InterpolationStyle" - -#~ msgid "Missing parameter property on AutomationState" -#~ msgstr "Manglar parameterigenskap pÃ¥ AutomationStyle" - -#~ msgid "Missing state property on AutomationState" -#~ msgstr "Manglar statuseigenskap pÃ¥ AutomationState" - -#~ msgid "monitor dim" -#~ msgstr "dim lytting" - -#~ msgid "monitor cut" -#~ msgstr "kutt lytting" - -#~ msgid "monitor mono" -#~ msgstr "lytting i mono" - -#~ msgid "monitor dim level" -#~ msgstr "dimnivÃ¥ lytting" - -#~ msgid "monitor solo boost level" -#~ msgstr "soloaukingsnivÃ¥ for lytting" - -#~ msgid "cut control %1" -#~ msgstr "kutt kontroll %1" - -#~ msgid "polarity control" -#~ msgstr "polaritetskontroll" - -#~ msgid "solo control" -#~ msgstr "solo kontroll" - -#~ msgid "MTC Slave: atomic read of current time failed, sleeping!" -#~ msgstr "MTC-slave: greidde ikkje lesa gyldig tid. Søv." - -#~ msgid "" -#~ "Unknown rate/drop value %1 in incoming MTC stream, session values used " -#~ "instead" -#~ msgstr "" -#~ "Ukjent rate/sleppverdi %1 i innkomande MTC-straum, bruker øktverdiar i " -#~ "staden" - -#~ msgid "Session framerate adjusted from %1 TO: MTC's %2." -#~ msgstr "Rammeraten for økta justert frÃ¥ %1 til MTC: %2" - -#~ msgid "Session and MTC framerate mismatch: MTC:%1 Ardour:%2." -#~ msgstr "Økt- og MTC-rammeraten passar ikkje. MTC: %1 Ardour: %2" - -#~ msgid "capture" -#~ msgstr "opptak" - -#~ msgid "paste" -#~ msgstr "lim inn" - -#~ msgid "duplicate region" -#~ msgstr "klon bolken" - -#~ msgid "insert file" -#~ msgstr "set inn fil" - -#~ msgid "insert region" -#~ msgstr "set inn bolk" - -#~ msgid "drag region brush" -#~ msgstr "bolkdragingsbørste" - -#~ msgid "region drag" -#~ msgstr "bolkdraging" - -#~ msgid "selection grab" -#~ msgstr "ta tak i utval" - -#~ msgid "region fill" -#~ msgstr "bolkfylling" - -#~ msgid "fill selection" -#~ msgstr "fyll utvalet" - -#~ msgid "create region" -#~ msgstr "lag ein bolk" - -#~ msgid "region copy" -#~ msgstr "bolkkopi" - -#~ msgid "fixed time region copy" -#~ msgstr "fast tid-bolkkopi" - -#~ msgid "Pannable given XML data for %1 - ignored" -#~ msgstr "Panoreringa fekk XML-data for %1 - ignorert" - -#~ msgid "looking for panners in %1" -#~ msgstr "ser etter panoreringar i %1" - -#~ msgid "Panner discovered: \"%1\" in %2" -#~ msgstr "Fann panoreringar: «%1» i %2" - -#~ msgid "PannerManager: cannot load module \"%1\" (%2)" -#~ msgstr "Panoreringsstyring: kan ikkje lasta modulen \"%1\" (%2)" - -#~ msgid "PannerManager: module \"%1\" has no descriptor function." -#~ msgstr "Panoreringsstyring: modulen \"%1\" har ingen skildringsfunksjon." - -#~ msgid "no panner discovered for in/out = %1/%2" -#~ msgstr "fann inga panorering for inn/ut = %1/%2" - -#~ msgid "Unknown panner plugin \"%1\" found in pan state - ignored" -#~ msgstr "" -#~ "Ukjent panoreringstilleggsprogram, \"%1\", funne i panoreringstilstand. " -#~ "Hoppa over." - -#~ msgid "panner plugin node has no type information!" -#~ msgstr "tilleggsprogrampunktet for panoreringa har ingen typeinformasjon!" - -#~ msgid "region state node has no ID, ignored" -#~ msgstr "omrÃ¥destatusnoden har ingen ID, ser bort frÃ¥" - -#~ msgid "Playlist: cannot create region from XML" -#~ msgstr "Speleliste: greier ikkje laga bolk frÃ¥ XML" - -#~ msgid "No playlist ID in PlaylistSource XML!" -#~ msgstr "Fann ingen speleliste-ID i PlaylistSource-XML!" - -#~ msgid "Could not construct playlist for PlaylistSource from session data!" -#~ msgstr "Greidde ikkje byggja speleliste for PlaylistSource frÃ¥ øktdata!" - -#~ msgid "programming error: " -#~ msgstr "programmeringsfeil: " - -#~ msgid "XML node describing plugin is missing the `type' field" -#~ msgstr "XML-punktet som skildrar utvidinga manglar 'type'-feltet" - -#~ msgid "unknown plugin type %1 in plugin insert state" -#~ msgstr "ukjent programtilleggstype %1 i innpluggingstilstanden" - -#~ msgid "Plugin has no unique ID field" -#~ msgstr "Innstikket har ikkje noko eige ID-felt" - -#~ msgid "" -#~ "Found a reference to a plugin (\"%1\") that is unknown.\n" -#~ "Perhaps it was removed or moved since it was last used." -#~ msgstr "" -#~ "Fann ein referanse til det ukjende tilleggsprogrammet \"%1\".\n" -#~ "Kanskje det har vorte fjerna eller flytt sidan sist det vart brukt." - -#~ msgid "PluginInsert: Auto: no ladspa port number" -#~ msgstr "PluginInsert:Auto: ikkje noko ladspa-portnummer" - -#~ msgid "PluginInsert: Auto: port id out of range" -#~ msgstr "PluginInsert: Auto: port-id utanfor rekkjevidd" - -#~ msgid "PluginInsert: automatable control %1 not found - ignored" -#~ msgstr "" -#~ "PluginInsert: fann ikkje den automasjonsferdige kontrollen %1, sÃ¥g bort " -#~ "frÃ¥ han." - -#~ msgid "Discovering Plugins" -#~ msgstr "Finn innstikk" - -#~ msgid "Could not parse rdf file: %1" -#~ msgstr "Greidde ikkje tolka rdf-fila: %1" - -#~ msgid "LADSPA: cannot load module \"%1\" (%2)" -#~ msgstr "LADSPA: greier ikkje lasta modulen \"%1\" (%2)" - -#~ msgid "LADSPA: module \"%1\" has no descriptor function." -#~ msgstr "LADSPA: modulen \"%1\" har ingen skildringsfunksjon." - -#~ msgid "" -#~ "VST plugin %1 does not support processReplacing, and so cannot be used in " -#~ "ardour at this time" -#~ msgstr "" -#~ "VST-tilleggsprogrammet %1 støttar ikkje prosessbyte, og kan ikkje brukast " -#~ "i Ardour nett no." - -#~ msgid "" -#~ "linuxVST plugin %1 does not support processReplacing, and so cannot be " -#~ "used in ardour at this time" -#~ msgstr "" -#~ "linuxVST-utvidinga %1 støttar ikkje prosessbyte, og kan ikkje brukast i " -#~ "Ardour nett no." - -#~ msgid "unknown plugin status type \"%1\" - all entries ignored" -#~ msgstr "\"%1\" er ein ukjend utvidingsstatustype, sÃ¥g bort frÃ¥ alt" - -#~ msgid "unknown plugin type \"%1\" - ignored" -#~ msgstr "\"%1\" er ein ukjend innstikktype - hoppa over" - -#~ msgid "get_connected_latency_range() called while disconnected from JACK" -#~ msgstr "get_connected_latency_range() kalla opp dÃ¥ JACK vart frÃ¥kopla" - -#~ msgid "could not reregister %1" -#~ msgstr "greidde ikkje registrera %1." - -#~ msgid "insert %1" -#~ msgstr "set inn %1" - -#~ msgid "XML node describing port insert is missing the `type' field" -#~ msgstr "XML-punktet som skildrar portinnstikket manglar 'type'-feltet" - -#~ msgid "non-port insert XML used for port plugin insert" -#~ msgstr "" -#~ "tappingspunkt-XML som ikkje er ein port er brukt for porttilleggstapping" - -#~ msgid "No %1 property flag in element %2" -#~ msgstr "Ikkje noko %1-eigenskapsflagg i elementet %2" - -#~ msgid "No child node with active property" -#~ msgstr "Ingen undernode med aktiv eigenskap" - -#~ msgid "Loading system configuration file %1" -#~ msgstr "Lastar systemoppsettfila %1" - -#~ msgid "%1: cannot read system configuration file \"%2\"" -#~ msgstr "%1: greier ikkje lesa systemoppsettfila \"%2\"" - -#~ msgid "%1: system configuration file \"%2\" not loaded successfully." -#~ msgstr "%1: greidde ikkje lasta systemoppsettfila \"%2\" skikkeleg." - -#~ msgid "" -#~ "your system %1 configuration file is empty. This probably means that " -#~ "there as an error installing %1" -#~ msgstr "" -#~ "Oppsettsfila for %1 er tom. Dette tyder truleg at det var ein feil dÃ¥ %1 " -#~ "vart installert." - -#~ msgid "Loading user configuration file %1" -#~ msgstr "Lastar brukaroppsettfila %1" - -#~ msgid "%1: cannot read configuration file \"%2\"" -#~ msgstr "%1: greier ikkje lesa oppsettfila \"%2\"" - -#~ msgid "%1: user configuration file \"%2\" not loaded successfully." -#~ msgstr "%1: greidde ikkje lasta brukaroppsettfila \"%2\" skikkeleg." - -#~ msgid "your %1 configuration file is empty. This is not normal." -#~ msgstr "%1-oppsettsfila di er tom. Dette er ikkje normalt." - -#~ msgid "Config file %1 not saved" -#~ msgstr "Oppsettfila %1 er ikkje lagra" - -#~ msgid "cannot open recent session file %1 (%2)" -#~ msgstr "greier ikkje opna den nyleg brukte øktfila %1 (%2)" - -#~ msgid "" -#~ "programming error: RegionFactory::create() called with unknown Region type" -#~ msgstr "" -#~ "programmeringsfeil: RegionFactory::create()-funksjonen oppkalle med " -#~ "ukjent bolktype" - -#~ msgid "%1 compound-%2 (%3)" -#~ msgstr "%1 samansett-%2 (%3)" - -#~ msgid "%1 compound-%2.1 (%3)" -#~ msgstr "%1 samansett-%2.1 (%3)" - -#~ msgid "cannot create new name for region \"%1\"" -#~ msgstr "greier ikkje laga nytt namn for bolken \"%1\"" - -#~ msgid "Import: %1" -#~ msgstr "Import: %1" - -#~ msgid "Import: src_new() failed : %1" -#~ msgstr "Import: src_new()-funkjsonen lukkast ikkje: %1" - -#~ msgid "return %1" -#~ msgstr "retur %1" - -#~ msgid "unknown Processor type \"%1\"; ignored" -#~ msgstr "\"%1\" er ein ukjend prosesseringstype, hoppa over" - -#~ msgid "processor could not be created. Ignored." -#~ msgstr "greidde ikkje laga prosessering. Hoppa over." - -#~ msgid "Bad node sent to Route::set_state() [%1]" -#~ msgstr "Feil punkt sendt til Route::set_state()-funksjonen [%1]" - -#~ msgid "Pannable state found for route (%1) without a panner!" -#~ msgstr "Fann panoreringsstatus for ruta (%1) utan panorering!" - -#~ msgid "badly formed order key string in state file! [%1] ... ignored." -#~ msgstr "feilforma tingingsnykjelstreng i tilstandsfil! [%1] ... hoppa over." - -#~ msgid "You cannot subgroup MIDI tracks at this time" -#~ msgstr "Du kan ikkje laga undergrupper for MIDI-spor no" - -#~ msgid "tempoize: error reading data from %1 at %2 (wanted %3, got %4)" -#~ msgstr "" -#~ "lag tempo: greidde ikkje lesa data frÃ¥ %1 ved %2 (ville ha %3, fekk %4)" - -#~ msgid "error writing tempo-adjusted data to %1" -#~ msgstr "greidde ikkje skriva tempo-justert fil til %1" - -#~ msgid "timefx code failure. please notify ardour-developers." -#~ msgstr "kodefeil pÃ¥ tidseffektar, sei frÃ¥ til Ardour-utviklarane" - -#~ msgid "aux %1" -#~ msgstr "aux %1" - -#~ msgid "send %1" -#~ msgstr "send %1" - -#~ msgid "programming error: send created using role %1" -#~ msgstr "programmeringsfeil: laga send med rolla %1" - -#~ msgid "Set block size and sample rate" -#~ msgstr "Set blokkstorleik og punktrate" - -#~ msgid "Using configuration" -#~ msgstr "Bruker oppsett" - -#~ msgid "LTC In" -#~ msgstr "LTC inn" - -#~ msgid "LTC Out" -#~ msgstr "LTC ut" - -#~ msgid "LTC-in" -#~ msgstr "LTC-inn" - -#~ msgid "LTC-out" -#~ msgstr "LTC-ut" - -#~ msgid "could not setup Click I/O" -#~ msgstr "greidde ikkje setja opp klikk-I/U" - -#~ msgid "cannot setup Click I/O" -#~ msgstr "greier ikkje setja opp klikk-I/U" - -#~ msgid "Compute I/O Latencies" -#~ msgstr "Rekn ut I/U-seinkingar" - -#~ msgid "Set up standard connections" -#~ msgstr "Set opp standartilkoplingar" - -#~ msgid "out %" -#~ msgstr "ut %" - -#~ msgid "out %+%" -#~ msgstr "ut %+%" - -#~ msgid "in %" -#~ msgstr "inn %" - -#~ msgid "in %+%" -#~ msgstr "inn %+%" - -#~ msgid "Setup signal flow and plugins" -#~ msgstr "Set opp signalflyt og innstikk" - -#~ msgid "Connect to engine" -#~ msgstr "Kople til maskin" - -#~ msgid "cannot connect master output %1 to %2" -#~ msgstr "greier ikkje kopla til hovudutgangane %1 til %2" - -#~ msgid "monitor" -#~ msgstr "lytting" - -#~ msgid "cannot connect control input %1 to %2" -#~ msgstr "greier ikkje kopla til kontrollinngangane %1 til %2" - -#~ msgid "The preferred I/O for the monitor bus (%1) cannot be found" -#~ msgstr "Greidde ikkje finna føretrekt I/U for lyttebussen (%1)" - -#~ msgid "cannot connect control output %1 to %2" -#~ msgstr "greier ikkje kopla til kontrollutgangane %1 til %2" - -#~ msgid "cannot create Auditioner: no auditioning of regions possible" -#~ msgstr "" -#~ "greier ikkje laga Lytting: det er ikkje rÃ¥d Ã¥ lytta pÃ¥ nokon bolkar." - -#~ msgid "Session: you can't use that location for auto punch (start <= end)" -#~ msgstr "Økt: du kan ikkje bruka denne staden for autoinnslag (start<=slutt)" - -#~ msgid "Session: you can't use a mark for auto loop" -#~ msgstr "Økt: du kan ikkje bruka eit merke for auto-lykkjespel" - -#~ msgid "feedback loop setup between %1 and %2" -#~ msgstr "rundgang-lykkjeoppsett mellom %1 og %2" - -#~ msgid "Session: could not create new midi track." -#~ msgstr "Økt: greidde ikkje laga nytt midispor." - -#~ msgid "" -#~ "No more JACK ports are available. You will need to stop %1 and restart " -#~ "JACK with ports if you need this many tracks." -#~ msgstr "" -#~ "Det finst ikkje fleire JACK-portar. Du mÃ¥ stoppa %1 og starta JACK pÃ¥ " -#~ "nytt med nok portar viss du treng sÃ¥ mange spor." - -#~ msgid "Audio" -#~ msgstr "Lyd" - -#~ msgid "cannot configure %1 in/%2 out configuration for new audio track" -#~ msgstr "" -#~ "greier ikkje stilla inn %1 inn/%2 ut-innstillingane for det nye lydsporet" - -#~ msgid "Session: could not create new audio track." -#~ msgstr "Økt: greidde ikkje laga nytt lydspor." - -#~ msgid "Bus" -#~ msgstr "Buss" - -#~ msgid "Session: could not create new audio route." -#~ msgstr "Økt: greidde ikkje laga ny lydrute." - -#~ msgid "Session: UINT_MAX routes? impossible!" -#~ msgstr "Økt: UINT_MAX-ruter? GÃ¥r ikkje an!" - -#~ msgid "Session: cannot create track/bus from template description" -#~ msgstr "Økt: greier ikkje laga spor/buss frÃ¥ malskildringa" - -#~ msgid "Session: could not create new route from template" -#~ msgstr "Økt: greidde ikkje laga ny lydrute frÃ¥ malen" - -#~ msgid "Adding new tracks/busses failed" -#~ msgstr "Greidde ikkje leggja til nye spor/bussar" - -#~ msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" -#~ msgstr "" -#~ "ALVORLEG FEIL! Greidde ikkje finna ei høveleg utgÃ¥ve av %1 for Ã¥ døypa om" - -#~ msgid "There are already %1 recordings for %2, which I consider too many." -#~ msgstr "Det er alt %1 opptak for %2, og eg synest det er for mange." - -#~ msgid "send ID %1 appears to be in use already" -#~ msgstr "send-IDen %1 ser ut til Ã¥ vera i bruk frÃ¥ før" - -#~ msgid "aux send ID %1 appears to be in use already" -#~ msgstr "aux-send-IDen %1 ser ut til Ã¥ vera i bruk frÃ¥ før" - -#~ msgid "return ID %1 appears to be in use already" -#~ msgstr "retur-IDen %1 ser ut til Ã¥ vera i bruk frÃ¥ før" - -#~ msgid "insert ID %1 appears to be in use already" -#~ msgstr "send-IDen %2 ser ut til Ã¥ vera i bruk frÃ¥ før" - -#~ msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" -#~ msgstr "Kan ikkje skriva eit omrÃ¥de der slutten <= starten (td. %1 <= %2)" - -#~ msgid "too many bounced versions of playlist \"%1\"" -#~ msgstr "for mange samanmiksa versjonar av spelelista \"%1\"" - -#~ msgid "cannot create new audio file \"%1\" for %2" -#~ msgstr "greier ikkje laga ny lydfil \"%1\" for %2" - -#~ msgid "cannot open click soundfile %1 (%2)" -#~ msgstr "greier ikkje opna klikk-lydfila %1 (%2)" - -#~ msgid "cannot read data from click soundfile" -#~ msgstr "greier ikkje lesa data frÃ¥ klikklydfila" - -#~ msgid "" -#~ "Tried to reconstitute a MementoCommand with no contents, failing. id=" -#~ msgstr "" -#~ "Prøvde Ã¥ byggja opp att ein memento-kommando utan innhald, og mislukkast. " -#~ "id=" - -#~ msgid "" -#~ "could not reconstitute MementoCommand from XMLNode. object type = %1 id = " -#~ "%2" -#~ msgstr "" -#~ "greier ikkje byggja oppatt Memento-kommando frÃ¥ XML-punkt. Objekttype = " -#~ "%1 id = %2" - -#~ msgid "" -#~ "could not reconstitute StatefulDiffCommand from XMLNode. object type = %1 " -#~ "id = %2" -#~ msgstr "" -#~ "greier ikkje byggja oppatt StatefulDiff-kommando frÃ¥ XML-punkt. " -#~ "Objekttype = %1 id = %2" - -#~ msgid "Cannot create Session directory at path %1 Error: %2" -#~ msgstr "greier ikkje laga øktmappa i stigen \"%1\", feil: %2" - -#~ msgid "Session subdirectory does not exist at path %1" -#~ msgstr "Undermappa for økta finst ikkje i stigen %1" - -#~ msgid "Session: cannot have two events of type %1 at the same frame (%2)." -#~ msgstr "Økt: du kan ikkje ha to handlingar av typen %1 pÃ¥ same ramma (%2)." - -#~ msgid "%1: cannot seek to %2 for export" -#~ msgstr "%1: greier ikkje finna %2 for eksportering" - -#~ msgid "Export ended unexpectedly: %1" -#~ msgstr "Eksporten avslutta uventa: %1" - -#~ msgid "" -#~ "LTC encoder: invalid framerate - LTC encoding is disabled for the " -#~ "remainder of this session." -#~ msgstr "" -#~ "LTC-omkoding: ugyldig rammerate - LTC-omodinga blir skrudd av for resten " -#~ "av økta." - -#~ msgid "Session: could not send full MIDI time code" -#~ msgstr "Økt: greidde ikke senda full MIDI-tidskode" - -#~ msgid "Session: cannot send quarter-frame MTC message (%1)" -#~ msgstr "Økt: greidde ikkje senda kvartramme-MTC-melding (%1)" - -#~ msgid "Session: cannot create Playlist from XML description." -#~ msgstr "Økt: greier ikkje laga speleliste ut frÃ¥ XML-skildringa." - -#~ msgid "Session: error in no roll for %1" -#~ msgstr "Økt: feil pÃ¥ ingen rull for %1" - -#~ msgid "Programming error: illegal event type in process_event (%1)" -#~ msgstr "Programmeringsfeil: ulovleg handlingstype i process-event (%1)" - -#~ msgid "Could not use path %1 (%s)" -#~ msgstr "Greidde ikkje bruka stigen %1 (%s)" - -#~ msgid "solo cut control (dB)" -#~ msgstr "solokutt-kontroll (dB)" - -#~ msgid "Reset Remote Controls" -#~ msgstr "Still tilbake fjernkontrollar" - -#~ msgid "Session loading complete" -#~ msgstr "Ferdig Ã¥ lasta økta." - -#~ msgid "Session: cannot create session peakfile folder \"%1\" (%2)" -#~ msgstr "Økt: greier ikkje laga mappa \"%1\" for økttoppfiler (%2)" - -#~ msgid "Session: cannot create session sounds dir \"%1\" (%2)" -#~ msgstr "Økt: greier ikkje laga øktmappa \"%1\" for lydfiler (%2)" - -#~ msgid "Session: cannot create session midi dir \"%1\" (%2)" -#~ msgstr "Økt: greier ikkje laga midimappa \"%1\" for økta (%2)" - -#~ msgid "Session: cannot create session dead sounds folder \"%1\" (%2)" -#~ msgstr "Økt: greier ikkje laga mappa \"%1\" for daudlyd (%2)" - -#~ msgid "Session: cannot create session export folder \"%1\" (%2)" -#~ msgstr "Økt: greidde ikkje laga mappa \"%1\" for eksportlyd (%2)" - -#~ msgid "Session: cannot create session analysis folder \"%1\" (%2)" -#~ msgstr "Økt: greidde ikkje laga mappa \"%1\" for øktanalyse (%2)" - -#~ msgid "Session: cannot create session plugins folder \"%1\" (%2)" -#~ msgstr "Økt: greier ikkje laga utvidingmappa \"%1\" for økta (%2)" - -#~ msgid "Session: cannot create session externals folder \"%1\" (%2)" -#~ msgstr "Økt: greidde ikkje laga eksternmappa «%1» (%2)" - -#~ msgid "Session: cannot create session folder \"%1\" (%2)" -#~ msgstr "Økt: greidde ikkje laga øktmappa \"%1\" (%2)" - -#~ msgid "Could not open %1 for writing session template" -#~ msgstr "Greidde ikkje opna %1 for Ã¥ skriva miksarmal" - -#~ msgid "Could not open session template %1 for reading" -#~ msgstr "Greidde ikkje opna miksarmalen %1 for Ã¥ lesa han" - -#~ msgid "master" -#~ msgstr "master" - -#~ msgid "Could not remove pending capture state at path \"%1\" (%2)" -#~ msgstr "Greidde ikkje fjerna ventande opptaksstatus pÃ¥ stigen «%1» (%2)" - -#~ msgid "could not rename snapshot %1 to %2 (%3)" -#~ msgstr "greidde ikkje døypa om snøggbiletet %1 til %2 (%3)" - -#~ msgid "Could not remove state file at path \"%1\" (%2)" -#~ msgstr "Greidde ikkje fjerna tilstandsfil pÃ¥ stigen «%1» (%2)" - -#~ msgid "" -#~ "the %1 audio engine is not connected and state saving would lose all I/O " -#~ "connections. Session not saved" -#~ msgstr "" -#~ "lydmotoren i %1 er ikkje kopla til, og Ã¥ lagra statusen ville kasta bort " -#~ "alle I/U-tilkoplingar. Økta er ikkje lagra" - -#~ msgid "state could not be saved to %1" -#~ msgstr "greidde ikkje lagra tilstanden til %1" - -#~ msgid "Could not remove temporary state file at path \"%1\" (%2)" -#~ msgstr "Greidde ikkje fjerna mellombels tilstandsfil pÃ¥ stigen «%1» (%2)" - -#~ msgid "could not rename temporary session file %1 to %2" -#~ msgstr "greidde ikkje døypa om mellombels øktfil %1 til %2" - -#~ msgid "%1: session state information file \"%2\" doesn't exist!" -#~ msgstr "%1: tilstandsinformasjonsfila \"%2\" for økta finst ikkje!" - -#~ msgid "Could not understand ardour file %1" -#~ msgstr "Skjønte ikkje ardour-fila %1" - -#~ msgid "Session file %1 is not a session" -#~ msgstr "Øktfila %1 er ikkje ei økt" - -#~ msgid "" -#~ "Copying old session file %1 to %2\n" -#~ "Use %2 with %3 versions before 2.0 from now on" -#~ msgstr "" -#~ "Kopierer gamal øktfil %1 til %2\n" -#~ "Bruk %2 med %3-versjonar før 2.0 frÃ¥ no av" - -#~ msgid "programming error: Session: incorrect XML node sent to set_state()" -#~ msgstr "" -#~ "programmeringsfeil: Økt: feil XML-punkt sendt til set_state()-funksjonen" - -#~ msgid "Session: XML state has no options section" -#~ msgstr "Økt: XML-tilstandsfila har ikkje noko avsnitt om instillingar" - -#~ msgid "Session: XML state has no metadata section" -#~ msgstr "Økt: XML-fila har inga avdeling for metadata" - -#~ msgid "Session: XML state has no sources section" -#~ msgstr "Økt: XML-tilstandsfila har ikkje noko avsnitt om kjelder" - -#~ msgid "Session: XML state has no Tempo Map section" -#~ msgstr "Økt: XML-fila har ikkje noko avsnitt om tempokart" - -#~ msgid "Session: XML state has no locations section" -#~ msgstr "Økt: XML-fila har ikkje noko avsnitt om stader" - -#~ msgid "Session: XML state has no Regions section" -#~ msgstr "Økt: XML-tilstandsfila har ikkje noko avsnitt om bolkar" - -#~ msgid "Session: XML state has no playlists section" -#~ msgstr "Økt: XML-tilstandsfila har ikkje noko avsnitt om spelelister" - -#~ msgid "Session: XML state has no bundles section" -#~ msgstr "Økt: XML-fila har inga avdeling for bundlar" - -#~ msgid "Session: XML state has no diskstreams section" -#~ msgstr "Økt: XML-fila har ikkje nok avsnitt om diskstraumar" - -#~ msgid "Session: XML state has no routes section" -#~ msgstr "Økt: XML-fila har ikkje noko avsnitt om ruter" - -#~ msgid "Session: XML state has no route groups section" -#~ msgstr "Økt: XML-fila har inga avdeling for rutegrupper" - -#~ msgid "Session: XML state has no edit groups section" -#~ msgstr "Økt: XML-fila har ikkje noko avsnitt om grupperedigering" - -#~ msgid "Session: XML state has no mix groups section" -#~ msgstr "Økt: XML-fila har ikkje noko avsnitt om miksgrupper" - -#~ msgid "Session: XML state has no click section" -#~ msgstr "Økt: XML-fila har ikkje noko avsnitt om klikk" - -#~ msgid "Session: cannot create Route from XML description." -#~ msgstr "Økt: greier ikkje laga rute ut frÃ¥ XML-skildringa." - -#~ msgid "Loaded track/bus %1" -#~ msgstr "Lasta spor/buss %1" - -#~ msgid "Could not find diskstream for route" -#~ msgstr "Greidde ikkje finna diskstraumen for rute" - -#~ msgid "Session: cannot create Region from XML description." -#~ msgstr "Økt: greier ikkje laga bolkar ut frÃ¥ XML-skildringa." - -#~ msgid "Can not load state for region '%1'" -#~ msgstr "Greier ikkje laga status for bolken '%1'" - -#~ msgid "Regions in compound description not found (ID's %1 and %2): ignored" -#~ msgstr "Fann ikkje bolkar i samansetjingsstatus (IDar %1 og %2): ignorert" - -#~ msgid "Nested source has no ID info in session state file! (ignored)" -#~ msgstr "Nøsta kjelde har ingen ID-info i øktstatusfila! (ignorert)" - -#~ msgid "Cannot reconstruct nested source for region %1" -#~ msgstr "Greier ikkje rekonstruera nøsta kjelde for bolken %1" - -#~ msgid "Session: XMLNode describing a AudioRegion is incomplete (no source)" -#~ msgstr "" -#~ "Økt: XML-punktet som skildrar ein lydbolk er uferdig (manglar kjelde)" - -#~ msgid "" -#~ "Session: XMLNode describing a AudioRegion references an unknown source id " -#~ "=%1" -#~ msgstr "" -#~ "Økt: XML-punktet som skildrar ein lydbolk peikar pÃ¥ ein ukjend kjelde-ID " -#~ "= %1" - -#~ msgid "" -#~ "Session: XMLNode describing a AudioRegion references a non-audio source " -#~ "id =%1" -#~ msgstr "" -#~ "Økt: XML-punktet som skildrar ein lydbolk peikar pÃ¥ ein kjelde-ID %1 som " -#~ "ikkje er ei lydfil" - -#~ msgid "" -#~ "Session: XMLNode describing an AudioRegion is missing some master " -#~ "sources; ignored" -#~ msgstr "" -#~ "Økt: XML-punktet som skildrar ein lydbolk manglar nokre masterkjelder, " -#~ "ser bort frÃ¥" - -#~ msgid "Session: XMLNode describing a MidiRegion is incomplete (no source)" -#~ msgstr "" -#~ "Økt: XML-punktet som skildrar ein midibolk er uferdig (manglar kjelde)" - -#~ msgid "" -#~ "Session: XMLNode describing a MidiRegion references an unknown source id =" -#~ "%1" -#~ msgstr "" -#~ "Økt: XML-punktet som skildrar ein midibolk peikar pÃ¥ ein ukjend kjelde-ID " -#~ "= %1" - -#~ msgid "" -#~ "Session: XMLNode describing a MidiRegion references a non-midi source id =" -#~ "%1" -#~ msgstr "" -#~ "Økt: XML-punktet som skildrar ein midibolk peikar pÃ¥ ein kjelde-ID %1 som " -#~ "ikkje er ei midi-fil" - -#~ msgid "" -#~ "cannot create new file from region name \"%1\" with ident = \"%2\": too " -#~ "many existing files with similar names" -#~ msgstr "" -#~ "greier ikkje laga ny fil frÃ¥ bolknamn \"%1\" med ident = \"%2\": det " -#~ "finst for mange med same namnet" - -#~ msgid "Session: cannot create Source from XML description." -#~ msgstr "Økt: greier ikkje laga kjelde ut frÃ¥ XML-skildringa." - -#~ msgid "A sound file is missing. It will be replaced by silence." -#~ msgstr "Det manglar ei lydfil. Ho vil bli erstatta med stille." - -#~ msgid "" -#~ "Found a sound file that cannot be used by %1. Talk to the progammers." -#~ msgstr "Fann ei lydfil som %1 ikkje kan bruka. Prat med utviklarane." - -#~ msgid "Could not create templates directory \"%1\" (%2)" -#~ msgstr "Greidde ikkje laga malmappa «%1» (%2)" - -#~ msgid "Template \"%1\" already exists - new version not created" -#~ msgstr "Malen \"%1\" finst alt - laga ingen ny versjon" - -#~ msgid "Could not create directory for Session template\"%1\" (%2)" -#~ msgstr "Greidde ikkje laga mappa for øktmalar «%1» (%2)" - -#~ msgid "template not saved" -#~ msgstr "malen vart ikkje lagra" - -#~ msgid "" -#~ "Could not create directory for Session template plugin state\"%1\" (%2)" -#~ msgstr "" -#~ "Greidde ikkje laga malmappa for utvidingstilstandar i økta «%1» (%2)" - -#~ msgid "Unknown node \"%1\" found in Bundles list from state file" -#~ msgstr "Fann ukjent punkt \"%1\" i bundellista frÃ¥ tilstandsfila" - -#~ msgid "Cannot expand path %1 (%2)" -#~ msgstr "Greier ikkje utvida stigen %1 (%2)" - -#~ msgid "Session: cannot create dead file folder \"%1\" (%2)" -#~ msgstr "Økt: greier ikkje laga mappa \"%1\" for daudlyd (%2)" - -#~ msgid "cannot rename unused file source from %1 to %2 (%3)" -#~ msgstr "kan ikkje døypa om den ubrukte filkjelda frÃ¥ %1 til %2 (%3)" - -#~ msgid "cannot remove peakfile %1 for %2 (%3)" -#~ msgstr "kan ikkje fjerna toppfil %1 for %2 (%3)" - -#~ msgid "could not backup old history file, current history not saved" -#~ msgstr "" -#~ "greidde ikkje ta tryggingskopi av den gamle historiefila, noverande " -#~ "historie vart ikkje lagra." - -#~ msgid "history could not be saved to %1" -#~ msgstr "greidde ikkje lagra historia til %1" - -#~ msgid "Could not remove history file at path \"%1\" (%2)" -#~ msgstr "Greidde ikkje fjerna historiefila pÃ¥ stigen «%1» (%2)" - -#~ msgid "could not restore history file from backup %1 (%2)" -#~ msgstr "" -#~ "greidde ikkje henta fram att historiefila frÃ¥ tryggingskopien %1 (%2)" - -#~ msgid "%1: no history file \"%2\" for this session." -#~ msgstr "%1: inga historiefil \"%2\" for denne økta." - -#~ msgid "Could not understand session history file \"%1\"" -#~ msgstr "Skjønte ikkje økthistoriefila \"%1\"" - -#~ msgid "Failed to downcast MidiSource for NoteDiffCommand" -#~ msgstr "Greidde ikkje kasta ned midi-kjelde for NoteDiffCommand" - -#~ msgid "Failed to downcast MidiSource for SysExDiffCommand" -#~ msgstr "Greidde ikkje kasta ned midi-kjelde for SysExDiffCommand" - -#~ msgid "Failed to downcast MidiSource for PatchChangeDiffCommand" -#~ msgstr "Greidde ikkje kasta ned midi-kjelde for PatchChangeDiffCommand" - -#~ msgid "Couldn't figure out how to make a Command out of a %1 XMLNode." -#~ msgstr "" -#~ "Fann ikkje ut korleis eg skal laga ein kommando av eit %1-XML-punkt." - -#~ msgid "Session: unknown diskstream type in XML" -#~ msgstr "Økt: ukjend diskstraumtype i XML" - -#~ msgid "Session: could not load diskstream via XML state" -#~ msgstr "Økt: greidde ikkje lasta diskstraumen via XML-tilstand" - -#~ msgid "Unknown JACK transport state %1 in sync callback" -#~ msgstr "Ukjend JACK-transporttilstand %1 i synk-tilbakekallet" - -#~ msgid "Cannot loop - no loop range defined" -#~ msgstr "Greidde ikkje spela i lykkje - du har ikkje gjeve noko lykkjeomrÃ¥de" - -#~ msgid "" -#~ "Seamless looping cannot be supported while %1 is using JACK transport.\n" -#~ "Recommend changing the configured options" -#~ msgstr "" -#~ "Samanhengande lykkjespeling er ikkje støtta nÃ¥r %1 bruker JACK-" -#~ "transporten.\n" -#~ "Me rÃ¥r til at du endrar innstillingane." - -#~ msgid "" -#~ "Global varispeed cannot be supported while %1 is connected to JACK " -#~ "transport control" -#~ msgstr "" -#~ "Allmenn varifart-kontroll kan ikkje brukast nÃ¥r %1 er kopla til JACK-" -#~ "transportkontrollen" - -#~ msgid "Unable to read event prefix, corrupt MIDI ring buffer" -#~ msgstr "Greier ikkje lesa handlingsprefiks, MIDI-ringbufferen i ulage" - -#~ msgid "Read time/size but not buffer, corrupt MIDI ring buffer" -#~ msgstr "Les tid/storleik men ikkje buffer, MIDI-ringbufferen i ulage" - -#~ msgid "cannot open MIDI file %1 for write" -#~ msgstr "greier ikkje opna MIDI-fila %1 for skriving" - -#~ msgid "WAV" -#~ msgstr "WAV" - -#~ msgid "AIFF" -#~ msgstr "AIFF" - -#~ msgid "CAF" -#~ msgstr "CAF" - -#~ msgid "W64 (64 bit WAV)" -#~ msgstr "W64 (64-bits WAV)" - -#~ msgid "FLAC" -#~ msgstr "FLAC" - -#~ msgid "Ogg/Vorbis" -#~ msgstr "Ogg/Vorbis" - -#~ msgid "raw (no header)" -#~ msgstr "rÃ¥ fil (utan tittellinje)" - -#~ msgid ".wav" -#~ msgstr ".wav" - -#~ msgid ".aiff" -#~ msgstr ".aiff" - -#~ msgid ".caf" -#~ msgstr ".caf" - -#~ msgid ".w64" -#~ msgstr ".w64" - -#~ msgid ".flac" -#~ msgstr ".flac" - -#~ msgid ".ogg" -#~ msgstr ".ogg" - -#~ msgid ".raw" -#~ msgstr ".raw" - -#~ msgid "Signed 16 bit PCM" -#~ msgstr "Signert 16bit PCM" - -#~ msgid "Signed 24 bit PCM" -#~ msgstr "Signert 24bit PCM" - -#~ msgid "Signed 32 bit PCM" -#~ msgstr "Signert 32bit PCM" - -#~ msgid "Signed 8 bit PCM" -#~ msgstr "Signert 8bit PCM" - -#~ msgid "32 bit float" -#~ msgstr "32-bit flytpunkt" - -#~ msgid "Little-endian (Intel)" -#~ msgstr "Liten endian (Intel)" - -#~ msgid "Big-endian (PowerPC)" -#~ msgstr "Viktigaste bit fyrst (Mac)" - -#~ msgid "SndFileSource: cannot open file \"%1\" for %2 (%3)" -#~ msgstr "Lydfilkjelde: greier ikkje opna fila \"%1\" for %2 (%3)" - -#~ msgid "" -#~ "SndFileSource: file only contains %1 channels; %2 is invalid as a channel " -#~ "number" -#~ msgstr "" -#~ "Lydfilkjelde: fila inneheld berre %1 kanalar, %2 er eit ugyldig " -#~ "kanalnummer" - -#~ msgid "" -#~ "cannot set broadcast info for audio file %1 (%2); dropping broadcast info " -#~ "for this file" -#~ msgstr "" -#~ "greier ikkje fastsetja kringkastingsinformasjon for lydfila %1 (%2), " -#~ "hoppar over kringkastingsinformasjonen for denne fila" - -#~ msgid "could not allocate file %1 for reading." -#~ msgstr "greidde ikkje tildela fila %1 for Ã¥ lesa" - -#~ msgid "SndFileSource: could not seek to frame %1 within %2 (%3)" -#~ msgstr "Lydfilkjelde: greier ikkje leita fram til ramma %1 innan %2 (%3)" - -#~ msgid "" -#~ "SndFileSource: @ %1 could not read %2 within %3 (%4) (len = %5, ret was " -#~ "%6)" -#~ msgstr "" -#~ "SndFileSource: @ %1 greidde ikkje lesa %2 i %3 (%4) (len = %5, ret var %6)" - -#~ msgid "attempt to write a non-writable audio file source (%1)" -#~ msgstr "prøvde Ã¥ skriva til ei ikkje-skrivbar lydkjeldefil (%1)" - -#~ msgid "programming error: %1 %2" -#~ msgstr "programmeringsfeil: %1 %2" - -#~ msgid "attempt to flush a non-writable audio file source (%1)" -#~ msgstr "prøvde Ã¥ tømma ei ikkje-skrivbar lydkjeldefil (%1)" - -#~ msgid "attempt to flush an un-opened audio file source (%1)" -#~ msgstr "prøvde Ã¥ tømma ei uopna lydkjeldefil (%1)" - -#~ msgid "could not allocate file %1 to write header" -#~ msgstr "greidde ikkje tildela fila %1 for Ã¥ skriva hovudet" - -#~ msgid "" -#~ "attempt to store broadcast info in a non-writable audio file source (%1)" -#~ msgstr "" -#~ "prøvde Ã¥ lagra kringastingsinfo til ei ikkje-skrivbar lydkjeldefil (%1)" - -#~ msgid "attempt to set BWF info for an un-opened audio file source (%1)" -#~ msgstr "prøvde Ã¥ laga BWF-info for ei uopna lydkjeldefil (%1)" - -#~ msgid "%1: cannot seek to %2 (libsndfile error: %3" -#~ msgstr "%1: greier ikkje gÃ¥ til %2 (libsndfile-feil: %3" - -#~ msgid "SndFileSource: \"%1\" bad read retval: %2 of %5 (%3: %4)" -#~ msgstr "SndFileSource: \"%1\" feillesen returverdi: %2 av %5 (%3: %4)" - -#~ msgid "SndFileSource: \"%1\" bad write (%2)" -#~ msgstr "SndFileSource: \"%1\" feilskriving (%2)" - -#~ msgid "" -#~ "Filesource: start time is already set for existing file (%1): Cannot " -#~ "change start time." -#~ msgstr "" -#~ "Filkjelde: starttida er alt sett for denne fila (%1): kan ikkje endra " -#~ "starttid." - -#~ msgid "Speaker information is missing azimuth - speaker ignored" -#~ msgstr "Høgtalaroppsettet manglar asimutvinkel - høgtalaren ikkje medteken" - -#~ msgid "Speaker information is missing elevation - speaker ignored" -#~ msgstr "" -#~ "Høgtalaroppsettet manglar opplysingar om høgd over golvet - høgtalaren " -#~ "ikkje medteken" - -#~ msgid "Speaker information is missing distance - speaker ignored" -#~ msgstr "" -#~ "Høgtalaroppsettet manglar opplysingar om avstand - høgtalaren ikkje " -#~ "medteken" - -#~ msgid "Cannot compile tape track regexp for use (%1)" -#~ msgstr "Greier ikkje setja saman bandspor-reguttrykk til bruk (%1)" - -#~ msgid "TempoSection XML node has no \"start\" property" -#~ msgstr "TempoSection-XML-punktet har ingen \"start\"-eigenskap" - -#~ msgid "TempoSection XML node has an illegal \"start\" value" -#~ msgstr "TempoSection-XML-punktet har ein ulovleg \"start\"-verdi" - -#~ msgid "TempoSection XML node has no \"beats-per-minute\" property" -#~ msgstr "TempoSection-XML-punktet har ingen \"slag per minutt\"-eigenskap" - -#~ msgid "TempoSection XML node has an illegal \"beats_per_minute\" value" -#~ msgstr "TempoSection-XML-punktet har ein ulovleg \"slag per minutt\"-verdi" - -#~ msgid "TempoSection XML node has an illegal \"note-type\" value" -#~ msgstr "TempoSection-XML-punktet har ein ulovleg \"note-type\"-verdi" - -#~ msgid "TempoSection XML node has no \"movable\" property" -#~ msgstr "TempoSection-XML-punktet har ingen \"flyttbar\"-eigenskap" - -#~ msgid "TempoSection XML node has an illegal \"bar-offset\" value" -#~ msgstr "TempoSection-XML-punktet har ein ulovleg «taktavvik»-verdi" - -#~ msgid "MeterSection XML node has no \"start\" property" -#~ msgstr "MeterSection-XML-punktet har ingen \"start\"-eigenskap" - -#~ msgid "MeterSection XML node has an illegal \"start\" value" -#~ msgstr "MeterSection-XML-punktet har ein ulovleg \"start\"-verdi" - -#~ msgid "" -#~ "MeterSection XML node has no \"beats-per-bar\" or \"divisions-per-bar\" " -#~ "property" -#~ msgstr "" -#~ "MeterSection-XML-punktet har ingen «slag per takt»-eigenskap eller «delar " -#~ "per takt»-eigenskap" - -#~ msgid "" -#~ "MeterSection XML node has an illegal \"beats-per-bar\" or \"divisions-per-" -#~ "bar\" value" -#~ msgstr "" -#~ "MeterSection-XML-punktet har ein ulovleg «slag per takt»- eller «delar " -#~ "per takt»-verdi" - -#~ msgid "MeterSection XML node has no \"note-type\" property" -#~ msgstr "MeterSection-XML-punktet har ingen \"notetype\"-eigenskap" - -#~ msgid "MeterSection XML node has an illegal \"note-type\" value" -#~ msgstr "MeterSection-XML-punktet har ein ulovleg \"start\"-verdi" - -#~ msgid "MeterSection XML node has no \"movable\" property" -#~ msgstr "MeterSection-XML-punktet har ingen \"flyttbar\"-eigenskap" - -#~ msgid "" -#~ "Meter changes can only be positioned on the first beat of a bar. Moving " -#~ "from %1 to %2" -#~ msgstr "" -#~ "Taktartsendringar kan berre stÃ¥ i fyrste slaget i takta. Flyttar frÃ¥ %1 " -#~ "til %2" - -#~ msgid "no tempo sections defined in tempo map - cannot change tempo @ %1" -#~ msgstr "" -#~ "ingen temposeksjonar sette opp i tempokartet - kan ikkje endra tempoet " -#~ "ved %1" - -#~ msgid "programming error: no tempo section in tempo map!" -#~ msgstr "programmeringsfeil: ikkje noko tempoavsnitt i tempokartet!" - -#~ msgid "programming error: unhandled MetricSection type" -#~ msgstr "programmeringsfeil: uhandtert MetricSection-type" - -#~ msgid "tempo map asked for BBT time at frame %1\n" -#~ msgstr "tempokartet spurte for BBT-tid pÃ¥ ramma %1\n" - -#~ msgid "tempo map asked for frame time at bar < 1 (%1)\n" -#~ msgstr "tempokartet spurde etter rammetid ved takt < 1 (%1)\n" - -#~ msgid "Tempo map: could not set new state, restoring old one." -#~ msgstr "" -#~ "Tempokart: greidde ikkje fastsetja den nye tilstanden, hentar fram att " -#~ "den gamle." - -#~ msgid "Multiple meter definitions found at %1" -#~ msgstr "Fann fleire taktartsdefinisjonar ved %1" - -#~ msgid "Multiple tempo definitions found at %1" -#~ msgstr "Fann fleire tempodefinisjonar ved %1" - -#~ msgid "Tempo map" -#~ msgstr "Tempokart" - -#~ msgid "Tempo Map" -#~ msgstr "Tempokart" - -#~ msgid "Tempo marks: " -#~ msgstr "Tempomerke:" - -#~ msgid "" -#~ "\n" -#~ "Meter marks: " -#~ msgstr "" -#~ "\n" -#~ "Taktmerke:" - -#~ msgid "" -#~ "This will replace the current tempo map!\n" -#~ "Are you shure you want to do this?" -#~ msgstr "" -#~ "Dette byter ut det gjeldande tempokartet!\n" -#~ "Er du sikker pÃ¥ at du vil gjera dette?" - -#~ msgid "Node for Bundle has no \"name\" property" -#~ msgstr "Punkt for bundelen har ingen \"namn\"-eigenskap" - -#~ msgid "Unknown node \"%s\" in Bundle" -#~ msgstr "Ukjend node \"%s\" i bundelen" - -#~ msgid "Node for Channel has no \"name\" property" -#~ msgstr "Punktet for kanalen har ingen \"namn\"-eigenskap" - -#~ msgid "Node for Channel has no \"type\" property" -#~ msgstr "Punktet for kanalen har ingen \"type\"-eigenskap" - -#~ msgid "Node for Port has no \"name\" property" -#~ msgstr "Punktet for porten har ingen \"namn\"-eigenskap" - -#~ msgid "Splice" -#~ msgstr "Splitt" - -#~ msgid "Slide" -#~ msgstr "Gli" - -#~ msgid "Lock" -#~ msgstr "LÃ¥s" - -#~ msgid "programming error: unknown edit mode string \"%1\"" -#~ msgstr "programmeringsfeil: ukjend redigeringsmodus-streng \"%1\"" - -#~ msgid "MIDI Timecode" -#~ msgstr "MIDI-tidskode" - -#~ msgid "MTC" -#~ msgstr "MTC" - -#~ msgid "MIDI Clock" -#~ msgstr "MIDI-klokke" - -#~ msgid "JACK" -#~ msgstr "JACK" - -#~ msgid "programming error: unknown sync source string \"%1\"" -#~ msgstr "programmeringsfeil: ukjend synkkjeldestreng \"%1\"" - -#~ msgid "M-Clock" -#~ msgstr "M-klokke" - -#~ msgid "LTC" -#~ msgstr "LTC" - -#~ msgid "programming error: unknown native header format: %1" -#~ msgstr "programmeringsfeil: ukjent opphavleg hovudformat: \"%1\"" - -#~ msgid "cannot open directory %1 (%2)" -#~ msgstr "greier ikkje opna mappa %1 (%2)" - -#~ msgid "" -#~ "programming error: non-audio Region passed to remove_overlap in audio " -#~ "playlist" -#~ msgstr "" -#~ "programmeringsfeil: ikkje-lydbolk gjeve til fjern_overlapping i " -#~ "lydspelelista" - -#~ msgid "" -#~ "programming error: non-audio Region tested for overlap in audio playlist" -#~ msgstr "" -#~ "programmeringsfeil: ikkje-lydbolk prøvd for overlapping i lydspelelista" - -#~ msgid "control protocol XML node has no name property. Ignored." -#~ msgstr "" -#~ "XML-noden for kontrollprotokollen har ingen namneeigenskap. SÃ¥g bort frÃ¥." - -#~ msgid "control protocol \"%1\" is not known. Ignored" -#~ msgstr "kontrollprotokollen \"%1\" er ukjent. SÃ¥g bort frÃ¥" - -#~ msgid "Crossfade: no \"in\" region in state" -#~ msgstr "Overtoning: Ingen \"inn\"-bolk her" - -#~ msgid "" -#~ "Crossfade: no \"in\" region %1 found in playlist %2 nor in region map" -#~ msgstr "" -#~ "Krysstoning: fann ingen \"inn\"-bolk %1, korkje i spelelista %2 eller i " -#~ "bolkkartet" - -#~ msgid "Crossfade: no \"out\" region in state" -#~ msgstr "Overtoning: ingen \"ut\"-bolk her" - -#~ msgid "" -#~ "Crossfade: no \"out\" region %1 found in playlist %2 nor in region map" -#~ msgstr "" -#~ "Krysstoning: fann ingen \"ut\"-bolk %1, korkje i spelelista %2 eller i " -#~ "bolkkartet" - -#~ msgid "old-style crossfade information - no position information" -#~ msgstr "gamaldags overtoningsinformasjon - ingen posisjonsinformasjon" - -#~ msgid "Removed open file count limit. Excellent!" -#~ msgstr "Fjerna teljegrensa for opne filer. Steikande bra!" - -#~ msgid "%1 will be limited to %2 open files" -#~ msgstr "%1 vil vera avgrensa til Ã¥ opna %2 filer" - -#~ msgid "midiui" -#~ msgstr "midibrukarflate" - -#~ msgid "Chunk %1 uses an unknown playlist \"%2\"" -#~ msgstr "Beten %1 bruker ei ukjend speleliste, \"%2\"" - -#~ msgid "Chunk %1 contains misformed playlist information" -#~ msgstr "Beten %1 inneheld feilforma spelelisteinformasjon" - -#~ msgid "Cannot become GUI app" -#~ msgstr "Greier ikkje bli grafisk program" - -#~ msgid "" -#~ "%1: could not find configuration file (ardour.rc), canvas will look " -#~ "broken." -#~ msgstr "" -#~ "%1: greidde ikkje finna oppsettsfila (ardour.rc), arbeidsomrÃ¥det vil sjÃ¥ " -#~ "øydelagt ut." - -#~ msgid "signal" -#~ msgstr "signal" - -#~ msgid "Midi" -#~ msgstr "Midi" - -#~ msgid "editor" -#~ msgstr "redigering" - -#~ msgid "Template \"%1\" already exists - template not renamed" -#~ msgstr "Malen \"%1\" finst alt - malen fekk ikkje nytt namn" - -#~ msgid "Session: cannot create Named Selection from XML description." -#~ msgstr "Økt: greier ikkje laga namngjeve utval ut frÃ¥ XML-skildringa." - -#~ msgid "Unable to create a backup copy of file %1 (%2)" -#~ msgstr "Greidde ikkje laga tryggingskopi av fila %1 (%2)" - -#~ msgid "illegal or badly-formed string used for path (%1)" -#~ msgstr "ulovleg eller feilforma streng brukt for stigen (%1)" - -#~ msgid "path (%1) is ambiguous" -#~ msgstr "stigen (%1) er tvitydig" - -#~ msgid "Could not move capture file from %1" -#~ msgstr "Greidde ikkje flytta opptaksfila frÃ¥ %1" - -#~ msgid "Cannot create temporary MIDI port to determine MIDI buffer size" -#~ msgstr "" -#~ "Greier ikkje laga mellombels MIDI-port for Ã¥ avgjera MIDI-bufferstorleiken" - -#~ msgid "Pan %1" -#~ msgstr "Pan %1" - -#~ msgid "rename from %1 to %2 failed: %3)" -#~ msgstr "omdøyping frÃ¥ %1 til %2 mislukka: %3)" - -#~ msgid "Using %2 threads on %1 CPUs" -#~ msgstr "Brukar %2 trÃ¥dar pÃ¥ %1 prosessorar" - -#~ msgid "direction" -#~ msgstr "retning" - -#~ msgid "" -#~ "badly formatted pan automation event record at line %1 of %2 (ignored) " -#~ "[%3]" -#~ msgstr "" -#~ "feilformatert handlingsopptak av panoreringsautomasjon pÃ¥ linja %1 av %2 " -#~ "(hoppa over) [%3]" - -#~ msgid "programming error:" -#~ msgstr "programmeringsfeil: " - -#~ msgid "cannot open pan automation file %1 (%2)" -#~ msgstr "greier ikkje opna panoreringsautomasjonsfil %1 (%2)" - -#~ msgid "badly formed version number in pan automation event file \"%1\"" -#~ msgstr "" -#~ "feilforma versjonsnummer i handlingsfila for panoreringsautomasjon \"%1\"" - -#~ msgid "" -#~ "no version information in pan automation event file \"%1\" (first line = " -#~ "%2)" -#~ msgstr "" -#~ "ingen versjonsinformasjon i handlingsfila for panoreringsautomasjon " -#~ "\"%1\" (fyrste linja= %2)" - -#~ msgid "too many panner states found in pan automation file %1" -#~ msgstr "for mange panoreringstilstandar i automasjonsfila %1" - -#~ msgid "C" -#~ msgstr "S" - -#~ msgid "lr" -#~ msgstr "vh" - -#~ msgid "width" -#~ msgstr "breidd" - -#~ msgid "cannot open click emphasis soundfile %1 (%2)" -#~ msgstr "greier ikkje opna uthevings-klikklydfila %1 (%2)" - -#~ msgid "cannot read data from click emphasis soundfile" -#~ msgstr "greier ikkje lesa data frÃ¥ uthevings-klikklydfila" - -#~ msgid "Reset Control Protocols" -#~ msgstr "Still tilbake kontrollprotokollar" - -#~ msgid "Session: cannot create session stub sounds dir \"%1\" (%2)" -#~ msgstr "Økt: greier ikkje laga mappa \"%1\" for lydfilbetar (%2)" - -#~ msgid "Session: cannot create session stub midi dir \"%1\" (%2)" -#~ msgstr "Økt: greier ikkje laga midibetemappa \"%1\" for økta (%2)" - -#~ msgid "could not allocate file %1" -#~ msgstr "greidde ikkje tildela fila %1" - -#~ msgid "" -#~ "AudioDiskstream %1: cannot read xfade samples %2 from playlist at frame %3" -#~ msgstr "" -#~ "Lyd-diskstraum %1: greidde ikkje lesa krysstoningspunkt %2 frÃ¥ " -#~ "spelelista, ramme %3" - -#~ msgid "%1: cannot create region from pending capture sources" -#~ msgstr "%1: greidde ikkje laga bolk frÃ¥ ventande opptakskjelder" - -#~ msgid "register input port called before engine was started" -#~ msgstr "registerinngangsporten vart oppkalla før tenaren starta" - -#~ msgid "register output port called before engine was started" -#~ msgstr "registerutgangsporten vart oppkalla før tenaren starta" - -#~ msgid "AudioEngine: connection already exists: %1 (%2) to %3 (%4)" -#~ msgstr "AudioEngine: tilkoplinga finst frÃ¥ før: %1 (%2) til %3 (%4)." - -#~ msgid "" -#~ "Disconnected from JACK while reconnecting. You should quit Ardour now." -#~ msgstr "Kopla frÃ¥ JACK ved ny tilkopling. Du bør avslutta Ardour no." - -#~ msgid "could not reconnect %1 and %2 (err = %3)" -#~ msgstr "greidde ikkje kopla til att %1 og %2 (feil = %3)" - -#~ msgid "" -#~ "This is an old Ardour session that does not have\n" -#~ "sufficient information for rendered FX" -#~ msgstr "" -#~ "Dette er ei gamal Ardour-økt som ikkje har\n" -#~ "nok informasjon for oppteikna effektar" - -#~ msgid "in 1+2" -#~ msgstr "inn 1+2" - -#~ msgid "AudioTrack: audio diskstream \"%1\" not known by session" -#~ msgstr "Lydspor: økta kjenner ikkje att lyd-diskstraumen \"%1\"" - -#~ msgid "programming error: AudioTrack given state without diskstream!" -#~ msgstr "Programmeringsfeil: Ardour fekk tilstand utan diskstraum1" - -#~ msgid "ill-formed MIDI port specification in ardour rcfile (ignored)" -#~ msgstr "" -#~ "feilforma MIDI-portspesifikasjon oppgjeve i ardour-rc-fila (hoppa over)" - -#~ msgid "Node for Connection has no \"connections\" property" -#~ msgstr "Punkt for tilkopling har ingen \"tilkopingar\"-eigenskapar" - -#~ msgid "Starting OSC" -#~ msgstr "Startar OSC" - -#~ msgid "no MIDI ports specified: no MMC or MTC control possible" -#~ msgstr "" -#~ "ingen MIDI-portar er spesifiserte. MMC- eller MTC-kontroll er ikkje " -#~ "mogleg." - -#~ msgid "Configuring MIDI ports" -#~ msgstr "Set opp MIDI-portar" - -#~ msgid "default" -#~ msgstr "standard" - -#~ msgid "No MMC control (MIDI port \"%1\" not available)" -#~ msgstr "Ingen MMC-kontroll (MIDI-porten \"%1\" er ikkje tilgjengeleg)" - -#~ msgid "No MTC support (MIDI port \"%1\" not available)" -#~ msgstr "Inga MTC-støtte (MIDI-porten \"%1\" er ikkje tilgjengeleg)" - -#~ msgid "No MIDI parameter support (MIDI port \"%1\" not available)" -#~ msgstr "" -#~ "Ingen MIDI-parameterstøtte (MIDI-porten \"%1\" er ikkje tilgjengeleg)" - -#~ msgid "" -#~ "converting %1\n" -#~ "(resample from %2KHz to %3KHz)\n" -#~ "(%4 of %5)" -#~ msgstr "" -#~ "omdannar %1\n" -#~ "(ompunkting frÃ¥ %1KHz til %3KHz)\n" -#~ "(%4 av %5)" - -#~ msgid "" -#~ "converting %1\n" -#~ "(%2 of %3)" -#~ msgstr "" -#~ "omdannar %1\n" -#~ "(%2 av %3)" - -#~ msgid "XML node describing a plugin insert is missing the `%1' information" -#~ msgstr "" -#~ "XML-punktet som skildrar tilleggsprogramtappinga manglar '%1'-informasjon" - -#~ msgid "XML node describing insert is missing a Redirect node" -#~ msgstr "XML-punktet som skildrar tappinga manglar omdirigeringspunkt" - -#~ msgid "" -#~ "XML node describing a port automation is missing the `%1' information" -#~ msgstr "XML-punktet som skildrar portautomasjonen manglar '%1'-informasjon" - -#~ msgid "%1: cannot open automation event file \"%2\"" -#~ msgstr "%1: greier ikkje opna automasjonshendingsfila \"%2\"" - -#~ msgid "badly formed version number in automation event file \"%1\"" -#~ msgstr "feilforma versjonsnummer i automasjonshendingsfila \"%1\"" - -#~ msgid "no version information in automation event file \"%1\"" -#~ msgstr "ingen versjonsinformasjon i automasjonshendingsfila \"%1\"" - -#~ msgid "badly formatted automation event record at line %1 of %2 (ignored)" -#~ msgstr "" -#~ "feilformatert automasjonshendingsopptak pÃ¥ linje %1 av %2 (hoppa over)" - -#~ msgid "IO::connecting_became_legal() called without a pending state node" -#~ msgstr "" -#~ "IO::connecting_became_legal()-funksjonen vart oppkalla utan ventande " -#~ "tilstandsnode" - -#~ msgid "IO::ports_became_legal() called without a pending state node" -#~ msgstr "" -#~ "IO::ports_became_legal()-funksjonen vart oppkalla utan ventande " -#~ "tilstandsnode" - -#~ msgid "improper output channel list in XML node (%1)" -#~ msgstr "feil utgangskanalliste i XML-punktet %1" - -#~ msgid "you cannot use colons to name objects with I/O connections" -#~ msgstr "du kan ikkje bruka kolon i namn pÃ¥ objekt med I/U-tilkoplingar" - -#~ msgid "badly-formed positional data for Multi2dPanner - ignored" -#~ msgstr "feilforma posisjonsdata for Multi2dPanner - hoppa over" - -#~ msgid "playlist const copy constructor called" -#~ msgstr "konstant kopikonstruktør for speleliste vart oppkalla" - -#~ msgid "playlist non-const copy constructor called" -#~ msgstr "ikkje-konstant kopikonstruktør for speleliste vart oppkalla" - -#~ msgid "%1: bounds changed received for region (%2)not in playlist" -#~ msgstr "%1: mottok grenseendring for bolken (%2) - ikkje i spelelista" - -#~ msgid "Playlist: cannot reset region state from XML" -#~ msgstr "Speleliste: greier ikkje stilla bolkstatusen tilbake frÃ¥ XML" - -#~ msgid "programming error: unknown Redirect type in Redirect::Clone!\n" -#~ msgstr "" -#~ "programmeringsfeil: ukjend omdirigeringstype i Redirect::Clone-" -#~ "funksjonen!\n" - -#~ msgid "%2: badly formatted node name in XML automation state, ignored" -#~ msgstr "%2: feilforma nodenamn i XML-automasjonsstatusen, sÃ¥g bort frÃ¥" - -#~ msgid "%1: cannot load automation data from XML" -#~ msgstr "%1: greier ikkje lasta automasjonsdata frÃ¥ XML" - -#~ msgid "incorrect XML node \"%1\" passed to Redirect object" -#~ msgstr "feil XML-punkt, \"%1\", vart sendt til omdirigeringsobjektet" - -#~ msgid "XML node describing an IO is missing an IO node" -#~ msgstr "XML-punktet som skildrar IU manglar eit IU-punkt" - -#~ msgid "XML node describing a redirect is missing the `active' field" -#~ msgstr "XML-punktet som skildrar ei omdirigering manglar 'aktiv'-feltet" - -#~ msgid "XML node describing a redirect is missing the `placement' field" -#~ msgstr "" -#~ "XML-punktet som skildrar ei omdirigering manglar 'plassering'-feltet" - -#~ msgid "XMLNode describing a Region is incomplete (no name)" -#~ msgstr "XML-punktet som skildrar ein bolk er ufullstendig (utan namn)" - -#~ msgid "Session: XMLNode describing a Region is incomplete (no id)" -#~ msgstr "Økt: XML-punktet som skildrar ein bolk er ufullstendig (ingen id)" - -#~ msgid "Send construction failed" -#~ msgstr "Send-konstruksjon mislukka" - -#~ msgid "Insert XML node has no type property" -#~ msgstr "Tappings-XML-punkt har ingen typeeigenskapar" - -#~ msgid "Route %1: unknown edit group \"%2 in saved state (ignored)" -#~ msgstr "" -#~ "Ruting %1: ukjend redigert gruppe \"%2 i lagra tilstand (hoppa over)" - -#~ msgid "Route %1: unknown mix group \"%2 in saved state (ignored)" -#~ msgstr "Ruting %1: ukjend miksgruppe \"%2 i lagra tilstand (hoppa over)" - -#~ msgid "could not connect %1 to %2" -#~ msgstr "greidde ikkje kopla %1 til %2" - -#~ msgid "XML node describing a send is missing a Redirect node" -#~ msgstr "XML-punktet som skildrar ein send manglar eit omdirigeringspunkt" - -#~ msgid "cannot setup master inputs" -#~ msgstr "greier ikkje setja opp masterinngangar" - -#~ msgid "Master Out" -#~ msgstr "Master ut" - -#~ msgid "Catch up with send/insert state" -#~ msgstr "Ta att send/omvegstatus" - -#~ msgid "OSC startup" -#~ msgstr "OSC-oppstart" - -#~ msgid "cannot set up master outputs" -#~ msgstr "greier ikkje setja opp masterutgangar" - -#~ msgid "" -#~ "Session::add_region() ignored a null region. Warning: you might have lost " -#~ "a region." -#~ msgstr "" -#~ "Økt::add_region() sÃ¥g bort frÃ¥ ein null-bolk. Pass pÃ¥: det kan henda du " -#~ "har mista ein bolk." - -#~ msgid "programming error: unknown type of Insert created!" -#~ msgstr "programmeringsfeil: det er laga ein ukjend tappingstype!" - -#~ msgid "programming error: unknown type of Redirect created!" -#~ msgstr "programmeringsfeil: det er laga ein ukjend omdirigeringstype!" - -#~ msgid "programming error: unknown type of Redirect deleted!" -#~ msgstr "programmeringsfeil: det er sletta ein ukjend omdirigeringstype!" - -#~ msgid "Memory allocation error: posix_memalign (%1 * %2) failed (%3)" -#~ msgstr "Minnetildelingsfeil: posix_memalign (%1 * %2) mislukka (%3)" - -#~ msgid "" -#~ "Programming error: get_silent_buffers() called for %1 buffers but only %2 " -#~ "exist" -#~ msgstr "" -#~ "Programmeringsfeil: get_silent_buffers() oppropt for %1 bufrar, men det " -#~ "finst berre %2" - -#~ msgid "GlobalRouteStateCommand has no \"type\" node, ignoring" -#~ msgstr "GlobalRouteStateCommand har ingen \"type\"-node, ser bort frÃ¥" - -#~ msgid "unknown type of GlobalRouteStateCommand (%1), ignored" -#~ msgstr "ukjent slag GlobalRouteStateCommand (%1), ser bort frÃ¥" - -#~ msgid "" -#~ "global route state command has no \"%1\" node, ignoring entire command" -#~ msgstr "" -#~ "allmenn rutestatuskommando har ingen \"%1\"-node, ser bort frÃ¥ heile " -#~ "kommandoen" - -#~ msgid "" -#~ "cannot find track/bus \"%1\" while rebuilding a global route state " -#~ "command, ignored" -#~ msgstr "" -#~ "greier ikkje finna spor/buss \"%1\" ved oppattbygging ein allmenn " -#~ "rutestatuskommando, sÃ¥g bort frÃ¥" - -#~ msgid "" -#~ "global route meter state command has no \"%1\" node, ignoring entire " -#~ "command" -#~ msgstr "" -#~ "allmenn kommando for rutemælestatus har ingen \"%1\"-node, ser bort frÃ¥ " -#~ "heile kommandoen" - -#~ msgid "Export: no output file specified" -#~ msgstr "Eksport: du har ikkje skrive inn ut-fil" - -#~ msgid "illegal frame range in export specification" -#~ msgstr "ulovleg " - -#~ msgid "Bad data width size. Report me!" -#~ msgstr "Feil storleik pÃ¥ databreidd. Sei frÃ¥ om dette til utviklarane!" - -#~ msgid "Export: cannot open output file \"%1\" (%2)" -#~ msgstr "Eksport: greier ikkje opna utfila \"%1\" (%2)" - -#~ msgid "cannot initialize sample rate conversion: %1" -#~ msgstr "greier ikkje byrja punktrateomdanning: %1" - -#~ msgid "warning, leftover frames overflowed, glitches might occur in output" -#~ msgstr "Ã¥tvaring: nokre rammer vart til overs i, det kan vera hakk i utfila" - -#~ msgid "Export: could not write data to output file (%1)" -#~ msgstr "Eksport: greidde ikkje skriva data til utfil (%1)" - -#~ msgid "Ardour is slaved to MTC - port cannot be reset" -#~ msgstr "Ardour er slave til ein MTC-port og kan ikkje nullstillast" - -#~ msgid "unknown port %1 requested for MTC" -#~ msgstr "førespurnad til ukjend MTC-port %1" - -#~ msgid "Error reading from MIDI port %1" -#~ msgstr "Greidde ikkje lesa frÃ¥ MIDI-port %1" - -#~ msgid "MMC: cannot send command %1%2%3" -#~ msgstr "MMC: greier ikkje senda kommandoen %1%2%3" - -#~ msgid "UI: cannot set O_NONBLOCK on signal read pipe (%1)" -#~ msgstr "Grensesnitt: O_NONBLOCK fastsett for signallesingsrøyr (%1)" - -#~ msgid "UI: cannot set O_NONBLOCK on signal write pipe (%1)" -#~ msgstr "" -#~ "Grensesnitt: greier ikkje fastsetja O_NONBLOCK for signalskrivingsrøyr " -#~ "(%1)" - -#~ msgid "Session: could not create transport thread" -#~ msgstr "Økt: greidde ikkje laga transporttrÃ¥d" - -#~ msgid "cannot send signal to midi thread! (%1)" -#~ msgstr "greier ikkje senda signal til MIDI-trÃ¥den! (%1)" - -#~ msgid "MIDI thread poll failed (%1)" -#~ msgstr "Spørjing pÃ¥ MIDI-trÃ¥d mislukka (%1)" - -#~ msgid "Error on transport thread request pipe" -#~ msgstr "Feil pÃ¥ transporttrÃ¥dspørjingsrøyr" - -#~ msgid "Error reading from transport request pipe" -#~ msgstr "Greidde ikkje lesa frÃ¥ transportspørjingsrøyr" - -#~ msgid "start" -#~ msgstr "start" - -#~ msgid "Session: XML state has no connections section" -#~ msgstr "Økt: XML-fila har ikkje noko avsnitt om tilkoplingar" - -#~ msgid "cannot create dead sounds directory \"%1\"; ignored" -#~ msgstr "greier ikkje laga daudlydmappa \"%1\", hoppa over" - -#~ msgid "cannot create peak file directory \"%1\"; ignored" -#~ msgstr "greier ikkje laga toppfilmappa \"%1\", hoppa over" - -#~ msgid "cannot remove dead sound file %1 (%2)" -#~ msgstr "greier ikkje fjerna daudlyd-fila %1 (%2)" - -#~ msgid "could not remove corrupt history file %1" -#~ msgstr "greidde ikkje fjerna den øydelagde historiefila %1" - -#~ msgid "Loading history from '%1'." -#~ msgstr "Lastar historie frÃ¥ '%1'." - -#~ msgid "please stop the transport before adjusting slave settings" -#~ msgstr "hugs Ã¥ stoppa spelinga før du justerer slaveinnstillingar" - -#~ msgid "No MTC port defined: MTC slaving is impossible." -#~ msgstr "Ingen MTC-port er gjeven. MTC-slaving er umogleg." - -#~ msgid "" -#~ "cannot set broadcast info for audio file %1; Dropping broadcast info for " -#~ "this file" -#~ msgstr "" -#~ "greier ikkje fastsetja kringkastingsinformasjon for lydfila %1, hoppar " -#~ "over kringkastingsinformasjon for denne fila" - -#~ msgid "Internal" -#~ msgstr "Intern" - -#~ msgid "Bad node sent to VSTPlugin::set_state" -#~ msgstr "Feil punkt sendt til VSTPlugin::set_state-funksjonen" - -#~ msgid "no support for presets using chunks at this time" -#~ msgstr "" -#~ "det er ikkje støtte for ferdigprogram som brukar bitar for augneblinken" - -#~ msgid "VST plugin called with zero frames - please notify Ardour developers" -#~ msgstr "" -#~ "VST-innstikk pÃ¥kalla med null rammer - sei frÃ¥ til Ardour-utviklarane" - -#~ msgid "VST: cannot load module from \"%1\"" -#~ msgstr "VST: greier ikkje lasta modul frÃ¥ \"%1\"" - -#~ msgid "You asked ardour to not use any VST plugins" -#~ msgstr "Du sa at Ardour ikkje skulle bruka nokon VST-tilleggsprogram" - -#~ msgid "CoreAudioSource: cannot open file \"%1\" for %2" -#~ msgstr "CoreAudioSource: greier ikkje opna fila \"%1\" for %2" - -#~ msgid "Could not create XML version of property list" -#~ msgstr "Greidde ikkje laga XML-versjon av eigenskaplista" - -#~ msgid "Cannot open preset file %1 (%2)" -#~ msgstr "Greier ikkje opna ferdigoppsettfila %1 (%2)" - -#~ msgid "Exception thrown during AudioUnit plugin loading - plugin ignored" -#~ msgstr "" -#~ "Det vart kasta inn eit unntak under AudioUnit-innstikklastinga - sÃ¥g bort " -#~ "frÃ¥ innstikket" - -#~ msgid "AudioUnit: Could not convert CAComponent to CAAudioUnit" -#~ msgstr "Lydeinging: Greidde ikkje gjera om CAComponent til CAAudioUnit" - -#~ msgid "AUPlugin: cannot set processing block size" -#~ msgstr "AUPlugin: Greier ikkje setja opp blokkstorleik for handsaming" - -#~ msgid "AUPlugin: %1 cannot initialize plugin (err = %2)" -#~ msgstr "AUPlugin: %1 greier ikkje starta innstikk (feil = %2)" - -#~ msgid "AU %1 has zero outputs - configuration ignored" -#~ msgstr "AU %1 har ingen utgangar - sÃ¥g bort frÃ¥ oppsettet" - -#~ msgid "AU plugin %1 has illegal IO configuration (-2,-2)" -#~ msgstr "AU-innstikket %1 har ugyldig IU-oppsett (-2,-2)" - -#~ msgid "AUPlugin: could not set stream format for %1/%2 (err = %3)" -#~ msgstr "" -#~ "AUPlugin: greidde ikkje setja opp straumformat for %1/%2 (feil = %3)" - -#~ msgid "AUPlugin: %1 input_streams() called without any format set!" -#~ msgstr "AUPlugin: %1 input_streams() pÃ¥kalla utan oppsett format!" - -#~ msgid "AUPlugin: %1 output_streams() called without any format set!" -#~ msgstr "AUPlugin: %1 output_streams() pÃ¥kalla utan oppsett format!" - -#~ msgid "AUPlugin: render callback called illegally!" -#~ msgstr "AUPlugin: oppteiknings-tilbakekall pÃ¥kalla ulovleg!" - -#~ msgid "" -#~ "Saving AudioUnit settings is not supported in this build of Ardour. " -#~ "Consider paying for a newer version" -#~ msgstr "" -#~ "Du kan ikkje lagra AudioUnit-innstillingar i denne versjonen av Ardour. " -#~ "Du bør vurdera Ã¥ betala for ein nyare verjson" - -#~ msgid "Bad node sent to AUPlugin::set_state" -#~ msgstr "Feil punkt sendt til AUPlugin::set_state" - -#~ msgid "" -#~ "Restoring AudioUnit settings is not supported in this build of Ardour. " -#~ "Consider paying for a newer version" -#~ msgstr "" -#~ "Du kan ikkje henta framatt AudioUnit-innstillingar i denne versjonen av " -#~ "Ardour. Du bør vurdera Ã¥ betala for ein nyare verjson" - -#~ msgid "" -#~ "Loading AudioUnit presets is not supported in this build of Ardour. " -#~ "Consider paying for a newer version" -#~ msgstr "" -#~ "Du kan ikkje lagra AudioUnit-innstillingar i denne versjonen av Ardour. " -#~ "Du bør vurdera Ã¥ betala for ein nyare verjson" - -#~ msgid "Cannot create user plugin presets folder (%1)" -#~ msgstr "Greier ikkje laga mappe for brukarlaga innstikkoppsett (%1)" - -#~ msgid "Saving plugin state to %1 failed" -#~ msgstr "Greidde ikkje lagra innstikkstatus til %1" - -#~ msgid "" -#~ "Saving AudioUnit presets is not supported in this build of Ardour. " -#~ "Consider paying for a newer version" -#~ msgstr "" -#~ "Du kan ikkje lagra førehandsoppsett for AudioUnit i denne versjonen av " -#~ "Ardour. Du bør vurdera Ã¥ betala for ein nyare verjson" - -#~ msgid "Discovering AudioUnit plugins (could take some time ...)" -#~ msgstr "Finn AudioUnit-innstikk (dette kan ta litt tid...)" - -#~ msgid "Cannot get I/O configuration info for AU %1" -#~ msgstr "Greier ikkje fÃ¥ tak i I/U-oppsettsinfo for AU %1" - -#~ msgid "Checking AudioUnit: %1" -#~ msgstr "Sjekkar AudioUnit: %1" - -#~ msgid "Could not load AU plugin %1 - ignored" -#~ msgstr "Greier ikkje lasta AU-innstikk %1 - sÃ¥g bort frÃ¥" - -#~ msgid "could not save AU cache to %1" -#~ msgstr "greidde ikkje lagra AU-mellomlageret til %1" - -#~ msgid "initial state" -#~ msgstr "opphavstilstand" - -#~ msgid "xfade change" -#~ msgstr "overtoningsendring" - -#~ msgid "region modified" -#~ msgstr "bolk endra" - -#~ msgid "cannot activate JACK client" -#~ msgstr "greier ikkje slÃ¥ pÃ¥ JACK-klienten" - -#~ msgid "get_nth_physical called before engine was started" -#~ msgstr "get_nth_physical vart oppkalla før tenaren starta" - -#~ msgid "get_port_total_latency() called with no JACK client connection" -#~ msgstr "" -#~ "get_port_total_latency()-funksjonen vart oppkalla utan tilknyting til " -#~ "JACK-klienten" - -#~ msgid "get_port_total_latency() called before engine was started" -#~ msgstr "" -#~ "get_port_total_latency()-funksjonen vart oppkalla før tenaren starta" - -#~ msgid "Unable to connect to JACK server" -#~ msgstr "Greidde ikkje kopla til JACK-tenaren" - -#~ msgid "Could not connect to JACK server as \"%1\"" -#~ msgstr "Greidde ikkje kopla til JACK-tenaren som \"%1\"" - -#~ msgid "JACK server started" -#~ msgstr "JACK-tenaren er starta" - -#~ msgid "cannot shutdown connection to JACK" -#~ msgstr "greier ikkje kopla frÃ¥ JACK" - -#~ msgid "fade in change" -#~ msgstr "inntoningsendring" - -#~ msgid "envelope change" -#~ msgstr "omhyllingsendring" - -#~ msgid "poll on peak request pipe failed (%1)" -#~ msgstr "undersøking ved toppspørjingsrøyr gjekk gale (%1)" - -#~ msgid "Error on peak thread request pipe" -#~ msgstr "Feil pÃ¥ topptrÃ¥dspørjingsrøyr" - -#~ msgid "Error reading from peak request pipe" -#~ msgstr "Feil ved lesing frÃ¥ toppspørjingsrøyr" - -#~ msgid "UI: cannot set O_NONBLOCK on peak request pipe (%1)" -#~ msgstr "Brukarflate: Kan ikkje bruka O_NONBLOCK ved toppspørjingsrøyr (%1)" - -#~ msgid "AudioSource: could not create peak thread" -#~ msgstr "Lydkjelde: greidde ikkje laga topptrÃ¥d" - -#~ msgid "initial" -#~ msgstr "fyrste" - -#~ msgid "cleared" -#~ msgstr "tom" - -#~ msgid "added event" -#~ msgstr "la til hending" - -#~ msgid "removed event" -#~ msgstr "fjerna hending" - -#~ msgid "removed multiple events" -#~ msgstr "fjerna fleire hendingar" - -#~ msgid "removed range" -#~ msgstr "fjerna omrÃ¥de" - -#~ msgid "event range adjusted" -#~ msgstr "justert hendingsomrÃ¥de" - -#~ msgid "event adjusted" -#~ msgstr "justert hending" - -#~ msgid "cut/copy/clear" -#~ msgstr "klypp/kopier/tøm" - -#~ msgid "copy" -#~ msgstr "kopier" - -#~ msgid "active changed" -#~ msgstr "endra pÃ¥/av" - -#~ msgid "MIDI port specifications for \"%1\" are not understandable." -#~ msgstr "MIDI-portspesifikasjonane for \"%1\" er uforstÃ¥elege." - -#, fuzzy -#~ msgid "resampling audio" -#~ msgstr "samplar om lyd" - -#~ msgid "Import: cannot open converted sound file \"%1\"" -#~ msgstr "Import: kan ikkje opna den omkoda lydfila \"%1\"" - -#~ msgid "" -#~ "Session::import_audiofile: cannot open new file source for channel %1" -#~ msgstr "Økt::import_lydfil: kan ikkje opna ny kjeldefil for kanalen %1" - -#~ msgid "Import/SRC: could not open input file: %1" -#~ msgstr "Import/kjelde: greidde ikkje opna innfila: %1" - -#~ msgid "Import/SRC: could not open output file: %1" -#~ msgstr "Import/kjelde: greidde ikkje opna utfila: %1" - -#~ msgid "XML node describing insert is missing the `id' field" -#~ msgstr "XML-punktet som skildrar tappinga manglar 'id'-feltet" - -#~ msgid "PortInsert: cannot add input port" -#~ msgstr "PortInsert: greier ikkje leggja til inngangsport" - -#~ msgid "PortInsert: cannot add output port" -#~ msgstr "PortInsert: greier ikkje leggja til utgangsport" - -#~ msgid "%s/out %u" -#~ msgstr "%s/ut %u" - -#~ msgid "Unknown connection \"%1\" listed for output of %2" -#~ msgstr "Ukjend tilkopling \"%1\" lista opp for %2-utgangen" - -#~ msgid "No output connections available as a replacement" -#~ msgstr "Det finst ingen utgangstilkoplingar som kan brukast som erstatting" - -#~ msgid "%1: could not open automation event file \"%2\"" -#~ msgstr "%1: greier ikkje opna automasjonshendingsfila \"%2\"" - -#~ msgid "mismatched automation event file version (%1)" -#~ msgstr "ikkje like versjonsnummer i automasjonshendingsfila (%1)" - -#~ msgid "loaded from disk" -#~ msgstr "lasta frÃ¥ disk" - -#~ msgid "automation write/touch" -#~ msgstr "automasjonsskriving/rørsle" - -#~ msgid "clear" -#~ msgstr "tøm" - -#~ msgid "clear markers" -#~ msgstr "tøm merke" - -#~ msgid "clear ranges" -#~ msgstr "tøm omrÃ¥de" - -#~ msgid "add" -#~ msgstr "legg til" - -#~ msgid "remove" -#~ msgstr "fjern" - -#~ msgid "automation write pass" -#~ msgstr "automasjonsskriveomgang" - -#~ msgid "error writing pan automation file (%s)" -#~ msgstr "greidde ikkje skriva panoreringsautomasjonsfil (%s)" - -#~ msgid "cannot open pan automation file \"%1\" for saving (%2)" -#~ msgstr "" -#~ "kan ikkje opna panoreringsautomasjonsfil \"%1\" for Ã¥ lagra henne (%2)" - -#~ msgid "mismatched pan automation event file version (%1)" -#~ msgstr "" -#~ "handlingsfila for panoreringsautomasjon har versjonsnummer som ikkje " -#~ "stemmer overeins (%1)" - -#~ msgid "remove region" -#~ msgstr "fjern bolk" - -#~ msgid "separate" -#~ msgstr "del opp" - -#~ msgid "cut" -#~ msgstr "klypp" - -#~ msgid "duplicate" -#~ msgstr "klon" - -#~ msgid "split" -#~ msgstr "del" - -#~ msgid "nudged" -#~ msgstr "skubba" - -#~ msgid "" -#~ "programming error: Playlist::copyPlaylist called with unknown Playlist " -#~ "type" -#~ msgstr "" -#~ "programmeringsfeil: Playlist::copyPlaylist-funksjonen vart oppkalla med " -#~ "ukjend spelelistetype" - -#~ msgid "post" -#~ msgstr "etter" - -#~ msgid "Redirect: unknown placement string \"%1\" (ignored)" -#~ msgstr "Omdirigering: ukjend plasseringsstreng \"%1\" (hoppa over)" - -#~ msgid "%1: cannot open %2 to store automation data (%3)" -#~ msgstr "%1: greier ikkje opna %2 for Ã¥ lagra automasjonsdata (%3)" - -#~ msgid "%1: could not save automation state to %2" -#~ msgstr "%1: greier ikkje lagra automasjonstilstanden til %2" - -#~ msgid "" -#~ "Could not get state from Redirect (%1). Problem with save_automation" -#~ msgstr "" -#~ "Greier ikkje fÃ¥ tak i tilstanden frÃ¥ omdirigeringa (%1). Problem med Ã¥ " -#~ "lagra automasjonen." - -#~ msgid "active_changed" -#~ msgstr "aktiv_endra" - -#~ msgid "Could not get state of route. Problem with save_automation" -#~ msgstr "" -#~ "Greidde ikkje fÃ¥ tak i tilstanden for rutinga. Problem med Ã¥ lagra " -#~ "automasjon." - -#~ msgid "too many regions with names like %1" -#~ msgstr "for mange bolkar med namn som %1" - -#~ msgid "programming error: unknown type of Insert deleted!" -#~ msgstr "programmeringsfeil: ein ukjend tappingstype er sletta!" - -#~ msgid "could not backup old state file, current state not saved." -#~ msgstr "" -#~ "greidde ikkje ta tryggingskopi av den gamle tilstandsfila. Den noverande " -#~ "tilstanden er ikkje lagra." - -#~ msgid "tempoize: error creating name for new audio file based on %1" -#~ msgstr "" -#~ "lag tempo: greidde ikkje gje namn til den nye lydfila som er bygd pÃ¥ %1" - -#~ msgid "tempoize: error creating new audio file %1 (%2)" -#~ msgstr "lag tempo: greidde ikkje laga den nye lydfila %1 (%2)" - -#~ msgid "PAF (Ensoniq Paris)" -#~ msgstr "PAF (Ensoniq Paris)" - -#~ msgid "AU (Sun/NeXT)" -#~ msgstr "AU (Sun/NeXT)" - -#~ msgid "IRCAM" -#~ msgstr "IRCAM" - -#~ msgid ".au" -#~ msgstr ".au" - -#~ msgid ".ircam" -#~ msgstr ".ircam" - -#~ msgid "FileSource: cannot get host information for BWF header (%1)" -#~ msgstr "" -#~ "Filkjelde: greier ikkje finna vertsinformasjonen for BWF-tittellinja (%1)" - -#~ msgid "%1: cannot seek to %2" -#~ msgstr "%1: greier ikkje leita fram til %2" - -#~ msgid "cleared history" -#~ msgstr "tømte historia" - -#~ msgid "" -#~ "programming error: illegal state ID (%1) passed to StateManager::set_state" -#~ "() (range = 0-%2)" -#~ msgstr "" -#~ "programmeringsfeil: ulovleg tilgangs-ID (%1) send til StateManager::" -#~ "set_state()-funksjonen (omrÃ¥de = 0-%2)" - -#, fuzzy -#~ msgid "move metric" -#~ msgstr "flytt taktart" - -#~ msgid "metric removed" -#~ msgstr "fjerna taktart" - -#~ msgid "add tempo" -#~ msgstr "legg til tempo" - -#~ msgid "replace tempo" -#~ msgstr "byt ut tempo" - -#~ msgid "add meter" -#~ msgstr "legg til taktart" - -#~ msgid "replaced meter" -#~ msgstr "bytte ut taktart" - -#~ msgid "load XML data" -#~ msgstr "last XML-data" - -#~ msgid "cannot create VST chunk directory: %1" -#~ msgstr "greier ikkje laga mappe for VST-bitar: %1" - -#~ msgid "cannot check VST chunk directory: %1" -#~ msgstr "greier ikkje sjekka mappe for VST-bitar: %1" - -#~ msgid "%1 exists but is not a directory" -#~ msgstr "%1 finst, men det er ikkje ei mappe" diff --git a/libs/gtkmm2ext/po/pl.po b/libs/gtkmm2ext/po/pl.po index da5720a331..166c1690b5 100644 --- a/libs/gtkmm2ext/po/pl.po +++ b/libs/gtkmm2ext/po/pl.po @@ -90,18 +90,3 @@ msgstr "" #: textviewer.cc:34 msgid "Close" msgstr "Zamknij" - -#~ msgid "Error" -#~ msgstr "Błąd" - -#~ msgid "+" -#~ msgstr "+" - -#~ msgid "-" -#~ msgstr "-" - -#~ msgid "Paths" -#~ msgstr "PoÅ‚ożenia" - -#~ msgid "Path Chooser" -#~ msgstr "Wybór poÅ‚ożenia" diff --git a/libs/gtkmm2ext/po/pt.po b/libs/gtkmm2ext/po/pt.po index 3c0633240d..1ad8ffdf32 100644 --- a/libs/gtkmm2ext/po/pt.po +++ b/libs/gtkmm2ext/po/pt.po @@ -20,11 +20,6 @@ msgstr "" msgid "Unknown action name: %1" msgstr "" -#: binding_proxy.cc:84 -#, fuzzy -msgid "operate controller now" -msgstr "Operar controladora de MIDI agora" - #: bindable_button.cc:48 msgid "button cannot watch state of non-existing Controllable\n" msgstr "" @@ -91,33 +86,3 @@ msgstr "" #: textviewer.cc:34 msgid "Close" msgstr "Fechar" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Location:" -#~ msgstr "localização:" - -#~ msgid "Browse ..." -#~ msgstr "Localizar ..." - -#~ msgid "Cancel" -#~ msgstr "Cancelar" - -#~ msgid "New folder" -#~ msgstr "Novo diretório" - -#~ msgid "Add to favorites" -#~ msgstr "Adicionar a favoritos" - -#~ msgid "Remove from favorites" -#~ msgstr "Remover de favoritos" - -#~ msgid "Show Hidden" -#~ msgstr "Mostrar ocultos" - -#~ msgid "Hide browser" -#~ msgstr "Ocultar explorador" - -#~ msgid "Rescan" -#~ msgstr "Buscar de novo" diff --git a/libs/gtkmm2ext/po/ru.po b/libs/gtkmm2ext/po/ru.po index 0d1a8e4092..bda7b989a5 100644 --- a/libs/gtkmm2ext/po/ru.po +++ b/libs/gtkmm2ext/po/ru.po @@ -96,42 +96,3 @@ msgstr "Щелкните, чтобы превратить Ñто плавающ #: textviewer.cc:34 msgid "Close" msgstr "Закрыть" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "Key: " -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "Клавиша: " - -#~ msgid "OK" -#~ msgstr "ОК" - -#~ msgid "Location:" -#~ msgstr "Путь:" - -#~ msgid "Browse ..." -#~ msgstr "Обзор ..." - -#~ msgid "Cancel" -#~ msgstr "Отмена" - -#~ msgid "New folder" -#~ msgstr "ÐÐ¾Ð²Ð°Ñ Ð¿Ð°Ð¿ÐºÐ°" - -#~ msgid "Add to favorites" -#~ msgstr "Добавить в избранное" - -#~ msgid "Remove from favorites" -#~ msgstr "ИÑключить из избранного" - -#~ msgid "Show Hidden" -#~ msgstr "Показывать Ñкрытые файлы" - -#~ msgid "Hide browser" -#~ msgstr "Скрыть облаÑть обзора" - -#~ msgid "Rescan" -#~ msgstr "Обновить" From a4b6a4f8bbc475f7bf26b96c2a0be093b42452a1 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 23 Oct 2013 20:02:30 +0200 Subject: [PATCH 29/95] add script to clean up translations --- tools/nofuzz.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 tools/nofuzz.sh diff --git a/tools/nofuzz.sh b/tools/nofuzz.sh new file mode 100755 index 0000000000..cf0a1ac8aa --- /dev/null +++ b/tools/nofuzz.sh @@ -0,0 +1,14 @@ +#!/bin/sh +## this script should be run from the top-level source dir +## it remove all fuzzy and obsolte translations and wraps +## long lines. +## +## update .po and .pot files: + ./waf i18n_pot + +TEMPFILE=`mktemp` +for file in `git ls-files | grep -e '.po$'`; do + cp $file $TEMPFILE + msgattrib -o $file --no-fuzzy --no-obsolete $TEMPFILE +done +rm $TEMPFILE From ac81ea642e2448abed8dbb697fa7ee662079832f Mon Sep 17 00:00:00 2001 From: Colin Fletcher Date: Wed, 23 Oct 2013 16:03:18 +0100 Subject: [PATCH 30/95] Don't fail jackd command line creation for jack dummy backend. The dummy jackd backend doesn't require a device to be specified, so much of the error checking in get_jack_command_line_string() is irrelevant, if not actively wrong, when the dummy backend is specified. Only perform the checks if the chosen jack backend is not the dummy. --- libs/backends/jack/jack_utils.cc | 71 +++++++++++++++++--------------- 1 file changed, 37 insertions(+), 34 deletions(-) diff --git a/libs/backends/jack/jack_utils.cc b/libs/backends/jack/jack_utils.cc index 92f175d9cb..0aa0eca9b1 100644 --- a/libs/backends/jack/jack_utils.cc +++ b/libs/backends/jack/jack_utils.cc @@ -756,6 +756,9 @@ ARDOUR::get_jack_command_line_string (JackCommandLineOptions& options, string& c string command_line_driver_name; + string command_line_input_device_name; + string command_line_output_device_name; + if (!get_jack_command_line_audio_driver_name (options.driver, command_line_driver_name)) { return false; } @@ -763,44 +766,44 @@ ARDOUR::get_jack_command_line_string (JackCommandLineOptions& options, string& c args.push_back ("-d"); args.push_back (command_line_driver_name); - if (options.output_device.empty() && options.input_device.empty()) { - return false; - } - - string command_line_input_device_name; - string command_line_output_device_name; - - if (!get_jack_command_line_audio_device_name (options.driver, - options.input_device, command_line_input_device_name)) { - return false; - } - - if (!get_jack_command_line_audio_device_name (options.driver, - options.output_device, command_line_output_device_name)) { - return false; - } - - if (options.input_device.empty()) { - // playback only - if (options.output_device.empty()) { + if (options.driver != dummy_driver_name) { + if (options.output_device.empty() && options.input_device.empty()) { return false; } - args.push_back ("-P"); - } else if (options.output_device.empty()) { - // capture only + + + if (!get_jack_command_line_audio_device_name (options.driver, + options.input_device, command_line_input_device_name)) { + return false; + } + + if (!get_jack_command_line_audio_device_name (options.driver, + options.output_device, command_line_output_device_name)) { + return false; + } + if (options.input_device.empty()) { - return false; - } - args.push_back ("-C"); - } else if (options.input_device != options.output_device) { - // capture and playback on two devices if supported - if (get_jack_audio_driver_supports_two_devices (options.driver)) { - args.push_back ("-C"); - args.push_back (command_line_input_device_name); + // playback only + if (options.output_device.empty()) { + return false; + } args.push_back ("-P"); - args.push_back (command_line_output_device_name); - } else { - return false; + } else if (options.output_device.empty()) { + // capture only + if (options.input_device.empty()) { + return false; + } + args.push_back ("-C"); + } else if (options.input_device != options.output_device) { + // capture and playback on two devices if supported + if (get_jack_audio_driver_supports_two_devices (options.driver)) { + args.push_back ("-C"); + args.push_back (command_line_input_device_name); + args.push_back ("-P"); + args.push_back (command_line_output_device_name); + } else { + return false; + } } } From 903d728b9ce1eae8d68e885fc0158a6d67627360 Mon Sep 17 00:00:00 2001 From: Colin Fletcher Date: Tue, 22 Oct 2013 18:48:26 +0100 Subject: [PATCH 31/95] Fix setting playback & capture channel counts for jackd dummy backend. Unlike all the other jack backends which allow setting the number of inputs and outputs with -i & -o, the dummy backend uses -P & -C for this. Make the jackd command line use these options when the dummy backend is requested with a specified input or output channel count. --- libs/backends/jack/jack_utils.cc | 35 +++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/libs/backends/jack/jack_utils.cc b/libs/backends/jack/jack_utils.cc index 0aa0eca9b1..ba63977e77 100644 --- a/libs/backends/jack/jack_utils.cc +++ b/libs/backends/jack/jack_utils.cc @@ -805,21 +805,32 @@ ARDOUR::get_jack_command_line_string (JackCommandLineOptions& options, string& c return false; } } - } - if (options.input_channels) { - args.push_back ("-i"); - args.push_back (to_string (options.input_channels, std::dec)); - } + if (options.input_channels) { + args.push_back ("-i"); + args.push_back (to_string (options.input_channels, std::dec)); + } - if (options.output_channels) { - args.push_back ("-o"); - args.push_back (to_string (options.output_channels, std::dec)); - } + if (options.output_channels) { + args.push_back ("-o"); + args.push_back (to_string (options.output_channels, std::dec)); + } - if (get_jack_audio_driver_supports_setting_period_count (options.driver)) { - args.push_back ("-n"); - args.push_back (to_string (options.num_periods, std::dec)); + if (get_jack_audio_driver_supports_setting_period_count (options.driver)) { + args.push_back ("-n"); + args.push_back (to_string (options.num_periods, std::dec)); + } + } else { + // jackd dummy backend + if (options.input_channels) { + args.push_back ("-C"); + args.push_back (to_string (options.input_channels, std::dec)); + } + + if (options.output_channels) { + args.push_back ("-P"); + args.push_back (to_string (options.output_channels, std::dec)); + } } args.push_back ("-r"); From 70f0cfdb3b7de14c2e3c36b97bd1b4f013c07f2e Mon Sep 17 00:00:00 2001 From: Colin Fletcher Date: Wed, 23 Oct 2013 17:46:51 +0100 Subject: [PATCH 32/95] Don't ever pass -d for device name to dummy jackd driver --- libs/backends/jack/jack_utils.cc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/libs/backends/jack/jack_utils.cc b/libs/backends/jack/jack_utils.cc index ba63977e77..e009b05cd7 100644 --- a/libs/backends/jack/jack_utils.cc +++ b/libs/backends/jack/jack_utils.cc @@ -850,9 +850,11 @@ ARDOUR::get_jack_command_line_string (JackCommandLineOptions& options, string& c } } - if (options.input_device == options.output_device && options.input_device != default_device_name) { - args.push_back ("-d"); - args.push_back (command_line_input_device_name); + if (options.driver != dummy_driver_name) { + if (options.input_device == options.output_device && options.input_device != default_device_name) { + args.push_back ("-d"); + args.push_back (command_line_input_device_name); + } } if (options.driver == alsa_driver_name) { From a18db90264a91a5fe80b5993511c960329964742 Mon Sep 17 00:00:00 2001 From: Colin Fletcher Date: Wed, 23 Oct 2013 16:10:36 +0100 Subject: [PATCH 33/95] Report an error to stderr if creation of jack command line fails. Output a simple message to stderr if get_jack_command_line_string() still fails for any reason. --- libs/backends/jack/jack_audiobackend.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/backends/jack/jack_audiobackend.cc b/libs/backends/jack/jack_audiobackend.cc index 7a9b993251..86e5b9d54c 100644 --- a/libs/backends/jack/jack_audiobackend.cc +++ b/libs/backends/jack/jack_audiobackend.cc @@ -509,6 +509,7 @@ JACKAudioBackend::setup_jack_startup_command (bool for_latency_measurement) /* error, somehow - we will still try to start JACK * automatically but it will be without our preferred options */ + std::cerr << "get_jack_command_line_string () failed: using default settings." << std::endl; return; } From cfafa610f09334029f8bda4877bd7de98345ea94 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 23 Oct 2013 13:51:04 -0400 Subject: [PATCH 34/95] fix MMC MTC and MIDI Clock port input handling was moved into the process/RT thread(s) during audioengine work, but MMC was left orphaned. Add it to the port(s) handled by the MIDI UI thread. Also, remove PortChange request from MidiUI because it has no meaning anymore --- libs/ardour/ardour/midi_ui.h | 3 -- libs/ardour/midi_ui.cc | 58 +++++++++++++++++------------------- 2 files changed, 27 insertions(+), 34 deletions(-) diff --git a/libs/ardour/ardour/midi_ui.h b/libs/ardour/ardour/midi_ui.h index c15a530057..9e46f226f7 100644 --- a/libs/ardour/ardour/midi_ui.h +++ b/libs/ardour/ardour/midi_ui.h @@ -51,8 +51,6 @@ class MidiControlUI : public AbstractUI static MidiControlUI* instance() { return _instance; } - static BaseUI::RequestType PortChange; - void change_midi_ports (); protected: @@ -63,7 +61,6 @@ class MidiControlUI : public AbstractUI typedef std::list PortSources; PortSources port_sources; ARDOUR::Session& _session; - PBD::ScopedConnection rebind_connection; bool midi_input_handler (Glib::IOCondition, AsyncMIDIPort*); void reset_ports (); diff --git a/libs/ardour/midi_ui.cc b/libs/ardour/midi_ui.cc index 7346c0244c..0729132d6c 100644 --- a/libs/ardour/midi_ui.cc +++ b/libs/ardour/midi_ui.cc @@ -39,7 +39,6 @@ using namespace Glib; #include "i18n.h" -BaseUI::RequestType MidiControlUI::PortChange = BaseUI::new_request_type(); MidiControlUI* MidiControlUI::_instance = 0; #include "pbd/abstract_ui.cc" /* instantiate the template */ @@ -60,24 +59,7 @@ MidiControlUI::~MidiControlUI () void MidiControlUI::do_request (MidiUIRequest* req) { - if (req->type == PortChange) { - - /* restart event loop with new ports */ - DEBUG_TRACE (DEBUG::MidiIO, "reset ports\n"); - reset_ports (); - - } else if (req->type == CallSlot) { - -#ifndef NDEBUG - if (getenv ("DEBUG_THREADED_SIGNALS")) { - cerr << "MIDI UI calls a slot\n"; - } -#endif - - req->the_slot (); - - } else if (req->type == Quit) { - + if (req->type == Quit) { BaseUI::quit (); } } @@ -117,23 +99,37 @@ MidiControlUI::clear_ports () void MidiControlUI::reset_ports () { - if (port_sources.empty()) { - AsyncMIDIPort* async = dynamic_cast (_session.midi_input_port()); + if (!port_sources.empty()) { + return; + } + + vector ports; + AsyncMIDIPort* p; + + if ((p = dynamic_cast (_session.midi_input_port()))) { + ports.push_back (p); + } + + + if ((p = dynamic_cast (_session.mmc_input_port()))) { + ports.push_back (p); + } + + if (ports.empty()) { + return; + } + + int fd; + for (vector::const_iterator pi = ports.begin(); pi != ports.end(); ++pi) { - if (!async) { - return; - } - - int fd; - - if ((fd = async->selectable ()) >= 0) { + if ((fd = (*pi)->selectable ()) >= 0) { Glib::RefPtr psrc = IOSource::create (fd, IO_IN|IO_HUP|IO_ERR); - psrc->connect (sigc::bind (sigc::mem_fun (this, &MidiControlUI::midi_input_handler), async)); + psrc->connect (sigc::bind (sigc::mem_fun (this, &MidiControlUI::midi_input_handler), *pi)); psrc->attach (_main_loop->get_context()); - + // glibmm hack: for now, store only the GSource* - + port_sources.push_back (psrc->gobj()); g_source_ref (psrc->gobj()); } From e80d66c9085a5e5acaa75de54712b32acea082a9 Mon Sep 17 00:00:00 2001 From: nick_m Date: Sat, 26 Oct 2013 02:37:45 +1100 Subject: [PATCH 35/95] Use add_route_dialog's transient_for() window to determine track selection for order_hint. --- gtk2_ardour/ardour_ui.cc | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index 46308fed98..0261266566 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -3231,17 +3231,18 @@ ARDOUR_UI::setup_order_hint () we want the new routes to have their order keys set starting from the highest order key in the selection + 1 (if available). */ - - for (RouteUISelection::iterator s = mixer->selection().routes.begin(); s != mixer->selection().routes.end(); ++s) { - if ((*s)->route()->order_key() > order_hint) { - order_hint = (*s)->route()->order_key(); + if (add_route_dialog->get_transient_for () == mixer->get_toplevel()) { + for (RouteUISelection::iterator s = mixer->selection().routes.begin(); s != mixer->selection().routes.end(); ++s) { + if ((*s)->route()->order_key() > order_hint) { + order_hint = (*s)->route()->order_key(); + } } - } - - for (TrackSelection::iterator s = editor->get_selection().tracks.begin(); s != editor->get_selection().tracks.end(); ++s) { - RouteTimeAxisView* tav = dynamic_cast (*s); - if (tav->route()->order_key() > order_hint) { - order_hint = tav->route()->order_key(); + } else { + for (TrackSelection::iterator s = editor->get_selection().tracks.begin(); s != editor->get_selection().tracks.end(); ++s) { + RouteTimeAxisView* tav = dynamic_cast (*s); + if (tav->route()->order_key() > order_hint) { + order_hint = tav->route()->order_key(); + } } } @@ -3282,6 +3283,7 @@ ARDOUR_UI::add_route (Gtk::Window* float_window) } if (float_window) { + add_route_dialog->unset_transient_for (); add_route_dialog->set_transient_for (*float_window); } From 89193dc40ba85cd4c388dd33776f7b28ea98a848 Mon Sep 17 00:00:00 2001 From: Colin Fletcher Date: Fri, 9 Aug 2013 15:57:37 +0100 Subject: [PATCH 36/95] Add a double-click handler for items in the editor window. --- gtk2_ardour/editor.h | 1 + gtk2_ardour/editor_mouse.cc | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/gtk2_ardour/editor.h b/gtk2_ardour/editor.h index e9269841ff..13902a111f 100644 --- a/gtk2_ardour/editor.h +++ b/gtk2_ardour/editor.h @@ -1085,6 +1085,7 @@ class Editor : public PublicEditor, public PBD::ScopedConnectionList, public ARD bool button_press_handler_1 (ArdourCanvas::Item *, GdkEvent *, ItemType); bool button_press_handler_2 (ArdourCanvas::Item *, GdkEvent *, ItemType); bool button_release_handler (ArdourCanvas::Item*, GdkEvent*, ItemType); + bool button_double_click_handler (ArdourCanvas::Item*, GdkEvent*, ItemType); bool button_press_dispatch (GdkEventButton*); bool button_release_dispatch (GdkEventButton*); bool motion_handler (ArdourCanvas::Item*, GdkEvent*, bool from_autoscroll = false); diff --git a/gtk2_ardour/editor_mouse.cc b/gtk2_ardour/editor_mouse.cc index be716d64d0..c91e9d1b34 100644 --- a/gtk2_ardour/editor_mouse.cc +++ b/gtk2_ardour/editor_mouse.cc @@ -1269,6 +1269,10 @@ bool Editor::button_press_handler (ArdourCanvas::Item* item, GdkEvent* event, ItemType item_type) { if (event->type != GDK_BUTTON_PRESS) { + if (event->type == GDK_2BUTTON_PRESS) { + gdk_pointer_ungrab (GDK_CURRENT_TIME); + return button_double_click_handler (item, event, item_type); + } return false; } @@ -1392,6 +1396,37 @@ Editor::button_release_dispatch (GdkEventButton* ev) return button_bindings->activate (b, Gtkmm2ext::Bindings::Release); } +bool +Editor::button_double_click_handler (ArdourCanvas::Item* item, GdkEvent* event, ItemType item_type) { + + if (event->button.button != 1) { + return false; + } + + switch (item_type) { + case RegionItem: + case NoteItem: + case PlayheadCursorItem: + case MarkerItem: + case RangeMarkerBarItem: + case CdMarkerBarItem: + case TempoMarkerItem: + case MeterMarkerItem: + case MarkerBarItem: + case TempoBarItem: + case MeterBarItem: + case TransportMarkerBarItem: + case StreamItem: + break; + + default: + break; + } + return false; +} + + + bool Editor::button_release_handler (ArdourCanvas::Item* item, GdkEvent* event, ItemType item_type) { From abb05680b49cfbc5a367820326540f709fa53348 Mon Sep 17 00:00:00 2001 From: Colin Fletcher Date: Fri, 9 Aug 2013 15:59:12 +0100 Subject: [PATCH 37/95] Make double-click on marker pop up rename dialogue. --- gtk2_ardour/editor.h | 1 + gtk2_ardour/editor_markers.cc | 7 +++++++ gtk2_ardour/editor_mouse.cc | 7 +++++++ 3 files changed, 15 insertions(+) diff --git a/gtk2_ardour/editor.h b/gtk2_ardour/editor.h index 13902a111f..9e4b3ada19 100644 --- a/gtk2_ardour/editor.h +++ b/gtk2_ardour/editor.h @@ -1524,6 +1524,7 @@ class Editor : public PublicEditor, public PBD::ScopedConnectionList, public ARD void marker_menu_edit (); void marker_menu_remove (); void marker_menu_rename (); + void rename_marker (Marker *marker); void toggle_marker_menu_lock (); void toggle_marker_menu_glue (); void marker_menu_hide (); diff --git a/gtk2_ardour/editor_markers.cc b/gtk2_ardour/editor_markers.cc index 3bca0ad935..af968029d5 100644 --- a/gtk2_ardour/editor_markers.cc +++ b/gtk2_ardour/editor_markers.cc @@ -1338,6 +1338,13 @@ Editor::marker_menu_rename () /*NOTREACHED*/ } + + rename_marker (marker); +} + +void +Editor::rename_marker(Marker *marker) +{ Location* loc; bool is_start; diff --git a/gtk2_ardour/editor_mouse.cc b/gtk2_ardour/editor_mouse.cc index c91e9d1b34..67d6e1341c 100644 --- a/gtk2_ardour/editor_mouse.cc +++ b/gtk2_ardour/editor_mouse.cc @@ -1407,9 +1407,16 @@ Editor::button_double_click_handler (ArdourCanvas::Item* item, GdkEvent* event, case RegionItem: case NoteItem: case PlayheadCursorItem: + break; case MarkerItem: case RangeMarkerBarItem: case CdMarkerBarItem: + Marker* marker; + if ((marker = static_cast (item->get_data ("marker"))) == 0) { + break; + } + rename_marker (marker); + return true; case TempoMarkerItem: case MeterMarkerItem: case MarkerBarItem: From db0f2aad487bbd1fe3b88dbeca46a0c75b607829 Mon Sep 17 00:00:00 2001 From: Colin Fletcher Date: Fri, 9 Aug 2013 15:59:40 +0100 Subject: [PATCH 38/95] Mark session dirty when a marker is renamed. --- gtk2_ardour/editor_markers.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk2_ardour/editor_markers.cc b/gtk2_ardour/editor_markers.cc index af968029d5..868a100818 100644 --- a/gtk2_ardour/editor_markers.cc +++ b/gtk2_ardour/editor_markers.cc @@ -1385,6 +1385,7 @@ Editor::rename_marker(Marker *marker) dialog.get_result(txt); loc->set_name (txt); + _session->set_dirty (); XMLNode &after = _session->locations()->get_state(); _session->add_command (new MementoCommand(*(_session->locations()), &before, &after)); From efd2e1776d33c4ab789f97e15593d72600733e16 Mon Sep 17 00:00:00 2001 From: Colin Fletcher Date: Fri, 9 Aug 2013 16:00:13 +0100 Subject: [PATCH 39/95] Double-click on region pops up region properties. --- gtk2_ardour/editor_mouse.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk2_ardour/editor_mouse.cc b/gtk2_ardour/editor_mouse.cc index 67d6e1341c..cee252480a 100644 --- a/gtk2_ardour/editor_mouse.cc +++ b/gtk2_ardour/editor_mouse.cc @@ -1405,6 +1405,10 @@ Editor::button_double_click_handler (ArdourCanvas::Item* item, GdkEvent* event, switch (item_type) { case RegionItem: + RegionView *rv; + rv = clicked_regionview; + rv->show_region_editor (); + return true; case NoteItem: case PlayheadCursorItem: break; From e7875954cabbdf6bab01b30c0801dc79374812b4 Mon Sep 17 00:00:00 2001 From: Colin Fletcher Date: Fri, 9 Aug 2013 16:07:45 +0100 Subject: [PATCH 40/95] Edit tempo & meter markers on double-click. --- gtk2_ardour/editor_mouse.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk2_ardour/editor_mouse.cc b/gtk2_ardour/editor_mouse.cc index cee252480a..7f90fe2d0f 100644 --- a/gtk2_ardour/editor_mouse.cc +++ b/gtk2_ardour/editor_mouse.cc @@ -1422,7 +1422,11 @@ Editor::button_double_click_handler (ArdourCanvas::Item* item, GdkEvent* event, rename_marker (marker); return true; case TempoMarkerItem: + edit_tempo_marker (item); + return true; case MeterMarkerItem: + edit_meter_marker (item); + return true; case MarkerBarItem: case TempoBarItem: case MeterBarItem: From 8c26a2fab066e1045f2c6a8c7fb465d11fa680b3 Mon Sep 17 00:00:00 2001 From: Colin Fletcher Date: Fri, 9 Aug 2013 16:24:24 +0100 Subject: [PATCH 41/95] Don't allow loop, punch, or session range markers to be renamed. Don't allow loop, punch, or session range markers to be renamed, even when double-clicked. --- gtk2_ardour/editor_markers.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/editor_markers.cc b/gtk2_ardour/editor_markers.cc index 868a100818..757b18b397 100644 --- a/gtk2_ardour/editor_markers.cc +++ b/gtk2_ardour/editor_markers.cc @@ -1350,7 +1350,11 @@ Editor::rename_marker(Marker *marker) loc = find_location_from_marker (marker, is_start); - if (!loc) return; + if (!loc) + return; + + if (loc == transport_loop_location() || loc == transport_punch_location() || loc->is_session_range()) + return; ArdourPrompter dialog (true); string txt; From f52cfdd6399ea4b1baab65ab2aae1b0086e9f9b3 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 26 Oct 2013 12:29:28 +0200 Subject: [PATCH 42/95] Fix french translation of "meterbridge" -- closes #5744 --- gtk2_ardour/po/fr.po | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk2_ardour/po/fr.po b/gtk2_ardour/po/fr.po index de098d69e3..5b63fcb41d 100644 --- a/gtk2_ardour/po/fr.po +++ b/gtk2_ardour/po/fr.po @@ -1605,6 +1605,10 @@ msgstr "Afficher les barres d'outils" msgid "Window|Mixer" msgstr "Console de mixage" +#: ardour_ui_ed.cc:199 meterbridge.cc:230 meterbridge.cc:236 +msgid "Window|Meterbridge" +msgstr "Barre de vue-mètre" + #: ardour_ui_ed.cc:234 midi_tracer.cc:39 msgid "MIDI Tracer" msgstr "Activité MIDI" From e4514117190f398a0a672e25ecb48bc53cf9414b Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 26 Oct 2013 16:42:27 +0200 Subject: [PATCH 43/95] remove c99'ness from rsynth.c - should fix #5751 --- libs/plugins/reasonablesynth.lv2/lv2.c | 12 ++++++------ libs/plugins/reasonablesynth.lv2/rsynth.c | 24 ++++++++++++++--------- libs/plugins/reasonablesynth.lv2/wscript | 1 - 3 files changed, 21 insertions(+), 16 deletions(-) diff --git a/libs/plugins/reasonablesynth.lv2/lv2.c b/libs/plugins/reasonablesynth.lv2/lv2.c index 159f422c85..a32fe200ce 100644 --- a/libs/plugins/reasonablesynth.lv2/lv2.c +++ b/libs/plugins/reasonablesynth.lv2/lv2.c @@ -25,7 +25,7 @@ /* LV2 */ #include "lv2/lv2plug.in/ns/lv2core/lv2.h" -#include "lv2/lv2plug.in/ns/ext/atom/util.h" +#include "lv2/lv2plug.in/ns/ext/atom/atom.h" #include "lv2/lv2plug.in/ns/ext/urid/urid.h" #include "lv2/lv2plug.in/ns/ext/midi/midi.h" @@ -35,7 +35,7 @@ static void * synth_alloc (void); static void synth_init (void *, double rate); static void synth_free (void *); -static void synth_parse_midi (void *, uint8_t *data, size_t size); +static void synth_parse_midi (void *, const uint8_t *data, const size_t size); static uint32_t synth_sound (void *, uint32_t written, uint32_t nframes, float **out); #include "rsynth.c" @@ -131,8 +131,8 @@ run(LV2_Handle handle, uint32_t n_samples) /* Process incoming MIDI events */ if (self->midiin) { - LV2_Atom_Event* ev = lv2_atom_sequence_begin(&(self->midiin)->body); - while(!lv2_atom_sequence_is_end(&(self->midiin)->body, (self->midiin)->atom.size, ev)) { + LV2_Atom_Event const* ev = (LV2_Atom_Event const*) ((&(self->midiin)->body) + 1); // lv2_atom_sequence_begin + while( (const uint8_t*)ev < ((const uint8_t*) &(self->midiin)->body + (self->midiin)->atom.size) ) { if (ev->body.type == self->midi_MidiEvent) { if (written + BUFFER_SIZE_SAMPLES < ev->time.frames && ev->time.frames < n_samples) { @@ -140,9 +140,9 @@ run(LV2_Handle handle, uint32_t n_samples) written = synth_sound(self->synth, written, ev->time.frames, audio); } /* send midi message to synth */ - synth_parse_midi(self->synth, (uint8_t*)(ev+1), ev->body.size); + synth_parse_midi(self->synth, (const uint8_t*)(ev+1), ev->body.size); } - ev = lv2_atom_sequence_next(ev); + ev = (LV2_Atom_Event const*)((const uint8_t*)ev + sizeof(LV2_Atom_Event) + ((ev->body.size + 7) & ~7)); } } diff --git a/libs/plugins/reasonablesynth.lv2/rsynth.c b/libs/plugins/reasonablesynth.lv2/rsynth.c index b89f0fb45f..c876c5b067 100644 --- a/libs/plugins/reasonablesynth.lv2/rsynth.c +++ b/libs/plugins/reasonablesynth.lv2/rsynth.c @@ -175,9 +175,10 @@ static void synthesize_sineP (RSSynthChannel* sc, const uint8_t note, const float vol, const float fq, const size_t n_samples, float* left, float* right) { + size_t i; float phase = sc->phase[note]; - for (size_t i=0; i < n_samples; ++i) { + for (i=0; i < n_samples; ++i) { float env = adsr_env(sc, note); if (sc->adsr_cnt[note] == 0) break; const float amp = vol * env; @@ -272,9 +273,11 @@ static void synth_fragment (void *synth, const size_t n_samples, float *left, fl memset (left, 0, n_samples * sizeof(float)); memset (right, 0, n_samples * sizeof(float)); uint8_t keycomp = 0; + int c,k; + size_t i; - for (int c=0; c < 16; ++c) { - for (int k=0; k < 128; ++k) { + for (c=0; c < 16; ++c) { + for (k=0; k < 128; ++k) { if (rs->sc[c].miditable[k] == 0) continue; process_key(synth, c, k, n_samples, left, right); } @@ -286,7 +289,7 @@ static void synth_fragment (void *synth, const size_t n_samples, float *left, fl if (kctgt < .5) kctgt = .5; if (kctgt > 1.0) kctgt = 1.0; const float _w = rs->kcfilt; - for (unsigned int i=0; i < n_samples; ++i) { + for (i=0; i < n_samples; ++i) { rs->kcgain += _w * (kctgt - rs->kcgain); left[i] *= rs->kcgain; right[i] *= rs->kcgain; @@ -296,7 +299,8 @@ static void synth_fragment (void *synth, const size_t n_samples, float *left, fl } static void synth_reset_channel(RSSynthChannel* sc) { - for (int k=0; k < 128; ++k) { + int k; + for (k=0; k < 128; ++k) { sc->adsr_cnt[k] = 0; sc->adsr_amp[k] = 0; sc->phase[k] = -10; @@ -307,7 +311,8 @@ static void synth_reset_channel(RSSynthChannel* sc) { static void synth_reset(void *synth) { RSSynthesizer* rs = (RSSynthesizer*)synth; - for (int c=0; c < 16; ++c) { + int c; + for (c=0; c < 16; ++c) { synth_reset_channel(&(rs->sc[c])); } rs->kcgain = 0; @@ -407,7 +412,7 @@ static uint32_t synth_sound (void *synth, uint32_t written, const uint32_t nfram * @param data 8bit midi message * @param size number of bytes in the midi-message */ -static void synth_parse_midi(void *synth, uint8_t *data, size_t size) { +static void synth_parse_midi(void *synth, const uint8_t *data, const size_t size) { if (size < 2 || size > 3) return; // All messages need to be 3 bytes; except program-changes: 2bytes. if (size == 2 && (data[0] & 0xf0) != 0xC0) return; @@ -454,14 +459,15 @@ static void synth_init(void *synth, double rate) { rs->rate = rate; rs->boffset = BUFFER_SIZE_SAMPLES; const float tuning = 440; - for (int k=0; k < 128; k++) { + int c,k; + for (k=0; k < 128; k++) { rs->freqs[k] = (2.0 * tuning / 32.0f) * powf(2, (k - 9.0) / 12.0) / rate; assert(rs->freqs[k] < M_PI/2); // otherwise spatialization may phase out.. } rs->kcfilt = 12.0 / rate; synth_reset(synth); - for (int c=0; c < 16; c++) { + for (c=0; c < 16; c++) { synth_load(&rs->sc[c], rate, &synthesize_sineP, &piano_adsr); } } diff --git a/libs/plugins/reasonablesynth.lv2/wscript b/libs/plugins/reasonablesynth.lv2/wscript index 37a11a4228..db0bf0af8a 100644 --- a/libs/plugins/reasonablesynth.lv2/wscript +++ b/libs/plugins/reasonablesynth.lv2/wscript @@ -15,7 +15,6 @@ def options(opt): def configure(conf): conf.load('compiler_c') autowaf.configure(conf) - autowaf.set_c99_mode(conf) if Options.options.lv2: autowaf.check_pkg(conf, 'lv2', atleast_version='1.0.0', uselib_store='LV2_1_0_0') From dcd610323138882a350bae4334630542b46a5869 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 26 Oct 2013 17:33:07 +0200 Subject: [PATCH 44/95] make reasonable synth a bit more piano-like. (overtone + decay time) --- libs/plugins/reasonablesynth.lv2/rsynth.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/plugins/reasonablesynth.lv2/rsynth.c b/libs/plugins/reasonablesynth.lv2/rsynth.c index c876c5b067..ff88d58b64 100644 --- a/libs/plugins/reasonablesynth.lv2/rsynth.c +++ b/libs/plugins/reasonablesynth.lv2/rsynth.c @@ -189,7 +189,7 @@ static void synthesize_sineP (RSSynthChannel* sc, left[i] += .080 * amp * sinf(2.0 * M_PI * phase * 4.0); //left[i] -= .007 * amp * sinf(2.0 * M_PI * phase * 5.0); //left[i] += .010 * amp * sinf(2.0 * M_PI * phase * 6.0); - //left[i] += .020 * amp * sinf(2.0 * M_PI * phase * 7.0); + left[i] += .020 * amp * sinf(2.0 * M_PI * phase * 7.0); phase += fq; right[i] += amp * sinf(2.0 * M_PI * phase); right[i] += .300 * amp * sinf(2.0 * M_PI * phase * 2.0); @@ -197,13 +197,13 @@ static void synthesize_sineP (RSSynthChannel* sc, right[i] -= .080 * amp * sinf(2.0 * M_PI * phase * 4.0); //right[i] += .007 * amp * sinf(2.0 * M_PI * phase * 5.0); //right[i] += .010 * amp * sinf(2.0 * M_PI * phase * 6.0); - //right[i] -= .020 * amp * sinf(2.0 * M_PI * phase * 7.0); + right[i] -= .020 * amp * sinf(2.0 * M_PI * phase * 7.0); if (phase > 1.0) phase -= 2.0; } sc->phase[note] = phase; } -static const ADSRcfg piano_adsr = {{ 5, 1300, 100}, { 1.0, 0.0}, {0,0,0}}; +static const ADSRcfg piano_adsr = {{ 5, 800, 100}, { 1.0, 0.0}, {0,0,0}}; /*****************************************************************************/ From caa7c3b579c82d1b075b94d35f4e5bef7301b7c1 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 27 Oct 2013 09:51:08 +0100 Subject: [PATCH 45/95] mark some unused variables -- fewer compiler warnings --- libs/plugins/reasonablesynth.lv2/lv2.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/plugins/reasonablesynth.lv2/lv2.c b/libs/plugins/reasonablesynth.lv2/lv2.c index a32fe200ce..d6bc654ff4 100644 --- a/libs/plugins/reasonablesynth.lv2/lv2.c +++ b/libs/plugins/reasonablesynth.lv2/lv2.c @@ -66,6 +66,9 @@ instantiate(const LV2_Descriptor* descriptor, const char* bundle_path, const LV2_Feature* const* features) { + (void) descriptor; /* unused variable */ + (void) bundle_path; /* unused variable */ + if (rate < 8000) { fprintf(stderr, "RSynth.lv2 error: unsupported sample-rate (must be > 8k)\n"); return NULL; @@ -161,6 +164,7 @@ cleanup(LV2_Handle handle) static const void* extension_data(const char* uri) { + (void) uri; /* unused variable */ return NULL; } From be6d6231fbe56875815c81999e1fc41db0e21a23 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 27 Oct 2013 09:52:46 +0100 Subject: [PATCH 46/95] expand tabs in reaonablesynth code --- libs/plugins/reasonablesynth.lv2/lv2.c | 16 ++++++------- libs/plugins/reasonablesynth.lv2/rsynth.c | 28 +++++++++++------------ 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/libs/plugins/reasonablesynth.lv2/lv2.c b/libs/plugins/reasonablesynth.lv2/lv2.c index d6bc654ff4..ce3f5c16f5 100644 --- a/libs/plugins/reasonablesynth.lv2/lv2.c +++ b/libs/plugins/reasonablesynth.lv2/lv2.c @@ -137,13 +137,13 @@ run(LV2_Handle handle, uint32_t n_samples) LV2_Atom_Event const* ev = (LV2_Atom_Event const*) ((&(self->midiin)->body) + 1); // lv2_atom_sequence_begin while( (const uint8_t*)ev < ((const uint8_t*) &(self->midiin)->body + (self->midiin)->atom.size) ) { if (ev->body.type == self->midi_MidiEvent) { - if (written + BUFFER_SIZE_SAMPLES < ev->time.frames - && ev->time.frames < n_samples) { - /* first synthesize sound up until the message timestamp */ - written = synth_sound(self->synth, written, ev->time.frames, audio); - } - /* send midi message to synth */ - synth_parse_midi(self->synth, (const uint8_t*)(ev+1), ev->body.size); + if (written + BUFFER_SIZE_SAMPLES < ev->time.frames + && ev->time.frames < n_samples) { + /* first synthesize sound up until the message timestamp */ + written = synth_sound(self->synth, written, ev->time.frames, audio); + } + /* send midi message to synth */ + synth_parse_midi(self->synth, (const uint8_t*)(ev+1), ev->body.size); } ev = (LV2_Atom_Event const*)((const uint8_t*)ev + sizeof(LV2_Atom_Event) + ((ev->body.size + 7) & ~7)); } @@ -191,4 +191,4 @@ lv2_descriptor(uint32_t index) } } -/* vi:set ts=8 sts=2 sw=2: */ +/* vi:set ts=8 sts=2 sw=2 et: */ diff --git a/libs/plugins/reasonablesynth.lv2/rsynth.c b/libs/plugins/reasonablesynth.lv2/rsynth.c index ff88d58b64..d2d5b3e905 100644 --- a/libs/plugins/reasonablesynth.lv2/rsynth.c +++ b/libs/plugins/reasonablesynth.lv2/rsynth.c @@ -240,8 +240,8 @@ static void process_key (void *synth, // note off if (sc->adsr_cnt[note] <= sc->adsr.off[1]) { if (sc->adsr_cnt[note] != sc->adsr.off[1]) { - // x-fade to release - sc->adsr_amp[note] = adsr_env(sc, note); + // x-fade to release + sc->adsr_amp[note] = adsr_env(sc, note); } sc->adsr_cnt[note] = sc->adsr.off[1] + 1; } @@ -337,31 +337,31 @@ static void synth_process_midi_event(void *synth, struct rmidi_event_t *ev) { switch(ev->type) { case NOTE_ON: if (rs->sc[ev->channel].miditable[ev->d.tone.note] <= 0) - rs->sc[ev->channel].miditable[ev->d.tone.note] = ev->d.tone.velocity; + rs->sc[ev->channel].miditable[ev->d.tone.note] = ev->d.tone.velocity; break; case NOTE_OFF: if (rs->sc[ev->channel].miditable[ev->d.tone.note] > 0) - rs->sc[ev->channel].miditable[ev->d.tone.note] *= -1.0; + rs->sc[ev->channel].miditable[ev->d.tone.note] *= -1.0; break; case PROGRAM_CHANGE: break; case CONTROL_CHANGE: if (ev->d.control.param == 0x00 || ev->d.control.param == 0x20) { - /* 0x00 and 0x20 are used for BANK select */ - break; + /* 0x00 and 0x20 are used for BANK select */ + break; } else if (ev->d.control.param == 121) { - /* reset all controllers */ - break; + /* reset all controllers */ + break; } else if (ev->d.control.param == 120 || ev->d.control.param == 123) { - /* Midi panic: 120: all sound off, 123: all notes off*/ - synth_reset_channel(&(rs->sc[ev->channel])); - break; + /* Midi panic: 120: all sound off, 123: all notes off*/ + synth_reset_channel(&(rs->sc[ev->channel])); + break; } else if (ev->d.control.param >= 120) { - /* params 122-127 are reserved - skip them. */ - break; + /* params 122-127 are reserved - skip them. */ + break; } break; default: @@ -493,4 +493,4 @@ static void * synth_alloc(void) { static void synth_free(void *synth) { free(synth); } -/* vi:set ts=8 sts=2 sw=2: */ +/* vi:set ts=8 sts=2 sw=2 et: */ From 2cad99bf39348222ef554c5134c7950e49afabb5 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 27 Oct 2013 09:56:07 +0100 Subject: [PATCH 47/95] add notes about inlined lv2 atom/util.h functions --- libs/plugins/reasonablesynth.lv2/lv2.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/libs/plugins/reasonablesynth.lv2/lv2.c b/libs/plugins/reasonablesynth.lv2/lv2.c index ce3f5c16f5..1fcfba868e 100644 --- a/libs/plugins/reasonablesynth.lv2/lv2.c +++ b/libs/plugins/reasonablesynth.lv2/lv2.c @@ -134,8 +134,11 @@ run(LV2_Handle handle, uint32_t n_samples) /* Process incoming MIDI events */ if (self->midiin) { - LV2_Atom_Event const* ev = (LV2_Atom_Event const*) ((&(self->midiin)->body) + 1); // lv2_atom_sequence_begin - while( (const uint8_t*)ev < ((const uint8_t*) &(self->midiin)->body + (self->midiin)->atom.size) ) { + LV2_Atom_Event const* ev = (LV2_Atom_Event const*)((&(self->midiin)->body) + 1); // lv2_atom_sequence_begin + while( // !lv2_atom_sequence_is_end + (const uint8_t*)ev < ((const uint8_t*) &(self->midiin)->body + (self->midiin)->atom.size) + ) + { if (ev->body.type == self->midi_MidiEvent) { if (written + BUFFER_SIZE_SAMPLES < ev->time.frames && ev->time.frames < n_samples) { @@ -145,7 +148,8 @@ run(LV2_Handle handle, uint32_t n_samples) /* send midi message to synth */ synth_parse_midi(self->synth, (const uint8_t*)(ev+1), ev->body.size); } - ev = (LV2_Atom_Event const*)((const uint8_t*)ev + sizeof(LV2_Atom_Event) + ((ev->body.size + 7) & ~7)); + ev = (LV2_Atom_Event const*) // lv2_atom_sequence_next() + ((const uint8_t*)ev + sizeof(LV2_Atom_Event) + ((ev->body.size + 7) & ~7)); } } From 17dc72d08e048493b7201ddaa551a93c204a9db1 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 27 Oct 2013 17:03:49 +0100 Subject: [PATCH 48/95] silence warning for ancient libc users&devs :) string.h 'index' is a global declaration marked legacy in 2001 and removed in posix.1-2008 --- libs/plugins/reasonablesynth.lv2/lv2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/plugins/reasonablesynth.lv2/lv2.c b/libs/plugins/reasonablesynth.lv2/lv2.c index 1fcfba868e..b29590c78a 100644 --- a/libs/plugins/reasonablesynth.lv2/lv2.c +++ b/libs/plugins/reasonablesynth.lv2/lv2.c @@ -185,9 +185,9 @@ static const LV2_Descriptor descriptor = { LV2_SYMBOL_EXPORT const LV2_Descriptor* -lv2_descriptor(uint32_t index) +lv2_descriptor(uint32_t idx) { - switch (index) { + switch (idx) { case 0: return &descriptor; default: From 632f5d523169e1d41e6aad2bb7d850efc369bbe5 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 27 Oct 2013 20:32:33 -0400 Subject: [PATCH 49/95] add error checking and return from attempted NSM-based initialization --- gtk2_ardour/ardour_ui.cc | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index 0261266566..5dbdc32961 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -742,19 +742,33 @@ ARDOUR_UI::starting () for ( i = 0; i < 5000; ++i) { nsm->check (); usleep (i); - if (nsm->is_active()) + if (nsm->is_active()) { break; + } + } + if (i == 5000) { + error << _("NSM server did not announce itself") << endmsg; + return -1; } // wait for open command from nsm server for ( i = 0; i < 5000; ++i) { nsm->check (); usleep (1000); - if (nsm->client_id ()) + if (nsm->client_id ()) { break; + } + } + + if (i == 5000) { + error << _("NSM: no client ID provided") << endmsg; + return -1; } if (_session && nsm) { _session->set_nsm_state( nsm->is_active() ); + } else { + error << _("NSM: no session created") << endmsg; + return -1; } // nsm requires these actions disabled @@ -773,10 +787,11 @@ ARDOUR_UI::starting () } } - } - else { + } else { delete nsm; nsm = 0; + error << _("NSM: initialization failed") << endmsg; + return -1; } } else { From 5eaafaa3af5e2ab0cbcf4e4d947351fd133e381f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 27 Oct 2013 20:48:48 -0400 Subject: [PATCH 50/95] further fixes for NSM-based startup Most, move initialization of Audio/MIDI setup window before NSM initialization, to make sure it is available if/when needed --- gtk2_ardour/ardour_ui.cc | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index 5dbdc32961..127927e80a 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -718,7 +718,7 @@ int ARDOUR_UI::starting () { Application* app = Application::instance (); - char *nsm_url; + const char *nsm_url; bool brand_new_user = ArdourStartup::required (); app->ShouldQuit.connect (sigc::mem_fun (*this, &ARDOUR_UI::queue_finish)); @@ -730,9 +730,17 @@ ARDOUR_UI::starting () app->ready (); - nsm_url = getenv ("NSM_URL"); + /* we need to create this early because it may need to set the + * audio backend end up. + */ + + try { + audio_midi_setup.get (true); + } catch (...) { + return -1; + } - if (nsm_url) { + if ((nsm_url = g_getenv ("NSM_URL")) != 0) { nsm = new NSM_Client; if (!nsm->init (nsm_url)) { nsm->announce (PROGRAM_NAME, ":dirty:", "ardour3"); @@ -809,16 +817,6 @@ ARDOUR_UI::starting () } } - /* we need to create this early because it may need to set the - * audio backend end up. - */ - - try { - audio_midi_setup.get (true); - } catch (...) { - return -1; - } - /* go get a session */ const bool new_session_required = (ARDOUR_COMMAND_LINE::new_session || brand_new_user); From 1c2de76991fea2859cbca00e472a66704d2ef292 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 27 Oct 2013 20:55:06 -0400 Subject: [PATCH 51/95] give those who insist on seeing the mixer window and/or editor mixer on stupidly small screens the chance to do so --- gtk2_ardour/ardour_ui_dialogs.cc | 2 +- gtk2_ardour/editor_mixer.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/ardour_ui_dialogs.cc b/gtk2_ardour/ardour_ui_dialogs.cc index db9e420206..2ad4cd3c92 100644 --- a/gtk2_ardour/ardour_ui_dialogs.cc +++ b/gtk2_ardour/ardour_ui_dialogs.cc @@ -335,7 +335,7 @@ ARDOUR_UI::goto_mixer_window () screen = Gdk::Screen::get_default(); } - if (screen && screen->get_height() < 700) { + if (g_getenv ("ARDOUR_LOVES_STUPID_TINY_SCREENS") == 0 && screen && screen->get_height() < 700) { Gtk::MessageDialog msg (_("This screen is not tall enough to display the mixer window")); msg.run (); return; diff --git a/gtk2_ardour/editor_mixer.cc b/gtk2_ardour/editor_mixer.cc index f63e396ba7..37654913eb 100644 --- a/gtk2_ardour/editor_mixer.cc +++ b/gtk2_ardour/editor_mixer.cc @@ -86,7 +86,7 @@ Editor::show_editor_mixer (bool yn) screen = Gdk::Screen::get_default(); } - if (screen && screen->get_height() < 700) { + if (g_getenv ("ARDOUR_LOVES_STUPID_TINY_SCREENS") == 0 && screen && screen->get_height() < 700) { Gtk::MessageDialog msg (_("This screen is not tall enough to display the editor mixer")); msg.run (); return; From 85fd343145c3ce1e2e5804c75aeccd03cf2c38a3 Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Sat, 26 Oct 2013 16:22:05 +0200 Subject: [PATCH 52/95] gtk2_ardour: link fftw3f directly This is needed to be able to unbundle some libraries. --- gtk2_ardour/wscript | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/wscript b/gtk2_ardour/wscript index 311ed6ca03..ddafbb9e3a 100644 --- a/gtk2_ardour/wscript +++ b/gtk2_ardour/wscript @@ -273,6 +273,8 @@ def configure(conf): # TODO: Insert a sanity check for on OS X to ensure CoreAudio is present + autowaf.check_pkg(conf, 'fftw3f', uselib_store='FFTW3F', + mandatory=True) autowaf.check_pkg(conf, 'flac', uselib_store='FLAC', atleast_version='1.2.1') autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD', @@ -411,7 +413,7 @@ def build(bld): obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3') obj.uselib = 'UUID FLAC FONTCONFIG GLIBMM GTHREAD GTK OGG ALSA CURL DL' - obj.uselib += ' GTKMM GNOMECANVASMM GNOMECANVAS ' + obj.uselib += ' GTKMM GNOMECANVASMM GNOMECANVAS FFTW3F' obj.uselib += ' AUDIOUNITS OSX GTKOSX LO ' obj.use = [ 'libpbd', 'libmidipp', From 5f00d2f3a7afaccaeb9f3057d55d5e1e59c54e47 Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Sat, 26 Oct 2013 16:58:14 +0200 Subject: [PATCH 53/95] allow linking unbundled versions of some libraries (libltc, rubberband, taglib, vamp-sdk) --- gtk2_ardour/editor_timefx.cc | 2 +- gtk2_ardour/time_fx_dialog.cc | 2 +- gtk2_ardour/wscript | 8 ++++-- libs/ardour/ardour/audioanalyser.h | 2 +- libs/ardour/ardour/audiofile_tagger.h | 6 ++-- libs/ardour/ardour/session.h | 3 +- libs/ardour/ardour/slave.h | 2 +- libs/ardour/audioanalyser.cc | 2 +- libs/ardour/audiofile_tagger.cc | 12 ++++---- libs/ardour/rb_effect.cc | 3 +- libs/ardour/wscript | 31 +++++++++++++++------ libs/libltc/wscript | 11 ++++++-- libs/rubberband/wscript | 10 +++++-- libs/taglib/wscript | 10 +++++-- libs/vamp-plugins/AmplitudeFollower.h | 2 +- libs/vamp-plugins/Onset.h | 2 +- libs/vamp-plugins/OnsetDetect.h | 2 +- libs/vamp-plugins/PercussionOnsetDetector.h | 2 +- libs/vamp-plugins/SpectralCentroid.h | 2 +- libs/vamp-plugins/ZeroCrossing.h | 2 +- libs/vamp-plugins/plugins.cpp | 4 +-- libs/vamp-sdk/wscript | 16 +++++++---- wscript | 17 ++++++++--- 23 files changed, 102 insertions(+), 51 deletions(-) diff --git a/gtk2_ardour/editor_timefx.cc b/gtk2_ardour/editor_timefx.cc index 2f0b09ed17..06823fda19 100644 --- a/gtk2_ardour/editor_timefx.cc +++ b/gtk2_ardour/editor_timefx.cc @@ -45,7 +45,7 @@ #include "ardour/stretch.h" #ifdef USE_RUBBERBAND -#include "rubberband/RubberBandStretcher.h" +#include using namespace RubberBand; #endif diff --git a/gtk2_ardour/time_fx_dialog.cc b/gtk2_ardour/time_fx_dialog.cc index 15d46f10ad..5d8bf57a3b 100644 --- a/gtk2_ardour/time_fx_dialog.cc +++ b/gtk2_ardour/time_fx_dialog.cc @@ -37,7 +37,7 @@ #include "region_selection.h" #ifdef USE_RUBBERBAND -#include "rubberband/RubberBandStretcher.h" +#include using namespace RubberBand; #endif diff --git a/gtk2_ardour/wscript b/gtk2_ardour/wscript index ddafbb9e3a..3ca90744c7 100644 --- a/gtk2_ardour/wscript +++ b/gtk2_ardour/wscript @@ -417,11 +417,13 @@ def build(bld): obj.uselib += ' AUDIOUNITS OSX GTKOSX LO ' obj.use = [ 'libpbd', 'libmidipp', - 'libtaglib', 'ardour', 'libardour_cp', - 'libgtkmm2ext', - 'libtaglib' ] + 'libgtkmm2ext'] + if bld.is_defined('USE_EXTERNAL_LIBS'): + obj.uselib += ' TAGLIB' + else: + obj.use.append('libtaglib') if sys.platform == 'darwin': obj.use += ' libappleutility' obj.defines = [ diff --git a/libs/ardour/ardour/audioanalyser.h b/libs/ardour/ardour/audioanalyser.h index 035390e99f..f525cbd99f 100644 --- a/libs/ardour/ardour/audioanalyser.h +++ b/libs/ardour/ardour/audioanalyser.h @@ -25,7 +25,7 @@ #include #include #include -#include "vamp-sdk/Plugin.h" +#include #include "ardour/types.h" namespace ARDOUR { diff --git a/libs/ardour/ardour/audiofile_tagger.h b/libs/ardour/ardour/audiofile_tagger.h index 0519e2233c..656626a5f3 100644 --- a/libs/ardour/ardour/audiofile_tagger.h +++ b/libs/ardour/ardour/audiofile_tagger.h @@ -23,9 +23,9 @@ #include -#include "taglib/tag.h" -#include "taglib/taglib.h" -#include "taglib/xiphcomment.h" +#include +#include +#include namespace ARDOUR { diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h index 75a5dce8ef..02e883ed11 100644 --- a/libs/ardour/ardour/session.h +++ b/libs/ardour/ardour/session.h @@ -36,6 +36,8 @@ #include +#include + #include "pbd/error.h" #include "pbd/event_loop.h" #include "pbd/rcu.h" @@ -48,7 +50,6 @@ #include "midi++/types.h" #include "timecode/time.h" -#include "ltc/ltc.h" #include "ardour/ardour.h" #include "ardour/chan_count.h" diff --git a/libs/ardour/ardour/slave.h b/libs/ardour/ardour/slave.h index a0b7b878e4..ca3f618af1 100644 --- a/libs/ardour/ardour/slave.h +++ b/libs/ardour/ardour/slave.h @@ -25,11 +25,11 @@ #include #include +#include #include "pbd/signals.h" #include "timecode/time.h" -#include "ltc/ltc.h" #include "ardour/types.h" #include "midi++/parser.h" diff --git a/libs/ardour/audioanalyser.cc b/libs/ardour/audioanalyser.cc index cf8329ae9c..fd30744a74 100644 --- a/libs/ardour/audioanalyser.cc +++ b/libs/ardour/audioanalyser.cc @@ -19,7 +19,7 @@ #include -#include "vamp-hostsdk/PluginLoader.h" +#include #include #include diff --git a/libs/ardour/audiofile_tagger.cc b/libs/ardour/audiofile_tagger.cc index 57650860ee..61a05d49ce 100644 --- a/libs/ardour/audiofile_tagger.cc +++ b/libs/ardour/audiofile_tagger.cc @@ -24,12 +24,12 @@ #include "pbd/convert.h" -#include "taglib/fileref.h" -#include "taglib/flacfile.h" -#include "taglib/oggfile.h" -#include "taglib/tag.h" -#include "taglib/taglib.h" -#include "taglib/xiphcomment.h" +#include +#include +#include +#include +#include +#include /* Convert string to TagLib::String */ #define TL_STR(string) TagLib::String ((string).c_str(), TagLib::String::UTF8) diff --git a/libs/ardour/rb_effect.cc b/libs/ardour/rb_effect.cc index a5d47d2668..804b79f87d 100644 --- a/libs/ardour/rb_effect.cc +++ b/libs/ardour/rb_effect.cc @@ -20,8 +20,9 @@ #include #include +#include + #include "pbd/error.h" -#include "rubberband/RubberBandStretcher.h" #include "ardour/audioregion.h" #include "ardour/audiosource.h" diff --git a/libs/ardour/wscript b/libs/ardour/wscript index 4d569837bb..7975599d89 100644 --- a/libs/ardour/wscript +++ b/libs/ardour/wscript @@ -333,9 +333,14 @@ def build(bld): obj.uselib = ['GLIBMM','GTHREAD','AUBIO','SIGCPP','XML','UUID', 'SNDFILE','SAMPLERATE','LRDF','AUDIOUNITS', 'OSX','BOOST','CURL','DL'] - obj.use = ['libpbd','libmidipp','libevoral','libvamphost', - 'libvampplugin','libtaglib','librubberband', + obj.use = ['libpbd','libmidipp','libevoral','libvampplugin', 'libaudiographer','libltc','libtimecode'] + if bld.is_defined('USE_EXTERNAL_LIBS'): + obj.uselib.extend(['RUBBERBAND', 'TAGLIB', 'LIBLTC', 'VAMPSDK', + 'VAMPHOSTSDK']) + else: + obj.use.extend(['libltc', 'librubberband', 'libtaglib', 'libvamphost']) + obj.vnum = LIBARDOUR_LIB_VERSION obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3') obj.defines = [ @@ -400,9 +405,13 @@ def build(bld): 'test/test_common.cc', 'test/dummy_lxvst.cc', 'test/audio_region_test.cc', 'test/test_util.cc'] testcommon.uselib = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD', 'SAMPLERATE','XML','LRDF','COREAUDIO'] - testcommon.use = ['libpbd','libmidipp','libevoral','libvamphost', - 'libvampplugin','libtaglib','librubberband', - 'libaudiographer','libltc','ardour'] + testcommon.use = ['libpbd','libmidipp','libevoral', + 'libvampplugin','libaudiographer','ardour'] + if bld.is_defined('USE_EXTERNAL_LIBS'): + testcommon.uselib.extend(['RUBBERBAND', 'TAGLIB', 'LIBLTC', 'VAMPSDK', + 'VAMPHOSTSDK']) + else: + testcommon.use.extend(['libltc', 'librubberband', 'libtaglib', 'libvamphost']) testcommon.defines = [ 'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"', 'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"', @@ -538,9 +547,15 @@ def create_ardour_test_program(bld, includes, name, target, sources): testobj.source = sources testobj.uselib = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD', 'SAMPLERATE','XML','LRDF','COREAUDIO'] - testobj.use = ['libpbd','libmidipp','libevoral','libvamphost', - 'libvampplugin','libtaglib','librubberband', - 'libaudiographer','libltc','ardour','testcommon'] + testobj.use = ['libpbd','libmidipp','libevoral','libvampplugin', + 'libaudiographer','ardour','testcommon'] + if bld.is_defined('USE_EXTERNAL_LIBS'): + testcommon.uselib.extend(['RUBBERBAND', 'TAGLIB', 'LIBLTC', 'VAMPSDK', + 'VAMPHOSTSDK']) + else: + testcommon.use.extend(['libltc', 'librubberband', 'libtaglib', + 'libvamphost']) + testobj.name = name testobj.target = target # not sure about install path diff --git a/libs/libltc/wscript b/libs/libltc/wscript index 9be750ee55..88f1c2f570 100644 --- a/libs/libltc/wscript +++ b/libs/libltc/wscript @@ -29,10 +29,15 @@ def options(opt): autowaf.set_options(opt) def configure(conf): - conf.load('compiler_c') - autowaf.configure(conf) + if conf.is_defined('USE_EXTERNAL_LIBS'): + autowaf.check_pkg(conf, 'ltc', uselib_store='LIBLTC', atleast_version=LIBLTC_LIB_VERSION, mandatory=True) + else: + conf.load('compiler_c') + autowaf.configure(conf) def build(bld): + if bld.is_defined('USE_EXTERNAL_LIBS'): + return obj = bld(features = 'c cshlib') obj.source = ''' ltc.c @@ -41,7 +46,7 @@ def build(bld): decoder.c ''' - obj.export_includes = ['.'] + obj.export_includes = ['./ltc'] obj.includes = ['.'] obj.name = 'libltc' obj.target = 'ltc' diff --git a/libs/rubberband/wscript b/libs/rubberband/wscript index 7e9ca0250c..e21492ebf4 100644 --- a/libs/rubberband/wscript +++ b/libs/rubberband/wscript @@ -24,10 +24,16 @@ def options(opt): autowaf.set_options(opt) def configure(conf): - conf.load('compiler_cxx') - autowaf.configure(conf) + if conf.is_defined('USE_EXTERNAL_LIBS'): + autowaf.check_pkg(conf, 'rubberband', uselib_store='RUBBERBAND', atleast_version='1.0', mandatory=True) + else: + conf.load('compiler_cxx') + autowaf.configure(conf) def build(bld): + if bld.is_defined('USE_EXTERNAL_LIBS'): + return + # Library obj = bld(features = 'cxx cxxshlib') prefix = 'libs/rubberband/' diff --git a/libs/taglib/wscript b/libs/taglib/wscript index a6994d6391..8e2805c709 100644 --- a/libs/taglib/wscript +++ b/libs/taglib/wscript @@ -24,10 +24,16 @@ def options(opt): autowaf.set_options(opt) def configure(conf): - conf.load('compiler_cxx') - autowaf.configure(conf) + if conf.is_defined('USE_EXTERNAL_LIBS'): + autowaf.check_pkg(conf, 'taglib', uselib_store='TAGLIB', atleast_version="1.4", mandatory=True) + else: + conf.load('compiler_cxx') + autowaf.configure(conf) def build(bld): + if bld.is_defined('USE_EXTERNAL_LIBS'): + return + # Library obj = bld(features = 'cxx cxxshlib') sources = bld.path.ant_glob('taglib/*.cpp') diff --git a/libs/vamp-plugins/AmplitudeFollower.h b/libs/vamp-plugins/AmplitudeFollower.h index 6c3426e324..3aa91f51f7 100644 --- a/libs/vamp-plugins/AmplitudeFollower.h +++ b/libs/vamp-plugins/AmplitudeFollower.h @@ -37,7 +37,7 @@ #ifndef _AMPLITUDE_FOLLOWER_PLUGIN_H_ #define _AMPLITUDE_FOLLOWER_PLUGIN_H_ -#include "vamp-sdk/Plugin.h" +#include /** * Example plugin implementing the SuperCollider amplitude follower diff --git a/libs/vamp-plugins/Onset.h b/libs/vamp-plugins/Onset.h index c858151b21..314e107308 100644 --- a/libs/vamp-plugins/Onset.h +++ b/libs/vamp-plugins/Onset.h @@ -17,7 +17,7 @@ #ifndef _ONSET_PLUGIN_H_ #define _ONSET_PLUGIN_H_ -#include "vamp-sdk/Plugin.h" +#include #include class Onset : public Vamp::Plugin diff --git a/libs/vamp-plugins/OnsetDetect.h b/libs/vamp-plugins/OnsetDetect.h index 3ef50afbb3..d244f66c2d 100644 --- a/libs/vamp-plugins/OnsetDetect.h +++ b/libs/vamp-plugins/OnsetDetect.h @@ -15,7 +15,7 @@ #ifndef _ONSET_DETECT_PLUGIN_H_ #define _ONSET_DETECT_PLUGIN_H_ -#include "vamp-sdk/Plugin.h" +#include class OnsetDetectorData; diff --git a/libs/vamp-plugins/PercussionOnsetDetector.h b/libs/vamp-plugins/PercussionOnsetDetector.h index d54c0cfa13..3cb094ebba 100644 --- a/libs/vamp-plugins/PercussionOnsetDetector.h +++ b/libs/vamp-plugins/PercussionOnsetDetector.h @@ -37,7 +37,7 @@ #ifndef _PERCUSSION_ONSET_DETECTOR_PLUGIN_H_ #define _PERCUSSION_ONSET_DETECTOR_PLUGIN_H_ -#include "vamp-sdk/Plugin.h" +#include /** * Example plugin that detects percussive events. diff --git a/libs/vamp-plugins/SpectralCentroid.h b/libs/vamp-plugins/SpectralCentroid.h index 02cc8d981d..8046338a4d 100644 --- a/libs/vamp-plugins/SpectralCentroid.h +++ b/libs/vamp-plugins/SpectralCentroid.h @@ -37,7 +37,7 @@ #ifndef _SPECTRAL_CENTROID_PLUGIN_H_ #define _SPECTRAL_CENTROID_PLUGIN_H_ -#include "vamp-sdk/Plugin.h" +#include /** * Example plugin that calculates the centre of gravity of the diff --git a/libs/vamp-plugins/ZeroCrossing.h b/libs/vamp-plugins/ZeroCrossing.h index ede2a74492..e6f81608db 100644 --- a/libs/vamp-plugins/ZeroCrossing.h +++ b/libs/vamp-plugins/ZeroCrossing.h @@ -37,7 +37,7 @@ #ifndef _ZERO_CROSSING_PLUGIN_H_ #define _ZERO_CROSSING_PLUGIN_H_ -#include "vamp-sdk/Plugin.h" +#include /** * Example plugin that calculates the positions and density of diff --git a/libs/vamp-plugins/plugins.cpp b/libs/vamp-plugins/plugins.cpp index 4a2523bc1d..6a04077882 100644 --- a/libs/vamp-plugins/plugins.cpp +++ b/libs/vamp-plugins/plugins.cpp @@ -38,8 +38,8 @@ #include "libvampplugins-config.h" #endif -#include "vamp/vamp.h" -#include "vamp-sdk/PluginAdapter.h" +#include +#include #include "ZeroCrossing.h" #include "SpectralCentroid.h" diff --git a/libs/vamp-sdk/wscript b/libs/vamp-sdk/wscript index aa4dfdc1da..e919640c40 100644 --- a/libs/vamp-sdk/wscript +++ b/libs/vamp-sdk/wscript @@ -23,13 +23,19 @@ def options(opt): autowaf.set_options(opt) def configure(conf): - conf.load('compiler_cxx') - autowaf.configure(conf) - autowaf.check_pkg(conf, 'fftw3', uselib_store='FFTW3', mandatory=True) - autowaf.check_pkg(conf, 'fftw3f', uselib_store='FFTW3F', mandatory=True) - conf.env.append_value('CXXFLAGS', '-DHAVE_FFTW3') + if conf.is_defined('USE_EXTERNAL_LIBS'): + autowaf.check_pkg(conf, 'vamp-sdk', uselib_store='VAMPSDK', mandatory=True) + autowaf.check_pkg(conf, 'vamp-hostsdk', uselib_store='VAMPHOSTSDK', mandatory=True) + else: + conf.load('compiler_cxx') + autowaf.configure(conf) + autowaf.check_pkg(conf, 'fftw3', uselib_store='FFTW3', mandatory=True) + autowaf.check_pkg(conf, 'fftw3f', uselib_store='FFTW3F', mandatory=True) + conf.env.append_value('CXXFLAGS', '-DHAVE_FFTW3') def build(bld): + if bld.is_defined('USE_EXTERNAL_LIBS'): + return # Host Library obj = bld(features = 'cxx cxxshlib') obj.source = ''' diff --git a/wscript b/wscript index 3d016326d5..04d6373740 100644 --- a/wscript +++ b/wscript @@ -428,6 +428,8 @@ def options(opt): help='Build internal libs as shared libraries') opt.add_option('--internal-static-libs', action='store_false', dest='internal_shared_libs', help='Build internal libs as static libraries') + opt.add_option('--use-external-libs', action='store_true', default=False, dest='use_external_libs', + help='Use external/system versions of some bundled libraries') opt.add_option('--lv2', action='store_true', default=True, dest='lv2', help='Compile with support for LV2 (if Lilv+Suil is available)') opt.add_option('--no-lv2', action='store_false', dest='lv2', @@ -600,6 +602,9 @@ def configure(conf): if Options.options.internal_shared_libs: conf.define('INTERNAL_SHARED_LIBS', 1) + if Options.options.use_external_libs: + conf.define('USE_EXTERNAL_LIBS', 1) + if Options.options.boost_include != '': conf.env.append_value('CXXFLAGS', '-I' + Options.options.boost_include) @@ -700,6 +705,7 @@ const char* const ardour_config_info = "\\n\\ write_config_text('Install prefix', conf.env['PREFIX']) write_config_text('Strict compiler flags', conf.env['STRICT']) write_config_text('Internal Shared Libraries', conf.is_defined('INTERNAL_SHARED_LIBS')) + write_config_text('Use External Libraries', conf.is_defined('USE_EXTERNAL_LIBS')) write_config_text('Architecture flags', opts.arch) write_config_text('Aubio', conf.is_defined('HAVE_AUBIO')) @@ -745,14 +751,17 @@ def build(bld): # add directories that contain only headers, to workaround an issue with waf bld.path.find_dir ('libs/evoral/evoral') - bld.path.find_dir ('libs/vamp-sdk/vamp-sdk') + if not bld.is_defined('USE_EXTERNAL_LIBS'): + bld.path.find_dir ('libs/vamp-sdk/vamp-sdk') bld.path.find_dir ('libs/surfaces/control_protocol/control_protocol') bld.path.find_dir ('libs/timecode/timecode') - bld.path.find_dir ('libs/libltc/ltc') - bld.path.find_dir ('libs/rubberband/rubberband') + if not bld.is_defined('USE_EXTERNAL_LIBS'): + bld.path.find_dir ('libs/libltc/ltc') + bld.path.find_dir ('libs/rubberband/rubberband') bld.path.find_dir ('libs/gtkmm2ext/gtkmm2ext') bld.path.find_dir ('libs/ardour/ardour') - bld.path.find_dir ('libs/taglib/taglib') + if not bld.is_defined('USE_EXTERNAL_LIBS'): + bld.path.find_dir ('libs/taglib/taglib') bld.path.find_dir ('libs/pbd/pbd') autowaf.set_recursive() From 85a277c6a38e888136e7924459a5ea95f8518525 Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Mon, 28 Oct 2013 09:32:37 +0100 Subject: [PATCH 54/95] allow overriding optimization flags completely If an optimization level ("-O") is present in the argument for --arch, do not prepend default optimization flags. --- wscript | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/wscript b/wscript index 3d016326d5..de83023783 100644 --- a/wscript +++ b/wscript @@ -303,13 +303,22 @@ def set_compiler_flags (conf,opt): # prepend boiler plate optimization flags that work on all architectures # - optimization_flags[:0] = [ - "-O3", - "-fomit-frame-pointer", - "-ffast-math", - "-fstrength-reduce", - "-pipe" - ] + optimization_flags[:0] = ["-pipe"] + + # don't prepend optimization flags if "-O" is present + prepend_opt_flags = True + for flag in optimization_flags: + if flag.startswith("-O"): + prepend_opt_flags = False + break + + if prepend_opt_flags: + optimization_flags[:0] = [ + "-O3", + "-fomit-frame-pointer", + "-ffast-math", + "-fstrength-reduce" + ] if opt.debug: conf.env.append_value('CFLAGS', debug_flags) From 7fec9910775f6ecb2ec15c145846086edf5a1df5 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 28 Oct 2013 09:46:59 -0400 Subject: [PATCH 55/95] fix thinko in declaration of ARDOUR::PortEngine::get_port_by_name() --- libs/ardour/ardour/port_engine.h | 5 +++-- libs/ardour/audioengine.cc | 4 ++-- libs/backends/jack/jack_audiobackend.h | 2 +- libs/backends/jack/jack_portengine.cc | 4 ++-- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/libs/ardour/ardour/port_engine.h b/libs/ardour/ardour/port_engine.h index 8c0ec9e754..68f8fe1232 100644 --- a/libs/ardour/ardour/port_engine.h +++ b/libs/ardour/ardour/port_engine.h @@ -117,10 +117,11 @@ class PortEngine { * does not exist, return an empty string. */ virtual std::string get_port_name (PortHandle) const = 0; + /** Return a reference to a port with the fullname @param name. Return - * a null pointer if no such port exists. + * an "empty" PortHandle (analogous to a null pointer) if no such port exists. */ - virtual PortHandle* get_port_by_name (const std::string&) const = 0; + virtual PortHandle get_port_by_name (const std::string&) const = 0; /** Find the set of ports whose names, types and flags match * specified values, place the names of each port into @param ports, diff --git a/libs/ardour/audioengine.cc b/libs/ardour/audioengine.cc index 45b8bbf757..7f4d3c2a1d 100644 --- a/libs/ardour/audioengine.cc +++ b/libs/ardour/audioengine.cc @@ -1065,8 +1065,8 @@ AudioEngine::start_latency_detection () /* find the ports we will connect to */ - PortEngine::PortHandle* out = pe.get_port_by_name (_latency_output_name); - PortEngine::PortHandle* in = pe.get_port_by_name (_latency_input_name); + PortEngine::PortHandle out = pe.get_port_by_name (_latency_output_name); + PortEngine::PortHandle in = pe.get_port_by_name (_latency_input_name); if (!out || !in) { stop (true); diff --git a/libs/backends/jack/jack_audiobackend.h b/libs/backends/jack/jack_audiobackend.h index c59ddb5c67..2c77e6112b 100644 --- a/libs/backends/jack/jack_audiobackend.h +++ b/libs/backends/jack/jack_audiobackend.h @@ -126,7 +126,7 @@ class JACKAudioBackend : public AudioBackend { int set_port_name (PortHandle, const std::string&); std::string get_port_name (PortHandle) const; - PortHandle* get_port_by_name (const std::string&) const; + PortHandle get_port_by_name (const std::string&) const; int get_ports (const std::string& port_name_pattern, DataType type, PortFlags flags, std::vector&) const; diff --git a/libs/backends/jack/jack_portengine.cc b/libs/backends/jack/jack_portengine.cc index 0d66f50448..1fe77fbb70 100644 --- a/libs/backends/jack/jack_portengine.cc +++ b/libs/backends/jack/jack_portengine.cc @@ -116,11 +116,11 @@ JACKAudioBackend::get_port_name (PortHandle port) const return jack_port_name ((jack_port_t*) port); } -PortEngine::PortHandle* +PortEngine::PortHandle JACKAudioBackend:: get_port_by_name (const std::string& name) const { GET_PRIVATE_JACK_POINTER_RET (_priv_jack, 0); - return (PortHandle*) jack_port_by_name (_priv_jack, name.c_str()); + return (PortHandle) jack_port_by_name (_priv_jack, name.c_str()); } void From f2300164d7a89c5e433d3293dfed4c1ab77f0553 Mon Sep 17 00:00:00 2001 From: nick_m Date: Tue, 29 Oct 2013 02:04:26 +1100 Subject: [PATCH 56/95] Fix thinko in setting order hint. --- gtk2_ardour/ardour_ui.cc | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index 127927e80a..010f7d35e5 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -3250,6 +3250,11 @@ ARDOUR_UI::setup_order_hint () order_hint = (*s)->route()->order_key(); } } + + if (!mixer->selection().routes.empty()) { + order_hint++; + } + } else { for (TrackSelection::iterator s = editor->get_selection().tracks.begin(); s != editor->get_selection().tracks.end(); ++s) { RouteTimeAxisView* tav = dynamic_cast (*s); @@ -3257,10 +3262,10 @@ ARDOUR_UI::setup_order_hint () order_hint = tav->route()->order_key(); } } - } - if (!mixer->selection().routes.empty() || !editor->get_selection().tracks.empty()) { - order_hint++; + if (!editor->get_selection().tracks.empty()) { + order_hint++; + } } _session->set_order_hint (order_hint); From 3fca0306032486736dd575907c640a1702e8531f Mon Sep 17 00:00:00 2001 From: Sakari Bergen Date: Sun, 3 Nov 2013 21:22:00 +0200 Subject: [PATCH 57/95] Fix invalid silence trimmer end-of-input behavior (multiple EndOfInputs) This caused an export bug when: a) normalizing b) adding silence to end c) having more than one channel The sound was corrupted by repeating each jack frame as many times as there were channels. --- libs/audiographer/audiographer/general/silence_trimmer.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libs/audiographer/audiographer/general/silence_trimmer.h b/libs/audiographer/audiographer/general/silence_trimmer.h index a653bfe215..d292515eb8 100644 --- a/libs/audiographer/audiographer/general/silence_trimmer.h +++ b/libs/audiographer/audiographer/general/silence_trimmer.h @@ -130,6 +130,9 @@ class SilenceTrimmer throw Exception(*this, "process() after reacing end of input"); } in_end = c.has_flag (ProcessContext::EndOfInput); + + // If adding to end, delay end of input propagation + if (add_to_end) { c.remove_flag(ProcessContext::EndOfInput); } framecnt_t frame_index = 0; @@ -208,7 +211,8 @@ class SilenceTrimmer // Finally, if in end, add silence to end if (in_end && add_to_end) { - + c.set_flag (ProcessContext::EndOfInput); + if (debug_level (DebugVerbose)) { debug_stream () << DebugUtils::demangled_name (*this) << " adding to end" << std::endl; From e24089ec1f2464ebca7cdd1f32f1b8818eb0a856 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 4 Nov 2013 14:19:10 -0500 Subject: [PATCH 58/95] do not hard-code version number anymore - define via git or libs/ardour/revision.cc --- wscript | 50 ++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 40 insertions(+), 10 deletions(-) diff --git a/wscript b/wscript index 4ca2573676..99bd46ddef 100644 --- a/wscript +++ b/wscript @@ -7,10 +7,42 @@ import string import subprocess import sys -MAJOR = '3' -MINOR = '5' -VERSION = MAJOR + '.' + MINOR +def fetch_git_revision (): + cmd = "git describe HEAD" + output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines() + rev = output[0].decode ('utf-8') + return rev +def fetch_tarball_revision (): + if not os.path.exists ('libs/ardour/revision.cc'): + print 'This tarball was not created correctly - it is missing libs/ardour/revision.cc' + sys.exit (1) + with open('libs/ardour/revision.cc') as f: + content = f.readlines() + remove_punctuation_map = dict((ord(char), None) for char in '";') + return content[1].decode('utf-8').strip().split(' ')[7].translate (remove_punctuation_map) + +if os.path.isdir (os.path.join(os.getcwd(), '.git')): + rev = fetch_git_revision () +else: + rev = fetch_tarball_revision () + +# +# rev is now of the form MAJOR.MINOR-rev-commit +# + +parts = rev.split ('.') +MAJOR = parts[0] +other = parts[1].split ('-') +MINOR = other[0] +MICRO = other[1] + +V = MAJOR + '.' + MINOR + '.' + MICRO +# +# it is important that VERSION *not* be unicode string +# because if it is, it breaks waf somehow. +# +VERSION = V.encode ('ascii', 'ignore') APPNAME = 'Ardour' + MAJOR # Mandatory variables @@ -67,17 +99,11 @@ def fetch_gcc_version (CC): version = o.split(' ')[2].split('.') return version -def fetch_git_revision (): - cmd = "git describe HEAD" - output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines() - rev = output[0].decode('utf-8') - return rev - def create_stored_revision(): rev = "" if os.path.exists('.git'): rev = fetch_git_revision(); - print("ardour.git version: " + rev + "\n") + print("Git version: " + rev + "\n") elif os.path.exists('libs/ardour/revision.cc'): print("Using packaged revision") return @@ -86,6 +112,10 @@ def create_stored_revision(): sys.exit(-1) try: + # + # if you change the format of this, be sure to fix fetch_tarball_revision() above + # so that it still works. + # text = '#include "ardour/revision.h"\n' text += 'namespace ARDOUR { const char* revision = \"%s\"; }\n' % rev print('Writing revision info to libs/ardour/revision.cc using ' + rev) From c01e37171ef5ebf6da0ec2cd9ef39873634979ee Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 5 Nov 2013 02:06:20 +0100 Subject: [PATCH 59/95] keep processing LV2 Ringbuffer once it is allocated Discard messages in LV2PluginUI::write_to_ui() if the ringbuffer exists but the UI is not active. This fixes "[ERROR]: Error writing from plugin to UI" messages if the UI was once active but has been closed since. This is a hotfix solution, eventually the LV2 backend should be updated and a function LV2Plugin::disable_ui_emmission() implemented. --- gtk2_ardour/lv2_plugin_ui.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/lv2_plugin_ui.cc b/gtk2_ardour/lv2_plugin_ui.cc index c273c1f4dd..07e8699ebc 100644 --- a/gtk2_ardour/lv2_plugin_ui.cc +++ b/gtk2_ardour/lv2_plugin_ui.cc @@ -478,12 +478,12 @@ void LV2PluginUI::on_window_hide() { //printf("LV2PluginUI::on_window_hide\n"); - _message_update_connection.disconnect(); if (_lv2->is_external_ui()) { if (!_external_ui_ptr) { return; } LV2_EXTERNAL_UI_HIDE(_external_ui_ptr); if (!_lv2->is_external_kx()) { return ; } + _message_update_connection.disconnect(); _screen_update_connection.disconnect(); _external_ui_ptr = NULL; suil_instance_free((SuilInstance*)_inst); From 6992153ae974e52fe2ed6152cad346c8eb6beea0 Mon Sep 17 00:00:00 2001 From: Julien de Kozak Date: Tue, 5 Nov 2013 07:51:04 +0100 Subject: [PATCH 60/95] fix tests compilation --- libs/ardour/wscript | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/ardour/wscript b/libs/ardour/wscript index 7975599d89..2a3c998ca1 100644 --- a/libs/ardour/wscript +++ b/libs/ardour/wscript @@ -550,11 +550,11 @@ def create_ardour_test_program(bld, includes, name, target, sources): testobj.use = ['libpbd','libmidipp','libevoral','libvampplugin', 'libaudiographer','ardour','testcommon'] if bld.is_defined('USE_EXTERNAL_LIBS'): - testcommon.uselib.extend(['RUBBERBAND', 'TAGLIB', 'LIBLTC', 'VAMPSDK', - 'VAMPHOSTSDK']) + testobj.uselib.extend(['RUBBERBAND', 'TAGLIB', 'LIBLTC', 'VAMPSDK', + 'VAMPHOSTSDK']) else: - testcommon.use.extend(['libltc', 'librubberband', 'libtaglib', - 'libvamphost']) + testobj.use.extend(['libltc', 'librubberband', 'libtaglib', + 'libvamphost']) testobj.name = name testobj.target = target From 3e661d97b57047144336253f79d679a7300aead8 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 5 Nov 2013 09:35:03 -0500 Subject: [PATCH 61/95] update packaging tools to always use revision.cc to determine version number, not text in top level wscript --- tools/define_versions.sh | 25 +++++++++++++++++-------- tools/linux_packaging/build | 18 +++++++++++------- tools/linux_packaging/package | 16 ++++++++-------- tools/osx_packaging/osx_build | 20 ++++++++++++-------- 4 files changed, 48 insertions(+), 31 deletions(-) diff --git a/tools/define_versions.sh b/tools/define_versions.sh index 6f5c17773c..654617a253 100644 --- a/tools/define_versions.sh +++ b/tools/define_versions.sh @@ -2,15 +2,24 @@ # this is sourced by build and package, and executed from within build/{osx,linux}_packaging # -major_version=`grep -m 1 '^MAJOR = ' ../../wscript | awk '{print $3}' | sed "s/'//g"` -minor_version=`grep -m 1 '^MINOR = ' ../../wscript | awk '{print $3}' | sed "s/'//g"` -release_version=${major_version}.${minor_version} -r=`cut -d'"' -f2 < ../../libs/ardour/revision.cc | sed -e 1d -e "s/[0-9][0-9]*\.[0-9][0-9]*-//"` -if echo $r | grep -q -e - ; then - revcount=`echo $r | cut -d- -f1` +if uname -a | grep arwin >/dev/null 2>&1 ; then + EXTENDED_RE=-E +else + EXTENDED_RE=-r fi -commit=`echo $r | cut -d- -f2` -version=${release_version}${revcount:+.$revcount} + +GIT_REV_REGEXP='([0-9][0-9]*)\.([0-9][0-9]*)-?([0-9][0-9]*)?-?([a-z0-9]*)' + +major_version=`cut -d'"' -f2 < ../../libs/ardour/revision.cc | sed $EXTENDED_RE -e 1d -e "s/$GIT_REV_REGEXP/\1/"` +minor_version=`cut -d'"' -f2 < ../../libs/ardour/revision.cc | sed $EXTENDED_RE -e 1d -e "s/$GIT_REV_REGEXP/\2/"` +r=`cut -d'"' -f2 < ../../libs/ardour/revision.cc | sed $EXTENDED_RE -e 1d -e "s/$GIT_REV_REGEXP/\3/"` +commit=`cut -d'"' -f2 < ../../libs/ardour/revision.cc | sed $EXTENDED_RE -e 1d -e "s/$GIT_REV_REGEXP/\4/"` + +if [ "x$r" != "x" ] ; then + revcount=$r +fi + +release_version=${major_version}.${minor_version}${revcount:+.$revcount} # # Figure out the Build Type diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build index e7f7d8b6dd..e8cc4d53b2 100755 --- a/tools/linux_packaging/build +++ b/tools/linux_packaging/build @@ -97,8 +97,12 @@ fi . ../define_versions.sh -echo "Version is $version / $commit" -info_string="$version ($commit) built on `hostname` by `whoami` on `date`" +echo "Version is $release_version" +if [ "x$commit" != "x" ] ; then + info_string="$release_version ($commit) built on `hostname` by `whoami` on `date`" +else + info_string="$release_version built on `hostname` by `whoami` on `date`" +fi echo "Info string is $info_string" # Figure out our CPU type @@ -134,11 +138,11 @@ fi # setup directory structure if [ -z "${BUILDTYPE}" ]; then - APPDIR=${APPNAME}_${ARCH}-${version} - APP_VER_NAME=${APPNAME}-${version} + APPDIR=${APPNAME}_${ARCH}-${release_version} + APP_VER_NAME=${APPNAME}-${release_version} else - APPDIR=${APPNAME}_${ARCH}-${version}-${BUILDTYPE} - APP_VER_NAME=${APPNAME}-${version}-${BUILDTYPE} + APPDIR=${APPNAME}_${ARCH}-${release_version}-${BUILDTYPE} + APP_VER_NAME=${APPNAME}-${release_version}-${BUILDTYPE} fi APPBIN=$APPDIR/bin @@ -569,7 +573,7 @@ fi # # Add the uninstaller # -sed -e "s/%REPLACE_PGM%/${APPNAME}/" -e "s/%REPLACE_VENDOR%/${VENDOR}/" -e "s/%REPLACE_VERSION%/${version}/" -e "s/%REPLACE_TYPE%/${BUILDTYPE}/" < uninstall.sh.in > $APPBIN/${APP_VER_NAME}.uninstall.sh +sed -e "s/%REPLACE_PGM%/${APPNAME}/" -e "s/%REPLACE_VENDOR%/${VENDOR}/" -e "s/%REPLACE_VERSION%/${release_version}/" -e "s/%REPLACE_TYPE%/${BUILDTYPE}/" < uninstall.sh.in > $APPBIN/${APP_VER_NAME}.uninstall.sh chmod a+x $APPBIN/${APP_VER_NAME}.uninstall.sh #Sanity Check file diff --git a/tools/linux_packaging/package b/tools/linux_packaging/package index 259a2a22da..5fc6aee1f7 100755 --- a/tools/linux_packaging/package +++ b/tools/linux_packaging/package @@ -56,8 +56,8 @@ if [ x$DEBUG = xT ]; then BUILDTYPE="dbg" fi -X86_BUNDLE="${APPNAME}_x86-${version}" -X86_64_BUNDLE="${APPNAME}_x86_64-${version}" +X86_BUNDLE="${APPNAME}_x86-${release_version}" +X86_64_BUNDLE="${APPNAME}_x86_64-${release_version}" if [ ! -z ${BUILDTYPE} ]; then X86_BUNDLE="${X86_BUNDLE}-${BUILDTYPE}" @@ -112,22 +112,22 @@ fi if [ -z ${BUILDTYPE} ]; then if [ "${SINGLE_ARCH}" = "T" ]; then if [ "${X86_BUNDLE_OK}" = "T" ]; then - PACKAGE="${APPNAME}_32bit-${version}" + PACKAGE="${APPNAME}_32bit-${release_version}" else - PACKAGE="${APPNAME}_64bit-${version}" + PACKAGE="${APPNAME}_64bit-${release_version}" fi else - PACKAGE="${APPNAME}-${version}" + PACKAGE="${APPNAME}-${release_version}" fi else if [ "${SINGLE_ARCH}" = "T" ]; then if [ "${X86_BUNDLE_OK}" = "T" ]; then - PACKAGE="${APPNAME}_32bit-${version}-${BUILDTYPE}" + PACKAGE="${APPNAME}_32bit-${release_version}-${BUILDTYPE}" else - PACKAGE="${APPNAME}_64bit-${version}-${BUILDTYPE}" + PACKAGE="${APPNAME}_64bit-${release_version}-${BUILDTYPE}" fi else - PACKAGE="${APPNAME}-${version}-${BUILDTYPE}" + PACKAGE="${APPNAME}-${release_version}-${BUILDTYPE}" fi fi diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build index c47e64483c..fcf1febe84 100755 --- a/tools/osx_packaging/osx_build +++ b/tools/osx_packaging/osx_build @@ -75,8 +75,12 @@ if test -z "$PRODUCT_PKG_DIR" -o -z "$APPNAME"; then fi . ../define_versions.sh -echo "Version is $release_version / $revision" -info_string="$version built on `hostname` by `whoami` on `date`" +echo "Version is $release_version" +if [ "x$commit" != "x" ] ; then + info_string="$release_version ($commit) built on `hostname` by `whoami` on `date`" +else + info_string="$release_version built on `hostname` by `whoami` on `date`" +fi echo "Info string is $info_string" # setup directory structure @@ -177,12 +181,12 @@ env="LSEnvironment$envARDOUR_BUNDLEDtrue Info.plist # and plist strings sed -e "s?@APPNAME@?$appname?" \ -e "s?@ENV@?$env?g" \ - -e "s?@VERSION@?$release_version/$revision?g" \ + -e "s?@VERSION@?$release_version?g" \ -e "s?@INFOSTRING@?$info_string?g" < InfoPlist.strings.in > Resources/InfoPlist.strings || exit 1 # copy static files @@ -569,10 +573,10 @@ fi echo "Building DMG ..." -# UC_DMG=$APPNAME-${release_version}-${revision}-UC.dmg -# FINAL_DMG=$APPNAME-${release_version}-${revision}.dmg -UC_DMG=$APPNAME-$version.dmg -VOLNAME=$APPNAME-$version +# UC_DMG=$APPNAME-${release_version}-UC.dmg +# FINAL_DMG=$APPNAME-${release_version}.dmg +UC_DMG=$APPNAME-$release_version.dmg +VOLNAME=$APPNAME-$release_version # TODO use mktemp export TMPDIR=`pwd` From 7aa46da32f880ad4c7ced29fcea27e002a2c2321 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 5 Nov 2013 10:17:22 -0500 Subject: [PATCH 62/95] fix incorrect use of sizeof() in snprintf (function never actually used in ardour,but ... ) --- libs/ardour/ardour/session.h | 2 +- libs/ardour/session_time.cc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h index 02e883ed11..9b4fbef774 100644 --- a/libs/ardour/ardour/session.h +++ b/libs/ardour/ardour/session.h @@ -504,7 +504,7 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi void timecode_time_subframes (framepos_t when, Timecode::Time&); void timecode_duration (framecnt_t, Timecode::Time&) const; - void timecode_duration_string (char *, framecnt_t) const; + void timecode_duration_string (char *, size_t len, framecnt_t) const; framecnt_t convert_to_frames (AnyTime const & position); framecnt_t any_duration_to_frames (framepos_t position, AnyTime const & duration); diff --git a/libs/ardour/session_time.cc b/libs/ardour/session_time.cc index e35910f2df..ab5a470a8a 100644 --- a/libs/ardour/session_time.cc +++ b/libs/ardour/session_time.cc @@ -164,12 +164,12 @@ Session::timecode_duration (framecnt_t when, Timecode::Time& timecode) const } void -Session::timecode_duration_string (char* buf, framepos_t when) const +Session::timecode_duration_string (char* buf, size_t len, framepos_t when) const { Timecode::Time timecode; timecode_duration (when, timecode); - snprintf (buf, sizeof (buf), "%02" PRIu32 ":%02" PRIu32 ":%02" PRIu32 ":%02" PRIu32, timecode.hours, timecode.minutes, timecode.seconds, timecode.frames); + snprintf (buf, len, "%02" PRIu32 ":%02" PRIu32 ":%02" PRIu32 ":%02" PRIu32, timecode.hours, timecode.minutes, timecode.seconds, timecode.frames); } void From 0f33baf32fd6842398a17e62e7c18248602269f7 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 5 Nov 2013 10:17:40 -0500 Subject: [PATCH 63/95] back-port two actual bug fixes from cairocanvas branch --- libs/ardour/vst_plugin.cc | 2 +- libs/evoral/src/libsmf/smf_load.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/vst_plugin.cc b/libs/ardour/vst_plugin.cc index b80a594495..00cd6efaa5 100644 --- a/libs/ardour/vst_plugin.cc +++ b/libs/ardour/vst_plugin.cc @@ -298,7 +298,7 @@ VSTPlugin::get_parameter_descriptor (uint32_t which, ParameterDescriptor& desc) char label[64]; /* some VST plugins expect this buffer to be zero-filled */ - memset (label, sizeof (label), 0); + memset (label, 0, sizeof (label)); _plugin->dispatcher (_plugin, effGetParamName, which, 0, label, 0); diff --git a/libs/evoral/src/libsmf/smf_load.c b/libs/evoral/src/libsmf/smf_load.c index 6da6036ea0..f27d092a8b 100644 --- a/libs/evoral/src/libsmf/smf_load.c +++ b/libs/evoral/src/libsmf/smf_load.c @@ -633,7 +633,7 @@ smf_event_is_textual(const smf_event_t *event) if (event->midi_buffer_length < 4) return (0); - if (event->midi_buffer[3] < 1 && event->midi_buffer[3] > 9) + if (event->midi_buffer[3] < 1 || event->midi_buffer[3] > 9) return (0); return (1); From d2c81e9c4eba7df925f13468df20724425f90389 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 5 Nov 2013 11:09:03 -0500 Subject: [PATCH 64/95] add autowaf.py since we have branched from drobilla's version due to export visibility stuff --- tools/autowaf.py | 804 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 804 insertions(+) create mode 100644 tools/autowaf.py diff --git a/tools/autowaf.py b/tools/autowaf.py new file mode 100644 index 0000000000..87e19d5aea --- /dev/null +++ b/tools/autowaf.py @@ -0,0 +1,804 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# Autowaf, useful waf utilities with support for recursive projects +# Copyright 2008-2011 David Robillard +# +# Licensed under the GNU GPL v2 or later, see COPYING file for details. + +import glob +import os +import subprocess +import sys + +from waflib import Configure, Context, Logs, Node, Options, Task, Utils +from waflib.TaskGen import feature, before, after + +global g_is_child +g_is_child = False + +# Only run autowaf hooks once (even if sub projects call several times) +global g_step +g_step = 0 + +# Compute dependencies globally +#import preproc +#preproc.go_absolute = True + +@feature('c', 'cxx') +@after('apply_incpaths') +def include_config_h(self): + self.env.append_value('INCPATHS', self.bld.bldnode.abspath()) + +def set_options(opt, debug_by_default=False): + "Add standard autowaf options if they havn't been added yet" + global g_step + if g_step > 0: + return + + # Install directory options + dirs_options = opt.add_option_group('Installation directories', '') + + # Move --prefix and --destdir to directory options group + for k in ('--prefix', '--destdir'): + option = opt.parser.get_option(k) + if option: + opt.parser.remove_option(k) + dirs_options.add_option(option) + + # Standard directory options + dirs_options.add_option('--bindir', type='string', + help="Executable programs [Default: PREFIX/bin]") + dirs_options.add_option('--configdir', type='string', + help="Configuration data [Default: PREFIX/etc]") + dirs_options.add_option('--datadir', type='string', + help="Shared data [Default: PREFIX/share]") + dirs_options.add_option('--includedir', type='string', + help="Header files [Default: PREFIX/include]") + dirs_options.add_option('--libdir', type='string', + help="Libraries [Default: PREFIX/lib]") + dirs_options.add_option('--mandir', type='string', + help="Manual pages [Default: DATADIR/man]") + dirs_options.add_option('--docdir', type='string', + help="HTML documentation [Default: DATADIR/doc]") + + # Build options + if debug_by_default: + opt.add_option('--optimize', action='store_false', default=True, dest='debug', + help="Build optimized binaries") + else: + opt.add_option('--debug', action='store_true', default=False, dest='debug', + help="Build debuggable binaries") + + opt.add_option('--pardebug', action='store_true', default=False, dest='pardebug', + help="Build parallel-installable debuggable libraries with D suffix") + + opt.add_option('--grind', action='store_true', default=False, dest='grind', + help="Run tests in valgrind") + opt.add_option('--strict', action='store_true', default=False, dest='strict', + help="Use strict compiler flags and show all warnings") + opt.add_option('--ultra-strict', action='store_true', default=False, dest='ultra_strict', + help="Use even stricter compiler flags (likely to trigger many warnings in library headers)") + opt.add_option('--docs', action='store_true', default=False, dest='docs', + help="Build documentation - requires doxygen") + + # LV2 options + opt.add_option('--lv2-user', action='store_true', default=False, dest='lv2_user', + help="Install LV2 bundles to user location") + opt.add_option('--lv2-system', action='store_true', default=False, dest='lv2_system', + help="Install LV2 bundles to system location") + dirs_options.add_option('--lv2dir', type='string', + help="LV2 bundles [Default: LIBDIR/lv2]") + g_step = 1 + +def check_header(conf, lang, name, define='', mandatory=True): + "Check for a header" + includes = '' # search default system include paths + if sys.platform == "darwin": + includes = '/opt/local/include' + + if lang == 'c': + check_func = conf.check_cc + elif lang == 'cxx': + check_func = conf.check_cxx + else: + Logs.error("Unknown header language `%s'" % lang) + return + + if define != '': + check_func(header_name=name, includes=includes, + define_name=define, mandatory=mandatory) + else: + check_func(header_name=name, includes=includes, mandatory=mandatory) + +def nameify(name): + return name.replace('/', '_').replace('++', 'PP').replace('-', '_').replace('.', '_') + +def define(conf, var_name, value): + conf.define(var_name, value) + conf.env[var_name] = value + +def check_pkg(conf, name, **args): + "Check for a package iff it hasn't been checked for yet" + if args['uselib_store'].lower() in conf.env['AUTOWAF_LOCAL_LIBS']: + return + class CheckType: + OPTIONAL=1 + MANDATORY=2 + var_name = 'CHECKED_' + nameify(args['uselib_store']) + check = not var_name in conf.env + mandatory = not 'mandatory' in args or args['mandatory'] + if not check and 'atleast_version' in args: + # Re-check if version is newer than previous check + checked_version = conf.env['VERSION_' + name] + if checked_version and checked_version < args['atleast_version']: + check = True; + if not check and mandatory and conf.env[var_name] == CheckType.OPTIONAL: + # Re-check if previous check was optional but this one is mandatory + check = True; + if check: + found = None + pkg_var_name = 'PKG_' + name.replace('-', '_') + pkg_name = name + if conf.env.PARDEBUG: + args['mandatory'] = False # Smash mandatory arg + found = conf.check_cfg(package=pkg_name + 'D', args="--cflags --libs", **args) + if found: + pkg_name += 'D' + if mandatory: + args['mandatory'] = True # Unsmash mandatory arg + if not found: + found = conf.check_cfg(package=pkg_name, args="--cflags --libs", **args) + if found: + conf.env[pkg_var_name] = pkg_name + if 'atleast_version' in args: + conf.env['VERSION_' + name] = args['atleast_version'] + if mandatory: + conf.env[var_name] = CheckType.MANDATORY + else: + conf.env[var_name] = CheckType.OPTIONAL + + +def normpath(path): + if sys.platform == 'win32': + return os.path.normpath(path).replace('\\', '/') + else: + return os.path.normpath(path) + +def configure(conf): + global g_step + if g_step > 1: + return + def append_cxx_flags(flags): + conf.env.append_value('CFLAGS', flags) + conf.env.append_value('CXXFLAGS', flags) + print('') + display_header('Global Configuration') + + if Options.options.docs: + conf.load('doxygen') + + conf.env['DOCS'] = Options.options.docs + conf.env['DEBUG'] = Options.options.debug or Options.options.pardebug + conf.env['PARDEBUG'] = Options.options.pardebug + conf.env['PREFIX'] = normpath(os.path.abspath(os.path.expanduser(conf.env['PREFIX']))) + + def config_dir(var, opt, default): + if opt: + conf.env[var] = normpath(opt) + else: + conf.env[var] = normpath(default) + + opts = Options.options + prefix = conf.env['PREFIX'] + + config_dir('BINDIR', opts.bindir, os.path.join(prefix, 'bin')) + config_dir('SYSCONFDIR', opts.configdir, os.path.join(prefix, 'etc')) + config_dir('DATADIR', opts.datadir, os.path.join(prefix, 'share')) + config_dir('INCLUDEDIR', opts.includedir, os.path.join(prefix, 'include')) + config_dir('LIBDIR', opts.libdir, os.path.join(prefix, 'lib')) + config_dir('MANDIR', opts.mandir, os.path.join(conf.env['DATADIR'], 'man')) + config_dir('DOCDIR', opts.docdir, os.path.join(conf.env['DATADIR'], 'doc')) + + if Options.options.lv2dir: + conf.env['LV2DIR'] = Options.options.lv2dir + elif Options.options.lv2_user: + if sys.platform == "darwin": + conf.env['LV2DIR'] = os.path.join(os.getenv('HOME'), 'Library/Audio/Plug-Ins/LV2') + elif sys.platform == "win32": + conf.env['LV2DIR'] = os.path.join(os.getenv('APPDATA'), 'LV2') + else: + conf.env['LV2DIR'] = os.path.join(os.getenv('HOME'), '.lv2') + elif Options.options.lv2_system: + if sys.platform == "darwin": + conf.env['LV2DIR'] = '/Library/Audio/Plug-Ins/LV2' + elif sys.platform == "win32": + conf.env['LV2DIR'] = os.path.join(os.getenv('COMMONPROGRAMFILES'), 'LV2') + else: + conf.env['LV2DIR'] = os.path.join(conf.env['LIBDIR'], 'lv2') + else: + conf.env['LV2DIR'] = os.path.join(conf.env['LIBDIR'], 'lv2') + + conf.env['LV2DIR'] = normpath(conf.env['LV2DIR']) + + if Options.options.docs: + doxygen = conf.find_program('doxygen') + if not doxygen: + conf.fatal("Doxygen is required to build with --docs") + + dot = conf.find_program('dot') + if not dot: + conf.fatal("Graphviz (dot) is required to build with --docs") + + if Options.options.debug: + if conf.env['MSVC_COMPILER']: + conf.env['CFLAGS'] = ['/Od', '/Zi', '/MTd'] + conf.env['CXXFLAGS'] = ['/Od', '/Zi', '/MTd'] + conf.env['LINKFLAGS'] = ['/DEBUG'] + else: + conf.env['CFLAGS'] = ['-O0', '-g'] + conf.env['CXXFLAGS'] = ['-O0', '-g'] + else: + if conf.env['MSVC_COMPILER']: + conf.env['CFLAGS'] = ['/MD'] + conf.env['CXXFLAGS'] = ['/MD'] + append_cxx_flags(['-DNDEBUG']) + + if Options.options.ultra_strict: + Options.options.strict = True + conf.env.append_value('CFLAGS', ['-Wredundant-decls', + '-Wstrict-prototypes', + '-Wmissing-prototypes']) + + if Options.options.strict: + conf.env.append_value('CFLAGS', ['-std=c99', '-pedantic', '-Wshadow']) + conf.env.append_value('CXXFLAGS', ['-ansi', + '-Wnon-virtual-dtor', + '-Woverloaded-virtual']) + append_cxx_flags(['-Wall', + '-Wcast-align', + '-Wextra', + '-Wwrite-strings']) + if sys.platform != "darwin": + # this is really only to be avoid on OLD apple gcc, but not sure how to version check + append_cxx_flags(['-fstrict-overflow']) + + if not conf.check_cc(fragment = ''' +#ifndef __clang__ +#error +#endif +int main() { return 0; }''', + features = 'c', + mandatory = False, + execute = False, + msg = 'Checking for clang'): + if sys.platform != "darwin": + # this is really only to be avoid on OLD apple gcc, but not sure how to version check + append_cxx_flags(['-Wunsafe-loop-optimizations']) + # this is invalid (still) on Lion apple gcc + append_cxx_flags(['-Wlogical-op']) + + + if not conf.env['MSVC_COMPILER']: + append_cxx_flags(['-fshow-column']) + + conf.env.prepend_value('CFLAGS', '-I' + os.path.abspath('.')) + conf.env.prepend_value('CXXFLAGS', '-I' + os.path.abspath('.')) + + display_msg(conf, "Install prefix", conf.env['PREFIX']) + display_msg(conf, "Debuggable build", str(conf.env['DEBUG'])) + display_msg(conf, "Build documentation", str(conf.env['DOCS'])) + print('') + + g_step = 2 + +def set_c99_mode(conf): + if conf.env.MSVC_COMPILER: + # MSVC has no hope or desire to compile C99, just compile as C++ + conf.env.append_unique('CFLAGS', ['-TP']) + else: + conf.env.append_unique('CFLAGS', ['-std=c99']) + +def set_local_lib(conf, name, has_objects): + var_name = 'HAVE_' + nameify(name.upper()) + define(conf, var_name, 1) + if has_objects: + if type(conf.env['AUTOWAF_LOCAL_LIBS']) != dict: + conf.env['AUTOWAF_LOCAL_LIBS'] = {} + conf.env['AUTOWAF_LOCAL_LIBS'][name.lower()] = True + else: + if type(conf.env['AUTOWAF_LOCAL_HEADERS']) != dict: + conf.env['AUTOWAF_LOCAL_HEADERS'] = {} + conf.env['AUTOWAF_LOCAL_HEADERS'][name.lower()] = True + +def append_property(obj, key, val): + if hasattr(obj, key): + setattr(obj, key, getattr(obj, key) + val) + else: + setattr(obj, key, val) + +def use_lib(bld, obj, libs): + abssrcdir = os.path.abspath('.') + libs_list = libs.split() + for l in libs_list: + in_headers = l.lower() in bld.env['AUTOWAF_LOCAL_HEADERS'] + in_libs = l.lower() in bld.env['AUTOWAF_LOCAL_LIBS'] + if in_libs: + append_property(obj, 'use', ' lib%s ' % l.lower()) + append_property(obj, 'framework', bld.env['FRAMEWORK_' + l]) + if in_headers or in_libs: + inc_flag = '-iquote ' + os.path.join(abssrcdir, l.lower()) + for f in ['CFLAGS', 'CXXFLAGS']: + if not inc_flag in bld.env[f]: + bld.env.prepend_value(f, inc_flag) + else: + append_property(obj, 'uselib', ' ' + l) + +@feature('c', 'cxx') +@before('apply_link') +def version_lib(self): + if sys.platform == 'win32': + self.vnum = None # Prevent waf from automatically appending -0 + if self.env['PARDEBUG']: + applicable = ['cshlib', 'cxxshlib', 'cstlib', 'cxxstlib'] + if [x for x in applicable if x in self.features]: + self.target = self.target + 'D' + +def set_lib_env(conf, name, version): + 'Set up environment for local library as if found via pkg-config.' + NAME = name.upper() + major_ver = version.split('.')[0] + pkg_var_name = 'PKG_' + name.replace('-', '_') + lib_name = '%s-%s' % (name, major_ver) + if conf.env.PARDEBUG: + lib_name += 'D' + conf.env[pkg_var_name] = lib_name + conf.env['INCLUDES_' + NAME] = ['${INCLUDEDIR}/%s-%s' % (name, major_ver)] + conf.env['LIBPATH_' + NAME] = [conf.env.LIBDIR] + conf.env['LIB_' + NAME] = [lib_name] + +def display_header(title): + Logs.pprint('BOLD', title) + +def display_msg(conf, msg, status = None, color = None): + color = 'CYAN' + if type(status) == bool and status or status == "True": + color = 'GREEN' + elif type(status) == bool and not status or status == "False": + color = 'YELLOW' + Logs.pprint('BOLD', " *", sep='') + Logs.pprint('NORMAL', "%s" % msg.ljust(conf.line_just - 3), sep='') + Logs.pprint('BOLD', ":", sep='') + Logs.pprint(color, status) + +def link_flags(env, lib): + return ' '.join(map(lambda x: env['LIB_ST'] % x, env['LIB_' + lib])) + +def compile_flags(env, lib): + return ' '.join(map(lambda x: env['CPPPATH_ST'] % x, env['INCLUDES_' + lib])) + +def set_recursive(): + global g_is_child + g_is_child = True + +def is_child(): + global g_is_child + return g_is_child + +# Pkg-config file +def build_pc(bld, name, version, version_suffix, libs, subst_dict={}): + '''Build a pkg-config file for a library. + name -- uppercase variable name (e.g. 'SOMENAME') + version -- version string (e.g. '1.2.3') + version_suffix -- name version suffix (e.g. '2') + libs -- string/list of dependencies (e.g. 'LIBFOO GLIB') + ''' + pkg_prefix = bld.env['PREFIX'] + if pkg_prefix[-1] == '/': + pkg_prefix = pkg_prefix[:-1] + + target = name.lower() + if version_suffix != '': + target += '-' + version_suffix + + if bld.env['PARDEBUG']: + target += 'D' + + target += '.pc' + + libdir = bld.env['LIBDIR'] + if libdir.startswith(pkg_prefix): + libdir = libdir.replace(pkg_prefix, '${exec_prefix}') + + includedir = bld.env['INCLUDEDIR'] + if includedir.startswith(pkg_prefix): + includedir = includedir.replace(pkg_prefix, '${prefix}') + + obj = bld(features = 'subst', + source = '%s.pc.in' % name.lower(), + target = target, + install_path = os.path.join(bld.env['LIBDIR'], 'pkgconfig'), + exec_prefix = '${prefix}', + PREFIX = pkg_prefix, + EXEC_PREFIX = '${prefix}', + LIBDIR = libdir, + INCLUDEDIR = includedir) + + if type(libs) != list: + libs = libs.split() + + subst_dict[name + '_VERSION'] = version + subst_dict[name + '_MAJOR_VERSION'] = version[0:version.find('.')] + for i in libs: + subst_dict[i + '_LIBS'] = link_flags(bld.env, i) + lib_cflags = compile_flags(bld.env, i) + if lib_cflags == '': + lib_cflags = ' ' + subst_dict[i + '_CFLAGS'] = lib_cflags + + obj.__dict__.update(subst_dict) + +def build_dir(name, subdir): + if is_child(): + return os.path.join('build', name, subdir) + else: + return os.path.join('build', subdir) + +# Clean up messy Doxygen documentation after it is built +def make_simple_dox(name): + name = name.lower() + NAME = name.upper() + try: + top = os.getcwd() + os.chdir(build_dir(name, 'doc/html')) + page = 'group__%s.html' % name + if not os.path.exists(page): + return + for i in [ + ['%s_API ' % NAME, ''], + ['%s_DEPRECATED ' % NAME, ''], + ['group__%s.html' % name, ''], + [' ', ''], + ['<\/script>', ''], + ['<\/a>

.*<\/h2>', ''], + ['', + ''], + ['\"doxygen\"\/', + 'Doxygen']]: + os.system("sed -i 's/%s/%s/g' %s" % (i[0], i[1], page)) + os.rename('group__%s.html' % name, 'index.html') + for i in (glob.glob('*.png') + + glob.glob('*.html') + + glob.glob('*.js') + + glob.glob('*.css')): + if i != 'index.html' and i != 'style.css': + os.remove(i) + os.chdir(top) + os.chdir(build_dir(name, 'doc/man/man3')) + for i in glob.glob('*.3'): + os.system("sed -i 's/%s_API //' %s" % (NAME, i)) + for i in glob.glob('_*'): + os.remove(i) + os.chdir(top) + except Exception as e: + Logs.error("Failed to fix up %s documentation: %s" % (name, e)) + +# Doxygen API documentation +def build_dox(bld, name, version, srcdir, blddir, outdir=''): + if not bld.env['DOCS']: + return + + if is_child(): + src_dir = os.path.join(srcdir, name.lower()) + doc_dir = os.path.join(blddir, name.lower(), 'doc') + else: + src_dir = srcdir + doc_dir = os.path.join(blddir, 'doc') + + subst_tg = bld(features = 'subst', + source = 'doc/reference.doxygen.in', + target = 'doc/reference.doxygen', + install_path = '', + name = 'doxyfile') + + subst_dict = { + name + '_VERSION' : version, + name + '_SRCDIR' : os.path.abspath(src_dir), + name + '_DOC_DIR' : os.path.abspath(doc_dir) + } + + subst_tg.__dict__.update(subst_dict) + + subst_tg.post() + + docs = bld(features = 'doxygen', + doxyfile = 'doc/reference.doxygen') + + docs.post() + + major = int(version[0:version.find('.')]) + bld.install_files( + os.path.join('${DOCDIR}', '%s-%d' % (name.lower(), major), outdir, 'html'), + bld.path.get_bld().ant_glob('doc/html/*')) + for i in range(1, 8): + bld.install_files('${MANDIR}/man%d' % i, + bld.path.get_bld().ant_glob('doc/man/man%d/*' % i, + excl='**/_*')) + +# Version code file generation +def build_version_files(header_path, source_path, domain, major, minor, micro, exportname, visheader): + header_path = os.path.abspath(header_path) + source_path = os.path.abspath(source_path) + text = "int " + domain + "_major_version = " + str(major) + ";\n" + text += "int " + domain + "_minor_version = " + str(minor) + ";\n" + text += "int " + domain + "_micro_version = " + str(micro) + ";\n" + try: + o = open(source_path, 'w') + o.write(text) + o.close() + except IOError: + Logs.error('Failed to open %s for writing\n' % source_path) + sys.exit(-1) + + text = "#ifndef __" + domain + "_version_h__\n" + text += "#define __" + domain + "_version_h__\n" + if visheader != '': + text += "#include \"" + visheader + "\"\n" + text += exportname + " extern const char* " + domain + "_revision;\n" + text += exportname + " extern int " + domain + "_major_version;\n" + text += exportname + " extern int " + domain + "_minor_version;\n" + text += exportname + " extern int " + domain + "_micro_version;\n" + text += "#endif /* __" + domain + "_version_h__ */\n" + try: + o = open(header_path, 'w') + o.write(text) + o.close() + except IOError: + Logs.warn('Failed to open %s for writing\n' % header_path) + sys.exit(-1) + + return None + +def build_i18n_pot(bld, srcdir, dir, name, sources, copyright_holder=None): + Logs.info('Generating pot file from %s' % name) + pot_file = '%s.pot' % name + + cmd = ['xgettext', + '--keyword=_', + '--keyword=N_', + '--keyword=S_', + '--keyword=P_:1,2', + '--from-code=UTF-8', + '-o', pot_file] + + if copyright_holder: + cmd += ['--copyright-holder="%s"' % copyright_holder] + + cmd += sources + Logs.info('Updating ' + pot_file) + subprocess.call(cmd, cwd=os.path.join(srcdir, dir)) + +def build_i18n_po(bld, srcdir, dir, name, sources, copyright_holder=None): + pwd = os.getcwd() + os.chdir(os.path.join(srcdir, dir)) + pot_file = '%s.pot' % name + po_files = glob.glob('po/*.po') + for po_file in po_files: + cmd = ['msgmerge', + '--update', + '--no-fuzzy-matching', + po_file, + pot_file] + Logs.info('Updating ' + po_file) + subprocess.call(cmd) + os.chdir(pwd) + +def build_i18n_mo(bld, srcdir, dir, name, sources, copyright_holder=None): + pwd = os.getcwd() + os.chdir(os.path.join(srcdir, dir)) + pot_file = '%s.pot' % name + po_files = glob.glob('po/*.po') + for po_file in po_files: + mo_file = po_file.replace('.po', '.mo') + cmd = ['msgfmt', + '-c', + '-f', + '-o', + mo_file, + po_file] + Logs.info('Generating ' + po_file) + subprocess.call(cmd) + os.chdir(pwd) + +def build_i18n(bld, srcdir, dir, name, sources, copyright_holder=None): + build_i18n_pot(bld, srcdir, dir, name, sources, copyright_holder) + build_i18n_po(bld, srcdir, dir, name, sources, copyright_holder) + build_i18n_mo(bld, srcdir, dir, name, sources, copyright_holder) + +def cd_to_build_dir(ctx, appname): + orig_dir = os.path.abspath(os.curdir) + top_level = (len(ctx.stack_path) > 1) + if top_level: + os.chdir(os.path.join('build', appname)) + else: + os.chdir('build') + Logs.pprint('GREEN', "Waf: Entering directory `%s'" % os.path.abspath(os.getcwd())) + +def cd_to_orig_dir(ctx, child): + if child: + os.chdir(os.path.join('..', '..')) + else: + os.chdir('..') + +def pre_test(ctx, appname, dirs=['src']): + diropts = '' + for i in dirs: + diropts += ' -d ' + i + cd_to_build_dir(ctx, appname) + clear_log = open('lcov-clear.log', 'w') + try: + try: + # Clear coverage data + subprocess.call(('lcov %s -z' % diropts).split(), + stdout=clear_log, stderr=clear_log) + except: + Logs.warn('Failed to run lcov, no coverage report will be generated') + finally: + clear_log.close() + +def post_test(ctx, appname, dirs=['src'], remove=['*boost*', 'c++*']): + diropts = '' + for i in dirs: + diropts += ' -d ' + i + coverage_log = open('lcov-coverage.log', 'w') + coverage_lcov = open('coverage.lcov', 'w') + coverage_stripped_lcov = open('coverage-stripped.lcov', 'w') + try: + try: + base = '.' + if g_is_child: + base = '..' + + # Generate coverage data + subprocess.call(('lcov -c %s -b %s' % (diropts, base)).split(), + stdout=coverage_lcov, stderr=coverage_log) + + # Strip unwanted stuff + subprocess.call( + ['lcov', '--remove', 'coverage.lcov'] + remove, + stdout=coverage_stripped_lcov, stderr=coverage_log) + + # Generate HTML coverage output + if not os.path.isdir('coverage'): + os.makedirs('coverage') + subprocess.call('genhtml -o coverage coverage-stripped.lcov'.split(), + stdout=coverage_log, stderr=coverage_log) + + except: + Logs.warn('Failed to run lcov, no coverage report will be generated') + finally: + coverage_stripped_lcov.close() + coverage_lcov.close() + coverage_log.close() + + print('') + Logs.pprint('GREEN', "Waf: Leaving directory `%s'" % os.path.abspath(os.getcwd())) + top_level = (len(ctx.stack_path) > 1) + if top_level: + cd_to_orig_dir(ctx, top_level) + + print('') + Logs.pprint('BOLD', 'Coverage:', sep='') + print('\n\n' % os.path.abspath('coverage/index.html')) + +def run_tests(ctx, appname, tests, desired_status=0, dirs=['src'], name='*'): + failures = 0 + diropts = '' + for i in dirs: + diropts += ' -d ' + i + + # Run all tests + for i in tests: + s = i + if type(i) == type([]): + s = ' '.join(i) + print('') + Logs.pprint('BOLD', '** Test', sep='') + Logs.pprint('NORMAL', '%s' % s) + cmd = i + if Options.options.grind: + cmd = 'valgrind ' + i + if subprocess.call(cmd, shell=True) == desired_status: + Logs.pprint('GREEN', '** Pass') + else: + failures += 1 + Logs.pprint('RED', '** FAIL') + + print('') + if failures == 0: + Logs.pprint('GREEN', '** Pass: All %s.%s tests passed' % (appname, name)) + else: + Logs.pprint('RED', '** FAIL: %d %s.%s tests failed' % (failures, appname, name)) + +def run_ldconfig(ctx): + if (ctx.cmd == 'install' + and not ctx.env['RAN_LDCONFIG'] + and ctx.env['LIBDIR'] + and not 'DESTDIR' in os.environ + and not Options.options.destdir): + try: + Logs.info("Waf: Running `/sbin/ldconfig %s'" % ctx.env['LIBDIR']) + subprocess.call(['/sbin/ldconfig', ctx.env['LIBDIR']]) + ctx.env['RAN_LDCONFIG'] = True + except: + pass + +def write_news(name, in_files, out_file, top_entries=None, extra_entries=None): + import rdflib + import textwrap + from time import strftime, strptime + + doap = rdflib.Namespace('http://usefulinc.com/ns/doap#') + dcs = rdflib.Namespace('http://ontologi.es/doap-changeset#') + rdfs = rdflib.Namespace('http://www.w3.org/2000/01/rdf-schema#') + foaf = rdflib.Namespace('http://xmlns.com/foaf/0.1/') + rdf = rdflib.Namespace('http://www.w3.org/1999/02/22-rdf-syntax-ns#') + m = rdflib.ConjunctiveGraph() + + try: + for i in in_files: + m.parse(i, format='n3') + except: + Logs.warn('Error parsing data, unable to generate NEWS') + return + + proj = m.value(None, rdf.type, doap.Project) + for f in m.triples([proj, rdfs.seeAlso, None]): + if f[2].endswith('.ttl'): + m.parse(f[2], format='n3') + + entries = {} + for r in m.triples([proj, doap.release, None]): + release = r[2] + revision = m.value(release, doap.revision, None) + date = m.value(release, doap.created, None) + blamee = m.value(release, dcs.blame, None) + changeset = m.value(release, dcs.changeset, None) + dist = m.value(release, doap['file-release'], None) + + if revision and date and blamee and changeset: + entry = '%s (%s) stable;\n' % (name, revision) + + for i in m.triples([changeset, dcs.item, None]): + item = textwrap.wrap(m.value(i[2], rdfs.label, None), width=79) + entry += '\n * ' + '\n '.join(item) + if dist and top_entries is not None: + if not str(dist) in top_entries: + top_entries[str(dist)] = [] + top_entries[str(dist)] += [ + '%s: %s' % (name, '\n '.join(item))] + + if extra_entries: + for i in extra_entries[str(dist)]: + entry += '\n * ' + i + + entry += '\n\n --' + + blamee_name = m.value(blamee, foaf.name, None) + blamee_mbox = m.value(blamee, foaf.mbox, None) + if blamee_name and blamee_mbox: + entry += ' %s <%s>' % (blamee_name, + blamee_mbox.replace('mailto:', '')) + + entry += ' %s\n\n' % ( + strftime('%a, %d %b %Y %H:%M:%S +0000', strptime(date, '%Y-%m-%d'))) + + entries[revision] = entry + else: + Logs.warn('Ignored incomplete %s release description' % name) + + if len(entries) > 0: + news = open(out_file, 'w') + for e in sorted(entries.keys(), reverse=True): + news.write(entries[e]) + news.close() From 95fa7a8de9916a4d52c421492c13cd9de2602bbd Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 5 Nov 2013 11:10:51 -0500 Subject: [PATCH 65/95] update waf with new autowaf that uses --no-fuzzy-matching when running msgmerge --- waf | Bin 94786 -> 97948 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/waf b/waf index 841827b7558d573e31e5598018cb706ee155fbf0..22d303e8bb4797de09c7c6796cff3f51835e44af 100755 GIT binary patch delta 94847 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

CmsVt9YuY?OVOPo8kWq1e{Ai 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 delta 91660 zcmZU4Wl$YY^d$rd{9v&F!R-No2Lyk(JAvR%aEFJx4HDel-QC@SyE_jF5Zr=0S@yqG z`(^vXbl23>o$0=HPv5@hOy(<6-yft{F?iNGaRa1pkgu$)RR1YUsLQCxD0~;7;^Z(j zH8kPj=4LZ8Ag_s!`n!XRI{*(ExqADUMC-CLVe`2fxUqImZp6$J- zX}Cb*LHN(vj>3?_&C$}?G=Uja?tgv#pCO&IyEFZNs13=epWqW}|07CR{I4I`#n#5s z*191Z4G$4Gl>LkQ;jIMt_pcGl=KcEr8k}=zp)-+0?@v{6xLihg0>j-NkLhkPKe+#| z5q70WLFbum$*!U0d9y{$%AY26bfD_XEtI5|6=18Tm5Wa3RF_xtIBk`MvE_|MmpAD} zbl^dYvky!Tkj;y;b@SX5E&qDkJF*dewBCH#84`<`!xv#Ec@O*gcgxL;$r

0H3N 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ⅆ3%x>+@VFgeZ`akat>OW?{lwg1xoP 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 Date: Tue, 5 Nov 2013 11:15:46 -0500 Subject: [PATCH 66/95] update .po files with --no-fuzzy-matching in use --- gtk2_ardour/po/cs.po | 3233 +++++++++++-------- gtk2_ardour/po/de.po | 1461 +++++---- gtk2_ardour/po/el.po | 6485 ++++++++++++++++++++++++++++++++----- gtk2_ardour/po/en_GB.po | 2539 ++++++++------- gtk2_ardour/po/es.po | 3306 +++++++++++-------- gtk2_ardour/po/fr.po | 4399 ++++++++++++++++++------- gtk2_ardour/po/it.po | 5013 +++++++++++++++++++++++------ gtk2_ardour/po/nn.po | 3462 +++++++++++++------- gtk2_ardour/po/pl.po | 6357 +++++++++++++++++++++++++++++++----- gtk2_ardour/po/pt.po | 6794 +++++++++++++++++++++++++++++++++++---- gtk2_ardour/po/pt_PT.po | 6469 ++++++++++++++++++++++++++++++++----- gtk2_ardour/po/ru.po | 743 ++--- gtk2_ardour/po/sv.po | 5671 ++++++++++++++++++++++++++------ gtk2_ardour/po/zh.po | 4080 ++++++++++++++++------- libs/ardour/po/cs.po | 120 +- libs/ardour/po/de.po | 98 +- libs/ardour/po/el.po | 513 ++- libs/ardour/po/es.po | 142 +- libs/ardour/po/it.po | 384 ++- libs/ardour/po/nn.po | 259 +- libs/ardour/po/pl.po | 138 +- libs/ardour/po/ru.po | 98 +- libs/ardour/po/sv.po | 126 +- libs/ardour/po/zh.po | 202 +- libs/gtkmm2ext/po/cs.po | 12 +- libs/gtkmm2ext/po/de.po | 12 +- libs/gtkmm2ext/po/el.po | 16 +- libs/gtkmm2ext/po/es.po | 12 +- libs/gtkmm2ext/po/fr.po | 18 +- libs/gtkmm2ext/po/nn.po | 16 +- libs/gtkmm2ext/po/pl.po | 12 +- libs/gtkmm2ext/po/pt.po | 16 +- libs/gtkmm2ext/po/ru.po | 3 +- 33 files changed, 48294 insertions(+), 13915 deletions(-) diff --git a/gtk2_ardour/po/cs.po b/gtk2_ardour/po/cs.po index 5b2fce2fea..f44c8e311f 100644 --- a/gtk2_ardour/po/cs.po +++ b/gtk2_ardour/po/cs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gtk-ardour 0.347.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2013-06-13 12:05+0200\n" "Last-Translator: Pavel Fric \n" "Language-Team: Czech \n" @@ -260,6 +260,18 @@ msgstr "" "\tMartin Blanchard\n" "\tRomain Arnaud \n" +#: about.cc:183 +msgid "" +"German:\n" +"\tKarsten Petersen \n" +"\tSebastian Arnold \n" +"\tRobert Schwede \n" +"\tBenjamin Scherrer \n" +"\tEdgar Aichinger \n" +"\tRichard Oax \n" +"\tRobin Gloster \n" +msgstr "" + #: about.cc:190 msgid "" "Italian:\n" @@ -428,8 +440,8 @@ msgstr "SbÄ›rnice" msgid "Add:" msgstr "PÅ™idat:" -#: add_route_dialog.cc:114 startup.cc:841 time_fx_dialog.cc:91 -#: add_video_dialog.cc:150 video_server_dialog.cc:112 +#: add_route_dialog.cc:114 time_fx_dialog.cc:91 add_video_dialog.cc:150 +#: video_server_dialog.cc:112 msgid "Options" msgstr "Volby" @@ -443,21 +455,22 @@ msgid "Group:" msgstr "Skupina:" #: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 -#: rc_option_editor.cc:1456 rc_option_editor.cc:1458 rc_option_editor.cc:1460 -#: rc_option_editor.cc:1478 rc_option_editor.cc:1480 rc_option_editor.cc:1488 -#: rc_option_editor.cc:1490 rc_option_editor.cc:1508 rc_option_editor.cc:1521 -#: rc_option_editor.cc:1523 rc_option_editor.cc:1525 rc_option_editor.cc:1556 -#: rc_option_editor.cc:1558 rc_option_editor.cc:1560 rc_option_editor.cc:1568 -#: rc_option_editor.cc:1576 rc_option_editor.cc:1584 +#: ardour_ui_ed.cc:476 engine_dialog.cc:236 rc_option_editor.cc:1446 +#: rc_option_editor.cc:1448 rc_option_editor.cc:1450 rc_option_editor.cc:1466 +#: rc_option_editor.cc:1468 rc_option_editor.cc:1476 rc_option_editor.cc:1478 +#: rc_option_editor.cc:1496 rc_option_editor.cc:1509 rc_option_editor.cc:1511 +#: rc_option_editor.cc:1513 rc_option_editor.cc:1544 rc_option_editor.cc:1546 +#: rc_option_editor.cc:1548 rc_option_editor.cc:1556 rc_option_editor.cc:1564 +#: rc_option_editor.cc:1572 msgid "Audio" msgstr "Zvuk" #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 -#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1707 -#: rc_option_editor.cc:1715 rc_option_editor.cc:1723 rc_option_editor.cc:1732 -#: rc_option_editor.cc:1740 rc_option_editor.cc:1748 rc_option_editor.cc:1756 -#: rc_option_editor.cc:1765 rc_option_editor.cc:1774 rc_option_editor.cc:1783 -#: rc_option_editor.cc:1791 rc_option_editor.cc:1799 +#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1695 +#: rc_option_editor.cc:1703 rc_option_editor.cc:1711 rc_option_editor.cc:1720 +#: rc_option_editor.cc:1728 rc_option_editor.cc:1736 rc_option_editor.cc:1744 +#: rc_option_editor.cc:1753 rc_option_editor.cc:1762 rc_option_editor.cc:1771 +#: rc_option_editor.cc:1779 rc_option_editor.cc:1787 msgid "MIDI" msgstr "MIDI" @@ -606,7 +619,7 @@ msgstr "Normalizovat hodnoty" msgid "FFT analysis window" msgstr "Okno pro rozbor FFT" -#: analysis_window.cc:60 editor.cc:1856 +#: analysis_window.cc:60 editor.cc:1857 msgid "Spectral Analysis" msgstr "Spektrální analýza (FFT rozbor)" @@ -656,6 +669,10 @@ msgstr "Klávesové zkratky" msgid "Preferences" msgstr "Nastavení" +#: ardour_ui.cc:191 ardour_ui.cc:197 +msgid "Add Tracks/Busses" +msgstr "" + #: ardour_ui.cc:192 msgid "About" msgstr "O programu" @@ -668,31 +685,70 @@ msgstr "Místa" msgid "Tracks and Busses" msgstr "Stopy a sbÄ›rnice" -#: ardour_ui.cc:195 +#: ardour_ui.cc:195 engine_dialog.cc:67 +msgid "Audio/MIDI Setup" +msgstr "" + +#: ardour_ui.cc:196 msgid "Properties" msgstr "Vlastnosti" -#: ardour_ui.cc:197 bundle_manager.cc:263 +#: ardour_ui.cc:198 bundle_manager.cc:263 msgid "Bundle Manager" msgstr "Správce balíků" -#: ardour_ui.cc:198 big_clock_window.cc:35 +#: ardour_ui.cc:199 big_clock_window.cc:35 msgid "Big Clock" msgstr "Velký ukazatel Äasu" -#: ardour_ui.cc:202 +#: ardour_ui.cc:200 +msgid "Audio Connections" +msgstr "" + +#: ardour_ui.cc:201 +msgid "MIDI Connections" +msgstr "" + +#: ardour_ui.cc:203 msgid "Errors" msgstr "Chyby" -#: ardour_ui.cc:388 -msgid "Starting audio engine" -msgstr "SpouÅ¡tí se zvukový stroj" +#: ardour_ui.cc:436 +msgid "" +"The audio backend was shutdown because:\n" +"\n" +"%1" +msgstr "" -#: ardour_ui.cc:758 startup.cc:638 +#: ardour_ui.cc:438 +msgid "" +"The audio backend has either been shutdown or it\n" +"disconnected %1 because %1\n" +"was not fast enough. Try to restart\n" +"the audio backend and save the session." +msgstr "" + +#: ardour_ui.cc:758 +msgid "NSM server did not announce itself" +msgstr "" + +#: ardour_ui.cc:771 +msgid "NSM: no client ID provided" +msgstr "" + +#: ardour_ui.cc:778 +msgid "NSM: no session created" +msgstr "" + +#: ardour_ui.cc:801 +msgid "NSM: initialization failed" +msgstr "" + +#: ardour_ui.cc:840 startup.cc:379 msgid "%1 is ready for use" msgstr "%1 je pÅ™ipraven pro použití" -#: ardour_ui.cc:806 +#: ardour_ui.cc:882 msgid "" "WARNING: Your system has a limit for maximum amount of locked memory. This " "might cause %1 to run out of memory before your system runs out of memory. \n" @@ -707,23 +763,23 @@ msgstr "" "Můžete se podívat na omezení pro paměť pomocí příkazu 'ulimit -l', a obvykle " "můžete toto nastavení zmÄ›nit %2." -#: ardour_ui.cc:823 +#: ardour_ui.cc:899 msgid "Do not show this window again" msgstr "Neukazovat toto okno s hlášením znovu" -#: ardour_ui.cc:865 +#: ardour_ui.cc:943 msgid "Don't quit" msgstr "NeukonÄit" -#: ardour_ui.cc:866 +#: ardour_ui.cc:944 msgid "Just quit" msgstr "Pouze ukonÄit" -#: ardour_ui.cc:867 +#: ardour_ui.cc:945 msgid "Save and quit" msgstr "Uložit a ukonÄit" -#: ardour_ui.cc:877 +#: ardour_ui.cc:955 msgid "" "%1 was unable to save your session.\n" "\n" @@ -737,15 +793,15 @@ msgstr "" "\n" "\"Pouze ukonÄit\"." -#: ardour_ui.cc:908 +#: ardour_ui.cc:986 msgid "Please wait while %1 cleans up..." msgstr "PoÄkejte, prosím, zatímco %1 uklízí..." -#: ardour_ui.cc:925 +#: ardour_ui.cc:1004 msgid "Unsaved Session" msgstr "Neuložené sezení" -#: ardour_ui.cc:946 +#: ardour_ui.cc:1025 msgid "" "The session \"%1\"\n" "has not been saved.\n" @@ -763,7 +819,7 @@ msgstr "" "\n" "Co chcete dÄ›lat?" -#: ardour_ui.cc:949 +#: ardour_ui.cc:1028 msgid "" "The snapshot \"%1\"\n" "has not been saved.\n" @@ -781,75 +837,76 @@ msgstr "" "\n" "Co chcete dÄ›lat?" -#: ardour_ui.cc:963 +#: ardour_ui.cc:1042 msgid "Prompter" msgstr "Otázka" -#: ardour_ui.cc:1049 -msgid "disconnected" -msgstr "odpojeno" - -#: ardour_ui.cc:1056 +#: ardour_ui.cc:1128 ardour_ui.cc:1136 #, c-format -msgid "JACK: %.1f kHz / %4.1f ms" -msgstr "JACK: %.1f kHz / %4.1f ms" +msgid "Audio: none" +msgstr "" -#: ardour_ui.cc:1060 +#: ardour_ui.cc:1140 #, c-format -msgid "JACK: % kHz / %4.1f ms" -msgstr "JACK: % kHz / %4.1f ms" +msgid "Audio: %.1f kHz / %4.1f ms" +msgstr "" -#: ardour_ui.cc:1078 export_video_dialog.cc:68 +#: ardour_ui.cc:1144 +#, c-format +msgid "Audio: % kHz / %4.1f ms" +msgstr "" + +#: ardour_ui.cc:1162 export_video_dialog.cc:67 msgid "File:" msgstr "Soubor:" -#: ardour_ui.cc:1082 +#: ardour_ui.cc:1166 msgid "BWF" msgstr "BWF" -#: ardour_ui.cc:1085 +#: ardour_ui.cc:1169 msgid "WAV" msgstr "WAV" -#: ardour_ui.cc:1088 +#: ardour_ui.cc:1172 msgid "WAV64" msgstr "WAV64" -#: ardour_ui.cc:1091 session_option_editor.cc:197 +#: ardour_ui.cc:1175 session_option_editor.cc:197 msgid "CAF" msgstr "CAF" -#: ardour_ui.cc:1094 +#: ardour_ui.cc:1178 msgid "AIFF" msgstr "AIFF" -#: ardour_ui.cc:1097 +#: ardour_ui.cc:1181 msgid "iXML" msgstr "iXML" -#: ardour_ui.cc:1100 +#: ardour_ui.cc:1184 msgid "RF64" msgstr "RF64" -#: ardour_ui.cc:1108 +#: ardour_ui.cc:1192 msgid "32-float" msgstr "32-float" -#: ardour_ui.cc:1111 +#: ardour_ui.cc:1195 msgid "24-int" msgstr "24-int" -#: ardour_ui.cc:1114 +#: ardour_ui.cc:1198 msgid "16-int" msgstr "16-int" -#: ardour_ui.cc:1133 +#: ardour_ui.cc:1217 #, c-format msgid "DSP: %5.1f%%" msgstr "" "Digitální zpracování signálu (DSP): %5.1f%%" -#: ardour_ui.cc:1152 +#: ardour_ui.cc:1236 #, c-format msgid "" "Buffers: p:" @@ -860,60 +917,59 @@ msgstr "" "\">%%% c:%%%" -#: ardour_ui.cc:1188 +#: ardour_ui.cc:1277 msgid "Disk: Unknown" msgstr "Disk: Neznámý" -#: ardour_ui.cc:1190 +#: ardour_ui.cc:1279 msgid "Disk: 24hrs+" msgstr "Disk: 24 hodin +" -#: ardour_ui.cc:1208 +#: ardour_ui.cc:1297 msgid "Disk: >24 hrs" msgstr "Disk: >24 hodin" -#: ardour_ui.cc:1219 +#: ardour_ui.cc:1308 #, c-format msgid "Disk: %02dh:%02dm:%02ds" msgstr "Disk: %02dh:%02dm:%02ds" -#: ardour_ui.cc:1245 +#: ardour_ui.cc:1334 #, c-format msgid "Timecode|TC: %s" msgstr "ÄŒasový kód|ÄŒK: %s" -#: ardour_ui.cc:1362 ardour_ui.cc:1371 startup.cc:1054 +#: ardour_ui.cc:1451 ardour_ui.cc:1460 session_dialog.cc:322 +#: session_dialog.cc:327 msgid "Recent Sessions" msgstr "Naposledy otevÅ™ená sezení" -#: ardour_ui.cc:1451 +#: ardour_ui.cc:1539 msgid "" -"%1 is not connected to JACK\n" +"%1 is not connected to any audio backend.\n" "You cannot open or close sessions in this condition" msgstr "" -"%1 není spojen s JACKem.\n" -"Za tohoto stavu není možné otevřít nebo zavřít sezení." -#: ardour_ui.cc:1478 +#: ardour_ui.cc:1563 msgid "Open Session" msgstr "Otevřít sezení" -#: ardour_ui.cc:1503 session_import_dialog.cc:169 -#: session_metadata_dialog.cc:729 startup.cc:1083 +#: ardour_ui.cc:1588 session_dialog.cc:353 session_import_dialog.cc:169 +#: session_metadata_dialog.cc:729 msgid "%1 sessions" msgstr "%1 sezení" -#: ardour_ui.cc:1540 +#: ardour_ui.cc:1625 msgid "You cannot add a track without a session already loaded." msgstr "Stopy můžete pÅ™idat až teprve tehdy, když bylo sezení nahráno." -#: ardour_ui.cc:1548 +#: ardour_ui.cc:1633 msgid "could not create %1 new mixed track" msgid_plural "could not create %1 new mixed tracks" msgstr[0] "NepodaÅ™ilo se vytvoÅ™it %1 novou smíchanou stopu" msgstr[1] "NepodaÅ™ilo se vytvoÅ™it %1 nové smíchané stopy" -#: ardour_ui.cc:1554 ardour_ui.cc:1615 +#: ardour_ui.cc:1639 ardour_ui.cc:1700 msgid "" "There are insufficient JACK ports available\n" "to create a new track or bus.\n" @@ -925,24 +981,24 @@ msgstr "" "MÄ›l byste uložit %1, ukonÄit Ardour\n" "a spustit JACK znovu s vÄ›tším poÄtem přípojek." -#: ardour_ui.cc:1589 +#: ardour_ui.cc:1674 msgid "You cannot add a track or bus without a session already loaded." msgstr "" "Stopy nebo sbÄ›rnice můžete pÅ™idat až teprve tehdy, když bylo sezení nahráno." -#: ardour_ui.cc:1598 +#: ardour_ui.cc:1683 msgid "could not create %1 new audio track" msgid_plural "could not create %1 new audio tracks" msgstr[0] "Nelze vytvoÅ™it %1 novou zvukovou stopu" msgstr[1] "Nelze vytvoÅ™it %1 nové zvukové stopy" -#: ardour_ui.cc:1607 +#: ardour_ui.cc:1692 msgid "could not create %1 new audio bus" msgid_plural "could not create %1 new audio busses" msgstr[0] "NepodaÅ™ilo se vytvoÅ™it %1 novou zvukovou sbÄ›rnici" msgstr[1] "NepodaÅ™ilo se vytvoÅ™it %1 nové zvukové sbÄ›rnice" -#: ardour_ui.cc:1724 +#: ardour_ui.cc:1816 msgid "" "Please create one or more tracks before trying to record.\n" "You can do this with the \"Add Track or Bus\" option in the Session menu." @@ -950,41 +1006,15 @@ msgstr "" "VytvoÅ™te, prosím, jednu nebo i více stop, pÅ™edtím než se pokusíte nahrávat.\n" "Můžete to udÄ›lat volbou \"PÅ™idat stopu nebo sbÄ›rnici\" v nabídce pro sezení." -#: ardour_ui.cc:2114 -msgid "" -"The audio backend (JACK) was shutdown because:\n" -"\n" -"%1" -msgstr "" -"Zvuková podpůrná vrstva (JACK) byla zastavena, protože:\n" -"\n" -"%1" - -#: ardour_ui.cc:2116 -msgid "" -"JACK has either been shutdown or it\n" -"disconnected %1 because %1\n" -"was not fast enough. Try to restart\n" -"JACK, reconnect and save the session." -msgstr "" -"JACK byl buÄ ukonÄen nebo odpojil %1,\n" -"protože %1 nebyl dostateÄnÄ› rychlý.\n" -"MÄ›l byste se pokusit znovu spustit JACK,\n" -"pÅ™ipojit se a uložit sezení." - -#: ardour_ui.cc:2142 -msgid "Unable to start the session running" -msgstr "Nelze spustit nynÄ›jší sezení" - -#: ardour_ui.cc:2222 +#: ardour_ui.cc:2193 msgid "Take Snapshot" msgstr "UdÄ›lat snímek obrazovky" -#: ardour_ui.cc:2223 +#: ardour_ui.cc:2194 msgid "Name of new snapshot" msgstr "Název pro nový snímek obrazovky" -#: ardour_ui.cc:2247 +#: ardour_ui.cc:2218 msgid "" "To ensure compatibility with various systems\n" "snapshot names may not contain a '%1' character" @@ -992,27 +1022,27 @@ msgstr "" "Pro zajiÅ¡tÄ›ní sluÄitelnosti s různými systémy\n" "nesmí názvy snímků obrazovky obsahovat znak '%1'" -#: ardour_ui.cc:2259 +#: ardour_ui.cc:2230 msgid "Confirm Snapshot Overwrite" msgstr "Potvrdit pÅ™epsání snímku obrazovky" -#: ardour_ui.cc:2260 +#: ardour_ui.cc:2231 msgid "A snapshot already exists with that name. Do you want to overwrite it?" msgstr "Snímek obrazovky s tímto názvem již existuje. Chcete jej pÅ™epsat?" -#: ardour_ui.cc:2263 utils_videotl.cc:67 +#: ardour_ui.cc:2234 utils_videotl.cc:67 msgid "Overwrite" msgstr "PÅ™epsat" -#: ardour_ui.cc:2297 +#: ardour_ui.cc:2268 msgid "Rename Session" msgstr "PÅ™ejmenovat sezení" -#: ardour_ui.cc:2298 +#: ardour_ui.cc:2269 msgid "New session name" msgstr "Nový název sezení:" -#: ardour_ui.cc:2312 ardour_ui.cc:2692 ardour_ui.cc:2737 +#: ardour_ui.cc:2283 ardour_ui.cc:2684 ardour_ui.cc:2722 msgid "" "To ensure compatibility with various systems\n" "session names may not contain a '%1' character" @@ -1020,13 +1050,13 @@ msgstr "" "Pro zajiÅ¡tÄ›ní sluÄitelnosti s různými systémy\n" "nesmí názvy sezení obsahovat znak '%1'" -#: ardour_ui.cc:2320 +#: ardour_ui.cc:2291 msgid "" "That name is already in use by another directory/folder. Please try again." msgstr "" "Tento název se již používá jiným adresářem/složkou. Zkuste to, prosím, znovu." -#: ardour_ui.cc:2329 +#: ardour_ui.cc:2300 msgid "" "Renaming this session failed.\n" "Things could be seriously messed up at this point" @@ -1034,19 +1064,19 @@ msgstr "" "PÅ™ejmenování tohoto sezení se nezdaÅ™ilo.\n" "VÄ›ci by v tuto chvíli mohly být vážnÄ› zvorané" -#: ardour_ui.cc:2440 +#: ardour_ui.cc:2411 msgid "Save Template" msgstr "Uložit pÅ™edlohu" -#: ardour_ui.cc:2441 +#: ardour_ui.cc:2412 msgid "Name for template:" msgstr "Název pro pÅ™edlohu:" -#: ardour_ui.cc:2442 +#: ardour_ui.cc:2413 msgid "-template" msgstr "-pÅ™edloha" -#: ardour_ui.cc:2480 +#: ardour_ui.cc:2451 msgid "" "This session\n" "%1\n" @@ -1056,52 +1086,59 @@ msgstr "" "%1\n" "již existuje. Chcete jej otevřít?" -#: ardour_ui.cc:2490 +#: ardour_ui.cc:2461 msgid "Open Existing Session" msgstr "Otevřít stávající sezení" -#: ardour_ui.cc:2728 +#: ardour_ui.cc:2712 msgid "There is no existing session at \"%1\"" msgstr "V \"%1\" není žádné sezení" -#: ardour_ui.cc:2815 +#: ardour_ui.cc:2804 msgid "Please wait while %1 loads your session" msgstr "PoÄkejte, prosím, dokud %1 nenahraje vaÅ¡e sezení" -#: ardour_ui.cc:2830 +#: ardour_ui.cc:2819 msgid "Port Registration Error" msgstr "Chyba v zápisu přípojky" -#: ardour_ui.cc:2831 +#: ardour_ui.cc:2820 msgid "Click the Close button to try again." msgstr "KlepnÄ›te na tlaÄítko Zavřít, abyste to mohli zkusit znovu." -#: ardour_ui.cc:2852 +#: ardour_ui.cc:2841 msgid "Session \"%1 (snapshot %2)\" did not load successfully" msgstr "Projekt \"%1 (snímek obrazovky %2)\" nebyl úspěšnÄ› nahrán." -#: ardour_ui.cc:2858 +#: ardour_ui.cc:2848 msgid "Loading Error" msgstr "Chyba pÅ™i nahrávání" -#: ardour_ui.cc:2859 -msgid "Click the Refresh button to try again." -msgstr "KlepnÄ›te na tlaÄítko Obnovit, abyste to mohli zkusit znovu." +#: ardour_ui.cc:2867 +msgid "" +"This session has been opened in read-only mode.\n" +"\n" +"You will not be able to record or save." +msgstr "" -#: ardour_ui.cc:2941 +#: ardour_ui.cc:2873 +msgid "Read-only Session" +msgstr "" + +#: ardour_ui.cc:2931 msgid "Could not create session in \"%1\"" msgstr "V \"%1\" nelze vytvoÅ™it žádné sezení" -#: ardour_ui.cc:3041 +#: ardour_ui.cc:3031 msgid "No files were ready for clean-up" msgstr "Pro udÄ›lání pořádku nebyly pÅ™ipraveny žádné soubory" -#: ardour_ui.cc:3045 ardour_ui.cc:3055 ardour_ui.cc:3188 ardour_ui.cc:3195 +#: ardour_ui.cc:3035 ardour_ui.cc:3045 ardour_ui.cc:3178 ardour_ui.cc:3185 #: ardour_ui_ed.cc:104 msgid "Clean-up" msgstr "UdÄ›lat pořádek" -#: ardour_ui.cc:3046 +#: ardour_ui.cc:3036 msgid "" "If this seems suprising, \n" "check for any existing snapshots.\n" @@ -1113,19 +1150,19 @@ msgstr "" "jsou pravdÄ›podobnÄ› zaÄlenÄ›ny jeÅ¡tÄ› v nÄ›jakém\n" "starším snímku obrazovky jako oblasti." -#: ardour_ui.cc:3105 +#: ardour_ui.cc:3095 msgid "kilo" msgstr "kilo" -#: ardour_ui.cc:3108 +#: ardour_ui.cc:3098 msgid "mega" msgstr "mega" -#: ardour_ui.cc:3111 +#: ardour_ui.cc:3101 msgid "giga" msgstr "giga" -#: ardour_ui.cc:3116 +#: ardour_ui.cc:3106 msgid "" "The following file was deleted from %2,\n" "releasing %3 %4bytes of disk space" @@ -1139,7 +1176,7 @@ msgstr[1] "" "Následující soubor byl smazán z %2,\n" "a tím se na disku uvolnilo %3 %4 bajtů ukládacího prostoru" -#: ardour_ui.cc:3123 +#: ardour_ui.cc:3113 msgid "" "The following file was not in use and \n" "has been moved to: %2\n" @@ -1177,11 +1214,11 @@ msgstr[1] "" "\n" "uvolní se na disku dalších %3 %4 bajtů ukládacího prostoru.\n" -#: ardour_ui.cc:3183 +#: ardour_ui.cc:3173 msgid "Are you sure you want to clean-up?" msgstr "Jste si jistý, že chcete udÄ›lat pořádek?" -#: ardour_ui.cc:3190 +#: ardour_ui.cc:3180 msgid "" "Clean-up is a destructive operation.\n" "ALL undo/redo information will be lost if you clean-up.\n" @@ -1193,50 +1230,50 @@ msgstr "" "Po udÄ›lání pořádku budou vÅ¡echny nepoužívané a tudíž nepotÅ™ebné zvukové " "soubory pÅ™esunuty do \"mrtvého\" umístÄ›ní." -#: ardour_ui.cc:3198 +#: ardour_ui.cc:3188 msgid "CleanupDialog" msgstr "Dialog vÄ›novaný dÄ›lání pořádku" -#: ardour_ui.cc:3228 +#: ardour_ui.cc:3218 msgid "Cleaned Files" msgstr "Uklizené soubory" -#: ardour_ui.cc:3245 +#: ardour_ui.cc:3235 msgid "deleted file" msgstr "smazané soubory" -#: ardour_ui.cc:3337 +#: ardour_ui.cc:3381 msgid "" "Video-Server was not launched by Ardour. The request to stop it is ignored." msgstr "" "Videoserver nebyl spuÅ¡tÄ›n Ardourem. Požadavek na jeho zastavení se pÅ™ehlíží." -#: ardour_ui.cc:3341 +#: ardour_ui.cc:3385 msgid "Stop Video-Server" msgstr "Zastavit videoserver" -#: ardour_ui.cc:3342 +#: ardour_ui.cc:3386 msgid "Do you really want to stop the Video Server?" msgstr "Opravdu chcete zastavit videoserver?" -#: ardour_ui.cc:3345 +#: ardour_ui.cc:3389 msgid "Yes, Stop It" msgstr "Ano, zastavit" -#: ardour_ui.cc:3371 +#: ardour_ui.cc:3415 msgid "The Video Server is already started." msgstr "" "Videoserver je již spuÅ¡tÄ›n\n" "." -#: ardour_ui.cc:3373 +#: ardour_ui.cc:3417 msgid "" "An external Video Server is configured and can be reached. Not starting a " "new instance." msgstr "" "VnÄ›jší videoserver je nastaven a je dosažitelný. NespouÅ¡tí se nová instance." -#: ardour_ui.cc:3381 ardour_ui.cc:3471 +#: ardour_ui.cc:3425 ardour_ui.cc:3515 msgid "" "Could not connect to the Video Server. Start it or configure its access URL " "in Edit -> Preferences." @@ -1244,36 +1281,36 @@ msgstr "" "NepodaÅ™ilo se pÅ™ipojit k videoserveru. SpusÅ¥te jej nebo nastavte adresu pro " "přístup k nÄ›mu v Úpravy -> Nastavení." -#: ardour_ui.cc:3405 +#: ardour_ui.cc:3449 msgid "Specified docroot is not an existing directory." msgstr "Zadaný koÅ™en dokumentu (docroot) není existujícím adresářem." -#: ardour_ui.cc:3410 +#: ardour_ui.cc:3454 msgid "Given Video Server is not an executable file." msgstr "Daný videoserver není spustitelným souborem." -#: ardour_ui.cc:3443 +#: ardour_ui.cc:3487 msgid "Cannot launch the video-server" msgstr "" -#: ardour_ui.cc:3452 +#: ardour_ui.cc:3496 msgid "Video-server was started but does not respond to requests..." msgstr "" -#: ardour_ui.cc:3497 editor_audio_import.cc:632 +#: ardour_ui.cc:3541 editor_audio_import.cc:632 msgid "could not open %1" msgstr "\"%\" nelze otevřít" -#: ardour_ui.cc:3501 +#: ardour_ui.cc:3545 msgid "no video-file selected" msgstr "Nebyl vybrán žádný videosoubor" -#: ardour_ui.cc:3673 +#: ardour_ui.cc:3717 msgid "Recording was stopped because your system could not keep up." msgstr "" "Nahrávání bylo zastaveno, protože tomu nedostaÄovala rychlost vaÅ¡eho systému." -#: ardour_ui.cc:3702 +#: ardour_ui.cc:3746 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1287,7 +1324,7 @@ msgstr "" "PÅ™esnÄ›ji Å™eÄeno nebylo možné dostateÄnÄ› rychle zapisovat data\n" "tak, aby se podaÅ™ilo udržet krok s nahráváním.\n" -#: ardour_ui.cc:3721 +#: ardour_ui.cc:3765 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1301,11 +1338,11 @@ msgstr "" "PÅ™esnÄ›ji Å™eÄeno nebylo možné dostateÄnÄ› rychle Äíst data\n" "tak, aby se podaÅ™ilo udržet krok s pÅ™ehráváním.\n" -#: ardour_ui.cc:3761 +#: ardour_ui.cc:3805 msgid "Crash Recovery" msgstr "Obnovení po havárii" -#: ardour_ui.cc:3762 +#: ardour_ui.cc:3806 msgid "" "This session appears to have been in the\n" "middle of recording when %1 or\n" @@ -1323,19 +1360,19 @@ msgstr "" "zvuková data, nebo je odmítnout.\n" "RozhodnÄ›te se, prosím, jak chcete dále pokraÄovat.\n" -#: ardour_ui.cc:3774 +#: ardour_ui.cc:3818 msgid "Ignore crash data" msgstr "Odmítnout data" -#: ardour_ui.cc:3775 +#: ardour_ui.cc:3819 msgid "Recover from crash" msgstr "Obnovit data" -#: ardour_ui.cc:3795 +#: ardour_ui.cc:3839 msgid "Sample Rate Mismatch" msgstr "Vzorkovací kmitoÄet neodpovídá" -#: ardour_ui.cc:3796 +#: ardour_ui.cc:3840 msgid "" "This session was created with a sample rate of %1 Hz, but\n" "%2 is currently running at %3 Hz. If you load this session,\n" @@ -1345,23 +1382,23 @@ msgstr "" "%2 nyní běží na %3 Hz. Pokud toto sezení nahrajete,\n" "je možné, že zvuk bude pÅ™ehráván pÅ™i nesprávném vzorkovacím kmitoÄtu.\n" -#: ardour_ui.cc:3805 +#: ardour_ui.cc:3849 msgid "Do not load session" msgstr "Projekt nenahrávat" -#: ardour_ui.cc:3806 +#: ardour_ui.cc:3850 msgid "Load session anyway" msgstr "Projekt pÅ™esto nahrát" -#: ardour_ui.cc:3829 -msgid "Could not disconnect from JACK" -msgstr "Nelze se odpojit od JACKa" +#: ardour_ui.cc:3877 +msgid "Could not disconnect from Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:3842 -msgid "Could not reconnect to JACK" -msgstr "Nelze se znovu spojit s JACKem" +#: ardour_ui.cc:3893 ardour_ui.cc:3896 +msgid "Could not reconnect to the Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:4116 +#: ardour_ui.cc:4172 msgid "" "%4This is a session from an older version of %3%5\n" "\n" @@ -1395,6 +1432,10 @@ msgstr "Uživatelské rozhraní: editor nemohl být spuÅ¡tÄ›n." msgid "UI: cannot setup mixer" msgstr "Uživatelské rozhraní: směšovaÄ nemohl být spuÅ¡tÄ›n." +#: ardour_ui2.cc:82 +msgid "UI: cannot setup meterbridge" +msgstr "" + #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "PÅ™ehrávat od ukazatele polohy pÅ™ehrávání" @@ -1495,6 +1536,10 @@ msgstr "" "potvrdit; úpravy pÅ™ipojit '+' nebo '-' pro zadání Äasů delta (nárůst " "promÄ›nné).\n" +#: ardour_ui2.cc:147 +msgid "Reset Level Meter" +msgstr "" + #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "[CHYBA]:" @@ -1507,51 +1552,51 @@ msgstr "[VAROVÃNÃ]:" msgid "[INFO]: " msgstr "[INFORMACE]: " -#: ardour_ui2.cc:247 ardour_ui_ed.cc:377 +#: ardour_ui2.cc:247 ardour_ui_ed.cc:344 msgid "Auto Return" msgstr "Automatický návrat" -#: ardour_ui2.cc:249 ardour_ui_ed.cc:380 +#: ardour_ui2.cc:249 ardour_ui_ed.cc:347 msgid "Follow Edits" msgstr "Následovat úpravy" -#: ardour_ui2.cc:628 rc_option_editor.cc:1004 rc_option_editor.cc:1022 -#: rc_option_editor.cc:1025 rc_option_editor.cc:1027 rc_option_editor.cc:1029 -#: rc_option_editor.cc:1037 rc_option_editor.cc:1045 rc_option_editor.cc:1047 -#: rc_option_editor.cc:1055 rc_option_editor.cc:1062 rc_option_editor.cc:1071 -#: rc_option_editor.cc:1073 rc_option_editor.cc:1075 rc_option_editor.cc:1083 -#: rc_option_editor.cc:1085 rc_option_editor.cc:1094 +#: ardour_ui2.cc:628 rc_option_editor.cc:1002 rc_option_editor.cc:1020 +#: rc_option_editor.cc:1023 rc_option_editor.cc:1025 rc_option_editor.cc:1027 +#: rc_option_editor.cc:1035 rc_option_editor.cc:1043 rc_option_editor.cc:1045 +#: rc_option_editor.cc:1053 rc_option_editor.cc:1060 rc_option_editor.cc:1069 +#: rc_option_editor.cc:1071 rc_option_editor.cc:1073 rc_option_editor.cc:1081 +#: rc_option_editor.cc:1083 rc_option_editor.cc:1092 #: session_option_editor.cc:234 session_option_editor.cc:236 #: session_option_editor.cc:257 session_option_editor.cc:259 #: session_option_editor.cc:261 session_option_editor.cc:268 msgid "Misc" msgstr "Různé" -#: ardour_ui_dependents.cc:77 +#: ardour_ui_dependents.cc:69 msgid "Setup Editor" msgstr "Nachystat editor" -#: ardour_ui_dependents.cc:79 +#: ardour_ui_dependents.cc:71 msgid "Setup Mixer" msgstr "Nachystat směšovaÄ" -#: ardour_ui_dependents.cc:85 +#: ardour_ui_dependents.cc:77 msgid "Reload Session History" msgstr "Znovu nahrát průbÄ›h sezení" -#: ardour_ui_dialogs.cc:242 +#: ardour_ui_dialogs.cc:238 msgid "Don't close" msgstr "Nezavírat" -#: ardour_ui_dialogs.cc:243 +#: ardour_ui_dialogs.cc:239 msgid "Just close" msgstr "Pouze zavřít" -#: ardour_ui_dialogs.cc:244 +#: ardour_ui_dialogs.cc:240 msgid "Save and close" msgstr "Uložit a zavřít" -#: ardour_ui_dialogs.cc:340 +#: ardour_ui_dialogs.cc:339 msgid "This screen is not tall enough to display the mixer window" msgstr "" "Tato obrazovka není dostateÄnÄ› velká na to, aby zobrazila okno směšovaÄe" @@ -1561,11 +1606,11 @@ msgid "Session" msgstr "Projekt" #: ardour_ui_ed.cc:106 editor_actions.cc:134 editor_regions.cc:115 -#: port_group.cc:457 session_option_editor.cc:82 session_option_editor.cc:89 +#: port_group.cc:458 session_option_editor.cc:82 session_option_editor.cc:89 msgid "Sync" msgstr "Seřídit" -#: ardour_ui_ed.cc:107 engine_dialog.cc:369 +#: ardour_ui_ed.cc:107 msgid "Options" msgstr "Volby" @@ -1593,15 +1638,15 @@ msgstr "Typ souboru" msgid "Sample Format" msgstr "Vzorkovací formát" -#: ardour_ui_ed.cc:114 rc_option_editor.cc:1826 rc_option_editor.cc:1839 +#: ardour_ui_ed.cc:114 rc_option_editor.cc:1814 rc_option_editor.cc:1826 msgid "Control Surfaces" msgstr "Ovládací spínaÄe" -#: ardour_ui_ed.cc:115 rc_option_editor.cc:1558 +#: ardour_ui_ed.cc:115 rc_option_editor.cc:1546 msgid "Plugins" msgstr "Přídavné moduly" -#: ardour_ui_ed.cc:116 rc_option_editor.cc:1902 +#: ardour_ui_ed.cc:116 rc_option_editor.cc:1889 msgid "Metering" msgstr "Ukazatel hladiny" @@ -1687,7 +1732,7 @@ msgid "Stem export..." msgstr "Vyvést vybranou stopu jako jeden soubor..." #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 -#: export_video_dialog.cc:72 +#: export_video_dialog.cc:71 msgid "Export" msgstr "Vyvést" @@ -1699,162 +1744,153 @@ msgstr "Odstranit nepoužívané zdroje..." msgid "Flush Wastebasket" msgstr "Vyprázdnit koÅ¡" -#: ardour_ui_ed.cc:189 keyeditor.cc:253 rc_option_editor.cc:1472 -msgid "JACK" -msgstr "JACK" - -#: ardour_ui_ed.cc:190 route_params_ui.cc:105 -msgid "Latency" -msgstr "Prodleva" - -#: ardour_ui_ed.cc:192 -msgid "Reconnect" -msgstr "PÅ™ipojit znovu" - -#: ardour_ui_ed.cc:195 global_port_matrix.cc:207 io_selector.cc:210 -#: mixer_strip.cc:719 mixer_strip.cc:845 -msgid "Disconnect" -msgstr "Odpojit" - -#: ardour_ui_ed.cc:222 +#: ardour_ui_ed.cc:189 msgid "Quit" msgstr "UkonÄit" -#: ardour_ui_ed.cc:226 +#: ardour_ui_ed.cc:193 msgid "Maximise Editor Space" msgstr "ZvÄ›tÅ¡it okno editoru" -#: ardour_ui_ed.cc:227 +#: ardour_ui_ed.cc:194 msgid "Show Toolbars" msgstr "Ukázat nástrojové panely" -#: ardour_ui_ed.cc:230 mixer_ui.cc:1865 mixer_ui.cc:1871 +#: ardour_ui_ed.cc:197 mixer_ui.cc:1865 mixer_ui.cc:1871 msgid "Window|Mixer" msgstr "Okno/SměšovaÄ" -#: ardour_ui_ed.cc:234 midi_tracer.cc:39 +#: ardour_ui_ed.cc:198 +msgid "Toggle Editor+Mixer" +msgstr "" + +#: ardour_ui_ed.cc:199 meterbridge.cc:230 meterbridge.cc:236 +msgid "Window|Meterbridge" +msgstr "" + +#: ardour_ui_ed.cc:201 midi_tracer.cc:42 msgid "MIDI Tracer" msgstr "SledovaÄ MIDI" -#: ardour_ui_ed.cc:236 +#: ardour_ui_ed.cc:203 msgid "Chat" msgstr "Povídání" -#: ardour_ui_ed.cc:238 +#: ardour_ui_ed.cc:205 msgid "Help|Manual" msgstr "NápovÄ›da|PříruÄka" -#: ardour_ui_ed.cc:239 +#: ardour_ui_ed.cc:206 msgid "Reference" msgstr "Odkaz" -#: ardour_ui_ed.cc:241 plugin_ui.cc:418 +#: ardour_ui_ed.cc:208 plugin_ui.cc:415 msgid "Save" msgstr "Uložit" -#: ardour_ui_ed.cc:249 rc_option_editor.cc:1114 rc_option_editor.cc:1125 -#: rc_option_editor.cc:1134 rc_option_editor.cc:1147 rc_option_editor.cc:1160 -#: rc_option_editor.cc:1169 rc_option_editor.cc:1179 rc_option_editor.cc:1181 -#: rc_option_editor.cc:1191 rc_option_editor.cc:1207 rc_option_editor.cc:1220 -#: rc_option_editor.cc:1238 rc_option_editor.cc:1240 rc_option_editor.cc:1254 -#: rc_option_editor.cc:1257 rc_option_editor.cc:1259 rc_option_editor.cc:1276 -#: rc_option_editor.cc:1287 +#: ardour_ui_ed.cc:216 rc_option_editor.cc:1112 rc_option_editor.cc:1123 +#: rc_option_editor.cc:1132 rc_option_editor.cc:1145 rc_option_editor.cc:1158 +#: rc_option_editor.cc:1167 rc_option_editor.cc:1177 rc_option_editor.cc:1179 +#: rc_option_editor.cc:1189 rc_option_editor.cc:1205 rc_option_editor.cc:1218 +#: rc_option_editor.cc:1236 rc_option_editor.cc:1238 rc_option_editor.cc:1252 +#: rc_option_editor.cc:1255 rc_option_editor.cc:1257 rc_option_editor.cc:1274 +#: rc_option_editor.cc:1285 msgid "Transport" msgstr "PÅ™esun" -#: ardour_ui_ed.cc:255 engine_dialog.cc:85 +#: ardour_ui_ed.cc:222 msgid "Stop" msgstr "Zastavit" -#: ardour_ui_ed.cc:258 +#: ardour_ui_ed.cc:225 msgid "Roll" msgstr "ProjíždÄ›t" -#: ardour_ui_ed.cc:262 +#: ardour_ui_ed.cc:229 msgid "Start/Stop" msgstr "Spustit/Zastavit" -#: ardour_ui_ed.cc:265 +#: ardour_ui_ed.cc:232 msgid "Start/Continue/Stop" msgstr "Spustit/PokraÄovat/Zastavit" -#: ardour_ui_ed.cc:268 +#: ardour_ui_ed.cc:235 msgid "Stop and Forget Capture" msgstr "Zastavit a odmítnout zvukový záznam" -#: ardour_ui_ed.cc:278 +#: ardour_ui_ed.cc:245 msgid "Transition To Roll" msgstr "PÅ™ehrávat dopÅ™edu" -#: ardour_ui_ed.cc:282 +#: ardour_ui_ed.cc:249 msgid "Transition To Reverse" msgstr "PÅ™ehrávat dozadu" -#: ardour_ui_ed.cc:286 +#: ardour_ui_ed.cc:253 msgid "Play Loop Range" msgstr "PÅ™ehrávat rozsah smyÄky" -#: ardour_ui_ed.cc:289 +#: ardour_ui_ed.cc:256 msgid "Play Selected Range" msgstr "PÅ™ehrát vybraný rozsah" -#: ardour_ui_ed.cc:292 +#: ardour_ui_ed.cc:259 msgid "Play Selection w/Preroll" msgstr "PÅ™ehrávat vybranou oblast s pÅ™etáÄením vpÅ™ed" -#: ardour_ui_ed.cc:296 +#: ardour_ui_ed.cc:263 msgid "Enable Record" msgstr "Povolit nahrávání" -#: ardour_ui_ed.cc:299 +#: ardour_ui_ed.cc:266 msgid "Start Recording" msgstr "ZaÄít s nahráváním" -#: ardour_ui_ed.cc:303 +#: ardour_ui_ed.cc:270 msgid "Rewind" msgstr "PÅ™etoÄit zpÄ›t" -#: ardour_ui_ed.cc:306 +#: ardour_ui_ed.cc:273 msgid "Rewind (Slow)" msgstr "PÅ™etoÄit zpÄ›t (pomalu)" -#: ardour_ui_ed.cc:309 +#: ardour_ui_ed.cc:276 msgid "Rewind (Fast)" msgstr "PÅ™etoÄit zpÄ›t (rychle)" -#: ardour_ui_ed.cc:312 startup.cc:727 +#: ardour_ui_ed.cc:279 msgid "Forward" msgstr "PÅ™etoÄit vpÅ™ed" -#: ardour_ui_ed.cc:315 +#: ardour_ui_ed.cc:282 msgid "Forward (Slow)" msgstr "PÅ™etoÄit vpÅ™ed (pomalu)" -#: ardour_ui_ed.cc:318 +#: ardour_ui_ed.cc:285 msgid "Forward (Fast)" msgstr "PÅ™etoÄit vpÅ™ed (rychle)" -#: ardour_ui_ed.cc:321 +#: ardour_ui_ed.cc:288 msgid "Goto Zero" msgstr "SkoÄit k bodu nula" -#: ardour_ui_ed.cc:324 +#: ardour_ui_ed.cc:291 msgid "Goto Start" msgstr "SkoÄit na zaÄátek" -#: ardour_ui_ed.cc:327 +#: ardour_ui_ed.cc:294 msgid "Goto End" msgstr "SkoÄit na konec" -#: ardour_ui_ed.cc:330 +#: ardour_ui_ed.cc:297 msgid "Goto Wall Clock" msgstr "SkoÄit na pÅ™esný místní Äas" -#: ardour_ui_ed.cc:334 +#: ardour_ui_ed.cc:301 msgid "Focus On Clock" msgstr "ZaostÅ™it na ukazatel Äasu" -#: ardour_ui_ed.cc:338 ardour_ui_ed.cc:347 audio_clock.cc:2046 editor.cc:237 +#: ardour_ui_ed.cc:305 ardour_ui_ed.cc:314 audio_clock.cc:2046 editor.cc:237 #: editor_actions.cc:544 editor_actions.cc:553 export_timespan_selector.cc:88 #: session_option_editor.cc:41 session_option_editor.cc:61 #: session_option_editor.cc:80 session_option_editor.cc:96 @@ -1863,129 +1899,125 @@ msgstr "ZaostÅ™it na ukazatel Äasu" msgid "Timecode" msgstr "ÄŒasový kód" -#: ardour_ui_ed.cc:340 ardour_ui_ed.cc:349 editor_actions.cc:542 +#: ardour_ui_ed.cc:307 ardour_ui_ed.cc:316 editor_actions.cc:542 msgid "Bars & Beats" msgstr "Takty & Doby" -#: ardour_ui_ed.cc:342 ardour_ui_ed.cc:351 +#: ardour_ui_ed.cc:309 ardour_ui_ed.cc:318 msgid "Minutes & Seconds" msgstr "Minuty & Sekundy" -#: ardour_ui_ed.cc:344 ardour_ui_ed.cc:353 audio_clock.cc:2050 editor.cc:238 +#: ardour_ui_ed.cc:311 ardour_ui_ed.cc:320 audio_clock.cc:2050 editor.cc:238 #: editor_actions.cc:543 msgid "Samples" msgstr "Vzorky" -#: ardour_ui_ed.cc:356 +#: ardour_ui_ed.cc:323 msgid "Punch In" msgstr "ZaÄít pÅ™epis oblasti" -#: ardour_ui_ed.cc:357 mixer_strip.cc:1905 route_ui.cc:137 +#: ardour_ui_ed.cc:324 mixer_strip.cc:1905 route_ui.cc:137 #: time_info_box.cc:113 msgid "In" msgstr "Vstup" -#: ardour_ui_ed.cc:360 +#: ardour_ui_ed.cc:327 msgid "Punch Out" msgstr "UkonÄit pÅ™epis oblasti" -#: ardour_ui_ed.cc:361 time_info_box.cc:114 +#: ardour_ui_ed.cc:328 time_info_box.cc:114 msgid "Out" msgstr "Výstup" -#: ardour_ui_ed.cc:364 +#: ardour_ui_ed.cc:331 msgid "Punch In/Out" msgstr "PÅ™epsat oblast" -#: ardour_ui_ed.cc:365 +#: ardour_ui_ed.cc:332 msgid "In/Out" msgstr "Vstup/Výstup" -#: ardour_ui_ed.cc:368 rc_option_editor.cc:1071 +#: ardour_ui_ed.cc:335 rc_option_editor.cc:1069 msgid "Click" msgstr "Klepnout" -#: ardour_ui_ed.cc:371 +#: ardour_ui_ed.cc:338 msgid "Auto Input" msgstr "Automatický vstup" -#: ardour_ui_ed.cc:374 +#: ardour_ui_ed.cc:341 msgid "Auto Play" msgstr "Automatické pÅ™ehrávání" -#: ardour_ui_ed.cc:385 +#: ardour_ui_ed.cc:352 msgid "Sync Startup to Video" msgstr "Seřídit spuÅ¡tÄ›ní s videem" -#: ardour_ui_ed.cc:387 +#: ardour_ui_ed.cc:354 msgid "Time Master" msgstr "Řízení Äasu" -#: ardour_ui_ed.cc:394 +#: ardour_ui_ed.cc:361 msgid "Toggle Record Enable Track %1" msgstr "Spustit nahrávání stopy %1" -#: ardour_ui_ed.cc:401 +#: ardour_ui_ed.cc:368 msgid "Percentage" msgstr "Procentní podíl" -#: ardour_ui_ed.cc:402 shuttle_control.cc:169 +#: ardour_ui_ed.cc:369 shuttle_control.cc:169 msgid "Semitones" msgstr "Polotóny" -#: ardour_ui_ed.cc:406 +#: ardour_ui_ed.cc:373 msgid "Send MTC" msgstr "Poslat MTC" -#: ardour_ui_ed.cc:408 +#: ardour_ui_ed.cc:375 msgid "Send MMC" msgstr "Poslat MMC" -#: ardour_ui_ed.cc:410 +#: ardour_ui_ed.cc:377 msgid "Use MMC" msgstr "Použít MMC" -#: ardour_ui_ed.cc:412 rc_option_editor.cc:1710 +#: ardour_ui_ed.cc:379 rc_option_editor.cc:1698 msgid "Send MIDI Clock" msgstr "Poslat Äas MIDI" -#: ardour_ui_ed.cc:414 +#: ardour_ui_ed.cc:381 msgid "Send MIDI Feedback" msgstr "Poslat zpÄ›tnou vazbu MIDI" -#: ardour_ui_ed.cc:420 +#: ardour_ui_ed.cc:387 msgid "Panic" msgstr "Nouzové zastavení" -#: ardour_ui_ed.cc:560 +#: ardour_ui_ed.cc:472 msgid "Wall Clock" msgstr "NástÄ›nné hodiny" -#: ardour_ui_ed.cc:561 +#: ardour_ui_ed.cc:473 msgid "Disk Space" msgstr "Místo na disku" -#: ardour_ui_ed.cc:562 +#: ardour_ui_ed.cc:474 msgid "DSP" msgstr "Digitální zpracování signálu (DSP)" -#: ardour_ui_ed.cc:563 +#: ardour_ui_ed.cc:475 msgid "Buffers" msgstr "Vyrovnávací pamÄ›ti" -#: ardour_ui_ed.cc:564 -msgid "JACK Sampling Rate and Latency" -msgstr "Vzorkovací kmitoÄet a prodleva JACK" - -#: ardour_ui_ed.cc:565 +#: ardour_ui_ed.cc:477 msgid "Timecode Format" msgstr "Formát Äasového kódu" -#: ardour_ui_ed.cc:566 +#: ardour_ui_ed.cc:478 msgid "File Format" msgstr "Souborový formát" -#: ardour_ui_options.cc:65 +#: ardour_ui_options.cc:61 msgid "" "It is not possible to use JACK as the the sync source\n" "when the pull up/down setting is non-zero." @@ -1993,15 +2025,15 @@ msgstr "" "Není možné, aby byl JACK používán jako zdroj pro seřízení\n" "když nastavení vytáhnutí/stáhnutí není nula." -#: ardour_ui_options.cc:321 +#: ardour_ui_options.cc:317 msgid "Internal" msgstr "VnitÅ™ní" -#: ardour_ui_options.cc:482 +#: ardour_ui_options.cc:468 msgid "Enable/Disable external positional sync" msgstr "Povolit/Zakázat vnÄ›jší seřízení podle polohy" -#: ardour_ui_options.cc:484 +#: ardour_ui_options.cc:470 msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "Seřízení k JACKovi není možné: je nastaveno vytáhnutí/stáhnutí videa" @@ -2120,32 +2152,32 @@ msgid "hide track" msgstr "Skrýt tuto stopu" #: automation_time_axis.cc:255 automation_time_axis.cc:307 -#: automation_time_axis.cc:496 gain_meter.cc:195 generic_pluginui.cc:456 -#: generic_pluginui.cc:746 panner_ui.cc:150 +#: automation_time_axis.cc:496 gain_meter.cc:194 generic_pluginui.cc:454 +#: generic_pluginui.cc:775 panner_ui.cc:149 msgid "Automation|Manual" msgstr "Automatizace|PříruÄka" #: automation_time_axis.cc:257 automation_time_axis.cc:318 -#: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 -#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 -#: generic_pluginui.cc:459 generic_pluginui.cc:748 midi_time_axis.cc:1488 -#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:153 +#: automation_time_axis.cc:501 editor.cc:1937 editor.cc:2014 +#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:197 +#: generic_pluginui.cc:457 generic_pluginui.cc:777 midi_time_axis.cc:1488 +#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:152 msgid "Play" msgstr "PÅ™ehrát" #: automation_time_axis.cc:259 automation_time_axis.cc:329 -#: automation_time_axis.cc:506 gain_meter.cc:201 generic_pluginui.cc:462 -#: generic_pluginui.cc:750 panner_ui.cc:156 +#: automation_time_axis.cc:506 gain_meter.cc:200 generic_pluginui.cc:460 +#: generic_pluginui.cc:779 panner_ui.cc:155 msgid "Write" msgstr "Zapsat" #: automation_time_axis.cc:261 automation_time_axis.cc:340 -#: automation_time_axis.cc:511 gain_meter.cc:204 generic_pluginui.cc:465 -#: generic_pluginui.cc:752 panner_ui.cc:159 +#: automation_time_axis.cc:511 gain_meter.cc:203 generic_pluginui.cc:463 +#: generic_pluginui.cc:781 panner_ui.cc:158 msgid "Touch" msgstr "Dotknout se" -#: automation_time_axis.cc:351 generic_pluginui.cc:468 meter_patterns.cc:108 +#: automation_time_axis.cc:351 generic_pluginui.cc:466 meter_patterns.cc:108 msgid "???" msgstr "???" @@ -2170,8 +2202,8 @@ msgstr "Stav" msgid "Discrete" msgstr "Samostatný" -#: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 -#: editor.cc:1526 export_format_dialog.cc:476 +#: automation_time_axis.cc:537 editor.cc:1458 editor.cc:1465 editor.cc:1521 +#: editor.cc:1527 export_format_dialog.cc:476 msgid "Linear" msgstr "Čárový" @@ -2202,13 +2234,13 @@ msgstr "Vstup" msgid "Output" msgstr "Výstup" -#: bundle_manager.cc:264 editor.cc:1974 editor_actions.cc:90 +#: bundle_manager.cc:264 editor.cc:1978 editor_actions.cc:90 #: editor_actions.cc:100 msgid "Edit" msgstr "Upravit" -#: bundle_manager.cc:265 editor.cc:5493 editor_actions.cc:310 -#: editor_actions.cc:368 plugin_ui.cc:419 processor_box.cc:2229 +#: bundle_manager.cc:265 editor.cc:5497 editor_actions.cc:310 +#: editor_actions.cc:368 plugin_ui.cc:416 processor_box.cc:2268 #: route_time_axis.cc:713 msgid "Delete" msgstr "Smazat" @@ -2385,164 +2417,164 @@ msgstr "Délka" msgid "edit note" msgstr "Upravit notu" -#: editor.cc:137 editor.cc:3429 +#: editor.cc:137 editor.cc:3433 msgid "CD Frames" msgstr "Snímky CD" -#: editor.cc:138 editor.cc:3431 +#: editor.cc:138 editor.cc:3435 msgid "Timecode Frames" msgstr "Snímky Äasového kódu" -#: editor.cc:139 editor.cc:3433 +#: editor.cc:139 editor.cc:3437 msgid "Timecode Seconds" msgstr "Sekundy Äasového kódu" -#: editor.cc:140 editor.cc:3435 +#: editor.cc:140 editor.cc:3439 msgid "Timecode Minutes" msgstr "Minuty Äasového kódu" -#: editor.cc:141 editor.cc:3437 +#: editor.cc:141 editor.cc:3441 msgid "Seconds" msgstr "Sekundy" -#: editor.cc:142 editor.cc:3439 +#: editor.cc:142 editor.cc:3443 msgid "Minutes" msgstr "Minuty" -#: editor.cc:143 editor.cc:3413 quantize_dialog.cc:37 quantize_dialog.cc:141 +#: editor.cc:143 editor.cc:3417 quantize_dialog.cc:37 quantize_dialog.cc:141 msgid "Beats/128" msgstr "Doby/128" -#: editor.cc:144 editor.cc:3411 quantize_dialog.cc:38 quantize_dialog.cc:143 +#: editor.cc:144 editor.cc:3415 quantize_dialog.cc:38 quantize_dialog.cc:143 msgid "Beats/64" msgstr "Doby/64" -#: editor.cc:145 editor.cc:3409 quantize_dialog.cc:39 quantize_dialog.cc:145 +#: editor.cc:145 editor.cc:3413 quantize_dialog.cc:39 quantize_dialog.cc:145 msgid "Beats/32" msgstr "Doby/32" -#: editor.cc:146 editor.cc:3407 +#: editor.cc:146 editor.cc:3411 msgid "Beats/28" msgstr "Doby/28" -#: editor.cc:147 editor.cc:3405 +#: editor.cc:147 editor.cc:3409 msgid "Beats/24" msgstr "Doby/24" -#: editor.cc:148 editor.cc:3403 +#: editor.cc:148 editor.cc:3407 msgid "Beats/20" msgstr "Doby/20" -#: editor.cc:149 editor.cc:3401 quantize_dialog.cc:40 quantize_dialog.cc:147 +#: editor.cc:149 editor.cc:3405 quantize_dialog.cc:40 quantize_dialog.cc:147 msgid "Beats/16" msgstr "Doby/16" -#: editor.cc:150 editor.cc:3399 +#: editor.cc:150 editor.cc:3403 msgid "Beats/14" msgstr "Doby/14" -#: editor.cc:151 editor.cc:3397 +#: editor.cc:151 editor.cc:3401 msgid "Beats/12" msgstr "Doby/12" -#: editor.cc:152 editor.cc:3395 +#: editor.cc:152 editor.cc:3399 msgid "Beats/10" msgstr "Doby/10" -#: editor.cc:153 editor.cc:3393 quantize_dialog.cc:41 quantize_dialog.cc:149 +#: editor.cc:153 editor.cc:3397 quantize_dialog.cc:41 quantize_dialog.cc:149 msgid "Beats/8" msgstr "Doby/8" -#: editor.cc:154 editor.cc:3391 +#: editor.cc:154 editor.cc:3395 msgid "Beats/7" msgstr "Doby/7" -#: editor.cc:155 editor.cc:3389 +#: editor.cc:155 editor.cc:3393 msgid "Beats/6" msgstr "Doby/6" -#: editor.cc:156 editor.cc:3387 +#: editor.cc:156 editor.cc:3391 msgid "Beats/5" msgstr "Doby/5" -#: editor.cc:157 editor.cc:3385 quantize_dialog.cc:42 quantize_dialog.cc:151 +#: editor.cc:157 editor.cc:3389 quantize_dialog.cc:42 quantize_dialog.cc:151 msgid "Beats/4" msgstr "Doby/4" -#: editor.cc:158 editor.cc:3383 quantize_dialog.cc:43 quantize_dialog.cc:153 +#: editor.cc:158 editor.cc:3387 quantize_dialog.cc:43 quantize_dialog.cc:153 msgid "Beats/3" msgstr "Doby/3" -#: editor.cc:159 editor.cc:3381 quantize_dialog.cc:44 quantize_dialog.cc:155 +#: editor.cc:159 editor.cc:3385 quantize_dialog.cc:44 quantize_dialog.cc:155 msgid "Beats/2" msgstr "Doby/2" -#: editor.cc:160 editor.cc:3415 quantize_dialog.cc:45 quantize_dialog.cc:157 +#: editor.cc:160 editor.cc:3419 quantize_dialog.cc:45 quantize_dialog.cc:157 msgid "Beats" msgstr "Doby" -#: editor.cc:161 editor.cc:3417 +#: editor.cc:161 editor.cc:3421 msgid "Bars" msgstr "Takty" -#: editor.cc:162 editor.cc:3419 +#: editor.cc:162 editor.cc:3423 msgid "Marks" msgstr "ZnaÄky" -#: editor.cc:163 editor.cc:3421 +#: editor.cc:163 editor.cc:3425 msgid "Region starts" msgstr "ZaÄátek oblasti" -#: editor.cc:164 editor.cc:3423 +#: editor.cc:164 editor.cc:3427 msgid "Region ends" msgstr "Konec oblasti" -#: editor.cc:165 editor.cc:3427 +#: editor.cc:165 editor.cc:3431 msgid "Region syncs" msgstr "Seřízení oblasti" -#: editor.cc:166 editor.cc:3425 +#: editor.cc:166 editor.cc:3429 msgid "Region bounds" msgstr "Hranice oblasti" -#: editor.cc:171 editor.cc:3455 editor_actions.cc:485 +#: editor.cc:171 editor.cc:3459 editor_actions.cc:485 msgid "No Grid" msgstr "Mřížka vypnuta" -#: editor.cc:172 editor.cc:3457 editor_actions.cc:486 +#: editor.cc:172 editor.cc:3461 editor_actions.cc:486 msgid "Grid" msgstr "Mřížka zapnuta" -#: editor.cc:173 editor.cc:3459 editor_actions.cc:487 +#: editor.cc:173 editor.cc:3463 editor_actions.cc:487 msgid "Magnetic" msgstr "Magnetická" -#: editor.cc:178 editor.cc:188 editor.cc:3498 editor.cc:3523 +#: editor.cc:178 editor.cc:188 editor.cc:3502 editor.cc:3527 #: editor_actions.cc:117 editor_actions.cc:468 msgid "Playhead" msgstr "Ukazatel polohy" -#: editor.cc:179 editor.cc:3496 editor_actions.cc:470 +#: editor.cc:179 editor.cc:3500 editor_actions.cc:470 msgid "Marker" msgstr "ZnaÄka" -#: editor.cc:180 editor.cc:189 editor.cc:3525 editor_actions.cc:469 +#: editor.cc:180 editor.cc:189 editor.cc:3529 editor_actions.cc:469 msgid "Mouse" msgstr "MyÅ¡" -#: editor.cc:185 editor.cc:3517 mono_panner_editor.cc:42 +#: editor.cc:185 editor.cc:3521 mono_panner_editor.cc:42 msgid "Left" msgstr "Vlevo" -#: editor.cc:186 editor.cc:3519 mono_panner_editor.cc:47 +#: editor.cc:186 editor.cc:3523 mono_panner_editor.cc:47 msgid "Right" msgstr "Vpravo" -#: editor.cc:187 editor.cc:3521 +#: editor.cc:187 editor.cc:3525 msgid "Center" msgstr "Na stÅ™ed" -#: editor.cc:190 editor.cc:3090 editor.cc:3527 +#: editor.cc:190 editor.cc:3094 editor.cc:3531 msgid "Edit point" msgstr "Pracovní bod" @@ -2602,339 +2634,343 @@ msgstr "ÄŒasová osa videa" msgid "mode" msgstr "Režim" -#: editor.cc:542 +#: editor.cc:541 msgid "Regions" msgstr "Oblasti" -#: editor.cc:543 +#: editor.cc:542 msgid "Tracks & Busses" msgstr "Stopy & SbÄ›rnice" -#: editor.cc:544 +#: editor.cc:543 msgid "Snapshots" msgstr "Snímky obrazovky" -#: editor.cc:545 +#: editor.cc:544 msgid "Track & Bus Groups" msgstr "Skupiny stopy a sbÄ›rnice" -#: editor.cc:546 +#: editor.cc:545 msgid "Ranges & Marks" msgstr "Rozsahy a znaÄky" -#: editor.cc:690 editor.cc:5345 rc_option_editor.cc:1294 -#: rc_option_editor.cc:1302 rc_option_editor.cc:1310 rc_option_editor.cc:1318 -#: rc_option_editor.cc:1335 rc_option_editor.cc:1337 rc_option_editor.cc:1345 -#: rc_option_editor.cc:1353 rc_option_editor.cc:1373 rc_option_editor.cc:1385 -#: rc_option_editor.cc:1387 rc_option_editor.cc:1395 rc_option_editor.cc:1403 -#: rc_option_editor.cc:1411 rc_option_editor.cc:1419 rc_option_editor.cc:1427 -#: rc_option_editor.cc:1442 rc_option_editor.cc:1446 +#: editor.cc:690 editor.cc:5349 rc_option_editor.cc:1292 +#: rc_option_editor.cc:1300 rc_option_editor.cc:1308 rc_option_editor.cc:1316 +#: rc_option_editor.cc:1333 rc_option_editor.cc:1335 rc_option_editor.cc:1343 +#: rc_option_editor.cc:1351 rc_option_editor.cc:1371 rc_option_editor.cc:1383 +#: rc_option_editor.cc:1385 rc_option_editor.cc:1393 rc_option_editor.cc:1401 +#: rc_option_editor.cc:1409 rc_option_editor.cc:1417 rc_option_editor.cc:1432 +#: rc_option_editor.cc:1436 msgid "Editor" msgstr "Editor" -#: editor.cc:1215 editor.cc:1225 editor.cc:4440 editor_actions.cc:130 +#: editor.cc:1215 editor.cc:1225 editor.cc:4444 editor_actions.cc:130 #: editor_actions.cc:1813 msgid "Loop" msgstr "SmyÄka" -#: editor.cc:1231 editor.cc:1241 editor.cc:4467 editor_actions.cc:131 +#: editor.cc:1231 editor.cc:1241 editor.cc:4471 editor_actions.cc:131 #: time_info_box.cc:67 msgid "Punch" msgstr "PÅ™epsání" -#: editor.cc:1352 +#: editor.cc:1353 msgid "Linear (for highly correlated material)" msgstr "Lineární (pro vysoce souvztažný materiál)" -#: editor.cc:1362 editor.cc:1499 editor.cc:1561 +#: editor.cc:1363 editor.cc:1500 editor.cc:1562 msgid "Constant power" msgstr "NemÄ›nná síla" -#: editor.cc:1371 editor.cc:1492 editor.cc:1554 +#: editor.cc:1372 editor.cc:1493 editor.cc:1555 msgid "Symmetric" msgstr "SoumÄ›rný" -#: editor.cc:1381 editor.cc:1474 editor.cc:1536 +#: editor.cc:1382 editor.cc:1475 editor.cc:1537 msgid "Slow" msgstr "Pomalu" -#: editor.cc:1390 editor.cc:1483 editor.cc:1545 sfdb_ui.cc:1627 +#: editor.cc:1391 editor.cc:1484 editor.cc:1546 sfdb_ui.cc:1627 #: sfdb_ui.cc:1736 msgid "Fast" msgstr "Rychle" -#: editor.cc:1437 +#: editor.cc:1438 msgid "programming error: fade in canvas item has no regionview data pointer!" msgstr "" "Chyba v programování: položka plátna postupné zesílení signálu nemá žádný " "ukazatel dat pohledu na oblast!" -#: editor.cc:1448 editor.cc:1512 +#: editor.cc:1449 editor.cc:1513 msgid "Deactivate" msgstr "Zastavit" -#: editor.cc:1450 editor.cc:1514 +#: editor.cc:1451 editor.cc:1515 msgid "Activate" msgstr "Spustit" -#: editor.cc:1458 editor.cc:1521 +#: editor.cc:1459 editor.cc:1522 msgid "Slowest" msgstr "Velmi pomalu" -#: editor.cc:1572 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 +#: editor.cc:1573 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 msgid "programming error: " msgstr "Chyba v programování:" -#: editor.cc:1673 editor.cc:1681 editor_ops.cc:3522 +#: editor.cc:1674 editor.cc:1682 editor_ops.cc:3522 msgid "Freeze" msgstr "Zmrazit" -#: editor.cc:1677 +#: editor.cc:1678 msgid "Unfreeze" msgstr "Rozmrazit" -#: editor.cc:1816 +#: editor.cc:1817 msgid "Selected Regions" msgstr "Vybrané oblasti" -#: editor.cc:1852 editor_markers.cc:895 +#: editor.cc:1853 editor_markers.cc:895 msgid "Play Range" msgstr "PÅ™ehrávat rozsah" -#: editor.cc:1853 editor_markers.cc:898 +#: editor.cc:1854 editor_markers.cc:898 msgid "Loop Range" msgstr "PÅ™ehrávat rozsah smyÄky" -#: editor.cc:1862 editor_actions.cc:332 +#: editor.cc:1863 editor_actions.cc:332 msgid "Move Range Start to Previous Region Boundary" msgstr "PÅ™esunout zaÄátek rozsahu na pÅ™edchozí hranici oblasti" -#: editor.cc:1869 editor_actions.cc:339 +#: editor.cc:1870 editor_actions.cc:339 msgid "Move Range Start to Next Region Boundary" msgstr "PÅ™esunout zaÄátek rozsahu na další hranici oblasti" -#: editor.cc:1876 editor_actions.cc:346 +#: editor.cc:1877 editor_actions.cc:346 msgid "Move Range End to Previous Region Boundary" msgstr "PÅ™esunout konec rozsahu na pÅ™edchozí hranici oblasti" -#: editor.cc:1883 editor_actions.cc:353 +#: editor.cc:1884 editor_actions.cc:353 msgid "Move Range End to Next Region Boundary" msgstr "PÅ™esunout konec rozsahu na další hranici oblasti" -#: editor.cc:1889 +#: editor.cc:1890 msgid "Convert to Region In-Place" msgstr "PÅ™evést na oblast v místÄ›" -#: editor.cc:1890 +#: editor.cc:1891 msgid "Convert to Region in Region List" msgstr "PÅ™evést na oblast v seznamu oblastí" -#: editor.cc:1893 editor_markers.cc:925 +#: editor.cc:1894 editor_markers.cc:925 msgid "Select All in Range" msgstr "Vybrat vÅ¡e v rozsahu" -#: editor.cc:1896 +#: editor.cc:1897 msgid "Set Loop from Range" msgstr "Zřídit smyÄku z rozsahu" -#: editor.cc:1897 +#: editor.cc:1898 msgid "Set Punch from Range" msgstr "Zřídit oblast pÅ™epsání z rozsahu" -#: editor.cc:1900 +#: editor.cc:1901 msgid "Add Range Markers" msgstr "Vložit znaÄky rozsahu" -#: editor.cc:1903 +#: editor.cc:1904 msgid "Crop Region to Range" msgstr "Zkrátit oblast na rozsah" -#: editor.cc:1904 +#: editor.cc:1905 msgid "Fill Range with Region" msgstr "Vyplnit rozsah oblastí" -#: editor.cc:1905 editor_actions.cc:289 +#: editor.cc:1906 editor_actions.cc:289 msgid "Duplicate Range" msgstr "Zdvojit rozsah" -#: editor.cc:1908 +#: editor.cc:1909 msgid "Consolidate Range" msgstr "Sjednotit rozsah" -#: editor.cc:1909 +#: editor.cc:1910 msgid "Consolidate Range With Processing" msgstr "Sjednotit rozsah se zpracováním" -#: editor.cc:1910 +#: editor.cc:1911 msgid "Bounce Range to Region List" msgstr "Vrazit rozsah do seznamu oblastí" -#: editor.cc:1911 +#: editor.cc:1912 msgid "Bounce Range to Region List With Processing" msgstr "Vrazit rozsah do seznamu oblastí se zpracováním" -#: editor.cc:1912 editor_markers.cc:908 +#: editor.cc:1913 editor_markers.cc:908 msgid "Export Range..." msgstr "Vyvést rozsah..." -#: editor.cc:1927 editor.cc:2008 editor_actions.cc:281 +#: editor.cc:1915 +msgid "Export Video Range..." +msgstr "" + +#: editor.cc:1931 editor.cc:2012 editor_actions.cc:281 msgid "Play From Edit Point" msgstr "PÅ™ehrávat od pracovního bodu" -#: editor.cc:1928 editor.cc:2009 +#: editor.cc:1932 editor.cc:2013 msgid "Play From Start" msgstr "PÅ™ehrávat od zaÄátku" -#: editor.cc:1929 +#: editor.cc:1933 msgid "Play Region" msgstr "PÅ™ehrávat oblast" -#: editor.cc:1931 +#: editor.cc:1935 msgid "Loop Region" msgstr "PÅ™ehrávat oblast ve smyÄce" -#: editor.cc:1941 editor.cc:2018 +#: editor.cc:1945 editor.cc:2022 msgid "Select All in Track" msgstr "Vybrat vÅ¡e ve stopÄ›" -#: editor.cc:1942 editor.cc:2019 editor_actions.cc:185 -#: export_timespan_selector.cc:53 processor_box.cc:2237 +#: editor.cc:1946 editor.cc:2023 editor_actions.cc:185 +#: export_timespan_selector.cc:53 processor_box.cc:2276 msgid "Select All" msgstr "Vybrat vÅ¡e" -#: editor.cc:1943 editor.cc:2020 +#: editor.cc:1947 editor.cc:2024 msgid "Invert Selection in Track" msgstr "Obrátit výbÄ›r ve stopÄ›" -#: editor.cc:1944 editor.cc:2021 editor_actions.cc:187 +#: editor.cc:1948 editor.cc:2025 editor_actions.cc:187 msgid "Invert Selection" msgstr "Obrátit výbÄ›r" -#: editor.cc:1946 +#: editor.cc:1950 msgid "Set Range to Loop Range" msgstr "Nastavit vybraný rozsah jako rozsah smyÄky" -#: editor.cc:1947 +#: editor.cc:1951 msgid "Set Range to Punch Range" msgstr "Nastavit vybraný rozsah jako rozsah pÅ™epsání" -#: editor.cc:1949 editor.cc:2023 editor_actions.cc:188 +#: editor.cc:1953 editor.cc:2027 editor_actions.cc:188 msgid "Select All After Edit Point" msgstr "Vybrat vÅ¡echny oblasti po pracovním bodÄ›" -#: editor.cc:1950 editor.cc:2024 editor_actions.cc:189 +#: editor.cc:1954 editor.cc:2028 editor_actions.cc:189 msgid "Select All Before Edit Point" msgstr "Vybrat vÅ¡echny oblasti pÅ™ed pracovním bodem" -#: editor.cc:1951 editor.cc:2025 +#: editor.cc:1955 editor.cc:2029 msgid "Select All After Playhead" msgstr "Vybrat vÅ¡echny oblasti po ukazateli polohy" -#: editor.cc:1952 editor.cc:2026 +#: editor.cc:1956 editor.cc:2030 msgid "Select All Before Playhead" msgstr "Vybrat vÅ¡echny oblasti pÅ™ed ukazatelem polohy" -#: editor.cc:1953 +#: editor.cc:1957 msgid "Select All Between Playhead and Edit Point" msgstr "Vybrat vÅ¡echny oblasti mezi ukazatelem polohy a pracovním bodem" -#: editor.cc:1954 +#: editor.cc:1958 msgid "Select All Within Playhead and Edit Point" msgstr "Vybrat vÅ¡echny oblasti v rámci ukazatele polohy a pracovním bodem" -#: editor.cc:1955 +#: editor.cc:1959 msgid "Select Range Between Playhead and Edit Point" msgstr "Vybrat rozsah mezi ukazatelem polohy a pracovním bodem" -#: editor.cc:1957 editor.cc:2028 editor_actions.cc:127 editor_actions.cc:128 +#: editor.cc:1961 editor.cc:2032 editor_actions.cc:127 editor_actions.cc:128 msgid "Select" msgstr "Vybrat" -#: editor.cc:1965 editor.cc:2036 editor_actions.cc:309 processor_box.cc:2222 +#: editor.cc:1969 editor.cc:2040 editor_actions.cc:309 processor_box.cc:2261 msgid "Cut" msgstr "Vyjmout" -#: editor.cc:1966 editor.cc:2037 editor_actions.cc:312 processor_box.cc:2225 +#: editor.cc:1970 editor.cc:2041 editor_actions.cc:312 processor_box.cc:2264 msgid "Copy" msgstr "Kopírovat" -#: editor.cc:1967 editor.cc:2038 editor_actions.cc:313 processor_box.cc:2233 +#: editor.cc:1971 editor.cc:2042 editor_actions.cc:313 processor_box.cc:2272 msgid "Paste" msgstr "Vložit" -#: editor.cc:1971 editor_actions.cc:87 +#: editor.cc:1975 editor_actions.cc:87 msgid "Align" msgstr "Zarovnat" -#: editor.cc:1972 +#: editor.cc:1976 msgid "Align Relative" msgstr "Zarovnat pomÄ›rnÄ›" -#: editor.cc:1979 +#: editor.cc:1983 msgid "Insert Selected Region" msgstr "Vložit vybranou oblast" -#: editor.cc:1980 +#: editor.cc:1984 msgid "Insert Existing Media" msgstr "Vložit stávající zvukové soubory" -#: editor.cc:1989 editor.cc:2045 +#: editor.cc:1993 editor.cc:2049 msgid "Nudge Entire Track Later" msgstr "PostrÄit celou stopu o krok pozdÄ›ji" -#: editor.cc:1990 editor.cc:2046 +#: editor.cc:1994 editor.cc:2050 msgid "Nudge Track After Edit Point Later" msgstr "PostrÄit stopu po pracovním bodu o krok pozdÄ›ji" -#: editor.cc:1991 editor.cc:2047 +#: editor.cc:1995 editor.cc:2051 msgid "Nudge Entire Track Earlier" msgstr "PostrÄit celou stopu o krok dříve" -#: editor.cc:1992 editor.cc:2048 +#: editor.cc:1996 editor.cc:2052 msgid "Nudge Track After Edit Point Earlier" msgstr "PostrÄit stopu po pracovním bodu o krok dříve" -#: editor.cc:1994 editor.cc:2050 +#: editor.cc:1998 editor.cc:2054 msgid "Nudge" msgstr "PostrÄit" -#: editor.cc:3070 +#: editor.cc:3074 msgid "Smart Mode (add Range functions to Object mode)" msgstr "Chytrý režim (pÅ™idat funkce rozsahu do pÅ™edmÄ›tového režimu)" -#: editor.cc:3071 +#: editor.cc:3075 msgid "Object Mode (select/move Objects)" msgstr "PÅ™edmÄ›tový režim (Vybrat/Posunout pÅ™edmÄ›ty)" -#: editor.cc:3072 +#: editor.cc:3076 msgid "Range Mode (select/move Ranges)" msgstr "Rozsahový režim (Vybrat/Posunout rozsahy)" -#: editor.cc:3073 +#: editor.cc:3077 msgid "Draw/Edit MIDI Notes" msgstr "Kreslit/Upravit noty MIDI" -#: editor.cc:3074 +#: editor.cc:3078 msgid "Draw Region Gain" msgstr "Nakreslit sílu hlasitosti v oblasti" -#: editor.cc:3075 +#: editor.cc:3079 msgid "Select Zoom Range" msgstr "Vybrat rozsah pro pÅ™iblížení a oddálení" -#: editor.cc:3076 +#: editor.cc:3080 msgid "Stretch/Shrink Regions and MIDI Notes" msgstr "Protáhnout/ZmenÅ¡it oblasti a noty MIDI" -#: editor.cc:3077 +#: editor.cc:3081 msgid "Listen to Specific Regions" msgstr "Poslouchat vybrané oblasti" -#: editor.cc:3078 +#: editor.cc:3082 msgid "Note Level Editing" msgstr "Upravit na úrovni not" -#: editor.cc:3079 +#: editor.cc:3083 msgid "" "Groups: click to (de)activate\n" "Context-click for other operations" @@ -2942,51 +2978,51 @@ msgstr "" "Skupiny: klepnout pro zapnutí/vypnutí\n" "Klepnutí na související nabídku pro jiné operace" -#: editor.cc:3080 +#: editor.cc:3084 msgid "Nudge Region/Selection Later" msgstr "PostrÄit oblast/výbÄ›r o krok pozdÄ›ji" -#: editor.cc:3081 +#: editor.cc:3085 msgid "Nudge Region/Selection Earlier" msgstr "PostrÄit oblast/výbÄ›r o krok dříve" -#: editor.cc:3082 editor_actions.cc:242 +#: editor.cc:3086 editor_actions.cc:242 msgid "Zoom In" msgstr "PÅ™iblížit" -#: editor.cc:3083 editor_actions.cc:241 +#: editor.cc:3087 editor_actions.cc:241 msgid "Zoom Out" msgstr "Oddálit" -#: editor.cc:3084 editor_actions.cc:243 +#: editor.cc:3088 editor_actions.cc:243 msgid "Zoom to Session" msgstr "Pohled na celé sezení" -#: editor.cc:3085 +#: editor.cc:3089 msgid "Zoom focus" msgstr "Pohled na stÅ™ed" -#: editor.cc:3086 +#: editor.cc:3090 msgid "Expand Tracks" msgstr "Rozbalit stopy" -#: editor.cc:3087 +#: editor.cc:3091 msgid "Shrink Tracks" msgstr "ZmenÅ¡it stopy" -#: editor.cc:3088 +#: editor.cc:3092 msgid "Snap/Grid Units" msgstr "Jednotky zapadnutí/mřížky" -#: editor.cc:3089 +#: editor.cc:3093 msgid "Snap/Grid Mode" msgstr "Režim zapadnutí/mřížky" -#: editor.cc:3091 +#: editor.cc:3095 msgid "Edit Mode" msgstr "Režim úprav" -#: editor.cc:3092 +#: editor.cc:3096 msgid "" "Nudge Clock\n" "(controls distance used to nudge regions and selections)" @@ -2994,39 +3030,39 @@ msgstr "" "Hodiny postrÄení\n" "(řídí vzdálenost použitou k postrÄení oblastí a výbÄ›rů)" -#: editor.cc:3194 +#: editor.cc:3198 msgid "malformed URL passed to drag-n-drop code" msgstr "Neplatná adresa (URL) pÅ™edaná kódu \"táhni a pusÅ¥\"" -#: editor.cc:3256 editor_actions.cc:291 +#: editor.cc:3260 editor_actions.cc:291 msgid "Command|Undo" msgstr "Příkaz|ZpÄ›t" -#: editor.cc:3258 +#: editor.cc:3262 msgid "Command|Undo (%1)" msgstr "Příkaz|ZpÄ›t (%1)" -#: editor.cc:3265 editor_actions.cc:292 +#: editor.cc:3269 editor_actions.cc:292 msgid "Redo" msgstr "Znovu" -#: editor.cc:3267 +#: editor.cc:3271 msgid "Redo (%1)" msgstr "Znovu (%1)" -#: editor.cc:3286 editor.cc:3310 editor_actions.cc:106 editor_actions.cc:1794 +#: editor.cc:3290 editor.cc:3314 editor_actions.cc:106 editor_actions.cc:1794 msgid "Duplicate" msgstr "Zdvojit" -#: editor.cc:3287 +#: editor.cc:3291 msgid "Number of duplications:" msgstr "PoÄet zdvojení:" -#: editor.cc:3864 +#: editor.cc:3868 msgid "Playlist Deletion" msgstr "Smazání seznamu skladeb" -#: editor.cc:3865 +#: editor.cc:3869 msgid "" "Playlist %1 is currently unused.\n" "If it is kept, its audio files will not be cleaned.\n" @@ -3037,36 +3073,37 @@ msgstr "" "používány.\n" "Jestliže se smaže, budou jím používané zvukové soubory smazány." -#: editor.cc:3875 +#: editor.cc:3879 msgid "Delete Playlist" msgstr "Smazat seznam skladeb" -#: editor.cc:3876 +#: editor.cc:3880 msgid "Keep Playlist" msgstr "Ponechat seznam skladeb" -#: editor.cc:3877 editor_audio_import.cc:581 editor_ops.cc:5856 -#: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 +#: editor.cc:3881 editor_audio_import.cc:581 editor_ops.cc:5856 +#: engine_dialog.cc:1711 sfdb_freesound_mootcher.cc:69 processor_box.cc:2030 +#: processor_box.cc:2055 msgid "Cancel" msgstr "ZruÅ¡it" -#: editor.cc:4021 +#: editor.cc:4025 msgid "new playlists" msgstr "Nový seznam skladeb" -#: editor.cc:4037 +#: editor.cc:4041 msgid "copy playlists" msgstr "Kopírovat seznam skladeb" -#: editor.cc:4052 +#: editor.cc:4056 msgid "clear playlists" msgstr "Vyprázdnit seznam skladeb" -#: editor.cc:4687 +#: editor.cc:4691 msgid "Please wait while %1 loads visual data." msgstr "PoÄkejte, prosím, zatímco %1 nahrává vizuální data." -#: editor.cc:5492 editor_markers.cc:940 panner_ui.cc:393 processor_box.cc:2253 +#: editor.cc:5496 editor_markers.cc:940 panner_ui.cc:392 processor_box.cc:2292 msgid "Edit..." msgstr "Upravit..." @@ -3115,8 +3152,8 @@ msgstr "Vrstvení" msgid "Position" msgstr "Poloha" -#: editor_actions.cc:101 gain_meter.cc:121 gain_meter.cc:791 panner_ui.cc:177 -#: panner_ui.cc:586 +#: editor_actions.cc:101 gain_meter.cc:120 gain_meter.cc:794 panner_ui.cc:176 +#: panner_ui.cc:585 msgid "Trim" msgstr "UstÅ™ihnout" @@ -3166,7 +3203,7 @@ msgstr "Volby pro MIDI" msgid "Misc Options" msgstr "Různé volby" -#: editor_actions.cc:115 rc_option_editor.cc:1460 route_group_dialog.cc:48 +#: editor_actions.cc:115 rc_option_editor.cc:1450 route_group_dialog.cc:48 #: session_option_editor.cc:218 session_option_editor.cc:225 msgid "Monitoring" msgstr "Sledování" @@ -3344,7 +3381,7 @@ msgstr "Ukazatele polohy na zaÄátek rozsahu výbÄ›ru" msgid "Playhead to Range End" msgstr "Ukazatele polohy na konec rozsahu výbÄ›ru" -#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2239 +#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2278 msgid "Deselect All" msgstr "OdznaÄit vÅ¡e" @@ -3903,7 +3940,7 @@ msgstr "Min:Sek" msgid "Video Monitor" msgstr "Sledování videa" -#: editor_actions.cc:549 rc_option_editor.cc:1842 +#: editor_actions.cc:549 rc_option_editor.cc:1829 msgid "Video" msgstr "Video" @@ -3911,6 +3948,10 @@ msgstr "Video" msgid "Always on Top" msgstr "Vždy nahoÅ™e" +#: editor_actions.cc:554 +msgid "Frame number" +msgstr "" + #: editor_actions.cc:555 msgid "Timecode Background" msgstr "Pozadí Äasového kódu" @@ -4418,31 +4459,31 @@ msgstr "Kopírovat znaÄku tempa" msgid "move tempo mark" msgstr "Posunout znaÄku tempa" -#: editor_drag.cc:2545 +#: editor_drag.cc:2550 msgid "change fade in length" msgstr "ZmÄ›nit délku postupného zesílení signálu" -#: editor_drag.cc:2663 +#: editor_drag.cc:2668 msgid "change fade out length" msgstr "ZmÄ›nit délku postupného slábnutí signálu" -#: editor_drag.cc:3018 +#: editor_drag.cc:3023 msgid "move marker" msgstr "Pohnout znaÄkou" -#: editor_drag.cc:3581 +#: editor_drag.cc:3586 msgid "An error occurred while executing time stretch operation" msgstr "PÅ™i provádÄ›ní operace protáhnutí Äasu se vyskytla chyba" -#: editor_drag.cc:4011 +#: editor_drag.cc:4016 msgid "programming_error: %1" msgstr "Chyba v programování: %1" -#: editor_drag.cc:4081 editor_markers.cc:680 +#: editor_drag.cc:4086 editor_markers.cc:680 msgid "new range marker" msgstr "Nová znaÄka rozsahu" -#: editor_drag.cc:4762 +#: editor_drag.cc:4767 msgid "rubberband selection" msgstr "Pružný výbÄ›r oblasti" @@ -4557,8 +4598,8 @@ msgstr "Bez názvu" #: editor_markers.cc:1022 editor_markers.cc:1041 editor_markers.cc:1071 #: editor_markers.cc:1102 editor_markers.cc:1132 editor_markers.cc:1160 #: editor_markers.cc:1191 editor_markers.cc:1216 editor_markers.cc:1267 -#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1514 -#: editor_mouse.cc:2478 +#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1526 +#: editor_mouse.cc:2528 msgid "programming error: marker canvas item has no marker object pointer!" msgstr "" "Chyba v programování: položka plátna znaÄka nemá žádný ukazatel objektu " @@ -4657,32 +4698,32 @@ msgstr "Vybrat rozsah" msgid "Set Punch Range" msgstr "Nastavit rozsah pÅ™epsání" -#: editor_markers.cc:1351 editor_ops.cc:1699 +#: editor_markers.cc:1362 editor_ops.cc:1699 msgid "New Name:" msgstr "Nový název:" -#: editor_markers.cc:1354 +#: editor_markers.cc:1365 msgid "Rename Mark" msgstr "PÅ™ejmenovat znaÄku" -#: editor_markers.cc:1356 +#: editor_markers.cc:1367 msgid "Rename Range" msgstr "PÅ™ejmenovat rozsah" -#: editor_markers.cc:1363 editor_mouse.cc:2510 processor_box.cc:1781 -#: processor_box.cc:2235 route_time_axis.cc:982 route_ui.cc:1540 +#: editor_markers.cc:1374 editor_mouse.cc:2560 processor_box.cc:1808 +#: processor_box.cc:2274 route_time_axis.cc:982 route_ui.cc:1540 msgid "Rename" msgstr "PÅ™ejmenovat" -#: editor_markers.cc:1376 +#: editor_markers.cc:1387 msgid "rename marker" msgstr "PÅ™ejmenovat znaÄku" -#: editor_markers.cc:1399 +#: editor_markers.cc:1411 msgid "set loop range" msgstr "Nastavit rozsah smyÄky" -#: editor_markers.cc:1405 +#: editor_markers.cc:1417 msgid "set punch range" msgstr "Nastavit rozsah pÅ™epsání" @@ -4695,7 +4736,7 @@ msgstr "" msgid "Editor::event_frame() used on unhandled event type %1" msgstr "Editor::event_frame() se používá u neznámého druhu události %1" -#: editor_mouse.cc:2235 editor_mouse.cc:2260 editor_mouse.cc:2273 +#: editor_mouse.cc:2285 editor_mouse.cc:2310 editor_mouse.cc:2323 msgid "" "programming error: control point canvas item has no control point object " "pointer!" @@ -4703,15 +4744,15 @@ msgstr "" "Chyba v programování: položka plátna místo ovládání nemá žádný ukazatel " "objektu místa ovládání!" -#: editor_mouse.cc:2416 +#: editor_mouse.cc:2466 msgid "start point trim" msgstr "UstÅ™ihnout poÄáteÄní bod" -#: editor_mouse.cc:2441 +#: editor_mouse.cc:2491 msgid "End point trim" msgstr "UstÅ™ihnout koncový bod" -#: editor_mouse.cc:2508 +#: editor_mouse.cc:2558 msgid "Name for region:" msgstr "Název oblasti:" @@ -4807,7 +4848,7 @@ msgstr "Dát oblasti zcela dolů" msgid "Rename Region" msgstr "PÅ™ejmenovat oblast" -#: editor_ops.cc:2372 processor_box.cc:1779 route_ui.cc:1538 +#: editor_ops.cc:2372 processor_box.cc:1806 route_ui.cc:1538 msgid "New name:" msgstr "Nový název:" @@ -5197,7 +5238,7 @@ msgstr "" msgid "tracks" msgstr "Stopy" -#: editor_ops.cc:6485 route_ui.cc:1822 +#: editor_ops.cc:6485 route_ui.cc:1821 msgid "track" msgstr "Stopa" @@ -5205,7 +5246,7 @@ msgstr "Stopa" msgid "busses" msgstr "SbÄ›rnice" -#: editor_ops.cc:6491 route_ui.cc:1822 +#: editor_ops.cc:6491 route_ui.cc:1821 msgid "bus" msgstr "SbÄ›rnice" @@ -5338,8 +5379,8 @@ msgstr "PÅ™" msgid "Region position glued to Bars|Beats time?" msgstr "Poloha oblasti pÅ™ilepena k taktům|dobám?" -#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:759 -#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:554 +#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:762 +#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:553 #: stereo_panner.cc:237 msgid "M" msgstr "Z" @@ -5384,8 +5425,7 @@ msgstr "Odstranit nepoužívané oblasti" msgid "Mult." msgstr "Více" -#: editor_regions.cc:847 engine_dialog.cc:84 midi_list_editor.cc:103 -#: time_info_box.cc:91 +#: editor_regions.cc:847 midi_list_editor.cc:103 time_info_box.cc:91 msgid "Start" msgstr "Spustit" @@ -5451,7 +5491,7 @@ msgstr "Sólo" msgid "SI" msgstr "SamS" -#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1880 +#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1867 msgid "Solo Isolated" msgstr "Samostatné sólo" @@ -5672,263 +5712,218 @@ msgstr "" "Protáhnutí Äasu (timefx) nemohlo být provedeno - PÅ™i vytváření vlákna doÅ¡lo " "k chybÄ›" -#: engine_dialog.cc:75 -msgid "Realtime" -msgstr "ProvádÄ›ný ve skuteÄném Äase" - -#: engine_dialog.cc:76 -msgid "Do not lock memory" -msgstr "Nezamykat přístup do pamÄ›ti" - -#: engine_dialog.cc:77 -msgid "Unlock memory" -msgstr "Otevřít přístup do pamÄ›ti" - -#: engine_dialog.cc:78 -msgid "No zombies" -msgstr "Žádné živé mrtvoly (mÄ›kký režim)" - #: engine_dialog.cc:79 -msgid "Provide monitor ports" -msgstr "Zřídit přípojky pro sledování" - -#: engine_dialog.cc:80 -msgid "Force 16 bit" -msgstr "Vynutit 16 bit" - -#: engine_dialog.cc:81 -msgid "H/W monitoring" -msgstr "Sledování pomocí technického vybavení" - -#: engine_dialog.cc:82 -msgid "H/W metering" -msgstr "Měření pomocí technického vybavení" - -#: engine_dialog.cc:83 -msgid "Verbose output" -msgstr "Podrobná hlášení o stavu" - -#: engine_dialog.cc:103 -msgid "8000Hz" -msgstr "8000 Hz" - -#: engine_dialog.cc:104 -msgid "22050Hz" -msgstr "22050 Hz" - -#: engine_dialog.cc:105 -msgid "44100Hz" -msgstr "44100 Hz" - -#: engine_dialog.cc:106 -msgid "48000Hz" -msgstr "48000 Hz" - -#: engine_dialog.cc:107 -msgid "88200Hz" -msgstr "88200 Hz" - -#: engine_dialog.cc:108 -msgid "96000Hz" -msgstr "96000 Hz" - -#: engine_dialog.cc:109 -msgid "192000Hz" -msgstr "192000 Hz" - -#: engine_dialog.cc:127 engine_dialog.cc:132 engine_dialog.cc:169 -#: engine_dialog.cc:562 midi_channel_selector.cc:163 -#: midi_channel_selector.cc:402 midi_channel_selector.cc:438 -#: rc_option_editor.cc:1250 sfdb_ui.cc:538 -msgid "None" -msgstr "Žádný" - -#: engine_dialog.cc:128 engine_dialog.cc:563 -msgid "Triangular" -msgstr "Trojúhelníkový" - -#: engine_dialog.cc:129 engine_dialog.cc:565 -msgid "Rectangular" -msgstr "Obdélníkový" - -#: engine_dialog.cc:130 engine_dialog.cc:567 -msgid "Shaped" -msgstr "Tvarovaný" - -#: engine_dialog.cc:158 engine_dialog.cc:483 engine_dialog.cc:974 -msgid "Playback/recording on 1 device" -msgstr "PÅ™ehrávání/Nahrávání s jedním zařízením" - -#: engine_dialog.cc:159 engine_dialog.cc:487 engine_dialog.cc:540 -#: engine_dialog.cc:977 -msgid "Playback/recording on 2 devices" -msgstr "PÅ™ehrávání/Nahrávání se dvÄ›ma zařízeními" - -#: engine_dialog.cc:160 engine_dialog.cc:503 engine_dialog.cc:980 -msgid "Playback only" -msgstr "Pouze pÅ™ehrávání" - -#: engine_dialog.cc:161 engine_dialog.cc:505 engine_dialog.cc:983 -msgid "Recording only" -msgstr "Pouze nahrávání" - -#: engine_dialog.cc:171 engine_dialog.cc:448 -msgid "coremidi" +msgid "Device Control Panel" msgstr "" -#: engine_dialog.cc:173 engine_dialog.cc:581 -msgid "seq" -msgstr "sekv" +#: engine_dialog.cc:80 engine_dialog.cc:1725 +msgid "Measure" +msgstr "" -#: engine_dialog.cc:174 engine_dialog.cc:583 -msgid "raw" -msgstr "nezpracovaný" +#: engine_dialog.cc:81 +msgid "Use results" +msgstr "" -#: engine_dialog.cc:181 +#: engine_dialog.cc:82 +msgid "Back to settings ... (ignore results)" +msgstr "" + +#: engine_dialog.cc:83 +msgid "Calibrate..." +msgstr "" + +#: engine_dialog.cc:87 +msgid "Refresh list" +msgstr "" + +#: engine_dialog.cc:107 +msgid "" +"No audio/MIDI backends detected. %1 cannot run\n" +"\n" +"(This is a build/packaging/system error. It should never happen.)" +msgstr "" + +#: engine_dialog.cc:136 +msgid "Latency Measurement Tool" +msgstr "" + +#: engine_dialog.cc:151 +msgid "" +"Turn down the volume on your audio equipment to a very " +"low level." +msgstr "" + +#: engine_dialog.cc:159 +msgid "Select two channels below and connect them using a cable." +msgstr "" + +#: engine_dialog.cc:164 +msgid "Output channel" +msgstr "" + +#: engine_dialog.cc:172 +msgid "Input channel" +msgstr "" + +#: engine_dialog.cc:207 +msgid "Once the channels are connected, click the \"Measure\" button." +msgstr "" + +#: engine_dialog.cc:214 +msgid "When satisfied with the results, click the \"Use results\" button." +msgstr "" + +#: engine_dialog.cc:229 engine_dialog.cc:1727 +msgid "No measurement results yet" +msgstr "" + +#: engine_dialog.cc:238 route_params_ui.cc:105 +msgid "Latency" +msgstr "Prodleva" + +#: engine_dialog.cc:333 +msgid "Audio System:" +msgstr "" + +#: engine_dialog.cc:374 msgid "Driver:" msgstr "OvladaÄ:" -#: engine_dialog.cc:186 -msgid "Audio Interface:" -msgstr "Rozhraní pro zvuk:" +#: engine_dialog.cc:380 +msgid "Device:" +msgstr "" -#: engine_dialog.cc:191 sfdb_ui.cc:147 sfdb_ui.cc:260 sfdb_ui.cc:265 +#: engine_dialog.cc:385 engine_dialog.cc:475 sfdb_ui.cc:147 sfdb_ui.cc:260 +#: sfdb_ui.cc:265 msgid "Sample rate:" msgstr "Vzorkovací kmitoÄet:" -#: engine_dialog.cc:196 +#: engine_dialog.cc:391 engine_dialog.cc:482 msgid "Buffer size:" msgstr "Velikost vyrovnávací pamÄ›ti:" -#: engine_dialog.cc:202 -msgid "Number of buffers:" -msgstr "PoÄet vyrovnávacích pamÄ›tí:" - -#: engine_dialog.cc:209 -msgid "Approximate latency:" -msgstr "PÅ™ibližná prodleva:" - -#: engine_dialog.cc:222 -msgid "Audio mode:" -msgstr "Režim zvuku:" - -#: engine_dialog.cc:284 engine_dialog.cc:408 -msgid "Ignore" -msgstr "Nevšímat si" - -#: engine_dialog.cc:292 -msgid "Client timeout" -msgstr "PÅ™eruÅ¡ení klienta" - -#: engine_dialog.cc:299 -msgid "Number of ports:" -msgstr "PoÄet přípojek:" - -#: engine_dialog.cc:304 -msgid "MIDI driver:" -msgstr "OvladaÄ MIDI:" - -#: engine_dialog.cc:310 -msgid "Dither:" -msgstr "Vložení Å¡umu do signálu:" - -#: engine_dialog.cc:319 -msgid "" -"No JACK server found anywhere on this system. Please install JACK and restart" +#: engine_dialog.cc:404 +msgid "Input Channels:" msgstr "" -"V tomto systému nebyl nalezen žádný server JACK. Nainstalujte, prosím, JACK " -"a spusÅ¥te Ardour znovu" -#: engine_dialog.cc:327 -msgid "Server:" -msgstr "Server:" +#: engine_dialog.cc:415 +msgid "Output Channels:" +msgstr "" -#: engine_dialog.cc:339 -msgid "Input device:" -msgstr "Vstupní zařízení:" - -#: engine_dialog.cc:343 -msgid "Output device:" -msgstr "Výstupní zařízení:" - -#: engine_dialog.cc:348 +#: engine_dialog.cc:426 msgid "Hardware input latency:" msgstr "Vstupní prodleva technického vybavení poÄítaÄe:" -#: engine_dialog.cc:351 engine_dialog.cc:357 +#: engine_dialog.cc:429 engine_dialog.cc:442 msgid "samples" msgstr "Vzorky" -#: engine_dialog.cc:354 +#: engine_dialog.cc:439 msgid "Hardware output latency:" msgstr "Výstupní prodleva technického vybavení poÄítaÄe:" -#: engine_dialog.cc:368 -msgid "Device" -msgstr "Zařízení" +#: engine_dialog.cc:450 +msgid "MIDI System" +msgstr "" -#: engine_dialog.cc:370 -msgid "Advanced" -msgstr "PokroÄilé" - -#: engine_dialog.cc:653 -msgid "cannot open JACK rc file %1 to store parameters" -msgstr "Nelze otevřít JACK soubor rc %1 pro uložení pomocných promÄ›nných" - -#: engine_dialog.cc:787 +#: engine_dialog.cc:467 msgid "" -"You do not have any audio devices capable of\n" -"simultaneous playback and recording.\n" -"\n" -"Please use Applications -> Utilities -> Audio MIDI Setup\n" -"to create an \"aggregrate\" device, or install a suitable\n" -"audio interface.\n" -"\n" -"Please send email to Apple and ask them why new Macs\n" -"have no duplex audio device.\n" -"\n" -"Alternatively, if you really want just playback\n" -"or recording but not both, start JACK before running\n" -"%1 and choose the relevant device then." +"The %1 audio backend was configured and started externally.\n" +"This limits your control over it." msgstr "" -" Nemáte žádné zvukové zařízení, které by bylo schopno\n" -"zároveň pÅ™ehrávat a nahrávat.\n" + +#: engine_dialog.cc:521 +msgid "" +"Your selected audio configuration is playback- or capture-only.\n" "\n" -"Použijte, prosím, Aplikace -> UžiteÄné aplikace -> Nastavení Audio MIDI\n" -"pro vytvoÅ™ení \"celkového\" zařízení, nebo nainstalujte vhodné\n" -"rozhraní pro zvuk.\n" -"\n" -"PoÅ¡lete, prosím, e-mail firmÄ› Apple a zeptejte se, proÄ nový Mac\n" -"nemá žádné zařízení pro dvojité (duplexní) audio.\n" -"\n" -"PopřípadÄ›, pokud skuteÄnÄ› chcete pouze pÅ™ehrávat\n" -"nebo nahrávat, ale nikoli souÄasnÄ› obojí, spusÅ¥te JACK pÅ™ed spuÅ¡tÄ›ním\n" -"%1 a potom vyberte přísluÅ¡né zařízení." - -#: engine_dialog.cc:800 -msgid "No suitable audio devices" -msgstr "Žádné vhodné zvukové zařízení" - -#: engine_dialog.cc:1017 -msgid "JACK appears to be missing from the %1 bundle" -msgstr "Vypadá to, že JACK chybí v balíku %1" - -#: engine_dialog.cc:1087 -msgid "You need to choose an audio device first." -msgstr "Nejprve musíte vybrat zvukové zařízení." - -#: engine_dialog.cc:1104 -msgid "Audio device \"%1\" not known on this computer." -msgstr "Zdá se, že zařízení %1 v tomto poÄítaÄi neexistuje." - -#: engine_dialog.cc:1256 -msgid "AudioSetup value for %1 is missing data" -msgstr "Chybí data pro hodnotu nastavení zvuku %1" - -#: engine_dialog.cc:1335 -msgid "configuration files contain a JACK server path that doesn't exist (%1)" +"Latency calibration requires playback and capture" +msgstr "" + +#: engine_dialog.cc:595 +msgid "MIDI Inputs" +msgstr "" + +#: engine_dialog.cc:612 +msgid "MIDI Outputs" +msgstr "" + +#: engine_dialog.cc:696 +msgid "all available channels" +msgstr "" + +#: engine_dialog.cc:890 +#, c-format +msgid "%u samples" +msgstr "" + +#: engine_dialog.cc:941 +#, c-format +msgid "(%.1f msecs)" +msgstr "" + +#: engine_dialog.cc:1389 +msgid "Cannot set driver to %1" +msgstr "" + +#: engine_dialog.cc:1393 +msgid "Cannot set device name to %1" +msgstr "" + +#: engine_dialog.cc:1397 +msgid "Cannot set sample rate to %1" +msgstr "" + +#: engine_dialog.cc:1401 +msgid "Cannot set buffer size to %1" +msgstr "" + +#: engine_dialog.cc:1407 +msgid "Cannot set input channels to %1" +msgstr "" + +#: engine_dialog.cc:1411 +msgid "Cannot set output channels to %1" +msgstr "" + +#: engine_dialog.cc:1417 +msgid "Cannot set input latency to %1" +msgstr "" + +#: engine_dialog.cc:1421 +msgid "Cannot set output latency to %1" +msgstr "" + +#: engine_dialog.cc:1654 +msgid "No signal detected " +msgstr "" + +#: engine_dialog.cc:1667 port_insert_ui.cc:71 port_insert_ui.cc:99 +msgid "Disconnected from audio engine" +msgstr "Odpojeno od zvukového stroje" + +#: engine_dialog.cc:1681 +msgid "(signal detection error)" +msgstr "" + +#: engine_dialog.cc:1687 +msgid "(inverted - bad wiring)" +msgstr "" + +#: engine_dialog.cc:1697 +msgid "Detected roundtrip latency: %1" +msgstr "" + +#: engine_dialog.cc:1709 port_insert_ui.cc:135 +msgid "Detecting ..." +msgstr "Zjišťuje se..." + +#: engine_dialog.cc:1789 +msgid "Disconnect from %1" +msgstr "" + +#: engine_dialog.cc:1801 +msgid "Connect to %1" msgstr "" -"Soubory s nastavením obsahují cestu k JACK serveru, která neexistuje (%1)" #: export_channel_selector.cc:45 sfdb_ui.cc:145 msgid "Channels:" @@ -6083,9 +6078,9 @@ msgid "Folder:" msgstr "Složka:" #: export_filename_selector.cc:37 session_import_dialog.cc:44 -#: transcode_video_dialog.cc:59 video_server_dialog.cc:45 -#: video_server_dialog.cc:47 export_video_dialog.cc:69 -#: export_video_dialog.cc:71 +#: transcode_video_dialog.cc:58 video_server_dialog.cc:45 +#: video_server_dialog.cc:47 export_video_dialog.cc:68 +#: export_video_dialog.cc:70 msgid "Browse" msgstr "Procházet" @@ -6213,6 +6208,10 @@ msgstr "Volby pro FLAC" msgid "Broadcast Wave options" msgstr "Volby pro Broadcast Wave" +#: export_format_selector.cc:136 +msgid "Do you really want to remove the format?" +msgstr "" + #: export_preset_selector.cc:28 msgid "Preset" msgstr "PÅ™ednastavení" @@ -6225,6 +6224,10 @@ msgstr "" "Vybrané pÅ™ednastavení nebylo nahráno úspěšnÄ›!\n" "Možná zmiňuje formát, který byl odstranÄ›n?" +#: export_preset_selector.cc:156 +msgid "Do you really want to remove this preset?" +msgstr "" + #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "Ukázat Äasy jako:" @@ -6237,6 +6240,10 @@ msgstr " do " msgid "Range" msgstr "Rozsah" +#: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 +msgid "curl error %1 (%2)" +msgstr "" + #: sfdb_freesound_mootcher.cc:266 msgid "getSoundResourceFile: There is no valid root in the xml file" msgstr "" @@ -6245,74 +6252,83 @@ msgstr "" msgid "getSoundResourceFile: root = %1, != response" msgstr "" -#: gain_meter.cc:106 gain_meter.cc:357 gain_meter.cc:462 gain_meter.cc:856 +#: sfdb_freesound_mootcher.cc:410 +msgid "%1" +msgstr "" + +#: gain_meter.cc:105 gain_meter.cc:360 gain_meter.cc:465 gain_meter.cc:859 msgid "-inf" msgstr "-inf" -#: gain_meter.cc:112 gain_meter.cc:913 +#: gain_meter.cc:111 gain_meter.cc:916 msgid "Fader automation mode" msgstr "Režim automatizace prolínaÄe" -#: gain_meter.cc:113 gain_meter.cc:914 +#: gain_meter.cc:112 gain_meter.cc:917 msgid "Fader automation type" msgstr "Druh automatizace prolínaÄe" -#: gain_meter.cc:122 gain_meter.cc:795 panner_ui.cc:178 panner_ui.cc:590 +#: gain_meter.cc:121 gain_meter.cc:798 panner_ui.cc:177 panner_ui.cc:589 msgid "Abs" msgstr "Abs" -#: gain_meter.cc:762 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:557 +#: gain_meter.cc:765 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:556 #: route_time_axis.cc:2411 msgid "P" msgstr "P" -#: gain_meter.cc:765 panner_ui.cc:560 +#: gain_meter.cc:768 panner_ui.cc:559 msgid "T" msgstr "D" -#: gain_meter.cc:768 panner_ui.cc:563 +#: gain_meter.cc:771 panner_ui.cc:562 msgid "W" msgstr "Z" -#: generic_pluginui.cc:83 +#: generic_pluginui.cc:81 msgid "Presets" msgstr "PÅ™edvolby" -#: generic_pluginui.cc:232 +#: generic_pluginui.cc:230 msgid "Switches" msgstr "PÅ™epínaÄe" -#: generic_pluginui.cc:242 generic_pluginui.cc:376 processor_box.cc:2212 +#: generic_pluginui.cc:240 generic_pluginui.cc:374 processor_box.cc:2251 msgid "Controls" msgstr "Ovládání" -#: generic_pluginui.cc:270 +#: generic_pluginui.cc:268 msgid "Plugin Editor: could not build control element for port %1" msgstr "" "Editor přídavných modulů: nepodaÅ™ilo se vytvoÅ™it prvek ovládání pro přípojku " "%1" -#: generic_pluginui.cc:408 +#: generic_pluginui.cc:406 msgid "Meters" msgstr "MěřiÄe" -#: generic_pluginui.cc:423 +#: generic_pluginui.cc:421 msgid "Automation control" msgstr "Ovládání automatického systému" -#: generic_pluginui.cc:430 +#: generic_pluginui.cc:428 msgid "Mgnual" msgstr "RuÄnÄ› provádÄ›né" -#: global_port_matrix.cc:164 +#: global_port_matrix.cc:157 msgid "Audio Connection Manager" msgstr "Správce zvukových spojení" -#: global_port_matrix.cc:167 +#: global_port_matrix.cc:160 msgid "MIDI Connection Manager" msgstr "Správce MIDI spojení" -#: global_port_matrix.cc:213 io_selector.cc:216 +#: global_port_matrix.cc:200 io_selector.cc:210 mixer_strip.cc:719 +#: mixer_strip.cc:845 +msgid "Disconnect" +msgstr "Odpojit" + +#: global_port_matrix.cc:206 io_selector.cc:216 msgid "port" msgstr "Přípojka" @@ -6509,19 +6525,19 @@ msgstr "" msgid "Main_menu" msgstr "Hlavní_nabídka" -#: keyeditor.cc:255 +#: keyeditor.cc:253 msgid "redirectmenu" msgstr "PÅ™esmÄ›rování nabídky" -#: keyeditor.cc:257 +#: keyeditor.cc:255 msgid "Editor_menus" msgstr "Nabídky_editoru" -#: keyeditor.cc:259 +#: keyeditor.cc:257 msgid "RegionList" msgstr "Seznam oblasti" -#: keyeditor.cc:261 +#: keyeditor.cc:259 msgid "ProcessorMenu" msgstr "Nabídka zpracování" @@ -6543,7 +6559,7 @@ msgid_plural "%1 samples" msgstr[0] "%1 vzorek" msgstr[1] "%1 vzorků" -#: latency_gui.cc:72 panner_ui.cc:392 +#: latency_gui.cc:72 panner_ui.cc:391 msgid "Reset" msgstr "Nastavit znovu" @@ -6635,101 +6651,67 @@ msgstr "ZnaÄky (vÄetnÄ› rozsahů stop CD)" msgid "add range marker" msgstr "PÅ™idat znaÄku rozsahu" -#: main.cc:83 -msgid "%1 could not connect to JACK." -msgstr "%1 se nepodaÅ™ilo spojit se s JACKem." - -#: main.cc:87 -msgid "" -"There are several possible reasons:\n" -"\n" -"1) JACK is not running.\n" -"2) JACK is running as another user, perhaps root.\n" -"3) There is already another client called \"%1\".\n" -"\n" -"Please consider the possibilities, and perhaps (re)start JACK." +#: main.cc:81 +msgid "%1 could not connect to the audio backend." msgstr "" -"Pro to může být nÄ›kolik možných důvodů:\n" -"\n" -"1) JACK neběží.\n" -"2) JACK byl spuÅ¡tÄ›n pod jiným uživatelem, možná pod superuživatelem (root).\n" -"3) Je tu již jiný klient nazvaný \"%1\".\n" -"\n" -"Zvažte, prosím, tyto možnosti, a případnÄ› spusÅ¥te JACKa znovu." -#: main.cc:203 main.cc:324 +#: main.cc:194 main.cc:315 msgid "cannot create user %3 folder %1 (%2)" msgstr "Nelze vytvoÅ™it uživatelův adresář urÄený pro %3 %1 (%2)" -#: main.cc:210 main.cc:331 +#: main.cc:201 main.cc:322 msgid "cannot open pango.rc file %1" msgstr "Nelze otevřít soubor pango.rc %1" -#: main.cc:235 main.cc:358 +#: main.cc:226 main.cc:349 msgid "Cannot find ArdourMono TrueType font" msgstr "Nelze nalézt písmo ArdourMono TrueType" -#: main.cc:247 main.cc:364 +#: main.cc:238 main.cc:355 msgid "Cannot load ArdourMono TrueType font." msgstr "Nelze nahrát písmo ArdourMono TrueType." -#: main.cc:312 +#: main.cc:303 msgid "" "No fontconfig file found on your system. Things may looked very odd or ugly" msgstr "" "Ve vaÅ¡em systému nebyl nalezen žádný soubor s nastavením písma. VÄ›ci v " "rozhraní mohou vypadat velice divnÄ› a oÅ¡klivÄ›." -#: main.cc:368 +#: main.cc:359 msgid "Failed to set fontconfig configuration." msgstr "NepodaÅ™ilo se nastavit nastavení písma." -#: main.cc:379 main.cc:395 -msgid "JACK exited" -msgstr "JACK skonÄil" +#: main.cc:370 main.cc:386 +msgid "The audio backend (%1) has failed, or terminated" +msgstr "" -#: main.cc:382 +#: main.cc:373 msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" +"%2 exited unexpectedly, and without notifying %1.\n" "\n" -"This could be due to misconfiguration or to an error inside JACK.\n" +"This could be due to misconfiguration or to an error inside %2.\n" "\n" "Click OK to exit %1." msgstr "" -"JACK neoÄekávanÄ› skonÄil, aniž by upozornil %1.\n" -"\n" -"Mohlo se to stát kvůli Å¡patnému nastavení, nebo kvůli chybÄ› v serveru JACK.\n" -"\n" -"KlepnÄ›te na OK pro ukonÄení %1." -#: main.cc:397 -msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" -"\n" -"This is probably due to an error inside JACK. You should restart JACK\n" -"and reconnect %1 to it, or exit %1 now. You cannot save your\n" -"session at this time, because we would lose your connection information.\n" +#: main.cc:387 +msgid "%2 exited unexpectedly, and without notifying %1." msgstr "" -"JACK neoÄekávanÄ› skonÄil, aniž by upozornil %1.\n" -"\n" -"Stalo se to nejspíš kvůli chybÄ› v serveru JACK. MÄ›l byste JACK spustit " -"znovu\n" -"a pÅ™ipojit k nÄ›mu %1 znovu, nebo nyní %1 ukonÄit. V této chvíli nemůžete\n" -"uložit své sezení, protože by doÅ¡lo ke ztrátÄ› informací o vaÅ¡em spojení.\n" -#: main.cc:487 +#: main.cc:474 msgid " (built using " msgstr " (sestaveno s verzí " -#: main.cc:490 +#: main.cc:477 msgid " and GCC version " msgstr " a GCC verze " -#: main.cc:500 +#: main.cc:487 msgid "Copyright (C) 1999-2012 Paul Davis" msgstr "Autorské právo (C) 1999-2012 Paul Davis" -#: main.cc:501 +#: main.cc:488 msgid "" "Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " "Baker, Robin Gareus" @@ -6737,31 +6719,31 @@ msgstr "" "NÄ›které Äásti: autorské právo (C) Steve Harris, Ari Johnson, Brett Viren, " "Joel Baker, Robin Gareus" -#: main.cc:503 +#: main.cc:490 msgid "%1 comes with ABSOLUTELY NO WARRANTY" msgstr "%1 je poskytován bez NAPROSTO ŽÃDNÉ ZÃRUKY" -#: main.cc:504 +#: main.cc:491 msgid "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." msgstr "ani pro vhodnost pro OBCHOD nebo způsobilost pro ZVLÃÅ TNà POUŽÃVÃNÃ." -#: main.cc:505 +#: main.cc:492 msgid "This is free software, and you are welcome to redistribute it " msgstr "Je to svobodný program a vaÅ¡e pomoc s jeho dalším šířením je vítána" -#: main.cc:506 +#: main.cc:493 msgid "under certain conditions; see the source for copying conditions." msgstr "dokud dbáte na urÄité podmínky, které jsou uvedeny v souboru COPYING." -#: main.cc:513 +#: main.cc:500 msgid "could not initialize %1." msgstr "NepodaÅ™ilo se zapnout %1." -#: main.cc:522 +#: main.cc:509 msgid "Cannot xinstall SIGPIPE error handler" msgstr "Nelze nainstalovat SIGPIPE, který má na starosti chyby" -#: main.cc:528 +#: main.cc:515 msgid "could not create %1 GUI" msgstr "NepodaÅ™ilo se vytvoÅ™it obrazové uživatelské rozhraní k %1" @@ -6778,6 +6760,11 @@ msgstr "Text u znaÄky" msgid "All" msgstr "VÅ¡e" +#: midi_channel_selector.cc:163 midi_channel_selector.cc:402 +#: midi_channel_selector.cc:438 rc_option_editor.cc:1248 sfdb_ui.cc:538 +msgid "None" +msgstr "Žádný" + #: midi_channel_selector.cc:167 midi_channel_selector.cc:407 #: midi_channel_selector.cc:443 msgid "Invert" @@ -7155,31 +7142,36 @@ msgstr "Barvy kanálů" msgid "Track Color" msgstr "Barva stopy" +#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 +#: midi_time_axis.cc:1510 +msgid "all" +msgstr "" + #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" -#: midi_tracer.cc:43 +#: midi_tracer.cc:46 msgid "Line history: " msgstr "Historie linky: " -#: midi_tracer.cc:51 +#: midi_tracer.cc:54 msgid "Auto-Scroll" msgstr "Automaticky projíždÄ›t" -#: midi_tracer.cc:52 +#: midi_tracer.cc:55 msgid "Decimal" msgstr "Desetinný" -#: midi_tracer.cc:53 rc_option_editor.cc:659 +#: midi_tracer.cc:56 rc_option_editor.cc:657 msgid "Enabled" msgstr "Povoleno" -#: midi_tracer.cc:54 +#: midi_tracer.cc:57 msgid "Delta times" msgstr "ÄŒasy delta" -#: midi_tracer.cc:66 +#: midi_tracer.cc:70 msgid "Port:" msgstr "Přípojka:" @@ -7243,7 +7235,7 @@ msgstr "Klepnout pro výbÄ›r dodateÄné složky" msgid "Missing Plugins" msgstr "ChybÄ›jící přídavné moduly" -#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 +#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:59 msgid "OK" msgstr "OK" @@ -7320,7 +7312,7 @@ msgid "pre" msgstr "PÅ™ed" #: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 -#: rc_option_editor.cc:1881 +#: rc_option_editor.cc:1868 msgid "Comments" msgstr "Poznámka" @@ -7368,11 +7360,11 @@ msgstr "Sam" msgid "Mix group" msgstr "Skupina smÄ›si" -#: mixer_strip.cc:351 rc_option_editor.cc:1878 +#: mixer_strip.cc:351 rc_option_editor.cc:1865 msgid "Phase Invert" msgstr "Obrácení fáze" -#: mixer_strip.cc:352 rc_option_editor.cc:1879 route_ui.cc:1218 +#: mixer_strip.cc:352 rc_option_editor.cc:1866 route_ui.cc:1218 msgid "Solo Safe" msgstr "ZajiÅ¡tÄ›né sólo" @@ -7380,7 +7372,7 @@ msgstr "ZajiÅ¡tÄ›né sólo" msgid "Group" msgstr "Skupina" -#: mixer_strip.cc:356 rc_option_editor.cc:1882 +#: mixer_strip.cc:356 rc_option_editor.cc:1869 msgid "Meter Point" msgstr "Měřicí bod" @@ -7400,10 +7392,9 @@ msgstr "" msgid "Snd" msgstr "Posl" -#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 -msgid "Not connected to JACK - no I/O changes are possible" +#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2193 +msgid "Not connected to audio engine - no I/O changes are possible" msgstr "" -"Nespojeno s JACKem - na vstupech/výstupech (I/O) nejsou možné žádné zmÄ›ny" #: mixer_strip.cc:1096 msgid "INPUT to %1" @@ -7533,6 +7524,10 @@ msgstr "Po-prolínaÄ" msgid "Change all in Group to %1" msgstr "" +#: mixer_strip.cc:2168 meter_strip.cc:730 +msgid "Change all to %1" +msgstr "" + #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -7551,6 +7546,14 @@ msgstr "-vÅ¡e-" msgid "Strips" msgstr "Proužky" +#: meter_strip.cc:764 +msgid "Variable height" +msgstr "" + +#: meter_strip.cc:765 +msgid "Short" +msgstr "" + #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -7595,6 +7598,10 @@ msgstr "" msgid "K14" msgstr "" +#: meter_patterns.cc:105 +msgid "VU" +msgstr "" + #: monitor_section.cc:62 msgid "SiP" msgstr "SiP" @@ -7904,11 +7911,9 @@ msgstr "" #: opts.cc:63 msgid "" -" -c, --name Use a specific jack client name, default is " +" -c, --name Use a specific backend client name, default is " "ardour\n" msgstr "" -" -c, --name Použít zvláštní název pro klienta JACK; " -"výchozím je: ardour\n" #: opts.cc:64 msgid "" @@ -7986,7 +7991,7 @@ msgstr "" msgid "Panner (2D)" msgstr "VyvažovaÄ (2D)" -#: panner2d.cc:783 panner_ui.cc:384 plugin_ui.cc:451 +#: panner2d.cc:783 panner_ui.cc:383 plugin_ui.cc:448 msgid "Bypass" msgstr "Obejít" @@ -7994,15 +7999,15 @@ msgstr "Obejít" msgid "Panner" msgstr "OvladaÄ vyvážení" -#: panner_ui.cc:71 +#: panner_ui.cc:70 msgid "Pan automation mode" msgstr "Režim automatizace vyvážení" -#: panner_ui.cc:72 +#: panner_ui.cc:71 msgid "Pan automation type" msgstr "Druh automatizace vyvážení" -#: panner_ui.cc:295 +#: panner_ui.cc:294 msgid "" "No panner user interface is currently available for %1-in/2out tracks/busses" msgstr "" @@ -8160,13 +8165,13 @@ msgstr "Podle tvůrce" msgid "By Category" msgstr "Podle skupiny" -#: plugin_ui.cc:116 +#: plugin_ui.cc:114 msgid "Eh? LADSPA plugins don't have editors!" msgstr "" "Pozoruhodné... Přídavné moduly LADSPA nemají žádné grafické uživatelské " "rozhraní!" -#: plugin_ui.cc:125 plugin_ui.cc:227 +#: plugin_ui.cc:123 plugin_ui.cc:226 msgid "" "unknown type of editor-supplying plugin (note: no VST support in this " "version of %1)" @@ -8174,11 +8179,11 @@ msgstr "" "Neznámý druh přídavného modulu (UpozornÄ›ní: tato verze %1 nepodporuje žádné " "přídavné moduly VST)" -#: plugin_ui.cc:128 +#: plugin_ui.cc:126 msgid "unknown type of editor-supplying plugin" msgstr "Neznámý druh přídavného modulu" -#: plugin_ui.cc:257 +#: plugin_ui.cc:256 msgid "" "unknown type of editor-supplying plugin (note: no linuxVST support in this " "version of %1)" @@ -8186,23 +8191,23 @@ msgstr "" "Neznámý druh přídavného modulu pro editor (UpozornÄ›ní: tato verze %1 " "nepodporuje linuxové VST)" -#: plugin_ui.cc:329 +#: plugin_ui.cc:328 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "create_lv2_editor používaný na ne-LV2 přídavný modul" -#: plugin_ui.cc:417 +#: plugin_ui.cc:414 msgid "Add" msgstr "PÅ™idat" -#: plugin_ui.cc:421 +#: plugin_ui.cc:418 msgid "Description" msgstr "Popis" -#: plugin_ui.cc:422 +#: plugin_ui.cc:419 msgid "Plugin analysis" msgstr "Rozbor přídavného modulu" -#: plugin_ui.cc:429 +#: plugin_ui.cc:426 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" @@ -8210,23 +8215,23 @@ msgstr "" "PÅ™ednastavení (jsou-li) pro tento přídavný modul\n" "(tovární i vytvoÅ™ená uživatelem)" -#: plugin_ui.cc:430 +#: plugin_ui.cc:427 msgid "Save a new preset" msgstr "Uložit nové pÅ™ednastavení" -#: plugin_ui.cc:431 +#: plugin_ui.cc:428 msgid "Save the current preset" msgstr "Uložit nynÄ›jší pÅ™ednastavení" -#: plugin_ui.cc:432 +#: plugin_ui.cc:429 msgid "Delete the current preset" msgstr "Smazat nynÄ›jší pÅ™ednastavení" -#: plugin_ui.cc:433 +#: plugin_ui.cc:430 msgid "Disable signal processing by the plugin" msgstr "Zakázat zpracování signálu přídavným modulem" -#: plugin_ui.cc:466 plugin_ui.cc:662 +#: plugin_ui.cc:463 plugin_ui.cc:659 msgid "" "Click to allow the plugin to receive keyboard events that %1 would normally " "use as a shortcut" @@ -8234,69 +8239,69 @@ msgstr "" "KlepnÄ›te pro povolení přídavného modulu pro pÅ™ijímání událostí klávesnice, " "kterých by %1 obyÄejnÄ› použil jako zkratek" -#: plugin_ui.cc:467 +#: plugin_ui.cc:464 msgid "Click to enable/disable this plugin" msgstr "Povolit/Zakázat tento přídavný modul" -#: plugin_ui.cc:506 +#: plugin_ui.cc:503 msgid "latency (%1 sample)" msgid_plural "latency (%1 samples)" msgstr[0] "Prodleva (%1 vzorky)" msgstr[1] "Prodleva (%1 vzorků)" -#: plugin_ui.cc:508 +#: plugin_ui.cc:505 msgid "latency (%1 ms)" msgstr "Prodleva (%1 ms)" -#: plugin_ui.cc:519 +#: plugin_ui.cc:516 msgid "Edit Latency" msgstr "Upravit prodlevu" -#: plugin_ui.cc:558 +#: plugin_ui.cc:555 msgid "Plugin preset %1 not found" msgstr "PÅ™ednastavení přídavného modulu %1 nenalezeno" -#: plugin_ui.cc:595 +#: plugin_ui.cc:592 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "full version" msgstr "" -#: plugin_ui.cc:615 plugin_ui.cc:630 +#: plugin_ui.cc:612 plugin_ui.cc:627 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "newer version" msgstr "" -#: plugin_ui.cc:669 +#: plugin_ui.cc:666 msgid "Click to allow normal use of %1 keyboard shortcuts" msgstr "KlepnÄ›te pro povolení obvyklého používání klávesových zkratek v %1" -#: port_group.cc:335 +#: port_group.cc:337 msgid "%1 Busses" msgstr "%1 sbÄ›rnice" -#: port_group.cc:336 +#: port_group.cc:338 msgid "%1 Tracks" msgstr "%1 stopy" -#: port_group.cc:337 +#: port_group.cc:339 msgid "Hardware" msgstr "Technické vybavení" -#: port_group.cc:338 +#: port_group.cc:340 msgid "%1 Misc" msgstr "%1 různé" -#: port_group.cc:339 +#: port_group.cc:341 msgid "Other" msgstr "Jiné" -#: port_group.cc:430 port_group.cc:431 +#: port_group.cc:432 port_group.cc:433 msgid "LTC Out" msgstr "Výstup LTC" -#: port_group.cc:434 port_group.cc:435 +#: port_group.cc:436 port_group.cc:437 msgid "LTC In" msgstr "Vstup LTC" @@ -8332,15 +8337,15 @@ msgstr "Výstup hodin MIDI" msgid "MMC out" msgstr "Výstup MMC" -#: port_group.cc:540 +#: port_group.cc:532 msgid ":monitor" msgstr ":sledování" -#: port_group.cc:552 +#: port_group.cc:544 msgid "system:" msgstr "Systém:" -#: port_group.cc:553 +#: port_group.cc:545 msgid "alsa_pcm" msgstr "alsa_pcm" @@ -8356,18 +8361,10 @@ msgstr "Odeslání/Výstup" msgid "Return/Input" msgstr "Návrat/Vstup" -#: port_insert_ui.cc:71 port_insert_ui.cc:99 -msgid "Disconnected from audio engine" -msgstr "Odpojeno od zvukového stroje" - #: port_insert_ui.cc:86 msgid "No signal detected" msgstr "NezjiÅ¡tÄ›n žádný signál" -#: port_insert_ui.cc:135 -msgid "Detecting ..." -msgstr "Zjišťuje se..." - #: port_insert_ui.cc:166 msgid "Port Insert " msgstr "Vložení přípojky " @@ -8411,7 +8408,7 @@ msgstr "Ukázat jednotlivé přípojky" msgid "Flip" msgstr "PÅ™epnout" -#: port_matrix.cc:723 +#: port_matrix.cc:721 msgid "" "It is not possible to add a port here, as the first processor in the track " "or buss cannot support the new configuration." @@ -8419,25 +8416,32 @@ msgstr "" "Přípojku zde nelze pÅ™idat, protože první procesor ve stopÄ› nebo sbÄ›rnici " "nedokáže podporovat nové nastavení." -#: port_matrix.cc:726 +#: port_matrix.cc:724 msgid "Cannot add port" msgstr "Nelze pÅ™idat přípojku" -#: port_matrix.cc:748 +#: port_matrix.cc:746 msgid "Port removal not allowed" msgstr "OdstranÄ›ní přípojky nepovoleno" -#: port_matrix.cc:966 +#: port_matrix.cc:747 +msgid "" +"This port cannot be removed.\n" +"Either the first plugin in the track or buss cannot accept\n" +"the new number of inputs or the last plugin has more outputs." +msgstr "" + +#: port_matrix.cc:964 #, c-format msgid "Remove '%s'" msgstr "Odstranit '%s'" -#: port_matrix.cc:981 +#: port_matrix.cc:979 #, c-format msgid "%s all from '%s'" msgstr "%s vÅ¡e z '%s'" -#: port_matrix.cc:1047 +#: port_matrix.cc:1045 msgid "channel" msgstr "Kanál" @@ -8474,7 +8478,7 @@ msgstr "Skrýt vÅ¡echny ovládací prvky" msgid "on" msgstr "Zapnuto" -#: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 +#: processor_box.cc:465 rc_option_editor.cc:1898 rc_option_editor.cc:1912 msgid "off" msgstr "Vypnuto" @@ -8486,7 +8490,7 @@ msgstr "" "Klepnutí pravým tlaÄítkem myÅ¡i pro pÅ™idání/odstranÄ›ní/upravení\n" "přídavných modulů, vložení, poslání a další" -#: processor_box.cc:1197 processor_box.cc:1591 +#: processor_box.cc:1197 processor_box.cc:1618 msgid "Plugin Incompatibility" msgstr "NesluÄitelnost přídavného modulu" @@ -8546,7 +8550,7 @@ msgstr "" msgid "Cannot set up new send: %1" msgstr "Nelze nastavit nové odeslání: %1" -#: processor_box.cc:1594 +#: processor_box.cc:1621 msgid "" "You cannot reorder these plugins/sends/inserts\n" "in that way because the inputs and\n" @@ -8556,21 +8560,21 @@ msgstr "" "pÅ™euspořádat tímto způsobem, protože vstupy a\n" "výstupy nebudou nepracovat správnÄ›." -#: processor_box.cc:1778 +#: processor_box.cc:1805 msgid "Rename Processor" msgstr "PÅ™ejmenovat procesor" -#: processor_box.cc:1809 +#: processor_box.cc:1836 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "" "Je nejménÄ› 100 I/O (vstupních/výstupních) objektů, které nesou název %1 - " "název nezmÄ›nÄ›n" -#: processor_box.cc:1943 +#: processor_box.cc:1970 msgid "plugin insert constructor failed" msgstr "Vložení přídavného modulu se nezdaÅ™ilo" -#: processor_box.cc:1954 +#: processor_box.cc:1981 msgid "" "Copying the set of processors on the clipboard failed,\n" "probably because the I/O configuration of the plugins\n" @@ -8580,7 +8584,7 @@ msgstr "" "PravdÄ›podobnÄ› se neshoduje vstupní/výstupní nastavení (I/O)\n" "přídavných modulů s nastavením pro tuto stopu." -#: processor_box.cc:2000 +#: processor_box.cc:2027 msgid "" "Do you really want to remove all processors from %1?\n" "(this cannot be undone)" @@ -8588,15 +8592,15 @@ msgstr "" "Doopravdy chcete odstranit vÅ¡echny zpracovatele z %1?\n" "(Toto se pak nedá vrátit zpátky)" -#: processor_box.cc:2004 processor_box.cc:2029 +#: processor_box.cc:2031 processor_box.cc:2056 msgid "Yes, remove them all" msgstr "Ano, vÅ¡echny odstranit" -#: processor_box.cc:2006 processor_box.cc:2031 +#: processor_box.cc:2033 processor_box.cc:2058 msgid "Remove processors" msgstr "PÅ™ejmenovat zpracovatele" -#: processor_box.cc:2021 +#: processor_box.cc:2048 msgid "" "Do you really want to remove all pre-fader processors from %1?\n" "(this cannot be undone)" @@ -8604,7 +8608,7 @@ msgstr "" "Opravdu chcete odstranit vÅ¡echny zpracovatele pÅ™ed-prolínaÄe z %1?\n" "(Toto se pak nedá vrátit zpátky)" -#: processor_box.cc:2024 +#: processor_box.cc:2051 msgid "" "Do you really want to remove all post-fader processors from %1?\n" "(this cannot be undone)" @@ -8612,50 +8616,58 @@ msgstr "" "Opravdu chcete odstranit vÅ¡echny zpracovatele po-prolínaÄe z %1?\n" "(Toto se pak nedá vrátit zpátky)" -#: processor_box.cc:2200 +#: processor_box.cc:2239 msgid "New Plugin" msgstr "Vložit nový přídavný modul" -#: processor_box.cc:2203 +#: processor_box.cc:2242 msgid "New Insert" msgstr "Vložit novou vložku" -#: processor_box.cc:2206 +#: processor_box.cc:2245 msgid "New External Send ..." msgstr "Nové vnÄ›jší odeslání..." -#: processor_box.cc:2210 +#: processor_box.cc:2249 msgid "New Aux Send ..." msgstr "Vložit nové pomocné odeslání (Aux)..." -#: processor_box.cc:2214 +#: processor_box.cc:2253 msgid "Clear (all)" msgstr "Smazat (vÅ¡e)" -#: processor_box.cc:2216 +#: processor_box.cc:2255 msgid "Clear (pre-fader)" msgstr "Smazat (pÅ™ed-prolínaÄ)" -#: processor_box.cc:2218 +#: processor_box.cc:2257 msgid "Clear (post-fader)" msgstr "Smazat (po-prolínaÄ)" -#: processor_box.cc:2244 +#: processor_box.cc:2283 msgid "Activate All" msgstr "Zapnout vÅ¡e" -#: processor_box.cc:2246 +#: processor_box.cc:2285 msgid "Deactivate All" msgstr "Vypnout vÅ¡e" -#: processor_box.cc:2248 +#: processor_box.cc:2287 msgid "A/B Plugins" msgstr "Přídavné moduly A/B" -#: processor_box.cc:2557 +#: processor_box.cc:2296 +msgid "Edit with generic controls..." +msgstr "" + +#: processor_box.cc:2599 msgid "%1: %2 (by %3)" msgstr "%1: %2 (podle %3)" +#: processor_box.cc:2601 +msgid "%2 (by %3)" +msgstr "" + #: patch_change_dialog.cc:51 msgid "Patch Change" msgstr "ZmÄ›na zapojení" @@ -8704,95 +8716,99 @@ msgstr "Zapadnout do zaÄátku noty" msgid "Snap note end" msgstr "Zapadnout do konce noty" -#: rc_option_editor.cc:69 +#: rc_option_editor.cc:67 msgid "Click audio file:" msgstr "Zvukový soubor metronomu pro klepnutí:" -#: rc_option_editor.cc:72 rc_option_editor.cc:79 +#: rc_option_editor.cc:70 rc_option_editor.cc:77 msgid "Browse..." msgstr "Procházet..." -#: rc_option_editor.cc:76 +#: rc_option_editor.cc:74 msgid "Click emphasis audio file:" msgstr "Zvukový soubor metronomu pro zdůraznÄ›ní klepnutí" -#: rc_option_editor.cc:108 +#: rc_option_editor.cc:106 msgid "Choose Click" msgstr "Vybrat klepnutí" -#: rc_option_editor.cc:128 +#: rc_option_editor.cc:126 msgid "Choose Click Emphasis" msgstr "Vybrat zdůraznÄ›ní klepnutí" -#: rc_option_editor.cc:160 +#: rc_option_editor.cc:158 msgid "Limit undo history to" msgstr "Omezit historii kroků zpÄ›t na" -#: rc_option_editor.cc:161 +#: rc_option_editor.cc:159 msgid "Save undo history of" msgstr "Uložit historii kroků zpÄ›t" -#: rc_option_editor.cc:170 rc_option_editor.cc:177 +#: rc_option_editor.cc:168 rc_option_editor.cc:175 msgid "commands" msgstr "Příkazy" -#: rc_option_editor.cc:315 +#: rc_option_editor.cc:313 msgid "Edit using:" msgstr "Upravit pomocí:" -#: rc_option_editor.cc:321 rc_option_editor.cc:347 rc_option_editor.cc:374 +#: rc_option_editor.cc:319 rc_option_editor.cc:345 rc_option_editor.cc:372 msgid "+ button" msgstr "s tlaÄítkem myÅ¡i" -#: rc_option_editor.cc:341 +#: rc_option_editor.cc:339 msgid "Delete using:" msgstr "Odstranit pomocí:" -#: rc_option_editor.cc:368 +#: rc_option_editor.cc:366 msgid "Insert note using:" msgstr "Vložit notu pomocí:" -#: rc_option_editor.cc:395 +#: rc_option_editor.cc:393 msgid "Ignore snap using:" msgstr "PÅ™ehlížet zapadnutí pomocí:" -#: rc_option_editor.cc:411 +#: rc_option_editor.cc:409 msgid "Keyboard layout:" msgstr "Rozvržení klávesnice:" -#: rc_option_editor.cc:534 +#: rc_option_editor.cc:532 msgid "Font scaling:" msgstr "Nastavení rozmÄ›rů písma:" -#: rc_option_editor.cc:586 +#: rc_option_editor.cc:584 msgid "Playback (seconds of buffering):" msgstr "PÅ™ehrávání (sekundy ukládání do vyrovnávací pamÄ›ti):" -#: rc_option_editor.cc:599 +#: rc_option_editor.cc:597 msgid "Recording (seconds of buffering):" msgstr "Nahrávání (sekundy ukládání do vyrovnávací pamÄ›ti):" -#: rc_option_editor.cc:660 +#: rc_option_editor.cc:654 +msgid "Control Surface Protocol" +msgstr "" + +#: rc_option_editor.cc:658 msgid "Feedback" msgstr "ZpÄ›tná vazba" -#: rc_option_editor.cc:665 +#: rc_option_editor.cc:663 msgid "Double-click on a name to edit settings for an enabled protocol" msgstr "Dvojité poklepání na název pro úpravu nastavení povoleného protokolu" -#: rc_option_editor.cc:817 +#: rc_option_editor.cc:815 msgid "Show Video Export Info before export" msgstr "Ukázat pÅ™ed uložením do souboru informace o způsobu vyvedení videa" -#: rc_option_editor.cc:818 +#: rc_option_editor.cc:816 msgid "Show Video Server Startup Dialog" msgstr "Ukázat spouÅ¡tÄ›cí dialog videoserveru" -#: rc_option_editor.cc:819 +#: rc_option_editor.cc:817 msgid "Advanced Setup (remote video server)" msgstr "PokroÄilé nastavení (vzdálený videoserver)" -#: rc_option_editor.cc:827 +#: rc_option_editor.cc:825 msgid "" "When enabled you can speficify a custom video-server URL and docroot. " "- Do not enable this option unless you know what you are doing." @@ -8800,15 +8816,22 @@ msgstr "" "Je-li povoleno, můžete urÄit adresu vlastního videoserveru (URL) a " "koÅ™en dokumentu (docroot). - Nepovolujte tuto volbu, pokud nevíte, co dÄ›láte." -#: rc_option_editor.cc:829 +#: rc_option_editor.cc:827 msgid "Video Server URL:" msgstr "Adresa videoserveru (URL):" -#: rc_option_editor.cc:836 +#: rc_option_editor.cc:832 +msgid "" +"Base URL of the video-server including http prefix. This is usually 'http://" +"hostname.example.org:1554/' and defaults to 'http://localhost:1554/' when " +"the video-server is running locally" +msgstr "" + +#: rc_option_editor.cc:834 msgid "Video Folder:" msgstr "Složka s videem:" -#: rc_option_editor.cc:841 +#: rc_option_editor.cc:839 msgid "" "Local path to the video-server document-root. Only files below this " "directory will be accessible by the video-server. If the server run on a " @@ -8823,7 +8846,7 @@ msgstr "" "nedostupný. Používá se pro místní sledování videa a procházení souborů, když " "je soubor s videem otevírán/pÅ™idáván." -#: rc_option_editor.cc:848 +#: rc_option_editor.cc:846 msgid "" "When enabled an information window with details is displayed before " "the video-export dialog." @@ -8831,7 +8854,7 @@ msgstr "" "Je-li povoleno, je pÅ™ed dialogem pro ukládání videa zobrazeno " "informaÄní okno s podrobnostmi." -#: rc_option_editor.cc:853 +#: rc_option_editor.cc:851 msgid "" "When enabled the video server is never launched automatically without " "confirmation" @@ -8839,87 +8862,87 @@ msgstr "" "Je-li povoleno, videoserver není nikdy spuÅ¡tÄ›n automaticky bez " "potvrzení" -#: rc_option_editor.cc:993 +#: rc_option_editor.cc:991 msgid "%1 Preferences" msgstr "%1 nastavení" -#: rc_option_editor.cc:1004 +#: rc_option_editor.cc:1002 msgid "DSP CPU Utilization" msgstr "Používání CPU pro DSP" -#: rc_option_editor.cc:1008 +#: rc_option_editor.cc:1006 msgid "Signal processing uses" msgstr "Zpracovávání signálu používá" -#: rc_option_editor.cc:1013 +#: rc_option_editor.cc:1011 msgid "all but one processor" msgstr "VÅ¡ichni kromÄ› jednoho zpracovatele" -#: rc_option_editor.cc:1014 +#: rc_option_editor.cc:1012 msgid "all available processors" msgstr "VÅ¡ichni dostupní zpracovatelé" -#: rc_option_editor.cc:1017 +#: rc_option_editor.cc:1015 msgid "%1 processors" msgstr "%1 zpracovatelé" -#: rc_option_editor.cc:1020 +#: rc_option_editor.cc:1018 msgid "This setting will only take effect when %1 is restarted." msgstr "Toto nastavení se neprojeví, dokud %1 nespustíte znovu." -#: rc_option_editor.cc:1025 +#: rc_option_editor.cc:1023 msgid "Options|Undo" msgstr "Volby|ZpÄ›t" -#: rc_option_editor.cc:1032 +#: rc_option_editor.cc:1030 msgid "Verify removal of last capture" msgstr "Potvrdit odstranÄ›ní poslední nahrávky" -#: rc_option_editor.cc:1040 +#: rc_option_editor.cc:1038 msgid "Make periodic backups of the session file" msgstr "DÄ›lat pravidelné zálohy souboru se sezením" -#: rc_option_editor.cc:1045 +#: rc_option_editor.cc:1043 msgid "Session Management" msgstr "Správa sezení" -#: rc_option_editor.cc:1050 +#: rc_option_editor.cc:1048 msgid "Always copy imported files" msgstr "Vždy kopírovat zavedené soubory" -#: rc_option_editor.cc:1057 +#: rc_option_editor.cc:1055 msgid "Default folder for new sessions:" msgstr "Výchozí složka pro nová sezení:" -#: rc_option_editor.cc:1065 +#: rc_option_editor.cc:1063 msgid "Maximum number of recent sessions" msgstr "Nejvyšší poÄet nedávných sezení" -#: rc_option_editor.cc:1078 +#: rc_option_editor.cc:1076 msgid "Click gain level" msgstr "Úroveň hlasitosti klepnutí" -#: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 +#: rc_option_editor.cc:1081 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "Automatizace" -#: rc_option_editor.cc:1088 +#: rc_option_editor.cc:1086 msgid "Thinning factor (larger value => less data)" msgstr "Faktor prostÅ™ihávání (vÄ›tší hodnota => ménÄ› dat)" -#: rc_option_editor.cc:1097 +#: rc_option_editor.cc:1095 msgid "Automation sampling interval (milliseconds)" msgstr "Interval pro automatizaci (v milisekundách)" -#: rc_option_editor.cc:1109 +#: rc_option_editor.cc:1107 msgid "Keep record-enable engaged on stop" msgstr "Udržovat zapnuté nahrávání po zastavení zapojeno" -#: rc_option_editor.cc:1118 +#: rc_option_editor.cc:1116 msgid "Stop recording when an xrun occurs" msgstr "Zastavit nahrávání v případÄ› xrun (Äasového rozdílu)" -#: rc_option_editor.cc:1123 +#: rc_option_editor.cc:1121 msgid "" "When enabled %1 will stop recording if an over- or underrun is " "detected by the audio engine" @@ -8927,15 +8950,15 @@ msgstr "" "Když je povoleno, %1 zastaví nahrávání, pokud je zjiÅ¡tÄ›no pÅ™eteÄení " "nebo podteÄení" -#: rc_option_editor.cc:1129 +#: rc_option_editor.cc:1127 msgid "Create markers where xruns occur" msgstr "VytvoÅ™it znaÄky tam, kde se xrun (Äasový rozdíl) objeví" -#: rc_option_editor.cc:1138 +#: rc_option_editor.cc:1136 msgid "Stop at the end of the session" msgstr "Zastavit na konci sezení" -#: rc_option_editor.cc:1143 +#: rc_option_editor.cc:1141 msgid "" "When enabled if %1 is not recording, it will stop the " "transport when it reaches the current session end marker\n" @@ -8948,11 +8971,11 @@ msgstr "" "\n" "Když je zakázáno %1 bude pokraÄovat vždy až na konec sezení" -#: rc_option_editor.cc:1151 -msgid "Do seamless looping (not possible when slaved to MTC, JACK etc)" -msgstr "DÄ›lat souvislou smyÄku (není možné, když MTC, JACK atd. jsou hlavní)" +#: rc_option_editor.cc:1149 +msgid "Do seamless looping (not possible when slaved to MTC, LTC etc)" +msgstr "" -#: rc_option_editor.cc:1156 +#: rc_option_editor.cc:1154 msgid "" "When enabled this will loop by reading ahead and wrapping around at " "the loop point, preventing any need to do a transport locate at the end of " @@ -8968,11 +8991,11 @@ msgstr "" "smyÄky, když %1 dosáhne konce, což Äasto způsobí slyÅ¡itelné prasknutí nebo " "zpoždÄ›ní" -#: rc_option_editor.cc:1164 +#: rc_option_editor.cc:1162 msgid "Disable per-track record disarm while rolling" msgstr "Zakázat pÅ™i nahrávání stav nahrávání jednotlivé stopy" -#: rc_option_editor.cc:1168 +#: rc_option_editor.cc:1166 msgid "" "When enabled this will prevent you from accidentally stopping " "specific tracks recording during a take" @@ -8980,12 +9003,12 @@ msgstr "" "Když je povoleno, zabrání vám to v nechtÄ›ném zastavení nahrávání " "urÄitých stop" -#: rc_option_editor.cc:1173 +#: rc_option_editor.cc:1171 msgid "12dB gain reduction during fast-forward and fast-rewind" msgstr "" "PÅ™i pÅ™etáÄení rychle dopÅ™edu a rychle dozadu snížit hladinu zvuku o 12dB" -#: rc_option_editor.cc:1177 +#: rc_option_editor.cc:1175 msgid "" "This will reduce the unpleasant increase in perceived volume that occurs " "when fast-forwarding or rewinding through some kinds of audio" @@ -8993,19 +9016,19 @@ msgstr "" "Toto omezí nepříjemné zvýšení vnímané hlasitosti, které se vyskytuje u " "nÄ›kterého materiálu pÅ™i pÅ™etáÄení vpÅ™ed/zpÄ›tném chodu" -#: rc_option_editor.cc:1181 +#: rc_option_editor.cc:1179 msgid "Sync/Slave" msgstr "Sync/Slave" -#: rc_option_editor.cc:1185 +#: rc_option_editor.cc:1183 msgid "External timecode source" msgstr "VnÄ›jší zdroj Äasového kódu" -#: rc_option_editor.cc:1195 +#: rc_option_editor.cc:1193 msgid "Match session video frame rate to external timecode" msgstr "PÅ™izpůsobit rychlost snímkování obrazu vnÄ›jšímu Äasovému kódu" -#: rc_option_editor.cc:1201 +#: rc_option_editor.cc:1199 msgid "" "This option controls the value of the video frame rate while chasing " "an external timecode source.\n" @@ -9029,11 +9052,11 @@ msgstr "" "ukazatel rychlosti snímkování v hlavních hodinách zÄervená a %1 bude " "pÅ™evádÄ›t mezi standardem vnÄ›jšího Äasového kódu a standardem sezení." -#: rc_option_editor.cc:1211 +#: rc_option_editor.cc:1209 msgid "External timecode is sync locked" msgstr "VnÄ›jší Äasový kód je pevnÄ› seřízen" -#: rc_option_editor.cc:1217 +#: rc_option_editor.cc:1215 msgid "" "When enabled indicates that the selected external timecode source " "shares sync (Black & Burst, Wordclock, etc) with the audio interface." @@ -9041,11 +9064,11 @@ msgstr "" "Když je povoleno, ukazuje to, že vybraný vnÄ›jší zdroj Äasového kódu " "běží seřízenÄ› (Black & Burst, Wordclock atd.) se zvukovým rozhraním." -#: rc_option_editor.cc:1224 +#: rc_option_editor.cc:1222 msgid "Lock to 29.9700 fps instead of 30000/1001" msgstr "PevnÄ› na 29.9700 fps namísto 30000/1001" -#: rc_option_editor.cc:1230 +#: rc_option_editor.cc:1228 msgid "" "When enabled the external timecode source is assumed to use 29.97 fps " "instead of 30000/1001.\n" @@ -9067,27 +9090,27 @@ msgstr "" "nÄ›kteří výrobci tuto rychlost používají - i když je to proti specifikaci - " "protože pÅ™i variantÄ› s 29.97 fps se nevyskytuje žádný posuv Äasového kódu.\n" -#: rc_option_editor.cc:1240 +#: rc_option_editor.cc:1238 msgid "LTC Reader" msgstr "ÄŒteÄka LTC" -#: rc_option_editor.cc:1244 +#: rc_option_editor.cc:1242 msgid "LTC incoming port" msgstr "Vstupní přípojka LTC" -#: rc_option_editor.cc:1257 +#: rc_option_editor.cc:1255 msgid "LTC Generator" msgstr "Generátor LTC" -#: rc_option_editor.cc:1262 +#: rc_option_editor.cc:1260 msgid "Enable LTC generator" msgstr "Povolit generátor LTC" -#: rc_option_editor.cc:1269 +#: rc_option_editor.cc:1267 msgid "send LTC while stopped" msgstr "Poslat LTC, když pÅ™ehrávání stojí" -#: rc_option_editor.cc:1275 +#: rc_option_editor.cc:1273 msgid "" "When enabled %1 will continue to send LTC information even when the " "transport (playhead) is not moving" @@ -9095,11 +9118,11 @@ msgstr "" "Když je povoleno, %1 bude pokraÄovat v posílání informací LTC, i když " "se ukazatel polohy pÅ™ehrávání nepohybuje" -#: rc_option_editor.cc:1281 +#: rc_option_editor.cc:1279 msgid "LTC generator level" msgstr "Hlasitost generátoru LTC" -#: rc_option_editor.cc:1285 +#: rc_option_editor.cc:1283 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " "is 0dBu ^= -18dbFS in an EBU calibrated system" @@ -9107,108 +9130,104 @@ msgstr "" "Zadejte hodnotu vrcholu vytvoÅ™eného signálu LTC v dbFS. Dobrou hodnotou pro " "kalibrovaný systém EBU je 0dBu ^= -18dbFS" -#: rc_option_editor.cc:1297 +#: rc_option_editor.cc:1295 msgid "Link selection of regions and tracks" msgstr "Spojit výbÄ›r oblastí a stop" -#: rc_option_editor.cc:1305 +#: rc_option_editor.cc:1303 msgid "Move relevant automation when audio regions are moved" msgstr "" "PÅ™esunout související automatizaci, když jsou zvukové oblasti pÅ™esunuty" -#: rc_option_editor.cc:1313 +#: rc_option_editor.cc:1311 msgid "Show meters on tracks in the editor" msgstr "Ukázat měřidla na stopách v editoru" -#: rc_option_editor.cc:1321 +#: rc_option_editor.cc:1319 msgid "Display master-meter in the toolbar" msgstr "" -#: rc_option_editor.cc:1328 +#: rc_option_editor.cc:1326 msgid "Regions in active edit groups are edited together" msgstr "Oblasti ve skupinách, které se upravují, jsou upravovány spoleÄnÄ›" -#: rc_option_editor.cc:1329 +#: rc_option_editor.cc:1327 msgid "whenever they overlap in time" msgstr "Vždycky když se ÄasovÄ› pÅ™ekrývají" -#: rc_option_editor.cc:1330 +#: rc_option_editor.cc:1328 msgid "only if they have identical length, position and origin" msgstr "Jen když mají stejnou délku, polohu a původ" -#: rc_option_editor.cc:1340 +#: rc_option_editor.cc:1338 msgid "Make rubberband selection rectangle snap to the grid" msgstr "UdÄ›lat z pružného výbÄ›ru oblasti obdélníkové zapadnutí do mřížky" -#: rc_option_editor.cc:1348 +#: rc_option_editor.cc:1346 msgid "Show waveforms in regions" msgstr "Ukázat tvary vln v oblastech" -#: rc_option_editor.cc:1356 +#: rc_option_editor.cc:1354 msgid "Show gain envelopes in audio regions" msgstr "Ukázat obálky zesílení v oblastech zvuku" -#: rc_option_editor.cc:1357 +#: rc_option_editor.cc:1355 msgid "in all modes" msgstr "Ve vÅ¡ech režimech" -#: rc_option_editor.cc:1358 +#: rc_option_editor.cc:1356 msgid "only in region gain mode" msgstr "Pouze v režimu zesílení oblasti" -#: rc_option_editor.cc:1365 +#: rc_option_editor.cc:1363 msgid "Waveform scale" msgstr "Velikost tvaru vlny" -#: rc_option_editor.cc:1370 +#: rc_option_editor.cc:1368 msgid "linear" msgstr "Přímý" -#: rc_option_editor.cc:1371 +#: rc_option_editor.cc:1369 msgid "logarithmic" msgstr "Logaritmický" -#: rc_option_editor.cc:1377 +#: rc_option_editor.cc:1375 msgid "Waveform shape" msgstr "Podoba tvaru vlny" -#: rc_option_editor.cc:1382 +#: rc_option_editor.cc:1380 msgid "traditional" msgstr "TradiÄní" -#: rc_option_editor.cc:1383 +#: rc_option_editor.cc:1381 msgid "rectified" msgstr "Narovnaná" -#: rc_option_editor.cc:1390 +#: rc_option_editor.cc:1388 msgid "Show waveforms for audio while it is being recorded" msgstr "Ukázat tvary vln zvuku, když je nahráván" -#: rc_option_editor.cc:1398 +#: rc_option_editor.cc:1396 msgid "Show zoom toolbar" msgstr "Ukázat nástrojový pruh pro zvÄ›tÅ¡ení" -#: rc_option_editor.cc:1406 +#: rc_option_editor.cc:1404 msgid "Color regions using their track's color" msgstr "Obarvit oblasti barvou jejich stopy" -#: rc_option_editor.cc:1414 +#: rc_option_editor.cc:1412 msgid "Update editor window during drags of the summary" msgstr "Obnovit okno editoru bÄ›hem tažení shrnutí" -#: rc_option_editor.cc:1422 -msgid "Synchronise editor and mixer track order" -msgstr "Seřídit poÅ™adí stop v editoru a ve směšovaÄi" - -#: rc_option_editor.cc:1430 +#: rc_option_editor.cc:1420 msgid "Synchronise editor and mixer selection" msgstr "Seřídit výbÄ›r v editoru a ve směšovaÄi" -#: rc_option_editor.cc:1437 +#: rc_option_editor.cc:1427 msgid "Name new markers" msgstr "Pojmenovat nové znaÄky" -#: rc_option_editor.cc:1443 +#: rc_option_editor.cc:1433 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " "be set as it is created.\n" @@ -9220,243 +9239,247 @@ msgstr "" "\n" "ZnaÄky můžete vždy klepnutím pravým tlaÄítkem myÅ¡i na nÄ› pÅ™ejmenovat" -#: rc_option_editor.cc:1449 +#: rc_option_editor.cc:1439 msgid "Auto-scroll editor window when dragging near its edges" msgstr "Automaticky projíždÄ›t okno editoru pÅ™i tažení blízko jeho okrajů" -#: rc_option_editor.cc:1456 +#: rc_option_editor.cc:1446 msgid "Buffering" msgstr "Ukládání do vyrovnávací pamÄ›ti" -#: rc_option_editor.cc:1464 +#: rc_option_editor.cc:1454 msgid "Record monitoring handled by" msgstr "Sledování nahrávání řízené" -#: rc_option_editor.cc:1475 +#: rc_option_editor.cc:1460 +msgid "via Audio Driver" +msgstr "" + +#: rc_option_editor.cc:1463 msgid "ardour" msgstr "ardour" -#: rc_option_editor.cc:1476 +#: rc_option_editor.cc:1464 msgid "audio hardware" msgstr "Zvukové technické vybavení" -#: rc_option_editor.cc:1483 +#: rc_option_editor.cc:1471 msgid "Tape machine mode" msgstr "Režim páskového stroje" -#: rc_option_editor.cc:1488 +#: rc_option_editor.cc:1476 msgid "Connection of tracks and busses" msgstr "Spojení stop a sbÄ›rnic" -#: rc_option_editor.cc:1493 +#: rc_option_editor.cc:1481 msgid "Auto-connect master/monitor busses" msgstr "Automaticky spojit hlavní/sledovací sbÄ›rnice" -#: rc_option_editor.cc:1500 +#: rc_option_editor.cc:1488 msgid "Connect track inputs" msgstr "Spojit vstupy stop" -#: rc_option_editor.cc:1505 +#: rc_option_editor.cc:1493 msgid "automatically to physical inputs" msgstr "Automaticky s fyzickými vstupy" -#: rc_option_editor.cc:1506 rc_option_editor.cc:1519 +#: rc_option_editor.cc:1494 rc_option_editor.cc:1507 msgid "manually" msgstr "RuÄnÄ›" -#: rc_option_editor.cc:1512 +#: rc_option_editor.cc:1500 msgid "Connect track and bus outputs" msgstr "Spojit výstupy stop a sbÄ›rnic" -#: rc_option_editor.cc:1517 +#: rc_option_editor.cc:1505 msgid "automatically to physical outputs" msgstr "Automaticky s fyzickými výstupy" -#: rc_option_editor.cc:1518 +#: rc_option_editor.cc:1506 msgid "automatically to master bus" msgstr "Automaticky s hlavní sbÄ›rnicí" -#: rc_option_editor.cc:1523 +#: rc_option_editor.cc:1511 msgid "Denormals" msgstr "Neobvyklé hodnoty" -#: rc_option_editor.cc:1528 +#: rc_option_editor.cc:1516 msgid "Use DC bias to protect against denormals" msgstr "" "Použít pÅ™edpÄ›tí přímého proudu (DC bias) pro ochranu proti neobvyklým " "hodnotám" -#: rc_option_editor.cc:1535 +#: rc_option_editor.cc:1523 msgid "Processor handling" msgstr "Řízení zpracování" -#: rc_option_editor.cc:1540 +#: rc_option_editor.cc:1528 msgid "no processor handling" msgstr "Žádné řízení zpracování" -#: rc_option_editor.cc:1545 +#: rc_option_editor.cc:1533 msgid "use FlushToZero" msgstr "Použít ZrudnoutKNule" -#: rc_option_editor.cc:1549 +#: rc_option_editor.cc:1537 msgid "use DenormalsAreZero" msgstr "Použít NeobvykléHodnotyJsouNula" -#: rc_option_editor.cc:1553 +#: rc_option_editor.cc:1541 msgid "use FlushToZero and DenormalsAreZero" msgstr "Použít ZrudnoutKNule a NeobvykléHodnotyJsouNula" -#: rc_option_editor.cc:1563 +#: rc_option_editor.cc:1551 msgid "Silence plugins when the transport is stopped" msgstr "ZtiÅ¡it přídavné moduly, když je pÅ™esun zastaven " -#: rc_option_editor.cc:1571 +#: rc_option_editor.cc:1559 msgid "Make new plugins active" msgstr "Uvést nové přídavné moduly do Äinnosti" -#: rc_option_editor.cc:1579 +#: rc_option_editor.cc:1567 msgid "Enable automatic analysis of audio" msgstr "Povolit automatický rozbor zvuku" -#: rc_option_editor.cc:1587 +#: rc_option_editor.cc:1575 msgid "Replicate missing region channels" msgstr "Zreprodukovat chybÄ›jící kanály oblasti" -#: rc_option_editor.cc:1594 rc_option_editor.cc:1609 rc_option_editor.cc:1621 -#: rc_option_editor.cc:1633 rc_option_editor.cc:1645 rc_option_editor.cc:1649 -#: rc_option_editor.cc:1657 rc_option_editor.cc:1665 rc_option_editor.cc:1673 -#: rc_option_editor.cc:1675 rc_option_editor.cc:1683 rc_option_editor.cc:1691 -#: rc_option_editor.cc:1699 +#: rc_option_editor.cc:1582 rc_option_editor.cc:1597 rc_option_editor.cc:1609 +#: rc_option_editor.cc:1621 rc_option_editor.cc:1633 rc_option_editor.cc:1637 +#: rc_option_editor.cc:1645 rc_option_editor.cc:1653 rc_option_editor.cc:1661 +#: rc_option_editor.cc:1663 rc_option_editor.cc:1671 rc_option_editor.cc:1679 +#: rc_option_editor.cc:1687 msgid "Solo / mute" msgstr "Sólo/Ztlumit" -#: rc_option_editor.cc:1597 +#: rc_option_editor.cc:1585 msgid "Solo-in-place mute cut (dB)" msgstr "Vyjmutí ztlumení sóla (dB)" -#: rc_option_editor.cc:1604 +#: rc_option_editor.cc:1592 msgid "Solo controls are Listen controls" msgstr "Ovládací prvky pro sólo jsou ovládacími prvky pro poslech" -#: rc_option_editor.cc:1613 +#: rc_option_editor.cc:1601 msgid "Listen Position" msgstr "Poloha poslechu" -#: rc_option_editor.cc:1618 +#: rc_option_editor.cc:1606 msgid "after-fader (AFL)" msgstr "Po-prolínaÄ (AFL)" -#: rc_option_editor.cc:1619 +#: rc_option_editor.cc:1607 msgid "pre-fader (PFL)" msgstr "PÅ™ed-prolínaÄ (PFL)" -#: rc_option_editor.cc:1625 +#: rc_option_editor.cc:1613 msgid "PFL signals come from" msgstr "PFL signály pÅ™icházejí z" -#: rc_option_editor.cc:1630 +#: rc_option_editor.cc:1618 msgid "before pre-fader processors" msgstr "Zpracovatelé pÅ™ed pÅ™ed-prolínaÄe" -#: rc_option_editor.cc:1631 +#: rc_option_editor.cc:1619 msgid "pre-fader but after pre-fader processors" msgstr "Zpracovatelé pÅ™ed-prolínaÄe ale po pÅ™ed-prolínaÄe" -#: rc_option_editor.cc:1637 +#: rc_option_editor.cc:1625 msgid "AFL signals come from" msgstr "AFL signály pÅ™icházejí z" -#: rc_option_editor.cc:1642 +#: rc_option_editor.cc:1630 msgid "immediately post-fader" msgstr "OkamžitÄ› po-prolínaÄ" -#: rc_option_editor.cc:1643 +#: rc_option_editor.cc:1631 msgid "after post-fader processors (before pan)" msgstr "Zpracovatelé po po-prolínaÄe (pÅ™ed vyvážením)" -#: rc_option_editor.cc:1652 +#: rc_option_editor.cc:1640 msgid "Exclusive solo" msgstr "Výhradní sólo" -#: rc_option_editor.cc:1660 +#: rc_option_editor.cc:1648 msgid "Show solo muting" msgstr "Sólo ukázat jako onÄ›mÄ›lé" -#: rc_option_editor.cc:1668 +#: rc_option_editor.cc:1656 msgid "Soloing overrides muting" msgstr "Sólo má pÅ™ednost pÅ™ed ztlumením" -#: rc_option_editor.cc:1673 +#: rc_option_editor.cc:1661 msgid "Default track / bus muting options" msgstr "Výchozí volby pro ztlumení stopy/sbÄ›rnice" -#: rc_option_editor.cc:1678 +#: rc_option_editor.cc:1666 msgid "Mute affects pre-fader sends" msgstr "Ztlumení ovlivní odeslání pÅ™ed-prolínaÄe" -#: rc_option_editor.cc:1686 +#: rc_option_editor.cc:1674 msgid "Mute affects post-fader sends" msgstr "Ztlumení ovlivní odeslání po-prolínaÄe" -#: rc_option_editor.cc:1694 +#: rc_option_editor.cc:1682 msgid "Mute affects control outputs" msgstr "Ztlumení ovlivní ovládací výstupy" -#: rc_option_editor.cc:1702 +#: rc_option_editor.cc:1690 msgid "Mute affects main outputs" msgstr "Ztlumení ovlivní hlavní výstupy" -#: rc_option_editor.cc:1718 +#: rc_option_editor.cc:1706 msgid "Send MIDI Time Code" msgstr "Poslat Äasový kód MIDI" -#: rc_option_editor.cc:1726 +#: rc_option_editor.cc:1714 msgid "Percentage either side of normal transport speed to transmit MTC" msgstr "" "Procento kterékoli strany běžné rychlosti pÅ™esunu k odeslání Äasového kódu " "MIDI (MTC)" -#: rc_option_editor.cc:1735 +#: rc_option_editor.cc:1723 msgid "Obey MIDI Machine Control commands" msgstr "Dodržovat příkazy pro ovládání stroje MIDI" -#: rc_option_editor.cc:1743 +#: rc_option_editor.cc:1731 msgid "Send MIDI Machine Control commands" msgstr "Poslat příkazy pro ovládání stroje MIDI" -#: rc_option_editor.cc:1751 +#: rc_option_editor.cc:1739 msgid "Send MIDI control feedback" msgstr "Poslat zpÄ›tnou vazbu k ovládání MIDI" -#: rc_option_editor.cc:1759 +#: rc_option_editor.cc:1747 msgid "Inbound MMC device ID" msgstr "ID zařízení MMC (ovládání stroje MIDI) na vstupu" -#: rc_option_editor.cc:1768 +#: rc_option_editor.cc:1756 msgid "Outbound MMC device ID" msgstr "ID zařízení MMC (ovládání stroje MIDI) na výstupu" -#: rc_option_editor.cc:1777 +#: rc_option_editor.cc:1765 msgid "Initial program change" msgstr "PoÄáteÄní zmÄ›na programu" -#: rc_option_editor.cc:1786 +#: rc_option_editor.cc:1774 msgid "Display first MIDI bank/program as 0" msgstr "Zobrazit první banku/program MIDI jako 0" -#: rc_option_editor.cc:1794 +#: rc_option_editor.cc:1782 msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "Nikdy nezobrazovat periodické zprávy MIDI (MTC, hodiny MIDI)" -#: rc_option_editor.cc:1802 +#: rc_option_editor.cc:1790 msgid "Sound MIDI notes as they are selected" msgstr "Zahrát noty MIDI, když jsou vybrány" -#: rc_option_editor.cc:1810 rc_option_editor.cc:1820 rc_option_editor.cc:1822 +#: rc_option_editor.cc:1798 rc_option_editor.cc:1808 rc_option_editor.cc:1810 msgid "User interaction" msgstr "Uživatelská interakce" -#: rc_option_editor.cc:1813 +#: rc_option_editor.cc:1801 msgid "" "Use translations of %1 messages\n" " (requires a restart of %1 to take effect)\n" @@ -9466,157 +9489,173 @@ msgstr "" " (aby se projevilo, vyžaduje opÄ›tovné spuÅ¡tÄ›ní %1)\n" " (je-li dostupné pro vaÅ¡e jazykové nastavení)" -#: rc_option_editor.cc:1820 +#: rc_option_editor.cc:1808 msgid "Keyboard" msgstr "Klávesnice" -#: rc_option_editor.cc:1830 +#: rc_option_editor.cc:1818 msgid "Control surface remote ID" msgstr "ID vzdálené ovládací plochy" -#: rc_option_editor.cc:1835 +#: rc_option_editor.cc:1823 msgid "assigned by user" msgstr "urÄeno uživatelem" -#: rc_option_editor.cc:1836 +#: rc_option_editor.cc:1824 msgid "follows order of mixer" msgstr "následuje poÅ™adí ve směšovaÄi" -#: rc_option_editor.cc:1837 -msgid "follows order of editor" -msgstr "následuje poÅ™adí v editoru" +#: rc_option_editor.cc:1833 rc_option_editor.cc:1841 rc_option_editor.cc:1851 +#: rc_option_editor.cc:1872 rc_option_editor.cc:1881 rc_option_editor.cc:1889 +#: rc_option_editor.cc:1903 rc_option_editor.cc:1922 rc_option_editor.cc:1938 +#: rc_option_editor.cc:1954 rc_option_editor.cc:1968 rc_option_editor.cc:1982 +#: rc_option_editor.cc:1984 +msgid "Preferences|GUI" +msgstr "" -#: rc_option_editor.cc:1849 +#: rc_option_editor.cc:1836 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "ObrazovÄ› naznaÄovat pÅ™ejetí ukazatele myÅ¡i nad různými prvky" -#: rc_option_editor.cc:1857 +#: rc_option_editor.cc:1844 msgid "Show tooltips if mouse hovers over a control" msgstr "Ukázat nástrojové rady, když myÅ¡ pÅ™ejede nad prvkem" -#: rc_option_editor.cc:1867 +#: rc_option_editor.cc:1854 msgid "GUI" msgstr "GUI" -#: rc_option_editor.cc:1870 +#: rc_option_editor.cc:1857 msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" "Aktualizovat zobrazení hodin ukazujících stav pÅ™ehrávání každých 40 ms " "namísto každých 100 ms" -#: rc_option_editor.cc:1887 +#: rc_option_editor.cc:1874 msgid "Mixer Strip" msgstr "Proužek směšovaÄe" -#: rc_option_editor.cc:1897 +#: rc_option_editor.cc:1884 msgid "Use narrow strips in the mixer by default" msgstr "Použít úzké proužky ve směšovaÄi jako výchozí" -#: rc_option_editor.cc:1912 +#: rc_option_editor.cc:1893 +msgid "Peak hold time" +msgstr "" + +#: rc_option_editor.cc:1899 msgid "short" msgstr "Krátký" -#: rc_option_editor.cc:1913 +#: rc_option_editor.cc:1900 msgid "medium" msgstr "StÅ™ední" -#: rc_option_editor.cc:1914 +#: rc_option_editor.cc:1901 msgid "long" msgstr "Dlouhý" -#: rc_option_editor.cc:1926 +#: rc_option_editor.cc:1907 +msgid "DPM fall-off" +msgstr "" + +#: rc_option_editor.cc:1913 msgid "slowest [6.6dB/sec]" msgstr "" -#: rc_option_editor.cc:1927 +#: rc_option_editor.cc:1914 msgid "slow [8.6dB/sec] (BBC PPM, EBU PPM)" msgstr "" -#: rc_option_editor.cc:1928 +#: rc_option_editor.cc:1915 msgid "slowish [12.0dB/sec] (DIN)" msgstr "" -#: rc_option_editor.cc:1929 +#: rc_option_editor.cc:1916 msgid "moderate [13.3dB/sec] (EBU Digi PPM, IRT Digi PPM)" msgstr "" -#: rc_option_editor.cc:1930 +#: rc_option_editor.cc:1917 msgid "medium [20dB/sec]" msgstr "" -#: rc_option_editor.cc:1931 +#: rc_option_editor.cc:1918 msgid "fast [32dB/sec]" msgstr "" -#: rc_option_editor.cc:1932 +#: rc_option_editor.cc:1919 msgid "faster [46dB/sec]" msgstr "" -#: rc_option_editor.cc:1933 +#: rc_option_editor.cc:1920 msgid "fastest [70dB/sec]" msgstr "" -#: rc_option_editor.cc:1939 +#: rc_option_editor.cc:1926 msgid "Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1944 rc_option_editor.cc:1960 +#: rc_option_editor.cc:1931 rc_option_editor.cc:1947 msgid "-24dBFS (SMPTE US: 4dBu = -20dBFS)" msgstr "" -#: rc_option_editor.cc:1945 rc_option_editor.cc:1961 +#: rc_option_editor.cc:1932 rc_option_editor.cc:1948 msgid "-20dBFS (SMPTE RP.0155)" msgstr "" -#: rc_option_editor.cc:1946 rc_option_editor.cc:1962 +#: rc_option_editor.cc:1933 rc_option_editor.cc:1949 msgid "-18dBFS (EBU, BBC)" msgstr "" -#: rc_option_editor.cc:1947 rc_option_editor.cc:1963 +#: rc_option_editor.cc:1934 rc_option_editor.cc:1950 msgid "-15dBFS (DIN)" msgstr "" -#: rc_option_editor.cc:1949 +#: rc_option_editor.cc:1936 msgid "" "Configure meter-marks and color-knee point for dBFS scale DPM, set reference " "level for IEC1/Nordic, IEC2 PPM and VU meter." msgstr "" -#: rc_option_editor.cc:1955 +#: rc_option_editor.cc:1942 msgid "IEC1/DIN Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1965 +#: rc_option_editor.cc:1952 msgid "Reference level for IEC1/DIN meter." msgstr "" -#: rc_option_editor.cc:1971 +#: rc_option_editor.cc:1958 msgid "VU Meter standard" msgstr "" -#: rc_option_editor.cc:1976 +#: rc_option_editor.cc:1963 msgid "0VU = -2dBu (France)" msgstr "" -#: rc_option_editor.cc:1977 +#: rc_option_editor.cc:1964 msgid "0VU = 0dBu (North America, Australia)" msgstr "" -#: rc_option_editor.cc:1978 +#: rc_option_editor.cc:1965 msgid "0VU = +4dBu (standard)" msgstr "" -#: rc_option_editor.cc:1979 +#: rc_option_editor.cc:1966 msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1993 +#: rc_option_editor.cc:1972 +msgid "Peak threshold [dBFS]" +msgstr "" + +#: rc_option_editor.cc:1980 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " "indicator will flash red." msgstr "" -#: rc_option_editor.cc:2000 +#: rc_option_editor.cc:1987 msgid "LED meter style" msgstr "" @@ -10278,32 +10317,17 @@ msgstr "Sledovací sbÄ›rnice" #: route_ui.cc:1818 msgid "" -"The remote control ID of %6 is: %3\n" +"The remote control ID of %5 is: %2\n" "\n" "\n" -"Remote Control IDs are currently determined by track/bus ordering in %1\n" +"Remote Control IDs are currently determined by track/bus ordering in " +"Ardour.\n" "\n" -"%4Use the User Interaction tab of the Preferences window if you want to " -"change this%5" +"%3Use the User Interaction tab of the Preferences window if you want to " +"change this%4" msgstr "" -"ID dálkového ovládání %6 je: %3\n" -"\n" -"\n" -"ID dálkového ovládání jsou v souÄasnosti urÄeny poÅ™adím stopy/sbÄ›rnice v %1\n" -"\n" -"\n" -"%4Použijte kartu Uživatelská interakce v oknÄ› pro Nastavení, pokud to chcete " -"zmÄ›nit%5" -#: route_ui.cc:1821 -msgid "the mixer" -msgstr "SměšovaÄ" - -#: route_ui.cc:1821 -msgid "the editor" -msgstr "Editor" - -#: route_ui.cc:1876 +#: route_ui.cc:1875 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " "to show menu." @@ -10311,7 +10335,7 @@ msgstr "" "Klepnutí levým tlaÄítkem myÅ¡i pro obrácení (otoÄení fáze) kanálu %1 této " "stopy. Klepnutí pravým tlaÄítkem myÅ¡i pro ukázání nabídky." -#: route_ui.cc:1878 +#: route_ui.cc:1877 msgid "Click to show a menu of channels for inversion (phase reverse)" msgstr "KlepnÄ›te pro ukázání kanálů pro obrácení (otoÄení fáze)" @@ -10331,6 +10355,118 @@ msgstr "složka se sezením" msgid "Send " msgstr "Poslat " +#: session_dialog.cc:66 +msgid "Session Setup" +msgstr "" + +#: session_dialog.cc:71 +msgid "Advanced options ..." +msgstr "" + +#: session_dialog.cc:267 +msgid "New Session" +msgstr "Nové sezení" + +#: session_dialog.cc:305 +msgid "Check the website for more..." +msgstr "Najít více na internetových stránkách..." + +#: session_dialog.cc:308 +msgid "Click to open the program website in your web browser" +msgstr "Klepnout pro otevÅ™ení stránek programu v prohlížeÄi" + +#: session_dialog.cc:328 +msgid "Sample Rate" +msgstr "" + +#: session_dialog.cc:329 +msgid "Disk Format" +msgstr "" + +#: session_dialog.cc:347 +msgid "Select session file" +msgstr "Vybrat soubor se sezením" + +#: session_dialog.cc:362 +msgid "Other Sessions" +msgstr "" + +#: session_dialog.cc:388 +msgid "Open" +msgstr "Otevřít" + +#: session_dialog.cc:455 +msgid "Session name:" +msgstr "Název sezení:" + +#: session_dialog.cc:477 +msgid "Create session folder in:" +msgstr "Složku se sezením vytvoÅ™it v:" + +#: session_dialog.cc:500 +msgid "Select folder for session" +msgstr "Vybrat složku pro sezení" + +#: session_dialog.cc:529 +msgid "Use this template" +msgstr "Použít tuto pÅ™edlohu" + +#: session_dialog.cc:532 +msgid "no template" +msgstr "Žádná pÅ™edloha" + +#: session_dialog.cc:664 session_dialog.cc:696 +msgid "32 bit float" +msgstr "" + +#: session_dialog.cc:667 session_dialog.cc:699 +msgid "24 bit" +msgstr "" + +#: session_dialog.cc:670 session_dialog.cc:702 +msgid "16 bit" +msgstr "" + +#: session_dialog.cc:741 session_dialog.cc:742 session_dialog.cc:743 +msgid "channels" +msgstr "Kanály" + +#: session_dialog.cc:757 +msgid "Busses" +msgstr "SbÄ›rnice" + +#: session_dialog.cc:758 +msgid "Inputs" +msgstr "Vstupy" + +#: session_dialog.cc:759 +msgid "Outputs" +msgstr "Výstupy" + +#: session_dialog.cc:767 +msgid "Create master bus" +msgstr "VytvoÅ™it hlavní sbÄ›rnici" + +#: session_dialog.cc:777 +msgid "Automatically connect to physical inputs" +msgstr "Automaticky spojit s fyzickými vstupy" + +#: session_dialog.cc:784 session_dialog.cc:843 +msgid "Use only" +msgstr "Použít pouze" + +#: session_dialog.cc:837 +msgid "Automatically connect outputs" +msgstr "Automaticky spojit výstupy" + +#: session_dialog.cc:859 +msgid "... to master bus" +msgstr "... s hlavní sbÄ›rnicí" + +#: session_dialog.cc:869 +msgid "... to physical outputs" +msgstr "... s fyzickými výstupy" + #: session_import_dialog.cc:64 msgid "Import from Session" msgstr "Zavést ze sezení" @@ -10813,18 +10949,54 @@ msgstr "PÅ™ilepit nové znaÄky k taktům a dobám" msgid "Glue new regions to bars and beats" msgstr "PÅ™ilepit nové oblasti k taktům a dobám" +#: session_option_editor.cc:275 session_option_editor.cc:277 +#: session_option_editor.cc:284 session_option_editor.cc:291 +#: session_option_editor.cc:298 session_option_editor.cc:300 +#: session_option_editor.cc:307 session_option_editor.cc:314 +#: session_option_editor.cc:321 session_option_editor.cc:323 +msgid "Meterbridge" +msgstr "" + #: session_option_editor.cc:275 msgid "Route Display" msgstr "" +#: session_option_editor.cc:279 +msgid "Show Midi Tracks" +msgstr "" + +#: session_option_editor.cc:286 +msgid "Show Busses" +msgstr "" + +#: session_option_editor.cc:293 +msgid "Include Master Bus" +msgstr "" + #: session_option_editor.cc:298 msgid "Button Area" msgstr "" +#: session_option_editor.cc:302 +msgid "Rec-enable Button" +msgstr "" + +#: session_option_editor.cc:309 +msgid "Mute Button" +msgstr "" + +#: session_option_editor.cc:316 +msgid "Solo Button" +msgstr "" + #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" +#: session_option_editor.cc:325 +msgid "Track Name" +msgstr "" + #: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 msgid "as new tracks" msgstr "Jako nové stopy" @@ -11178,14 +11350,6 @@ msgid "Azimuth:" msgstr "Azimut:" #: startup.cc:72 -msgid "Create a new session" -msgstr "VytvoÅ™it nové sezení" - -#: startup.cc:73 -msgid "Open an existing session" -msgstr "Otevřít stávající sezení" - -#: startup.cc:74 msgid "" "Use an external mixer or the hardware mixer of your audio interface.\n" "%1 will play NO role in monitoring" @@ -11194,15 +11358,11 @@ msgstr "" "pro zvuk.\n" "%1 ve sledování NEBUDE hrát žádnou úlohu" -#: startup.cc:76 +#: startup.cc:74 msgid "Ask %1 to play back material as it is being recorded" msgstr "Požádat %1 o pÅ™ehrávání materiálu, už když je nahráván" -#: startup.cc:79 -msgid "I'd like more options for this session" -msgstr "Rád bych mÄ›l pro toto sezení více voleb" - -#: startup.cc:194 +#: startup.cc:143 msgid "" "Welcome to this BETA release of Ardour %1\n" "\n" @@ -11227,15 +11387,11 @@ msgid "" " http://ardour.org/support\n" msgstr "" -#: startup.cc:218 +#: startup.cc:167 msgid "This is a BETA RELEASE" msgstr "Toto je VYDÃNà BETA" -#: startup.cc:324 -msgid "Audio / MIDI Setup" -msgstr "Nastavení zvuku/MIDI" - -#: startup.cc:336 +#: startup.cc:176 msgid "" "%1 is a digital audio workstation. You can use it to " "record, edit and mix multi-track audio. You can produce your own CDs, mix " @@ -11252,15 +11408,15 @@ msgstr "" "PÅ™edtím než program zaÄnete používat, je tu jen nÄ›kolik vÄ›cí, které je tÅ™eba " "nastavit." -#: startup.cc:362 +#: startup.cc:202 msgid "Welcome to %1" msgstr "Vítejte v %1" -#: startup.cc:385 +#: startup.cc:225 msgid "Default folder for %1 sessions" msgstr "Výchozí složka pro sezení programu %1" -#: startup.cc:391 +#: startup.cc:231 msgid "" "Each project that you work on with %1 has its own folder.\n" "These can require a lot of disk space if you are recording audio.\n" @@ -11276,11 +11432,11 @@ msgstr "" "\n" "(Nová sezení můžete dát kamkoli. Toto je jen výchozí nastavení)" -#: startup.cc:415 +#: startup.cc:254 msgid "Default folder for new sessions" msgstr "Výchozí složka pro nová sezení" -#: startup.cc:436 +#: startup.cc:275 msgid "" "While recording instruments or vocals, you probably want to listen to the\n" "signal as well as record it. This is called \"monitoring\". There are\n" @@ -11305,15 +11461,15 @@ msgstr "" "\n" "Pokud nevíte, o Äem to je, prostÄ› pÅ™ijmÄ›te výchozí nastavení." -#: startup.cc:457 +#: startup.cc:296 msgid "Monitoring Choices" msgstr "Volby pro sledování" -#: startup.cc:480 +#: startup.cc:319 msgid "Use a Master bus directly" msgstr "Použít hlavní sbÄ›rnici přímo" -#: startup.cc:482 +#: startup.cc:321 msgid "" "Connect the Master bus directly to your hardware outputs. This is preferable " "for simple usage." @@ -11321,11 +11477,11 @@ msgstr "" "Spojit hlavní sbÄ›rnici přímo s výstupy vaÅ¡eho technického vybavení. To je " "vhodnÄ›jší pro jednoduché použití." -#: startup.cc:491 +#: startup.cc:330 msgid "Use an additional Monitor bus" msgstr "Použít dodateÄnou sbÄ›rnici pro sledování" -#: startup.cc:494 +#: startup.cc:333 msgid "" "Use a Monitor bus between Master bus and hardware outputs for \n" "greater control in monitoring without affecting the mix." @@ -11334,7 +11490,7 @@ msgstr "" "vybavení\n" "pro vÄ›tší dohled nad sledováním bez ovlivnÄ›ní míchání." -#: startup.cc:516 +#: startup.cc:355 msgid "" "You can change this preference at any time via the Preferences dialog.\n" "You can also add or remove the monitor section to/from any session.\n" @@ -11347,110 +11503,10 @@ msgstr "" "\n" "Pokud nevíte, o Äem to je, prostÄ› pÅ™ijmÄ›te výchozí nastavení." -#: startup.cc:527 +#: startup.cc:366 msgid "Monitor Section" msgstr "Část pro sledování" -#: startup.cc:573 -msgid "Check the website for more..." -msgstr "Najít více na internetových stránkách..." - -#: startup.cc:576 -msgid "Click to open the program website in your web browser" -msgstr "Klepnout pro otevÅ™ení stránek programu v prohlížeÄi" - -#: startup.cc:729 -msgid "Open" -msgstr "Otevřít" - -#: startup.cc:775 -msgid "Session name:" -msgstr "Název sezení:" - -#: startup.cc:798 -msgid "Create session folder in:" -msgstr "Složku se sezením vytvoÅ™it v:" - -#: startup.cc:821 -msgid "Select folder for session" -msgstr "Vybrat složku pro sezení" - -#: startup.cc:853 -msgid "Use this template" -msgstr "Použít tuto pÅ™edlohu" - -#: startup.cc:856 -msgid "no template" -msgstr "Žádná pÅ™edloha" - -#: startup.cc:884 -msgid "Use an existing session as a template:" -msgstr "Použít stávající sezení jako pÅ™edlohu:" - -#: startup.cc:896 -msgid "Select template" -msgstr "Vybrat pÅ™edlohu" - -#: startup.cc:922 -msgid "New Session" -msgstr "Nové sezení" - -#: startup.cc:1077 -msgid "Select session file" -msgstr "Vybrat soubor se sezením" - -#: startup.cc:1093 -msgid "Browse:" -msgstr "Procházet:" - -#: startup.cc:1102 -msgid "Select a session" -msgstr "Vybrat sezení" - -#: startup.cc:1129 startup.cc:1130 startup.cc:1131 -msgid "channels" -msgstr "Kanály" - -#: startup.cc:1145 -msgid "Busses" -msgstr "SbÄ›rnice" - -#: startup.cc:1146 -msgid "Inputs" -msgstr "Vstupy" - -#: startup.cc:1147 -msgid "Outputs" -msgstr "Výstupy" - -#: startup.cc:1155 -msgid "Create master bus" -msgstr "VytvoÅ™it hlavní sbÄ›rnici" - -#: startup.cc:1165 -msgid "Automatically connect to physical inputs" -msgstr "Automaticky spojit s fyzickými vstupy" - -#: startup.cc:1172 startup.cc:1231 -msgid "Use only" -msgstr "Použít pouze" - -#: startup.cc:1225 -msgid "Automatically connect outputs" -msgstr "Automaticky spojit výstupy" - -#: startup.cc:1247 -msgid "... to master bus" -msgstr "... s hlavní sbÄ›rnicí" - -#: startup.cc:1257 -msgid "... to physical outputs" -msgstr "... s fyzickými výstupy" - -#: startup.cc:1307 -msgid "Advanced Session Options" -msgstr "PokroÄilé volby pro sezení" - #: step_entry.cc:59 msgid "Step Entry: %1" msgstr "Zápis kroku: %1" @@ -12125,23 +12181,23 @@ msgstr "" msgid "Config file %1 not saved" msgstr "Soubor s nastavením %1 nebyl uložen" -#: utils.cc:110 utils.cc:153 +#: utils.cc:111 utils.cc:154 msgid "bad XPM header %1" msgstr "Chybná XPM hlaviÄka %1" -#: utils.cc:292 utils.cc:324 +#: utils.cc:293 utils.cc:325 msgid "missing RGBA style for \"%1\"" msgstr "ChybÄ›jící RGBA styl pro \"%1\"" -#: utils.cc:591 +#: utils.cc:598 msgid "cannot find XPM file for %1" msgstr "Nelze najít soubor XPM pro %1" -#: utils.cc:617 +#: utils.cc:624 msgid "cannot find icon image for %1 using %2" msgstr "Nelze najít obrázek s ikonou pro %1 pomocí %2" -#: utils.cc:632 +#: utils.cc:639 msgid "Caught exception while loading icon named %1" msgstr "bÄ›hem nahrávání ikony s názvem %1 byla zachycena výjimka" @@ -12149,6 +12205,14 @@ msgstr "bÄ›hem nahrávání ikony s názvem %1 byla zachycena výjimka" msgid "VerboseCanvasCursor" msgstr "Ukazovátko podrobného plátna" +#: add_video_dialog.cc:55 +msgid "Set Video Track" +msgstr "" + +#: add_video_dialog.cc:63 +msgid "Launch External Video Monitor" +msgstr "" + #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -12157,6 +12221,26 @@ msgstr "" msgid "Reload docroot" msgstr "" +#: add_video_dialog.cc:111 add_video_dialog.cc:115 +msgid "VideoServerIndex" +msgstr "" + +#: add_video_dialog.cc:129 +msgid "Video files" +msgstr "" + +#: add_video_dialog.cc:164 +msgid "Video Information" +msgstr "" + +#: add_video_dialog.cc:167 +msgid "Start:" +msgstr "" + +#: add_video_dialog.cc:173 +msgid "Frame rate:" +msgstr "" + #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -12165,6 +12249,10 @@ msgstr "" msgid " %1 fps" msgstr "" +#: editor_videotimeline.cc:146 +msgid "Export Successful: %1" +msgstr "" + #: video_timeline.cc:469 msgid "" "Parsing video file info failed. Is the Video Server running? Is the file " @@ -12198,6 +12286,10 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" +#: video_monitor.cc:281 +msgid "Video Monitor: File Not Found." +msgstr "" + #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -12214,67 +12306,131 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:61 export_video_dialog.cc:73 +#: transcode_video_dialog.cc:55 +msgid "Transcode/Import Video File " +msgstr "" + +#: transcode_video_dialog.cc:57 +msgid "Output File:" +msgstr "" + +#: transcode_video_dialog.cc:60 export_video_dialog.cc:72 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:66 +#: transcode_video_dialog.cc:62 +msgid "Height = " +msgstr "" + +#: transcode_video_dialog.cc:65 msgid "Manual Override" msgstr "" -#: transcode_video_dialog.cc:70 export_video_dialog.cc:89 +#: transcode_video_dialog.cc:69 export_video_dialog.cc:88 msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:113 +#: transcode_video_dialog.cc:106 +msgid "File Information" +msgstr "" + +#: transcode_video_dialog.cc:112 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: transcode_video_dialog.cc:120 +#: transcode_video_dialog.cc:119 msgid "" "File-info can not be read. Most likely '%1' is not a valid video-file or an " "unsupported video codec or format." msgstr "" -#: transcode_video_dialog.cc:134 +#: transcode_video_dialog.cc:133 msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:138 +#: transcode_video_dialog.cc:135 +msgid "Duration:" +msgstr "" + +#: transcode_video_dialog.cc:137 msgid "Codec:" msgstr "" -#: transcode_video_dialog.cc:140 +#: transcode_video_dialog.cc:139 msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:182 +#: transcode_video_dialog.cc:154 +msgid "??" +msgstr "" + +#: transcode_video_dialog.cc:175 +msgid "Import Settings" +msgstr "" + +#: transcode_video_dialog.cc:180 +msgid "Do Not Import Video" +msgstr "" + +#: transcode_video_dialog.cc:181 msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:198 +#: transcode_video_dialog.cc:183 +msgid "Import/Transcode Video to Session" +msgstr "" + +#: transcode_video_dialog.cc:197 msgid "Scale Video: Width = " msgstr "" -#: transcode_video_dialog.cc:220 +#: transcode_video_dialog.cc:204 +msgid "Original Width" +msgstr "" + +#: transcode_video_dialog.cc:219 msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:348 +#: transcode_video_dialog.cc:224 +msgid "Extract Audio:" +msgstr "" + +#: transcode_video_dialog.cc:344 +msgid "Extracting Audio.." +msgstr "" + +#: transcode_video_dialog.cc:347 msgid "Audio Extraction Failed." msgstr "" -#: transcode_video_dialog.cc:374 +#: transcode_video_dialog.cc:373 msgid "Transcoding Video.." msgstr "" +#: transcode_video_dialog.cc:407 +msgid "Transcoding Failed." +msgstr "" + +#: transcode_video_dialog.cc:490 +msgid "Save Transcoded Video File" +msgstr "" + +#: video_server_dialog.cc:43 +msgid "Launch Video Server" +msgstr "" + #: video_server_dialog.cc:44 msgid "Server Executable:" msgstr "" +#: video_server_dialog.cc:46 +msgid "Server Docroot:" +msgstr "" + #: video_server_dialog.cc:52 msgid "Don't show this dialog again. (Reset in Edit->Preferences)." msgstr "" @@ -12290,11 +12446,23 @@ msgstr "" msgid "Listen Address:" msgstr "" +#: video_server_dialog.cc:125 +msgid "Listen Port:" +msgstr "" + +#: video_server_dialog.cc:130 +msgid "Cache Size:" +msgstr "" + #: video_server_dialog.cc:136 msgid "" -"%1 relies on an external Video Server for the videotimeline.\n" -"The server configured in Edit -> Prefereces -> Video is not reachable.\n" -"Do you want ardour to launch 'harvid' on this machine?" +"%1 relies on an external video server for the videotimeline.\n" +"The server configured in Edit -> Preferences -> Video is not reachable.\n" +"Do you want %1 to launch 'harvid' on this machine?" +msgstr "" + +#: video_server_dialog.cc:176 +msgid "Set Video Server Executable" msgstr "" #: video_server_dialog.cc:196 @@ -12315,79 +12483,195 @@ msgstr "" msgid "Continue" msgstr "" -#: export_video_dialog.cc:74 +#: utils_videotl.cc:63 +msgid "Confirm Overwrite" +msgstr "" + +#: utils_videotl.cc:64 +msgid "A file with the same name already exists. Do you want to overwrite it?" +msgstr "" + +#: utils_videotl.cc:74 utils_videotl.cc:90 +msgid "Cannot create video folder \"%1\" (%2)" +msgstr "" + +#: export_video_dialog.cc:65 +msgid "Export Video File " +msgstr "" + +#: export_video_dialog.cc:69 +msgid "Video:" +msgstr "" + +#: export_video_dialog.cc:73 msgid "Scale Video (W x H):" msgstr "" -#: export_video_dialog.cc:79 +#: export_video_dialog.cc:78 msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:81 +#: export_video_dialog.cc:79 +msgid "Normalize Audio" +msgstr "" + +#: export_video_dialog.cc:80 msgid "2 Pass Encoding" msgstr "" -#: export_video_dialog.cc:82 +#: export_video_dialog.cc:81 msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:85 +#: export_video_dialog.cc:83 +msgid "Deinterlace" +msgstr "" + +#: export_video_dialog.cc:84 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" -#: export_video_dialog.cc:86 +#: export_video_dialog.cc:85 msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:107 +#: export_video_dialog.cc:86 +msgid "Include Session Metadata" +msgstr "" + +#: export_video_dialog.cc:106 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: export_video_dialog.cc:145 +#: export_video_dialog.cc:116 +msgid "Output:" +msgstr "" + +#: export_video_dialog.cc:126 +msgid "Input:" +msgstr "" + +#: export_video_dialog.cc:137 +msgid "Audio:" +msgstr "" + +#: export_video_dialog.cc:139 +msgid "Master Bus" +msgstr "" + +#: export_video_dialog.cc:144 msgid "from the %1 session's start to the session's end" msgstr "" -#: export_video_dialog.cc:149 +#: export_video_dialog.cc:148 msgid "from 00:00:00:00 to the video's end" msgstr "" -#: export_video_dialog.cc:151 +#: export_video_dialog.cc:150 msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:494 +#: export_video_dialog.cc:153 +msgid "Selected range" +msgstr "" + +#: export_video_dialog.cc:193 +msgid "Settings:" +msgstr "" + +#: export_video_dialog.cc:201 +msgid "Range:" +msgstr "" + +#: export_video_dialog.cc:204 +msgid "Preset:" +msgstr "" + +#: export_video_dialog.cc:207 +msgid "Video Codec:" +msgstr "" + +#: export_video_dialog.cc:210 +msgid "Video KBit/s:" +msgstr "" + +#: export_video_dialog.cc:213 +msgid "Audio Codec:" +msgstr "" + +#: export_video_dialog.cc:216 +msgid "Audio KBit/s:" +msgstr "" + +#: export_video_dialog.cc:219 +msgid "Audio Samplerate:" +msgstr "" + +#: export_video_dialog.cc:395 +msgid "Normalizing audio" +msgstr "" + +#: export_video_dialog.cc:399 +msgid "Exporting audio" +msgstr "" + +#: export_video_dialog.cc:445 +msgid "Exporting Audio..." +msgstr "" + +#: export_video_dialog.cc:502 msgid "" "Export Video: Cannot query duration of video-file, using duration from " "timeline instead." msgstr "" -#: export_video_dialog.cc:523 +#: export_video_dialog.cc:532 +msgid "Export Video: export-range does not include video." +msgstr "" + +#: export_video_dialog.cc:544 msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" -#: export_video_dialog.cc:562 +#: export_video_dialog.cc:583 msgid "Encoding Video..." msgstr "" -#: export_video_dialog.cc:581 +#: export_video_dialog.cc:602 msgid "Export Video: Video input file cannot be read." msgstr "" -#: export_video_dialog.cc:679 +#: export_video_dialog.cc:695 msgid "Encoding Video.. Pass 1/2" msgstr "" -#: export_video_dialog.cc:691 +#: export_video_dialog.cc:707 msgid "Encoding Video.. Pass 2/2" msgstr "" +#: export_video_dialog.cc:814 +msgid "Transcoding failed." +msgstr "" + +#: export_video_dialog.cc:983 export_video_dialog.cc:1003 +msgid "Save Exported Video File" +msgstr "" + +#: export_video_infobox.cc:30 +msgid "Video Export Info" +msgstr "" + #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" +#: export_video_infobox.cc:43 +msgid "Video Export Info" +msgstr "" + #: export_video_infobox.cc:48 msgid "" "Video encoding is a non-trivial task with many details.\n" @@ -12396,3 +12680,364 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" + +#~ msgid "Starting audio engine" +#~ msgstr "SpouÅ¡tí se zvukový stroj" + +#~ msgid "disconnected" +#~ msgstr "odpojeno" + +#~ msgid "JACK: %.1f kHz / %4.1f ms" +#~ msgstr "JACK: %.1f kHz / %4.1f ms" + +#~ msgid "JACK: % kHz / %4.1f ms" +#~ msgstr "JACK: % kHz / %4.1f ms" + +#~ msgid "" +#~ "%1 is not connected to JACK\n" +#~ "You cannot open or close sessions in this condition" +#~ msgstr "" +#~ "%1 není spojen s JACKem.\n" +#~ "Za tohoto stavu není možné otevřít nebo zavřít sezení." + +#~ msgid "" +#~ "The audio backend (JACK) was shutdown because:\n" +#~ "\n" +#~ "%1" +#~ msgstr "" +#~ "Zvuková podpůrná vrstva (JACK) byla zastavena, protože:\n" +#~ "\n" +#~ "%1" + +#~ msgid "" +#~ "JACK has either been shutdown or it\n" +#~ "disconnected %1 because %1\n" +#~ "was not fast enough. Try to restart\n" +#~ "JACK, reconnect and save the session." +#~ msgstr "" +#~ "JACK byl buÄ ukonÄen nebo odpojil %1,\n" +#~ "protože %1 nebyl dostateÄnÄ› rychlý.\n" +#~ "MÄ›l byste se pokusit znovu spustit JACK,\n" +#~ "pÅ™ipojit se a uložit sezení." + +#~ msgid "Unable to start the session running" +#~ msgstr "Nelze spustit nynÄ›jší sezení" + +#~ msgid "Click the Refresh button to try again." +#~ msgstr "KlepnÄ›te na tlaÄítko Obnovit, abyste to mohli zkusit znovu." + +#~ msgid "Could not disconnect from JACK" +#~ msgstr "Nelze se odpojit od JACKa" + +#~ msgid "Could not reconnect to JACK" +#~ msgstr "Nelze se znovu spojit s JACKem" + +#~ msgid "JACK" +#~ msgstr "JACK" + +#~ msgid "Reconnect" +#~ msgstr "PÅ™ipojit znovu" + +#~ msgid "JACK Sampling Rate and Latency" +#~ msgstr "Vzorkovací kmitoÄet a prodleva JACK" + +#~ msgid "Realtime" +#~ msgstr "ProvádÄ›ný ve skuteÄném Äase" + +#~ msgid "Do not lock memory" +#~ msgstr "Nezamykat přístup do pamÄ›ti" + +#~ msgid "Unlock memory" +#~ msgstr "Otevřít přístup do pamÄ›ti" + +#~ msgid "No zombies" +#~ msgstr "Žádné živé mrtvoly (mÄ›kký režim)" + +#~ msgid "Provide monitor ports" +#~ msgstr "Zřídit přípojky pro sledování" + +#~ msgid "Force 16 bit" +#~ msgstr "Vynutit 16 bit" + +#~ msgid "H/W monitoring" +#~ msgstr "Sledování pomocí technického vybavení" + +#~ msgid "H/W metering" +#~ msgstr "Měření pomocí technického vybavení" + +#~ msgid "Verbose output" +#~ msgstr "Podrobná hlášení o stavu" + +#~ msgid "8000Hz" +#~ msgstr "8000 Hz" + +#~ msgid "22050Hz" +#~ msgstr "22050 Hz" + +#~ msgid "44100Hz" +#~ msgstr "44100 Hz" + +#~ msgid "48000Hz" +#~ msgstr "48000 Hz" + +#~ msgid "88200Hz" +#~ msgstr "88200 Hz" + +#~ msgid "96000Hz" +#~ msgstr "96000 Hz" + +#~ msgid "192000Hz" +#~ msgstr "192000 Hz" + +#~ msgid "Triangular" +#~ msgstr "Trojúhelníkový" + +#~ msgid "Rectangular" +#~ msgstr "Obdélníkový" + +#~ msgid "Shaped" +#~ msgstr "Tvarovaný" + +#~ msgid "Playback/recording on 1 device" +#~ msgstr "PÅ™ehrávání/Nahrávání s jedním zařízením" + +#~ msgid "Playback/recording on 2 devices" +#~ msgstr "PÅ™ehrávání/Nahrávání se dvÄ›ma zařízeními" + +#~ msgid "Playback only" +#~ msgstr "Pouze pÅ™ehrávání" + +#~ msgid "Recording only" +#~ msgstr "Pouze nahrávání" + +#~ msgid "seq" +#~ msgstr "sekv" + +#~ msgid "raw" +#~ msgstr "nezpracovaný" + +#~ msgid "Audio Interface:" +#~ msgstr "Rozhraní pro zvuk:" + +#~ msgid "Number of buffers:" +#~ msgstr "PoÄet vyrovnávacích pamÄ›tí:" + +#~ msgid "Approximate latency:" +#~ msgstr "PÅ™ibližná prodleva:" + +#~ msgid "Audio mode:" +#~ msgstr "Režim zvuku:" + +#~ msgid "Ignore" +#~ msgstr "Nevšímat si" + +#~ msgid "Client timeout" +#~ msgstr "PÅ™eruÅ¡ení klienta" + +#~ msgid "Number of ports:" +#~ msgstr "PoÄet přípojek:" + +#~ msgid "MIDI driver:" +#~ msgstr "OvladaÄ MIDI:" + +#~ msgid "Dither:" +#~ msgstr "Vložení Å¡umu do signálu:" + +#~ msgid "" +#~ "No JACK server found anywhere on this system. Please install JACK and " +#~ "restart" +#~ msgstr "" +#~ "V tomto systému nebyl nalezen žádný server JACK. Nainstalujte, prosím, " +#~ "JACK a spusÅ¥te Ardour znovu" + +#~ msgid "Server:" +#~ msgstr "Server:" + +#~ msgid "Input device:" +#~ msgstr "Vstupní zařízení:" + +#~ msgid "Output device:" +#~ msgstr "Výstupní zařízení:" + +#~ msgid "Device" +#~ msgstr "Zařízení" + +#~ msgid "Advanced" +#~ msgstr "PokroÄilé" + +#~ msgid "cannot open JACK rc file %1 to store parameters" +#~ msgstr "Nelze otevřít JACK soubor rc %1 pro uložení pomocných promÄ›nných" + +#~ msgid "" +#~ "You do not have any audio devices capable of\n" +#~ "simultaneous playback and recording.\n" +#~ "\n" +#~ "Please use Applications -> Utilities -> Audio MIDI Setup\n" +#~ "to create an \"aggregrate\" device, or install a suitable\n" +#~ "audio interface.\n" +#~ "\n" +#~ "Please send email to Apple and ask them why new Macs\n" +#~ "have no duplex audio device.\n" +#~ "\n" +#~ "Alternatively, if you really want just playback\n" +#~ "or recording but not both, start JACK before running\n" +#~ "%1 and choose the relevant device then." +#~ msgstr "" +#~ " Nemáte žádné zvukové zařízení, které by bylo schopno\n" +#~ "zároveň pÅ™ehrávat a nahrávat.\n" +#~ "\n" +#~ "Použijte, prosím, Aplikace -> UžiteÄné aplikace -> Nastavení Audio MIDI\n" +#~ "pro vytvoÅ™ení \"celkového\" zařízení, nebo nainstalujte vhodné\n" +#~ "rozhraní pro zvuk.\n" +#~ "\n" +#~ "PoÅ¡lete, prosím, e-mail firmÄ› Apple a zeptejte se, proÄ nový Mac\n" +#~ "nemá žádné zařízení pro dvojité (duplexní) audio.\n" +#~ "\n" +#~ "PopřípadÄ›, pokud skuteÄnÄ› chcete pouze pÅ™ehrávat\n" +#~ "nebo nahrávat, ale nikoli souÄasnÄ› obojí, spusÅ¥te JACK pÅ™ed spuÅ¡tÄ›ním\n" +#~ "%1 a potom vyberte přísluÅ¡né zařízení." + +#~ msgid "No suitable audio devices" +#~ msgstr "Žádné vhodné zvukové zařízení" + +#~ msgid "JACK appears to be missing from the %1 bundle" +#~ msgstr "Vypadá to, že JACK chybí v balíku %1" + +#~ msgid "You need to choose an audio device first." +#~ msgstr "Nejprve musíte vybrat zvukové zařízení." + +#~ msgid "Audio device \"%1\" not known on this computer." +#~ msgstr "Zdá se, že zařízení %1 v tomto poÄítaÄi neexistuje." + +#~ msgid "AudioSetup value for %1 is missing data" +#~ msgstr "Chybí data pro hodnotu nastavení zvuku %1" + +#~ msgid "" +#~ "configuration files contain a JACK server path that doesn't exist (%1)" +#~ msgstr "" +#~ "Soubory s nastavením obsahují cestu k JACK serveru, která neexistuje (%1)" + +#~ msgid "%1 could not connect to JACK." +#~ msgstr "%1 se nepodaÅ™ilo spojit se s JACKem." + +#~ msgid "" +#~ "There are several possible reasons:\n" +#~ "\n" +#~ "1) JACK is not running.\n" +#~ "2) JACK is running as another user, perhaps root.\n" +#~ "3) There is already another client called \"%1\".\n" +#~ "\n" +#~ "Please consider the possibilities, and perhaps (re)start JACK." +#~ msgstr "" +#~ "Pro to může být nÄ›kolik možných důvodů:\n" +#~ "\n" +#~ "1) JACK neběží.\n" +#~ "2) JACK byl spuÅ¡tÄ›n pod jiným uživatelem, možná pod superuživatelem " +#~ "(root).\n" +#~ "3) Je tu již jiný klient nazvaný \"%1\".\n" +#~ "\n" +#~ "Zvažte, prosím, tyto možnosti, a případnÄ› spusÅ¥te JACKa znovu." + +#~ msgid "JACK exited" +#~ msgstr "JACK skonÄil" + +#~ msgid "" +#~ "JACK exited unexpectedly, and without notifying %1.\n" +#~ "\n" +#~ "This could be due to misconfiguration or to an error inside JACK.\n" +#~ "\n" +#~ "Click OK to exit %1." +#~ msgstr "" +#~ "JACK neoÄekávanÄ› skonÄil, aniž by upozornil %1.\n" +#~ "\n" +#~ "Mohlo se to stát kvůli Å¡patnému nastavení, nebo kvůli chybÄ› v serveru " +#~ "JACK.\n" +#~ "\n" +#~ "KlepnÄ›te na OK pro ukonÄení %1." + +#~ msgid "" +#~ "JACK exited unexpectedly, and without notifying %1.\n" +#~ "\n" +#~ "This is probably due to an error inside JACK. You should restart JACK\n" +#~ "and reconnect %1 to it, or exit %1 now. You cannot save your\n" +#~ "session at this time, because we would lose your connection information.\n" +#~ msgstr "" +#~ "JACK neoÄekávanÄ› skonÄil, aniž by upozornil %1.\n" +#~ "\n" +#~ "Stalo se to nejspíš kvůli chybÄ› v serveru JACK. MÄ›l byste JACK spustit " +#~ "znovu\n" +#~ "a pÅ™ipojit k nÄ›mu %1 znovu, nebo nyní %1 ukonÄit. V této chvíli nemůžete\n" +#~ "uložit své sezení, protože by doÅ¡lo ke ztrátÄ› informací o vaÅ¡em spojení.\n" + +#~ msgid "Not connected to JACK - no I/O changes are possible" +#~ msgstr "" +#~ "Nespojeno s JACKem - na vstupech/výstupech (I/O) nejsou možné žádné zmÄ›ny" + +#~ msgid "" +#~ " -c, --name Use a specific jack client name, default is " +#~ "ardour\n" +#~ msgstr "" +#~ " -c, --name Použít zvláštní název pro klienta " +#~ "JACK; výchozím je: ardour\n" + +#~ msgid "Do seamless looping (not possible when slaved to MTC, JACK etc)" +#~ msgstr "" +#~ "DÄ›lat souvislou smyÄku (není možné, když MTC, JACK atd. jsou hlavní)" + +#~ msgid "Synchronise editor and mixer track order" +#~ msgstr "Seřídit poÅ™adí stop v editoru a ve směšovaÄi" + +#~ msgid "follows order of editor" +#~ msgstr "následuje poÅ™adí v editoru" + +#~ msgid "" +#~ "The remote control ID of %6 is: %3\n" +#~ "\n" +#~ "\n" +#~ "Remote Control IDs are currently determined by track/bus ordering in %1\n" +#~ "\n" +#~ "%4Use the User Interaction tab of the Preferences window if you want to " +#~ "change this%5" +#~ msgstr "" +#~ "ID dálkového ovládání %6 je: %3\n" +#~ "\n" +#~ "\n" +#~ "ID dálkového ovládání jsou v souÄasnosti urÄeny poÅ™adím stopy/sbÄ›rnice v " +#~ "%1\n" +#~ "\n" +#~ "\n" +#~ "%4Použijte kartu Uživatelská interakce v oknÄ› pro Nastavení, pokud to " +#~ "chcete zmÄ›nit%5" + +#~ msgid "the mixer" +#~ msgstr "SměšovaÄ" + +#~ msgid "the editor" +#~ msgstr "Editor" + +#~ msgid "Create a new session" +#~ msgstr "VytvoÅ™it nové sezení" + +#~ msgid "Open an existing session" +#~ msgstr "Otevřít stávající sezení" + +#~ msgid "I'd like more options for this session" +#~ msgstr "Rád bych mÄ›l pro toto sezení více voleb" + +#~ msgid "Audio / MIDI Setup" +#~ msgstr "Nastavení zvuku/MIDI" + +#~ msgid "Use an existing session as a template:" +#~ msgstr "Použít stávající sezení jako pÅ™edlohu:" + +#~ msgid "Select template" +#~ msgstr "Vybrat pÅ™edlohu" + +#~ msgid "Browse:" +#~ msgstr "Procházet:" + +#~ msgid "Select a session" +#~ msgstr "Vybrat sezení" + +#~ msgid "Advanced Session Options" +#~ msgstr "PokroÄilé volby pro sezení" diff --git a/gtk2_ardour/po/de.po b/gtk2_ardour/po/de.po index 256fcdd356..69274a1bae 100644 --- a/gtk2_ardour/po/de.po +++ b/gtk2_ardour/po/de.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gtk-ardour 0.347.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-26 16:09+0200\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2013-09-26 16:32+0200\n" "Last-Translator: Edgar Aichinger \n" "Language-Team: German \n" @@ -463,22 +463,22 @@ msgid "Group:" msgstr "Gruppe:" #: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 -#: ardour_ui_ed.cc:476 engine_dialog.cc:201 rc_option_editor.cc:1454 -#: rc_option_editor.cc:1456 rc_option_editor.cc:1458 rc_option_editor.cc:1474 -#: rc_option_editor.cc:1476 rc_option_editor.cc:1484 rc_option_editor.cc:1486 -#: rc_option_editor.cc:1504 rc_option_editor.cc:1517 rc_option_editor.cc:1519 -#: rc_option_editor.cc:1521 rc_option_editor.cc:1552 rc_option_editor.cc:1554 -#: rc_option_editor.cc:1556 rc_option_editor.cc:1564 rc_option_editor.cc:1572 -#: rc_option_editor.cc:1580 +#: ardour_ui_ed.cc:476 engine_dialog.cc:236 rc_option_editor.cc:1446 +#: rc_option_editor.cc:1448 rc_option_editor.cc:1450 rc_option_editor.cc:1466 +#: rc_option_editor.cc:1468 rc_option_editor.cc:1476 rc_option_editor.cc:1478 +#: rc_option_editor.cc:1496 rc_option_editor.cc:1509 rc_option_editor.cc:1511 +#: rc_option_editor.cc:1513 rc_option_editor.cc:1544 rc_option_editor.cc:1546 +#: rc_option_editor.cc:1548 rc_option_editor.cc:1556 rc_option_editor.cc:1564 +#: rc_option_editor.cc:1572 msgid "Audio" msgstr "Audio" #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 -#: editor_actions.cc:105 engine_dialog.cc:202 missing_file_dialog.cc:55 -#: rc_option_editor.cc:1703 rc_option_editor.cc:1711 rc_option_editor.cc:1719 +#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1695 +#: rc_option_editor.cc:1703 rc_option_editor.cc:1711 rc_option_editor.cc:1720 #: rc_option_editor.cc:1728 rc_option_editor.cc:1736 rc_option_editor.cc:1744 -#: rc_option_editor.cc:1752 rc_option_editor.cc:1761 rc_option_editor.cc:1770 -#: rc_option_editor.cc:1779 rc_option_editor.cc:1787 rc_option_editor.cc:1795 +#: rc_option_editor.cc:1753 rc_option_editor.cc:1762 rc_option_editor.cc:1771 +#: rc_option_editor.cc:1779 rc_option_editor.cc:1787 msgid "MIDI" msgstr "MIDI" @@ -651,79 +651,79 @@ msgstr "" "Schaltfläche kann den Status des nichtexistenten Kontrollzieles nicht " "verfolgen\n" -#: ardour_ui.cc:179 +#: ardour_ui.cc:180 msgid "audition" msgstr "Vorhören" -#: ardour_ui.cc:180 +#: ardour_ui.cc:181 msgid "solo" msgstr "Solo" -#: ardour_ui.cc:181 +#: ardour_ui.cc:182 msgid "feedback" msgstr "Feedback" -#: ardour_ui.cc:186 speaker_dialog.cc:36 +#: ardour_ui.cc:187 speaker_dialog.cc:36 msgid "Speaker Configuration" msgstr "Lautsprechereinstellung" -#: ardour_ui.cc:187 theme_manager.cc:56 theme_manager.cc:64 +#: ardour_ui.cc:188 theme_manager.cc:56 theme_manager.cc:64 msgid "Theme Manager" msgstr "Thema" -#: ardour_ui.cc:188 keyeditor.cc:53 +#: ardour_ui.cc:189 keyeditor.cc:53 msgid "Key Bindings" msgstr "Tastenkombinationen" -#: ardour_ui.cc:189 +#: ardour_ui.cc:190 msgid "Preferences" msgstr "Globale Einstellungen" -#: ardour_ui.cc:190 ardour_ui.cc:196 +#: ardour_ui.cc:191 ardour_ui.cc:197 msgid "Add Tracks/Busses" msgstr "Spuren/Busse hinzufügen" -#: ardour_ui.cc:191 +#: ardour_ui.cc:192 msgid "About" msgstr "Über..." -#: ardour_ui.cc:192 location_ui.cc:1146 +#: ardour_ui.cc:193 location_ui.cc:1146 msgid "Locations" msgstr "Positionen" -#: ardour_ui.cc:193 route_params_ui.cc:58 route_params_ui.cc:606 +#: ardour_ui.cc:194 route_params_ui.cc:58 route_params_ui.cc:606 msgid "Tracks and Busses" msgstr "Spuren/Busse" -#: ardour_ui.cc:194 engine_dialog.cc:61 +#: ardour_ui.cc:195 engine_dialog.cc:67 msgid "Audio/MIDI Setup" msgstr "Audio/MIDI Einstellungen" -#: ardour_ui.cc:195 +#: ardour_ui.cc:196 msgid "Properties" msgstr "Projekteinstellungen" -#: ardour_ui.cc:197 bundle_manager.cc:263 +#: ardour_ui.cc:198 bundle_manager.cc:263 msgid "Bundle Manager" msgstr "Bundle Manager" -#: ardour_ui.cc:198 big_clock_window.cc:35 +#: ardour_ui.cc:199 big_clock_window.cc:35 msgid "Big Clock" msgstr "Große Zeitanzeige" -#: ardour_ui.cc:199 +#: ardour_ui.cc:200 msgid "Audio Connections" msgstr "Audio-Verbindungen" -#: ardour_ui.cc:200 +#: ardour_ui.cc:201 msgid "MIDI Connections" msgstr "MIDI-Verbindungen" -#: ardour_ui.cc:202 +#: ardour_ui.cc:203 msgid "Errors" msgstr "Fehlermeldungen" -#: ardour_ui.cc:438 +#: ardour_ui.cc:436 msgid "" "The audio backend was shutdown because:\n" "\n" @@ -733,23 +733,35 @@ msgstr "" "\n" "%1" -#: ardour_ui.cc:440 +#: ardour_ui.cc:438 msgid "" -"`The audio backend has either been shutdown or it\n" +"The audio backend has either been shutdown or it\n" "disconnected %1 because %1\n" "was not fast enough. Try to restart\n" "the audio backend and save the session." msgstr "" -"Das Audiobackend wurde entweder beendet oder von\n" -"%1 getrennt, weil %1 nicht schnell genug\n" -"war. Sie sollten versuchen, das Audiobackend \n" -"neu zu starten und das Projekt zu speichern." -#: ardour_ui.cc:818 startup.cc:378 +#: ardour_ui.cc:758 +msgid "NSM server did not announce itself" +msgstr "" + +#: ardour_ui.cc:771 +msgid "NSM: no client ID provided" +msgstr "" + +#: ardour_ui.cc:778 +msgid "NSM: no session created" +msgstr "" + +#: ardour_ui.cc:801 +msgid "NSM: initialization failed" +msgstr "" + +#: ardour_ui.cc:840 startup.cc:379 msgid "%1 is ready for use" msgstr "%1 ist bereit" -#: ardour_ui.cc:866 +#: ardour_ui.cc:882 msgid "" "WARNING: Your system has a limit for maximum amount of locked memory. This " "might cause %1 to run out of memory before your system runs out of memory. \n" @@ -764,23 +776,23 @@ msgstr "" "Sie können die Speicherbegrenzung mit 'ulimit -l' einsehen und normalerweise " "in %2 verändern." -#: ardour_ui.cc:883 +#: ardour_ui.cc:899 msgid "Do not show this window again" msgstr "Diese Meldung nicht erneut anzeigen" -#: ardour_ui.cc:925 +#: ardour_ui.cc:943 msgid "Don't quit" msgstr "Abbrechen" -#: ardour_ui.cc:926 +#: ardour_ui.cc:944 msgid "Just quit" msgstr "Beenden ohne zu speichern" -#: ardour_ui.cc:927 +#: ardour_ui.cc:945 msgid "Save and quit" msgstr "Speichern und beenden" -#: ardour_ui.cc:937 +#: ardour_ui.cc:955 msgid "" "%1 was unable to save your session.\n" "\n" @@ -794,15 +806,15 @@ msgstr "" "\n" "\"Trotzdem beenden\"." -#: ardour_ui.cc:968 +#: ardour_ui.cc:986 msgid "Please wait while %1 cleans up..." msgstr "Bitte warten Sie, während %1 aufräumt." -#: ardour_ui.cc:986 +#: ardour_ui.cc:1004 msgid "Unsaved Session" msgstr "Nicht gespeichertes Projekt" -#: ardour_ui.cc:1007 +#: ardour_ui.cc:1025 msgid "" "The session \"%1\"\n" "has not been saved.\n" @@ -820,7 +832,7 @@ msgstr "" "\n" "Wie wollen Sie vorgehen?" -#: ardour_ui.cc:1010 +#: ardour_ui.cc:1028 msgid "" "The snapshot \"%1\"\n" "has not been saved.\n" @@ -838,75 +850,75 @@ msgstr "" "\n" "Wie wollen Sie vorgehen?" -#: ardour_ui.cc:1024 +#: ardour_ui.cc:1042 msgid "Prompter" msgstr "Frage" -#: ardour_ui.cc:1110 ardour_ui.cc:1118 +#: ardour_ui.cc:1128 ardour_ui.cc:1136 #, c-format msgid "Audio: none" msgstr "Audio: Kein" -#: ardour_ui.cc:1122 +#: ardour_ui.cc:1140 #, c-format msgid "Audio: %.1f kHz / %4.1f ms" msgstr "Audio: %.1f kHz / %4.1f ms" -#: ardour_ui.cc:1126 +#: ardour_ui.cc:1144 #, c-format msgid "Audio: % kHz / %4.1f ms" msgstr "Audio: % kHz / %4.1f ms" -#: ardour_ui.cc:1144 export_video_dialog.cc:68 +#: ardour_ui.cc:1162 export_video_dialog.cc:67 msgid "File:" msgstr "Datei:" -#: ardour_ui.cc:1148 +#: ardour_ui.cc:1166 msgid "BWF" msgstr "BWF" -#: ardour_ui.cc:1151 +#: ardour_ui.cc:1169 msgid "WAV" msgstr "WAV" -#: ardour_ui.cc:1154 +#: ardour_ui.cc:1172 msgid "WAV64" msgstr "WAV64" -#: ardour_ui.cc:1157 session_option_editor.cc:197 +#: ardour_ui.cc:1175 session_option_editor.cc:197 msgid "CAF" msgstr "CAF" -#: ardour_ui.cc:1160 +#: ardour_ui.cc:1178 msgid "AIFF" msgstr "AIFF" -#: ardour_ui.cc:1163 +#: ardour_ui.cc:1181 msgid "iXML" msgstr "iXML" -#: ardour_ui.cc:1166 +#: ardour_ui.cc:1184 msgid "RF64" msgstr "RF64" -#: ardour_ui.cc:1174 +#: ardour_ui.cc:1192 msgid "32-float" msgstr "32-float" -#: ardour_ui.cc:1177 +#: ardour_ui.cc:1195 msgid "24-int" msgstr "24-int" -#: ardour_ui.cc:1180 +#: ardour_ui.cc:1198 msgid "16-int" msgstr "16-int" -#: ardour_ui.cc:1199 +#: ardour_ui.cc:1217 #, c-format msgid "DSP: %5.1f%%" msgstr "DSP: %5.1f%%" -#: ardour_ui.cc:1218 +#: ardour_ui.cc:1236 #, c-format msgid "" "Buffers: p:" @@ -917,34 +929,34 @@ msgstr "" "%% c:" "%%%" -#: ardour_ui.cc:1259 +#: ardour_ui.cc:1277 msgid "Disk: Unknown" msgstr "Disk: Unbekannt" -#: ardour_ui.cc:1261 +#: ardour_ui.cc:1279 msgid "Disk: 24hrs+" msgstr "Disk: 24h+" -#: ardour_ui.cc:1279 +#: ardour_ui.cc:1297 msgid "Disk: >24 hrs" msgstr "Disk: >24 h" -#: ardour_ui.cc:1290 +#: ardour_ui.cc:1308 #, c-format msgid "Disk: %02dh:%02dm:%02ds" msgstr "Disk: %02dh:%02dm:%02ds" -#: ardour_ui.cc:1316 +#: ardour_ui.cc:1334 #, c-format msgid "Timecode|TC: %s" msgstr "Timecode|TC: %s" -#: ardour_ui.cc:1433 ardour_ui.cc:1442 session_dialog.cc:301 -#: session_dialog.cc:306 +#: ardour_ui.cc:1451 ardour_ui.cc:1460 session_dialog.cc:322 +#: session_dialog.cc:327 msgid "Recent Sessions" msgstr "Zuletzt verwendete Projekte" -#: ardour_ui.cc:1521 +#: ardour_ui.cc:1539 msgid "" "%1 is not connected to any audio backend.\n" "You cannot open or close sessions in this condition" @@ -952,27 +964,27 @@ msgstr "" "%1 ist derzeit mit keinem Audiobackend verbunden.\n" "Daher können keine Projekte geöffnet oder geschlossen werden." -#: ardour_ui.cc:1545 +#: ardour_ui.cc:1563 msgid "Open Session" msgstr "Projekt öffnen" -#: ardour_ui.cc:1570 session_dialog.cc:332 session_import_dialog.cc:169 +#: ardour_ui.cc:1588 session_dialog.cc:353 session_import_dialog.cc:169 #: session_metadata_dialog.cc:729 msgid "%1 sessions" msgstr "%1 Projekte" -#: ardour_ui.cc:1607 +#: ardour_ui.cc:1625 msgid "You cannot add a track without a session already loaded." msgstr "" "Sie können erst Spuren oder Busse hinzufügen, wenn ein Projekt geladen wurde." -#: ardour_ui.cc:1615 +#: ardour_ui.cc:1633 msgid "could not create %1 new mixed track" msgid_plural "could not create %1 new mixed tracks" msgstr[0] "konnte %1 neue Audio+MIDI-Spur nicht erstellen" msgstr[1] "konnte %1 neue Audio+MIDI-Spuren nicht erstellen" -#: ardour_ui.cc:1621 ardour_ui.cc:1682 +#: ardour_ui.cc:1639 ardour_ui.cc:1700 msgid "" "There are insufficient JACK ports available\n" "to create a new track or bus.\n" @@ -985,24 +997,24 @@ msgstr "" "%1 und starten Sie JACK mit einer größeren\n" "Anzahl Ports neu." -#: ardour_ui.cc:1656 +#: ardour_ui.cc:1674 msgid "You cannot add a track or bus without a session already loaded." msgstr "" "Sie können erst Spuren oder Busse hinzufügen, wenn ein Projekt geladen wurde." -#: ardour_ui.cc:1665 +#: ardour_ui.cc:1683 msgid "could not create %1 new audio track" msgid_plural "could not create %1 new audio tracks" msgstr[0] "konnte %1 neue Audiospur nicht erstellen." msgstr[1] "konnte %1 neue Audiospuren nicht erstellen." -#: ardour_ui.cc:1674 +#: ardour_ui.cc:1692 msgid "could not create %1 new audio bus" msgid_plural "could not create %1 new audio busses" msgstr[0] "konnte %1 neuen Audiobus nicht erstellen" msgstr[1] "konnte %1 neue Audiobusse nicht erstellen" -#: ardour_ui.cc:1798 +#: ardour_ui.cc:1816 msgid "" "Please create one or more tracks before trying to record.\n" "You can do this with the \"Add Track or Bus\" option in the Session menu." @@ -1011,15 +1023,15 @@ msgstr "" "eine oder mehrere Spur hinzu. Die geht über \"Spur/Bus hinzufügen\"\n" "im Menüpunkt Projekt." -#: ardour_ui.cc:2175 +#: ardour_ui.cc:2193 msgid "Take Snapshot" msgstr "Schnappschuss machen" -#: ardour_ui.cc:2176 +#: ardour_ui.cc:2194 msgid "Name of new snapshot" msgstr "Name für neuen Schnappschuss" -#: ardour_ui.cc:2200 +#: ardour_ui.cc:2218 msgid "" "To ensure compatibility with various systems\n" "snapshot names may not contain a '%1' character" @@ -1027,29 +1039,29 @@ msgstr "" "Um die Kompatibilität mit verschiedenen Systemen sicher zu stellen,\n" "dürfen Namen von Schnappschüssen kein '%1'-Zeichen enthalten" -#: ardour_ui.cc:2212 +#: ardour_ui.cc:2230 msgid "Confirm Snapshot Overwrite" msgstr "Bestätige das Überschreiben des Schnappschusses" -#: ardour_ui.cc:2213 +#: ardour_ui.cc:2231 msgid "A snapshot already exists with that name. Do you want to overwrite it?" msgstr "" "Ein Schnappschuss mit diesem Namen existiert bereits. Wollen Sie ihn " "überschreiben?" -#: ardour_ui.cc:2216 utils_videotl.cc:67 +#: ardour_ui.cc:2234 utils_videotl.cc:67 msgid "Overwrite" msgstr "Überschreiben" -#: ardour_ui.cc:2250 +#: ardour_ui.cc:2268 msgid "Rename Session" msgstr "Projekt umbenennen" -#: ardour_ui.cc:2251 +#: ardour_ui.cc:2269 msgid "New session name" msgstr "Neuer Projektname" -#: ardour_ui.cc:2265 ardour_ui.cc:2650 ardour_ui.cc:2686 +#: ardour_ui.cc:2283 ardour_ui.cc:2684 ardour_ui.cc:2722 msgid "" "To ensure compatibility with various systems\n" "session names may not contain a '%1' character" @@ -1057,14 +1069,14 @@ msgstr "" "Um die Kompatibilität mit verschiedenen Systemen sicher zu stellen,\n" "dürfen Projektnamen kein '%1'-Zeichen enthalten" -#: ardour_ui.cc:2273 +#: ardour_ui.cc:2291 msgid "" "That name is already in use by another directory/folder. Please try again." msgstr "" "Dieser Name wird schon von einem anderen Verzeichnis/Ordner benutzt. Bitte " "versuchen Sie einen anderen Namen." -#: ardour_ui.cc:2282 +#: ardour_ui.cc:2300 msgid "" "Renaming this session failed.\n" "Things could be seriously messed up at this point" @@ -1072,19 +1084,19 @@ msgstr "" "Das Umbenennen des Projekts ist fehlgeschlagen.\n" "Dies könnte auf schwerwiegende Probleme hinweisen." -#: ardour_ui.cc:2393 +#: ardour_ui.cc:2411 msgid "Save Template" msgstr "Als Vorlage Speichern" -#: ardour_ui.cc:2394 +#: ardour_ui.cc:2412 msgid "Name for template:" msgstr "Name für Vorlage" -#: ardour_ui.cc:2395 +#: ardour_ui.cc:2413 msgid "-template" msgstr "-Vorlage" -#: ardour_ui.cc:2433 +#: ardour_ui.cc:2451 msgid "" "This session\n" "%1\n" @@ -1094,48 +1106,59 @@ msgstr "" "%1\n" "existiert bereits. Wollen Sie sie öffnen?" -#: ardour_ui.cc:2443 +#: ardour_ui.cc:2461 msgid "Open Existing Session" msgstr "Vorhandenes Projekt öffnen" -#: ardour_ui.cc:2677 +#: ardour_ui.cc:2712 msgid "There is no existing session at \"%1\"" msgstr "Es gibt kein Projekt in: \"%1\"" -#: ardour_ui.cc:2764 +#: ardour_ui.cc:2804 msgid "Please wait while %1 loads your session" msgstr "Bitte warten Sie, während %1 das Projekt lädt" -#: ardour_ui.cc:2779 +#: ardour_ui.cc:2819 msgid "Port Registration Error" msgstr "Fehler bei der Registrierung von Ports" -#: ardour_ui.cc:2780 +#: ardour_ui.cc:2820 msgid "Click the Close button to try again." msgstr "Klicken Sie auf Schließen, um es erneut zu versuchen." -#: ardour_ui.cc:2801 +#: ardour_ui.cc:2841 msgid "Session \"%1 (snapshot %2)\" did not load successfully" msgstr "Projekt \"%1 (Schnappschuss %2)\" konnte nicht geladen werden." -#: ardour_ui.cc:2808 +#: ardour_ui.cc:2848 msgid "Loading Error" msgstr "Fehler beim Laden" -#: ardour_ui.cc:2875 +#: ardour_ui.cc:2867 +msgid "" +"This session has been opened in read-only mode.\n" +"\n" +"You will not be able to record or save." +msgstr "" + +#: ardour_ui.cc:2873 +msgid "Read-only Session" +msgstr "" + +#: ardour_ui.cc:2931 msgid "Could not create session in \"%1\"" msgstr "Konnte kein Projekt in \"%1\" anlegen" -#: ardour_ui.cc:2975 +#: ardour_ui.cc:3031 msgid "No files were ready for clean-up" msgstr "Keine Audiodateien zum Aufräumen vorhanden" -#: ardour_ui.cc:2979 ardour_ui.cc:2989 ardour_ui.cc:3122 ardour_ui.cc:3129 +#: ardour_ui.cc:3035 ardour_ui.cc:3045 ardour_ui.cc:3178 ardour_ui.cc:3185 #: ardour_ui_ed.cc:104 msgid "Clean-up" msgstr "Aufräumen" -#: ardour_ui.cc:2980 +#: ardour_ui.cc:3036 msgid "" "If this seems suprising, \n" "check for any existing snapshots.\n" @@ -1147,19 +1170,19 @@ msgstr "" "sind sie wahrscheinlich noch in einem\n" "älteren Schnappschuss als Region eingebunden." -#: ardour_ui.cc:3039 +#: ardour_ui.cc:3095 msgid "kilo" msgstr "kilo" -#: ardour_ui.cc:3042 +#: ardour_ui.cc:3098 msgid "mega" msgstr "mega" -#: ardour_ui.cc:3045 +#: ardour_ui.cc:3101 msgid "giga" msgstr "giga" -#: ardour_ui.cc:3050 +#: ardour_ui.cc:3106 msgid "" "The following file was deleted from %2,\n" "releasing %3 %4bytes of disk space" @@ -1173,7 +1196,7 @@ msgstr[1] "" "Die folgenden %1 Dateien wurden von %2\n" "gelöscht und gaben %3 %4bytes Speicherplatz frei" -#: ardour_ui.cc:3057 +#: ardour_ui.cc:3113 msgid "" "The following file was not in use and \n" "has been moved to: %2\n" @@ -1211,11 +1234,11 @@ msgstr[1] "" "\n" "%3 %4bytes Speicherplatz freigegeben werden.\n" -#: ardour_ui.cc:3117 +#: ardour_ui.cc:3173 msgid "Are you sure you want to clean-up?" msgstr "Wollen Sie wirklich aufräumen?" -#: ardour_ui.cc:3124 +#: ardour_ui.cc:3180 msgid "" "Clean-up is a destructive operation.\n" "ALL undo/redo information will be lost if you clean-up.\n" @@ -1227,42 +1250,42 @@ msgstr "" "Nach dem Aufräumen werden alle nicht benötigten Audiodateien in den \"dead " "sounds\" Ordner verschoben." -#: ardour_ui.cc:3132 +#: ardour_ui.cc:3188 msgid "CleanupDialog" msgstr "Aufräumdialog" -#: ardour_ui.cc:3162 +#: ardour_ui.cc:3218 msgid "Cleaned Files" msgstr "Aufgeräumte Dateien" -#: ardour_ui.cc:3179 +#: ardour_ui.cc:3235 msgid "deleted file" msgstr "gelöschte Datei" -#: ardour_ui.cc:3271 +#: ardour_ui.cc:3381 msgid "" "Video-Server was not launched by Ardour. The request to stop it is ignored." msgstr "" "Der Video-Server wurde nicht von Ardour gestartet, der Befehl ihn anzuhalten " "wird ignoriert." -#: ardour_ui.cc:3275 +#: ardour_ui.cc:3385 msgid "Stop Video-Server" msgstr "Video-Server anhalten" -#: ardour_ui.cc:3276 +#: ardour_ui.cc:3386 msgid "Do you really want to stop the Video Server?" msgstr "Wollen Sie den Video-Server wirklich anhalten?" -#: ardour_ui.cc:3279 +#: ardour_ui.cc:3389 msgid "Yes, Stop It" msgstr "Ja, anhalten." -#: ardour_ui.cc:3305 +#: ardour_ui.cc:3415 msgid "The Video Server is already started." msgstr "Der Video-Server läuft bereits" -#: ardour_ui.cc:3307 +#: ardour_ui.cc:3417 msgid "" "An external Video Server is configured and can be reached. Not starting a " "new instance." @@ -1270,7 +1293,7 @@ msgstr "" "Ein externer Video-Server wurde konfiguriert, ist aber nicht erreichbar. Es " "wird keine neue Instanz gestartet." -#: ardour_ui.cc:3315 ardour_ui.cc:3405 +#: ardour_ui.cc:3425 ardour_ui.cc:3515 msgid "" "Could not connect to the Video Server. Start it or configure its access URL " "in Edit -> Preferences." @@ -1279,36 +1302,36 @@ msgstr "" "ihn vorher starten oder die Adresse in Bearbeiten -> Globale Einstellungen " "anpassen" -#: ardour_ui.cc:3339 +#: ardour_ui.cc:3449 msgid "Specified docroot is not an existing directory." msgstr "Das eingestellte Dokumentenverzeichnis existiert nicht." -#: ardour_ui.cc:3344 +#: ardour_ui.cc:3454 msgid "Given Video Server is not an executable file." msgstr "Der eingestellte Video-Server ist keine ausführbare Datei." -#: ardour_ui.cc:3377 +#: ardour_ui.cc:3487 msgid "Cannot launch the video-server" msgstr "Kann den Videoserver nicht starten " -#: ardour_ui.cc:3386 +#: ardour_ui.cc:3496 msgid "Video-server was started but does not respond to requests..." msgstr "Viideoserver wurde gestartet, reagiert aber nicht auf Anfragen..." -#: ardour_ui.cc:3431 editor_audio_import.cc:632 +#: ardour_ui.cc:3541 editor_audio_import.cc:632 msgid "could not open %1" msgstr "Konnte \"%s\" nicht öffnen." -#: ardour_ui.cc:3435 +#: ardour_ui.cc:3545 msgid "no video-file selected" msgstr "Es wurde keine Video-Datei ausgewählt." -#: ardour_ui.cc:3607 +#: ardour_ui.cc:3717 msgid "Recording was stopped because your system could not keep up." msgstr "" "Die Aufnahme wurde gestoppt, da Ihr System nicht schnell genug folgen konnte." -#: ardour_ui.cc:3636 +#: ardour_ui.cc:3746 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1322,7 +1345,7 @@ msgstr "" "Die Daten konnten nicht schnell genug geschrieben\n" "werden, um die Aufnahme fortzuführen.\n" -#: ardour_ui.cc:3655 +#: ardour_ui.cc:3765 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1336,11 +1359,11 @@ msgstr "" "Die Daten konnten nicht schnell genug gelesen\n" "werden, um die Wiedergabe aufrechtzuerhalten.\n" -#: ardour_ui.cc:3695 +#: ardour_ui.cc:3805 msgid "Crash Recovery" msgstr "Absturz-Wiederherstellung" -#: ardour_ui.cc:3696 +#: ardour_ui.cc:3806 msgid "" "This session appears to have been in the\n" "middle of recording when %1 or\n" @@ -1358,19 +1381,19 @@ msgstr "" "für Sie wiederherstellen oder sie verwerfen.\n" "Bitte entscheiden Sie, wie Sie vorgehen möchten.\n" -#: ardour_ui.cc:3708 +#: ardour_ui.cc:3818 msgid "Ignore crash data" msgstr "Daten verwerfen" -#: ardour_ui.cc:3709 +#: ardour_ui.cc:3819 msgid "Recover from crash" msgstr "Daten wiederherstellen" -#: ardour_ui.cc:3729 +#: ardour_ui.cc:3839 msgid "Sample Rate Mismatch" msgstr "Samplerate passt nicht" -#: ardour_ui.cc:3730 +#: ardour_ui.cc:3840 msgid "" "This session was created with a sample rate of %1 Hz, but\n" "%2 is currently running at %3 Hz. If you load this session,\n" @@ -1381,23 +1404,23 @@ msgstr "" "%2 läuft derzeit mit %3 Hz. Wenn Sie dieses Projekt laden, \n" "wird Ihr Audiomaterial mit der falschen Samplerate abgespielt.\n" -#: ardour_ui.cc:3739 +#: ardour_ui.cc:3849 msgid "Do not load session" msgstr "Projekt nicht laden" -#: ardour_ui.cc:3740 +#: ardour_ui.cc:3850 msgid "Load session anyway" msgstr "Projekt trotzdem laden" -#: ardour_ui.cc:3766 +#: ardour_ui.cc:3877 msgid "Could not disconnect from Audio/MIDI engine" msgstr "Konnte Verbindung mit der Audio/MIDI Engine nicht trennen" -#: ardour_ui.cc:3781 +#: ardour_ui.cc:3893 ardour_ui.cc:3896 msgid "Could not reconnect to the Audio/MIDI engine" msgstr "Konnte nicht zur Audio/MIDI Engine wiederverbinden" -#: ardour_ui.cc:4056 +#: ardour_ui.cc:4172 msgid "" "%4This is a session from an older version of %3%5\n" "\n" @@ -1577,15 +1600,15 @@ msgstr "Folge Bearbeitungen" msgid "Misc" msgstr "Sonstiges" -#: ardour_ui_dependents.cc:77 +#: ardour_ui_dependents.cc:69 msgid "Setup Editor" msgstr "Editor laden" -#: ardour_ui_dependents.cc:79 +#: ardour_ui_dependents.cc:71 msgid "Setup Mixer" msgstr "Mixer laden" -#: ardour_ui_dependents.cc:85 +#: ardour_ui_dependents.cc:77 msgid "Reload Session History" msgstr "Projekt-Aktionsverlauf laden" @@ -1643,15 +1666,15 @@ msgstr "Dateiformat" msgid "Sample Format" msgstr "Sampleformat" -#: ardour_ui_ed.cc:114 rc_option_editor.cc:1822 rc_option_editor.cc:1835 +#: ardour_ui_ed.cc:114 rc_option_editor.cc:1814 rc_option_editor.cc:1826 msgid "Control Surfaces" msgstr "Eingabegeräte / Controller" -#: ardour_ui_ed.cc:115 rc_option_editor.cc:1554 +#: ardour_ui_ed.cc:115 rc_option_editor.cc:1546 msgid "Plugins" msgstr "Plugins" -#: ardour_ui_ed.cc:116 rc_option_editor.cc:1898 +#: ardour_ui_ed.cc:116 rc_option_editor.cc:1889 msgid "Metering" msgstr "Pegelanzeige" @@ -1737,7 +1760,7 @@ msgid "Stem export..." msgstr "Stems exportieren..." #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 -#: export_video_dialog.cc:72 +#: export_video_dialog.cc:71 msgid "Export" msgstr "Exportieren" @@ -1789,7 +1812,7 @@ msgstr "Handbuch" msgid "Reference" msgstr "Referenz" -#: ardour_ui_ed.cc:208 plugin_ui.cc:416 +#: ardour_ui_ed.cc:208 plugin_ui.cc:415 msgid "Save" msgstr "Speichern" @@ -1986,7 +2009,7 @@ msgstr "MMC senden" msgid "Use MMC" msgstr "Benutze MMC" -#: ardour_ui_ed.cc:379 rc_option_editor.cc:1706 +#: ardour_ui_ed.cc:379 rc_option_editor.cc:1698 msgid "Send MIDI Clock" msgstr "MIDI Clock senden" @@ -2022,7 +2045,7 @@ msgstr "Timecode-Format" msgid "File Format" msgstr "Dateiformat" -#: ardour_ui_options.cc:65 +#: ardour_ui_options.cc:61 msgid "" "It is not possible to use JACK as the the sync source\n" "when the pull up/down setting is non-zero." @@ -2030,15 +2053,15 @@ msgstr "" "Es ist nicht möglich, JACK als Synchronisationsquelle zu verwenden,\n" "wenn die Pull-up/down Einstellung nicht 0 ist." -#: ardour_ui_options.cc:321 +#: ardour_ui_options.cc:317 msgid "Internal" msgstr "Intern" -#: ardour_ui_options.cc:482 +#: ardour_ui_options.cc:468 msgid "Enable/Disable external positional sync" msgstr "Aktiviere/Deaktiviere externe Positionssynchronisierung" -#: ardour_ui_options.cc:484 +#: ardour_ui_options.cc:470 msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "Synchronisation ist nicht möglich: Video pull-up/down ist aktiviert" @@ -2158,27 +2181,27 @@ msgstr "Diese Spur verbergen" #: automation_time_axis.cc:255 automation_time_axis.cc:307 #: automation_time_axis.cc:496 gain_meter.cc:194 generic_pluginui.cc:454 -#: generic_pluginui.cc:744 panner_ui.cc:149 +#: generic_pluginui.cc:775 panner_ui.cc:149 msgid "Automation|Manual" msgstr "Manuell" #: automation_time_axis.cc:257 automation_time_axis.cc:318 -#: automation_time_axis.cc:501 editor.cc:1934 editor.cc:2011 +#: automation_time_axis.cc:501 editor.cc:1937 editor.cc:2014 #: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:197 -#: generic_pluginui.cc:457 generic_pluginui.cc:746 midi_time_axis.cc:1488 +#: generic_pluginui.cc:457 generic_pluginui.cc:777 midi_time_axis.cc:1488 #: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:152 msgid "Play" msgstr "Wiedergabe" #: automation_time_axis.cc:259 automation_time_axis.cc:329 #: automation_time_axis.cc:506 gain_meter.cc:200 generic_pluginui.cc:460 -#: generic_pluginui.cc:748 panner_ui.cc:155 +#: generic_pluginui.cc:779 panner_ui.cc:155 msgid "Write" msgstr "Schreiben" #: automation_time_axis.cc:261 automation_time_axis.cc:340 #: automation_time_axis.cc:511 gain_meter.cc:203 generic_pluginui.cc:463 -#: generic_pluginui.cc:750 panner_ui.cc:158 +#: generic_pluginui.cc:781 panner_ui.cc:158 msgid "Touch" msgstr "Ändern" @@ -2239,13 +2262,13 @@ msgstr "Eingang" msgid "Output" msgstr "Ausgang" -#: bundle_manager.cc:264 editor.cc:1975 editor_actions.cc:90 +#: bundle_manager.cc:264 editor.cc:1978 editor_actions.cc:90 #: editor_actions.cc:100 msgid "Edit" msgstr "Bearbeiten" -#: bundle_manager.cc:265 editor.cc:5494 editor_actions.cc:310 -#: editor_actions.cc:368 plugin_ui.cc:417 processor_box.cc:2229 +#: bundle_manager.cc:265 editor.cc:5497 editor_actions.cc:310 +#: editor_actions.cc:368 plugin_ui.cc:416 processor_box.cc:2268 #: route_time_axis.cc:713 msgid "Delete" msgstr "Löschen" @@ -2422,164 +2445,164 @@ msgstr "Länge" msgid "edit note" msgstr "Note bearbeiten" -#: editor.cc:137 editor.cc:3430 +#: editor.cc:137 editor.cc:3433 msgid "CD Frames" msgstr "CD-Frames" -#: editor.cc:138 editor.cc:3432 +#: editor.cc:138 editor.cc:3435 msgid "Timecode Frames" msgstr "Timecode-Frames" -#: editor.cc:139 editor.cc:3434 +#: editor.cc:139 editor.cc:3437 msgid "Timecode Seconds" msgstr "Timecode-Sekunden" -#: editor.cc:140 editor.cc:3436 +#: editor.cc:140 editor.cc:3439 msgid "Timecode Minutes" msgstr "Timecode-Minuten" -#: editor.cc:141 editor.cc:3438 +#: editor.cc:141 editor.cc:3441 msgid "Seconds" msgstr "Sekunden" -#: editor.cc:142 editor.cc:3440 +#: editor.cc:142 editor.cc:3443 msgid "Minutes" msgstr "Minuten" -#: editor.cc:143 editor.cc:3414 quantize_dialog.cc:37 quantize_dialog.cc:141 +#: editor.cc:143 editor.cc:3417 quantize_dialog.cc:37 quantize_dialog.cc:141 msgid "Beats/128" msgstr "Schläge/128" -#: editor.cc:144 editor.cc:3412 quantize_dialog.cc:38 quantize_dialog.cc:143 +#: editor.cc:144 editor.cc:3415 quantize_dialog.cc:38 quantize_dialog.cc:143 msgid "Beats/64" msgstr "Schläge/64" -#: editor.cc:145 editor.cc:3410 quantize_dialog.cc:39 quantize_dialog.cc:145 +#: editor.cc:145 editor.cc:3413 quantize_dialog.cc:39 quantize_dialog.cc:145 msgid "Beats/32" msgstr "Schläge/32" -#: editor.cc:146 editor.cc:3408 +#: editor.cc:146 editor.cc:3411 msgid "Beats/28" msgstr "Schläge/28" -#: editor.cc:147 editor.cc:3406 +#: editor.cc:147 editor.cc:3409 msgid "Beats/24" msgstr "Schläge/24" -#: editor.cc:148 editor.cc:3404 +#: editor.cc:148 editor.cc:3407 msgid "Beats/20" msgstr "Schläge/20" -#: editor.cc:149 editor.cc:3402 quantize_dialog.cc:40 quantize_dialog.cc:147 +#: editor.cc:149 editor.cc:3405 quantize_dialog.cc:40 quantize_dialog.cc:147 msgid "Beats/16" msgstr "Schläge/16" -#: editor.cc:150 editor.cc:3400 +#: editor.cc:150 editor.cc:3403 msgid "Beats/14" msgstr "Schläge/14" -#: editor.cc:151 editor.cc:3398 +#: editor.cc:151 editor.cc:3401 msgid "Beats/12" msgstr "Schläge/12" -#: editor.cc:152 editor.cc:3396 +#: editor.cc:152 editor.cc:3399 msgid "Beats/10" msgstr "Schläge/10" -#: editor.cc:153 editor.cc:3394 quantize_dialog.cc:41 quantize_dialog.cc:149 +#: editor.cc:153 editor.cc:3397 quantize_dialog.cc:41 quantize_dialog.cc:149 msgid "Beats/8" msgstr "Schläge/8" -#: editor.cc:154 editor.cc:3392 +#: editor.cc:154 editor.cc:3395 msgid "Beats/7" msgstr "Schläge/7" -#: editor.cc:155 editor.cc:3390 +#: editor.cc:155 editor.cc:3393 msgid "Beats/6" msgstr "Schläge/6" -#: editor.cc:156 editor.cc:3388 +#: editor.cc:156 editor.cc:3391 msgid "Beats/5" msgstr "Schläge/5" -#: editor.cc:157 editor.cc:3386 quantize_dialog.cc:42 quantize_dialog.cc:151 +#: editor.cc:157 editor.cc:3389 quantize_dialog.cc:42 quantize_dialog.cc:151 msgid "Beats/4" msgstr "Schläge/4" -#: editor.cc:158 editor.cc:3384 quantize_dialog.cc:43 quantize_dialog.cc:153 +#: editor.cc:158 editor.cc:3387 quantize_dialog.cc:43 quantize_dialog.cc:153 msgid "Beats/3" msgstr "Schläge/3" -#: editor.cc:159 editor.cc:3382 quantize_dialog.cc:44 quantize_dialog.cc:155 +#: editor.cc:159 editor.cc:3385 quantize_dialog.cc:44 quantize_dialog.cc:155 msgid "Beats/2" msgstr "Schläge/2" -#: editor.cc:160 editor.cc:3416 quantize_dialog.cc:45 quantize_dialog.cc:157 +#: editor.cc:160 editor.cc:3419 quantize_dialog.cc:45 quantize_dialog.cc:157 msgid "Beats" msgstr "Schläge" -#: editor.cc:161 editor.cc:3418 +#: editor.cc:161 editor.cc:3421 msgid "Bars" msgstr "Takte" -#: editor.cc:162 editor.cc:3420 +#: editor.cc:162 editor.cc:3423 msgid "Marks" msgstr "Marker" -#: editor.cc:163 editor.cc:3422 +#: editor.cc:163 editor.cc:3425 msgid "Region starts" msgstr "Regionen-Anfang" -#: editor.cc:164 editor.cc:3424 +#: editor.cc:164 editor.cc:3427 msgid "Region ends" msgstr "Regionen-Ende" -#: editor.cc:165 editor.cc:3428 +#: editor.cc:165 editor.cc:3431 msgid "Region syncs" msgstr "Regionen-Sync" -#: editor.cc:166 editor.cc:3426 +#: editor.cc:166 editor.cc:3429 msgid "Region bounds" msgstr "Regionengrenzen" -#: editor.cc:171 editor.cc:3456 editor_actions.cc:485 +#: editor.cc:171 editor.cc:3459 editor_actions.cc:485 msgid "No Grid" msgstr "Raster aus" -#: editor.cc:172 editor.cc:3458 editor_actions.cc:486 +#: editor.cc:172 editor.cc:3461 editor_actions.cc:486 msgid "Grid" msgstr "Einrasten" -#: editor.cc:173 editor.cc:3460 editor_actions.cc:487 +#: editor.cc:173 editor.cc:3463 editor_actions.cc:487 msgid "Magnetic" msgstr "Magnetisch" -#: editor.cc:178 editor.cc:188 editor.cc:3499 editor.cc:3524 +#: editor.cc:178 editor.cc:188 editor.cc:3502 editor.cc:3527 #: editor_actions.cc:117 editor_actions.cc:468 msgid "Playhead" msgstr "Positionszeiger" -#: editor.cc:179 editor.cc:3497 editor_actions.cc:470 +#: editor.cc:179 editor.cc:3500 editor_actions.cc:470 msgid "Marker" msgstr "Marker" -#: editor.cc:180 editor.cc:189 editor.cc:3526 editor_actions.cc:469 +#: editor.cc:180 editor.cc:189 editor.cc:3529 editor_actions.cc:469 msgid "Mouse" msgstr "Maus" -#: editor.cc:185 editor.cc:3518 mono_panner_editor.cc:42 +#: editor.cc:185 editor.cc:3521 mono_panner_editor.cc:42 msgid "Left" msgstr "Links" -#: editor.cc:186 editor.cc:3520 mono_panner_editor.cc:47 +#: editor.cc:186 editor.cc:3523 mono_panner_editor.cc:47 msgid "Right" msgstr "Rechts" -#: editor.cc:187 editor.cc:3522 +#: editor.cc:187 editor.cc:3525 msgid "Center" msgstr "Mitte" -#: editor.cc:190 editor.cc:3091 editor.cc:3528 +#: editor.cc:190 editor.cc:3094 editor.cc:3531 msgid "Edit point" msgstr "Arbeitspunkt" @@ -2659,22 +2682,22 @@ msgstr "Spuren & Bus-Gruppen" msgid "Ranges & Marks" msgstr "Bereiche & Marker" -#: editor.cc:690 editor.cc:5346 rc_option_editor.cc:1292 +#: editor.cc:690 editor.cc:5349 rc_option_editor.cc:1292 #: rc_option_editor.cc:1300 rc_option_editor.cc:1308 rc_option_editor.cc:1316 #: rc_option_editor.cc:1333 rc_option_editor.cc:1335 rc_option_editor.cc:1343 #: rc_option_editor.cc:1351 rc_option_editor.cc:1371 rc_option_editor.cc:1383 #: rc_option_editor.cc:1385 rc_option_editor.cc:1393 rc_option_editor.cc:1401 -#: rc_option_editor.cc:1409 rc_option_editor.cc:1417 rc_option_editor.cc:1425 -#: rc_option_editor.cc:1440 rc_option_editor.cc:1444 +#: rc_option_editor.cc:1409 rc_option_editor.cc:1417 rc_option_editor.cc:1432 +#: rc_option_editor.cc:1436 msgid "Editor" msgstr "Editor" -#: editor.cc:1215 editor.cc:1225 editor.cc:4441 editor_actions.cc:130 +#: editor.cc:1215 editor.cc:1225 editor.cc:4444 editor_actions.cc:130 #: editor_actions.cc:1813 msgid "Loop" msgstr "Schleife" -#: editor.cc:1231 editor.cc:1241 editor.cc:4468 editor_actions.cc:131 +#: editor.cc:1231 editor.cc:1241 editor.cc:4471 editor_actions.cc:131 #: time_info_box.cc:67 msgid "Punch" msgstr "Punch" @@ -2812,164 +2835,168 @@ msgstr "Auswahl zur Regionenliste bouncen (Post-Fader)" msgid "Export Range..." msgstr "Bereich exportieren..." -#: editor.cc:1928 editor.cc:2009 editor_actions.cc:281 +#: editor.cc:1915 +msgid "Export Video Range..." +msgstr "" + +#: editor.cc:1931 editor.cc:2012 editor_actions.cc:281 msgid "Play From Edit Point" msgstr "Wiedergabe ab Arbeitspunkt" -#: editor.cc:1929 editor.cc:2010 +#: editor.cc:1932 editor.cc:2013 msgid "Play From Start" msgstr "Wiedergabe ab Anfang" -#: editor.cc:1930 +#: editor.cc:1933 msgid "Play Region" msgstr "Region wiedergeben" -#: editor.cc:1932 +#: editor.cc:1935 msgid "Loop Region" msgstr "Region in Schleife wiedergeben" -#: editor.cc:1942 editor.cc:2019 +#: editor.cc:1945 editor.cc:2022 msgid "Select All in Track" msgstr "Alles in der Spur auswählen" -#: editor.cc:1943 editor.cc:2020 editor_actions.cc:185 -#: export_timespan_selector.cc:53 processor_box.cc:2237 +#: editor.cc:1946 editor.cc:2023 editor_actions.cc:185 +#: export_timespan_selector.cc:53 processor_box.cc:2276 msgid "Select All" msgstr "Alles auswählen" -#: editor.cc:1944 editor.cc:2021 +#: editor.cc:1947 editor.cc:2024 msgid "Invert Selection in Track" msgstr "Auswahl in der Spur umkehren" -#: editor.cc:1945 editor.cc:2022 editor_actions.cc:187 +#: editor.cc:1948 editor.cc:2025 editor_actions.cc:187 msgid "Invert Selection" msgstr "Auswahl umkehren" -#: editor.cc:1947 +#: editor.cc:1950 msgid "Set Range to Loop Range" msgstr "Bereich als Schleife auswählen" -#: editor.cc:1948 +#: editor.cc:1951 msgid "Set Range to Punch Range" msgstr "Bereich als Punchbereich" -#: editor.cc:1950 editor.cc:2024 editor_actions.cc:188 +#: editor.cc:1953 editor.cc:2027 editor_actions.cc:188 msgid "Select All After Edit Point" msgstr "Alle Regionen nach dem Arbeitspunkt auswählen" -#: editor.cc:1951 editor.cc:2025 editor_actions.cc:189 +#: editor.cc:1954 editor.cc:2028 editor_actions.cc:189 msgid "Select All Before Edit Point" msgstr "Alle Regionen vor dem Arbeitspunkt auswählen" -#: editor.cc:1952 editor.cc:2026 +#: editor.cc:1955 editor.cc:2029 msgid "Select All After Playhead" msgstr "Alle Regionen nach dem Positionszeiger auswählen" -#: editor.cc:1953 editor.cc:2027 +#: editor.cc:1956 editor.cc:2030 msgid "Select All Before Playhead" msgstr "Alle Regionen vor dem Positionszeiger auswählen" -#: editor.cc:1954 +#: editor.cc:1957 msgid "Select All Between Playhead and Edit Point" msgstr "Alle zwischen Positionszeiger und Arbeitspunkt auswählen" -#: editor.cc:1955 +#: editor.cc:1958 msgid "Select All Within Playhead and Edit Point" msgstr "Alles zwischen Positionszeiger und Arbeitspunkt auswählen" -#: editor.cc:1956 +#: editor.cc:1959 msgid "Select Range Between Playhead and Edit Point" msgstr "Wähle Bereich zwischen Positionszeiger und Arbeitspunkt aus" -#: editor.cc:1958 editor.cc:2029 editor_actions.cc:127 editor_actions.cc:128 +#: editor.cc:1961 editor.cc:2032 editor_actions.cc:127 editor_actions.cc:128 msgid "Select" msgstr "Auswahl" -#: editor.cc:1966 editor.cc:2037 editor_actions.cc:309 processor_box.cc:2222 +#: editor.cc:1969 editor.cc:2040 editor_actions.cc:309 processor_box.cc:2261 msgid "Cut" msgstr "Ausschneiden" -#: editor.cc:1967 editor.cc:2038 editor_actions.cc:312 processor_box.cc:2225 +#: editor.cc:1970 editor.cc:2041 editor_actions.cc:312 processor_box.cc:2264 msgid "Copy" msgstr "Kopieren" -#: editor.cc:1968 editor.cc:2039 editor_actions.cc:313 processor_box.cc:2233 +#: editor.cc:1971 editor.cc:2042 editor_actions.cc:313 processor_box.cc:2272 msgid "Paste" msgstr "Einfügen" -#: editor.cc:1972 editor_actions.cc:87 +#: editor.cc:1975 editor_actions.cc:87 msgid "Align" msgstr "Ausrichten" -#: editor.cc:1973 +#: editor.cc:1976 msgid "Align Relative" msgstr "Relativ ausrichten" -#: editor.cc:1980 +#: editor.cc:1983 msgid "Insert Selected Region" msgstr "Ausgewählte Region einfügen" -#: editor.cc:1981 +#: editor.cc:1984 msgid "Insert Existing Media" msgstr "Vorhandenes Material importieren" -#: editor.cc:1990 editor.cc:2046 +#: editor.cc:1993 editor.cc:2049 msgid "Nudge Entire Track Later" msgstr "Gesamte Spur schrittweise nach hinten" -#: editor.cc:1991 editor.cc:2047 +#: editor.cc:1994 editor.cc:2050 msgid "Nudge Track After Edit Point Later" msgstr "Spur nach Arbeitspunkt schrittweise nach hinten" -#: editor.cc:1992 editor.cc:2048 +#: editor.cc:1995 editor.cc:2051 msgid "Nudge Entire Track Earlier" msgstr "Gesamte Spur schrittweise nach vorne" -#: editor.cc:1993 editor.cc:2049 +#: editor.cc:1996 editor.cc:2052 msgid "Nudge Track After Edit Point Earlier" msgstr "Spur nach Arbeitspunkt schrittweise nach vorne" -#: editor.cc:1995 editor.cc:2051 +#: editor.cc:1998 editor.cc:2054 msgid "Nudge" msgstr "Verschieben" -#: editor.cc:3071 +#: editor.cc:3074 msgid "Smart Mode (add Range functions to Object mode)" msgstr "Smart-Modus (zusätzliche Bereichsfunktionen m Objekt-Modus)" -#: editor.cc:3072 +#: editor.cc:3075 msgid "Object Mode (select/move Objects)" msgstr "Objekt-Modus (Objekte auswählen/verschieben)" -#: editor.cc:3073 +#: editor.cc:3076 msgid "Range Mode (select/move Ranges)" msgstr "Bereichs-Modus (Bereiche auswählen/verschieben)" -#: editor.cc:3074 +#: editor.cc:3077 msgid "Draw/Edit MIDI Notes" msgstr "MIDI Noten eingeben/editieren" -#: editor.cc:3075 +#: editor.cc:3078 msgid "Draw Region Gain" msgstr "Lautstärkeautomation zeichnen" -#: editor.cc:3076 +#: editor.cc:3079 msgid "Select Zoom Range" msgstr "Zoombereich auswählen" -#: editor.cc:3077 +#: editor.cc:3080 msgid "Stretch/Shrink Regions and MIDI Notes" msgstr "Regionen und MIDI-Noten strecken/stauchen (Time-Stretch)" -#: editor.cc:3078 +#: editor.cc:3081 msgid "Listen to Specific Regions" msgstr "Ausgewählte Regionen vorhören" -#: editor.cc:3079 +#: editor.cc:3082 msgid "Note Level Editing" msgstr "Auf Notenebene bearbeiten" -#: editor.cc:3080 +#: editor.cc:3083 msgid "" "Groups: click to (de)activate\n" "Context-click for other operations" @@ -2977,51 +3004,51 @@ msgstr "" "Gruppen: Klicken zum (De)aktivieren\n" "Rechtsklick für Optionen" -#: editor.cc:3081 +#: editor.cc:3084 msgid "Nudge Region/Selection Later" msgstr "Region/Auswahl schrittweise nach hinten" -#: editor.cc:3082 +#: editor.cc:3085 msgid "Nudge Region/Selection Earlier" msgstr "Region/Auswahl schrittweise nach vorne" -#: editor.cc:3083 editor_actions.cc:242 +#: editor.cc:3086 editor_actions.cc:242 msgid "Zoom In" msgstr "Vergrößern" -#: editor.cc:3084 editor_actions.cc:241 +#: editor.cc:3087 editor_actions.cc:241 msgid "Zoom Out" msgstr "Verkleinern" -#: editor.cc:3085 editor_actions.cc:243 +#: editor.cc:3088 editor_actions.cc:243 msgid "Zoom to Session" msgstr "Auf ganzes Projekt zoomen" -#: editor.cc:3086 +#: editor.cc:3089 msgid "Zoom focus" msgstr "Zoom-Mittelpunkt" -#: editor.cc:3087 +#: editor.cc:3090 msgid "Expand Tracks" msgstr "Spuren vergrößern" -#: editor.cc:3088 +#: editor.cc:3091 msgid "Shrink Tracks" msgstr "Spuren verkleinern" -#: editor.cc:3089 +#: editor.cc:3092 msgid "Snap/Grid Units" msgstr "Rastereinheiten" -#: editor.cc:3090 +#: editor.cc:3093 msgid "Snap/Grid Mode" msgstr "Einrastmodus" -#: editor.cc:3092 +#: editor.cc:3095 msgid "Edit Mode" msgstr "Bearbeitungsmodus" -#: editor.cc:3093 +#: editor.cc:3096 msgid "" "Nudge Clock\n" "(controls distance used to nudge regions and selections)" @@ -3030,39 +3057,39 @@ msgstr "" "(bestimmt den Abstand für das schrittweise Verschieben von Regionen und " "Bereichen)" -#: editor.cc:3195 +#: editor.cc:3198 msgid "malformed URL passed to drag-n-drop code" msgstr "Ungültige URL an drag-n-drop-Code weitergeleitet" -#: editor.cc:3257 editor_actions.cc:291 +#: editor.cc:3260 editor_actions.cc:291 msgid "Command|Undo" msgstr "Rückgängig" -#: editor.cc:3259 +#: editor.cc:3262 msgid "Command|Undo (%1)" msgstr "Rückgängig (%1)" -#: editor.cc:3266 editor_actions.cc:292 +#: editor.cc:3269 editor_actions.cc:292 msgid "Redo" msgstr "Wiederherstellen" -#: editor.cc:3268 +#: editor.cc:3271 msgid "Redo (%1)" msgstr "Wiederherstellen (%1)" -#: editor.cc:3287 editor.cc:3311 editor_actions.cc:106 editor_actions.cc:1794 +#: editor.cc:3290 editor.cc:3314 editor_actions.cc:106 editor_actions.cc:1794 msgid "Duplicate" msgstr "Duplizieren" -#: editor.cc:3288 +#: editor.cc:3291 msgid "Number of duplications:" msgstr "Anzahl der Duplikate:" -#: editor.cc:3865 +#: editor.cc:3868 msgid "Playlist Deletion" msgstr "Löschen von Wiedergabelisten" -#: editor.cc:3866 +#: editor.cc:3869 msgid "" "Playlist %1 is currently unused.\n" "If it is kept, its audio files will not be cleaned.\n" @@ -3074,36 +3101,37 @@ msgstr "" "Falls sie gelöscht wird, werden die ausschließlich von ihr verwendeten " "Audiodateien gelöscht." -#: editor.cc:3876 +#: editor.cc:3879 msgid "Delete Playlist" msgstr "Wiedergabeliste löschen" -#: editor.cc:3877 +#: editor.cc:3880 msgid "Keep Playlist" msgstr "Wiedergabeliste behalten" -#: editor.cc:3878 editor_audio_import.cc:581 editor_ops.cc:5856 -#: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 +#: editor.cc:3881 editor_audio_import.cc:581 editor_ops.cc:5856 +#: engine_dialog.cc:1711 sfdb_freesound_mootcher.cc:69 processor_box.cc:2030 +#: processor_box.cc:2055 msgid "Cancel" msgstr "Abbrechen" -#: editor.cc:4022 +#: editor.cc:4025 msgid "new playlists" msgstr "Neue Wiedergabelisten" -#: editor.cc:4038 +#: editor.cc:4041 msgid "copy playlists" msgstr "Wiedergabelisten kopieren" -#: editor.cc:4053 +#: editor.cc:4056 msgid "clear playlists" msgstr "Wiedergabelisten zurücksetzen" -#: editor.cc:4688 +#: editor.cc:4691 msgid "Please wait while %1 loads visual data." msgstr "Bitte warten Sie, während %1 die Daten zur Anzeige des Projekts lädt." -#: editor.cc:5493 editor_markers.cc:940 panner_ui.cc:392 processor_box.cc:2253 +#: editor.cc:5496 editor_markers.cc:940 panner_ui.cc:392 processor_box.cc:2292 msgid "Edit..." msgstr "Bearbeiten..." @@ -3203,7 +3231,7 @@ msgstr "MIDI Optionen" msgid "Misc Options" msgstr "Sonstiges" -#: editor_actions.cc:115 rc_option_editor.cc:1458 route_group_dialog.cc:48 +#: editor_actions.cc:115 rc_option_editor.cc:1450 route_group_dialog.cc:48 #: session_option_editor.cc:218 session_option_editor.cc:225 msgid "Monitoring" msgstr "Monitoring" @@ -3381,7 +3409,7 @@ msgstr "Positionszeiger zum Anfang des Auswahlbereichs" msgid "Playhead to Range End" msgstr "Positionszeiger zum Ende des Auswahlbereichs" -#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2239 +#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2278 msgid "Deselect All" msgstr "Nichts auswählen" @@ -3940,7 +3968,7 @@ msgstr "Min:Sek" msgid "Video Monitor" msgstr "Videomonitor" -#: editor_actions.cc:549 rc_option_editor.cc:1838 +#: editor_actions.cc:549 rc_option_editor.cc:1829 msgid "Video" msgstr "Video" @@ -4598,8 +4626,8 @@ msgstr "unbenannt" #: editor_markers.cc:1022 editor_markers.cc:1041 editor_markers.cc:1071 #: editor_markers.cc:1102 editor_markers.cc:1132 editor_markers.cc:1160 #: editor_markers.cc:1191 editor_markers.cc:1216 editor_markers.cc:1267 -#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1514 -#: editor_mouse.cc:2478 +#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1526 +#: editor_mouse.cc:2528 msgid "programming error: marker canvas item has no marker object pointer!" msgstr "Programmierfehler: marker canvas item has no marker object pointer!" @@ -4696,32 +4724,32 @@ msgstr "Bereich auswählen" msgid "Set Punch Range" msgstr "Punchbereich erstellen" -#: editor_markers.cc:1351 editor_ops.cc:1699 +#: editor_markers.cc:1362 editor_ops.cc:1699 msgid "New Name:" msgstr "Neuer Name: " -#: editor_markers.cc:1354 +#: editor_markers.cc:1365 msgid "Rename Mark" msgstr "Marker umbenennen" -#: editor_markers.cc:1356 +#: editor_markers.cc:1367 msgid "Rename Range" msgstr "Bereich umbenennen" -#: editor_markers.cc:1363 editor_mouse.cc:2510 processor_box.cc:1781 -#: processor_box.cc:2235 route_time_axis.cc:982 route_ui.cc:1540 +#: editor_markers.cc:1374 editor_mouse.cc:2560 processor_box.cc:1808 +#: processor_box.cc:2274 route_time_axis.cc:982 route_ui.cc:1540 msgid "Rename" msgstr "Umbenennen" -#: editor_markers.cc:1376 +#: editor_markers.cc:1387 msgid "rename marker" msgstr "Marker umbenennen" -#: editor_markers.cc:1399 +#: editor_markers.cc:1411 msgid "set loop range" msgstr "Loopbereich festlegen" -#: editor_markers.cc:1405 +#: editor_markers.cc:1417 msgid "set punch range" msgstr "Punchbereich festlegen" @@ -4734,7 +4762,7 @@ msgstr "" msgid "Editor::event_frame() used on unhandled event type %1" msgstr "Editor::event_frame() auf unbekannten Eventtyp %1 angewandt" -#: editor_mouse.cc:2235 editor_mouse.cc:2260 editor_mouse.cc:2273 +#: editor_mouse.cc:2285 editor_mouse.cc:2310 editor_mouse.cc:2323 msgid "" "programming error: control point canvas item has no control point object " "pointer!" @@ -4742,15 +4770,15 @@ msgstr "" "Programmierfehler: control point canvas item has no control point object " "pointer!" -#: editor_mouse.cc:2416 +#: editor_mouse.cc:2466 msgid "start point trim" msgstr "Startpunkt ändern" -#: editor_mouse.cc:2441 +#: editor_mouse.cc:2491 msgid "End point trim" msgstr "Endpunkt verändern" -#: editor_mouse.cc:2508 +#: editor_mouse.cc:2558 msgid "Name for region:" msgstr "Name für Region:" @@ -4846,7 +4874,7 @@ msgstr "Regionen ganz nach unten" msgid "Rename Region" msgstr "Region umbenennen" -#: editor_ops.cc:2372 processor_box.cc:1779 route_ui.cc:1538 +#: editor_ops.cc:2372 processor_box.cc:1806 route_ui.cc:1538 msgid "New name:" msgstr "Neuer Name: " @@ -5235,7 +5263,7 @@ msgstr "" msgid "tracks" msgstr "Spuren" -#: editor_ops.cc:6485 route_ui.cc:1822 +#: editor_ops.cc:6485 route_ui.cc:1821 msgid "track" msgstr "Spur" @@ -5243,7 +5271,7 @@ msgstr "Spur" msgid "busses" msgstr "Audio-Busse" -#: editor_ops.cc:6491 route_ui.cc:1822 +#: editor_ops.cc:6491 route_ui.cc:1821 msgid "bus" msgstr "Bus" @@ -5487,7 +5515,7 @@ msgstr "Solo ein" msgid "SI" msgstr "SI" -#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1876 +#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1867 msgid "Solo Isolated" msgstr "Isoliertes Solo" @@ -5706,111 +5734,123 @@ msgstr "" "Time-Stretch konnte nicht gestartet werden - Fehler beim erstellen des " "Threads" -#: engine_dialog.cc:73 +#: engine_dialog.cc:79 msgid "Device Control Panel" msgstr "Gerätekontrollfeld" -#: engine_dialog.cc:74 engine_dialog.cc:1600 -msgid "Measure latency" -msgstr "Latenz messen" +#: engine_dialog.cc:80 engine_dialog.cc:1725 +msgid "Measure" +msgstr "" -#: engine_dialog.cc:75 +#: engine_dialog.cc:81 msgid "Use results" msgstr "Benutze Ergebnisse" -#: engine_dialog.cc:78 +#: engine_dialog.cc:82 +msgid "Back to settings ... (ignore results)" +msgstr "" + +#: engine_dialog.cc:83 +msgid "Calibrate..." +msgstr "" + +#: engine_dialog.cc:87 msgid "Refresh list" msgstr "Liste auffrischen" -#: engine_dialog.cc:79 -msgid "Start MIDI ALSA/JACK bridge" -msgstr "Starte MIDI ALSA/JACK bridge" +#: engine_dialog.cc:107 +msgid "" +"No audio/MIDI backends detected. %1 cannot run\n" +"\n" +"(This is a build/packaging/system error. It should never happen.)" +msgstr "" -#: engine_dialog.cc:121 +#: engine_dialog.cc:136 msgid "Latency Measurement Tool" msgstr "Latenzmeßwerkzeug" -#: engine_dialog.cc:134 +#: engine_dialog.cc:151 msgid "" -"Turn down the volume on your hardware to a very low " -"level." +"Turn down the volume on your audio equipment to a very " +"low level." msgstr "" -"Stellen Sie Ihre Hardwarelautstärke auf einen sehr " -"niedrigen Pegel ein." -#: engine_dialog.cc:142 -msgid "" -"Select two channels below and connect them using a cable or (less ideally) a " -"speaker and microphone." +#: engine_dialog.cc:159 +msgid "Select two channels below and connect them using a cable." msgstr "" -"Wählen Sie unten zwei Kanäle aus und verbinden sie mit einem Kabel oder " -"(weniger empfehlenswert) mittels Lautsprecher und Mikrofon." -#: engine_dialog.cc:147 +#: engine_dialog.cc:164 msgid "Output channel" msgstr "Ausgangskanal" -#: engine_dialog.cc:155 +#: engine_dialog.cc:172 msgid "Input channel" msgstr "Eingangskanal" -#: engine_dialog.cc:174 -msgid "Once the channels are connected, click the \"Measure latency\" button." +#: engine_dialog.cc:207 +msgid "Once the channels are connected, click the \"Measure\" button." msgstr "" -"Wenn die Kanäle verbunden sind, klicken Sie den Knopf \"Latenz messen\"." -#: engine_dialog.cc:187 +#: engine_dialog.cc:214 msgid "When satisfied with the results, click the \"Use results\" button." msgstr "" "Wenn Sie mit dem Resultat zufrieden sind, klicken Sie den Knopf \"Benutze " "Ergebnisse\"." -#: engine_dialog.cc:203 route_params_ui.cc:105 +#: engine_dialog.cc:229 engine_dialog.cc:1727 +msgid "No measurement results yet" +msgstr "" + +#: engine_dialog.cc:238 route_params_ui.cc:105 msgid "Latency" msgstr "Latenz" -#: engine_dialog.cc:298 +#: engine_dialog.cc:333 msgid "Audio System:" msgstr "Audiosystem:" -#: engine_dialog.cc:337 +#: engine_dialog.cc:374 msgid "Driver:" msgstr "Treiber:" -#: engine_dialog.cc:343 +#: engine_dialog.cc:380 msgid "Device:" msgstr "Gerät:" -#: engine_dialog.cc:348 engine_dialog.cc:430 sfdb_ui.cc:147 sfdb_ui.cc:260 +#: engine_dialog.cc:385 engine_dialog.cc:475 sfdb_ui.cc:147 sfdb_ui.cc:260 #: sfdb_ui.cc:265 msgid "Sample rate:" msgstr "Samplerate:" -#: engine_dialog.cc:354 engine_dialog.cc:437 +#: engine_dialog.cc:391 engine_dialog.cc:482 msgid "Buffer size:" msgstr "Puffergröße" -#: engine_dialog.cc:367 +#: engine_dialog.cc:404 msgid "Input Channels:" msgstr "Eingangskanäle:" -#: engine_dialog.cc:378 +#: engine_dialog.cc:415 msgid "Output Channels:" msgstr "Ausgangskanäle:" -#: engine_dialog.cc:389 +#: engine_dialog.cc:426 msgid "Hardware input latency:" msgstr "Hardware Eingangslatenz (Samples)" -#: engine_dialog.cc:392 engine_dialog.cc:405 +#: engine_dialog.cc:429 engine_dialog.cc:442 msgid "samples" msgstr "Samples" -#: engine_dialog.cc:402 +#: engine_dialog.cc:439 msgid "Hardware output latency:" msgstr "Hardware Ausgangslatenz (Samples)" -#: engine_dialog.cc:422 +#: engine_dialog.cc:450 +msgid "MIDI System" +msgstr "" + +#: engine_dialog.cc:467 msgid "" "The %1 audio backend was configured and started externally.\n" "This limits your control over it." @@ -5818,81 +5858,96 @@ msgstr "" "Das %1 Audiobackend wurde extern konfiguriert und gestartet.\n" "Dies beschränkt Ihre Kontrolle darüber." -#: engine_dialog.cc:531 +#: engine_dialog.cc:521 +msgid "" +"Your selected audio configuration is playback- or capture-only.\n" +"\n" +"Latency calibration requires playback and capture" +msgstr "" + +#: engine_dialog.cc:595 msgid "MIDI Inputs" msgstr "MIDI Eingänge" -#: engine_dialog.cc:548 +#: engine_dialog.cc:612 msgid "MIDI Outputs" msgstr "MIDI Ausgänge" -#: engine_dialog.cc:617 +#: engine_dialog.cc:696 msgid "all available channels" msgstr "alle verfügbaren Kanäle" -#: engine_dialog.cc:811 +#: engine_dialog.cc:890 #, c-format msgid "%u samples" msgstr "%u Samples" -#: engine_dialog.cc:862 +#: engine_dialog.cc:941 #, c-format msgid "(%.1f msecs)" msgstr "(%.1f msecs)" -#: engine_dialog.cc:1281 +#: engine_dialog.cc:1389 msgid "Cannot set driver to %1" msgstr "Kann Treiber nicht auf %1 setzen" -#: engine_dialog.cc:1285 +#: engine_dialog.cc:1393 msgid "Cannot set device name to %1" msgstr "Kann Gerät nicht auf %1 setzen" -#: engine_dialog.cc:1289 +#: engine_dialog.cc:1397 msgid "Cannot set sample rate to %1" msgstr "Kann Samplerate nicht auf %1 setzen" -#: engine_dialog.cc:1293 +#: engine_dialog.cc:1401 msgid "Cannot set buffer size to %1" msgstr "Kann Buffergröße nicht auf %1 setzen" -#: engine_dialog.cc:1299 +#: engine_dialog.cc:1407 msgid "Cannot set input channels to %1" msgstr "Kann Eingangskanäle nicht auf %1 setzen" -#: engine_dialog.cc:1303 +#: engine_dialog.cc:1411 msgid "Cannot set output channels to %1" msgstr "Kann Ausgangskanäle nicht auf %1 setzen" -#: engine_dialog.cc:1309 +#: engine_dialog.cc:1417 msgid "Cannot set input latency to %1" msgstr "Kann Eingangslatenz nicht auf %1 setzen" -#: engine_dialog.cc:1313 +#: engine_dialog.cc:1421 msgid "Cannot set output latency to %1" msgstr "Kann Ausgangslatenz nicht auf %1 setzen" -#: engine_dialog.cc:1534 +#: engine_dialog.cc:1654 msgid "No signal detected " msgstr "Kein Signal erkannt" -#: engine_dialog.cc:1547 port_insert_ui.cc:71 port_insert_ui.cc:99 +#: engine_dialog.cc:1667 port_insert_ui.cc:71 port_insert_ui.cc:99 msgid "Disconnected from audio engine" msgstr "Von Audio-Engine getrennt" -#: engine_dialog.cc:1587 port_insert_ui.cc:135 +#: engine_dialog.cc:1681 +msgid "(signal detection error)" +msgstr "" + +#: engine_dialog.cc:1687 +msgid "(inverted - bad wiring)" +msgstr "" + +#: engine_dialog.cc:1697 +msgid "Detected roundtrip latency: %1" +msgstr "" + +#: engine_dialog.cc:1709 port_insert_ui.cc:135 msgid "Detecting ..." msgstr "Messe..." -#: engine_dialog.cc:1589 -msgid "Cancel measurement" -msgstr "Messung abbrechen" - -#: engine_dialog.cc:1657 +#: engine_dialog.cc:1789 msgid "Disconnect from %1" msgstr "Trenne von %1" -#: engine_dialog.cc:1669 +#: engine_dialog.cc:1801 msgid "Connect to %1" msgstr "Verbinde zu %1" @@ -6050,9 +6105,9 @@ msgid "Folder:" msgstr "Ordner:" #: export_filename_selector.cc:37 session_import_dialog.cc:44 -#: transcode_video_dialog.cc:59 video_server_dialog.cc:45 -#: video_server_dialog.cc:47 export_video_dialog.cc:69 -#: export_video_dialog.cc:71 +#: transcode_video_dialog.cc:58 video_server_dialog.cc:45 +#: video_server_dialog.cc:47 export_video_dialog.cc:68 +#: export_video_dialog.cc:70 msgid "Browse" msgstr "Durchsuchen" @@ -6266,7 +6321,7 @@ msgstr "Voreinstellungen" msgid "Switches" msgstr "Schalter" -#: generic_pluginui.cc:240 generic_pluginui.cc:374 processor_box.cc:2212 +#: generic_pluginui.cc:240 generic_pluginui.cc:374 processor_box.cc:2251 msgid "Controls" msgstr "Steuerelemente" @@ -7218,7 +7273,7 @@ msgstr "Einen weiteren Ordner für die Suche auswählen" msgid "Missing Plugins" msgstr "Fehlende Plugins" -#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 +#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:59 msgid "OK" msgstr "OK" @@ -7295,7 +7350,7 @@ msgid "pre" msgstr "Pre" #: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 -#: rc_option_editor.cc:1877 +#: rc_option_editor.cc:1868 msgid "Comments" msgstr "Kommentare" @@ -7343,11 +7398,11 @@ msgstr "iso" msgid "Mix group" msgstr "Bearbeitungsgruppe" -#: mixer_strip.cc:351 rc_option_editor.cc:1874 +#: mixer_strip.cc:351 rc_option_editor.cc:1865 msgid "Phase Invert" msgstr "Phaseninvertierung" -#: mixer_strip.cc:352 rc_option_editor.cc:1875 route_ui.cc:1218 +#: mixer_strip.cc:352 rc_option_editor.cc:1866 route_ui.cc:1218 msgid "Solo Safe" msgstr "Solo sperren" @@ -7355,7 +7410,7 @@ msgstr "Solo sperren" msgid "Group" msgstr "Gruppe" -#: mixer_strip.cc:356 rc_option_editor.cc:1878 +#: mixer_strip.cc:356 rc_option_editor.cc:1869 msgid "Meter Point" msgstr "Abgreifpunkt der Pegelanzeige" @@ -7375,7 +7430,7 @@ msgstr "" msgid "Snd" msgstr "Snd" -#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 +#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2193 msgid "Not connected to audio engine - no I/O changes are possible" msgstr "" "Nicht mit Audioengine verbunden - es sind keine Änderungen an Ein-/Ausgängen " @@ -7977,7 +8032,7 @@ msgstr "" msgid "Panner (2D)" msgstr "Panner (2D)" -#: panner2d.cc:783 panner_ui.cc:383 plugin_ui.cc:449 +#: panner2d.cc:783 panner_ui.cc:383 plugin_ui.cc:448 msgid "Bypass" msgstr "Bypass" @@ -8153,7 +8208,7 @@ msgstr "Nach Kategorie" msgid "Eh? LADSPA plugins don't have editors!" msgstr "Merkwürdig... LADSPA-Plugins sollten kein GUI haben!" -#: plugin_ui.cc:123 plugin_ui.cc:225 +#: plugin_ui.cc:123 plugin_ui.cc:226 msgid "" "unknown type of editor-supplying plugin (note: no VST support in this " "version of %1)" @@ -8165,7 +8220,7 @@ msgstr "" msgid "unknown type of editor-supplying plugin" msgstr "Unbekannter Plugintyp" -#: plugin_ui.cc:255 +#: plugin_ui.cc:256 msgid "" "unknown type of editor-supplying plugin (note: no linuxVST support in this " "version of %1)" @@ -8173,23 +8228,23 @@ msgstr "" "Unbekannter Plugintyp mit eigenem Editor (Hinweis: diese %1-Version " "unterstützt keine linuxVST-Plugins)" -#: plugin_ui.cc:327 +#: plugin_ui.cc:328 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "create_lv2_editor auf nicht-LV2-Plugin angewandt" -#: plugin_ui.cc:415 +#: plugin_ui.cc:414 msgid "Add" msgstr "Hinzufügen" -#: plugin_ui.cc:419 +#: plugin_ui.cc:418 msgid "Description" msgstr "Beschreibung:" -#: plugin_ui.cc:420 +#: plugin_ui.cc:419 msgid "Plugin analysis" msgstr "Pluginanalyse" -#: plugin_ui.cc:427 +#: plugin_ui.cc:426 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" @@ -8197,23 +8252,23 @@ msgstr "" "Presets (falls existent) für dieses Plugin\n" "(Hersteller- und Benutzerpresets)" -#: plugin_ui.cc:428 +#: plugin_ui.cc:427 msgid "Save a new preset" msgstr "Neues Preset speichern" -#: plugin_ui.cc:429 +#: plugin_ui.cc:428 msgid "Save the current preset" msgstr "Momentanes Preset speichern" -#: plugin_ui.cc:430 +#: plugin_ui.cc:429 msgid "Delete the current preset" msgstr "Lösche das aktuelle Preset" -#: plugin_ui.cc:431 +#: plugin_ui.cc:430 msgid "Disable signal processing by the plugin" msgstr "Deaktiviere die Signalverarbeitung des Plugins" -#: plugin_ui.cc:464 plugin_ui.cc:660 +#: plugin_ui.cc:463 plugin_ui.cc:659 msgid "" "Click to allow the plugin to receive keyboard events that %1 would normally " "use as a shortcut" @@ -8221,29 +8276,29 @@ msgstr "" "Klicke, damit das Plugin Tastaturbefehle erhält, die %1 sonst als " "Tastenkürzel verwenden würde" -#: plugin_ui.cc:465 +#: plugin_ui.cc:464 msgid "Click to enable/disable this plugin" msgstr "Klicke, um dieses Plugin zu ein/auszuschalten" -#: plugin_ui.cc:504 +#: plugin_ui.cc:503 msgid "latency (%1 sample)" msgid_plural "latency (%1 samples)" msgstr[0] "Latenz (%1 Sample)" msgstr[1] "Latenz (%1 Samples)" -#: plugin_ui.cc:506 +#: plugin_ui.cc:505 msgid "latency (%1 ms)" msgstr "Latenz (%1 ms)" -#: plugin_ui.cc:517 +#: plugin_ui.cc:516 msgid "Edit Latency" msgstr "Latenz bearbeiten" -#: plugin_ui.cc:556 +#: plugin_ui.cc:555 msgid "Plugin preset %1 not found" msgstr "Plugin Preset %1 nicht gefunden" -#: plugin_ui.cc:593 +#: plugin_ui.cc:592 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "full version" @@ -8251,7 +8306,7 @@ msgstr "" "Pluginpresets werden in diesem Version von %1 nicht unterstützt. Erwägen " "Sie, für eine Vollversion zu zahlen" -#: plugin_ui.cc:613 plugin_ui.cc:628 +#: plugin_ui.cc:612 plugin_ui.cc:627 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "newer version" @@ -8259,7 +8314,7 @@ msgstr "" "Pluginpresets werden in diesem Version von %1 nicht unterstützt. Erwägen " "Sie, für eine neuere Version zu zahlen" -#: plugin_ui.cc:667 +#: plugin_ui.cc:666 msgid "Click to allow normal use of %1 keyboard shortcuts" msgstr "Klicke, um die normale Verwendung von %1 Tastenkürzeln zu aktivieren" @@ -8394,7 +8449,7 @@ msgstr "Individuelle Ports anzeigen" msgid "Flip" msgstr "Drehen" -#: port_matrix.cc:723 +#: port_matrix.cc:721 msgid "" "It is not possible to add a port here, as the first processor in the track " "or buss cannot support the new configuration." @@ -8402,15 +8457,15 @@ msgstr "" "Hier kann kein Port hinzugefügt werden, da der erste Prozessor der Spur/des " "Busses die neue Portanzahl nicht unterstützt." -#: port_matrix.cc:726 +#: port_matrix.cc:724 msgid "Cannot add port" msgstr "Kann Port nicht hinzufügen" -#: port_matrix.cc:748 +#: port_matrix.cc:746 msgid "Port removal not allowed" msgstr "Entfernen des Ports nicht erlaubt" -#: port_matrix.cc:749 +#: port_matrix.cc:747 msgid "" "This port cannot be removed.\n" "Either the first plugin in the track or buss cannot accept\n" @@ -8421,17 +8476,17 @@ msgstr "" "die neue Anzahl an Eingängen nicht verarbeiten, oder das \n" "letzte Plugin hat mehr Ausgänge." -#: port_matrix.cc:966 +#: port_matrix.cc:964 #, c-format msgid "Remove '%s'" msgstr "Lösche '%s'" -#: port_matrix.cc:981 +#: port_matrix.cc:979 #, c-format msgid "%s all from '%s'" msgstr "alle von '%s' %s" -#: port_matrix.cc:1047 +#: port_matrix.cc:1045 msgid "channel" msgstr "Kanal" @@ -8473,7 +8528,7 @@ msgstr "Alle Regler verbergen" msgid "on" msgstr "an" -#: processor_box.cc:465 rc_option_editor.cc:1907 rc_option_editor.cc:1921 +#: processor_box.cc:465 rc_option_editor.cc:1898 rc_option_editor.cc:1912 msgid "off" msgstr "Aus" @@ -8485,7 +8540,7 @@ msgstr "" "Rechtsklick, um Plugins, Inserts, Sends etc.\n" "hinzuzufügen/zu editieren/zu löschen" -#: processor_box.cc:1197 processor_box.cc:1591 +#: processor_box.cc:1197 processor_box.cc:1618 msgid "Plugin Incompatibility" msgstr "Plugin-Inkompatibilität" @@ -8545,7 +8600,7 @@ msgstr "" msgid "Cannot set up new send: %1" msgstr "Kann keinen neuen Send erstellen: %1" -#: processor_box.cc:1594 +#: processor_box.cc:1621 msgid "" "You cannot reorder these plugins/sends/inserts\n" "in that way because the inputs and\n" @@ -8555,21 +8610,21 @@ msgstr "" "nicht auf diese Weise verändern, sonst würden\n" "die Ein-/Ausgänge nicht mehr richtig funktionieren." -#: processor_box.cc:1778 +#: processor_box.cc:1805 msgid "Rename Processor" msgstr "Prozessor umbenennen" -#: processor_box.cc:1809 +#: processor_box.cc:1836 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "" "Es gibt mindestens 100 E/A-Objekte mit einem Namen wie %1 - Name nicht " "geändert" -#: processor_box.cc:1943 +#: processor_box.cc:1970 msgid "plugin insert constructor failed" msgstr "Einfügen des Plugins gescheitert" -#: processor_box.cc:1954 +#: processor_box.cc:1981 msgid "" "Copying the set of processors on the clipboard failed,\n" "probably because the I/O configuration of the plugins\n" @@ -8579,7 +8634,7 @@ msgstr "" "kopieren, vermutlich weil die E/A Konfiguration der Plugins\n" "nicht mit der dieser Spur übereinstimmt." -#: processor_box.cc:2000 +#: processor_box.cc:2027 msgid "" "Do you really want to remove all processors from %1?\n" "(this cannot be undone)" @@ -8587,15 +8642,15 @@ msgstr "" "Wollen Sie wirklich alle Prozessoren von %1 entfernen?\n" "(Dies kann nicht rückgängig gemacht werden)" -#: processor_box.cc:2004 processor_box.cc:2029 +#: processor_box.cc:2031 processor_box.cc:2056 msgid "Yes, remove them all" msgstr "Ja, alle löschen" -#: processor_box.cc:2006 processor_box.cc:2031 +#: processor_box.cc:2033 processor_box.cc:2058 msgid "Remove processors" msgstr "Prozessoren entfernen" -#: processor_box.cc:2021 +#: processor_box.cc:2048 msgid "" "Do you really want to remove all pre-fader processors from %1?\n" "(this cannot be undone)" @@ -8603,7 +8658,7 @@ msgstr "" "Wollen Sie wirklich alle Pre-Fader-Prozessoren von %1 entfernen?\n" "(Dies kann nicht rückgängig gemacht werden)" -#: processor_box.cc:2024 +#: processor_box.cc:2051 msgid "" "Do you really want to remove all post-fader processors from %1?\n" "(this cannot be undone)" @@ -8611,54 +8666,58 @@ msgstr "" "Wollen Sie wirklich alle Post-Fader-Prozessoren von %1 entfernen?\n" "(Dies kann nicht rückgängig gemacht werden)" -#: processor_box.cc:2200 +#: processor_box.cc:2239 msgid "New Plugin" msgstr "Plugin einfügen" -#: processor_box.cc:2203 +#: processor_box.cc:2242 msgid "New Insert" msgstr "Insert einfügen" -#: processor_box.cc:2206 +#: processor_box.cc:2245 msgid "New External Send ..." msgstr "Neuer externer Send..." -#: processor_box.cc:2210 +#: processor_box.cc:2249 msgid "New Aux Send ..." msgstr "Neuer Aux-Send..." -#: processor_box.cc:2214 +#: processor_box.cc:2253 msgid "Clear (all)" msgstr "Leeren (alle)" -#: processor_box.cc:2216 +#: processor_box.cc:2255 msgid "Clear (pre-fader)" msgstr "Leeren (Pre-Fader)" -#: processor_box.cc:2218 +#: processor_box.cc:2257 msgid "Clear (post-fader)" msgstr "Leeren (Post-Fader)" -#: processor_box.cc:2244 +#: processor_box.cc:2283 msgid "Activate All" msgstr "Alle aktivieren" -#: processor_box.cc:2246 +#: processor_box.cc:2285 msgid "Deactivate All" msgstr "Alle deaktivieren" -#: processor_box.cc:2248 +#: processor_box.cc:2287 msgid "A/B Plugins" msgstr "A/B Plugins" -#: processor_box.cc:2257 +#: processor_box.cc:2296 msgid "Edit with generic controls..." msgstr "Mit einfachen Kontrollelementen editieren..." -#: processor_box.cc:2557 +#: processor_box.cc:2599 msgid "%1: %2 (by %3)" msgstr "%1: %2 (by %3)" +#: processor_box.cc:2601 +msgid "%2 (by %3)" +msgstr "" + #: patch_change_dialog.cc:51 msgid "Patch Change" msgstr "Patch Change" @@ -9217,18 +9276,14 @@ msgstr "" "Aktualisiere das Editorfenster, während die Projektübersicht verändert wird" #: rc_option_editor.cc:1420 -msgid "Synchronise editor and mixer track order" -msgstr "Einheitliche Reihenfolge der Spuren im Editor und Mixer" - -#: rc_option_editor.cc:1428 msgid "Synchronise editor and mixer selection" msgstr "Synchronisiere Auswahl der Spuren im Editor und Mixer" -#: rc_option_editor.cc:1435 +#: rc_option_editor.cc:1427 msgid "Name new markers" msgstr "Neue Marker benennen" -#: rc_option_editor.cc:1441 +#: rc_option_editor.cc:1433 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " "be set as it is created.\n" @@ -9240,245 +9295,245 @@ msgstr "" "\n" "Marker können jederzeit per Rechtsklick umbenannt werden" -#: rc_option_editor.cc:1447 +#: rc_option_editor.cc:1439 msgid "Auto-scroll editor window when dragging near its edges" msgstr "Bei Mausziehen nahe den Rändern das Editorfenster automatisch scrollen" -#: rc_option_editor.cc:1454 +#: rc_option_editor.cc:1446 msgid "Buffering" msgstr "Pufferung" -#: rc_option_editor.cc:1462 +#: rc_option_editor.cc:1454 msgid "Record monitoring handled by" msgstr "Aufnahmemonitoring wird verwaltet von" -#: rc_option_editor.cc:1468 +#: rc_option_editor.cc:1460 msgid "via Audio Driver" msgstr "via Audiotreiber" -#: rc_option_editor.cc:1471 +#: rc_option_editor.cc:1463 msgid "ardour" msgstr "Ardour" -#: rc_option_editor.cc:1472 +#: rc_option_editor.cc:1464 msgid "audio hardware" msgstr "Audiohardware" -#: rc_option_editor.cc:1479 +#: rc_option_editor.cc:1471 msgid "Tape machine mode" msgstr "Bandmaschinen-Modus" -#: rc_option_editor.cc:1484 +#: rc_option_editor.cc:1476 msgid "Connection of tracks and busses" msgstr "Verbindung von Spuren und Bussen" -#: rc_option_editor.cc:1489 +#: rc_option_editor.cc:1481 msgid "Auto-connect master/monitor busses" msgstr "Master/Monitor-Busse automatisch verbinden" -#: rc_option_editor.cc:1496 +#: rc_option_editor.cc:1488 msgid "Connect track inputs" msgstr "Verbinde Spureingänge" -#: rc_option_editor.cc:1501 +#: rc_option_editor.cc:1493 msgid "automatically to physical inputs" msgstr "automatisch mit Audioeingängen" -#: rc_option_editor.cc:1502 rc_option_editor.cc:1515 +#: rc_option_editor.cc:1494 rc_option_editor.cc:1507 msgid "manually" msgstr "manuell" -#: rc_option_editor.cc:1508 +#: rc_option_editor.cc:1500 msgid "Connect track and bus outputs" msgstr "Verbinde Spur- und Busausgänge" -#: rc_option_editor.cc:1513 +#: rc_option_editor.cc:1505 msgid "automatically to physical outputs" msgstr "automatisch mit Audioausgängen" -#: rc_option_editor.cc:1514 +#: rc_option_editor.cc:1506 msgid "automatically to master bus" msgstr "automatisch mit dem Master-Bus" -#: rc_option_editor.cc:1519 +#: rc_option_editor.cc:1511 msgid "Denormals" msgstr "Denormals" -#: rc_option_editor.cc:1524 +#: rc_option_editor.cc:1516 msgid "Use DC bias to protect against denormals" msgstr "Nutze DC bias als Schutz vor Denormals" -#: rc_option_editor.cc:1531 +#: rc_option_editor.cc:1523 msgid "Processor handling" msgstr "Umgang des Prozessors mit Denormals" -#: rc_option_editor.cc:1536 +#: rc_option_editor.cc:1528 msgid "no processor handling" msgstr "nicht behandeln" -#: rc_option_editor.cc:1541 +#: rc_option_editor.cc:1533 msgid "use FlushToZero" msgstr "Benutze FlushToZero" -#: rc_option_editor.cc:1545 +#: rc_option_editor.cc:1537 msgid "use DenormalsAreZero" msgstr "Benutze DenormalsAreZero" -#: rc_option_editor.cc:1549 +#: rc_option_editor.cc:1541 msgid "use FlushToZero and DenormalsAreZero" msgstr "Benutze FlushToZero & DenormalsAreZero" -#: rc_option_editor.cc:1559 +#: rc_option_editor.cc:1551 msgid "Silence plugins when the transport is stopped" msgstr "Deaktiviere Plugins, wenn der Transport gestoppt ist." -#: rc_option_editor.cc:1567 +#: rc_option_editor.cc:1559 msgid "Make new plugins active" msgstr "Neue Plugins sind aktiv" -#: rc_option_editor.cc:1575 +#: rc_option_editor.cc:1567 msgid "Enable automatic analysis of audio" msgstr "Audiodaten automatisch analysieren" -#: rc_option_editor.cc:1583 +#: rc_option_editor.cc:1575 msgid "Replicate missing region channels" msgstr "Fehlende Kanäle von Regionen ersetzen" -#: rc_option_editor.cc:1590 rc_option_editor.cc:1605 rc_option_editor.cc:1617 -#: rc_option_editor.cc:1629 rc_option_editor.cc:1641 rc_option_editor.cc:1645 -#: rc_option_editor.cc:1653 rc_option_editor.cc:1661 rc_option_editor.cc:1669 -#: rc_option_editor.cc:1671 rc_option_editor.cc:1679 rc_option_editor.cc:1687 -#: rc_option_editor.cc:1695 +#: rc_option_editor.cc:1582 rc_option_editor.cc:1597 rc_option_editor.cc:1609 +#: rc_option_editor.cc:1621 rc_option_editor.cc:1633 rc_option_editor.cc:1637 +#: rc_option_editor.cc:1645 rc_option_editor.cc:1653 rc_option_editor.cc:1661 +#: rc_option_editor.cc:1663 rc_option_editor.cc:1671 rc_option_editor.cc:1679 +#: rc_option_editor.cc:1687 msgid "Solo / mute" msgstr "Solo / Mute" -#: rc_option_editor.cc:1593 +#: rc_option_editor.cc:1585 msgid "Solo-in-place mute cut (dB)" msgstr "Solo-in-Place Mute Dämpfung (dB)" -#: rc_option_editor.cc:1600 +#: rc_option_editor.cc:1592 msgid "Solo controls are Listen controls" msgstr "Solo-Schalter arbeiten als AFL/PFL" -#: rc_option_editor.cc:1609 +#: rc_option_editor.cc:1601 msgid "Listen Position" msgstr "Abhörpunkt" -#: rc_option_editor.cc:1614 +#: rc_option_editor.cc:1606 msgid "after-fader (AFL)" msgstr "After-Fader (AFL)" -#: rc_option_editor.cc:1615 +#: rc_option_editor.cc:1607 msgid "pre-fader (PFL)" msgstr "Pre-Fader (PFL)" -#: rc_option_editor.cc:1621 +#: rc_option_editor.cc:1613 msgid "PFL signals come from" msgstr "Abgreifpunkt der PFL Signale" -#: rc_option_editor.cc:1626 +#: rc_option_editor.cc:1618 msgid "before pre-fader processors" msgstr "Vor den Pre-Fader Prozessoren" -#: rc_option_editor.cc:1627 +#: rc_option_editor.cc:1619 msgid "pre-fader but after pre-fader processors" msgstr "Pre-Fader, aber nach den Prozessoren" -#: rc_option_editor.cc:1633 +#: rc_option_editor.cc:1625 msgid "AFL signals come from" msgstr "Abgreifpunkt der AFL Signale" -#: rc_option_editor.cc:1638 +#: rc_option_editor.cc:1630 msgid "immediately post-fader" msgstr "Direkt nach dem Fader" -#: rc_option_editor.cc:1639 +#: rc_option_editor.cc:1631 msgid "after post-fader processors (before pan)" msgstr "Nach den Post-Fader Prozessoren (vor Pan)" -#: rc_option_editor.cc:1648 +#: rc_option_editor.cc:1640 msgid "Exclusive solo" msgstr "Exclusives Solo" -#: rc_option_editor.cc:1656 +#: rc_option_editor.cc:1648 msgid "Show solo muting" msgstr "Solo auf anderen Kanälen als Mute anzeigen" -#: rc_option_editor.cc:1664 +#: rc_option_editor.cc:1656 msgid "Soloing overrides muting" msgstr "Solo ist trotz Mute hörbar" -#: rc_option_editor.cc:1669 +#: rc_option_editor.cc:1661 msgid "Default track / bus muting options" msgstr "Standardeinstellungen für Mute von Spuren / Bussen" -#: rc_option_editor.cc:1674 +#: rc_option_editor.cc:1666 msgid "Mute affects pre-fader sends" msgstr "Mute schaltet Pre-Fader Sends stumm" -#: rc_option_editor.cc:1682 +#: rc_option_editor.cc:1674 msgid "Mute affects post-fader sends" msgstr "Mute schaltet Post-Fader Sends stumm" -#: rc_option_editor.cc:1690 +#: rc_option_editor.cc:1682 msgid "Mute affects control outputs" msgstr "Mute schaltet Abhörausgänge stumm" -#: rc_option_editor.cc:1698 +#: rc_option_editor.cc:1690 msgid "Mute affects main outputs" msgstr "Mute schaltet Hauptausgänge stumm" -#: rc_option_editor.cc:1714 +#: rc_option_editor.cc:1706 msgid "Send MIDI Time Code" msgstr "Sende MIDI Time Code" -#: rc_option_editor.cc:1722 +#: rc_option_editor.cc:1714 msgid "Percentage either side of normal transport speed to transmit MTC" msgstr "" "Prozentzahl beiderseits der normalen Transportgeschwindigkeit, bis zu der " "MTC übertragen wird" -#: rc_option_editor.cc:1731 +#: rc_option_editor.cc:1723 msgid "Obey MIDI Machine Control commands" msgstr "MIDI Machine Control Commands empfangen" -#: rc_option_editor.cc:1739 +#: rc_option_editor.cc:1731 msgid "Send MIDI Machine Control commands" msgstr "MIDI Machine Control Commands senden" -#: rc_option_editor.cc:1747 +#: rc_option_editor.cc:1739 msgid "Send MIDI control feedback" msgstr "MIDI Control Feedback senden" -#: rc_option_editor.cc:1755 +#: rc_option_editor.cc:1747 msgid "Inbound MMC device ID" msgstr "ID des eingehenden MMC-Geräts" -#: rc_option_editor.cc:1764 +#: rc_option_editor.cc:1756 msgid "Outbound MMC device ID" msgstr "ID des ausgehenden MMC-Geräts" -#: rc_option_editor.cc:1773 +#: rc_option_editor.cc:1765 msgid "Initial program change" msgstr "Erstmaliger Programmwechsel" -#: rc_option_editor.cc:1782 +#: rc_option_editor.cc:1774 msgid "Display first MIDI bank/program as 0" msgstr "Erste(s) MIDI Bank/Programm als 0 anzeigen" -#: rc_option_editor.cc:1790 +#: rc_option_editor.cc:1782 msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "Periodische MIDI Nachrichten nie anzeigen (MTC, MIDI Clock)" -#: rc_option_editor.cc:1798 +#: rc_option_editor.cc:1790 msgid "Sound MIDI notes as they are selected" msgstr "MIDI Noten ertönen bei Auswahl" -#: rc_option_editor.cc:1806 rc_option_editor.cc:1816 rc_option_editor.cc:1818 +#: rc_option_editor.cc:1798 rc_option_editor.cc:1808 rc_option_editor.cc:1810 msgid "User interaction" msgstr "Benutzerinteraktion" -#: rc_option_editor.cc:1809 +#: rc_option_editor.cc:1801 msgid "" "Use translations of %1 messages\n" " (requires a restart of %1 to take effect)\n" @@ -9488,131 +9543,127 @@ msgstr "" " (erfordert Neustart von %1)\n" " (falls für Ihre gewünschte Sprache verfügbar)" -#: rc_option_editor.cc:1816 +#: rc_option_editor.cc:1808 msgid "Keyboard" msgstr "Tastatur" -#: rc_option_editor.cc:1826 +#: rc_option_editor.cc:1818 msgid "Control surface remote ID" msgstr "Remote ID des Eingabegeräts" -#: rc_option_editor.cc:1831 +#: rc_option_editor.cc:1823 msgid "assigned by user" msgstr "vom Benutzer festgelegt" -#: rc_option_editor.cc:1832 +#: rc_option_editor.cc:1824 msgid "follows order of mixer" msgstr "folgt Reihenfolge im Mixer" -#: rc_option_editor.cc:1833 -msgid "follows order of editor" -msgstr "folgt Reihenfolge im Editor" - -#: rc_option_editor.cc:1842 rc_option_editor.cc:1850 rc_option_editor.cc:1860 -#: rc_option_editor.cc:1881 rc_option_editor.cc:1890 rc_option_editor.cc:1898 -#: rc_option_editor.cc:1912 rc_option_editor.cc:1931 rc_option_editor.cc:1947 -#: rc_option_editor.cc:1963 rc_option_editor.cc:1977 rc_option_editor.cc:1991 -#: rc_option_editor.cc:1993 +#: rc_option_editor.cc:1833 rc_option_editor.cc:1841 rc_option_editor.cc:1851 +#: rc_option_editor.cc:1872 rc_option_editor.cc:1881 rc_option_editor.cc:1889 +#: rc_option_editor.cc:1903 rc_option_editor.cc:1922 rc_option_editor.cc:1938 +#: rc_option_editor.cc:1954 rc_option_editor.cc:1968 rc_option_editor.cc:1982 +#: rc_option_editor.cc:1984 msgid "Preferences|GUI" msgstr "GUI" -#: rc_option_editor.cc:1845 +#: rc_option_editor.cc:1836 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "Mouseover-Effekt über verschiedenen Anzeigen" -#: rc_option_editor.cc:1853 +#: rc_option_editor.cc:1844 msgid "Show tooltips if mouse hovers over a control" msgstr "Zeige Tooltips, wenn die Maus über einem Element schwebt" -#: rc_option_editor.cc:1863 +#: rc_option_editor.cc:1854 msgid "GUI" msgstr "GUI" -#: rc_option_editor.cc:1866 +#: rc_option_editor.cc:1857 msgid "update transport clock display every 40ms instead of every 100ms" msgstr "Auffrischen der Transport-Zeitanzeige alle 40ms statt 100ms" -#: rc_option_editor.cc:1883 +#: rc_option_editor.cc:1874 msgid "Mixer Strip" msgstr "Anzeige im Channel strip" -#: rc_option_editor.cc:1893 +#: rc_option_editor.cc:1884 msgid "Use narrow strips in the mixer by default" msgstr "Standardmäßig schmale Mixer-Kanalzüge verwenden" -#: rc_option_editor.cc:1902 +#: rc_option_editor.cc:1893 msgid "Peak hold time" msgstr "Haltezeit für Spitzenwert" -#: rc_option_editor.cc:1908 +#: rc_option_editor.cc:1899 msgid "short" msgstr "Kurz" -#: rc_option_editor.cc:1909 +#: rc_option_editor.cc:1900 msgid "medium" msgstr "Mittel" -#: rc_option_editor.cc:1910 +#: rc_option_editor.cc:1901 msgid "long" msgstr "Lange" -#: rc_option_editor.cc:1916 +#: rc_option_editor.cc:1907 msgid "DPM fall-off" msgstr "Abfall der digitalen Pegelanzeige" -#: rc_option_editor.cc:1922 +#: rc_option_editor.cc:1913 msgid "slowest [6.6dB/sec]" msgstr "am langsamsten [6.6dB/sec]" -#: rc_option_editor.cc:1923 +#: rc_option_editor.cc:1914 msgid "slow [8.6dB/sec] (BBC PPM, EBU PPM)" msgstr "langsam [8.6dB/sec] (BBC PPM, EBU PPM)" -#: rc_option_editor.cc:1924 +#: rc_option_editor.cc:1915 msgid "slowish [12.0dB/sec] (DIN)" msgstr "etwas langsam [12.0dB/sec] (DIN)" -#: rc_option_editor.cc:1925 +#: rc_option_editor.cc:1916 msgid "moderate [13.3dB/sec] (EBU Digi PPM, IRT Digi PPM)" msgstr "mäßig [13.3dB/sec] (EBU Digi PPM, IRT Digi PPM)" -#: rc_option_editor.cc:1926 +#: rc_option_editor.cc:1917 msgid "medium [20dB/sec]" msgstr "mittel [20dB/sec]" -#: rc_option_editor.cc:1927 +#: rc_option_editor.cc:1918 msgid "fast [32dB/sec]" msgstr "schnell [32dB/sec]" -#: rc_option_editor.cc:1928 +#: rc_option_editor.cc:1919 msgid "faster [46dB/sec]" msgstr "schneller [46dB/sec]" -#: rc_option_editor.cc:1929 +#: rc_option_editor.cc:1920 msgid "fastest [70dB/sec]" msgstr "am schnellsten [70dB/sec]" -#: rc_option_editor.cc:1935 +#: rc_option_editor.cc:1926 msgid "Meter line-up level; 0dBu" msgstr "Ausrichtung der Pegelanzeige; 0dBu" -#: rc_option_editor.cc:1940 rc_option_editor.cc:1956 +#: rc_option_editor.cc:1931 rc_option_editor.cc:1947 msgid "-24dBFS (SMPTE US: 4dBu = -20dBFS)" msgstr "-24dBFS (SMPTE US: 4dBu = -20dBFS)" -#: rc_option_editor.cc:1941 rc_option_editor.cc:1957 +#: rc_option_editor.cc:1932 rc_option_editor.cc:1948 msgid "-20dBFS (SMPTE RP.0155)" msgstr "-20dBFS (SMPTE RP.0155)" -#: rc_option_editor.cc:1942 rc_option_editor.cc:1958 +#: rc_option_editor.cc:1933 rc_option_editor.cc:1949 msgid "-18dBFS (EBU, BBC)" msgstr "-18dBFS (EBU, BBC)" -#: rc_option_editor.cc:1943 rc_option_editor.cc:1959 +#: rc_option_editor.cc:1934 rc_option_editor.cc:1950 msgid "-15dBFS (DIN)" msgstr "-15dBFS (DIN)" -#: rc_option_editor.cc:1945 +#: rc_option_editor.cc:1936 msgid "" "Configure meter-marks and color-knee point for dBFS scale DPM, set reference " "level for IEC1/Nordic, IEC2 PPM and VU meter." @@ -9620,39 +9671,39 @@ msgstr "" "Konfiguriere Skalierung und Farbschwellwert für DPM mit dBFS-Skala, " "setzeReferenzpegel für IEC1/Nordisch, IEC2 PPM und VU Pegelanzeigen." -#: rc_option_editor.cc:1951 +#: rc_option_editor.cc:1942 msgid "IEC1/DIN Meter line-up level; 0dBu" msgstr "Ausrichtung der IEC1/DIN Pegelanzeige; 0dBu" -#: rc_option_editor.cc:1961 +#: rc_option_editor.cc:1952 msgid "Reference level for IEC1/DIN meter." msgstr "Referenzpegel für IEC1/DIN Pegelanzeige." -#: rc_option_editor.cc:1967 +#: rc_option_editor.cc:1958 msgid "VU Meter standard" msgstr "Standard für VU-Pegelanzeige" -#: rc_option_editor.cc:1972 +#: rc_option_editor.cc:1963 msgid "0VU = -2dBu (France)" msgstr "0VU = -2dBu (Frankreich)" -#: rc_option_editor.cc:1973 +#: rc_option_editor.cc:1964 msgid "0VU = 0dBu (North America, Australia)" msgstr "0VU = 0dBu (Nordamerika, Australien)" -#: rc_option_editor.cc:1974 +#: rc_option_editor.cc:1965 msgid "0VU = +4dBu (standard)" msgstr "0VU = +4dBu (Standard)" -#: rc_option_editor.cc:1975 +#: rc_option_editor.cc:1966 msgid "0VU = +8dBu" msgstr "0VU = +8dBu" -#: rc_option_editor.cc:1981 +#: rc_option_editor.cc:1972 msgid "Peak threshold [dBFS]" msgstr "Schwelle für Spitzenwert [dBFS]" -#: rc_option_editor.cc:1989 +#: rc_option_editor.cc:1980 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " "indicator will flash red." @@ -9660,7 +9711,7 @@ msgstr "" "Geben Sie den Signalpegel in dbFS an, bei dessen Erreichen oder " "Überschreitung die Spitzenwertanzeige in der Pegelanzeige rot blinkt" -#: rc_option_editor.cc:1996 +#: rc_option_editor.cc:1987 msgid "LED meter style" msgstr "Pegelanzeigen im LED-Stil" @@ -10323,32 +10374,17 @@ msgstr "der Monitor-Bus" #: route_ui.cc:1818 msgid "" -"The remote control ID of %6 is: %3\n" +"The remote control ID of %5 is: %2\n" "\n" "\n" -"Remote Control IDs are currently determined by track/bus ordering in %1\n" +"Remote Control IDs are currently determined by track/bus ordering in " +"Ardour.\n" "\n" -"%4Use the User Interaction tab of the Preferences window if you want to " -"change this%5" +"%3Use the User Interaction tab of the Preferences window if you want to " +"change this%4" msgstr "" -"Die Fernbedienungs-ID von %ist: %3\n" -"\n" -"\n" -"Fernbedienungs-ID werden zur Zeit durch die Reihenfolge der Spuren in %1 " -"bestimmt\n" -"\n" -"%4Sie können dies im Tab \"Benutzerinteraktion\" im Fenster Einstellungen " -"ändern%5" -#: route_ui.cc:1821 -msgid "the mixer" -msgstr "der Mixer" - -#: route_ui.cc:1821 -msgid "the editor" -msgstr "der Editor" - -#: route_ui.cc:1876 +#: route_ui.cc:1875 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " "to show menu." @@ -10356,7 +10392,7 @@ msgstr "" "Linksklick, um die Phase von Kanal %1 zu invertieren. Rechtsklick zeigt das " "Menü." -#: route_ui.cc:1878 +#: route_ui.cc:1877 msgid "Click to show a menu of channels for inversion (phase reverse)" msgstr "" "Klicken, um ein Menü zum Invertieren der Kanäle (Phasendrehung) anzuzeigen" @@ -10385,107 +10421,107 @@ msgstr "Projekteinrichtung" msgid "Advanced options ..." msgstr "Erweiterte Einstellungen..." -#: session_dialog.cc:247 +#: session_dialog.cc:267 msgid "New Session" msgstr "Neues Projekt" -#: session_dialog.cc:284 +#: session_dialog.cc:305 msgid "Check the website for more..." msgstr "Informieren Sie sich auf der Webseite weiter..." -#: session_dialog.cc:287 +#: session_dialog.cc:308 msgid "Click to open the program website in your web browser" msgstr "Klicken Sie, um die Webseite in Ihrem Web-Browse zu öffnen" -#: session_dialog.cc:307 +#: session_dialog.cc:328 msgid "Sample Rate" msgstr "Samplerate" -#: session_dialog.cc:308 +#: session_dialog.cc:329 msgid "Disk Format" msgstr "Dateiformat" -#: session_dialog.cc:326 +#: session_dialog.cc:347 msgid "Select session file" msgstr "Projektdatei auswählen" -#: session_dialog.cc:341 +#: session_dialog.cc:362 msgid "Other Sessions" msgstr "Andere Projekte" -#: session_dialog.cc:367 +#: session_dialog.cc:388 msgid "Open" msgstr "Öffnen" -#: session_dialog.cc:434 +#: session_dialog.cc:455 msgid "Session name:" msgstr "Projektname:" -#: session_dialog.cc:456 +#: session_dialog.cc:477 msgid "Create session folder in:" msgstr "Ort des Projektverzeichnisses:" -#: session_dialog.cc:479 +#: session_dialog.cc:500 msgid "Select folder for session" msgstr "Ordner für Projekt wählen" -#: session_dialog.cc:508 +#: session_dialog.cc:529 msgid "Use this template" msgstr "Diese Vorlage verwenden" -#: session_dialog.cc:511 +#: session_dialog.cc:532 msgid "no template" msgstr "keine Vorlage" -#: session_dialog.cc:643 session_dialog.cc:675 +#: session_dialog.cc:664 session_dialog.cc:696 msgid "32 bit float" msgstr "32 Bit float" -#: session_dialog.cc:646 session_dialog.cc:678 +#: session_dialog.cc:667 session_dialog.cc:699 msgid "24 bit" msgstr "24 Bit" -#: session_dialog.cc:649 session_dialog.cc:681 +#: session_dialog.cc:670 session_dialog.cc:702 msgid "16 bit" msgstr "16 Bit" -#: session_dialog.cc:720 session_dialog.cc:721 session_dialog.cc:722 +#: session_dialog.cc:741 session_dialog.cc:742 session_dialog.cc:743 msgid "channels" msgstr "Kanäle" -#: session_dialog.cc:736 +#: session_dialog.cc:757 msgid "Busses" msgstr "Busse" -#: session_dialog.cc:737 +#: session_dialog.cc:758 msgid "Inputs" msgstr "Eingänge" -#: session_dialog.cc:738 +#: session_dialog.cc:759 msgid "Outputs" msgstr "Ausgänge" -#: session_dialog.cc:746 +#: session_dialog.cc:767 msgid "Create master bus" msgstr "Master-Bus erstellen" -#: session_dialog.cc:756 +#: session_dialog.cc:777 msgid "Automatically connect to physical inputs" msgstr "Automatisch mit Audioeingängen verbinden" -#: session_dialog.cc:763 session_dialog.cc:822 +#: session_dialog.cc:784 session_dialog.cc:843 msgid "Use only" msgstr "Benutze nur" -#: session_dialog.cc:816 +#: session_dialog.cc:837 msgid "Automatically connect outputs" msgstr "Ausgänge automatisch verbinden" -#: session_dialog.cc:838 +#: session_dialog.cc:859 msgid "... to master bus" msgstr "... mit dem Master-Bus" -#: session_dialog.cc:848 +#: session_dialog.cc:869 msgid "... to physical outputs" msgstr "... mit den Audioausgängen" @@ -11489,11 +11525,11 @@ msgstr "" "(Neue Projekte können überall abgespeichert werden, dies ist nur die " "Vorgabe)" -#: startup.cc:253 +#: startup.cc:254 msgid "Default folder for new sessions" msgstr "Standardordner für neue Projekte" -#: startup.cc:274 +#: startup.cc:275 msgid "" "While recording instruments or vocals, you probably want to listen to the\n" "signal as well as record it. This is called \"monitoring\". There are\n" @@ -11518,15 +11554,15 @@ msgstr "" "\n" "If you do not understand what this is about, just accept the default." -#: startup.cc:295 +#: startup.cc:296 msgid "Monitoring Choices" msgstr "Auswahl des Monitoring" -#: startup.cc:318 +#: startup.cc:319 msgid "Use a Master bus directly" msgstr "Nutze den Master-Bus direkt" -#: startup.cc:320 +#: startup.cc:321 msgid "" "Connect the Master bus directly to your hardware outputs. This is preferable " "for simple usage." @@ -11534,11 +11570,11 @@ msgstr "" "Verbinde den Master-Bus direkt mit den Audioausgängen. Wird für " "einfacheAnwendungen empfohlen." -#: startup.cc:329 +#: startup.cc:330 msgid "Use an additional Monitor bus" msgstr "Nutze einen zusätzlichen Monitor-Bus" -#: startup.cc:332 +#: startup.cc:333 msgid "" "Use a Monitor bus between Master bus and hardware outputs for \n" "greater control in monitoring without affecting the mix." @@ -11546,7 +11582,7 @@ msgstr "" "Nutze einen Monitor-Bus zwischen Master-Bus und Audioausgängen, um mehr\n" "Möglichkeiten für das Monitoring zu bekommen, ohne den Mix zu beeinflussen." -#: startup.cc:354 +#: startup.cc:355 msgid "" "You can change this preference at any time via the Preferences dialog.\n" "You can also add or remove the monitor section to/from any session.\n" @@ -11560,7 +11596,7 @@ msgstr "" "\n" "Im Zweifelsfall akzeptieren Sie die Voreinstellung." -#: startup.cc:365 +#: startup.cc:366 msgid "Monitor Section" msgstr "Monitorsektion" @@ -12396,35 +12432,35 @@ msgstr "" "wir, symbolische Links von ffmpeg zu ffmpeg_harvid und von ffprobe zu " "ffprobe_harvid anzulegen.\n" -#: transcode_video_dialog.cc:56 +#: transcode_video_dialog.cc:55 msgid "Transcode/Import Video File " msgstr "Videodatei transkodieren/importieren" -#: transcode_video_dialog.cc:58 +#: transcode_video_dialog.cc:57 msgid "Output File:" msgstr "Ausgabedatei:" -#: transcode_video_dialog.cc:61 export_video_dialog.cc:73 +#: transcode_video_dialog.cc:60 export_video_dialog.cc:72 msgid "Abort" msgstr "Abbruch" -#: transcode_video_dialog.cc:63 +#: transcode_video_dialog.cc:62 msgid "Height = " msgstr "Höhe =" -#: transcode_video_dialog.cc:66 +#: transcode_video_dialog.cc:65 msgid "Manual Override" msgstr "Manuelle Eingabe" -#: transcode_video_dialog.cc:70 export_video_dialog.cc:89 +#: transcode_video_dialog.cc:69 export_video_dialog.cc:88 msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "Debug-Modus: gibt die ffmpeg-Befehlszeile und -Ausgabe an stdout aus." -#: transcode_video_dialog.cc:107 +#: transcode_video_dialog.cc:106 msgid "File Information" msgstr "Dateiinformationen" -#: transcode_video_dialog.cc:113 +#: transcode_video_dialog.cc:112 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " "is not possible until you install those tools. See the Log window for more " @@ -12434,7 +12470,7 @@ msgstr "" "werden. Bis diese Werkzeuge installiert sind, ist Videoimport nicht möglich. " "Sehen Sie im Log-Fenster nach weiteren Informationen." -#: transcode_video_dialog.cc:120 +#: transcode_video_dialog.cc:119 msgid "" "File-info can not be read. Most likely '%1' is not a valid video-file or an " "unsupported video codec or format." @@ -12443,75 +12479,75 @@ msgstr "" "gültige Videodatei, oder enthält einen nicht unterstützten Videocodec bzw. " "ein nicht unterstütztes Videoformat." -#: transcode_video_dialog.cc:134 +#: transcode_video_dialog.cc:133 msgid "FPS:" msgstr "FPS:" -#: transcode_video_dialog.cc:136 +#: transcode_video_dialog.cc:135 msgid "Duration:" msgstr "Dauer:" -#: transcode_video_dialog.cc:138 +#: transcode_video_dialog.cc:137 msgid "Codec:" msgstr "Codec:" -#: transcode_video_dialog.cc:140 +#: transcode_video_dialog.cc:139 msgid "Geometry:" msgstr "Geometrie:" -#: transcode_video_dialog.cc:155 +#: transcode_video_dialog.cc:154 msgid "??" msgstr "??" -#: transcode_video_dialog.cc:176 +#: transcode_video_dialog.cc:175 msgid "Import Settings" msgstr "Importeinstellungen" -#: transcode_video_dialog.cc:181 +#: transcode_video_dialog.cc:180 msgid "Do Not Import Video" msgstr "Video nicht importieren" -#: transcode_video_dialog.cc:182 +#: transcode_video_dialog.cc:181 msgid "Reference From Current Location" msgstr "Referenz von momentaner Position" -#: transcode_video_dialog.cc:184 +#: transcode_video_dialog.cc:183 msgid "Import/Transcode Video to Session" msgstr "Video ins Projekt transkodieren/importieren" -#: transcode_video_dialog.cc:198 +#: transcode_video_dialog.cc:197 msgid "Scale Video: Width = " msgstr "Video skalieren: Breite = " -#: transcode_video_dialog.cc:205 +#: transcode_video_dialog.cc:204 msgid "Original Width" msgstr "Originalbreite" -#: transcode_video_dialog.cc:220 +#: transcode_video_dialog.cc:219 msgid "Bitrate (KBit/s):" msgstr "Bitrate (KBit/s):" -#: transcode_video_dialog.cc:225 +#: transcode_video_dialog.cc:224 msgid "Extract Audio:" msgstr "Audio extrahieren:" -#: transcode_video_dialog.cc:345 +#: transcode_video_dialog.cc:344 msgid "Extracting Audio.." msgstr "Extrahiere Audio..." -#: transcode_video_dialog.cc:348 +#: transcode_video_dialog.cc:347 msgid "Audio Extraction Failed." msgstr "Extrahieren des Audio gescheitert." -#: transcode_video_dialog.cc:374 +#: transcode_video_dialog.cc:373 msgid "Transcoding Video.." msgstr "Transkodiere Video.." -#: transcode_video_dialog.cc:408 +#: transcode_video_dialog.cc:407 msgid "Transcoding Failed." msgstr "Transkodieren gescheitert" -#: transcode_video_dialog.cc:491 +#: transcode_video_dialog.cc:490 msgid "Save Transcoded Video File" msgstr "Sichere transkodierte Videodatei" @@ -12557,14 +12593,10 @@ msgstr "Cachegröße" #: video_server_dialog.cc:136 msgid "" -"%1 relies on an external Video Server for the videotimeline.\n" -"The server configured in Edit -> Prefereces -> Video is not reachable.\n" -"Do you want ardour to launch 'harvid' on this machine?" +"%1 relies on an external video server for the videotimeline.\n" +"The server configured in Edit -> Preferences -> Video is not reachable.\n" +"Do you want %1 to launch 'harvid' on this machine?" msgstr "" -"%1 benötigt einen externen Videoserver für die Video-Zeitleiste.\n" -"Der in Bearbeiten -> Globale Einstellungen -> Video konfigurierte Server ist " -"nicht erreichbar.\n" -"Möchten Sie, daß Ardour \"harvid\" auf diesem Computer startet?" #: video_server_dialog.cc:176 msgid "Set Video Server Executable" @@ -12604,51 +12636,51 @@ msgstr "" msgid "Cannot create video folder \"%1\" (%2)" msgstr "Kann Videoordner \"%1\" nicht erstellen (%2)" -#: export_video_dialog.cc:66 +#: export_video_dialog.cc:65 msgid "Export Video File " msgstr "Exportiere Videodatei" -#: export_video_dialog.cc:70 +#: export_video_dialog.cc:69 msgid "Video:" msgstr "Video:" -#: export_video_dialog.cc:74 +#: export_video_dialog.cc:73 msgid "Scale Video (W x H):" msgstr "Skaliere Video (W x H):" -#: export_video_dialog.cc:79 +#: export_video_dialog.cc:78 msgid "Set Aspect Ratio:" msgstr "Seitenverhältnis:" -#: export_video_dialog.cc:80 +#: export_video_dialog.cc:79 msgid "Normalize Audio" msgstr "Audio normalisieren" -#: export_video_dialog.cc:81 +#: export_video_dialog.cc:80 msgid "2 Pass Encoding" msgstr "Enkodiere in 2 Durchgängen" -#: export_video_dialog.cc:82 +#: export_video_dialog.cc:81 msgid "Codec Optimizations:" msgstr "Codec-Optimierungen:" -#: export_video_dialog.cc:84 +#: export_video_dialog.cc:83 msgid "Deinterlace" msgstr "Deinterlacing anwenden" -#: export_video_dialog.cc:85 +#: export_video_dialog.cc:84 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "Verwende [2] B-frames (nur MPEG 2 oder 4)" -#: export_video_dialog.cc:86 +#: export_video_dialog.cc:85 msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "FPS erzwingen (Voreinstellung: FPS der Videodatei wird beibehalten):" -#: export_video_dialog.cc:87 +#: export_video_dialog.cc:86 msgid "Include Session Metadata" msgstr "Projekt-Metadaten verwenden" -#: export_video_dialog.cc:107 +#: export_video_dialog.cc:106 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " "is not possible until you install those tools. See the Log window for more " @@ -12658,83 +12690,83 @@ msgstr "" "werden. Bis diese Werkzeuge installiert sind, ist Videoexport nicht möglich. " "Sehen Sie im Log-Fenster nach weiteren Informationen." -#: export_video_dialog.cc:117 +#: export_video_dialog.cc:116 msgid "Output:" msgstr "Ausgang:" -#: export_video_dialog.cc:127 +#: export_video_dialog.cc:126 msgid "Input:" msgstr "Eingang:" -#: export_video_dialog.cc:138 +#: export_video_dialog.cc:137 msgid "Audio:" msgstr "Audio:" -#: export_video_dialog.cc:140 +#: export_video_dialog.cc:139 msgid "Master Bus" msgstr "Masterbus" -#: export_video_dialog.cc:145 +#: export_video_dialog.cc:144 msgid "from the %1 session's start to the session's end" msgstr "von %1 Projektbeginn bis -ende" -#: export_video_dialog.cc:149 +#: export_video_dialog.cc:148 msgid "from 00:00:00:00 to the video's end" msgstr "von 00:00:00:00 bis Videoende" -#: export_video_dialog.cc:151 +#: export_video_dialog.cc:150 msgid "from the video's start to the video's end" msgstr "von Videostart bis Videoende" -#: export_video_dialog.cc:154 +#: export_video_dialog.cc:153 msgid "Selected range" msgstr "Ausgewählter Bereich" -#: export_video_dialog.cc:190 +#: export_video_dialog.cc:193 msgid "Settings:" msgstr "Einstellungen:" -#: export_video_dialog.cc:198 +#: export_video_dialog.cc:201 msgid "Range:" msgstr "Bereich:" -#: export_video_dialog.cc:201 +#: export_video_dialog.cc:204 msgid "Preset:" msgstr "Preset:" -#: export_video_dialog.cc:204 +#: export_video_dialog.cc:207 msgid "Video Codec:" msgstr "Videocodec:" -#: export_video_dialog.cc:207 +#: export_video_dialog.cc:210 msgid "Video KBit/s:" msgstr "Video KBit/s:" -#: export_video_dialog.cc:210 +#: export_video_dialog.cc:213 msgid "Audio Codec:" msgstr "Audiocodec:" -#: export_video_dialog.cc:213 +#: export_video_dialog.cc:216 msgid "Audio KBit/s:" msgstr "Audio KBit/s:" -#: export_video_dialog.cc:216 +#: export_video_dialog.cc:219 msgid "Audio Samplerate:" msgstr "Audiosamplerate:" -#: export_video_dialog.cc:392 +#: export_video_dialog.cc:395 msgid "Normalizing audio" msgstr "Audio normalisieren" -#: export_video_dialog.cc:396 +#: export_video_dialog.cc:399 msgid "Exporting audio" msgstr "Exportiere Audio" -#: export_video_dialog.cc:442 +#: export_video_dialog.cc:445 msgid "Exporting Audio..." msgstr "Exportiere Audio..." -#: export_video_dialog.cc:499 +#: export_video_dialog.cc:502 msgid "" "Export Video: Cannot query duration of video-file, using duration from " "timeline instead." @@ -12742,33 +12774,37 @@ msgstr "" "Exportiere Video: Kann die Dauer der Videodatei nicht eruieren, verwende " "statt dessen die Dauer aus der Zeitleiste." -#: export_video_dialog.cc:533 +#: export_video_dialog.cc:532 +msgid "Export Video: export-range does not include video." +msgstr "" + +#: export_video_dialog.cc:544 msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" "Exportiere Video: Keine Master-Ausgangsports zum Verbinden für den " "Audioexport" -#: export_video_dialog.cc:572 +#: export_video_dialog.cc:583 msgid "Encoding Video..." msgstr "Enkodiere Video..." -#: export_video_dialog.cc:591 +#: export_video_dialog.cc:602 msgid "Export Video: Video input file cannot be read." msgstr "Exportiere Video: Die Videoquelldatei kann nicht gelesen werden." -#: export_video_dialog.cc:684 +#: export_video_dialog.cc:695 msgid "Encoding Video.. Pass 1/2" msgstr "Kodiere Video.. Durchgang 1/2" -#: export_video_dialog.cc:696 +#: export_video_dialog.cc:707 msgid "Encoding Video.. Pass 2/2" msgstr "Kodiere Video.. Durchgang 2/2" -#: export_video_dialog.cc:803 +#: export_video_dialog.cc:814 msgid "Transcoding failed." msgstr "Transkodieren fehlgeschlagen." -#: export_video_dialog.cc:972 export_video_dialog.cc:992 +#: export_video_dialog.cc:983 export_video_dialog.cc:1003 msgid "Save Exported Video File" msgstr "Sichere exportierte Videodatei" @@ -12800,3 +12836,82 @@ msgstr "" "#export nach.\n" "\n" "Handbuch im Browser öffnen? " + +#~ msgid "" +#~ "`The audio backend has either been shutdown or it\n" +#~ "disconnected %1 because %1\n" +#~ "was not fast enough. Try to restart\n" +#~ "the audio backend and save the session." +#~ msgstr "" +#~ "Das Audiobackend wurde entweder beendet oder von\n" +#~ "%1 getrennt, weil %1 nicht schnell genug\n" +#~ "war. Sie sollten versuchen, das Audiobackend \n" +#~ "neu zu starten und das Projekt zu speichern." + +#~ msgid "Measure latency" +#~ msgstr "Latenz messen" + +#~ msgid "Start MIDI ALSA/JACK bridge" +#~ msgstr "Starte MIDI ALSA/JACK bridge" + +#~ msgid "" +#~ "Turn down the volume on your hardware to a very low " +#~ "level." +#~ msgstr "" +#~ "Stellen Sie Ihre Hardwarelautstärke auf einen sehr " +#~ "niedrigen Pegel ein." + +#~ msgid "" +#~ "Select two channels below and connect them using a cable or (less " +#~ "ideally) a speaker and microphone." +#~ msgstr "" +#~ "Wählen Sie unten zwei Kanäle aus und verbinden sie mit einem Kabel oder " +#~ "(weniger empfehlenswert) mittels Lautsprecher und Mikrofon." + +#~ msgid "" +#~ "Once the channels are connected, click the \"Measure latency\" button." +#~ msgstr "" +#~ "Wenn die Kanäle verbunden sind, klicken Sie den Knopf \"Latenz messen\"." + +#~ msgid "Cancel measurement" +#~ msgstr "Messung abbrechen" + +#~ msgid "Synchronise editor and mixer track order" +#~ msgstr "Einheitliche Reihenfolge der Spuren im Editor und Mixer" + +#~ msgid "follows order of editor" +#~ msgstr "folgt Reihenfolge im Editor" + +#~ msgid "" +#~ "The remote control ID of %6 is: %3\n" +#~ "\n" +#~ "\n" +#~ "Remote Control IDs are currently determined by track/bus ordering in %1\n" +#~ "\n" +#~ "%4Use the User Interaction tab of the Preferences window if you want to " +#~ "change this%5" +#~ msgstr "" +#~ "Die Fernbedienungs-ID von %ist: %3\n" +#~ "\n" +#~ "\n" +#~ "Fernbedienungs-ID werden zur Zeit durch die Reihenfolge der Spuren in %1 " +#~ "bestimmt\n" +#~ "\n" +#~ "%4Sie können dies im Tab \"Benutzerinteraktion\" im Fenster Einstellungen " +#~ "ändern%5" + +#~ msgid "the mixer" +#~ msgstr "der Mixer" + +#~ msgid "the editor" +#~ msgstr "der Editor" + +#~ msgid "" +#~ "%1 relies on an external Video Server for the videotimeline.\n" +#~ "The server configured in Edit -> Prefereces -> Video is not reachable.\n" +#~ "Do you want ardour to launch 'harvid' on this machine?" +#~ msgstr "" +#~ "%1 benötigt einen externen Videoserver für die Video-Zeitleiste.\n" +#~ "Der in Bearbeiten -> Globale Einstellungen -> Video konfigurierte Server " +#~ "ist nicht erreichbar.\n" +#~ "Möchten Sie, daß Ardour \"harvid\" auf diesem Computer startet?" diff --git a/gtk2_ardour/po/el.po b/gtk2_ardour/po/el.po index 9bc7dc265b..febfa5c030 100644 --- a/gtk2_ardour/po/el.po +++ b/gtk2_ardour/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gtk-ardour 0.347.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2007-04-11 02:27+0200\n" "Last-Translator: Klearchos Gourgourinis \n" "Language-Team: Hellenic\n" @@ -212,6 +212,10 @@ msgstr "" msgid "Lincoln Spiteri" msgstr "" +#: about.cc:171 +msgid "Mike Start" +msgstr "" + #: about.cc:172 msgid "Mark Stewart" msgstr "" @@ -327,6 +331,10 @@ msgid "" "\t Rui-huai Zhang \n" msgstr "" +#: about.cc:580 +msgid "Copyright (C) 1999-2013 Paul Davis\n" +msgstr "" + #: about.cc:584 msgid "http://ardour.org/" msgstr "" @@ -345,6 +353,10 @@ msgstr "" msgid "Loading menus from %1" msgstr "" +#: actions.cc:88 actions.cc:89 +msgid "badly formatted UI definition file: %1" +msgstr "" + #: actions.cc:91 msgid "%1 menu definition file not found" msgstr "" @@ -353,23 +365,84 @@ msgstr "" msgid "%1 will not work without a valid ardour.menus file" msgstr "" +#: add_route_dialog.cc:53 route_params_ui.cc:500 +msgid "Add Track or Bus" +msgstr "" + +#: add_route_dialog.cc:56 +msgid "Configuration:" +msgstr "" + +#: add_route_dialog.cc:57 +msgid "Track mode:" +msgstr "" + #: add_route_dialog.cc:58 msgid "Instrument:" msgstr "" +#: add_route_dialog.cc:76 +msgid "Audio Tracks" +msgstr "" + +#: add_route_dialog.cc:77 +msgid "MIDI Tracks" +msgstr "" + +#: add_route_dialog.cc:78 +msgid "Audio+MIDI Tracks" +msgstr "" + +#: add_route_dialog.cc:79 +msgid "Busses" +msgstr "" + #: add_route_dialog.cc:101 msgid "Add:" msgstr "" +#: add_route_dialog.cc:114 time_fx_dialog.cc:91 add_video_dialog.cc:150 +#: video_server_dialog.cc:112 +msgid "Options" +msgstr "" + +#: add_route_dialog.cc:124 bundle_manager.cc:192 region_editor.cc:50 +#: route_group_dialog.cc:65 +msgid "Name:" +msgstr "" + +#: add_route_dialog.cc:154 +msgid "Group:" +msgstr "" + +#: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 +#: ardour_ui_ed.cc:476 engine_dialog.cc:236 rc_option_editor.cc:1446 +#: rc_option_editor.cc:1448 rc_option_editor.cc:1450 rc_option_editor.cc:1466 +#: rc_option_editor.cc:1468 rc_option_editor.cc:1476 rc_option_editor.cc:1478 +#: rc_option_editor.cc:1496 rc_option_editor.cc:1509 rc_option_editor.cc:1511 +#: rc_option_editor.cc:1513 rc_option_editor.cc:1544 rc_option_editor.cc:1546 +#: rc_option_editor.cc:1548 rc_option_editor.cc:1556 rc_option_editor.cc:1564 +#: rc_option_editor.cc:1572 +msgid "Audio" +msgstr "" + #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 -#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1707 -#: rc_option_editor.cc:1715 rc_option_editor.cc:1723 rc_option_editor.cc:1732 -#: rc_option_editor.cc:1740 rc_option_editor.cc:1748 rc_option_editor.cc:1756 -#: rc_option_editor.cc:1765 rc_option_editor.cc:1774 rc_option_editor.cc:1783 -#: rc_option_editor.cc:1791 rc_option_editor.cc:1799 +#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1695 +#: rc_option_editor.cc:1703 rc_option_editor.cc:1711 rc_option_editor.cc:1720 +#: rc_option_editor.cc:1728 rc_option_editor.cc:1736 rc_option_editor.cc:1744 +#: rc_option_editor.cc:1753 rc_option_editor.cc:1762 rc_option_editor.cc:1771 +#: rc_option_editor.cc:1779 rc_option_editor.cc:1787 msgid "MIDI" msgstr "MIDI" +#: add_route_dialog.cc:217 add_route_dialog.cc:230 add_route_dialog.cc:300 +msgid "Audio+MIDI" +msgstr "" + +#: add_route_dialog.cc:218 add_route_dialog.cc:233 add_route_dialog.cc:301 +msgid "Bus" +msgstr "" + #: add_route_dialog.cc:260 msgid "" "Audio+MIDI tracks are intended for use ONLY with plugins that use " @@ -384,6 +457,10 @@ msgstr "" msgid "Normal" msgstr "Κανονικό" +#: add_route_dialog.cc:322 add_route_dialog.cc:340 +msgid "Non Layered" +msgstr "" + #: add_route_dialog.cc:323 add_route_dialog.cc:342 msgid "Tape" msgstr "" @@ -396,10 +473,46 @@ msgstr "" msgid "Stereo" msgstr "" +#: add_route_dialog.cc:451 +msgid "3 Channel" +msgstr "" + +#: add_route_dialog.cc:455 +msgid "4 Channel" +msgstr "" + +#: add_route_dialog.cc:459 +msgid "5 Channel" +msgstr "" + +#: add_route_dialog.cc:463 +msgid "6 Channel" +msgstr "" + +#: add_route_dialog.cc:467 +msgid "8 Channel" +msgstr "" + +#: add_route_dialog.cc:471 +msgid "12 Channel" +msgstr "" + #: add_route_dialog.cc:475 mixer_strip.cc:2131 msgid "Custom" msgstr "" +#: add_route_dialog.cc:508 add_route_dialog.cc:524 route_group_menu.cc:81 +msgid "New Group..." +msgstr "" + +#: add_route_dialog.cc:512 route_group_menu.cc:85 +msgid "No Group" +msgstr "" + +#: add_route_dialog.cc:588 +msgid "-none-" +msgstr "" + #: ambiguous_file_dialog.cc:30 msgid "Ambiguous File" msgstr "" @@ -425,6 +538,18 @@ msgstr "" msgid "Signal source" msgstr "" +#: analysis_window.cc:47 +msgid "Selected ranges" +msgstr "" + +#: analysis_window.cc:48 +msgid "Selected regions" +msgstr "" + +#: analysis_window.cc:50 +msgid "Display model" +msgstr "" + #: analysis_window.cc:51 msgid "Composite graphs for each track" msgstr "" @@ -437,11 +562,15 @@ msgstr "" msgid "Show frequency power range" msgstr "" +#: analysis_window.cc:55 +msgid "Normalize values" +msgstr "" + #: analysis_window.cc:59 msgid "FFT analysis window" msgstr "" -#: analysis_window.cc:60 editor.cc:1856 +#: analysis_window.cc:60 editor.cc:1857 msgid "Spectral Analysis" msgstr "" @@ -450,6 +579,11 @@ msgstr "" msgid "Track" msgstr "Κανάλι" +#: analysis_window.cc:68 editor_actions.cc:616 mixer_ui.cc:125 +#: mixer_ui.cc:1795 +msgid "Show" +msgstr "" + #: analysis_window.cc:135 msgid "Re-analyze data" msgstr "" @@ -458,10 +592,26 @@ msgstr "" msgid "button cannot watch state of non-existing Controllable\n" msgstr "" +#: ardour_ui.cc:180 +msgid "audition" +msgstr "" + +#: ardour_ui.cc:181 +msgid "solo" +msgstr "" + #: ardour_ui.cc:182 msgid "feedback" msgstr "" +#: ardour_ui.cc:187 speaker_dialog.cc:36 +msgid "Speaker Configuration" +msgstr "" + +#: ardour_ui.cc:188 theme_manager.cc:56 theme_manager.cc:64 +msgid "Theme Manager" +msgstr "" + #: ardour_ui.cc:189 keyeditor.cc:53 msgid "Key Bindings" msgstr "" @@ -470,6 +620,10 @@ msgstr "" msgid "Preferences" msgstr "" +#: ardour_ui.cc:191 ardour_ui.cc:197 +msgid "Add Tracks/Busses" +msgstr "" + #: ardour_ui.cc:192 msgid "About" msgstr "ΠληÏοφοÏίες" @@ -478,27 +632,74 @@ msgstr "ΠληÏοφοÏίες" msgid "Locations" msgstr "Τοποθεσίες" -#: ardour_ui.cc:195 +#: ardour_ui.cc:194 route_params_ui.cc:58 route_params_ui.cc:606 +msgid "Tracks and Busses" +msgstr "" + +#: ardour_ui.cc:195 engine_dialog.cc:67 +msgid "Audio/MIDI Setup" +msgstr "" + +#: ardour_ui.cc:196 msgid "Properties" msgstr "" -#: ardour_ui.cc:197 bundle_manager.cc:263 +#: ardour_ui.cc:198 bundle_manager.cc:263 msgid "Bundle Manager" msgstr "" -#: ardour_ui.cc:198 big_clock_window.cc:35 +#: ardour_ui.cc:199 big_clock_window.cc:35 msgid "Big Clock" msgstr "Μεγάλο ωÏολόγιον" -#: ardour_ui.cc:202 +#: ardour_ui.cc:200 +msgid "Audio Connections" +msgstr "" + +#: ardour_ui.cc:201 +msgid "MIDI Connections" +msgstr "" + +#: ardour_ui.cc:203 msgid "Errors" msgstr "" -#: ardour_ui.cc:758 startup.cc:638 +#: ardour_ui.cc:436 +msgid "" +"The audio backend was shutdown because:\n" +"\n" +"%1" +msgstr "" + +#: ardour_ui.cc:438 +msgid "" +"The audio backend has either been shutdown or it\n" +"disconnected %1 because %1\n" +"was not fast enough. Try to restart\n" +"the audio backend and save the session." +msgstr "" + +#: ardour_ui.cc:758 +msgid "NSM server did not announce itself" +msgstr "" + +#: ardour_ui.cc:771 +msgid "NSM: no client ID provided" +msgstr "" + +#: ardour_ui.cc:778 +msgid "NSM: no session created" +msgstr "" + +#: ardour_ui.cc:801 +msgid "NSM: initialization failed" +msgstr "" + +#: ardour_ui.cc:840 startup.cc:379 msgid "%1 is ready for use" msgstr "" -#: ardour_ui.cc:806 +#: ardour_ui.cc:882 msgid "" "WARNING: Your system has a limit for maximum amount of locked memory. This " "might cause %1 to run out of memory before your system runs out of memory. \n" @@ -507,78 +708,130 @@ msgid "" "controlled by %2" msgstr "" -#: ardour_ui.cc:823 +#: ardour_ui.cc:899 msgid "Do not show this window again" msgstr "" -#: ardour_ui.cc:908 +#: ardour_ui.cc:943 +msgid "Don't quit" +msgstr "" + +#: ardour_ui.cc:944 +msgid "Just quit" +msgstr "" + +#: ardour_ui.cc:945 +msgid "Save and quit" +msgstr "" + +#: ardour_ui.cc:955 +msgid "" +"%1 was unable to save your session.\n" +"\n" +"If you still wish to quit, please use the\n" +"\n" +"\"Just quit\" option." +msgstr "" + +#: ardour_ui.cc:986 msgid "Please wait while %1 cleans up..." msgstr "" -#: ardour_ui.cc:963 +#: ardour_ui.cc:1004 +msgid "Unsaved Session" +msgstr "" + +#: ardour_ui.cc:1025 +msgid "" +"The session \"%1\"\n" +"has not been saved.\n" +"\n" +"Any changes made this time\n" +"will be lost unless you save it.\n" +"\n" +"What do you want to do?" +msgstr "" + +#: ardour_ui.cc:1028 +msgid "" +"The snapshot \"%1\"\n" +"has not been saved.\n" +"\n" +"Any changes made this time\n" +"will be lost unless you save it.\n" +"\n" +"What do you want to do?" +msgstr "" + +#: ardour_ui.cc:1042 msgid "Prompter" msgstr "Υποβολέας" -#: ardour_ui.cc:1049 -msgid "disconnected" -msgstr "Αποσυνδέθηκε" - -#: ardour_ui.cc:1056 +#: ardour_ui.cc:1128 ardour_ui.cc:1136 #, c-format -msgid "JACK: %.1f kHz / %4.1f ms" +msgid "Audio: none" msgstr "" -#: ardour_ui.cc:1060 +#: ardour_ui.cc:1140 #, c-format -msgid "JACK: % kHz / %4.1f ms" +msgid "Audio: %.1f kHz / %4.1f ms" msgstr "" -#: ardour_ui.cc:1082 +#: ardour_ui.cc:1144 +#, c-format +msgid "Audio: % kHz / %4.1f ms" +msgstr "" + +#: ardour_ui.cc:1162 export_video_dialog.cc:67 +msgid "File:" +msgstr "" + +#: ardour_ui.cc:1166 msgid "BWF" msgstr "" -#: ardour_ui.cc:1085 +#: ardour_ui.cc:1169 msgid "WAV" msgstr "" -#: ardour_ui.cc:1088 +#: ardour_ui.cc:1172 msgid "WAV64" msgstr "" -#: ardour_ui.cc:1091 session_option_editor.cc:197 +#: ardour_ui.cc:1175 session_option_editor.cc:197 msgid "CAF" msgstr "" -#: ardour_ui.cc:1094 +#: ardour_ui.cc:1178 msgid "AIFF" msgstr "" -#: ardour_ui.cc:1097 +#: ardour_ui.cc:1181 msgid "iXML" msgstr "" -#: ardour_ui.cc:1100 +#: ardour_ui.cc:1184 msgid "RF64" msgstr "" -#: ardour_ui.cc:1108 +#: ardour_ui.cc:1192 msgid "32-float" msgstr "" -#: ardour_ui.cc:1111 +#: ardour_ui.cc:1195 msgid "24-int" msgstr "" -#: ardour_ui.cc:1114 +#: ardour_ui.cc:1198 msgid "16-int" msgstr "" -#: ardour_ui.cc:1133 +#: ardour_ui.cc:1217 #, c-format msgid "DSP: %5.1f%%" msgstr "" -#: ardour_ui.cc:1152 +#: ardour_ui.cc:1236 #, c-format msgid "" "Buffers: p:" @@ -586,99 +839,211 @@ msgid "" "\">%%%" msgstr "" -#: ardour_ui.cc:1190 +#: ardour_ui.cc:1277 +msgid "Disk: Unknown" +msgstr "" + +#: ardour_ui.cc:1279 msgid "Disk: 24hrs+" msgstr "" -#: ardour_ui.cc:1208 +#: ardour_ui.cc:1297 msgid "Disk: >24 hrs" msgstr "" -#: ardour_ui.cc:1362 ardour_ui.cc:1371 startup.cc:1054 +#: ardour_ui.cc:1308 +#, c-format +msgid "Disk: %02dh:%02dm:%02ds" +msgstr "" + +#: ardour_ui.cc:1334 +#, c-format +msgid "Timecode|TC: %s" +msgstr "" + +#: ardour_ui.cc:1451 ardour_ui.cc:1460 session_dialog.cc:322 +#: session_dialog.cc:327 msgid "Recent Sessions" msgstr "ΠÏόσφατες συνεδÏίες" -#: ardour_ui.cc:1451 +#: ardour_ui.cc:1539 msgid "" -"%1 is not connected to JACK\n" +"%1 is not connected to any audio backend.\n" "You cannot open or close sessions in this condition" msgstr "" -#: ardour_ui.cc:1478 +#: ardour_ui.cc:1563 msgid "Open Session" msgstr "Άνοιγμα ΣυνεδÏίας" -#: ardour_ui.cc:1540 +#: ardour_ui.cc:1588 session_dialog.cc:353 session_import_dialog.cc:169 +#: session_metadata_dialog.cc:729 +msgid "%1 sessions" +msgstr "" + +#: ardour_ui.cc:1625 msgid "You cannot add a track without a session already loaded." msgstr "Δεν γίνεται να Ï€Ïοστεθεί κανάλι χωÏίς ήδη φοÏτωμένη συνεδÏία." -#: ardour_ui.cc:2114 +#: ardour_ui.cc:1633 +msgid "could not create %1 new mixed track" +msgid_plural "could not create %1 new mixed tracks" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1639 ardour_ui.cc:1700 msgid "" -"The audio backend (JACK) was shutdown because:\n" -"\n" -"%1" +"There are insufficient JACK ports available\n" +"to create a new track or bus.\n" +"You should save %1, exit and\n" +"restart JACK with more ports." msgstr "" -#: ardour_ui.cc:2142 -msgid "Unable to start the session running" -msgstr "Σφάλμα στην έναÏξη της συνεδÏίας" +#: ardour_ui.cc:1674 +msgid "You cannot add a track or bus without a session already loaded." +msgstr "" -#: ardour_ui.cc:2247 +#: ardour_ui.cc:1683 +msgid "could not create %1 new audio track" +msgid_plural "could not create %1 new audio tracks" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1692 +msgid "could not create %1 new audio bus" +msgid_plural "could not create %1 new audio busses" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1816 +msgid "" +"Please create one or more tracks before trying to record.\n" +"You can do this with the \"Add Track or Bus\" option in the Session menu." +msgstr "" + +#: ardour_ui.cc:2193 +msgid "Take Snapshot" +msgstr "" + +#: ardour_ui.cc:2194 +msgid "Name of new snapshot" +msgstr "" + +#: ardour_ui.cc:2218 msgid "" "To ensure compatibility with various systems\n" "snapshot names may not contain a '%1' character" msgstr "" -#: ardour_ui.cc:2259 +#: ardour_ui.cc:2230 msgid "Confirm Snapshot Overwrite" msgstr "" -#: ardour_ui.cc:2312 ardour_ui.cc:2692 ardour_ui.cc:2737 +#: ardour_ui.cc:2231 +msgid "A snapshot already exists with that name. Do you want to overwrite it?" +msgstr "" + +#: ardour_ui.cc:2234 utils_videotl.cc:67 +msgid "Overwrite" +msgstr "" + +#: ardour_ui.cc:2268 +msgid "Rename Session" +msgstr "" + +#: ardour_ui.cc:2269 +msgid "New session name" +msgstr "" + +#: ardour_ui.cc:2283 ardour_ui.cc:2684 ardour_ui.cc:2722 msgid "" "To ensure compatibility with various systems\n" "session names may not contain a '%1' character" msgstr "" -#: ardour_ui.cc:2320 +#: ardour_ui.cc:2291 msgid "" "That name is already in use by another directory/folder. Please try again." msgstr "" -#: ardour_ui.cc:2329 +#: ardour_ui.cc:2300 msgid "" "Renaming this session failed.\n" "Things could be seriously messed up at this point" msgstr "" -#: ardour_ui.cc:2442 +#: ardour_ui.cc:2411 +msgid "Save Template" +msgstr "" + +#: ardour_ui.cc:2412 +msgid "Name for template:" +msgstr "" + +#: ardour_ui.cc:2413 msgid "-template" msgstr "-Ï€Ïοσχέδιο" -#: ardour_ui.cc:2728 +#: ardour_ui.cc:2451 +msgid "" +"This session\n" +"%1\n" +"already exists. Do you want to open it?" +msgstr "" + +#: ardour_ui.cc:2461 +msgid "Open Existing Session" +msgstr "" + +#: ardour_ui.cc:2712 msgid "There is no existing session at \"%1\"" msgstr "" -#: ardour_ui.cc:2815 +#: ardour_ui.cc:2804 msgid "Please wait while %1 loads your session" msgstr "" -#: ardour_ui.cc:2830 +#: ardour_ui.cc:2819 msgid "Port Registration Error" msgstr "" -#: ardour_ui.cc:2831 +#: ardour_ui.cc:2820 msgid "Click the Close button to try again." msgstr "" -#: ardour_ui.cc:2852 +#: ardour_ui.cc:2841 msgid "Session \"%1 (snapshot %2)\" did not load successfully" msgstr "Η ΣυνεδÏία \"%1 (στιγμιότυπο %2)\" δεν φοÏτώθηκε επιτυχώς" -#: ardour_ui.cc:2859 -msgid "Click the Refresh button to try again." +#: ardour_ui.cc:2848 +msgid "Loading Error" msgstr "" -#: ardour_ui.cc:3046 +#: ardour_ui.cc:2867 +msgid "" +"This session has been opened in read-only mode.\n" +"\n" +"You will not be able to record or save." +msgstr "" + +#: ardour_ui.cc:2873 +msgid "Read-only Session" +msgstr "" + +#: ardour_ui.cc:2931 +msgid "Could not create session in \"%1\"" +msgstr "" + +#: ardour_ui.cc:3031 +msgid "No files were ready for clean-up" +msgstr "" + +#: ardour_ui.cc:3035 ardour_ui.cc:3045 ardour_ui.cc:3178 ardour_ui.cc:3185 +#: ardour_ui_ed.cc:104 +msgid "Clean-up" +msgstr "" + +#: ardour_ui.cc:3036 msgid "" "If this seems suprising, \n" "check for any existing snapshots.\n" @@ -691,115 +1056,203 @@ msgstr "" "χÏειάζονται κάποια αÏχεία που δεν\n" "χÏησιμοποιοÏνται αλλοÏ." -#: ardour_ui.cc:3105 +#: ardour_ui.cc:3095 msgid "kilo" msgstr "" -#: ardour_ui.cc:3108 +#: ardour_ui.cc:3098 msgid "mega" msgstr "" -#: ardour_ui.cc:3111 +#: ardour_ui.cc:3101 msgid "giga" msgstr "" -#: ardour_ui.cc:3245 +#: ardour_ui.cc:3106 +msgid "" +"The following file was deleted from %2,\n" +"releasing %3 %4bytes of disk space" +msgid_plural "" +"The following %1 files were deleted from %2,\n" +"releasing %3 %4bytes of disk space" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:3113 +msgid "" +"The following file was not in use and \n" +"has been moved to: %2\n" +"\n" +"After a restart of %5\n" +"\n" +"Session -> Clean-up -> Flush Wastebasket\n" +"\n" +"will release an additional %3 %4bytes of disk space.\n" +msgid_plural "" +"The following %1 files were not in use and \n" +"have been moved to: %2\n" +"\n" +"After a restart of %5\n" +"\n" +"Session -> Clean-up -> Flush Wastebasket\n" +"\n" +"will release an additional %3 %4bytes of disk space.\n" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:3173 +msgid "Are you sure you want to clean-up?" +msgstr "" + +#: ardour_ui.cc:3180 +msgid "" +"Clean-up is a destructive operation.\n" +"ALL undo/redo information will be lost if you clean-up.\n" +"Clean-up will move all unused files to a \"dead\" location." +msgstr "" + +#: ardour_ui.cc:3188 +msgid "CleanupDialog" +msgstr "" + +#: ardour_ui.cc:3218 +msgid "Cleaned Files" +msgstr "" + +#: ardour_ui.cc:3235 msgid "deleted file" msgstr "διαγÏαμμένα αÏχεία" -#: ardour_ui.cc:3337 +#: ardour_ui.cc:3381 msgid "" "Video-Server was not launched by Ardour. The request to stop it is ignored." msgstr "" -#: ardour_ui.cc:3341 +#: ardour_ui.cc:3385 msgid "Stop Video-Server" msgstr "" -#: ardour_ui.cc:3342 +#: ardour_ui.cc:3386 msgid "Do you really want to stop the Video Server?" msgstr "" -#: ardour_ui.cc:3371 +#: ardour_ui.cc:3389 +msgid "Yes, Stop It" +msgstr "" + +#: ardour_ui.cc:3415 msgid "The Video Server is already started." msgstr "" -#: ardour_ui.cc:3373 +#: ardour_ui.cc:3417 msgid "" "An external Video Server is configured and can be reached. Not starting a " "new instance." msgstr "" -#: ardour_ui.cc:3381 ardour_ui.cc:3471 +#: ardour_ui.cc:3425 ardour_ui.cc:3515 msgid "" "Could not connect to the Video Server. Start it or configure its access URL " "in Edit -> Preferences." msgstr "" -#: ardour_ui.cc:3405 +#: ardour_ui.cc:3449 msgid "Specified docroot is not an existing directory." msgstr "" -#: ardour_ui.cc:3410 +#: ardour_ui.cc:3454 msgid "Given Video Server is not an executable file." msgstr "" -#: ardour_ui.cc:3443 +#: ardour_ui.cc:3487 msgid "Cannot launch the video-server" msgstr "" -#: ardour_ui.cc:3452 +#: ardour_ui.cc:3496 msgid "Video-server was started but does not respond to requests..." msgstr "" -#: ardour_ui.cc:3497 editor_audio_import.cc:632 +#: ardour_ui.cc:3541 editor_audio_import.cc:632 msgid "could not open %1" msgstr "δεν μπόÏεσα να ανοίξω το %1" -#: ardour_ui.cc:3501 +#: ardour_ui.cc:3545 msgid "no video-file selected" msgstr "" -#: ardour_ui.cc:3673 +#: ardour_ui.cc:3717 msgid "Recording was stopped because your system could not keep up." msgstr "η ΕγγÏαφή διεκόπη διότι το σÏστημά δεν μποÏοÏσε να ανταπεξέλθει." -#: ardour_ui.cc:3761 +#: ardour_ui.cc:3746 +msgid "" +"The disk system on your computer\n" +"was not able to keep up with %1.\n" +"\n" +"Specifically, it failed to write data to disk\n" +"quickly enough to keep up with recording.\n" +msgstr "" + +#: ardour_ui.cc:3765 +msgid "" +"The disk system on your computer\n" +"was not able to keep up with %1.\n" +"\n" +"Specifically, it failed to read data from disk\n" +"quickly enough to keep up with playback.\n" +msgstr "" + +#: ardour_ui.cc:3805 msgid "Crash Recovery" msgstr "" -#: ardour_ui.cc:3774 +#: ardour_ui.cc:3806 +msgid "" +"This session appears to have been in the\n" +"middle of recording when %1 or\n" +"the computer was shutdown.\n" +"\n" +"%1 can recover any captured audio for\n" +"you, or it can ignore it. Please decide\n" +"what you would like to do.\n" +msgstr "" + +#: ardour_ui.cc:3818 msgid "Ignore crash data" msgstr "ΔιαγÏαφή τυχόν δεδομένων" -#: ardour_ui.cc:3775 +#: ardour_ui.cc:3819 msgid "Recover from crash" msgstr "Ανάκληση από 'κÏασάÏισμα'" -#: ardour_ui.cc:3795 +#: ardour_ui.cc:3839 msgid "Sample Rate Mismatch" msgstr "" -#: ardour_ui.cc:3796 +#: ardour_ui.cc:3840 msgid "" "This session was created with a sample rate of %1 Hz, but\n" "%2 is currently running at %3 Hz. If you load this session,\n" "audio may be played at the wrong sample rate.\n" msgstr "" -#: ardour_ui.cc:3806 +#: ardour_ui.cc:3849 +msgid "Do not load session" +msgstr "" + +#: ardour_ui.cc:3850 msgid "Load session anyway" msgstr "" -#: ardour_ui.cc:3829 -msgid "Could not disconnect from JACK" -msgstr "ΑποσÏνδεση απ'το JACK είναι αδÏνατη" +#: ardour_ui.cc:3877 +msgid "Could not disconnect from Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:3842 -msgid "Could not reconnect to JACK" -msgstr "ΕπανασÏνδεση στο JACK αδÏνατη" +#: ardour_ui.cc:3893 ardour_ui.cc:3896 +msgid "Could not reconnect to the Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:4116 +#: ardour_ui.cc:4172 msgid "" "%4This is a session from an older version of %3%5\n" "\n" @@ -822,6 +1275,10 @@ msgstr "UI: Ο 'editor' δεν μποÏεί να εγεÏθεί" msgid "UI: cannot setup mixer" msgstr "UI: ο μίκτης δεν μποÏεί να εγεÏθεί" +#: ardour_ui2.cc:82 +msgid "UI: cannot setup meterbridge" +msgstr "" + #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "ΑναπαÏ/γή από τον ΑναπαÏαγωγέα" @@ -830,6 +1287,10 @@ msgstr "ΑναπαÏ/γή από τον ΑναπαÏαγωγέα" msgid "Stop playback" msgstr "Διακοπή ΑναπαÏ/γής" +#: ardour_ui2.cc:132 +msgid "Toggle record" +msgstr "" + #: ardour_ui2.cc:133 msgid "Play range/selection" msgstr "ΑναπαÏ/γή διαστήματος/επιλογής" @@ -856,6 +1317,10 @@ msgstr "" msgid "Return to last playback start when stopped" msgstr "ΕπιστÏοφή στην τελευταία θεση μετα απο παÏση" +#: ardour_ui2.cc:139 +msgid "Playhead follows Range Selections and Edits" +msgstr "" + #: ardour_ui2.cc:140 msgid "Be sensible about input monitoring" msgstr "ΠÏοσοχή στο input monitoring" @@ -912,23 +1377,51 @@ msgstr "" msgid "[INFO]: " msgstr "" -#: ardour_ui2.cc:249 ardour_ui_ed.cc:380 +#: ardour_ui2.cc:247 ardour_ui_ed.cc:344 +msgid "Auto Return" +msgstr "" + +#: ardour_ui2.cc:249 ardour_ui_ed.cc:347 msgid "Follow Edits" msgstr "" -#: ardour_ui2.cc:628 rc_option_editor.cc:1004 rc_option_editor.cc:1022 -#: rc_option_editor.cc:1025 rc_option_editor.cc:1027 rc_option_editor.cc:1029 -#: rc_option_editor.cc:1037 rc_option_editor.cc:1045 rc_option_editor.cc:1047 -#: rc_option_editor.cc:1055 rc_option_editor.cc:1062 rc_option_editor.cc:1071 -#: rc_option_editor.cc:1073 rc_option_editor.cc:1075 rc_option_editor.cc:1083 -#: rc_option_editor.cc:1085 rc_option_editor.cc:1094 +#: ardour_ui2.cc:628 rc_option_editor.cc:1002 rc_option_editor.cc:1020 +#: rc_option_editor.cc:1023 rc_option_editor.cc:1025 rc_option_editor.cc:1027 +#: rc_option_editor.cc:1035 rc_option_editor.cc:1043 rc_option_editor.cc:1045 +#: rc_option_editor.cc:1053 rc_option_editor.cc:1060 rc_option_editor.cc:1069 +#: rc_option_editor.cc:1071 rc_option_editor.cc:1073 rc_option_editor.cc:1081 +#: rc_option_editor.cc:1083 rc_option_editor.cc:1092 #: session_option_editor.cc:234 session_option_editor.cc:236 #: session_option_editor.cc:257 session_option_editor.cc:259 #: session_option_editor.cc:261 session_option_editor.cc:268 msgid "Misc" msgstr "ΔιάφοÏα" -#: ardour_ui_dialogs.cc:340 +#: ardour_ui_dependents.cc:69 +msgid "Setup Editor" +msgstr "" + +#: ardour_ui_dependents.cc:71 +msgid "Setup Mixer" +msgstr "" + +#: ardour_ui_dependents.cc:77 +msgid "Reload Session History" +msgstr "" + +#: ardour_ui_dialogs.cc:238 +msgid "Don't close" +msgstr "" + +#: ardour_ui_dialogs.cc:239 +msgid "Just close" +msgstr "" + +#: ardour_ui_dialogs.cc:240 +msgid "Save and close" +msgstr "" + +#: ardour_ui_dialogs.cc:339 msgid "This screen is not tall enough to display the mixer window" msgstr "" @@ -937,14 +1430,18 @@ msgid "Session" msgstr "ΣυνεδÏία" #: ardour_ui_ed.cc:106 editor_actions.cc:134 editor_regions.cc:115 -#: port_group.cc:457 session_option_editor.cc:82 session_option_editor.cc:89 +#: port_group.cc:458 session_option_editor.cc:82 session_option_editor.cc:89 msgid "Sync" msgstr "Sync" -#: ardour_ui_ed.cc:107 engine_dialog.cc:369 +#: ardour_ui_ed.cc:107 msgid "Options" msgstr "Επιλογές" +#: ardour_ui_ed.cc:108 +msgid "Window" +msgstr "" + #: ardour_ui_ed.cc:109 msgid "Help" msgstr "Βοήθεια!" @@ -965,18 +1462,22 @@ msgstr "" msgid "Sample Format" msgstr "" -#: ardour_ui_ed.cc:114 rc_option_editor.cc:1826 rc_option_editor.cc:1839 +#: ardour_ui_ed.cc:114 rc_option_editor.cc:1814 rc_option_editor.cc:1826 msgid "Control Surfaces" msgstr "Επιφάνειες ελέγχου" -#: ardour_ui_ed.cc:115 rc_option_editor.cc:1558 +#: ardour_ui_ed.cc:115 rc_option_editor.cc:1546 msgid "Plugins" msgstr "Plugins" -#: ardour_ui_ed.cc:116 rc_option_editor.cc:1902 +#: ardour_ui_ed.cc:116 rc_option_editor.cc:1889 msgid "Metering" msgstr "ΜέτÏηση" +#: ardour_ui_ed.cc:117 +msgid "Fall Off Rate" +msgstr "" + #: ardour_ui_ed.cc:118 msgid "Hold Time" msgstr "" @@ -989,10 +1490,47 @@ msgstr "" msgid "New..." msgstr "" +#: ardour_ui_ed.cc:125 +msgid "Open..." +msgstr "" + +#: ardour_ui_ed.cc:126 +msgid "Recent..." +msgstr "" + #: ardour_ui_ed.cc:127 panner_editor.cc:29 playlist_selector.cc:64 msgid "Close" msgstr "Κλείσιμο" +#: ardour_ui_ed.cc:130 +msgid "Add Track or Bus..." +msgstr "" + +#: ardour_ui_ed.cc:135 +msgid "Open Video" +msgstr "" + +#: ardour_ui_ed.cc:138 +msgid "Remove Video" +msgstr "" + +#: ardour_ui_ed.cc:141 +msgid "Export To Video File" +msgstr "" + +#: ardour_ui_ed.cc:145 +msgid "Snapshot..." +msgstr "" + +#: ardour_ui_ed.cc:149 +msgid "Save As..." +msgstr "" + +#: ardour_ui_ed.cc:153 editor_actions.cc:1719 editor_markers.cc:858 +#: editor_snapshots.cc:123 mixer_strip.cc:1471 route_time_axis.cc:1485 +msgid "Rename..." +msgstr "" + #: ardour_ui_ed.cc:157 msgid "Save Template..." msgstr "Αποθήκευση Ï€Ïοσχεδίου..." @@ -1005,135 +1543,178 @@ msgstr "" msgid "Edit Metadata..." msgstr "" +#: ardour_ui_ed.cc:166 +msgid "Import Metadata..." +msgstr "" + +#: ardour_ui_ed.cc:169 +msgid "Export To Audio File(s)..." +msgstr "" + +#: ardour_ui_ed.cc:172 +msgid "Stem export..." +msgstr "" + #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 -#: export_video_dialog.cc:72 +#: export_video_dialog.cc:71 msgid "Export" msgstr "Εξαγωγή" -#: ardour_ui_ed.cc:189 keyeditor.cc:253 rc_option_editor.cc:1472 -msgid "JACK" +#: ardour_ui_ed.cc:178 +msgid "Clean-up Unused Sources..." msgstr "" -#: ardour_ui_ed.cc:190 route_params_ui.cc:105 -msgid "Latency" +#: ardour_ui_ed.cc:182 +msgid "Flush Wastebasket" msgstr "" -#: ardour_ui_ed.cc:192 -msgid "Reconnect" -msgstr "ΕπανασÏνδεση" - -#: ardour_ui_ed.cc:195 global_port_matrix.cc:207 io_selector.cc:210 -#: mixer_strip.cc:719 mixer_strip.cc:845 -msgid "Disconnect" -msgstr "ΑποσÏνδεση" - -#: ardour_ui_ed.cc:222 +#: ardour_ui_ed.cc:189 msgid "Quit" msgstr "Έξοδος" -#: ardour_ui_ed.cc:226 +#: ardour_ui_ed.cc:193 msgid "Maximise Editor Space" msgstr "Μεγιστοποίηση χώÏου για τον Editor" -#: ardour_ui_ed.cc:234 midi_tracer.cc:39 +#: ardour_ui_ed.cc:194 +msgid "Show Toolbars" +msgstr "" + +#: ardour_ui_ed.cc:197 mixer_ui.cc:1865 mixer_ui.cc:1871 +msgid "Window|Mixer" +msgstr "" + +#: ardour_ui_ed.cc:198 +msgid "Toggle Editor+Mixer" +msgstr "" + +#: ardour_ui_ed.cc:199 meterbridge.cc:230 meterbridge.cc:236 +msgid "Window|Meterbridge" +msgstr "" + +#: ardour_ui_ed.cc:201 midi_tracer.cc:42 msgid "MIDI Tracer" msgstr "" -#: ardour_ui_ed.cc:236 +#: ardour_ui_ed.cc:203 msgid "Chat" msgstr "" -#: ardour_ui_ed.cc:238 +#: ardour_ui_ed.cc:205 msgid "Help|Manual" msgstr "" -#: ardour_ui_ed.cc:239 +#: ardour_ui_ed.cc:206 msgid "Reference" msgstr "" -#: ardour_ui_ed.cc:241 plugin_ui.cc:418 +#: ardour_ui_ed.cc:208 plugin_ui.cc:415 msgid "Save" msgstr "Αποθήκευση" -#: ardour_ui_ed.cc:249 rc_option_editor.cc:1114 rc_option_editor.cc:1125 -#: rc_option_editor.cc:1134 rc_option_editor.cc:1147 rc_option_editor.cc:1160 -#: rc_option_editor.cc:1169 rc_option_editor.cc:1179 rc_option_editor.cc:1181 -#: rc_option_editor.cc:1191 rc_option_editor.cc:1207 rc_option_editor.cc:1220 -#: rc_option_editor.cc:1238 rc_option_editor.cc:1240 rc_option_editor.cc:1254 -#: rc_option_editor.cc:1257 rc_option_editor.cc:1259 rc_option_editor.cc:1276 -#: rc_option_editor.cc:1287 +#: ardour_ui_ed.cc:216 rc_option_editor.cc:1112 rc_option_editor.cc:1123 +#: rc_option_editor.cc:1132 rc_option_editor.cc:1145 rc_option_editor.cc:1158 +#: rc_option_editor.cc:1167 rc_option_editor.cc:1177 rc_option_editor.cc:1179 +#: rc_option_editor.cc:1189 rc_option_editor.cc:1205 rc_option_editor.cc:1218 +#: rc_option_editor.cc:1236 rc_option_editor.cc:1238 rc_option_editor.cc:1252 +#: rc_option_editor.cc:1255 rc_option_editor.cc:1257 rc_option_editor.cc:1274 +#: rc_option_editor.cc:1285 msgid "Transport" msgstr "" -#: ardour_ui_ed.cc:255 engine_dialog.cc:85 +#: ardour_ui_ed.cc:222 msgid "Stop" msgstr "ΠαÏση" -#: ardour_ui_ed.cc:258 +#: ardour_ui_ed.cc:225 msgid "Roll" msgstr "" -#: ardour_ui_ed.cc:262 +#: ardour_ui_ed.cc:229 msgid "Start/Stop" msgstr "" -#: ardour_ui_ed.cc:265 +#: ardour_ui_ed.cc:232 msgid "Start/Continue/Stop" msgstr "" -#: ardour_ui_ed.cc:282 +#: ardour_ui_ed.cc:235 +msgid "Stop and Forget Capture" +msgstr "" + +#: ardour_ui_ed.cc:245 +msgid "Transition To Roll" +msgstr "" + +#: ardour_ui_ed.cc:249 msgid "Transition To Reverse" msgstr "" -#: ardour_ui_ed.cc:296 +#: ardour_ui_ed.cc:253 +msgid "Play Loop Range" +msgstr "" + +#: ardour_ui_ed.cc:256 +msgid "Play Selected Range" +msgstr "" + +#: ardour_ui_ed.cc:259 +msgid "Play Selection w/Preroll" +msgstr "" + +#: ardour_ui_ed.cc:263 msgid "Enable Record" msgstr "ΕνεÏγοποίηση ΕγγÏαφής" -#: ardour_ui_ed.cc:303 +#: ardour_ui_ed.cc:266 +msgid "Start Recording" +msgstr "" + +#: ardour_ui_ed.cc:270 msgid "Rewind" msgstr "" -#: ardour_ui_ed.cc:306 +#: ardour_ui_ed.cc:273 msgid "Rewind (Slow)" msgstr "" -#: ardour_ui_ed.cc:309 +#: ardour_ui_ed.cc:276 msgid "Rewind (Fast)" msgstr "" -#: ardour_ui_ed.cc:312 startup.cc:727 +#: ardour_ui_ed.cc:279 msgid "Forward" msgstr "" -#: ardour_ui_ed.cc:315 +#: ardour_ui_ed.cc:282 msgid "Forward (Slow)" msgstr "" -#: ardour_ui_ed.cc:318 +#: ardour_ui_ed.cc:285 msgid "Forward (Fast)" msgstr "" -#: ardour_ui_ed.cc:321 +#: ardour_ui_ed.cc:288 msgid "Goto Zero" msgstr "" -#: ardour_ui_ed.cc:324 +#: ardour_ui_ed.cc:291 msgid "Goto Start" msgstr "Πήγαινε στην ΑÏχή" -#: ardour_ui_ed.cc:327 +#: ardour_ui_ed.cc:294 msgid "Goto End" msgstr "" -#: ardour_ui_ed.cc:330 +#: ardour_ui_ed.cc:297 msgid "Goto Wall Clock" msgstr "" -#: ardour_ui_ed.cc:334 +#: ardour_ui_ed.cc:301 msgid "Focus On Clock" msgstr "" -#: ardour_ui_ed.cc:338 ardour_ui_ed.cc:347 audio_clock.cc:2046 editor.cc:237 +#: ardour_ui_ed.cc:305 ardour_ui_ed.cc:314 audio_clock.cc:2046 editor.cc:237 #: editor_actions.cc:544 editor_actions.cc:553 export_timespan_selector.cc:88 #: session_option_editor.cc:41 session_option_editor.cc:61 #: session_option_editor.cc:80 session_option_editor.cc:96 @@ -1142,86 +1723,146 @@ msgstr "" msgid "Timecode" msgstr "" -#: ardour_ui_ed.cc:344 ardour_ui_ed.cc:353 audio_clock.cc:2050 editor.cc:238 +#: ardour_ui_ed.cc:307 ardour_ui_ed.cc:316 editor_actions.cc:542 +msgid "Bars & Beats" +msgstr "" + +#: ardour_ui_ed.cc:309 ardour_ui_ed.cc:318 +msgid "Minutes & Seconds" +msgstr "" + +#: ardour_ui_ed.cc:311 ardour_ui_ed.cc:320 audio_clock.cc:2050 editor.cc:238 #: editor_actions.cc:543 msgid "Samples" msgstr "" -#: ardour_ui_ed.cc:357 mixer_strip.cc:1905 route_ui.cc:137 +#: ardour_ui_ed.cc:323 +msgid "Punch In" +msgstr "" + +#: ardour_ui_ed.cc:324 mixer_strip.cc:1905 route_ui.cc:137 #: time_info_box.cc:113 msgid "In" msgstr "" -#: ardour_ui_ed.cc:361 time_info_box.cc:114 +#: ardour_ui_ed.cc:327 +msgid "Punch Out" +msgstr "" + +#: ardour_ui_ed.cc:328 time_info_box.cc:114 msgid "Out" msgstr "" -#: ardour_ui_ed.cc:364 +#: ardour_ui_ed.cc:331 msgid "Punch In/Out" msgstr "" -#: ardour_ui_ed.cc:365 +#: ardour_ui_ed.cc:332 msgid "In/Out" msgstr "" -#: ardour_ui_ed.cc:368 rc_option_editor.cc:1071 +#: ardour_ui_ed.cc:335 rc_option_editor.cc:1069 msgid "Click" msgstr "ΜετÏονόμος" -#: ardour_ui_ed.cc:385 +#: ardour_ui_ed.cc:338 +msgid "Auto Input" +msgstr "" + +#: ardour_ui_ed.cc:341 +msgid "Auto Play" +msgstr "" + +#: ardour_ui_ed.cc:352 msgid "Sync Startup to Video" msgstr "" -#: ardour_ui_ed.cc:401 +#: ardour_ui_ed.cc:354 +msgid "Time Master" +msgstr "" + +#: ardour_ui_ed.cc:361 +msgid "Toggle Record Enable Track %1" +msgstr "" + +#: ardour_ui_ed.cc:368 msgid "Percentage" msgstr "Ποσοστό" -#: ardour_ui_ed.cc:402 shuttle_control.cc:169 +#: ardour_ui_ed.cc:369 shuttle_control.cc:169 msgid "Semitones" msgstr "Ημιτόνια" -#: ardour_ui_ed.cc:406 +#: ardour_ui_ed.cc:373 msgid "Send MTC" msgstr "Αποστολή MTC" -#: ardour_ui_ed.cc:408 +#: ardour_ui_ed.cc:375 msgid "Send MMC" msgstr "Αποστολή MMC" -#: ardour_ui_ed.cc:410 +#: ardour_ui_ed.cc:377 msgid "Use MMC" msgstr "" -#: ardour_ui_ed.cc:420 +#: ardour_ui_ed.cc:379 rc_option_editor.cc:1698 +msgid "Send MIDI Clock" +msgstr "" + +#: ardour_ui_ed.cc:381 +msgid "Send MIDI Feedback" +msgstr "" + +#: ardour_ui_ed.cc:387 msgid "Panic" msgstr "" -#: ardour_ui_ed.cc:561 +#: ardour_ui_ed.cc:472 +msgid "Wall Clock" +msgstr "" + +#: ardour_ui_ed.cc:473 msgid "Disk Space" msgstr "" -#: ardour_ui_ed.cc:563 +#: ardour_ui_ed.cc:474 +msgid "DSP" +msgstr "" + +#: ardour_ui_ed.cc:475 msgid "Buffers" msgstr "" -#: ardour_ui_ed.cc:564 -msgid "JACK Sampling Rate and Latency" +#: ardour_ui_ed.cc:477 +msgid "Timecode Format" msgstr "" -#: ardour_ui_options.cc:65 +#: ardour_ui_ed.cc:478 +msgid "File Format" +msgstr "" + +#: ardour_ui_options.cc:61 msgid "" "It is not possible to use JACK as the the sync source\n" "when the pull up/down setting is non-zero." msgstr "" -#: ardour_ui_options.cc:321 +#: ardour_ui_options.cc:317 msgid "Internal" msgstr "ΕσωτεÏικό" -#: ardour_ui_options.cc:484 +#: ardour_ui_options.cc:468 +msgid "Enable/Disable external positional sync" +msgstr "" + +#: ardour_ui_options.cc:470 msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "" +#: audio_clock.cc:1012 audio_clock.cc:1031 +msgid "--pending--" +msgstr "" + #: audio_clock.cc:1083 msgid "SR" msgstr "" @@ -1251,6 +1892,10 @@ msgstr "ΜετÏητής" msgid "programming error: %1" msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: %1" +#: audio_clock.cc:1952 audio_clock.cc:1980 +msgid "programming error: %1 %2" +msgstr "" + #: audio_clock.cc:2048 editor.cc:236 export_timespan_selector.cc:98 msgid "Bars:Beats" msgstr "ΜπάÏες:ΚτÏποι" @@ -1259,11 +1904,23 @@ msgstr "ΜπάÏες:ΚτÏποι" msgid "Minutes:Seconds" msgstr "Λεπτά:ΔεÏτεÏα" +#: audio_clock.cc:2054 +msgid "Set From Playhead" +msgstr "" + +#: audio_clock.cc:2055 +msgid "Locate to This Time" +msgstr "" + #: audio_region_editor.cc:63 control_point_dialog.cc:49 rhythm_ferret.cc:125 #: rhythm_ferret.cc:130 rhythm_ferret.cc:135 msgid "dB" msgstr "" +#: audio_region_editor.cc:66 +msgid "Region gain:" +msgstr "" + #: audio_region_editor.cc:76 export_format_dialog.cc:43 msgid "dBFS" msgstr "" @@ -1292,6 +1949,10 @@ msgstr "" msgid "automation event move" msgstr "μετακίνηση συμβάντος αυτοματισμοÏ" +#: automation_line.cc:462 automation_line.cc:483 +msgid "automation range move" +msgstr "" + #: automation_line.cc:823 region_gain_line.cc:73 msgid "remove control point" msgstr "απαλοιφή σημείου ελέγχου" @@ -1300,6 +1961,10 @@ msgstr "απαλοιφή σημείου ελέγχου" msgid "Ignoring illegal points on AutomationLine \"%1\"" msgstr "" +#: automation_region_view.cc:160 automation_time_axis.cc:583 +msgid "add automation event" +msgstr "" + #: automation_time_axis.cc:146 msgid "automation state" msgstr "Κατάσταση αυτοματισμοÏ" @@ -1308,27 +1973,33 @@ msgstr "Κατάσταση αυτοματισμοÏ" msgid "hide track" msgstr "απόκÏυψη καναλιοÏ" +#: automation_time_axis.cc:255 automation_time_axis.cc:307 +#: automation_time_axis.cc:496 gain_meter.cc:194 generic_pluginui.cc:454 +#: generic_pluginui.cc:775 panner_ui.cc:149 +msgid "Automation|Manual" +msgstr "" + #: automation_time_axis.cc:257 automation_time_axis.cc:318 -#: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 -#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 -#: generic_pluginui.cc:459 generic_pluginui.cc:748 midi_time_axis.cc:1488 -#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:153 +#: automation_time_axis.cc:501 editor.cc:1937 editor.cc:2014 +#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:197 +#: generic_pluginui.cc:457 generic_pluginui.cc:777 midi_time_axis.cc:1488 +#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:152 msgid "Play" msgstr "ΑναπαÏ/γή" #: automation_time_axis.cc:259 automation_time_axis.cc:329 -#: automation_time_axis.cc:506 gain_meter.cc:201 generic_pluginui.cc:462 -#: generic_pluginui.cc:750 panner_ui.cc:156 +#: automation_time_axis.cc:506 gain_meter.cc:200 generic_pluginui.cc:460 +#: generic_pluginui.cc:779 panner_ui.cc:155 msgid "Write" msgstr "ΓÏάψε" #: automation_time_axis.cc:261 automation_time_axis.cc:340 -#: automation_time_axis.cc:511 gain_meter.cc:204 generic_pluginui.cc:465 -#: generic_pluginui.cc:752 panner_ui.cc:159 +#: automation_time_axis.cc:511 gain_meter.cc:203 generic_pluginui.cc:463 +#: generic_pluginui.cc:781 panner_ui.cc:158 msgid "Touch" msgstr "Αγγιγμα" -#: automation_time_axis.cc:351 generic_pluginui.cc:468 meter_patterns.cc:108 +#: automation_time_axis.cc:351 generic_pluginui.cc:466 meter_patterns.cc:108 msgid "???" msgstr "???" @@ -1349,8 +2020,12 @@ msgstr "ΕκκαθάÏιση" msgid "State" msgstr "Κατάσταση" -#: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 -#: editor.cc:1526 export_format_dialog.cc:476 +#: automation_time_axis.cc:531 +msgid "Discrete" +msgstr "" + +#: automation_time_axis.cc:537 editor.cc:1458 editor.cc:1465 editor.cc:1521 +#: editor.cc:1527 export_format_dialog.cc:476 msgid "Linear" msgstr "ΓÏαμμικό" @@ -1363,6 +2038,14 @@ msgstr "ΛειτουÏγία" msgid "Disassociate" msgstr "" +#: bundle_manager.cc:185 +msgid "Edit Bundle" +msgstr "" + +#: bundle_manager.cc:200 +msgid "Direction:" +msgstr "" + #: bundle_manager.cc:205 bundle_manager.cc:209 mixer_strip.cc:158 #: mixer_strip.cc:2127 msgid "Input" @@ -1373,11 +2056,17 @@ msgstr "" msgid "Output" msgstr "" -#: bundle_manager.cc:264 editor.cc:1974 editor_actions.cc:90 +#: bundle_manager.cc:264 editor.cc:1978 editor_actions.cc:90 #: editor_actions.cc:100 msgid "Edit" msgstr "ΕπεξεÏγασία" +#: bundle_manager.cc:265 editor.cc:5497 editor_actions.cc:310 +#: editor_actions.cc:368 plugin_ui.cc:416 processor_box.cc:2268 +#: route_time_axis.cc:713 +msgid "Delete" +msgstr "" + #: bundle_manager.cc:271 bundle_manager.cc:439 editor_route_groups.cc:96 #: editor_routes.cc:202 midi_list_editor.cc:106 session_metadata_dialog.cc:525 msgid "Name" @@ -1391,6 +2080,14 @@ msgstr "Îέο" msgid "Bundle" msgstr "" +#: bundle_manager.cc:417 +msgid "Add Channel" +msgstr "" + +#: bundle_manager.cc:424 +msgid "Rename Channel" +msgstr "" + #: canvas-simpleline.c:111 canvas-simplerect.c:106 msgid "x1" msgstr "" @@ -1479,6 +2176,14 @@ msgstr "" msgid "color of fill" msgstr "" +#: configinfo.cc:28 +msgid "Build Configuration" +msgstr "" + +#: control_point_dialog.cc:33 +msgid "Control point" +msgstr "" + #: control_point_dialog.cc:45 msgid "Value" msgstr "Αξία" @@ -1487,6 +2192,31 @@ msgstr "Αξία" msgid "Note" msgstr "" +#: edit_note_dialog.cc:45 +msgid "Set selected notes to this channel" +msgstr "" + +#: edit_note_dialog.cc:46 +msgid "Set selected notes to this pitch" +msgstr "" + +#: edit_note_dialog.cc:47 +msgid "Set selected notes to this velocity" +msgstr "" + +#: edit_note_dialog.cc:49 +msgid "Set selected notes to this time" +msgstr "" + +#: edit_note_dialog.cc:51 +msgid "Set selected notes to this length" +msgstr "" + +#: edit_note_dialog.cc:58 midi_list_editor.cc:104 patch_change_dialog.cc:91 +#: step_entry.cc:393 +msgid "Channel" +msgstr "" + #: edit_note_dialog.cc:68 msgid "Pitch" msgstr "" @@ -1505,99 +2235,171 @@ msgstr "" msgid "Length" msgstr "" -#: editor.cc:137 editor.cc:3429 +#: edit_note_dialog.cc:165 +msgid "edit note" +msgstr "" + +#: editor.cc:137 editor.cc:3433 msgid "CD Frames" msgstr "" -#: editor.cc:141 editor.cc:3437 +#: editor.cc:138 editor.cc:3435 +msgid "Timecode Frames" +msgstr "" + +#: editor.cc:139 editor.cc:3437 +msgid "Timecode Seconds" +msgstr "" + +#: editor.cc:140 editor.cc:3439 +msgid "Timecode Minutes" +msgstr "" + +#: editor.cc:141 editor.cc:3441 msgid "Seconds" msgstr "ΔευτεÏόλεπτα" -#: editor.cc:142 editor.cc:3439 +#: editor.cc:142 editor.cc:3443 msgid "Minutes" msgstr "Λεπτά" -#: editor.cc:145 editor.cc:3409 quantize_dialog.cc:39 quantize_dialog.cc:145 +#: editor.cc:143 editor.cc:3417 quantize_dialog.cc:37 quantize_dialog.cc:141 +msgid "Beats/128" +msgstr "" + +#: editor.cc:144 editor.cc:3415 quantize_dialog.cc:38 quantize_dialog.cc:143 +msgid "Beats/64" +msgstr "" + +#: editor.cc:145 editor.cc:3413 quantize_dialog.cc:39 quantize_dialog.cc:145 msgid "Beats/32" msgstr "ΚτÏποι/32" -#: editor.cc:149 editor.cc:3401 quantize_dialog.cc:40 quantize_dialog.cc:147 +#: editor.cc:146 editor.cc:3411 +msgid "Beats/28" +msgstr "" + +#: editor.cc:147 editor.cc:3409 +msgid "Beats/24" +msgstr "" + +#: editor.cc:148 editor.cc:3407 +msgid "Beats/20" +msgstr "" + +#: editor.cc:149 editor.cc:3405 quantize_dialog.cc:40 quantize_dialog.cc:147 msgid "Beats/16" msgstr "ΚτÏποι/16" -#: editor.cc:153 editor.cc:3393 quantize_dialog.cc:41 quantize_dialog.cc:149 +#: editor.cc:150 editor.cc:3403 +msgid "Beats/14" +msgstr "" + +#: editor.cc:151 editor.cc:3401 +msgid "Beats/12" +msgstr "" + +#: editor.cc:152 editor.cc:3399 +msgid "Beats/10" +msgstr "" + +#: editor.cc:153 editor.cc:3397 quantize_dialog.cc:41 quantize_dialog.cc:149 msgid "Beats/8" msgstr "ΚτÏποι/8" -#: editor.cc:157 editor.cc:3385 quantize_dialog.cc:42 quantize_dialog.cc:151 +#: editor.cc:154 editor.cc:3395 +msgid "Beats/7" +msgstr "" + +#: editor.cc:155 editor.cc:3393 +msgid "Beats/6" +msgstr "" + +#: editor.cc:156 editor.cc:3391 +msgid "Beats/5" +msgstr "" + +#: editor.cc:157 editor.cc:3389 quantize_dialog.cc:42 quantize_dialog.cc:151 msgid "Beats/4" msgstr "ΚτÏποι/4" -#: editor.cc:158 editor.cc:3383 quantize_dialog.cc:43 quantize_dialog.cc:153 +#: editor.cc:158 editor.cc:3387 quantize_dialog.cc:43 quantize_dialog.cc:153 msgid "Beats/3" msgstr "ΚτÏποι/3" -#: editor.cc:160 editor.cc:3415 quantize_dialog.cc:45 quantize_dialog.cc:157 +#: editor.cc:159 editor.cc:3385 quantize_dialog.cc:44 quantize_dialog.cc:155 +msgid "Beats/2" +msgstr "" + +#: editor.cc:160 editor.cc:3419 quantize_dialog.cc:45 quantize_dialog.cc:157 msgid "Beats" msgstr "ΚτÏποι" -#: editor.cc:161 editor.cc:3417 +#: editor.cc:161 editor.cc:3421 msgid "Bars" msgstr "ΜπάÏες" -#: editor.cc:162 editor.cc:3419 +#: editor.cc:162 editor.cc:3423 msgid "Marks" msgstr "Στίγματα" -#: editor.cc:163 editor.cc:3421 +#: editor.cc:163 editor.cc:3425 msgid "Region starts" msgstr "ΑÏχές ΠεÏιοχών" -#: editor.cc:164 editor.cc:3423 +#: editor.cc:164 editor.cc:3427 msgid "Region ends" msgstr "Τέλη ΠεÏιοχών" -#: editor.cc:165 editor.cc:3427 +#: editor.cc:165 editor.cc:3431 msgid "Region syncs" msgstr "ΣυγχÏονισμός ΠεÏιοχών" -#: editor.cc:166 editor.cc:3425 +#: editor.cc:166 editor.cc:3429 msgid "Region bounds" msgstr "ÎŒÏια πεÏιοχών" -#: editor.cc:171 editor.cc:3455 editor_actions.cc:485 +#: editor.cc:171 editor.cc:3459 editor_actions.cc:485 msgid "No Grid" msgstr "" -#: editor.cc:172 editor.cc:3457 editor_actions.cc:486 +#: editor.cc:172 editor.cc:3461 editor_actions.cc:486 msgid "Grid" msgstr "" -#: editor.cc:173 editor.cc:3459 editor_actions.cc:487 +#: editor.cc:173 editor.cc:3463 editor_actions.cc:487 msgid "Magnetic" msgstr "Μαγνητικό" -#: editor.cc:178 editor.cc:188 editor.cc:3498 editor.cc:3523 +#: editor.cc:178 editor.cc:188 editor.cc:3502 editor.cc:3527 #: editor_actions.cc:117 editor_actions.cc:468 msgid "Playhead" msgstr "" -#: editor.cc:179 editor.cc:3496 editor_actions.cc:470 +#: editor.cc:179 editor.cc:3500 editor_actions.cc:470 msgid "Marker" msgstr "Στίγμα" -#: editor.cc:185 editor.cc:3517 mono_panner_editor.cc:42 +#: editor.cc:180 editor.cc:189 editor.cc:3529 editor_actions.cc:469 +msgid "Mouse" +msgstr "" + +#: editor.cc:185 editor.cc:3521 mono_panner_editor.cc:42 msgid "Left" msgstr "ΑÏιστεÏÏŒ" -#: editor.cc:186 editor.cc:3519 mono_panner_editor.cc:47 +#: editor.cc:186 editor.cc:3523 mono_panner_editor.cc:47 msgid "Right" msgstr "Δεξιό" -#: editor.cc:187 editor.cc:3521 +#: editor.cc:187 editor.cc:3525 msgid "Center" msgstr "ΚέντÏο" +#: editor.cc:190 editor.cc:3094 editor.cc:3531 +msgid "Edit point" +msgstr "" + #: editor.cc:196 msgid "Mushy" msgstr "" @@ -1642,6 +2444,10 @@ msgstr "Στίγματα διαστημάτων" msgid "Loop/Punch Ranges" msgstr "Διαστήματα Loop/Punch" +#: editor.cc:244 editor_actions.cc:540 +msgid "CD Markers" +msgstr "" + #: editor.cc:245 msgid "Video Timeline" msgstr "" @@ -1650,233 +2456,471 @@ msgstr "" msgid "mode" msgstr "λειτουÏγία" -#: editor.cc:542 +#: editor.cc:541 msgid "Regions" msgstr "ΠεÏιοχές" -#: editor.cc:544 +#: editor.cc:542 +msgid "Tracks & Busses" +msgstr "" + +#: editor.cc:543 msgid "Snapshots" msgstr "Στιγμιότυπα" -#: editor.cc:1215 editor.cc:1225 editor.cc:4440 editor_actions.cc:130 +#: editor.cc:544 +msgid "Track & Bus Groups" +msgstr "" + +#: editor.cc:545 +msgid "Ranges & Marks" +msgstr "" + +#: editor.cc:690 editor.cc:5349 rc_option_editor.cc:1292 +#: rc_option_editor.cc:1300 rc_option_editor.cc:1308 rc_option_editor.cc:1316 +#: rc_option_editor.cc:1333 rc_option_editor.cc:1335 rc_option_editor.cc:1343 +#: rc_option_editor.cc:1351 rc_option_editor.cc:1371 rc_option_editor.cc:1383 +#: rc_option_editor.cc:1385 rc_option_editor.cc:1393 rc_option_editor.cc:1401 +#: rc_option_editor.cc:1409 rc_option_editor.cc:1417 rc_option_editor.cc:1432 +#: rc_option_editor.cc:1436 +msgid "Editor" +msgstr "" + +#: editor.cc:1215 editor.cc:1225 editor.cc:4444 editor_actions.cc:130 #: editor_actions.cc:1813 msgid "Loop" msgstr "Loop" -#: editor.cc:1231 editor.cc:1241 editor.cc:4467 editor_actions.cc:131 +#: editor.cc:1231 editor.cc:1241 editor.cc:4471 editor_actions.cc:131 #: time_info_box.cc:67 msgid "Punch" msgstr "Punch" -#: editor.cc:1352 +#: editor.cc:1353 msgid "Linear (for highly correlated material)" msgstr "" -#: editor.cc:1362 editor.cc:1499 editor.cc:1561 +#: editor.cc:1363 editor.cc:1500 editor.cc:1562 msgid "Constant power" msgstr "" -#: editor.cc:1371 editor.cc:1492 editor.cc:1554 +#: editor.cc:1372 editor.cc:1493 editor.cc:1555 msgid "Symmetric" msgstr "" -#: editor.cc:1381 editor.cc:1474 editor.cc:1536 +#: editor.cc:1382 editor.cc:1475 editor.cc:1537 msgid "Slow" msgstr "ΑÏγό" -#: editor.cc:1390 editor.cc:1483 editor.cc:1545 sfdb_ui.cc:1627 +#: editor.cc:1391 editor.cc:1484 editor.cc:1546 sfdb_ui.cc:1627 #: sfdb_ui.cc:1736 msgid "Fast" msgstr "ΤαχÏ" -#: editor.cc:1437 +#: editor.cc:1438 msgid "programming error: fade in canvas item has no regionview data pointer!" msgstr "" "Σφάλμα Ï€ÏογÏαμματισμοÏ: το αντικείμενο 'fade in canvas' δεν διαθέτει δείκτη " "δεδομένων οπτικής πεÏιοχών!" -#: editor.cc:1448 editor.cc:1512 +#: editor.cc:1449 editor.cc:1513 msgid "Deactivate" msgstr "ΑπενεÏγοποίηση" -#: editor.cc:1450 editor.cc:1514 +#: editor.cc:1451 editor.cc:1515 msgid "Activate" msgstr "ΕνεÏγοποίηση" -#: editor.cc:1458 editor.cc:1521 +#: editor.cc:1459 editor.cc:1522 msgid "Slowest" msgstr "ΑÏγότατο" -#: editor.cc:1572 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 +#: editor.cc:1573 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 msgid "programming error: " msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: " -#: editor.cc:1673 editor.cc:1681 editor_ops.cc:3522 +#: editor.cc:1674 editor.cc:1682 editor_ops.cc:3522 msgid "Freeze" msgstr "Πάγωμα" -#: editor.cc:1677 +#: editor.cc:1678 msgid "Unfreeze" msgstr "Ξεπάγωμα" +#: editor.cc:1817 +msgid "Selected Regions" +msgstr "" + +#: editor.cc:1853 editor_markers.cc:895 +msgid "Play Range" +msgstr "" + +#: editor.cc:1854 editor_markers.cc:898 +msgid "Loop Range" +msgstr "" + +#: editor.cc:1863 editor_actions.cc:332 +msgid "Move Range Start to Previous Region Boundary" +msgstr "" + +#: editor.cc:1870 editor_actions.cc:339 +msgid "Move Range Start to Next Region Boundary" +msgstr "" + +#: editor.cc:1877 editor_actions.cc:346 +msgid "Move Range End to Previous Region Boundary" +msgstr "" + +#: editor.cc:1884 editor_actions.cc:353 +msgid "Move Range End to Next Region Boundary" +msgstr "" + #: editor.cc:1890 +msgid "Convert to Region In-Place" +msgstr "" + +#: editor.cc:1891 msgid "Convert to Region in Region List" msgstr "" -#: editor.cc:1893 editor_markers.cc:925 +#: editor.cc:1894 editor_markers.cc:925 msgid "Select All in Range" msgstr "Επιλογή όλων στο διάστημα" -#: editor.cc:1900 +#: editor.cc:1897 +msgid "Set Loop from Range" +msgstr "" + +#: editor.cc:1898 +msgid "Set Punch from Range" +msgstr "" + +#: editor.cc:1901 msgid "Add Range Markers" msgstr "ΠÏόσθεση Στιγμάτων Διαστήματος" -#: editor.cc:1905 editor_actions.cc:289 +#: editor.cc:1904 +msgid "Crop Region to Range" +msgstr "" + +#: editor.cc:1905 +msgid "Fill Range with Region" +msgstr "" + +#: editor.cc:1906 editor_actions.cc:289 msgid "Duplicate Range" msgstr "ΑντιγÏαφή διαστήματος" #: editor.cc:1909 +msgid "Consolidate Range" +msgstr "" + +#: editor.cc:1910 msgid "Consolidate Range With Processing" msgstr "" #: editor.cc:1911 +msgid "Bounce Range to Region List" +msgstr "" + +#: editor.cc:1912 msgid "Bounce Range to Region List With Processing" msgstr "" -#: editor.cc:1931 +#: editor.cc:1913 editor_markers.cc:908 +msgid "Export Range..." +msgstr "" + +#: editor.cc:1915 +msgid "Export Video Range..." +msgstr "" + +#: editor.cc:1931 editor.cc:2012 editor_actions.cc:281 +msgid "Play From Edit Point" +msgstr "" + +#: editor.cc:1932 editor.cc:2013 +msgid "Play From Start" +msgstr "" + +#: editor.cc:1933 +msgid "Play Region" +msgstr "" + +#: editor.cc:1935 msgid "Loop Region" msgstr "Loop ΠεÏιοχής" -#: editor.cc:1942 editor.cc:2019 editor_actions.cc:185 -#: export_timespan_selector.cc:53 processor_box.cc:2237 +#: editor.cc:1945 editor.cc:2022 +msgid "Select All in Track" +msgstr "" + +#: editor.cc:1946 editor.cc:2023 editor_actions.cc:185 +#: export_timespan_selector.cc:53 processor_box.cc:2276 msgid "Select All" msgstr "Επιλογή όλων" -#: editor.cc:1951 editor.cc:2025 +#: editor.cc:1947 editor.cc:2024 +msgid "Invert Selection in Track" +msgstr "" + +#: editor.cc:1948 editor.cc:2025 editor_actions.cc:187 +msgid "Invert Selection" +msgstr "" + +#: editor.cc:1950 +msgid "Set Range to Loop Range" +msgstr "" + +#: editor.cc:1951 +msgid "Set Range to Punch Range" +msgstr "" + +#: editor.cc:1953 editor.cc:2027 editor_actions.cc:188 +msgid "Select All After Edit Point" +msgstr "" + +#: editor.cc:1954 editor.cc:2028 editor_actions.cc:189 +msgid "Select All Before Edit Point" +msgstr "" + +#: editor.cc:1955 editor.cc:2029 msgid "Select All After Playhead" msgstr "Επιλογή όλων μετά την playhead" -#: editor.cc:1952 editor.cc:2026 +#: editor.cc:1956 editor.cc:2030 msgid "Select All Before Playhead" msgstr "Επιλογή όλων Ï€Ïιν την playhead" -#: editor.cc:1955 +#: editor.cc:1957 +msgid "Select All Between Playhead and Edit Point" +msgstr "" + +#: editor.cc:1958 +msgid "Select All Within Playhead and Edit Point" +msgstr "" + +#: editor.cc:1959 msgid "Select Range Between Playhead and Edit Point" msgstr "" -#: editor.cc:1957 editor.cc:2028 editor_actions.cc:127 editor_actions.cc:128 +#: editor.cc:1961 editor.cc:2032 editor_actions.cc:127 editor_actions.cc:128 msgid "Select" msgstr "Επιλογή" -#: editor.cc:1965 editor.cc:2036 editor_actions.cc:309 processor_box.cc:2222 +#: editor.cc:1969 editor.cc:2040 editor_actions.cc:309 processor_box.cc:2261 msgid "Cut" msgstr "Κοπή" -#: editor.cc:1966 editor.cc:2037 editor_actions.cc:312 processor_box.cc:2225 +#: editor.cc:1970 editor.cc:2041 editor_actions.cc:312 processor_box.cc:2264 msgid "Copy" msgstr "ΑντιγÏαφή" -#: editor.cc:1967 editor.cc:2038 editor_actions.cc:313 processor_box.cc:2233 +#: editor.cc:1971 editor.cc:2042 editor_actions.cc:313 processor_box.cc:2272 msgid "Paste" msgstr "Επικόλληση" -#: editor.cc:1971 editor_actions.cc:87 +#: editor.cc:1975 editor_actions.cc:87 msgid "Align" msgstr "ΕυθυγÏάμμιση" -#: editor.cc:1972 +#: editor.cc:1976 msgid "Align Relative" msgstr "ΕυθυγÏάμμιση σχετικών" -#: editor.cc:1979 +#: editor.cc:1983 msgid "Insert Selected Region" msgstr "Εισαγωγή επιλεγμένης πεÏιοχής" +#: editor.cc:1984 +msgid "Insert Existing Media" +msgstr "" + +#: editor.cc:1993 editor.cc:2049 +msgid "Nudge Entire Track Later" +msgstr "" + #: editor.cc:1994 editor.cc:2050 +msgid "Nudge Track After Edit Point Later" +msgstr "" + +#: editor.cc:1995 editor.cc:2051 +msgid "Nudge Entire Track Earlier" +msgstr "" + +#: editor.cc:1996 editor.cc:2052 +msgid "Nudge Track After Edit Point Earlier" +msgstr "" + +#: editor.cc:1998 editor.cc:2054 msgid "Nudge" msgstr "ÎÏξη" -#: editor.cc:3070 +#: editor.cc:3074 msgid "Smart Mode (add Range functions to Object mode)" msgstr "" -#: editor.cc:3073 +#: editor.cc:3075 +msgid "Object Mode (select/move Objects)" +msgstr "" + +#: editor.cc:3076 +msgid "Range Mode (select/move Ranges)" +msgstr "" + +#: editor.cc:3077 msgid "Draw/Edit MIDI Notes" msgstr "" #: editor.cc:3078 -msgid "Note Level Editing" +msgid "Draw Region Gain" msgstr "" #: editor.cc:3079 +msgid "Select Zoom Range" +msgstr "" + +#: editor.cc:3080 +msgid "Stretch/Shrink Regions and MIDI Notes" +msgstr "" + +#: editor.cc:3081 +msgid "Listen to Specific Regions" +msgstr "" + +#: editor.cc:3082 +msgid "Note Level Editing" +msgstr "" + +#: editor.cc:3083 msgid "" "Groups: click to (de)activate\n" "Context-click for other operations" msgstr "" -#: editor.cc:3082 editor_actions.cc:242 +#: editor.cc:3084 +msgid "Nudge Region/Selection Later" +msgstr "" + +#: editor.cc:3085 +msgid "Nudge Region/Selection Earlier" +msgstr "" + +#: editor.cc:3086 editor_actions.cc:242 msgid "Zoom In" msgstr "" -#: editor.cc:3083 editor_actions.cc:241 +#: editor.cc:3087 editor_actions.cc:241 msgid "Zoom Out" msgstr "" -#: editor.cc:3088 -msgid "Snap/Grid Units" +#: editor.cc:3088 editor_actions.cc:243 +msgid "Zoom to Session" +msgstr "" + +#: editor.cc:3089 +msgid "Zoom focus" +msgstr "" + +#: editor.cc:3090 +msgid "Expand Tracks" msgstr "" #: editor.cc:3091 +msgid "Shrink Tracks" +msgstr "" + +#: editor.cc:3092 +msgid "Snap/Grid Units" +msgstr "" + +#: editor.cc:3093 +msgid "Snap/Grid Mode" +msgstr "" + +#: editor.cc:3095 msgid "Edit Mode" msgstr "ΛειτουÏγία Επεξ/σίας" -#: editor.cc:3092 +#: editor.cc:3096 msgid "" "Nudge Clock\n" "(controls distance used to nudge regions and selections)" msgstr "" -#: editor.cc:3194 +#: editor.cc:3198 msgid "malformed URL passed to drag-n-drop code" msgstr "" -#: editor.cc:3265 editor_actions.cc:292 +#: editor.cc:3260 editor_actions.cc:291 +msgid "Command|Undo" +msgstr "" + +#: editor.cc:3262 +msgid "Command|Undo (%1)" +msgstr "" + +#: editor.cc:3269 editor_actions.cc:292 msgid "Redo" msgstr "Redo" -#: editor.cc:3267 +#: editor.cc:3271 msgid "Redo (%1)" msgstr "Redo (%1)" -#: editor.cc:3286 editor.cc:3310 editor_actions.cc:106 editor_actions.cc:1794 +#: editor.cc:3290 editor.cc:3314 editor_actions.cc:106 editor_actions.cc:1794 msgid "Duplicate" msgstr "ΑντιγÏαφή" -#: editor.cc:3287 +#: editor.cc:3291 msgid "Number of duplications:" msgstr "" -#: editor.cc:3877 editor_audio_import.cc:581 editor_ops.cc:5856 -#: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 +#: editor.cc:3868 +msgid "Playlist Deletion" +msgstr "" + +#: editor.cc:3869 +msgid "" +"Playlist %1 is currently unused.\n" +"If it is kept, its audio files will not be cleaned.\n" +"If it is deleted, audio files used by it alone will be cleaned." +msgstr "" + +#: editor.cc:3879 +msgid "Delete Playlist" +msgstr "" + +#: editor.cc:3880 +msgid "Keep Playlist" +msgstr "" + +#: editor.cc:3881 editor_audio_import.cc:581 editor_ops.cc:5856 +#: engine_dialog.cc:1711 sfdb_freesound_mootcher.cc:69 processor_box.cc:2030 +#: processor_box.cc:2055 msgid "Cancel" msgstr "ΑκÏÏωση" -#: editor.cc:4021 +#: editor.cc:4025 msgid "new playlists" msgstr "νέες playlists" -#: editor.cc:4037 +#: editor.cc:4041 msgid "copy playlists" msgstr "ΑντιγÏαφή playlists" -#: editor.cc:4052 +#: editor.cc:4056 msgid "clear playlists" msgstr "εκκαθάÏιση playlists" -#: editor.cc:4687 +#: editor.cc:4691 msgid "Please wait while %1 loads visual data." msgstr "" +#: editor.cc:5496 editor_markers.cc:940 panner_ui.cc:392 processor_box.cc:2292 +msgid "Edit..." +msgstr "" + #: editor_actions.cc:88 msgid "Autoconnect" msgstr "ΑυτόματηΣÏνδεση" @@ -1885,6 +2929,22 @@ msgstr "ΑυτόματηΣÏνδεση" msgid "Crossfades" msgstr "" +#: editor_actions.cc:91 +msgid "Move Selected Marker" +msgstr "" + +#: editor_actions.cc:92 +msgid "Select Range Operations" +msgstr "" + +#: editor_actions.cc:93 +msgid "Select Regions" +msgstr "" + +#: editor_actions.cc:94 +msgid "Edit Point" +msgstr "" + #: editor_actions.cc:95 msgid "Fade" msgstr "" @@ -1893,6 +2953,10 @@ msgstr "" msgid "Latch" msgstr "" +#: editor_actions.cc:97 editor_regions.cc:111 region_editor.cc:46 +msgid "Region" +msgstr "" + #: editor_actions.cc:98 msgid "Layering" msgstr "ΣτÏωματοποίηση" @@ -1902,11 +2966,25 @@ msgstr "ΣτÏωματοποίηση" msgid "Position" msgstr "Θέση" -#: editor_actions.cc:101 gain_meter.cc:121 gain_meter.cc:791 panner_ui.cc:177 -#: panner_ui.cc:586 +#: editor_actions.cc:101 gain_meter.cc:120 gain_meter.cc:794 panner_ui.cc:176 +#: panner_ui.cc:585 msgid "Trim" msgstr "Ισοστάθμιση" +#: editor_actions.cc:102 editor_actions.cc:122 route_group_dialog.cc:40 +msgid "Gain" +msgstr "" + +#: editor_actions.cc:103 editor_actions.cc:538 +msgid "Ranges" +msgstr "" + +#: editor_actions.cc:104 editor_actions.cc:1790 session_option_editor.cc:145 +#: session_option_editor.cc:147 session_option_editor.cc:156 +#: session_option_editor.cc:163 +msgid "Fades" +msgstr "" + #: editor_actions.cc:107 msgid "Link" msgstr "" @@ -1915,6 +2993,14 @@ msgstr "" msgid "Zoom Focus" msgstr "Εστίαση Zoom" +#: editor_actions.cc:109 +msgid "Locate to Markers" +msgstr "" + +#: editor_actions.cc:110 editor_actions.cc:539 +msgid "Markers" +msgstr "" + #: editor_actions.cc:111 msgid "Meter falloff" msgstr "" @@ -1923,11 +3009,27 @@ msgstr "" msgid "Meter hold" msgstr "ΠαÏση ΜετÏητή" -#: editor_actions.cc:115 rc_option_editor.cc:1460 route_group_dialog.cc:48 +#: editor_actions.cc:113 session_option_editor.cc:234 +msgid "MIDI Options" +msgstr "" + +#: editor_actions.cc:114 +msgid "Misc Options" +msgstr "" + +#: editor_actions.cc:115 rc_option_editor.cc:1450 route_group_dialog.cc:48 #: session_option_editor.cc:218 session_option_editor.cc:225 msgid "Monitoring" msgstr "" +#: editor_actions.cc:116 +msgid "Active Mark" +msgstr "" + +#: editor_actions.cc:119 +msgid "Primary Clock" +msgstr "" + #: editor_actions.cc:120 msgid "Pullup / Pulldown" msgstr "" @@ -1940,11 +3042,31 @@ msgstr "ΕνέÏγειες ΠεÏιοχών" msgid "Rulers" msgstr "" +#: editor_actions.cc:124 +msgid "Views" +msgstr "" + +#: editor_actions.cc:125 +msgid "Scroll" +msgstr "" + +#: editor_actions.cc:126 +msgid "Secondary Clock" +msgstr "" + +#: editor_actions.cc:129 editor_actions.cc:297 +msgid "Separate" +msgstr "" + #: editor_actions.cc:132 mixer_strip.cc:1914 route_time_axis.cc:208 #: route_time_axis.cc:2417 msgid "Solo" msgstr "Σόλο" +#: editor_actions.cc:133 +msgid "Subframes" +msgstr "" + #: editor_actions.cc:136 msgid "Timecode fps" msgstr "" @@ -1961,6 +3083,10 @@ msgstr "ΕÏγαλεία" msgid "View" msgstr "Οψη" +#: editor_actions.cc:142 +msgid "Zoom" +msgstr "" + #: editor_actions.cc:148 msgid "Break drag or deselect all" msgstr "" @@ -1969,6 +3095,26 @@ msgstr "" msgid "Show Editor Mixer" msgstr "Ανάδειξη Μίκτη του Editor" +#: editor_actions.cc:151 +msgid "Show Editor List" +msgstr "" + +#: editor_actions.cc:153 +msgid "Playhead to Next Region Boundary" +msgstr "" + +#: editor_actions.cc:154 +msgid "Playhead to Next Region Boundary (No Track Selection)" +msgstr "" + +#: editor_actions.cc:155 +msgid "Playhead to Previous Region Boundary" +msgstr "" + +#: editor_actions.cc:156 +msgid "Playhead to Previous Region Boundary (No Track Selection)" +msgstr "" + #: editor_actions.cc:158 msgid "Playhead to Next Region Start" msgstr "Playhead στην επόμενη Region Start" @@ -1993,10 +3139,54 @@ msgstr "Playhead στην Ï€ÏοηγοÏμενη Region End" msgid "Playhead to Previous Region Sync" msgstr "Playhead στην Ï€ÏοηγοÏμενη Region Sync" +#: editor_actions.cc:166 +msgid "To Next Region Boundary" +msgstr "" + #: editor_actions.cc:167 msgid "To Next Region Boundary (No Track Selection)" msgstr "" +#: editor_actions.cc:168 +msgid "To Previous Region Boundary" +msgstr "" + +#: editor_actions.cc:169 +msgid "To Previous Region Boundary (No Track Selection)" +msgstr "" + +#: editor_actions.cc:171 +msgid "To Next Region Start" +msgstr "" + +#: editor_actions.cc:172 +msgid "To Next Region End" +msgstr "" + +#: editor_actions.cc:173 +msgid "To Next Region Sync" +msgstr "" + +#: editor_actions.cc:175 +msgid "To Previous Region Start" +msgstr "" + +#: editor_actions.cc:176 +msgid "To Previous Region End" +msgstr "" + +#: editor_actions.cc:177 +msgid "To Previous Region Sync" +msgstr "" + +#: editor_actions.cc:179 +msgid "To Range Start" +msgstr "" + +#: editor_actions.cc:180 +msgid "To Range End" +msgstr "" + #: editor_actions.cc:182 msgid "Playhead to Range Start" msgstr "Playhead στην ΑÏχή Διαστήματος" @@ -2005,14 +3195,30 @@ msgstr "Playhead στην ΑÏχή Διαστήματος" msgid "Playhead to Range End" msgstr "Η playhead στο τέλος του διαστήματος" -#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2239 +#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2278 msgid "Deselect All" msgstr "Αποεπιλογή όλων" +#: editor_actions.cc:191 +msgid "Select All Overlapping Edit Range" +msgstr "" + +#: editor_actions.cc:192 +msgid "Select All Inside Edit Range" +msgstr "" + +#: editor_actions.cc:194 +msgid "Select Edit Range" +msgstr "" + #: editor_actions.cc:196 msgid "Select All in Punch Range" msgstr "Επιλογή όλων μέσα στο punch ÏŒÏιο" +#: editor_actions.cc:197 +msgid "Select All in Loop Range" +msgstr "" + #: editor_actions.cc:199 msgid "Select Next Track or Bus" msgstr "" @@ -2021,14 +3227,98 @@ msgstr "" msgid "Select Previous Track or Bus" msgstr "" +#: editor_actions.cc:202 +msgid "Toggle Record Enable" +msgstr "" + +#: editor_actions.cc:204 +msgid "Toggle Solo" +msgstr "" + +#: editor_actions.cc:206 +msgid "Toggle Mute" +msgstr "" + +#: editor_actions.cc:208 +msgid "Toggle Solo Isolate" +msgstr "" + +#: editor_actions.cc:213 +msgid "Save View %1" +msgstr "" + #: editor_actions.cc:219 msgid "Goto View %1" msgstr "" +#: editor_actions.cc:225 +msgid "Locate to Mark %1" +msgstr "" + +#: editor_actions.cc:229 +msgid "Jump to Next Mark" +msgstr "" + +#: editor_actions.cc:230 +msgid "Jump to Previous Mark" +msgstr "" + +#: editor_actions.cc:231 +msgid "Add Mark from Playhead" +msgstr "" + +#: editor_actions.cc:233 +msgid "Nudge Next Later" +msgstr "" + +#: editor_actions.cc:234 +msgid "Nudge Next Earlier" +msgstr "" + +#: editor_actions.cc:236 +msgid "Nudge Playhead Forward" +msgstr "" + +#: editor_actions.cc:237 +msgid "Nudge Playhead Backward" +msgstr "" + +#: editor_actions.cc:238 +msgid "Playhead To Next Grid" +msgstr "" + +#: editor_actions.cc:239 +msgid "Playhead To Previous Grid" +msgstr "" + +#: editor_actions.cc:244 +msgid "Zoom to Region" +msgstr "" + #: editor_actions.cc:245 msgid "Zoom to Region (Width and Height)" msgstr "" +#: editor_actions.cc:246 +msgid "Toggle Zoom State" +msgstr "" + +#: editor_actions.cc:248 +msgid "Expand Track Height" +msgstr "" + +#: editor_actions.cc:249 +msgid "Shrink Track Height" +msgstr "" + +#: editor_actions.cc:251 +msgid "Move Selected Tracks Up" +msgstr "" + +#: editor_actions.cc:253 +msgid "Move Selected Tracks Down" +msgstr "" + #: editor_actions.cc:256 msgid "Scroll Tracks Up" msgstr "ΚÏλιση Καναλιών επάνω" @@ -2057,6 +3347,10 @@ msgstr "ΚÏλιση εμπÏός" msgid "Center Playhead" msgstr "Playhead στο κέντÏο" +#: editor_actions.cc:268 +msgid "Center Edit Point" +msgstr "" + #: editor_actions.cc:270 msgid "Playhead Forward" msgstr "Playhead εμπÏός" @@ -2065,14 +3359,66 @@ msgstr "Playhead εμπÏός" msgid "Playhead Backward" msgstr "Playhead πίσω" +#: editor_actions.cc:273 +msgid "Playhead to Active Mark" +msgstr "" + +#: editor_actions.cc:274 +msgid "Active Mark to Playhead" +msgstr "" + +#: editor_actions.cc:276 +msgid "Set Loop from Edit Range" +msgstr "" + +#: editor_actions.cc:277 +msgid "Set Punch from Edit Range" +msgstr "" + +#: editor_actions.cc:280 +msgid "Play Selected Regions" +msgstr "" + +#: editor_actions.cc:282 +msgid "Play from Edit Point and Return" +msgstr "" + +#: editor_actions.cc:284 +msgid "Play Edit Range" +msgstr "" + +#: editor_actions.cc:286 +msgid "Playhead to Mouse" +msgstr "" + +#: editor_actions.cc:287 +msgid "Active Marker to Mouse" +msgstr "" + +#: editor_actions.cc:294 +msgid "Export Audio" +msgstr "" + #: editor_actions.cc:295 export_dialog.cc:406 msgid "Export Range" msgstr "Εξαγωγή διαστήματος" +#: editor_actions.cc:300 +msgid "Separate Using Punch Range" +msgstr "" + +#: editor_actions.cc:303 +msgid "Separate Using Loop Range" +msgstr "" + #: editor_actions.cc:306 editor_actions.cc:323 msgid "Crop" msgstr "" +#: editor_actions.cc:315 +msgid "Set Tempo from Edit Range = Bar" +msgstr "" + #: editor_actions.cc:317 msgid "Log" msgstr "" @@ -2093,16 +3439,40 @@ msgstr "ΕναÏκτήÏιο διάστημα" msgid "Finish Range" msgstr "ΟλοκλήÏωση Διαστήματος" +#: editor_actions.cc:327 +msgid "Finish Add Range" +msgstr "" + #: editor_actions.cc:357 msgid "Follow Playhead" msgstr "Ακολουθώντας την playhead" +#: editor_actions.cc:358 +msgid "Remove Last Capture" +msgstr "" + +#: editor_actions.cc:360 +msgid "Stationary Playhead" +msgstr "" + +#: editor_actions.cc:362 insert_time_dialog.cc:32 +msgid "Insert Time" +msgstr "" + +#: editor_actions.cc:365 +msgid "Toggle Active" +msgstr "" + #: editor_actions.cc:370 editor_actions.cc:1716 editor_markers.cc:876 #: editor_markers.cc:941 editor_snapshots.cc:121 mixer_strip.cc:1495 #: route_time_axis.cc:710 msgid "Remove" msgstr "Απαλοιφή" +#: editor_actions.cc:374 +msgid "Fit Selected Tracks" +msgstr "" + #: editor_actions.cc:376 time_axis_view.cc:1302 msgid "Largest" msgstr "Μέγιστο" @@ -2139,6 +3509,18 @@ msgstr "Εστίαση Zoom κέντÏο" msgid "Zoom Focus Playhead" msgstr "Εστίαση Zoom στην playhead" +#: editor_actions.cc:401 +msgid "Zoom Focus Mouse" +msgstr "" + +#: editor_actions.cc:402 +msgid "Zoom Focus Edit Point" +msgstr "" + +#: editor_actions.cc:404 +msgid "Next Zoom Focus" +msgstr "" + #: editor_actions.cc:410 msgid "Smart Object Mode" msgstr "" @@ -2155,6 +3537,10 @@ msgstr "ΕÏγαλείο Object" msgid "Range Tool" msgstr "ΕÏγαλείο Διαστήματος" +#: editor_actions.cc:429 +msgid "Note Drawing Tool" +msgstr "" + #: editor_actions.cc:435 msgid "Gain Tool" msgstr "ΕÏγαλείο Gain" @@ -2163,10 +3549,26 @@ msgstr "ΕÏγαλείο Gain" msgid "Zoom Tool" msgstr "ΕÏγαλείο Zoom" +#: editor_actions.cc:447 +msgid "Audition Tool" +msgstr "" + +#: editor_actions.cc:453 +msgid "Time FX Tool" +msgstr "" + #: editor_actions.cc:459 msgid "Step Mouse Mode" msgstr "" +#: editor_actions.cc:461 +msgid "Edit MIDI" +msgstr "" + +#: editor_actions.cc:472 +msgid "Change Edit Point" +msgstr "" + #: editor_actions.cc:473 msgid "Change Edit Point Including Marker" msgstr "" @@ -2184,14 +3586,30 @@ msgstr "Ολίσθηση" msgid "Lock" msgstr "Κλείδωμα" +#: editor_actions.cc:479 +msgid "Toggle Edit Mode" +msgstr "" + +#: editor_actions.cc:481 +msgid "Snap to" +msgstr "" + #: editor_actions.cc:482 msgid "Snap Mode" msgstr "ΛειτουÏγία Έλξεως" +#: editor_actions.cc:489 +msgid "Next Snap Mode" +msgstr "" + #: editor_actions.cc:490 msgid "Next Snap Choice" msgstr "" +#: editor_actions.cc:491 +msgid "Next Musical Snap Choice" +msgstr "" + #: editor_actions.cc:492 msgid "Previous Snap Choice" msgstr "" @@ -2200,14 +3618,166 @@ msgstr "" msgid "Previous Musical Snap Choice" msgstr "" -#: editor_actions.cc:549 rc_option_editor.cc:1842 +#: editor_actions.cc:498 +msgid "Snap to CD Frame" +msgstr "" + +#: editor_actions.cc:499 +msgid "Snap to Timecode Frame" +msgstr "" + +#: editor_actions.cc:500 +msgid "Snap to Timecode Seconds" +msgstr "" + +#: editor_actions.cc:501 +msgid "Snap to Timecode Minutes" +msgstr "" + +#: editor_actions.cc:502 +msgid "Snap to Seconds" +msgstr "" + +#: editor_actions.cc:503 +msgid "Snap to Minutes" +msgstr "" + +#: editor_actions.cc:505 +msgid "Snap to One Twenty Eighths" +msgstr "" + +#: editor_actions.cc:506 +msgid "Snap to Sixty Fourths" +msgstr "" + +#: editor_actions.cc:507 +msgid "Snap to Thirty Seconds" +msgstr "" + +#: editor_actions.cc:508 +msgid "Snap to Twenty Eighths" +msgstr "" + +#: editor_actions.cc:509 +msgid "Snap to Twenty Fourths" +msgstr "" + +#: editor_actions.cc:510 +msgid "Snap to Twentieths" +msgstr "" + +#: editor_actions.cc:511 +msgid "Snap to Sixteenths" +msgstr "" + +#: editor_actions.cc:512 +msgid "Snap to Fourteenths" +msgstr "" + +#: editor_actions.cc:513 +msgid "Snap to Twelfths" +msgstr "" + +#: editor_actions.cc:514 +msgid "Snap to Tenths" +msgstr "" + +#: editor_actions.cc:515 +msgid "Snap to Eighths" +msgstr "" + +#: editor_actions.cc:516 +msgid "Snap to Sevenths" +msgstr "" + +#: editor_actions.cc:517 +msgid "Snap to Sixths" +msgstr "" + +#: editor_actions.cc:518 +msgid "Snap to Fifths" +msgstr "" + +#: editor_actions.cc:519 +msgid "Snap to Quarters" +msgstr "" + +#: editor_actions.cc:520 +msgid "Snap to Thirds" +msgstr "" + +#: editor_actions.cc:521 +msgid "Snap to Halves" +msgstr "" + +#: editor_actions.cc:523 +msgid "Snap to Beat" +msgstr "" + +#: editor_actions.cc:524 +msgid "Snap to Bar" +msgstr "" + +#: editor_actions.cc:525 +msgid "Snap to Mark" +msgstr "" + +#: editor_actions.cc:526 +msgid "Snap to Region Start" +msgstr "" + +#: editor_actions.cc:527 +msgid "Snap to Region End" +msgstr "" + +#: editor_actions.cc:528 +msgid "Snap to Region Sync" +msgstr "" + +#: editor_actions.cc:529 +msgid "Snap to Region Boundary" +msgstr "" + +#: editor_actions.cc:531 +msgid "Show Marker Lines" +msgstr "" + +#: editor_actions.cc:541 +msgid "Loop/Punch" +msgstr "" + +#: editor_actions.cc:545 +msgid "Min:Sec" +msgstr "" + +#: editor_actions.cc:547 editor_actions.cc:550 +msgid "Video Monitor" +msgstr "" + +#: editor_actions.cc:549 rc_option_editor.cc:1829 msgid "Video" msgstr "" +#: editor_actions.cc:552 +msgid "Always on Top" +msgstr "" + +#: editor_actions.cc:554 +msgid "Frame number" +msgstr "" + +#: editor_actions.cc:555 +msgid "Timecode Background" +msgstr "" + #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" +#: editor_actions.cc:557 +msgid "Letterbox" +msgstr "" + #: editor_actions.cc:558 msgid "Original Size" msgstr "" @@ -2224,6 +3794,10 @@ msgstr "ΑκÏόαση" msgid "Show All" msgstr "Εμφάνιση Όλων" +#: editor_actions.cc:620 +msgid "Show Automatic Regions" +msgstr "" + #: editor_actions.cc:622 msgid "Ascending" msgstr "ΑÏξουσα" @@ -2272,16 +3846,40 @@ msgstr "Με Ημ/νία ΑÏχείου Πηγής" msgid "By Source Filesystem" msgstr "Με Filesystem Πηγής" +#: editor_actions.cc:648 +msgid "Remove Unused" +msgstr "" + #: editor_actions.cc:652 editor_audio_import.cc:279 #: session_import_dialog.cc:74 session_import_dialog.cc:94 #: session_metadata_dialog.cc:297 editor_videotimeline.cc:108 msgid "Import" msgstr "Εισαγωγή" +#: editor_actions.cc:655 +msgid "Import to Region List..." +msgstr "" + +#: editor_actions.cc:658 session_import_dialog.cc:43 +msgid "Import From Session" +msgstr "" + +#: editor_actions.cc:661 +msgid "Show Summary" +msgstr "" + #: editor_actions.cc:663 msgid "Show Group Tabs" msgstr "" +#: editor_actions.cc:665 +msgid "Show Measures" +msgstr "" + +#: editor_actions.cc:669 +msgid "Show Logo" +msgstr "" + #: editor_actions.cc:673 msgid "Toggle MIDI Input Active for Editor-Selected Tracks/Busses" msgstr "" @@ -2294,14 +3892,32 @@ msgstr "" msgid "Could not find editor.bindings in search path %1" msgstr "" +#: editor_actions.cc:1028 editor_actions.cc:1424 editor_actions.cc:1435 +#: editor_actions.cc:1488 editor_actions.cc:1499 editor_actions.cc:1546 +#: editor_actions.cc:1556 editor_regions.cc:1561 +msgid "programming error: %1: %2" +msgstr "" + #: editor_actions.cc:1722 msgid "Raise" msgstr "" +#: editor_actions.cc:1725 +msgid "Raise to Top" +msgstr "" + #: editor_actions.cc:1728 gtk-custom-ruler.c:132 msgid "Lower" msgstr "ΚατώτεÏο" +#: editor_actions.cc:1731 +msgid "Lower to Bottom" +msgstr "" + +#: editor_actions.cc:1734 +msgid "Move to Original Position" +msgstr "" + #: editor_actions.cc:1739 msgid "Lock to Video" msgstr "" @@ -2310,14 +3926,26 @@ msgstr "" msgid "Glue to Bars and Beats" msgstr "" +#: editor_actions.cc:1749 +msgid "Remove Sync" +msgstr "" + #: editor_actions.cc:1752 mixer_strip.cc:1904 route_time_axis.cc:209 msgid "Mute" msgstr "Σιγή" +#: editor_actions.cc:1755 +msgid "Normalize..." +msgstr "" + #: editor_actions.cc:1758 msgid "Reverse" msgstr "ΑντιστÏοφή" +#: editor_actions.cc:1761 +msgid "Make Mono Regions" +msgstr "" + #: editor_actions.cc:1764 msgid "Boost Gain" msgstr "" @@ -2330,6 +3958,14 @@ msgstr "" msgid "Pitch Shift..." msgstr "" +#: editor_actions.cc:1773 +msgid "Transpose..." +msgstr "" + +#: editor_actions.cc:1776 +msgid "Opaque" +msgstr "" + #: editor_actions.cc:1780 editor_regions.cc:116 msgid "Fade In" msgstr "Fade In" @@ -2338,6 +3974,10 @@ msgstr "Fade In" msgid "Fade Out" msgstr "Fade Out" +#: editor_actions.cc:1800 +msgid "Multi-Duplicate..." +msgstr "" + #: editor_actions.cc:1805 msgid "Fill Track" msgstr "Γόμωση καναλιοÏ" @@ -2346,10 +3986,58 @@ msgstr "Γόμωση καναλιοÏ" msgid "Set Loop Range" msgstr "Θέση Loop Διαστήματος" +#: editor_actions.cc:1816 +msgid "Set Punch" +msgstr "" + +#: editor_actions.cc:1820 +msgid "Add Single Range Marker" +msgstr "" + +#: editor_actions.cc:1825 +msgid "Add Range Marker Per Region" +msgstr "" + +#: editor_actions.cc:1829 +msgid "Snap Position To Grid" +msgstr "" + +#: editor_actions.cc:1832 +msgid "Close Gaps" +msgstr "" + #: editor_actions.cc:1835 msgid "Rhythm Ferret..." msgstr "" +#: editor_actions.cc:1838 +msgid "Export..." +msgstr "" + +#: editor_actions.cc:1844 +msgid "Separate Under" +msgstr "" + +#: editor_actions.cc:1848 +msgid "Set Fade In Length" +msgstr "" + +#: editor_actions.cc:1849 +msgid "Set Fade Out Length" +msgstr "" + +#: editor_actions.cc:1850 +msgid "Set Tempo from Region = Bar" +msgstr "" + +#: editor_actions.cc:1855 +msgid "Split at Percussion Onsets" +msgstr "" + +#: editor_actions.cc:1860 +msgid "List Editor..." +msgstr "" + #: editor_actions.cc:1863 msgid "Properties..." msgstr "" @@ -2382,6 +4070,14 @@ msgstr "" msgid "Reset Gain" msgstr "" +#: editor_actions.cc:1881 +msgid "Envelope Active" +msgstr "" + +#: editor_actions.cc:1885 +msgid "Quantize..." +msgstr "" + #: editor_actions.cc:1886 editor_actions.cc:1887 msgid "Insert Patch Change..." msgstr "" @@ -2394,6 +4090,26 @@ msgstr "" msgid "Strip Silence..." msgstr "" +#: editor_actions.cc:1890 +msgid "Set Range Selection" +msgstr "" + +#: editor_actions.cc:1892 +msgid "Nudge Later" +msgstr "" + +#: editor_actions.cc:1893 +msgid "Nudge Earlier" +msgstr "" + +#: editor_actions.cc:1898 +msgid "Nudge Later by Capture Offset" +msgstr "" + +#: editor_actions.cc:1905 +msgid "Nudge Earlier by Capture Offset" +msgstr "" + #: editor_actions.cc:1909 msgid "Trim to Loop" msgstr "" @@ -2402,6 +4118,22 @@ msgstr "" msgid "Trim to Punch" msgstr "" +#: editor_actions.cc:1912 +msgid "Trim to Previous" +msgstr "" + +#: editor_actions.cc:1913 +msgid "Trim to Next" +msgstr "" + +#: editor_actions.cc:1920 +msgid "Insert Region From Region List" +msgstr "" + +#: editor_actions.cc:1926 +msgid "Set Sync Position" +msgstr "" + #: editor_actions.cc:1927 msgid "Place Transient" msgstr "" @@ -2418,10 +4150,42 @@ msgstr "" msgid "Trim End at Edit Point" msgstr "" +#: editor_actions.cc:1935 +msgid "Align Start" +msgstr "" + +#: editor_actions.cc:1942 +msgid "Align Start Relative" +msgstr "" + +#: editor_actions.cc:1946 +msgid "Align End" +msgstr "" + +#: editor_actions.cc:1951 +msgid "Align End Relative" +msgstr "" + +#: editor_actions.cc:1958 +msgid "Align Sync" +msgstr "" + +#: editor_actions.cc:1965 +msgid "Align Sync Relative" +msgstr "" + #: editor_actions.cc:1969 editor_actions.cc:1972 msgid "Choose Top..." msgstr "" +#: editor_audio_import.cc:77 editor_audio_import.cc:99 +msgid "You can't import or embed an audiofile until you have a session loaded." +msgstr "" + +#: editor_audio_import.cc:83 editor_audio_import.cc:127 +msgid "Add Existing Media" +msgstr "" + #: editor_audio_import.cc:177 msgid "" "The session already contains a source file named %1. Do you want to import " @@ -2472,6 +4236,14 @@ msgstr "" msgid "Embed it anyway" msgstr "ΕμφÏτευσέ το οÏτως ή άλλως" +#: editor_drag.cc:1000 +msgid "fixed time region drag" +msgstr "" + +#: editor_drag.cc:1700 +msgid "Video Start:" +msgstr "" + #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -2496,46 +4268,94 @@ msgstr "αντιγÏαφή στίγματος tempo" msgid "move tempo mark" msgstr "μετακίνηση στίγματος tempo" -#: editor_drag.cc:2545 +#: editor_drag.cc:2550 msgid "change fade in length" msgstr "αλλαγή μήκους fade in" -#: editor_drag.cc:2663 +#: editor_drag.cc:2668 msgid "change fade out length" msgstr "αλλαγή μήκους fade out" -#: editor_drag.cc:3018 +#: editor_drag.cc:3023 msgid "move marker" msgstr "μετακίνηση στίγματος" -#: editor_drag.cc:3581 +#: editor_drag.cc:3586 msgid "An error occurred while executing time stretch operation" msgstr "" -#: editor_drag.cc:4081 editor_markers.cc:680 +#: editor_drag.cc:4016 +msgid "programming_error: %1" +msgstr "" + +#: editor_drag.cc:4086 editor_markers.cc:680 msgid "new range marker" msgstr "νέο στίγμα διαστήματος" +#: editor_drag.cc:4767 +msgid "rubberband selection" +msgstr "" + +#: editor_route_groups.cc:66 +msgid "No Selection = All Tracks?" +msgstr "" + +#: editor_route_groups.cc:95 +msgid "Col" +msgstr "" + +#: editor_route_groups.cc:95 +msgid "Group Tab Color" +msgstr "" + +#: editor_route_groups.cc:96 +msgid "Name of Group" +msgstr "" + #: editor_route_groups.cc:97 editor_routes.cc:203 msgid "V" msgstr "" +#: editor_route_groups.cc:97 +msgid "Group is visible?" +msgstr "" + +#: editor_route_groups.cc:98 +msgid "On" +msgstr "" + #: editor_route_groups.cc:98 msgid "Group is enabled?" msgstr "" +#: editor_route_groups.cc:99 +msgid "group|G" +msgstr "" + #: editor_route_groups.cc:99 msgid "Sharing Gain?" msgstr "" +#: editor_route_groups.cc:100 +msgid "relative|Rel" +msgstr "" + #: editor_route_groups.cc:100 msgid "Relative Gain Changes?" msgstr "" +#: editor_route_groups.cc:101 +msgid "mute|M" +msgstr "" + #: editor_route_groups.cc:101 msgid "Sharing Mute?" msgstr "" +#: editor_route_groups.cc:102 +msgid "solo|S" +msgstr "" + #: editor_route_groups.cc:102 msgid "Sharing Solo?" msgstr "" @@ -2549,10 +4369,26 @@ msgstr "" msgid "Sharing Record-enable Status?" msgstr "" +#: editor_route_groups.cc:104 +msgid "monitoring|Mon" +msgstr "" + #: editor_route_groups.cc:104 msgid "Sharing Monitoring Choice?" msgstr "" +#: editor_route_groups.cc:105 +msgid "selection|Sel" +msgstr "" + +#: editor_route_groups.cc:105 +msgid "Sharing Selected/Editing Status?" +msgstr "" + +#: editor_route_groups.cc:106 +msgid "active|A" +msgstr "" + #: editor_route_groups.cc:106 msgid "Sharing Active Status?" msgstr "" @@ -2570,8 +4406,8 @@ msgstr "ΧωÏίς όνομα" #: editor_markers.cc:1022 editor_markers.cc:1041 editor_markers.cc:1071 #: editor_markers.cc:1102 editor_markers.cc:1132 editor_markers.cc:1160 #: editor_markers.cc:1191 editor_markers.cc:1216 editor_markers.cc:1267 -#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1514 -#: editor_mouse.cc:2478 +#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1526 +#: editor_mouse.cc:2528 msgid "programming error: marker canvas item has no marker object pointer!" msgstr "" "Σφάλμα Ï€ÏογÏαμματισμοÏ: ο καμβάς στιγμάτων δεν έχει δείκτη αντικειμένου " @@ -2581,19 +4417,79 @@ msgstr "" msgid "File Exists!" msgstr "" +#: editor_export_audio.cc:151 +msgid "Overwrite Existing File" +msgstr "" + +#: editor_group_tabs.cc:162 +msgid "Fit to Window" +msgstr "" + +#: editor_markers.cc:129 +msgid "start" +msgstr "" + +#: editor_markers.cc:130 +msgid "end" +msgstr "" + #: editor_markers.cc:646 editor_ops.cc:1744 editor_ops.cc:1764 #: editor_ops.cc:1788 editor_ops.cc:1815 location_ui.cc:1017 msgid "add marker" msgstr "Ï€Ïόσθεση στίγματος" +#: editor_markers.cc:677 +msgid "range" +msgstr "" + #: editor_markers.cc:713 location_ui.cc:852 msgid "remove marker" msgstr "απαλοιφή στίγματος" +#: editor_markers.cc:849 +msgid "Locate to Here" +msgstr "" + +#: editor_markers.cc:850 +msgid "Play from Here" +msgstr "" + +#: editor_markers.cc:851 +msgid "Move Mark to Playhead" +msgstr "" + +#: editor_markers.cc:855 +msgid "Create Range to Next Marker" +msgstr "" + +#: editor_markers.cc:896 +msgid "Locate to Marker" +msgstr "" + +#: editor_markers.cc:897 +msgid "Play from Marker" +msgstr "" + +#: editor_markers.cc:900 +msgid "Set Marker from Playhead" +msgstr "" + +#: editor_markers.cc:902 +msgid "Set Range from Selection" +msgstr "" + +#: editor_markers.cc:905 +msgid "Zoom to Range" +msgstr "" + #: editor_markers.cc:912 msgid "Hide Range" msgstr "ΑπόκÏυψη Διαστήματος" +#: editor_markers.cc:913 +msgid "Rename Range..." +msgstr "" + #: editor_markers.cc:917 msgid "Remove Range" msgstr "Απαλοιφή Διαστήματος" @@ -2602,32 +4498,40 @@ msgstr "Απαλοιφή Διαστήματος" msgid "Separate Regions in Range" msgstr "ΔιαχωÏισμός πεÏιοχών στο διάστημα" +#: editor_markers.cc:927 +msgid "Select Range" +msgstr "" + #: editor_markers.cc:956 msgid "Set Punch Range" msgstr "Θέση Punch Διαστήματος" -#: editor_markers.cc:1354 +#: editor_markers.cc:1362 editor_ops.cc:1699 +msgid "New Name:" +msgstr "" + +#: editor_markers.cc:1365 msgid "Rename Mark" msgstr "Μετονομασία Στίγματος" -#: editor_markers.cc:1356 +#: editor_markers.cc:1367 msgid "Rename Range" msgstr "Μετονομασία Διαστήματος" -#: editor_markers.cc:1363 editor_mouse.cc:2510 processor_box.cc:1781 -#: processor_box.cc:2235 route_time_axis.cc:982 route_ui.cc:1540 +#: editor_markers.cc:1374 editor_mouse.cc:2560 processor_box.cc:1808 +#: processor_box.cc:2274 route_time_axis.cc:982 route_ui.cc:1540 msgid "Rename" msgstr "Μετονομασία" -#: editor_markers.cc:1376 +#: editor_markers.cc:1387 msgid "rename marker" msgstr "μετονομασία στίγματος" -#: editor_markers.cc:1399 +#: editor_markers.cc:1411 msgid "set loop range" msgstr "Θέση loop διαστήματος" -#: editor_markers.cc:1405 +#: editor_markers.cc:1417 msgid "set punch range" msgstr "θέση punch διαστήματος" @@ -2640,7 +4544,7 @@ msgid "Editor::event_frame() used on unhandled event type %1" msgstr "" "ΕπαξεÏγαστής::event_frame() χÏησιμοποιήθηκε στο αδιαχείÏιστο συμβάν Ï„Ïπου %1" -#: editor_mouse.cc:2235 editor_mouse.cc:2260 editor_mouse.cc:2273 +#: editor_mouse.cc:2285 editor_mouse.cc:2310 editor_mouse.cc:2323 msgid "" "programming error: control point canvas item has no control point object " "pointer!" @@ -2648,11 +4552,15 @@ msgstr "" "Σφάλμα ΠÏογÏαμματισμοÏ: ο καμβάς του σημείου ελέγχου δεν έχει δείκτη " "αναφοÏάς!" -#: editor_mouse.cc:2441 +#: editor_mouse.cc:2466 +msgid "start point trim" +msgstr "" + +#: editor_mouse.cc:2491 msgid "End point trim" msgstr "Τέλος σημείου ισοσταθμίσεως" -#: editor_mouse.cc:2508 +#: editor_mouse.cc:2558 msgid "Name for region:" msgstr "Όνομα για πεÏιοχή:" @@ -2660,14 +4568,42 @@ msgstr "Όνομα για πεÏιοχή:" msgid "split" msgstr "διαχωÏισμός" +#: editor_ops.cc:256 +msgid "alter selection" +msgstr "" + +#: editor_ops.cc:298 +msgid "nudge regions forward" +msgstr "" + +#: editor_ops.cc:321 editor_ops.cc:406 +msgid "nudge location forward" +msgstr "" + +#: editor_ops.cc:379 +msgid "nudge regions backward" +msgstr "" + #: editor_ops.cc:468 msgid "nudge forward" msgstr "νÏξη εμπÏός" +#: editor_ops.cc:492 +msgid "nudge backward" +msgstr "" + #: editor_ops.cc:557 msgid "build_region_boundary_cache called with snap_type = %1" msgstr "build_region_boundary_cache εκλήθη με snap_type = %1" +#: editor_ops.cc:1701 +msgid "New Location Marker" +msgstr "" + +#: editor_ops.cc:1788 +msgid "add markers" +msgstr "" + #: editor_ops.cc:1894 msgid "clear markers" msgstr "εκκαθάÏιση στιγμάτων" @@ -2688,14 +4624,70 @@ msgstr "Ï€Ïοσθήκη ελκομένης πεÏιοχής" msgid "insert region" msgstr "Ï€Ïοσθήκη πεÏιοχής" +#: editor_ops.cc:2261 +msgid "raise regions" +msgstr "" + +#: editor_ops.cc:2263 +msgid "raise region" +msgstr "" + +#: editor_ops.cc:2269 +msgid "raise regions to top" +msgstr "" + +#: editor_ops.cc:2271 +msgid "raise region to top" +msgstr "" + +#: editor_ops.cc:2277 +msgid "lower regions" +msgstr "" + +#: editor_ops.cc:2279 editor_ops.cc:2287 +msgid "lower region" +msgstr "" + +#: editor_ops.cc:2285 +msgid "lower regions to bottom" +msgstr "" + +#: editor_ops.cc:2370 +msgid "Rename Region" +msgstr "" + +#: editor_ops.cc:2372 processor_box.cc:1806 route_ui.cc:1538 +msgid "New name:" +msgstr "" + #: editor_ops.cc:2682 msgid "separate" msgstr "διαχωÏισμός" +#: editor_ops.cc:2795 +msgid "separate region under" +msgstr "" + #: editor_ops.cc:2916 msgid "trim to selection" msgstr "ισοστάθμιση Ï€Ïος τα επιλεγμένα" +#: editor_ops.cc:3052 +msgid "set sync point" +msgstr "" + +#: editor_ops.cc:3076 +msgid "remove region sync" +msgstr "" + +#: editor_ops.cc:3098 +msgid "move regions to original position" +msgstr "" + +#: editor_ops.cc:3100 +msgid "move region to original position" +msgstr "" + #: editor_ops.cc:3121 msgid "align selection" msgstr "ευθυγÏάμμιση επιλογής" @@ -2708,6 +4700,26 @@ msgstr "ευθυγÏάμμιση επιλογής (σχετική)" msgid "align region" msgstr "ευθυγÏάμμιση πεÏιοχής" +#: editor_ops.cc:3280 +msgid "trim front" +msgstr "" + +#: editor_ops.cc:3280 +msgid "trim back" +msgstr "" + +#: editor_ops.cc:3310 +msgid "trim to loop" +msgstr "" + +#: editor_ops.cc:3320 +msgid "trim to punch" +msgstr "" + +#: editor_ops.cc:3382 +msgid "trim to region" +msgstr "" + #: editor_ops.cc:3492 msgid "" "This track/bus cannot be frozen because the signal adds or loses channels " @@ -2716,6 +4728,10 @@ msgid "" "input or vice versa." msgstr "" +#: editor_ops.cc:3495 +msgid "Cannot freeze" +msgstr "" + #: editor_ops.cc:3501 msgid "" "%1\n" @@ -2725,6 +4741,18 @@ msgid "" "Freezing will only process the signal as far as the first send/insert/return." msgstr "" +#: editor_ops.cc:3505 +msgid "Freeze anyway" +msgstr "" + +#: editor_ops.cc:3506 +msgid "Don't freeze" +msgstr "" + +#: editor_ops.cc:3507 +msgid "Freeze Limits" +msgstr "" + #: editor_ops.cc:3522 msgid "Cancel Freeze" msgstr "ΑκÏÏωση παγώματος" @@ -2746,6 +4774,10 @@ msgstr "" msgid "bounce range" msgstr "αναπήδηση διαστήματο" +#: editor_ops.cc:3678 +msgid "delete" +msgstr "" + #: editor_ops.cc:3681 msgid "cut" msgstr "κοπή" @@ -2795,6 +4827,10 @@ msgstr "Όχι, να μην γίνει τίποτα." msgid "Yes, destroy it." msgstr "Îαι, να καταστÏαφεί." +#: editor_ops.cc:4512 +msgid "Destroy last capture" +msgstr "" + #: editor_ops.cc:4573 msgid "normalize" msgstr "εξομάλυνση" @@ -2807,6 +4843,86 @@ msgstr "αντιστÏοφή πεÏιοχών" msgid "strip silence" msgstr "" +#: editor_ops.cc:4763 +msgid "Fork Region(s)" +msgstr "" + +#: editor_ops.cc:4963 +msgid "reset region gain" +msgstr "" + +#: editor_ops.cc:5016 +msgid "region gain envelope active" +msgstr "" + +#: editor_ops.cc:5043 +msgid "toggle region lock" +msgstr "" + +#: editor_ops.cc:5067 +msgid "Toggle Video Lock" +msgstr "" + +#: editor_ops.cc:5091 +msgid "region lock style" +msgstr "" + +#: editor_ops.cc:5116 +msgid "change region opacity" +msgstr "" + +#: editor_ops.cc:5231 +msgid "set fade in length" +msgstr "" + +#: editor_ops.cc:5238 +msgid "set fade out length" +msgstr "" + +#: editor_ops.cc:5283 +msgid "set fade in shape" +msgstr "" + +#: editor_ops.cc:5314 +msgid "set fade out shape" +msgstr "" + +#: editor_ops.cc:5344 +msgid "set fade in active" +msgstr "" + +#: editor_ops.cc:5373 +msgid "set fade out active" +msgstr "" + +#: editor_ops.cc:5638 +msgid "set loop range from selection" +msgstr "" + +#: editor_ops.cc:5660 +msgid "set loop range from edit range" +msgstr "" + +#: editor_ops.cc:5689 +msgid "set loop range from region" +msgstr "" + +#: editor_ops.cc:5707 +msgid "set punch range from selection" +msgstr "" + +#: editor_ops.cc:5724 +msgid "set punch range from edit range" +msgstr "" + +#: editor_ops.cc:5748 +msgid "set punch range from region" +msgstr "" + +#: editor_ops.cc:5857 +msgid "Add new marker" +msgstr "" + #: editor_ops.cc:5858 msgid "Set global tempo" msgstr "" @@ -2819,6 +4935,14 @@ msgstr "" msgid "Do you want to set the global tempo or add a new tempo marker?" msgstr "" +#: editor_ops.cc:5888 +msgid "set tempo from region" +msgstr "" + +#: editor_ops.cc:5918 +msgid "split regions" +msgstr "" + #: editor_ops.cc:5960 msgid "" "You are about to split\n" @@ -2849,6 +4973,23 @@ msgstr "" msgid "place transient" msgstr "" +#: editor_ops.cc:6160 +msgid "snap regions to grid" +msgstr "" + +#: editor_ops.cc:6199 +msgid "Close Region Gaps" +msgstr "" + +#: editor_ops.cc:6204 +msgid "Crossfade length" +msgstr "" + +#: editor_ops.cc:6213 editor_ops.cc:6224 rhythm_ferret.cc:120 +#: session_option_editor.cc:153 +msgid "ms" +msgstr "" + #: editor_ops.cc:6215 msgid "Pull-back length" msgstr "" @@ -2857,6 +4998,10 @@ msgstr "" msgid "Ok" msgstr "" +#: editor_ops.cc:6243 +msgid "close region gaps" +msgstr "" + #: editor_ops.cc:6461 route_ui.cc:1456 msgid "That would be bad news ...." msgstr "" @@ -2871,10 +5016,61 @@ msgid "" "\"allow-special-bus-removal\" option to be \"yes\"" msgstr "" +#: editor_ops.cc:6483 +msgid "tracks" +msgstr "" + +#: editor_ops.cc:6485 route_ui.cc:1821 +msgid "track" +msgstr "" + +#: editor_ops.cc:6489 +msgid "busses" +msgstr "" + +#: editor_ops.cc:6491 route_ui.cc:1821 +msgid "bus" +msgstr "" + +#: editor_ops.cc:6496 +msgid "" +"Do you really want to remove %1 %2 and %3 %4?\n" +"(You may also lose the playlists associated with the %2)\n" +"\n" +"This action cannot be undone, and the session file will be overwritten!" +msgstr "" + +#: editor_ops.cc:6501 +msgid "" +"Do you really want to remove %1 %2?\n" +"(You may also lose the playlists associated with the %2)\n" +"\n" +"This action cannot be undone, and the session file will be overwritten!" +msgstr "" + +#: editor_ops.cc:6507 +msgid "" +"Do you really want to remove %1 %2?\n" +"\n" +"This action cannot be undon, and the session file will be overwritten" +msgstr "" + +#: editor_ops.cc:6514 +msgid "Yes, remove them." +msgstr "" + #: editor_ops.cc:6516 editor_snapshots.cc:159 route_ui.cc:1483 msgid "Yes, remove it." msgstr "Îαι, απάλοιψε το." +#: editor_ops.cc:6521 editor_ops.cc:6523 +msgid "Remove %1" +msgstr "" + +#: editor_ops.cc:6582 +msgid "insert time" +msgstr "" + #: editor_ops.cc:6739 msgid "There are too many tracks to fit in the current window" msgstr "" @@ -2884,14 +5080,42 @@ msgstr "" msgid "Saved view %u" msgstr "" +#: editor_ops.cc:6864 +msgid "mute regions" +msgstr "" + #: editor_ops.cc:6866 msgid "mute region" msgstr "σιγή πεÏιοχής" +#: editor_ops.cc:6903 +msgid "combine regions" +msgstr "" + +#: editor_ops.cc:6941 +msgid "uncombine regions" +msgstr "" + #: editor_regions.cc:111 msgid "Region name, with number of channels in []'s" msgstr "" +#: editor_regions.cc:112 +msgid "Position of start of region" +msgstr "" + +#: editor_regions.cc:113 editor_regions.cc:849 time_info_box.cc:98 +msgid "End" +msgstr "" + +#: editor_regions.cc:113 +msgid "Position of end of region" +msgstr "" + +#: editor_regions.cc:114 +msgid "Length of the region" +msgstr "" + #: editor_regions.cc:115 msgid "Position of region sync point, relative to start of the region" msgstr "" @@ -2909,16 +5133,28 @@ msgstr "" msgid "L" msgstr "L" +#: editor_regions.cc:118 +msgid "Region position locked?" +msgstr "" + +#: editor_regions.cc:119 +msgid "G" +msgstr "" + #: editor_regions.cc:119 msgid "Region position glued to Bars|Beats time?" msgstr "" -#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:759 -#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:554 +#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:762 +#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:553 #: stereo_panner.cc:237 msgid "M" msgstr "" +#: editor_regions.cc:120 +msgid "Region muted?" +msgstr "" + #: editor_regions.cc:121 msgid "O" msgstr "" @@ -2935,10 +5171,28 @@ msgstr "ΚÏυμμένο" msgid "(MISSING) " msgstr "" +#: editor_regions.cc:457 +msgid "" +"Do you really want to remove unused regions?\n" +"(This is destructive and cannot be undone)" +msgstr "" + +#: editor_regions.cc:461 +msgid "Yes, remove." +msgstr "" + +#: editor_regions.cc:463 +msgid "Remove unused regions" +msgstr "" + #: editor_regions.cc:816 editor_regions.cc:830 editor_regions.cc:844 msgid "Mult." msgstr "" +#: editor_regions.cc:847 midi_list_editor.cc:103 time_info_box.cc:91 +msgid "Start" +msgstr "" + #: editor_regions.cc:865 editor_regions.cc:881 msgid "Multiple" msgstr "" @@ -2951,28 +5205,64 @@ msgstr "" msgid "SS" msgstr "" +#: editor_routes.cc:202 +msgid "Track/Bus Name" +msgstr "" + +#: editor_routes.cc:203 +msgid "Track/Bus visible ?" +msgstr "" + #: editor_routes.cc:204 mixer_strip.cc:1945 meter_strip.cc:334 #: route_time_axis.cc:2407 msgid "A" msgstr "" +#: editor_routes.cc:204 +msgid "Track/Bus active ?" +msgstr "" + #: editor_routes.cc:205 mixer_strip.cc:1932 msgid "I" msgstr "" +#: editor_routes.cc:205 +msgid "MIDI input enabled" +msgstr "" + #: editor_routes.cc:206 mixer_strip.cc:1930 mono_panner.cc:198 #: stereo_panner.cc:215 stereo_panner.cc:242 msgid "R" msgstr "" +#: editor_routes.cc:206 +msgid "Record enabled" +msgstr "" + +#: editor_routes.cc:207 +msgid "Muted" +msgstr "" + #: editor_routes.cc:208 mixer_strip.cc:1941 meter_strip.cc:330 msgid "S" msgstr "" +#: editor_routes.cc:208 +msgid "Soloed" +msgstr "" + #: editor_routes.cc:209 msgid "SI" msgstr "" +#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1867 +msgid "Solo Isolated" +msgstr "" + +#: editor_routes.cc:210 +msgid "Solo Safe (Locked)" +msgstr "" + #: editor_routes.cc:471 mixer_ui.cc:1162 msgid "Hide All" msgstr "ΑπόκÏυψη όλων" @@ -2993,6 +5283,14 @@ msgstr "Ανάδειξη όλων των Audio διαÏλων" msgid "Hide All Audio Busses" msgstr "ΑπόκÏυψη όλων των Audio διαÏλων" +#: editor_routes.cc:476 +msgid "Show All Midi Tracks" +msgstr "" + +#: editor_routes.cc:477 +msgid "Hide All Midi Tracks" +msgstr "" + #: editor_routes.cc:478 msgid "Show Tracks With Regions Under Playhead" msgstr "" @@ -3005,10 +5303,26 @@ msgstr "Îέο στίγμα θέσεως" msgid "Clear all locations" msgstr "ΕκκαθάÏιση όλων των θέσεων" +#: editor_rulers.cc:342 +msgid "Unhide locations" +msgstr "" + +#: editor_rulers.cc:346 +msgid "New range" +msgstr "" + #: editor_rulers.cc:347 msgid "Clear all ranges" msgstr "ΕκκαθάÏιση όλων των διαστημάτων" +#: editor_rulers.cc:348 +msgid "Unhide ranges" +msgstr "" + +#: editor_rulers.cc:358 +msgid "New CD track marker" +msgstr "" + #: editor_rulers.cc:363 tempo_dialog.cc:40 msgid "New Tempo" msgstr "Îέος ΧÏόνος" @@ -3017,10 +5331,22 @@ msgstr "Îέος ΧÏόνος" msgid "New Meter" msgstr "Îέο μέτÏο" +#: editor_rulers.cc:373 +msgid "Timeline height" +msgstr "" + +#: editor_rulers.cc:383 +msgid "Align Video Track" +msgstr "" + #: editor_selection.cc:889 editor_selection.cc:932 msgid "set selected regions" msgstr "καθοÏισμός επιλεγμένων πεÏιοχών" +#: editor_selection.cc:1414 +msgid "select all" +msgstr "" + #: editor_selection.cc:1506 msgid "select all within" msgstr "Επιλογή όλων εν μέσω" @@ -3049,6 +5375,14 @@ msgstr "επιλογή όλων μετά κέÏσ.επεξ." msgid "select all before cursor" msgstr "επιλογή όλων Ï€Ïιν κέÏσ.επεξ." +#: editor_selection.cc:1753 +msgid "select all after edit" +msgstr "" + +#: editor_selection.cc:1755 +msgid "select all before edit" +msgstr "" + #: editor_selection.cc:1888 msgid "No edit range defined" msgstr "" @@ -3059,6 +5393,24 @@ msgid "" "but there is no selected marker." msgstr "" +#: editor_snapshots.cc:136 +msgid "Rename Snapshot" +msgstr "" + +#: editor_snapshots.cc:138 +msgid "New name of snapshot" +msgstr "" + +#: editor_snapshots.cc:156 +msgid "" +"Do you really want to remove snapshot \"%1\" ?\n" +"(which cannot be undone)" +msgstr "" + +#: editor_snapshots.cc:161 +msgid "Remove snapshot" +msgstr "" + #: editor_tempodisplay.cc:208 editor_tempodisplay.cc:250 msgid "add" msgstr "Ï€Ïόσθεση" @@ -3108,208 +5460,243 @@ msgstr "" "σφάλμα Ï€ÏογÏαμματισμοÏ: ο καμβάς του μετÏητή στιγμάτων δεν έχει δείκτη " "αντικειμένου στιγμάτων!" +#: editor_timefx.cc:68 +msgid "stretch/shrink" +msgstr "" + #: editor_timefx.cc:129 msgid "pitch shift" msgstr "" -#: engine_dialog.cc:75 -msgid "Realtime" -msgstr "" - -#: engine_dialog.cc:76 -msgid "Do not lock memory" -msgstr "" - -#: engine_dialog.cc:78 -msgid "No zombies" +#: editor_timefx.cc:301 +msgid "timefx cannot be started - thread creation error" msgstr "" #: engine_dialog.cc:79 -msgid "Provide monitor ports" +msgid "Device Control Panel" msgstr "" -#: engine_dialog.cc:80 -msgid "Force 16 bit" +#: engine_dialog.cc:80 engine_dialog.cc:1725 +msgid "Measure" msgstr "" -#: engine_dialog.cc:103 -msgid "8000Hz" +#: engine_dialog.cc:81 +msgid "Use results" msgstr "" -#: engine_dialog.cc:104 -msgid "22050Hz" +#: engine_dialog.cc:82 +msgid "Back to settings ... (ignore results)" msgstr "" -#: engine_dialog.cc:105 -msgid "44100Hz" +#: engine_dialog.cc:83 +msgid "Calibrate..." msgstr "" -#: engine_dialog.cc:106 -msgid "48000Hz" +#: engine_dialog.cc:87 +msgid "Refresh list" msgstr "" #: engine_dialog.cc:107 -msgid "88200Hz" +msgid "" +"No audio/MIDI backends detected. %1 cannot run\n" +"\n" +"(This is a build/packaging/system error. It should never happen.)" msgstr "" -#: engine_dialog.cc:108 -msgid "96000Hz" +#: engine_dialog.cc:136 +msgid "Latency Measurement Tool" msgstr "" -#: engine_dialog.cc:109 -msgid "192000Hz" +#: engine_dialog.cc:151 +msgid "" +"Turn down the volume on your audio equipment to a very " +"low level." msgstr "" -#: engine_dialog.cc:127 engine_dialog.cc:132 engine_dialog.cc:169 -#: engine_dialog.cc:562 midi_channel_selector.cc:163 -#: midi_channel_selector.cc:402 midi_channel_selector.cc:438 -#: rc_option_editor.cc:1250 sfdb_ui.cc:538 -msgid "None" -msgstr "Ουδέν" - -#: engine_dialog.cc:128 engine_dialog.cc:563 -msgid "Triangular" -msgstr "ΤÏίγωνη" - -#: engine_dialog.cc:129 engine_dialog.cc:565 -msgid "Rectangular" -msgstr "ΤετÏάγωνη" - -#: engine_dialog.cc:158 engine_dialog.cc:483 engine_dialog.cc:974 -msgid "Playback/recording on 1 device" +#: engine_dialog.cc:159 +msgid "Select two channels below and connect them using a cable." msgstr "" -#: engine_dialog.cc:159 engine_dialog.cc:487 engine_dialog.cc:540 -#: engine_dialog.cc:977 -msgid "Playback/recording on 2 devices" +#: engine_dialog.cc:164 +msgid "Output channel" msgstr "" -#: engine_dialog.cc:160 engine_dialog.cc:503 engine_dialog.cc:980 -msgid "Playback only" +#: engine_dialog.cc:172 +msgid "Input channel" msgstr "" -#: engine_dialog.cc:171 engine_dialog.cc:448 -msgid "coremidi" +#: engine_dialog.cc:207 +msgid "Once the channels are connected, click the \"Measure\" button." msgstr "" -#: engine_dialog.cc:173 engine_dialog.cc:581 -msgid "seq" +#: engine_dialog.cc:214 +msgid "When satisfied with the results, click the \"Use results\" button." msgstr "" -#: engine_dialog.cc:181 +#: engine_dialog.cc:229 engine_dialog.cc:1727 +msgid "No measurement results yet" +msgstr "" + +#: engine_dialog.cc:238 route_params_ui.cc:105 +msgid "Latency" +msgstr "" + +#: engine_dialog.cc:333 +msgid "Audio System:" +msgstr "" + +#: engine_dialog.cc:374 msgid "Driver:" msgstr "" -#: engine_dialog.cc:191 sfdb_ui.cc:147 sfdb_ui.cc:260 sfdb_ui.cc:265 +#: engine_dialog.cc:380 +msgid "Device:" +msgstr "" + +#: engine_dialog.cc:385 engine_dialog.cc:475 sfdb_ui.cc:147 sfdb_ui.cc:260 +#: sfdb_ui.cc:265 msgid "Sample rate:" msgstr "" -#: engine_dialog.cc:196 +#: engine_dialog.cc:391 engine_dialog.cc:482 msgid "Buffer size:" msgstr "" -#: engine_dialog.cc:202 -msgid "Number of buffers:" +#: engine_dialog.cc:404 +msgid "Input Channels:" msgstr "" -#: engine_dialog.cc:209 -msgid "Approximate latency:" +#: engine_dialog.cc:415 +msgid "Output Channels:" msgstr "" -#: engine_dialog.cc:284 engine_dialog.cc:408 -msgid "Ignore" +#: engine_dialog.cc:426 +msgid "Hardware input latency:" msgstr "" -#: engine_dialog.cc:292 -msgid "Client timeout" -msgstr "" - -#: engine_dialog.cc:299 -msgid "Number of ports:" -msgstr "" - -#: engine_dialog.cc:304 -msgid "MIDI driver:" -msgstr "" - -#: engine_dialog.cc:310 -msgid "Dither:" -msgstr "" - -#: engine_dialog.cc:319 -msgid "" -"No JACK server found anywhere on this system. Please install JACK and restart" -msgstr "" - -#: engine_dialog.cc:327 -msgid "Server:" -msgstr "" - -#: engine_dialog.cc:339 -msgid "Input device:" -msgstr "" - -#: engine_dialog.cc:343 -msgid "Output device:" -msgstr "" - -#: engine_dialog.cc:351 engine_dialog.cc:357 +#: engine_dialog.cc:429 engine_dialog.cc:442 msgid "samples" msgstr "" -#: engine_dialog.cc:368 -msgid "Device" +#: engine_dialog.cc:439 +msgid "Hardware output latency:" msgstr "" -#: engine_dialog.cc:653 -msgid "cannot open JACK rc file %1 to store parameters" +#: engine_dialog.cc:450 +msgid "MIDI System" msgstr "" -#: engine_dialog.cc:787 +#: engine_dialog.cc:467 msgid "" -"You do not have any audio devices capable of\n" -"simultaneous playback and recording.\n" +"The %1 audio backend was configured and started externally.\n" +"This limits your control over it." +msgstr "" + +#: engine_dialog.cc:521 +msgid "" +"Your selected audio configuration is playback- or capture-only.\n" "\n" -"Please use Applications -> Utilities -> Audio MIDI Setup\n" -"to create an \"aggregrate\" device, or install a suitable\n" -"audio interface.\n" -"\n" -"Please send email to Apple and ask them why new Macs\n" -"have no duplex audio device.\n" -"\n" -"Alternatively, if you really want just playback\n" -"or recording but not both, start JACK before running\n" -"%1 and choose the relevant device then." +"Latency calibration requires playback and capture" msgstr "" -#: engine_dialog.cc:800 -msgid "No suitable audio devices" +#: engine_dialog.cc:595 +msgid "MIDI Inputs" msgstr "" -#: engine_dialog.cc:1017 -msgid "JACK appears to be missing from the %1 bundle" +#: engine_dialog.cc:612 +msgid "MIDI Outputs" msgstr "" -#: engine_dialog.cc:1087 -msgid "You need to choose an audio device first." +#: engine_dialog.cc:696 +msgid "all available channels" msgstr "" -#: engine_dialog.cc:1104 -msgid "Audio device \"%1\" not known on this computer." +#: engine_dialog.cc:890 +#, c-format +msgid "%u samples" msgstr "" -#: engine_dialog.cc:1256 -msgid "AudioSetup value for %1 is missing data" +#: engine_dialog.cc:941 +#, c-format +msgid "(%.1f msecs)" msgstr "" -#: engine_dialog.cc:1335 -msgid "configuration files contain a JACK server path that doesn't exist (%1)" +#: engine_dialog.cc:1389 +msgid "Cannot set driver to %1" +msgstr "" + +#: engine_dialog.cc:1393 +msgid "Cannot set device name to %1" +msgstr "" + +#: engine_dialog.cc:1397 +msgid "Cannot set sample rate to %1" +msgstr "" + +#: engine_dialog.cc:1401 +msgid "Cannot set buffer size to %1" +msgstr "" + +#: engine_dialog.cc:1407 +msgid "Cannot set input channels to %1" +msgstr "" + +#: engine_dialog.cc:1411 +msgid "Cannot set output channels to %1" +msgstr "" + +#: engine_dialog.cc:1417 +msgid "Cannot set input latency to %1" +msgstr "" + +#: engine_dialog.cc:1421 +msgid "Cannot set output latency to %1" +msgstr "" + +#: engine_dialog.cc:1654 +msgid "No signal detected " +msgstr "" + +#: engine_dialog.cc:1667 port_insert_ui.cc:71 port_insert_ui.cc:99 +msgid "Disconnected from audio engine" +msgstr "" + +#: engine_dialog.cc:1681 +msgid "(signal detection error)" +msgstr "" + +#: engine_dialog.cc:1687 +msgid "(inverted - bad wiring)" +msgstr "" + +#: engine_dialog.cc:1697 +msgid "Detected roundtrip latency: %1" +msgstr "" + +#: engine_dialog.cc:1709 port_insert_ui.cc:135 +msgid "Detecting ..." +msgstr "" + +#: engine_dialog.cc:1789 +msgid "Disconnect from %1" +msgstr "" + +#: engine_dialog.cc:1801 +msgid "Connect to %1" +msgstr "" + +#: export_channel_selector.cc:45 sfdb_ui.cc:145 +msgid "Channels:" msgstr "" #: export_channel_selector.cc:46 msgid "Split to mono files" msgstr "" +#: export_channel_selector.cc:182 +msgid "Bus or Track" +msgstr "" + #: export_channel_selector.cc:459 msgid "Region contents without fades nor region gain (channels: %1)" msgstr "" @@ -3322,12 +5709,29 @@ msgstr "" msgid "Track output (channels: %1)" msgstr "" +#: export_channel_selector.cc:536 +msgid "Export region contents" +msgstr "" + +#: export_channel_selector.cc:537 +msgid "Export track output" +msgstr "" + #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten." msgstr "" +#: export_dialog.cc:47 +msgid "List files" +msgstr "" + +#: export_dialog.cc:164 export_timespan_selector.cc:355 +#: export_timespan_selector.cc:417 +msgid "Time Span" +msgstr "" + #: export_dialog.cc:176 msgid "Channels" msgstr "Κανάλια" @@ -3350,6 +5754,10 @@ msgstr "" msgid "Stop Export" msgstr "ΠαÏση Εξαγωγής" +#: export_dialog.cc:337 +msgid "export" +msgstr "" + #: export_dialog.cc:356 msgid "Normalizing '%3' (timespan %1 of %2)" msgstr "" @@ -3372,10 +5780,26 @@ msgid "" "Warning: " msgstr "" +#: export_dialog.cc:420 +msgid "Export Selection" +msgstr "" + +#: export_dialog.cc:433 +msgid "Export Region" +msgstr "" + #: export_dialog.cc:443 msgid "Source" msgstr "" +#: export_dialog.cc:458 +msgid "Stem Export" +msgstr "" + +#: export_file_notebook.cc:38 +msgid "Add another format" +msgstr "" + #: export_file_notebook.cc:178 msgid "Format" msgstr "" @@ -3384,14 +5808,34 @@ msgstr "" msgid "Location" msgstr "Τοποθεσία" +#: export_file_notebook.cc:255 +msgid "No format!" +msgstr "" + +#: export_file_notebook.cc:267 +msgid "Format %1: %2" +msgstr "" + #: export_filename_selector.cc:32 msgid "Label:" msgstr "" +#: export_filename_selector.cc:33 +msgid "Session Name" +msgstr "" + +#: export_filename_selector.cc:34 +msgid "Revision:" +msgstr "" + +#: export_filename_selector.cc:36 +msgid "Folder:" +msgstr "" + #: export_filename_selector.cc:37 session_import_dialog.cc:44 -#: transcode_video_dialog.cc:59 video_server_dialog.cc:45 -#: video_server_dialog.cc:47 export_video_dialog.cc:69 -#: export_video_dialog.cc:71 +#: transcode_video_dialog.cc:58 video_server_dialog.cc:45 +#: video_server_dialog.cc:47 export_video_dialog.cc:68 +#: export_video_dialog.cc:70 msgid "Browse" msgstr "Αναζήτηση" @@ -3419,14 +5863,34 @@ msgstr "" msgid "Choose export folder" msgstr "" +#: export_format_dialog.cc:31 +msgid "New Export Format Profile" +msgstr "" + +#: export_format_dialog.cc:31 +msgid "Edit Export Format Profile" +msgstr "" + #: export_format_dialog.cc:38 msgid "Label: " msgstr "" +#: export_format_dialog.cc:41 normalize_dialog.cc:42 +msgid "Normalize to:" +msgstr "" + +#: export_format_dialog.cc:46 +msgid "Trim silence at start" +msgstr "" + #: export_format_dialog.cc:47 msgid "Add silence at start:" msgstr "" +#: export_format_dialog.cc:50 +msgid "Trim silence at end" +msgstr "" + #: export_format_dialog.cc:51 msgid "Add silence at end:" msgstr "" @@ -3439,6 +5903,18 @@ msgstr "" msgid "Quality" msgstr "" +#: export_format_dialog.cc:57 +msgid "File format" +msgstr "" + +#: export_format_dialog.cc:59 +msgid "Sample rate conversion quality:" +msgstr "" + +#: export_format_dialog.cc:66 +msgid "Dithering" +msgstr "" + #: export_format_dialog.cc:68 msgid "Create CUE file for disk-at-once CD/DVD creation" msgstr "" @@ -3463,6 +5939,30 @@ msgstr "" msgid "Fast (sinc)" msgstr "" +#: export_format_dialog.cc:481 +msgid "Zero order hold" +msgstr "" + +#: export_format_dialog.cc:879 +msgid "Linear encoding options" +msgstr "" + +#: export_format_dialog.cc:895 +msgid "Ogg Vorbis options" +msgstr "" + +#: export_format_dialog.cc:908 +msgid "FLAC options" +msgstr "" + +#: export_format_dialog.cc:925 +msgid "Broadcast Wave options" +msgstr "" + +#: export_format_selector.cc:136 +msgid "Do you really want to remove the format?" +msgstr "" + #: export_preset_selector.cc:28 msgid "Preset" msgstr "" @@ -3473,6 +5973,10 @@ msgid "" "Perhaps it references a format that has been removed?" msgstr "" +#: export_preset_selector.cc:156 +msgid "Do you really want to remove this preset?" +msgstr "" + #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "" @@ -3481,6 +5985,14 @@ msgstr "" msgid " to " msgstr "" +#: export_timespan_selector.cc:348 export_timespan_selector.cc:407 +msgid "Range" +msgstr "" + +#: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 +msgid "curl error %1 (%2)" +msgstr "" + #: sfdb_freesound_mootcher.cc:266 msgid "getSoundResourceFile: There is no valid root in the xml file" msgstr "" @@ -3493,76 +6005,137 @@ msgstr "" msgid "%1" msgstr "" -#: gain_meter.cc:106 gain_meter.cc:357 gain_meter.cc:462 gain_meter.cc:856 +#: gain_meter.cc:105 gain_meter.cc:360 gain_meter.cc:465 gain_meter.cc:859 msgid "-inf" msgstr "-inf" -#: gain_meter.cc:112 gain_meter.cc:913 +#: gain_meter.cc:111 gain_meter.cc:916 msgid "Fader automation mode" msgstr "ΛειτουÏγία Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Fader" -#: gain_meter.cc:113 gain_meter.cc:914 +#: gain_meter.cc:112 gain_meter.cc:917 msgid "Fader automation type" msgstr "ΤÏπος Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Fader" -#: gain_meter.cc:762 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:557 +#: gain_meter.cc:121 gain_meter.cc:798 panner_ui.cc:177 panner_ui.cc:589 +msgid "Abs" +msgstr "" + +#: gain_meter.cc:765 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:556 #: route_time_axis.cc:2411 msgid "P" msgstr "" -#: gain_meter.cc:765 panner_ui.cc:560 +#: gain_meter.cc:768 panner_ui.cc:559 msgid "T" msgstr "" -#: gain_meter.cc:768 panner_ui.cc:563 +#: gain_meter.cc:771 panner_ui.cc:562 msgid "W" msgstr "" -#: generic_pluginui.cc:83 +#: generic_pluginui.cc:81 msgid "Presets" msgstr "" -#: generic_pluginui.cc:232 +#: generic_pluginui.cc:230 msgid "Switches" msgstr "" -#: generic_pluginui.cc:242 generic_pluginui.cc:376 processor_box.cc:2212 +#: generic_pluginui.cc:240 generic_pluginui.cc:374 processor_box.cc:2251 msgid "Controls" msgstr "Πίνακας Ελέγχου" -#: generic_pluginui.cc:270 +#: generic_pluginui.cc:268 msgid "Plugin Editor: could not build control element for port %1" msgstr "" "ΕπεξεÏγαστής Plugin: δεν μπόÏεσα να κτίσω στοιχείο ελέγχου για τη θÏÏα %1" -#: generic_pluginui.cc:430 +#: generic_pluginui.cc:406 +msgid "Meters" +msgstr "" + +#: generic_pluginui.cc:421 +msgid "Automation control" +msgstr "" + +#: generic_pluginui.cc:428 msgid "Mgnual" msgstr "" -#: global_port_matrix.cc:164 +#: global_port_matrix.cc:157 msgid "Audio Connection Manager" msgstr "" -#: global_port_matrix.cc:213 io_selector.cc:216 +#: global_port_matrix.cc:160 +msgid "MIDI Connection Manager" +msgstr "" + +#: global_port_matrix.cc:200 io_selector.cc:210 mixer_strip.cc:719 +#: mixer_strip.cc:845 +msgid "Disconnect" +msgstr "ΑποσÏνδεση" + +#: global_port_matrix.cc:206 io_selector.cc:216 msgid "port" msgstr "θÏÏα" +#: group_tabs.cc:308 +msgid "Selection..." +msgstr "" + #: group_tabs.cc:309 msgid "Record Enabled..." msgstr "" +#: group_tabs.cc:310 +msgid "Soloed..." +msgstr "" + +#: group_tabs.cc:316 +msgid "Create New Group ..." +msgstr "" + #: group_tabs.cc:317 msgid "Create New Group From" msgstr "" +#: group_tabs.cc:320 +msgid "Edit Group..." +msgstr "" + +#: group_tabs.cc:321 +msgid "Collect Group" +msgstr "" + +#: group_tabs.cc:322 +msgid "Remove Group" +msgstr "" + +#: group_tabs.cc:325 +msgid "Remove Subgroup Bus" +msgstr "" + +#: group_tabs.cc:327 +msgid "Add New Subgroup Bus" +msgstr "" + #: group_tabs.cc:329 msgid "Add New Aux Bus (pre-fader)" msgstr "" +#: group_tabs.cc:330 +msgid "Add New Aux Bus (post-fader)" +msgstr "" + #: group_tabs.cc:336 msgid "Enable All Groups" msgstr "" +#: group_tabs.cc:337 +msgid "Disable All Groups" +msgstr "" + #: gtk-custom-ruler.c:133 msgid "Lower limit of ruler" msgstr "ΚατώτεÏο ÏŒÏιο κλίμακας" @@ -3599,20 +6172,60 @@ msgstr "Σχηματισμός Ï„Ïέχουσας θέσης κλίμακας" msgid "Time to insert:" msgstr "" +#: insert_time_dialog.cc:54 +msgid "Intersected regions should:" +msgstr "" + +#: insert_time_dialog.cc:57 +msgid "stay in position" +msgstr "" + +#: insert_time_dialog.cc:58 +msgid "move" +msgstr "" + +#: insert_time_dialog.cc:59 +msgid "be split" +msgstr "" + #: insert_time_dialog.cc:65 msgid "Insert time on all the track's playlists" msgstr "" +#: insert_time_dialog.cc:68 +msgid "Move glued regions" +msgstr "" + +#: insert_time_dialog.cc:70 +msgid "Move markers" +msgstr "" + +#: insert_time_dialog.cc:73 +msgid "Move glued markers" +msgstr "" + +#: insert_time_dialog.cc:78 +msgid "Move locked markers" +msgstr "" + #: insert_time_dialog.cc:83 msgid "" "Move tempo and meter changes\n" "(may cause oddities in the tempo map)" msgstr "" +#: insert_time_dialog.cc:91 +msgid "Insert time" +msgstr "" + #: interthread_progress_window.cc:103 msgid "Importing file: %1 of %2" msgstr "" +#: io_selector.cc:220 +msgid "I/O selector" +msgstr "" + #: io_selector.cc:265 msgid "%1 input" msgstr "%1 είσοδος" @@ -3633,6 +6246,14 @@ msgstr "" msgid "Key bindings file \"%1\" not found. Default bindings used instead" msgstr "" +#: keyeditor.cc:54 +msgid "Remove shortcut" +msgstr "" + +#: keyeditor.cc:64 +msgid "Action" +msgstr "" + #: keyeditor.cc:65 msgid "Shortcut" msgstr "" @@ -3645,10 +6266,30 @@ msgstr "" msgid "Main_menu" msgstr "" +#: keyeditor.cc:253 +msgid "redirectmenu" +msgstr "" + +#: keyeditor.cc:255 +msgid "Editor_menus" +msgstr "" + +#: keyeditor.cc:257 +msgid "RegionList" +msgstr "" + +#: keyeditor.cc:259 +msgid "ProcessorMenu" +msgstr "" + #: latency_gui.cc:39 msgid "sample" msgstr "" +#: latency_gui.cc:40 +msgid "msec" +msgstr "" + #: latency_gui.cc:41 msgid "period" msgstr "" @@ -3659,10 +6300,14 @@ msgid_plural "%1 samples" msgstr[0] "" msgstr[1] "" -#: latency_gui.cc:72 panner_ui.cc:392 +#: latency_gui.cc:72 panner_ui.cc:391 msgid "Reset" msgstr "" +#: latency_gui.cc:151 rhythm_ferret.cc:274 sfdb_ui.cc:1755 +msgid "programming error: %1 (%2)" +msgstr "" + #: location_ui.cc:50 location_ui.cc:52 msgid "Use PH" msgstr "" @@ -3687,6 +6332,10 @@ msgstr "" msgid "Pre-Emphasis" msgstr "" +#: location_ui.cc:314 +msgid "Remove this range" +msgstr "" + #: location_ui.cc:315 msgid "Start time - middle click to locate here" msgstr "" @@ -3695,14 +6344,42 @@ msgstr "" msgid "End time - middle click to locate here" msgstr "" +#: location_ui.cc:319 +msgid "Set range start from playhead location" +msgstr "" + +#: location_ui.cc:320 +msgid "Set range end from playhead location" +msgstr "" + +#: location_ui.cc:324 +msgid "Remove this marker" +msgstr "" + #: location_ui.cc:325 msgid "Position - middle click to locate here" msgstr "" +#: location_ui.cc:327 +msgid "Set marker time from playhead location" +msgstr "" + #: location_ui.cc:494 msgid "You cannot put a CD marker at the start of the session" msgstr "" +#: location_ui.cc:720 +msgid "New Marker" +msgstr "" + +#: location_ui.cc:721 +msgid "New Range" +msgstr "" + +#: location_ui.cc:734 +msgid "Loop/Punch Ranges" +msgstr "" + #: location_ui.cc:759 msgid "Markers (Including CD Index)" msgstr "" @@ -3715,72 +6392,105 @@ msgstr "" msgid "add range marker" msgstr "Ï€Ïόσθεση στίγματος διαστήματος" -#: main.cc:235 main.cc:358 +#: main.cc:81 +msgid "%1 could not connect to the audio backend." +msgstr "" + +#: main.cc:194 main.cc:315 +msgid "cannot create user %3 folder %1 (%2)" +msgstr "" + +#: main.cc:201 main.cc:322 +msgid "cannot open pango.rc file %1" +msgstr "" + +#: main.cc:226 main.cc:349 msgid "Cannot find ArdourMono TrueType font" msgstr "" -#: main.cc:247 main.cc:364 +#: main.cc:238 main.cc:355 msgid "Cannot load ArdourMono TrueType font." msgstr "" -#: main.cc:312 +#: main.cc:303 msgid "" "No fontconfig file found on your system. Things may looked very odd or ugly" msgstr "" -#: main.cc:368 +#: main.cc:359 msgid "Failed to set fontconfig configuration." msgstr "" -#: main.cc:379 main.cc:395 -msgid "JACK exited" +#: main.cc:370 main.cc:386 +msgid "The audio backend (%1) has failed, or terminated" msgstr "" -#: main.cc:382 +#: main.cc:373 msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" +"%2 exited unexpectedly, and without notifying %1.\n" "\n" -"This could be due to misconfiguration or to an error inside JACK.\n" +"This could be due to misconfiguration or to an error inside %2.\n" "\n" "Click OK to exit %1." msgstr "" -#: main.cc:397 -msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" -"\n" -"This is probably due to an error inside JACK. You should restart JACK\n" -"and reconnect %1 to it, or exit %1 now. You cannot save your\n" -"session at this time, because we would lose your connection information.\n" +#: main.cc:387 +msgid "%2 exited unexpectedly, and without notifying %1." msgstr "" -#: main.cc:487 +#: main.cc:474 msgid " (built using " msgstr "" -#: main.cc:490 +#: main.cc:477 msgid " and GCC version " msgstr "" -#: main.cc:504 +#: main.cc:487 +msgid "Copyright (C) 1999-2012 Paul Davis" +msgstr "" + +#: main.cc:488 +msgid "" +"Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " +"Baker, Robin Gareus" +msgstr "" + +#: main.cc:490 +msgid "%1 comes with ABSOLUTELY NO WARRANTY" +msgstr "" + +#: main.cc:491 msgid "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." msgstr "" -#: main.cc:505 +#: main.cc:492 msgid "This is free software, and you are welcome to redistribute it " msgstr "" "Το παÏόν είναι ελεÏθεÏο λογισμικό, είστε ελεÏθεÏοι να το επαναδιανείμετε " -#: main.cc:506 +#: main.cc:493 msgid "under certain conditions; see the source for copying conditions." msgstr "" "υπό οÏισμένους ÏŒÏους, ανατÏέξτε στον κώδικα για τους ÏŒÏους\n" " αντιγÏαφής." -#: main.cc:522 +#: main.cc:500 +msgid "could not initialize %1." +msgstr "" + +#: main.cc:509 msgid "Cannot xinstall SIGPIPE error handler" msgstr "" +#: main.cc:515 +msgid "could not create %1 GUI" +msgstr "" + +#: main_clock.cc:51 +msgid "Display delta to edit cursor" +msgstr "" + #: marker.cc:251 video_image_frame.cc:121 msgid "MarkerText" msgstr "ΚείμενοΣτίγματος" @@ -3790,6 +6500,11 @@ msgstr "ΚείμενοΣτίγματος" msgid "All" msgstr "" +#: midi_channel_selector.cc:163 midi_channel_selector.cc:402 +#: midi_channel_selector.cc:438 rc_option_editor.cc:1248 sfdb_ui.cc:538 +msgid "None" +msgstr "Ουδέν" + #: midi_channel_selector.cc:167 midi_channel_selector.cc:407 #: midi_channel_selector.cc:443 msgid "Invert" @@ -3799,10 +6514,38 @@ msgstr "ΑντιστÏοφή" msgid "Force" msgstr "" +#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 +msgid "MIDI Channel Control" +msgstr "" + +#: midi_channel_selector.cc:332 +msgid "Playback all channels" +msgstr "" + +#: midi_channel_selector.cc:333 +msgid "Play only selected channels" +msgstr "" + #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" +#: midi_channel_selector.cc:335 +msgid "Record all channels" +msgstr "" + +#: midi_channel_selector.cc:336 +msgid "Record only selected channels" +msgstr "" + +#: midi_channel_selector.cc:337 +msgid "Force all channels to 1 channel" +msgstr "" + +#: midi_channel_selector.cc:378 +msgid "Inbound" +msgstr "" + #: midi_channel_selector.cc:398 msgid "Click to enable recording all channels" msgstr "" @@ -3815,6 +6558,10 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" +#: midi_channel_selector.cc:415 +msgid "Playback" +msgstr "" + #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -3859,6 +6606,22 @@ msgstr "" msgid "Triplet" msgstr "" +#: midi_list_editor.cc:58 +msgid "Quarter" +msgstr "" + +#: midi_list_editor.cc:59 +msgid "Eighth" +msgstr "" + +#: midi_list_editor.cc:60 +msgid "Sixteenth" +msgstr "" + +#: midi_list_editor.cc:61 +msgid "Thirty-second" +msgstr "" + #: midi_list_editor.cc:62 msgid "Sixty-fourth" msgstr "" @@ -3871,14 +6634,74 @@ msgstr "" msgid "Vel" msgstr "" +#: midi_list_editor.cc:215 +msgid "edit note start" +msgstr "" + +#: midi_list_editor.cc:224 +msgid "edit note channel" +msgstr "" + +#: midi_list_editor.cc:234 +msgid "edit note number" +msgstr "" + +#: midi_list_editor.cc:244 +msgid "edit note velocity" +msgstr "" + +#: midi_list_editor.cc:258 +msgid "edit note length" +msgstr "" + +#: midi_list_editor.cc:460 +msgid "insert new note" +msgstr "" + +#: midi_list_editor.cc:524 +msgid "delete notes (from list)" +msgstr "" + +#: midi_list_editor.cc:599 +msgid "change note channel" +msgstr "" + +#: midi_list_editor.cc:607 +msgid "change note number" +msgstr "" + +#: midi_list_editor.cc:617 +msgid "change note velocity" +msgstr "" + +#: midi_list_editor.cc:687 +msgid "change note length" +msgstr "" + +#: midi_port_dialog.cc:39 +msgid "Add MIDI Port" +msgstr "" + +#: midi_port_dialog.cc:40 +msgid "Port name:" +msgstr "" + #: midi_port_dialog.cc:45 msgid "MidiPortDialog" msgstr "" +#: midi_region_view.cc:838 +msgid "channel edit" +msgstr "" + #: midi_region_view.cc:874 msgid "velocity edit" msgstr "" +#: midi_region_view.cc:931 +msgid "add note" +msgstr "" + #: midi_region_view.cc:1779 msgid "step add" msgstr "" @@ -3887,18 +6710,58 @@ msgstr "" msgid "insane MIDI patch key %1:%2" msgstr "" +#: midi_region_view.cc:1870 midi_region_view.cc:1890 +msgid "alter patch change" +msgstr "" + #: midi_region_view.cc:1924 msgid "add patch change" msgstr "" +#: midi_region_view.cc:1942 +msgid "move patch change" +msgstr "" + +#: midi_region_view.cc:1953 +msgid "delete patch change" +msgstr "" + +#: midi_region_view.cc:2022 +msgid "delete selection" +msgstr "" + +#: midi_region_view.cc:2038 +msgid "delete note" +msgstr "" + +#: midi_region_view.cc:2425 +msgid "move notes" +msgstr "" + #: midi_region_view.cc:2647 msgid "resize notes" msgstr "" +#: midi_region_view.cc:2901 +msgid "change velocities" +msgstr "" + #: midi_region_view.cc:2967 msgid "transpose" msgstr "" +#: midi_region_view.cc:3001 +msgid "change note lengths" +msgstr "" + +#: midi_region_view.cc:3070 +msgid "nudge" +msgstr "" + +#: midi_region_view.cc:3085 +msgid "change channel" +msgstr "" + #: midi_region_view.cc:3130 msgid "Bank " msgstr "" @@ -3907,18 +6770,62 @@ msgstr "" msgid "Program " msgstr "" +#: midi_region_view.cc:3132 +msgid "Channel " +msgstr "" + #: midi_region_view.cc:3301 midi_region_view.cc:3303 msgid "paste" msgstr "επικόλληση" +#: midi_region_view.cc:3761 +msgid "delete sysex" +msgstr "" + +#: midi_streamview.cc:479 +msgid "failed to create MIDI region" +msgstr "" + #: midi_time_axis.cc:262 msgid "External MIDI Device" msgstr "" +#: midi_time_axis.cc:263 +msgid "External Device Mode" +msgstr "" + #: midi_time_axis.cc:271 msgid "Chns" msgstr "" +#: midi_time_axis.cc:272 +msgid "Click to edit channel settings" +msgstr "" + +#: midi_time_axis.cc:486 +msgid "Show Full Range" +msgstr "" + +#: midi_time_axis.cc:491 +msgid "Fit Contents" +msgstr "" + +#: midi_time_axis.cc:495 +msgid "Note Range" +msgstr "" + +#: midi_time_axis.cc:496 +msgid "Note Mode" +msgstr "" + +#: midi_time_axis.cc:497 +msgid "Channel Selector" +msgstr "" + +#: midi_time_axis.cc:502 +msgid "Color Mode" +msgstr "" + #: midi_time_axis.cc:561 msgid "Bender" msgstr "" @@ -3927,6 +6834,34 @@ msgstr "" msgid "Pressure" msgstr "" +#: midi_time_axis.cc:578 +msgid "Controllers" +msgstr "" + +#: midi_time_axis.cc:583 +msgid "No MIDI Channels selected" +msgstr "" + +#: midi_time_axis.cc:640 midi_time_axis.cc:769 +msgid "Hide all channels" +msgstr "" + +#: midi_time_axis.cc:644 midi_time_axis.cc:773 +msgid "Show all channels" +msgstr "" + +#: midi_time_axis.cc:655 midi_time_axis.cc:784 +msgid "Channel %1" +msgstr "" + +#: midi_time_axis.cc:910 midi_time_axis.cc:942 +msgid "Controllers %1-%2" +msgstr "" + +#: midi_time_axis.cc:933 midi_time_axis.cc:936 +msgid "Controller %1" +msgstr "" + #: midi_time_axis.cc:959 msgid "Sustained" msgstr "" @@ -3935,30 +6870,75 @@ msgstr "" msgid "Percussive" msgstr "" +#: midi_time_axis.cc:986 +msgid "Meter Colors" +msgstr "" + +#: midi_time_axis.cc:993 +msgid "Channel Colors" +msgstr "" + +#: midi_time_axis.cc:1000 +msgid "Track Color" +msgstr "" + +#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 +#: midi_time_axis.cc:1510 +msgid "all" +msgstr "" + #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" -#: midi_tracer.cc:43 +#: midi_tracer.cc:46 msgid "Line history: " msgstr "" -#: midi_tracer.cc:51 +#: midi_tracer.cc:54 msgid "Auto-Scroll" msgstr "" -#: midi_tracer.cc:52 +#: midi_tracer.cc:55 msgid "Decimal" msgstr "" +#: midi_tracer.cc:56 rc_option_editor.cc:657 +msgid "Enabled" +msgstr "" + +#: midi_tracer.cc:57 +msgid "Delta times" +msgstr "" + +#: midi_tracer.cc:70 +msgid "Port:" +msgstr "" + +#: midi_velocity_dialog.cc:31 +msgid "New velocity" +msgstr "" + #: missing_file_dialog.cc:34 msgid "Missing File!" msgstr "" +#: missing_file_dialog.cc:36 +msgid "Select a folder to search" +msgstr "" + #: missing_file_dialog.cc:37 msgid "Add chosen folder to search path, and try again" msgstr "" +#: missing_file_dialog.cc:39 +msgid "Stop loading this session" +msgstr "" + +#: missing_file_dialog.cc:40 +msgid "Skip all missing files" +msgstr "" + #: missing_file_dialog.cc:41 msgid "Skip this file" msgstr "" @@ -3983,7 +6963,11 @@ msgstr "" msgid "Click to choose an additional folder" msgstr "" -#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 +#: missing_plugin_dialog.cc:29 +msgid "Missing Plugins" +msgstr "" + +#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:59 msgid "OK" msgstr "OK" @@ -4011,6 +6995,34 @@ msgstr "" msgid "Set Gain to 0dB on Mixer-Selected Tracks/Busses" msgstr "" +#: mixer_actor.cc:63 +msgid "Copy Selected Processors" +msgstr "" + +#: mixer_actor.cc:64 +msgid "Cut Selected Processors" +msgstr "" + +#: mixer_actor.cc:65 +msgid "Paste Selected Processors" +msgstr "" + +#: mixer_actor.cc:66 +msgid "Delete Selected Processors" +msgstr "" + +#: mixer_actor.cc:67 +msgid "Select All (visible) Processors" +msgstr "" + +#: mixer_actor.cc:68 +msgid "Toggle Selected Processors" +msgstr "" + +#: mixer_actor.cc:69 +msgid "Toggle Selected Plugins" +msgstr "" + #: mixer_actor.cc:72 mixer_actor.cc:73 msgid "Scroll Mixer Window to the left" msgstr "" @@ -4031,6 +7043,11 @@ msgstr "" msgid "pre" msgstr "Ï€Ïο" +#: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 +#: rc_option_editor.cc:1868 +msgid "Comments" +msgstr "" + #: mixer_strip.cc:147 msgid "Click to toggle the width of this mixer strip." msgstr "" @@ -4041,6 +7058,14 @@ msgid "" "%1-%2-click to toggle the width of all strips." msgstr "" +#: mixer_strip.cc:156 +msgid "Hide this mixer strip" +msgstr "" + +#: mixer_strip.cc:167 +msgid "Click to select metering point" +msgstr "" + #: mixer_strip.cc:173 msgid "tupni" msgstr "" @@ -4057,13 +7082,47 @@ msgstr "" msgid "lock" msgstr "κλείδωμα" +#: mixer_strip.cc:204 mixer_strip.cc:1925 +msgid "iso" +msgstr "" + +#: mixer_strip.cc:258 +msgid "Mix group" +msgstr "" + +#: mixer_strip.cc:351 rc_option_editor.cc:1865 +msgid "Phase Invert" +msgstr "" + +#: mixer_strip.cc:352 rc_option_editor.cc:1866 route_ui.cc:1218 +msgid "Solo Safe" +msgstr "" + #: mixer_strip.cc:355 mixer_ui.cc:124 route_time_axis.cc:673 msgid "Group" msgstr "" -#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 -msgid "Not connected to JACK - no I/O changes are possible" -msgstr "Μη συνδεδεμένο με τον JACK - I/O αλλαγές αδÏνατες" +#: mixer_strip.cc:356 rc_option_editor.cc:1869 +msgid "Meter Point" +msgstr "" + +#: mixer_strip.cc:470 +msgid "Enable/Disable MIDI input" +msgstr "" + +#: mixer_strip.cc:622 +msgid "" +"Aux\n" +"Sends" +msgstr "" + +#: mixer_strip.cc:646 +msgid "Snd" +msgstr "" + +#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2193 +msgid "Not connected to audio engine - no I/O changes are possible" +msgstr "" #: mixer_strip.cc:1096 msgid "INPUT to %1" @@ -4073,10 +7132,18 @@ msgstr "" msgid "OUTPUT from %1" msgstr "" +#: mixer_strip.cc:1174 +msgid "Disconnected" +msgstr "" + #: mixer_strip.cc:1303 msgid "*Comments*" msgstr "*Σχόλια*" +#: mixer_strip.cc:1310 +msgid "Cmt" +msgstr "" + #: mixer_strip.cc:1313 msgid "*Cmt*" msgstr "" @@ -4097,6 +7164,14 @@ msgstr "" msgid "~G" msgstr "~G" +#: mixer_strip.cc:1467 +msgid "Comments..." +msgstr "" + +#: mixer_strip.cc:1469 +msgid "Save As Template..." +msgstr "" + #: mixer_strip.cc:1475 route_group_dialog.cc:39 route_time_axis.cc:696 msgid "Active" msgstr "ΕνεÏγό" @@ -4109,6 +7184,10 @@ msgstr "" msgid "Protect Against Denormals" msgstr "" +#: mixer_strip.cc:1491 route_time_axis.cc:435 +msgid "Remote Control ID..." +msgstr "" + #: mixer_strip.cc:1717 mixer_strip.cc:1741 msgid "in" msgstr "in" @@ -4125,6 +7204,18 @@ msgstr "out" msgid "custom" msgstr "" +#: mixer_strip.cc:1745 +msgid "pr" +msgstr "" + +#: mixer_strip.cc:1749 +msgid "po" +msgstr "" + +#: mixer_strip.cc:1753 +msgid "o" +msgstr "" + #: mixer_strip.cc:1758 msgid "c" msgstr "" @@ -4141,10 +7232,30 @@ msgstr "" msgid "PFL" msgstr "" +#: mixer_strip.cc:1933 +msgid "D" +msgstr "" + +#: mixer_strip.cc:1953 +msgid "i" +msgstr "" + +#: mixer_strip.cc:2128 +msgid "Pre-fader" +msgstr "" + +#: mixer_strip.cc:2129 +msgid "Post-fader" +msgstr "" + #: mixer_strip.cc:2166 meter_strip.cc:728 msgid "Change all in Group to %1" msgstr "" +#: mixer_strip.cc:2168 meter_strip.cc:730 +msgid "Change all to %1" +msgstr "" + #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -4161,6 +7272,10 @@ msgstr "-όλα-" msgid "Strips" msgstr "ΔιάδÏομοι" +#: meter_strip.cc:764 +msgid "Variable height" +msgstr "" + #: meter_strip.cc:765 msgid "Short" msgstr "" @@ -4217,10 +7332,18 @@ msgstr "" msgid "SiP" msgstr "" +#: monitor_section.cc:86 +msgid "soloing" +msgstr "" + #: monitor_section.cc:90 msgid "isolated" msgstr "" +#: monitor_section.cc:94 +msgid "auditioning" +msgstr "" + #: monitor_section.cc:104 msgid "" "When active, something is solo-isolated.\n" @@ -4279,6 +7402,10 @@ msgstr "" msgid "Exclusive solo means that only 1 solo is active at a time" msgstr "" +#: monitor_section.cc:199 +msgid "solo » mute" +msgstr "" + #: monitor_section.cc:201 msgid "" "If enabled, solo will override mute\n" @@ -4297,10 +7424,22 @@ msgstr "" msgid "mono" msgstr "mono" +#: monitor_section.cc:266 +msgid "Monitor" +msgstr "" + #: monitor_section.cc:678 msgid "Switch monitor to mono" msgstr "" +#: monitor_section.cc:681 +msgid "Cut monitor" +msgstr "" + +#: monitor_section.cc:684 +msgid "Dim monitor" +msgstr "" + #: monitor_section.cc:687 msgid "Toggle exclusive solo mode" msgstr "" @@ -4309,6 +7448,34 @@ msgstr "" msgid "Toggle mute overrides solo mode" msgstr "" +#: monitor_section.cc:705 +msgid "Cut monitor channel %1" +msgstr "" + +#: monitor_section.cc:710 +msgid "Dim monitor channel %1" +msgstr "" + +#: monitor_section.cc:715 +msgid "Solo monitor channel %1" +msgstr "" + +#: monitor_section.cc:720 +msgid "Invert monitor channel %1" +msgstr "" + +#: monitor_section.cc:730 +msgid "In-place solo" +msgstr "" + +#: monitor_section.cc:732 +msgid "After Fade Listen (AFL) solo" +msgstr "" + +#: monitor_section.cc:734 +msgid "Pre Fade Listen (PFL) solo" +msgstr "" + #: mono_panner.cc:101 #, c-format msgid "L:%3d R:%3d" @@ -4374,6 +7541,26 @@ msgid "" "relies on a stable, sustainable income stream. Thanks for using Ardour!" msgstr "" +#: new_plugin_preset_dialog.cc:29 +msgid "New Preset" +msgstr "" + +#: new_plugin_preset_dialog.cc:30 +msgid "Replace existing preset with this name" +msgstr "" + +#: new_plugin_preset_dialog.cc:34 +msgid "Name of new preset" +msgstr "" + +#: normalize_dialog.cc:34 +msgid "Normalize regions" +msgstr "" + +#: normalize_dialog.cc:34 +msgid "Normalize region" +msgstr "" + #: normalize_dialog.cc:49 strip_silence_dialog.cc:70 msgid "dbFS" msgstr "dbFS" @@ -4394,11 +7581,34 @@ msgstr "Εξομάλυνση" msgid "Usage: " msgstr "ΧÏήση: " +#: opts.cc:58 +msgid " [SESSION_NAME] Name of session to load\n" +msgstr "" + +#: opts.cc:59 +msgid " -v, --version Show version information\n" +msgstr "" + +#: opts.cc:60 +msgid " -h, --help Print this message\n" +msgstr "" + #: opts.cc:61 msgid "" " -a, --no-announcements Do not contact website for announcements\n" msgstr "" +#: opts.cc:62 +msgid "" +" -b, --bindings Print all possible keyboard binding names\n" +msgstr "" + +#: opts.cc:63 +msgid "" +" -c, --name Use a specific backend client name, default is " +"ardour\n" +msgstr "" + #: opts.cc:64 msgid "" " -d, --disable-plugins Disable all plugins in an existing session\n" @@ -4410,6 +7620,19 @@ msgid "" "available options\n" msgstr "" +#: opts.cc:66 +msgid " -n, --no-splash Do not show splash screen\n" +msgstr "" + +#: opts.cc:67 +msgid " -m, --menus file Use \"file\" to define menus\n" +msgstr "" + +#: opts.cc:68 +msgid "" +" -N, --new session-name Create a new session from the command line\n" +msgstr "" + #: opts.cc:69 msgid " -O, --no-hw-optimizations Disable h/w specific optimizations\n" msgstr "" @@ -4418,6 +7641,14 @@ msgstr "" msgid " -P, --no-connect-ports Do not connect any ports at startup\n" msgstr "" +#: opts.cc:71 +msgid " -S, --sync Draw the gui synchronously \n" +msgstr "" + +#: opts.cc:73 +msgid " -V, --novst Do not use VST support\n" +msgstr "" + #: opts.cc:75 msgid "" " -E, --save Load the specified session, save it to " @@ -4438,7 +7669,7 @@ msgstr "" msgid "Panner (2D)" msgstr "" -#: panner2d.cc:783 panner_ui.cc:384 plugin_ui.cc:451 +#: panner2d.cc:783 panner_ui.cc:383 plugin_ui.cc:448 msgid "Bypass" msgstr "" @@ -4446,23 +7677,31 @@ msgstr "" msgid "Panner" msgstr "" -#: panner_ui.cc:71 +#: panner_ui.cc:70 msgid "Pan automation mode" msgstr "ΛειτουÏγία Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Pan" -#: panner_ui.cc:72 +#: panner_ui.cc:71 msgid "Pan automation type" msgstr "ΤÏπος Î±Ï…Ï„Î¿Î¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Pan" -#: panner_ui.cc:295 +#: panner_ui.cc:294 msgid "" "No panner user interface is currently available for %1-in/2out tracks/busses" msgstr "" +#: playlist_selector.cc:43 +msgid "Playlists" +msgstr "" + #: playlist_selector.cc:54 msgid "Playlists grouped by track" msgstr "Playlists ομαδοποιημένες ανά κανάλι" +#: playlist_selector.cc:101 +msgid "Playlist for %1" +msgstr "" + #: playlist_selector.cc:114 msgid "Other tracks" msgstr "Άλλα κανάλια" @@ -4471,14 +7710,46 @@ msgstr "Άλλα κανάλια" msgid "unassigned" msgstr "" +#: playlist_selector.cc:194 +msgid "Imported" +msgstr "" + #: plugin_eq_gui.cc:75 plugin_eq_gui.cc:99 msgid "dB scale" msgstr "" +#: plugin_eq_gui.cc:106 +msgid "Show phase" +msgstr "" + +#: plugin_selector.cc:53 plugin_selector.cc:220 +msgid "Name contains" +msgstr "" + +#: plugin_selector.cc:54 plugin_selector.cc:224 +msgid "Type contains" +msgstr "" + +#: plugin_selector.cc:55 plugin_selector.cc:222 +msgid "Category contains" +msgstr "" + +#: plugin_selector.cc:56 plugin_selector.cc:244 +msgid "Author contains" +msgstr "" + +#: plugin_selector.cc:57 plugin_selector.cc:246 +msgid "Library contains" +msgstr "" + #: plugin_selector.cc:58 plugin_selector.cc:210 plugin_selector.cc:521 msgid "Favorites only" msgstr "" +#: plugin_selector.cc:59 plugin_selector.cc:214 plugin_selector.cc:521 +msgid "Hidden only" +msgstr "" + #: plugin_selector.cc:64 msgid "Plugin Manager" msgstr "" @@ -4487,6 +7758,10 @@ msgstr "" msgid "Fav" msgstr "" +#: plugin_selector.cc:86 +msgid "Available Plugins" +msgstr "" + #: plugin_selector.cc:87 msgid "Type" msgstr "ΤÏπωση" @@ -4495,6 +7770,30 @@ msgstr "ΤÏπωση" msgid "Category" msgstr "" +#: plugin_selector.cc:89 +msgid "Creator" +msgstr "" + +#: plugin_selector.cc:90 +msgid "# Audio In" +msgstr "" + +#: plugin_selector.cc:91 +msgid "# Audio Out" +msgstr "" + +#: plugin_selector.cc:92 +msgid "# MIDI In" +msgstr "" + +#: plugin_selector.cc:93 +msgid "# MIDI Out" +msgstr "" + +#: plugin_selector.cc:115 +msgid "Plugins to be connected" +msgstr "" + #: plugin_selector.cc:128 msgid "Add a plugin to the effect list" msgstr "ΠÏόσθεση plugin στη λίστα των εφφέ" @@ -4507,6 +7806,10 @@ msgstr "Απαλοιφή plugin από τη λίστα των εφφέ" msgid "Update available plugins" msgstr "Ανανέωση διαθέσιμων plugins" +#: plugin_selector.cc:171 +msgid "Insert Plugin(s)" +msgstr "" + #: plugin_selector.cc:320 plugin_selector.cc:321 plugin_selector.cc:322 #: plugin_selector.cc:323 msgid "variable" @@ -4519,85 +7822,149 @@ msgid "" "See the Log window for more details (maybe)" msgstr "" +#: plugin_selector.cc:628 +msgid "Favorites" +msgstr "" + +#: plugin_selector.cc:630 +msgid "Plugin Manager..." +msgstr "" + +#: plugin_selector.cc:634 +msgid "By Creator" +msgstr "" + #: plugin_selector.cc:637 msgid "By Category" msgstr "" -#: plugin_ui.cc:116 +#: plugin_ui.cc:114 msgid "Eh? LADSPA plugins don't have editors!" msgstr "" -#: plugin_ui.cc:329 +#: plugin_ui.cc:123 plugin_ui.cc:226 +msgid "" +"unknown type of editor-supplying plugin (note: no VST support in this " +"version of %1)" +msgstr "" + +#: plugin_ui.cc:126 +msgid "unknown type of editor-supplying plugin" +msgstr "" + +#: plugin_ui.cc:256 +msgid "" +"unknown type of editor-supplying plugin (note: no linuxVST support in this " +"version of %1)" +msgstr "" + +#: plugin_ui.cc:328 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "" -#: plugin_ui.cc:417 +#: plugin_ui.cc:414 msgid "Add" msgstr "ΠÏόσθεση" -#: plugin_ui.cc:429 +#: plugin_ui.cc:418 +msgid "Description" +msgstr "" + +#: plugin_ui.cc:419 +msgid "Plugin analysis" +msgstr "" + +#: plugin_ui.cc:426 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:431 +#: plugin_ui.cc:427 +msgid "Save a new preset" +msgstr "" + +#: plugin_ui.cc:428 msgid "Save the current preset" msgstr "" -#: plugin_ui.cc:432 +#: plugin_ui.cc:429 msgid "Delete the current preset" msgstr "" -#: plugin_ui.cc:433 +#: plugin_ui.cc:430 msgid "Disable signal processing by the plugin" msgstr "" -#: plugin_ui.cc:466 plugin_ui.cc:662 +#: plugin_ui.cc:463 plugin_ui.cc:659 msgid "" "Click to allow the plugin to receive keyboard events that %1 would normally " "use as a shortcut" msgstr "" -#: plugin_ui.cc:467 +#: plugin_ui.cc:464 msgid "Click to enable/disable this plugin" msgstr "" -#: plugin_ui.cc:506 +#: plugin_ui.cc:503 msgid "latency (%1 sample)" msgid_plural "latency (%1 samples)" msgstr[0] "" msgstr[1] "" -#: plugin_ui.cc:508 +#: plugin_ui.cc:505 msgid "latency (%1 ms)" msgstr "" -#: plugin_ui.cc:558 +#: plugin_ui.cc:516 +msgid "Edit Latency" +msgstr "" + +#: plugin_ui.cc:555 msgid "Plugin preset %1 not found" msgstr "ΠÏο-ÏÏθμιση plugin %1 δεν ευÏέθη" -#: plugin_ui.cc:595 +#: plugin_ui.cc:592 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "full version" msgstr "" -#: plugin_ui.cc:615 plugin_ui.cc:630 +#: plugin_ui.cc:612 plugin_ui.cc:627 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "newer version" msgstr "" -#: plugin_ui.cc:669 +#: plugin_ui.cc:666 msgid "Click to allow normal use of %1 keyboard shortcuts" msgstr "" -#: port_group.cc:430 port_group.cc:431 +#: port_group.cc:337 +msgid "%1 Busses" +msgstr "" + +#: port_group.cc:338 +msgid "%1 Tracks" +msgstr "" + +#: port_group.cc:339 +msgid "Hardware" +msgstr "" + +#: port_group.cc:340 +msgid "%1 Misc" +msgstr "" + +#: port_group.cc:341 +msgid "Other" +msgstr "" + +#: port_group.cc:432 port_group.cc:433 msgid "LTC Out" msgstr "" -#: port_group.cc:434 port_group.cc:435 +#: port_group.cc:436 port_group.cc:437 msgid "LTC In" msgstr "" @@ -4605,15 +7972,43 @@ msgstr "" msgid "MTC in" msgstr "" +#: port_group.cc:466 +msgid "MIDI control in" +msgstr "" + +#: port_group.cc:469 +msgid "MIDI clock in" +msgstr "" + +#: port_group.cc:472 +msgid "MMC in" +msgstr "" + +#: port_group.cc:476 +msgid "MTC out" +msgstr "" + +#: port_group.cc:479 +msgid "MIDI control out" +msgstr "" + #: port_group.cc:482 msgid "MIDI clock out" msgstr "" -#: port_group.cc:552 +#: port_group.cc:485 +msgid "MMC out" +msgstr "" + +#: port_group.cc:532 +msgid ":monitor" +msgstr "" + +#: port_group.cc:544 msgid "system:" msgstr "" -#: port_group.cc:553 +#: port_group.cc:545 msgid "alsa_pcm" msgstr "" @@ -4621,20 +8016,24 @@ msgstr "" msgid "Measure Latency" msgstr "" -#: port_insert_ui.cc:52 -msgid "Return/Input" +#: port_insert_ui.cc:51 +msgid "Send/Output" msgstr "" -#: port_insert_ui.cc:71 port_insert_ui.cc:99 -msgid "Disconnected from audio engine" +#: port_insert_ui.cc:52 +msgid "Return/Input" msgstr "" #: port_insert_ui.cc:86 msgid "No signal detected" msgstr "" -#: port_insert_ui.cc:135 -msgid "Detecting ..." +#: port_insert_ui.cc:166 +msgid "Port Insert " +msgstr "" + +#: port_matrix.cc:331 port_matrix.cc:357 +msgid "Sources" msgstr "" #: port_matrix.cc:332 port_matrix.cc:358 @@ -4646,6 +8045,24 @@ msgstr "" msgid "Add %s %s" msgstr "" +#: port_matrix.cc:456 +#, c-format +msgid "Rename '%s'..." +msgstr "" + +#: port_matrix.cc:472 +msgid "Remove all" +msgstr "" + +#: port_matrix.cc:492 port_matrix.cc:504 +#, c-format +msgid "%s all" +msgstr "" + +#: port_matrix.cc:527 +msgid "Rescan" +msgstr "" + #: port_matrix.cc:529 msgid "Show individual ports" msgstr "" @@ -4654,27 +8071,49 @@ msgstr "" msgid "Flip" msgstr "" -#: port_matrix.cc:723 +#: port_matrix.cc:721 msgid "" "It is not possible to add a port here, as the first processor in the track " "or buss cannot support the new configuration." msgstr "" -#: port_matrix.cc:726 +#: port_matrix.cc:724 msgid "Cannot add port" msgstr "" -#: port_matrix.cc:748 +#: port_matrix.cc:746 msgid "Port removal not allowed" msgstr "" -#: port_matrix.cc:749 +#: port_matrix.cc:747 msgid "" "This port cannot be removed.\n" "Either the first plugin in the track or buss cannot accept\n" "the new number of inputs or the last plugin has more outputs." msgstr "" +#: port_matrix.cc:964 +#, c-format +msgid "Remove '%s'" +msgstr "" + +#: port_matrix.cc:979 +#, c-format +msgid "%s all from '%s'" +msgstr "" + +#: port_matrix.cc:1045 +msgid "channel" +msgstr "" + +#: port_matrix_body.cc:82 +msgid "There are no ports to connect." +msgstr "" + +#: port_matrix_body.cc:84 +msgid "There are no %1 ports to connect." +msgstr "" + #: processor_box.cc:256 msgid "" "%1\n" @@ -4688,7 +8127,19 @@ msgid "" "Double-click to show generic GUI." msgstr "" -#: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 +#: processor_box.cc:372 +msgid "Show All Controls" +msgstr "" + +#: processor_box.cc:376 +msgid "Hide All Controls" +msgstr "" + +#: processor_box.cc:465 +msgid "on" +msgstr "" + +#: processor_box.cc:465 rc_option_editor.cc:1898 rc_option_editor.cc:1912 msgid "off" msgstr "εκτός" @@ -4698,7 +8149,7 @@ msgid "" "plugins,inserts,sends and more" msgstr "" -#: processor_box.cc:1197 processor_box.cc:1591 +#: processor_box.cc:1197 processor_box.cc:1618 msgid "Plugin Incompatibility" msgstr "" @@ -4712,42 +8163,158 @@ msgid "" "This plugin has:\n" msgstr "" +#: processor_box.cc:1209 +msgid "\t%1 MIDI input\n" +msgid_plural "\t%1 MIDI inputs\n" +msgstr[0] "" +msgstr[1] "" + +#: processor_box.cc:1213 +msgid "\t%1 audio input\n" +msgid_plural "\t%1 audio inputs\n" +msgstr[0] "" +msgstr[1] "" + #: processor_box.cc:1216 msgid "" "\n" "but at the insertion point, there are:\n" msgstr "" +#: processor_box.cc:1219 +msgid "\t%1 MIDI channel\n" +msgid_plural "\t%1 MIDI channels\n" +msgstr[0] "" +msgstr[1] "" + +#: processor_box.cc:1223 +msgid "\t%1 audio channel\n" +msgid_plural "\t%1 audio channels\n" +msgstr[0] "" +msgstr[1] "" + #: processor_box.cc:1226 msgid "" "\n" "%1 is unable to insert this plugin here.\n" msgstr "" -#: processor_box.cc:1809 +#: processor_box.cc:1262 +msgid "Cannot set up new send: %1" +msgstr "" + +#: processor_box.cc:1621 +msgid "" +"You cannot reorder these plugins/sends/inserts\n" +"in that way because the inputs and\n" +"outputs will not work correctly." +msgstr "" + +#: processor_box.cc:1805 +msgid "Rename Processor" +msgstr "" + +#: processor_box.cc:1836 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "" -#: processor_box.cc:1943 +#: processor_box.cc:1970 msgid "plugin insert constructor failed" msgstr "" -#: processor_box.cc:2004 processor_box.cc:2029 +#: processor_box.cc:1981 +msgid "" +"Copying the set of processors on the clipboard failed,\n" +"probably because the I/O configuration of the plugins\n" +"could not match the configuration of this track." +msgstr "" + +#: processor_box.cc:2027 +msgid "" +"Do you really want to remove all processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2031 processor_box.cc:2056 msgid "Yes, remove them all" msgstr "Îαι, απάλοιψέ τα όλα" -#: processor_box.cc:2203 +#: processor_box.cc:2033 processor_box.cc:2058 +msgid "Remove processors" +msgstr "" + +#: processor_box.cc:2048 +msgid "" +"Do you really want to remove all pre-fader processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2051 +msgid "" +"Do you really want to remove all post-fader processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2239 +msgid "New Plugin" +msgstr "" + +#: processor_box.cc:2242 msgid "New Insert" msgstr "Îέο ΠÏοσθήκη" -#: processor_box.cc:2244 +#: processor_box.cc:2245 +msgid "New External Send ..." +msgstr "" + +#: processor_box.cc:2249 +msgid "New Aux Send ..." +msgstr "" + +#: processor_box.cc:2253 +msgid "Clear (all)" +msgstr "" + +#: processor_box.cc:2255 +msgid "Clear (pre-fader)" +msgstr "" + +#: processor_box.cc:2257 +msgid "Clear (post-fader)" +msgstr "" + +#: processor_box.cc:2283 msgid "Activate All" msgstr "ΕνεÏγοποίηση όλων" -#: processor_box.cc:2257 +#: processor_box.cc:2285 +msgid "Deactivate All" +msgstr "" + +#: processor_box.cc:2287 +msgid "A/B Plugins" +msgstr "" + +#: processor_box.cc:2296 msgid "Edit with generic controls..." msgstr "" +#: processor_box.cc:2599 +msgid "%1: %2 (by %3)" +msgstr "" + +#: processor_box.cc:2601 +msgid "%2 (by %3)" +msgstr "" + +#: patch_change_dialog.cc:51 +msgid "Patch Change" +msgstr "" + +#: patch_change_dialog.cc:77 +msgid "Patch Bank" +msgstr "" + #: patch_change_dialog.cc:84 msgid "Patch" msgstr "" @@ -4780,80 +8347,128 @@ msgstr "" msgid "Threshold (ticks)" msgstr "" -#: rc_option_editor.cc:108 +#: quantize_dialog.cc:63 +msgid "Snap note start" +msgstr "" + +#: quantize_dialog.cc:64 +msgid "Snap note end" +msgstr "" + +#: rc_option_editor.cc:67 +msgid "Click audio file:" +msgstr "" + +#: rc_option_editor.cc:70 rc_option_editor.cc:77 +msgid "Browse..." +msgstr "" + +#: rc_option_editor.cc:74 +msgid "Click emphasis audio file:" +msgstr "" + +#: rc_option_editor.cc:106 msgid "Choose Click" msgstr "Επιλογή ΜετÏονόμου" -#: rc_option_editor.cc:128 +#: rc_option_editor.cc:126 msgid "Choose Click Emphasis" msgstr "Επιλογή Έμφασης ΜετÏονόμου" -#: rc_option_editor.cc:160 +#: rc_option_editor.cc:158 msgid "Limit undo history to" msgstr "" -#: rc_option_editor.cc:161 +#: rc_option_editor.cc:159 msgid "Save undo history of" msgstr "" -#: rc_option_editor.cc:321 rc_option_editor.cc:347 rc_option_editor.cc:374 +#: rc_option_editor.cc:168 rc_option_editor.cc:175 +msgid "commands" +msgstr "" + +#: rc_option_editor.cc:313 +msgid "Edit using:" +msgstr "" + +#: rc_option_editor.cc:319 rc_option_editor.cc:345 rc_option_editor.cc:372 msgid "+ button" msgstr "+ κουμπί" -#: rc_option_editor.cc:411 +#: rc_option_editor.cc:339 +msgid "Delete using:" +msgstr "" + +#: rc_option_editor.cc:366 +msgid "Insert note using:" +msgstr "" + +#: rc_option_editor.cc:393 +msgid "Ignore snap using:" +msgstr "" + +#: rc_option_editor.cc:409 msgid "Keyboard layout:" msgstr "" -#: rc_option_editor.cc:534 +#: rc_option_editor.cc:532 msgid "Font scaling:" msgstr "" -#: rc_option_editor.cc:586 +#: rc_option_editor.cc:584 msgid "Playback (seconds of buffering):" msgstr "" -#: rc_option_editor.cc:599 +#: rc_option_editor.cc:597 msgid "Recording (seconds of buffering):" msgstr "" -#: rc_option_editor.cc:660 +#: rc_option_editor.cc:654 +msgid "Control Surface Protocol" +msgstr "" + +#: rc_option_editor.cc:658 msgid "Feedback" msgstr "" -#: rc_option_editor.cc:665 +#: rc_option_editor.cc:663 msgid "Double-click on a name to edit settings for an enabled protocol" msgstr "" -#: rc_option_editor.cc:817 +#: rc_option_editor.cc:815 msgid "Show Video Export Info before export" msgstr "" -#: rc_option_editor.cc:818 +#: rc_option_editor.cc:816 msgid "Show Video Server Startup Dialog" msgstr "" -#: rc_option_editor.cc:819 +#: rc_option_editor.cc:817 msgid "Advanced Setup (remote video server)" msgstr "" -#: rc_option_editor.cc:827 +#: rc_option_editor.cc:825 msgid "" "When enabled you can speficify a custom video-server URL and docroot. " "- Do not enable this option unless you know what you are doing." msgstr "" -#: rc_option_editor.cc:829 +#: rc_option_editor.cc:827 msgid "Video Server URL:" msgstr "" -#: rc_option_editor.cc:834 +#: rc_option_editor.cc:832 msgid "" "Base URL of the video-server including http prefix. This is usually 'http://" "hostname.example.org:1554/' and defaults to 'http://localhost:1554/' when " "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:841 +#: rc_option_editor.cc:834 +msgid "Video Folder:" +msgstr "" + +#: rc_option_editor.cc:839 msgid "" "Local path to the video-server document-root. Only files below this " "directory will be accessible by the video-server. If the server run on a " @@ -4862,77 +8477,113 @@ msgid "" "monitor and file-browsing when opening/adding a video file." msgstr "" -#: rc_option_editor.cc:848 +#: rc_option_editor.cc:846 msgid "" "When enabled an information window with details is displayed before " "the video-export dialog." msgstr "" -#: rc_option_editor.cc:853 +#: rc_option_editor.cc:851 msgid "" "When enabled the video server is never launched automatically without " "confirmation" msgstr "" -#: rc_option_editor.cc:993 +#: rc_option_editor.cc:991 msgid "%1 Preferences" msgstr "" -#: rc_option_editor.cc:1004 +#: rc_option_editor.cc:1002 msgid "DSP CPU Utilization" msgstr "" -#: rc_option_editor.cc:1008 +#: rc_option_editor.cc:1006 msgid "Signal processing uses" msgstr "" -#: rc_option_editor.cc:1013 +#: rc_option_editor.cc:1011 msgid "all but one processor" msgstr "" -#: rc_option_editor.cc:1017 +#: rc_option_editor.cc:1012 +msgid "all available processors" +msgstr "" + +#: rc_option_editor.cc:1015 msgid "%1 processors" msgstr "" -#: rc_option_editor.cc:1020 +#: rc_option_editor.cc:1018 msgid "This setting will only take effect when %1 is restarted." msgstr "" -#: rc_option_editor.cc:1040 +#: rc_option_editor.cc:1023 +msgid "Options|Undo" +msgstr "" + +#: rc_option_editor.cc:1030 +msgid "Verify removal of last capture" +msgstr "" + +#: rc_option_editor.cc:1038 msgid "Make periodic backups of the session file" msgstr "" -#: rc_option_editor.cc:1050 +#: rc_option_editor.cc:1043 +msgid "Session Management" +msgstr "" + +#: rc_option_editor.cc:1048 msgid "Always copy imported files" msgstr "" -#: rc_option_editor.cc:1065 +#: rc_option_editor.cc:1055 +msgid "Default folder for new sessions:" +msgstr "" + +#: rc_option_editor.cc:1063 msgid "Maximum number of recent sessions" msgstr "" -#: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 +#: rc_option_editor.cc:1076 +msgid "Click gain level" +msgstr "" + +#: rc_option_editor.cc:1081 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "Αυτοματισμός" -#: rc_option_editor.cc:1088 +#: rc_option_editor.cc:1086 msgid "Thinning factor (larger value => less data)" msgstr "" -#: rc_option_editor.cc:1097 +#: rc_option_editor.cc:1095 msgid "Automation sampling interval (milliseconds)" msgstr "" -#: rc_option_editor.cc:1123 +#: rc_option_editor.cc:1107 +msgid "Keep record-enable engaged on stop" +msgstr "" + +#: rc_option_editor.cc:1116 +msgid "Stop recording when an xrun occurs" +msgstr "" + +#: rc_option_editor.cc:1121 msgid "" "When enabled %1 will stop recording if an over- or underrun is " "detected by the audio engine" msgstr "" -#: rc_option_editor.cc:1129 +#: rc_option_editor.cc:1127 msgid "Create markers where xruns occur" msgstr "" -#: rc_option_editor.cc:1143 +#: rc_option_editor.cc:1136 +msgid "Stop at the end of the session" +msgstr "" + +#: rc_option_editor.cc:1141 msgid "" "When enabled if %1 is not recording, it will stop the " "transport when it reaches the current session end marker\n" @@ -4941,11 +8592,11 @@ msgid "" "all times" msgstr "" -#: rc_option_editor.cc:1151 -msgid "Do seamless looping (not possible when slaved to MTC, JACK etc)" +#: rc_option_editor.cc:1149 +msgid "Do seamless looping (not possible when slaved to MTC, LTC etc)" msgstr "" -#: rc_option_editor.cc:1156 +#: rc_option_editor.cc:1154 msgid "" "When enabled this will loop by reading ahead and wrapping around at " "the loop point, preventing any need to do a transport locate at the end of " @@ -4955,35 +8606,39 @@ msgid "" "loop when %1 reaches the end which will often cause a small click or delay" msgstr "" -#: rc_option_editor.cc:1164 +#: rc_option_editor.cc:1162 msgid "Disable per-track record disarm while rolling" msgstr "" -#: rc_option_editor.cc:1168 +#: rc_option_editor.cc:1166 msgid "" "When enabled this will prevent you from accidentally stopping " "specific tracks recording during a take" msgstr "" -#: rc_option_editor.cc:1173 +#: rc_option_editor.cc:1171 msgid "12dB gain reduction during fast-forward and fast-rewind" msgstr "" -#: rc_option_editor.cc:1177 +#: rc_option_editor.cc:1175 msgid "" "This will reduce the unpleasant increase in perceived volume that occurs " "when fast-forwarding or rewinding through some kinds of audio" msgstr "" -#: rc_option_editor.cc:1181 +#: rc_option_editor.cc:1179 msgid "Sync/Slave" msgstr "" -#: rc_option_editor.cc:1195 +#: rc_option_editor.cc:1183 +msgid "External timecode source" +msgstr "" + +#: rc_option_editor.cc:1193 msgid "Match session video frame rate to external timecode" msgstr "" -#: rc_option_editor.cc:1201 +#: rc_option_editor.cc:1199 msgid "" "This option controls the value of the video frame rate while chasing " "an external timecode source.\n" @@ -4997,17 +8652,21 @@ msgid "" "external timecode standard and the session standard." msgstr "" -#: rc_option_editor.cc:1217 +#: rc_option_editor.cc:1209 +msgid "External timecode is sync locked" +msgstr "" + +#: rc_option_editor.cc:1215 msgid "" "When enabled indicates that the selected external timecode source " "shares sync (Black & Burst, Wordclock, etc) with the audio interface." msgstr "" -#: rc_option_editor.cc:1224 +#: rc_option_editor.cc:1222 msgid "Lock to 29.9700 fps instead of 30000/1001" msgstr "" -#: rc_option_editor.cc:1230 +#: rc_option_editor.cc:1228 msgid "" "When enabled the external timecode source is assumed to use 29.97 fps " "instead of 30000/1001.\n" @@ -5020,99 +8679,139 @@ msgid "" "variant of using exactly 29.97 fps has zero timecode drift.\n" msgstr "" -#: rc_option_editor.cc:1240 +#: rc_option_editor.cc:1238 msgid "LTC Reader" msgstr "" -#: rc_option_editor.cc:1244 +#: rc_option_editor.cc:1242 msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1269 +#: rc_option_editor.cc:1255 +msgid "LTC Generator" +msgstr "" + +#: rc_option_editor.cc:1260 +msgid "Enable LTC generator" +msgstr "" + +#: rc_option_editor.cc:1267 msgid "send LTC while stopped" msgstr "" -#: rc_option_editor.cc:1275 +#: rc_option_editor.cc:1273 msgid "" "When enabled %1 will continue to send LTC information even when the " "transport (playhead) is not moving" msgstr "" -#: rc_option_editor.cc:1285 +#: rc_option_editor.cc:1279 +msgid "LTC generator level" +msgstr "" + +#: rc_option_editor.cc:1283 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " "is 0dBu ^= -18dbFS in an EBU calibrated system" msgstr "" -#: rc_option_editor.cc:1305 +#: rc_option_editor.cc:1295 +msgid "Link selection of regions and tracks" +msgstr "" + +#: rc_option_editor.cc:1303 msgid "Move relevant automation when audio regions are moved" msgstr "" -#: rc_option_editor.cc:1313 +#: rc_option_editor.cc:1311 msgid "Show meters on tracks in the editor" msgstr "" -#: rc_option_editor.cc:1321 +#: rc_option_editor.cc:1319 msgid "Display master-meter in the toolbar" msgstr "" -#: rc_option_editor.cc:1328 +#: rc_option_editor.cc:1326 msgid "Regions in active edit groups are edited together" msgstr "" -#: rc_option_editor.cc:1329 +#: rc_option_editor.cc:1327 msgid "whenever they overlap in time" msgstr "" -#: rc_option_editor.cc:1330 +#: rc_option_editor.cc:1328 msgid "only if they have identical length, position and origin" msgstr "" -#: rc_option_editor.cc:1340 +#: rc_option_editor.cc:1338 msgid "Make rubberband selection rectangle snap to the grid" msgstr "" -#: rc_option_editor.cc:1357 +#: rc_option_editor.cc:1346 +msgid "Show waveforms in regions" +msgstr "" + +#: rc_option_editor.cc:1354 +msgid "Show gain envelopes in audio regions" +msgstr "" + +#: rc_option_editor.cc:1355 msgid "in all modes" msgstr "" -#: rc_option_editor.cc:1358 +#: rc_option_editor.cc:1356 msgid "only in region gain mode" msgstr "" -#: rc_option_editor.cc:1370 +#: rc_option_editor.cc:1363 +msgid "Waveform scale" +msgstr "" + +#: rc_option_editor.cc:1368 msgid "linear" msgstr "γÏαμμική" -#: rc_option_editor.cc:1371 +#: rc_option_editor.cc:1369 msgid "logarithmic" msgstr "" -#: rc_option_editor.cc:1390 +#: rc_option_editor.cc:1375 +msgid "Waveform shape" +msgstr "" + +#: rc_option_editor.cc:1380 +msgid "traditional" +msgstr "" + +#: rc_option_editor.cc:1381 +msgid "rectified" +msgstr "" + +#: rc_option_editor.cc:1388 msgid "Show waveforms for audio while it is being recorded" msgstr "" -#: rc_option_editor.cc:1398 +#: rc_option_editor.cc:1396 msgid "Show zoom toolbar" msgstr "" -#: rc_option_editor.cc:1406 +#: rc_option_editor.cc:1404 msgid "Color regions using their track's color" msgstr "" -#: rc_option_editor.cc:1414 +#: rc_option_editor.cc:1412 msgid "Update editor window during drags of the summary" msgstr "" -#: rc_option_editor.cc:1422 -msgid "Synchronise editor and mixer track order" -msgstr "" - -#: rc_option_editor.cc:1430 +#: rc_option_editor.cc:1420 msgid "Synchronise editor and mixer selection" msgstr "" -#: rc_option_editor.cc:1443 +#: rc_option_editor.cc:1427 +msgid "Name new markers" +msgstr "" + +#: rc_option_editor.cc:1433 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " "be set as it is created.\n" @@ -5120,294 +8819,414 @@ msgid "" "You can always rename markers by right-clicking on them" msgstr "" -#: rc_option_editor.cc:1449 +#: rc_option_editor.cc:1439 msgid "Auto-scroll editor window when dragging near its edges" msgstr "" -#: rc_option_editor.cc:1456 +#: rc_option_editor.cc:1446 msgid "Buffering" msgstr "" -#: rc_option_editor.cc:1488 +#: rc_option_editor.cc:1454 +msgid "Record monitoring handled by" +msgstr "" + +#: rc_option_editor.cc:1460 +msgid "via Audio Driver" +msgstr "" + +#: rc_option_editor.cc:1463 +msgid "ardour" +msgstr "" + +#: rc_option_editor.cc:1464 +msgid "audio hardware" +msgstr "" + +#: rc_option_editor.cc:1471 +msgid "Tape machine mode" +msgstr "" + +#: rc_option_editor.cc:1476 msgid "Connection of tracks and busses" msgstr "" -#: rc_option_editor.cc:1493 +#: rc_option_editor.cc:1481 msgid "Auto-connect master/monitor busses" msgstr "" -#: rc_option_editor.cc:1506 rc_option_editor.cc:1519 +#: rc_option_editor.cc:1488 +msgid "Connect track inputs" +msgstr "" + +#: rc_option_editor.cc:1493 +msgid "automatically to physical inputs" +msgstr "" + +#: rc_option_editor.cc:1494 rc_option_editor.cc:1507 msgid "manually" msgstr "" -#: rc_option_editor.cc:1528 +#: rc_option_editor.cc:1500 +msgid "Connect track and bus outputs" +msgstr "" + +#: rc_option_editor.cc:1505 +msgid "automatically to physical outputs" +msgstr "" + +#: rc_option_editor.cc:1506 +msgid "automatically to master bus" +msgstr "" + +#: rc_option_editor.cc:1511 +msgid "Denormals" +msgstr "" + +#: rc_option_editor.cc:1516 msgid "Use DC bias to protect against denormals" msgstr "" -#: rc_option_editor.cc:1535 +#: rc_option_editor.cc:1523 msgid "Processor handling" msgstr "" -#: rc_option_editor.cc:1540 +#: rc_option_editor.cc:1528 msgid "no processor handling" msgstr "" -#: rc_option_editor.cc:1545 +#: rc_option_editor.cc:1533 msgid "use FlushToZero" msgstr "" -#: rc_option_editor.cc:1549 +#: rc_option_editor.cc:1537 msgid "use DenormalsAreZero" msgstr "" -#: rc_option_editor.cc:1553 +#: rc_option_editor.cc:1541 msgid "use FlushToZero and DenormalsAreZero" msgstr "" -#: rc_option_editor.cc:1571 +#: rc_option_editor.cc:1551 +msgid "Silence plugins when the transport is stopped" +msgstr "" + +#: rc_option_editor.cc:1559 msgid "Make new plugins active" msgstr "" -#: rc_option_editor.cc:1579 +#: rc_option_editor.cc:1567 msgid "Enable automatic analysis of audio" msgstr "" -#: rc_option_editor.cc:1597 +#: rc_option_editor.cc:1575 +msgid "Replicate missing region channels" +msgstr "" + +#: rc_option_editor.cc:1582 rc_option_editor.cc:1597 rc_option_editor.cc:1609 +#: rc_option_editor.cc:1621 rc_option_editor.cc:1633 rc_option_editor.cc:1637 +#: rc_option_editor.cc:1645 rc_option_editor.cc:1653 rc_option_editor.cc:1661 +#: rc_option_editor.cc:1663 rc_option_editor.cc:1671 rc_option_editor.cc:1679 +#: rc_option_editor.cc:1687 +msgid "Solo / mute" +msgstr "" + +#: rc_option_editor.cc:1585 msgid "Solo-in-place mute cut (dB)" msgstr "" -#: rc_option_editor.cc:1604 +#: rc_option_editor.cc:1592 msgid "Solo controls are Listen controls" msgstr "" -#: rc_option_editor.cc:1618 +#: rc_option_editor.cc:1601 +msgid "Listen Position" +msgstr "" + +#: rc_option_editor.cc:1606 msgid "after-fader (AFL)" msgstr "" -#: rc_option_editor.cc:1625 +#: rc_option_editor.cc:1607 +msgid "pre-fader (PFL)" +msgstr "" + +#: rc_option_editor.cc:1613 msgid "PFL signals come from" msgstr "" -#: rc_option_editor.cc:1631 +#: rc_option_editor.cc:1618 +msgid "before pre-fader processors" +msgstr "" + +#: rc_option_editor.cc:1619 msgid "pre-fader but after pre-fader processors" msgstr "" -#: rc_option_editor.cc:1637 +#: rc_option_editor.cc:1625 msgid "AFL signals come from" msgstr "" -#: rc_option_editor.cc:1652 +#: rc_option_editor.cc:1630 +msgid "immediately post-fader" +msgstr "" + +#: rc_option_editor.cc:1631 +msgid "after post-fader processors (before pan)" +msgstr "" + +#: rc_option_editor.cc:1640 msgid "Exclusive solo" msgstr "" -#: rc_option_editor.cc:1668 +#: rc_option_editor.cc:1648 +msgid "Show solo muting" +msgstr "" + +#: rc_option_editor.cc:1656 msgid "Soloing overrides muting" msgstr "" -#: rc_option_editor.cc:1678 +#: rc_option_editor.cc:1661 +msgid "Default track / bus muting options" +msgstr "" + +#: rc_option_editor.cc:1666 msgid "Mute affects pre-fader sends" msgstr "" -#: rc_option_editor.cc:1686 +#: rc_option_editor.cc:1674 msgid "Mute affects post-fader sends" msgstr "" -#: rc_option_editor.cc:1702 +#: rc_option_editor.cc:1682 +msgid "Mute affects control outputs" +msgstr "" + +#: rc_option_editor.cc:1690 msgid "Mute affects main outputs" msgstr "" -#: rc_option_editor.cc:1726 +#: rc_option_editor.cc:1706 +msgid "Send MIDI Time Code" +msgstr "" + +#: rc_option_editor.cc:1714 msgid "Percentage either side of normal transport speed to transmit MTC" msgstr "" -#: rc_option_editor.cc:1735 +#: rc_option_editor.cc:1723 msgid "Obey MIDI Machine Control commands" msgstr "" -#: rc_option_editor.cc:1743 +#: rc_option_editor.cc:1731 msgid "Send MIDI Machine Control commands" msgstr "" -#: rc_option_editor.cc:1759 +#: rc_option_editor.cc:1739 +msgid "Send MIDI control feedback" +msgstr "" + +#: rc_option_editor.cc:1747 msgid "Inbound MMC device ID" msgstr "" -#: rc_option_editor.cc:1768 +#: rc_option_editor.cc:1756 msgid "Outbound MMC device ID" msgstr "" -#: rc_option_editor.cc:1777 +#: rc_option_editor.cc:1765 msgid "Initial program change" msgstr "" -#: rc_option_editor.cc:1786 +#: rc_option_editor.cc:1774 msgid "Display first MIDI bank/program as 0" msgstr "" -#: rc_option_editor.cc:1794 +#: rc_option_editor.cc:1782 msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "" -#: rc_option_editor.cc:1813 +#: rc_option_editor.cc:1790 +msgid "Sound MIDI notes as they are selected" +msgstr "" + +#: rc_option_editor.cc:1798 rc_option_editor.cc:1808 rc_option_editor.cc:1810 +msgid "User interaction" +msgstr "" + +#: rc_option_editor.cc:1801 msgid "" "Use translations of %1 messages\n" " (requires a restart of %1 to take effect)\n" " (if available for your language preferences)" msgstr "" -#: rc_option_editor.cc:1820 +#: rc_option_editor.cc:1808 msgid "Keyboard" msgstr "" -#: rc_option_editor.cc:1835 +#: rc_option_editor.cc:1818 +msgid "Control surface remote ID" +msgstr "" + +#: rc_option_editor.cc:1823 msgid "assigned by user" msgstr "" -#: rc_option_editor.cc:1836 +#: rc_option_editor.cc:1824 msgid "follows order of mixer" msgstr "" -#: rc_option_editor.cc:1837 -msgid "follows order of editor" -msgstr "" - -#: rc_option_editor.cc:1846 rc_option_editor.cc:1854 rc_option_editor.cc:1864 -#: rc_option_editor.cc:1885 rc_option_editor.cc:1894 rc_option_editor.cc:1902 -#: rc_option_editor.cc:1916 rc_option_editor.cc:1935 rc_option_editor.cc:1951 -#: rc_option_editor.cc:1967 rc_option_editor.cc:1981 rc_option_editor.cc:1995 -#: rc_option_editor.cc:1997 +#: rc_option_editor.cc:1833 rc_option_editor.cc:1841 rc_option_editor.cc:1851 +#: rc_option_editor.cc:1872 rc_option_editor.cc:1881 rc_option_editor.cc:1889 +#: rc_option_editor.cc:1903 rc_option_editor.cc:1922 rc_option_editor.cc:1938 +#: rc_option_editor.cc:1954 rc_option_editor.cc:1968 rc_option_editor.cc:1982 +#: rc_option_editor.cc:1984 msgid "Preferences|GUI" msgstr "" -#: rc_option_editor.cc:1849 +#: rc_option_editor.cc:1836 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "" -#: rc_option_editor.cc:1857 +#: rc_option_editor.cc:1844 msgid "Show tooltips if mouse hovers over a control" msgstr "" -#: rc_option_editor.cc:1867 +#: rc_option_editor.cc:1854 msgid "GUI" msgstr "" -#: rc_option_editor.cc:1870 +#: rc_option_editor.cc:1857 msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" -#: rc_option_editor.cc:1912 +#: rc_option_editor.cc:1874 +msgid "Mixer Strip" +msgstr "" + +#: rc_option_editor.cc:1884 +msgid "Use narrow strips in the mixer by default" +msgstr "" + +#: rc_option_editor.cc:1893 +msgid "Peak hold time" +msgstr "" + +#: rc_option_editor.cc:1899 msgid "short" msgstr "" -#: rc_option_editor.cc:1913 +#: rc_option_editor.cc:1900 msgid "medium" msgstr "" -#: rc_option_editor.cc:1914 +#: rc_option_editor.cc:1901 msgid "long" msgstr "" -#: rc_option_editor.cc:1920 +#: rc_option_editor.cc:1907 msgid "DPM fall-off" msgstr "" -#: rc_option_editor.cc:1926 +#: rc_option_editor.cc:1913 msgid "slowest [6.6dB/sec]" msgstr "" -#: rc_option_editor.cc:1927 +#: rc_option_editor.cc:1914 msgid "slow [8.6dB/sec] (BBC PPM, EBU PPM)" msgstr "" -#: rc_option_editor.cc:1928 +#: rc_option_editor.cc:1915 msgid "slowish [12.0dB/sec] (DIN)" msgstr "" -#: rc_option_editor.cc:1929 +#: rc_option_editor.cc:1916 msgid "moderate [13.3dB/sec] (EBU Digi PPM, IRT Digi PPM)" msgstr "" -#: rc_option_editor.cc:1930 +#: rc_option_editor.cc:1917 msgid "medium [20dB/sec]" msgstr "" -#: rc_option_editor.cc:1931 +#: rc_option_editor.cc:1918 msgid "fast [32dB/sec]" msgstr "" -#: rc_option_editor.cc:1932 +#: rc_option_editor.cc:1919 msgid "faster [46dB/sec]" msgstr "" -#: rc_option_editor.cc:1933 +#: rc_option_editor.cc:1920 msgid "fastest [70dB/sec]" msgstr "" -#: rc_option_editor.cc:1939 +#: rc_option_editor.cc:1926 msgid "Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1944 rc_option_editor.cc:1960 +#: rc_option_editor.cc:1931 rc_option_editor.cc:1947 msgid "-24dBFS (SMPTE US: 4dBu = -20dBFS)" msgstr "" -#: rc_option_editor.cc:1945 rc_option_editor.cc:1961 +#: rc_option_editor.cc:1932 rc_option_editor.cc:1948 msgid "-20dBFS (SMPTE RP.0155)" msgstr "" -#: rc_option_editor.cc:1946 rc_option_editor.cc:1962 +#: rc_option_editor.cc:1933 rc_option_editor.cc:1949 msgid "-18dBFS (EBU, BBC)" msgstr "" -#: rc_option_editor.cc:1947 rc_option_editor.cc:1963 +#: rc_option_editor.cc:1934 rc_option_editor.cc:1950 msgid "-15dBFS (DIN)" msgstr "" -#: rc_option_editor.cc:1949 +#: rc_option_editor.cc:1936 msgid "" "Configure meter-marks and color-knee point for dBFS scale DPM, set reference " "level for IEC1/Nordic, IEC2 PPM and VU meter." msgstr "" -#: rc_option_editor.cc:1955 +#: rc_option_editor.cc:1942 msgid "IEC1/DIN Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1965 +#: rc_option_editor.cc:1952 msgid "Reference level for IEC1/DIN meter." msgstr "" -#: rc_option_editor.cc:1971 +#: rc_option_editor.cc:1958 msgid "VU Meter standard" msgstr "" -#: rc_option_editor.cc:1976 +#: rc_option_editor.cc:1963 msgid "0VU = -2dBu (France)" msgstr "" -#: rc_option_editor.cc:1977 +#: rc_option_editor.cc:1964 msgid "0VU = 0dBu (North America, Australia)" msgstr "" -#: rc_option_editor.cc:1978 +#: rc_option_editor.cc:1965 msgid "0VU = +4dBu (standard)" msgstr "" -#: rc_option_editor.cc:1979 +#: rc_option_editor.cc:1966 msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1985 +#: rc_option_editor.cc:1972 msgid "Peak threshold [dBFS]" msgstr "" -#: rc_option_editor.cc:1993 +#: rc_option_editor.cc:1980 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " "indicator will flash red." msgstr "" -#: rc_option_editor.cc:2000 +#: rc_option_editor.cc:1987 msgid "LED meter style" msgstr "" @@ -5415,6 +9234,10 @@ msgstr "" msgid "audition this region" msgstr "ακÏόαση της πεÏιοχής" +#: region_editor.cc:88 region_layering_order_editor.cc:74 +msgid "Position:" +msgstr "" + #: region_editor.cc:90 add_video_dialog.cc:170 msgid "End:" msgstr "Τέλος:" @@ -5443,10 +9266,54 @@ msgstr "" msgid "Source:" msgstr "" +#: region_editor.cc:166 +msgid "Region '%1'" +msgstr "" + +#: region_editor.cc:273 +msgid "change region start position" +msgstr "" + +#: region_editor.cc:289 +msgid "change region end position" +msgstr "" + +#: region_editor.cc:309 +msgid "change region length" +msgstr "" + +#: region_editor.cc:403 region_editor.cc:415 +msgid "change region sync point" +msgstr "" + +#: region_layering_order_editor.cc:41 +msgid "RegionLayeringOrderEditor" +msgstr "" + +#: region_layering_order_editor.cc:54 +msgid "Region Name" +msgstr "" + +#: region_layering_order_editor.cc:71 +msgid "Track:" +msgstr "" + +#: region_layering_order_editor.cc:103 +msgid "Choose Top Region" +msgstr "" + #: region_view.cc:274 msgid "SilenceText" msgstr "" +#: region_view.cc:290 region_view.cc:309 +msgid "minutes" +msgstr "" + +#: region_view.cc:293 region_view.cc:312 +msgid "msecs" +msgstr "" + #: region_view.cc:296 region_view.cc:315 msgid "secs" msgstr "" @@ -5495,6 +9362,10 @@ msgstr "" msgid "Complex Domain" msgstr "" +#: rhythm_ferret.cc:59 +msgid "Phase Deviation" +msgstr "" + #: rhythm_ferret.cc:60 msgid "Kullback-Liebler" msgstr "" @@ -5503,10 +9374,30 @@ msgstr "" msgid "Modified Kullback-Liebler" msgstr "" +#: rhythm_ferret.cc:66 +msgid "Split region" +msgstr "" + +#: rhythm_ferret.cc:67 +msgid "Snap regions" +msgstr "" + +#: rhythm_ferret.cc:68 +msgid "Conform regions" +msgstr "" + #: rhythm_ferret.cc:73 msgid "Rhythm Ferret" msgstr "" +#: rhythm_ferret.cc:79 +msgid "Analyze" +msgstr "" + +#: rhythm_ferret.cc:114 +msgid "Detection function" +msgstr "" + #: rhythm_ferret.cc:118 msgid "Trigger gap" msgstr "" @@ -5527,6 +9418,10 @@ msgstr "" msgid "Sensitivity" msgstr "" +#: rhythm_ferret.cc:142 +msgid "Operation" +msgstr "" + #: rhythm_ferret.cc:356 msgid "split regions (rhythm ferret)" msgstr "" @@ -5535,10 +9430,42 @@ msgstr "" msgid "Track/bus Group" msgstr "" +#: route_group_dialog.cc:41 +msgid "Relative" +msgstr "" + +#: route_group_dialog.cc:42 +msgid "Muting" +msgstr "" + +#: route_group_dialog.cc:43 +msgid "Soloing" +msgstr "" + +#: route_group_dialog.cc:44 +msgid "Record enable" +msgstr "" + +#: route_group_dialog.cc:45 time_info_box.cc:66 +msgid "Selection" +msgstr "" + +#: route_group_dialog.cc:46 +msgid "Active state" +msgstr "" + #: route_group_dialog.cc:47 route_group_dialog.cc:76 theme_manager.cc:71 msgid "Color" msgstr "ΧÏώμα" +#: route_group_dialog.cc:53 +msgid "RouteGroupDialog" +msgstr "" + +#: route_group_dialog.cc:92 +msgid "Sharing" +msgstr "" + #: route_group_dialog.cc:182 msgid "" "A route group of this name already exists. Please use a different name." @@ -5573,6 +9500,10 @@ msgstr "" msgid "NO TRACK" msgstr "Κανένα κανάλι" +#: route_params_ui.cc:613 route_params_ui.cc:614 +msgid "No Track or Bus Selected" +msgstr "" + #: route_time_axis.cc:97 msgid "g" msgstr "g" @@ -5593,6 +9524,34 @@ msgstr "" msgid "Record" msgstr "ΕγγÏαφή" +#: route_time_axis.cc:210 +msgid "Route Group" +msgstr "" + +#: route_time_axis.cc:213 +msgid "MIDI Controllers and Automation" +msgstr "" + +#: route_time_axis.cc:390 +msgid "Show All Automation" +msgstr "" + +#: route_time_axis.cc:393 +msgid "Show Existing Automation" +msgstr "" + +#: route_time_axis.cc:396 +msgid "Hide All Automation" +msgstr "" + +#: route_time_axis.cc:405 +msgid "Processor automation" +msgstr "" + +#: route_time_axis.cc:424 +msgid "Color..." +msgstr "" + #: route_time_axis.cc:481 msgid "Overlaid" msgstr "" @@ -5601,14 +9560,94 @@ msgstr "" msgid "Stacked" msgstr "" +#: route_time_axis.cc:495 +msgid "Layers" +msgstr "" + +#: route_time_axis.cc:564 +msgid "Automatic (based on I/O connections)" +msgstr "" + +#: route_time_axis.cc:573 +msgid "(Currently: Existing Material)" +msgstr "" + +#: route_time_axis.cc:576 +msgid "(Currently: Capture Time)" +msgstr "" + +#: route_time_axis.cc:584 +msgid "Align With Existing Material" +msgstr "" + +#: route_time_axis.cc:589 +msgid "Align With Capture Time" +msgstr "" + +#: route_time_axis.cc:594 +msgid "Alignment" +msgstr "" + +#: route_time_axis.cc:629 +msgid "Normal Mode" +msgstr "" + +#: route_time_axis.cc:635 +msgid "Tape Mode" +msgstr "" + +#: route_time_axis.cc:641 +msgid "Non-Layered Mode" +msgstr "" + #: route_time_axis.cc:654 route_time_axis.cc:1601 msgid "Playlist" msgstr "Playlist" +#: route_time_axis.cc:979 +msgid "Rename Playlist" +msgstr "" + +#: route_time_axis.cc:980 +msgid "New name for playlist:" +msgstr "" + +#: route_time_axis.cc:1065 +msgid "New Copy Playlist" +msgstr "" + +#: route_time_axis.cc:1066 route_time_axis.cc:1119 +msgid "Name for new playlist:" +msgstr "" + +#: route_time_axis.cc:1118 +msgid "New Playlist" +msgstr "" + +#: route_time_axis.cc:1309 +msgid "You cannot create a track with that name as it is reserved for %1" +msgstr "" + +#: route_time_axis.cc:1490 +msgid "New Copy..." +msgstr "" + +#: route_time_axis.cc:1494 +msgid "New Take" +msgstr "" + +#: route_time_axis.cc:1495 +msgid "Copy Take" +msgstr "" + #: route_time_axis.cc:1500 msgid "Clear Current" msgstr "ΕκκαθάÏιση Ï„Ïέχοντος" +#: route_time_axis.cc:1503 +msgid "Select From All..." +msgstr "" + #: route_time_axis.cc:1591 msgid "Take: %1.%2" msgstr "" @@ -5617,10 +9656,22 @@ msgstr "" msgid "Underlays" msgstr "" +#: route_time_axis.cc:2294 +msgid "Remove \"%1\"" +msgstr "" + +#: route_time_axis.cc:2344 route_time_axis.cc:2381 +msgid "programming error: underlay reference pointer pairs are inconsistent!" +msgstr "" + #: route_time_axis.cc:2408 msgid "After-fade listen (AFL)" msgstr "" +#: route_time_axis.cc:2412 +msgid "Pre-fade listen (PFL)" +msgstr "" + #: route_time_axis.cc:2416 msgid "s" msgstr "s" @@ -5629,6 +9680,10 @@ msgstr "s" msgid "m" msgstr "m" +#: route_ui.cc:119 +msgid "Mute this track" +msgstr "" + #: route_ui.cc:123 msgid "Mute other (non-soloed) tracks" msgstr "" @@ -5641,14 +9696,58 @@ msgstr "" msgid "make mixer strips show sends to this bus" msgstr "" +#: route_ui.cc:138 +msgid "Monitor input" +msgstr "" + +#: route_ui.cc:144 +msgid "Monitor playback" +msgstr "" + +#: route_ui.cc:591 +msgid "Not connected to JACK - cannot engage record" +msgstr "" + +#: route_ui.cc:786 +msgid "Step Entry" +msgstr "" + #: route_ui.cc:859 msgid "Assign all tracks (prefader)" msgstr "" +#: route_ui.cc:863 +msgid "Assign all tracks and buses (prefader)" +msgstr "" + #: route_ui.cc:867 msgid "Assign all tracks (postfader)" msgstr "" +#: route_ui.cc:871 +msgid "Assign all tracks and buses (postfader)" +msgstr "" + +#: route_ui.cc:875 +msgid "Assign selected tracks (prefader)" +msgstr "" + +#: route_ui.cc:879 +msgid "Assign selected tracks and buses (prefader)" +msgstr "" + +#: route_ui.cc:882 +msgid "Assign selected tracks (postfader)" +msgstr "" + +#: route_ui.cc:886 +msgid "Assign selected tracks and buses (postfader)" +msgstr "" + +#: route_ui.cc:889 +msgid "Copy track/bus gains to sends" +msgstr "" + #: route_ui.cc:890 msgid "Set sends gain to -inf" msgstr "" @@ -5677,12 +9776,44 @@ msgstr "Control Outs" msgid "Main Outs" msgstr "Main Outs" +#: route_ui.cc:1390 +msgid "Color Selection" +msgstr "" + +#: route_ui.cc:1477 +msgid "" +"Do you really want to remove track \"%1\" ?\n" +"\n" +"You may also lose the playlist used by this track.\n" +"\n" +"(This action cannot be undone, and the session file will be overwritten)" +msgstr "" + +#: route_ui.cc:1479 +msgid "" +"Do you really want to remove bus \"%1\" ?\n" +"\n" +"(This action cannot be undone, and the session file will be overwritten)" +msgstr "" + +#: route_ui.cc:1487 +msgid "Remove track" +msgstr "" + +#: route_ui.cc:1489 +msgid "Remove bus" +msgstr "" + #: route_ui.cc:1516 msgid "" "The use of colons (':') is discouraged in track and bus names.\n" "Do you want to use this new name?" msgstr "" +#: route_ui.cc:1520 +msgid "Use the new name" +msgstr "" + #: route_ui.cc:1521 msgid "Re-edit the name" msgstr "" @@ -5691,6 +9822,10 @@ msgstr "" msgid "Rename Track" msgstr "Μετονομασία ΚαναλιοÏ" +#: route_ui.cc:1536 +msgid "Rename Bus" +msgstr "" + #: route_ui.cc:1695 msgid " latency" msgstr "" @@ -5699,10 +9834,22 @@ msgstr "" msgid "Cannot create route template directory %1" msgstr "" +#: route_ui.cc:1714 +msgid "Save As Template" +msgstr "" + +#: route_ui.cc:1715 +msgid "Template name:" +msgstr "" + #: route_ui.cc:1788 msgid "Remote Control ID" msgstr "" +#: route_ui.cc:1798 +msgid "Remote control ID:" +msgstr "" + #: route_ui.cc:1812 msgid "" "The remote control ID of %1 is: %2\n" @@ -5711,24 +9858,33 @@ msgid "" "The remote control ID of %3 cannot be changed." msgstr "" -#: route_ui.cc:1818 -msgid "" -"The remote control ID of %6 is: %3\n" -"\n" -"\n" -"Remote Control IDs are currently determined by track/bus ordering in %1\n" -"\n" -"%4Use the User Interaction tab of the Preferences window if you want to " -"change this%5" +#: route_ui.cc:1816 +msgid "the master bus" msgstr "" -#: route_ui.cc:1876 +#: route_ui.cc:1816 +msgid "the monitor bus" +msgstr "" + +#: route_ui.cc:1818 +msgid "" +"The remote control ID of %5 is: %2\n" +"\n" +"\n" +"Remote Control IDs are currently determined by track/bus ordering in " +"Ardour.\n" +"\n" +"%3Use the User Interaction tab of the Preferences window if you want to " +"change this%4" +msgstr "" + +#: route_ui.cc:1875 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " "to show menu." msgstr "" -#: route_ui.cc:1878 +#: route_ui.cc:1877 msgid "Click to show a menu of channels for inversion (phase reverse)" msgstr "" @@ -5736,10 +9892,150 @@ msgstr "" msgid "Select folder to search for media" msgstr "" +#: search_path_option.cc:44 +msgid "Click to add a new location" +msgstr "" + +#: search_path_option.cc:51 +msgid "the session folder" +msgstr "" + +#: send_ui.cc:126 +msgid "Send " +msgstr "" + +#: session_dialog.cc:66 +msgid "Session Setup" +msgstr "" + +#: session_dialog.cc:71 +msgid "Advanced options ..." +msgstr "" + +#: session_dialog.cc:267 +msgid "New Session" +msgstr "Îέα συνεδÏία" + +#: session_dialog.cc:305 +msgid "Check the website for more..." +msgstr "" + +#: session_dialog.cc:308 +msgid "Click to open the program website in your web browser" +msgstr "" + +#: session_dialog.cc:328 +msgid "Sample Rate" +msgstr "" + +#: session_dialog.cc:329 +msgid "Disk Format" +msgstr "" + +#: session_dialog.cc:347 +msgid "Select session file" +msgstr "" + +#: session_dialog.cc:362 +msgid "Other Sessions" +msgstr "" + +#: session_dialog.cc:388 +msgid "Open" +msgstr "" + +#: session_dialog.cc:455 +msgid "Session name:" +msgstr "" + +#: session_dialog.cc:477 +msgid "Create session folder in:" +msgstr "" + +#: session_dialog.cc:500 +msgid "Select folder for session" +msgstr "" + +#: session_dialog.cc:529 +msgid "Use this template" +msgstr "" + +#: session_dialog.cc:532 +msgid "no template" +msgstr "" + +#: session_dialog.cc:664 session_dialog.cc:696 +msgid "32 bit float" +msgstr "" + +#: session_dialog.cc:667 session_dialog.cc:699 +msgid "24 bit" +msgstr "" + +#: session_dialog.cc:670 session_dialog.cc:702 +msgid "16 bit" +msgstr "" + +#: session_dialog.cc:741 session_dialog.cc:742 session_dialog.cc:743 +msgid "channels" +msgstr "κανάλια" + +#: session_dialog.cc:757 +msgid "Busses" +msgstr "" + +#: session_dialog.cc:758 +msgid "Inputs" +msgstr "" + +#: session_dialog.cc:759 +msgid "Outputs" +msgstr "" + +#: session_dialog.cc:767 +msgid "Create master bus" +msgstr "" + +#: session_dialog.cc:777 +msgid "Automatically connect to physical inputs" +msgstr "" + +#: session_dialog.cc:784 session_dialog.cc:843 +msgid "Use only" +msgstr "" + +#: session_dialog.cc:837 +msgid "Automatically connect outputs" +msgstr "" + +#: session_dialog.cc:859 +msgid "... to master bus" +msgstr "" + +#: session_dialog.cc:869 +msgid "... to physical outputs" +msgstr "" + +#: session_import_dialog.cc:64 +msgid "Import from Session" +msgstr "" + +#: session_import_dialog.cc:73 +msgid "Elements" +msgstr "" + +#: session_import_dialog.cc:110 +msgid "Cannot load XML for session from %1" +msgstr "" + #: session_import_dialog.cc:127 session_import_dialog.cc:211 msgid "Some elements had errors in them. Please see the log for details" msgstr "" +#: session_import_dialog.cc:163 +msgid "Import from session" +msgstr "" + #: session_import_dialog.cc:227 msgid "This will select all elements of this type!" msgstr "" @@ -5764,6 +10060,10 @@ msgstr "" msgid "Web" msgstr "" +#: session_metadata_dialog.cc:534 +msgid "Organization" +msgstr "" + #: session_metadata_dialog.cc:537 msgid "Country" msgstr "" @@ -5792,6 +10092,14 @@ msgstr "" msgid "Genre" msgstr "" +#: session_metadata_dialog.cc:569 +msgid "Comment" +msgstr "" + +#: session_metadata_dialog.cc:572 +msgid "Copyright" +msgstr "" + #: session_metadata_dialog.cc:580 session_metadata_dialog.cc:585 msgid "Album" msgstr "" @@ -5804,6 +10112,10 @@ msgstr "" msgid "Album Artist" msgstr "" +#: session_metadata_dialog.cc:594 +msgid "Total Tracks" +msgstr "" + #: session_metadata_dialog.cc:597 msgid "Disc Subtitle" msgstr "" @@ -5816,6 +10128,10 @@ msgstr "" msgid "Total Discs" msgstr "" +#: session_metadata_dialog.cc:606 +msgid "Compilation" +msgstr "" + #: session_metadata_dialog.cc:609 msgid "ISRC" msgstr "" @@ -5836,6 +10152,14 @@ msgstr "" msgid "Conductor" msgstr "" +#: session_metadata_dialog.cc:631 +msgid "Remixer" +msgstr "" + +#: session_metadata_dialog.cc:634 +msgid "Arranger" +msgstr "" + #: session_metadata_dialog.cc:637 msgid "Engineer" msgstr "" @@ -5844,6 +10168,10 @@ msgstr "" msgid "Producer" msgstr "" +#: session_metadata_dialog.cc:643 +msgid "DJ Mixer" +msgstr "" + #: session_metadata_dialog.cc:646 msgid "Metadata|Mixer" msgstr "" @@ -5864,10 +10192,18 @@ msgstr "" msgid "Edit Session Metadata" msgstr "" +#: session_metadata_dialog.cc:701 +msgid "Import session metadata" +msgstr "" + #: session_metadata_dialog.cc:722 msgid "Choose session to import metadata from" msgstr "" +#: session_metadata_dialog.cc:760 +msgid "This session file could not be read!" +msgstr "" + #: session_metadata_dialog.cc:770 msgid "" "The session file didn't contain metadata!\n" @@ -5878,6 +10214,14 @@ msgstr "" msgid "Import all from:" msgstr "" +#: session_option_editor.cc:32 +msgid "Session Properties" +msgstr "" + +#: session_option_editor.cc:41 +msgid "Timecode Settings" +msgstr "" + #: session_option_editor.cc:45 msgid "Timecode frames-per-second" msgstr "" @@ -5910,6 +10254,10 @@ msgstr "" msgid "30" msgstr "" +#: session_option_editor.cc:57 +msgid "30 drop" +msgstr "" + #: session_option_editor.cc:58 msgid "59.94" msgstr "" @@ -5969,10 +10317,22 @@ msgid "" "Apply Pull-Up/Down to Video Timeline and Video Monitor (Unless in JACK-sync)." msgstr "" +#: session_option_editor.cc:96 +msgid "Ext Timecode Offsets" +msgstr "" + +#: session_option_editor.cc:100 +msgid "Slave Timecode offset" +msgstr "" + #: session_option_editor.cc:107 msgid "The specified offset is added to the received timecode (MTC or LTC)." msgstr "" +#: session_option_editor.cc:113 +msgid "Timecode Generator offset" +msgstr "" + #: session_option_editor.cc:120 msgid "" "Specify an offset which is added to the generated timecode (so far only LTC)." @@ -5987,6 +10347,10 @@ msgid "" "%1 is JACK Time Master (provides Bar|Beat|Tick and other information to JACK)" msgstr "" +#: session_option_editor.cc:137 +msgid "Default crossfade type" +msgstr "" + #: session_option_editor.cc:142 msgid "Constant power (-3dB) crossfade" msgstr "" @@ -5999,12 +10363,36 @@ msgstr "" msgid "destructive-xfade-seconds" msgstr "" +#: session_option_editor.cc:149 +msgid "Destructive crossfade length" +msgstr "" + +#: session_option_editor.cc:158 +msgid "Region fades active" +msgstr "" + +#: session_option_editor.cc:165 +msgid "Region fades visible" +msgstr "" + #: session_option_editor.cc:172 session_option_editor.cc:185 #: session_option_editor.cc:199 session_option_editor.cc:201 #: session_option_editor.cc:207 session_option_editor.cc:214 msgid "Media" msgstr "" +#: session_option_editor.cc:172 +msgid "Audio file format" +msgstr "" + +#: session_option_editor.cc:176 +msgid "Sample format" +msgstr "" + +#: session_option_editor.cc:181 +msgid "32-bit floating point" +msgstr "" + #: session_option_editor.cc:182 msgid "24-bit integer" msgstr "" @@ -6017,6 +10405,10 @@ msgstr "" msgid "File type" msgstr "" +#: session_option_editor.cc:194 +msgid "Broadcast WAVE" +msgstr "" + #: session_option_editor.cc:195 msgid "WAVE" msgstr "" @@ -6025,6 +10417,10 @@ msgstr "" msgid "WAVE-64" msgstr "" +#: session_option_editor.cc:201 +msgid "File locations" +msgstr "" + #: session_option_editor.cc:203 msgid "Search for audio files in:" msgstr "" @@ -6038,6 +10434,10 @@ msgid "" "Track Input Monitoring automatically follows transport state (\"auto-input\")" msgstr "" +#: session_option_editor.cc:227 +msgid "Use monitor section in this session" +msgstr "" + #: session_option_editor.cc:238 msgid "MIDI region copies are independent" msgstr "" @@ -6084,18 +10484,90 @@ msgstr "" msgid "Glue new regions to bars and beats" msgstr "" +#: session_option_editor.cc:275 session_option_editor.cc:277 +#: session_option_editor.cc:284 session_option_editor.cc:291 +#: session_option_editor.cc:298 session_option_editor.cc:300 +#: session_option_editor.cc:307 session_option_editor.cc:314 +#: session_option_editor.cc:321 session_option_editor.cc:323 +msgid "Meterbridge" +msgstr "" + #: session_option_editor.cc:275 msgid "Route Display" msgstr "" +#: session_option_editor.cc:279 +msgid "Show Midi Tracks" +msgstr "" + +#: session_option_editor.cc:286 +msgid "Show Busses" +msgstr "" + +#: session_option_editor.cc:293 +msgid "Include Master Bus" +msgstr "" + #: session_option_editor.cc:298 msgid "Button Area" msgstr "" +#: session_option_editor.cc:302 +msgid "Rec-enable Button" +msgstr "" + +#: session_option_editor.cc:309 +msgid "Mute Button" +msgstr "" + +#: session_option_editor.cc:316 +msgid "Solo Button" +msgstr "" + #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" +#: session_option_editor.cc:325 +msgid "Track Name" +msgstr "" + +#: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 +msgid "as new tracks" +msgstr "" + +#: sfdb_ui.cc:88 sfdb_ui.cc:108 +msgid "to selected tracks" +msgstr "" + +#: sfdb_ui.cc:90 sfdb_ui.cc:110 +msgid "to region list" +msgstr "" + +#: sfdb_ui.cc:92 sfdb_ui.cc:112 +msgid "as new tape tracks" +msgstr "" + +#: sfdb_ui.cc:96 +msgid "programming error: unknown import mode string %1" +msgstr "" + +#: sfdb_ui.cc:123 +msgid "Auto-play" +msgstr "" + +#: sfdb_ui.cc:129 sfdb_ui.cc:236 +msgid "Sound File Information" +msgstr "" + +#: sfdb_ui.cc:141 +msgid "Timestamp:" +msgstr "" + +#: sfdb_ui.cc:143 +msgid "Format:" +msgstr "" + #: sfdb_ui.cc:182 sfdb_ui.cc:526 msgid "Tags:" msgstr "" @@ -6120,6 +10592,26 @@ msgstr "" msgid "Search" msgstr "" +#: sfdb_ui.cc:449 +msgid "Audio and MIDI files" +msgstr "" + +#: sfdb_ui.cc:452 +msgid "Audio files" +msgstr "" + +#: sfdb_ui.cc:455 +msgid "MIDI files" +msgstr "" + +#: sfdb_ui.cc:458 add_video_dialog.cc:132 +msgid "All files" +msgstr "" + +#: sfdb_ui.cc:477 add_video_dialog.cc:143 +msgid "Browse Files" +msgstr "" + #: sfdb_ui.cc:506 msgid "Paths" msgstr "Μονοπάτια" @@ -6128,10 +10620,22 @@ msgstr "Μονοπάτια" msgid "Search Tags" msgstr "" +#: sfdb_ui.cc:531 +msgid "Sort:" +msgstr "" + +#: sfdb_ui.cc:539 +msgid "Longest" +msgstr "" + #: sfdb_ui.cc:540 msgid "Shortest" msgstr "" +#: sfdb_ui.cc:541 +msgid "Newest" +msgstr "" + #: sfdb_ui.cc:542 msgid "Oldest" msgstr "" @@ -6140,6 +10644,10 @@ msgstr "" msgid "Most downloaded" msgstr "" +#: sfdb_ui.cc:544 +msgid "Least downloaded" +msgstr "" + #: sfdb_ui.cc:545 msgid "Highest rated" msgstr "" @@ -6156,6 +10664,26 @@ msgstr "" msgid "Similar" msgstr "" +#: sfdb_ui.cc:567 +msgid "ID" +msgstr "" + +#: sfdb_ui.cc:568 add_video_dialog.cc:84 +msgid "Filename" +msgstr "" + +#: sfdb_ui.cc:570 +msgid "Duration" +msgstr "" + +#: sfdb_ui.cc:571 +msgid "Size" +msgstr "" + +#: sfdb_ui.cc:572 +msgid "Samplerate" +msgstr "" + #: sfdb_ui.cc:573 msgid "License" msgstr "" @@ -6202,24 +10730,84 @@ msgstr "" msgid "MB" msgstr "" +#: sfdb_ui.cc:1086 +msgid "GB" +msgstr "" + #: sfdb_ui.cc:1298 sfdb_ui.cc:1606 sfdb_ui.cc:1656 sfdb_ui.cc:1674 msgid "one track per file" msgstr "" +#: sfdb_ui.cc:1301 sfdb_ui.cc:1657 sfdb_ui.cc:1675 +msgid "one track per channel" +msgstr "" + +#: sfdb_ui.cc:1309 sfdb_ui.cc:1659 sfdb_ui.cc:1676 +msgid "sequence files" +msgstr "" + #: sfdb_ui.cc:1312 sfdb_ui.cc:1664 msgid "all files in one track" msgstr "" +#: sfdb_ui.cc:1313 sfdb_ui.cc:1658 +msgid "merge files" +msgstr "" + +#: sfdb_ui.cc:1319 sfdb_ui.cc:1661 +msgid "one region per file" +msgstr "" + +#: sfdb_ui.cc:1322 sfdb_ui.cc:1662 +msgid "one region per channel" +msgstr "" + +#: sfdb_ui.cc:1327 sfdb_ui.cc:1663 sfdb_ui.cc:1677 +msgid "all files in one region" +msgstr "" + #: sfdb_ui.cc:1394 msgid "" "One or more of the selected files\n" "cannot be used by %1" msgstr "" +#: sfdb_ui.cc:1534 +msgid "Copy files to session" +msgstr "" + +#: sfdb_ui.cc:1551 sfdb_ui.cc:1714 +msgid "file timestamp" +msgstr "" + +#: sfdb_ui.cc:1552 sfdb_ui.cc:1716 +msgid "edit point" +msgstr "" + +#: sfdb_ui.cc:1553 sfdb_ui.cc:1718 +msgid "playhead" +msgstr "" + +#: sfdb_ui.cc:1554 +msgid "session start" +msgstr "" + #: sfdb_ui.cc:1559 msgid "Add files as ..." msgstr "" +#: sfdb_ui.cc:1581 +msgid "Insert at" +msgstr "" + +#: sfdb_ui.cc:1594 +msgid "Mapping" +msgstr "" + +#: sfdb_ui.cc:1612 +msgid "Conversion quality" +msgstr "" + #: sfdb_ui.cc:1624 sfdb_ui.cc:1730 msgid "Best" msgstr "" @@ -6236,6 +10824,14 @@ msgstr "" msgid "Fastest" msgstr "ΤαχÏτατο" +#: shuttle_control.cc:56 +msgid "Shuttle speed control (Context-click for options)" +msgstr "" + +#: shuttle_control.cc:165 +msgid "Percent" +msgstr "" + #: shuttle_control.cc:173 msgid "Units" msgstr "" @@ -6252,29 +10848,51 @@ msgstr "ΤÏοχός" msgid "Maximum speed" msgstr "μέγιστη ταχÏτητα" +#: shuttle_control.cc:561 +msgid "Playing" +msgstr "" + +#: shuttle_control.cc:576 +#, c-format +msgid "<<< %+d semitones" +msgstr "" + +#: shuttle_control.cc:578 +#, c-format +msgid ">>> %+d semitones" +msgstr "" + +#: shuttle_control.cc:583 +msgid "Stopped" +msgstr "" + #: splash.cc:73 msgid "%1 loading ..." msgstr "" +#: speaker_dialog.cc:40 +msgid "Add Speaker" +msgstr "" + +#: speaker_dialog.cc:41 +msgid "Remove Speaker" +msgstr "" + #: speaker_dialog.cc:63 msgid "Azimuth:" msgstr "" -#: startup.cc:74 +#: startup.cc:72 msgid "" "Use an external mixer or the hardware mixer of your audio interface.\n" "%1 will play NO role in monitoring" msgstr "" -#: startup.cc:76 +#: startup.cc:74 msgid "Ask %1 to play back material as it is being recorded" msgstr "" -#: startup.cc:79 -msgid "I'd like more options for this session" -msgstr "" - -#: startup.cc:194 +#: startup.cc:143 msgid "" "Welcome to this BETA release of Ardour %1\n" "\n" @@ -6299,15 +10917,11 @@ msgid "" " http://ardour.org/support\n" msgstr "" -#: startup.cc:218 +#: startup.cc:167 msgid "This is a BETA RELEASE" msgstr "" -#: startup.cc:324 -msgid "Audio / MIDI Setup" -msgstr "" - -#: startup.cc:336 +#: startup.cc:176 msgid "" "%1 is a digital audio workstation. You can use it to " "record, edit and mix multi-track audio. You can produce your own CDs, mix " @@ -6317,15 +10931,15 @@ msgid "" "program. " msgstr "" -#: startup.cc:362 +#: startup.cc:202 msgid "Welcome to %1" msgstr "" -#: startup.cc:385 +#: startup.cc:225 msgid "Default folder for %1 sessions" msgstr "" -#: startup.cc:391 +#: startup.cc:231 msgid "" "Each project that you work on with %1 has its own folder.\n" "These can require a lot of disk space if you are recording audio.\n" @@ -6335,11 +10949,11 @@ msgid "" "(You can put new sessions anywhere, this is just a default)" msgstr "" -#: startup.cc:415 +#: startup.cc:254 msgid "Default folder for new sessions" msgstr "" -#: startup.cc:436 +#: startup.cc:275 msgid "" "While recording instruments or vocals, you probably want to listen to the\n" "signal as well as record it. This is called \"monitoring\". There are\n" @@ -6353,31 +10967,31 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:457 +#: startup.cc:296 msgid "Monitoring Choices" msgstr "" -#: startup.cc:480 +#: startup.cc:319 msgid "Use a Master bus directly" msgstr "" -#: startup.cc:482 +#: startup.cc:321 msgid "" "Connect the Master bus directly to your hardware outputs. This is preferable " "for simple usage." msgstr "" -#: startup.cc:491 +#: startup.cc:330 msgid "Use an additional Monitor bus" msgstr "" -#: startup.cc:494 +#: startup.cc:333 msgid "" "Use a Monitor bus between Master bus and hardware outputs for \n" "greater control in monitoring without affecting the mix." msgstr "" -#: startup.cc:516 +#: startup.cc:355 msgid "" "You can change this preference at any time via the Preferences dialog.\n" "You can also add or remove the monitor section to/from any session.\n" @@ -6385,24 +10999,8 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:573 -msgid "Check the website for more..." -msgstr "" - -#: startup.cc:576 -msgid "Click to open the program website in your web browser" -msgstr "" - -#: startup.cc:922 -msgid "New Session" -msgstr "Îέα συνεδÏία" - -#: startup.cc:1129 startup.cc:1130 startup.cc:1131 -msgid "channels" -msgstr "κανάλια" - -#: startup.cc:1172 startup.cc:1231 -msgid "Use only" +#: startup.cc:366 +msgid "Monitor Section" msgstr "" #: step_entry.cc:59 @@ -6461,6 +11059,10 @@ msgstr "" msgid "Set note length to a sixteenth note" msgstr "" +#: step_entry.cc:195 +msgid "Set note length to a thirty-second note" +msgstr "" + #: step_entry.cc:196 msgid "Set note length to a sixty-fourth note" msgstr "" @@ -6561,26 +11163,58 @@ msgstr "" msgid "Octave" msgstr "" +#: step_entry.cc:597 +msgid "Insert Note A" +msgstr "" + #: step_entry.cc:598 msgid "Insert Note A-sharp" msgstr "" +#: step_entry.cc:599 +msgid "Insert Note B" +msgstr "" + +#: step_entry.cc:600 +msgid "Insert Note C" +msgstr "" + #: step_entry.cc:601 msgid "Insert Note C-sharp" msgstr "" +#: step_entry.cc:602 +msgid "Insert Note D" +msgstr "" + #: step_entry.cc:603 msgid "Insert Note D-sharp" msgstr "" +#: step_entry.cc:604 +msgid "Insert Note E" +msgstr "" + +#: step_entry.cc:605 +msgid "Insert Note F" +msgstr "" + #: step_entry.cc:606 msgid "Insert Note F-sharp" msgstr "" +#: step_entry.cc:607 +msgid "Insert Note G" +msgstr "" + #: step_entry.cc:608 msgid "Insert Note G-sharp" msgstr "" +#: step_entry.cc:610 +msgid "Insert a Note-length Rest" +msgstr "" + #: step_entry.cc:611 msgid "Insert a Snap-length Rest" msgstr "" @@ -6597,6 +11231,14 @@ msgstr "" msgid "Move to Previous Note Length" msgstr "" +#: step_entry.cc:619 +msgid "Increase Note Length" +msgstr "" + +#: step_entry.cc:620 +msgid "Decrease Note Length" +msgstr "" + #: step_entry.cc:622 msgid "Move to Next Note Velocity" msgstr "" @@ -6665,6 +11307,10 @@ msgstr "" msgid "Set Note Length to 1/2" msgstr "" +#: step_entry.cc:647 +msgid "Set Note Length to 1/3" +msgstr "" + #: step_entry.cc:649 msgid "Set Note Length to 1/4" msgstr "" @@ -6733,6 +11379,10 @@ msgstr "" msgid "Toggled Triple-Dotted Notes" msgstr "" +#: step_entry.cc:692 +msgid "Toggle Chord Entry" +msgstr "" + #: step_entry.cc:694 msgid "Sustain Selected Notes by Note Length" msgstr "" @@ -6746,6 +11396,10 @@ msgstr "" msgid "Stereo Panner" msgstr "" +#: stereo_panner_editor.cc:49 +msgid "Width" +msgstr "" + #: strip_silence_dialog.cc:48 msgid "Strip Silence" msgstr "" @@ -6754,6 +11408,10 @@ msgstr "" msgid "Minimum length" msgstr "" +#: strip_silence_dialog.cc:87 +msgid "Fade length" +msgstr "" + #: tempo_dialog.cc:43 tempo_dialog.cc:58 msgid "bar:" msgstr "" @@ -6762,6 +11420,49 @@ msgstr "" msgid "beat:" msgstr "" +#: tempo_dialog.cc:45 tempo_dialog.cc:60 +msgid "Pulse note" +msgstr "" + +#: tempo_dialog.cc:55 +msgid "Edit Tempo" +msgstr "" + +#: tempo_dialog.cc:76 tempo_dialog.cc:77 tempo_dialog.cc:282 +#: tempo_dialog.cc:283 +msgid "whole" +msgstr "" + +#: tempo_dialog.cc:78 tempo_dialog.cc:79 tempo_dialog.cc:284 +#: tempo_dialog.cc:285 +msgid "second" +msgstr "" + +#: tempo_dialog.cc:80 tempo_dialog.cc:81 tempo_dialog.cc:286 +#: tempo_dialog.cc:287 +msgid "third" +msgstr "" + +#: tempo_dialog.cc:82 tempo_dialog.cc:83 tempo_dialog.cc:288 +#: tempo_dialog.cc:289 +msgid "quarter" +msgstr "" + +#: tempo_dialog.cc:84 tempo_dialog.cc:85 tempo_dialog.cc:290 +#: tempo_dialog.cc:291 +msgid "eighth" +msgstr "" + +#: tempo_dialog.cc:86 tempo_dialog.cc:87 tempo_dialog.cc:292 +#: tempo_dialog.cc:293 +msgid "sixteenth" +msgstr "" + +#: tempo_dialog.cc:88 tempo_dialog.cc:89 tempo_dialog.cc:294 +#: tempo_dialog.cc:295 +msgid "thirty-second" +msgstr "" + #: tempo_dialog.cc:90 tempo_dialog.cc:91 tempo_dialog.cc:296 #: tempo_dialog.cc:297 msgid "sixty-fourth" @@ -6772,10 +11473,38 @@ msgstr "" msgid "one-hundred-twenty-eighth" msgstr "" +#: tempo_dialog.cc:120 +msgid "Beats per minute:" +msgstr "" + #: tempo_dialog.cc:152 msgid "Tempo begins at" msgstr "" +#: tempo_dialog.cc:240 +msgid "incomprehensible pulse note type (%1)" +msgstr "" + +#: tempo_dialog.cc:266 +msgid "Edit Meter" +msgstr "" + +#: tempo_dialog.cc:314 +msgid "Note value:" +msgstr "" + +#: tempo_dialog.cc:315 +msgid "Beats per bar:" +msgstr "" + +#: tempo_dialog.cc:330 +msgid "Meter begins at bar:" +msgstr "" + +#: tempo_dialog.cc:441 +msgid "incomprehensible meter note type (%1)" +msgstr "" + #: theme_manager.cc:57 msgid "Dark Theme" msgstr "" @@ -6784,6 +11513,10 @@ msgstr "" msgid "Light Theme" msgstr "" +#: theme_manager.cc:59 +msgid "Restore Defaults" +msgstr "" + #: theme_manager.cc:60 msgid "Draw \"flat\" buttons" msgstr "" @@ -6792,6 +11525,14 @@ msgstr "" msgid "All floating windows are dialogs" msgstr "" +#: theme_manager.cc:62 +msgid "Draw waveforms with color gradient" +msgstr "" + +#: theme_manager.cc:68 +msgid "Object" +msgstr "" + #: theme_manager.cc:123 msgid "" "Mark all floating windows to be type \"Dialog\" rather than using \"Utility" @@ -6808,6 +11549,12 @@ msgstr "" msgid "Track/Bus name (double click to edit)" msgstr "" +#: time_axis_view_item.cc:332 +msgid "new duration %1 frame is out of bounds for %2" +msgid_plural "new duration of %1 frames is out of bounds for %2" +msgstr[0] "" +msgstr[1] "" + #: time_fx_dialog.cc:62 msgid "Quick but Ugly" msgstr "ΓÏήγοÏο αλλά Άσχημο" @@ -6816,22 +11563,54 @@ msgstr "ΓÏήγοÏο αλλά Άσχημο" msgid "Skip Anti-aliasing" msgstr "ΠαÏάκαμψη Anti-aliasing" +#: time_fx_dialog.cc:64 +msgid "Contents:" +msgstr "" + #: time_fx_dialog.cc:65 msgid "Minimize time distortion" msgstr "" +#: time_fx_dialog.cc:66 +msgid "Preserve Formants" +msgstr "" + +#: time_fx_dialog.cc:71 +msgid "TimeFXDialog" +msgstr "" + #: time_fx_dialog.cc:74 msgid "Pitch Shift Audio" msgstr "" +#: time_fx_dialog.cc:76 +msgid "Time Stretch Audio" +msgstr "" + #: time_fx_dialog.cc:104 transpose_dialog.cc:41 msgid "Octaves:" msgstr "" +#: time_fx_dialog.cc:109 transpose_dialog.cc:46 +msgid "Semitones:" +msgstr "" + +#: time_fx_dialog.cc:114 +msgid "Cents:" +msgstr "" + #: time_fx_dialog.cc:122 msgid "Time|Shift" msgstr "" +#: time_fx_dialog.cc:146 time_fx_dialog.cc:149 +msgid "TimeFXButton" +msgstr "" + +#: time_fx_dialog.cc:154 +msgid "Stretch/Shrink" +msgstr "" + #: time_fx_dialog.cc:164 msgid "Progress" msgstr "" @@ -6848,6 +11627,10 @@ msgstr "Λήξη εγγÏαφής στο τέλος αυτο-εναπόθεση msgid "programming error: request for non-existent audio range (%1)!" msgstr "Σφάλμα Ï€ÏογÏαμματισμοÏ: request για μη-υπάÏχον ηχητικό διάστημα (%1)!" +#: transpose_dialog.cc:30 +msgid "Transpose MIDI" +msgstr "" + #: transpose_dialog.cc:55 msgid "Transpose" msgstr "" @@ -6856,6 +11639,10 @@ msgstr "" msgid "Loading default ui configuration file %1" msgstr "" +#: ui_config.cc:85 ui_config.cc:116 +msgid "cannot read default ui configuration file \"%1\"" +msgstr "" + #: ui_config.cc:90 ui_config.cc:121 msgid "default ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -6864,6 +11651,10 @@ msgstr "" msgid "Loading user ui configuration file %1" msgstr "" +#: ui_config.cc:137 +msgid "cannot read ui configuration file \"%1\"" +msgstr "" + #: ui_config.cc:142 msgid "user ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -6876,15 +11667,23 @@ msgstr "" msgid "Config file %1 not saved" msgstr "" -#: utils.cc:110 utils.cc:153 +#: utils.cc:111 utils.cc:154 msgid "bad XPM header %1" msgstr "εσφαλμένος XPM header %1" -#: utils.cc:292 utils.cc:324 +#: utils.cc:293 utils.cc:325 msgid "missing RGBA style for \"%1\"" msgstr "ελλειπές RGBA στÏλ για \"%1\"" -#: utils.cc:632 +#: utils.cc:598 +msgid "cannot find XPM file for %1" +msgstr "" + +#: utils.cc:624 +msgid "cannot find icon image for %1 using %2" +msgstr "" + +#: utils.cc:639 msgid "Caught exception while loading icon named %1" msgstr "" @@ -6892,6 +11691,14 @@ msgstr "" msgid "VerboseCanvasCursor" msgstr "" +#: add_video_dialog.cc:55 +msgid "Set Video Track" +msgstr "" + +#: add_video_dialog.cc:63 +msgid "Launch External Video Monitor" +msgstr "" + #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -6904,6 +11711,22 @@ msgstr "" msgid "VideoServerIndex" msgstr "" +#: add_video_dialog.cc:129 +msgid "Video files" +msgstr "" + +#: add_video_dialog.cc:164 +msgid "Video Information" +msgstr "" + +#: add_video_dialog.cc:167 +msgid "Start:" +msgstr "" + +#: add_video_dialog.cc:173 +msgid "Frame rate:" +msgstr "" + #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -6949,6 +11772,10 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" +#: video_monitor.cc:281 +msgid "Video Monitor: File Not Found." +msgstr "" + #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -6965,75 +11792,119 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:61 export_video_dialog.cc:73 +#: transcode_video_dialog.cc:55 +msgid "Transcode/Import Video File " +msgstr "" + +#: transcode_video_dialog.cc:57 +msgid "Output File:" +msgstr "" + +#: transcode_video_dialog.cc:60 export_video_dialog.cc:72 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:66 +#: transcode_video_dialog.cc:62 +msgid "Height = " +msgstr "" + +#: transcode_video_dialog.cc:65 msgid "Manual Override" msgstr "" -#: transcode_video_dialog.cc:70 export_video_dialog.cc:89 +#: transcode_video_dialog.cc:69 export_video_dialog.cc:88 msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:113 +#: transcode_video_dialog.cc:106 +msgid "File Information" +msgstr "" + +#: transcode_video_dialog.cc:112 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: transcode_video_dialog.cc:120 +#: transcode_video_dialog.cc:119 msgid "" "File-info can not be read. Most likely '%1' is not a valid video-file or an " "unsupported video codec or format." msgstr "" -#: transcode_video_dialog.cc:134 +#: transcode_video_dialog.cc:133 msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:138 +#: transcode_video_dialog.cc:135 +msgid "Duration:" +msgstr "" + +#: transcode_video_dialog.cc:137 msgid "Codec:" msgstr "" -#: transcode_video_dialog.cc:140 +#: transcode_video_dialog.cc:139 msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:181 +#: transcode_video_dialog.cc:154 +msgid "??" +msgstr "" + +#: transcode_video_dialog.cc:175 +msgid "Import Settings" +msgstr "" + +#: transcode_video_dialog.cc:180 msgid "Do Not Import Video" msgstr "" -#: transcode_video_dialog.cc:182 +#: transcode_video_dialog.cc:181 msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:198 +#: transcode_video_dialog.cc:183 +msgid "Import/Transcode Video to Session" +msgstr "" + +#: transcode_video_dialog.cc:197 msgid "Scale Video: Width = " msgstr "" -#: transcode_video_dialog.cc:205 +#: transcode_video_dialog.cc:204 msgid "Original Width" msgstr "" -#: transcode_video_dialog.cc:220 +#: transcode_video_dialog.cc:219 msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:348 +#: transcode_video_dialog.cc:224 +msgid "Extract Audio:" +msgstr "" + +#: transcode_video_dialog.cc:344 +msgid "Extracting Audio.." +msgstr "" + +#: transcode_video_dialog.cc:347 msgid "Audio Extraction Failed." msgstr "" -#: transcode_video_dialog.cc:374 +#: transcode_video_dialog.cc:373 msgid "Transcoding Video.." msgstr "" -#: transcode_video_dialog.cc:408 +#: transcode_video_dialog.cc:407 msgid "Transcoding Failed." msgstr "" +#: transcode_video_dialog.cc:490 +msgid "Save Transcoded Video File" +msgstr "" + #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -7061,11 +11932,19 @@ msgstr "" msgid "Listen Address:" msgstr "" +#: video_server_dialog.cc:125 +msgid "Listen Port:" +msgstr "" + +#: video_server_dialog.cc:130 +msgid "Cache Size:" +msgstr "" + #: video_server_dialog.cc:136 msgid "" -"%1 relies on an external Video Server for the videotimeline.\n" -"The server configured in Edit -> Prefereces -> Video is not reachable.\n" -"Do you want ardour to launch 'harvid' on this machine?" +"%1 relies on an external video server for the videotimeline.\n" +"The server configured in Edit -> Preferences -> Video is not reachable.\n" +"Do you want %1 to launch 'harvid' on this machine?" msgstr "" #: video_server_dialog.cc:176 @@ -7090,79 +11969,187 @@ msgstr "" msgid "Continue" msgstr "" -#: export_video_dialog.cc:74 +#: utils_videotl.cc:63 +msgid "Confirm Overwrite" +msgstr "" + +#: utils_videotl.cc:64 +msgid "A file with the same name already exists. Do you want to overwrite it?" +msgstr "" + +#: utils_videotl.cc:74 utils_videotl.cc:90 +msgid "Cannot create video folder \"%1\" (%2)" +msgstr "" + +#: export_video_dialog.cc:65 +msgid "Export Video File " +msgstr "" + +#: export_video_dialog.cc:69 +msgid "Video:" +msgstr "" + +#: export_video_dialog.cc:73 msgid "Scale Video (W x H):" msgstr "" -#: export_video_dialog.cc:79 +#: export_video_dialog.cc:78 msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:81 +#: export_video_dialog.cc:79 +msgid "Normalize Audio" +msgstr "" + +#: export_video_dialog.cc:80 msgid "2 Pass Encoding" msgstr "" -#: export_video_dialog.cc:82 +#: export_video_dialog.cc:81 msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:85 +#: export_video_dialog.cc:83 +msgid "Deinterlace" +msgstr "" + +#: export_video_dialog.cc:84 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" -#: export_video_dialog.cc:86 +#: export_video_dialog.cc:85 msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:107 +#: export_video_dialog.cc:86 +msgid "Include Session Metadata" +msgstr "" + +#: export_video_dialog.cc:106 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: export_video_dialog.cc:145 +#: export_video_dialog.cc:116 +msgid "Output:" +msgstr "" + +#: export_video_dialog.cc:126 +msgid "Input:" +msgstr "" + +#: export_video_dialog.cc:137 +msgid "Audio:" +msgstr "" + +#: export_video_dialog.cc:139 +msgid "Master Bus" +msgstr "" + +#: export_video_dialog.cc:144 msgid "from the %1 session's start to the session's end" msgstr "" -#: export_video_dialog.cc:149 +#: export_video_dialog.cc:148 msgid "from 00:00:00:00 to the video's end" msgstr "" -#: export_video_dialog.cc:151 +#: export_video_dialog.cc:150 msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:494 +#: export_video_dialog.cc:153 +msgid "Selected range" +msgstr "" + +#: export_video_dialog.cc:193 +msgid "Settings:" +msgstr "" + +#: export_video_dialog.cc:201 +msgid "Range:" +msgstr "" + +#: export_video_dialog.cc:204 +msgid "Preset:" +msgstr "" + +#: export_video_dialog.cc:207 +msgid "Video Codec:" +msgstr "" + +#: export_video_dialog.cc:210 +msgid "Video KBit/s:" +msgstr "" + +#: export_video_dialog.cc:213 +msgid "Audio Codec:" +msgstr "" + +#: export_video_dialog.cc:216 +msgid "Audio KBit/s:" +msgstr "" + +#: export_video_dialog.cc:219 +msgid "Audio Samplerate:" +msgstr "" + +#: export_video_dialog.cc:395 +msgid "Normalizing audio" +msgstr "" + +#: export_video_dialog.cc:399 +msgid "Exporting audio" +msgstr "" + +#: export_video_dialog.cc:445 +msgid "Exporting Audio..." +msgstr "" + +#: export_video_dialog.cc:502 msgid "" "Export Video: Cannot query duration of video-file, using duration from " "timeline instead." msgstr "" -#: export_video_dialog.cc:523 +#: export_video_dialog.cc:532 +msgid "Export Video: export-range does not include video." +msgstr "" + +#: export_video_dialog.cc:544 msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" -#: export_video_dialog.cc:562 +#: export_video_dialog.cc:583 msgid "Encoding Video..." msgstr "" -#: export_video_dialog.cc:581 +#: export_video_dialog.cc:602 msgid "Export Video: Video input file cannot be read." msgstr "" -#: export_video_dialog.cc:679 +#: export_video_dialog.cc:695 msgid "Encoding Video.. Pass 1/2" msgstr "" -#: export_video_dialog.cc:691 +#: export_video_dialog.cc:707 msgid "Encoding Video.. Pass 2/2" msgstr "" -#: export_video_dialog.cc:779 +#: export_video_dialog.cc:814 msgid "Transcoding failed." msgstr "" +#: export_video_dialog.cc:983 export_video_dialog.cc:1003 +msgid "Save Exported Video File" +msgstr "" + +#: export_video_infobox.cc:30 +msgid "Video Export Info" +msgstr "" + #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -7179,3 +12166,27 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" + +#~ msgid "disconnected" +#~ msgstr "Αποσυνδέθηκε" + +#~ msgid "Unable to start the session running" +#~ msgstr "Σφάλμα στην έναÏξη της συνεδÏίας" + +#~ msgid "Could not disconnect from JACK" +#~ msgstr "ΑποσÏνδεση απ'το JACK είναι αδÏνατη" + +#~ msgid "Could not reconnect to JACK" +#~ msgstr "ΕπανασÏνδεση στο JACK αδÏνατη" + +#~ msgid "Reconnect" +#~ msgstr "ΕπανασÏνδεση" + +#~ msgid "Triangular" +#~ msgstr "ΤÏίγωνη" + +#~ msgid "Rectangular" +#~ msgstr "ΤετÏάγωνη" + +#~ msgid "Not connected to JACK - no I/O changes are possible" +#~ msgstr "Μη συνδεδεμένο με τον JACK - I/O αλλαγές αδÏνατες" diff --git a/gtk2_ardour/po/en_GB.po b/gtk2_ardour/po/en_GB.po index 8eb1853152..d109860c06 100644 --- a/gtk2_ardour/po/en_GB.po +++ b/gtk2_ardour/po/en_GB.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Ardour 3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2011-12-08 15:38+0100\n" "Last-Translator: Colin Fletcher \n" "Language-Team: UK English \n" @@ -406,8 +406,8 @@ msgstr "" msgid "Add:" msgstr "" -#: add_route_dialog.cc:114 startup.cc:841 time_fx_dialog.cc:91 -#: add_video_dialog.cc:150 video_server_dialog.cc:112 +#: add_route_dialog.cc:114 time_fx_dialog.cc:91 add_video_dialog.cc:150 +#: video_server_dialog.cc:112 msgid "Options" msgstr "" @@ -421,21 +421,22 @@ msgid "Group:" msgstr "" #: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 -#: rc_option_editor.cc:1456 rc_option_editor.cc:1458 rc_option_editor.cc:1460 -#: rc_option_editor.cc:1478 rc_option_editor.cc:1480 rc_option_editor.cc:1488 -#: rc_option_editor.cc:1490 rc_option_editor.cc:1508 rc_option_editor.cc:1521 -#: rc_option_editor.cc:1523 rc_option_editor.cc:1525 rc_option_editor.cc:1556 -#: rc_option_editor.cc:1558 rc_option_editor.cc:1560 rc_option_editor.cc:1568 -#: rc_option_editor.cc:1576 rc_option_editor.cc:1584 +#: ardour_ui_ed.cc:476 engine_dialog.cc:236 rc_option_editor.cc:1446 +#: rc_option_editor.cc:1448 rc_option_editor.cc:1450 rc_option_editor.cc:1466 +#: rc_option_editor.cc:1468 rc_option_editor.cc:1476 rc_option_editor.cc:1478 +#: rc_option_editor.cc:1496 rc_option_editor.cc:1509 rc_option_editor.cc:1511 +#: rc_option_editor.cc:1513 rc_option_editor.cc:1544 rc_option_editor.cc:1546 +#: rc_option_editor.cc:1548 rc_option_editor.cc:1556 rc_option_editor.cc:1564 +#: rc_option_editor.cc:1572 msgid "Audio" msgstr "" #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 -#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1707 -#: rc_option_editor.cc:1715 rc_option_editor.cc:1723 rc_option_editor.cc:1732 -#: rc_option_editor.cc:1740 rc_option_editor.cc:1748 rc_option_editor.cc:1756 -#: rc_option_editor.cc:1765 rc_option_editor.cc:1774 rc_option_editor.cc:1783 -#: rc_option_editor.cc:1791 rc_option_editor.cc:1799 +#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1695 +#: rc_option_editor.cc:1703 rc_option_editor.cc:1711 rc_option_editor.cc:1720 +#: rc_option_editor.cc:1728 rc_option_editor.cc:1736 rc_option_editor.cc:1744 +#: rc_option_editor.cc:1753 rc_option_editor.cc:1762 rc_option_editor.cc:1771 +#: rc_option_editor.cc:1779 rc_option_editor.cc:1787 msgid "MIDI" msgstr "" @@ -574,7 +575,7 @@ msgstr "Normalise values" msgid "FFT analysis window" msgstr "" -#: analysis_window.cc:60 editor.cc:1856 +#: analysis_window.cc:60 editor.cc:1857 msgid "Spectral Analysis" msgstr "" @@ -624,7 +625,7 @@ msgstr "" msgid "Preferences" msgstr "" -#: ardour_ui.cc:191 ardour_ui.cc:196 +#: ardour_ui.cc:191 ardour_ui.cc:197 msgid "Add Tracks/Busses" msgstr "" @@ -640,35 +641,70 @@ msgstr "" msgid "Tracks and Busses" msgstr "" -#: ardour_ui.cc:195 +#: ardour_ui.cc:195 engine_dialog.cc:67 +msgid "Audio/MIDI Setup" +msgstr "" + +#: ardour_ui.cc:196 msgid "Properties" msgstr "" -#: ardour_ui.cc:197 bundle_manager.cc:263 +#: ardour_ui.cc:198 bundle_manager.cc:263 msgid "Bundle Manager" msgstr "" -#: ardour_ui.cc:198 big_clock_window.cc:35 +#: ardour_ui.cc:199 big_clock_window.cc:35 msgid "Big Clock" msgstr "" -#: ardour_ui.cc:199 +#: ardour_ui.cc:200 msgid "Audio Connections" msgstr "" -#: ardour_ui.cc:202 +#: ardour_ui.cc:201 +msgid "MIDI Connections" +msgstr "" + +#: ardour_ui.cc:203 msgid "Errors" msgstr "" -#: ardour_ui.cc:388 -msgid "Starting audio engine" +#: ardour_ui.cc:436 +msgid "" +"The audio backend was shutdown because:\n" +"\n" +"%1" msgstr "" -#: ardour_ui.cc:758 startup.cc:638 +#: ardour_ui.cc:438 +msgid "" +"The audio backend has either been shutdown or it\n" +"disconnected %1 because %1\n" +"was not fast enough. Try to restart\n" +"the audio backend and save the session." +msgstr "" + +#: ardour_ui.cc:758 +msgid "NSM server did not announce itself" +msgstr "" + +#: ardour_ui.cc:771 +msgid "NSM: no client ID provided" +msgstr "" + +#: ardour_ui.cc:778 +msgid "NSM: no session created" +msgstr "" + +#: ardour_ui.cc:801 +msgid "NSM: initialization failed" +msgstr "" + +#: ardour_ui.cc:840 startup.cc:379 msgid "%1 is ready for use" msgstr "" -#: ardour_ui.cc:806 +#: ardour_ui.cc:882 msgid "" "WARNING: Your system has a limit for maximum amount of locked memory. This " "might cause %1 to run out of memory before your system runs out of memory. \n" @@ -677,23 +713,23 @@ msgid "" "controlled by %2" msgstr "" -#: ardour_ui.cc:823 +#: ardour_ui.cc:899 msgid "Do not show this window again" msgstr "" -#: ardour_ui.cc:865 +#: ardour_ui.cc:943 msgid "Don't quit" msgstr "" -#: ardour_ui.cc:866 +#: ardour_ui.cc:944 msgid "Just quit" msgstr "" -#: ardour_ui.cc:867 +#: ardour_ui.cc:945 msgid "Save and quit" msgstr "" -#: ardour_ui.cc:877 +#: ardour_ui.cc:955 msgid "" "%1 was unable to save your session.\n" "\n" @@ -702,15 +738,15 @@ msgid "" "\"Just quit\" option." msgstr "" -#: ardour_ui.cc:908 +#: ardour_ui.cc:986 msgid "Please wait while %1 cleans up..." msgstr "" -#: ardour_ui.cc:925 +#: ardour_ui.cc:1004 msgid "Unsaved Session" msgstr "" -#: ardour_ui.cc:946 +#: ardour_ui.cc:1025 msgid "" "The session \"%1\"\n" "has not been saved.\n" @@ -721,7 +757,7 @@ msgid "" "What do you want to do?" msgstr "" -#: ardour_ui.cc:949 +#: ardour_ui.cc:1028 msgid "" "The snapshot \"%1\"\n" "has not been saved.\n" @@ -732,74 +768,75 @@ msgid "" "What do you want to do?" msgstr "" -#: ardour_ui.cc:963 +#: ardour_ui.cc:1042 msgid "Prompter" msgstr "" -#: ardour_ui.cc:1049 -msgid "disconnected" -msgstr "" - -#: ardour_ui.cc:1056 +#: ardour_ui.cc:1128 ardour_ui.cc:1136 #, c-format -msgid "JACK: %.1f kHz / %4.1f ms" +msgid "Audio: none" msgstr "" -#: ardour_ui.cc:1060 +#: ardour_ui.cc:1140 #, c-format -msgid "JACK: % kHz / %4.1f ms" +msgid "Audio: %.1f kHz / %4.1f ms" msgstr "" -#: ardour_ui.cc:1078 export_video_dialog.cc:68 +#: ardour_ui.cc:1144 +#, c-format +msgid "Audio: % kHz / %4.1f ms" +msgstr "" + +#: ardour_ui.cc:1162 export_video_dialog.cc:67 msgid "File:" msgstr "" -#: ardour_ui.cc:1082 +#: ardour_ui.cc:1166 msgid "BWF" msgstr "" -#: ardour_ui.cc:1085 +#: ardour_ui.cc:1169 msgid "WAV" msgstr "" -#: ardour_ui.cc:1088 +#: ardour_ui.cc:1172 msgid "WAV64" msgstr "" -#: ardour_ui.cc:1091 session_option_editor.cc:197 +#: ardour_ui.cc:1175 session_option_editor.cc:197 msgid "CAF" msgstr "" -#: ardour_ui.cc:1094 +#: ardour_ui.cc:1178 msgid "AIFF" msgstr "" -#: ardour_ui.cc:1097 +#: ardour_ui.cc:1181 msgid "iXML" msgstr "" -#: ardour_ui.cc:1100 +#: ardour_ui.cc:1184 msgid "RF64" msgstr "" -#: ardour_ui.cc:1108 +#: ardour_ui.cc:1192 msgid "32-float" msgstr "" -#: ardour_ui.cc:1111 +#: ardour_ui.cc:1195 msgid "24-int" msgstr "" -#: ardour_ui.cc:1114 +#: ardour_ui.cc:1198 msgid "16-int" msgstr "" -#: ardour_ui.cc:1133 +#: ardour_ui.cc:1217 #, c-format msgid "DSP: %5.1f%%" msgstr "" -#: ardour_ui.cc:1152 +#: ardour_ui.cc:1236 #, c-format msgid "" "Buffers: p:" @@ -807,58 +844,59 @@ msgid "" "\">%%%" msgstr "" -#: ardour_ui.cc:1188 +#: ardour_ui.cc:1277 msgid "Disk: Unknown" msgstr "" -#: ardour_ui.cc:1190 +#: ardour_ui.cc:1279 msgid "Disk: 24hrs+" msgstr "" -#: ardour_ui.cc:1208 +#: ardour_ui.cc:1297 msgid "Disk: >24 hrs" msgstr "" -#: ardour_ui.cc:1219 +#: ardour_ui.cc:1308 #, c-format msgid "Disk: %02dh:%02dm:%02ds" msgstr "" -#: ardour_ui.cc:1245 +#: ardour_ui.cc:1334 #, c-format msgid "Timecode|TC: %s" msgstr "" -#: ardour_ui.cc:1362 ardour_ui.cc:1371 startup.cc:1054 +#: ardour_ui.cc:1451 ardour_ui.cc:1460 session_dialog.cc:322 +#: session_dialog.cc:327 msgid "Recent Sessions" msgstr "" -#: ardour_ui.cc:1451 +#: ardour_ui.cc:1539 msgid "" -"%1 is not connected to JACK\n" +"%1 is not connected to any audio backend.\n" "You cannot open or close sessions in this condition" msgstr "" -#: ardour_ui.cc:1478 +#: ardour_ui.cc:1563 msgid "Open Session" msgstr "" -#: ardour_ui.cc:1503 session_import_dialog.cc:169 -#: session_metadata_dialog.cc:729 startup.cc:1083 +#: ardour_ui.cc:1588 session_dialog.cc:353 session_import_dialog.cc:169 +#: session_metadata_dialog.cc:729 msgid "%1 sessions" msgstr "" -#: ardour_ui.cc:1540 +#: ardour_ui.cc:1625 msgid "You cannot add a track without a session already loaded." msgstr "" -#: ardour_ui.cc:1548 +#: ardour_ui.cc:1633 msgid "could not create %1 new mixed track" msgid_plural "could not create %1 new mixed tracks" msgstr[0] "" msgstr[1] "" -#: ardour_ui.cc:1554 ardour_ui.cc:1615 +#: ardour_ui.cc:1639 ardour_ui.cc:1700 msgid "" "There are insufficient JACK ports available\n" "to create a new track or bus.\n" @@ -866,163 +904,151 @@ msgid "" "restart JACK with more ports." msgstr "" -#: ardour_ui.cc:1589 +#: ardour_ui.cc:1674 msgid "You cannot add a track or bus without a session already loaded." msgstr "" -#: ardour_ui.cc:1598 +#: ardour_ui.cc:1683 msgid "could not create %1 new audio track" msgid_plural "could not create %1 new audio tracks" msgstr[0] "" msgstr[1] "" -#: ardour_ui.cc:1607 +#: ardour_ui.cc:1692 msgid "could not create %1 new audio bus" msgid_plural "could not create %1 new audio busses" msgstr[0] "" msgstr[1] "" -#: ardour_ui.cc:1724 +#: ardour_ui.cc:1816 msgid "" "Please create one or more tracks before trying to record.\n" "You can do this with the \"Add Track or Bus\" option in the Session menu." msgstr "" -#: ardour_ui.cc:2114 -msgid "" -"The audio backend (JACK) was shutdown because:\n" -"\n" -"%1" -msgstr "" - -#: ardour_ui.cc:2116 -msgid "" -"JACK has either been shutdown or it\n" -"disconnected %1 because %1\n" -"was not fast enough. Try to restart\n" -"JACK, reconnect and save the session." -msgstr "" - -#: ardour_ui.cc:2142 -msgid "Unable to start the session running" -msgstr "" - -#: ardour_ui.cc:2222 +#: ardour_ui.cc:2193 msgid "Take Snapshot" msgstr "" -#: ardour_ui.cc:2223 +#: ardour_ui.cc:2194 msgid "Name of new snapshot" msgstr "" -#: ardour_ui.cc:2247 +#: ardour_ui.cc:2218 msgid "" "To ensure compatibility with various systems\n" "snapshot names may not contain a '%1' character" msgstr "" -#: ardour_ui.cc:2259 +#: ardour_ui.cc:2230 msgid "Confirm Snapshot Overwrite" msgstr "" -#: ardour_ui.cc:2260 +#: ardour_ui.cc:2231 msgid "A snapshot already exists with that name. Do you want to overwrite it?" msgstr "" -#: ardour_ui.cc:2263 utils_videotl.cc:67 +#: ardour_ui.cc:2234 utils_videotl.cc:67 msgid "Overwrite" msgstr "" -#: ardour_ui.cc:2297 +#: ardour_ui.cc:2268 msgid "Rename Session" msgstr "" -#: ardour_ui.cc:2298 +#: ardour_ui.cc:2269 msgid "New session name" msgstr "" -#: ardour_ui.cc:2312 ardour_ui.cc:2692 ardour_ui.cc:2737 +#: ardour_ui.cc:2283 ardour_ui.cc:2684 ardour_ui.cc:2722 msgid "" "To ensure compatibility with various systems\n" "session names may not contain a '%1' character" msgstr "" -#: ardour_ui.cc:2320 +#: ardour_ui.cc:2291 msgid "" "That name is already in use by another directory/folder. Please try again." msgstr "" -#: ardour_ui.cc:2329 +#: ardour_ui.cc:2300 msgid "" "Renaming this session failed.\n" "Things could be seriously messed up at this point" msgstr "" -#: ardour_ui.cc:2440 +#: ardour_ui.cc:2411 msgid "Save Template" msgstr "" -#: ardour_ui.cc:2441 +#: ardour_ui.cc:2412 msgid "Name for template:" msgstr "" -#: ardour_ui.cc:2442 +#: ardour_ui.cc:2413 msgid "-template" msgstr "" -#: ardour_ui.cc:2480 +#: ardour_ui.cc:2451 msgid "" "This session\n" "%1\n" "already exists. Do you want to open it?" msgstr "" -#: ardour_ui.cc:2490 +#: ardour_ui.cc:2461 msgid "Open Existing Session" msgstr "" -#: ardour_ui.cc:2728 +#: ardour_ui.cc:2712 msgid "There is no existing session at \"%1\"" msgstr "" -#: ardour_ui.cc:2815 +#: ardour_ui.cc:2804 msgid "Please wait while %1 loads your session" msgstr "" -#: ardour_ui.cc:2830 +#: ardour_ui.cc:2819 msgid "Port Registration Error" msgstr "" -#: ardour_ui.cc:2831 +#: ardour_ui.cc:2820 msgid "Click the Close button to try again." msgstr "" -#: ardour_ui.cc:2852 +#: ardour_ui.cc:2841 msgid "Session \"%1 (snapshot %2)\" did not load successfully" msgstr "" -#: ardour_ui.cc:2858 +#: ardour_ui.cc:2848 msgid "Loading Error" msgstr "" -#: ardour_ui.cc:2859 -msgid "Click the Refresh button to try again." +#: ardour_ui.cc:2867 +msgid "" +"This session has been opened in read-only mode.\n" +"\n" +"You will not be able to record or save." msgstr "" -#: ardour_ui.cc:2941 +#: ardour_ui.cc:2873 +msgid "Read-only Session" +msgstr "" + +#: ardour_ui.cc:2931 msgid "Could not create session in \"%1\"" msgstr "" -#: ardour_ui.cc:3041 +#: ardour_ui.cc:3031 msgid "No files were ready for clean-up" msgstr "" -#: ardour_ui.cc:3045 ardour_ui.cc:3055 ardour_ui.cc:3188 ardour_ui.cc:3195 +#: ardour_ui.cc:3035 ardour_ui.cc:3045 ardour_ui.cc:3178 ardour_ui.cc:3185 #: ardour_ui_ed.cc:104 msgid "Clean-up" msgstr "" -#: ardour_ui.cc:3046 +#: ardour_ui.cc:3036 msgid "" "If this seems suprising, \n" "check for any existing snapshots.\n" @@ -1030,19 +1056,19 @@ msgid "" "require some unused files to continue to exist." msgstr "" -#: ardour_ui.cc:3105 +#: ardour_ui.cc:3095 msgid "kilo" msgstr "" -#: ardour_ui.cc:3108 +#: ardour_ui.cc:3098 msgid "mega" msgstr "" -#: ardour_ui.cc:3111 +#: ardour_ui.cc:3101 msgid "giga" msgstr "" -#: ardour_ui.cc:3116 +#: ardour_ui.cc:3106 msgid "" "The following file was deleted from %2,\n" "releasing %3 %4bytes of disk space" @@ -1052,7 +1078,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: ardour_ui.cc:3123 +#: ardour_ui.cc:3113 msgid "" "The following file was not in use and \n" "has been moved to: %2\n" @@ -1074,91 +1100,91 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: ardour_ui.cc:3183 +#: ardour_ui.cc:3173 msgid "Are you sure you want to clean-up?" msgstr "" -#: ardour_ui.cc:3190 +#: ardour_ui.cc:3180 msgid "" "Clean-up is a destructive operation.\n" "ALL undo/redo information will be lost if you clean-up.\n" "Clean-up will move all unused files to a \"dead\" location." msgstr "" -#: ardour_ui.cc:3198 +#: ardour_ui.cc:3188 msgid "CleanupDialog" msgstr "" -#: ardour_ui.cc:3228 +#: ardour_ui.cc:3218 msgid "Cleaned Files" msgstr "" -#: ardour_ui.cc:3245 +#: ardour_ui.cc:3235 msgid "deleted file" msgstr "" -#: ardour_ui.cc:3337 +#: ardour_ui.cc:3381 msgid "" "Video-Server was not launched by Ardour. The request to stop it is ignored." msgstr "" -#: ardour_ui.cc:3341 +#: ardour_ui.cc:3385 msgid "Stop Video-Server" msgstr "" -#: ardour_ui.cc:3342 +#: ardour_ui.cc:3386 msgid "Do you really want to stop the Video Server?" msgstr "" -#: ardour_ui.cc:3345 +#: ardour_ui.cc:3389 msgid "Yes, Stop It" msgstr "" -#: ardour_ui.cc:3371 +#: ardour_ui.cc:3415 msgid "The Video Server is already started." msgstr "" -#: ardour_ui.cc:3373 +#: ardour_ui.cc:3417 msgid "" "An external Video Server is configured and can be reached. Not starting a " "new instance." msgstr "" -#: ardour_ui.cc:3381 ardour_ui.cc:3471 +#: ardour_ui.cc:3425 ardour_ui.cc:3515 msgid "" "Could not connect to the Video Server. Start it or configure its access URL " "in Edit -> Preferences." msgstr "" -#: ardour_ui.cc:3405 +#: ardour_ui.cc:3449 msgid "Specified docroot is not an existing directory." msgstr "" -#: ardour_ui.cc:3410 +#: ardour_ui.cc:3454 msgid "Given Video Server is not an executable file." msgstr "" -#: ardour_ui.cc:3443 +#: ardour_ui.cc:3487 msgid "Cannot launch the video-server" msgstr "" -#: ardour_ui.cc:3452 +#: ardour_ui.cc:3496 msgid "Video-server was started but does not respond to requests..." msgstr "" -#: ardour_ui.cc:3497 editor_audio_import.cc:632 +#: ardour_ui.cc:3541 editor_audio_import.cc:632 msgid "could not open %1" msgstr "" -#: ardour_ui.cc:3501 +#: ardour_ui.cc:3545 msgid "no video-file selected" msgstr "" -#: ardour_ui.cc:3673 +#: ardour_ui.cc:3717 msgid "Recording was stopped because your system could not keep up." msgstr "" -#: ardour_ui.cc:3702 +#: ardour_ui.cc:3746 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1167,7 +1193,7 @@ msgid "" "quickly enough to keep up with recording.\n" msgstr "" -#: ardour_ui.cc:3721 +#: ardour_ui.cc:3765 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1176,11 +1202,11 @@ msgid "" "quickly enough to keep up with playback.\n" msgstr "" -#: ardour_ui.cc:3761 +#: ardour_ui.cc:3805 msgid "Crash Recovery" msgstr "" -#: ardour_ui.cc:3762 +#: ardour_ui.cc:3806 msgid "" "This session appears to have been in the\n" "middle of recording when %1 or\n" @@ -1191,42 +1217,42 @@ msgid "" "what you would like to do.\n" msgstr "" -#: ardour_ui.cc:3774 +#: ardour_ui.cc:3818 msgid "Ignore crash data" msgstr "" -#: ardour_ui.cc:3775 +#: ardour_ui.cc:3819 msgid "Recover from crash" msgstr "" -#: ardour_ui.cc:3795 +#: ardour_ui.cc:3839 msgid "Sample Rate Mismatch" msgstr "" -#: ardour_ui.cc:3796 +#: ardour_ui.cc:3840 msgid "" "This session was created with a sample rate of %1 Hz, but\n" "%2 is currently running at %3 Hz. If you load this session,\n" "audio may be played at the wrong sample rate.\n" msgstr "" -#: ardour_ui.cc:3805 +#: ardour_ui.cc:3849 msgid "Do not load session" msgstr "" -#: ardour_ui.cc:3806 +#: ardour_ui.cc:3850 msgid "Load session anyway" msgstr "" -#: ardour_ui.cc:3829 -msgid "Could not disconnect from JACK" +#: ardour_ui.cc:3877 +msgid "Could not disconnect from Audio/MIDI engine" msgstr "" -#: ardour_ui.cc:3842 -msgid "Could not reconnect to JACK" +#: ardour_ui.cc:3893 ardour_ui.cc:3896 +msgid "Could not reconnect to the Audio/MIDI engine" msgstr "" -#: ardour_ui.cc:4116 +#: ardour_ui.cc:4172 msgid "" "%4This is a session from an older version of %3%5\n" "\n" @@ -1351,51 +1377,51 @@ msgstr "" msgid "[INFO]: " msgstr "" -#: ardour_ui2.cc:247 ardour_ui_ed.cc:377 +#: ardour_ui2.cc:247 ardour_ui_ed.cc:344 msgid "Auto Return" msgstr "" -#: ardour_ui2.cc:249 ardour_ui_ed.cc:380 +#: ardour_ui2.cc:249 ardour_ui_ed.cc:347 msgid "Follow Edits" msgstr "" -#: ardour_ui2.cc:628 rc_option_editor.cc:1004 rc_option_editor.cc:1022 -#: rc_option_editor.cc:1025 rc_option_editor.cc:1027 rc_option_editor.cc:1029 -#: rc_option_editor.cc:1037 rc_option_editor.cc:1045 rc_option_editor.cc:1047 -#: rc_option_editor.cc:1055 rc_option_editor.cc:1062 rc_option_editor.cc:1071 -#: rc_option_editor.cc:1073 rc_option_editor.cc:1075 rc_option_editor.cc:1083 -#: rc_option_editor.cc:1085 rc_option_editor.cc:1094 +#: ardour_ui2.cc:628 rc_option_editor.cc:1002 rc_option_editor.cc:1020 +#: rc_option_editor.cc:1023 rc_option_editor.cc:1025 rc_option_editor.cc:1027 +#: rc_option_editor.cc:1035 rc_option_editor.cc:1043 rc_option_editor.cc:1045 +#: rc_option_editor.cc:1053 rc_option_editor.cc:1060 rc_option_editor.cc:1069 +#: rc_option_editor.cc:1071 rc_option_editor.cc:1073 rc_option_editor.cc:1081 +#: rc_option_editor.cc:1083 rc_option_editor.cc:1092 #: session_option_editor.cc:234 session_option_editor.cc:236 #: session_option_editor.cc:257 session_option_editor.cc:259 #: session_option_editor.cc:261 session_option_editor.cc:268 msgid "Misc" msgstr "" -#: ardour_ui_dependents.cc:77 +#: ardour_ui_dependents.cc:69 msgid "Setup Editor" msgstr "" -#: ardour_ui_dependents.cc:79 +#: ardour_ui_dependents.cc:71 msgid "Setup Mixer" msgstr "" -#: ardour_ui_dependents.cc:85 +#: ardour_ui_dependents.cc:77 msgid "Reload Session History" msgstr "" -#: ardour_ui_dialogs.cc:242 +#: ardour_ui_dialogs.cc:238 msgid "Don't close" msgstr "" -#: ardour_ui_dialogs.cc:243 +#: ardour_ui_dialogs.cc:239 msgid "Just close" msgstr "" -#: ardour_ui_dialogs.cc:244 +#: ardour_ui_dialogs.cc:240 msgid "Save and close" msgstr "" -#: ardour_ui_dialogs.cc:340 +#: ardour_ui_dialogs.cc:339 msgid "This screen is not tall enough to display the mixer window" msgstr "" @@ -1404,11 +1430,11 @@ msgid "Session" msgstr "" #: ardour_ui_ed.cc:106 editor_actions.cc:134 editor_regions.cc:115 -#: port_group.cc:457 session_option_editor.cc:82 session_option_editor.cc:89 +#: port_group.cc:458 session_option_editor.cc:82 session_option_editor.cc:89 msgid "Sync" msgstr "" -#: ardour_ui_ed.cc:107 engine_dialog.cc:369 +#: ardour_ui_ed.cc:107 msgid "Options" msgstr "" @@ -1436,15 +1462,15 @@ msgstr "" msgid "Sample Format" msgstr "" -#: ardour_ui_ed.cc:114 rc_option_editor.cc:1826 rc_option_editor.cc:1839 +#: ardour_ui_ed.cc:114 rc_option_editor.cc:1814 rc_option_editor.cc:1826 msgid "Control Surfaces" msgstr "" -#: ardour_ui_ed.cc:115 rc_option_editor.cc:1558 +#: ardour_ui_ed.cc:115 rc_option_editor.cc:1546 msgid "Plugins" msgstr "" -#: ardour_ui_ed.cc:116 rc_option_editor.cc:1902 +#: ardour_ui_ed.cc:116 rc_option_editor.cc:1889 msgid "Metering" msgstr "" @@ -1530,7 +1556,7 @@ msgid "Stem export..." msgstr "" #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 -#: export_video_dialog.cc:72 +#: export_video_dialog.cc:71 msgid "Export" msgstr "" @@ -1542,170 +1568,153 @@ msgstr "" msgid "Flush Wastebasket" msgstr "" -#: ardour_ui_ed.cc:189 keyeditor.cc:253 rc_option_editor.cc:1472 -msgid "JACK" -msgstr "" - -#: ardour_ui_ed.cc:190 route_params_ui.cc:105 -msgid "Latency" -msgstr "" - -#: ardour_ui_ed.cc:192 -msgid "Reconnect" -msgstr "" - -#: ardour_ui_ed.cc:195 global_port_matrix.cc:207 io_selector.cc:210 -#: mixer_strip.cc:719 mixer_strip.cc:845 -msgid "Disconnect" -msgstr "" - -#: ardour_ui_ed.cc:222 +#: ardour_ui_ed.cc:189 msgid "Quit" msgstr "" -#: ardour_ui_ed.cc:226 +#: ardour_ui_ed.cc:193 msgid "Maximise Editor Space" msgstr "" -#: ardour_ui_ed.cc:227 +#: ardour_ui_ed.cc:194 msgid "Show Toolbars" msgstr "" -#: ardour_ui_ed.cc:230 mixer_ui.cc:1865 mixer_ui.cc:1871 +#: ardour_ui_ed.cc:197 mixer_ui.cc:1865 mixer_ui.cc:1871 msgid "Window|Mixer" msgstr "" -#: ardour_ui_ed.cc:231 +#: ardour_ui_ed.cc:198 msgid "Toggle Editor+Mixer" msgstr "" -#: ardour_ui_ed.cc:232 meterbridge.cc:230 meterbridge.cc:236 +#: ardour_ui_ed.cc:199 meterbridge.cc:230 meterbridge.cc:236 msgid "Window|Meterbridge" msgstr "" -#: ardour_ui_ed.cc:234 midi_tracer.cc:39 +#: ardour_ui_ed.cc:201 midi_tracer.cc:42 msgid "MIDI Tracer" msgstr "" -#: ardour_ui_ed.cc:236 +#: ardour_ui_ed.cc:203 msgid "Chat" msgstr "" -#: ardour_ui_ed.cc:238 +#: ardour_ui_ed.cc:205 msgid "Help|Manual" msgstr "" -#: ardour_ui_ed.cc:239 +#: ardour_ui_ed.cc:206 msgid "Reference" msgstr "" -#: ardour_ui_ed.cc:241 plugin_ui.cc:418 +#: ardour_ui_ed.cc:208 plugin_ui.cc:415 msgid "Save" msgstr "" -#: ardour_ui_ed.cc:249 rc_option_editor.cc:1114 rc_option_editor.cc:1125 -#: rc_option_editor.cc:1134 rc_option_editor.cc:1147 rc_option_editor.cc:1160 -#: rc_option_editor.cc:1169 rc_option_editor.cc:1179 rc_option_editor.cc:1181 -#: rc_option_editor.cc:1191 rc_option_editor.cc:1207 rc_option_editor.cc:1220 -#: rc_option_editor.cc:1238 rc_option_editor.cc:1240 rc_option_editor.cc:1254 -#: rc_option_editor.cc:1257 rc_option_editor.cc:1259 rc_option_editor.cc:1276 -#: rc_option_editor.cc:1287 +#: ardour_ui_ed.cc:216 rc_option_editor.cc:1112 rc_option_editor.cc:1123 +#: rc_option_editor.cc:1132 rc_option_editor.cc:1145 rc_option_editor.cc:1158 +#: rc_option_editor.cc:1167 rc_option_editor.cc:1177 rc_option_editor.cc:1179 +#: rc_option_editor.cc:1189 rc_option_editor.cc:1205 rc_option_editor.cc:1218 +#: rc_option_editor.cc:1236 rc_option_editor.cc:1238 rc_option_editor.cc:1252 +#: rc_option_editor.cc:1255 rc_option_editor.cc:1257 rc_option_editor.cc:1274 +#: rc_option_editor.cc:1285 msgid "Transport" msgstr "" -#: ardour_ui_ed.cc:255 engine_dialog.cc:85 +#: ardour_ui_ed.cc:222 msgid "Stop" msgstr "" -#: ardour_ui_ed.cc:258 +#: ardour_ui_ed.cc:225 msgid "Roll" msgstr "" -#: ardour_ui_ed.cc:262 +#: ardour_ui_ed.cc:229 msgid "Start/Stop" msgstr "" -#: ardour_ui_ed.cc:265 +#: ardour_ui_ed.cc:232 msgid "Start/Continue/Stop" msgstr "" -#: ardour_ui_ed.cc:268 +#: ardour_ui_ed.cc:235 msgid "Stop and Forget Capture" msgstr "" -#: ardour_ui_ed.cc:278 +#: ardour_ui_ed.cc:245 msgid "Transition To Roll" msgstr "" -#: ardour_ui_ed.cc:282 +#: ardour_ui_ed.cc:249 msgid "Transition To Reverse" msgstr "" -#: ardour_ui_ed.cc:286 +#: ardour_ui_ed.cc:253 msgid "Play Loop Range" msgstr "" -#: ardour_ui_ed.cc:289 +#: ardour_ui_ed.cc:256 msgid "Play Selected Range" msgstr "" -#: ardour_ui_ed.cc:292 +#: ardour_ui_ed.cc:259 msgid "Play Selection w/Preroll" msgstr "" -#: ardour_ui_ed.cc:296 +#: ardour_ui_ed.cc:263 msgid "Enable Record" msgstr "" -#: ardour_ui_ed.cc:299 +#: ardour_ui_ed.cc:266 msgid "Start Recording" msgstr "" -#: ardour_ui_ed.cc:303 +#: ardour_ui_ed.cc:270 msgid "Rewind" msgstr "" -#: ardour_ui_ed.cc:306 +#: ardour_ui_ed.cc:273 msgid "Rewind (Slow)" msgstr "" -#: ardour_ui_ed.cc:309 +#: ardour_ui_ed.cc:276 msgid "Rewind (Fast)" msgstr "" -#: ardour_ui_ed.cc:312 startup.cc:727 +#: ardour_ui_ed.cc:279 msgid "Forward" msgstr "" -#: ardour_ui_ed.cc:315 +#: ardour_ui_ed.cc:282 msgid "Forward (Slow)" msgstr "" -#: ardour_ui_ed.cc:318 +#: ardour_ui_ed.cc:285 msgid "Forward (Fast)" msgstr "" -#: ardour_ui_ed.cc:321 +#: ardour_ui_ed.cc:288 msgid "Goto Zero" msgstr "" -#: ardour_ui_ed.cc:324 +#: ardour_ui_ed.cc:291 msgid "Goto Start" msgstr "" -#: ardour_ui_ed.cc:327 +#: ardour_ui_ed.cc:294 msgid "Goto End" msgstr "" -#: ardour_ui_ed.cc:330 +#: ardour_ui_ed.cc:297 msgid "Goto Wall Clock" msgstr "" -#: ardour_ui_ed.cc:334 +#: ardour_ui_ed.cc:301 msgid "Focus On Clock" msgstr "" -#: ardour_ui_ed.cc:338 ardour_ui_ed.cc:347 audio_clock.cc:2046 editor.cc:237 +#: ardour_ui_ed.cc:305 ardour_ui_ed.cc:314 audio_clock.cc:2046 editor.cc:237 #: editor_actions.cc:544 editor_actions.cc:553 export_timespan_selector.cc:88 #: session_option_editor.cc:41 session_option_editor.cc:61 #: session_option_editor.cc:80 session_option_editor.cc:96 @@ -1714,143 +1723,139 @@ msgstr "" msgid "Timecode" msgstr "" -#: ardour_ui_ed.cc:340 ardour_ui_ed.cc:349 editor_actions.cc:542 +#: ardour_ui_ed.cc:307 ardour_ui_ed.cc:316 editor_actions.cc:542 msgid "Bars & Beats" msgstr "" -#: ardour_ui_ed.cc:342 ardour_ui_ed.cc:351 +#: ardour_ui_ed.cc:309 ardour_ui_ed.cc:318 msgid "Minutes & Seconds" msgstr "" -#: ardour_ui_ed.cc:344 ardour_ui_ed.cc:353 audio_clock.cc:2050 editor.cc:238 +#: ardour_ui_ed.cc:311 ardour_ui_ed.cc:320 audio_clock.cc:2050 editor.cc:238 #: editor_actions.cc:543 msgid "Samples" msgstr "" -#: ardour_ui_ed.cc:356 +#: ardour_ui_ed.cc:323 msgid "Punch In" msgstr "" -#: ardour_ui_ed.cc:357 mixer_strip.cc:1905 route_ui.cc:137 +#: ardour_ui_ed.cc:324 mixer_strip.cc:1905 route_ui.cc:137 #: time_info_box.cc:113 msgid "In" msgstr "" -#: ardour_ui_ed.cc:360 +#: ardour_ui_ed.cc:327 msgid "Punch Out" msgstr "" -#: ardour_ui_ed.cc:361 time_info_box.cc:114 +#: ardour_ui_ed.cc:328 time_info_box.cc:114 msgid "Out" msgstr "" -#: ardour_ui_ed.cc:364 +#: ardour_ui_ed.cc:331 msgid "Punch In/Out" msgstr "" -#: ardour_ui_ed.cc:365 +#: ardour_ui_ed.cc:332 msgid "In/Out" msgstr "" -#: ardour_ui_ed.cc:368 rc_option_editor.cc:1071 +#: ardour_ui_ed.cc:335 rc_option_editor.cc:1069 msgid "Click" msgstr "" -#: ardour_ui_ed.cc:371 +#: ardour_ui_ed.cc:338 msgid "Auto Input" msgstr "" -#: ardour_ui_ed.cc:374 +#: ardour_ui_ed.cc:341 msgid "Auto Play" msgstr "" -#: ardour_ui_ed.cc:385 +#: ardour_ui_ed.cc:352 msgid "Sync Startup to Video" msgstr "" -#: ardour_ui_ed.cc:387 +#: ardour_ui_ed.cc:354 msgid "Time Master" msgstr "" -#: ardour_ui_ed.cc:394 +#: ardour_ui_ed.cc:361 msgid "Toggle Record Enable Track %1" msgstr "" -#: ardour_ui_ed.cc:401 +#: ardour_ui_ed.cc:368 msgid "Percentage" msgstr "" -#: ardour_ui_ed.cc:402 shuttle_control.cc:169 +#: ardour_ui_ed.cc:369 shuttle_control.cc:169 msgid "Semitones" msgstr "" -#: ardour_ui_ed.cc:406 +#: ardour_ui_ed.cc:373 msgid "Send MTC" msgstr "" -#: ardour_ui_ed.cc:408 +#: ardour_ui_ed.cc:375 msgid "Send MMC" msgstr "" -#: ardour_ui_ed.cc:410 +#: ardour_ui_ed.cc:377 msgid "Use MMC" msgstr "" -#: ardour_ui_ed.cc:412 rc_option_editor.cc:1710 +#: ardour_ui_ed.cc:379 rc_option_editor.cc:1698 msgid "Send MIDI Clock" msgstr "" -#: ardour_ui_ed.cc:414 +#: ardour_ui_ed.cc:381 msgid "Send MIDI Feedback" msgstr "" -#: ardour_ui_ed.cc:420 +#: ardour_ui_ed.cc:387 msgid "Panic" msgstr "" -#: ardour_ui_ed.cc:560 +#: ardour_ui_ed.cc:472 msgid "Wall Clock" msgstr "" -#: ardour_ui_ed.cc:561 +#: ardour_ui_ed.cc:473 msgid "Disk Space" msgstr "" -#: ardour_ui_ed.cc:562 +#: ardour_ui_ed.cc:474 msgid "DSP" msgstr "" -#: ardour_ui_ed.cc:563 +#: ardour_ui_ed.cc:475 msgid "Buffers" msgstr "" -#: ardour_ui_ed.cc:564 -msgid "JACK Sampling Rate and Latency" -msgstr "" - -#: ardour_ui_ed.cc:565 +#: ardour_ui_ed.cc:477 msgid "Timecode Format" msgstr "" -#: ardour_ui_ed.cc:566 +#: ardour_ui_ed.cc:478 msgid "File Format" msgstr "" -#: ardour_ui_options.cc:65 +#: ardour_ui_options.cc:61 msgid "" "It is not possible to use JACK as the the sync source\n" "when the pull up/down setting is non-zero." msgstr "" -#: ardour_ui_options.cc:321 +#: ardour_ui_options.cc:317 msgid "Internal" msgstr "" -#: ardour_ui_options.cc:482 +#: ardour_ui_options.cc:468 msgid "Enable/Disable external positional sync" msgstr "" -#: ardour_ui_options.cc:484 +#: ardour_ui_options.cc:470 msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "" @@ -1969,32 +1974,32 @@ msgid "hide track" msgstr "" #: automation_time_axis.cc:255 automation_time_axis.cc:307 -#: automation_time_axis.cc:496 gain_meter.cc:195 generic_pluginui.cc:456 -#: generic_pluginui.cc:746 panner_ui.cc:150 +#: automation_time_axis.cc:496 gain_meter.cc:194 generic_pluginui.cc:454 +#: generic_pluginui.cc:775 panner_ui.cc:149 msgid "Automation|Manual" msgstr "" #: automation_time_axis.cc:257 automation_time_axis.cc:318 -#: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 -#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 -#: generic_pluginui.cc:459 generic_pluginui.cc:748 midi_time_axis.cc:1488 -#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:153 +#: automation_time_axis.cc:501 editor.cc:1937 editor.cc:2014 +#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:197 +#: generic_pluginui.cc:457 generic_pluginui.cc:777 midi_time_axis.cc:1488 +#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:152 msgid "Play" msgstr "" #: automation_time_axis.cc:259 automation_time_axis.cc:329 -#: automation_time_axis.cc:506 gain_meter.cc:201 generic_pluginui.cc:462 -#: generic_pluginui.cc:750 panner_ui.cc:156 +#: automation_time_axis.cc:506 gain_meter.cc:200 generic_pluginui.cc:460 +#: generic_pluginui.cc:779 panner_ui.cc:155 msgid "Write" msgstr "" #: automation_time_axis.cc:261 automation_time_axis.cc:340 -#: automation_time_axis.cc:511 gain_meter.cc:204 generic_pluginui.cc:465 -#: generic_pluginui.cc:752 panner_ui.cc:159 +#: automation_time_axis.cc:511 gain_meter.cc:203 generic_pluginui.cc:463 +#: generic_pluginui.cc:781 panner_ui.cc:158 msgid "Touch" msgstr "" -#: automation_time_axis.cc:351 generic_pluginui.cc:468 meter_patterns.cc:108 +#: automation_time_axis.cc:351 generic_pluginui.cc:466 meter_patterns.cc:108 msgid "???" msgstr "" @@ -2019,8 +2024,8 @@ msgstr "" msgid "Discrete" msgstr "" -#: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 -#: editor.cc:1526 export_format_dialog.cc:476 +#: automation_time_axis.cc:537 editor.cc:1458 editor.cc:1465 editor.cc:1521 +#: editor.cc:1527 export_format_dialog.cc:476 msgid "Linear" msgstr "" @@ -2051,13 +2056,13 @@ msgstr "" msgid "Output" msgstr "" -#: bundle_manager.cc:264 editor.cc:1974 editor_actions.cc:90 +#: bundle_manager.cc:264 editor.cc:1978 editor_actions.cc:90 #: editor_actions.cc:100 msgid "Edit" msgstr "" -#: bundle_manager.cc:265 editor.cc:5493 editor_actions.cc:310 -#: editor_actions.cc:368 plugin_ui.cc:419 processor_box.cc:2229 +#: bundle_manager.cc:265 editor.cc:5497 editor_actions.cc:310 +#: editor_actions.cc:368 plugin_ui.cc:416 processor_box.cc:2268 #: route_time_axis.cc:713 msgid "Delete" msgstr "" @@ -2234,164 +2239,164 @@ msgstr "" msgid "edit note" msgstr "" -#: editor.cc:137 editor.cc:3429 +#: editor.cc:137 editor.cc:3433 msgid "CD Frames" msgstr "" -#: editor.cc:138 editor.cc:3431 +#: editor.cc:138 editor.cc:3435 msgid "Timecode Frames" msgstr "" -#: editor.cc:139 editor.cc:3433 +#: editor.cc:139 editor.cc:3437 msgid "Timecode Seconds" msgstr "" -#: editor.cc:140 editor.cc:3435 +#: editor.cc:140 editor.cc:3439 msgid "Timecode Minutes" msgstr "" -#: editor.cc:141 editor.cc:3437 +#: editor.cc:141 editor.cc:3441 msgid "Seconds" msgstr "" -#: editor.cc:142 editor.cc:3439 +#: editor.cc:142 editor.cc:3443 msgid "Minutes" msgstr "" -#: editor.cc:143 editor.cc:3413 quantize_dialog.cc:37 quantize_dialog.cc:141 +#: editor.cc:143 editor.cc:3417 quantize_dialog.cc:37 quantize_dialog.cc:141 msgid "Beats/128" msgstr "" -#: editor.cc:144 editor.cc:3411 quantize_dialog.cc:38 quantize_dialog.cc:143 +#: editor.cc:144 editor.cc:3415 quantize_dialog.cc:38 quantize_dialog.cc:143 msgid "Beats/64" msgstr "" -#: editor.cc:145 editor.cc:3409 quantize_dialog.cc:39 quantize_dialog.cc:145 +#: editor.cc:145 editor.cc:3413 quantize_dialog.cc:39 quantize_dialog.cc:145 msgid "Beats/32" msgstr "" -#: editor.cc:146 editor.cc:3407 +#: editor.cc:146 editor.cc:3411 msgid "Beats/28" msgstr "" -#: editor.cc:147 editor.cc:3405 +#: editor.cc:147 editor.cc:3409 msgid "Beats/24" msgstr "" -#: editor.cc:148 editor.cc:3403 +#: editor.cc:148 editor.cc:3407 msgid "Beats/20" msgstr "" -#: editor.cc:149 editor.cc:3401 quantize_dialog.cc:40 quantize_dialog.cc:147 +#: editor.cc:149 editor.cc:3405 quantize_dialog.cc:40 quantize_dialog.cc:147 msgid "Beats/16" msgstr "" -#: editor.cc:150 editor.cc:3399 +#: editor.cc:150 editor.cc:3403 msgid "Beats/14" msgstr "" -#: editor.cc:151 editor.cc:3397 +#: editor.cc:151 editor.cc:3401 msgid "Beats/12" msgstr "" -#: editor.cc:152 editor.cc:3395 +#: editor.cc:152 editor.cc:3399 msgid "Beats/10" msgstr "" -#: editor.cc:153 editor.cc:3393 quantize_dialog.cc:41 quantize_dialog.cc:149 +#: editor.cc:153 editor.cc:3397 quantize_dialog.cc:41 quantize_dialog.cc:149 msgid "Beats/8" msgstr "" -#: editor.cc:154 editor.cc:3391 +#: editor.cc:154 editor.cc:3395 msgid "Beats/7" msgstr "" -#: editor.cc:155 editor.cc:3389 +#: editor.cc:155 editor.cc:3393 msgid "Beats/6" msgstr "" -#: editor.cc:156 editor.cc:3387 +#: editor.cc:156 editor.cc:3391 msgid "Beats/5" msgstr "" -#: editor.cc:157 editor.cc:3385 quantize_dialog.cc:42 quantize_dialog.cc:151 +#: editor.cc:157 editor.cc:3389 quantize_dialog.cc:42 quantize_dialog.cc:151 msgid "Beats/4" msgstr "" -#: editor.cc:158 editor.cc:3383 quantize_dialog.cc:43 quantize_dialog.cc:153 +#: editor.cc:158 editor.cc:3387 quantize_dialog.cc:43 quantize_dialog.cc:153 msgid "Beats/3" msgstr "" -#: editor.cc:159 editor.cc:3381 quantize_dialog.cc:44 quantize_dialog.cc:155 +#: editor.cc:159 editor.cc:3385 quantize_dialog.cc:44 quantize_dialog.cc:155 msgid "Beats/2" msgstr "" -#: editor.cc:160 editor.cc:3415 quantize_dialog.cc:45 quantize_dialog.cc:157 +#: editor.cc:160 editor.cc:3419 quantize_dialog.cc:45 quantize_dialog.cc:157 msgid "Beats" msgstr "" -#: editor.cc:161 editor.cc:3417 +#: editor.cc:161 editor.cc:3421 msgid "Bars" msgstr "" -#: editor.cc:162 editor.cc:3419 +#: editor.cc:162 editor.cc:3423 msgid "Marks" msgstr "" -#: editor.cc:163 editor.cc:3421 +#: editor.cc:163 editor.cc:3425 msgid "Region starts" msgstr "" -#: editor.cc:164 editor.cc:3423 +#: editor.cc:164 editor.cc:3427 msgid "Region ends" msgstr "" -#: editor.cc:165 editor.cc:3427 +#: editor.cc:165 editor.cc:3431 msgid "Region syncs" msgstr "" -#: editor.cc:166 editor.cc:3425 +#: editor.cc:166 editor.cc:3429 msgid "Region bounds" msgstr "" -#: editor.cc:171 editor.cc:3455 editor_actions.cc:485 +#: editor.cc:171 editor.cc:3459 editor_actions.cc:485 msgid "No Grid" msgstr "" -#: editor.cc:172 editor.cc:3457 editor_actions.cc:486 +#: editor.cc:172 editor.cc:3461 editor_actions.cc:486 msgid "Grid" msgstr "" -#: editor.cc:173 editor.cc:3459 editor_actions.cc:487 +#: editor.cc:173 editor.cc:3463 editor_actions.cc:487 msgid "Magnetic" msgstr "" -#: editor.cc:178 editor.cc:188 editor.cc:3498 editor.cc:3523 +#: editor.cc:178 editor.cc:188 editor.cc:3502 editor.cc:3527 #: editor_actions.cc:117 editor_actions.cc:468 msgid "Playhead" msgstr "" -#: editor.cc:179 editor.cc:3496 editor_actions.cc:470 +#: editor.cc:179 editor.cc:3500 editor_actions.cc:470 msgid "Marker" msgstr "" -#: editor.cc:180 editor.cc:189 editor.cc:3525 editor_actions.cc:469 +#: editor.cc:180 editor.cc:189 editor.cc:3529 editor_actions.cc:469 msgid "Mouse" msgstr "" -#: editor.cc:185 editor.cc:3517 mono_panner_editor.cc:42 +#: editor.cc:185 editor.cc:3521 mono_panner_editor.cc:42 msgid "Left" msgstr "" -#: editor.cc:186 editor.cc:3519 mono_panner_editor.cc:47 +#: editor.cc:186 editor.cc:3523 mono_panner_editor.cc:47 msgid "Right" msgstr "" -#: editor.cc:187 editor.cc:3521 +#: editor.cc:187 editor.cc:3525 msgid "Center" msgstr "" -#: editor.cc:190 editor.cc:3090 editor.cc:3527 +#: editor.cc:190 editor.cc:3094 editor.cc:3531 msgid "Edit point" msgstr "" @@ -2451,461 +2456,466 @@ msgstr "" msgid "mode" msgstr "" -#: editor.cc:542 +#: editor.cc:541 msgid "Regions" msgstr "" -#: editor.cc:543 +#: editor.cc:542 msgid "Tracks & Busses" msgstr "" -#: editor.cc:544 +#: editor.cc:543 msgid "Snapshots" msgstr "" -#: editor.cc:545 +#: editor.cc:544 msgid "Track & Bus Groups" msgstr "" -#: editor.cc:546 +#: editor.cc:545 msgid "Ranges & Marks" msgstr "" -#: editor.cc:690 editor.cc:5345 rc_option_editor.cc:1294 -#: rc_option_editor.cc:1302 rc_option_editor.cc:1310 rc_option_editor.cc:1318 -#: rc_option_editor.cc:1335 rc_option_editor.cc:1337 rc_option_editor.cc:1345 -#: rc_option_editor.cc:1353 rc_option_editor.cc:1373 rc_option_editor.cc:1385 -#: rc_option_editor.cc:1387 rc_option_editor.cc:1395 rc_option_editor.cc:1403 -#: rc_option_editor.cc:1411 rc_option_editor.cc:1419 rc_option_editor.cc:1427 -#: rc_option_editor.cc:1442 rc_option_editor.cc:1446 +#: editor.cc:690 editor.cc:5349 rc_option_editor.cc:1292 +#: rc_option_editor.cc:1300 rc_option_editor.cc:1308 rc_option_editor.cc:1316 +#: rc_option_editor.cc:1333 rc_option_editor.cc:1335 rc_option_editor.cc:1343 +#: rc_option_editor.cc:1351 rc_option_editor.cc:1371 rc_option_editor.cc:1383 +#: rc_option_editor.cc:1385 rc_option_editor.cc:1393 rc_option_editor.cc:1401 +#: rc_option_editor.cc:1409 rc_option_editor.cc:1417 rc_option_editor.cc:1432 +#: rc_option_editor.cc:1436 msgid "Editor" msgstr "" -#: editor.cc:1215 editor.cc:1225 editor.cc:4440 editor_actions.cc:130 +#: editor.cc:1215 editor.cc:1225 editor.cc:4444 editor_actions.cc:130 #: editor_actions.cc:1813 msgid "Loop" msgstr "" -#: editor.cc:1231 editor.cc:1241 editor.cc:4467 editor_actions.cc:131 +#: editor.cc:1231 editor.cc:1241 editor.cc:4471 editor_actions.cc:131 #: time_info_box.cc:67 msgid "Punch" msgstr "" -#: editor.cc:1352 +#: editor.cc:1353 msgid "Linear (for highly correlated material)" msgstr "" -#: editor.cc:1362 editor.cc:1499 editor.cc:1561 +#: editor.cc:1363 editor.cc:1500 editor.cc:1562 msgid "Constant power" msgstr "" -#: editor.cc:1371 editor.cc:1492 editor.cc:1554 +#: editor.cc:1372 editor.cc:1493 editor.cc:1555 msgid "Symmetric" msgstr "" -#: editor.cc:1381 editor.cc:1474 editor.cc:1536 +#: editor.cc:1382 editor.cc:1475 editor.cc:1537 msgid "Slow" msgstr "" -#: editor.cc:1390 editor.cc:1483 editor.cc:1545 sfdb_ui.cc:1627 +#: editor.cc:1391 editor.cc:1484 editor.cc:1546 sfdb_ui.cc:1627 #: sfdb_ui.cc:1736 msgid "Fast" msgstr "" -#: editor.cc:1437 +#: editor.cc:1438 msgid "programming error: fade in canvas item has no regionview data pointer!" msgstr "" -#: editor.cc:1448 editor.cc:1512 +#: editor.cc:1449 editor.cc:1513 msgid "Deactivate" msgstr "" -#: editor.cc:1450 editor.cc:1514 +#: editor.cc:1451 editor.cc:1515 msgid "Activate" msgstr "" -#: editor.cc:1458 editor.cc:1521 +#: editor.cc:1459 editor.cc:1522 msgid "Slowest" msgstr "" -#: editor.cc:1572 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 +#: editor.cc:1573 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 msgid "programming error: " msgstr "" -#: editor.cc:1673 editor.cc:1681 editor_ops.cc:3522 +#: editor.cc:1674 editor.cc:1682 editor_ops.cc:3522 msgid "Freeze" msgstr "" -#: editor.cc:1677 +#: editor.cc:1678 msgid "Unfreeze" msgstr "" -#: editor.cc:1816 +#: editor.cc:1817 msgid "Selected Regions" msgstr "" -#: editor.cc:1852 editor_markers.cc:895 +#: editor.cc:1853 editor_markers.cc:895 msgid "Play Range" msgstr "" -#: editor.cc:1853 editor_markers.cc:898 +#: editor.cc:1854 editor_markers.cc:898 msgid "Loop Range" msgstr "" -#: editor.cc:1862 editor_actions.cc:332 +#: editor.cc:1863 editor_actions.cc:332 msgid "Move Range Start to Previous Region Boundary" msgstr "" -#: editor.cc:1869 editor_actions.cc:339 +#: editor.cc:1870 editor_actions.cc:339 msgid "Move Range Start to Next Region Boundary" msgstr "" -#: editor.cc:1876 editor_actions.cc:346 +#: editor.cc:1877 editor_actions.cc:346 msgid "Move Range End to Previous Region Boundary" msgstr "" -#: editor.cc:1883 editor_actions.cc:353 +#: editor.cc:1884 editor_actions.cc:353 msgid "Move Range End to Next Region Boundary" msgstr "" -#: editor.cc:1889 +#: editor.cc:1890 msgid "Convert to Region In-Place" msgstr "" -#: editor.cc:1890 +#: editor.cc:1891 msgid "Convert to Region in Region List" msgstr "" -#: editor.cc:1893 editor_markers.cc:925 +#: editor.cc:1894 editor_markers.cc:925 msgid "Select All in Range" msgstr "" -#: editor.cc:1896 +#: editor.cc:1897 msgid "Set Loop from Range" msgstr "" -#: editor.cc:1897 +#: editor.cc:1898 msgid "Set Punch from Range" msgstr "" -#: editor.cc:1900 +#: editor.cc:1901 msgid "Add Range Markers" msgstr "" -#: editor.cc:1903 +#: editor.cc:1904 msgid "Crop Region to Range" msgstr "" -#: editor.cc:1904 +#: editor.cc:1905 msgid "Fill Range with Region" msgstr "" -#: editor.cc:1905 editor_actions.cc:289 +#: editor.cc:1906 editor_actions.cc:289 msgid "Duplicate Range" msgstr "" -#: editor.cc:1908 +#: editor.cc:1909 msgid "Consolidate Range" msgstr "" -#: editor.cc:1909 +#: editor.cc:1910 msgid "Consolidate Range With Processing" msgstr "" -#: editor.cc:1910 +#: editor.cc:1911 msgid "Bounce Range to Region List" msgstr "" -#: editor.cc:1911 +#: editor.cc:1912 msgid "Bounce Range to Region List With Processing" msgstr "" -#: editor.cc:1912 editor_markers.cc:908 +#: editor.cc:1913 editor_markers.cc:908 msgid "Export Range..." msgstr "" -#: editor.cc:1927 editor.cc:2008 editor_actions.cc:281 +#: editor.cc:1915 +msgid "Export Video Range..." +msgstr "" + +#: editor.cc:1931 editor.cc:2012 editor_actions.cc:281 msgid "Play From Edit Point" msgstr "" -#: editor.cc:1928 editor.cc:2009 +#: editor.cc:1932 editor.cc:2013 msgid "Play From Start" msgstr "" -#: editor.cc:1929 +#: editor.cc:1933 msgid "Play Region" msgstr "" -#: editor.cc:1931 +#: editor.cc:1935 msgid "Loop Region" msgstr "" -#: editor.cc:1941 editor.cc:2018 +#: editor.cc:1945 editor.cc:2022 msgid "Select All in Track" msgstr "" -#: editor.cc:1942 editor.cc:2019 editor_actions.cc:185 -#: export_timespan_selector.cc:53 processor_box.cc:2237 +#: editor.cc:1946 editor.cc:2023 editor_actions.cc:185 +#: export_timespan_selector.cc:53 processor_box.cc:2276 msgid "Select All" msgstr "" -#: editor.cc:1943 editor.cc:2020 +#: editor.cc:1947 editor.cc:2024 msgid "Invert Selection in Track" msgstr "" -#: editor.cc:1944 editor.cc:2021 editor_actions.cc:187 +#: editor.cc:1948 editor.cc:2025 editor_actions.cc:187 msgid "Invert Selection" msgstr "" -#: editor.cc:1946 +#: editor.cc:1950 msgid "Set Range to Loop Range" msgstr "" -#: editor.cc:1947 +#: editor.cc:1951 msgid "Set Range to Punch Range" msgstr "" -#: editor.cc:1949 editor.cc:2023 editor_actions.cc:188 +#: editor.cc:1953 editor.cc:2027 editor_actions.cc:188 msgid "Select All After Edit Point" msgstr "" -#: editor.cc:1950 editor.cc:2024 editor_actions.cc:189 +#: editor.cc:1954 editor.cc:2028 editor_actions.cc:189 msgid "Select All Before Edit Point" msgstr "" -#: editor.cc:1951 editor.cc:2025 +#: editor.cc:1955 editor.cc:2029 msgid "Select All After Playhead" msgstr "" -#: editor.cc:1952 editor.cc:2026 +#: editor.cc:1956 editor.cc:2030 msgid "Select All Before Playhead" msgstr "" -#: editor.cc:1953 +#: editor.cc:1957 msgid "Select All Between Playhead and Edit Point" msgstr "" -#: editor.cc:1954 +#: editor.cc:1958 msgid "Select All Within Playhead and Edit Point" msgstr "" -#: editor.cc:1955 +#: editor.cc:1959 msgid "Select Range Between Playhead and Edit Point" msgstr "" -#: editor.cc:1957 editor.cc:2028 editor_actions.cc:127 editor_actions.cc:128 +#: editor.cc:1961 editor.cc:2032 editor_actions.cc:127 editor_actions.cc:128 msgid "Select" msgstr "" -#: editor.cc:1965 editor.cc:2036 editor_actions.cc:309 processor_box.cc:2222 +#: editor.cc:1969 editor.cc:2040 editor_actions.cc:309 processor_box.cc:2261 msgid "Cut" msgstr "" -#: editor.cc:1966 editor.cc:2037 editor_actions.cc:312 processor_box.cc:2225 +#: editor.cc:1970 editor.cc:2041 editor_actions.cc:312 processor_box.cc:2264 msgid "Copy" msgstr "" -#: editor.cc:1967 editor.cc:2038 editor_actions.cc:313 processor_box.cc:2233 +#: editor.cc:1971 editor.cc:2042 editor_actions.cc:313 processor_box.cc:2272 msgid "Paste" msgstr "" -#: editor.cc:1971 editor_actions.cc:87 +#: editor.cc:1975 editor_actions.cc:87 msgid "Align" msgstr "" -#: editor.cc:1972 +#: editor.cc:1976 msgid "Align Relative" msgstr "" -#: editor.cc:1979 +#: editor.cc:1983 msgid "Insert Selected Region" msgstr "" -#: editor.cc:1980 +#: editor.cc:1984 msgid "Insert Existing Media" msgstr "" -#: editor.cc:1989 editor.cc:2045 +#: editor.cc:1993 editor.cc:2049 msgid "Nudge Entire Track Later" msgstr "" -#: editor.cc:1990 editor.cc:2046 +#: editor.cc:1994 editor.cc:2050 msgid "Nudge Track After Edit Point Later" msgstr "" -#: editor.cc:1991 editor.cc:2047 +#: editor.cc:1995 editor.cc:2051 msgid "Nudge Entire Track Earlier" msgstr "" -#: editor.cc:1992 editor.cc:2048 +#: editor.cc:1996 editor.cc:2052 msgid "Nudge Track After Edit Point Earlier" msgstr "" -#: editor.cc:1994 editor.cc:2050 +#: editor.cc:1998 editor.cc:2054 msgid "Nudge" msgstr "" -#: editor.cc:3070 +#: editor.cc:3074 msgid "Smart Mode (add Range functions to Object mode)" msgstr "" -#: editor.cc:3071 +#: editor.cc:3075 msgid "Object Mode (select/move Objects)" msgstr "" -#: editor.cc:3072 +#: editor.cc:3076 msgid "Range Mode (select/move Ranges)" msgstr "" -#: editor.cc:3073 +#: editor.cc:3077 msgid "Draw/Edit MIDI Notes" msgstr "" -#: editor.cc:3074 +#: editor.cc:3078 msgid "Draw Region Gain" msgstr "" -#: editor.cc:3075 +#: editor.cc:3079 msgid "Select Zoom Range" msgstr "" -#: editor.cc:3076 +#: editor.cc:3080 msgid "Stretch/Shrink Regions and MIDI Notes" msgstr "" -#: editor.cc:3077 +#: editor.cc:3081 msgid "Listen to Specific Regions" msgstr "" -#: editor.cc:3078 +#: editor.cc:3082 msgid "Note Level Editing" msgstr "" -#: editor.cc:3079 +#: editor.cc:3083 msgid "" "Groups: click to (de)activate\n" "Context-click for other operations" msgstr "" -#: editor.cc:3080 +#: editor.cc:3084 msgid "Nudge Region/Selection Later" msgstr "" -#: editor.cc:3081 +#: editor.cc:3085 msgid "Nudge Region/Selection Earlier" msgstr "" -#: editor.cc:3082 editor_actions.cc:242 +#: editor.cc:3086 editor_actions.cc:242 msgid "Zoom In" msgstr "" -#: editor.cc:3083 editor_actions.cc:241 +#: editor.cc:3087 editor_actions.cc:241 msgid "Zoom Out" msgstr "" -#: editor.cc:3084 editor_actions.cc:243 +#: editor.cc:3088 editor_actions.cc:243 msgid "Zoom to Session" msgstr "" -#: editor.cc:3085 +#: editor.cc:3089 msgid "Zoom focus" msgstr "" -#: editor.cc:3086 +#: editor.cc:3090 msgid "Expand Tracks" msgstr "" -#: editor.cc:3087 +#: editor.cc:3091 msgid "Shrink Tracks" msgstr "" -#: editor.cc:3088 +#: editor.cc:3092 msgid "Snap/Grid Units" msgstr "" -#: editor.cc:3089 +#: editor.cc:3093 msgid "Snap/Grid Mode" msgstr "" -#: editor.cc:3091 +#: editor.cc:3095 msgid "Edit Mode" msgstr "" -#: editor.cc:3092 +#: editor.cc:3096 msgid "" "Nudge Clock\n" "(controls distance used to nudge regions and selections)" msgstr "" -#: editor.cc:3194 +#: editor.cc:3198 msgid "malformed URL passed to drag-n-drop code" msgstr "" -#: editor.cc:3256 editor_actions.cc:291 +#: editor.cc:3260 editor_actions.cc:291 msgid "Command|Undo" msgstr "" -#: editor.cc:3258 +#: editor.cc:3262 msgid "Command|Undo (%1)" msgstr "" -#: editor.cc:3265 editor_actions.cc:292 +#: editor.cc:3269 editor_actions.cc:292 msgid "Redo" msgstr "" -#: editor.cc:3267 +#: editor.cc:3271 msgid "Redo (%1)" msgstr "" -#: editor.cc:3286 editor.cc:3310 editor_actions.cc:106 editor_actions.cc:1794 +#: editor.cc:3290 editor.cc:3314 editor_actions.cc:106 editor_actions.cc:1794 msgid "Duplicate" msgstr "" -#: editor.cc:3287 +#: editor.cc:3291 msgid "Number of duplications:" msgstr "" -#: editor.cc:3864 +#: editor.cc:3868 msgid "Playlist Deletion" msgstr "" -#: editor.cc:3865 +#: editor.cc:3869 msgid "" "Playlist %1 is currently unused.\n" "If it is kept, its audio files will not be cleaned.\n" "If it is deleted, audio files used by it alone will be cleaned." msgstr "" -#: editor.cc:3875 +#: editor.cc:3879 msgid "Delete Playlist" msgstr "" -#: editor.cc:3876 +#: editor.cc:3880 msgid "Keep Playlist" msgstr "" -#: editor.cc:3877 editor_audio_import.cc:581 editor_ops.cc:5856 -#: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 +#: editor.cc:3881 editor_audio_import.cc:581 editor_ops.cc:5856 +#: engine_dialog.cc:1711 sfdb_freesound_mootcher.cc:69 processor_box.cc:2030 +#: processor_box.cc:2055 msgid "Cancel" msgstr "" -#: editor.cc:4021 +#: editor.cc:4025 msgid "new playlists" msgstr "" -#: editor.cc:4037 +#: editor.cc:4041 msgid "copy playlists" msgstr "" -#: editor.cc:4052 +#: editor.cc:4056 msgid "clear playlists" msgstr "" -#: editor.cc:4687 +#: editor.cc:4691 msgid "Please wait while %1 loads visual data." msgstr "" -#: editor.cc:5492 editor_markers.cc:940 panner_ui.cc:393 processor_box.cc:2253 +#: editor.cc:5496 editor_markers.cc:940 panner_ui.cc:392 processor_box.cc:2292 msgid "Edit..." msgstr "" @@ -2954,8 +2964,8 @@ msgstr "" msgid "Position" msgstr "" -#: editor_actions.cc:101 gain_meter.cc:121 gain_meter.cc:791 panner_ui.cc:177 -#: panner_ui.cc:586 +#: editor_actions.cc:101 gain_meter.cc:120 gain_meter.cc:794 panner_ui.cc:176 +#: panner_ui.cc:585 msgid "Trim" msgstr "" @@ -3005,7 +3015,7 @@ msgstr "" msgid "Misc Options" msgstr "" -#: editor_actions.cc:115 rc_option_editor.cc:1460 route_group_dialog.cc:48 +#: editor_actions.cc:115 rc_option_editor.cc:1450 route_group_dialog.cc:48 #: session_option_editor.cc:218 session_option_editor.cc:225 msgid "Monitoring" msgstr "" @@ -3183,7 +3193,7 @@ msgstr "" msgid "Playhead to Range End" msgstr "" -#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2239 +#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2278 msgid "Deselect All" msgstr "" @@ -3630,6 +3640,14 @@ msgstr "" msgid "Snap to Minutes" msgstr "" +#: editor_actions.cc:505 +msgid "Snap to One Twenty Eighths" +msgstr "" + +#: editor_actions.cc:506 +msgid "Snap to Sixty Fourths" +msgstr "" + #: editor_actions.cc:507 msgid "Snap to Thirty Seconds" msgstr "Snap to demisemiquavers" @@ -3734,7 +3752,7 @@ msgstr "" msgid "Video Monitor" msgstr "" -#: editor_actions.cc:549 rc_option_editor.cc:1842 +#: editor_actions.cc:549 rc_option_editor.cc:1829 msgid "Video" msgstr "" @@ -4245,31 +4263,31 @@ msgstr "" msgid "move tempo mark" msgstr "" -#: editor_drag.cc:2545 +#: editor_drag.cc:2550 msgid "change fade in length" msgstr "" -#: editor_drag.cc:2663 +#: editor_drag.cc:2668 msgid "change fade out length" msgstr "" -#: editor_drag.cc:3018 +#: editor_drag.cc:3023 msgid "move marker" msgstr "" -#: editor_drag.cc:3581 +#: editor_drag.cc:3586 msgid "An error occurred while executing time stretch operation" msgstr "" -#: editor_drag.cc:4011 +#: editor_drag.cc:4016 msgid "programming_error: %1" msgstr "" -#: editor_drag.cc:4081 editor_markers.cc:680 +#: editor_drag.cc:4086 editor_markers.cc:680 msgid "new range marker" msgstr "" -#: editor_drag.cc:4762 +#: editor_drag.cc:4767 msgid "rubberband selection" msgstr "" @@ -4383,8 +4401,8 @@ msgstr "" #: editor_markers.cc:1022 editor_markers.cc:1041 editor_markers.cc:1071 #: editor_markers.cc:1102 editor_markers.cc:1132 editor_markers.cc:1160 #: editor_markers.cc:1191 editor_markers.cc:1216 editor_markers.cc:1267 -#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1514 -#: editor_mouse.cc:2478 +#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1526 +#: editor_mouse.cc:2528 msgid "programming error: marker canvas item has no marker object pointer!" msgstr "" @@ -4481,32 +4499,32 @@ msgstr "" msgid "Set Punch Range" msgstr "" -#: editor_markers.cc:1351 editor_ops.cc:1699 +#: editor_markers.cc:1362 editor_ops.cc:1699 msgid "New Name:" msgstr "" -#: editor_markers.cc:1354 +#: editor_markers.cc:1365 msgid "Rename Mark" msgstr "" -#: editor_markers.cc:1356 +#: editor_markers.cc:1367 msgid "Rename Range" msgstr "" -#: editor_markers.cc:1363 editor_mouse.cc:2510 processor_box.cc:1781 -#: processor_box.cc:2235 route_time_axis.cc:982 route_ui.cc:1540 +#: editor_markers.cc:1374 editor_mouse.cc:2560 processor_box.cc:1808 +#: processor_box.cc:2274 route_time_axis.cc:982 route_ui.cc:1540 msgid "Rename" msgstr "" -#: editor_markers.cc:1376 +#: editor_markers.cc:1387 msgid "rename marker" msgstr "" -#: editor_markers.cc:1399 +#: editor_markers.cc:1411 msgid "set loop range" msgstr "" -#: editor_markers.cc:1405 +#: editor_markers.cc:1417 msgid "set punch range" msgstr "" @@ -4518,21 +4536,21 @@ msgstr "" msgid "Editor::event_frame() used on unhandled event type %1" msgstr "" -#: editor_mouse.cc:2235 editor_mouse.cc:2260 editor_mouse.cc:2273 +#: editor_mouse.cc:2285 editor_mouse.cc:2310 editor_mouse.cc:2323 msgid "" "programming error: control point canvas item has no control point object " "pointer!" msgstr "" -#: editor_mouse.cc:2416 +#: editor_mouse.cc:2466 msgid "start point trim" msgstr "" -#: editor_mouse.cc:2441 +#: editor_mouse.cc:2491 msgid "End point trim" msgstr "" -#: editor_mouse.cc:2508 +#: editor_mouse.cc:2558 msgid "Name for region:" msgstr "" @@ -4596,6 +4614,30 @@ msgstr "" msgid "insert region" msgstr "" +#: editor_ops.cc:2261 +msgid "raise regions" +msgstr "" + +#: editor_ops.cc:2263 +msgid "raise region" +msgstr "" + +#: editor_ops.cc:2269 +msgid "raise regions to top" +msgstr "" + +#: editor_ops.cc:2271 +msgid "raise region to top" +msgstr "" + +#: editor_ops.cc:2277 +msgid "lower regions" +msgstr "" + +#: editor_ops.cc:2279 editor_ops.cc:2287 +msgid "lower region" +msgstr "" + #: editor_ops.cc:2285 msgid "lower regions to bottom" msgstr "" @@ -4604,7 +4646,7 @@ msgstr "" msgid "Rename Region" msgstr "" -#: editor_ops.cc:2372 processor_box.cc:1779 route_ui.cc:1538 +#: editor_ops.cc:2372 processor_box.cc:1806 route_ui.cc:1538 msgid "New name:" msgstr "" @@ -4966,7 +5008,7 @@ msgstr "" msgid "tracks" msgstr "" -#: editor_ops.cc:6485 route_ui.cc:1822 +#: editor_ops.cc:6485 route_ui.cc:1821 msgid "track" msgstr "" @@ -4974,7 +5016,7 @@ msgstr "" msgid "busses" msgstr "" -#: editor_ops.cc:6491 route_ui.cc:1822 +#: editor_ops.cc:6491 route_ui.cc:1821 msgid "bus" msgstr "" @@ -5091,8 +5133,8 @@ msgstr "" msgid "Region position glued to Bars|Beats time?" msgstr "" -#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:759 -#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:554 +#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:762 +#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:553 #: stereo_panner.cc:237 msgid "M" msgstr "" @@ -5135,8 +5177,7 @@ msgstr "" msgid "Mult." msgstr "" -#: editor_regions.cc:847 engine_dialog.cc:84 midi_list_editor.cc:103 -#: time_info_box.cc:91 +#: editor_regions.cc:847 midi_list_editor.cc:103 time_info_box.cc:91 msgid "Start" msgstr "" @@ -5202,7 +5243,7 @@ msgstr "" msgid "SI" msgstr "" -#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1880 +#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1867 msgid "Solo Isolated" msgstr "" @@ -5413,246 +5454,217 @@ msgstr "" msgid "timefx cannot be started - thread creation error" msgstr "" -#: engine_dialog.cc:75 -msgid "Realtime" -msgstr "" - -#: engine_dialog.cc:76 -msgid "Do not lock memory" -msgstr "" - -#: engine_dialog.cc:77 -msgid "Unlock memory" -msgstr "" - -#: engine_dialog.cc:78 -msgid "No zombies" -msgstr "" - #: engine_dialog.cc:79 -msgid "Provide monitor ports" +msgid "Device Control Panel" msgstr "" -#: engine_dialog.cc:80 -msgid "Force 16 bit" +#: engine_dialog.cc:80 engine_dialog.cc:1725 +msgid "Measure" msgstr "" #: engine_dialog.cc:81 -msgid "H/W monitoring" +msgid "Use results" msgstr "" #: engine_dialog.cc:82 -msgid "H/W metering" +msgid "Back to settings ... (ignore results)" msgstr "" #: engine_dialog.cc:83 -msgid "Verbose output" +msgid "Calibrate..." msgstr "" -#: engine_dialog.cc:103 -msgid "8000Hz" -msgstr "" - -#: engine_dialog.cc:104 -msgid "22050Hz" -msgstr "" - -#: engine_dialog.cc:105 -msgid "44100Hz" -msgstr "" - -#: engine_dialog.cc:106 -msgid "48000Hz" +#: engine_dialog.cc:87 +msgid "Refresh list" msgstr "" #: engine_dialog.cc:107 -msgid "88200Hz" +msgid "" +"No audio/MIDI backends detected. %1 cannot run\n" +"\n" +"(This is a build/packaging/system error. It should never happen.)" msgstr "" -#: engine_dialog.cc:108 -msgid "96000Hz" +#: engine_dialog.cc:136 +msgid "Latency Measurement Tool" msgstr "" -#: engine_dialog.cc:109 -msgid "192000Hz" +#: engine_dialog.cc:151 +msgid "" +"Turn down the volume on your audio equipment to a very " +"low level." msgstr "" -#: engine_dialog.cc:127 engine_dialog.cc:132 engine_dialog.cc:169 -#: engine_dialog.cc:562 midi_channel_selector.cc:163 -#: midi_channel_selector.cc:402 midi_channel_selector.cc:438 -#: rc_option_editor.cc:1250 sfdb_ui.cc:538 -msgid "None" +#: engine_dialog.cc:159 +msgid "Select two channels below and connect them using a cable." msgstr "" -#: engine_dialog.cc:128 engine_dialog.cc:563 -msgid "Triangular" +#: engine_dialog.cc:164 +msgid "Output channel" msgstr "" -#: engine_dialog.cc:129 engine_dialog.cc:565 -msgid "Rectangular" +#: engine_dialog.cc:172 +msgid "Input channel" msgstr "" -#: engine_dialog.cc:130 engine_dialog.cc:567 -msgid "Shaped" +#: engine_dialog.cc:207 +msgid "Once the channels are connected, click the \"Measure\" button." msgstr "" -#: engine_dialog.cc:158 engine_dialog.cc:483 engine_dialog.cc:974 -msgid "Playback/recording on 1 device" +#: engine_dialog.cc:214 +msgid "When satisfied with the results, click the \"Use results\" button." msgstr "" -#: engine_dialog.cc:159 engine_dialog.cc:487 engine_dialog.cc:540 -#: engine_dialog.cc:977 -msgid "Playback/recording on 2 devices" +#: engine_dialog.cc:229 engine_dialog.cc:1727 +msgid "No measurement results yet" msgstr "" -#: engine_dialog.cc:160 engine_dialog.cc:503 engine_dialog.cc:980 -msgid "Playback only" +#: engine_dialog.cc:238 route_params_ui.cc:105 +msgid "Latency" msgstr "" -#: engine_dialog.cc:161 engine_dialog.cc:505 engine_dialog.cc:983 -msgid "Recording only" +#: engine_dialog.cc:333 +msgid "Audio System:" msgstr "" -#: engine_dialog.cc:171 engine_dialog.cc:448 -msgid "coremidi" -msgstr "" - -#: engine_dialog.cc:173 engine_dialog.cc:581 -msgid "seq" -msgstr "" - -#: engine_dialog.cc:174 engine_dialog.cc:583 -msgid "raw" -msgstr "" - -#: engine_dialog.cc:181 +#: engine_dialog.cc:374 msgid "Driver:" msgstr "" -#: engine_dialog.cc:186 -msgid "Audio Interface:" +#: engine_dialog.cc:380 +msgid "Device:" msgstr "" -#: engine_dialog.cc:191 sfdb_ui.cc:147 sfdb_ui.cc:260 sfdb_ui.cc:265 +#: engine_dialog.cc:385 engine_dialog.cc:475 sfdb_ui.cc:147 sfdb_ui.cc:260 +#: sfdb_ui.cc:265 msgid "Sample rate:" msgstr "" -#: engine_dialog.cc:196 +#: engine_dialog.cc:391 engine_dialog.cc:482 msgid "Buffer size:" msgstr "" -#: engine_dialog.cc:202 -msgid "Number of buffers:" +#: engine_dialog.cc:404 +msgid "Input Channels:" msgstr "" -#: engine_dialog.cc:209 -msgid "Approximate latency:" +#: engine_dialog.cc:415 +msgid "Output Channels:" msgstr "" -#: engine_dialog.cc:222 -msgid "Audio mode:" -msgstr "" - -#: engine_dialog.cc:284 engine_dialog.cc:408 -msgid "Ignore" -msgstr "" - -#: engine_dialog.cc:292 -msgid "Client timeout" -msgstr "" - -#: engine_dialog.cc:299 -msgid "Number of ports:" -msgstr "" - -#: engine_dialog.cc:304 -msgid "MIDI driver:" -msgstr "" - -#: engine_dialog.cc:310 -msgid "Dither:" -msgstr "" - -#: engine_dialog.cc:319 -msgid "" -"No JACK server found anywhere on this system. Please install JACK and restart" -msgstr "" - -#: engine_dialog.cc:327 -msgid "Server:" -msgstr "" - -#: engine_dialog.cc:339 -msgid "Input device:" -msgstr "" - -#: engine_dialog.cc:343 -msgid "Output device:" -msgstr "" - -#: engine_dialog.cc:348 +#: engine_dialog.cc:426 msgid "Hardware input latency:" msgstr "" -#: engine_dialog.cc:351 engine_dialog.cc:357 +#: engine_dialog.cc:429 engine_dialog.cc:442 msgid "samples" msgstr "" -#: engine_dialog.cc:354 +#: engine_dialog.cc:439 msgid "Hardware output latency:" msgstr "" -#: engine_dialog.cc:368 -msgid "Device" +#: engine_dialog.cc:450 +msgid "MIDI System" msgstr "" -#: engine_dialog.cc:370 -msgid "Advanced" -msgstr "" - -#: engine_dialog.cc:653 -msgid "cannot open JACK rc file %1 to store parameters" -msgstr "" - -#: engine_dialog.cc:787 +#: engine_dialog.cc:467 msgid "" -"You do not have any audio devices capable of\n" -"simultaneous playback and recording.\n" +"The %1 audio backend was configured and started externally.\n" +"This limits your control over it." +msgstr "" + +#: engine_dialog.cc:521 +msgid "" +"Your selected audio configuration is playback- or capture-only.\n" "\n" -"Please use Applications -> Utilities -> Audio MIDI Setup\n" -"to create an \"aggregrate\" device, or install a suitable\n" -"audio interface.\n" -"\n" -"Please send email to Apple and ask them why new Macs\n" -"have no duplex audio device.\n" -"\n" -"Alternatively, if you really want just playback\n" -"or recording but not both, start JACK before running\n" -"%1 and choose the relevant device then." +"Latency calibration requires playback and capture" msgstr "" -#: engine_dialog.cc:800 -msgid "No suitable audio devices" +#: engine_dialog.cc:595 +msgid "MIDI Inputs" msgstr "" -#: engine_dialog.cc:1017 -msgid "JACK appears to be missing from the %1 bundle" +#: engine_dialog.cc:612 +msgid "MIDI Outputs" msgstr "" -#: engine_dialog.cc:1087 -msgid "You need to choose an audio device first." +#: engine_dialog.cc:696 +msgid "all available channels" msgstr "" -#: engine_dialog.cc:1104 -msgid "Audio device \"%1\" not known on this computer." +#: engine_dialog.cc:890 +#, c-format +msgid "%u samples" msgstr "" -#: engine_dialog.cc:1256 -msgid "AudioSetup value for %1 is missing data" +#: engine_dialog.cc:941 +#, c-format +msgid "(%.1f msecs)" msgstr "" -#: engine_dialog.cc:1335 -msgid "configuration files contain a JACK server path that doesn't exist (%1)" +#: engine_dialog.cc:1389 +msgid "Cannot set driver to %1" +msgstr "" + +#: engine_dialog.cc:1393 +msgid "Cannot set device name to %1" +msgstr "" + +#: engine_dialog.cc:1397 +msgid "Cannot set sample rate to %1" +msgstr "" + +#: engine_dialog.cc:1401 +msgid "Cannot set buffer size to %1" +msgstr "" + +#: engine_dialog.cc:1407 +msgid "Cannot set input channels to %1" +msgstr "" + +#: engine_dialog.cc:1411 +msgid "Cannot set output channels to %1" +msgstr "" + +#: engine_dialog.cc:1417 +msgid "Cannot set input latency to %1" +msgstr "" + +#: engine_dialog.cc:1421 +msgid "Cannot set output latency to %1" +msgstr "" + +#: engine_dialog.cc:1654 +msgid "No signal detected " +msgstr "" + +#: engine_dialog.cc:1667 port_insert_ui.cc:71 port_insert_ui.cc:99 +msgid "Disconnected from audio engine" +msgstr "" + +#: engine_dialog.cc:1681 +msgid "(signal detection error)" +msgstr "" + +#: engine_dialog.cc:1687 +msgid "(inverted - bad wiring)" +msgstr "" + +#: engine_dialog.cc:1697 +msgid "Detected roundtrip latency: %1" +msgstr "" + +#: engine_dialog.cc:1709 port_insert_ui.cc:135 +msgid "Detecting ..." +msgstr "" + +#: engine_dialog.cc:1789 +msgid "Disconnect from %1" +msgstr "" + +#: engine_dialog.cc:1801 +msgid "Connect to %1" msgstr "" #: export_channel_selector.cc:45 sfdb_ui.cc:145 @@ -5803,9 +5815,9 @@ msgid "Folder:" msgstr "" #: export_filename_selector.cc:37 session_import_dialog.cc:44 -#: transcode_video_dialog.cc:59 video_server_dialog.cc:45 -#: video_server_dialog.cc:47 export_video_dialog.cc:69 -#: export_video_dialog.cc:71 +#: transcode_video_dialog.cc:58 video_server_dialog.cc:45 +#: video_server_dialog.cc:47 export_video_dialog.cc:68 +#: export_video_dialog.cc:70 msgid "Browse" msgstr "" @@ -5975,72 +5987,77 @@ msgstr "" msgid "%1" msgstr "" -#: gain_meter.cc:106 gain_meter.cc:357 gain_meter.cc:462 gain_meter.cc:856 +#: gain_meter.cc:105 gain_meter.cc:360 gain_meter.cc:465 gain_meter.cc:859 msgid "-inf" msgstr "" -#: gain_meter.cc:112 gain_meter.cc:913 +#: gain_meter.cc:111 gain_meter.cc:916 msgid "Fader automation mode" msgstr "" -#: gain_meter.cc:113 gain_meter.cc:914 +#: gain_meter.cc:112 gain_meter.cc:917 msgid "Fader automation type" msgstr "" -#: gain_meter.cc:122 gain_meter.cc:795 panner_ui.cc:178 panner_ui.cc:590 +#: gain_meter.cc:121 gain_meter.cc:798 panner_ui.cc:177 panner_ui.cc:589 msgid "Abs" msgstr "" -#: gain_meter.cc:762 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:557 +#: gain_meter.cc:765 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:556 #: route_time_axis.cc:2411 msgid "P" msgstr "" -#: gain_meter.cc:765 panner_ui.cc:560 +#: gain_meter.cc:768 panner_ui.cc:559 msgid "T" msgstr "" -#: gain_meter.cc:768 panner_ui.cc:563 +#: gain_meter.cc:771 panner_ui.cc:562 msgid "W" msgstr "" -#: generic_pluginui.cc:83 +#: generic_pluginui.cc:81 msgid "Presets" msgstr "" -#: generic_pluginui.cc:232 +#: generic_pluginui.cc:230 msgid "Switches" msgstr "" -#: generic_pluginui.cc:242 generic_pluginui.cc:376 processor_box.cc:2212 +#: generic_pluginui.cc:240 generic_pluginui.cc:374 processor_box.cc:2251 msgid "Controls" msgstr "" -#: generic_pluginui.cc:270 +#: generic_pluginui.cc:268 msgid "Plugin Editor: could not build control element for port %1" msgstr "" -#: generic_pluginui.cc:408 +#: generic_pluginui.cc:406 msgid "Meters" msgstr "" -#: generic_pluginui.cc:423 +#: generic_pluginui.cc:421 msgid "Automation control" msgstr "" -#: generic_pluginui.cc:430 +#: generic_pluginui.cc:428 msgid "Mgnual" msgstr "" -#: global_port_matrix.cc:164 +#: global_port_matrix.cc:157 msgid "Audio Connection Manager" msgstr "" -#: global_port_matrix.cc:167 +#: global_port_matrix.cc:160 msgid "MIDI Connection Manager" msgstr "" -#: global_port_matrix.cc:213 io_selector.cc:216 +#: global_port_matrix.cc:200 io_selector.cc:210 mixer_strip.cc:719 +#: mixer_strip.cc:845 +msgid "Disconnect" +msgstr "" + +#: global_port_matrix.cc:206 io_selector.cc:216 msgid "port" msgstr "" @@ -6230,19 +6247,19 @@ msgstr "" msgid "Main_menu" msgstr "" -#: keyeditor.cc:255 +#: keyeditor.cc:253 msgid "redirectmenu" msgstr "" -#: keyeditor.cc:257 +#: keyeditor.cc:255 msgid "Editor_menus" msgstr "" -#: keyeditor.cc:259 +#: keyeditor.cc:257 msgid "RegionList" msgstr "" -#: keyeditor.cc:261 +#: keyeditor.cc:259 msgid "ProcessorMenu" msgstr "" @@ -6264,7 +6281,7 @@ msgid_plural "%1 samples" msgstr[0] "" msgstr[1] "" -#: latency_gui.cc:72 panner_ui.cc:392 +#: latency_gui.cc:72 panner_ui.cc:391 msgid "Reset" msgstr "" @@ -6356,110 +6373,98 @@ msgstr "" msgid "add range marker" msgstr "" -#: main.cc:83 -msgid "%1 could not connect to JACK." +#: main.cc:81 +msgid "%1 could not connect to the audio backend." msgstr "" -#: main.cc:87 -msgid "" -"There are several possible reasons:\n" -"\n" -"1) JACK is not running.\n" -"2) JACK is running as another user, perhaps root.\n" -"3) There is already another client called \"%1\".\n" -"\n" -"Please consider the possibilities, and perhaps (re)start JACK." -msgstr "" - -#: main.cc:203 main.cc:324 +#: main.cc:194 main.cc:315 msgid "cannot create user %3 folder %1 (%2)" msgstr "" -#: main.cc:210 main.cc:331 +#: main.cc:201 main.cc:322 msgid "cannot open pango.rc file %1" msgstr "" -#: main.cc:235 main.cc:358 +#: main.cc:226 main.cc:349 msgid "Cannot find ArdourMono TrueType font" msgstr "" -#: main.cc:247 main.cc:364 +#: main.cc:238 main.cc:355 msgid "Cannot load ArdourMono TrueType font." msgstr "" -#: main.cc:312 +#: main.cc:303 msgid "" "No fontconfig file found on your system. Things may looked very odd or ugly" msgstr "" -#: main.cc:368 +#: main.cc:359 msgid "Failed to set fontconfig configuration." msgstr "" -#: main.cc:379 main.cc:395 -msgid "JACK exited" +#: main.cc:370 main.cc:386 +msgid "The audio backend (%1) has failed, or terminated" msgstr "" -#: main.cc:382 +#: main.cc:373 msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" +"%2 exited unexpectedly, and without notifying %1.\n" "\n" -"This could be due to misconfiguration or to an error inside JACK.\n" +"This could be due to misconfiguration or to an error inside %2.\n" "\n" "Click OK to exit %1." msgstr "" -#: main.cc:397 -msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" -"\n" -"This is probably due to an error inside JACK. You should restart JACK\n" -"and reconnect %1 to it, or exit %1 now. You cannot save your\n" -"session at this time, because we would lose your connection information.\n" +#: main.cc:387 +msgid "%2 exited unexpectedly, and without notifying %1." msgstr "" -#: main.cc:487 +#: main.cc:474 msgid " (built using " msgstr "" -#: main.cc:490 +#: main.cc:477 msgid " and GCC version " msgstr "" -#: main.cc:500 +#: main.cc:487 msgid "Copyright (C) 1999-2012 Paul Davis" msgstr "" -#: main.cc:501 +#: main.cc:488 msgid "" "Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " "Baker, Robin Gareus" msgstr "" -#: main.cc:503 +#: main.cc:490 msgid "%1 comes with ABSOLUTELY NO WARRANTY" msgstr "" -#: main.cc:504 +#: main.cc:491 msgid "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." msgstr "" -#: main.cc:505 +#: main.cc:492 msgid "This is free software, and you are welcome to redistribute it " msgstr "" -#: main.cc:506 +#: main.cc:493 msgid "under certain conditions; see the source for copying conditions." msgstr "" -#: main.cc:513 +#: main.cc:500 msgid "could not initialize %1." msgstr "could not initialise %1." -#: main.cc:522 +#: main.cc:509 msgid "Cannot xinstall SIGPIPE error handler" msgstr "" +#: main.cc:515 +msgid "could not create %1 GUI" +msgstr "" + #: main_clock.cc:51 msgid "Display delta to edit cursor" msgstr "" @@ -6473,6 +6478,11 @@ msgstr "" msgid "All" msgstr "" +#: midi_channel_selector.cc:163 midi_channel_selector.cc:402 +#: midi_channel_selector.cc:438 rc_option_editor.cc:1248 sfdb_ui.cc:538 +msgid "None" +msgstr "" + #: midi_channel_selector.cc:167 midi_channel_selector.cc:407 #: midi_channel_selector.cc:443 msgid "Invert" @@ -6482,6 +6492,10 @@ msgstr "" msgid "Force" msgstr "" +#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 +msgid "MIDI Channel Control" +msgstr "" + #: midi_channel_selector.cc:332 msgid "Playback all channels" msgstr "" @@ -6570,6 +6584,22 @@ msgstr "" msgid "Triplet" msgstr "" +#: midi_list_editor.cc:58 +msgid "Quarter" +msgstr "" + +#: midi_list_editor.cc:59 +msgid "Eighth" +msgstr "" + +#: midi_list_editor.cc:60 +msgid "Sixteenth" +msgstr "" + +#: midi_list_editor.cc:61 +msgid "Thirty-second" +msgstr "" + #: midi_list_editor.cc:62 msgid "Sixty-fourth" msgstr "" @@ -6598,6 +6628,10 @@ msgstr "" msgid "edit note velocity" msgstr "" +#: midi_list_editor.cc:258 +msgid "edit note length" +msgstr "" + #: midi_list_editor.cc:460 msgid "insert new note" msgstr "" @@ -6714,6 +6748,10 @@ msgstr "" msgid "Program " msgstr "" +#: midi_region_view.cc:3132 +msgid "Channel " +msgstr "" + #: midi_region_view.cc:3301 midi_region_view.cc:3303 msgid "paste" msgstr "" @@ -6758,6 +6796,10 @@ msgstr "" msgid "Note Mode" msgstr "" +#: midi_time_axis.cc:497 +msgid "Channel Selector" +msgstr "" + #: midi_time_axis.cc:502 msgid "Color Mode" msgstr "Colour Mode" @@ -6827,27 +6869,27 @@ msgstr "" msgid "some" msgstr "" -#: midi_tracer.cc:43 +#: midi_tracer.cc:46 msgid "Line history: " msgstr "" -#: midi_tracer.cc:51 +#: midi_tracer.cc:54 msgid "Auto-Scroll" msgstr "" -#: midi_tracer.cc:52 +#: midi_tracer.cc:55 msgid "Decimal" msgstr "" -#: midi_tracer.cc:53 rc_option_editor.cc:659 +#: midi_tracer.cc:56 rc_option_editor.cc:657 msgid "Enabled" msgstr "" -#: midi_tracer.cc:54 +#: midi_tracer.cc:57 msgid "Delta times" msgstr "" -#: midi_tracer.cc:66 +#: midi_tracer.cc:70 msgid "Port:" msgstr "" @@ -6903,7 +6945,7 @@ msgstr "" msgid "Missing Plugins" msgstr "" -#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 +#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:59 msgid "OK" msgstr "" @@ -6980,7 +7022,7 @@ msgid "pre" msgstr "" #: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 -#: rc_option_editor.cc:1881 +#: rc_option_editor.cc:1868 msgid "Comments" msgstr "" @@ -7026,11 +7068,11 @@ msgstr "" msgid "Mix group" msgstr "" -#: mixer_strip.cc:351 rc_option_editor.cc:1878 +#: mixer_strip.cc:351 rc_option_editor.cc:1865 msgid "Phase Invert" msgstr "" -#: mixer_strip.cc:352 rc_option_editor.cc:1879 route_ui.cc:1218 +#: mixer_strip.cc:352 rc_option_editor.cc:1866 route_ui.cc:1218 msgid "Solo Safe" msgstr "" @@ -7038,7 +7080,7 @@ msgstr "" msgid "Group" msgstr "" -#: mixer_strip.cc:356 rc_option_editor.cc:1882 +#: mixer_strip.cc:356 rc_option_editor.cc:1869 msgid "Meter Point" msgstr "" @@ -7056,8 +7098,8 @@ msgstr "" msgid "Snd" msgstr "" -#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 -msgid "Not connected to JACK - no I/O changes are possible" +#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2193 +msgid "Not connected to audio engine - no I/O changes are possible" msgstr "" #: mixer_strip.cc:1096 @@ -7541,7 +7583,7 @@ msgstr "" #: opts.cc:63 msgid "" -" -c, --name Use a specific jack client name, default is " +" -c, --name Use a specific backend client name, default is " "ardour\n" msgstr "" @@ -7605,7 +7647,7 @@ msgstr "" msgid "Panner (2D)" msgstr "" -#: panner2d.cc:783 panner_ui.cc:384 plugin_ui.cc:451 +#: panner2d.cc:783 panner_ui.cc:383 plugin_ui.cc:448 msgid "Bypass" msgstr "" @@ -7613,15 +7655,15 @@ msgstr "" msgid "Panner" msgstr "" -#: panner_ui.cc:71 +#: panner_ui.cc:70 msgid "Pan automation mode" msgstr "" -#: panner_ui.cc:72 +#: panner_ui.cc:71 msgid "Pan automation type" msgstr "" -#: panner_ui.cc:295 +#: panner_ui.cc:294 msgid "" "No panner user interface is currently available for %1-in/2out tracks/busses" msgstr "" @@ -7774,133 +7816,133 @@ msgstr "" msgid "By Category" msgstr "" -#: plugin_ui.cc:116 +#: plugin_ui.cc:114 msgid "Eh? LADSPA plugins don't have editors!" msgstr "" -#: plugin_ui.cc:125 plugin_ui.cc:227 +#: plugin_ui.cc:123 plugin_ui.cc:226 msgid "" "unknown type of editor-supplying plugin (note: no VST support in this " "version of %1)" msgstr "" -#: plugin_ui.cc:128 +#: plugin_ui.cc:126 msgid "unknown type of editor-supplying plugin" msgstr "" -#: plugin_ui.cc:257 +#: plugin_ui.cc:256 msgid "" "unknown type of editor-supplying plugin (note: no linuxVST support in this " "version of %1)" msgstr "" -#: plugin_ui.cc:329 +#: plugin_ui.cc:328 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "" -#: plugin_ui.cc:417 +#: plugin_ui.cc:414 msgid "Add" msgstr "" -#: plugin_ui.cc:421 +#: plugin_ui.cc:418 msgid "Description" msgstr "" -#: plugin_ui.cc:422 +#: plugin_ui.cc:419 msgid "Plugin analysis" msgstr "" -#: plugin_ui.cc:429 +#: plugin_ui.cc:426 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:430 +#: plugin_ui.cc:427 msgid "Save a new preset" msgstr "" -#: plugin_ui.cc:431 +#: plugin_ui.cc:428 msgid "Save the current preset" msgstr "" -#: plugin_ui.cc:432 +#: plugin_ui.cc:429 msgid "Delete the current preset" msgstr "" -#: plugin_ui.cc:433 +#: plugin_ui.cc:430 msgid "Disable signal processing by the plugin" msgstr "" -#: plugin_ui.cc:466 plugin_ui.cc:662 +#: plugin_ui.cc:463 plugin_ui.cc:659 msgid "" "Click to allow the plugin to receive keyboard events that %1 would normally " "use as a shortcut" msgstr "" -#: plugin_ui.cc:467 +#: plugin_ui.cc:464 msgid "Click to enable/disable this plugin" msgstr "" -#: plugin_ui.cc:506 +#: plugin_ui.cc:503 msgid "latency (%1 sample)" msgid_plural "latency (%1 samples)" msgstr[0] "" msgstr[1] "" -#: plugin_ui.cc:508 +#: plugin_ui.cc:505 msgid "latency (%1 ms)" msgstr "" -#: plugin_ui.cc:519 +#: plugin_ui.cc:516 msgid "Edit Latency" msgstr "" -#: plugin_ui.cc:558 +#: plugin_ui.cc:555 msgid "Plugin preset %1 not found" msgstr "" -#: plugin_ui.cc:595 +#: plugin_ui.cc:592 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "full version" msgstr "" -#: plugin_ui.cc:615 plugin_ui.cc:630 +#: plugin_ui.cc:612 plugin_ui.cc:627 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "newer version" msgstr "" -#: plugin_ui.cc:669 +#: plugin_ui.cc:666 msgid "Click to allow normal use of %1 keyboard shortcuts" msgstr "" -#: port_group.cc:335 +#: port_group.cc:337 msgid "%1 Busses" msgstr "" -#: port_group.cc:336 +#: port_group.cc:338 msgid "%1 Tracks" msgstr "" -#: port_group.cc:337 +#: port_group.cc:339 msgid "Hardware" msgstr "" -#: port_group.cc:338 +#: port_group.cc:340 msgid "%1 Misc" msgstr "" -#: port_group.cc:339 +#: port_group.cc:341 msgid "Other" msgstr "" -#: port_group.cc:430 port_group.cc:431 +#: port_group.cc:432 port_group.cc:433 msgid "LTC Out" msgstr "" -#: port_group.cc:434 port_group.cc:435 +#: port_group.cc:436 port_group.cc:437 msgid "LTC In" msgstr "" @@ -7936,15 +7978,15 @@ msgstr "" msgid "MMC out" msgstr "" -#: port_group.cc:540 +#: port_group.cc:532 msgid ":monitor" msgstr "" -#: port_group.cc:552 +#: port_group.cc:544 msgid "system:" msgstr "" -#: port_group.cc:553 +#: port_group.cc:545 msgid "alsa_pcm" msgstr "" @@ -7960,18 +8002,10 @@ msgstr "" msgid "Return/Input" msgstr "" -#: port_insert_ui.cc:71 port_insert_ui.cc:99 -msgid "Disconnected from audio engine" -msgstr "" - #: port_insert_ui.cc:86 msgid "No signal detected" msgstr "" -#: port_insert_ui.cc:135 -msgid "Detecting ..." -msgstr "" - #: port_insert_ui.cc:166 msgid "Port Insert " msgstr "" @@ -8015,38 +8049,38 @@ msgstr "" msgid "Flip" msgstr "" -#: port_matrix.cc:723 +#: port_matrix.cc:721 msgid "" "It is not possible to add a port here, as the first processor in the track " "or buss cannot support the new configuration." msgstr "" -#: port_matrix.cc:726 +#: port_matrix.cc:724 msgid "Cannot add port" msgstr "" -#: port_matrix.cc:748 +#: port_matrix.cc:746 msgid "Port removal not allowed" msgstr "" -#: port_matrix.cc:749 +#: port_matrix.cc:747 msgid "" "This port cannot be removed.\n" "Either the first plugin in the track or buss cannot accept\n" "the new number of inputs or the last plugin has more outputs." msgstr "" -#: port_matrix.cc:966 +#: port_matrix.cc:964 #, c-format msgid "Remove '%s'" msgstr "" -#: port_matrix.cc:981 +#: port_matrix.cc:979 #, c-format msgid "%s all from '%s'" msgstr "" -#: port_matrix.cc:1047 +#: port_matrix.cc:1045 msgid "channel" msgstr "" @@ -8083,7 +8117,7 @@ msgstr "" msgid "on" msgstr "" -#: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 +#: processor_box.cc:465 rc_option_editor.cc:1898 rc_option_editor.cc:1912 msgid "off" msgstr "" @@ -8093,7 +8127,7 @@ msgid "" "plugins,inserts,sends and more" msgstr "" -#: processor_box.cc:1197 processor_box.cc:1591 +#: processor_box.cc:1197 processor_box.cc:1618 msgid "Plugin Incompatibility" msgstr "" @@ -8147,106 +8181,110 @@ msgstr "" msgid "Cannot set up new send: %1" msgstr "" -#: processor_box.cc:1594 +#: processor_box.cc:1621 msgid "" "You cannot reorder these plugins/sends/inserts\n" "in that way because the inputs and\n" "outputs will not work correctly." msgstr "" -#: processor_box.cc:1778 +#: processor_box.cc:1805 msgid "Rename Processor" msgstr "" -#: processor_box.cc:1809 +#: processor_box.cc:1836 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "" -#: processor_box.cc:1943 +#: processor_box.cc:1970 msgid "plugin insert constructor failed" msgstr "" -#: processor_box.cc:1954 +#: processor_box.cc:1981 msgid "" "Copying the set of processors on the clipboard failed,\n" "probably because the I/O configuration of the plugins\n" "could not match the configuration of this track." msgstr "" -#: processor_box.cc:2000 +#: processor_box.cc:2027 msgid "" "Do you really want to remove all processors from %1?\n" "(this cannot be undone)" msgstr "" -#: processor_box.cc:2004 processor_box.cc:2029 +#: processor_box.cc:2031 processor_box.cc:2056 msgid "Yes, remove them all" msgstr "" -#: processor_box.cc:2006 processor_box.cc:2031 +#: processor_box.cc:2033 processor_box.cc:2058 msgid "Remove processors" msgstr "" -#: processor_box.cc:2021 +#: processor_box.cc:2048 msgid "" "Do you really want to remove all pre-fader processors from %1?\n" "(this cannot be undone)" msgstr "" -#: processor_box.cc:2024 +#: processor_box.cc:2051 msgid "" "Do you really want to remove all post-fader processors from %1?\n" "(this cannot be undone)" msgstr "" -#: processor_box.cc:2200 +#: processor_box.cc:2239 msgid "New Plugin" msgstr "" -#: processor_box.cc:2203 +#: processor_box.cc:2242 msgid "New Insert" msgstr "" -#: processor_box.cc:2206 +#: processor_box.cc:2245 msgid "New External Send ..." msgstr "" -#: processor_box.cc:2210 +#: processor_box.cc:2249 msgid "New Aux Send ..." msgstr "" -#: processor_box.cc:2214 +#: processor_box.cc:2253 msgid "Clear (all)" msgstr "" -#: processor_box.cc:2216 +#: processor_box.cc:2255 msgid "Clear (pre-fader)" msgstr "" -#: processor_box.cc:2218 +#: processor_box.cc:2257 msgid "Clear (post-fader)" msgstr "" -#: processor_box.cc:2244 +#: processor_box.cc:2283 msgid "Activate All" msgstr "" -#: processor_box.cc:2246 +#: processor_box.cc:2285 msgid "Deactivate All" msgstr "" -#: processor_box.cc:2248 +#: processor_box.cc:2287 msgid "A/B Plugins" msgstr "" -#: processor_box.cc:2257 +#: processor_box.cc:2296 msgid "Edit with generic controls..." msgstr "" -#: processor_box.cc:2557 +#: processor_box.cc:2599 msgid "%1: %2 (by %3)" msgstr "" +#: processor_box.cc:2601 +msgid "%2 (by %3)" +msgstr "" + #: patch_change_dialog.cc:51 msgid "Patch Change" msgstr "" @@ -8295,120 +8333,120 @@ msgstr "" msgid "Snap note end" msgstr "" -#: rc_option_editor.cc:69 +#: rc_option_editor.cc:67 msgid "Click audio file:" msgstr "" -#: rc_option_editor.cc:72 rc_option_editor.cc:79 +#: rc_option_editor.cc:70 rc_option_editor.cc:77 msgid "Browse..." msgstr "" -#: rc_option_editor.cc:76 +#: rc_option_editor.cc:74 msgid "Click emphasis audio file:" msgstr "" -#: rc_option_editor.cc:108 +#: rc_option_editor.cc:106 msgid "Choose Click" msgstr "" -#: rc_option_editor.cc:128 +#: rc_option_editor.cc:126 msgid "Choose Click Emphasis" msgstr "" -#: rc_option_editor.cc:160 +#: rc_option_editor.cc:158 msgid "Limit undo history to" msgstr "" -#: rc_option_editor.cc:161 +#: rc_option_editor.cc:159 msgid "Save undo history of" msgstr "" -#: rc_option_editor.cc:170 rc_option_editor.cc:177 +#: rc_option_editor.cc:168 rc_option_editor.cc:175 msgid "commands" msgstr "" -#: rc_option_editor.cc:315 +#: rc_option_editor.cc:313 msgid "Edit using:" msgstr "" -#: rc_option_editor.cc:321 rc_option_editor.cc:347 rc_option_editor.cc:374 +#: rc_option_editor.cc:319 rc_option_editor.cc:345 rc_option_editor.cc:372 msgid "+ button" msgstr "" -#: rc_option_editor.cc:341 +#: rc_option_editor.cc:339 msgid "Delete using:" msgstr "" -#: rc_option_editor.cc:368 +#: rc_option_editor.cc:366 msgid "Insert note using:" msgstr "" -#: rc_option_editor.cc:395 +#: rc_option_editor.cc:393 msgid "Ignore snap using:" msgstr "" -#: rc_option_editor.cc:411 +#: rc_option_editor.cc:409 msgid "Keyboard layout:" msgstr "" -#: rc_option_editor.cc:534 +#: rc_option_editor.cc:532 msgid "Font scaling:" msgstr "" -#: rc_option_editor.cc:586 +#: rc_option_editor.cc:584 msgid "Playback (seconds of buffering):" msgstr "" -#: rc_option_editor.cc:599 +#: rc_option_editor.cc:597 msgid "Recording (seconds of buffering):" msgstr "" -#: rc_option_editor.cc:656 +#: rc_option_editor.cc:654 msgid "Control Surface Protocol" msgstr "" -#: rc_option_editor.cc:660 +#: rc_option_editor.cc:658 msgid "Feedback" msgstr "" -#: rc_option_editor.cc:665 +#: rc_option_editor.cc:663 msgid "Double-click on a name to edit settings for an enabled protocol" msgstr "" -#: rc_option_editor.cc:817 +#: rc_option_editor.cc:815 msgid "Show Video Export Info before export" msgstr "" -#: rc_option_editor.cc:818 +#: rc_option_editor.cc:816 msgid "Show Video Server Startup Dialog" msgstr "" -#: rc_option_editor.cc:819 +#: rc_option_editor.cc:817 msgid "Advanced Setup (remote video server)" msgstr "" -#: rc_option_editor.cc:827 +#: rc_option_editor.cc:825 msgid "" "When enabled you can speficify a custom video-server URL and docroot. " "- Do not enable this option unless you know what you are doing." msgstr "" -#: rc_option_editor.cc:829 +#: rc_option_editor.cc:827 msgid "Video Server URL:" msgstr "" -#: rc_option_editor.cc:834 +#: rc_option_editor.cc:832 msgid "" "Base URL of the video-server including http prefix. This is usually 'http://" "hostname.example.org:1554/' and defaults to 'http://localhost:1554/' when " "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:836 +#: rc_option_editor.cc:834 msgid "Video Folder:" msgstr "" -#: rc_option_editor.cc:841 +#: rc_option_editor.cc:839 msgid "" "Local path to the video-server document-root. Only files below this " "directory will be accessible by the video-server. If the server run on a " @@ -8417,113 +8455,113 @@ msgid "" "monitor and file-browsing when opening/adding a video file." msgstr "" -#: rc_option_editor.cc:848 +#: rc_option_editor.cc:846 msgid "" "When enabled an information window with details is displayed before " "the video-export dialog." msgstr "" -#: rc_option_editor.cc:853 +#: rc_option_editor.cc:851 msgid "" "When enabled the video server is never launched automatically without " "confirmation" msgstr "" -#: rc_option_editor.cc:993 +#: rc_option_editor.cc:991 msgid "%1 Preferences" msgstr "" -#: rc_option_editor.cc:1004 +#: rc_option_editor.cc:1002 msgid "DSP CPU Utilization" msgstr "" -#: rc_option_editor.cc:1008 +#: rc_option_editor.cc:1006 msgid "Signal processing uses" msgstr "" -#: rc_option_editor.cc:1013 +#: rc_option_editor.cc:1011 msgid "all but one processor" msgstr "" -#: rc_option_editor.cc:1014 +#: rc_option_editor.cc:1012 msgid "all available processors" msgstr "" -#: rc_option_editor.cc:1017 +#: rc_option_editor.cc:1015 msgid "%1 processors" msgstr "" -#: rc_option_editor.cc:1020 +#: rc_option_editor.cc:1018 msgid "This setting will only take effect when %1 is restarted." msgstr "" -#: rc_option_editor.cc:1025 +#: rc_option_editor.cc:1023 msgid "Options|Undo" msgstr "" -#: rc_option_editor.cc:1032 +#: rc_option_editor.cc:1030 msgid "Verify removal of last capture" msgstr "" -#: rc_option_editor.cc:1040 +#: rc_option_editor.cc:1038 msgid "Make periodic backups of the session file" msgstr "" -#: rc_option_editor.cc:1045 +#: rc_option_editor.cc:1043 msgid "Session Management" msgstr "" -#: rc_option_editor.cc:1050 +#: rc_option_editor.cc:1048 msgid "Always copy imported files" msgstr "" -#: rc_option_editor.cc:1057 +#: rc_option_editor.cc:1055 msgid "Default folder for new sessions:" msgstr "" -#: rc_option_editor.cc:1065 +#: rc_option_editor.cc:1063 msgid "Maximum number of recent sessions" msgstr "" -#: rc_option_editor.cc:1078 +#: rc_option_editor.cc:1076 msgid "Click gain level" msgstr "" -#: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 +#: rc_option_editor.cc:1081 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "" -#: rc_option_editor.cc:1088 +#: rc_option_editor.cc:1086 msgid "Thinning factor (larger value => less data)" msgstr "" -#: rc_option_editor.cc:1097 +#: rc_option_editor.cc:1095 msgid "Automation sampling interval (milliseconds)" msgstr "" -#: rc_option_editor.cc:1109 +#: rc_option_editor.cc:1107 msgid "Keep record-enable engaged on stop" msgstr "" -#: rc_option_editor.cc:1118 +#: rc_option_editor.cc:1116 msgid "Stop recording when an xrun occurs" msgstr "" -#: rc_option_editor.cc:1123 +#: rc_option_editor.cc:1121 msgid "" "When enabled %1 will stop recording if an over- or underrun is " "detected by the audio engine" msgstr "" -#: rc_option_editor.cc:1129 +#: rc_option_editor.cc:1127 msgid "Create markers where xruns occur" msgstr "" -#: rc_option_editor.cc:1138 +#: rc_option_editor.cc:1136 msgid "Stop at the end of the session" msgstr "" -#: rc_option_editor.cc:1143 +#: rc_option_editor.cc:1141 msgid "" "When enabled if %1 is not recording, it will stop the " "transport when it reaches the current session end marker\n" @@ -8532,11 +8570,11 @@ msgid "" "all times" msgstr "" -#: rc_option_editor.cc:1151 -msgid "Do seamless looping (not possible when slaved to MTC, JACK etc)" +#: rc_option_editor.cc:1149 +msgid "Do seamless looping (not possible when slaved to MTC, LTC etc)" msgstr "" -#: rc_option_editor.cc:1156 +#: rc_option_editor.cc:1154 msgid "" "When enabled this will loop by reading ahead and wrapping around at " "the loop point, preventing any need to do a transport locate at the end of " @@ -8546,39 +8584,39 @@ msgid "" "loop when %1 reaches the end which will often cause a small click or delay" msgstr "" -#: rc_option_editor.cc:1164 +#: rc_option_editor.cc:1162 msgid "Disable per-track record disarm while rolling" msgstr "" -#: rc_option_editor.cc:1168 +#: rc_option_editor.cc:1166 msgid "" "When enabled this will prevent you from accidentally stopping " "specific tracks recording during a take" msgstr "" -#: rc_option_editor.cc:1173 +#: rc_option_editor.cc:1171 msgid "12dB gain reduction during fast-forward and fast-rewind" msgstr "" -#: rc_option_editor.cc:1177 +#: rc_option_editor.cc:1175 msgid "" "This will reduce the unpleasant increase in perceived volume that occurs " "when fast-forwarding or rewinding through some kinds of audio" msgstr "" -#: rc_option_editor.cc:1181 +#: rc_option_editor.cc:1179 msgid "Sync/Slave" msgstr "" -#: rc_option_editor.cc:1185 +#: rc_option_editor.cc:1183 msgid "External timecode source" msgstr "" -#: rc_option_editor.cc:1195 +#: rc_option_editor.cc:1193 msgid "Match session video frame rate to external timecode" msgstr "" -#: rc_option_editor.cc:1201 +#: rc_option_editor.cc:1199 msgid "" "This option controls the value of the video frame rate while chasing " "an external timecode source.\n" @@ -8592,21 +8630,21 @@ msgid "" "external timecode standard and the session standard." msgstr "" -#: rc_option_editor.cc:1211 +#: rc_option_editor.cc:1209 msgid "External timecode is sync locked" msgstr "" -#: rc_option_editor.cc:1217 +#: rc_option_editor.cc:1215 msgid "" "When enabled indicates that the selected external timecode source " "shares sync (Black & Burst, Wordclock, etc) with the audio interface." msgstr "" -#: rc_option_editor.cc:1224 +#: rc_option_editor.cc:1222 msgid "Lock to 29.9700 fps instead of 30000/1001" msgstr "" -#: rc_option_editor.cc:1230 +#: rc_option_editor.cc:1228 msgid "" "When enabled the external timecode source is assumed to use 29.97 fps " "instead of 30000/1001.\n" @@ -8619,143 +8657,139 @@ msgid "" "variant of using exactly 29.97 fps has zero timecode drift.\n" msgstr "" -#: rc_option_editor.cc:1240 +#: rc_option_editor.cc:1238 msgid "LTC Reader" msgstr "" -#: rc_option_editor.cc:1244 +#: rc_option_editor.cc:1242 msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1257 +#: rc_option_editor.cc:1255 msgid "LTC Generator" msgstr "" -#: rc_option_editor.cc:1262 +#: rc_option_editor.cc:1260 msgid "Enable LTC generator" msgstr "" -#: rc_option_editor.cc:1269 +#: rc_option_editor.cc:1267 msgid "send LTC while stopped" msgstr "" -#: rc_option_editor.cc:1275 +#: rc_option_editor.cc:1273 msgid "" "When enabled %1 will continue to send LTC information even when the " "transport (playhead) is not moving" msgstr "" -#: rc_option_editor.cc:1281 +#: rc_option_editor.cc:1279 msgid "LTC generator level" msgstr "" -#: rc_option_editor.cc:1285 +#: rc_option_editor.cc:1283 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " "is 0dBu ^= -18dbFS in an EBU calibrated system" msgstr "" -#: rc_option_editor.cc:1297 +#: rc_option_editor.cc:1295 msgid "Link selection of regions and tracks" msgstr "" -#: rc_option_editor.cc:1305 +#: rc_option_editor.cc:1303 msgid "Move relevant automation when audio regions are moved" msgstr "" -#: rc_option_editor.cc:1313 +#: rc_option_editor.cc:1311 msgid "Show meters on tracks in the editor" msgstr "" -#: rc_option_editor.cc:1321 +#: rc_option_editor.cc:1319 msgid "Display master-meter in the toolbar" msgstr "" -#: rc_option_editor.cc:1328 +#: rc_option_editor.cc:1326 msgid "Regions in active edit groups are edited together" msgstr "" -#: rc_option_editor.cc:1329 +#: rc_option_editor.cc:1327 msgid "whenever they overlap in time" msgstr "" -#: rc_option_editor.cc:1330 +#: rc_option_editor.cc:1328 msgid "only if they have identical length, position and origin" msgstr "" -#: rc_option_editor.cc:1340 +#: rc_option_editor.cc:1338 msgid "Make rubberband selection rectangle snap to the grid" msgstr "" -#: rc_option_editor.cc:1348 +#: rc_option_editor.cc:1346 msgid "Show waveforms in regions" msgstr "" -#: rc_option_editor.cc:1356 +#: rc_option_editor.cc:1354 msgid "Show gain envelopes in audio regions" msgstr "" -#: rc_option_editor.cc:1357 +#: rc_option_editor.cc:1355 msgid "in all modes" msgstr "" -#: rc_option_editor.cc:1358 +#: rc_option_editor.cc:1356 msgid "only in region gain mode" msgstr "" -#: rc_option_editor.cc:1365 +#: rc_option_editor.cc:1363 msgid "Waveform scale" msgstr "" -#: rc_option_editor.cc:1370 +#: rc_option_editor.cc:1368 msgid "linear" msgstr "" -#: rc_option_editor.cc:1371 +#: rc_option_editor.cc:1369 msgid "logarithmic" msgstr "" -#: rc_option_editor.cc:1377 +#: rc_option_editor.cc:1375 msgid "Waveform shape" msgstr "" -#: rc_option_editor.cc:1382 +#: rc_option_editor.cc:1380 msgid "traditional" msgstr "" -#: rc_option_editor.cc:1383 +#: rc_option_editor.cc:1381 msgid "rectified" msgstr "" -#: rc_option_editor.cc:1390 +#: rc_option_editor.cc:1388 msgid "Show waveforms for audio while it is being recorded" msgstr "" -#: rc_option_editor.cc:1398 +#: rc_option_editor.cc:1396 msgid "Show zoom toolbar" msgstr "" -#: rc_option_editor.cc:1406 +#: rc_option_editor.cc:1404 msgid "Color regions using their track's color" msgstr "Colour regions using their track's colour" -#: rc_option_editor.cc:1414 +#: rc_option_editor.cc:1412 msgid "Update editor window during drags of the summary" msgstr "" -#: rc_option_editor.cc:1422 -msgid "Synchronise editor and mixer track order" -msgstr "" - -#: rc_option_editor.cc:1430 +#: rc_option_editor.cc:1420 msgid "Synchronise editor and mixer selection" msgstr "" -#: rc_option_editor.cc:1437 +#: rc_option_editor.cc:1427 msgid "Name new markers" msgstr "" -#: rc_option_editor.cc:1443 +#: rc_option_editor.cc:1433 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " "be set as it is created.\n" @@ -8763,414 +8797,414 @@ msgid "" "You can always rename markers by right-clicking on them" msgstr "" -#: rc_option_editor.cc:1449 +#: rc_option_editor.cc:1439 msgid "Auto-scroll editor window when dragging near its edges" msgstr "" -#: rc_option_editor.cc:1456 +#: rc_option_editor.cc:1446 msgid "Buffering" msgstr "" -#: rc_option_editor.cc:1464 +#: rc_option_editor.cc:1454 msgid "Record monitoring handled by" msgstr "" -#: rc_option_editor.cc:1475 +#: rc_option_editor.cc:1460 +msgid "via Audio Driver" +msgstr "" + +#: rc_option_editor.cc:1463 msgid "ardour" msgstr "" -#: rc_option_editor.cc:1476 +#: rc_option_editor.cc:1464 msgid "audio hardware" msgstr "" -#: rc_option_editor.cc:1483 +#: rc_option_editor.cc:1471 msgid "Tape machine mode" msgstr "" -#: rc_option_editor.cc:1488 +#: rc_option_editor.cc:1476 msgid "Connection of tracks and busses" msgstr "" -#: rc_option_editor.cc:1493 +#: rc_option_editor.cc:1481 msgid "Auto-connect master/monitor busses" msgstr "" -#: rc_option_editor.cc:1500 +#: rc_option_editor.cc:1488 msgid "Connect track inputs" msgstr "" -#: rc_option_editor.cc:1505 +#: rc_option_editor.cc:1493 msgid "automatically to physical inputs" msgstr "" -#: rc_option_editor.cc:1506 rc_option_editor.cc:1519 +#: rc_option_editor.cc:1494 rc_option_editor.cc:1507 msgid "manually" msgstr "" -#: rc_option_editor.cc:1512 +#: rc_option_editor.cc:1500 msgid "Connect track and bus outputs" msgstr "" -#: rc_option_editor.cc:1517 +#: rc_option_editor.cc:1505 msgid "automatically to physical outputs" msgstr "" -#: rc_option_editor.cc:1518 +#: rc_option_editor.cc:1506 msgid "automatically to master bus" msgstr "" -#: rc_option_editor.cc:1523 +#: rc_option_editor.cc:1511 msgid "Denormals" msgstr "" -#: rc_option_editor.cc:1528 +#: rc_option_editor.cc:1516 msgid "Use DC bias to protect against denormals" msgstr "" -#: rc_option_editor.cc:1535 +#: rc_option_editor.cc:1523 msgid "Processor handling" msgstr "" -#: rc_option_editor.cc:1540 +#: rc_option_editor.cc:1528 msgid "no processor handling" msgstr "" -#: rc_option_editor.cc:1545 +#: rc_option_editor.cc:1533 msgid "use FlushToZero" msgstr "" -#: rc_option_editor.cc:1549 +#: rc_option_editor.cc:1537 msgid "use DenormalsAreZero" msgstr "" -#: rc_option_editor.cc:1553 +#: rc_option_editor.cc:1541 msgid "use FlushToZero and DenormalsAreZero" msgstr "" -#: rc_option_editor.cc:1563 +#: rc_option_editor.cc:1551 msgid "Silence plugins when the transport is stopped" msgstr "" -#: rc_option_editor.cc:1571 +#: rc_option_editor.cc:1559 msgid "Make new plugins active" msgstr "" -#: rc_option_editor.cc:1579 +#: rc_option_editor.cc:1567 msgid "Enable automatic analysis of audio" msgstr "" -#: rc_option_editor.cc:1587 +#: rc_option_editor.cc:1575 msgid "Replicate missing region channels" msgstr "" -#: rc_option_editor.cc:1594 rc_option_editor.cc:1609 rc_option_editor.cc:1621 -#: rc_option_editor.cc:1633 rc_option_editor.cc:1645 rc_option_editor.cc:1649 -#: rc_option_editor.cc:1657 rc_option_editor.cc:1665 rc_option_editor.cc:1673 -#: rc_option_editor.cc:1675 rc_option_editor.cc:1683 rc_option_editor.cc:1691 -#: rc_option_editor.cc:1699 +#: rc_option_editor.cc:1582 rc_option_editor.cc:1597 rc_option_editor.cc:1609 +#: rc_option_editor.cc:1621 rc_option_editor.cc:1633 rc_option_editor.cc:1637 +#: rc_option_editor.cc:1645 rc_option_editor.cc:1653 rc_option_editor.cc:1661 +#: rc_option_editor.cc:1663 rc_option_editor.cc:1671 rc_option_editor.cc:1679 +#: rc_option_editor.cc:1687 msgid "Solo / mute" msgstr "" -#: rc_option_editor.cc:1597 +#: rc_option_editor.cc:1585 msgid "Solo-in-place mute cut (dB)" msgstr "" -#: rc_option_editor.cc:1604 +#: rc_option_editor.cc:1592 msgid "Solo controls are Listen controls" msgstr "" -#: rc_option_editor.cc:1613 +#: rc_option_editor.cc:1601 msgid "Listen Position" msgstr "" -#: rc_option_editor.cc:1618 +#: rc_option_editor.cc:1606 msgid "after-fader (AFL)" msgstr "" -#: rc_option_editor.cc:1619 +#: rc_option_editor.cc:1607 msgid "pre-fader (PFL)" msgstr "" -#: rc_option_editor.cc:1625 +#: rc_option_editor.cc:1613 msgid "PFL signals come from" msgstr "" -#: rc_option_editor.cc:1630 +#: rc_option_editor.cc:1618 msgid "before pre-fader processors" msgstr "" -#: rc_option_editor.cc:1631 +#: rc_option_editor.cc:1619 msgid "pre-fader but after pre-fader processors" msgstr "" -#: rc_option_editor.cc:1637 +#: rc_option_editor.cc:1625 msgid "AFL signals come from" msgstr "" -#: rc_option_editor.cc:1642 +#: rc_option_editor.cc:1630 msgid "immediately post-fader" msgstr "" -#: rc_option_editor.cc:1643 +#: rc_option_editor.cc:1631 msgid "after post-fader processors (before pan)" msgstr "" -#: rc_option_editor.cc:1652 +#: rc_option_editor.cc:1640 msgid "Exclusive solo" msgstr "" -#: rc_option_editor.cc:1660 +#: rc_option_editor.cc:1648 msgid "Show solo muting" msgstr "" -#: rc_option_editor.cc:1668 +#: rc_option_editor.cc:1656 msgid "Soloing overrides muting" msgstr "" -#: rc_option_editor.cc:1673 +#: rc_option_editor.cc:1661 msgid "Default track / bus muting options" msgstr "" -#: rc_option_editor.cc:1678 +#: rc_option_editor.cc:1666 msgid "Mute affects pre-fader sends" msgstr "" -#: rc_option_editor.cc:1686 +#: rc_option_editor.cc:1674 msgid "Mute affects post-fader sends" msgstr "" -#: rc_option_editor.cc:1694 +#: rc_option_editor.cc:1682 msgid "Mute affects control outputs" msgstr "" -#: rc_option_editor.cc:1702 +#: rc_option_editor.cc:1690 msgid "Mute affects main outputs" msgstr "" -#: rc_option_editor.cc:1718 +#: rc_option_editor.cc:1706 msgid "Send MIDI Time Code" msgstr "" -#: rc_option_editor.cc:1726 +#: rc_option_editor.cc:1714 msgid "Percentage either side of normal transport speed to transmit MTC" msgstr "" -#: rc_option_editor.cc:1735 +#: rc_option_editor.cc:1723 msgid "Obey MIDI Machine Control commands" msgstr "" -#: rc_option_editor.cc:1743 +#: rc_option_editor.cc:1731 msgid "Send MIDI Machine Control commands" msgstr "" -#: rc_option_editor.cc:1751 +#: rc_option_editor.cc:1739 msgid "Send MIDI control feedback" msgstr "" -#: rc_option_editor.cc:1759 +#: rc_option_editor.cc:1747 msgid "Inbound MMC device ID" msgstr "" -#: rc_option_editor.cc:1768 +#: rc_option_editor.cc:1756 msgid "Outbound MMC device ID" msgstr "" -#: rc_option_editor.cc:1777 +#: rc_option_editor.cc:1765 msgid "Initial program change" msgstr "" -#: rc_option_editor.cc:1786 +#: rc_option_editor.cc:1774 msgid "Display first MIDI bank/program as 0" msgstr "" -#: rc_option_editor.cc:1794 +#: rc_option_editor.cc:1782 msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "" -#: rc_option_editor.cc:1802 +#: rc_option_editor.cc:1790 msgid "Sound MIDI notes as they are selected" msgstr "" -#: rc_option_editor.cc:1810 rc_option_editor.cc:1820 rc_option_editor.cc:1822 +#: rc_option_editor.cc:1798 rc_option_editor.cc:1808 rc_option_editor.cc:1810 msgid "User interaction" msgstr "" -#: rc_option_editor.cc:1813 +#: rc_option_editor.cc:1801 msgid "" "Use translations of %1 messages\n" " (requires a restart of %1 to take effect)\n" " (if available for your language preferences)" msgstr "" -#: rc_option_editor.cc:1820 +#: rc_option_editor.cc:1808 msgid "Keyboard" msgstr "" -#: rc_option_editor.cc:1830 +#: rc_option_editor.cc:1818 msgid "Control surface remote ID" msgstr "" -#: rc_option_editor.cc:1835 +#: rc_option_editor.cc:1823 msgid "assigned by user" msgstr "" -#: rc_option_editor.cc:1836 +#: rc_option_editor.cc:1824 msgid "follows order of mixer" msgstr "" -#: rc_option_editor.cc:1837 -msgid "follows order of editor" -msgstr "" - -#: rc_option_editor.cc:1846 rc_option_editor.cc:1854 rc_option_editor.cc:1864 -#: rc_option_editor.cc:1885 rc_option_editor.cc:1894 rc_option_editor.cc:1902 -#: rc_option_editor.cc:1916 rc_option_editor.cc:1935 rc_option_editor.cc:1951 -#: rc_option_editor.cc:1967 rc_option_editor.cc:1981 rc_option_editor.cc:1995 -#: rc_option_editor.cc:1997 +#: rc_option_editor.cc:1833 rc_option_editor.cc:1841 rc_option_editor.cc:1851 +#: rc_option_editor.cc:1872 rc_option_editor.cc:1881 rc_option_editor.cc:1889 +#: rc_option_editor.cc:1903 rc_option_editor.cc:1922 rc_option_editor.cc:1938 +#: rc_option_editor.cc:1954 rc_option_editor.cc:1968 rc_option_editor.cc:1982 +#: rc_option_editor.cc:1984 msgid "Preferences|GUI" msgstr "" -#: rc_option_editor.cc:1849 +#: rc_option_editor.cc:1836 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "" -#: rc_option_editor.cc:1857 +#: rc_option_editor.cc:1844 msgid "Show tooltips if mouse hovers over a control" msgstr "" -#: rc_option_editor.cc:1867 +#: rc_option_editor.cc:1854 msgid "GUI" msgstr "" -#: rc_option_editor.cc:1870 +#: rc_option_editor.cc:1857 msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" -#: rc_option_editor.cc:1887 +#: rc_option_editor.cc:1874 msgid "Mixer Strip" msgstr "" -#: rc_option_editor.cc:1897 +#: rc_option_editor.cc:1884 msgid "Use narrow strips in the mixer by default" msgstr "" -#: rc_option_editor.cc:1906 +#: rc_option_editor.cc:1893 msgid "Peak hold time" msgstr "" -#: rc_option_editor.cc:1912 +#: rc_option_editor.cc:1899 msgid "short" msgstr "" -#: rc_option_editor.cc:1913 +#: rc_option_editor.cc:1900 msgid "medium" msgstr "" -#: rc_option_editor.cc:1914 +#: rc_option_editor.cc:1901 msgid "long" msgstr "" -#: rc_option_editor.cc:1920 +#: rc_option_editor.cc:1907 msgid "DPM fall-off" msgstr "" -#: rc_option_editor.cc:1926 +#: rc_option_editor.cc:1913 msgid "slowest [6.6dB/sec]" msgstr "" -#: rc_option_editor.cc:1927 +#: rc_option_editor.cc:1914 msgid "slow [8.6dB/sec] (BBC PPM, EBU PPM)" msgstr "" -#: rc_option_editor.cc:1928 +#: rc_option_editor.cc:1915 msgid "slowish [12.0dB/sec] (DIN)" msgstr "" -#: rc_option_editor.cc:1929 +#: rc_option_editor.cc:1916 msgid "moderate [13.3dB/sec] (EBU Digi PPM, IRT Digi PPM)" msgstr "" -#: rc_option_editor.cc:1930 +#: rc_option_editor.cc:1917 msgid "medium [20dB/sec]" msgstr "" -#: rc_option_editor.cc:1931 +#: rc_option_editor.cc:1918 msgid "fast [32dB/sec]" msgstr "" -#: rc_option_editor.cc:1932 +#: rc_option_editor.cc:1919 msgid "faster [46dB/sec]" msgstr "" -#: rc_option_editor.cc:1933 +#: rc_option_editor.cc:1920 msgid "fastest [70dB/sec]" msgstr "" -#: rc_option_editor.cc:1939 +#: rc_option_editor.cc:1926 msgid "Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1944 rc_option_editor.cc:1960 +#: rc_option_editor.cc:1931 rc_option_editor.cc:1947 msgid "-24dBFS (SMPTE US: 4dBu = -20dBFS)" msgstr "" -#: rc_option_editor.cc:1945 rc_option_editor.cc:1961 +#: rc_option_editor.cc:1932 rc_option_editor.cc:1948 msgid "-20dBFS (SMPTE RP.0155)" msgstr "" -#: rc_option_editor.cc:1946 rc_option_editor.cc:1962 +#: rc_option_editor.cc:1933 rc_option_editor.cc:1949 msgid "-18dBFS (EBU, BBC)" msgstr "" -#: rc_option_editor.cc:1947 rc_option_editor.cc:1963 +#: rc_option_editor.cc:1934 rc_option_editor.cc:1950 msgid "-15dBFS (DIN)" msgstr "" -#: rc_option_editor.cc:1949 +#: rc_option_editor.cc:1936 msgid "" "Configure meter-marks and color-knee point for dBFS scale DPM, set reference " "level for IEC1/Nordic, IEC2 PPM and VU meter." msgstr "" -#: rc_option_editor.cc:1955 +#: rc_option_editor.cc:1942 msgid "IEC1/DIN Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1965 +#: rc_option_editor.cc:1952 msgid "Reference level for IEC1/DIN meter." msgstr "" -#: rc_option_editor.cc:1971 +#: rc_option_editor.cc:1958 msgid "VU Meter standard" msgstr "" -#: rc_option_editor.cc:1976 +#: rc_option_editor.cc:1963 msgid "0VU = -2dBu (France)" msgstr "" -#: rc_option_editor.cc:1977 +#: rc_option_editor.cc:1964 msgid "0VU = 0dBu (North America, Australia)" msgstr "" -#: rc_option_editor.cc:1978 +#: rc_option_editor.cc:1965 msgid "0VU = +4dBu (standard)" msgstr "" -#: rc_option_editor.cc:1979 +#: rc_option_editor.cc:1966 msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1985 +#: rc_option_editor.cc:1972 msgid "Peak threshold [dBFS]" msgstr "" -#: rc_option_editor.cc:1993 +#: rc_option_editor.cc:1980 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " "indicator will flash red." msgstr "" -#: rc_option_editor.cc:2000 +#: rc_option_editor.cc:1987 msgid "LED meter style" msgstr "" @@ -9812,30 +9846,23 @@ msgstr "" #: route_ui.cc:1818 msgid "" -"The remote control ID of %6 is: %3\n" +"The remote control ID of %5 is: %2\n" "\n" "\n" -"Remote Control IDs are currently determined by track/bus ordering in %1\n" +"Remote Control IDs are currently determined by track/bus ordering in " +"Ardour.\n" "\n" -"%4Use the User Interaction tab of the Preferences window if you want to " -"change this%5" +"%3Use the User Interaction tab of the Preferences window if you want to " +"change this%4" msgstr "" -#: route_ui.cc:1821 -msgid "the mixer" -msgstr "" - -#: route_ui.cc:1821 -msgid "the editor" -msgstr "" - -#: route_ui.cc:1876 +#: route_ui.cc:1875 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " "to show menu." msgstr "" -#: route_ui.cc:1878 +#: route_ui.cc:1877 msgid "Click to show a menu of channels for inversion (phase reverse)" msgstr "" @@ -9855,6 +9882,118 @@ msgstr "" msgid "Send " msgstr "" +#: session_dialog.cc:66 +msgid "Session Setup" +msgstr "" + +#: session_dialog.cc:71 +msgid "Advanced options ..." +msgstr "" + +#: session_dialog.cc:267 +msgid "New Session" +msgstr "" + +#: session_dialog.cc:305 +msgid "Check the website for more..." +msgstr "" + +#: session_dialog.cc:308 +msgid "Click to open the program website in your web browser" +msgstr "" + +#: session_dialog.cc:328 +msgid "Sample Rate" +msgstr "" + +#: session_dialog.cc:329 +msgid "Disk Format" +msgstr "" + +#: session_dialog.cc:347 +msgid "Select session file" +msgstr "" + +#: session_dialog.cc:362 +msgid "Other Sessions" +msgstr "" + +#: session_dialog.cc:388 +msgid "Open" +msgstr "" + +#: session_dialog.cc:455 +msgid "Session name:" +msgstr "" + +#: session_dialog.cc:477 +msgid "Create session folder in:" +msgstr "" + +#: session_dialog.cc:500 +msgid "Select folder for session" +msgstr "" + +#: session_dialog.cc:529 +msgid "Use this template" +msgstr "" + +#: session_dialog.cc:532 +msgid "no template" +msgstr "" + +#: session_dialog.cc:664 session_dialog.cc:696 +msgid "32 bit float" +msgstr "" + +#: session_dialog.cc:667 session_dialog.cc:699 +msgid "24 bit" +msgstr "" + +#: session_dialog.cc:670 session_dialog.cc:702 +msgid "16 bit" +msgstr "" + +#: session_dialog.cc:741 session_dialog.cc:742 session_dialog.cc:743 +msgid "channels" +msgstr "" + +#: session_dialog.cc:757 +msgid "Busses" +msgstr "" + +#: session_dialog.cc:758 +msgid "Inputs" +msgstr "" + +#: session_dialog.cc:759 +msgid "Outputs" +msgstr "" + +#: session_dialog.cc:767 +msgid "Create master bus" +msgstr "" + +#: session_dialog.cc:777 +msgid "Automatically connect to physical inputs" +msgstr "" + +#: session_dialog.cc:784 session_dialog.cc:843 +msgid "Use only" +msgstr "" + +#: session_dialog.cc:837 +msgid "Automatically connect outputs" +msgstr "" + +#: session_dialog.cc:859 +msgid "... to master bus" +msgstr "" + +#: session_dialog.cc:869 +msgid "... to physical outputs" +msgstr "" + #: session_import_dialog.cc:64 msgid "Import from Session" msgstr "" @@ -10722,28 +10861,16 @@ msgid "Azimuth:" msgstr "" #: startup.cc:72 -msgid "Create a new session" -msgstr "" - -#: startup.cc:73 -msgid "Open an existing session" -msgstr "" - -#: startup.cc:74 msgid "" "Use an external mixer or the hardware mixer of your audio interface.\n" "%1 will play NO role in monitoring" msgstr "" -#: startup.cc:76 +#: startup.cc:74 msgid "Ask %1 to play back material as it is being recorded" msgstr "" -#: startup.cc:79 -msgid "I'd like more options for this session" -msgstr "" - -#: startup.cc:194 +#: startup.cc:143 msgid "" "Welcome to this BETA release of Ardour %1\n" "\n" @@ -10768,15 +10895,11 @@ msgid "" " http://ardour.org/support\n" msgstr "" -#: startup.cc:218 +#: startup.cc:167 msgid "This is a BETA RELEASE" msgstr "" -#: startup.cc:324 -msgid "Audio / MIDI Setup" -msgstr "" - -#: startup.cc:336 +#: startup.cc:176 msgid "" "%1 is a digital audio workstation. You can use it to " "record, edit and mix multi-track audio. You can produce your own CDs, mix " @@ -10786,15 +10909,15 @@ msgid "" "program. " msgstr "" -#: startup.cc:362 +#: startup.cc:202 msgid "Welcome to %1" msgstr "" -#: startup.cc:385 +#: startup.cc:225 msgid "Default folder for %1 sessions" msgstr "" -#: startup.cc:391 +#: startup.cc:231 msgid "" "Each project that you work on with %1 has its own folder.\n" "These can require a lot of disk space if you are recording audio.\n" @@ -10804,11 +10927,11 @@ msgid "" "(You can put new sessions anywhere, this is just a default)" msgstr "" -#: startup.cc:415 +#: startup.cc:254 msgid "Default folder for new sessions" msgstr "" -#: startup.cc:436 +#: startup.cc:275 msgid "" "While recording instruments or vocals, you probably want to listen to the\n" "signal as well as record it. This is called \"monitoring\". There are\n" @@ -10822,31 +10945,31 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:457 +#: startup.cc:296 msgid "Monitoring Choices" msgstr "" -#: startup.cc:480 +#: startup.cc:319 msgid "Use a Master bus directly" msgstr "" -#: startup.cc:482 +#: startup.cc:321 msgid "" "Connect the Master bus directly to your hardware outputs. This is preferable " "for simple usage." msgstr "" -#: startup.cc:491 +#: startup.cc:330 msgid "Use an additional Monitor bus" msgstr "" -#: startup.cc:494 +#: startup.cc:333 msgid "" "Use a Monitor bus between Master bus and hardware outputs for \n" "greater control in monitoring without affecting the mix." msgstr "" -#: startup.cc:516 +#: startup.cc:355 msgid "" "You can change this preference at any time via the Preferences dialog.\n" "You can also add or remove the monitor section to/from any session.\n" @@ -10854,110 +10977,10 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:527 +#: startup.cc:366 msgid "Monitor Section" msgstr "" -#: startup.cc:573 -msgid "Check the website for more..." -msgstr "" - -#: startup.cc:576 -msgid "Click to open the program website in your web browser" -msgstr "" - -#: startup.cc:729 -msgid "Open" -msgstr "" - -#: startup.cc:775 -msgid "Session name:" -msgstr "" - -#: startup.cc:798 -msgid "Create session folder in:" -msgstr "" - -#: startup.cc:821 -msgid "Select folder for session" -msgstr "" - -#: startup.cc:853 -msgid "Use this template" -msgstr "" - -#: startup.cc:856 -msgid "no template" -msgstr "" - -#: startup.cc:884 -msgid "Use an existing session as a template:" -msgstr "" - -#: startup.cc:896 -msgid "Select template" -msgstr "" - -#: startup.cc:922 -msgid "New Session" -msgstr "" - -#: startup.cc:1077 -msgid "Select session file" -msgstr "" - -#: startup.cc:1093 -msgid "Browse:" -msgstr "" - -#: startup.cc:1102 -msgid "Select a session" -msgstr "" - -#: startup.cc:1129 startup.cc:1130 startup.cc:1131 -msgid "channels" -msgstr "" - -#: startup.cc:1145 -msgid "Busses" -msgstr "" - -#: startup.cc:1146 -msgid "Inputs" -msgstr "" - -#: startup.cc:1147 -msgid "Outputs" -msgstr "" - -#: startup.cc:1155 -msgid "Create master bus" -msgstr "" - -#: startup.cc:1165 -msgid "Automatically connect to physical inputs" -msgstr "" - -#: startup.cc:1172 startup.cc:1231 -msgid "Use only" -msgstr "" - -#: startup.cc:1225 -msgid "Automatically connect outputs" -msgstr "" - -#: startup.cc:1247 -msgid "... to master bus" -msgstr "" - -#: startup.cc:1257 -msgid "... to physical outputs" -msgstr "" - -#: startup.cc:1307 -msgid "Advanced Session Options" -msgstr "" - #: step_entry.cc:59 msgid "Step Entry: %1" msgstr "" @@ -11383,11 +11406,41 @@ msgstr "" msgid "Edit Tempo" msgstr "" +#: tempo_dialog.cc:76 tempo_dialog.cc:77 tempo_dialog.cc:282 +#: tempo_dialog.cc:283 +msgid "whole" +msgstr "" + +#: tempo_dialog.cc:78 tempo_dialog.cc:79 tempo_dialog.cc:284 +#: tempo_dialog.cc:285 +msgid "second" +msgstr "" + #: tempo_dialog.cc:80 tempo_dialog.cc:81 tempo_dialog.cc:286 #: tempo_dialog.cc:287 msgid "third" msgstr "" +#: tempo_dialog.cc:82 tempo_dialog.cc:83 tempo_dialog.cc:288 +#: tempo_dialog.cc:289 +msgid "quarter" +msgstr "" + +#: tempo_dialog.cc:84 tempo_dialog.cc:85 tempo_dialog.cc:290 +#: tempo_dialog.cc:291 +msgid "eighth" +msgstr "" + +#: tempo_dialog.cc:86 tempo_dialog.cc:87 tempo_dialog.cc:292 +#: tempo_dialog.cc:293 +msgid "sixteenth" +msgstr "" + +#: tempo_dialog.cc:88 tempo_dialog.cc:89 tempo_dialog.cc:294 +#: tempo_dialog.cc:295 +msgid "thirty-second" +msgstr "" + #: tempo_dialog.cc:90 tempo_dialog.cc:91 tempo_dialog.cc:296 #: tempo_dialog.cc:297 msgid "sixty-fourth" @@ -11592,23 +11645,23 @@ msgstr "" msgid "Config file %1 not saved" msgstr "" -#: utils.cc:110 utils.cc:153 +#: utils.cc:111 utils.cc:154 msgid "bad XPM header %1" msgstr "" -#: utils.cc:292 utils.cc:324 +#: utils.cc:293 utils.cc:325 msgid "missing RGBA style for \"%1\"" msgstr "" -#: utils.cc:591 +#: utils.cc:598 msgid "cannot find XPM file for %1" msgstr "" -#: utils.cc:617 +#: utils.cc:624 msgid "cannot find icon image for %1 using %2" msgstr "" -#: utils.cc:632 +#: utils.cc:639 msgid "Caught exception while loading icon named %1" msgstr "" @@ -11717,112 +11770,116 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:56 +#: transcode_video_dialog.cc:55 msgid "Transcode/Import Video File " msgstr "" -#: transcode_video_dialog.cc:58 +#: transcode_video_dialog.cc:57 msgid "Output File:" msgstr "" -#: transcode_video_dialog.cc:61 export_video_dialog.cc:73 +#: transcode_video_dialog.cc:60 export_video_dialog.cc:72 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:66 +#: transcode_video_dialog.cc:62 +msgid "Height = " +msgstr "" + +#: transcode_video_dialog.cc:65 msgid "Manual Override" msgstr "" -#: transcode_video_dialog.cc:70 export_video_dialog.cc:89 +#: transcode_video_dialog.cc:69 export_video_dialog.cc:88 msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:107 +#: transcode_video_dialog.cc:106 msgid "File Information" msgstr "" -#: transcode_video_dialog.cc:113 +#: transcode_video_dialog.cc:112 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: transcode_video_dialog.cc:120 +#: transcode_video_dialog.cc:119 msgid "" "File-info can not be read. Most likely '%1' is not a valid video-file or an " "unsupported video codec or format." msgstr "" -#: transcode_video_dialog.cc:134 +#: transcode_video_dialog.cc:133 msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:136 +#: transcode_video_dialog.cc:135 msgid "Duration:" msgstr "" -#: transcode_video_dialog.cc:138 +#: transcode_video_dialog.cc:137 msgid "Codec:" msgstr "" -#: transcode_video_dialog.cc:140 +#: transcode_video_dialog.cc:139 msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:155 +#: transcode_video_dialog.cc:154 msgid "??" msgstr "" -#: transcode_video_dialog.cc:176 +#: transcode_video_dialog.cc:175 msgid "Import Settings" msgstr "" -#: transcode_video_dialog.cc:181 +#: transcode_video_dialog.cc:180 msgid "Do Not Import Video" msgstr "" -#: transcode_video_dialog.cc:182 +#: transcode_video_dialog.cc:181 msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:184 +#: transcode_video_dialog.cc:183 msgid "Import/Transcode Video to Session" msgstr "" -#: transcode_video_dialog.cc:198 +#: transcode_video_dialog.cc:197 msgid "Scale Video: Width = " msgstr "" -#: transcode_video_dialog.cc:205 +#: transcode_video_dialog.cc:204 msgid "Original Width" msgstr "" -#: transcode_video_dialog.cc:220 +#: transcode_video_dialog.cc:219 msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:225 +#: transcode_video_dialog.cc:224 msgid "Extract Audio:" msgstr "" -#: transcode_video_dialog.cc:345 +#: transcode_video_dialog.cc:344 msgid "Extracting Audio.." msgstr "" -#: transcode_video_dialog.cc:348 +#: transcode_video_dialog.cc:347 msgid "Audio Extraction Failed." msgstr "" -#: transcode_video_dialog.cc:374 +#: transcode_video_dialog.cc:373 msgid "Transcoding Video.." msgstr "" -#: transcode_video_dialog.cc:408 +#: transcode_video_dialog.cc:407 msgid "Transcoding Failed." msgstr "" -#: transcode_video_dialog.cc:491 +#: transcode_video_dialog.cc:490 msgid "Save Transcoded Video File" msgstr "" @@ -11863,9 +11920,9 @@ msgstr "" #: video_server_dialog.cc:136 msgid "" -"%1 relies on an external Video Server for the videotimeline.\n" -"The server configured in Edit -> Prefereces -> Video is not reachable.\n" -"Do you want ardour to launch 'harvid' on this machine?" +"%1 relies on an external video server for the videotimeline.\n" +"The server configured in Edit -> Preferences -> Video is not reachable.\n" +"Do you want %1 to launch 'harvid' on this machine?" msgstr "" #: video_server_dialog.cc:176 @@ -11902,152 +11959,168 @@ msgstr "" msgid "Cannot create video folder \"%1\" (%2)" msgstr "" -#: export_video_dialog.cc:66 +#: export_video_dialog.cc:65 msgid "Export Video File " msgstr "" -#: export_video_dialog.cc:70 +#: export_video_dialog.cc:69 msgid "Video:" msgstr "" -#: export_video_dialog.cc:74 +#: export_video_dialog.cc:73 msgid "Scale Video (W x H):" msgstr "" -#: export_video_dialog.cc:79 +#: export_video_dialog.cc:78 msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:81 +#: export_video_dialog.cc:79 +msgid "Normalize Audio" +msgstr "" + +#: export_video_dialog.cc:80 msgid "2 Pass Encoding" msgstr "" -#: export_video_dialog.cc:82 +#: export_video_dialog.cc:81 msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:84 +#: export_video_dialog.cc:83 msgid "Deinterlace" msgstr "" -#: export_video_dialog.cc:85 +#: export_video_dialog.cc:84 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" -#: export_video_dialog.cc:86 +#: export_video_dialog.cc:85 msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:87 +#: export_video_dialog.cc:86 msgid "Include Session Metadata" msgstr "" -#: export_video_dialog.cc:107 +#: export_video_dialog.cc:106 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: export_video_dialog.cc:117 +#: export_video_dialog.cc:116 msgid "Output:" msgstr "" -#: export_video_dialog.cc:127 +#: export_video_dialog.cc:126 msgid "Input:" msgstr "" -#: export_video_dialog.cc:138 +#: export_video_dialog.cc:137 msgid "Audio:" msgstr "" -#: export_video_dialog.cc:140 +#: export_video_dialog.cc:139 msgid "Master Bus" msgstr "" -#: export_video_dialog.cc:145 +#: export_video_dialog.cc:144 msgid "from the %1 session's start to the session's end" msgstr "" -#: export_video_dialog.cc:149 +#: export_video_dialog.cc:148 msgid "from 00:00:00:00 to the video's end" msgstr "" -#: export_video_dialog.cc:151 +#: export_video_dialog.cc:150 msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:184 +#: export_video_dialog.cc:153 +msgid "Selected range" +msgstr "" + +#: export_video_dialog.cc:193 msgid "Settings:" msgstr "" -#: export_video_dialog.cc:192 +#: export_video_dialog.cc:201 msgid "Range:" msgstr "" -#: export_video_dialog.cc:195 +#: export_video_dialog.cc:204 msgid "Preset:" msgstr "" -#: export_video_dialog.cc:198 +#: export_video_dialog.cc:207 msgid "Video Codec:" msgstr "" -#: export_video_dialog.cc:201 +#: export_video_dialog.cc:210 msgid "Video KBit/s:" msgstr "" -#: export_video_dialog.cc:204 +#: export_video_dialog.cc:213 msgid "Audio Codec:" msgstr "" -#: export_video_dialog.cc:207 +#: export_video_dialog.cc:216 msgid "Audio KBit/s:" msgstr "" -#: export_video_dialog.cc:210 +#: export_video_dialog.cc:219 msgid "Audio Samplerate:" msgstr "" -#: export_video_dialog.cc:391 +#: export_video_dialog.cc:395 +msgid "Normalizing audio" +msgstr "" + +#: export_video_dialog.cc:399 msgid "Exporting audio" msgstr "" -#: export_video_dialog.cc:437 +#: export_video_dialog.cc:445 msgid "Exporting Audio..." msgstr "" -#: export_video_dialog.cc:494 +#: export_video_dialog.cc:502 msgid "" "Export Video: Cannot query duration of video-file, using duration from " "timeline instead." msgstr "" -#: export_video_dialog.cc:523 +#: export_video_dialog.cc:532 +msgid "Export Video: export-range does not include video." +msgstr "" + +#: export_video_dialog.cc:544 msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" -#: export_video_dialog.cc:562 +#: export_video_dialog.cc:583 msgid "Encoding Video..." msgstr "" -#: export_video_dialog.cc:581 +#: export_video_dialog.cc:602 msgid "Export Video: Video input file cannot be read." msgstr "" -#: export_video_dialog.cc:679 +#: export_video_dialog.cc:695 msgid "Encoding Video.. Pass 1/2" msgstr "" -#: export_video_dialog.cc:691 +#: export_video_dialog.cc:707 msgid "Encoding Video.. Pass 2/2" msgstr "" -#: export_video_dialog.cc:779 +#: export_video_dialog.cc:814 msgid "Transcoding failed." msgstr "" -#: export_video_dialog.cc:948 export_video_dialog.cc:968 +#: export_video_dialog.cc:983 export_video_dialog.cc:1003 msgid "Save Exported Video File" msgstr "" diff --git a/gtk2_ardour/po/es.po b/gtk2_ardour/po/es.po index e960231f32..cc51c0f897 100644 --- a/gtk2_ardour/po/es.po +++ b/gtk2_ardour/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: gtk2_ardour\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: \n" "Last-Translator: Pablo Fernández \n" "Language-Team: Grupo de Traducción al Español \n" @@ -252,6 +252,18 @@ msgstr "" "\tMartin Blanchard\n" "\tRomain Arnaud \n" +#: about.cc:183 +msgid "" +"German:\n" +"\tKarsten Petersen \n" +"\tSebastian Arnold \n" +"\tRobert Schwede \n" +"\tBenjamin Scherrer \n" +"\tEdgar Aichinger \n" +"\tRichard Oax \n" +"\tRobin Gloster \n" +msgstr "" + #: about.cc:190 msgid "" "Italian:\n" @@ -421,8 +433,8 @@ msgstr "Buses" msgid "Add:" msgstr "Añadir:" -#: add_route_dialog.cc:114 startup.cc:841 time_fx_dialog.cc:91 -#: add_video_dialog.cc:150 video_server_dialog.cc:112 +#: add_route_dialog.cc:114 time_fx_dialog.cc:91 add_video_dialog.cc:150 +#: video_server_dialog.cc:112 msgid "Options" msgstr "Opciones" @@ -436,21 +448,22 @@ msgid "Group:" msgstr "Grupo:" #: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 -#: rc_option_editor.cc:1456 rc_option_editor.cc:1458 rc_option_editor.cc:1460 -#: rc_option_editor.cc:1478 rc_option_editor.cc:1480 rc_option_editor.cc:1488 -#: rc_option_editor.cc:1490 rc_option_editor.cc:1508 rc_option_editor.cc:1521 -#: rc_option_editor.cc:1523 rc_option_editor.cc:1525 rc_option_editor.cc:1556 -#: rc_option_editor.cc:1558 rc_option_editor.cc:1560 rc_option_editor.cc:1568 -#: rc_option_editor.cc:1576 rc_option_editor.cc:1584 +#: ardour_ui_ed.cc:476 engine_dialog.cc:236 rc_option_editor.cc:1446 +#: rc_option_editor.cc:1448 rc_option_editor.cc:1450 rc_option_editor.cc:1466 +#: rc_option_editor.cc:1468 rc_option_editor.cc:1476 rc_option_editor.cc:1478 +#: rc_option_editor.cc:1496 rc_option_editor.cc:1509 rc_option_editor.cc:1511 +#: rc_option_editor.cc:1513 rc_option_editor.cc:1544 rc_option_editor.cc:1546 +#: rc_option_editor.cc:1548 rc_option_editor.cc:1556 rc_option_editor.cc:1564 +#: rc_option_editor.cc:1572 msgid "Audio" msgstr "Audio" #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 -#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1707 -#: rc_option_editor.cc:1715 rc_option_editor.cc:1723 rc_option_editor.cc:1732 -#: rc_option_editor.cc:1740 rc_option_editor.cc:1748 rc_option_editor.cc:1756 -#: rc_option_editor.cc:1765 rc_option_editor.cc:1774 rc_option_editor.cc:1783 -#: rc_option_editor.cc:1791 rc_option_editor.cc:1799 +#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1695 +#: rc_option_editor.cc:1703 rc_option_editor.cc:1711 rc_option_editor.cc:1720 +#: rc_option_editor.cc:1728 rc_option_editor.cc:1736 rc_option_editor.cc:1744 +#: rc_option_editor.cc:1753 rc_option_editor.cc:1762 rc_option_editor.cc:1771 +#: rc_option_editor.cc:1779 rc_option_editor.cc:1787 msgid "MIDI" msgstr "MIDI" @@ -599,7 +612,7 @@ msgstr "Normalizar valores" msgid "FFT analysis window" msgstr "Ventana de análisis FFT" -#: analysis_window.cc:60 editor.cc:1856 +#: analysis_window.cc:60 editor.cc:1857 msgid "Spectral Analysis" msgstr "Análisis espectral" @@ -650,6 +663,10 @@ msgstr "Combinaciones de teclas" msgid "Preferences" msgstr "Preferencias" +#: ardour_ui.cc:191 ardour_ui.cc:197 +msgid "Add Tracks/Busses" +msgstr "" + #: ardour_ui.cc:192 msgid "About" msgstr "Acerca de" @@ -662,31 +679,70 @@ msgstr "Posiciones" msgid "Tracks and Busses" msgstr "Pistas y buses" -#: ardour_ui.cc:195 +#: ardour_ui.cc:195 engine_dialog.cc:67 +msgid "Audio/MIDI Setup" +msgstr "" + +#: ardour_ui.cc:196 msgid "Properties" msgstr "Propiedades" -#: ardour_ui.cc:197 bundle_manager.cc:263 +#: ardour_ui.cc:198 bundle_manager.cc:263 msgid "Bundle Manager" msgstr "Gestor de conjuntos de conexiones" -#: ardour_ui.cc:198 big_clock_window.cc:35 +#: ardour_ui.cc:199 big_clock_window.cc:35 msgid "Big Clock" msgstr "Reloj grande" -#: ardour_ui.cc:202 +#: ardour_ui.cc:200 +msgid "Audio Connections" +msgstr "" + +#: ardour_ui.cc:201 +msgid "MIDI Connections" +msgstr "" + +#: ardour_ui.cc:203 msgid "Errors" msgstr "Errores" -#: ardour_ui.cc:388 -msgid "Starting audio engine" -msgstr "Arrancando motor de audio" +#: ardour_ui.cc:436 +msgid "" +"The audio backend was shutdown because:\n" +"\n" +"%1" +msgstr "" -#: ardour_ui.cc:758 startup.cc:638 +#: ardour_ui.cc:438 +msgid "" +"The audio backend has either been shutdown or it\n" +"disconnected %1 because %1\n" +"was not fast enough. Try to restart\n" +"the audio backend and save the session." +msgstr "" + +#: ardour_ui.cc:758 +msgid "NSM server did not announce itself" +msgstr "" + +#: ardour_ui.cc:771 +msgid "NSM: no client ID provided" +msgstr "" + +#: ardour_ui.cc:778 +msgid "NSM: no session created" +msgstr "" + +#: ardour_ui.cc:801 +msgid "NSM: initialization failed" +msgstr "" + +#: ardour_ui.cc:840 startup.cc:379 msgid "%1 is ready for use" msgstr "%1 está preparado para su uso" -#: ardour_ui.cc:806 +#: ardour_ui.cc:882 msgid "" "WARNING: Your system has a limit for maximum amount of locked memory. This " "might cause %1 to run out of memory before your system runs out of memory. \n" @@ -699,23 +755,23 @@ msgstr "" "\n" "Puedes comprobar este límite con 'ulimit -l' y normalmente se establece en %2" -#: ardour_ui.cc:823 +#: ardour_ui.cc:899 msgid "Do not show this window again" msgstr "No volver a mostrar esta ventana" -#: ardour_ui.cc:865 +#: ardour_ui.cc:943 msgid "Don't quit" msgstr "No salir" -#: ardour_ui.cc:866 +#: ardour_ui.cc:944 msgid "Just quit" msgstr "Salir sin guardar" -#: ardour_ui.cc:867 +#: ardour_ui.cc:945 msgid "Save and quit" msgstr "Guardar y salir" -#: ardour_ui.cc:877 +#: ardour_ui.cc:955 msgid "" "%1 was unable to save your session.\n" "\n" @@ -729,15 +785,15 @@ msgstr "" "\n" "\"Salir sin guardar\"." -#: ardour_ui.cc:908 +#: ardour_ui.cc:986 msgid "Please wait while %1 cleans up..." msgstr "Por favor, espera mientras %1 organiza todo..." -#: ardour_ui.cc:925 +#: ardour_ui.cc:1004 msgid "Unsaved Session" msgstr "Sesión no guardada" -#: ardour_ui.cc:946 +#: ardour_ui.cc:1025 msgid "" "The session \"%1\"\n" "has not been saved.\n" @@ -755,7 +811,7 @@ msgstr "" "\n" "¿Qué deseas hacer?" -#: ardour_ui.cc:949 +#: ardour_ui.cc:1028 msgid "" "The snapshot \"%1\"\n" "has not been saved.\n" @@ -773,74 +829,75 @@ msgstr "" "\n" "¿Qué deseas hacer?" -#: ardour_ui.cc:963 +#: ardour_ui.cc:1042 msgid "Prompter" msgstr "Prompter" -#: ardour_ui.cc:1049 -msgid "disconnected" -msgstr "desconectado" - -#: ardour_ui.cc:1056 +#: ardour_ui.cc:1128 ardour_ui.cc:1136 #, c-format -msgid "JACK: %.1f kHz / %4.1f ms" -msgstr "JACK: %.1f kHz / %4.1f ms" +msgid "Audio: none" +msgstr "" -#: ardour_ui.cc:1060 +#: ardour_ui.cc:1140 #, c-format -msgid "JACK: % kHz / %4.1f ms" -msgstr "JACK: % kHz / %4.1f ms" +msgid "Audio: %.1f kHz / %4.1f ms" +msgstr "" -#: ardour_ui.cc:1078 export_video_dialog.cc:68 +#: ardour_ui.cc:1144 +#, c-format +msgid "Audio: % kHz / %4.1f ms" +msgstr "" + +#: ardour_ui.cc:1162 export_video_dialog.cc:67 msgid "File:" msgstr "Archivo:" -#: ardour_ui.cc:1082 +#: ardour_ui.cc:1166 msgid "BWF" msgstr "BWF" -#: ardour_ui.cc:1085 +#: ardour_ui.cc:1169 msgid "WAV" msgstr "WAV" -#: ardour_ui.cc:1088 +#: ardour_ui.cc:1172 msgid "WAV64" msgstr "WAV64" -#: ardour_ui.cc:1091 session_option_editor.cc:197 +#: ardour_ui.cc:1175 session_option_editor.cc:197 msgid "CAF" msgstr "CAF" -#: ardour_ui.cc:1094 +#: ardour_ui.cc:1178 msgid "AIFF" msgstr "AIFF" -#: ardour_ui.cc:1097 +#: ardour_ui.cc:1181 msgid "iXML" msgstr "iXML" -#: ardour_ui.cc:1100 +#: ardour_ui.cc:1184 msgid "RF64" msgstr "RF64" -#: ardour_ui.cc:1108 +#: ardour_ui.cc:1192 msgid "32-float" msgstr "32-float" -#: ardour_ui.cc:1111 +#: ardour_ui.cc:1195 msgid "24-int" msgstr "24-int" -#: ardour_ui.cc:1114 +#: ardour_ui.cc:1198 msgid "16-int" msgstr "16-int" -#: ardour_ui.cc:1133 +#: ardour_ui.cc:1217 #, c-format msgid "DSP: %5.1f%%" msgstr "DSP: %5.1f%%" -#: ardour_ui.cc:1152 +#: ardour_ui.cc:1236 #, c-format msgid "" "Buffers: p:" @@ -851,60 +908,59 @@ msgstr "" "%%% c:%%%" -#: ardour_ui.cc:1188 +#: ardour_ui.cc:1277 msgid "Disk: Unknown" msgstr "Disco: Desconocido" -#: ardour_ui.cc:1190 +#: ardour_ui.cc:1279 msgid "Disk: 24hrs+" msgstr "Disco: 24hrs+" -#: ardour_ui.cc:1208 +#: ardour_ui.cc:1297 msgid "Disk: >24 hrs" msgstr "Disco: >24 hrs" -#: ardour_ui.cc:1219 +#: ardour_ui.cc:1308 #, c-format msgid "Disk: %02dh:%02dm:%02ds" msgstr "Disco: %02dh:%02dm:%02ds" -#: ardour_ui.cc:1245 +#: ardour_ui.cc:1334 #, c-format msgid "Timecode|TC: %s" msgstr "TC: %s" -#: ardour_ui.cc:1362 ardour_ui.cc:1371 startup.cc:1054 +#: ardour_ui.cc:1451 ardour_ui.cc:1460 session_dialog.cc:322 +#: session_dialog.cc:327 msgid "Recent Sessions" msgstr "Sesiones recientes" -#: ardour_ui.cc:1451 +#: ardour_ui.cc:1539 msgid "" -"%1 is not connected to JACK\n" +"%1 is not connected to any audio backend.\n" "You cannot open or close sessions in this condition" msgstr "" -"%1 no está conectado a JACK.\n" -"No se pueden abrir ni cerrar archivos en esta condición." -#: ardour_ui.cc:1478 +#: ardour_ui.cc:1563 msgid "Open Session" msgstr "Abrir sesión" -#: ardour_ui.cc:1503 session_import_dialog.cc:169 -#: session_metadata_dialog.cc:729 startup.cc:1083 +#: ardour_ui.cc:1588 session_dialog.cc:353 session_import_dialog.cc:169 +#: session_metadata_dialog.cc:729 msgid "%1 sessions" msgstr "sesiones %1" -#: ardour_ui.cc:1540 +#: ardour_ui.cc:1625 msgid "You cannot add a track without a session already loaded." msgstr "No puedes añadir pistas ni buses sin una sesión cargada." -#: ardour_ui.cc:1548 +#: ardour_ui.cc:1633 msgid "could not create %1 new mixed track" msgid_plural "could not create %1 new mixed tracks" msgstr[0] "no se pudo crear %1 nueva pista mezclada" msgstr[1] "no se pudieron crear %1 nuevas pistas mezcladas" -#: ardour_ui.cc:1554 ardour_ui.cc:1615 +#: ardour_ui.cc:1639 ardour_ui.cc:1700 msgid "" "There are insufficient JACK ports available\n" "to create a new track or bus.\n" @@ -916,23 +972,23 @@ msgstr "" "Deberás guardar %1, salir y\n" "reiniciar JACK con más puertos." -#: ardour_ui.cc:1589 +#: ardour_ui.cc:1674 msgid "You cannot add a track or bus without a session already loaded." msgstr "No puedes añadir pistas ni buses sin una sesión cargada." -#: ardour_ui.cc:1598 +#: ardour_ui.cc:1683 msgid "could not create %1 new audio track" msgid_plural "could not create %1 new audio tracks" msgstr[0] "no se pudo crear %1 nueva pista de audio" msgstr[1] "no se pudieron crear %1 nuevas pistas de audio" -#: ardour_ui.cc:1607 +#: ardour_ui.cc:1692 msgid "could not create %1 new audio bus" msgid_plural "could not create %1 new audio busses" msgstr[0] "no se pudo crear %1 nuevo bus de audio" msgstr[1] "no se pudieron crear %1 nuevos buses de audio" -#: ardour_ui.cc:1724 +#: ardour_ui.cc:1816 msgid "" "Please create one or more tracks before trying to record.\n" "You can do this with the \"Add Track or Bus\" option in the Session menu." @@ -940,41 +996,15 @@ msgstr "" "Por favor, añade al menos 1 pista antes de intentar grabar\n" "Lo puedes hacer con la opción \"Añadir pista o bus\" en el menú de Sesión." -#: ardour_ui.cc:2114 -msgid "" -"The audio backend (JACK) was shutdown because:\n" -"\n" -"%1" -msgstr "" -"El motor de audio (JACK) se cerró porque:\n" -"\n" -"%1" - -#: ardour_ui.cc:2116 -msgid "" -"JACK has either been shutdown or it\n" -"disconnected %1 because %1\n" -"was not fast enough. Try to restart\n" -"JACK, reconnect and save the session." -msgstr "" -"El servidor de audio JACK ha sido detenido o ha\n" -"desconectado %1 porque %1\n" -"no fue lo bastante rápido. Intenta reiniciar\n" -"JACK, reconectar y guardar la sesión." - -#: ardour_ui.cc:2142 -msgid "Unable to start the session running" -msgstr "Incapaz de iniciar la sesión actual" - -#: ardour_ui.cc:2222 +#: ardour_ui.cc:2193 msgid "Take Snapshot" msgstr "Guardar captura de sesión" -#: ardour_ui.cc:2223 +#: ardour_ui.cc:2194 msgid "Name of new snapshot" msgstr "Nombre de captura de sesión" -#: ardour_ui.cc:2247 +#: ardour_ui.cc:2218 msgid "" "To ensure compatibility with various systems\n" "snapshot names may not contain a '%1' character" @@ -982,27 +1012,27 @@ msgstr "" "Para asegurar la compatibilidad entre varios sistemas, los\n" "nombres de captura de sesión no pueden contener el carácter '%1'" -#: ardour_ui.cc:2259 +#: ardour_ui.cc:2230 msgid "Confirm Snapshot Overwrite" msgstr "Confirmar reescritura de captura de sesión" -#: ardour_ui.cc:2260 +#: ardour_ui.cc:2231 msgid "A snapshot already exists with that name. Do you want to overwrite it?" msgstr "Ya existe una captura de sesión con ese nombre. ¿Quieres reescribirla?" -#: ardour_ui.cc:2263 utils_videotl.cc:67 +#: ardour_ui.cc:2234 utils_videotl.cc:67 msgid "Overwrite" msgstr "Reescribir" -#: ardour_ui.cc:2297 +#: ardour_ui.cc:2268 msgid "Rename Session" msgstr "Renombrar sesión" -#: ardour_ui.cc:2298 +#: ardour_ui.cc:2269 msgid "New session name" msgstr "Nuevo nombre de sesión" -#: ardour_ui.cc:2312 ardour_ui.cc:2692 ardour_ui.cc:2737 +#: ardour_ui.cc:2283 ardour_ui.cc:2684 ardour_ui.cc:2722 msgid "" "To ensure compatibility with various systems\n" "session names may not contain a '%1' character" @@ -1010,14 +1040,14 @@ msgstr "" "Para asegurar la compatibilidad entre varios sistemas,\n" "los nombres de sesión no pueden contener el carácter '%1'" -#: ardour_ui.cc:2320 +#: ardour_ui.cc:2291 msgid "" "That name is already in use by another directory/folder. Please try again." msgstr "" "Ese nombre ya está en uso por otro directorio o carpeta. Por favor, " "inténtalo otra vez." -#: ardour_ui.cc:2329 +#: ardour_ui.cc:2300 msgid "" "Renaming this session failed.\n" "Things could be seriously messed up at this point" @@ -1025,20 +1055,20 @@ msgstr "" "Renaming this session failed.\n" "Things could be seriously messed up at this point" -#: ardour_ui.cc:2440 +#: ardour_ui.cc:2411 msgid "Save Template" msgstr "Guardar plantilla" # se refiere a la sesión, no al Mezclador -#: ardour_ui.cc:2441 +#: ardour_ui.cc:2412 msgid "Name for template:" msgstr "Nombre de plantilla:" -#: ardour_ui.cc:2442 +#: ardour_ui.cc:2413 msgid "-template" msgstr "-plantilla" -#: ardour_ui.cc:2480 +#: ardour_ui.cc:2451 msgid "" "This session\n" "%1\n" @@ -1048,52 +1078,59 @@ msgstr "" "%1\n" "ya existe. ¿Quieres abrirla?" -#: ardour_ui.cc:2490 +#: ardour_ui.cc:2461 msgid "Open Existing Session" msgstr "Abrir sesión existente" -#: ardour_ui.cc:2728 +#: ardour_ui.cc:2712 msgid "There is no existing session at \"%1\"" msgstr "No hay ninguna sesión existente en \"%1\"" -#: ardour_ui.cc:2815 +#: ardour_ui.cc:2804 msgid "Please wait while %1 loads your session" msgstr "Por favor, espera a que %1 cargue tu sesión" -#: ardour_ui.cc:2830 +#: ardour_ui.cc:2819 msgid "Port Registration Error" msgstr "Error de Registro de Puertos" -#: ardour_ui.cc:2831 +#: ardour_ui.cc:2820 msgid "Click the Close button to try again." msgstr "Pulsa el botón Cerrar para volver a intentarlo" -#: ardour_ui.cc:2852 +#: ardour_ui.cc:2841 msgid "Session \"%1 (snapshot %2)\" did not load successfully" msgstr "No se pudo cargar la sesión \"%1 (captura %2)\" " -#: ardour_ui.cc:2858 +#: ardour_ui.cc:2848 msgid "Loading Error" msgstr "Error al cargar" -#: ardour_ui.cc:2859 -msgid "Click the Refresh button to try again." -msgstr "Pulsa el botón Actualizar para volver a intentarlo" +#: ardour_ui.cc:2867 +msgid "" +"This session has been opened in read-only mode.\n" +"\n" +"You will not be able to record or save." +msgstr "" -#: ardour_ui.cc:2941 +#: ardour_ui.cc:2873 +msgid "Read-only Session" +msgstr "" + +#: ardour_ui.cc:2931 msgid "Could not create session in \"%1\"" msgstr "No se pudo crear la sesión en \"%1\"" -#: ardour_ui.cc:3041 +#: ardour_ui.cc:3031 msgid "No files were ready for clean-up" msgstr "No había ningún archivo preparado para purgar" -#: ardour_ui.cc:3045 ardour_ui.cc:3055 ardour_ui.cc:3188 ardour_ui.cc:3195 +#: ardour_ui.cc:3035 ardour_ui.cc:3045 ardour_ui.cc:3178 ardour_ui.cc:3185 #: ardour_ui_ed.cc:104 msgid "Clean-up" msgstr "Purgar" -#: ardour_ui.cc:3046 +#: ardour_ui.cc:3036 msgid "" "If this seems suprising, \n" "check for any existing snapshots.\n" @@ -1104,21 +1141,21 @@ msgstr "" "Éstas todavía pueden incluir regiones que hacen que algunos\n" "archivos no utilizados continúen existiendo." -#: ardour_ui.cc:3105 +#: ardour_ui.cc:3095 msgid "kilo" msgstr "kilo" -#: ardour_ui.cc:3108 +#: ardour_ui.cc:3098 msgid "mega" msgstr "mega" -#: ardour_ui.cc:3111 +#: ardour_ui.cc:3101 msgid "giga" msgstr "giga" # debí adaptar para que al completarse con los parámetros el mensaje tuviera sentido en español # (quedaba mal por los plurales y la ambigüedad was=fue/estuvo) -#: ardour_ui.cc:3116 +#: ardour_ui.cc:3106 msgid "" "The following file was deleted from %2,\n" "releasing %3 %4bytes of disk space" @@ -1134,7 +1171,7 @@ msgstr[1] "" # debí adaptar para que al completarse con los parámetros el mensaje tuviera sentido en español # (quedaba mal por los plurales y la ambigüedad was=fue/estuvo) -#: ardour_ui.cc:3123 +#: ardour_ui.cc:3113 msgid "" "The following file was not in use and \n" "has been moved to: %2\n" @@ -1172,11 +1209,11 @@ msgstr[1] "" "\n" "liberará %3 %4bytes de espacio en disco.\n" -#: ardour_ui.cc:3183 +#: ardour_ui.cc:3173 msgid "Are you sure you want to clean-up?" msgstr "¿Estás seguro de que quieres purgar?" -#: ardour_ui.cc:3190 +#: ardour_ui.cc:3180 msgid "" "Clean-up is a destructive operation.\n" "ALL undo/redo information will be lost if you clean-up.\n" @@ -1186,76 +1223,80 @@ msgstr "" "TODA la información del historial deshacer/rehacer se perderá.\n" "Purgar moverá todos los archivos no usados a la carpeta \"dead\"." -#: ardour_ui.cc:3198 +#: ardour_ui.cc:3188 msgid "CleanupDialog" msgstr "Purgar" -#: ardour_ui.cc:3228 +#: ardour_ui.cc:3218 msgid "Cleaned Files" msgstr "Archivos purgados" -#: ardour_ui.cc:3245 +#: ardour_ui.cc:3235 msgid "deleted file" msgstr "archivo eliminado" -#: ardour_ui.cc:3337 +#: ardour_ui.cc:3381 msgid "" "Video-Server was not launched by Ardour. The request to stop it is ignored." msgstr "" -#: ardour_ui.cc:3341 +#: ardour_ui.cc:3385 msgid "Stop Video-Server" msgstr "" -#: ardour_ui.cc:3342 +#: ardour_ui.cc:3386 msgid "Do you really want to stop the Video Server?" msgstr "" -#: ardour_ui.cc:3371 +#: ardour_ui.cc:3389 +msgid "Yes, Stop It" +msgstr "" + +#: ardour_ui.cc:3415 msgid "The Video Server is already started." msgstr "" -#: ardour_ui.cc:3373 +#: ardour_ui.cc:3417 msgid "" "An external Video Server is configured and can be reached. Not starting a " "new instance." msgstr "" -#: ardour_ui.cc:3381 ardour_ui.cc:3471 +#: ardour_ui.cc:3425 ardour_ui.cc:3515 msgid "" "Could not connect to the Video Server. Start it or configure its access URL " "in Edit -> Preferences." msgstr "" -#: ardour_ui.cc:3405 +#: ardour_ui.cc:3449 msgid "Specified docroot is not an existing directory." msgstr "" -#: ardour_ui.cc:3410 +#: ardour_ui.cc:3454 msgid "Given Video Server is not an executable file." msgstr "" -#: ardour_ui.cc:3443 +#: ardour_ui.cc:3487 msgid "Cannot launch the video-server" msgstr "" -#: ardour_ui.cc:3452 +#: ardour_ui.cc:3496 msgid "Video-server was started but does not respond to requests..." msgstr "" -#: ardour_ui.cc:3497 editor_audio_import.cc:632 +#: ardour_ui.cc:3541 editor_audio_import.cc:632 msgid "could not open %1" msgstr "no se pudo abrir %1" -#: ardour_ui.cc:3501 +#: ardour_ui.cc:3545 msgid "no video-file selected" msgstr "" -#: ardour_ui.cc:3673 +#: ardour_ui.cc:3717 msgid "Recording was stopped because your system could not keep up." msgstr "Se detuvo la grabación porque el sistema se sobrecargó." -#: ardour_ui.cc:3702 +#: ardour_ui.cc:3746 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1269,7 +1310,7 @@ msgstr "" "En concreto, la velocidad de escritura de datos en el disco\n" "no fue lo bastante alta como para permitir la grabación.\n" -#: ardour_ui.cc:3721 +#: ardour_ui.cc:3765 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1283,11 +1324,11 @@ msgstr "" "En concreto, la velocidad de lectura de datos desde el disco\n" "no fue lo bastante alta como para permitir la reproducción.\n" -#: ardour_ui.cc:3761 +#: ardour_ui.cc:3805 msgid "Crash Recovery" msgstr "Recuperación del crash" -#: ardour_ui.cc:3762 +#: ardour_ui.cc:3806 msgid "" "This session appears to have been in the\n" "middle of recording when %1 or\n" @@ -1305,19 +1346,19 @@ msgstr "" "o puede ignorarlo. Por favor, decide qué\n" "deseas hacer.\n" -#: ardour_ui.cc:3774 +#: ardour_ui.cc:3818 msgid "Ignore crash data" msgstr "Ignorar información del crash" -#: ardour_ui.cc:3775 +#: ardour_ui.cc:3819 msgid "Recover from crash" msgstr "Recuperar del crash" -#: ardour_ui.cc:3795 +#: ardour_ui.cc:3839 msgid "Sample Rate Mismatch" msgstr "Discrepancia de frecuencia de muestreo" -#: ardour_ui.cc:3796 +#: ardour_ui.cc:3840 msgid "" "This session was created with a sample rate of %1 Hz, but\n" "%2 is currently running at %3 Hz. If you load this session,\n" @@ -1327,23 +1368,23 @@ msgstr "" "pero %2 está ejecutándose actualmente a %3 Hz. Si cargas la sesión\n" "puede que el audio se reproduzca a una frecuencia de muestreo incorrecta.\n" -#: ardour_ui.cc:3805 +#: ardour_ui.cc:3849 msgid "Do not load session" msgstr "No cargar sesión" -#: ardour_ui.cc:3806 +#: ardour_ui.cc:3850 msgid "Load session anyway" msgstr "Cargar sesión de todas formas" -#: ardour_ui.cc:3829 -msgid "Could not disconnect from JACK" -msgstr "No se pudo desconectar de JACK" +#: ardour_ui.cc:3877 +msgid "Could not disconnect from Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:3842 -msgid "Could not reconnect to JACK" -msgstr "No se pudo reconectar a JACK" +#: ardour_ui.cc:3893 ardour_ui.cc:3896 +msgid "Could not reconnect to the Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:4116 +#: ardour_ui.cc:4172 msgid "" "%4This is a session from an older version of %3%5\n" "\n" @@ -1366,6 +1407,10 @@ msgstr "interfaz de usuario: no se pudo configurar el editor" msgid "UI: cannot setup mixer" msgstr "interfaz de usuario: no se pudo configurar el mezclador" +#: ardour_ui2.cc:82 +msgid "UI: cannot setup meterbridge" +msgstr "" + #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "Reproducir desde cursor" @@ -1438,6 +1483,26 @@ msgstr "" msgid "When active, there is a feedback loop." msgstr "Cuando está activo, existe un bucle de realimentación." +#: ardour_ui2.cc:145 +msgid "" +"Primary Clock right-click to set display mode. Click to edit, click" +"+drag a digit or mouse-over+scroll wheel to modify.\n" +"Text edits: right-to-left overwrite Esc: cancel; Enter: " +"confirm; postfix the edit with '+' or '-' to enter delta times.\n" +msgstr "" + +#: ardour_ui2.cc:146 +msgid "" +"Secondary Clock right-click to set display mode. Click to edit, click" +"+drag a digit or mouse-over+scroll wheel to modify.\n" +"Text edits: right-to-left overwrite Esc: cancel; Enter: " +"confirm; postfix the edit with '+' or '-' to enter delta times.\n" +msgstr "" + +#: ardour_ui2.cc:147 +msgid "Reset Level Meter" +msgstr "" + #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "[ERROR]: " @@ -1451,51 +1516,51 @@ msgid "[INFO]: " msgstr "[INFO]: " # he cambiado desde Auto Volver. Qudaba un poco raro y auto return se entiende mejor -#: ardour_ui2.cc:247 ardour_ui_ed.cc:377 +#: ardour_ui2.cc:247 ardour_ui_ed.cc:344 msgid "Auto Return" msgstr "Auto Return" -#: ardour_ui2.cc:249 ardour_ui_ed.cc:380 +#: ardour_ui2.cc:249 ardour_ui_ed.cc:347 msgid "Follow Edits" msgstr "Seguir Edits" -#: ardour_ui2.cc:628 rc_option_editor.cc:1004 rc_option_editor.cc:1022 -#: rc_option_editor.cc:1025 rc_option_editor.cc:1027 rc_option_editor.cc:1029 -#: rc_option_editor.cc:1037 rc_option_editor.cc:1045 rc_option_editor.cc:1047 -#: rc_option_editor.cc:1055 rc_option_editor.cc:1062 rc_option_editor.cc:1071 -#: rc_option_editor.cc:1073 rc_option_editor.cc:1075 rc_option_editor.cc:1083 -#: rc_option_editor.cc:1085 rc_option_editor.cc:1094 +#: ardour_ui2.cc:628 rc_option_editor.cc:1002 rc_option_editor.cc:1020 +#: rc_option_editor.cc:1023 rc_option_editor.cc:1025 rc_option_editor.cc:1027 +#: rc_option_editor.cc:1035 rc_option_editor.cc:1043 rc_option_editor.cc:1045 +#: rc_option_editor.cc:1053 rc_option_editor.cc:1060 rc_option_editor.cc:1069 +#: rc_option_editor.cc:1071 rc_option_editor.cc:1073 rc_option_editor.cc:1081 +#: rc_option_editor.cc:1083 rc_option_editor.cc:1092 #: session_option_editor.cc:234 session_option_editor.cc:236 #: session_option_editor.cc:257 session_option_editor.cc:259 #: session_option_editor.cc:261 session_option_editor.cc:268 msgid "Misc" msgstr "Misc" -#: ardour_ui_dependents.cc:77 +#: ardour_ui_dependents.cc:69 msgid "Setup Editor" msgstr "Configurar Editor" -#: ardour_ui_dependents.cc:79 +#: ardour_ui_dependents.cc:71 msgid "Setup Mixer" msgstr "Configurar Mezclador" -#: ardour_ui_dependents.cc:85 +#: ardour_ui_dependents.cc:77 msgid "Reload Session History" msgstr "Recargar historial de sesión" -#: ardour_ui_dialogs.cc:242 +#: ardour_ui_dialogs.cc:238 msgid "Don't close" msgstr "No cerrar" -#: ardour_ui_dialogs.cc:243 +#: ardour_ui_dialogs.cc:239 msgid "Just close" msgstr "Cerrar" -#: ardour_ui_dialogs.cc:244 +#: ardour_ui_dialogs.cc:240 msgid "Save and close" msgstr "Guardar y cerrar" -#: ardour_ui_dialogs.cc:340 +#: ardour_ui_dialogs.cc:339 msgid "This screen is not tall enough to display the mixer window" msgstr "" "Esta pantalla no es lo bastante alta para mostrar la ventana del mezclador" @@ -1505,11 +1570,11 @@ msgid "Session" msgstr "Sesión" #: ardour_ui_ed.cc:106 editor_actions.cc:134 editor_regions.cc:115 -#: port_group.cc:457 session_option_editor.cc:82 session_option_editor.cc:89 +#: port_group.cc:458 session_option_editor.cc:82 session_option_editor.cc:89 msgid "Sync" msgstr "Sinc" -#: ardour_ui_ed.cc:107 engine_dialog.cc:369 +#: ardour_ui_ed.cc:107 msgid "Options" msgstr "Opciones" @@ -1537,15 +1602,15 @@ msgstr "Tipo de archivo" msgid "Sample Format" msgstr "Formato de muestra" -#: ardour_ui_ed.cc:114 rc_option_editor.cc:1826 rc_option_editor.cc:1839 +#: ardour_ui_ed.cc:114 rc_option_editor.cc:1814 rc_option_editor.cc:1826 msgid "Control Surfaces" msgstr "Superficies de control" -#: ardour_ui_ed.cc:115 rc_option_editor.cc:1558 +#: ardour_ui_ed.cc:115 rc_option_editor.cc:1546 msgid "Plugins" msgstr "Plugins" -#: ardour_ui_ed.cc:116 rc_option_editor.cc:1902 +#: ardour_ui_ed.cc:116 rc_option_editor.cc:1889 msgid "Metering" msgstr "Medidores" @@ -1581,6 +1646,18 @@ msgstr "Cerrar" msgid "Add Track or Bus..." msgstr "Añadir pista o bus..." +#: ardour_ui_ed.cc:135 +msgid "Open Video" +msgstr "" + +#: ardour_ui_ed.cc:138 +msgid "Remove Video" +msgstr "" + +#: ardour_ui_ed.cc:141 +msgid "Export To Video File" +msgstr "" + #: ardour_ui_ed.cc:145 msgid "Snapshot..." msgstr "Captura de sesión..." @@ -1619,7 +1696,7 @@ msgid "Stem export..." msgstr "Stem export..." #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 -#: export_video_dialog.cc:72 +#: export_video_dialog.cc:71 msgid "Export" msgstr "Exportar" @@ -1631,165 +1708,156 @@ msgstr "Purgar archivos no usados..." msgid "Flush Wastebasket" msgstr "Vaciar papelera" -#: ardour_ui_ed.cc:189 keyeditor.cc:253 rc_option_editor.cc:1472 -msgid "JACK" -msgstr "JACK" - -#: ardour_ui_ed.cc:190 route_params_ui.cc:105 -msgid "Latency" -msgstr "Latencia" - -#: ardour_ui_ed.cc:192 -msgid "Reconnect" -msgstr "Reconectar" - -#: ardour_ui_ed.cc:195 global_port_matrix.cc:207 io_selector.cc:210 -#: mixer_strip.cc:719 mixer_strip.cc:845 -msgid "Disconnect" -msgstr "Desconectar" - -#: ardour_ui_ed.cc:222 +#: ardour_ui_ed.cc:189 msgid "Quit" msgstr "Salir" -#: ardour_ui_ed.cc:226 +#: ardour_ui_ed.cc:193 msgid "Maximise Editor Space" msgstr "Maximizar Editor" -#: ardour_ui_ed.cc:227 +#: ardour_ui_ed.cc:194 msgid "Show Toolbars" msgstr "Mostrar barras de herramientas" -#: ardour_ui_ed.cc:230 mixer_ui.cc:1865 mixer_ui.cc:1871 +#: ardour_ui_ed.cc:197 mixer_ui.cc:1865 mixer_ui.cc:1871 msgid "Window|Mixer" msgstr "Mezclador" -#: ardour_ui_ed.cc:234 midi_tracer.cc:39 +#: ardour_ui_ed.cc:198 +msgid "Toggle Editor+Mixer" +msgstr "" + +#: ardour_ui_ed.cc:199 meterbridge.cc:230 meterbridge.cc:236 +msgid "Window|Meterbridge" +msgstr "" + +#: ardour_ui_ed.cc:201 midi_tracer.cc:42 msgid "MIDI Tracer" msgstr "Rastreador MIDI" -#: ardour_ui_ed.cc:236 +#: ardour_ui_ed.cc:203 msgid "Chat" msgstr "Chat" -#: ardour_ui_ed.cc:238 +#: ardour_ui_ed.cc:205 msgid "Help|Manual" msgstr "Manual" -#: ardour_ui_ed.cc:239 +#: ardour_ui_ed.cc:206 msgid "Reference" msgstr "Referencia" -#: ardour_ui_ed.cc:241 plugin_ui.cc:418 +#: ardour_ui_ed.cc:208 plugin_ui.cc:415 msgid "Save" msgstr "Guardar" -#: ardour_ui_ed.cc:249 rc_option_editor.cc:1114 rc_option_editor.cc:1125 -#: rc_option_editor.cc:1134 rc_option_editor.cc:1147 rc_option_editor.cc:1160 -#: rc_option_editor.cc:1169 rc_option_editor.cc:1179 rc_option_editor.cc:1181 -#: rc_option_editor.cc:1191 rc_option_editor.cc:1207 rc_option_editor.cc:1220 -#: rc_option_editor.cc:1238 rc_option_editor.cc:1240 rc_option_editor.cc:1254 -#: rc_option_editor.cc:1257 rc_option_editor.cc:1259 rc_option_editor.cc:1276 -#: rc_option_editor.cc:1287 +#: ardour_ui_ed.cc:216 rc_option_editor.cc:1112 rc_option_editor.cc:1123 +#: rc_option_editor.cc:1132 rc_option_editor.cc:1145 rc_option_editor.cc:1158 +#: rc_option_editor.cc:1167 rc_option_editor.cc:1177 rc_option_editor.cc:1179 +#: rc_option_editor.cc:1189 rc_option_editor.cc:1205 rc_option_editor.cc:1218 +#: rc_option_editor.cc:1236 rc_option_editor.cc:1238 rc_option_editor.cc:1252 +#: rc_option_editor.cc:1255 rc_option_editor.cc:1257 rc_option_editor.cc:1274 +#: rc_option_editor.cc:1285 msgid "Transport" msgstr "Transporte" -#: ardour_ui_ed.cc:255 engine_dialog.cc:85 +#: ardour_ui_ed.cc:222 msgid "Stop" msgstr "Stop" -#: ardour_ui_ed.cc:258 +#: ardour_ui_ed.cc:225 msgid "Roll" msgstr "Roll" -#: ardour_ui_ed.cc:262 +#: ardour_ui_ed.cc:229 msgid "Start/Stop" msgstr "Comenzar/Detener" -#: ardour_ui_ed.cc:265 +#: ardour_ui_ed.cc:232 msgid "Start/Continue/Stop" msgstr "Comenzar/Continuar/Detener" -#: ardour_ui_ed.cc:268 +#: ardour_ui_ed.cc:235 msgid "Stop and Forget Capture" msgstr "Detener y destruir captura" # it's not literal, but it's what it does # translating to "rollo" or "rodar" doesn't make much sense in spanish # am I missing something? -#: ardour_ui_ed.cc:278 +#: ardour_ui_ed.cc:245 msgid "Transition To Roll" msgstr "Transición hacia delante" -#: ardour_ui_ed.cc:282 +#: ardour_ui_ed.cc:249 msgid "Transition To Reverse" msgstr "Transición hacia atrás" -#: ardour_ui_ed.cc:286 +#: ardour_ui_ed.cc:253 msgid "Play Loop Range" msgstr "Reproducir rango de bucle" -#: ardour_ui_ed.cc:289 +#: ardour_ui_ed.cc:256 msgid "Play Selected Range" msgstr "Reproducir rango seleccionado" -#: ardour_ui_ed.cc:292 +#: ardour_ui_ed.cc:259 msgid "Play Selection w/Preroll" msgstr "Reproducir selección con Preroll" -#: ardour_ui_ed.cc:296 +#: ardour_ui_ed.cc:263 msgid "Enable Record" msgstr "Activar grabación" -#: ardour_ui_ed.cc:299 +#: ardour_ui_ed.cc:266 msgid "Start Recording" msgstr "Iniciar grabación" -#: ardour_ui_ed.cc:303 +#: ardour_ui_ed.cc:270 msgid "Rewind" msgstr "Rebobinar" -#: ardour_ui_ed.cc:306 +#: ardour_ui_ed.cc:273 msgid "Rewind (Slow)" msgstr "Rebobinar (Lento)" -#: ardour_ui_ed.cc:309 +#: ardour_ui_ed.cc:276 msgid "Rewind (Fast)" msgstr "Rebobinar (Rápido)" -#: ardour_ui_ed.cc:312 startup.cc:727 +#: ardour_ui_ed.cc:279 msgid "Forward" msgstr "Adelante" -#: ardour_ui_ed.cc:315 +#: ardour_ui_ed.cc:282 msgid "Forward (Slow)" msgstr "Adelante (Lento)" -#: ardour_ui_ed.cc:318 +#: ardour_ui_ed.cc:285 msgid "Forward (Fast)" msgstr "Adelante (Rápido)" -#: ardour_ui_ed.cc:321 +#: ardour_ui_ed.cc:288 msgid "Goto Zero" msgstr "Ir a cero" -#: ardour_ui_ed.cc:324 +#: ardour_ui_ed.cc:291 msgid "Goto Start" msgstr "Ir a inicio" -#: ardour_ui_ed.cc:327 +#: ardour_ui_ed.cc:294 msgid "Goto End" msgstr "Ir a fin" -#: ardour_ui_ed.cc:330 +#: ardour_ui_ed.cc:297 msgid "Goto Wall Clock" msgstr "Ir a hora actual" -#: ardour_ui_ed.cc:334 +#: ardour_ui_ed.cc:301 msgid "Focus On Clock" msgstr "Enfocar en reloj" -#: ardour_ui_ed.cc:338 ardour_ui_ed.cc:347 audio_clock.cc:2046 editor.cc:237 +#: ardour_ui_ed.cc:305 ardour_ui_ed.cc:314 audio_clock.cc:2046 editor.cc:237 #: editor_actions.cc:544 editor_actions.cc:553 export_timespan_selector.cc:88 #: session_option_editor.cc:41 session_option_editor.cc:61 #: session_option_editor.cc:80 session_option_editor.cc:96 @@ -1798,130 +1866,126 @@ msgstr "Enfocar en reloj" msgid "Timecode" msgstr "Timecode" -#: ardour_ui_ed.cc:340 ardour_ui_ed.cc:349 editor_actions.cc:542 +#: ardour_ui_ed.cc:307 ardour_ui_ed.cc:316 editor_actions.cc:542 msgid "Bars & Beats" msgstr "Compases y pulsos" -#: ardour_ui_ed.cc:342 ardour_ui_ed.cc:351 +#: ardour_ui_ed.cc:309 ardour_ui_ed.cc:318 msgid "Minutes & Seconds" msgstr "Minutos y segundos" -#: ardour_ui_ed.cc:344 ardour_ui_ed.cc:353 audio_clock.cc:2050 editor.cc:238 +#: ardour_ui_ed.cc:311 ardour_ui_ed.cc:320 audio_clock.cc:2050 editor.cc:238 #: editor_actions.cc:543 msgid "Samples" msgstr "Muestras" -#: ardour_ui_ed.cc:356 +#: ardour_ui_ed.cc:323 msgid "Punch In" msgstr "Pinchar" -#: ardour_ui_ed.cc:357 mixer_strip.cc:1905 route_ui.cc:137 +#: ardour_ui_ed.cc:324 mixer_strip.cc:1905 route_ui.cc:137 #: time_info_box.cc:113 msgid "In" msgstr "Entrada" -#: ardour_ui_ed.cc:360 +#: ardour_ui_ed.cc:327 msgid "Punch Out" msgstr "Despinchar" -#: ardour_ui_ed.cc:361 time_info_box.cc:114 +#: ardour_ui_ed.cc:328 time_info_box.cc:114 msgid "Out" msgstr "Salida" -#: ardour_ui_ed.cc:364 +#: ardour_ui_ed.cc:331 msgid "Punch In/Out" msgstr "Pinchazo" -#: ardour_ui_ed.cc:365 +#: ardour_ui_ed.cc:332 msgid "In/Out" msgstr "In/Out" -#: ardour_ui_ed.cc:368 rc_option_editor.cc:1071 +#: ardour_ui_ed.cc:335 rc_option_editor.cc:1069 msgid "Click" msgstr "Claqueta" -#: ardour_ui_ed.cc:371 +#: ardour_ui_ed.cc:338 msgid "Auto Input" msgstr "Auto Entrada" # Reproducir Auto is too big -#: ardour_ui_ed.cc:374 +#: ardour_ui_ed.cc:341 msgid "Auto Play" msgstr "Auto Play" -#: ardour_ui_ed.cc:385 +#: ardour_ui_ed.cc:352 msgid "Sync Startup to Video" msgstr "Sincronizar inicio a video" -#: ardour_ui_ed.cc:387 +#: ardour_ui_ed.cc:354 msgid "Time Master" msgstr "Maestro" -#: ardour_ui_ed.cc:394 +#: ardour_ui_ed.cc:361 msgid "Toggle Record Enable Track %1" msgstr "Activar/Desactivar grabación en pista %1" -#: ardour_ui_ed.cc:401 +#: ardour_ui_ed.cc:368 msgid "Percentage" msgstr "Porcentaje" -#: ardour_ui_ed.cc:402 shuttle_control.cc:169 +#: ardour_ui_ed.cc:369 shuttle_control.cc:169 msgid "Semitones" msgstr "Semitonos" -#: ardour_ui_ed.cc:406 +#: ardour_ui_ed.cc:373 msgid "Send MTC" msgstr "Enviar MTC" -#: ardour_ui_ed.cc:408 +#: ardour_ui_ed.cc:375 msgid "Send MMC" msgstr "Enviar MMC" -#: ardour_ui_ed.cc:410 +#: ardour_ui_ed.cc:377 msgid "Use MMC" msgstr "Usar MMC" -#: ardour_ui_ed.cc:412 rc_option_editor.cc:1710 +#: ardour_ui_ed.cc:379 rc_option_editor.cc:1698 msgid "Send MIDI Clock" msgstr "Enviar MIDI Clock" -#: ardour_ui_ed.cc:414 +#: ardour_ui_ed.cc:381 msgid "Send MIDI Feedback" msgstr "Enviar MIDI feedback" -#: ardour_ui_ed.cc:420 +#: ardour_ui_ed.cc:387 msgid "Panic" msgstr "Pánico" -#: ardour_ui_ed.cc:560 +#: ardour_ui_ed.cc:472 msgid "Wall Clock" msgstr "Hora actual" -#: ardour_ui_ed.cc:561 +#: ardour_ui_ed.cc:473 msgid "Disk Space" msgstr "Espacio en disco" -#: ardour_ui_ed.cc:562 +#: ardour_ui_ed.cc:474 msgid "DSP" msgstr "DSP" -#: ardour_ui_ed.cc:563 +#: ardour_ui_ed.cc:475 msgid "Buffers" msgstr "Buffers" -#: ardour_ui_ed.cc:564 -msgid "JACK Sampling Rate and Latency" -msgstr "Frecuencia de muestreo y latencia de JACK" - -#: ardour_ui_ed.cc:565 +#: ardour_ui_ed.cc:477 msgid "Timecode Format" msgstr "Formato de timecode" -#: ardour_ui_ed.cc:566 +#: ardour_ui_ed.cc:478 msgid "File Format" msgstr "Formato archivo" -#: ardour_ui_options.cc:65 +#: ardour_ui_options.cc:61 msgid "" "It is not possible to use JACK as the the sync source\n" "when the pull up/down setting is non-zero." @@ -1929,15 +1993,15 @@ msgstr "" "No es posible usar JACK como fuente de sincronización\n" "cuando la configuración de pull up/down no es cero." -#: ardour_ui_options.cc:321 +#: ardour_ui_options.cc:317 msgid "Internal" msgstr "Interno" -#: ardour_ui_options.cc:482 +#: ardour_ui_options.cc:468 msgid "Enable/Disable external positional sync" msgstr "Activar/Desactivar sincronización de posición externa" -#: ardour_ui_options.cc:484 +#: ardour_ui_options.cc:470 msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "No es posible sincronizar a JACK: video pull up/down está establecido" @@ -2058,32 +2122,32 @@ msgid "hide track" msgstr "ocultar pista" #: automation_time_axis.cc:255 automation_time_axis.cc:307 -#: automation_time_axis.cc:496 gain_meter.cc:195 generic_pluginui.cc:456 -#: generic_pluginui.cc:746 panner_ui.cc:150 +#: automation_time_axis.cc:496 gain_meter.cc:194 generic_pluginui.cc:454 +#: generic_pluginui.cc:775 panner_ui.cc:149 msgid "Automation|Manual" msgstr "Manual" #: automation_time_axis.cc:257 automation_time_axis.cc:318 -#: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 -#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 -#: generic_pluginui.cc:459 generic_pluginui.cc:748 midi_time_axis.cc:1488 -#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:153 +#: automation_time_axis.cc:501 editor.cc:1937 editor.cc:2014 +#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:197 +#: generic_pluginui.cc:457 generic_pluginui.cc:777 midi_time_axis.cc:1488 +#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:152 msgid "Play" msgstr "Reproducir" #: automation_time_axis.cc:259 automation_time_axis.cc:329 -#: automation_time_axis.cc:506 gain_meter.cc:201 generic_pluginui.cc:462 -#: generic_pluginui.cc:750 panner_ui.cc:156 +#: automation_time_axis.cc:506 gain_meter.cc:200 generic_pluginui.cc:460 +#: generic_pluginui.cc:779 panner_ui.cc:155 msgid "Write" msgstr "Escribir" #: automation_time_axis.cc:261 automation_time_axis.cc:340 -#: automation_time_axis.cc:511 gain_meter.cc:204 generic_pluginui.cc:465 -#: generic_pluginui.cc:752 panner_ui.cc:159 +#: automation_time_axis.cc:511 gain_meter.cc:203 generic_pluginui.cc:463 +#: generic_pluginui.cc:781 panner_ui.cc:158 msgid "Touch" msgstr "Tocar" -#: automation_time_axis.cc:351 generic_pluginui.cc:468 meter_patterns.cc:108 +#: automation_time_axis.cc:351 generic_pluginui.cc:466 meter_patterns.cc:108 msgid "???" msgstr "???" @@ -2108,8 +2172,8 @@ msgstr "Estado" msgid "Discrete" msgstr "Discreto" -#: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 -#: editor.cc:1526 export_format_dialog.cc:476 +#: automation_time_axis.cc:537 editor.cc:1458 editor.cc:1465 editor.cc:1521 +#: editor.cc:1527 export_format_dialog.cc:476 msgid "Linear" msgstr "Lineal" @@ -2140,13 +2204,13 @@ msgstr "Entrada" msgid "Output" msgstr "Salida" -#: bundle_manager.cc:264 editor.cc:1974 editor_actions.cc:90 +#: bundle_manager.cc:264 editor.cc:1978 editor_actions.cc:90 #: editor_actions.cc:100 msgid "Edit" msgstr "Editar" -#: bundle_manager.cc:265 editor.cc:5493 editor_actions.cc:310 -#: editor_actions.cc:368 plugin_ui.cc:419 processor_box.cc:2229 +#: bundle_manager.cc:265 editor.cc:5497 editor_actions.cc:310 +#: editor_actions.cc:368 plugin_ui.cc:416 processor_box.cc:2268 #: route_time_axis.cc:713 msgid "Delete" msgstr "Eliminar" @@ -2323,164 +2387,164 @@ msgstr "Duración" msgid "edit note" msgstr "editar nota" -#: editor.cc:137 editor.cc:3429 +#: editor.cc:137 editor.cc:3433 msgid "CD Frames" msgstr "Cuadros CD" -#: editor.cc:138 editor.cc:3431 +#: editor.cc:138 editor.cc:3435 msgid "Timecode Frames" msgstr "Timecode muestras" -#: editor.cc:139 editor.cc:3433 +#: editor.cc:139 editor.cc:3437 msgid "Timecode Seconds" msgstr "Timecode segundos" -#: editor.cc:140 editor.cc:3435 +#: editor.cc:140 editor.cc:3439 msgid "Timecode Minutes" msgstr "Timecode minutos" -#: editor.cc:141 editor.cc:3437 +#: editor.cc:141 editor.cc:3441 msgid "Seconds" msgstr "Segundos" -#: editor.cc:142 editor.cc:3439 +#: editor.cc:142 editor.cc:3443 msgid "Minutes" msgstr "Minutos" -#: editor.cc:143 editor.cc:3413 quantize_dialog.cc:37 quantize_dialog.cc:141 +#: editor.cc:143 editor.cc:3417 quantize_dialog.cc:37 quantize_dialog.cc:141 msgid "Beats/128" msgstr "Pulsos/128" -#: editor.cc:144 editor.cc:3411 quantize_dialog.cc:38 quantize_dialog.cc:143 +#: editor.cc:144 editor.cc:3415 quantize_dialog.cc:38 quantize_dialog.cc:143 msgid "Beats/64" msgstr "Pulsos/64" -#: editor.cc:145 editor.cc:3409 quantize_dialog.cc:39 quantize_dialog.cc:145 +#: editor.cc:145 editor.cc:3413 quantize_dialog.cc:39 quantize_dialog.cc:145 msgid "Beats/32" msgstr "Pulsos/32" -#: editor.cc:146 editor.cc:3407 +#: editor.cc:146 editor.cc:3411 msgid "Beats/28" msgstr "Pulsos/28" -#: editor.cc:147 editor.cc:3405 +#: editor.cc:147 editor.cc:3409 msgid "Beats/24" msgstr "Pulsos/24" -#: editor.cc:148 editor.cc:3403 +#: editor.cc:148 editor.cc:3407 msgid "Beats/20" msgstr "Pulsos/20" -#: editor.cc:149 editor.cc:3401 quantize_dialog.cc:40 quantize_dialog.cc:147 +#: editor.cc:149 editor.cc:3405 quantize_dialog.cc:40 quantize_dialog.cc:147 msgid "Beats/16" msgstr "Pulsos/16" -#: editor.cc:150 editor.cc:3399 +#: editor.cc:150 editor.cc:3403 msgid "Beats/14" msgstr "Pulsos/14" -#: editor.cc:151 editor.cc:3397 +#: editor.cc:151 editor.cc:3401 msgid "Beats/12" msgstr "Pulsos/12" -#: editor.cc:152 editor.cc:3395 +#: editor.cc:152 editor.cc:3399 msgid "Beats/10" msgstr "Pulsos/10" -#: editor.cc:153 editor.cc:3393 quantize_dialog.cc:41 quantize_dialog.cc:149 +#: editor.cc:153 editor.cc:3397 quantize_dialog.cc:41 quantize_dialog.cc:149 msgid "Beats/8" msgstr "Pulsos/8" -#: editor.cc:154 editor.cc:3391 +#: editor.cc:154 editor.cc:3395 msgid "Beats/7" msgstr "Pulsos/7" -#: editor.cc:155 editor.cc:3389 +#: editor.cc:155 editor.cc:3393 msgid "Beats/6" msgstr "Pulsos/6" -#: editor.cc:156 editor.cc:3387 +#: editor.cc:156 editor.cc:3391 msgid "Beats/5" msgstr "Pulsos/5" -#: editor.cc:157 editor.cc:3385 quantize_dialog.cc:42 quantize_dialog.cc:151 +#: editor.cc:157 editor.cc:3389 quantize_dialog.cc:42 quantize_dialog.cc:151 msgid "Beats/4" msgstr "Pulsos/4" -#: editor.cc:158 editor.cc:3383 quantize_dialog.cc:43 quantize_dialog.cc:153 +#: editor.cc:158 editor.cc:3387 quantize_dialog.cc:43 quantize_dialog.cc:153 msgid "Beats/3" msgstr "Pulsos/3" -#: editor.cc:159 editor.cc:3381 quantize_dialog.cc:44 quantize_dialog.cc:155 +#: editor.cc:159 editor.cc:3385 quantize_dialog.cc:44 quantize_dialog.cc:155 msgid "Beats/2" msgstr "Pulsos/2" -#: editor.cc:160 editor.cc:3415 quantize_dialog.cc:45 quantize_dialog.cc:157 +#: editor.cc:160 editor.cc:3419 quantize_dialog.cc:45 quantize_dialog.cc:157 msgid "Beats" msgstr "Pulsos" -#: editor.cc:161 editor.cc:3417 +#: editor.cc:161 editor.cc:3421 msgid "Bars" msgstr "Compases" -#: editor.cc:162 editor.cc:3419 +#: editor.cc:162 editor.cc:3423 msgid "Marks" msgstr "Marcas" -#: editor.cc:163 editor.cc:3421 +#: editor.cc:163 editor.cc:3425 msgid "Region starts" msgstr "Inicios región" -#: editor.cc:164 editor.cc:3423 +#: editor.cc:164 editor.cc:3427 msgid "Region ends" msgstr "Finales región" -#: editor.cc:165 editor.cc:3427 +#: editor.cc:165 editor.cc:3431 msgid "Region syncs" msgstr "Sincronías región" -#: editor.cc:166 editor.cc:3425 +#: editor.cc:166 editor.cc:3429 msgid "Region bounds" msgstr "Bordes región" -#: editor.cc:171 editor.cc:3455 editor_actions.cc:485 +#: editor.cc:171 editor.cc:3459 editor_actions.cc:485 msgid "No Grid" msgstr "No rejilla" -#: editor.cc:172 editor.cc:3457 editor_actions.cc:486 +#: editor.cc:172 editor.cc:3461 editor_actions.cc:486 msgid "Grid" msgstr "Rejilla" -#: editor.cc:173 editor.cc:3459 editor_actions.cc:487 +#: editor.cc:173 editor.cc:3463 editor_actions.cc:487 msgid "Magnetic" msgstr "Imán" -#: editor.cc:178 editor.cc:188 editor.cc:3498 editor.cc:3523 +#: editor.cc:178 editor.cc:188 editor.cc:3502 editor.cc:3527 #: editor_actions.cc:117 editor_actions.cc:468 msgid "Playhead" msgstr "Cursor" -#: editor.cc:179 editor.cc:3496 editor_actions.cc:470 +#: editor.cc:179 editor.cc:3500 editor_actions.cc:470 msgid "Marker" msgstr "Marca" -#: editor.cc:180 editor.cc:189 editor.cc:3525 editor_actions.cc:469 +#: editor.cc:180 editor.cc:189 editor.cc:3529 editor_actions.cc:469 msgid "Mouse" msgstr "Ratón" -#: editor.cc:185 editor.cc:3517 mono_panner_editor.cc:42 +#: editor.cc:185 editor.cc:3521 mono_panner_editor.cc:42 msgid "Left" msgstr "Izquierda" -#: editor.cc:186 editor.cc:3519 mono_panner_editor.cc:47 +#: editor.cc:186 editor.cc:3523 mono_panner_editor.cc:47 msgid "Right" msgstr "Derecha" -#: editor.cc:187 editor.cc:3521 +#: editor.cc:187 editor.cc:3525 msgid "Center" msgstr "Centro" -#: editor.cc:190 editor.cc:3090 editor.cc:3527 +#: editor.cc:190 editor.cc:3094 editor.cc:3531 msgid "Edit point" msgstr "Punto de edición" @@ -2541,340 +2605,344 @@ msgstr "" msgid "mode" msgstr "modo" -#: editor.cc:542 +#: editor.cc:541 msgid "Regions" msgstr "Regiones" -#: editor.cc:543 +#: editor.cc:542 msgid "Tracks & Busses" msgstr "Pistas y buses" -#: editor.cc:544 +#: editor.cc:543 msgid "Snapshots" msgstr "Capturas de sesión" -#: editor.cc:545 +#: editor.cc:544 msgid "Track & Bus Groups" msgstr "Grupos de pistas y buses" -#: editor.cc:546 +#: editor.cc:545 msgid "Ranges & Marks" msgstr "Rangos y marcas" -#: editor.cc:690 editor.cc:5345 rc_option_editor.cc:1294 -#: rc_option_editor.cc:1302 rc_option_editor.cc:1310 rc_option_editor.cc:1318 -#: rc_option_editor.cc:1335 rc_option_editor.cc:1337 rc_option_editor.cc:1345 -#: rc_option_editor.cc:1353 rc_option_editor.cc:1373 rc_option_editor.cc:1385 -#: rc_option_editor.cc:1387 rc_option_editor.cc:1395 rc_option_editor.cc:1403 -#: rc_option_editor.cc:1411 rc_option_editor.cc:1419 rc_option_editor.cc:1427 -#: rc_option_editor.cc:1442 rc_option_editor.cc:1446 +#: editor.cc:690 editor.cc:5349 rc_option_editor.cc:1292 +#: rc_option_editor.cc:1300 rc_option_editor.cc:1308 rc_option_editor.cc:1316 +#: rc_option_editor.cc:1333 rc_option_editor.cc:1335 rc_option_editor.cc:1343 +#: rc_option_editor.cc:1351 rc_option_editor.cc:1371 rc_option_editor.cc:1383 +#: rc_option_editor.cc:1385 rc_option_editor.cc:1393 rc_option_editor.cc:1401 +#: rc_option_editor.cc:1409 rc_option_editor.cc:1417 rc_option_editor.cc:1432 +#: rc_option_editor.cc:1436 msgid "Editor" msgstr "Editor" -#: editor.cc:1215 editor.cc:1225 editor.cc:4440 editor_actions.cc:130 +#: editor.cc:1215 editor.cc:1225 editor.cc:4444 editor_actions.cc:130 #: editor_actions.cc:1813 msgid "Loop" msgstr "Bucle" -#: editor.cc:1231 editor.cc:1241 editor.cc:4467 editor_actions.cc:131 +#: editor.cc:1231 editor.cc:1241 editor.cc:4471 editor_actions.cc:131 #: time_info_box.cc:67 msgid "Punch" msgstr "Pinchazo" -#: editor.cc:1352 +#: editor.cc:1353 msgid "Linear (for highly correlated material)" msgstr "Linear (for highly correlated material)" -#: editor.cc:1362 editor.cc:1499 editor.cc:1561 +#: editor.cc:1363 editor.cc:1500 editor.cc:1562 msgid "Constant power" msgstr "Constant power" -#: editor.cc:1371 editor.cc:1492 editor.cc:1554 +#: editor.cc:1372 editor.cc:1493 editor.cc:1555 msgid "Symmetric" msgstr "Symmetric" -#: editor.cc:1381 editor.cc:1474 editor.cc:1536 +#: editor.cc:1382 editor.cc:1475 editor.cc:1537 msgid "Slow" msgstr "Lenta" -#: editor.cc:1390 editor.cc:1483 editor.cc:1545 sfdb_ui.cc:1627 +#: editor.cc:1391 editor.cc:1484 editor.cc:1546 sfdb_ui.cc:1627 #: sfdb_ui.cc:1736 msgid "Fast" msgstr "Rápida" -#: editor.cc:1437 +#: editor.cc:1438 msgid "programming error: fade in canvas item has no regionview data pointer!" msgstr "programming error: fade in canvas item has no regionview data pointer!" -#: editor.cc:1448 editor.cc:1512 +#: editor.cc:1449 editor.cc:1513 msgid "Deactivate" msgstr "Desactivar" -#: editor.cc:1450 editor.cc:1514 +#: editor.cc:1451 editor.cc:1515 msgid "Activate" msgstr "Activar" -#: editor.cc:1458 editor.cc:1521 +#: editor.cc:1459 editor.cc:1522 msgid "Slowest" msgstr "Lentísima" -#: editor.cc:1572 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 +#: editor.cc:1573 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 msgid "programming error: " msgstr "programming error: " -#: editor.cc:1673 editor.cc:1681 editor_ops.cc:3522 +#: editor.cc:1674 editor.cc:1682 editor_ops.cc:3522 msgid "Freeze" msgstr "Congelar" -#: editor.cc:1677 +#: editor.cc:1678 msgid "Unfreeze" msgstr "Descongelar" -#: editor.cc:1816 +#: editor.cc:1817 msgid "Selected Regions" msgstr "Regiones seleccionadas" -#: editor.cc:1852 editor_markers.cc:895 +#: editor.cc:1853 editor_markers.cc:895 msgid "Play Range" msgstr "Reproducir rango" -#: editor.cc:1853 editor_markers.cc:898 +#: editor.cc:1854 editor_markers.cc:898 msgid "Loop Range" msgstr "Reproducir rango en bucle" -#: editor.cc:1862 editor_actions.cc:332 +#: editor.cc:1863 editor_actions.cc:332 msgid "Move Range Start to Previous Region Boundary" msgstr "Mover inicio de rango a borde de región anterior" -#: editor.cc:1869 editor_actions.cc:339 +#: editor.cc:1870 editor_actions.cc:339 msgid "Move Range Start to Next Region Boundary" msgstr "Mover inicio de rango a borde de región siguiente" -#: editor.cc:1876 editor_actions.cc:346 +#: editor.cc:1877 editor_actions.cc:346 msgid "Move Range End to Previous Region Boundary" msgstr "Mover final de rango a borde de región anterior" -#: editor.cc:1883 editor_actions.cc:353 +#: editor.cc:1884 editor_actions.cc:353 msgid "Move Range End to Next Region Boundary" msgstr "Mover final de rango a borde de región siguiente" -#: editor.cc:1889 +#: editor.cc:1890 msgid "Convert to Region In-Place" msgstr "Convertir a región in situ" -#: editor.cc:1890 +#: editor.cc:1891 msgid "Convert to Region in Region List" msgstr "Convertir a región en lista de regiones" -#: editor.cc:1893 editor_markers.cc:925 +#: editor.cc:1894 editor_markers.cc:925 msgid "Select All in Range" msgstr "Seleccionar todo en rango" -#: editor.cc:1896 +#: editor.cc:1897 msgid "Set Loop from Range" msgstr "Crear bucle en rango" -#: editor.cc:1897 +#: editor.cc:1898 msgid "Set Punch from Range" msgstr "Crear pinchazo en rango" -#: editor.cc:1900 +#: editor.cc:1901 msgid "Add Range Markers" msgstr "Insertar marcas de rango" -#: editor.cc:1903 +#: editor.cc:1904 msgid "Crop Region to Range" msgstr "Recortar región a rango" -#: editor.cc:1904 +#: editor.cc:1905 msgid "Fill Range with Region" msgstr "Rellenar rango con región" -#: editor.cc:1905 editor_actions.cc:289 +#: editor.cc:1906 editor_actions.cc:289 msgid "Duplicate Range" msgstr "Duplicar rango" -#: editor.cc:1908 +#: editor.cc:1909 msgid "Consolidate Range" msgstr "Consolidar rango" -#: editor.cc:1909 +#: editor.cc:1910 msgid "Consolidate Range With Processing" msgstr "Consolidar rango con procesado" -#: editor.cc:1910 +#: editor.cc:1911 msgid "Bounce Range to Region List" msgstr "Rebotar rango a lista de regiones" -#: editor.cc:1911 +#: editor.cc:1912 msgid "Bounce Range to Region List With Processing" msgstr "Rebotar rango a lista de regiones con procesado" -#: editor.cc:1912 editor_markers.cc:908 +#: editor.cc:1913 editor_markers.cc:908 msgid "Export Range..." msgstr "Exportar rango..." -#: editor.cc:1927 editor.cc:2008 editor_actions.cc:281 +#: editor.cc:1915 +msgid "Export Video Range..." +msgstr "" + +#: editor.cc:1931 editor.cc:2012 editor_actions.cc:281 msgid "Play From Edit Point" msgstr "Reproducir desde punto de edición" -#: editor.cc:1928 editor.cc:2009 +#: editor.cc:1932 editor.cc:2013 msgid "Play From Start" msgstr "Reproducir desde el principio" -#: editor.cc:1929 +#: editor.cc:1933 msgid "Play Region" msgstr "Reproducir región" -#: editor.cc:1931 +#: editor.cc:1935 msgid "Loop Region" msgstr "Reproducir región en bucle" -#: editor.cc:1941 editor.cc:2018 +#: editor.cc:1945 editor.cc:2022 msgid "Select All in Track" msgstr "Seleccionar todo en la pista" -#: editor.cc:1942 editor.cc:2019 editor_actions.cc:185 -#: export_timespan_selector.cc:53 processor_box.cc:2237 +#: editor.cc:1946 editor.cc:2023 editor_actions.cc:185 +#: export_timespan_selector.cc:53 processor_box.cc:2276 msgid "Select All" msgstr "Seleccionar todo" -#: editor.cc:1943 editor.cc:2020 +#: editor.cc:1947 editor.cc:2024 msgid "Invert Selection in Track" msgstr "Invertir selección en la pista" -#: editor.cc:1944 editor.cc:2021 editor_actions.cc:187 +#: editor.cc:1948 editor.cc:2025 editor_actions.cc:187 msgid "Invert Selection" msgstr "Invertir selección" -#: editor.cc:1946 +#: editor.cc:1950 msgid "Set Range to Loop Range" msgstr "Definir rango como rango de bucle" -#: editor.cc:1947 +#: editor.cc:1951 msgid "Set Range to Punch Range" msgstr "Definir rango como rango de pinchazo" -#: editor.cc:1949 editor.cc:2023 editor_actions.cc:188 +#: editor.cc:1953 editor.cc:2027 editor_actions.cc:188 msgid "Select All After Edit Point" msgstr "Seleccionar todo desde punto de edición" -#: editor.cc:1950 editor.cc:2024 editor_actions.cc:189 +#: editor.cc:1954 editor.cc:2028 editor_actions.cc:189 msgid "Select All Before Edit Point" msgstr "Seleccionar todo hasta punto de edición" -#: editor.cc:1951 editor.cc:2025 +#: editor.cc:1955 editor.cc:2029 msgid "Select All After Playhead" msgstr "Seleccionar todo desde cursor" -#: editor.cc:1952 editor.cc:2026 +#: editor.cc:1956 editor.cc:2030 msgid "Select All Before Playhead" msgstr "Seleccionar todo hasta cursor" -#: editor.cc:1953 +#: editor.cc:1957 msgid "Select All Between Playhead and Edit Point" msgstr "Seleccionar todo entre cursor y punto de edición" # Qué diferencia hay entre : # - Between playhead and edit point # - Within playhead and edit point -#: editor.cc:1954 +#: editor.cc:1958 msgid "Select All Within Playhead and Edit Point" msgstr "Seleccionar todo dentro de cursor y punto de edición" -#: editor.cc:1955 +#: editor.cc:1959 msgid "Select Range Between Playhead and Edit Point" msgstr "Seleccionar rango entre cursor y punto de edición" -#: editor.cc:1957 editor.cc:2028 editor_actions.cc:127 editor_actions.cc:128 +#: editor.cc:1961 editor.cc:2032 editor_actions.cc:127 editor_actions.cc:128 msgid "Select" msgstr "Seleccionar" -#: editor.cc:1965 editor.cc:2036 editor_actions.cc:309 processor_box.cc:2222 +#: editor.cc:1969 editor.cc:2040 editor_actions.cc:309 processor_box.cc:2261 msgid "Cut" msgstr "Cortar" -#: editor.cc:1966 editor.cc:2037 editor_actions.cc:312 processor_box.cc:2225 +#: editor.cc:1970 editor.cc:2041 editor_actions.cc:312 processor_box.cc:2264 msgid "Copy" msgstr "Copiar" -#: editor.cc:1967 editor.cc:2038 editor_actions.cc:313 processor_box.cc:2233 +#: editor.cc:1971 editor.cc:2042 editor_actions.cc:313 processor_box.cc:2272 msgid "Paste" msgstr "Pegar" -#: editor.cc:1971 editor_actions.cc:87 +#: editor.cc:1975 editor_actions.cc:87 msgid "Align" msgstr "Alinear" -#: editor.cc:1972 +#: editor.cc:1976 msgid "Align Relative" msgstr "Alinear relativamente" -#: editor.cc:1979 +#: editor.cc:1983 msgid "Insert Selected Region" msgstr "Insertar región seleccionada" -#: editor.cc:1980 +#: editor.cc:1984 msgid "Insert Existing Media" msgstr "Insertar medios existentes" -#: editor.cc:1989 editor.cc:2045 +#: editor.cc:1993 editor.cc:2049 msgid "Nudge Entire Track Later" msgstr "Atrasar toda la pista" -#: editor.cc:1990 editor.cc:2046 +#: editor.cc:1994 editor.cc:2050 msgid "Nudge Track After Edit Point Later" msgstr "Atrasar pista desde punto de edición" -#: editor.cc:1991 editor.cc:2047 +#: editor.cc:1995 editor.cc:2051 msgid "Nudge Entire Track Earlier" msgstr "Adelantar toda la pista" -#: editor.cc:1992 editor.cc:2048 +#: editor.cc:1996 editor.cc:2052 msgid "Nudge Track After Edit Point Earlier" msgstr "Adelantar pista desde punto de edición" -#: editor.cc:1994 editor.cc:2050 +#: editor.cc:1998 editor.cc:2054 msgid "Nudge" msgstr "Empujar" -#: editor.cc:3070 +#: editor.cc:3074 msgid "Smart Mode (add Range functions to Object mode)" msgstr "Modo smart (añade funciones de rango al modo objeto)" -#: editor.cc:3071 +#: editor.cc:3075 msgid "Object Mode (select/move Objects)" msgstr "Modo objeto (seleccionar/mover objetos)" -#: editor.cc:3072 +#: editor.cc:3076 msgid "Range Mode (select/move Ranges)" msgstr "Modo rango (seleccionar/mover rangos)" -#: editor.cc:3073 +#: editor.cc:3077 msgid "Draw/Edit MIDI Notes" msgstr "Dibujar/Editar notas MIDI" -#: editor.cc:3074 +#: editor.cc:3078 msgid "Draw Region Gain" msgstr "Dibujar ganancia de región" -#: editor.cc:3075 +#: editor.cc:3079 msgid "Select Zoom Range" msgstr "Seleccionar rango de zoom" -#: editor.cc:3076 +#: editor.cc:3080 msgid "Stretch/Shrink Regions and MIDI Notes" msgstr "Estirar/Encoger regiones y notas MIDI" -#: editor.cc:3077 +#: editor.cc:3081 msgid "Listen to Specific Regions" msgstr "Escuchar regiones específicas" -#: editor.cc:3078 +#: editor.cc:3082 msgid "Note Level Editing" msgstr "Edición de notas" -#: editor.cc:3079 +#: editor.cc:3083 msgid "" "Groups: click to (de)activate\n" "Context-click for other operations" @@ -2882,51 +2950,51 @@ msgstr "" "Grupos: clic para (des)activar\n" "Contexto-clic para otras operaciones" -#: editor.cc:3080 +#: editor.cc:3084 msgid "Nudge Region/Selection Later" msgstr "Atrasar región/selección" -#: editor.cc:3081 +#: editor.cc:3085 msgid "Nudge Region/Selection Earlier" msgstr "Adelantar región/selección" -#: editor.cc:3082 editor_actions.cc:242 +#: editor.cc:3086 editor_actions.cc:242 msgid "Zoom In" msgstr "Acercar" -#: editor.cc:3083 editor_actions.cc:241 +#: editor.cc:3087 editor_actions.cc:241 msgid "Zoom Out" msgstr "Alejar" -#: editor.cc:3084 editor_actions.cc:243 +#: editor.cc:3088 editor_actions.cc:243 msgid "Zoom to Session" msgstr "Ajustar zoom a sesión" -#: editor.cc:3085 +#: editor.cc:3089 msgid "Zoom focus" msgstr "Foco del zoom" -#: editor.cc:3086 +#: editor.cc:3090 msgid "Expand Tracks" msgstr "Expandir pistas" -#: editor.cc:3087 +#: editor.cc:3091 msgid "Shrink Tracks" msgstr "Encoger pistas" -#: editor.cc:3088 +#: editor.cc:3092 msgid "Snap/Grid Units" msgstr "Unidades de ajuste a rejilla" -#: editor.cc:3089 +#: editor.cc:3093 msgid "Snap/Grid Mode" msgstr "Modo de ajuste a rejilla" -#: editor.cc:3091 +#: editor.cc:3095 msgid "Edit Mode" msgstr "Modo de edición" -#: editor.cc:3092 +#: editor.cc:3096 msgid "" "Nudge Clock\n" "(controls distance used to nudge regions and selections)" @@ -2935,39 +3003,39 @@ msgstr "" "(define el tiempo determinado para adelantar y atrasar regiones y " "selecciones)" -#: editor.cc:3194 +#: editor.cc:3198 msgid "malformed URL passed to drag-n-drop code" msgstr "malformed URL passed to drag-n-drop code" -#: editor.cc:3256 editor_actions.cc:291 +#: editor.cc:3260 editor_actions.cc:291 msgid "Command|Undo" msgstr "Deshacer" -#: editor.cc:3258 +#: editor.cc:3262 msgid "Command|Undo (%1)" msgstr "Deshacer (%1)" -#: editor.cc:3265 editor_actions.cc:292 +#: editor.cc:3269 editor_actions.cc:292 msgid "Redo" msgstr "Rehacer" -#: editor.cc:3267 +#: editor.cc:3271 msgid "Redo (%1)" msgstr "Rehacer (%1)" -#: editor.cc:3286 editor.cc:3310 editor_actions.cc:106 editor_actions.cc:1794 +#: editor.cc:3290 editor.cc:3314 editor_actions.cc:106 editor_actions.cc:1794 msgid "Duplicate" msgstr "Duplicar" -#: editor.cc:3287 +#: editor.cc:3291 msgid "Number of duplications:" msgstr "Cantidad de copias:" -#: editor.cc:3864 +#: editor.cc:3868 msgid "Playlist Deletion" msgstr "Borrado de lista de reproducción" -#: editor.cc:3865 +#: editor.cc:3869 msgid "" "Playlist %1 is currently unused.\n" "If it is kept, its audio files will not be cleaned.\n" @@ -2977,36 +3045,37 @@ msgstr "" "Si la conservas, sus archivos de audio no se purgarán.\n" "Si la eliminas, se purgarán sólo los archivos de audio que use ésta." -#: editor.cc:3875 +#: editor.cc:3879 msgid "Delete Playlist" msgstr "Eliminar lista de reproducción" -#: editor.cc:3876 +#: editor.cc:3880 msgid "Keep Playlist" msgstr "Conservar lista de reproducción" -#: editor.cc:3877 editor_audio_import.cc:581 editor_ops.cc:5856 -#: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 +#: editor.cc:3881 editor_audio_import.cc:581 editor_ops.cc:5856 +#: engine_dialog.cc:1711 sfdb_freesound_mootcher.cc:69 processor_box.cc:2030 +#: processor_box.cc:2055 msgid "Cancel" msgstr "Cancelar" -#: editor.cc:4021 +#: editor.cc:4025 msgid "new playlists" msgstr "nuevas listas de reproducción" -#: editor.cc:4037 +#: editor.cc:4041 msgid "copy playlists" msgstr "copiar listas de reproducción" -#: editor.cc:4052 +#: editor.cc:4056 msgid "clear playlists" msgstr "limpiar listas de reproducción" -#: editor.cc:4687 +#: editor.cc:4691 msgid "Please wait while %1 loads visual data." msgstr "Por favor, espera a que %1 cargue datos visuales." -#: editor.cc:5492 editor_markers.cc:940 panner_ui.cc:393 processor_box.cc:2253 +#: editor.cc:5496 editor_markers.cc:940 panner_ui.cc:392 processor_box.cc:2292 msgid "Edit..." msgstr "Editar..." @@ -3058,8 +3127,8 @@ msgstr "Superposición" msgid "Position" msgstr "Posición" -#: editor_actions.cc:101 gain_meter.cc:121 gain_meter.cc:791 panner_ui.cc:177 -#: panner_ui.cc:586 +#: editor_actions.cc:101 gain_meter.cc:120 gain_meter.cc:794 panner_ui.cc:176 +#: panner_ui.cc:585 msgid "Trim" msgstr "Recortar" @@ -3110,7 +3179,7 @@ msgstr "Opciones MIDI" msgid "Misc Options" msgstr "Opciones misceláneas" -#: editor_actions.cc:115 rc_option_editor.cc:1460 route_group_dialog.cc:48 +#: editor_actions.cc:115 rc_option_editor.cc:1450 route_group_dialog.cc:48 #: session_option_editor.cc:218 session_option_editor.cc:225 msgid "Monitoring" msgstr "Monitorización" @@ -3289,7 +3358,7 @@ msgstr "Cursor a inicio de rango" msgid "Playhead to Range End" msgstr "Cursor a final de rango" -#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2239 +#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2278 msgid "Deselect All" msgstr "Deseleccionar todo" @@ -3848,10 +3917,26 @@ msgstr "Bucle/Pinchazo" msgid "Min:Sec" msgstr "Mins:Segs" -#: editor_actions.cc:549 rc_option_editor.cc:1842 +#: editor_actions.cc:547 editor_actions.cc:550 +msgid "Video Monitor" +msgstr "" + +#: editor_actions.cc:549 rc_option_editor.cc:1829 msgid "Video" msgstr "" +#: editor_actions.cc:552 +msgid "Always on Top" +msgstr "" + +#: editor_actions.cc:554 +msgid "Frame number" +msgstr "" + +#: editor_actions.cc:555 +msgid "Timecode Background" +msgstr "" + #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" @@ -4330,6 +4415,10 @@ msgstr "Embeber de todas formas" msgid "fixed time region drag" msgstr "Arrastre de región en tiempo fijado" +#: editor_drag.cc:1700 +msgid "Video Start:" +msgstr "" + #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -4354,31 +4443,31 @@ msgstr "copiar marca de tempo" msgid "move tempo mark" msgstr "mover marca de tempo" -#: editor_drag.cc:2545 +#: editor_drag.cc:2550 msgid "change fade in length" msgstr "cambiar duración del fundido de entrada" -#: editor_drag.cc:2663 +#: editor_drag.cc:2668 msgid "change fade out length" msgstr "cambiar duración del fundido de salida" -#: editor_drag.cc:3018 +#: editor_drag.cc:3023 msgid "move marker" msgstr "mover marca" -#: editor_drag.cc:3581 +#: editor_drag.cc:3586 msgid "An error occurred while executing time stretch operation" msgstr "Ocurrió un error al ejecutar la operación de cambio de tempo" -#: editor_drag.cc:4011 +#: editor_drag.cc:4016 msgid "programming_error: %1" msgstr "programming_error: %1" -#: editor_drag.cc:4081 editor_markers.cc:680 +#: editor_drag.cc:4086 editor_markers.cc:680 msgid "new range marker" msgstr "nueva marca de rango" -#: editor_drag.cc:4762 +#: editor_drag.cc:4767 msgid "rubberband selection" msgstr "selección elástica" @@ -4494,8 +4583,8 @@ msgstr "sin nombre" #: editor_markers.cc:1022 editor_markers.cc:1041 editor_markers.cc:1071 #: editor_markers.cc:1102 editor_markers.cc:1132 editor_markers.cc:1160 #: editor_markers.cc:1191 editor_markers.cc:1216 editor_markers.cc:1267 -#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1514 -#: editor_mouse.cc:2478 +#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1526 +#: editor_mouse.cc:2528 msgid "programming error: marker canvas item has no marker object pointer!" msgstr "programming error: marker canvas item has no marker object pointer!" @@ -4595,32 +4684,32 @@ msgstr "Seleccionar rango" msgid "Set Punch Range" msgstr "Crear rango de pinchazo" -#: editor_markers.cc:1351 editor_ops.cc:1699 +#: editor_markers.cc:1362 editor_ops.cc:1699 msgid "New Name:" msgstr "Nuevo Nombre:" -#: editor_markers.cc:1354 +#: editor_markers.cc:1365 msgid "Rename Mark" msgstr "Renombrar marca" -#: editor_markers.cc:1356 +#: editor_markers.cc:1367 msgid "Rename Range" msgstr "Renombrar rango" -#: editor_markers.cc:1363 editor_mouse.cc:2510 processor_box.cc:1781 -#: processor_box.cc:2235 route_time_axis.cc:982 route_ui.cc:1540 +#: editor_markers.cc:1374 editor_mouse.cc:2560 processor_box.cc:1808 +#: processor_box.cc:2274 route_time_axis.cc:982 route_ui.cc:1540 msgid "Rename" msgstr "Renombrar" -#: editor_markers.cc:1376 +#: editor_markers.cc:1387 msgid "rename marker" msgstr "renombrar marca" -#: editor_markers.cc:1399 +#: editor_markers.cc:1411 msgid "set loop range" msgstr "crear rango de bucle" -#: editor_markers.cc:1405 +#: editor_markers.cc:1417 msgid "set punch range" msgstr "crear rango de pinchazo" @@ -4634,7 +4723,7 @@ msgstr "" msgid "Editor::event_frame() used on unhandled event type %1" msgstr "Editor::event_frame() used on unhandled event type %1" -#: editor_mouse.cc:2235 editor_mouse.cc:2260 editor_mouse.cc:2273 +#: editor_mouse.cc:2285 editor_mouse.cc:2310 editor_mouse.cc:2323 msgid "" "programming error: control point canvas item has no control point object " "pointer!" @@ -4642,15 +4731,15 @@ msgstr "" "programming error: control point canvas item has no control point object " "pointer!" -#: editor_mouse.cc:2416 +#: editor_mouse.cc:2466 msgid "start point trim" msgstr "recortar inicio" -#: editor_mouse.cc:2441 +#: editor_mouse.cc:2491 msgid "End point trim" msgstr "recortar final" -#: editor_mouse.cc:2508 +#: editor_mouse.cc:2558 msgid "Name for region:" msgstr "Nombre de región:" @@ -4746,7 +4835,7 @@ msgstr "bajar regiones a capa inferior" msgid "Rename Region" msgstr "Renombrar región" -#: editor_ops.cc:2372 processor_box.cc:1779 route_ui.cc:1538 +#: editor_ops.cc:2372 processor_box.cc:1806 route_ui.cc:1538 msgid "New name:" msgstr "Nuevo nombre: " @@ -4967,6 +5056,10 @@ msgstr "envolvente de ganancia de región activa" msgid "toggle region lock" msgstr "conmutar bloqueo de región" +#: editor_ops.cc:5067 +msgid "Toggle Video Lock" +msgstr "" + #: editor_ops.cc:5091 msgid "region lock style" msgstr "estilo de bloqueo de región" @@ -5137,7 +5230,7 @@ msgstr "" msgid "tracks" msgstr "pistas" -#: editor_ops.cc:6485 route_ui.cc:1822 +#: editor_ops.cc:6485 route_ui.cc:1821 msgid "track" msgstr "pista" @@ -5146,7 +5239,7 @@ msgstr "pista" msgid "busses" msgstr "buses" -#: editor_ops.cc:6491 route_ui.cc:1822 +#: editor_ops.cc:6491 route_ui.cc:1821 msgid "bus" msgstr "bus" @@ -5275,8 +5368,8 @@ msgstr "G" msgid "Region position glued to Bars|Beats time?" msgstr "Region position glued to Bars|Beats time?" -#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:759 -#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:554 +#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:762 +#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:553 #: stereo_panner.cc:237 msgid "M" msgstr "M" @@ -5321,8 +5414,7 @@ msgstr "Eliminar regiones no usadas" msgid "Mult." msgstr "Mult." -#: editor_regions.cc:847 engine_dialog.cc:84 midi_list_editor.cc:103 -#: time_info_box.cc:91 +#: editor_regions.cc:847 midi_list_editor.cc:103 time_info_box.cc:91 msgid "Start" msgstr "Inicio" @@ -5388,7 +5480,7 @@ msgstr "En solo" msgid "SI" msgstr "SI" -#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1880 +#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1867 msgid "Solo Isolated" msgstr "Solo aislado" @@ -5468,6 +5560,10 @@ msgstr "Nueva métrica" msgid "Timeline height" msgstr "" +#: editor_rulers.cc:383 +msgid "Align Video Track" +msgstr "" + #: editor_selection.cc:889 editor_selection.cc:932 msgid "set selected regions" msgstr "establecer regiones seleccionadas" @@ -5601,265 +5697,218 @@ msgstr "cambiar tono" msgid "timefx cannot be started - thread creation error" msgstr "timefx cannot be started - thread creation error" -#: engine_dialog.cc:75 -msgid "Realtime" -msgstr "Realtime" - -#: engine_dialog.cc:76 -msgid "Do not lock memory" -msgstr "No bloquear memoria" - -#: engine_dialog.cc:77 -msgid "Unlock memory" -msgstr "Desbloquear memoria" - -#: engine_dialog.cc:78 -msgid "No zombies" -msgstr "Sin zombis" - #: engine_dialog.cc:79 -msgid "Provide monitor ports" -msgstr "Puertos de monitorización" - -#: engine_dialog.cc:80 -msgid "Force 16 bit" -msgstr "Forzar 16 bit" - -#: engine_dialog.cc:81 -msgid "H/W monitoring" -msgstr "Monitorización por hardware" - -#: engine_dialog.cc:82 -msgid "H/W metering" -msgstr "Medidor por hardware" - -#: engine_dialog.cc:83 -msgid "Verbose output" -msgstr "Salida verbosa" - -#: engine_dialog.cc:103 -msgid "8000Hz" -msgstr "8000Hz" - -#: engine_dialog.cc:104 -msgid "22050Hz" -msgstr "22050Hz" - -#: engine_dialog.cc:105 -msgid "44100Hz" -msgstr "44100Hz" - -#: engine_dialog.cc:106 -msgid "48000Hz" -msgstr "48000Hz" - -#: engine_dialog.cc:107 -msgid "88200Hz" -msgstr "88200Hz" - -#: engine_dialog.cc:108 -msgid "96000Hz" -msgstr "96000Hz" - -#: engine_dialog.cc:109 -msgid "192000Hz" -msgstr "192000Hz" - -#: engine_dialog.cc:127 engine_dialog.cc:132 engine_dialog.cc:169 -#: engine_dialog.cc:562 midi_channel_selector.cc:163 -#: midi_channel_selector.cc:402 midi_channel_selector.cc:438 -#: rc_option_editor.cc:1250 sfdb_ui.cc:538 -msgid "None" -msgstr "Ninguno" - -#: engine_dialog.cc:128 engine_dialog.cc:563 -msgid "Triangular" -msgstr "Triangular" - -#: engine_dialog.cc:129 engine_dialog.cc:565 -msgid "Rectangular" -msgstr "Rectangular" - -#: engine_dialog.cc:130 engine_dialog.cc:567 -msgid "Shaped" -msgstr "Shaped" - -#: engine_dialog.cc:158 engine_dialog.cc:483 engine_dialog.cc:974 -msgid "Playback/recording on 1 device" -msgstr "Reproducción/grabación en 1 dispositivo" - -#: engine_dialog.cc:159 engine_dialog.cc:487 engine_dialog.cc:540 -#: engine_dialog.cc:977 -msgid "Playback/recording on 2 devices" -msgstr "Reproducción/grabación en 2 dispositivos" - -#: engine_dialog.cc:160 engine_dialog.cc:503 engine_dialog.cc:980 -msgid "Playback only" -msgstr "Sólo reproducción" - -#: engine_dialog.cc:161 engine_dialog.cc:505 engine_dialog.cc:983 -msgid "Recording only" -msgstr "Sólo grabación" - -#: engine_dialog.cc:171 engine_dialog.cc:448 -msgid "coremidi" +msgid "Device Control Panel" msgstr "" -#: engine_dialog.cc:173 engine_dialog.cc:581 -msgid "seq" -msgstr "seq" +#: engine_dialog.cc:80 engine_dialog.cc:1725 +msgid "Measure" +msgstr "" -#: engine_dialog.cc:174 engine_dialog.cc:583 -msgid "raw" -msgstr "raw" +#: engine_dialog.cc:81 +msgid "Use results" +msgstr "" -#: engine_dialog.cc:181 +#: engine_dialog.cc:82 +msgid "Back to settings ... (ignore results)" +msgstr "" + +#: engine_dialog.cc:83 +msgid "Calibrate..." +msgstr "" + +#: engine_dialog.cc:87 +msgid "Refresh list" +msgstr "" + +#: engine_dialog.cc:107 +msgid "" +"No audio/MIDI backends detected. %1 cannot run\n" +"\n" +"(This is a build/packaging/system error. It should never happen.)" +msgstr "" + +#: engine_dialog.cc:136 +msgid "Latency Measurement Tool" +msgstr "" + +#: engine_dialog.cc:151 +msgid "" +"Turn down the volume on your audio equipment to a very " +"low level." +msgstr "" + +#: engine_dialog.cc:159 +msgid "Select two channels below and connect them using a cable." +msgstr "" + +#: engine_dialog.cc:164 +msgid "Output channel" +msgstr "" + +#: engine_dialog.cc:172 +msgid "Input channel" +msgstr "" + +#: engine_dialog.cc:207 +msgid "Once the channels are connected, click the \"Measure\" button." +msgstr "" + +#: engine_dialog.cc:214 +msgid "When satisfied with the results, click the \"Use results\" button." +msgstr "" + +#: engine_dialog.cc:229 engine_dialog.cc:1727 +msgid "No measurement results yet" +msgstr "" + +#: engine_dialog.cc:238 route_params_ui.cc:105 +msgid "Latency" +msgstr "Latencia" + +#: engine_dialog.cc:333 +msgid "Audio System:" +msgstr "" + +#: engine_dialog.cc:374 msgid "Driver:" msgstr "Driver:" -#: engine_dialog.cc:186 -msgid "Audio Interface:" -msgstr "Interfaz de audio:" +#: engine_dialog.cc:380 +msgid "Device:" +msgstr "" -#: engine_dialog.cc:191 sfdb_ui.cc:147 sfdb_ui.cc:260 sfdb_ui.cc:265 +#: engine_dialog.cc:385 engine_dialog.cc:475 sfdb_ui.cc:147 sfdb_ui.cc:260 +#: sfdb_ui.cc:265 msgid "Sample rate:" msgstr "Frec. de muestreo:" -#: engine_dialog.cc:196 +#: engine_dialog.cc:391 engine_dialog.cc:482 msgid "Buffer size:" msgstr "Tamaño del buffer:" -#: engine_dialog.cc:202 -msgid "Number of buffers:" -msgstr "Cantidad de buffers:" - -#: engine_dialog.cc:209 -msgid "Approximate latency:" -msgstr "Latencia aproximada:" - -#: engine_dialog.cc:222 -msgid "Audio mode:" -msgstr "Modo de audio:" - -#: engine_dialog.cc:284 engine_dialog.cc:408 -msgid "Ignore" -msgstr "Ignorar" - -#: engine_dialog.cc:292 -msgid "Client timeout" -msgstr "Timeout de clientes" - -#: engine_dialog.cc:299 -msgid "Number of ports:" -msgstr "Cantidad de puertos:" - -#: engine_dialog.cc:304 -msgid "MIDI driver:" -msgstr "Driver MIDI:" - -#: engine_dialog.cc:310 -msgid "Dither:" -msgstr "Dither:" - -#: engine_dialog.cc:319 -msgid "" -"No JACK server found anywhere on this system. Please install JACK and restart" +#: engine_dialog.cc:404 +msgid "Input Channels:" msgstr "" -"No se encuentra el servidor JACK en el sistema. Por favor, instala JACK y " -"reinicia" -#: engine_dialog.cc:327 -msgid "Server:" -msgstr "Servidor:" +#: engine_dialog.cc:415 +msgid "Output Channels:" +msgstr "" -#: engine_dialog.cc:339 -msgid "Input device:" -msgstr "Dispositivo de entrada:" - -#: engine_dialog.cc:343 -msgid "Output device:" -msgstr "Dispositivo de salida:" - -#: engine_dialog.cc:348 +#: engine_dialog.cc:426 msgid "Hardware input latency:" msgstr "Latencia de entrada del hardware:" -#: engine_dialog.cc:351 engine_dialog.cc:357 +#: engine_dialog.cc:429 engine_dialog.cc:442 msgid "samples" msgstr "muestras" -#: engine_dialog.cc:354 +#: engine_dialog.cc:439 msgid "Hardware output latency:" msgstr "Latencia de salida del hardware:" -#: engine_dialog.cc:368 -msgid "Device" -msgstr "Dispositivo" - -#: engine_dialog.cc:370 -msgid "Advanced" -msgstr "Avanzado" - -#: engine_dialog.cc:653 -msgid "cannot open JACK rc file %1 to store parameters" +#: engine_dialog.cc:450 +msgid "MIDI System" msgstr "" -"no se pudo leer el archivo de inicialización de JACK %1 para almacenar " -"parámetros" -#: engine_dialog.cc:787 +#: engine_dialog.cc:467 msgid "" -"You do not have any audio devices capable of\n" -"simultaneous playback and recording.\n" -"\n" -"Please use Applications -> Utilities -> Audio MIDI Setup\n" -"to create an \"aggregrate\" device, or install a suitable\n" -"audio interface.\n" -"\n" -"Please send email to Apple and ask them why new Macs\n" -"have no duplex audio device.\n" -"\n" -"Alternatively, if you really want just playback\n" -"or recording but not both, start JACK before running\n" -"%1 and choose the relevant device then." +"The %1 audio backend was configured and started externally.\n" +"This limits your control over it." msgstr "" -"No tienes ningún dispositivo de audio capaz de\n" -" reproducción y grabación simultánea.\n" -"Por favor, usa Aplicaciones -> Utilidades -> Configuración Audio MIDI\n" -"para crear un dispositivo \"agregado\" o instala\n" -"una interfaz de audio adecuada.\n" + +#: engine_dialog.cc:521 +msgid "" +"Your selected audio configuration is playback- or capture-only.\n" "\n" -"Por favor, envía un e-mail a Apple y pregúntales por qué\n" -"los nuevos Macs no tienen un dispositivo de audio dúplex.\n" -"\n" -"Alternativamente, si de verdad quieres sólo reproducir\n" -"o sólo capturar, pero no ambas cosas a la vez, arranca\n" -"JACK antes de ejecutar %1 y elige el dispositivo adecuado." - -#: engine_dialog.cc:800 -msgid "No suitable audio devices" -msgstr "No hay dispositivos de audio adecuados" - -#: engine_dialog.cc:1017 -msgid "JACK appears to be missing from the %1 bundle" -msgstr "JACK appears to be missing from the %1 bundle" - -#: engine_dialog.cc:1087 -msgid "You need to choose an audio device first." -msgstr "Es necesario que antes elijas un dispositivo de audio." - -#: engine_dialog.cc:1104 -msgid "Audio device \"%1\" not known on this computer." -msgstr "Dispositivo de audio \"%1\" desconocido en este ordenador." - -#: engine_dialog.cc:1256 -msgid "AudioSetup value for %1 is missing data" -msgstr "AudioSetup value for %1 is missing data" - -#: engine_dialog.cc:1335 -msgid "configuration files contain a JACK server path that doesn't exist (%1)" +"Latency calibration requires playback and capture" +msgstr "" + +#: engine_dialog.cc:595 +msgid "MIDI Inputs" +msgstr "" + +#: engine_dialog.cc:612 +msgid "MIDI Outputs" +msgstr "" + +#: engine_dialog.cc:696 +msgid "all available channels" +msgstr "" + +#: engine_dialog.cc:890 +#, c-format +msgid "%u samples" +msgstr "" + +#: engine_dialog.cc:941 +#, c-format +msgid "(%.1f msecs)" +msgstr "" + +#: engine_dialog.cc:1389 +msgid "Cannot set driver to %1" +msgstr "" + +#: engine_dialog.cc:1393 +msgid "Cannot set device name to %1" +msgstr "" + +#: engine_dialog.cc:1397 +msgid "Cannot set sample rate to %1" +msgstr "" + +#: engine_dialog.cc:1401 +msgid "Cannot set buffer size to %1" +msgstr "" + +#: engine_dialog.cc:1407 +msgid "Cannot set input channels to %1" +msgstr "" + +#: engine_dialog.cc:1411 +msgid "Cannot set output channels to %1" +msgstr "" + +#: engine_dialog.cc:1417 +msgid "Cannot set input latency to %1" +msgstr "" + +#: engine_dialog.cc:1421 +msgid "Cannot set output latency to %1" +msgstr "" + +#: engine_dialog.cc:1654 +msgid "No signal detected " +msgstr "" + +#: engine_dialog.cc:1667 port_insert_ui.cc:71 port_insert_ui.cc:99 +msgid "Disconnected from audio engine" +msgstr "Desconectado del motor de audio" + +#: engine_dialog.cc:1681 +msgid "(signal detection error)" +msgstr "" + +#: engine_dialog.cc:1687 +msgid "(inverted - bad wiring)" +msgstr "" + +#: engine_dialog.cc:1697 +msgid "Detected roundtrip latency: %1" +msgstr "" + +#: engine_dialog.cc:1709 port_insert_ui.cc:135 +msgid "Detecting ..." +msgstr "Detectando..." + +#: engine_dialog.cc:1789 +msgid "Disconnect from %1" +msgstr "" + +#: engine_dialog.cc:1801 +msgid "Connect to %1" msgstr "" -"los archivos de configuración contienen una ruta al servidor JACK que no " -"existe (%1)" #: export_channel_selector.cc:45 sfdb_ui.cc:145 msgid "Channels:" @@ -5885,6 +5934,14 @@ msgstr "Contenidos de región con fundidos y ganancia de región (canales: %1)" msgid "Track output (channels: %1)" msgstr "Salida de pista (canales: %1)" +#: export_channel_selector.cc:536 +msgid "Export region contents" +msgstr "" + +#: export_channel_selector.cc:537 +msgid "Export track output" +msgstr "" + #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten.Presets" msgstr "Presets" -#: generic_pluginui.cc:232 +#: generic_pluginui.cc:230 msgid "Switches" msgstr "Conmutadores" -#: generic_pluginui.cc:242 generic_pluginui.cc:376 processor_box.cc:2212 +#: generic_pluginui.cc:240 generic_pluginui.cc:374 processor_box.cc:2251 msgid "Controls" msgstr "Controles" -#: generic_pluginui.cc:270 +#: generic_pluginui.cc:268 msgid "Plugin Editor: could not build control element for port %1" msgstr "" "Editor de plugin: no se pudo crear el elemento de control para el puerto %1" -#: generic_pluginui.cc:408 +#: generic_pluginui.cc:406 msgid "Meters" msgstr "Medidores" -#: generic_pluginui.cc:423 +#: generic_pluginui.cc:421 msgid "Automation control" msgstr "Control de la automatización" -#: generic_pluginui.cc:430 +#: generic_pluginui.cc:428 msgid "Mgnual" msgstr "Manual" -#: global_port_matrix.cc:164 +#: global_port_matrix.cc:157 msgid "Audio Connection Manager" msgstr "Gestor de conexiones de audio" -#: global_port_matrix.cc:167 +#: global_port_matrix.cc:160 msgid "MIDI Connection Manager" msgstr "Gestor de conexiones MIDI" -#: global_port_matrix.cc:213 io_selector.cc:216 +#: global_port_matrix.cc:200 io_selector.cc:210 mixer_strip.cc:719 +#: mixer_strip.cc:845 +msgid "Disconnect" +msgstr "Desconectar" + +#: global_port_matrix.cc:206 io_selector.cc:216 msgid "port" msgstr "puerto" @@ -6432,19 +6506,19 @@ msgstr "Selecciona una acción y pulsa la/s tecla/s para (r)establecer su atajo" msgid "Main_menu" msgstr "" -#: keyeditor.cc:255 +#: keyeditor.cc:253 msgid "redirectmenu" msgstr "" -#: keyeditor.cc:257 +#: keyeditor.cc:255 msgid "Editor_menus" msgstr "" -#: keyeditor.cc:259 +#: keyeditor.cc:257 msgid "RegionList" msgstr "" -#: keyeditor.cc:261 +#: keyeditor.cc:259 msgid "ProcessorMenu" msgstr "" @@ -6466,7 +6540,7 @@ msgid_plural "%1 samples" msgstr[0] "%1 muestra" msgstr[1] "%1 muestras" -#: latency_gui.cc:72 panner_ui.cc:392 +#: latency_gui.cc:72 panner_ui.cc:391 msgid "Reset" msgstr "Restablecer" @@ -6558,100 +6632,65 @@ msgstr "Rangos (incluyendo rangos de pistas de CD)" msgid "add range marker" msgstr "añadir marca de rango" -#: main.cc:83 -msgid "%1 could not connect to JACK." -msgstr "%1 no pudo conectarse a JACK." - -#: main.cc:87 -msgid "" -"There are several possible reasons:\n" -"\n" -"1) JACK is not running.\n" -"2) JACK is running as another user, perhaps root.\n" -"3) There is already another client called \"%1\".\n" -"\n" -"Please consider the possibilities, and perhaps (re)start JACK." +#: main.cc:81 +msgid "%1 could not connect to the audio backend." msgstr "" -"Hay varias razones posibles:\n" -"\n" -"1) JACK no se está ejecutando.\n" -"2) JACK está ejecutándose bajo otro nombre de usuario, tal vez como " -"administrador.\n" -"3) Ya hay otro cliente de JACK ejecutándose con el nombre \"%1\".\n" -"\n" -"Considera estas posibilidades y, quizás, (re)inicia JACK." -#: main.cc:203 main.cc:324 +#: main.cc:194 main.cc:315 msgid "cannot create user %3 folder %1 (%2)" msgstr "" -#: main.cc:210 main.cc:331 +#: main.cc:201 main.cc:322 msgid "cannot open pango.rc file %1" msgstr "no se pudo abrir el archivo pango.rc %1" -#: main.cc:235 main.cc:358 +#: main.cc:226 main.cc:349 msgid "Cannot find ArdourMono TrueType font" msgstr "" -#: main.cc:247 main.cc:364 +#: main.cc:238 main.cc:355 msgid "Cannot load ArdourMono TrueType font." msgstr "" -#: main.cc:312 +#: main.cc:303 msgid "" "No fontconfig file found on your system. Things may looked very odd or ugly" msgstr "" -#: main.cc:368 +#: main.cc:359 msgid "Failed to set fontconfig configuration." msgstr "" -#: main.cc:379 main.cc:395 -msgid "JACK exited" -msgstr "JACK se paró" +#: main.cc:370 main.cc:386 +msgid "The audio backend (%1) has failed, or terminated" +msgstr "" -#: main.cc:382 +#: main.cc:373 msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" +"%2 exited unexpectedly, and without notifying %1.\n" "\n" -"This could be due to misconfiguration or to an error inside JACK.\n" +"This could be due to misconfiguration or to an error inside %2.\n" "\n" "Click OK to exit %1." msgstr "" -"JACK se paró de forma inesperada y sin notificar a %1.\n" -"\n" -"Esto podría ser debido a una mala configuración o a un error en JACK.\n" -"\n" -"Pulsa OK para salir de %1." -#: main.cc:397 -msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" -"\n" -"This is probably due to an error inside JACK. You should restart JACK\n" -"and reconnect %1 to it, or exit %1 now. You cannot save your\n" -"session at this time, because we would lose your connection information.\n" +#: main.cc:387 +msgid "%2 exited unexpectedly, and without notifying %1." msgstr "" -"JACK se paró de forma inesperada y sin notificar a %1.\n" -"\n" -"Esto probablemente se debe a un error en JACK. Debes reiniciar JACK\n" -"y reconectar %1 al mismo, o bien salir de %1 ahora. No puedes\n" -"guardar tu sesión en este momento pues perderíamos la información\n" -"de las conexiones.\n" -#: main.cc:487 +#: main.cc:474 msgid " (built using " msgstr " (compilado usando " -#: main.cc:490 +#: main.cc:477 msgid " and GCC version " msgstr " y versión de GCC " -#: main.cc:500 +#: main.cc:487 msgid "Copyright (C) 1999-2012 Paul Davis" msgstr "Copyright (C) 1999-2012 Paul Davis" -#: main.cc:501 +#: main.cc:488 msgid "" "Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " "Baker, Robin Gareus" @@ -6659,34 +6698,34 @@ msgstr "" "Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " "Baker, Robin Gareus" -#: main.cc:503 +#: main.cc:490 msgid "%1 comes with ABSOLUTELY NO WARRANTY" msgstr "%1 viene SIN GARANTÃA DE NINGUNA CLASE" -#: main.cc:504 +#: main.cc:491 msgid "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." msgstr "" "incluidas de comerciabilidad o adecuación para un propósito determinado" -#: main.cc:505 +#: main.cc:492 msgid "This is free software, and you are welcome to redistribute it " msgstr "Esto es software libre. Puedes distribuirlo " -#: main.cc:506 +#: main.cc:493 msgid "under certain conditions; see the source for copying conditions." msgstr "" "bajo ciertas condiciones; lee el código para conocer las condiciones de " "copia." -#: main.cc:513 +#: main.cc:500 msgid "could not initialize %1." msgstr "no se pudo inicializar %1." -#: main.cc:522 +#: main.cc:509 msgid "Cannot xinstall SIGPIPE error handler" msgstr "Cannot xinstall SIGPIPE error handler" -#: main.cc:528 +#: main.cc:515 msgid "could not create %1 GUI" msgstr "could not create %1 GUI" @@ -6703,6 +6742,11 @@ msgstr "MarkerText" msgid "All" msgstr "Todos" +#: midi_channel_selector.cc:163 midi_channel_selector.cc:402 +#: midi_channel_selector.cc:438 rc_option_editor.cc:1248 sfdb_ui.cc:538 +msgid "None" +msgstr "Ninguno" + #: midi_channel_selector.cc:167 midi_channel_selector.cc:407 #: midi_channel_selector.cc:443 msgid "Invert" @@ -6712,10 +6756,42 @@ msgstr "Invertir" msgid "Force" msgstr "Forzar" +#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 +msgid "MIDI Channel Control" +msgstr "" + +#: midi_channel_selector.cc:332 +msgid "Playback all channels" +msgstr "" + +#: midi_channel_selector.cc:333 +msgid "Play only selected channels" +msgstr "" + #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" +#: midi_channel_selector.cc:335 +msgid "Record all channels" +msgstr "" + +#: midi_channel_selector.cc:336 +msgid "Record only selected channels" +msgstr "" + +#: midi_channel_selector.cc:337 +msgid "Force all channels to 1 channel" +msgstr "" + +#: midi_channel_selector.cc:378 +msgid "Inbound" +msgstr "" + +#: midi_channel_selector.cc:398 +msgid "Click to enable recording all channels" +msgstr "" + #: midi_channel_selector.cc:403 msgid "Click to disable recording all channels" msgstr "" @@ -6724,6 +6800,10 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" +#: midi_channel_selector.cc:415 +msgid "Playback" +msgstr "" + #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -6960,6 +7040,10 @@ msgstr "Modo de dispositivo externo" msgid "Chns" msgstr "" +#: midi_time_axis.cc:272 +msgid "Click to edit channel settings" +msgstr "" + #: midi_time_axis.cc:486 msgid "Show Full Range" msgstr "Mostrar rango completo" @@ -6976,6 +7060,10 @@ msgstr "Rango de notas" msgid "Note Mode" msgstr "Modo de notas" +#: midi_time_axis.cc:497 +msgid "Channel Selector" +msgstr "" + #: midi_time_axis.cc:502 msgid "Color Mode" msgstr "Modo color" @@ -7036,32 +7124,37 @@ msgstr "Colores de canal" msgid "Track Color" msgstr "Color de pista" +#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 +#: midi_time_axis.cc:1510 +msgid "all" +msgstr "" + #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" -#: midi_tracer.cc:43 +#: midi_tracer.cc:46 msgid "Line history: " msgstr "Historia de líneas:" # podría ser "desplazar", chequear contexto -#: midi_tracer.cc:51 +#: midi_tracer.cc:54 msgid "Auto-Scroll" msgstr "Auto-Scroll" -#: midi_tracer.cc:52 +#: midi_tracer.cc:55 msgid "Decimal" msgstr "Decimal" -#: midi_tracer.cc:53 rc_option_editor.cc:659 +#: midi_tracer.cc:56 rc_option_editor.cc:657 msgid "Enabled" msgstr "Habilitado" -#: midi_tracer.cc:54 +#: midi_tracer.cc:57 msgid "Delta times" msgstr "Tiempos delta" -#: midi_tracer.cc:66 +#: midi_tracer.cc:70 msgid "Port:" msgstr "Puerto:" @@ -7125,7 +7218,7 @@ msgstr "Pulsa para elegir una carpeta adicional" msgid "Missing Plugins" msgstr "Plugins ausentes" -#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 +#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:59 msgid "OK" msgstr "OK" @@ -7204,7 +7297,7 @@ msgid "pre" msgstr "pre" #: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 -#: rc_option_editor.cc:1881 +#: rc_option_editor.cc:1868 msgid "Comments" msgstr "Comentarios" @@ -7253,11 +7346,11 @@ msgstr "iso" msgid "Mix group" msgstr "Grupo de mezcla" -#: mixer_strip.cc:351 rc_option_editor.cc:1878 +#: mixer_strip.cc:351 rc_option_editor.cc:1865 msgid "Phase Invert" msgstr "Inversión de fase" -#: mixer_strip.cc:352 rc_option_editor.cc:1879 route_ui.cc:1218 +#: mixer_strip.cc:352 rc_option_editor.cc:1866 route_ui.cc:1218 msgid "Solo Safe" msgstr "Solo seguro" @@ -7265,7 +7358,7 @@ msgstr "Solo seguro" msgid "Group" msgstr "Grupo" -#: mixer_strip.cc:356 rc_option_editor.cc:1882 +#: mixer_strip.cc:356 rc_option_editor.cc:1869 msgid "Meter Point" msgstr "Punto de medición" @@ -7285,9 +7378,9 @@ msgstr "" msgid "Snd" msgstr "Snd" -#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 -msgid "Not connected to JACK - no I/O changes are possible" -msgstr "No está conectado a JACK - No es posible realizar cambios de E/S" +#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2193 +msgid "Not connected to audio engine - no I/O changes are possible" +msgstr "" #: mixer_strip.cc:1096 msgid "INPUT to %1" @@ -7417,6 +7510,10 @@ msgstr "Post-fader" msgid "Change all in Group to %1" msgstr "" +#: mixer_strip.cc:2168 meter_strip.cc:730 +msgid "Change all to %1" +msgstr "" + #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -7437,6 +7534,10 @@ msgstr "Canales" msgid "Variable height" msgstr "" +#: meter_strip.cc:765 +msgid "Short" +msgstr "" + #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -7481,6 +7582,10 @@ msgstr "" msgid "K14" msgstr "" +#: meter_patterns.cc:105 +msgid "VU" +msgstr "" + #: monitor_section.cc:62 msgid "SiP" msgstr "SiP" @@ -7788,11 +7893,9 @@ msgstr "" #: opts.cc:63 msgid "" -" -c, --name Use a specific jack client name, default is " +" -c, --name Use a specific backend client name, default is " "ardour\n" msgstr "" -" -c, --name Nombre de cliente jack para Ardour. Por " -"defecto es ardour\n" #: opts.cc:64 msgid "" @@ -7867,7 +7970,7 @@ msgstr "" msgid "Panner (2D)" msgstr "Paner (2D)" -#: panner2d.cc:783 panner_ui.cc:384 plugin_ui.cc:451 +#: panner2d.cc:783 panner_ui.cc:383 plugin_ui.cc:448 msgid "Bypass" msgstr "Puentear" @@ -7876,15 +7979,15 @@ msgstr "Puentear" msgid "Panner" msgstr "Paner" -#: panner_ui.cc:71 +#: panner_ui.cc:70 msgid "Pan automation mode" msgstr "Modo de automatización de panorámica" -#: panner_ui.cc:72 +#: panner_ui.cc:71 msgid "Pan automation type" msgstr "Tipo de automatización de panorámica" -#: panner_ui.cc:295 +#: panner_ui.cc:294 msgid "" "No panner user interface is currently available for %1-in/2out tracks/busses" msgstr "" @@ -8040,11 +8143,11 @@ msgstr "Por autor" msgid "By Category" msgstr "Por categoría" -#: plugin_ui.cc:116 +#: plugin_ui.cc:114 msgid "Eh? LADSPA plugins don't have editors!" msgstr "¿Cómo? ¡Los plugins LADSPA no tienen editores!" -#: plugin_ui.cc:125 plugin_ui.cc:227 +#: plugin_ui.cc:123 plugin_ui.cc:226 msgid "" "unknown type of editor-supplying plugin (note: no VST support in this " "version of %1)" @@ -8052,11 +8155,11 @@ msgstr "" "Tipo desconocido de plugin con editor propio (nota: no hay soporte para VST " "en esta versión de %1)" -#: plugin_ui.cc:128 +#: plugin_ui.cc:126 msgid "unknown type of editor-supplying plugin" msgstr "Tipo desconocido de plugin con editor propio " -#: plugin_ui.cc:257 +#: plugin_ui.cc:256 msgid "" "unknown type of editor-supplying plugin (note: no linuxVST support in this " "version of %1)" @@ -8064,45 +8167,45 @@ msgstr "" "Tipo desconocido de plugin con editor propio (nota: no hay soporte linuxVST " "en esta versión de %1)" -#: plugin_ui.cc:329 +#: plugin_ui.cc:328 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "" -#: plugin_ui.cc:417 +#: plugin_ui.cc:414 msgid "Add" msgstr "Añadir" -#: plugin_ui.cc:421 +#: plugin_ui.cc:418 msgid "Description" msgstr "Descripción" -#: plugin_ui.cc:422 +#: plugin_ui.cc:419 msgid "Plugin analysis" msgstr "Análisis de plugin" -#: plugin_ui.cc:429 +#: plugin_ui.cc:426 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:430 +#: plugin_ui.cc:427 msgid "Save a new preset" msgstr "Guadar un preset nuevo" -#: plugin_ui.cc:431 +#: plugin_ui.cc:428 msgid "Save the current preset" msgstr "" -#: plugin_ui.cc:432 +#: plugin_ui.cc:429 msgid "Delete the current preset" msgstr "" -#: plugin_ui.cc:433 +#: plugin_ui.cc:430 msgid "Disable signal processing by the plugin" msgstr "" -#: plugin_ui.cc:466 plugin_ui.cc:662 +#: plugin_ui.cc:463 plugin_ui.cc:659 msgid "" "Click to allow the plugin to receive keyboard events that %1 would normally " "use as a shortcut" @@ -8110,69 +8213,69 @@ msgstr "" "Pulsa para permitir que el plugin reciba eventos de teclado que %1 usaría " "normalmente como atajos de teclado" -#: plugin_ui.cc:467 +#: plugin_ui.cc:464 msgid "Click to enable/disable this plugin" msgstr "Pulsa para activar/desactivar este plugin" -#: plugin_ui.cc:506 +#: plugin_ui.cc:503 msgid "latency (%1 sample)" msgid_plural "latency (%1 samples)" msgstr[0] "latencia (%1 muestra)" msgstr[1] "latencia (%1 muestras)" -#: plugin_ui.cc:508 +#: plugin_ui.cc:505 msgid "latency (%1 ms)" msgstr "latencia (%1 ms)" -#: plugin_ui.cc:519 +#: plugin_ui.cc:516 msgid "Edit Latency" msgstr "Editar latencia" -#: plugin_ui.cc:558 +#: plugin_ui.cc:555 msgid "Plugin preset %1 not found" msgstr "No se encontró el preset %1" -#: plugin_ui.cc:595 +#: plugin_ui.cc:592 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "full version" msgstr "" -#: plugin_ui.cc:615 plugin_ui.cc:630 +#: plugin_ui.cc:612 plugin_ui.cc:627 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "newer version" msgstr "" -#: plugin_ui.cc:669 +#: plugin_ui.cc:666 msgid "Click to allow normal use of %1 keyboard shortcuts" msgstr "Pulsa para permitir el uso normal de los atajos de teclado de %1" -#: port_group.cc:335 +#: port_group.cc:337 msgid "%1 Busses" msgstr "Buses %1" -#: port_group.cc:336 +#: port_group.cc:338 msgid "%1 Tracks" msgstr "Pistas %1" -#: port_group.cc:337 +#: port_group.cc:339 msgid "Hardware" msgstr "Hardware" -#: port_group.cc:338 +#: port_group.cc:340 msgid "%1 Misc" msgstr "Ardour misc" -#: port_group.cc:339 +#: port_group.cc:341 msgid "Other" msgstr "Otro" -#: port_group.cc:430 port_group.cc:431 +#: port_group.cc:432 port_group.cc:433 msgid "LTC Out" msgstr "" -#: port_group.cc:434 port_group.cc:435 +#: port_group.cc:436 port_group.cc:437 msgid "LTC In" msgstr "" @@ -8208,15 +8311,15 @@ msgstr "Salida reloj MIDI" msgid "MMC out" msgstr "Salida MMC" -#: port_group.cc:540 +#: port_group.cc:532 msgid ":monitor" msgstr ":monitor" -#: port_group.cc:552 +#: port_group.cc:544 msgid "system:" msgstr "" -#: port_group.cc:553 +#: port_group.cc:545 msgid "alsa_pcm" msgstr "" @@ -8232,18 +8335,10 @@ msgstr "Envío/Salida" msgid "Return/Input" msgstr "Retorno/Entrada" -#: port_insert_ui.cc:71 port_insert_ui.cc:99 -msgid "Disconnected from audio engine" -msgstr "Desconectado del motor de audio" - #: port_insert_ui.cc:86 msgid "No signal detected" msgstr "No se ha detectado señal" -#: port_insert_ui.cc:135 -msgid "Detecting ..." -msgstr "Detectando..." - #: port_insert_ui.cc:166 msgid "Port Insert " msgstr "Inserción puerto" @@ -8287,7 +8382,7 @@ msgstr "Mostrar puertos individuales" msgid "Flip" msgstr "" -#: port_matrix.cc:723 +#: port_matrix.cc:721 msgid "" "It is not possible to add a port here, as the first processor in the track " "or buss cannot support the new configuration." @@ -8295,25 +8390,32 @@ msgstr "" "No es posible añadir un puerto aquí, pues el primer procesador de la pista o " "bus no puede soportar la nueva configuración." -#: port_matrix.cc:726 +#: port_matrix.cc:724 msgid "Cannot add port" msgstr "" -#: port_matrix.cc:748 +#: port_matrix.cc:746 msgid "Port removal not allowed" msgstr "Eliminación de puertos no permitida" -#: port_matrix.cc:966 +#: port_matrix.cc:747 +msgid "" +"This port cannot be removed.\n" +"Either the first plugin in the track or buss cannot accept\n" +"the new number of inputs or the last plugin has more outputs." +msgstr "" + +#: port_matrix.cc:964 #, c-format msgid "Remove '%s'" msgstr "Eliminar '%s'" -#: port_matrix.cc:981 +#: port_matrix.cc:979 #, c-format msgid "%s all from '%s'" msgstr "%s todo desde '%s'" -#: port_matrix.cc:1047 +#: port_matrix.cc:1045 msgid "channel" msgstr "canal" @@ -8350,7 +8452,7 @@ msgstr "Ocultar todos los controles" msgid "on" msgstr "on" -#: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 +#: processor_box.cc:465 rc_option_editor.cc:1898 rc_option_editor.cc:1912 msgid "off" msgstr "apagado" @@ -8362,7 +8464,7 @@ msgstr "" "Botón derecho para añadir/eliminar/editar\n" "plugins, inserciones, envíos y más" -#: processor_box.cc:1197 processor_box.cc:1591 +#: processor_box.cc:1197 processor_box.cc:1618 msgid "Plugin Incompatibility" msgstr "Incompatiblidad de plugin" @@ -8422,7 +8524,7 @@ msgstr "" msgid "Cannot set up new send: %1" msgstr "No se pudo configurar el nuevo envío: %1" -#: processor_box.cc:1594 +#: processor_box.cc:1621 msgid "" "You cannot reorder these plugins/sends/inserts\n" "in that way because the inputs and\n" @@ -8432,19 +8534,19 @@ msgstr "" "de ese modo porque las entradas y salidas no\n" "funcionarán correctamente." -#: processor_box.cc:1778 +#: processor_box.cc:1805 msgid "Rename Processor" msgstr "Renombrar procesador" -#: processor_box.cc:1809 +#: processor_box.cc:1836 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "" -#: processor_box.cc:1943 +#: processor_box.cc:1970 msgid "plugin insert constructor failed" msgstr "" -#: processor_box.cc:1954 +#: processor_box.cc:1981 msgid "" "Copying the set of processors on the clipboard failed,\n" "probably because the I/O configuration of the plugins\n" @@ -8455,7 +8557,7 @@ msgstr "" "configuración de E/S de los plugins no concuerda\n" "con la configuración de esta pista." -#: processor_box.cc:2000 +#: processor_box.cc:2027 msgid "" "Do you really want to remove all processors from %1?\n" "(this cannot be undone)" @@ -8463,15 +8565,15 @@ msgstr "" "¿De verdad deseas eliminar todos los procesadores de %1? \n" "(esto no se puede deshacer)" -#: processor_box.cc:2004 processor_box.cc:2029 +#: processor_box.cc:2031 processor_box.cc:2056 msgid "Yes, remove them all" msgstr "Sí, eliminar todos" -#: processor_box.cc:2006 processor_box.cc:2031 +#: processor_box.cc:2033 processor_box.cc:2058 msgid "Remove processors" msgstr "Eliminar procesadores" -#: processor_box.cc:2021 +#: processor_box.cc:2048 msgid "" "Do you really want to remove all pre-fader processors from %1?\n" "(this cannot be undone)" @@ -8479,7 +8581,7 @@ msgstr "" "¿De verdad deseas eliminar todos los procesadores pre-fader de %1?\n" "(esto no se puede deshacer)" -#: processor_box.cc:2024 +#: processor_box.cc:2051 msgid "" "Do you really want to remove all post-fader processors from %1?\n" "(this cannot be undone)" @@ -8487,52 +8589,60 @@ msgstr "" "¿De verdad deseas eliminar todos los procesadores post-fader de %1?\n" "(esto no se puede deshacer)" -#: processor_box.cc:2200 +#: processor_box.cc:2239 msgid "New Plugin" msgstr "Nuevo plugin" -#: processor_box.cc:2203 +#: processor_box.cc:2242 msgid "New Insert" msgstr "Nueva inserción" -#: processor_box.cc:2206 +#: processor_box.cc:2245 msgid "New External Send ..." msgstr "Nuevo envío externo..." -#: processor_box.cc:2210 +#: processor_box.cc:2249 msgid "New Aux Send ..." msgstr "Nuevo envío auxiliar..." -#: processor_box.cc:2214 +#: processor_box.cc:2253 msgid "Clear (all)" msgstr "Limpiar (todos)" # es correcto el término 'resetear'? # He cambiado tipo de compás y compás, cuando tiene este significado, por métrica -#: processor_box.cc:2216 +#: processor_box.cc:2255 msgid "Clear (pre-fader)" msgstr "Limpiar (pre-fader)" -#: processor_box.cc:2218 +#: processor_box.cc:2257 msgid "Clear (post-fader)" msgstr "Limpiar (post-fader)" -#: processor_box.cc:2244 +#: processor_box.cc:2283 msgid "Activate All" msgstr "Activar todos" -#: processor_box.cc:2246 +#: processor_box.cc:2285 msgid "Deactivate All" msgstr "Desactivar todos" -#: processor_box.cc:2248 +#: processor_box.cc:2287 msgid "A/B Plugins" msgstr "Plugins A/B" -#: processor_box.cc:2557 +#: processor_box.cc:2296 +msgid "Edit with generic controls..." +msgstr "" + +#: processor_box.cc:2599 msgid "%1: %2 (by %3)" msgstr "%1: %2 (a %3)" +#: processor_box.cc:2601 +msgid "%2 (by %3)" +msgstr "" + #: patch_change_dialog.cc:51 msgid "Patch Change" msgstr "Cambio de patch" @@ -8583,113 +8693,121 @@ msgstr "Ajustar principio de nota" msgid "Snap note end" msgstr "Ajustar final de nota" -#: rc_option_editor.cc:69 +#: rc_option_editor.cc:67 msgid "Click audio file:" msgstr "Archivo de audio de claqueta:" -#: rc_option_editor.cc:72 rc_option_editor.cc:79 +#: rc_option_editor.cc:70 rc_option_editor.cc:77 msgid "Browse..." msgstr "Explorar..." -#: rc_option_editor.cc:76 +#: rc_option_editor.cc:74 msgid "Click emphasis audio file:" msgstr "Archivo de audio de claqueta acentuada:" -#: rc_option_editor.cc:108 +#: rc_option_editor.cc:106 msgid "Choose Click" msgstr "Elige claqueta" -#: rc_option_editor.cc:128 +#: rc_option_editor.cc:126 msgid "Choose Click Emphasis" msgstr "Elige claqueta acentuada" -#: rc_option_editor.cc:160 +#: rc_option_editor.cc:158 msgid "Limit undo history to" msgstr "Limitar historial de deshacer a" -#: rc_option_editor.cc:161 +#: rc_option_editor.cc:159 msgid "Save undo history of" msgstr "Guardar historial de deshacer de" -#: rc_option_editor.cc:170 rc_option_editor.cc:177 +#: rc_option_editor.cc:168 rc_option_editor.cc:175 msgid "commands" msgstr "comandos" -#: rc_option_editor.cc:315 +#: rc_option_editor.cc:313 msgid "Edit using:" msgstr "Editar usando:" -#: rc_option_editor.cc:321 rc_option_editor.cc:347 rc_option_editor.cc:374 +#: rc_option_editor.cc:319 rc_option_editor.cc:345 rc_option_editor.cc:372 msgid "+ button" msgstr "+ botón" -#: rc_option_editor.cc:341 +#: rc_option_editor.cc:339 msgid "Delete using:" msgstr "Eliminar usando:" -#: rc_option_editor.cc:368 +#: rc_option_editor.cc:366 msgid "Insert note using:" msgstr "Insertar nota usando:" -#: rc_option_editor.cc:395 +#: rc_option_editor.cc:393 msgid "Ignore snap using:" msgstr "Ignorar ajuste usando:" -#: rc_option_editor.cc:411 +#: rc_option_editor.cc:409 msgid "Keyboard layout:" msgstr "Disposición de teclado:" -#: rc_option_editor.cc:534 +#: rc_option_editor.cc:532 msgid "Font scaling:" msgstr "Escalado de tipografía:" -#: rc_option_editor.cc:586 +#: rc_option_editor.cc:584 msgid "Playback (seconds of buffering):" msgstr "Reproducción (segundos de buffering)" -#: rc_option_editor.cc:599 +#: rc_option_editor.cc:597 msgid "Recording (seconds of buffering):" msgstr "Grabación (segundos de buffering)" -#: rc_option_editor.cc:660 +#: rc_option_editor.cc:654 +msgid "Control Surface Protocol" +msgstr "" + +#: rc_option_editor.cc:658 msgid "Feedback" msgstr "Realimentación" -#: rc_option_editor.cc:665 +#: rc_option_editor.cc:663 msgid "Double-click on a name to edit settings for an enabled protocol" msgstr "" "Doble clic en un nombre para editar ajustes para un protocolo habilitado" -#: rc_option_editor.cc:817 +#: rc_option_editor.cc:815 msgid "Show Video Export Info before export" msgstr "" -#: rc_option_editor.cc:818 +#: rc_option_editor.cc:816 msgid "Show Video Server Startup Dialog" msgstr "" -#: rc_option_editor.cc:819 +#: rc_option_editor.cc:817 msgid "Advanced Setup (remote video server)" msgstr "" -#: rc_option_editor.cc:827 +#: rc_option_editor.cc:825 msgid "" "When enabled you can speficify a custom video-server URL and docroot. " "- Do not enable this option unless you know what you are doing." msgstr "" -#: rc_option_editor.cc:829 +#: rc_option_editor.cc:827 msgid "Video Server URL:" msgstr "" -#: rc_option_editor.cc:834 +#: rc_option_editor.cc:832 msgid "" "Base URL of the video-server including http prefix. This is usually 'http://" "hostname.example.org:1554/' and defaults to 'http://localhost:1554/' when " "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:841 +#: rc_option_editor.cc:834 +msgid "Video Folder:" +msgstr "" + +#: rc_option_editor.cc:839 msgid "" "Local path to the video-server document-root. Only files below this " "directory will be accessible by the video-server. If the server run on a " @@ -8698,99 +8816,99 @@ msgid "" "monitor and file-browsing when opening/adding a video file." msgstr "" -#: rc_option_editor.cc:848 +#: rc_option_editor.cc:846 msgid "" "When enabled an information window with details is displayed before " "the video-export dialog." msgstr "" -#: rc_option_editor.cc:853 +#: rc_option_editor.cc:851 msgid "" "When enabled the video server is never launched automatically without " "confirmation" msgstr "" -#: rc_option_editor.cc:993 +#: rc_option_editor.cc:991 msgid "%1 Preferences" msgstr "Preferencias de %1" -#: rc_option_editor.cc:1004 +#: rc_option_editor.cc:1002 msgid "DSP CPU Utilization" msgstr "Uso de DSP CPU" -#: rc_option_editor.cc:1008 +#: rc_option_editor.cc:1006 msgid "Signal processing uses" msgstr "Usos de procesado de señal" -#: rc_option_editor.cc:1013 +#: rc_option_editor.cc:1011 msgid "all but one processor" msgstr "todos los procesadores menos uno" -#: rc_option_editor.cc:1014 +#: rc_option_editor.cc:1012 msgid "all available processors" msgstr "todos los procesadores disponibles" -#: rc_option_editor.cc:1017 +#: rc_option_editor.cc:1015 msgid "%1 processors" msgstr "%1 procesadores" -#: rc_option_editor.cc:1020 +#: rc_option_editor.cc:1018 msgid "This setting will only take effect when %1 is restarted." msgstr "Esta configuración sólo tendrá efecto cuando %1 sea reiniciado" -#: rc_option_editor.cc:1025 +#: rc_option_editor.cc:1023 msgid "Options|Undo" msgstr "Opciones de deshacer" -#: rc_option_editor.cc:1032 +#: rc_option_editor.cc:1030 msgid "Verify removal of last capture" msgstr "Verificar borrado de última captura" -#: rc_option_editor.cc:1040 +#: rc_option_editor.cc:1038 msgid "Make periodic backups of the session file" msgstr "Hacer copias de seguridad periódicas del archivo de sesión" -#: rc_option_editor.cc:1045 +#: rc_option_editor.cc:1043 msgid "Session Management" msgstr "Gestión de sesiones" -#: rc_option_editor.cc:1050 +#: rc_option_editor.cc:1048 msgid "Always copy imported files" msgstr "Copiar siempre archivos importados" -#: rc_option_editor.cc:1057 +#: rc_option_editor.cc:1055 msgid "Default folder for new sessions:" msgstr "Carpeta por defecto para sesiones nuevas:" -#: rc_option_editor.cc:1065 +#: rc_option_editor.cc:1063 msgid "Maximum number of recent sessions" msgstr "Número máximo de sesiones recientes" -#: rc_option_editor.cc:1078 +#: rc_option_editor.cc:1076 msgid "Click gain level" msgstr "Nivel de ganancia de claqueta" -#: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 +#: rc_option_editor.cc:1081 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "Automatización" -#: rc_option_editor.cc:1088 +#: rc_option_editor.cc:1086 msgid "Thinning factor (larger value => less data)" msgstr "Factor de adelgazamiento (mayor valor => menos datos)" -#: rc_option_editor.cc:1097 +#: rc_option_editor.cc:1095 msgid "Automation sampling interval (milliseconds)" msgstr "Intervalo de sampleado de automatización (milisegundos)" -#: rc_option_editor.cc:1109 +#: rc_option_editor.cc:1107 msgid "Keep record-enable engaged on stop" msgstr "Mantener la grabación preparada al detener" -#: rc_option_editor.cc:1118 +#: rc_option_editor.cc:1116 msgid "Stop recording when an xrun occurs" msgstr "Detener grabación al detectar xrun" -#: rc_option_editor.cc:1123 +#: rc_option_editor.cc:1121 msgid "" "When enabled %1 will stop recording if an over- or underrun is " "detected by the audio engine" @@ -8798,15 +8916,15 @@ msgstr "" "Si está habilitado %1 dejará de grabar si el motor de audio detecta " "un x-run" -#: rc_option_editor.cc:1129 +#: rc_option_editor.cc:1127 msgid "Create markers where xruns occur" msgstr "Crear marca en posición de xrun" -#: rc_option_editor.cc:1138 +#: rc_option_editor.cc:1136 msgid "Stop at the end of the session" msgstr "Parar en el fin de sesión" -#: rc_option_editor.cc:1143 +#: rc_option_editor.cc:1141 msgid "" "When enabled if %1 is not recording, it will stop the " "transport when it reaches the current session end marker\n" @@ -8820,12 +8938,11 @@ msgstr "" "Si está deshabilitado %1 seguirá adelante al alcanzar la marca de fin " "de sesión, en todo caso" -#: rc_option_editor.cc:1151 -msgid "Do seamless looping (not possible when slaved to MTC, JACK etc)" +#: rc_option_editor.cc:1149 +msgid "Do seamless looping (not possible when slaved to MTC, LTC etc)" msgstr "" -"Hacer bucles sin costura (no es posible cuando es esclavo a MTC, JACK, etc)" -#: rc_option_editor.cc:1156 +#: rc_option_editor.cc:1154 msgid "" "When enabled this will loop by reading ahead and wrapping around at " "the loop point, preventing any need to do a transport locate at the end of " @@ -8841,11 +8958,11 @@ msgstr "" "When disabled looping is done by locating back to the start of the " "loop when %1 reaches the end which will often cause a small click or delay" -#: rc_option_editor.cc:1164 +#: rc_option_editor.cc:1162 msgid "Disable per-track record disarm while rolling" msgstr "Impedir desactivación de grabación por pista con el transporte activo" -#: rc_option_editor.cc:1168 +#: rc_option_editor.cc:1166 msgid "" "When enabled this will prevent you from accidentally stopping " "specific tracks recording during a take" @@ -8853,11 +8970,11 @@ msgstr "" "Si está activado impedirá que se desactive la grabación de pistas " "específicas durante una toma" -#: rc_option_editor.cc:1173 +#: rc_option_editor.cc:1171 msgid "12dB gain reduction during fast-forward and fast-rewind" msgstr "Reducir ganancia 12db en avance rápido y rebobinado" -#: rc_option_editor.cc:1177 +#: rc_option_editor.cc:1175 msgid "" "This will reduce the unpleasant increase in perceived volume that occurs " "when fast-forwarding or rewinding through some kinds of audio" @@ -8865,19 +8982,19 @@ msgstr "" "Esto reduce el desagradable incremento de volumen percibido que ocurre a " "veces al rebobinar o acelerar" -#: rc_option_editor.cc:1181 +#: rc_option_editor.cc:1179 msgid "Sync/Slave" msgstr "" -#: rc_option_editor.cc:1185 +#: rc_option_editor.cc:1183 msgid "External timecode source" msgstr "Origen de timecode externo" -#: rc_option_editor.cc:1195 +#: rc_option_editor.cc:1193 msgid "Match session video frame rate to external timecode" msgstr "" -#: rc_option_editor.cc:1201 +#: rc_option_editor.cc:1199 msgid "" "This option controls the value of the video frame rate while chasing " "an external timecode source.\n" @@ -8891,21 +9008,21 @@ msgid "" "external timecode standard and the session standard." msgstr "" -#: rc_option_editor.cc:1211 +#: rc_option_editor.cc:1209 msgid "External timecode is sync locked" msgstr "Timecode externo bloqueado en sincronía" -#: rc_option_editor.cc:1217 +#: rc_option_editor.cc:1215 msgid "" "When enabled indicates that the selected external timecode source " "shares sync (Black & Burst, Wordclock, etc) with the audio interface." msgstr "" -#: rc_option_editor.cc:1224 +#: rc_option_editor.cc:1222 msgid "Lock to 29.9700 fps instead of 30000/1001" msgstr "" -#: rc_option_editor.cc:1230 +#: rc_option_editor.cc:1228 msgid "" "When enabled the external timecode source is assumed to use 29.97 fps " "instead of 30000/1001.\n" @@ -8918,144 +9035,140 @@ msgid "" "variant of using exactly 29.97 fps has zero timecode drift.\n" msgstr "" -#: rc_option_editor.cc:1240 +#: rc_option_editor.cc:1238 msgid "LTC Reader" msgstr "" -#: rc_option_editor.cc:1244 +#: rc_option_editor.cc:1242 msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1257 +#: rc_option_editor.cc:1255 msgid "LTC Generator" msgstr "Generador LTC " -#: rc_option_editor.cc:1262 +#: rc_option_editor.cc:1260 msgid "Enable LTC generator" msgstr "Habilitar generador LTC" -#: rc_option_editor.cc:1269 +#: rc_option_editor.cc:1267 msgid "send LTC while stopped" msgstr "" -#: rc_option_editor.cc:1275 +#: rc_option_editor.cc:1273 msgid "" "When enabled %1 will continue to send LTC information even when the " "transport (playhead) is not moving" msgstr "" -#: rc_option_editor.cc:1281 +#: rc_option_editor.cc:1279 msgid "LTC generator level" msgstr "" -#: rc_option_editor.cc:1285 +#: rc_option_editor.cc:1283 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " "is 0dBu ^= -18dbFS in an EBU calibrated system" msgstr "" -#: rc_option_editor.cc:1297 +#: rc_option_editor.cc:1295 msgid "Link selection of regions and tracks" msgstr "Vincular selección de regiones y pistas" -#: rc_option_editor.cc:1305 +#: rc_option_editor.cc:1303 msgid "Move relevant automation when audio regions are moved" msgstr "Mover automatización relevante al desplazar regiones de audio" -#: rc_option_editor.cc:1313 +#: rc_option_editor.cc:1311 msgid "Show meters on tracks in the editor" msgstr "Mostrar medidores en pistas en Editor" -#: rc_option_editor.cc:1321 +#: rc_option_editor.cc:1319 msgid "Display master-meter in the toolbar" msgstr "" -#: rc_option_editor.cc:1328 +#: rc_option_editor.cc:1326 msgid "Regions in active edit groups are edited together" msgstr "Las regiones en los grupos de edición activos se editan juntas" -#: rc_option_editor.cc:1329 +#: rc_option_editor.cc:1327 msgid "whenever they overlap in time" msgstr "cuando se solapan en el tiempo" -#: rc_option_editor.cc:1330 +#: rc_option_editor.cc:1328 msgid "only if they have identical length, position and origin" msgstr "sólo si tienen la misma duración, posición y origen" -#: rc_option_editor.cc:1340 +#: rc_option_editor.cc:1338 msgid "Make rubberband selection rectangle snap to the grid" msgstr "Hacer que el rectángulo de selección elástica se ajuste a rejilla" -#: rc_option_editor.cc:1348 +#: rc_option_editor.cc:1346 msgid "Show waveforms in regions" msgstr "Mostrar formas de onda en regiones" -#: rc_option_editor.cc:1356 +#: rc_option_editor.cc:1354 msgid "Show gain envelopes in audio regions" msgstr "Mostrar envolventes de ganancia en regiones de audio" -#: rc_option_editor.cc:1357 +#: rc_option_editor.cc:1355 msgid "in all modes" msgstr "en todos los modos" -#: rc_option_editor.cc:1358 +#: rc_option_editor.cc:1356 msgid "only in region gain mode" msgstr "sólo en el modo de ganancia de región" -#: rc_option_editor.cc:1365 +#: rc_option_editor.cc:1363 msgid "Waveform scale" msgstr "Escala de forma de onda" -#: rc_option_editor.cc:1370 +#: rc_option_editor.cc:1368 msgid "linear" msgstr "lineal" -#: rc_option_editor.cc:1371 +#: rc_option_editor.cc:1369 msgid "logarithmic" msgstr "logarítmica" -#: rc_option_editor.cc:1377 +#: rc_option_editor.cc:1375 msgid "Waveform shape" msgstr "Forma de onda" # en realidad no existe este término en el español... -#: rc_option_editor.cc:1382 +#: rc_option_editor.cc:1380 msgid "traditional" msgstr "tradicional" -#: rc_option_editor.cc:1383 +#: rc_option_editor.cc:1381 msgid "rectified" msgstr "rectificada" -#: rc_option_editor.cc:1390 +#: rc_option_editor.cc:1388 msgid "Show waveforms for audio while it is being recorded" msgstr "Mostrar formas de onda al grabar audio" -#: rc_option_editor.cc:1398 +#: rc_option_editor.cc:1396 msgid "Show zoom toolbar" msgstr "Mostrar barra de herramientas de zoom" -#: rc_option_editor.cc:1406 +#: rc_option_editor.cc:1404 msgid "Color regions using their track's color" msgstr "Colorear regiones con el color de su pista" -#: rc_option_editor.cc:1414 +#: rc_option_editor.cc:1412 msgid "Update editor window during drags of the summary" msgstr "Actualizar la ventana del editor durante arrastres del resumen" -#: rc_option_editor.cc:1422 -msgid "Synchronise editor and mixer track order" -msgstr "Sincronizar orden de pistas en Editor y Mezclador" - -#: rc_option_editor.cc:1430 +#: rc_option_editor.cc:1420 msgid "Synchronise editor and mixer selection" msgstr "Sincronizar selección en Editor y Mezclador" -#: rc_option_editor.cc:1437 +#: rc_option_editor.cc:1427 msgid "Name new markers" msgstr "Nombrar marcas nuevas" -#: rc_option_editor.cc:1443 +#: rc_option_editor.cc:1433 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " "be set as it is created.\n" @@ -9068,398 +9181,418 @@ msgstr "" "(Las marcas se pueden renombrar en cualquier momento, por medio del clic " "derecho)" -#: rc_option_editor.cc:1449 +#: rc_option_editor.cc:1439 msgid "Auto-scroll editor window when dragging near its edges" msgstr "" "Auto-scroll en la ventana del editor cuando se arrastra hacia cerca de sus " "bordes" -#: rc_option_editor.cc:1456 +#: rc_option_editor.cc:1446 msgid "Buffering" msgstr "Buffering" -#: rc_option_editor.cc:1464 +#: rc_option_editor.cc:1454 msgid "Record monitoring handled by" msgstr "Monitorización de la grabación manejado por" -#: rc_option_editor.cc:1475 +#: rc_option_editor.cc:1460 +msgid "via Audio Driver" +msgstr "" + +#: rc_option_editor.cc:1463 msgid "ardour" msgstr "ardour" -#: rc_option_editor.cc:1476 +#: rc_option_editor.cc:1464 msgid "audio hardware" msgstr "hardware de audio" -#: rc_option_editor.cc:1483 +#: rc_option_editor.cc:1471 msgid "Tape machine mode" msgstr "Modo magnetófono" -#: rc_option_editor.cc:1488 +#: rc_option_editor.cc:1476 msgid "Connection of tracks and busses" msgstr "Conexión de pistas y buses" -#: rc_option_editor.cc:1493 +#: rc_option_editor.cc:1481 msgid "Auto-connect master/monitor busses" msgstr "Autoconectar buses master/monitor" -#: rc_option_editor.cc:1500 +#: rc_option_editor.cc:1488 msgid "Connect track inputs" msgstr "Conectar a entradas de pista" -#: rc_option_editor.cc:1505 +#: rc_option_editor.cc:1493 msgid "automatically to physical inputs" msgstr "automáticamente a entradas físicas" -#: rc_option_editor.cc:1506 rc_option_editor.cc:1519 +#: rc_option_editor.cc:1494 rc_option_editor.cc:1507 msgid "manually" msgstr "manualmente" -#: rc_option_editor.cc:1512 +#: rc_option_editor.cc:1500 msgid "Connect track and bus outputs" msgstr "Conectar salidas de pista y bus" -#: rc_option_editor.cc:1517 +#: rc_option_editor.cc:1505 msgid "automatically to physical outputs" msgstr "automáticamente a salidas físicas" -#: rc_option_editor.cc:1518 +#: rc_option_editor.cc:1506 msgid "automatically to master bus" msgstr "automáticamente al bus master" -#: rc_option_editor.cc:1523 +#: rc_option_editor.cc:1511 msgid "Denormals" msgstr "Denormals" -#: rc_option_editor.cc:1528 +#: rc_option_editor.cc:1516 msgid "Use DC bias to protect against denormals" msgstr "Usar DC bias para proteger contra denormals" -#: rc_option_editor.cc:1535 +#: rc_option_editor.cc:1523 msgid "Processor handling" msgstr "Manejo de procesador" -#: rc_option_editor.cc:1540 +#: rc_option_editor.cc:1528 msgid "no processor handling" msgstr "ningún manejo de procesador" -#: rc_option_editor.cc:1545 +#: rc_option_editor.cc:1533 msgid "use FlushToZero" msgstr "usar FlushToZero" -#: rc_option_editor.cc:1549 +#: rc_option_editor.cc:1537 msgid "use DenormalsAreZero" msgstr "usar DenormalsAreZero" -#: rc_option_editor.cc:1553 +#: rc_option_editor.cc:1541 msgid "use FlushToZero and DenormalsAreZero" msgstr "usar FlushToZero y DenormalsAreZero" -#: rc_option_editor.cc:1563 +#: rc_option_editor.cc:1551 msgid "Silence plugins when the transport is stopped" msgstr "Silenciar plugins cuando el transporte esté parado" -#: rc_option_editor.cc:1571 +#: rc_option_editor.cc:1559 msgid "Make new plugins active" msgstr "Nuevos plugins inician activados" -#: rc_option_editor.cc:1579 +#: rc_option_editor.cc:1567 msgid "Enable automatic analysis of audio" msgstr "Activar análisis automático de audio" -#: rc_option_editor.cc:1587 +#: rc_option_editor.cc:1575 msgid "Replicate missing region channels" msgstr "Duplicar canales de región ausentes" -#: rc_option_editor.cc:1594 rc_option_editor.cc:1609 rc_option_editor.cc:1621 -#: rc_option_editor.cc:1633 rc_option_editor.cc:1645 rc_option_editor.cc:1649 -#: rc_option_editor.cc:1657 rc_option_editor.cc:1665 rc_option_editor.cc:1673 -#: rc_option_editor.cc:1675 rc_option_editor.cc:1683 rc_option_editor.cc:1691 -#: rc_option_editor.cc:1699 +#: rc_option_editor.cc:1582 rc_option_editor.cc:1597 rc_option_editor.cc:1609 +#: rc_option_editor.cc:1621 rc_option_editor.cc:1633 rc_option_editor.cc:1637 +#: rc_option_editor.cc:1645 rc_option_editor.cc:1653 rc_option_editor.cc:1661 +#: rc_option_editor.cc:1663 rc_option_editor.cc:1671 rc_option_editor.cc:1679 +#: rc_option_editor.cc:1687 msgid "Solo / mute" msgstr "Solo / mudo" -#: rc_option_editor.cc:1597 +#: rc_option_editor.cc:1585 msgid "Solo-in-place mute cut (dB)" msgstr "Corte de solo / mudo (dB)" -#: rc_option_editor.cc:1604 +#: rc_option_editor.cc:1592 msgid "Solo controls are Listen controls" msgstr "Los controles de solo son controles de escucha" -#: rc_option_editor.cc:1613 +#: rc_option_editor.cc:1601 msgid "Listen Position" msgstr "Posición de escucha" -#: rc_option_editor.cc:1618 +#: rc_option_editor.cc:1606 msgid "after-fader (AFL)" msgstr "Post-fader (AFL) " -#: rc_option_editor.cc:1619 +#: rc_option_editor.cc:1607 msgid "pre-fader (PFL)" msgstr "pre-fader (PFL)" -#: rc_option_editor.cc:1625 +#: rc_option_editor.cc:1613 msgid "PFL signals come from" msgstr "Las señales PFL vienen desde" -#: rc_option_editor.cc:1630 +#: rc_option_editor.cc:1618 msgid "before pre-fader processors" msgstr "antes de procesadores pre-fader" -#: rc_option_editor.cc:1631 +#: rc_option_editor.cc:1619 msgid "pre-fader but after pre-fader processors" msgstr "pre-fader pero después de procesadores pre-fader" -#: rc_option_editor.cc:1637 +#: rc_option_editor.cc:1625 msgid "AFL signals come from" msgstr "Las señales AFL vienen desde" -#: rc_option_editor.cc:1642 +#: rc_option_editor.cc:1630 msgid "immediately post-fader" msgstr "inmediatamente post-fader" -#: rc_option_editor.cc:1643 +#: rc_option_editor.cc:1631 msgid "after post-fader processors (before pan)" msgstr "después de procesadores post-fader (antes de pan)" -#: rc_option_editor.cc:1652 +#: rc_option_editor.cc:1640 msgid "Exclusive solo" msgstr "Solo exclusivo" -#: rc_option_editor.cc:1660 +#: rc_option_editor.cc:1648 msgid "Show solo muting" msgstr "Mostrar mudos de solo" -#: rc_option_editor.cc:1668 +#: rc_option_editor.cc:1656 msgid "Soloing overrides muting" msgstr "Solo invalida mudo" -#: rc_option_editor.cc:1673 +#: rc_option_editor.cc:1661 msgid "Default track / bus muting options" msgstr "Opciones por defecto para mudo de pista / bus" -#: rc_option_editor.cc:1678 +#: rc_option_editor.cc:1666 msgid "Mute affects pre-fader sends" msgstr "Mudo afecta envíos pre-fader" -#: rc_option_editor.cc:1686 +#: rc_option_editor.cc:1674 msgid "Mute affects post-fader sends" msgstr "Mudo afecta envíos post-fader" -#: rc_option_editor.cc:1694 +#: rc_option_editor.cc:1682 msgid "Mute affects control outputs" msgstr "Mudo afecta a salidas de control" -#: rc_option_editor.cc:1702 +#: rc_option_editor.cc:1690 msgid "Mute affects main outputs" msgstr "Mudo afecta a salidas principales" -#: rc_option_editor.cc:1718 +#: rc_option_editor.cc:1706 msgid "Send MIDI Time Code" msgstr "Enviar MIDI Time Code" -#: rc_option_editor.cc:1726 +#: rc_option_editor.cc:1714 msgid "Percentage either side of normal transport speed to transmit MTC" msgstr "" "Pocentaje a cada lado de la velocidad normal de transporte para transmitir " "MTC" -#: rc_option_editor.cc:1735 +#: rc_option_editor.cc:1723 msgid "Obey MIDI Machine Control commands" msgstr "Obedecer comandos de MIDI Machine Control" -#: rc_option_editor.cc:1743 +#: rc_option_editor.cc:1731 msgid "Send MIDI Machine Control commands" msgstr "Enviar comandos de MIDI Machine Control" -#: rc_option_editor.cc:1751 +#: rc_option_editor.cc:1739 msgid "Send MIDI control feedback" msgstr "Enviar feedback de control MIDI" -#: rc_option_editor.cc:1759 +#: rc_option_editor.cc:1747 msgid "Inbound MMC device ID" msgstr "ID del dispositivo MMC de entrada" -#: rc_option_editor.cc:1768 +#: rc_option_editor.cc:1756 msgid "Outbound MMC device ID" msgstr "ID del dispositivo MMC de salida" -#: rc_option_editor.cc:1777 +#: rc_option_editor.cc:1765 msgid "Initial program change" msgstr "Cambio de programa inicial" -#: rc_option_editor.cc:1786 +#: rc_option_editor.cc:1774 msgid "Display first MIDI bank/program as 0" msgstr "Mostrar el primer banco o programa MIDi como 0" -#: rc_option_editor.cc:1794 +#: rc_option_editor.cc:1782 msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "No mostrar mensajes MIDI periódicos (MTC, MIDI Clock)" -#: rc_option_editor.cc:1802 +#: rc_option_editor.cc:1790 msgid "Sound MIDI notes as they are selected" msgstr "Las notas MIDI suenan al ser seleccionadas" -#: rc_option_editor.cc:1810 rc_option_editor.cc:1820 rc_option_editor.cc:1822 +#: rc_option_editor.cc:1798 rc_option_editor.cc:1808 rc_option_editor.cc:1810 msgid "User interaction" msgstr "Interacción con el usuario" -#: rc_option_editor.cc:1813 +#: rc_option_editor.cc:1801 msgid "" "Use translations of %1 messages\n" " (requires a restart of %1 to take effect)\n" " (if available for your language preferences)" msgstr "" -#: rc_option_editor.cc:1820 +#: rc_option_editor.cc:1808 msgid "Keyboard" msgstr "Teclado" -#: rc_option_editor.cc:1830 +#: rc_option_editor.cc:1818 msgid "Control surface remote ID" msgstr "ID remota de superficies de control" -#: rc_option_editor.cc:1835 +#: rc_option_editor.cc:1823 msgid "assigned by user" msgstr "asignado por usuario" -#: rc_option_editor.cc:1836 +#: rc_option_editor.cc:1824 msgid "follows order of mixer" msgstr "según orden de Mezclador" -#: rc_option_editor.cc:1837 -msgid "follows order of editor" -msgstr "según orden del Editor" +#: rc_option_editor.cc:1833 rc_option_editor.cc:1841 rc_option_editor.cc:1851 +#: rc_option_editor.cc:1872 rc_option_editor.cc:1881 rc_option_editor.cc:1889 +#: rc_option_editor.cc:1903 rc_option_editor.cc:1922 rc_option_editor.cc:1938 +#: rc_option_editor.cc:1954 rc_option_editor.cc:1968 rc_option_editor.cc:1982 +#: rc_option_editor.cc:1984 +msgid "Preferences|GUI" +msgstr "" -#: rc_option_editor.cc:1849 +#: rc_option_editor.cc:1836 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "Resaltar controles al pasar sobre éstos el puntero del ratón" -#: rc_option_editor.cc:1857 +#: rc_option_editor.cc:1844 msgid "Show tooltips if mouse hovers over a control" msgstr "Mostrar descripciones emergentes al colocar el ratón sobre un control" -#: rc_option_editor.cc:1867 +#: rc_option_editor.cc:1854 msgid "GUI" msgstr "" -#: rc_option_editor.cc:1870 +#: rc_option_editor.cc:1857 msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" -#: rc_option_editor.cc:1887 +#: rc_option_editor.cc:1874 msgid "Mixer Strip" msgstr "Canal de Mezclador" -#: rc_option_editor.cc:1897 +#: rc_option_editor.cc:1884 msgid "Use narrow strips in the mixer by default" msgstr "Usar canales de mezcla estrechos por defecto" -#: rc_option_editor.cc:1912 +#: rc_option_editor.cc:1893 +msgid "Peak hold time" +msgstr "" + +#: rc_option_editor.cc:1899 msgid "short" msgstr "corto" -#: rc_option_editor.cc:1913 +#: rc_option_editor.cc:1900 msgid "medium" msgstr "medio" -#: rc_option_editor.cc:1914 +#: rc_option_editor.cc:1901 msgid "long" msgstr "largo" -#: rc_option_editor.cc:1926 +#: rc_option_editor.cc:1907 +msgid "DPM fall-off" +msgstr "" + +#: rc_option_editor.cc:1913 msgid "slowest [6.6dB/sec]" msgstr "" -#: rc_option_editor.cc:1927 +#: rc_option_editor.cc:1914 msgid "slow [8.6dB/sec] (BBC PPM, EBU PPM)" msgstr "" -#: rc_option_editor.cc:1928 +#: rc_option_editor.cc:1915 msgid "slowish [12.0dB/sec] (DIN)" msgstr "" -#: rc_option_editor.cc:1929 +#: rc_option_editor.cc:1916 msgid "moderate [13.3dB/sec] (EBU Digi PPM, IRT Digi PPM)" msgstr "" -#: rc_option_editor.cc:1930 +#: rc_option_editor.cc:1917 msgid "medium [20dB/sec]" msgstr "" -#: rc_option_editor.cc:1931 +#: rc_option_editor.cc:1918 msgid "fast [32dB/sec]" msgstr "" -#: rc_option_editor.cc:1932 +#: rc_option_editor.cc:1919 msgid "faster [46dB/sec]" msgstr "" -#: rc_option_editor.cc:1933 +#: rc_option_editor.cc:1920 msgid "fastest [70dB/sec]" msgstr "" -#: rc_option_editor.cc:1939 +#: rc_option_editor.cc:1926 msgid "Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1944 rc_option_editor.cc:1960 +#: rc_option_editor.cc:1931 rc_option_editor.cc:1947 msgid "-24dBFS (SMPTE US: 4dBu = -20dBFS)" msgstr "" -#: rc_option_editor.cc:1945 rc_option_editor.cc:1961 +#: rc_option_editor.cc:1932 rc_option_editor.cc:1948 msgid "-20dBFS (SMPTE RP.0155)" msgstr "" -#: rc_option_editor.cc:1946 rc_option_editor.cc:1962 +#: rc_option_editor.cc:1933 rc_option_editor.cc:1949 msgid "-18dBFS (EBU, BBC)" msgstr "" -#: rc_option_editor.cc:1947 rc_option_editor.cc:1963 +#: rc_option_editor.cc:1934 rc_option_editor.cc:1950 msgid "-15dBFS (DIN)" msgstr "" -#: rc_option_editor.cc:1949 +#: rc_option_editor.cc:1936 msgid "" "Configure meter-marks and color-knee point for dBFS scale DPM, set reference " "level for IEC1/Nordic, IEC2 PPM and VU meter." msgstr "" -#: rc_option_editor.cc:1955 +#: rc_option_editor.cc:1942 msgid "IEC1/DIN Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1965 +#: rc_option_editor.cc:1952 msgid "Reference level for IEC1/DIN meter." msgstr "" -#: rc_option_editor.cc:1971 +#: rc_option_editor.cc:1958 msgid "VU Meter standard" msgstr "" -#: rc_option_editor.cc:1976 +#: rc_option_editor.cc:1963 msgid "0VU = -2dBu (France)" msgstr "" -#: rc_option_editor.cc:1977 +#: rc_option_editor.cc:1964 msgid "0VU = 0dBu (North America, Australia)" msgstr "" -#: rc_option_editor.cc:1978 +#: rc_option_editor.cc:1965 msgid "0VU = +4dBu (standard)" msgstr "" -#: rc_option_editor.cc:1979 +#: rc_option_editor.cc:1966 msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1993 +#: rc_option_editor.cc:1972 +msgid "Peak threshold [dBFS]" +msgstr "" + +#: rc_option_editor.cc:1980 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " "indicator will flash red." msgstr "" -#: rc_option_editor.cc:2000 +#: rc_option_editor.cc:1987 msgid "LED meter style" msgstr "" @@ -9780,6 +9913,10 @@ msgstr "Mostrar automatización existente" msgid "Hide All Automation" msgstr "Ocultar toda automatización" +#: route_time_axis.cc:405 +msgid "Processor automation" +msgstr "" + #: route_time_axis.cc:424 msgid "Color..." msgstr "Color..." @@ -10110,24 +10247,17 @@ msgstr "el bus de monitorización" #: route_ui.cc:1818 msgid "" -"The remote control ID of %6 is: %3\n" +"The remote control ID of %5 is: %2\n" "\n" "\n" -"Remote Control IDs are currently determined by track/bus ordering in %1\n" +"Remote Control IDs are currently determined by track/bus ordering in " +"Ardour.\n" "\n" -"%4Use the User Interaction tab of the Preferences window if you want to " -"change this%5" +"%3Use the User Interaction tab of the Preferences window if you want to " +"change this%4" msgstr "" -#: route_ui.cc:1821 -msgid "the mixer" -msgstr "el mezclador" - -#: route_ui.cc:1821 -msgid "the editor" -msgstr "el editor" - -#: route_ui.cc:1876 +#: route_ui.cc:1875 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " "to show menu." @@ -10135,7 +10265,7 @@ msgstr "" "Clic izquierdo para invertir (inversión de fase) canal %1 de esta pista. " "Clic derecho para mostrar menú." -#: route_ui.cc:1878 +#: route_ui.cc:1877 msgid "Click to show a menu of channels for inversion (phase reverse)" msgstr "" @@ -10155,6 +10285,118 @@ msgstr "el archivo de sesión" msgid "Send " msgstr "Enviar " +#: session_dialog.cc:66 +msgid "Session Setup" +msgstr "" + +#: session_dialog.cc:71 +msgid "Advanced options ..." +msgstr "" + +#: session_dialog.cc:267 +msgid "New Session" +msgstr "Nueva sesión" + +#: session_dialog.cc:305 +msgid "Check the website for more..." +msgstr "" + +#: session_dialog.cc:308 +msgid "Click to open the program website in your web browser" +msgstr "" + +#: session_dialog.cc:328 +msgid "Sample Rate" +msgstr "" + +#: session_dialog.cc:329 +msgid "Disk Format" +msgstr "" + +#: session_dialog.cc:347 +msgid "Select session file" +msgstr "Seleccionar archivo de sesión" + +#: session_dialog.cc:362 +msgid "Other Sessions" +msgstr "" + +#: session_dialog.cc:388 +msgid "Open" +msgstr "Abrir" + +#: session_dialog.cc:455 +msgid "Session name:" +msgstr "Nombre de sesión:" + +#: session_dialog.cc:477 +msgid "Create session folder in:" +msgstr "Crear carpeta de sesión en :" + +#: session_dialog.cc:500 +msgid "Select folder for session" +msgstr "Seleccionar carpeta para sesión" + +#: session_dialog.cc:529 +msgid "Use this template" +msgstr "Usar esta plantilla" + +#: session_dialog.cc:532 +msgid "no template" +msgstr "sin plantilla" + +#: session_dialog.cc:664 session_dialog.cc:696 +msgid "32 bit float" +msgstr "" + +#: session_dialog.cc:667 session_dialog.cc:699 +msgid "24 bit" +msgstr "" + +#: session_dialog.cc:670 session_dialog.cc:702 +msgid "16 bit" +msgstr "" + +#: session_dialog.cc:741 session_dialog.cc:742 session_dialog.cc:743 +msgid "channels" +msgstr "canales" + +#: session_dialog.cc:757 +msgid "Busses" +msgstr "Buses" + +#: session_dialog.cc:758 +msgid "Inputs" +msgstr "Entradas" + +#: session_dialog.cc:759 +msgid "Outputs" +msgstr "Salidas" + +#: session_dialog.cc:767 +msgid "Create master bus" +msgstr "Crear bus master" + +#: session_dialog.cc:777 +msgid "Automatically connect to physical inputs" +msgstr "Conectar a entradas físicas automáticamente" + +#: session_dialog.cc:784 session_dialog.cc:843 +msgid "Use only" +msgstr "Usar sólo" + +#: session_dialog.cc:837 +msgid "Automatically connect outputs" +msgstr "Conectar salidas automáticamente" + +#: session_dialog.cc:859 +msgid "... to master bus" +msgstr "...al bus master" + +#: session_dialog.cc:869 +msgid "... to physical outputs" +msgstr "...a salidas físicas" + #: session_import_dialog.cc:64 msgid "Import from Session" msgstr "Importar desde Sesión" @@ -10631,18 +10873,54 @@ msgstr "Adherir marcadores nuevos a compases y pulsos" msgid "Glue new regions to bars and beats" msgstr "Adherir regiones nuevas a compases y pulsos" +#: session_option_editor.cc:275 session_option_editor.cc:277 +#: session_option_editor.cc:284 session_option_editor.cc:291 +#: session_option_editor.cc:298 session_option_editor.cc:300 +#: session_option_editor.cc:307 session_option_editor.cc:314 +#: session_option_editor.cc:321 session_option_editor.cc:323 +msgid "Meterbridge" +msgstr "" + #: session_option_editor.cc:275 msgid "Route Display" msgstr "" +#: session_option_editor.cc:279 +msgid "Show Midi Tracks" +msgstr "" + +#: session_option_editor.cc:286 +msgid "Show Busses" +msgstr "" + +#: session_option_editor.cc:293 +msgid "Include Master Bus" +msgstr "" + #: session_option_editor.cc:298 msgid "Button Area" msgstr "" +#: session_option_editor.cc:302 +msgid "Rec-enable Button" +msgstr "" + +#: session_option_editor.cc:309 +msgid "Mute Button" +msgstr "" + +#: session_option_editor.cc:316 +msgid "Solo Button" +msgstr "" + #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" +#: session_option_editor.cc:325 +msgid "Track Name" +msgstr "" + #: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 msgid "as new tracks" msgstr "como nuevas pistas" @@ -11001,14 +11279,6 @@ msgid "Azimuth:" msgstr "Azimut:" #: startup.cc:72 -msgid "Create a new session" -msgstr "Crear una sesión nueva" - -#: startup.cc:73 -msgid "Open an existing session" -msgstr "Abrir una sesión existente" - -#: startup.cc:74 msgid "" "Use an external mixer or the hardware mixer of your audio interface.\n" "%1 will play NO role in monitoring" @@ -11016,23 +11286,40 @@ msgstr "" "Usar un mezclador externo o el mezclador hardware de tu interfaz de audio.\n" "%1 no tomará parte en la monitorización" -#: startup.cc:76 +#: startup.cc:74 msgid "Ask %1 to play back material as it is being recorded" msgstr "Pedir a %1 que reproduzca el material al tiempo que se graba" -#: startup.cc:79 -msgid "I'd like more options for this session" -msgstr "Quiero más opciones para esta sesión" +#: startup.cc:143 +msgid "" +"Welcome to this BETA release of Ardour %1\n" +"\n" +"Ardour %1 has been released for Linux but because of the lack of testers,\n" +"it is still at the beta stage on OS X. So, a few guidelines:\n" +"\n" +"1) Please do NOT use this software with the expectation that it is " +"stable or reliable\n" +" though it may be so, depending on your workflow.\n" +"2) Please do NOT use the forums at ardour.org to report issues.\n" +"3) Please DO use the bugtracker at http://tracker.ardour.org/ to " +"report issues\n" +" making sure to note the product version number as %1-beta.\n" +"4) Please DO use the ardour-users mailing list to discuss ideas and " +"pass on comments.\n" +"5) Please DO join us on IRC for real time discussions about ardour3. " +"You\n" +" can get there directly from Ardour via the Help->Chat menu option.\n" +"\n" +"Full information on all the above can be found on the support page at\n" +"\n" +" http://ardour.org/support\n" +msgstr "" -#: startup.cc:218 +#: startup.cc:167 msgid "This is a BETA RELEASE" msgstr "Esta es una edición BETA" -#: startup.cc:324 -msgid "Audio / MIDI Setup" -msgstr "Configuración Audio/MIDI" - -#: startup.cc:336 +#: startup.cc:176 msgid "" "%1 is a digital audio workstation. You can use it to " "record, edit and mix multi-track audio. You can produce your own CDs, mix " @@ -11051,15 +11338,15 @@ msgstr "" "Hay unas pocas cosas que hace falta configurar antes de que empieces\n" "a usar el programa." -#: startup.cc:362 +#: startup.cc:202 msgid "Welcome to %1" msgstr "Bienvenido a %1" -#: startup.cc:385 +#: startup.cc:225 msgid "Default folder for %1 sessions" msgstr "Carpeta por defecto para sesiones de %1" -#: startup.cc:391 +#: startup.cc:231 msgid "" "Each project that you work on with %1 has its own folder.\n" "These can require a lot of disk space if you are recording audio.\n" @@ -11076,11 +11363,11 @@ msgstr "" "(Puedes poner las nuevas sesiones en cualquier carpeta, esto sólo elige " "la de por defecto)" -#: startup.cc:415 +#: startup.cc:254 msgid "Default folder for new sessions" msgstr "Carpeta por defecto para sesiones nuevas" -#: startup.cc:436 +#: startup.cc:275 msgid "" "While recording instruments or vocals, you probably want to listen to the\n" "signal as well as record it. This is called \"monitoring\". There are\n" @@ -11105,15 +11392,15 @@ msgstr "" "Si no entiendes lo que quiere decir esto, acepta la opción por defecto." -#: startup.cc:457 +#: startup.cc:296 msgid "Monitoring Choices" msgstr "Opciones de monitorización" -#: startup.cc:480 +#: startup.cc:319 msgid "Use a Master bus directly" msgstr "Usar directamente el bus Master" -#: startup.cc:482 +#: startup.cc:321 msgid "" "Connect the Master bus directly to your hardware outputs. This is preferable " "for simple usage." @@ -11121,11 +11408,11 @@ msgstr "" "Conectar el bus Master directamente a tus salidas de hardware.Preferible " "para uso simple." -#: startup.cc:491 +#: startup.cc:330 msgid "Use an additional Monitor bus" msgstr "Usar un bus de monitorización adicional" -#: startup.cc:494 +#: startup.cc:333 msgid "" "Use a Monitor bus between Master bus and hardware outputs for \n" "greater control in monitoring without affecting the mix." @@ -11134,7 +11421,7 @@ msgstr "" "hardware \n" "para mayor control de la monitorización, sin afectar a la mezcla." -#: startup.cc:516 +#: startup.cc:355 msgid "" "You can change this preference at any time via the Preferences dialog.\n" "You can also add or remove the monitor section to/from any session.\n" @@ -11148,110 +11435,10 @@ msgstr "" "\n" "En caso de duda, acepta la opción por defecto." -#: startup.cc:527 +#: startup.cc:366 msgid "Monitor Section" msgstr "Sección de monitorización" -#: startup.cc:573 -msgid "Check the website for more..." -msgstr "" - -#: startup.cc:576 -msgid "Click to open the program website in your web browser" -msgstr "" - -#: startup.cc:729 -msgid "Open" -msgstr "Abrir" - -#: startup.cc:775 -msgid "Session name:" -msgstr "Nombre de sesión:" - -#: startup.cc:798 -msgid "Create session folder in:" -msgstr "Crear carpeta de sesión en :" - -#: startup.cc:821 -msgid "Select folder for session" -msgstr "Seleccionar carpeta para sesión" - -#: startup.cc:853 -msgid "Use this template" -msgstr "Usar esta plantilla" - -#: startup.cc:856 -msgid "no template" -msgstr "sin plantilla" - -#: startup.cc:884 -msgid "Use an existing session as a template:" -msgstr "Usar una sesión existente como plantilla: " - -#: startup.cc:896 -msgid "Select template" -msgstr "Seleccionar plantilla" - -#: startup.cc:922 -msgid "New Session" -msgstr "Nueva sesión" - -#: startup.cc:1077 -msgid "Select session file" -msgstr "Seleccionar archivo de sesión" - -#: startup.cc:1093 -msgid "Browse:" -msgstr "Explorar:" - -#: startup.cc:1102 -msgid "Select a session" -msgstr "Seleccionar una sesión" - -#: startup.cc:1129 startup.cc:1130 startup.cc:1131 -msgid "channels" -msgstr "canales" - -#: startup.cc:1145 -msgid "Busses" -msgstr "Buses" - -#: startup.cc:1146 -msgid "Inputs" -msgstr "Entradas" - -#: startup.cc:1147 -msgid "Outputs" -msgstr "Salidas" - -#: startup.cc:1155 -msgid "Create master bus" -msgstr "Crear bus master" - -#: startup.cc:1165 -msgid "Automatically connect to physical inputs" -msgstr "Conectar a entradas físicas automáticamente" - -#: startup.cc:1172 startup.cc:1231 -msgid "Use only" -msgstr "Usar sólo" - -#: startup.cc:1225 -msgid "Automatically connect outputs" -msgstr "Conectar salidas automáticamente" - -#: startup.cc:1247 -msgid "... to master bus" -msgstr "...al bus master" - -#: startup.cc:1257 -msgid "... to physical outputs" -msgstr "...a salidas físicas" - -#: startup.cc:1307 -msgid "Advanced Session Options" -msgstr "Opciones avanzadas de sesión" - #: step_entry.cc:59 msgid "Step Entry: %1" msgstr "" @@ -11929,23 +12116,23 @@ msgstr "" msgid "Config file %1 not saved" msgstr "No se guardó el archivo de configuración %1." -#: utils.cc:110 utils.cc:153 +#: utils.cc:111 utils.cc:154 msgid "bad XPM header %1" msgstr "Encabezado XPM erróneo %1." -#: utils.cc:292 utils.cc:324 +#: utils.cc:293 utils.cc:325 msgid "missing RGBA style for \"%1\"" msgstr "No se encuentra el estilo RGBA para \"%1\"." -#: utils.cc:591 +#: utils.cc:598 msgid "cannot find XPM file for %1" msgstr "No se pudo encontrar el archivo XPM para %1." -#: utils.cc:617 +#: utils.cc:624 msgid "cannot find icon image for %1 using %2" msgstr "No se pudo encontrar la imagen del icono para %1 usando %2" -#: utils.cc:632 +#: utils.cc:639 msgid "Caught exception while loading icon named %1" msgstr "Caught exception while loading icon named %1" @@ -11953,6 +12140,14 @@ msgstr "Caught exception while loading icon named %1" msgid "VerboseCanvasCursor" msgstr "VerboseCanvasCursor" +#: add_video_dialog.cc:55 +msgid "Set Video Track" +msgstr "" + +#: add_video_dialog.cc:63 +msgid "Launch External Video Monitor" +msgstr "" + #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -11965,6 +12160,22 @@ msgstr "" msgid "VideoServerIndex" msgstr "" +#: add_video_dialog.cc:129 +msgid "Video files" +msgstr "" + +#: add_video_dialog.cc:164 +msgid "Video Information" +msgstr "" + +#: add_video_dialog.cc:167 +msgid "Start:" +msgstr "" + +#: add_video_dialog.cc:173 +msgid "Frame rate:" +msgstr "" + #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -12010,6 +12221,10 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" +#: video_monitor.cc:281 +msgid "Video Monitor: File Not Found." +msgstr "" + #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -12026,71 +12241,119 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:61 export_video_dialog.cc:73 +#: transcode_video_dialog.cc:55 +msgid "Transcode/Import Video File " +msgstr "" + +#: transcode_video_dialog.cc:57 +msgid "Output File:" +msgstr "" + +#: transcode_video_dialog.cc:60 export_video_dialog.cc:72 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:66 +#: transcode_video_dialog.cc:62 +msgid "Height = " +msgstr "" + +#: transcode_video_dialog.cc:65 msgid "Manual Override" msgstr "" -#: transcode_video_dialog.cc:70 export_video_dialog.cc:89 +#: transcode_video_dialog.cc:69 export_video_dialog.cc:88 msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:113 +#: transcode_video_dialog.cc:106 +msgid "File Information" +msgstr "" + +#: transcode_video_dialog.cc:112 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: transcode_video_dialog.cc:120 +#: transcode_video_dialog.cc:119 msgid "" "File-info can not be read. Most likely '%1' is not a valid video-file or an " "unsupported video codec or format." msgstr "" -#: transcode_video_dialog.cc:134 +#: transcode_video_dialog.cc:133 msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:138 +#: transcode_video_dialog.cc:135 +msgid "Duration:" +msgstr "" + +#: transcode_video_dialog.cc:137 msgid "Codec:" msgstr "" -#: transcode_video_dialog.cc:140 +#: transcode_video_dialog.cc:139 msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:181 +#: transcode_video_dialog.cc:154 +msgid "??" +msgstr "" + +#: transcode_video_dialog.cc:175 +msgid "Import Settings" +msgstr "" + +#: transcode_video_dialog.cc:180 msgid "Do Not Import Video" msgstr "" -#: transcode_video_dialog.cc:182 +#: transcode_video_dialog.cc:181 msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:198 +#: transcode_video_dialog.cc:183 +msgid "Import/Transcode Video to Session" +msgstr "" + +#: transcode_video_dialog.cc:197 msgid "Scale Video: Width = " msgstr "" -#: transcode_video_dialog.cc:205 +#: transcode_video_dialog.cc:204 msgid "Original Width" msgstr "" -#: transcode_video_dialog.cc:220 +#: transcode_video_dialog.cc:219 msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:348 +#: transcode_video_dialog.cc:224 +msgid "Extract Audio:" +msgstr "" + +#: transcode_video_dialog.cc:344 +msgid "Extracting Audio.." +msgstr "" + +#: transcode_video_dialog.cc:347 msgid "Audio Extraction Failed." msgstr "" -#: transcode_video_dialog.cc:374 +#: transcode_video_dialog.cc:373 msgid "Transcoding Video.." msgstr "" +#: transcode_video_dialog.cc:407 +msgid "Transcoding Failed." +msgstr "" + +#: transcode_video_dialog.cc:490 +msgid "Save Transcoded Video File" +msgstr "" + #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -12099,6 +12362,10 @@ msgstr "" msgid "Server Executable:" msgstr "" +#: video_server_dialog.cc:46 +msgid "Server Docroot:" +msgstr "" + #: video_server_dialog.cc:52 msgid "Don't show this dialog again. (Reset in Edit->Preferences)." msgstr "" @@ -12114,11 +12381,19 @@ msgstr "" msgid "Listen Address:" msgstr "" +#: video_server_dialog.cc:125 +msgid "Listen Port:" +msgstr "" + +#: video_server_dialog.cc:130 +msgid "Cache Size:" +msgstr "" + #: video_server_dialog.cc:136 msgid "" -"%1 relies on an external Video Server for the videotimeline.\n" -"The server configured in Edit -> Prefereces -> Video is not reachable.\n" -"Do you want ardour to launch 'harvid' on this machine?" +"%1 relies on an external video server for the videotimeline.\n" +"The server configured in Edit -> Preferences -> Video is not reachable.\n" +"Do you want %1 to launch 'harvid' on this machine?" msgstr "" #: video_server_dialog.cc:176 @@ -12143,71 +12418,187 @@ msgstr "" msgid "Continue" msgstr "" -#: export_video_dialog.cc:74 +#: utils_videotl.cc:63 +msgid "Confirm Overwrite" +msgstr "" + +#: utils_videotl.cc:64 +msgid "A file with the same name already exists. Do you want to overwrite it?" +msgstr "" + +#: utils_videotl.cc:74 utils_videotl.cc:90 +msgid "Cannot create video folder \"%1\" (%2)" +msgstr "" + +#: export_video_dialog.cc:65 +msgid "Export Video File " +msgstr "" + +#: export_video_dialog.cc:69 +msgid "Video:" +msgstr "" + +#: export_video_dialog.cc:73 msgid "Scale Video (W x H):" msgstr "" -#: export_video_dialog.cc:79 +#: export_video_dialog.cc:78 msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:81 +#: export_video_dialog.cc:79 +msgid "Normalize Audio" +msgstr "" + +#: export_video_dialog.cc:80 msgid "2 Pass Encoding" msgstr "" -#: export_video_dialog.cc:82 +#: export_video_dialog.cc:81 msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:85 +#: export_video_dialog.cc:83 +msgid "Deinterlace" +msgstr "" + +#: export_video_dialog.cc:84 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" -#: export_video_dialog.cc:86 +#: export_video_dialog.cc:85 msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:107 +#: export_video_dialog.cc:86 +msgid "Include Session Metadata" +msgstr "" + +#: export_video_dialog.cc:106 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: export_video_dialog.cc:145 +#: export_video_dialog.cc:116 +msgid "Output:" +msgstr "" + +#: export_video_dialog.cc:126 +msgid "Input:" +msgstr "" + +#: export_video_dialog.cc:137 +msgid "Audio:" +msgstr "" + +#: export_video_dialog.cc:139 +msgid "Master Bus" +msgstr "" + +#: export_video_dialog.cc:144 msgid "from the %1 session's start to the session's end" msgstr "" -#: export_video_dialog.cc:149 +#: export_video_dialog.cc:148 msgid "from 00:00:00:00 to the video's end" msgstr "" -#: export_video_dialog.cc:151 +#: export_video_dialog.cc:150 msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:494 +#: export_video_dialog.cc:153 +msgid "Selected range" +msgstr "" + +#: export_video_dialog.cc:193 +msgid "Settings:" +msgstr "" + +#: export_video_dialog.cc:201 +msgid "Range:" +msgstr "" + +#: export_video_dialog.cc:204 +msgid "Preset:" +msgstr "" + +#: export_video_dialog.cc:207 +msgid "Video Codec:" +msgstr "" + +#: export_video_dialog.cc:210 +msgid "Video KBit/s:" +msgstr "" + +#: export_video_dialog.cc:213 +msgid "Audio Codec:" +msgstr "" + +#: export_video_dialog.cc:216 +msgid "Audio KBit/s:" +msgstr "" + +#: export_video_dialog.cc:219 +msgid "Audio Samplerate:" +msgstr "" + +#: export_video_dialog.cc:395 +msgid "Normalizing audio" +msgstr "" + +#: export_video_dialog.cc:399 +msgid "Exporting audio" +msgstr "" + +#: export_video_dialog.cc:445 +msgid "Exporting Audio..." +msgstr "" + +#: export_video_dialog.cc:502 msgid "" "Export Video: Cannot query duration of video-file, using duration from " "timeline instead." msgstr "" -#: export_video_dialog.cc:523 +#: export_video_dialog.cc:532 +msgid "Export Video: export-range does not include video." +msgstr "" + +#: export_video_dialog.cc:544 msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" -#: export_video_dialog.cc:581 +#: export_video_dialog.cc:583 +msgid "Encoding Video..." +msgstr "" + +#: export_video_dialog.cc:602 msgid "Export Video: Video input file cannot be read." msgstr "" -#: export_video_dialog.cc:679 +#: export_video_dialog.cc:695 msgid "Encoding Video.. Pass 1/2" msgstr "" -#: export_video_dialog.cc:691 +#: export_video_dialog.cc:707 msgid "Encoding Video.. Pass 2/2" msgstr "" +#: export_video_dialog.cc:814 +msgid "Transcoding failed." +msgstr "" + +#: export_video_dialog.cc:983 export_video_dialog.cc:1003 +msgid "Save Exported Video File" +msgstr "" + +#: export_video_infobox.cc:30 +msgid "Video Export Info" +msgstr "" + #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -12224,3 +12615,346 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" + +#~ msgid "Starting audio engine" +#~ msgstr "Arrancando motor de audio" + +#~ msgid "disconnected" +#~ msgstr "desconectado" + +#~ msgid "JACK: %.1f kHz / %4.1f ms" +#~ msgstr "JACK: %.1f kHz / %4.1f ms" + +#~ msgid "JACK: % kHz / %4.1f ms" +#~ msgstr "JACK: % kHz / %4.1f ms" + +#~ msgid "" +#~ "%1 is not connected to JACK\n" +#~ "You cannot open or close sessions in this condition" +#~ msgstr "" +#~ "%1 no está conectado a JACK.\n" +#~ "No se pueden abrir ni cerrar archivos en esta condición." + +#~ msgid "" +#~ "The audio backend (JACK) was shutdown because:\n" +#~ "\n" +#~ "%1" +#~ msgstr "" +#~ "El motor de audio (JACK) se cerró porque:\n" +#~ "\n" +#~ "%1" + +#~ msgid "" +#~ "JACK has either been shutdown or it\n" +#~ "disconnected %1 because %1\n" +#~ "was not fast enough. Try to restart\n" +#~ "JACK, reconnect and save the session." +#~ msgstr "" +#~ "El servidor de audio JACK ha sido detenido o ha\n" +#~ "desconectado %1 porque %1\n" +#~ "no fue lo bastante rápido. Intenta reiniciar\n" +#~ "JACK, reconectar y guardar la sesión." + +#~ msgid "Unable to start the session running" +#~ msgstr "Incapaz de iniciar la sesión actual" + +#~ msgid "Click the Refresh button to try again." +#~ msgstr "Pulsa el botón Actualizar para volver a intentarlo" + +#~ msgid "Could not disconnect from JACK" +#~ msgstr "No se pudo desconectar de JACK" + +#~ msgid "Could not reconnect to JACK" +#~ msgstr "No se pudo reconectar a JACK" + +#~ msgid "JACK" +#~ msgstr "JACK" + +#~ msgid "Reconnect" +#~ msgstr "Reconectar" + +#~ msgid "JACK Sampling Rate and Latency" +#~ msgstr "Frecuencia de muestreo y latencia de JACK" + +#~ msgid "Realtime" +#~ msgstr "Realtime" + +#~ msgid "Do not lock memory" +#~ msgstr "No bloquear memoria" + +#~ msgid "Unlock memory" +#~ msgstr "Desbloquear memoria" + +#~ msgid "No zombies" +#~ msgstr "Sin zombis" + +#~ msgid "Provide monitor ports" +#~ msgstr "Puertos de monitorización" + +#~ msgid "Force 16 bit" +#~ msgstr "Forzar 16 bit" + +#~ msgid "H/W monitoring" +#~ msgstr "Monitorización por hardware" + +#~ msgid "H/W metering" +#~ msgstr "Medidor por hardware" + +#~ msgid "Verbose output" +#~ msgstr "Salida verbosa" + +#~ msgid "8000Hz" +#~ msgstr "8000Hz" + +#~ msgid "22050Hz" +#~ msgstr "22050Hz" + +#~ msgid "44100Hz" +#~ msgstr "44100Hz" + +#~ msgid "48000Hz" +#~ msgstr "48000Hz" + +#~ msgid "88200Hz" +#~ msgstr "88200Hz" + +#~ msgid "96000Hz" +#~ msgstr "96000Hz" + +#~ msgid "192000Hz" +#~ msgstr "192000Hz" + +#~ msgid "Triangular" +#~ msgstr "Triangular" + +#~ msgid "Rectangular" +#~ msgstr "Rectangular" + +#~ msgid "Shaped" +#~ msgstr "Shaped" + +#~ msgid "Playback/recording on 1 device" +#~ msgstr "Reproducción/grabación en 1 dispositivo" + +#~ msgid "Playback/recording on 2 devices" +#~ msgstr "Reproducción/grabación en 2 dispositivos" + +#~ msgid "Playback only" +#~ msgstr "Sólo reproducción" + +#~ msgid "Recording only" +#~ msgstr "Sólo grabación" + +#~ msgid "seq" +#~ msgstr "seq" + +#~ msgid "raw" +#~ msgstr "raw" + +#~ msgid "Audio Interface:" +#~ msgstr "Interfaz de audio:" + +#~ msgid "Number of buffers:" +#~ msgstr "Cantidad de buffers:" + +#~ msgid "Approximate latency:" +#~ msgstr "Latencia aproximada:" + +#~ msgid "Audio mode:" +#~ msgstr "Modo de audio:" + +#~ msgid "Ignore" +#~ msgstr "Ignorar" + +#~ msgid "Client timeout" +#~ msgstr "Timeout de clientes" + +#~ msgid "Number of ports:" +#~ msgstr "Cantidad de puertos:" + +#~ msgid "MIDI driver:" +#~ msgstr "Driver MIDI:" + +#~ msgid "Dither:" +#~ msgstr "Dither:" + +#~ msgid "" +#~ "No JACK server found anywhere on this system. Please install JACK and " +#~ "restart" +#~ msgstr "" +#~ "No se encuentra el servidor JACK en el sistema. Por favor, instala JACK y " +#~ "reinicia" + +#~ msgid "Server:" +#~ msgstr "Servidor:" + +#~ msgid "Input device:" +#~ msgstr "Dispositivo de entrada:" + +#~ msgid "Output device:" +#~ msgstr "Dispositivo de salida:" + +#~ msgid "Device" +#~ msgstr "Dispositivo" + +#~ msgid "Advanced" +#~ msgstr "Avanzado" + +#~ msgid "cannot open JACK rc file %1 to store parameters" +#~ msgstr "" +#~ "no se pudo leer el archivo de inicialización de JACK %1 para almacenar " +#~ "parámetros" + +#~ msgid "" +#~ "You do not have any audio devices capable of\n" +#~ "simultaneous playback and recording.\n" +#~ "\n" +#~ "Please use Applications -> Utilities -> Audio MIDI Setup\n" +#~ "to create an \"aggregrate\" device, or install a suitable\n" +#~ "audio interface.\n" +#~ "\n" +#~ "Please send email to Apple and ask them why new Macs\n" +#~ "have no duplex audio device.\n" +#~ "\n" +#~ "Alternatively, if you really want just playback\n" +#~ "or recording but not both, start JACK before running\n" +#~ "%1 and choose the relevant device then." +#~ msgstr "" +#~ "No tienes ningún dispositivo de audio capaz de\n" +#~ " reproducción y grabación simultánea.\n" +#~ "Por favor, usa Aplicaciones -> Utilidades -> Configuración Audio MIDI\n" +#~ "para crear un dispositivo \"agregado\" o instala\n" +#~ "una interfaz de audio adecuada.\n" +#~ "\n" +#~ "Por favor, envía un e-mail a Apple y pregúntales por qué\n" +#~ "los nuevos Macs no tienen un dispositivo de audio dúplex.\n" +#~ "\n" +#~ "Alternativamente, si de verdad quieres sólo reproducir\n" +#~ "o sólo capturar, pero no ambas cosas a la vez, arranca\n" +#~ "JACK antes de ejecutar %1 y elige el dispositivo adecuado." + +#~ msgid "No suitable audio devices" +#~ msgstr "No hay dispositivos de audio adecuados" + +#~ msgid "JACK appears to be missing from the %1 bundle" +#~ msgstr "JACK appears to be missing from the %1 bundle" + +#~ msgid "You need to choose an audio device first." +#~ msgstr "Es necesario que antes elijas un dispositivo de audio." + +#~ msgid "Audio device \"%1\" not known on this computer." +#~ msgstr "Dispositivo de audio \"%1\" desconocido en este ordenador." + +#~ msgid "AudioSetup value for %1 is missing data" +#~ msgstr "AudioSetup value for %1 is missing data" + +#~ msgid "" +#~ "configuration files contain a JACK server path that doesn't exist (%1)" +#~ msgstr "" +#~ "los archivos de configuración contienen una ruta al servidor JACK que no " +#~ "existe (%1)" + +#~ msgid "%1 could not connect to JACK." +#~ msgstr "%1 no pudo conectarse a JACK." + +#~ msgid "" +#~ "There are several possible reasons:\n" +#~ "\n" +#~ "1) JACK is not running.\n" +#~ "2) JACK is running as another user, perhaps root.\n" +#~ "3) There is already another client called \"%1\".\n" +#~ "\n" +#~ "Please consider the possibilities, and perhaps (re)start JACK." +#~ msgstr "" +#~ "Hay varias razones posibles:\n" +#~ "\n" +#~ "1) JACK no se está ejecutando.\n" +#~ "2) JACK está ejecutándose bajo otro nombre de usuario, tal vez como " +#~ "administrador.\n" +#~ "3) Ya hay otro cliente de JACK ejecutándose con el nombre \"%1\".\n" +#~ "\n" +#~ "Considera estas posibilidades y, quizás, (re)inicia JACK." + +#~ msgid "JACK exited" +#~ msgstr "JACK se paró" + +#~ msgid "" +#~ "JACK exited unexpectedly, and without notifying %1.\n" +#~ "\n" +#~ "This could be due to misconfiguration or to an error inside JACK.\n" +#~ "\n" +#~ "Click OK to exit %1." +#~ msgstr "" +#~ "JACK se paró de forma inesperada y sin notificar a %1.\n" +#~ "\n" +#~ "Esto podría ser debido a una mala configuración o a un error en JACK.\n" +#~ "\n" +#~ "Pulsa OK para salir de %1." + +#~ msgid "" +#~ "JACK exited unexpectedly, and without notifying %1.\n" +#~ "\n" +#~ "This is probably due to an error inside JACK. You should restart JACK\n" +#~ "and reconnect %1 to it, or exit %1 now. You cannot save your\n" +#~ "session at this time, because we would lose your connection information.\n" +#~ msgstr "" +#~ "JACK se paró de forma inesperada y sin notificar a %1.\n" +#~ "\n" +#~ "Esto probablemente se debe a un error en JACK. Debes reiniciar JACK\n" +#~ "y reconectar %1 al mismo, o bien salir de %1 ahora. No puedes\n" +#~ "guardar tu sesión en este momento pues perderíamos la información\n" +#~ "de las conexiones.\n" + +#~ msgid "Not connected to JACK - no I/O changes are possible" +#~ msgstr "No está conectado a JACK - No es posible realizar cambios de E/S" + +#~ msgid "" +#~ " -c, --name Use a specific jack client name, default is " +#~ "ardour\n" +#~ msgstr "" +#~ " -c, --name Nombre de cliente jack para Ardour. Por " +#~ "defecto es ardour\n" + +#~ msgid "Do seamless looping (not possible when slaved to MTC, JACK etc)" +#~ msgstr "" +#~ "Hacer bucles sin costura (no es posible cuando es esclavo a MTC, JACK, " +#~ "etc)" + +#~ msgid "Synchronise editor and mixer track order" +#~ msgstr "Sincronizar orden de pistas en Editor y Mezclador" + +#~ msgid "follows order of editor" +#~ msgstr "según orden del Editor" + +#~ msgid "the mixer" +#~ msgstr "el mezclador" + +#~ msgid "the editor" +#~ msgstr "el editor" + +#~ msgid "Create a new session" +#~ msgstr "Crear una sesión nueva" + +#~ msgid "Open an existing session" +#~ msgstr "Abrir una sesión existente" + +#~ msgid "I'd like more options for this session" +#~ msgstr "Quiero más opciones para esta sesión" + +#~ msgid "Audio / MIDI Setup" +#~ msgstr "Configuración Audio/MIDI" + +#~ msgid "Use an existing session as a template:" +#~ msgstr "Usar una sesión existente como plantilla: " + +#~ msgid "Select template" +#~ msgstr "Seleccionar plantilla" + +#~ msgid "Browse:" +#~ msgstr "Explorar:" + +#~ msgid "Select a session" +#~ msgstr "Seleccionar una sesión" + +#~ msgid "Advanced Session Options" +#~ msgstr "Opciones avanzadas de sesión" diff --git a/gtk2_ardour/po/fr.po b/gtk2_ardour/po/fr.po index 5b63fcb41d..b95f40e695 100644 --- a/gtk2_ardour/po/fr.po +++ b/gtk2_ardour/po/fr.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Ardour 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2013-05-20 01:04+0200\n" "Last-Translator: \n" "Language-Team: American English \n" @@ -259,6 +259,18 @@ msgstr "" "\tMartin Blanchard\n" "\tRomain Arnaud \n" +#: about.cc:183 +msgid "" +"German:\n" +"\tKarsten Petersen \n" +"\tSebastian Arnold \n" +"\tRobert Schwede \n" +"\tBenjamin Scherrer \n" +"\tEdgar Aichinger \n" +"\tRichard Oax \n" +"\tRobin Gloster \n" +msgstr "" + #: about.cc:190 msgid "" "Italian:\n" @@ -427,8 +439,8 @@ msgstr "Bus" msgid "Add:" msgstr "Ajouter:" -#: add_route_dialog.cc:114 startup.cc:841 time_fx_dialog.cc:91 -#: add_video_dialog.cc:150 video_server_dialog.cc:112 +#: add_route_dialog.cc:114 time_fx_dialog.cc:91 add_video_dialog.cc:150 +#: video_server_dialog.cc:112 msgid "Options" msgstr "Options" @@ -442,21 +454,22 @@ msgid "Group:" msgstr "Groupe:" #: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 -#: rc_option_editor.cc:1456 rc_option_editor.cc:1458 rc_option_editor.cc:1460 -#: rc_option_editor.cc:1478 rc_option_editor.cc:1480 rc_option_editor.cc:1488 -#: rc_option_editor.cc:1490 rc_option_editor.cc:1508 rc_option_editor.cc:1521 -#: rc_option_editor.cc:1523 rc_option_editor.cc:1525 rc_option_editor.cc:1556 -#: rc_option_editor.cc:1558 rc_option_editor.cc:1560 rc_option_editor.cc:1568 -#: rc_option_editor.cc:1576 rc_option_editor.cc:1584 +#: ardour_ui_ed.cc:476 engine_dialog.cc:236 rc_option_editor.cc:1446 +#: rc_option_editor.cc:1448 rc_option_editor.cc:1450 rc_option_editor.cc:1466 +#: rc_option_editor.cc:1468 rc_option_editor.cc:1476 rc_option_editor.cc:1478 +#: rc_option_editor.cc:1496 rc_option_editor.cc:1509 rc_option_editor.cc:1511 +#: rc_option_editor.cc:1513 rc_option_editor.cc:1544 rc_option_editor.cc:1546 +#: rc_option_editor.cc:1548 rc_option_editor.cc:1556 rc_option_editor.cc:1564 +#: rc_option_editor.cc:1572 msgid "Audio" msgstr "Audio" #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 -#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1707 -#: rc_option_editor.cc:1715 rc_option_editor.cc:1723 rc_option_editor.cc:1732 -#: rc_option_editor.cc:1740 rc_option_editor.cc:1748 rc_option_editor.cc:1756 -#: rc_option_editor.cc:1765 rc_option_editor.cc:1774 rc_option_editor.cc:1783 -#: rc_option_editor.cc:1791 rc_option_editor.cc:1799 +#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1695 +#: rc_option_editor.cc:1703 rc_option_editor.cc:1711 rc_option_editor.cc:1720 +#: rc_option_editor.cc:1728 rc_option_editor.cc:1736 rc_option_editor.cc:1744 +#: rc_option_editor.cc:1753 rc_option_editor.cc:1762 rc_option_editor.cc:1771 +#: rc_option_editor.cc:1779 rc_option_editor.cc:1787 msgid "MIDI" msgstr "MIDI" @@ -575,15 +588,35 @@ msgstr "Source du signal" msgid "Selected ranges" msgstr "Intervalles sélectionnés" +#: analysis_window.cc:48 +msgid "Selected regions" +msgstr "" + #: analysis_window.cc:50 msgid "Display model" msgstr "Modèle d'affichage" +#: analysis_window.cc:51 +msgid "Composite graphs for each track" +msgstr "" + +#: analysis_window.cc:52 +msgid "Composite graph of all tracks" +msgstr "" + +#: analysis_window.cc:54 +msgid "Show frequency power range" +msgstr "" + #: analysis_window.cc:55 msgid "Normalize values" msgstr "Normaliser" -#: analysis_window.cc:60 editor.cc:1856 +#: analysis_window.cc:59 +msgid "FFT analysis window" +msgstr "" + +#: analysis_window.cc:60 editor.cc:1857 msgid "Spectral Analysis" msgstr "Analyse du spectre" @@ -597,6 +630,10 @@ msgstr "Piste" msgid "Show" msgstr "Afficher" +#: analysis_window.cc:135 +msgid "Re-analyze data" +msgstr "" + #: ardour_button.cc:704 msgid "button cannot watch state of non-existing Controllable\n" msgstr "Le bouton ne peut pas surveiller un élement Controllable inexistant\n" @@ -629,6 +666,10 @@ msgstr "Raccourcis clavier" msgid "Preferences" msgstr "Préférences" +#: ardour_ui.cc:191 ardour_ui.cc:197 +msgid "Add Tracks/Busses" +msgstr "" + #: ardour_ui.cc:192 msgid "About" msgstr "À propos..." @@ -641,47 +682,95 @@ msgstr "Repères et intervalles..." msgid "Tracks and Busses" msgstr "Pistes/Bus" -#: ardour_ui.cc:195 +#: ardour_ui.cc:195 engine_dialog.cc:67 +msgid "Audio/MIDI Setup" +msgstr "" + +#: ardour_ui.cc:196 msgid "Properties" msgstr "Propriétés" -#: ardour_ui.cc:197 bundle_manager.cc:263 +#: ardour_ui.cc:198 bundle_manager.cc:263 msgid "Bundle Manager" msgstr "Gestionnaire de paquets" -#: ardour_ui.cc:198 big_clock_window.cc:35 +#: ardour_ui.cc:199 big_clock_window.cc:35 msgid "Big Clock" msgstr "Grande horloge" -#: ardour_ui.cc:202 +#: ardour_ui.cc:200 +msgid "Audio Connections" +msgstr "" + +#: ardour_ui.cc:201 +msgid "MIDI Connections" +msgstr "" + +#: ardour_ui.cc:203 msgid "Errors" msgstr "Erreurs" -#: ardour_ui.cc:388 -msgid "Starting audio engine" -msgstr "Démarrage du moteur audio" +#: ardour_ui.cc:436 +msgid "" +"The audio backend was shutdown because:\n" +"\n" +"%1" +msgstr "" -#: ardour_ui.cc:758 startup.cc:638 +#: ardour_ui.cc:438 +msgid "" +"The audio backend has either been shutdown or it\n" +"disconnected %1 because %1\n" +"was not fast enough. Try to restart\n" +"the audio backend and save the session." +msgstr "" + +#: ardour_ui.cc:758 +msgid "NSM server did not announce itself" +msgstr "" + +#: ardour_ui.cc:771 +msgid "NSM: no client ID provided" +msgstr "" + +#: ardour_ui.cc:778 +msgid "NSM: no session created" +msgstr "" + +#: ardour_ui.cc:801 +msgid "NSM: initialization failed" +msgstr "" + +#: ardour_ui.cc:840 startup.cc:379 msgid "%1 is ready for use" msgstr "%1 est prêt à être utilisé." -#: ardour_ui.cc:823 +#: ardour_ui.cc:882 +msgid "" +"WARNING: Your system has a limit for maximum amount of locked memory. This " +"might cause %1 to run out of memory before your system runs out of memory. \n" +"\n" +"You can view the memory limit with 'ulimit -l', and it is normally " +"controlled by %2" +msgstr "" + +#: ardour_ui.cc:899 msgid "Do not show this window again" msgstr "Ne plus afficher cette fenêtre" -#: ardour_ui.cc:865 +#: ardour_ui.cc:943 msgid "Don't quit" msgstr "Ne pas quitter" -#: ardour_ui.cc:866 +#: ardour_ui.cc:944 msgid "Just quit" msgstr "Quitter sans enregistrer" -#: ardour_ui.cc:867 +#: ardour_ui.cc:945 msgid "Save and quit" msgstr "Enregistrer et quitter" -#: ardour_ui.cc:877 +#: ardour_ui.cc:955 msgid "" "%1 was unable to save your session.\n" "\n" @@ -695,15 +784,15 @@ msgstr "" "\n" "cliquez sur le bouton « Quitter sans enregistrer »." -#: ardour_ui.cc:908 +#: ardour_ui.cc:986 msgid "Please wait while %1 cleans up..." msgstr "Veuillez patienter pendant que %1 nettoie ses données..." -#: ardour_ui.cc:925 +#: ardour_ui.cc:1004 msgid "Unsaved Session" msgstr "Session non sauvegardée" -#: ardour_ui.cc:946 +#: ardour_ui.cc:1025 msgid "" "The session \"%1\"\n" "has not been saved.\n" @@ -721,7 +810,7 @@ msgstr "" "\n" "Que voulez-vous faire ?" -#: ardour_ui.cc:949 +#: ardour_ui.cc:1028 msgid "" "The snapshot \"%1\"\n" "has not been saved.\n" @@ -738,74 +827,75 @@ msgstr "" "\n" "Que voulez-vous faire ?" -#: ardour_ui.cc:963 +#: ardour_ui.cc:1042 msgid "Prompter" msgstr "Question" -#: ardour_ui.cc:1049 -msgid "disconnected" -msgstr "déconnecté" - -#: ardour_ui.cc:1056 +#: ardour_ui.cc:1128 ardour_ui.cc:1136 #, c-format -msgid "JACK: %.1f kHz / %4.1f ms" -msgstr "JACK: %.1f kHz / %4.1f ms" +msgid "Audio: none" +msgstr "" -#: ardour_ui.cc:1060 +#: ardour_ui.cc:1140 #, c-format -msgid "JACK: % kHz / %4.1f ms" -msgstr "JACK: % kHz / %4.1f ms" +msgid "Audio: %.1f kHz / %4.1f ms" +msgstr "" -#: ardour_ui.cc:1078 export_video_dialog.cc:68 +#: ardour_ui.cc:1144 +#, c-format +msgid "Audio: % kHz / %4.1f ms" +msgstr "" + +#: ardour_ui.cc:1162 export_video_dialog.cc:67 msgid "File:" msgstr "Fichiers:" -#: ardour_ui.cc:1082 +#: ardour_ui.cc:1166 msgid "BWF" msgstr "BWF" -#: ardour_ui.cc:1085 +#: ardour_ui.cc:1169 msgid "WAV" msgstr "WAV" -#: ardour_ui.cc:1088 +#: ardour_ui.cc:1172 msgid "WAV64" msgstr "WAV64" -#: ardour_ui.cc:1091 session_option_editor.cc:197 +#: ardour_ui.cc:1175 session_option_editor.cc:197 msgid "CAF" msgstr "CAF" -#: ardour_ui.cc:1094 +#: ardour_ui.cc:1178 msgid "AIFF" msgstr "AIFF" -#: ardour_ui.cc:1097 +#: ardour_ui.cc:1181 msgid "iXML" msgstr "iXML" -#: ardour_ui.cc:1100 +#: ardour_ui.cc:1184 msgid "RF64" msgstr "RF64" -#: ardour_ui.cc:1108 +#: ardour_ui.cc:1192 msgid "32-float" msgstr "32-float" -#: ardour_ui.cc:1111 +#: ardour_ui.cc:1195 msgid "24-int" msgstr "24-int" -#: ardour_ui.cc:1114 +#: ardour_ui.cc:1198 msgid "16-int" msgstr "16-int" -#: ardour_ui.cc:1133 +#: ardour_ui.cc:1217 #, c-format msgid "DSP: %5.1f%%" msgstr "DSP: %5.1f%%" -#: ardour_ui.cc:1152 +#: ardour_ui.cc:1236 #, c-format msgid "" "Buffers: p:" @@ -816,54 +906,59 @@ msgstr "" "%%% c:%%%" -#: ardour_ui.cc:1188 +#: ardour_ui.cc:1277 msgid "Disk: Unknown" msgstr "Disque: Unknown" -#: ardour_ui.cc:1190 +#: ardour_ui.cc:1279 msgid "Disk: 24hrs+" msgstr "Disque: 24hrs+" -#: ardour_ui.cc:1208 +#: ardour_ui.cc:1297 msgid "Disk: >24 hrs" msgstr "Disque: >24 hrs" -#: ardour_ui.cc:1219 +#: ardour_ui.cc:1308 #, c-format msgid "Disk: %02dh:%02dm:%02ds" msgstr "Disque: %02dh:%02dm:%02ds" -#: ardour_ui.cc:1245 +#: ardour_ui.cc:1334 #, c-format msgid "Timecode|TC: %s" msgstr "TC: %s" -#: ardour_ui.cc:1362 ardour_ui.cc:1371 startup.cc:1054 +#: ardour_ui.cc:1451 ardour_ui.cc:1460 session_dialog.cc:322 +#: session_dialog.cc:327 msgid "Recent Sessions" msgstr "Sessions récentes" -#: ardour_ui.cc:1451 +#: ardour_ui.cc:1539 msgid "" -"%1 is not connected to JACK\n" +"%1 is not connected to any audio backend.\n" "You cannot open or close sessions in this condition" msgstr "" -"%1 n'est pas connecté à JACK\n" -"Aucune session ne peut être ouverte ou fermée" -#: ardour_ui.cc:1478 +#: ardour_ui.cc:1563 msgid "Open Session" msgstr "Ouvrir une session" -#: ardour_ui.cc:1503 session_import_dialog.cc:169 -#: session_metadata_dialog.cc:729 startup.cc:1083 +#: ardour_ui.cc:1588 session_dialog.cc:353 session_import_dialog.cc:169 +#: session_metadata_dialog.cc:729 msgid "%1 sessions" msgstr "Sessions %1" -#: ardour_ui.cc:1540 +#: ardour_ui.cc:1625 msgid "You cannot add a track without a session already loaded." msgstr "Vous ne pouvez pas ajouter une piste sans avoir ouvert une session." -#: ardour_ui.cc:1554 ardour_ui.cc:1615 +#: ardour_ui.cc:1633 +msgid "could not create %1 new mixed track" +msgid_plural "could not create %1 new mixed tracks" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1639 ardour_ui.cc:1700 msgid "" "There are insufficient JACK ports available\n" "to create a new track or bus.\n" @@ -875,24 +970,24 @@ msgstr "" "Vous devriez enregistrer %1, quitter, puis\n" "redémarrer JACK avec plus de ports." -#: ardour_ui.cc:1589 +#: ardour_ui.cc:1674 msgid "You cannot add a track or bus without a session already loaded." msgstr "" "Vous ne pouvez pas ajouter une piste ou un bus sans avoir ouvert une session." -#: ardour_ui.cc:1598 +#: ardour_ui.cc:1683 msgid "could not create %1 new audio track" msgid_plural "could not create %1 new audio tracks" msgstr[0] "impossible de créer %1 nouvelle piste audio" msgstr[1] "impossible de créer %1 nouvelles pistes audios" -#: ardour_ui.cc:1607 +#: ardour_ui.cc:1692 msgid "could not create %1 new audio bus" msgid_plural "could not create %1 new audio busses" msgstr[0] "impossible de créer %1 nouveau bus" msgstr[1] "impossible de créer %1 nouveaux bus" -#: ardour_ui.cc:1724 +#: ardour_ui.cc:1816 msgid "" "Please create one or more tracks before trying to record.\n" "You can do this with the \"Add Track or Bus\" option in the Session menu." @@ -900,41 +995,15 @@ msgstr "" "Créez au moins une piste avant d'enregistrer.\n" "Allez dans le menu de Session, et choisissez \"Ajouter une piste ou un bus\"." -#: ardour_ui.cc:2114 -msgid "" -"The audio backend (JACK) was shutdown because:\n" -"\n" -"%1" -msgstr "" -"Le moteur audio (JACK) a été arrété pour la raison suivante:\n" -"\n" -"%1" - -#: ardour_ui.cc:2116 -msgid "" -"JACK has either been shutdown or it\n" -"disconnected %1 because %1\n" -"was not fast enough. Try to restart\n" -"JACK, reconnect and save the session." -msgstr "" -"JACK a été arrêté ou a déconnecté %1\n" -"parce que celui-ci n'était pas assez rapide.\n" -"Essayer de redémarrer JACK, de reconnecter\n" -"%1 à JACK, et d'enregistrer la session." - -#: ardour_ui.cc:2142 -msgid "Unable to start the session running" -msgstr "Impossible de lancer la session" - -#: ardour_ui.cc:2222 +#: ardour_ui.cc:2193 msgid "Take Snapshot" msgstr "Prendre un cliché..." -#: ardour_ui.cc:2223 +#: ardour_ui.cc:2194 msgid "Name of new snapshot" msgstr "Nom du nouveau cliché" -#: ardour_ui.cc:2247 +#: ardour_ui.cc:2218 msgid "" "To ensure compatibility with various systems\n" "snapshot names may not contain a '%1' character" @@ -943,27 +1012,27 @@ msgstr "" "systèmes, les noms de cliché ne peuvent pas\n" "utiliser le caractère '%1' " -#: ardour_ui.cc:2259 +#: ardour_ui.cc:2230 msgid "Confirm Snapshot Overwrite" msgstr "Confirmer l'écrasement du cliché" -#: ardour_ui.cc:2260 +#: ardour_ui.cc:2231 msgid "A snapshot already exists with that name. Do you want to overwrite it?" msgstr "Un cliché de ce nom existe déjà. Voulez-vous l'écraser ?" -#: ardour_ui.cc:2263 utils_videotl.cc:67 +#: ardour_ui.cc:2234 utils_videotl.cc:67 msgid "Overwrite" msgstr "Écraser" -#: ardour_ui.cc:2297 +#: ardour_ui.cc:2268 msgid "Rename Session" msgstr "Renommer la session" -#: ardour_ui.cc:2298 +#: ardour_ui.cc:2269 msgid "New session name" msgstr "Nouveau nom de la session:" -#: ardour_ui.cc:2312 ardour_ui.cc:2692 ardour_ui.cc:2737 +#: ardour_ui.cc:2283 ardour_ui.cc:2684 ardour_ui.cc:2722 msgid "" "To ensure compatibility with various systems\n" "session names may not contain a '%1' character" @@ -971,12 +1040,12 @@ msgstr "" "Afin d'assurer la compatibilité sur différents systèmes\n" "les noms de sessions ne peuvent pas comporter le caractère '%1'" -#: ardour_ui.cc:2320 +#: ardour_ui.cc:2291 msgid "" "That name is already in use by another directory/folder. Please try again." msgstr "Un fichier ou un répertoire utilise déjà ce nom. Essayez autre chose." -#: ardour_ui.cc:2329 +#: ardour_ui.cc:2300 msgid "" "Renaming this session failed.\n" "Things could be seriously messed up at this point" @@ -984,19 +1053,19 @@ msgstr "" "Le renommage de la session a échoué.\n" "Il est possible que les données soient à présent corrompues." -#: ardour_ui.cc:2440 +#: ardour_ui.cc:2411 msgid "Save Template" msgstr "Enregistrer comme modèle" -#: ardour_ui.cc:2441 +#: ardour_ui.cc:2412 msgid "Name for template:" msgstr "Nom du modèle:" -#: ardour_ui.cc:2442 +#: ardour_ui.cc:2413 msgid "-template" msgstr "-modèle" -#: ardour_ui.cc:2480 +#: ardour_ui.cc:2451 msgid "" "This session\n" "%1\n" @@ -1006,52 +1075,59 @@ msgstr "" "%1\n" "existe déjà. Voulez-vous l'ouvrir ?" -#: ardour_ui.cc:2490 +#: ardour_ui.cc:2461 msgid "Open Existing Session" msgstr "Ouvrir une session" -#: ardour_ui.cc:2728 +#: ardour_ui.cc:2712 msgid "There is no existing session at \"%1\"" msgstr "Aucune session n'existe dans \"%1\"" -#: ardour_ui.cc:2815 +#: ardour_ui.cc:2804 msgid "Please wait while %1 loads your session" msgstr "Veuillez patienter pendant que %1 ouvre la session" -#: ardour_ui.cc:2830 +#: ardour_ui.cc:2819 msgid "Port Registration Error" msgstr "Erreur d'enregistrement du port" -#: ardour_ui.cc:2831 +#: ardour_ui.cc:2820 msgid "Click the Close button to try again." msgstr "Cliquez sur le bouton \"Fermer\" pour réessayer." -#: ardour_ui.cc:2852 +#: ardour_ui.cc:2841 msgid "Session \"%1 (snapshot %2)\" did not load successfully" msgstr "La session \"%1 (cliché %2)\" ne s'est pas chargée correctement" -#: ardour_ui.cc:2858 +#: ardour_ui.cc:2848 msgid "Loading Error" msgstr "Erreur de chargement" -#: ardour_ui.cc:2859 -msgid "Click the Refresh button to try again." -msgstr "Cliquez sur le bouton \"Rafraîchir\" pour réessayer." +#: ardour_ui.cc:2867 +msgid "" +"This session has been opened in read-only mode.\n" +"\n" +"You will not be able to record or save." +msgstr "" -#: ardour_ui.cc:2941 +#: ardour_ui.cc:2873 +msgid "Read-only Session" +msgstr "" + +#: ardour_ui.cc:2931 msgid "Could not create session in \"%1\"" msgstr "Impossible de créer une session dans \"%1\"" -#: ardour_ui.cc:3041 +#: ardour_ui.cc:3031 msgid "No files were ready for clean-up" msgstr "Aucun fichier à nettoyer" -#: ardour_ui.cc:3045 ardour_ui.cc:3055 ardour_ui.cc:3188 ardour_ui.cc:3195 +#: ardour_ui.cc:3035 ardour_ui.cc:3045 ardour_ui.cc:3178 ardour_ui.cc:3185 #: ardour_ui_ed.cc:104 msgid "Clean-up" msgstr "Nettoyer" -#: ardour_ui.cc:3046 +#: ardour_ui.cc:3036 msgid "" "If this seems suprising, \n" "check for any existing snapshots.\n" @@ -1062,19 +1138,19 @@ msgstr "" "Ceux-ci peuvent contenir des régions ayant besoin de certains\n" "fichiers audio inutilisés pour exister." -#: ardour_ui.cc:3105 +#: ardour_ui.cc:3095 msgid "kilo" msgstr "kilo" -#: ardour_ui.cc:3108 +#: ardour_ui.cc:3098 msgid "mega" msgstr "mega" -#: ardour_ui.cc:3111 +#: ardour_ui.cc:3101 msgid "giga" msgstr "giga" -#: ardour_ui.cc:3116 +#: ardour_ui.cc:3106 msgid "" "The following file was deleted from %2,\n" "releasing %3 %4bytes of disk space" @@ -1088,7 +1164,7 @@ msgstr[1] "" "Les %1 fichiers suivants ont été éffacés de %2,\n" "libérant %3 %4octets d'espace disque." -#: ardour_ui.cc:3123 +#: ardour_ui.cc:3113 msgid "" "The following file was not in use and \n" "has been moved to: %2\n" @@ -1124,11 +1200,11 @@ msgstr[1] "" "Session -> Nettoyer -> Vider la corbeille\n" "libérera %3 %4octets supplémentaires sur le disque.\n" -#: ardour_ui.cc:3183 +#: ardour_ui.cc:3173 msgid "Are you sure you want to clean-up?" msgstr "Voulez-vous vraiment lancer le nettoyage ?" -#: ardour_ui.cc:3190 +#: ardour_ui.cc:3180 msgid "" "Clean-up is a destructive operation.\n" "ALL undo/redo information will be lost if you clean-up.\n" @@ -1138,33 +1214,41 @@ msgstr "" "TOUTES les opérations d'annulation seront perdues.\n" "Les fichiers audio inutilisés seront déplacés dans un dossier \"dead\"." -#: ardour_ui.cc:3198 +#: ardour_ui.cc:3188 msgid "CleanupDialog" msgstr "Fenêtre de nettoyage" -#: ardour_ui.cc:3228 +#: ardour_ui.cc:3218 msgid "Cleaned Files" msgstr "Fichiers nettoyés" -#: ardour_ui.cc:3337 +#: ardour_ui.cc:3235 +msgid "deleted file" +msgstr "" + +#: ardour_ui.cc:3381 msgid "" "Video-Server was not launched by Ardour. The request to stop it is ignored." msgstr "" "Le Seveur-Video n'a pas été lancé par Ardour. La demande d'arrêt est ignorée." -#: ardour_ui.cc:3341 +#: ardour_ui.cc:3385 msgid "Stop Video-Server" msgstr "Arrêter le Serveur-Vidéo" -#: ardour_ui.cc:3342 +#: ardour_ui.cc:3386 msgid "Do you really want to stop the Video Server?" msgstr "Voulez-vous vraiment arreter le Serveur-Vidéo?" -#: ardour_ui.cc:3371 +#: ardour_ui.cc:3389 +msgid "Yes, Stop It" +msgstr "" + +#: ardour_ui.cc:3415 msgid "The Video Server is already started." msgstr "Le Serveur-Vidéo est déjà démarré" -#: ardour_ui.cc:3373 +#: ardour_ui.cc:3417 msgid "" "An external Video Server is configured and can be reached. Not starting a " "new instance." @@ -1172,42 +1256,42 @@ msgstr "" "Un Serveur-Vidéo est configuré et peut être accessible. Une nouvelle " "instance ne sera pas démarrée." -#: ardour_ui.cc:3381 ardour_ui.cc:3471 +#: ardour_ui.cc:3425 ardour_ui.cc:3515 msgid "" "Could not connect to the Video Server. Start it or configure its access URL " "in Edit -> Preferences." msgstr "" -#: ardour_ui.cc:3405 +#: ardour_ui.cc:3449 msgid "Specified docroot is not an existing directory." msgstr "" -#: ardour_ui.cc:3410 +#: ardour_ui.cc:3454 msgid "Given Video Server is not an executable file." msgstr "" -#: ardour_ui.cc:3443 +#: ardour_ui.cc:3487 msgid "Cannot launch the video-server" msgstr "" -#: ardour_ui.cc:3452 +#: ardour_ui.cc:3496 msgid "Video-server was started but does not respond to requests..." msgstr "" -#: ardour_ui.cc:3497 editor_audio_import.cc:632 +#: ardour_ui.cc:3541 editor_audio_import.cc:632 msgid "could not open %1" msgstr "impossible d'ouvrir %1" -#: ardour_ui.cc:3501 +#: ardour_ui.cc:3545 msgid "no video-file selected" msgstr "" -#: ardour_ui.cc:3673 +#: ardour_ui.cc:3717 msgid "Recording was stopped because your system could not keep up." msgstr "" "L'enregistrement s'est arrêté car votre système n'était pas assez rapide." -#: ardour_ui.cc:3702 +#: ardour_ui.cc:3746 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1221,7 +1305,7 @@ msgstr "" "L'enregistrement a généré un débit de\n" "données trop important pour le disque.\n" -#: ardour_ui.cc:3721 +#: ardour_ui.cc:3765 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1235,11 +1319,11 @@ msgstr "" "La lecture a généré un débit de données\n" "trop important pour le disque.\n" -#: ardour_ui.cc:3761 +#: ardour_ui.cc:3805 msgid "Crash Recovery" msgstr "Récupération après un crash" -#: ardour_ui.cc:3762 +#: ardour_ui.cc:3806 msgid "" "This session appears to have been in the\n" "middle of recording when %1 or\n" @@ -1256,19 +1340,19 @@ msgstr "" "%1 peut récupérer ou ignorer les données\n" "de l'enregistrement. Que voulez-vous faire?\n" -#: ardour_ui.cc:3774 +#: ardour_ui.cc:3818 msgid "Ignore crash data" msgstr "Ignorer les données" -#: ardour_ui.cc:3775 +#: ardour_ui.cc:3819 msgid "Recover from crash" msgstr "Récupérer les données" -#: ardour_ui.cc:3795 +#: ardour_ui.cc:3839 msgid "Sample Rate Mismatch" msgstr "Mauvais taux d'échantillonnage" -#: ardour_ui.cc:3796 +#: ardour_ui.cc:3840 msgid "" "This session was created with a sample rate of %1 Hz, but\n" "%2 is currently running at %3 Hz. If you load this session,\n" @@ -1278,23 +1362,23 @@ msgstr "" "mais %2 tourne actuellement à %3 Hz. Si vous chargez cette session,\n" "l'audio pourra être joué avec un mauvais taux d'echantillonnage.\n" -#: ardour_ui.cc:3805 +#: ardour_ui.cc:3849 msgid "Do not load session" msgstr "Ne pas charger la session" -#: ardour_ui.cc:3806 +#: ardour_ui.cc:3850 msgid "Load session anyway" msgstr "Charger quand-même la session" -#: ardour_ui.cc:3829 -msgid "Could not disconnect from JACK" -msgstr "Impossible de se déconnecter de JACK" +#: ardour_ui.cc:3877 +msgid "Could not disconnect from Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:3842 -msgid "Could not reconnect to JACK" -msgstr "Impossible de se reconnecter à JACK" +#: ardour_ui.cc:3893 ardour_ui.cc:3896 +msgid "Could not reconnect to the Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:4116 +#: ardour_ui.cc:4172 msgid "" "%4This is a session from an older version of %3%5\n" "\n" @@ -1309,6 +1393,22 @@ msgid "" "From now on, use the -2000 version with older versions of %3" msgstr "" +#: ardour_ui2.cc:72 +msgid "UI: cannot setup editor" +msgstr "" + +#: ardour_ui2.cc:77 +msgid "UI: cannot setup mixer" +msgstr "" + +#: ardour_ui2.cc:82 +msgid "UI: cannot setup meterbridge" +msgstr "" + +#: ardour_ui2.cc:130 +msgid "Play from playhead" +msgstr "" + #: ardour_ui2.cc:131 msgid "Stop playback" msgstr "Stopper la lecture" @@ -1317,10 +1417,28 @@ msgstr "Stopper la lecture" msgid "Toggle record" msgstr "Activer/désactiver l'enregistrement" +#: ardour_ui2.cc:133 +msgid "Play range/selection" +msgstr "" + +#: ardour_ui2.cc:134 +msgid "Go to start of session" +msgstr "" + +#: ardour_ui2.cc:135 +msgid "Go to end of session" +msgstr "" + #: ardour_ui2.cc:136 msgid "Play loop range" msgstr "Lire la boucle" +#: ardour_ui2.cc:137 +msgid "" +"MIDI Panic\n" +"Send note off and reset controller messages on all MIDI channels" +msgstr "" + #: ardour_ui2.cc:138 msgid "Return to last playback start when stopped" msgstr "Revenir en début de lecture lors de l'arrêt" @@ -1385,6 +1503,10 @@ msgstr "" "Esc annule; Entrée: confirme; Ajouter '+' ou '-' pourque " "la valeur s'ajoute (ou s'enlève) de la valeur originelle.\n" +#: ardour_ui2.cc:147 +msgid "Reset Level Meter" +msgstr "" + #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "[ERREUR]: " @@ -1397,51 +1519,51 @@ msgstr "[AVERTISSEMENT]: " msgid "[INFO]: " msgstr "[INFO]: " -#: ardour_ui2.cc:247 ardour_ui_ed.cc:377 +#: ardour_ui2.cc:247 ardour_ui_ed.cc:344 msgid "Auto Return" msgstr "Retour auto" -#: ardour_ui2.cc:249 ardour_ui_ed.cc:380 +#: ardour_ui2.cc:249 ardour_ui_ed.cc:347 msgid "Follow Edits" msgstr "Suivre modif." -#: ardour_ui2.cc:628 rc_option_editor.cc:1004 rc_option_editor.cc:1022 -#: rc_option_editor.cc:1025 rc_option_editor.cc:1027 rc_option_editor.cc:1029 -#: rc_option_editor.cc:1037 rc_option_editor.cc:1045 rc_option_editor.cc:1047 -#: rc_option_editor.cc:1055 rc_option_editor.cc:1062 rc_option_editor.cc:1071 -#: rc_option_editor.cc:1073 rc_option_editor.cc:1075 rc_option_editor.cc:1083 -#: rc_option_editor.cc:1085 rc_option_editor.cc:1094 +#: ardour_ui2.cc:628 rc_option_editor.cc:1002 rc_option_editor.cc:1020 +#: rc_option_editor.cc:1023 rc_option_editor.cc:1025 rc_option_editor.cc:1027 +#: rc_option_editor.cc:1035 rc_option_editor.cc:1043 rc_option_editor.cc:1045 +#: rc_option_editor.cc:1053 rc_option_editor.cc:1060 rc_option_editor.cc:1069 +#: rc_option_editor.cc:1071 rc_option_editor.cc:1073 rc_option_editor.cc:1081 +#: rc_option_editor.cc:1083 rc_option_editor.cc:1092 #: session_option_editor.cc:234 session_option_editor.cc:236 #: session_option_editor.cc:257 session_option_editor.cc:259 #: session_option_editor.cc:261 session_option_editor.cc:268 msgid "Misc" msgstr "Divers" -#: ardour_ui_dependents.cc:77 +#: ardour_ui_dependents.cc:69 msgid "Setup Editor" msgstr "Éditeur de configuration" -#: ardour_ui_dependents.cc:79 +#: ardour_ui_dependents.cc:71 msgid "Setup Mixer" msgstr "Console de mixage" -#: ardour_ui_dependents.cc:85 +#: ardour_ui_dependents.cc:77 msgid "Reload Session History" msgstr "Recharger l'historique de la session" -#: ardour_ui_dialogs.cc:242 +#: ardour_ui_dialogs.cc:238 msgid "Don't close" msgstr "Ne pas fermer" -#: ardour_ui_dialogs.cc:243 +#: ardour_ui_dialogs.cc:239 msgid "Just close" msgstr "Fermer" -#: ardour_ui_dialogs.cc:244 +#: ardour_ui_dialogs.cc:240 msgid "Save and close" msgstr "Enregistrer et fermer" -#: ardour_ui_dialogs.cc:340 +#: ardour_ui_dialogs.cc:339 msgid "This screen is not tall enough to display the mixer window" msgstr "" @@ -1450,11 +1572,11 @@ msgid "Session" msgstr "Session" #: ardour_ui_ed.cc:106 editor_actions.cc:134 editor_regions.cc:115 -#: port_group.cc:457 session_option_editor.cc:82 session_option_editor.cc:89 +#: port_group.cc:458 session_option_editor.cc:82 session_option_editor.cc:89 msgid "Sync" msgstr "Synchro" -#: ardour_ui_ed.cc:107 engine_dialog.cc:369 +#: ardour_ui_ed.cc:107 msgid "Options" msgstr "Options" @@ -1482,15 +1604,15 @@ msgstr "fichier" msgid "Sample Format" msgstr "Échantillon" -#: ardour_ui_ed.cc:114 rc_option_editor.cc:1826 rc_option_editor.cc:1839 +#: ardour_ui_ed.cc:114 rc_option_editor.cc:1814 rc_option_editor.cc:1826 msgid "Control Surfaces" msgstr "Surfaces de contrôle" -#: ardour_ui_ed.cc:115 rc_option_editor.cc:1558 +#: ardour_ui_ed.cc:115 rc_option_editor.cc:1546 msgid "Plugins" msgstr "Plugins" -#: ardour_ui_ed.cc:116 rc_option_editor.cc:1902 +#: ardour_ui_ed.cc:116 rc_option_editor.cc:1889 msgid "Metering" msgstr "VU-mètre" @@ -1502,6 +1624,10 @@ msgstr "Taux de chute" msgid "Hold Time" msgstr "Temps de maintien" +#: ardour_ui_ed.cc:119 +msgid "Denormal Handling" +msgstr "" + #: ardour_ui_ed.cc:123 route_time_axis.cc:1489 msgid "New..." msgstr "Nouvelle session..." @@ -1522,6 +1648,14 @@ msgstr "Fermer" msgid "Add Track or Bus..." msgstr "Ajouter une piste ou un bus..." +#: ardour_ui_ed.cc:135 +msgid "Open Video" +msgstr "" + +#: ardour_ui_ed.cc:138 +msgid "Remove Video" +msgstr "" + #: ardour_ui_ed.cc:141 msgid "Export To Video File" msgstr "Exporter vers un fichier video..." @@ -1559,8 +1693,12 @@ msgstr "Importer les méta-données" msgid "Export To Audio File(s)..." msgstr "Exporter vers un fichier audio..." +#: ardour_ui_ed.cc:172 +msgid "Stem export..." +msgstr "" + #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 -#: export_video_dialog.cc:72 +#: export_video_dialog.cc:71 msgid "Export" msgstr "Exporter" @@ -1572,166 +1710,153 @@ msgstr "Nettoyer les fichiers audio inutilisés..." msgid "Flush Wastebasket" msgstr "Vider la corbeille" -#: ardour_ui_ed.cc:189 keyeditor.cc:253 rc_option_editor.cc:1472 -msgid "JACK" -msgstr "JACK" - -#: ardour_ui_ed.cc:190 route_params_ui.cc:105 -msgid "Latency" -msgstr "Latence (trames/période)" - -#: ardour_ui_ed.cc:192 -msgid "Reconnect" -msgstr "Reconnecter" - -#: ardour_ui_ed.cc:195 global_port_matrix.cc:207 io_selector.cc:210 -#: mixer_strip.cc:719 mixer_strip.cc:845 -msgid "Disconnect" -msgstr "Déconnecter" - -#: ardour_ui_ed.cc:222 +#: ardour_ui_ed.cc:189 msgid "Quit" msgstr "Quitter" -#: ardour_ui_ed.cc:226 +#: ardour_ui_ed.cc:193 msgid "Maximise Editor Space" msgstr "Plein écran" -#: ardour_ui_ed.cc:227 +#: ardour_ui_ed.cc:194 msgid "Show Toolbars" msgstr "Afficher les barres d'outils" -#: ardour_ui_ed.cc:230 mixer_ui.cc:1865 mixer_ui.cc:1871 +#: ardour_ui_ed.cc:197 mixer_ui.cc:1865 mixer_ui.cc:1871 msgid "Window|Mixer" msgstr "Console de mixage" +#: ardour_ui_ed.cc:198 +msgid "Toggle Editor+Mixer" +msgstr "" + #: ardour_ui_ed.cc:199 meterbridge.cc:230 meterbridge.cc:236 msgid "Window|Meterbridge" msgstr "Barre de vue-mètre" -#: ardour_ui_ed.cc:234 midi_tracer.cc:39 +#: ardour_ui_ed.cc:201 midi_tracer.cc:42 msgid "MIDI Tracer" msgstr "Activité MIDI" -#: ardour_ui_ed.cc:236 +#: ardour_ui_ed.cc:203 msgid "Chat" msgstr "Salon de discussion (anglais)" -#: ardour_ui_ed.cc:238 +#: ardour_ui_ed.cc:205 msgid "Help|Manual" msgstr "Manuel" -#: ardour_ui_ed.cc:239 +#: ardour_ui_ed.cc:206 msgid "Reference" msgstr "Référence" -#: ardour_ui_ed.cc:241 plugin_ui.cc:418 +#: ardour_ui_ed.cc:208 plugin_ui.cc:415 msgid "Save" msgstr "Enregistrer" -#: ardour_ui_ed.cc:249 rc_option_editor.cc:1114 rc_option_editor.cc:1125 -#: rc_option_editor.cc:1134 rc_option_editor.cc:1147 rc_option_editor.cc:1160 -#: rc_option_editor.cc:1169 rc_option_editor.cc:1179 rc_option_editor.cc:1181 -#: rc_option_editor.cc:1191 rc_option_editor.cc:1207 rc_option_editor.cc:1220 -#: rc_option_editor.cc:1238 rc_option_editor.cc:1240 rc_option_editor.cc:1254 -#: rc_option_editor.cc:1257 rc_option_editor.cc:1259 rc_option_editor.cc:1276 -#: rc_option_editor.cc:1287 +#: ardour_ui_ed.cc:216 rc_option_editor.cc:1112 rc_option_editor.cc:1123 +#: rc_option_editor.cc:1132 rc_option_editor.cc:1145 rc_option_editor.cc:1158 +#: rc_option_editor.cc:1167 rc_option_editor.cc:1177 rc_option_editor.cc:1179 +#: rc_option_editor.cc:1189 rc_option_editor.cc:1205 rc_option_editor.cc:1218 +#: rc_option_editor.cc:1236 rc_option_editor.cc:1238 rc_option_editor.cc:1252 +#: rc_option_editor.cc:1255 rc_option_editor.cc:1257 rc_option_editor.cc:1274 +#: rc_option_editor.cc:1285 msgid "Transport" msgstr "Commandes" -#: ardour_ui_ed.cc:255 engine_dialog.cc:85 +#: ardour_ui_ed.cc:222 msgid "Stop" msgstr "Arrêter" -#: ardour_ui_ed.cc:258 +#: ardour_ui_ed.cc:225 msgid "Roll" msgstr "Roll" -#: ardour_ui_ed.cc:262 +#: ardour_ui_ed.cc:229 msgid "Start/Stop" msgstr "Lecture/Arrêt" -#: ardour_ui_ed.cc:265 +#: ardour_ui_ed.cc:232 msgid "Start/Continue/Stop" msgstr "Lecture/Arrêt" -#: ardour_ui_ed.cc:268 +#: ardour_ui_ed.cc:235 msgid "Stop and Forget Capture" msgstr "Arrêt avec destruction" -#: ardour_ui_ed.cc:278 +#: ardour_ui_ed.cc:245 msgid "Transition To Roll" msgstr "Lecture avant" -#: ardour_ui_ed.cc:282 +#: ardour_ui_ed.cc:249 msgid "Transition To Reverse" msgstr "Lecture arrière" -#: ardour_ui_ed.cc:286 +#: ardour_ui_ed.cc:253 msgid "Play Loop Range" msgstr "Lire la boucle" -#: ardour_ui_ed.cc:289 +#: ardour_ui_ed.cc:256 msgid "Play Selected Range" msgstr "Lecture de l'intervalle" -#: ardour_ui_ed.cc:292 +#: ardour_ui_ed.cc:259 msgid "Play Selection w/Preroll" msgstr "Lire la zone de sélection avec compte à rebours" -#: ardour_ui_ed.cc:296 +#: ardour_ui_ed.cc:263 msgid "Enable Record" msgstr "Activer l'enregistrement" -#: ardour_ui_ed.cc:299 +#: ardour_ui_ed.cc:266 msgid "Start Recording" msgstr "Démarrer l'enregistrement" -#: ardour_ui_ed.cc:303 +#: ardour_ui_ed.cc:270 msgid "Rewind" msgstr "Rembobiner" -#: ardour_ui_ed.cc:306 +#: ardour_ui_ed.cc:273 msgid "Rewind (Slow)" msgstr "Rembobiner (lent)" -#: ardour_ui_ed.cc:309 +#: ardour_ui_ed.cc:276 msgid "Rewind (Fast)" msgstr "Rembobiner (rapide)" -#: ardour_ui_ed.cc:312 startup.cc:727 +#: ardour_ui_ed.cc:279 msgid "Forward" msgstr "Avance rapide" -#: ardour_ui_ed.cc:315 +#: ardour_ui_ed.cc:282 msgid "Forward (Slow)" msgstr "Avancer (lent)" -#: ardour_ui_ed.cc:318 +#: ardour_ui_ed.cc:285 msgid "Forward (Fast)" msgstr "Avancer (rapide)" -#: ardour_ui_ed.cc:321 +#: ardour_ui_ed.cc:288 msgid "Goto Zero" msgstr "Premier temps" -#: ardour_ui_ed.cc:324 +#: ardour_ui_ed.cc:291 msgid "Goto Start" msgstr "début" -#: ardour_ui_ed.cc:327 +#: ardour_ui_ed.cc:294 msgid "Goto End" msgstr "fin" -#: ardour_ui_ed.cc:330 +#: ardour_ui_ed.cc:297 msgid "Goto Wall Clock" msgstr "" -#: ardour_ui_ed.cc:334 +#: ardour_ui_ed.cc:301 msgid "Focus On Clock" msgstr "Mettre le focus sur l'horloge" -#: ardour_ui_ed.cc:338 ardour_ui_ed.cc:347 audio_clock.cc:2046 editor.cc:237 +#: ardour_ui_ed.cc:305 ardour_ui_ed.cc:314 audio_clock.cc:2046 editor.cc:237 #: editor_actions.cc:544 editor_actions.cc:553 export_timespan_selector.cc:88 #: session_option_editor.cc:41 session_option_editor.cc:61 #: session_option_editor.cc:80 session_option_editor.cc:96 @@ -1740,117 +1865,125 @@ msgstr "Mettre le focus sur l'horloge" msgid "Timecode" msgstr "Timecode" -#: ardour_ui_ed.cc:340 ardour_ui_ed.cc:349 editor_actions.cc:542 +#: ardour_ui_ed.cc:307 ardour_ui_ed.cc:316 editor_actions.cc:542 msgid "Bars & Beats" msgstr "Mesures:Temps" -#: ardour_ui_ed.cc:342 ardour_ui_ed.cc:351 +#: ardour_ui_ed.cc:309 ardour_ui_ed.cc:318 msgid "Minutes & Seconds" msgstr "Minutes:Secondes" -#: ardour_ui_ed.cc:344 ardour_ui_ed.cc:353 audio_clock.cc:2050 editor.cc:238 +#: ardour_ui_ed.cc:311 ardour_ui_ed.cc:320 audio_clock.cc:2050 editor.cc:238 #: editor_actions.cc:543 msgid "Samples" msgstr "Échantillons" -#: ardour_ui_ed.cc:356 +#: ardour_ui_ed.cc:323 msgid "Punch In" msgstr "Punch In" -#: ardour_ui_ed.cc:357 mixer_strip.cc:1905 route_ui.cc:137 +#: ardour_ui_ed.cc:324 mixer_strip.cc:1905 route_ui.cc:137 #: time_info_box.cc:113 msgid "In" msgstr "Entrée" -#: ardour_ui_ed.cc:360 +#: ardour_ui_ed.cc:327 msgid "Punch Out" msgstr "Punch Out" -#: ardour_ui_ed.cc:361 time_info_box.cc:114 +#: ardour_ui_ed.cc:328 time_info_box.cc:114 msgid "Out" msgstr "descente" -#: ardour_ui_ed.cc:364 +#: ardour_ui_ed.cc:331 msgid "Punch In/Out" msgstr "Punch in/out" -#: ardour_ui_ed.cc:365 +#: ardour_ui_ed.cc:332 msgid "In/Out" msgstr "In/Out" -#: ardour_ui_ed.cc:368 rc_option_editor.cc:1071 +#: ardour_ui_ed.cc:335 rc_option_editor.cc:1069 msgid "Click" msgstr "Métronome" -#: ardour_ui_ed.cc:371 +#: ardour_ui_ed.cc:338 msgid "Auto Input" msgstr "Monitoring automatique" -#: ardour_ui_ed.cc:374 +#: ardour_ui_ed.cc:341 msgid "Auto Play" msgstr "Lecture auto" -#: ardour_ui_ed.cc:385 +#: ardour_ui_ed.cc:352 msgid "Sync Startup to Video" msgstr "Sync début avec vidéo" -#: ardour_ui_ed.cc:387 +#: ardour_ui_ed.cc:354 msgid "Time Master" msgstr "Horloge maître" -#: ardour_ui_ed.cc:394 +#: ardour_ui_ed.cc:361 msgid "Toggle Record Enable Track %1" msgstr "Armer la piste %1" -#: ardour_ui_ed.cc:401 +#: ardour_ui_ed.cc:368 msgid "Percentage" msgstr "pourcentage" -#: ardour_ui_ed.cc:402 shuttle_control.cc:169 +#: ardour_ui_ed.cc:369 shuttle_control.cc:169 msgid "Semitones" msgstr "Demi-tons" -#: ardour_ui_ed.cc:406 +#: ardour_ui_ed.cc:373 msgid "Send MTC" msgstr "Envoi MTC (Midi Time Code)" -#: ardour_ui_ed.cc:408 +#: ardour_ui_ed.cc:375 msgid "Send MMC" msgstr "Envoi MMC (Midi Machine Control)" -#: ardour_ui_ed.cc:410 +#: ardour_ui_ed.cc:377 msgid "Use MMC" msgstr "Réception MMC (Midi Machine Control)" -#: ardour_ui_ed.cc:412 rc_option_editor.cc:1710 +#: ardour_ui_ed.cc:379 rc_option_editor.cc:1698 msgid "Send MIDI Clock" msgstr "Envoyer l'horloge MIDI" -#: ardour_ui_ed.cc:414 +#: ardour_ui_ed.cc:381 msgid "Send MIDI Feedback" msgstr "Envoyer les réponses MIDI" -#: ardour_ui_ed.cc:420 +#: ardour_ui_ed.cc:387 msgid "Panic" msgstr "Panique" -#: ardour_ui_ed.cc:560 +#: ardour_ui_ed.cc:472 msgid "Wall Clock" msgstr "Grande horloge" -#: ardour_ui_ed.cc:561 +#: ardour_ui_ed.cc:473 msgid "Disk Space" msgstr "Espace disque" -#: ardour_ui_ed.cc:562 +#: ardour_ui_ed.cc:474 msgid "DSP" msgstr "DSP" -#: ardour_ui_ed.cc:564 -msgid "JACK Sampling Rate and Latency" -msgstr "Taux d'échantillonnage et latence de JACK" +#: ardour_ui_ed.cc:475 +msgid "Buffers" +msgstr "" -#: ardour_ui_options.cc:65 +#: ardour_ui_ed.cc:477 +msgid "Timecode Format" +msgstr "" + +#: ardour_ui_ed.cc:478 +msgid "File Format" +msgstr "" + +#: ardour_ui_options.cc:61 msgid "" "It is not possible to use JACK as the the sync source\n" "when the pull up/down setting is non-zero." @@ -1858,15 +1991,15 @@ msgstr "" "Le paramètre \"pullup / pulldown\" doit être à zéro pour\n" "utiliser JACK en tant que source de synchronisation. " -#: ardour_ui_options.cc:321 +#: ardour_ui_options.cc:317 msgid "Internal" msgstr "Interne" -#: ardour_ui_options.cc:482 +#: ardour_ui_options.cc:468 msgid "Enable/Disable external positional sync" msgstr "Activer/désactiver la synchronisation positionnelle externe" -#: ardour_ui_options.cc:484 +#: ardour_ui_options.cc:470 msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "Impossible de synchroniser avec JACK: le pullup / pulldown est réglé" @@ -1915,6 +2048,10 @@ msgstr "Mesures:Temps" msgid "Minutes:Seconds" msgstr "Minutes:Secondes" +#: audio_clock.cc:2054 +msgid "Set From Playhead" +msgstr "" + #: audio_clock.cc:2055 msgid "Locate to This Time" msgstr "Se placer ici" @@ -1981,32 +2118,32 @@ msgid "hide track" msgstr "cacher la piste" #: automation_time_axis.cc:255 automation_time_axis.cc:307 -#: automation_time_axis.cc:496 gain_meter.cc:195 generic_pluginui.cc:456 -#: generic_pluginui.cc:746 panner_ui.cc:150 +#: automation_time_axis.cc:496 gain_meter.cc:194 generic_pluginui.cc:454 +#: generic_pluginui.cc:775 panner_ui.cc:149 msgid "Automation|Manual" msgstr "Manuel" #: automation_time_axis.cc:257 automation_time_axis.cc:318 -#: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 -#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 -#: generic_pluginui.cc:459 generic_pluginui.cc:748 midi_time_axis.cc:1488 -#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:153 +#: automation_time_axis.cc:501 editor.cc:1937 editor.cc:2014 +#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:197 +#: generic_pluginui.cc:457 generic_pluginui.cc:777 midi_time_axis.cc:1488 +#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:152 msgid "Play" msgstr "Lire" #: automation_time_axis.cc:259 automation_time_axis.cc:329 -#: automation_time_axis.cc:506 gain_meter.cc:201 generic_pluginui.cc:462 -#: generic_pluginui.cc:750 panner_ui.cc:156 +#: automation_time_axis.cc:506 gain_meter.cc:200 generic_pluginui.cc:460 +#: generic_pluginui.cc:779 panner_ui.cc:155 msgid "Write" msgstr "Écrire" #: automation_time_axis.cc:261 automation_time_axis.cc:340 -#: automation_time_axis.cc:511 gain_meter.cc:204 generic_pluginui.cc:465 -#: generic_pluginui.cc:752 panner_ui.cc:159 +#: automation_time_axis.cc:511 gain_meter.cc:203 generic_pluginui.cc:463 +#: generic_pluginui.cc:781 panner_ui.cc:158 msgid "Touch" msgstr "Reprise" -#: automation_time_axis.cc:351 generic_pluginui.cc:468 meter_patterns.cc:108 +#: automation_time_axis.cc:351 generic_pluginui.cc:466 meter_patterns.cc:108 msgid "???" msgstr "???" @@ -2027,8 +2164,12 @@ msgstr "Effacer" msgid "State" msgstr "État" -#: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 -#: editor.cc:1526 export_format_dialog.cc:476 +#: automation_time_axis.cc:531 +msgid "Discrete" +msgstr "" + +#: automation_time_axis.cc:537 editor.cc:1458 editor.cc:1465 editor.cc:1521 +#: editor.cc:1527 export_format_dialog.cc:476 msgid "Linear" msgstr "Linéaire" @@ -2045,6 +2186,10 @@ msgstr "Désassocier" msgid "Edit Bundle" msgstr "Raccourci pour l'édition: utiliser la touche" +#: bundle_manager.cc:200 +msgid "Direction:" +msgstr "" + #: bundle_manager.cc:205 bundle_manager.cc:209 mixer_strip.cc:158 #: mixer_strip.cc:2127 msgid "Input" @@ -2055,13 +2200,13 @@ msgstr "Entrée" msgid "Output" msgstr "Sortie" -#: bundle_manager.cc:264 editor.cc:1974 editor_actions.cc:90 +#: bundle_manager.cc:264 editor.cc:1978 editor_actions.cc:90 #: editor_actions.cc:100 msgid "Edit" msgstr "Édition" -#: bundle_manager.cc:265 editor.cc:5493 editor_actions.cc:310 -#: editor_actions.cc:368 plugin_ui.cc:419 processor_box.cc:2229 +#: bundle_manager.cc:265 editor.cc:5497 editor_actions.cc:310 +#: editor_actions.cc:368 plugin_ui.cc:416 processor_box.cc:2268 #: route_time_axis.cc:713 msgid "Delete" msgstr "Supprimer" @@ -2175,6 +2320,10 @@ msgstr "couleur RGBA remplissage" msgid "color of fill" msgstr "couleur du remplissage" +#: configinfo.cc:28 +msgid "Build Configuration" +msgstr "" + #: control_point_dialog.cc:33 msgid "Control point" msgstr "Point de contrôle" @@ -2187,6 +2336,14 @@ msgstr "Valeur de note:" msgid "Note" msgstr "Note" +#: edit_note_dialog.cc:45 +msgid "Set selected notes to this channel" +msgstr "" + +#: edit_note_dialog.cc:46 +msgid "Set selected notes to this pitch" +msgstr "" + #: edit_note_dialog.cc:47 msgid "Set selected notes to this velocity" msgstr "" @@ -2204,10 +2361,18 @@ msgstr "" msgid "Channel" msgstr "Canal" +#: edit_note_dialog.cc:68 +msgid "Pitch" +msgstr "" + #: edit_note_dialog.cc:78 step_entry.cc:407 msgid "Velocity" msgstr "Vélocité" +#: edit_note_dialog.cc:88 patch_change_dialog.cc:67 +msgid "Time" +msgstr "" + #: edit_note_dialog.cc:98 editor_regions.cc:114 #: export_timespan_selector.cc:359 export_timespan_selector.cc:421 #: location_ui.cc:317 midi_list_editor.cc:114 time_info_box.cc:105 @@ -2218,164 +2383,164 @@ msgstr "Durée:" msgid "edit note" msgstr "éditer la note" -#: editor.cc:137 editor.cc:3429 +#: editor.cc:137 editor.cc:3433 msgid "CD Frames" msgstr "Trames de CD" -#: editor.cc:138 editor.cc:3431 +#: editor.cc:138 editor.cc:3435 msgid "Timecode Frames" msgstr "Trames Timecode" -#: editor.cc:139 editor.cc:3433 +#: editor.cc:139 editor.cc:3437 msgid "Timecode Seconds" msgstr "Secondes Timecode" -#: editor.cc:140 editor.cc:3435 +#: editor.cc:140 editor.cc:3439 msgid "Timecode Minutes" msgstr "Minutes Timecode" -#: editor.cc:141 editor.cc:3437 +#: editor.cc:141 editor.cc:3441 msgid "Seconds" msgstr "Secondes" -#: editor.cc:142 editor.cc:3439 +#: editor.cc:142 editor.cc:3443 msgid "Minutes" msgstr "Minutes" -#: editor.cc:143 editor.cc:3413 quantize_dialog.cc:37 quantize_dialog.cc:141 +#: editor.cc:143 editor.cc:3417 quantize_dialog.cc:37 quantize_dialog.cc:141 msgid "Beats/128" msgstr "128ème de temps" -#: editor.cc:144 editor.cc:3411 quantize_dialog.cc:38 quantize_dialog.cc:143 +#: editor.cc:144 editor.cc:3415 quantize_dialog.cc:38 quantize_dialog.cc:143 msgid "Beats/64" msgstr "64ème de temps" -#: editor.cc:145 editor.cc:3409 quantize_dialog.cc:39 quantize_dialog.cc:145 +#: editor.cc:145 editor.cc:3413 quantize_dialog.cc:39 quantize_dialog.cc:145 msgid "Beats/32" msgstr "32ème de temps" -#: editor.cc:146 editor.cc:3407 +#: editor.cc:146 editor.cc:3411 msgid "Beats/28" msgstr "28ème de temps" -#: editor.cc:147 editor.cc:3405 +#: editor.cc:147 editor.cc:3409 msgid "Beats/24" msgstr "24ème de temps" -#: editor.cc:148 editor.cc:3403 +#: editor.cc:148 editor.cc:3407 msgid "Beats/20" msgstr "20ème de temps" -#: editor.cc:149 editor.cc:3401 quantize_dialog.cc:40 quantize_dialog.cc:147 +#: editor.cc:149 editor.cc:3405 quantize_dialog.cc:40 quantize_dialog.cc:147 msgid "Beats/16" msgstr "16ème de temps" -#: editor.cc:150 editor.cc:3399 +#: editor.cc:150 editor.cc:3403 msgid "Beats/14" msgstr "14ème de temps" -#: editor.cc:151 editor.cc:3397 +#: editor.cc:151 editor.cc:3401 msgid "Beats/12" msgstr "12ème de temps" -#: editor.cc:152 editor.cc:3395 +#: editor.cc:152 editor.cc:3399 msgid "Beats/10" msgstr "10ème de temps" -#: editor.cc:153 editor.cc:3393 quantize_dialog.cc:41 quantize_dialog.cc:149 +#: editor.cc:153 editor.cc:3397 quantize_dialog.cc:41 quantize_dialog.cc:149 msgid "Beats/8" msgstr "8ème de temps" -#: editor.cc:154 editor.cc:3391 +#: editor.cc:154 editor.cc:3395 msgid "Beats/7" msgstr "7ème de temps" -#: editor.cc:155 editor.cc:3389 +#: editor.cc:155 editor.cc:3393 msgid "Beats/6" msgstr "6ème de temps" -#: editor.cc:156 editor.cc:3387 +#: editor.cc:156 editor.cc:3391 msgid "Beats/5" msgstr "5ème de temps" -#: editor.cc:157 editor.cc:3385 quantize_dialog.cc:42 quantize_dialog.cc:151 +#: editor.cc:157 editor.cc:3389 quantize_dialog.cc:42 quantize_dialog.cc:151 msgid "Beats/4" msgstr "Quart de temps" -#: editor.cc:158 editor.cc:3383 quantize_dialog.cc:43 quantize_dialog.cc:153 +#: editor.cc:158 editor.cc:3387 quantize_dialog.cc:43 quantize_dialog.cc:153 msgid "Beats/3" msgstr "Tiers de temps" -#: editor.cc:159 editor.cc:3381 quantize_dialog.cc:44 quantize_dialog.cc:155 +#: editor.cc:159 editor.cc:3385 quantize_dialog.cc:44 quantize_dialog.cc:155 msgid "Beats/2" msgstr "Moitié de temps" -#: editor.cc:160 editor.cc:3415 quantize_dialog.cc:45 quantize_dialog.cc:157 +#: editor.cc:160 editor.cc:3419 quantize_dialog.cc:45 quantize_dialog.cc:157 msgid "Beats" msgstr "Temps" -#: editor.cc:161 editor.cc:3417 +#: editor.cc:161 editor.cc:3421 msgid "Bars" msgstr "Mesures" -#: editor.cc:162 editor.cc:3419 +#: editor.cc:162 editor.cc:3423 msgid "Marks" msgstr "Repères" -#: editor.cc:163 editor.cc:3421 +#: editor.cc:163 editor.cc:3425 msgid "Region starts" msgstr "Débuts de régions" -#: editor.cc:164 editor.cc:3423 +#: editor.cc:164 editor.cc:3427 msgid "Region ends" msgstr "Fins de régions" -#: editor.cc:165 editor.cc:3427 +#: editor.cc:165 editor.cc:3431 msgid "Region syncs" msgstr "Synchro de régions" -#: editor.cc:166 editor.cc:3425 +#: editor.cc:166 editor.cc:3429 msgid "Region bounds" msgstr "Limites de régions" -#: editor.cc:171 editor.cc:3455 editor_actions.cc:485 +#: editor.cc:171 editor.cc:3459 editor_actions.cc:485 msgid "No Grid" msgstr "Pas de grille" -#: editor.cc:172 editor.cc:3457 editor_actions.cc:486 +#: editor.cc:172 editor.cc:3461 editor_actions.cc:486 msgid "Grid" msgstr "Grille" -#: editor.cc:173 editor.cc:3459 editor_actions.cc:487 +#: editor.cc:173 editor.cc:3463 editor_actions.cc:487 msgid "Magnetic" msgstr "Magnétique" -#: editor.cc:178 editor.cc:188 editor.cc:3498 editor.cc:3523 +#: editor.cc:178 editor.cc:188 editor.cc:3502 editor.cc:3527 #: editor_actions.cc:117 editor_actions.cc:468 msgid "Playhead" msgstr "Tête de lecture" -#: editor.cc:179 editor.cc:3496 editor_actions.cc:470 +#: editor.cc:179 editor.cc:3500 editor_actions.cc:470 msgid "Marker" msgstr "Repère" -#: editor.cc:180 editor.cc:189 editor.cc:3525 editor_actions.cc:469 +#: editor.cc:180 editor.cc:189 editor.cc:3529 editor_actions.cc:469 msgid "Mouse" msgstr "Souris" -#: editor.cc:185 editor.cc:3517 mono_panner_editor.cc:42 +#: editor.cc:185 editor.cc:3521 mono_panner_editor.cc:42 msgid "Left" msgstr "Gauche" -#: editor.cc:186 editor.cc:3519 mono_panner_editor.cc:47 +#: editor.cc:186 editor.cc:3523 mono_panner_editor.cc:47 msgid "Right" msgstr "Droite" -#: editor.cc:187 editor.cc:3521 +#: editor.cc:187 editor.cc:3525 msgid "Center" msgstr "Centre" -#: editor.cc:190 editor.cc:3090 editor.cc:3527 +#: editor.cc:190 editor.cc:3094 editor.cc:3531 msgid "Edit point" msgstr "Point d'édition" @@ -2435,301 +2600,341 @@ msgstr "" msgid "mode" msgstr "mode" -#: editor.cc:542 +#: editor.cc:541 msgid "Regions" msgstr "Régions" -#: editor.cc:543 +#: editor.cc:542 msgid "Tracks & Busses" msgstr "Pistes/Bus" -#: editor.cc:544 +#: editor.cc:543 msgid "Snapshots" msgstr "Clichés" -#: editor.cc:546 +#: editor.cc:544 +msgid "Track & Bus Groups" +msgstr "" + +#: editor.cc:545 msgid "Ranges & Marks" msgstr "Intervalles et repères" -#: editor.cc:690 editor.cc:5345 rc_option_editor.cc:1294 -#: rc_option_editor.cc:1302 rc_option_editor.cc:1310 rc_option_editor.cc:1318 -#: rc_option_editor.cc:1335 rc_option_editor.cc:1337 rc_option_editor.cc:1345 -#: rc_option_editor.cc:1353 rc_option_editor.cc:1373 rc_option_editor.cc:1385 -#: rc_option_editor.cc:1387 rc_option_editor.cc:1395 rc_option_editor.cc:1403 -#: rc_option_editor.cc:1411 rc_option_editor.cc:1419 rc_option_editor.cc:1427 -#: rc_option_editor.cc:1442 rc_option_editor.cc:1446 +#: editor.cc:690 editor.cc:5349 rc_option_editor.cc:1292 +#: rc_option_editor.cc:1300 rc_option_editor.cc:1308 rc_option_editor.cc:1316 +#: rc_option_editor.cc:1333 rc_option_editor.cc:1335 rc_option_editor.cc:1343 +#: rc_option_editor.cc:1351 rc_option_editor.cc:1371 rc_option_editor.cc:1383 +#: rc_option_editor.cc:1385 rc_option_editor.cc:1393 rc_option_editor.cc:1401 +#: rc_option_editor.cc:1409 rc_option_editor.cc:1417 rc_option_editor.cc:1432 +#: rc_option_editor.cc:1436 msgid "Editor" msgstr "Éditeur" -#: editor.cc:1215 editor.cc:1225 editor.cc:4440 editor_actions.cc:130 +#: editor.cc:1215 editor.cc:1225 editor.cc:4444 editor_actions.cc:130 #: editor_actions.cc:1813 msgid "Loop" msgstr "Boucle" -#: editor.cc:1231 editor.cc:1241 editor.cc:4467 editor_actions.cc:131 +#: editor.cc:1231 editor.cc:1241 editor.cc:4471 editor_actions.cc:131 #: time_info_box.cc:67 msgid "Punch" msgstr "Punch in/out" -#: editor.cc:1352 +#: editor.cc:1353 msgid "Linear (for highly correlated material)" msgstr "" -#: editor.cc:1362 editor.cc:1499 editor.cc:1561 +#: editor.cc:1363 editor.cc:1500 editor.cc:1562 msgid "Constant power" msgstr "" -#: editor.cc:1371 editor.cc:1492 editor.cc:1554 +#: editor.cc:1372 editor.cc:1493 editor.cc:1555 msgid "Symmetric" msgstr "" -#: editor.cc:1381 editor.cc:1474 editor.cc:1536 +#: editor.cc:1382 editor.cc:1475 editor.cc:1537 msgid "Slow" msgstr "Lent" -#: editor.cc:1390 editor.cc:1483 editor.cc:1545 sfdb_ui.cc:1627 +#: editor.cc:1391 editor.cc:1484 editor.cc:1546 sfdb_ui.cc:1627 #: sfdb_ui.cc:1736 msgid "Fast" msgstr "Rapide" -#: editor.cc:1437 +#: editor.cc:1438 msgid "programming error: fade in canvas item has no regionview data pointer!" msgstr "programming error: fade in canvas item has no regionview data pointer!" -#: editor.cc:1448 editor.cc:1512 +#: editor.cc:1449 editor.cc:1513 msgid "Deactivate" msgstr "Désactiver" -#: editor.cc:1450 editor.cc:1514 +#: editor.cc:1451 editor.cc:1515 msgid "Activate" msgstr "Activer" -#: editor.cc:1458 editor.cc:1521 +#: editor.cc:1459 editor.cc:1522 msgid "Slowest" msgstr "Très lent" -#: editor.cc:1572 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 +#: editor.cc:1573 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 msgid "programming error: " msgstr "programming error: " -#: editor.cc:1673 editor.cc:1681 editor_ops.cc:3522 +#: editor.cc:1674 editor.cc:1682 editor_ops.cc:3522 msgid "Freeze" msgstr "Bloquer" -#: editor.cc:1677 +#: editor.cc:1678 msgid "Unfreeze" msgstr "Débloquer" -#: editor.cc:1816 +#: editor.cc:1817 msgid "Selected Regions" msgstr "régions sélectionnées" -#: editor.cc:1852 editor_markers.cc:895 +#: editor.cc:1853 editor_markers.cc:895 msgid "Play Range" msgstr "Lire l'intervalle" -#: editor.cc:1853 editor_markers.cc:898 +#: editor.cc:1854 editor_markers.cc:898 msgid "Loop Range" msgstr "Lire en boucle" -#: editor.cc:1862 editor_actions.cc:332 +#: editor.cc:1863 editor_actions.cc:332 msgid "Move Range Start to Previous Region Boundary" msgstr "Placer le début de l'intervalle à la fin de la région précendente" -#: editor.cc:1869 editor_actions.cc:339 +#: editor.cc:1870 editor_actions.cc:339 msgid "Move Range Start to Next Region Boundary" msgstr "Déplacer début d'intervalle vers limite de région suiv." -#: editor.cc:1876 editor_actions.cc:346 +#: editor.cc:1877 editor_actions.cc:346 msgid "Move Range End to Previous Region Boundary" msgstr "Déplacer limite d'intervalle vers limite de région préc." -#: editor.cc:1883 editor_actions.cc:353 +#: editor.cc:1884 editor_actions.cc:353 msgid "Move Range End to Next Region Boundary" msgstr "Déplacer fin d'intervalle vers limite de région suiv." -#: editor.cc:1889 +#: editor.cc:1890 msgid "Convert to Region In-Place" msgstr "Convertir en region (sur place)" -#: editor.cc:1890 +#: editor.cc:1891 msgid "Convert to Region in Region List" msgstr "Convertir en région (vers la liste des régions)" -#: editor.cc:1893 editor_markers.cc:925 +#: editor.cc:1894 editor_markers.cc:925 msgid "Select All in Range" msgstr "Sélectionner tout dans l'intervalle" -#: editor.cc:1896 +#: editor.cc:1897 msgid "Set Loop from Range" msgstr "Créer une boucle à partir de l'intervalle" -#: editor.cc:1900 +#: editor.cc:1898 +msgid "Set Punch from Range" +msgstr "" + +#: editor.cc:1901 msgid "Add Range Markers" msgstr "Ajoute des repères d'intervalle" -#: editor.cc:1903 +#: editor.cc:1904 msgid "Crop Region to Range" msgstr "Raccourcir la région à l'intervalle" -#: editor.cc:1905 editor_actions.cc:289 +#: editor.cc:1905 +msgid "Fill Range with Region" +msgstr "" + +#: editor.cc:1906 editor_actions.cc:289 msgid "Duplicate Range" msgstr "Dupliquer l'intervalle" -#: editor.cc:1908 +#: editor.cc:1909 msgid "Consolidate Range" msgstr "Consolider l'intervalle" -#: editor.cc:1909 +#: editor.cc:1910 msgid "Consolidate Range With Processing" msgstr "" -#: editor.cc:1910 +#: editor.cc:1911 msgid "Bounce Range to Region List" msgstr "" -#: editor.cc:1911 +#: editor.cc:1912 msgid "Bounce Range to Region List With Processing" msgstr "" -#: editor.cc:1927 editor.cc:2008 editor_actions.cc:281 +#: editor.cc:1913 editor_markers.cc:908 +msgid "Export Range..." +msgstr "" + +#: editor.cc:1915 +msgid "Export Video Range..." +msgstr "" + +#: editor.cc:1931 editor.cc:2012 editor_actions.cc:281 msgid "Play From Edit Point" msgstr "Lire depuis le point d'édition" -#: editor.cc:1928 editor.cc:2009 +#: editor.cc:1932 editor.cc:2013 msgid "Play From Start" msgstr "Lire depuis le début" -#: editor.cc:1929 +#: editor.cc:1933 msgid "Play Region" msgstr "Lire la région" -#: editor.cc:1931 +#: editor.cc:1935 msgid "Loop Region" msgstr "Lire la région en boucle" -#: editor.cc:1941 editor.cc:2018 +#: editor.cc:1945 editor.cc:2022 msgid "Select All in Track" msgstr "Sélectionner tout dans la piste" -#: editor.cc:1942 editor.cc:2019 editor_actions.cc:185 -#: export_timespan_selector.cc:53 processor_box.cc:2237 +#: editor.cc:1946 editor.cc:2023 editor_actions.cc:185 +#: export_timespan_selector.cc:53 processor_box.cc:2276 msgid "Select All" msgstr "Sélectionner tout" -#: editor.cc:1943 editor.cc:2020 +#: editor.cc:1947 editor.cc:2024 msgid "Invert Selection in Track" msgstr "Inverser la sélection dans la piste" -#: editor.cc:1944 editor.cc:2021 editor_actions.cc:187 +#: editor.cc:1948 editor.cc:2025 editor_actions.cc:187 msgid "Invert Selection" msgstr "Inverser la sélection" -#: editor.cc:1949 editor.cc:2023 editor_actions.cc:188 +#: editor.cc:1950 +msgid "Set Range to Loop Range" +msgstr "" + +#: editor.cc:1951 +msgid "Set Range to Punch Range" +msgstr "" + +#: editor.cc:1953 editor.cc:2027 editor_actions.cc:188 msgid "Select All After Edit Point" msgstr "Tout après le point d'édition" -#: editor.cc:1950 editor.cc:2024 editor_actions.cc:189 +#: editor.cc:1954 editor.cc:2028 editor_actions.cc:189 msgid "Select All Before Edit Point" msgstr "Tout avant le point d'édition" -#: editor.cc:1951 editor.cc:2025 +#: editor.cc:1955 editor.cc:2029 msgid "Select All After Playhead" msgstr "Tout après la tête de lecture" -#: editor.cc:1952 editor.cc:2026 +#: editor.cc:1956 editor.cc:2030 msgid "Select All Before Playhead" msgstr "Tout avant la tête de lecture" -#: editor.cc:1953 +#: editor.cc:1957 msgid "Select All Between Playhead and Edit Point" msgstr "Sélectionner tout entre la tête de lecture et le point d'édition" -#: editor.cc:1955 +#: editor.cc:1958 +msgid "Select All Within Playhead and Edit Point" +msgstr "" + +#: editor.cc:1959 msgid "Select Range Between Playhead and Edit Point" msgstr "Selectionner de la tête de lecture jusqu'au point d'édition" -#: editor.cc:1957 editor.cc:2028 editor_actions.cc:127 editor_actions.cc:128 +#: editor.cc:1961 editor.cc:2032 editor_actions.cc:127 editor_actions.cc:128 msgid "Select" msgstr "Sélectionner" -#: editor.cc:1965 editor.cc:2036 editor_actions.cc:309 processor_box.cc:2222 +#: editor.cc:1969 editor.cc:2040 editor_actions.cc:309 processor_box.cc:2261 msgid "Cut" msgstr "Couper" -#: editor.cc:1966 editor.cc:2037 editor_actions.cc:312 processor_box.cc:2225 +#: editor.cc:1970 editor.cc:2041 editor_actions.cc:312 processor_box.cc:2264 msgid "Copy" msgstr "Copier" -#: editor.cc:1967 editor.cc:2038 editor_actions.cc:313 processor_box.cc:2233 +#: editor.cc:1971 editor.cc:2042 editor_actions.cc:313 processor_box.cc:2272 msgid "Paste" msgstr "Coller" -#: editor.cc:1971 editor_actions.cc:87 +#: editor.cc:1975 editor_actions.cc:87 msgid "Align" msgstr "Aligner" -#: editor.cc:1972 +#: editor.cc:1976 msgid "Align Relative" msgstr "Aligner relativement" -#: editor.cc:1979 +#: editor.cc:1983 msgid "Insert Selected Region" msgstr "Insérer la région sélectionnée" -#: editor.cc:1980 +#: editor.cc:1984 msgid "Insert Existing Media" msgstr "Insérer des fichiers audio externes" -#: editor.cc:1991 editor.cc:2047 +#: editor.cc:1993 editor.cc:2049 +msgid "Nudge Entire Track Later" +msgstr "" + +#: editor.cc:1994 editor.cc:2050 +msgid "Nudge Track After Edit Point Later" +msgstr "" + +#: editor.cc:1995 editor.cc:2051 msgid "Nudge Entire Track Earlier" msgstr "Décaler toute la piste à gauche" -#: editor.cc:1992 editor.cc:2048 +#: editor.cc:1996 editor.cc:2052 msgid "Nudge Track After Edit Point Earlier" msgstr "Décaler la piste à gauche après le point d'édition" -#: editor.cc:1994 editor.cc:2050 +#: editor.cc:1998 editor.cc:2054 msgid "Nudge" msgstr "Décaler" -#: editor.cc:3070 +#: editor.cc:3074 msgid "Smart Mode (add Range functions to Object mode)" msgstr "Mode Smart (ajoute des fonctions d'intervalle au mode Object)" -#: editor.cc:3071 +#: editor.cc:3075 msgid "Object Mode (select/move Objects)" msgstr "Mode Objet (Sélectionner/déplacer des objets)" -#: editor.cc:3072 +#: editor.cc:3076 msgid "Range Mode (select/move Ranges)" msgstr "Mode Intervalles (sélectionner/déplacer des intervalles)" -#: editor.cc:3073 +#: editor.cc:3077 msgid "Draw/Edit MIDI Notes" msgstr "Ajouter/éditer les notes MIDI" -#: editor.cc:3074 +#: editor.cc:3078 msgid "Draw Region Gain" msgstr "Éditer le gain de la région" -#: editor.cc:3075 +#: editor.cc:3079 msgid "Select Zoom Range" msgstr "Sélectionner la zone de zoom" -#: editor.cc:3076 +#: editor.cc:3080 msgid "Stretch/Shrink Regions and MIDI Notes" msgstr "Étirer/contracter des régions et des notes MIDI" -#: editor.cc:3077 +#: editor.cc:3081 msgid "Listen to Specific Regions" msgstr "Écouter des régions spécifiques" -#: editor.cc:3078 +#: editor.cc:3082 msgid "Note Level Editing" msgstr "" -#: editor.cc:3079 +#: editor.cc:3083 msgid "" "Groups: click to (de)activate\n" "Context-click for other operations" @@ -2738,85 +2943,89 @@ msgstr "" "un groupe.\n" "Clic droit pour les autres options." -#: editor.cc:3081 +#: editor.cc:3084 +msgid "Nudge Region/Selection Later" +msgstr "" + +#: editor.cc:3085 msgid "Nudge Region/Selection Earlier" msgstr "Décaler vers la gauche (région ou sélection)" -#: editor.cc:3082 editor_actions.cc:242 +#: editor.cc:3086 editor_actions.cc:242 msgid "Zoom In" msgstr "Zoom avant" -#: editor.cc:3083 editor_actions.cc:241 +#: editor.cc:3087 editor_actions.cc:241 msgid "Zoom Out" msgstr "Zoom arrière" -#: editor.cc:3084 editor_actions.cc:243 +#: editor.cc:3088 editor_actions.cc:243 msgid "Zoom to Session" msgstr "Montrer toute la session" -#: editor.cc:3085 +#: editor.cc:3089 msgid "Zoom focus" msgstr "Zoomer vers" -#: editor.cc:3086 +#: editor.cc:3090 msgid "Expand Tracks" msgstr "Agrandir la taille des pistes" -#: editor.cc:3087 +#: editor.cc:3091 msgid "Shrink Tracks" msgstr "Réduire la taille des pistes" -#: editor.cc:3088 +#: editor.cc:3092 msgid "Snap/Grid Units" msgstr "Unités d'alignement/grille" -#: editor.cc:3089 +#: editor.cc:3093 msgid "Snap/Grid Mode" msgstr "Mode d'alignement/grille" -#: editor.cc:3091 +#: editor.cc:3095 msgid "Edit Mode" msgstr "Mode d'édition" -#: editor.cc:3092 +#: editor.cc:3096 msgid "" "Nudge Clock\n" "(controls distance used to nudge regions and selections)" msgstr "" -#: editor.cc:3194 +#: editor.cc:3198 msgid "malformed URL passed to drag-n-drop code" msgstr "URL incorrecte transmise" -#: editor.cc:3256 editor_actions.cc:291 +#: editor.cc:3260 editor_actions.cc:291 msgid "Command|Undo" msgstr "Annuler" -#: editor.cc:3258 +#: editor.cc:3262 msgid "Command|Undo (%1)" msgstr "Annuler (%1)" -#: editor.cc:3265 editor_actions.cc:292 +#: editor.cc:3269 editor_actions.cc:292 msgid "Redo" msgstr "Refaire" -#: editor.cc:3267 +#: editor.cc:3271 msgid "Redo (%1)" msgstr "Refaire (%1)" -#: editor.cc:3286 editor.cc:3310 editor_actions.cc:106 editor_actions.cc:1794 +#: editor.cc:3290 editor.cc:3314 editor_actions.cc:106 editor_actions.cc:1794 msgid "Duplicate" msgstr "Dupliquer" -#: editor.cc:3287 +#: editor.cc:3291 msgid "Number of duplications:" msgstr "Nombre de duplications:" -#: editor.cc:3864 +#: editor.cc:3868 msgid "Playlist Deletion" msgstr "Suppression de la liste de lecture" -#: editor.cc:3865 +#: editor.cc:3869 msgid "" "Playlist %1 is currently unused.\n" "If it is kept, its audio files will not be cleaned.\n" @@ -2826,36 +3035,37 @@ msgstr "" "Si vous la conservez, aucun fichier audio qu'elle utilise ne sera nettoyé.\n" "Si vous l'effacez, les fichiers audio qu'elle seule utilise seront nettoyés." -#: editor.cc:3875 +#: editor.cc:3879 msgid "Delete Playlist" msgstr "Supprimer la liste de lecture" -#: editor.cc:3876 +#: editor.cc:3880 msgid "Keep Playlist" msgstr "Garder la liste de lecture" -#: editor.cc:3877 editor_audio_import.cc:581 editor_ops.cc:5856 -#: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 +#: editor.cc:3881 editor_audio_import.cc:581 editor_ops.cc:5856 +#: engine_dialog.cc:1711 sfdb_freesound_mootcher.cc:69 processor_box.cc:2030 +#: processor_box.cc:2055 msgid "Cancel" msgstr "Annuler" -#: editor.cc:4021 +#: editor.cc:4025 msgid "new playlists" msgstr "nouvelles listes de lecture" -#: editor.cc:4037 +#: editor.cc:4041 msgid "copy playlists" msgstr "copier les listes de lecture" -#: editor.cc:4052 +#: editor.cc:4056 msgid "clear playlists" msgstr "effacer les listes de lecture" -#: editor.cc:4687 +#: editor.cc:4691 msgid "Please wait while %1 loads visual data." msgstr "Veuillez patienter pendant que %1 charge les données graphiques." -#: editor.cc:5492 editor_markers.cc:940 panner_ui.cc:393 processor_box.cc:2253 +#: editor.cc:5496 editor_markers.cc:940 panner_ui.cc:392 processor_box.cc:2292 msgid "Edit..." msgstr "Éditer..." @@ -2904,8 +3114,8 @@ msgstr "Empilement des régions" msgid "Position" msgstr "Position" -#: editor_actions.cc:101 gain_meter.cc:121 gain_meter.cc:791 panner_ui.cc:177 -#: panner_ui.cc:586 +#: editor_actions.cc:101 gain_meter.cc:120 gain_meter.cc:794 panner_ui.cc:176 +#: panner_ui.cc:585 msgid "Trim" msgstr "Rogner" @@ -2955,7 +3165,7 @@ msgstr "Options MIDI" msgid "Misc Options" msgstr "Autres options" -#: editor_actions.cc:115 rc_option_editor.cc:1460 route_group_dialog.cc:48 +#: editor_actions.cc:115 rc_option_editor.cc:1450 route_group_dialog.cc:48 #: session_option_editor.cc:218 session_option_editor.cc:225 msgid "Monitoring" msgstr "Monitoring" @@ -3041,10 +3251,18 @@ msgstr "Barre latérale des onglets" msgid "Playhead to Next Region Boundary" msgstr "Tête de lecture vers limite de région suiv." +#: editor_actions.cc:154 +msgid "Playhead to Next Region Boundary (No Track Selection)" +msgstr "" + #: editor_actions.cc:155 msgid "Playhead to Previous Region Boundary" msgstr "Tête de lecture vers limite de région préc." +#: editor_actions.cc:156 +msgid "Playhead to Previous Region Boundary (No Track Selection)" +msgstr "" + #: editor_actions.cc:158 msgid "Playhead to Next Region Start" msgstr "début de la région suivante" @@ -3053,6 +3271,10 @@ msgstr "début de la région suivante" msgid "Playhead to Next Region End" msgstr "Fin de la région suivante" +#: editor_actions.cc:160 +msgid "Playhead to Next Region Sync" +msgstr "" + #: editor_actions.cc:162 msgid "Playhead to Previous Region Start" msgstr "début de la région précédente" @@ -3061,6 +3283,58 @@ msgstr "début de la région précédente" msgid "Playhead to Previous Region End" msgstr "fin de la région précédente" +#: editor_actions.cc:164 +msgid "Playhead to Previous Region Sync" +msgstr "" + +#: editor_actions.cc:166 +msgid "To Next Region Boundary" +msgstr "" + +#: editor_actions.cc:167 +msgid "To Next Region Boundary (No Track Selection)" +msgstr "" + +#: editor_actions.cc:168 +msgid "To Previous Region Boundary" +msgstr "" + +#: editor_actions.cc:169 +msgid "To Previous Region Boundary (No Track Selection)" +msgstr "" + +#: editor_actions.cc:171 +msgid "To Next Region Start" +msgstr "" + +#: editor_actions.cc:172 +msgid "To Next Region End" +msgstr "" + +#: editor_actions.cc:173 +msgid "To Next Region Sync" +msgstr "" + +#: editor_actions.cc:175 +msgid "To Previous Region Start" +msgstr "" + +#: editor_actions.cc:176 +msgid "To Previous Region End" +msgstr "" + +#: editor_actions.cc:177 +msgid "To Previous Region Sync" +msgstr "" + +#: editor_actions.cc:179 +msgid "To Range Start" +msgstr "" + +#: editor_actions.cc:180 +msgid "To Range End" +msgstr "" + #: editor_actions.cc:182 msgid "Playhead to Range Start" msgstr "début de la région" @@ -3069,7 +3343,7 @@ msgstr "début de la région" msgid "Playhead to Range End" msgstr "fin de la région" -#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2239 +#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2278 msgid "Deselect All" msgstr "Désélectionner tout" @@ -3081,6 +3355,10 @@ msgstr "Sélectionner tout ce qui chevauche avec l'intervalle" msgid "Select All Inside Edit Range" msgstr "Sélectionner tout à l'intérieur de l'intervalle" +#: editor_actions.cc:194 +msgid "Select Edit Range" +msgstr "" + #: editor_actions.cc:196 msgid "Select All in Punch Range" msgstr "Sélectionner tout dans l'intervalle de punch in/out" @@ -3101,6 +3379,18 @@ msgstr "Sélectionner piste/bus précédent" msgid "Toggle Record Enable" msgstr "Armer/Désarmer" +#: editor_actions.cc:204 +msgid "Toggle Solo" +msgstr "" + +#: editor_actions.cc:206 +msgid "Toggle Mute" +msgstr "" + +#: editor_actions.cc:208 +msgid "Toggle Solo Isolate" +msgstr "" + #: editor_actions.cc:213 msgid "Save View %1" msgstr "Enregistrer la vue %1" @@ -3113,6 +3403,10 @@ msgstr "Charger la vue %1" msgid "Locate to Mark %1" msgstr "Se placer au repère %1" +#: editor_actions.cc:229 +msgid "Jump to Next Mark" +msgstr "" + #: editor_actions.cc:230 msgid "Jump to Previous Mark" msgstr "Sauter à la marque précédente" @@ -3121,6 +3415,10 @@ msgstr "Sauter à la marque précédente" msgid "Add Mark from Playhead" msgstr "créer un repère à la tête de lecture" +#: editor_actions.cc:233 +msgid "Nudge Next Later" +msgstr "" + #: editor_actions.cc:234 msgid "Nudge Next Earlier" msgstr "Décaler suivant vers la gauche" @@ -3133,6 +3431,14 @@ msgstr "Décaler la tête de lecture vers la droite" msgid "Nudge Playhead Backward" msgstr "Décaler la tête de lecture vers la gauche" +#: editor_actions.cc:238 +msgid "Playhead To Next Grid" +msgstr "" + +#: editor_actions.cc:239 +msgid "Playhead To Previous Grid" +msgstr "" + #: editor_actions.cc:244 msgid "Zoom to Region" msgstr "Montrer toute la session" @@ -3189,6 +3495,14 @@ msgstr "Défiler en avant" msgid "Center Playhead" msgstr "Centrer sur la tête de lecture" +#: editor_actions.cc:268 +msgid "Center Edit Point" +msgstr "" + +#: editor_actions.cc:270 +msgid "Playhead Forward" +msgstr "" + #: editor_actions.cc:271 msgid "Playhead Backward" msgstr "tête de lecture en arrière" @@ -3229,6 +3543,10 @@ msgstr "Placer sur le curseur d'édition" msgid "Active Marker to Mouse" msgstr "Déplacer le Repère actif vers la souris" +#: editor_actions.cc:294 +msgid "Export Audio" +msgstr "" + #: editor_actions.cc:295 export_dialog.cc:406 msgid "Export Range" msgstr "Exporter la zone de sélection" @@ -3245,10 +3563,18 @@ msgstr "Séparer suivant la boucle" msgid "Crop" msgstr "Découper" +#: editor_actions.cc:315 +msgid "Set Tempo from Edit Range = Bar" +msgstr "" + #: editor_actions.cc:317 msgid "Log" msgstr "Log" +#: editor_actions.cc:320 +msgid "Move Later to Transient" +msgstr "" + #: editor_actions.cc:321 msgid "Move Earlier to Transient" msgstr "Reculer à l'éphémère précédant" @@ -3273,6 +3599,14 @@ msgstr "Suivre la tête de lecture" msgid "Remove Last Capture" msgstr "Détruire le dernier enregistr." +#: editor_actions.cc:360 +msgid "Stationary Playhead" +msgstr "" + +#: editor_actions.cc:362 insert_time_dialog.cc:32 +msgid "Insert Time" +msgstr "" + #: editor_actions.cc:365 msgid "Toggle Active" msgstr "Activer/Désactiver" @@ -3327,6 +3661,10 @@ msgstr "la tête de lecture" msgid "Zoom Focus Mouse" msgstr "la souris" +#: editor_actions.cc:402 +msgid "Zoom Focus Edit Point" +msgstr "" + #: editor_actions.cc:404 msgid "Next Zoom Focus" msgstr "Option suivante pour Zoomer vers" @@ -3347,6 +3685,10 @@ msgstr "outil d'objet" msgid "Range Tool" msgstr "outil de zone de sélection" +#: editor_actions.cc:429 +msgid "Note Drawing Tool" +msgstr "" + #: editor_actions.cc:435 msgid "Gain Tool" msgstr "outil de gain" @@ -3355,6 +3697,14 @@ msgstr "outil de gain" msgid "Zoom Tool" msgstr "outil de zoom" +#: editor_actions.cc:447 +msgid "Audition Tool" +msgstr "" + +#: editor_actions.cc:453 +msgid "Time FX Tool" +msgstr "" + #: editor_actions.cc:459 msgid "Step Mouse Mode" msgstr "" @@ -3367,6 +3717,10 @@ msgstr "Éditer le MIDI" msgid "Change Edit Point" msgstr "Changer le point d'édition" +#: editor_actions.cc:473 +msgid "Change Edit Point Including Marker" +msgstr "" + #: editor_actions.cc:475 msgid "Splice" msgstr "Collant" @@ -3436,6 +3790,10 @@ msgstr "Aligner sur les secondes" msgid "Snap to Minutes" msgstr "Aligner sur les minutes" +#: editor_actions.cc:505 +msgid "Snap to One Twenty Eighths" +msgstr "" + #: editor_actions.cc:506 msgid "Snap to Sixty Fourths" msgstr "Aligner sur un 64ème de temps" @@ -3532,18 +3890,42 @@ msgstr "Aligner sur limite de région" msgid "Show Marker Lines" msgstr "Montrer les barres de repères" +#: editor_actions.cc:541 +msgid "Loop/Punch" +msgstr "" + #: editor_actions.cc:545 msgid "Min:Sec" msgstr "Minutes:Secondes" -#: editor_actions.cc:549 rc_option_editor.cc:1842 +#: editor_actions.cc:547 editor_actions.cc:550 +msgid "Video Monitor" +msgstr "" + +#: editor_actions.cc:549 rc_option_editor.cc:1829 msgid "Video" msgstr "" +#: editor_actions.cc:552 +msgid "Always on Top" +msgstr "" + +#: editor_actions.cc:554 +msgid "Frame number" +msgstr "" + +#: editor_actions.cc:555 +msgid "Timecode Background" +msgstr "" + #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" +#: editor_actions.cc:557 +msgid "Letterbox" +msgstr "" + #: editor_actions.cc:558 msgid "Original Size" msgstr "" @@ -3650,6 +4032,10 @@ msgstr "Afficher le logo" msgid "Toggle MIDI Input Active for Editor-Selected Tracks/Busses" msgstr "" +#: editor_actions.cc:696 +msgid "Loaded editor bindings from %1" +msgstr "" + #: editor_actions.cc:698 msgid "Could not find editor.bindings in search path %1" msgstr "" @@ -3748,6 +4134,26 @@ msgstr "Remplir la piste" msgid "Set Loop Range" msgstr "Boucle" +#: editor_actions.cc:1816 +msgid "Set Punch" +msgstr "" + +#: editor_actions.cc:1820 +msgid "Add Single Range Marker" +msgstr "" + +#: editor_actions.cc:1825 +msgid "Add Range Marker Per Region" +msgstr "" + +#: editor_actions.cc:1829 +msgid "Snap Position To Grid" +msgstr "" + +#: editor_actions.cc:1832 +msgid "Close Gaps" +msgstr "" + #: editor_actions.cc:1835 msgid "Rhythm Ferret..." msgstr "Fureteur de rythme..." @@ -3768,6 +4174,18 @@ msgstr "Définir la durée de montée" msgid "Set Fade Out Length" msgstr "Définir la durée de descente" +#: editor_actions.cc:1850 +msgid "Set Tempo from Region = Bar" +msgstr "" + +#: editor_actions.cc:1855 +msgid "Split at Percussion Onsets" +msgstr "" + +#: editor_actions.cc:1860 +msgid "List Editor..." +msgstr "" + #: editor_actions.cc:1863 msgid "Properties..." msgstr "Propriétés..." @@ -3804,6 +4222,10 @@ msgstr "Réinitialiser le gain" msgid "Envelope Active" msgstr "Enveloppe Active" +#: editor_actions.cc:1885 +msgid "Quantize..." +msgstr "" + #: editor_actions.cc:1886 editor_actions.cc:1887 msgid "Insert Patch Change..." msgstr "" @@ -3820,10 +4242,18 @@ msgstr "Supprimer le silence..." msgid "Set Range Selection" msgstr "Choisir intervalle depuis la région" +#: editor_actions.cc:1892 +msgid "Nudge Later" +msgstr "" + #: editor_actions.cc:1893 msgid "Nudge Earlier" msgstr "Décaler vers la gauche" +#: editor_actions.cc:1898 +msgid "Nudge Later by Capture Offset" +msgstr "" + #: editor_actions.cc:1905 msgid "Nudge Earlier by Capture Offset" msgstr "Décaler de l'offset de capture vers la gauche" @@ -3840,6 +4270,18 @@ msgstr "Rogner aux points de punch-in/out" msgid "Trim to Previous" msgstr "Rogner aux précédent" +#: editor_actions.cc:1913 +msgid "Trim to Next" +msgstr "" + +#: editor_actions.cc:1920 +msgid "Insert Region From Region List" +msgstr "" + +#: editor_actions.cc:1926 +msgid "Set Sync Position" +msgstr "" + #: editor_actions.cc:1927 msgid "Place Transient" msgstr "" @@ -3848,6 +4290,38 @@ msgstr "" msgid "Split" msgstr "Scinder" +#: editor_actions.cc:1929 +msgid "Trim Start at Edit Point" +msgstr "" + +#: editor_actions.cc:1930 +msgid "Trim End at Edit Point" +msgstr "" + +#: editor_actions.cc:1935 +msgid "Align Start" +msgstr "" + +#: editor_actions.cc:1942 +msgid "Align Start Relative" +msgstr "" + +#: editor_actions.cc:1946 +msgid "Align End" +msgstr "" + +#: editor_actions.cc:1951 +msgid "Align End Relative" +msgstr "" + +#: editor_actions.cc:1958 +msgid "Align Sync" +msgstr "" + +#: editor_actions.cc:1965 +msgid "Align Sync Relative" +msgstr "" + #: editor_actions.cc:1969 editor_actions.cc:1972 msgid "Choose Top..." msgstr "" @@ -3920,6 +4394,10 @@ msgstr "Lier quand même" msgid "fixed time region drag" msgstr "Déplacement vertical de région" +#: editor_drag.cc:1700 +msgid "Video Start:" +msgstr "" + #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -3944,30 +4422,50 @@ msgstr "copier le changement tempo" msgid "move tempo mark" msgstr "déplacer le changement tempo" -#: editor_drag.cc:2545 +#: editor_drag.cc:2550 msgid "change fade in length" msgstr "modifier la durée de montée" -#: editor_drag.cc:2663 +#: editor_drag.cc:2668 msgid "change fade out length" msgstr "modifier la durée de descente" -#: editor_drag.cc:3018 +#: editor_drag.cc:3023 msgid "move marker" msgstr "déplacer le repère" -#: editor_drag.cc:3581 +#: editor_drag.cc:3586 msgid "An error occurred while executing time stretch operation" msgstr "" -#: editor_drag.cc:4081 editor_markers.cc:680 +#: editor_drag.cc:4016 +msgid "programming_error: %1" +msgstr "" + +#: editor_drag.cc:4086 editor_markers.cc:680 msgid "new range marker" msgstr "nouvel intervalle" -#: editor_drag.cc:4762 +#: editor_drag.cc:4767 msgid "rubberband selection" msgstr "sélection élastique" +#: editor_route_groups.cc:66 +msgid "No Selection = All Tracks?" +msgstr "" + +#: editor_route_groups.cc:95 +msgid "Col" +msgstr "" + +#: editor_route_groups.cc:95 +msgid "Group Tab Color" +msgstr "" + +#: editor_route_groups.cc:96 +msgid "Name of Group" +msgstr "" + #: editor_route_groups.cc:97 editor_routes.cc:203 msgid "V" msgstr "V" @@ -3976,14 +4474,26 @@ msgstr "V" msgid "Group is visible?" msgstr "Groupe est visible?" +#: editor_route_groups.cc:98 +msgid "On" +msgstr "" + #: editor_route_groups.cc:98 msgid "Group is enabled?" msgstr "" +#: editor_route_groups.cc:99 +msgid "group|G" +msgstr "" + #: editor_route_groups.cc:99 msgid "Sharing Gain?" msgstr "" +#: editor_route_groups.cc:100 +msgid "relative|Rel" +msgstr "" + #: editor_route_groups.cc:100 msgid "Relative Gain Changes?" msgstr "" @@ -4017,10 +4527,18 @@ msgstr "Partager l'armement?" msgid "monitoring|Mon" msgstr "monitoring|Mon" +#: editor_route_groups.cc:104 +msgid "Sharing Monitoring Choice?" +msgstr "" + #: editor_route_groups.cc:105 msgid "selection|Sel" msgstr "sélection|Sel " +#: editor_route_groups.cc:105 +msgid "Sharing Selected/Editing Status?" +msgstr "" + #: editor_route_groups.cc:106 msgid "active|A" msgstr "active|A" @@ -4042,8 +4560,8 @@ msgstr "(sans nom)" #: editor_markers.cc:1022 editor_markers.cc:1041 editor_markers.cc:1071 #: editor_markers.cc:1102 editor_markers.cc:1132 editor_markers.cc:1160 #: editor_markers.cc:1191 editor_markers.cc:1216 editor_markers.cc:1267 -#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1514 -#: editor_mouse.cc:2478 +#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1526 +#: editor_mouse.cc:2528 msgid "programming error: marker canvas item has no marker object pointer!" msgstr "programming error: marker canvas item has no marker object pointer!" @@ -4051,6 +4569,10 @@ msgstr "programming error: marker canvas item has no marker object pointer!" msgid "File Exists!" msgstr "Le fichier existe!" +#: editor_export_audio.cc:151 +msgid "Overwrite Existing File" +msgstr "" + #: editor_group_tabs.cc:162 msgid "Fit to Window" msgstr "Ajuster à la fenêtre" @@ -4068,6 +4590,10 @@ msgstr "fin" msgid "add marker" msgstr "ajouter un repère" +#: editor_markers.cc:677 +msgid "range" +msgstr "" + #: editor_markers.cc:713 location_ui.cc:852 msgid "remove marker" msgstr "Supprimer le repère" @@ -4092,6 +4618,22 @@ msgstr "Créer un intervalle jusqu'au marqueur suivant" msgid "Locate to Marker" msgstr "Déplacer au repère" +#: editor_markers.cc:897 +msgid "Play from Marker" +msgstr "" + +#: editor_markers.cc:900 +msgid "Set Marker from Playhead" +msgstr "" + +#: editor_markers.cc:902 +msgid "Set Range from Selection" +msgstr "" + +#: editor_markers.cc:905 +msgid "Zoom to Range" +msgstr "" + #: editor_markers.cc:912 msgid "Hide Range" msgstr "cacher" @@ -4116,32 +4658,32 @@ msgstr "Définit la zone de sélection" msgid "Set Punch Range" msgstr "Punch in→out" -#: editor_markers.cc:1351 editor_ops.cc:1699 +#: editor_markers.cc:1362 editor_ops.cc:1699 msgid "New Name:" msgstr "Nouveau nom:" -#: editor_markers.cc:1354 +#: editor_markers.cc:1365 msgid "Rename Mark" msgstr "renommer le repère" -#: editor_markers.cc:1356 +#: editor_markers.cc:1367 msgid "Rename Range" msgstr "renommer" -#: editor_markers.cc:1363 editor_mouse.cc:2510 processor_box.cc:1781 -#: processor_box.cc:2235 route_time_axis.cc:982 route_ui.cc:1540 +#: editor_markers.cc:1374 editor_mouse.cc:2560 processor_box.cc:1808 +#: processor_box.cc:2274 route_time_axis.cc:982 route_ui.cc:1540 msgid "Rename" msgstr "Renommer" -#: editor_markers.cc:1376 +#: editor_markers.cc:1387 msgid "rename marker" msgstr "renommer le repère" -#: editor_markers.cc:1399 +#: editor_markers.cc:1411 msgid "set loop range" msgstr "définir l'intervalle de boucle" -#: editor_markers.cc:1405 +#: editor_markers.cc:1417 msgid "set punch range" msgstr "définir l'intervalle de punch in/out" @@ -4153,7 +4695,7 @@ msgstr "" msgid "Editor::event_frame() used on unhandled event type %1" msgstr "Editor::event_frame() utilisé sur un événement non géré de type %1" -#: editor_mouse.cc:2235 editor_mouse.cc:2260 editor_mouse.cc:2273 +#: editor_mouse.cc:2285 editor_mouse.cc:2310 editor_mouse.cc:2323 msgid "" "programming error: control point canvas item has no control point object " "pointer!" @@ -4161,15 +4703,15 @@ msgstr "" "programming error: control point canvas item has no control point object " "pointer!" -#: editor_mouse.cc:2416 +#: editor_mouse.cc:2466 msgid "start point trim" msgstr "Rogner le début" -#: editor_mouse.cc:2441 +#: editor_mouse.cc:2491 msgid "End point trim" msgstr "Rogner la fin" -#: editor_mouse.cc:2508 +#: editor_mouse.cc:2558 msgid "Name for region:" msgstr "Nom de la région:" @@ -4205,6 +4747,10 @@ msgstr "décaler vers la gauche" msgid "build_region_boundary_cache called with snap_type = %1" msgstr "build_region_boundary_cache appelé avec snap_type = %1" +#: editor_ops.cc:1701 +msgid "New Location Marker" +msgstr "" + #: editor_ops.cc:1788 msgid "add markers" msgstr "Ajouter un repère" @@ -4229,11 +4775,39 @@ msgstr "glissé-déposé de région" msgid "insert region" msgstr "insertion de région" +#: editor_ops.cc:2261 +msgid "raise regions" +msgstr "" + +#: editor_ops.cc:2263 +msgid "raise region" +msgstr "" + +#: editor_ops.cc:2269 +msgid "raise regions to top" +msgstr "" + +#: editor_ops.cc:2271 +msgid "raise region to top" +msgstr "" + +#: editor_ops.cc:2277 +msgid "lower regions" +msgstr "" + +#: editor_ops.cc:2279 editor_ops.cc:2287 +msgid "lower region" +msgstr "" + +#: editor_ops.cc:2285 +msgid "lower regions to bottom" +msgstr "" + #: editor_ops.cc:2370 msgid "Rename Region" msgstr "renommer la région" -#: editor_ops.cc:2372 processor_box.cc:1779 route_ui.cc:1538 +#: editor_ops.cc:2372 processor_box.cc:1806 route_ui.cc:1538 msgid "New name:" msgstr "Nouveau nom:" @@ -4257,6 +4831,10 @@ msgstr "Placer le point de sync." msgid "remove region sync" msgstr "Supprimer la région de synchro" +#: editor_ops.cc:3098 +msgid "move regions to original position" +msgstr "" + #: editor_ops.cc:3100 msgid "move region to original position" msgstr "Replacer la région à sa position initiale" @@ -4321,6 +4899,18 @@ msgstr "" "Geler cette piste affectera ce cheminement à partir du premier départ/" "insertion." +#: editor_ops.cc:3505 +msgid "Freeze anyway" +msgstr "" + +#: editor_ops.cc:3506 +msgid "Don't freeze" +msgstr "" + +#: editor_ops.cc:3507 +msgid "Freeze Limits" +msgstr "" + #: editor_ops.cc:3522 msgid "Cancel Freeze" msgstr "Annuler le gel" @@ -4342,6 +4932,10 @@ msgstr "" msgid "bounce range" msgstr "copier la sélection vers un fichier audio (bounce)" +#: editor_ops.cc:3678 +msgid "delete" +msgstr "" + #: editor_ops.cc:3681 msgid "cut" msgstr "couper" @@ -4407,14 +5001,26 @@ msgstr "inverser les régions" msgid "strip silence" msgstr "supprimer le silence" +#: editor_ops.cc:4763 +msgid "Fork Region(s)" +msgstr "" + #: editor_ops.cc:4963 msgid "reset region gain" msgstr "réinitialiser le gain" +#: editor_ops.cc:5016 +msgid "region gain envelope active" +msgstr "" + #: editor_ops.cc:5043 msgid "toggle region lock" msgstr "Verrouiller/déverrouiller la régions" +#: editor_ops.cc:5067 +msgid "Toggle Video Lock" +msgstr "" + #: editor_ops.cc:5091 msgid "region lock style" msgstr "Type de verrouillage de la région" @@ -4536,6 +5142,10 @@ msgstr "" msgid "snap regions to grid" msgstr "aligner les régions sur la grille" +#: editor_ops.cc:6199 +msgid "Close Region Gaps" +msgstr "" + #: editor_ops.cc:6204 msgid "Crossfade length" msgstr "Longueur du fondu enchaîné" @@ -4553,6 +5163,10 @@ msgstr "" msgid "Ok" msgstr "Ok" +#: editor_ops.cc:6243 +msgid "close region gaps" +msgstr "" + #: editor_ops.cc:6461 route_ui.cc:1456 msgid "That would be bad news ...." msgstr "Mauvaise nouvelle..." @@ -4576,7 +5190,7 @@ msgstr "" msgid "tracks" msgstr "pistes" -#: editor_ops.cc:6485 route_ui.cc:1822 +#: editor_ops.cc:6485 route_ui.cc:1821 msgid "track" msgstr "piste" @@ -4584,7 +5198,7 @@ msgstr "piste" msgid "busses" msgstr "bus" -#: editor_ops.cc:6491 route_ui.cc:1822 +#: editor_ops.cc:6491 route_ui.cc:1821 msgid "bus" msgstr "bus" @@ -4634,6 +5248,10 @@ msgstr "Oui, supprimer" msgid "Remove %1" msgstr "Supprimer %1" +#: editor_ops.cc:6582 +msgid "insert time" +msgstr "" + #: editor_ops.cc:6739 msgid "There are too many tracks to fit in the current window" msgstr "La fenêtre courante ne peux pas afficher toutes les pistes" @@ -4663,10 +5281,22 @@ msgstr "défaire jointure des régions" msgid "Region name, with number of channels in []'s" msgstr "" +#: editor_regions.cc:112 +msgid "Position of start of region" +msgstr "" + #: editor_regions.cc:113 editor_regions.cc:849 time_info_box.cc:98 msgid "End" msgstr "Fin" +#: editor_regions.cc:113 +msgid "Position of end of region" +msgstr "" + +#: editor_regions.cc:114 +msgid "Length of the region" +msgstr "" + #: editor_regions.cc:115 msgid "Position of region sync point, relative to start of the region" msgstr "" @@ -4684,6 +5314,10 @@ msgstr "" msgid "L" msgstr "L" +#: editor_regions.cc:118 +msgid "Region position locked?" +msgstr "" + #: editor_regions.cc:119 msgid "G" msgstr "G" @@ -4692,8 +5326,8 @@ msgstr "G" msgid "Region position glued to Bars|Beats time?" msgstr "" -#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:759 -#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:554 +#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:762 +#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:553 #: stereo_panner.cc:237 msgid "M" msgstr "M" @@ -4738,11 +5372,14 @@ msgstr "Supprimer les régions non-utilisées" msgid "Mult." msgstr "" -#: editor_regions.cc:847 engine_dialog.cc:84 midi_list_editor.cc:103 -#: time_info_box.cc:91 +#: editor_regions.cc:847 midi_list_editor.cc:103 time_info_box.cc:91 msgid "Start" msgstr "Démarrer" +#: editor_regions.cc:865 editor_regions.cc:881 +msgid "Multiple" +msgstr "" + #: editor_regions.cc:950 msgid "MISSING " msgstr "(MANQUANT)" @@ -4781,6 +5418,14 @@ msgstr "Entrée MIDI activée" msgid "R" msgstr "R" +#: editor_routes.cc:206 +msgid "Record enabled" +msgstr "" + +#: editor_routes.cc:207 +msgid "Muted" +msgstr "" + #: editor_routes.cc:208 mixer_strip.cc:1941 meter_strip.cc:330 msgid "S" msgstr "S" @@ -4793,7 +5438,7 @@ msgstr "Solo" msgid "SI" msgstr "SI" -#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1880 +#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1867 msgid "Solo Isolated" msgstr "Solo isolé" @@ -4869,6 +5514,14 @@ msgstr "Nouveau tempo" msgid "New Meter" msgstr "Nouvelle signature rythmique" +#: editor_rulers.cc:373 +msgid "Timeline height" +msgstr "" + +#: editor_rulers.cc:383 +msgid "Align Video Track" +msgstr "" + #: editor_selection.cc:889 editor_selection.cc:932 msgid "set selected regions" msgstr "sélection de régions" @@ -4990,6 +5643,10 @@ msgid "" msgstr "" "programming error: meter marker canvas item has no marker object pointer!" +#: editor_timefx.cc:68 +msgid "stretch/shrink" +msgstr "" + #: editor_timefx.cc:129 msgid "pitch shift" msgstr "pitch shift" @@ -4998,266 +5655,218 @@ msgstr "pitch shift" msgid "timefx cannot be started - thread creation error" msgstr "timefx impossible à démarrer: erreur de création de thread" -#: engine_dialog.cc:75 -msgid "Realtime" -msgstr "Temps réel" - -#: engine_dialog.cc:76 -msgid "Do not lock memory" -msgstr "Ne pas verrouiller la mémoire" - -#: engine_dialog.cc:77 -msgid "Unlock memory" -msgstr "Déverrouiller la mémoire" - -#: engine_dialog.cc:78 -msgid "No zombies" -msgstr "Pas de zombie" - #: engine_dialog.cc:79 -msgid "Provide monitor ports" -msgstr "Fournir des ports de monitoring" +msgid "Device Control Panel" +msgstr "" -#: engine_dialog.cc:80 -msgid "Force 16 bit" -msgstr "Forcer 16 bits" +#: engine_dialog.cc:80 engine_dialog.cc:1725 +msgid "Measure" +msgstr "" #: engine_dialog.cc:81 -msgid "H/W monitoring" -msgstr "Monitoring matériel" +msgid "Use results" +msgstr "" #: engine_dialog.cc:82 -msgid "H/W metering" -msgstr "VU-mètre matériel" +msgid "Back to settings ... (ignore results)" +msgstr "" #: engine_dialog.cc:83 -msgid "Verbose output" -msgstr "sortie détaillée" +msgid "Calibrate..." +msgstr "" -#: engine_dialog.cc:103 -msgid "8000Hz" -msgstr "8000Hz" - -#: engine_dialog.cc:104 -msgid "22050Hz" -msgstr "22050Hz" - -#: engine_dialog.cc:105 -msgid "44100Hz" -msgstr "44100Hz" - -#: engine_dialog.cc:106 -msgid "48000Hz" -msgstr "48000Hz" +#: engine_dialog.cc:87 +msgid "Refresh list" +msgstr "" #: engine_dialog.cc:107 -msgid "88200Hz" -msgstr "88200Hz" - -#: engine_dialog.cc:108 -msgid "96000Hz" -msgstr "96000Hz" - -#: engine_dialog.cc:109 -msgid "192000Hz" -msgstr "192000Hz" - -#: engine_dialog.cc:127 engine_dialog.cc:132 engine_dialog.cc:169 -#: engine_dialog.cc:562 midi_channel_selector.cc:163 -#: midi_channel_selector.cc:402 midi_channel_selector.cc:438 -#: rc_option_editor.cc:1250 sfdb_ui.cc:538 -msgid "None" -msgstr "(aucun)" - -#: engine_dialog.cc:128 engine_dialog.cc:563 -msgid "Triangular" -msgstr "Triangulaire" - -#: engine_dialog.cc:129 engine_dialog.cc:565 -msgid "Rectangular" -msgstr "Rectangulaire" - -#: engine_dialog.cc:130 engine_dialog.cc:567 -msgid "Shaped" -msgstr "Remodelé" - -#: engine_dialog.cc:158 engine_dialog.cc:483 engine_dialog.cc:974 -msgid "Playback/recording on 1 device" -msgstr "Lecture/Enregistrement sur 1 appareil" - -#: engine_dialog.cc:159 engine_dialog.cc:487 engine_dialog.cc:540 -#: engine_dialog.cc:977 -msgid "Playback/recording on 2 devices" -msgstr "Lecture/Enregistrement sur 2 appareils" - -#: engine_dialog.cc:160 engine_dialog.cc:503 engine_dialog.cc:980 -msgid "Playback only" -msgstr "Lecture seulement" - -#: engine_dialog.cc:161 engine_dialog.cc:505 engine_dialog.cc:983 -msgid "Recording only" -msgstr "Enregistrement seulement" - -#: engine_dialog.cc:171 engine_dialog.cc:448 -msgid "coremidi" +msgid "" +"No audio/MIDI backends detected. %1 cannot run\n" +"\n" +"(This is a build/packaging/system error. It should never happen.)" msgstr "" -#: engine_dialog.cc:173 engine_dialog.cc:581 -msgid "seq" +#: engine_dialog.cc:136 +msgid "Latency Measurement Tool" msgstr "" -#: engine_dialog.cc:174 engine_dialog.cc:583 -msgid "raw" -msgstr "brut" +#: engine_dialog.cc:151 +msgid "" +"Turn down the volume on your audio equipment to a very " +"low level." +msgstr "" -#: engine_dialog.cc:181 +#: engine_dialog.cc:159 +msgid "Select two channels below and connect them using a cable." +msgstr "" + +#: engine_dialog.cc:164 +msgid "Output channel" +msgstr "" + +#: engine_dialog.cc:172 +msgid "Input channel" +msgstr "" + +#: engine_dialog.cc:207 +msgid "Once the channels are connected, click the \"Measure\" button." +msgstr "" + +#: engine_dialog.cc:214 +msgid "When satisfied with the results, click the \"Use results\" button." +msgstr "" + +#: engine_dialog.cc:229 engine_dialog.cc:1727 +msgid "No measurement results yet" +msgstr "" + +#: engine_dialog.cc:238 route_params_ui.cc:105 +msgid "Latency" +msgstr "Latence (trames/période)" + +#: engine_dialog.cc:333 +msgid "Audio System:" +msgstr "" + +#: engine_dialog.cc:374 msgid "Driver:" msgstr "Pilote:" -#: engine_dialog.cc:186 -msgid "Audio Interface:" -msgstr "Interface audio:" +#: engine_dialog.cc:380 +msgid "Device:" +msgstr "" -#: engine_dialog.cc:191 sfdb_ui.cc:147 sfdb_ui.cc:260 sfdb_ui.cc:265 +#: engine_dialog.cc:385 engine_dialog.cc:475 sfdb_ui.cc:147 sfdb_ui.cc:260 +#: sfdb_ui.cc:265 msgid "Sample rate:" msgstr "Échantillonnage:" -#: engine_dialog.cc:196 +#: engine_dialog.cc:391 engine_dialog.cc:482 msgid "Buffer size:" msgstr "Taille du tampon:" -#: engine_dialog.cc:202 -msgid "Number of buffers:" -msgstr "Nombre de tampons:" - -#: engine_dialog.cc:209 -msgid "Approximate latency:" -msgstr "Latence approximative:" - -#: engine_dialog.cc:222 -msgid "Audio mode:" -msgstr "Mode audio:" - -#: engine_dialog.cc:284 engine_dialog.cc:408 -msgid "Ignore" -msgstr "Ignorer" - -#: engine_dialog.cc:292 -msgid "Client timeout" -msgstr "Délai d'expiration client" - -#: engine_dialog.cc:299 -msgid "Number of ports:" -msgstr "Nombre de ports:" - -#: engine_dialog.cc:304 -msgid "MIDI driver:" -msgstr "Pilote MIDI:" - -#: engine_dialog.cc:310 -msgid "Dither:" -msgstr "Interpolation:" - -#: engine_dialog.cc:319 -msgid "" -"No JACK server found anywhere on this system. Please install JACK and restart" +#: engine_dialog.cc:404 +msgid "Input Channels:" msgstr "" -"Aucun serveur JACK n'a été trouvé sur le système. Veuillez installer JACK et " -"recommencez" -#: engine_dialog.cc:327 -msgid "Server:" -msgstr "Serveur:" +#: engine_dialog.cc:415 +msgid "Output Channels:" +msgstr "" -#: engine_dialog.cc:339 -msgid "Input device:" -msgstr "Interface d'entrée:" - -#: engine_dialog.cc:343 -msgid "Output device:" -msgstr "Interface de sortie:" - -#: engine_dialog.cc:348 +#: engine_dialog.cc:426 msgid "Hardware input latency:" msgstr "Latence matérielle en entrée:" -#: engine_dialog.cc:351 engine_dialog.cc:357 +#: engine_dialog.cc:429 engine_dialog.cc:442 msgid "samples" msgstr "échantillons" -#: engine_dialog.cc:354 +#: engine_dialog.cc:439 msgid "Hardware output latency:" msgstr "Latence matérielle en sortie:" -#: engine_dialog.cc:368 -msgid "Device" -msgstr "Interface audio" - -#: engine_dialog.cc:370 -msgid "Advanced" -msgstr "Avancé" - -#: engine_dialog.cc:653 -msgid "cannot open JACK rc file %1 to store parameters" +#: engine_dialog.cc:450 +msgid "MIDI System" msgstr "" -"Impossible d'ouvrir le fichier de configuration de JACK %1 pour y " -"enregistrer les paramètres" -#: engine_dialog.cc:787 +#: engine_dialog.cc:467 msgid "" -"You do not have any audio devices capable of\n" -"simultaneous playback and recording.\n" -"\n" -"Please use Applications -> Utilities -> Audio MIDI Setup\n" -"to create an \"aggregrate\" device, or install a suitable\n" -"audio interface.\n" -"\n" -"Please send email to Apple and ask them why new Macs\n" -"have no duplex audio device.\n" -"\n" -"Alternatively, if you really want just playback\n" -"or recording but not both, start JACK before running\n" -"%1 and choose the relevant device then." +"The %1 audio backend was configured and started externally.\n" +"This limits your control over it." msgstr "" -"Vous n'avez pas de périphérique audio capable de lire et\n" -"d'enregistrer en même temps.\n" + +#: engine_dialog.cc:521 +msgid "" +"Your selected audio configuration is playback- or capture-only.\n" "\n" -"Allez dans Applications -> Utilitaires -> Config Audio MIDI\n" -"pour créer un périphérique \"agrégé\"\t ou bien installez une\n" -"interface audio appropriée.\n" -"\n" -"Ensuite, envoyez un mail à Apple et demandez-leur pourquoi\n" -"les nouveaux Macs ne peuvent pas faire de duplex audio.\n" -"\n" -"Si vous voulez juste lire ou enregistrer mais pas\n" -"les deux à la fois, démarrez JACK avant %1 et sélectionnez le\n" -"périphérique correspondant." - -#: engine_dialog.cc:800 -msgid "No suitable audio devices" -msgstr "Aucun périphérique audio approprié" - -#: engine_dialog.cc:1017 -msgid "JACK appears to be missing from the %1 bundle" -msgstr "Il semble que JACK soit absent du pack %1" - -#: engine_dialog.cc:1087 -msgid "You need to choose an audio device first." -msgstr "Vous devez d'abord choisir un périphérique audio." - -#: engine_dialog.cc:1104 -msgid "Audio device \"%1\" not known on this computer." -msgstr "Le périphérique audio \"%1\" est inconnu." - -#: engine_dialog.cc:1256 -msgid "AudioSetup value for %1 is missing data" -msgstr "La valeur « %1 » de la Config Audio est incomplète" - -#: engine_dialog.cc:1335 -msgid "configuration files contain a JACK server path that doesn't exist (%1)" +"Latency calibration requires playback and capture" +msgstr "" + +#: engine_dialog.cc:595 +msgid "MIDI Inputs" +msgstr "" + +#: engine_dialog.cc:612 +msgid "MIDI Outputs" +msgstr "" + +#: engine_dialog.cc:696 +msgid "all available channels" +msgstr "" + +#: engine_dialog.cc:890 +#, c-format +msgid "%u samples" +msgstr "" + +#: engine_dialog.cc:941 +#, c-format +msgid "(%.1f msecs)" +msgstr "" + +#: engine_dialog.cc:1389 +msgid "Cannot set driver to %1" +msgstr "" + +#: engine_dialog.cc:1393 +msgid "Cannot set device name to %1" +msgstr "" + +#: engine_dialog.cc:1397 +msgid "Cannot set sample rate to %1" +msgstr "" + +#: engine_dialog.cc:1401 +msgid "Cannot set buffer size to %1" +msgstr "" + +#: engine_dialog.cc:1407 +msgid "Cannot set input channels to %1" +msgstr "" + +#: engine_dialog.cc:1411 +msgid "Cannot set output channels to %1" +msgstr "" + +#: engine_dialog.cc:1417 +msgid "Cannot set input latency to %1" +msgstr "" + +#: engine_dialog.cc:1421 +msgid "Cannot set output latency to %1" +msgstr "" + +#: engine_dialog.cc:1654 +msgid "No signal detected " +msgstr "" + +#: engine_dialog.cc:1667 port_insert_ui.cc:71 port_insert_ui.cc:99 +msgid "Disconnected from audio engine" +msgstr "Non connecté au moteur audio" + +#: engine_dialog.cc:1681 +msgid "(signal detection error)" +msgstr "" + +#: engine_dialog.cc:1687 +msgid "(inverted - bad wiring)" +msgstr "" + +#: engine_dialog.cc:1697 +msgid "Detected roundtrip latency: %1" +msgstr "" + +#: engine_dialog.cc:1709 port_insert_ui.cc:135 +msgid "Detecting ..." +msgstr "Recherche..." + +#: engine_dialog.cc:1789 +msgid "Disconnect from %1" +msgstr "" + +#: engine_dialog.cc:1801 +msgid "Connect to %1" msgstr "" -"Les fichiers de configuration contiennent un chemin vers JACK qui n'existe " -"pas (%1)" #: export_channel_selector.cc:45 sfdb_ui.cc:145 msgid "Channels:" @@ -5279,6 +5888,18 @@ msgstr "" msgid "Region contents with fades and region gain (channels: %1)" msgstr "" +#: export_channel_selector.cc:467 +msgid "Track output (channels: %1)" +msgstr "" + +#: export_channel_selector.cc:536 +msgid "Export region contents" +msgstr "" + +#: export_channel_selector.cc:537 +msgid "Export track output" +msgstr "" + #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten.Error: " msgstr "Erreur: " @@ -5351,6 +5980,14 @@ msgstr "Exporter la région" msgid "Source" msgstr "Source" +#: export_dialog.cc:458 +msgid "Stem Export" +msgstr "" + +#: export_file_notebook.cc:38 +msgid "Add another format" +msgstr "" + #: export_file_notebook.cc:178 msgid "Format" msgstr "Format" @@ -5359,6 +5996,10 @@ msgstr "Format" msgid "Location" msgstr "Emplacement" +#: export_file_notebook.cc:255 +msgid "No format!" +msgstr "" + #: export_file_notebook.cc:267 msgid "Format %1: %2" msgstr "Format %1: %2" @@ -5380,9 +6021,9 @@ msgid "Folder:" msgstr "Dossier:" #: export_filename_selector.cc:37 session_import_dialog.cc:44 -#: transcode_video_dialog.cc:59 video_server_dialog.cc:45 -#: video_server_dialog.cc:47 export_video_dialog.cc:69 -#: export_video_dialog.cc:71 +#: transcode_video_dialog.cc:58 video_server_dialog.cc:45 +#: video_server_dialog.cc:47 export_video_dialog.cc:68 +#: export_video_dialog.cc:70 msgid "Browse" msgstr "Parcourir" @@ -5486,6 +6127,10 @@ msgstr "Moyenne (sinc)" msgid "Fast (sinc)" msgstr "Rapide (sinc)" +#: export_format_dialog.cc:481 +msgid "Zero order hold" +msgstr "" + #: export_format_dialog.cc:879 msgid "Linear encoding options" msgstr "Options pour l'encodage linéaire" @@ -5502,6 +6147,10 @@ msgstr "Options FLAC" msgid "Broadcast Wave options" msgstr "Option Broadcast Wave" +#: export_format_selector.cc:136 +msgid "Do you really want to remove the format?" +msgstr "" + #: export_preset_selector.cc:28 msgid "Preset" msgstr "Préréglage" @@ -5514,6 +6163,10 @@ msgstr "" "Le préréglage n'a pas pu être chargé!\n" "Peut-être qu'il référence un format qui a été supprimé?" +#: export_preset_selector.cc:156 +msgid "Do you really want to remove this preset?" +msgstr "" + #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "Temps exprimé en:" @@ -5526,6 +6179,10 @@ msgstr " à " msgid "Range" msgstr "Intervalle" +#: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 +msgid "curl error %1 (%2)" +msgstr "" + #: sfdb_freesound_mootcher.cc:266 msgid "getSoundResourceFile: There is no valid root in the xml file" msgstr "" @@ -5534,66 +6191,83 @@ msgstr "" msgid "getSoundResourceFile: root = %1, != response" msgstr "" -#: gain_meter.cc:106 gain_meter.cc:357 gain_meter.cc:462 gain_meter.cc:856 +#: sfdb_freesound_mootcher.cc:410 +msgid "%1" +msgstr "" + +#: gain_meter.cc:105 gain_meter.cc:360 gain_meter.cc:465 gain_meter.cc:859 msgid "-inf" msgstr "-inf" -#: gain_meter.cc:112 gain_meter.cc:913 +#: gain_meter.cc:111 gain_meter.cc:916 msgid "Fader automation mode" msgstr "Mode d'automation du gain" -#: gain_meter.cc:113 gain_meter.cc:914 +#: gain_meter.cc:112 gain_meter.cc:917 msgid "Fader automation type" msgstr "Type d'automation du gain" -#: gain_meter.cc:122 gain_meter.cc:795 panner_ui.cc:178 panner_ui.cc:590 +#: gain_meter.cc:121 gain_meter.cc:798 panner_ui.cc:177 panner_ui.cc:589 msgid "Abs" msgstr "abs" -#: gain_meter.cc:762 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:557 +#: gain_meter.cc:765 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:556 #: route_time_axis.cc:2411 msgid "P" msgstr "P" -#: gain_meter.cc:765 panner_ui.cc:560 +#: gain_meter.cc:768 panner_ui.cc:559 msgid "T" msgstr "T" -#: gain_meter.cc:768 panner_ui.cc:563 +#: gain_meter.cc:771 panner_ui.cc:562 msgid "W" msgstr "W" -#: generic_pluginui.cc:83 +#: generic_pluginui.cc:81 msgid "Presets" msgstr "réglages préféfinis" -#: generic_pluginui.cc:242 generic_pluginui.cc:376 processor_box.cc:2212 +#: generic_pluginui.cc:230 +msgid "Switches" +msgstr "" + +#: generic_pluginui.cc:240 generic_pluginui.cc:374 processor_box.cc:2251 msgid "Controls" msgstr "Contrôles" -#: generic_pluginui.cc:270 +#: generic_pluginui.cc:268 msgid "Plugin Editor: could not build control element for port %1" msgstr "" "Éditeur de plugin: impossible de construire l'élément de contrôle pour le " "port %1" -#: generic_pluginui.cc:423 +#: generic_pluginui.cc:406 +msgid "Meters" +msgstr "" + +#: generic_pluginui.cc:421 msgid "Automation control" msgstr "Contrôle d'automation" -#: generic_pluginui.cc:430 +#: generic_pluginui.cc:428 msgid "Mgnual" msgstr "Manuel" -#: global_port_matrix.cc:164 +#: global_port_matrix.cc:157 msgid "Audio Connection Manager" msgstr "Gestionnaire de connexion audio" -#: global_port_matrix.cc:167 +#: global_port_matrix.cc:160 msgid "MIDI Connection Manager" msgstr "Gestion des connexions MIDI" -#: global_port_matrix.cc:213 io_selector.cc:216 +#: global_port_matrix.cc:200 io_selector.cc:210 mixer_strip.cc:719 +#: mixer_strip.cc:845 +msgid "Disconnect" +msgstr "Déconnecter" + +#: global_port_matrix.cc:206 io_selector.cc:216 msgid "port" msgstr "port" @@ -5609,10 +6283,30 @@ msgstr "Armées..." msgid "Soloed..." msgstr "Solo..." +#: group_tabs.cc:316 +msgid "Create New Group ..." +msgstr "" + #: group_tabs.cc:317 msgid "Create New Group From" msgstr "" +#: group_tabs.cc:320 +msgid "Edit Group..." +msgstr "" + +#: group_tabs.cc:321 +msgid "Collect Group" +msgstr "" + +#: group_tabs.cc:322 +msgid "Remove Group" +msgstr "" + +#: group_tabs.cc:325 +msgid "Remove Subgroup Bus" +msgstr "" + #: group_tabs.cc:327 msgid "Add New Subgroup Bus" msgstr "Ajouter un sous-groupe de bus" @@ -5629,6 +6323,10 @@ msgstr "Ajouter un nouveau bus auxiliaire (post-fader)" msgid "Enable All Groups" msgstr "" +#: group_tabs.cc:337 +msgid "Disable All Groups" +msgstr "" + #: gtk-custom-ruler.c:133 msgid "Lower limit of ruler" msgstr "limite inférieure de la règle" @@ -5661,6 +6359,10 @@ msgstr "afficher la position" msgid "Draw current ruler position" msgstr "dessiner la position actuelle de la règle" +#: insert_time_dialog.cc:46 +msgid "Time to insert:" +msgstr "" + #: insert_time_dialog.cc:54 msgid "Intersected regions should:" msgstr "Les régions ayant une intersection devraient:" @@ -5681,10 +6383,18 @@ msgstr "être séparées" msgid "Insert time on all the track's playlists" msgstr "" +#: insert_time_dialog.cc:68 +msgid "Move glued regions" +msgstr "" + #: insert_time_dialog.cc:70 msgid "Move markers" msgstr "Déplacer les repères" +#: insert_time_dialog.cc:73 +msgid "Move glued markers" +msgstr "" + #: insert_time_dialog.cc:78 msgid "Move locked markers" msgstr "Déplacer les repères verrouillés" @@ -5695,6 +6405,10 @@ msgid "" "(may cause oddities in the tempo map)" msgstr "" +#: insert_time_dialog.cc:91 +msgid "Insert time" +msgstr "" + #: interthread_progress_window.cc:103 msgid "Importing file: %1 of %2" msgstr "Import du fichier: %1 sur %2" @@ -5747,14 +6461,30 @@ msgstr "" msgid "Main_menu" msgstr "" -#: keyeditor.cc:255 +#: keyeditor.cc:253 msgid "redirectmenu" msgstr "" +#: keyeditor.cc:255 +msgid "Editor_menus" +msgstr "" + +#: keyeditor.cc:257 +msgid "RegionList" +msgstr "" + +#: keyeditor.cc:259 +msgid "ProcessorMenu" +msgstr "" + #: latency_gui.cc:39 msgid "sample" msgstr "échantillons" +#: latency_gui.cc:40 +msgid "msec" +msgstr "" + #: latency_gui.cc:41 msgid "period" msgstr "" @@ -5765,7 +6495,7 @@ msgid_plural "%1 samples" msgstr[0] "%1 échantillon" msgstr[1] "%1 échantillons" -#: latency_gui.cc:72 panner_ui.cc:392 +#: latency_gui.cc:72 panner_ui.cc:391 msgid "Reset" msgstr "Réinitialiser" @@ -5773,6 +6503,10 @@ msgstr "Réinitialiser" msgid "programming error: %1 (%2)" msgstr "programming error: %1 (%2)" +#: location_ui.cc:50 location_ui.cc:52 +msgid "Use PH" +msgstr "" + #: location_ui.cc:54 msgid "CD" msgstr "CD" @@ -5793,6 +6527,10 @@ msgstr "Compositeur:" msgid "Pre-Emphasis" msgstr "Pré-accentuation" +#: location_ui.cc:314 +msgid "Remove this range" +msgstr "" + #: location_ui.cc:315 msgid "Start time - middle click to locate here" msgstr "" @@ -5801,10 +6539,26 @@ msgstr "" msgid "End time - middle click to locate here" msgstr "" +#: location_ui.cc:319 +msgid "Set range start from playhead location" +msgstr "" + +#: location_ui.cc:320 +msgid "Set range end from playhead location" +msgstr "" + +#: location_ui.cc:324 +msgid "Remove this marker" +msgstr "" + #: location_ui.cc:325 msgid "Position - middle click to locate here" msgstr "" +#: location_ui.cc:327 +msgid "Set marker time from playhead location" +msgstr "" + #: location_ui.cc:494 msgid "You cannot put a CD marker at the start of the session" msgstr "Vous ne pouvez pas poser un marqueur de CD au début de la session" @@ -5833,79 +6587,65 @@ msgstr "Intervalles (intervalles de piste CD inclus)" msgid "add range marker" msgstr "ajouter un repère d'intervalle" -#: main.cc:83 -msgid "%1 could not connect to JACK." -msgstr "%1 n'a pas pu se connecter à JACK" +#: main.cc:81 +msgid "%1 could not connect to the audio backend." +msgstr "" -#: main.cc:210 main.cc:331 +#: main.cc:194 main.cc:315 +msgid "cannot create user %3 folder %1 (%2)" +msgstr "" + +#: main.cc:201 main.cc:322 msgid "cannot open pango.rc file %1" msgstr "impossible d'ouvrir le fichier pango.rc %1" -#: main.cc:235 main.cc:358 +#: main.cc:226 main.cc:349 msgid "Cannot find ArdourMono TrueType font" msgstr "" -#: main.cc:247 main.cc:364 +#: main.cc:238 main.cc:355 msgid "Cannot load ArdourMono TrueType font." msgstr "" -#: main.cc:312 +#: main.cc:303 msgid "" "No fontconfig file found on your system. Things may looked very odd or ugly" msgstr "" -#: main.cc:368 +#: main.cc:359 msgid "Failed to set fontconfig configuration." msgstr "" -#: main.cc:379 main.cc:395 -msgid "JACK exited" -msgstr "JACK a quitté" +#: main.cc:370 main.cc:386 +msgid "The audio backend (%1) has failed, or terminated" +msgstr "" -#: main.cc:382 +#: main.cc:373 msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" +"%2 exited unexpectedly, and without notifying %1.\n" "\n" -"This could be due to misconfiguration or to an error inside JACK.\n" +"This could be due to misconfiguration or to an error inside %2.\n" "\n" "Click OK to exit %1." msgstr "" -"JACK a quitté soudainement, sans notifier %1.\n" -"\n" -"Cela vient peut-être d'un problème de configuration, ou bien d'une erreur " -"dans JACK.\n" -"\n" -"Cliquez sur OK pour quitter %1." -#: main.cc:397 -msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" -"\n" -"This is probably due to an error inside JACK. You should restart JACK\n" -"and reconnect %1 to it, or exit %1 now. You cannot save your\n" -"session at this time, because we would lose your connection information.\n" +#: main.cc:387 +msgid "%2 exited unexpectedly, and without notifying %1." msgstr "" -"JACK a quitté soudainement, sans prévenir %1.\n" -"\n" -"Cela est surement dû à une erreur dans JACK.\n" -"Vous devriez redémarrer JACK et reconnecter %1\n" -"à ce dernier, ou quitter %1 immédiatement.\n" -"Il n'est pas possible de sauvegarder la session\n" -"car les informations de connection seraient perdues.\n" -#: main.cc:487 +#: main.cc:474 msgid " (built using " msgstr " (construit avec " -#: main.cc:490 +#: main.cc:477 msgid " and GCC version " msgstr " et GCC version " -#: main.cc:500 +#: main.cc:487 msgid "Copyright (C) 1999-2012 Paul Davis" msgstr "Copyright © 1999-2012 Paul Davis" -#: main.cc:501 +#: main.cc:488 msgid "" "Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " "Baker, Robin Gareus" @@ -5913,32 +6653,40 @@ msgstr "" "Pour certaines parties, Copyright © Steve Harris, Ari Johnson, Brett Viren, " "Joel Baker, Robin Gareus" -#: main.cc:503 +#: main.cc:490 msgid "%1 comes with ABSOLUTELY NO WARRANTY" msgstr "%1 est distribué sans AUCUNE GARANTIE" -#: main.cc:504 +#: main.cc:491 msgid "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." msgstr "pas même de COMMERCIALISATION ou d'ADÉQUATION À UN BUT PARTICULIER." -#: main.cc:505 +#: main.cc:492 msgid "This is free software, and you are welcome to redistribute it " msgstr "Ceci est un logiciel libre, et vous êtes encouragé à le distribuer " -#: main.cc:506 +#: main.cc:493 msgid "under certain conditions; see the source for copying conditions." msgstr "" "sous certaines conditions ; voir le fichier source pour les conditions de " "distribution." -#: main.cc:513 +#: main.cc:500 msgid "could not initialize %1." msgstr "impossible d'initialiser %1." -#: main.cc:522 +#: main.cc:509 msgid "Cannot xinstall SIGPIPE error handler" msgstr "" +#: main.cc:515 +msgid "could not create %1 GUI" +msgstr "" + +#: main_clock.cc:51 +msgid "Display delta to edit cursor" +msgstr "" + #: marker.cc:251 video_image_frame.cc:121 msgid "MarkerText" msgstr "MarkerText" @@ -5948,6 +6696,11 @@ msgstr "MarkerText" msgid "All" msgstr "Tout" +#: midi_channel_selector.cc:163 midi_channel_selector.cc:402 +#: midi_channel_selector.cc:438 rc_option_editor.cc:1248 sfdb_ui.cc:538 +msgid "None" +msgstr "(aucun)" + #: midi_channel_selector.cc:167 midi_channel_selector.cc:407 #: midi_channel_selector.cc:443 msgid "Invert" @@ -5957,10 +6710,42 @@ msgstr "Inverser" msgid "Force" msgstr "" +#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 +msgid "MIDI Channel Control" +msgstr "" + +#: midi_channel_selector.cc:332 +msgid "Playback all channels" +msgstr "" + +#: midi_channel_selector.cc:333 +msgid "Play only selected channels" +msgstr "" + #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" +#: midi_channel_selector.cc:335 +msgid "Record all channels" +msgstr "" + +#: midi_channel_selector.cc:336 +msgid "Record only selected channels" +msgstr "" + +#: midi_channel_selector.cc:337 +msgid "Force all channels to 1 channel" +msgstr "" + +#: midi_channel_selector.cc:378 +msgid "Inbound" +msgstr "" + +#: midi_channel_selector.cc:398 +msgid "Click to enable recording all channels" +msgstr "" + #: midi_channel_selector.cc:403 msgid "Click to disable recording all channels" msgstr "" @@ -5969,6 +6754,10 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" +#: midi_channel_selector.cc:415 +msgid "Playback" +msgstr "" + #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -6041,6 +6830,34 @@ msgstr "" msgid "Vel" msgstr "Vel" +#: midi_list_editor.cc:215 +msgid "edit note start" +msgstr "" + +#: midi_list_editor.cc:224 +msgid "edit note channel" +msgstr "" + +#: midi_list_editor.cc:234 +msgid "edit note number" +msgstr "" + +#: midi_list_editor.cc:244 +msgid "edit note velocity" +msgstr "" + +#: midi_list_editor.cc:258 +msgid "edit note length" +msgstr "" + +#: midi_list_editor.cc:460 +msgid "insert new note" +msgstr "" + +#: midi_list_editor.cc:524 +msgid "delete notes (from list)" +msgstr "" + #: midi_list_editor.cc:599 msgid "change note channel" msgstr "changer le canal de la note" @@ -6069,6 +6886,14 @@ msgstr "Nom du port:" msgid "MidiPortDialog" msgstr "MidiPortDialog" +#: midi_region_view.cc:838 +msgid "channel edit" +msgstr "" + +#: midi_region_view.cc:874 +msgid "velocity edit" +msgstr "" + #: midi_region_view.cc:931 msgid "add note" msgstr "ajouter une note" @@ -6081,10 +6906,22 @@ msgstr "" msgid "insane MIDI patch key %1:%2" msgstr "" +#: midi_region_view.cc:1870 midi_region_view.cc:1890 +msgid "alter patch change" +msgstr "" + #: midi_region_view.cc:1924 msgid "add patch change" msgstr "" +#: midi_region_view.cc:1942 +msgid "move patch change" +msgstr "" + +#: midi_region_view.cc:1953 +msgid "delete patch change" +msgstr "" + #: midi_region_view.cc:2022 msgid "delete selection" msgstr "supprimer la sélection" @@ -6101,6 +6938,10 @@ msgstr "déplacer les notes" msgid "resize notes" msgstr "" +#: midi_region_view.cc:2901 +msgid "change velocities" +msgstr "" + #: midi_region_view.cc:2967 msgid "transpose" msgstr "transposer" @@ -6117,10 +6958,26 @@ msgstr "décaler" msgid "change channel" msgstr "changer le canal" +#: midi_region_view.cc:3130 +msgid "Bank " +msgstr "" + +#: midi_region_view.cc:3131 +msgid "Program " +msgstr "" + +#: midi_region_view.cc:3132 +msgid "Channel " +msgstr "" + #: midi_region_view.cc:3301 midi_region_view.cc:3303 msgid "paste" msgstr "coller" +#: midi_region_view.cc:3761 +msgid "delete sysex" +msgstr "" + #: midi_streamview.cc:479 msgid "failed to create MIDI region" msgstr "Echec lors de la création de la région MIDI" @@ -6137,10 +6994,30 @@ msgstr "" msgid "Chns" msgstr "" +#: midi_time_axis.cc:272 +msgid "Click to edit channel settings" +msgstr "" + +#: midi_time_axis.cc:486 +msgid "Show Full Range" +msgstr "" + #: midi_time_axis.cc:491 msgid "Fit Contents" msgstr "Contenu:" +#: midi_time_axis.cc:495 +msgid "Note Range" +msgstr "" + +#: midi_time_axis.cc:496 +msgid "Note Mode" +msgstr "" + +#: midi_time_axis.cc:497 +msgid "Channel Selector" +msgstr "" + #: midi_time_axis.cc:502 msgid "Color Mode" msgstr "Mode couleur" @@ -6185,6 +7062,10 @@ msgstr "Contrôleur %1" msgid "Sustained" msgstr "" +#: midi_time_axis.cc:966 +msgid "Percussive" +msgstr "" + #: midi_time_axis.cc:986 msgid "Meter Colors" msgstr "Couleur du VU-mètre" @@ -6197,26 +7078,43 @@ msgstr "Couleur du canal" msgid "Track Color" msgstr "Couleur de la piste" +#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 +#: midi_time_axis.cc:1510 +msgid "all" +msgstr "" + #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" -#: midi_tracer.cc:51 +#: midi_tracer.cc:46 +msgid "Line history: " +msgstr "" + +#: midi_tracer.cc:54 msgid "Auto-Scroll" msgstr "Défilement automatique" -#: midi_tracer.cc:52 +#: midi_tracer.cc:55 msgid "Decimal" msgstr "Décimal" -#: midi_tracer.cc:53 rc_option_editor.cc:659 +#: midi_tracer.cc:56 rc_option_editor.cc:657 msgid "Enabled" msgstr "Activé" -#: midi_tracer.cc:66 +#: midi_tracer.cc:57 +msgid "Delta times" +msgstr "" + +#: midi_tracer.cc:70 msgid "Port:" msgstr "Port:" +#: midi_velocity_dialog.cc:31 +msgid "New velocity" +msgstr "" + #: missing_file_dialog.cc:34 msgid "Missing File!" msgstr "Fichier manquant!" @@ -6273,7 +7171,7 @@ msgstr "Cliquez pour choisir un dossier supplémentaire" msgid "Missing Plugins" msgstr "Plugins manquants" -#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 +#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:59 msgid "OK" msgstr "OK" @@ -6301,6 +7199,34 @@ msgstr "" msgid "Set Gain to 0dB on Mixer-Selected Tracks/Busses" msgstr "" +#: mixer_actor.cc:63 +msgid "Copy Selected Processors" +msgstr "" + +#: mixer_actor.cc:64 +msgid "Cut Selected Processors" +msgstr "" + +#: mixer_actor.cc:65 +msgid "Paste Selected Processors" +msgstr "" + +#: mixer_actor.cc:66 +msgid "Delete Selected Processors" +msgstr "" + +#: mixer_actor.cc:67 +msgid "Select All (visible) Processors" +msgstr "" + +#: mixer_actor.cc:68 +msgid "Toggle Selected Processors" +msgstr "" + +#: mixer_actor.cc:69 +msgid "Toggle Selected Plugins" +msgstr "" + #: mixer_actor.cc:72 mixer_actor.cc:73 msgid "Scroll Mixer Window to the left" msgstr "" @@ -6309,6 +7235,10 @@ msgstr "" msgid "Toggle MIDI Input Active for Mixer-Selected Tracks/Busses" msgstr "" +#: mixer_actor.cc:90 +msgid "Loaded mixer bindings from %1" +msgstr "" + #: mixer_actor.cc:92 msgid "Could not find mixer.bindings in search path %1" msgstr "" @@ -6317,6 +7247,11 @@ msgstr "" msgid "pre" msgstr "pré" +#: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 +#: rc_option_editor.cc:1868 +msgid "Comments" +msgstr "" + #: mixer_strip.cc:147 msgid "Click to toggle the width of this mixer strip." msgstr "" @@ -6331,6 +7266,10 @@ msgstr "" msgid "Hide this mixer strip" msgstr "Cacher ce tranche de mixage" +#: mixer_strip.cc:167 +msgid "Click to select metering point" +msgstr "" + #: mixer_strip.cc:173 msgid "tupni" msgstr "tupni" @@ -6351,7 +7290,15 @@ msgstr "verrou" msgid "iso" msgstr "iso" -#: mixer_strip.cc:352 rc_option_editor.cc:1879 route_ui.cc:1218 +#: mixer_strip.cc:258 +msgid "Mix group" +msgstr "" + +#: mixer_strip.cc:351 rc_option_editor.cc:1865 +msgid "Phase Invert" +msgstr "" + +#: mixer_strip.cc:352 rc_option_editor.cc:1866 route_ui.cc:1218 msgid "Solo Safe" msgstr "Bloquer le solo" @@ -6359,6 +7306,10 @@ msgstr "Bloquer le solo" msgid "Group" msgstr "Groupe" +#: mixer_strip.cc:356 rc_option_editor.cc:1869 +msgid "Meter Point" +msgstr "" + #: mixer_strip.cc:470 msgid "Enable/Disable MIDI input" msgstr "Activer/désactiver l'entrée du MIDI" @@ -6371,9 +7322,13 @@ msgstr "" "Arrivées\n" "Aux" -#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 -msgid "Not connected to JACK - no I/O changes are possible" -msgstr "Non connecté à JACK – aucun changement d'entrée/sortie n'est possible" +#: mixer_strip.cc:646 +msgid "Snd" +msgstr "" + +#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2193 +msgid "Not connected to audio engine - no I/O changes are possible" +msgstr "" #: mixer_strip.cc:1096 msgid "INPUT to %1" @@ -6435,6 +7390,10 @@ msgstr "Régler la latence..." msgid "Protect Against Denormals" msgstr "Protèger contre les dénormalisations" +#: mixer_strip.cc:1491 route_time_axis.cc:435 +msgid "Remote Control ID..." +msgstr "" + #: mixer_strip.cc:1717 mixer_strip.cc:1741 msgid "in" msgstr "entrée" @@ -6451,6 +7410,18 @@ msgstr "sortie" msgid "custom" msgstr "" +#: mixer_strip.cc:1745 +msgid "pr" +msgstr "" + +#: mixer_strip.cc:1749 +msgid "po" +msgstr "" + +#: mixer_strip.cc:1753 +msgid "o" +msgstr "" + #: mixer_strip.cc:1758 msgid "c" msgstr "" @@ -6467,10 +7438,30 @@ msgstr "AFL" msgid "PFL" msgstr "PFL" +#: mixer_strip.cc:1933 +msgid "D" +msgstr "" + +#: mixer_strip.cc:1953 +msgid "i" +msgstr "" + +#: mixer_strip.cc:2128 +msgid "Pre-fader" +msgstr "" + +#: mixer_strip.cc:2129 +msgid "Post-fader" +msgstr "" + #: mixer_strip.cc:2166 meter_strip.cc:728 msgid "Change all in Group to %1" msgstr "" +#: mixer_strip.cc:2168 meter_strip.cc:730 +msgid "Change all to %1" +msgstr "" + #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -6488,6 +7479,14 @@ msgstr "-(tout)-" msgid "Strips" msgstr "Tranches" +#: meter_strip.cc:764 +msgid "Variable height" +msgstr "" + +#: meter_strip.cc:765 +msgid "Short" +msgstr "" + #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -6532,14 +7531,26 @@ msgstr "" msgid "K14" msgstr "" +#: meter_patterns.cc:105 +msgid "VU" +msgstr "" + #: monitor_section.cc:62 msgid "SiP" msgstr "SiP" +#: monitor_section.cc:86 +msgid "soloing" +msgstr "" + #: monitor_section.cc:90 msgid "isolated" msgstr "" +#: monitor_section.cc:94 +msgid "auditioning" +msgstr "" + #: monitor_section.cc:104 msgid "" "When active, something is solo-isolated.\n" @@ -6590,10 +7601,22 @@ msgstr "" msgid "Gain reduction to use when dimming monitor outputs" msgstr "" +#: monitor_section.cc:181 +msgid "Dim" +msgstr "" + +#: monitor_section.cc:190 +msgid "excl. solo" +msgstr "" + #: monitor_section.cc:192 msgid "Exclusive solo means that only 1 solo is active at a time" msgstr "Solo exclusif veut dire qu'un seul solo peut être actif à la fois" +#: monitor_section.cc:199 +msgid "solo » mute" +msgstr "" + #: monitor_section.cc:201 msgid "" "If enabled, solo will override mute\n" @@ -6606,14 +7629,66 @@ msgstr "" msgid "mute" msgstr "muet" +#: monitor_section.cc:238 +msgid "dim" +msgstr "" + #: monitor_section.cc:245 msgid "mono" msgstr "mono" +#: monitor_section.cc:266 +msgid "Monitor" +msgstr "" + +#: monitor_section.cc:678 +msgid "Switch monitor to mono" +msgstr "" + +#: monitor_section.cc:681 +msgid "Cut monitor" +msgstr "" + +#: monitor_section.cc:684 +msgid "Dim monitor" +msgstr "" + +#: monitor_section.cc:687 +msgid "Toggle exclusive solo mode" +msgstr "" + #: monitor_section.cc:693 msgid "Toggle mute overrides solo mode" msgstr "" +#: monitor_section.cc:705 +msgid "Cut monitor channel %1" +msgstr "" + +#: monitor_section.cc:710 +msgid "Dim monitor channel %1" +msgstr "" + +#: monitor_section.cc:715 +msgid "Solo monitor channel %1" +msgstr "" + +#: monitor_section.cc:720 +msgid "Invert monitor channel %1" +msgstr "" + +#: monitor_section.cc:730 +msgid "In-place solo" +msgstr "" + +#: monitor_section.cc:732 +msgid "After Fade Listen (AFL) solo" +msgstr "" + +#: monitor_section.cc:734 +msgid "Pre Fade Listen (PFL) solo" +msgstr "" + #: mono_panner.cc:101 #, c-format msgid "L:%3d R:%3d" @@ -6628,6 +7703,10 @@ msgstr "" msgid "%" msgstr "%" +#: nag.cc:41 +msgid "Support %1 Development" +msgstr "" + #: nag.cc:42 msgid "I'd like to make a one-time donation" msgstr "Je souhaite faire un don" @@ -6762,11 +7841,9 @@ msgstr "" #: opts.cc:63 msgid "" -" -c, --name Use a specific jack client name, default is " +" -c, --name Use a specific backend client name, default is " "ardour\n" msgstr "" -" -c, --name nom Utiliser un nom de client jack différent. " -"La valeur par défaut est \"ardour\"\n" #: opts.cc:64 msgid "" @@ -6807,6 +7884,10 @@ msgstr "" " -O, --no-hw-optimizations Désactiver les optimisations matérielles " "spécifiques\n" +#: opts.cc:70 +msgid " -P, --no-connect-ports Do not connect any ports at startup\n" +msgstr "" + #: opts.cc:71 msgid " -S, --sync Draw the gui synchronously \n" msgstr "" @@ -6842,7 +7923,7 @@ msgstr "" msgid "Panner (2D)" msgstr "" -#: panner2d.cc:783 panner_ui.cc:384 plugin_ui.cc:451 +#: panner2d.cc:783 panner_ui.cc:383 plugin_ui.cc:448 msgid "Bypass" msgstr "Court-circuiter" @@ -6850,15 +7931,15 @@ msgstr "Court-circuiter" msgid "Panner" msgstr "" -#: panner_ui.cc:71 +#: panner_ui.cc:70 msgid "Pan automation mode" msgstr "Mode d'automation du panoramique" -#: panner_ui.cc:72 +#: panner_ui.cc:71 msgid "Pan automation type" msgstr "Type d'automation de panoramique" -#: panner_ui.cc:295 +#: panner_ui.cc:294 msgid "" "No panner user interface is currently available for %1-in/2out tracks/busses" msgstr "" @@ -6891,6 +7972,10 @@ msgstr "Importé" msgid "dB scale" msgstr "échelle en dB" +#: plugin_eq_gui.cc:106 +msgid "Show phase" +msgstr "" + #: plugin_selector.cc:53 plugin_selector.cc:220 msgid "Name contains" msgstr "Le nom contient" @@ -6915,6 +8000,10 @@ msgstr "La bibliothèque contient" msgid "Favorites only" msgstr "Seulement les favoris" +#: plugin_selector.cc:59 plugin_selector.cc:214 plugin_selector.cc:521 +msgid "Hidden only" +msgstr "" + #: plugin_selector.cc:64 msgid "Plugin Manager" msgstr "Gestion des plugins" @@ -7006,41 +8095,65 @@ msgstr "Par créateur" msgid "By Category" msgstr "Par catégorie" -#: plugin_ui.cc:116 +#: plugin_ui.cc:114 msgid "Eh? LADSPA plugins don't have editors!" msgstr "Hein ? Les plugins LADSPA n'ont pas d'éditeur !" -#: plugin_ui.cc:128 +#: plugin_ui.cc:123 plugin_ui.cc:226 +msgid "" +"unknown type of editor-supplying plugin (note: no VST support in this " +"version of %1)" +msgstr "" + +#: plugin_ui.cc:126 msgid "unknown type of editor-supplying plugin" msgstr "type inconnu pour le plugin fournissant un éditeur" -#: plugin_ui.cc:329 +#: plugin_ui.cc:256 +msgid "" +"unknown type of editor-supplying plugin (note: no linuxVST support in this " +"version of %1)" +msgstr "" + +#: plugin_ui.cc:328 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "create_lv2_editor est appelé sur un plugin non LV2" -#: plugin_ui.cc:417 +#: plugin_ui.cc:414 msgid "Add" msgstr "Ajouter" -#: plugin_ui.cc:429 +#: plugin_ui.cc:418 +msgid "Description" +msgstr "" + +#: plugin_ui.cc:419 +msgid "Plugin analysis" +msgstr "" + +#: plugin_ui.cc:426 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:431 +#: plugin_ui.cc:427 +msgid "Save a new preset" +msgstr "" + +#: plugin_ui.cc:428 msgid "Save the current preset" msgstr "" -#: plugin_ui.cc:432 +#: plugin_ui.cc:429 msgid "Delete the current preset" msgstr "" -#: plugin_ui.cc:433 +#: plugin_ui.cc:430 msgid "Disable signal processing by the plugin" msgstr "" -#: plugin_ui.cc:466 plugin_ui.cc:662 +#: plugin_ui.cc:463 plugin_ui.cc:659 msgid "" "Click to allow the plugin to receive keyboard events that %1 would normally " "use as a shortcut" @@ -7048,63 +8161,69 @@ msgstr "" "Cliquez pour authoriser le plugin à recevoir des évenements que %1 considère " "habituellement comme des raccourcis" -#: plugin_ui.cc:467 +#: plugin_ui.cc:464 msgid "Click to enable/disable this plugin" msgstr "Cliquez pour activer/désactiver ce plugin" -#: plugin_ui.cc:508 +#: plugin_ui.cc:503 +msgid "latency (%1 sample)" +msgid_plural "latency (%1 samples)" +msgstr[0] "" +msgstr[1] "" + +#: plugin_ui.cc:505 msgid "latency (%1 ms)" msgstr "Latence (%1 ms)" -#: plugin_ui.cc:519 +#: plugin_ui.cc:516 msgid "Edit Latency" msgstr "Editer la latence" -#: plugin_ui.cc:558 +#: plugin_ui.cc:555 msgid "Plugin preset %1 not found" msgstr "Réglage de plugin « %1 » non trouvé" -#: plugin_ui.cc:595 +#: plugin_ui.cc:592 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "full version" msgstr "" -#: plugin_ui.cc:615 plugin_ui.cc:630 +#: plugin_ui.cc:612 plugin_ui.cc:627 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "newer version" msgstr "" -#: plugin_ui.cc:669 +#: plugin_ui.cc:666 msgid "Click to allow normal use of %1 keyboard shortcuts" msgstr "Cliquez pour utiliser les raccourcis claviers de %1" -#: port_group.cc:335 +#: port_group.cc:337 msgid "%1 Busses" msgstr "%1 bus" -#: port_group.cc:336 +#: port_group.cc:338 msgid "%1 Tracks" msgstr "%1 pistes" -#: port_group.cc:337 +#: port_group.cc:339 msgid "Hardware" msgstr "Matériel" -#: port_group.cc:338 +#: port_group.cc:340 msgid "%1 Misc" msgstr "%1 Divers" -#: port_group.cc:339 +#: port_group.cc:341 msgid "Other" msgstr "Autre" -#: port_group.cc:430 port_group.cc:431 +#: port_group.cc:432 port_group.cc:433 msgid "LTC Out" msgstr "LTC Out" -#: port_group.cc:434 port_group.cc:435 +#: port_group.cc:436 port_group.cc:437 msgid "LTC In" msgstr "LTC In" @@ -7140,11 +8259,15 @@ msgstr "Sortie de l'horloge MIDI" msgid "MMC out" msgstr "MMC out" -#: port_group.cc:552 +#: port_group.cc:532 +msgid ":monitor" +msgstr "" + +#: port_group.cc:544 msgid "system:" msgstr "système:" -#: port_group.cc:553 +#: port_group.cc:545 msgid "alsa_pcm" msgstr "alsa_pcm" @@ -7160,17 +8283,13 @@ msgstr "Départ/Sortie" msgid "Return/Input" msgstr "Retour/Entrée" -#: port_insert_ui.cc:71 port_insert_ui.cc:99 -msgid "Disconnected from audio engine" -msgstr "Non connecté au moteur audio" - #: port_insert_ui.cc:86 msgid "No signal detected" msgstr "Aucun signal détecté" -#: port_insert_ui.cc:135 -msgid "Detecting ..." -msgstr "Recherche..." +#: port_insert_ui.cc:166 +msgid "Port Insert " +msgstr "" #: port_matrix.cc:331 port_matrix.cc:357 msgid "Sources" @@ -7211,25 +8330,38 @@ msgstr "" msgid "Flip" msgstr "" -#: port_matrix.cc:726 +#: port_matrix.cc:721 +msgid "" +"It is not possible to add a port here, as the first processor in the track " +"or buss cannot support the new configuration." +msgstr "" + +#: port_matrix.cc:724 msgid "Cannot add port" msgstr "" -#: port_matrix.cc:748 +#: port_matrix.cc:746 msgid "Port removal not allowed" msgstr "Suppression de ports non authorisée" -#: port_matrix.cc:966 +#: port_matrix.cc:747 +msgid "" +"This port cannot be removed.\n" +"Either the first plugin in the track or buss cannot accept\n" +"the new number of inputs or the last plugin has more outputs." +msgstr "" + +#: port_matrix.cc:964 #, c-format msgid "Remove '%s'" msgstr "Supprimer '%s'" -#: port_matrix.cc:981 +#: port_matrix.cc:979 #, c-format msgid "%s all from '%s'" msgstr "%s tout depuis '%s'" -#: port_matrix.cc:1047 +#: port_matrix.cc:1045 msgid "channel" msgstr "canal" @@ -7262,7 +8394,11 @@ msgstr "Afficher les contrôles" msgid "Hide All Controls" msgstr "Cacher tous les contrôles" -#: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 +#: processor_box.cc:465 +msgid "on" +msgstr "" + +#: processor_box.cc:465 rc_option_editor.cc:1898 rc_option_editor.cc:1912 msgid "off" msgstr "Off" @@ -7274,7 +8410,7 @@ msgstr "" "Clic-droit pour ajouter/enlever/modifier\n" "plugins/départs/insertions etc." -#: processor_box.cc:1197 processor_box.cc:1591 +#: processor_box.cc:1197 processor_box.cc:1618 msgid "Plugin Incompatibility" msgstr "Incompatibilité du plugin" @@ -7334,7 +8470,7 @@ msgstr "" msgid "Cannot set up new send: %1" msgstr "Impossible e configuer le nouveau départ: %1" -#: processor_box.cc:1594 +#: processor_box.cc:1621 msgid "" "You cannot reorder these plugins/sends/inserts\n" "in that way because the inputs and\n" @@ -7344,19 +8480,19 @@ msgstr "" "de cette façon car les entrées et les sorties\n" "ne fonctionneront pas correctement." -#: processor_box.cc:1778 +#: processor_box.cc:1805 msgid "Rename Processor" msgstr "Renommer le traitement" -#: processor_box.cc:1809 +#: processor_box.cc:1836 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "Au moins 100 objects IO avec un nom du style %1 - Le nom est inchangé" -#: processor_box.cc:1943 +#: processor_box.cc:1970 msgid "plugin insert constructor failed" msgstr "" -#: processor_box.cc:1954 +#: processor_box.cc:1981 msgid "" "Copying the set of processors on the clipboard failed,\n" "probably because the I/O configuration of the plugins\n" @@ -7366,7 +8502,7 @@ msgstr "" "probablement car la configuration d'entrées/sorties des plugins\n" "ne correspond pas à la configuration de cette piste." -#: processor_box.cc:2000 +#: processor_box.cc:2027 msgid "" "Do you really want to remove all processors from %1?\n" "(this cannot be undone)" @@ -7374,15 +8510,15 @@ msgstr "" "Voulez-vous vraiment supprimer toutes les redirections de %1 ?\n" "Cette action ne pourra pas être annulé!" -#: processor_box.cc:2004 processor_box.cc:2029 +#: processor_box.cc:2031 processor_box.cc:2056 msgid "Yes, remove them all" msgstr "Oui, les supprimer" -#: processor_box.cc:2006 processor_box.cc:2031 +#: processor_box.cc:2033 processor_box.cc:2058 msgid "Remove processors" msgstr "Supprimer les traitements" -#: processor_box.cc:2021 +#: processor_box.cc:2048 msgid "" "Do you really want to remove all pre-fader processors from %1?\n" "(this cannot be undone)" @@ -7390,50 +8526,72 @@ msgstr "" "Voulez-vous vraiment supprimer toutes les pré-redirections de %1 ?\n" "Cette action ne pourra pas être annulé!" -#: processor_box.cc:2200 +#: processor_box.cc:2051 +msgid "" +"Do you really want to remove all post-fader processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2239 msgid "New Plugin" msgstr "Nouveau plugin" -#: processor_box.cc:2203 +#: processor_box.cc:2242 msgid "New Insert" msgstr "Nouvelle insertion" -#: processor_box.cc:2206 +#: processor_box.cc:2245 msgid "New External Send ..." msgstr "Nouveau départ externe..." -#: processor_box.cc:2210 +#: processor_box.cc:2249 msgid "New Aux Send ..." msgstr "Nouveau départ auxilliaire..." -#: processor_box.cc:2214 +#: processor_box.cc:2253 msgid "Clear (all)" msgstr "Supprimer tout" -#: processor_box.cc:2216 +#: processor_box.cc:2255 msgid "Clear (pre-fader)" msgstr "Supprimer (pré-fader)" -#: processor_box.cc:2218 +#: processor_box.cc:2257 msgid "Clear (post-fader)" msgstr "Supprimer (post-fader)" -#: processor_box.cc:2244 +#: processor_box.cc:2283 msgid "Activate All" msgstr "Activer tous les groupes" -#: processor_box.cc:2248 +#: processor_box.cc:2285 +msgid "Deactivate All" +msgstr "" + +#: processor_box.cc:2287 msgid "A/B Plugins" msgstr "A/B Plugins" -#: processor_box.cc:2257 +#: processor_box.cc:2296 msgid "Edit with generic controls..." msgstr "" -#: processor_box.cc:2557 +#: processor_box.cc:2599 msgid "%1: %2 (by %3)" msgstr "%1: %2 (par %3)" +#: processor_box.cc:2601 +msgid "%2 (by %3)" +msgstr "" + +#: patch_change_dialog.cc:51 +msgid "Patch Change" +msgstr "" + +#: patch_change_dialog.cc:77 +msgid "Patch Bank" +msgstr "" + #: patch_change_dialog.cc:84 msgid "Patch" msgstr "" @@ -7454,6 +8612,10 @@ msgstr "grille principale" msgid "Quantize" msgstr "Quantiser" +#: quantize_dialog.cc:56 +msgid "Strength" +msgstr "" + #: quantize_dialog.cc:59 msgid "Swing" msgstr "Swing" @@ -7470,109 +8632,121 @@ msgstr "Aligner début de note" msgid "Snap note end" msgstr "Aligner fin de note" -#: rc_option_editor.cc:69 +#: rc_option_editor.cc:67 msgid "Click audio file:" msgstr "Son du clic:" -#: rc_option_editor.cc:72 rc_option_editor.cc:79 +#: rc_option_editor.cc:70 rc_option_editor.cc:77 msgid "Browse..." msgstr "Parcourir..." -#: rc_option_editor.cc:76 +#: rc_option_editor.cc:74 msgid "Click emphasis audio file:" msgstr "Son du clic accentué:" -#: rc_option_editor.cc:108 +#: rc_option_editor.cc:106 msgid "Choose Click" msgstr "Choix du clic" -#: rc_option_editor.cc:128 +#: rc_option_editor.cc:126 msgid "Choose Click Emphasis" msgstr "choix du clic accentué" -#: rc_option_editor.cc:160 +#: rc_option_editor.cc:158 msgid "Limit undo history to" msgstr "Limiter la taille de l'historique d'annulation à" -#: rc_option_editor.cc:161 +#: rc_option_editor.cc:159 msgid "Save undo history of" msgstr "Enregistrer l'historique d'annulation de" -#: rc_option_editor.cc:170 rc_option_editor.cc:177 +#: rc_option_editor.cc:168 rc_option_editor.cc:175 msgid "commands" msgstr "commandes" -#: rc_option_editor.cc:315 +#: rc_option_editor.cc:313 msgid "Edit using:" msgstr "Éditer avec:" -#: rc_option_editor.cc:341 +#: rc_option_editor.cc:319 rc_option_editor.cc:345 rc_option_editor.cc:372 +msgid "+ button" +msgstr "" + +#: rc_option_editor.cc:339 msgid "Delete using:" msgstr "Effacer avec:" -#: rc_option_editor.cc:368 +#: rc_option_editor.cc:366 msgid "Insert note using:" msgstr "Insérer une note avec:" -#: rc_option_editor.cc:395 +#: rc_option_editor.cc:393 msgid "Ignore snap using:" msgstr "Ignorer la grille d'alignement avec:" -#: rc_option_editor.cc:411 +#: rc_option_editor.cc:409 msgid "Keyboard layout:" msgstr "Modèle de clavier:" -#: rc_option_editor.cc:534 +#: rc_option_editor.cc:532 msgid "Font scaling:" msgstr "Agrandissment des polices:" -#: rc_option_editor.cc:586 +#: rc_option_editor.cc:584 msgid "Playback (seconds of buffering):" msgstr "Écoute (tampon en secondes):" -#: rc_option_editor.cc:599 +#: rc_option_editor.cc:597 msgid "Recording (seconds of buffering):" msgstr "Enregistrement (tampon en secondes):" -#: rc_option_editor.cc:660 +#: rc_option_editor.cc:654 +msgid "Control Surface Protocol" +msgstr "" + +#: rc_option_editor.cc:658 msgid "Feedback" msgstr "Feedback" -#: rc_option_editor.cc:665 +#: rc_option_editor.cc:663 msgid "Double-click on a name to edit settings for an enabled protocol" msgstr "" "Double cliquez sur un nom pour éditer la configuration d'un protocole activé" -#: rc_option_editor.cc:817 +#: rc_option_editor.cc:815 msgid "Show Video Export Info before export" msgstr "" -#: rc_option_editor.cc:818 +#: rc_option_editor.cc:816 msgid "Show Video Server Startup Dialog" msgstr "" -#: rc_option_editor.cc:819 +#: rc_option_editor.cc:817 msgid "Advanced Setup (remote video server)" msgstr "" -#: rc_option_editor.cc:827 +#: rc_option_editor.cc:825 msgid "" "When enabled you can speficify a custom video-server URL and docroot. " "- Do not enable this option unless you know what you are doing." msgstr "" -#: rc_option_editor.cc:829 +#: rc_option_editor.cc:827 msgid "Video Server URL:" msgstr "" -#: rc_option_editor.cc:834 +#: rc_option_editor.cc:832 msgid "" "Base URL of the video-server including http prefix. This is usually 'http://" "hostname.example.org:1554/' and defaults to 'http://localhost:1554/' when " "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:841 +#: rc_option_editor.cc:834 +msgid "Video Folder:" +msgstr "" + +#: rc_option_editor.cc:839 msgid "" "Local path to the video-server document-root. Only files below this " "directory will be accessible by the video-server. If the server run on a " @@ -7581,93 +8755,113 @@ msgid "" "monitor and file-browsing when opening/adding a video file." msgstr "" -#: rc_option_editor.cc:848 +#: rc_option_editor.cc:846 msgid "" "When enabled an information window with details is displayed before " "the video-export dialog." msgstr "" -#: rc_option_editor.cc:853 +#: rc_option_editor.cc:851 msgid "" "When enabled the video server is never launched automatically without " "confirmation" msgstr "" -#: rc_option_editor.cc:993 +#: rc_option_editor.cc:991 msgid "%1 Preferences" msgstr "Préférences de %1" -#: rc_option_editor.cc:1004 +#: rc_option_editor.cc:1002 msgid "DSP CPU Utilization" msgstr "Utilisation du CPU DSP" -#: rc_option_editor.cc:1008 +#: rc_option_editor.cc:1006 msgid "Signal processing uses" msgstr "Le traitement du signal utilise" -#: rc_option_editor.cc:1013 +#: rc_option_editor.cc:1011 msgid "all but one processor" msgstr "tous les processeurs sauf un" -#: rc_option_editor.cc:1014 +#: rc_option_editor.cc:1012 msgid "all available processors" msgstr "tous les processeurs disponibles" -#: rc_option_editor.cc:1017 +#: rc_option_editor.cc:1015 msgid "%1 processors" msgstr "%1 processeurs" -#: rc_option_editor.cc:1020 +#: rc_option_editor.cc:1018 msgid "This setting will only take effect when %1 is restarted." msgstr "Cette option ne sera prise en compte qu'après un redémarrage de %1." -#: rc_option_editor.cc:1032 +#: rc_option_editor.cc:1023 +msgid "Options|Undo" +msgstr "" + +#: rc_option_editor.cc:1030 msgid "Verify removal of last capture" msgstr "Confirmer la destruction du dernier enregistr." -#: rc_option_editor.cc:1040 +#: rc_option_editor.cc:1038 msgid "Make periodic backups of the session file" msgstr "Sauvegardes de secours périodiques" -#: rc_option_editor.cc:1050 +#: rc_option_editor.cc:1043 +msgid "Session Management" +msgstr "" + +#: rc_option_editor.cc:1048 msgid "Always copy imported files" msgstr "Toujours recopier les fichiers importés" -#: rc_option_editor.cc:1065 +#: rc_option_editor.cc:1055 +msgid "Default folder for new sessions:" +msgstr "" + +#: rc_option_editor.cc:1063 msgid "Maximum number of recent sessions" msgstr "Nombre maximum de sessions récentes" -#: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 +#: rc_option_editor.cc:1076 +msgid "Click gain level" +msgstr "" + +#: rc_option_editor.cc:1081 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "Automation" -#: rc_option_editor.cc:1088 +#: rc_option_editor.cc:1086 msgid "Thinning factor (larger value => less data)" msgstr "Facteur d'espacement (plus => moins de données)" -#: rc_option_editor.cc:1097 +#: rc_option_editor.cc:1095 msgid "Automation sampling interval (milliseconds)" msgstr "Intervalle de prise d'automation (ms)" -#: rc_option_editor.cc:1109 +#: rc_option_editor.cc:1107 msgid "Keep record-enable engaged on stop" msgstr "Rester en enregistrement à l'arrêt" -#: rc_option_editor.cc:1123 +#: rc_option_editor.cc:1116 +msgid "Stop recording when an xrun occurs" +msgstr "" + +#: rc_option_editor.cc:1121 msgid "" "When enabled %1 will stop recording if an over- or underrun is " "detected by the audio engine" msgstr "" -#: rc_option_editor.cc:1129 +#: rc_option_editor.cc:1127 msgid "Create markers where xruns occur" msgstr "Créer un repère en cas de désynchro (xrun)" -#: rc_option_editor.cc:1138 +#: rc_option_editor.cc:1136 msgid "Stop at the end of the session" msgstr "Arrêter à la fin de la session" -#: rc_option_editor.cc:1143 +#: rc_option_editor.cc:1141 msgid "" "When enabled if %1 is not recording, it will stop the " "transport when it reaches the current session end marker\n" @@ -7676,11 +8870,11 @@ msgid "" "all times" msgstr "" -#: rc_option_editor.cc:1151 -msgid "Do seamless looping (not possible when slaved to MTC, JACK etc)" +#: rc_option_editor.cc:1149 +msgid "Do seamless looping (not possible when slaved to MTC, LTC etc)" msgstr "" -#: rc_option_editor.cc:1156 +#: rc_option_editor.cc:1154 msgid "" "When enabled this will loop by reading ahead and wrapping around at " "the loop point, preventing any need to do a transport locate at the end of " @@ -7690,39 +8884,39 @@ msgid "" "loop when %1 reaches the end which will often cause a small click or delay" msgstr "" -#: rc_option_editor.cc:1164 +#: rc_option_editor.cc:1162 msgid "Disable per-track record disarm while rolling" msgstr "Désactiver le désarmement par piste pendant l'enregistrement" -#: rc_option_editor.cc:1168 +#: rc_option_editor.cc:1166 msgid "" "When enabled this will prevent you from accidentally stopping " "specific tracks recording during a take" msgstr "" -#: rc_option_editor.cc:1173 +#: rc_option_editor.cc:1171 msgid "12dB gain reduction during fast-forward and fast-rewind" msgstr "-12 dB pendant le déplacement rapide" -#: rc_option_editor.cc:1177 +#: rc_option_editor.cc:1175 msgid "" "This will reduce the unpleasant increase in perceived volume that occurs " "when fast-forwarding or rewinding through some kinds of audio" msgstr "" -#: rc_option_editor.cc:1181 +#: rc_option_editor.cc:1179 msgid "Sync/Slave" msgstr "Sync/Esclave" -#: rc_option_editor.cc:1185 +#: rc_option_editor.cc:1183 msgid "External timecode source" msgstr "Source de synchronisation Timecode" -#: rc_option_editor.cc:1195 +#: rc_option_editor.cc:1193 msgid "Match session video frame rate to external timecode" msgstr "" -#: rc_option_editor.cc:1201 +#: rc_option_editor.cc:1199 msgid "" "This option controls the value of the video frame rate while chasing " "an external timecode source.\n" @@ -7736,21 +8930,21 @@ msgid "" "external timecode standard and the session standard." msgstr "" -#: rc_option_editor.cc:1211 +#: rc_option_editor.cc:1209 msgid "External timecode is sync locked" msgstr "Timecode externe est verrouillé (sync locked)" -#: rc_option_editor.cc:1217 +#: rc_option_editor.cc:1215 msgid "" "When enabled indicates that the selected external timecode source " "shares sync (Black & Burst, Wordclock, etc) with the audio interface." msgstr "" -#: rc_option_editor.cc:1224 +#: rc_option_editor.cc:1222 msgid "Lock to 29.9700 fps instead of 30000/1001" msgstr "" -#: rc_option_editor.cc:1230 +#: rc_option_editor.cc:1228 msgid "" "When enabled the external timecode source is assumed to use 29.97 fps " "instead of 30000/1001.\n" @@ -7763,15 +8957,27 @@ msgid "" "variant of using exactly 29.97 fps has zero timecode drift.\n" msgstr "" -#: rc_option_editor.cc:1244 +#: rc_option_editor.cc:1238 +msgid "LTC Reader" +msgstr "" + +#: rc_option_editor.cc:1242 msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1269 +#: rc_option_editor.cc:1255 +msgid "LTC Generator" +msgstr "" + +#: rc_option_editor.cc:1260 +msgid "Enable LTC generator" +msgstr "" + +#: rc_option_editor.cc:1267 msgid "send LTC while stopped" msgstr "envoyer LTC à l'arrêt" -#: rc_option_editor.cc:1275 +#: rc_option_editor.cc:1273 msgid "" "When enabled %1 will continue to send LTC information even when the " "transport (playhead) is not moving" @@ -7779,98 +8985,114 @@ msgstr "" "Activé %1 continuera à envoyer l'info LTC même quand le transport (la " "tête de lecture) n'est pas en movement" -#: rc_option_editor.cc:1285 +#: rc_option_editor.cc:1279 +msgid "LTC generator level" +msgstr "" + +#: rc_option_editor.cc:1283 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " "is 0dBu ^= -18dbFS in an EBU calibrated system" msgstr "" -#: rc_option_editor.cc:1305 +#: rc_option_editor.cc:1295 +msgid "Link selection of regions and tracks" +msgstr "" + +#: rc_option_editor.cc:1303 msgid "Move relevant automation when audio regions are moved" msgstr "" "Déplacer les automations pertinentes lors du déplacement des regions audio" -#: rc_option_editor.cc:1313 +#: rc_option_editor.cc:1311 msgid "Show meters on tracks in the editor" msgstr "Afficher les VU-mètres sur les pistes" -#: rc_option_editor.cc:1321 +#: rc_option_editor.cc:1319 msgid "Display master-meter in the toolbar" msgstr "" -#: rc_option_editor.cc:1328 +#: rc_option_editor.cc:1326 msgid "Regions in active edit groups are edited together" msgstr "Les régions en groupes d'édition actives sont modifiées ensembles" -#: rc_option_editor.cc:1329 +#: rc_option_editor.cc:1327 msgid "whenever they overlap in time" msgstr "si elles se chevauchent dans le temps" -#: rc_option_editor.cc:1330 +#: rc_option_editor.cc:1328 msgid "only if they have identical length, position and origin" msgstr "seulement si elles partagent longueur, position et origine" -#: rc_option_editor.cc:1348 +#: rc_option_editor.cc:1338 +msgid "Make rubberband selection rectangle snap to the grid" +msgstr "" + +#: rc_option_editor.cc:1346 msgid "Show waveforms in regions" msgstr "Afficher le signal dans les régions" -#: rc_option_editor.cc:1357 +#: rc_option_editor.cc:1354 +msgid "Show gain envelopes in audio regions" +msgstr "" + +#: rc_option_editor.cc:1355 msgid "in all modes" msgstr "dans toutes les modes" -#: rc_option_editor.cc:1358 +#: rc_option_editor.cc:1356 msgid "only in region gain mode" msgstr "seulement en mode d'édition du gain des régions" -#: rc_option_editor.cc:1365 +#: rc_option_editor.cc:1363 msgid "Waveform scale" msgstr "Échelle du signal" -#: rc_option_editor.cc:1370 +#: rc_option_editor.cc:1368 msgid "linear" msgstr "linéaire" -#: rc_option_editor.cc:1371 +#: rc_option_editor.cc:1369 msgid "logarithmic" msgstr "logarithmique" -#: rc_option_editor.cc:1377 +#: rc_option_editor.cc:1375 msgid "Waveform shape" msgstr "Forme du signal" -#: rc_option_editor.cc:1382 +#: rc_option_editor.cc:1380 msgid "traditional" msgstr "Traditionnel" -#: rc_option_editor.cc:1383 +#: rc_option_editor.cc:1381 msgid "rectified" msgstr "Redressé" -#: rc_option_editor.cc:1390 +#: rc_option_editor.cc:1388 msgid "Show waveforms for audio while it is being recorded" msgstr "Afficher le signal audio pendant l'enregistrement" -#: rc_option_editor.cc:1398 +#: rc_option_editor.cc:1396 msgid "Show zoom toolbar" msgstr "Afficher la barre d'outils du zoom" -#: rc_option_editor.cc:1406 +#: rc_option_editor.cc:1404 msgid "Color regions using their track's color" msgstr "Appliquer la couleur de la piste aux régions" -#: rc_option_editor.cc:1422 -msgid "Synchronise editor and mixer track order" -msgstr "Ordre des pistes identique entre éditeur et mixage" +#: rc_option_editor.cc:1412 +msgid "Update editor window during drags of the summary" +msgstr "" -#: rc_option_editor.cc:1430 +#: rc_option_editor.cc:1420 msgid "Synchronise editor and mixer selection" msgstr "Sélection des pistes identique entre éditeur et mixage" -#: rc_option_editor.cc:1437 +#: rc_option_editor.cc:1427 msgid "Name new markers" msgstr "Nommer les nouveaux repères" -#: rc_option_editor.cc:1443 +#: rc_option_editor.cc:1433 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " "be set as it is created.\n" @@ -7880,349 +9102,417 @@ msgstr "" "Si actif, demander un nom à la création de toute repère nouvelle.\n" "Vous pouvez toujours renommer les repères par clic-droit" -#: rc_option_editor.cc:1449 +#: rc_option_editor.cc:1439 msgid "Auto-scroll editor window when dragging near its edges" msgstr "" "Défilement automatique de l'éditeur pendant un cliquer-glisser près de ses " "bords" -#: rc_option_editor.cc:1456 +#: rc_option_editor.cc:1446 msgid "Buffering" msgstr "Taille du tampon" -#: rc_option_editor.cc:1464 +#: rc_option_editor.cc:1454 msgid "Record monitoring handled by" msgstr "Monitoring de l'enregistrement géré par" -#: rc_option_editor.cc:1475 +#: rc_option_editor.cc:1460 +msgid "via Audio Driver" +msgstr "" + +#: rc_option_editor.cc:1463 msgid "ardour" msgstr "Ardour" -#: rc_option_editor.cc:1476 +#: rc_option_editor.cc:1464 msgid "audio hardware" msgstr "le matériel audio" -#: rc_option_editor.cc:1483 +#: rc_option_editor.cc:1471 msgid "Tape machine mode" msgstr "Mode bande" -#: rc_option_editor.cc:1488 +#: rc_option_editor.cc:1476 msgid "Connection of tracks and busses" msgstr "Connection des pistes et des bus" -#: rc_option_editor.cc:1493 +#: rc_option_editor.cc:1481 msgid "Auto-connect master/monitor busses" msgstr "Connection automatique du bus général et des bus de monitoring" -#: rc_option_editor.cc:1500 +#: rc_option_editor.cc:1488 msgid "Connect track inputs" msgstr "Connecter les entrées des pistes" -#: rc_option_editor.cc:1505 +#: rc_option_editor.cc:1493 msgid "automatically to physical inputs" msgstr "automatiquement aux entrées matérielles" -#: rc_option_editor.cc:1506 rc_option_editor.cc:1519 +#: rc_option_editor.cc:1494 rc_option_editor.cc:1507 msgid "manually" msgstr "Manuellement" -#: rc_option_editor.cc:1512 +#: rc_option_editor.cc:1500 msgid "Connect track and bus outputs" msgstr "Connecter les sorties des pistes et des bus" -#: rc_option_editor.cc:1517 +#: rc_option_editor.cc:1505 msgid "automatically to physical outputs" msgstr "automatiquement aux sorties matérielles" -#: rc_option_editor.cc:1518 +#: rc_option_editor.cc:1506 msgid "automatically to master bus" msgstr "Automatiquement au bus géneral" -#: rc_option_editor.cc:1535 +#: rc_option_editor.cc:1511 +msgid "Denormals" +msgstr "" + +#: rc_option_editor.cc:1516 +msgid "Use DC bias to protect against denormals" +msgstr "" + +#: rc_option_editor.cc:1523 msgid "Processor handling" msgstr "Gestion du traitement" -#: rc_option_editor.cc:1540 +#: rc_option_editor.cc:1528 msgid "no processor handling" msgstr "Aucune gestion" -#: rc_option_editor.cc:1549 +#: rc_option_editor.cc:1533 +msgid "use FlushToZero" +msgstr "" + +#: rc_option_editor.cc:1537 msgid "use DenormalsAreZero" msgstr "Utiliser DenormalsAreZero" -#: rc_option_editor.cc:1571 +#: rc_option_editor.cc:1541 +msgid "use FlushToZero and DenormalsAreZero" +msgstr "" + +#: rc_option_editor.cc:1551 +msgid "Silence plugins when the transport is stopped" +msgstr "" + +#: rc_option_editor.cc:1559 msgid "Make new plugins active" msgstr "Activer les nouveaux plugins" -#: rc_option_editor.cc:1579 +#: rc_option_editor.cc:1567 msgid "Enable automatic analysis of audio" msgstr "Activer l'analyse automatique de l'audio" -#: rc_option_editor.cc:1587 +#: rc_option_editor.cc:1575 msgid "Replicate missing region channels" msgstr "Dupliquer les canaux manquants dans la région" -#: rc_option_editor.cc:1594 rc_option_editor.cc:1609 rc_option_editor.cc:1621 -#: rc_option_editor.cc:1633 rc_option_editor.cc:1645 rc_option_editor.cc:1649 -#: rc_option_editor.cc:1657 rc_option_editor.cc:1665 rc_option_editor.cc:1673 -#: rc_option_editor.cc:1675 rc_option_editor.cc:1683 rc_option_editor.cc:1691 -#: rc_option_editor.cc:1699 +#: rc_option_editor.cc:1582 rc_option_editor.cc:1597 rc_option_editor.cc:1609 +#: rc_option_editor.cc:1621 rc_option_editor.cc:1633 rc_option_editor.cc:1637 +#: rc_option_editor.cc:1645 rc_option_editor.cc:1653 rc_option_editor.cc:1661 +#: rc_option_editor.cc:1663 rc_option_editor.cc:1671 rc_option_editor.cc:1679 +#: rc_option_editor.cc:1687 msgid "Solo / mute" msgstr "Solo/muet" -#: rc_option_editor.cc:1604 +#: rc_option_editor.cc:1585 +msgid "Solo-in-place mute cut (dB)" +msgstr "" + +#: rc_option_editor.cc:1592 msgid "Solo controls are Listen controls" msgstr "" -#: rc_option_editor.cc:1625 +#: rc_option_editor.cc:1601 +msgid "Listen Position" +msgstr "" + +#: rc_option_editor.cc:1606 +msgid "after-fader (AFL)" +msgstr "" + +#: rc_option_editor.cc:1607 +msgid "pre-fader (PFL)" +msgstr "" + +#: rc_option_editor.cc:1613 msgid "PFL signals come from" msgstr "Les signaux PFL sont récupérés" -#: rc_option_editor.cc:1630 +#: rc_option_editor.cc:1618 msgid "before pre-fader processors" msgstr "avant les traitements pré-fader" -#: rc_option_editor.cc:1631 +#: rc_option_editor.cc:1619 msgid "pre-fader but after pre-fader processors" msgstr "après les traitements pré-fader" -#: rc_option_editor.cc:1637 +#: rc_option_editor.cc:1625 msgid "AFL signals come from" msgstr "Les signaux AFL sont récupérés" -#: rc_option_editor.cc:1642 +#: rc_option_editor.cc:1630 msgid "immediately post-fader" msgstr "immédiatement post-fader" -#: rc_option_editor.cc:1643 +#: rc_option_editor.cc:1631 msgid "after post-fader processors (before pan)" msgstr "après les traitements post-fader (avant panoramique)" -#: rc_option_editor.cc:1652 +#: rc_option_editor.cc:1640 msgid "Exclusive solo" msgstr "Solo exclusif" -#: rc_option_editor.cc:1660 +#: rc_option_editor.cc:1648 msgid "Show solo muting" msgstr "Le solo montre les sourdines" -#: rc_option_editor.cc:1668 +#: rc_option_editor.cc:1656 msgid "Soloing overrides muting" msgstr "\"Solo\" annule \"Muet\"" -#: rc_option_editor.cc:1673 +#: rc_option_editor.cc:1661 msgid "Default track / bus muting options" msgstr "Options de mutisation par défaut des pistes/bus" -#: rc_option_editor.cc:1678 +#: rc_option_editor.cc:1666 msgid "Mute affects pre-fader sends" msgstr "\"Muet\" agit sur les départs pré-fader" -#: rc_option_editor.cc:1686 +#: rc_option_editor.cc:1674 msgid "Mute affects post-fader sends" msgstr "\"Muet\" agit sur les départs post-fader" -#: rc_option_editor.cc:1694 +#: rc_option_editor.cc:1682 msgid "Mute affects control outputs" msgstr "\"Muet\" agit sur les sorties de contrôle" -#: rc_option_editor.cc:1702 +#: rc_option_editor.cc:1690 msgid "Mute affects main outputs" msgstr "\"Muet\" agit sur les sorties principales" -#: rc_option_editor.cc:1718 +#: rc_option_editor.cc:1706 msgid "Send MIDI Time Code" msgstr "Envoyer MTC (Midi Time Code)" -#: rc_option_editor.cc:1726 +#: rc_option_editor.cc:1714 msgid "Percentage either side of normal transport speed to transmit MTC" msgstr "" -#: rc_option_editor.cc:1735 +#: rc_option_editor.cc:1723 msgid "Obey MIDI Machine Control commands" msgstr "Obeir aux MMC MIDI (MIDI Machine Controls)" -#: rc_option_editor.cc:1743 +#: rc_option_editor.cc:1731 msgid "Send MIDI Machine Control commands" msgstr "Envoyer les MMC MIDI" -#: rc_option_editor.cc:1759 +#: rc_option_editor.cc:1739 +msgid "Send MIDI control feedback" +msgstr "" + +#: rc_option_editor.cc:1747 msgid "Inbound MMC device ID" msgstr "identifiant de l'appareil MMC en entrée" -#: rc_option_editor.cc:1768 +#: rc_option_editor.cc:1756 msgid "Outbound MMC device ID" msgstr "identifiant de l'appareil MMC en sortie" -#: rc_option_editor.cc:1777 +#: rc_option_editor.cc:1765 msgid "Initial program change" msgstr "" -#: rc_option_editor.cc:1786 +#: rc_option_editor.cc:1774 msgid "Display first MIDI bank/program as 0" msgstr "Afficher le premier programme/banque MIDI comme 0." -#: rc_option_editor.cc:1794 +#: rc_option_editor.cc:1782 msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "Ne jamais afficher des messages MIDI périodiques (MTC, MIDI Clock)" -#: rc_option_editor.cc:1802 +#: rc_option_editor.cc:1790 msgid "Sound MIDI notes as they are selected" msgstr "" -#: rc_option_editor.cc:1810 rc_option_editor.cc:1820 rc_option_editor.cc:1822 +#: rc_option_editor.cc:1798 rc_option_editor.cc:1808 rc_option_editor.cc:1810 msgid "User interaction" msgstr "Intération utilisateur" -#: rc_option_editor.cc:1813 +#: rc_option_editor.cc:1801 msgid "" "Use translations of %1 messages\n" " (requires a restart of %1 to take effect)\n" " (if available for your language preferences)" msgstr "" -#: rc_option_editor.cc:1820 +#: rc_option_editor.cc:1808 msgid "Keyboard" msgstr "Clavier" -#: rc_option_editor.cc:1830 +#: rc_option_editor.cc:1818 msgid "Control surface remote ID" msgstr "Identifiant distant de la surface de contrôle" -#: rc_option_editor.cc:1835 +#: rc_option_editor.cc:1823 msgid "assigned by user" msgstr "assigné manuellement" -#: rc_option_editor.cc:1836 +#: rc_option_editor.cc:1824 msgid "follows order of mixer" msgstr "suivre l'ordre de la console de mixage" -#: rc_option_editor.cc:1837 -msgid "follows order of editor" -msgstr "suivre l'ordre de l'Éditeur" +#: rc_option_editor.cc:1833 rc_option_editor.cc:1841 rc_option_editor.cc:1851 +#: rc_option_editor.cc:1872 rc_option_editor.cc:1881 rc_option_editor.cc:1889 +#: rc_option_editor.cc:1903 rc_option_editor.cc:1922 rc_option_editor.cc:1938 +#: rc_option_editor.cc:1954 rc_option_editor.cc:1968 rc_option_editor.cc:1982 +#: rc_option_editor.cc:1984 +msgid "Preferences|GUI" +msgstr "" -#: rc_option_editor.cc:1849 +#: rc_option_editor.cc:1836 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "" -#: rc_option_editor.cc:1857 +#: rc_option_editor.cc:1844 msgid "Show tooltips if mouse hovers over a control" msgstr "Montrer des infobulles quand la souris survole une contrôle" -#: rc_option_editor.cc:1867 +#: rc_option_editor.cc:1854 msgid "GUI" msgstr "IHM" -#: rc_option_editor.cc:1870 +#: rc_option_editor.cc:1857 msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" "Mettre à jour l'horloge du transport tous les 40ms au lieu de tous les 100ms" -#: rc_option_editor.cc:1897 +#: rc_option_editor.cc:1874 +msgid "Mixer Strip" +msgstr "" + +#: rc_option_editor.cc:1884 msgid "Use narrow strips in the mixer by default" msgstr "Utiliser des tranches de mixage étroites par défaut" -#: rc_option_editor.cc:1912 +#: rc_option_editor.cc:1893 +msgid "Peak hold time" +msgstr "" + +#: rc_option_editor.cc:1899 msgid "short" msgstr "Court" -#: rc_option_editor.cc:1914 +#: rc_option_editor.cc:1900 +msgid "medium" +msgstr "" + +#: rc_option_editor.cc:1901 msgid "long" msgstr "Long" -#: rc_option_editor.cc:1926 +#: rc_option_editor.cc:1907 +msgid "DPM fall-off" +msgstr "" + +#: rc_option_editor.cc:1913 msgid "slowest [6.6dB/sec]" msgstr "" -#: rc_option_editor.cc:1927 +#: rc_option_editor.cc:1914 msgid "slow [8.6dB/sec] (BBC PPM, EBU PPM)" msgstr "" -#: rc_option_editor.cc:1928 +#: rc_option_editor.cc:1915 msgid "slowish [12.0dB/sec] (DIN)" msgstr "" -#: rc_option_editor.cc:1929 +#: rc_option_editor.cc:1916 msgid "moderate [13.3dB/sec] (EBU Digi PPM, IRT Digi PPM)" msgstr "" -#: rc_option_editor.cc:1930 +#: rc_option_editor.cc:1917 msgid "medium [20dB/sec]" msgstr "" -#: rc_option_editor.cc:1931 +#: rc_option_editor.cc:1918 msgid "fast [32dB/sec]" msgstr "" -#: rc_option_editor.cc:1932 +#: rc_option_editor.cc:1919 msgid "faster [46dB/sec]" msgstr "" -#: rc_option_editor.cc:1933 +#: rc_option_editor.cc:1920 msgid "fastest [70dB/sec]" msgstr "" -#: rc_option_editor.cc:1939 +#: rc_option_editor.cc:1926 msgid "Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1944 rc_option_editor.cc:1960 +#: rc_option_editor.cc:1931 rc_option_editor.cc:1947 msgid "-24dBFS (SMPTE US: 4dBu = -20dBFS)" msgstr "" -#: rc_option_editor.cc:1945 rc_option_editor.cc:1961 +#: rc_option_editor.cc:1932 rc_option_editor.cc:1948 msgid "-20dBFS (SMPTE RP.0155)" msgstr "" -#: rc_option_editor.cc:1946 rc_option_editor.cc:1962 +#: rc_option_editor.cc:1933 rc_option_editor.cc:1949 msgid "-18dBFS (EBU, BBC)" msgstr "" -#: rc_option_editor.cc:1947 rc_option_editor.cc:1963 +#: rc_option_editor.cc:1934 rc_option_editor.cc:1950 msgid "-15dBFS (DIN)" msgstr "" -#: rc_option_editor.cc:1949 +#: rc_option_editor.cc:1936 msgid "" "Configure meter-marks and color-knee point for dBFS scale DPM, set reference " "level for IEC1/Nordic, IEC2 PPM and VU meter." msgstr "" -#: rc_option_editor.cc:1955 +#: rc_option_editor.cc:1942 msgid "IEC1/DIN Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1965 +#: rc_option_editor.cc:1952 msgid "Reference level for IEC1/DIN meter." msgstr "" -#: rc_option_editor.cc:1971 +#: rc_option_editor.cc:1958 msgid "VU Meter standard" msgstr "" -#: rc_option_editor.cc:1976 +#: rc_option_editor.cc:1963 msgid "0VU = -2dBu (France)" msgstr "" -#: rc_option_editor.cc:1977 +#: rc_option_editor.cc:1964 msgid "0VU = 0dBu (North America, Australia)" msgstr "" -#: rc_option_editor.cc:1978 +#: rc_option_editor.cc:1965 msgid "0VU = +4dBu (standard)" msgstr "" -#: rc_option_editor.cc:1979 +#: rc_option_editor.cc:1966 msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1993 +#: rc_option_editor.cc:1972 +msgid "Peak threshold [dBFS]" +msgstr "" + +#: rc_option_editor.cc:1980 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " "indicator will flash red." msgstr "" -#: rc_option_editor.cc:2000 +#: rc_option_editor.cc:1987 msgid "LED meter style" msgstr "" @@ -8250,6 +9540,10 @@ msgstr "" msgid "Sync point (absolute):" msgstr "" +#: region_editor.cc:98 +msgid "File start:" +msgstr "" + #: region_editor.cc:102 msgid "Sources:" msgstr "Sources:" @@ -8274,6 +9568,10 @@ msgstr "changer la fin de la région" msgid "change region length" msgstr "changer la longueur de la région" +#: region_editor.cc:403 region_editor.cc:415 +msgid "change region sync point" +msgstr "" + #: region_layering_order_editor.cc:41 msgid "RegionLayeringOrderEditor" msgstr "" @@ -8286,6 +9584,10 @@ msgstr "Nom de la région" msgid "Track:" msgstr "Piste:" +#: region_layering_order_editor.cc:103 +msgid "Choose Top Region" +msgstr "" + #: region_view.cc:274 msgid "SilenceText" msgstr "" @@ -8346,6 +9648,10 @@ msgstr "" msgid "Complex Domain" msgstr "" +#: rhythm_ferret.cc:59 +msgid "Phase Deviation" +msgstr "" + #: rhythm_ferret.cc:60 msgid "Kullback-Liebler" msgstr "Kullback-Liebler" @@ -8430,10 +9736,18 @@ msgstr "Armement" msgid "Selection" msgstr "Sélection" +#: route_group_dialog.cc:46 +msgid "Active state" +msgstr "" + #: route_group_dialog.cc:47 route_group_dialog.cc:76 theme_manager.cc:71 msgid "Color" msgstr "Couleur" +#: route_group_dialog.cc:53 +msgid "RouteGroupDialog" +msgstr "" + #: route_group_dialog.cc:92 msgid "Sharing" msgstr "Partage" @@ -8501,6 +9815,10 @@ msgstr "Enregistrement" msgid "Route Group" msgstr "Groupe" +#: route_time_axis.cc:213 +msgid "MIDI Controllers and Automation" +msgstr "" + #: route_time_axis.cc:390 msgid "Show All Automation" msgstr "Afficher toute l'automation" @@ -8529,6 +9847,10 @@ msgstr "" msgid "Stacked" msgstr "Empilés" +#: route_time_axis.cc:495 +msgid "Layers" +msgstr "" + #: route_time_axis.cc:564 msgid "Automatic (based on I/O connections)" msgstr "Automatique (à partir des connections I/O)" @@ -8541,6 +9863,14 @@ msgstr "" msgid "(Currently: Capture Time)" msgstr "" +#: route_time_axis.cc:584 +msgid "Align With Existing Material" +msgstr "" + +#: route_time_axis.cc:589 +msgid "Align With Capture Time" +msgstr "" + #: route_time_axis.cc:594 msgid "Alignment" msgstr "Alignement" @@ -8601,6 +9931,10 @@ msgstr "Copier la prise" msgid "Clear Current" msgstr "Effacer actuelle" +#: route_time_axis.cc:1503 +msgid "Select From All..." +msgstr "" + #: route_time_axis.cc:1591 msgid "Take: %1.%2" msgstr "Prise: %1.%2" @@ -8617,6 +9951,14 @@ msgstr "Supprimer \"%1\"" msgid "programming error: underlay reference pointer pairs are inconsistent!" msgstr "programming error: underlay reference pointer pairs are inconsistent!" +#: route_time_axis.cc:2408 +msgid "After-fade listen (AFL)" +msgstr "" + +#: route_time_axis.cc:2412 +msgid "Pre-fade listen (PFL)" +msgstr "" + #: route_time_axis.cc:2416 msgid "s" msgstr "s" @@ -8653,14 +9995,46 @@ msgstr "Monitoring du son enregistré" msgid "Not connected to JACK - cannot engage record" msgstr "Non connecté à JACK – impossible d'enclencher l'enregistrement" +#: route_ui.cc:786 +msgid "Step Entry" +msgstr "" + #: route_ui.cc:859 msgid "Assign all tracks (prefader)" msgstr "" +#: route_ui.cc:863 +msgid "Assign all tracks and buses (prefader)" +msgstr "" + #: route_ui.cc:867 msgid "Assign all tracks (postfader)" msgstr "" +#: route_ui.cc:871 +msgid "Assign all tracks and buses (postfader)" +msgstr "" + +#: route_ui.cc:875 +msgid "Assign selected tracks (prefader)" +msgstr "" + +#: route_ui.cc:879 +msgid "Assign selected tracks and buses (prefader)" +msgstr "" + +#: route_ui.cc:882 +msgid "Assign selected tracks (postfader)" +msgstr "" + +#: route_ui.cc:886 +msgid "Assign selected tracks and buses (postfader)" +msgstr "" + +#: route_ui.cc:889 +msgid "Copy track/bus gains to sends" +msgstr "" + #: route_ui.cc:890 msgid "Set sends gain to -inf" msgstr "Régler gain des départs à -inf" @@ -8734,6 +10108,10 @@ msgstr "" "Il est déconseillé d'utiliser le caractère ':' pour les pistes et les bus.\n" "Voulez-vous tout de même utiliser ce nom?" +#: route_ui.cc:1520 +msgid "Use the new name" +msgstr "" + #: route_ui.cc:1521 msgid "Re-edit the name" msgstr "" @@ -8778,18 +10156,27 @@ msgid "" "The remote control ID of %3 cannot be changed." msgstr "" -#: route_ui.cc:1818 -msgid "" -"The remote control ID of %6 is: %3\n" -"\n" -"\n" -"Remote Control IDs are currently determined by track/bus ordering in %1\n" -"\n" -"%4Use the User Interaction tab of the Preferences window if you want to " -"change this%5" +#: route_ui.cc:1816 +msgid "the master bus" msgstr "" -#: route_ui.cc:1876 +#: route_ui.cc:1816 +msgid "the monitor bus" +msgstr "" + +#: route_ui.cc:1818 +msgid "" +"The remote control ID of %5 is: %2\n" +"\n" +"\n" +"Remote Control IDs are currently determined by track/bus ordering in " +"Ardour.\n" +"\n" +"%3Use the User Interaction tab of the Preferences window if you want to " +"change this%4" +msgstr "" + +#: route_ui.cc:1875 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " "to show menu." @@ -8797,7 +10184,7 @@ msgstr "" "Clic gauche pour inverser la phase du canal %1 de cette piste. Clic droit " "pour afficher le menu." -#: route_ui.cc:1878 +#: route_ui.cc:1877 msgid "Click to show a menu of channels for inversion (phase reverse)" msgstr "" @@ -8817,6 +10204,118 @@ msgstr "dossier de la session" msgid "Send " msgstr "Départ " +#: session_dialog.cc:66 +msgid "Session Setup" +msgstr "" + +#: session_dialog.cc:71 +msgid "Advanced options ..." +msgstr "" + +#: session_dialog.cc:267 +msgid "New Session" +msgstr "Créer une session" + +#: session_dialog.cc:305 +msgid "Check the website for more..." +msgstr "" + +#: session_dialog.cc:308 +msgid "Click to open the program website in your web browser" +msgstr "" + +#: session_dialog.cc:328 +msgid "Sample Rate" +msgstr "" + +#: session_dialog.cc:329 +msgid "Disk Format" +msgstr "" + +#: session_dialog.cc:347 +msgid "Select session file" +msgstr "Sélection de la session" + +#: session_dialog.cc:362 +msgid "Other Sessions" +msgstr "" + +#: session_dialog.cc:388 +msgid "Open" +msgstr "Ouvrir" + +#: session_dialog.cc:455 +msgid "Session name:" +msgstr "Nom de la session:" + +#: session_dialog.cc:477 +msgid "Create session folder in:" +msgstr "Créer le dossier dans:" + +#: session_dialog.cc:500 +msgid "Select folder for session" +msgstr "Choisir le dossier de session" + +#: session_dialog.cc:529 +msgid "Use this template" +msgstr "Choix du modèle" + +#: session_dialog.cc:532 +msgid "no template" +msgstr "Pas de modèle" + +#: session_dialog.cc:664 session_dialog.cc:696 +msgid "32 bit float" +msgstr "" + +#: session_dialog.cc:667 session_dialog.cc:699 +msgid "24 bit" +msgstr "" + +#: session_dialog.cc:670 session_dialog.cc:702 +msgid "16 bit" +msgstr "" + +#: session_dialog.cc:741 session_dialog.cc:742 session_dialog.cc:743 +msgid "channels" +msgstr "canaux" + +#: session_dialog.cc:757 +msgid "Busses" +msgstr "Bus:" + +#: session_dialog.cc:758 +msgid "Inputs" +msgstr "Entrées:" + +#: session_dialog.cc:759 +msgid "Outputs" +msgstr "Sorties:" + +#: session_dialog.cc:767 +msgid "Create master bus" +msgstr "Bus de sortie à" + +#: session_dialog.cc:777 +msgid "Automatically connect to physical inputs" +msgstr "Se connecter aux entrées matérielles automatiquement" + +#: session_dialog.cc:784 session_dialog.cc:843 +msgid "Use only" +msgstr "Utiliser seulement" + +#: session_dialog.cc:837 +msgid "Automatically connect outputs" +msgstr "Se connecter aux sorties automatiquement" + +#: session_dialog.cc:859 +msgid "... to master bus" +msgstr "...au bus général" + +#: session_dialog.cc:869 +msgid "... to physical outputs" +msgstr "... aux sorties matérielles" + #: session_import_dialog.cc:64 msgid "Import from Session" msgstr "Importer depuis une session" @@ -8866,6 +10365,10 @@ msgstr "Web" msgid "Organization" msgstr "" +#: session_metadata_dialog.cc:537 +msgid "Country" +msgstr "" + #: session_metadata_dialog.cc:551 msgid "Title" msgstr "Titre" @@ -8878,6 +10381,10 @@ msgstr "Numéro de la piste" msgid "Subtitle" msgstr "Sous-titre" +#: session_metadata_dialog.cc:560 +msgid "Grouping" +msgstr "" + #: session_metadata_dialog.cc:563 msgid "Artist" msgstr "Artiste" @@ -8966,10 +10473,18 @@ msgstr "Producteur" msgid "DJ Mixer" msgstr "DJ Mixeur" +#: session_metadata_dialog.cc:646 +msgid "Metadata|Mixer" +msgstr "" + #: session_metadata_dialog.cc:654 msgid "School" msgstr "" +#: session_metadata_dialog.cc:659 +msgid "Instructor" +msgstr "" + #: session_metadata_dialog.cc:662 msgid "Course" msgstr "" @@ -9268,6 +10783,10 @@ msgstr "Raccourcir la nouvelle note" msgid "replace both overlapping notes with a single note" msgstr "Fusionner les notes" +#: session_option_editor.cc:259 +msgid "Glue to bars and beats" +msgstr "" + #: session_option_editor.cc:263 msgid "Glue new markers to bars and beats" msgstr "Coller les nouveaux marqueurs aux mesures/temps" @@ -9276,18 +10795,54 @@ msgstr "Coller les nouveaux marqueurs aux mesures/temps" msgid "Glue new regions to bars and beats" msgstr "Coller les nouvelles régions aux mesures/temps" +#: session_option_editor.cc:275 session_option_editor.cc:277 +#: session_option_editor.cc:284 session_option_editor.cc:291 +#: session_option_editor.cc:298 session_option_editor.cc:300 +#: session_option_editor.cc:307 session_option_editor.cc:314 +#: session_option_editor.cc:321 session_option_editor.cc:323 +msgid "Meterbridge" +msgstr "" + #: session_option_editor.cc:275 msgid "Route Display" msgstr "" +#: session_option_editor.cc:279 +msgid "Show Midi Tracks" +msgstr "" + +#: session_option_editor.cc:286 +msgid "Show Busses" +msgstr "" + +#: session_option_editor.cc:293 +msgid "Include Master Bus" +msgstr "" + #: session_option_editor.cc:298 msgid "Button Area" msgstr "" +#: session_option_editor.cc:302 +msgid "Rec-enable Button" +msgstr "" + +#: session_option_editor.cc:309 +msgid "Mute Button" +msgstr "" + +#: session_option_editor.cc:316 +msgid "Solo Button" +msgstr "" + #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" +#: session_option_editor.cc:325 +msgid "Track Name" +msgstr "" + #: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 msgid "as new tracks" msgstr "comme nouvelles pistes" @@ -9428,6 +10983,14 @@ msgstr "ID" msgid "Filename" msgstr "Nom du fichier " +#: sfdb_ui.cc:570 +msgid "Duration" +msgstr "" + +#: sfdb_ui.cc:571 +msgid "Size" +msgstr "" + #: sfdb_ui.cc:572 msgid "Samplerate" msgstr "Taux d'échantillonnage" @@ -9538,6 +11101,10 @@ msgstr "Point d'édition" msgid "playhead" msgstr "tête de lecture" +#: sfdb_ui.cc:1554 +msgid "session start" +msgstr "" + #: sfdb_ui.cc:1559 msgid "Add files as ..." msgstr "" @@ -9594,6 +11161,10 @@ msgstr "Molette" msgid "Maximum speed" msgstr "Vitesse maximale" +#: shuttle_control.cc:561 +msgid "Playing" +msgstr "" + #: shuttle_control.cc:576 #, c-format msgid "<<< %+d semitones" @@ -9625,14 +11196,6 @@ msgid "Azimuth:" msgstr "Azimuth:" #: startup.cc:72 -msgid "Create a new session" -msgstr "Créer une nouvelle session" - -#: startup.cc:73 -msgid "Open an existing session" -msgstr "Ouvrir une session" - -#: startup.cc:74 msgid "" "Use an external mixer or the hardware mixer of your audio interface.\n" "%1 will play NO role in monitoring" @@ -9640,23 +11203,40 @@ msgstr "" "Utiliser une console de mixage externe ou celle de l'interface audio.\n" "(%1 ne jouera AUCUN rôle dans le monitoring)" -#: startup.cc:76 +#: startup.cc:74 msgid "Ask %1 to play back material as it is being recorded" msgstr "Demander à %1 de diffuser le signal pendant l'enregistrement" -#: startup.cc:79 -msgid "I'd like more options for this session" -msgstr "Je souhaite avoir accès à plus d'options" +#: startup.cc:143 +msgid "" +"Welcome to this BETA release of Ardour %1\n" +"\n" +"Ardour %1 has been released for Linux but because of the lack of testers,\n" +"it is still at the beta stage on OS X. So, a few guidelines:\n" +"\n" +"1) Please do NOT use this software with the expectation that it is " +"stable or reliable\n" +" though it may be so, depending on your workflow.\n" +"2) Please do NOT use the forums at ardour.org to report issues.\n" +"3) Please DO use the bugtracker at http://tracker.ardour.org/ to " +"report issues\n" +" making sure to note the product version number as %1-beta.\n" +"4) Please DO use the ardour-users mailing list to discuss ideas and " +"pass on comments.\n" +"5) Please DO join us on IRC for real time discussions about ardour3. " +"You\n" +" can get there directly from Ardour via the Help->Chat menu option.\n" +"\n" +"Full information on all the above can be found on the support page at\n" +"\n" +" http://ardour.org/support\n" +msgstr "" -#: startup.cc:218 +#: startup.cc:167 msgid "This is a BETA RELEASE" msgstr "Version BETA, traduction en cours..." -#: startup.cc:324 -msgid "Audio / MIDI Setup" -msgstr "Configuration audio et MIDI" - -#: startup.cc:336 +#: startup.cc:176 msgid "" "%1 is a digital audio workstation. You can use it to " "record, edit and mix multi-track audio. You can produce your own CDs, mix " @@ -9673,15 +11253,15 @@ msgstr "" "Nous allons configurer le logiciel avant que vous puissiez commencer\n" "à vous en servir." -#: startup.cc:362 +#: startup.cc:202 msgid "Welcome to %1" msgstr "Bienvenue dans Ardour" -#: startup.cc:385 +#: startup.cc:225 msgid "Default folder for %1 sessions" msgstr "Dossier par défault pour les %1 sessions" -#: startup.cc:391 +#: startup.cc:231 msgid "" "Each project that you work on with %1 has its own folder.\n" "These can require a lot of disk space if you are recording audio.\n" @@ -9699,11 +11279,11 @@ msgstr "" "(Vous pouvez créer des sessions n'importe où, cela est juste une valeur " "par défaut)" -#: startup.cc:415 +#: startup.cc:254 msgid "Default folder for new sessions" msgstr "Dossier par défaut pour les nouvelles sessions." -#: startup.cc:436 +#: startup.cc:275 msgid "" "While recording instruments or vocals, you probably want to listen to the\n" "signal as well as record it. This is called \"monitoring\". There are\n" @@ -9727,15 +11307,15 @@ msgstr "" "\n" "Si vous ne comprenez pas ce choix, gardez l'option par défaut." -#: startup.cc:457 +#: startup.cc:296 msgid "Monitoring Choices" msgstr "Choix du mode de monitoring" -#: startup.cc:480 +#: startup.cc:319 msgid "Use a Master bus directly" msgstr "Utiliser le bus général" -#: startup.cc:482 +#: startup.cc:321 msgid "" "Connect the Master bus directly to your hardware outputs. This is preferable " "for simple usage." @@ -9743,11 +11323,11 @@ msgstr "" "Connecter le bus Master directement aux sorties matérielles. Cette " "configuration est préférable pour un usage simplifié." -#: startup.cc:491 +#: startup.cc:330 msgid "Use an additional Monitor bus" msgstr "Utiliser un bus de monitoring" -#: startup.cc:494 +#: startup.cc:333 msgid "" "Use a Monitor bus between Master bus and hardware outputs for \n" "greater control in monitoring without affecting the mix." @@ -9756,7 +11336,7 @@ msgstr "" "matérielles\n" "permet de mieux contrôler le monitoring sans impacter le mixage." -#: startup.cc:516 +#: startup.cc:355 msgid "" "You can change this preference at any time via the Preferences dialog.\n" "You can also add or remove the monitor section to/from any session.\n" @@ -9764,110 +11344,10 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:527 +#: startup.cc:366 msgid "Monitor Section" msgstr "Monitoring" -#: startup.cc:573 -msgid "Check the website for more..." -msgstr "" - -#: startup.cc:576 -msgid "Click to open the program website in your web browser" -msgstr "" - -#: startup.cc:729 -msgid "Open" -msgstr "Ouvrir" - -#: startup.cc:775 -msgid "Session name:" -msgstr "Nom de la session:" - -#: startup.cc:798 -msgid "Create session folder in:" -msgstr "Créer le dossier dans:" - -#: startup.cc:821 -msgid "Select folder for session" -msgstr "Choisir le dossier de session" - -#: startup.cc:853 -msgid "Use this template" -msgstr "Choix du modèle" - -#: startup.cc:856 -msgid "no template" -msgstr "Pas de modèle" - -#: startup.cc:884 -msgid "Use an existing session as a template:" -msgstr "Utiliser une session existante comme modèle" - -#: startup.cc:896 -msgid "Select template" -msgstr "Choisir le modèle" - -#: startup.cc:922 -msgid "New Session" -msgstr "Créer une session" - -#: startup.cc:1077 -msgid "Select session file" -msgstr "Sélection de la session" - -#: startup.cc:1093 -msgid "Browse:" -msgstr "Autre session:" - -#: startup.cc:1102 -msgid "Select a session" -msgstr "Sélectionner une session" - -#: startup.cc:1129 startup.cc:1130 startup.cc:1131 -msgid "channels" -msgstr "canaux" - -#: startup.cc:1145 -msgid "Busses" -msgstr "Bus:" - -#: startup.cc:1146 -msgid "Inputs" -msgstr "Entrées:" - -#: startup.cc:1147 -msgid "Outputs" -msgstr "Sorties:" - -#: startup.cc:1155 -msgid "Create master bus" -msgstr "Bus de sortie à" - -#: startup.cc:1165 -msgid "Automatically connect to physical inputs" -msgstr "Se connecter aux entrées matérielles automatiquement" - -#: startup.cc:1172 startup.cc:1231 -msgid "Use only" -msgstr "Utiliser seulement" - -#: startup.cc:1225 -msgid "Automatically connect outputs" -msgstr "Se connecter aux sorties automatiquement" - -#: startup.cc:1247 -msgid "... to master bus" -msgstr "...au bus général" - -#: startup.cc:1257 -msgid "... to physical outputs" -msgstr "... aux sorties matérielles" - -#: startup.cc:1307 -msgid "Advanced Session Options" -msgstr "Options avancées de session" - #: step_entry.cc:59 msgid "Step Entry: %1" msgstr "" @@ -10257,6 +11737,14 @@ msgstr "" msgid "L:%3d R:%3d Width:%d%%" msgstr "G:%3d D:%3d Stéréo:%d%%" +#: stereo_panner_editor.cc:35 +msgid "Stereo Panner" +msgstr "" + +#: stereo_panner_editor.cc:49 +msgid "Width" +msgstr "" + #: strip_silence_dialog.cc:48 msgid "Strip Silence" msgstr "" @@ -10277,6 +11765,10 @@ msgstr "Mesure:" msgid "beat:" msgstr "Temps:" +#: tempo_dialog.cc:45 tempo_dialog.cc:60 +msgid "Pulse note" +msgstr "" + #: tempo_dialog.cc:55 msgid "Edit Tempo" msgstr "Édition du tempo" @@ -10334,6 +11826,14 @@ msgstr "Battements par minute:" msgid "Tempo begins at" msgstr "Le tempo démarre à:" +#: tempo_dialog.cc:240 +msgid "incomprehensible pulse note type (%1)" +msgstr "" + +#: tempo_dialog.cc:266 +msgid "Edit Meter" +msgstr "" + #: tempo_dialog.cc:314 msgid "Note value:" msgstr "Valeur de note:" @@ -10346,6 +11846,10 @@ msgstr "Battements par mesure:" msgid "Meter begins at bar:" msgstr "À partir de la mesure:" +#: tempo_dialog.cc:441 +msgid "incomprehensible meter note type (%1)" +msgstr "" + #: theme_manager.cc:57 msgid "Dark Theme" msgstr "Thème sombre" @@ -10442,6 +11946,10 @@ msgstr "Demi-tons" msgid "Cents:" msgstr "Cents:" +#: time_fx_dialog.cc:122 +msgid "Time|Shift" +msgstr "" + #: time_fx_dialog.cc:146 time_fx_dialog.cc:149 msgid "TimeFXButton" msgstr "TimeFXButton" @@ -10518,23 +12026,23 @@ msgstr "" msgid "Config file %1 not saved" msgstr "Fichier de configuration \"%1\" non enregistré" -#: utils.cc:110 utils.cc:153 +#: utils.cc:111 utils.cc:154 msgid "bad XPM header %1" msgstr "mauvais entête XPM %1" -#: utils.cc:292 utils.cc:324 +#: utils.cc:293 utils.cc:325 msgid "missing RGBA style for \"%1\"" msgstr "style RGBA manquant pour « %1 »" -#: utils.cc:591 +#: utils.cc:598 msgid "cannot find XPM file for %1" msgstr "impossible de trouver le fichier XMP pour %1" -#: utils.cc:617 +#: utils.cc:624 msgid "cannot find icon image for %1 using %2" msgstr "Impossible de trouver l'icône pour %1 avec %2" -#: utils.cc:632 +#: utils.cc:639 msgid "Caught exception while loading icon named %1" msgstr "" @@ -10542,6 +12050,14 @@ msgstr "" msgid "VerboseCanvasCursor" msgstr "VerboseCanvasCursor" +#: add_video_dialog.cc:55 +msgid "Set Video Track" +msgstr "" + +#: add_video_dialog.cc:63 +msgid "Launch External Video Monitor" +msgstr "" + #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -10554,6 +12070,22 @@ msgstr "" msgid "VideoServerIndex" msgstr "" +#: add_video_dialog.cc:129 +msgid "Video files" +msgstr "" + +#: add_video_dialog.cc:164 +msgid "Video Information" +msgstr "" + +#: add_video_dialog.cc:167 +msgid "Start:" +msgstr "" + +#: add_video_dialog.cc:173 +msgid "Frame rate:" +msgstr "" + #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -10562,6 +12094,10 @@ msgstr "" msgid " %1 fps" msgstr "" +#: editor_videotimeline.cc:146 +msgid "Export Successful: %1" +msgstr "" + #: video_timeline.cc:469 msgid "" "Parsing video file info failed. Is the Video Server running? Is the file " @@ -10615,71 +12151,119 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:61 export_video_dialog.cc:73 +#: transcode_video_dialog.cc:55 +msgid "Transcode/Import Video File " +msgstr "" + +#: transcode_video_dialog.cc:57 +msgid "Output File:" +msgstr "" + +#: transcode_video_dialog.cc:60 export_video_dialog.cc:72 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:66 +#: transcode_video_dialog.cc:62 +msgid "Height = " +msgstr "" + +#: transcode_video_dialog.cc:65 msgid "Manual Override" msgstr "" -#: transcode_video_dialog.cc:70 export_video_dialog.cc:89 +#: transcode_video_dialog.cc:69 export_video_dialog.cc:88 msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:113 +#: transcode_video_dialog.cc:106 +msgid "File Information" +msgstr "" + +#: transcode_video_dialog.cc:112 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: transcode_video_dialog.cc:120 +#: transcode_video_dialog.cc:119 msgid "" "File-info can not be read. Most likely '%1' is not a valid video-file or an " "unsupported video codec or format." msgstr "" -#: transcode_video_dialog.cc:134 +#: transcode_video_dialog.cc:133 msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:138 +#: transcode_video_dialog.cc:135 +msgid "Duration:" +msgstr "" + +#: transcode_video_dialog.cc:137 msgid "Codec:" msgstr "" -#: transcode_video_dialog.cc:140 +#: transcode_video_dialog.cc:139 msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:181 +#: transcode_video_dialog.cc:154 +msgid "??" +msgstr "" + +#: transcode_video_dialog.cc:175 +msgid "Import Settings" +msgstr "" + +#: transcode_video_dialog.cc:180 msgid "Do Not Import Video" msgstr "" -#: transcode_video_dialog.cc:182 +#: transcode_video_dialog.cc:181 msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:198 +#: transcode_video_dialog.cc:183 +msgid "Import/Transcode Video to Session" +msgstr "" + +#: transcode_video_dialog.cc:197 msgid "Scale Video: Width = " msgstr "" -#: transcode_video_dialog.cc:205 +#: transcode_video_dialog.cc:204 msgid "Original Width" msgstr "" -#: transcode_video_dialog.cc:220 +#: transcode_video_dialog.cc:219 msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:348 +#: transcode_video_dialog.cc:224 +msgid "Extract Audio:" +msgstr "" + +#: transcode_video_dialog.cc:344 +msgid "Extracting Audio.." +msgstr "" + +#: transcode_video_dialog.cc:347 msgid "Audio Extraction Failed." msgstr "" -#: transcode_video_dialog.cc:374 +#: transcode_video_dialog.cc:373 msgid "Transcoding Video.." msgstr "" +#: transcode_video_dialog.cc:407 +msgid "Transcoding Failed." +msgstr "" + +#: transcode_video_dialog.cc:490 +msgid "Save Transcoded Video File" +msgstr "" + #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -10688,6 +12272,10 @@ msgstr "" msgid "Server Executable:" msgstr "" +#: video_server_dialog.cc:46 +msgid "Server Docroot:" +msgstr "" + #: video_server_dialog.cc:52 msgid "Don't show this dialog again. (Reset in Edit->Preferences)." msgstr "" @@ -10703,11 +12291,19 @@ msgstr "" msgid "Listen Address:" msgstr "" +#: video_server_dialog.cc:125 +msgid "Listen Port:" +msgstr "" + +#: video_server_dialog.cc:130 +msgid "Cache Size:" +msgstr "" + #: video_server_dialog.cc:136 msgid "" -"%1 relies on an external Video Server for the videotimeline.\n" -"The server configured in Edit -> Prefereces -> Video is not reachable.\n" -"Do you want ardour to launch 'harvid' on this machine?" +"%1 relies on an external video server for the videotimeline.\n" +"The server configured in Edit -> Preferences -> Video is not reachable.\n" +"Do you want %1 to launch 'harvid' on this machine?" msgstr "" #: video_server_dialog.cc:176 @@ -10732,75 +12328,183 @@ msgstr "" msgid "Continue" msgstr "" -#: export_video_dialog.cc:74 +#: utils_videotl.cc:63 +msgid "Confirm Overwrite" +msgstr "" + +#: utils_videotl.cc:64 +msgid "A file with the same name already exists. Do you want to overwrite it?" +msgstr "" + +#: utils_videotl.cc:74 utils_videotl.cc:90 +msgid "Cannot create video folder \"%1\" (%2)" +msgstr "" + +#: export_video_dialog.cc:65 +msgid "Export Video File " +msgstr "" + +#: export_video_dialog.cc:69 +msgid "Video:" +msgstr "" + +#: export_video_dialog.cc:73 msgid "Scale Video (W x H):" msgstr "" -#: export_video_dialog.cc:79 +#: export_video_dialog.cc:78 msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:81 +#: export_video_dialog.cc:79 +msgid "Normalize Audio" +msgstr "" + +#: export_video_dialog.cc:80 msgid "2 Pass Encoding" msgstr "" -#: export_video_dialog.cc:82 +#: export_video_dialog.cc:81 msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:85 +#: export_video_dialog.cc:83 +msgid "Deinterlace" +msgstr "" + +#: export_video_dialog.cc:84 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" -#: export_video_dialog.cc:86 +#: export_video_dialog.cc:85 msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:107 +#: export_video_dialog.cc:86 +msgid "Include Session Metadata" +msgstr "" + +#: export_video_dialog.cc:106 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: export_video_dialog.cc:145 +#: export_video_dialog.cc:116 +msgid "Output:" +msgstr "" + +#: export_video_dialog.cc:126 +msgid "Input:" +msgstr "" + +#: export_video_dialog.cc:137 +msgid "Audio:" +msgstr "" + +#: export_video_dialog.cc:139 +msgid "Master Bus" +msgstr "" + +#: export_video_dialog.cc:144 msgid "from the %1 session's start to the session's end" msgstr "" -#: export_video_dialog.cc:149 +#: export_video_dialog.cc:148 msgid "from 00:00:00:00 to the video's end" msgstr "" -#: export_video_dialog.cc:151 +#: export_video_dialog.cc:150 msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:198 +#: export_video_dialog.cc:153 +msgid "Selected range" +msgstr "" + +#: export_video_dialog.cc:193 +msgid "Settings:" +msgstr "" + +#: export_video_dialog.cc:201 +msgid "Range:" +msgstr "" + +#: export_video_dialog.cc:204 +msgid "Preset:" +msgstr "" + +#: export_video_dialog.cc:207 msgid "Video Codec:" msgstr "" -#: export_video_dialog.cc:494 +#: export_video_dialog.cc:210 +msgid "Video KBit/s:" +msgstr "" + +#: export_video_dialog.cc:213 +msgid "Audio Codec:" +msgstr "" + +#: export_video_dialog.cc:216 +msgid "Audio KBit/s:" +msgstr "" + +#: export_video_dialog.cc:219 +msgid "Audio Samplerate:" +msgstr "" + +#: export_video_dialog.cc:395 +msgid "Normalizing audio" +msgstr "" + +#: export_video_dialog.cc:399 +msgid "Exporting audio" +msgstr "" + +#: export_video_dialog.cc:445 +msgid "Exporting Audio..." +msgstr "" + +#: export_video_dialog.cc:502 msgid "" "Export Video: Cannot query duration of video-file, using duration from " "timeline instead." msgstr "" -#: export_video_dialog.cc:523 +#: export_video_dialog.cc:532 +msgid "Export Video: export-range does not include video." +msgstr "" + +#: export_video_dialog.cc:544 msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" -#: export_video_dialog.cc:581 +#: export_video_dialog.cc:583 +msgid "Encoding Video..." +msgstr "" + +#: export_video_dialog.cc:602 msgid "Export Video: Video input file cannot be read." msgstr "" -#: export_video_dialog.cc:679 +#: export_video_dialog.cc:695 msgid "Encoding Video.. Pass 1/2" msgstr "" -#: export_video_dialog.cc:691 +#: export_video_dialog.cc:707 msgid "Encoding Video.. Pass 2/2" msgstr "" +#: export_video_dialog.cc:814 +msgid "Transcoding failed." +msgstr "" + +#: export_video_dialog.cc:983 export_video_dialog.cc:1003 +msgid "Save Exported Video File" +msgstr "" + #: export_video_infobox.cc:30 msgid "Video Export Info" msgstr "" @@ -10821,3 +12525,318 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" + +#~ msgid "Starting audio engine" +#~ msgstr "Démarrage du moteur audio" + +#~ msgid "disconnected" +#~ msgstr "déconnecté" + +#~ msgid "JACK: %.1f kHz / %4.1f ms" +#~ msgstr "JACK: %.1f kHz / %4.1f ms" + +#~ msgid "JACK: % kHz / %4.1f ms" +#~ msgstr "JACK: % kHz / %4.1f ms" + +#~ msgid "" +#~ "%1 is not connected to JACK\n" +#~ "You cannot open or close sessions in this condition" +#~ msgstr "" +#~ "%1 n'est pas connecté à JACK\n" +#~ "Aucune session ne peut être ouverte ou fermée" + +#~ msgid "" +#~ "The audio backend (JACK) was shutdown because:\n" +#~ "\n" +#~ "%1" +#~ msgstr "" +#~ "Le moteur audio (JACK) a été arrété pour la raison suivante:\n" +#~ "\n" +#~ "%1" + +#~ msgid "" +#~ "JACK has either been shutdown or it\n" +#~ "disconnected %1 because %1\n" +#~ "was not fast enough. Try to restart\n" +#~ "JACK, reconnect and save the session." +#~ msgstr "" +#~ "JACK a été arrêté ou a déconnecté %1\n" +#~ "parce que celui-ci n'était pas assez rapide.\n" +#~ "Essayer de redémarrer JACK, de reconnecter\n" +#~ "%1 à JACK, et d'enregistrer la session." + +#~ msgid "Unable to start the session running" +#~ msgstr "Impossible de lancer la session" + +#~ msgid "Click the Refresh button to try again." +#~ msgstr "Cliquez sur le bouton \"Rafraîchir\" pour réessayer." + +#~ msgid "Could not disconnect from JACK" +#~ msgstr "Impossible de se déconnecter de JACK" + +#~ msgid "Could not reconnect to JACK" +#~ msgstr "Impossible de se reconnecter à JACK" + +#~ msgid "JACK" +#~ msgstr "JACK" + +#~ msgid "Reconnect" +#~ msgstr "Reconnecter" + +#~ msgid "JACK Sampling Rate and Latency" +#~ msgstr "Taux d'échantillonnage et latence de JACK" + +#~ msgid "Realtime" +#~ msgstr "Temps réel" + +#~ msgid "Do not lock memory" +#~ msgstr "Ne pas verrouiller la mémoire" + +#~ msgid "Unlock memory" +#~ msgstr "Déverrouiller la mémoire" + +#~ msgid "No zombies" +#~ msgstr "Pas de zombie" + +#~ msgid "Provide monitor ports" +#~ msgstr "Fournir des ports de monitoring" + +#~ msgid "Force 16 bit" +#~ msgstr "Forcer 16 bits" + +#~ msgid "H/W monitoring" +#~ msgstr "Monitoring matériel" + +#~ msgid "H/W metering" +#~ msgstr "VU-mètre matériel" + +#~ msgid "Verbose output" +#~ msgstr "sortie détaillée" + +#~ msgid "8000Hz" +#~ msgstr "8000Hz" + +#~ msgid "22050Hz" +#~ msgstr "22050Hz" + +#~ msgid "44100Hz" +#~ msgstr "44100Hz" + +#~ msgid "48000Hz" +#~ msgstr "48000Hz" + +#~ msgid "88200Hz" +#~ msgstr "88200Hz" + +#~ msgid "96000Hz" +#~ msgstr "96000Hz" + +#~ msgid "192000Hz" +#~ msgstr "192000Hz" + +#~ msgid "Triangular" +#~ msgstr "Triangulaire" + +#~ msgid "Rectangular" +#~ msgstr "Rectangulaire" + +#~ msgid "Shaped" +#~ msgstr "Remodelé" + +#~ msgid "Playback/recording on 1 device" +#~ msgstr "Lecture/Enregistrement sur 1 appareil" + +#~ msgid "Playback/recording on 2 devices" +#~ msgstr "Lecture/Enregistrement sur 2 appareils" + +#~ msgid "Playback only" +#~ msgstr "Lecture seulement" + +#~ msgid "Recording only" +#~ msgstr "Enregistrement seulement" + +#~ msgid "raw" +#~ msgstr "brut" + +#~ msgid "Audio Interface:" +#~ msgstr "Interface audio:" + +#~ msgid "Number of buffers:" +#~ msgstr "Nombre de tampons:" + +#~ msgid "Approximate latency:" +#~ msgstr "Latence approximative:" + +#~ msgid "Audio mode:" +#~ msgstr "Mode audio:" + +#~ msgid "Ignore" +#~ msgstr "Ignorer" + +#~ msgid "Client timeout" +#~ msgstr "Délai d'expiration client" + +#~ msgid "Number of ports:" +#~ msgstr "Nombre de ports:" + +#~ msgid "MIDI driver:" +#~ msgstr "Pilote MIDI:" + +#~ msgid "Dither:" +#~ msgstr "Interpolation:" + +#~ msgid "" +#~ "No JACK server found anywhere on this system. Please install JACK and " +#~ "restart" +#~ msgstr "" +#~ "Aucun serveur JACK n'a été trouvé sur le système. Veuillez installer JACK " +#~ "et recommencez" + +#~ msgid "Server:" +#~ msgstr "Serveur:" + +#~ msgid "Input device:" +#~ msgstr "Interface d'entrée:" + +#~ msgid "Output device:" +#~ msgstr "Interface de sortie:" + +#~ msgid "Device" +#~ msgstr "Interface audio" + +#~ msgid "Advanced" +#~ msgstr "Avancé" + +#~ msgid "cannot open JACK rc file %1 to store parameters" +#~ msgstr "" +#~ "Impossible d'ouvrir le fichier de configuration de JACK %1 pour y " +#~ "enregistrer les paramètres" + +#~ msgid "" +#~ "You do not have any audio devices capable of\n" +#~ "simultaneous playback and recording.\n" +#~ "\n" +#~ "Please use Applications -> Utilities -> Audio MIDI Setup\n" +#~ "to create an \"aggregrate\" device, or install a suitable\n" +#~ "audio interface.\n" +#~ "\n" +#~ "Please send email to Apple and ask them why new Macs\n" +#~ "have no duplex audio device.\n" +#~ "\n" +#~ "Alternatively, if you really want just playback\n" +#~ "or recording but not both, start JACK before running\n" +#~ "%1 and choose the relevant device then." +#~ msgstr "" +#~ "Vous n'avez pas de périphérique audio capable de lire et\n" +#~ "d'enregistrer en même temps.\n" +#~ "\n" +#~ "Allez dans Applications -> Utilitaires -> Config Audio MIDI\n" +#~ "pour créer un périphérique \"agrégé\"\t ou bien installez une\n" +#~ "interface audio appropriée.\n" +#~ "\n" +#~ "Ensuite, envoyez un mail à Apple et demandez-leur pourquoi\n" +#~ "les nouveaux Macs ne peuvent pas faire de duplex audio.\n" +#~ "\n" +#~ "Si vous voulez juste lire ou enregistrer mais pas\n" +#~ "les deux à la fois, démarrez JACK avant %1 et sélectionnez le\n" +#~ "périphérique correspondant." + +#~ msgid "No suitable audio devices" +#~ msgstr "Aucun périphérique audio approprié" + +#~ msgid "JACK appears to be missing from the %1 bundle" +#~ msgstr "Il semble que JACK soit absent du pack %1" + +#~ msgid "You need to choose an audio device first." +#~ msgstr "Vous devez d'abord choisir un périphérique audio." + +#~ msgid "Audio device \"%1\" not known on this computer." +#~ msgstr "Le périphérique audio \"%1\" est inconnu." + +#~ msgid "AudioSetup value for %1 is missing data" +#~ msgstr "La valeur « %1 » de la Config Audio est incomplète" + +#~ msgid "" +#~ "configuration files contain a JACK server path that doesn't exist (%1)" +#~ msgstr "" +#~ "Les fichiers de configuration contiennent un chemin vers JACK qui " +#~ "n'existe pas (%1)" + +#~ msgid "%1 could not connect to JACK." +#~ msgstr "%1 n'a pas pu se connecter à JACK" + +#~ msgid "JACK exited" +#~ msgstr "JACK a quitté" + +#~ msgid "" +#~ "JACK exited unexpectedly, and without notifying %1.\n" +#~ "\n" +#~ "This could be due to misconfiguration or to an error inside JACK.\n" +#~ "\n" +#~ "Click OK to exit %1." +#~ msgstr "" +#~ "JACK a quitté soudainement, sans notifier %1.\n" +#~ "\n" +#~ "Cela vient peut-être d'un problème de configuration, ou bien d'une erreur " +#~ "dans JACK.\n" +#~ "\n" +#~ "Cliquez sur OK pour quitter %1." + +#~ msgid "" +#~ "JACK exited unexpectedly, and without notifying %1.\n" +#~ "\n" +#~ "This is probably due to an error inside JACK. You should restart JACK\n" +#~ "and reconnect %1 to it, or exit %1 now. You cannot save your\n" +#~ "session at this time, because we would lose your connection information.\n" +#~ msgstr "" +#~ "JACK a quitté soudainement, sans prévenir %1.\n" +#~ "\n" +#~ "Cela est surement dû à une erreur dans JACK.\n" +#~ "Vous devriez redémarrer JACK et reconnecter %1\n" +#~ "à ce dernier, ou quitter %1 immédiatement.\n" +#~ "Il n'est pas possible de sauvegarder la session\n" +#~ "car les informations de connection seraient perdues.\n" + +#~ msgid "Not connected to JACK - no I/O changes are possible" +#~ msgstr "" +#~ "Non connecté à JACK – aucun changement d'entrée/sortie n'est possible" + +#~ msgid "" +#~ " -c, --name Use a specific jack client name, default is " +#~ "ardour\n" +#~ msgstr "" +#~ " -c, --name nom Utiliser un nom de client jack " +#~ "différent. La valeur par défaut est \"ardour\"\n" + +#~ msgid "Synchronise editor and mixer track order" +#~ msgstr "Ordre des pistes identique entre éditeur et mixage" + +#~ msgid "follows order of editor" +#~ msgstr "suivre l'ordre de l'Éditeur" + +#~ msgid "Create a new session" +#~ msgstr "Créer une nouvelle session" + +#~ msgid "Open an existing session" +#~ msgstr "Ouvrir une session" + +#~ msgid "I'd like more options for this session" +#~ msgstr "Je souhaite avoir accès à plus d'options" + +#~ msgid "Audio / MIDI Setup" +#~ msgstr "Configuration audio et MIDI" + +#~ msgid "Use an existing session as a template:" +#~ msgstr "Utiliser une session existante comme modèle" + +#~ msgid "Select template" +#~ msgstr "Choisir le modèle" + +#~ msgid "Browse:" +#~ msgstr "Autre session:" + +#~ msgid "Select a session" +#~ msgstr "Sélectionner une session" + +#~ msgid "Advanced Session Options" +#~ msgstr "Options avancées de session" diff --git a/gtk2_ardour/po/it.po b/gtk2_ardour/po/it.po index 411a1980d8..2400552862 100644 --- a/gtk2_ardour/po/it.po +++ b/gtk2_ardour/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ardour 0.354.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2011-11-05 12:43+0100\n" "Last-Translator: \n" "Language-Team: American English \n" @@ -214,6 +214,10 @@ msgstr "" msgid "Lincoln Spiteri" msgstr "" +#: about.cc:171 +msgid "Mike Start" +msgstr "" + #: about.cc:172 msgid "Mark Stewart" msgstr "" @@ -329,6 +333,10 @@ msgid "" "\t Rui-huai Zhang \n" msgstr "" +#: about.cc:580 +msgid "Copyright (C) 1999-2013 Paul Davis\n" +msgstr "" + #: about.cc:584 msgid "http://ardour.org/" msgstr "" @@ -375,12 +383,28 @@ msgstr "Modalità traccia:" msgid "Instrument:" msgstr "" +#: add_route_dialog.cc:76 +msgid "Audio Tracks" +msgstr "" + +#: add_route_dialog.cc:77 +msgid "MIDI Tracks" +msgstr "" + +#: add_route_dialog.cc:78 +msgid "Audio+MIDI Tracks" +msgstr "" + +#: add_route_dialog.cc:79 +msgid "Busses" +msgstr "" + #: add_route_dialog.cc:101 msgid "Add:" msgstr "Aggiungi:" -#: add_route_dialog.cc:114 startup.cc:841 time_fx_dialog.cc:91 -#: add_video_dialog.cc:150 video_server_dialog.cc:112 +#: add_route_dialog.cc:114 time_fx_dialog.cc:91 add_video_dialog.cc:150 +#: video_server_dialog.cc:112 msgid "Options" msgstr "Opzioni" @@ -394,24 +418,29 @@ msgid "Group:" msgstr "Gruppo:" #: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 -#: rc_option_editor.cc:1456 rc_option_editor.cc:1458 rc_option_editor.cc:1460 -#: rc_option_editor.cc:1478 rc_option_editor.cc:1480 rc_option_editor.cc:1488 -#: rc_option_editor.cc:1490 rc_option_editor.cc:1508 rc_option_editor.cc:1521 -#: rc_option_editor.cc:1523 rc_option_editor.cc:1525 rc_option_editor.cc:1556 -#: rc_option_editor.cc:1558 rc_option_editor.cc:1560 rc_option_editor.cc:1568 -#: rc_option_editor.cc:1576 rc_option_editor.cc:1584 +#: ardour_ui_ed.cc:476 engine_dialog.cc:236 rc_option_editor.cc:1446 +#: rc_option_editor.cc:1448 rc_option_editor.cc:1450 rc_option_editor.cc:1466 +#: rc_option_editor.cc:1468 rc_option_editor.cc:1476 rc_option_editor.cc:1478 +#: rc_option_editor.cc:1496 rc_option_editor.cc:1509 rc_option_editor.cc:1511 +#: rc_option_editor.cc:1513 rc_option_editor.cc:1544 rc_option_editor.cc:1546 +#: rc_option_editor.cc:1548 rc_option_editor.cc:1556 rc_option_editor.cc:1564 +#: rc_option_editor.cc:1572 msgid "Audio" msgstr "Audio" #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 -#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1707 -#: rc_option_editor.cc:1715 rc_option_editor.cc:1723 rc_option_editor.cc:1732 -#: rc_option_editor.cc:1740 rc_option_editor.cc:1748 rc_option_editor.cc:1756 -#: rc_option_editor.cc:1765 rc_option_editor.cc:1774 rc_option_editor.cc:1783 -#: rc_option_editor.cc:1791 rc_option_editor.cc:1799 +#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1695 +#: rc_option_editor.cc:1703 rc_option_editor.cc:1711 rc_option_editor.cc:1720 +#: rc_option_editor.cc:1728 rc_option_editor.cc:1736 rc_option_editor.cc:1744 +#: rc_option_editor.cc:1753 rc_option_editor.cc:1762 rc_option_editor.cc:1771 +#: rc_option_editor.cc:1779 rc_option_editor.cc:1787 msgid "MIDI" msgstr "MIDI" +#: add_route_dialog.cc:217 add_route_dialog.cc:230 add_route_dialog.cc:300 +msgid "Audio+MIDI" +msgstr "" + #: add_route_dialog.cc:218 add_route_dialog.cc:233 add_route_dialog.cc:301 msgid "Bus" msgstr "Bus" @@ -482,10 +511,20 @@ msgstr "Nuovo Gruppo" msgid "No Group" msgstr "Nessun Gruppo" +#: add_route_dialog.cc:588 +msgid "-none-" +msgstr "" + #: ambiguous_file_dialog.cc:30 msgid "Ambiguous File" msgstr "File ambiguo" +#: ambiguous_file_dialog.cc:35 +msgid "" +"%1 has found the file %2 in the following places:\n" +"\n" +msgstr "" + #: ambiguous_file_dialog.cc:44 msgid "" "\n" @@ -535,7 +574,7 @@ msgstr "Normalizza i valori" msgid "FFT analysis window" msgstr "Finestra di analisi FFT " -#: analysis_window.cc:60 editor.cc:1856 +#: analysis_window.cc:60 editor.cc:1857 msgid "Spectral Analysis" msgstr "Analisi Spettrale" @@ -557,6 +596,14 @@ msgstr "Esegui di nuovo l'analisi" msgid "button cannot watch state of non-existing Controllable\n" msgstr "" +#: ardour_ui.cc:180 +msgid "audition" +msgstr "" + +#: ardour_ui.cc:181 +msgid "solo" +msgstr "" + #: ardour_ui.cc:182 msgid "feedback" msgstr "" @@ -577,6 +624,10 @@ msgstr "Scorciatoie da tastiera" msgid "Preferences" msgstr "Preferenze" +#: ardour_ui.cc:191 ardour_ui.cc:197 +msgid "Add Tracks/Busses" +msgstr "" + #: ardour_ui.cc:192 msgid "About" msgstr "Circa" @@ -589,51 +640,112 @@ msgstr "Posizioni" msgid "Tracks and Busses" msgstr "Tracce e Bus" -#: ardour_ui.cc:195 +#: ardour_ui.cc:195 engine_dialog.cc:67 +msgid "Audio/MIDI Setup" +msgstr "" + +#: ardour_ui.cc:196 msgid "Properties" msgstr "Proprietà" -#: ardour_ui.cc:197 bundle_manager.cc:263 +#: ardour_ui.cc:198 bundle_manager.cc:263 msgid "Bundle Manager" msgstr "Gestore dei raggruppamenti" -#: ardour_ui.cc:198 big_clock_window.cc:35 +#: ardour_ui.cc:199 big_clock_window.cc:35 msgid "Big Clock" msgstr "Orologio grande" -#: ardour_ui.cc:202 +#: ardour_ui.cc:200 +msgid "Audio Connections" +msgstr "" + +#: ardour_ui.cc:201 +msgid "MIDI Connections" +msgstr "" + +#: ardour_ui.cc:203 msgid "Errors" msgstr "Errori" -#: ardour_ui.cc:388 -msgid "Starting audio engine" -msgstr "Avvio del motore audio" +#: ardour_ui.cc:436 +msgid "" +"The audio backend was shutdown because:\n" +"\n" +"%1" +msgstr "" -#: ardour_ui.cc:758 startup.cc:638 +#: ardour_ui.cc:438 +msgid "" +"The audio backend has either been shutdown or it\n" +"disconnected %1 because %1\n" +"was not fast enough. Try to restart\n" +"the audio backend and save the session." +msgstr "" + +#: ardour_ui.cc:758 +msgid "NSM server did not announce itself" +msgstr "" + +#: ardour_ui.cc:771 +msgid "NSM: no client ID provided" +msgstr "" + +#: ardour_ui.cc:778 +msgid "NSM: no session created" +msgstr "" + +#: ardour_ui.cc:801 +msgid "NSM: initialization failed" +msgstr "" + +#: ardour_ui.cc:840 startup.cc:379 msgid "%1 is ready for use" msgstr "%1 è pronto." -#: ardour_ui.cc:823 +#: ardour_ui.cc:882 +msgid "" +"WARNING: Your system has a limit for maximum amount of locked memory. This " +"might cause %1 to run out of memory before your system runs out of memory. \n" +"\n" +"You can view the memory limit with 'ulimit -l', and it is normally " +"controlled by %2" +msgstr "" + +#: ardour_ui.cc:899 msgid "Do not show this window again" msgstr "Non mostrare di nuovo" -#: ardour_ui.cc:865 +#: ardour_ui.cc:943 msgid "Don't quit" msgstr "Non uscire" -#: ardour_ui.cc:866 +#: ardour_ui.cc:944 msgid "Just quit" msgstr "Esci e basta" -#: ardour_ui.cc:867 +#: ardour_ui.cc:945 msgid "Save and quit" msgstr "Salva ed esci" -#: ardour_ui.cc:925 +#: ardour_ui.cc:955 +msgid "" +"%1 was unable to save your session.\n" +"\n" +"If you still wish to quit, please use the\n" +"\n" +"\"Just quit\" option." +msgstr "" + +#: ardour_ui.cc:986 +msgid "Please wait while %1 cleans up..." +msgstr "" + +#: ardour_ui.cc:1004 msgid "Unsaved Session" msgstr "Sessione non salvata" -#: ardour_ui.cc:946 +#: ardour_ui.cc:1025 msgid "" "The session \"%1\"\n" "has not been saved.\n" @@ -651,7 +763,7 @@ msgstr "" "\n" "Cosa vuoi fare?" -#: ardour_ui.cc:949 +#: ardour_ui.cc:1028 msgid "" "The snapshot \"%1\"\n" "has not been saved.\n" @@ -669,70 +781,75 @@ msgstr "" "\n" "Cosa vuoi fare?" -#: ardour_ui.cc:963 +#: ardour_ui.cc:1042 msgid "Prompter" msgstr "Suggeritore" -#: ardour_ui.cc:1049 -msgid "disconnected" -msgstr "Disconesso" - -#: ardour_ui.cc:1056 +#: ardour_ui.cc:1128 ardour_ui.cc:1136 #, c-format -msgid "JACK: %.1f kHz / %4.1f ms" +msgid "Audio: none" msgstr "" -#: ardour_ui.cc:1060 +#: ardour_ui.cc:1140 #, c-format -msgid "JACK: % kHz / %4.1f ms" +msgid "Audio: %.1f kHz / %4.1f ms" msgstr "" -#: ardour_ui.cc:1082 +#: ardour_ui.cc:1144 +#, c-format +msgid "Audio: % kHz / %4.1f ms" +msgstr "" + +#: ardour_ui.cc:1162 export_video_dialog.cc:67 +msgid "File:" +msgstr "" + +#: ardour_ui.cc:1166 msgid "BWF" msgstr "" -#: ardour_ui.cc:1085 +#: ardour_ui.cc:1169 msgid "WAV" msgstr "" -#: ardour_ui.cc:1088 +#: ardour_ui.cc:1172 msgid "WAV64" msgstr "" -#: ardour_ui.cc:1091 session_option_editor.cc:197 +#: ardour_ui.cc:1175 session_option_editor.cc:197 msgid "CAF" msgstr "" -#: ardour_ui.cc:1094 +#: ardour_ui.cc:1178 msgid "AIFF" msgstr "" -#: ardour_ui.cc:1097 +#: ardour_ui.cc:1181 msgid "iXML" msgstr "" -#: ardour_ui.cc:1100 +#: ardour_ui.cc:1184 msgid "RF64" msgstr "" -#: ardour_ui.cc:1108 +#: ardour_ui.cc:1192 msgid "32-float" msgstr "" -#: ardour_ui.cc:1111 +#: ardour_ui.cc:1195 msgid "24-int" msgstr "" -#: ardour_ui.cc:1114 +#: ardour_ui.cc:1198 msgid "16-int" msgstr "" -#: ardour_ui.cc:1133 +#: ardour_ui.cc:1217 #, c-format msgid "DSP: %5.1f%%" msgstr "" -#: ardour_ui.cc:1152 +#: ardour_ui.cc:1236 #, c-format msgid "" "Buffers: p:" @@ -740,41 +857,60 @@ msgid "" "\">%%%" msgstr "" -#: ardour_ui.cc:1190 +#: ardour_ui.cc:1277 +msgid "Disk: Unknown" +msgstr "" + +#: ardour_ui.cc:1279 msgid "Disk: 24hrs+" msgstr "" -#: ardour_ui.cc:1208 +#: ardour_ui.cc:1297 msgid "Disk: >24 hrs" msgstr "" -#: ardour_ui.cc:1362 ardour_ui.cc:1371 startup.cc:1054 +#: ardour_ui.cc:1308 +#, c-format +msgid "Disk: %02dh:%02dm:%02ds" +msgstr "" + +#: ardour_ui.cc:1334 +#, c-format +msgid "Timecode|TC: %s" +msgstr "" + +#: ardour_ui.cc:1451 ardour_ui.cc:1460 session_dialog.cc:322 +#: session_dialog.cc:327 msgid "Recent Sessions" msgstr "Sessioni recenti" -#: ardour_ui.cc:1451 +#: ardour_ui.cc:1539 msgid "" -"%1 is not connected to JACK\n" +"%1 is not connected to any audio backend.\n" "You cannot open or close sessions in this condition" msgstr "" -"%1 non è connesso a JACK\n" -"Non si possono aprire o chiudere sessioni in questo stato." -#: ardour_ui.cc:1478 +#: ardour_ui.cc:1563 msgid "Open Session" msgstr "Apri sessione" -#: ardour_ui.cc:1503 session_import_dialog.cc:169 -#: session_metadata_dialog.cc:729 startup.cc:1083 +#: ardour_ui.cc:1588 session_dialog.cc:353 session_import_dialog.cc:169 +#: session_metadata_dialog.cc:729 msgid "%1 sessions" msgstr "sessioni %1" -#: ardour_ui.cc:1540 +#: ardour_ui.cc:1625 msgid "You cannot add a track without a session already loaded." msgstr "" "Non si può aggiungere una traccia senza prima aver caricato una sessione." -#: ardour_ui.cc:1554 ardour_ui.cc:1615 +#: ardour_ui.cc:1633 +msgid "could not create %1 new mixed track" +msgid_plural "could not create %1 new mixed tracks" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1639 ardour_ui.cc:1700 msgid "" "There are insufficient JACK ports available\n" "to create a new track or bus.\n" @@ -786,82 +922,94 @@ msgstr "" "Dovresti salvare %1, uscire e \n" "avviare di nuovo JACK con più porte." -#: ardour_ui.cc:1589 +#: ardour_ui.cc:1674 msgid "You cannot add a track or bus without a session already loaded." msgstr "" "Non si può aggiungere una traccia o un bus senza prima aver caricato una " "sessione." -#: ardour_ui.cc:2114 +#: ardour_ui.cc:1683 +msgid "could not create %1 new audio track" +msgid_plural "could not create %1 new audio tracks" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1692 +msgid "could not create %1 new audio bus" +msgid_plural "could not create %1 new audio busses" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1816 msgid "" -"The audio backend (JACK) was shutdown because:\n" -"\n" -"%1" +"Please create one or more tracks before trying to record.\n" +"You can do this with the \"Add Track or Bus\" option in the Session menu." msgstr "" -"Il backend audio (JACK) è stato chiuso perché:\n" -"\n" -"%1" -#: ardour_ui.cc:2116 -msgid "" -"JACK has either been shutdown or it\n" -"disconnected %1 because %1\n" -"was not fast enough. Try to restart\n" -"JACK, reconnect and save the session." -msgstr "" -"JACK è stato chiuso oppure ha disconnesso %1\n" -"per non essere stato abbastanza veloce.\n" -"E' consigliato salvare la sessione e riavviare\n" -"sia JACK che Ardour." - -#: ardour_ui.cc:2142 -msgid "Unable to start the session running" -msgstr "Impossibilitato ad avviare la sessione" - -#: ardour_ui.cc:2222 +#: ardour_ui.cc:2193 msgid "Take Snapshot" msgstr "Crea istantanea" -#: ardour_ui.cc:2223 +#: ardour_ui.cc:2194 msgid "Name of new snapshot" msgstr "Nome della nuova istantanea" -#: ardour_ui.cc:2259 +#: ardour_ui.cc:2218 +msgid "" +"To ensure compatibility with various systems\n" +"snapshot names may not contain a '%1' character" +msgstr "" + +#: ardour_ui.cc:2230 msgid "Confirm Snapshot Overwrite" msgstr "Conferma sovrascrittura istantanea" -#: ardour_ui.cc:2260 +#: ardour_ui.cc:2231 msgid "A snapshot already exists with that name. Do you want to overwrite it?" msgstr "Esiste già un'istantanea con questo nome. Vuoi sovrascriverla?" -#: ardour_ui.cc:2263 utils_videotl.cc:67 +#: ardour_ui.cc:2234 utils_videotl.cc:67 msgid "Overwrite" msgstr "Sovrascrivi" -#: ardour_ui.cc:2320 +#: ardour_ui.cc:2268 +msgid "Rename Session" +msgstr "" + +#: ardour_ui.cc:2269 +msgid "New session name" +msgstr "" + +#: ardour_ui.cc:2283 ardour_ui.cc:2684 ardour_ui.cc:2722 +msgid "" +"To ensure compatibility with various systems\n" +"session names may not contain a '%1' character" +msgstr "" + +#: ardour_ui.cc:2291 msgid "" "That name is already in use by another directory/folder. Please try again." msgstr "" -#: ardour_ui.cc:2329 +#: ardour_ui.cc:2300 msgid "" "Renaming this session failed.\n" "Things could be seriously messed up at this point" msgstr "" -#: ardour_ui.cc:2440 +#: ardour_ui.cc:2411 msgid "Save Template" msgstr "Salva Modello" -#: ardour_ui.cc:2441 +#: ardour_ui.cc:2412 msgid "Name for template:" msgstr "Nome per il modello:" -#: ardour_ui.cc:2442 +#: ardour_ui.cc:2413 msgid "-template" msgstr "-modello" -#: ardour_ui.cc:2480 +#: ardour_ui.cc:2451 msgid "" "This session\n" "%1\n" @@ -871,52 +1019,59 @@ msgstr "" "%1\n" "esiste già. Vuoi aprirla?" -#: ardour_ui.cc:2490 +#: ardour_ui.cc:2461 msgid "Open Existing Session" msgstr "Apri una sessione" -#: ardour_ui.cc:2728 +#: ardour_ui.cc:2712 msgid "There is no existing session at \"%1\"" msgstr "Sessione inesistente in %1" -#: ardour_ui.cc:2815 +#: ardour_ui.cc:2804 msgid "Please wait while %1 loads your session" msgstr "Attendi mentre %1 carca la sessione" -#: ardour_ui.cc:2830 +#: ardour_ui.cc:2819 msgid "Port Registration Error" msgstr "Errore nella registrazione di porta" -#: ardour_ui.cc:2831 +#: ardour_ui.cc:2820 msgid "Click the Close button to try again." msgstr "Clicca su 'Chiudi' per provare di nuovo" -#: ardour_ui.cc:2852 +#: ardour_ui.cc:2841 msgid "Session \"%1 (snapshot %2)\" did not load successfully" msgstr "La sessione \"%1 (istantanea %2)\" non è stata caricata correttamente" -#: ardour_ui.cc:2858 +#: ardour_ui.cc:2848 msgid "Loading Error" msgstr "Errore di caricamento" -#: ardour_ui.cc:2859 -msgid "Click the Refresh button to try again." -msgstr "Clicca su 'Aggiorna' per provare di nuovo." +#: ardour_ui.cc:2867 +msgid "" +"This session has been opened in read-only mode.\n" +"\n" +"You will not be able to record or save." +msgstr "" -#: ardour_ui.cc:2941 +#: ardour_ui.cc:2873 +msgid "Read-only Session" +msgstr "" + +#: ardour_ui.cc:2931 msgid "Could not create session in \"%1\"" msgstr "Impossibile caricare la sessione \"%1\"" -#: ardour_ui.cc:3041 +#: ardour_ui.cc:3031 msgid "No files were ready for clean-up" msgstr "Nessun file da pulire" -#: ardour_ui.cc:3045 ardour_ui.cc:3055 ardour_ui.cc:3188 ardour_ui.cc:3195 +#: ardour_ui.cc:3035 ardour_ui.cc:3045 ardour_ui.cc:3178 ardour_ui.cc:3185 #: ardour_ui_ed.cc:104 msgid "Clean-up" msgstr "Pulisci" -#: ardour_ui.cc:3046 +#: ardour_ui.cc:3036 msgid "" "If this seems suprising, \n" "check for any existing snapshots.\n" @@ -928,23 +1083,55 @@ msgstr "" "Ci possono essere ancora istantanee con regioni\n" "che necessitano di questi file." -#: ardour_ui.cc:3105 +#: ardour_ui.cc:3095 msgid "kilo" msgstr "" -#: ardour_ui.cc:3108 +#: ardour_ui.cc:3098 msgid "mega" msgstr "" -#: ardour_ui.cc:3111 +#: ardour_ui.cc:3101 msgid "giga" msgstr "" -#: ardour_ui.cc:3183 +#: ardour_ui.cc:3106 +msgid "" +"The following file was deleted from %2,\n" +"releasing %3 %4bytes of disk space" +msgid_plural "" +"The following %1 files were deleted from %2,\n" +"releasing %3 %4bytes of disk space" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:3113 +msgid "" +"The following file was not in use and \n" +"has been moved to: %2\n" +"\n" +"After a restart of %5\n" +"\n" +"Session -> Clean-up -> Flush Wastebasket\n" +"\n" +"will release an additional %3 %4bytes of disk space.\n" +msgid_plural "" +"The following %1 files were not in use and \n" +"have been moved to: %2\n" +"\n" +"After a restart of %5\n" +"\n" +"Session -> Clean-up -> Flush Wastebasket\n" +"\n" +"will release an additional %3 %4bytes of disk space.\n" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:3173 msgid "Are you sure you want to clean-up?" msgstr "Siete sicuri di voler ripulire?" -#: ardour_ui.cc:3190 +#: ardour_ui.cc:3180 msgid "" "Clean-up is a destructive operation.\n" "ALL undo/redo information will be lost if you clean-up.\n" @@ -956,76 +1143,80 @@ msgstr "" "La pulizia sposterà tutti i file inutilizzati \n" "in una posizione \"morta\"." -#: ardour_ui.cc:3198 +#: ardour_ui.cc:3188 msgid "CleanupDialog" msgstr "DialogoRipulitura" -#: ardour_ui.cc:3228 +#: ardour_ui.cc:3218 msgid "Cleaned Files" msgstr "File ripuliti" -#: ardour_ui.cc:3245 +#: ardour_ui.cc:3235 msgid "deleted file" msgstr "File eliminato" -#: ardour_ui.cc:3337 +#: ardour_ui.cc:3381 msgid "" "Video-Server was not launched by Ardour. The request to stop it is ignored." msgstr "" -#: ardour_ui.cc:3341 +#: ardour_ui.cc:3385 msgid "Stop Video-Server" msgstr "" -#: ardour_ui.cc:3342 +#: ardour_ui.cc:3386 msgid "Do you really want to stop the Video Server?" msgstr "" -#: ardour_ui.cc:3371 +#: ardour_ui.cc:3389 +msgid "Yes, Stop It" +msgstr "" + +#: ardour_ui.cc:3415 msgid "The Video Server is already started." msgstr "" -#: ardour_ui.cc:3373 +#: ardour_ui.cc:3417 msgid "" "An external Video Server is configured and can be reached. Not starting a " "new instance." msgstr "" -#: ardour_ui.cc:3381 ardour_ui.cc:3471 +#: ardour_ui.cc:3425 ardour_ui.cc:3515 msgid "" "Could not connect to the Video Server. Start it or configure its access URL " "in Edit -> Preferences." msgstr "" -#: ardour_ui.cc:3405 +#: ardour_ui.cc:3449 msgid "Specified docroot is not an existing directory." msgstr "" -#: ardour_ui.cc:3410 +#: ardour_ui.cc:3454 msgid "Given Video Server is not an executable file." msgstr "" -#: ardour_ui.cc:3443 +#: ardour_ui.cc:3487 msgid "Cannot launch the video-server" msgstr "" -#: ardour_ui.cc:3452 +#: ardour_ui.cc:3496 msgid "Video-server was started but does not respond to requests..." msgstr "" -#: ardour_ui.cc:3497 editor_audio_import.cc:632 +#: ardour_ui.cc:3541 editor_audio_import.cc:632 msgid "could not open %1" msgstr "impossibile aprire %1" -#: ardour_ui.cc:3501 +#: ardour_ui.cc:3545 msgid "no video-file selected" msgstr "" -#: ardour_ui.cc:3673 +#: ardour_ui.cc:3717 msgid "Recording was stopped because your system could not keep up." msgstr "La registazione è stata interrotta perche' il sistema non ha retto" -#: ardour_ui.cc:3702 +#: ardour_ui.cc:3746 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1037,7 +1228,7 @@ msgstr "" "Nello specifico, non riesce a scrivere i dati \n" "con la velocità necessaria per le registrazioni.\n" -#: ardour_ui.cc:3721 +#: ardour_ui.cc:3765 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1049,39 +1240,57 @@ msgstr "" "Nello specifico, non riesce a scrivere i dati \n" "con la velocità necessaria per le registrazioni.\n" -#: ardour_ui.cc:3761 +#: ardour_ui.cc:3805 msgid "Crash Recovery" msgstr "Recupero dal crash" -#: ardour_ui.cc:3774 +#: ardour_ui.cc:3806 +msgid "" +"This session appears to have been in the\n" +"middle of recording when %1 or\n" +"the computer was shutdown.\n" +"\n" +"%1 can recover any captured audio for\n" +"you, or it can ignore it. Please decide\n" +"what you would like to do.\n" +msgstr "" + +#: ardour_ui.cc:3818 msgid "Ignore crash data" msgstr "Ignora i dati del crash" -#: ardour_ui.cc:3775 +#: ardour_ui.cc:3819 msgid "Recover from crash" msgstr "Recupero dai dati di crash" -#: ardour_ui.cc:3795 +#: ardour_ui.cc:3839 msgid "Sample Rate Mismatch" msgstr "Frequenza di campionamento discrepante" -#: ardour_ui.cc:3805 +#: ardour_ui.cc:3840 +msgid "" +"This session was created with a sample rate of %1 Hz, but\n" +"%2 is currently running at %3 Hz. If you load this session,\n" +"audio may be played at the wrong sample rate.\n" +msgstr "" + +#: ardour_ui.cc:3849 msgid "Do not load session" msgstr "Non caricare la sessione" -#: ardour_ui.cc:3806 +#: ardour_ui.cc:3850 msgid "Load session anyway" msgstr "Apri comunque la sessione" -#: ardour_ui.cc:3829 -msgid "Could not disconnect from JACK" -msgstr "Non posso disconnettermi da JACK" +#: ardour_ui.cc:3877 +msgid "Could not disconnect from Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:3842 -msgid "Could not reconnect to JACK" -msgstr "Non posso riconnettermi a JACK" +#: ardour_ui.cc:3893 ardour_ui.cc:3896 +msgid "Could not reconnect to the Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:4116 +#: ardour_ui.cc:4172 msgid "" "%4This is a session from an older version of %3%5\n" "\n" @@ -1104,6 +1313,10 @@ msgstr "UI: impossibile avviare l'editor" msgid "UI: cannot setup mixer" msgstr "IU: impossibile avviare il mixer" +#: ardour_ui2.cc:82 +msgid "UI: cannot setup meterbridge" +msgstr "" + #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "Suona dalla testina" @@ -1142,6 +1355,10 @@ msgstr "" msgid "Return to last playback start when stopped" msgstr "Ritorna al punto d'inizio una volta fermato" +#: ardour_ui2.cc:139 +msgid "Playhead follows Range Selections and Edits" +msgstr "" + #: ardour_ui2.cc:140 msgid "Be sensible about input monitoring" msgstr "Controlla accuratamente le entrate" @@ -1186,6 +1403,10 @@ msgid "" "confirm; postfix the edit with '+' or '-' to enter delta times.\n" msgstr "" +#: ardour_ui2.cc:147 +msgid "Reset Level Meter" +msgstr "" + #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "[ERRORE]:" @@ -1198,51 +1419,51 @@ msgstr "[ATTENZIONE]:" msgid "[INFO]: " msgstr "[INFO]" -#: ardour_ui2.cc:247 ardour_ui_ed.cc:377 +#: ardour_ui2.cc:247 ardour_ui_ed.cc:344 msgid "Auto Return" msgstr "" -#: ardour_ui2.cc:249 ardour_ui_ed.cc:380 +#: ardour_ui2.cc:249 ardour_ui_ed.cc:347 msgid "Follow Edits" msgstr "" -#: ardour_ui2.cc:628 rc_option_editor.cc:1004 rc_option_editor.cc:1022 -#: rc_option_editor.cc:1025 rc_option_editor.cc:1027 rc_option_editor.cc:1029 -#: rc_option_editor.cc:1037 rc_option_editor.cc:1045 rc_option_editor.cc:1047 -#: rc_option_editor.cc:1055 rc_option_editor.cc:1062 rc_option_editor.cc:1071 -#: rc_option_editor.cc:1073 rc_option_editor.cc:1075 rc_option_editor.cc:1083 -#: rc_option_editor.cc:1085 rc_option_editor.cc:1094 +#: ardour_ui2.cc:628 rc_option_editor.cc:1002 rc_option_editor.cc:1020 +#: rc_option_editor.cc:1023 rc_option_editor.cc:1025 rc_option_editor.cc:1027 +#: rc_option_editor.cc:1035 rc_option_editor.cc:1043 rc_option_editor.cc:1045 +#: rc_option_editor.cc:1053 rc_option_editor.cc:1060 rc_option_editor.cc:1069 +#: rc_option_editor.cc:1071 rc_option_editor.cc:1073 rc_option_editor.cc:1081 +#: rc_option_editor.cc:1083 rc_option_editor.cc:1092 #: session_option_editor.cc:234 session_option_editor.cc:236 #: session_option_editor.cc:257 session_option_editor.cc:259 #: session_option_editor.cc:261 session_option_editor.cc:268 msgid "Misc" msgstr "Varie" -#: ardour_ui_dependents.cc:77 +#: ardour_ui_dependents.cc:69 msgid "Setup Editor" msgstr "Prepara l'editor" -#: ardour_ui_dependents.cc:79 +#: ardour_ui_dependents.cc:71 msgid "Setup Mixer" msgstr "Prepara il mixer" -#: ardour_ui_dependents.cc:85 +#: ardour_ui_dependents.cc:77 msgid "Reload Session History" msgstr "Ricarica lo storico di sessione" -#: ardour_ui_dialogs.cc:242 +#: ardour_ui_dialogs.cc:238 msgid "Don't close" msgstr "Non uscire" -#: ardour_ui_dialogs.cc:243 +#: ardour_ui_dialogs.cc:239 msgid "Just close" msgstr "Chiudi e basta" -#: ardour_ui_dialogs.cc:244 +#: ardour_ui_dialogs.cc:240 msgid "Save and close" msgstr "Salva ed esci" -#: ardour_ui_dialogs.cc:340 +#: ardour_ui_dialogs.cc:339 msgid "This screen is not tall enough to display the mixer window" msgstr "" @@ -1251,11 +1472,11 @@ msgid "Session" msgstr "Sessione" #: ardour_ui_ed.cc:106 editor_actions.cc:134 editor_regions.cc:115 -#: port_group.cc:457 session_option_editor.cc:82 session_option_editor.cc:89 +#: port_group.cc:458 session_option_editor.cc:82 session_option_editor.cc:89 msgid "Sync" msgstr "Sincronizza" -#: ardour_ui_ed.cc:107 engine_dialog.cc:369 +#: ardour_ui_ed.cc:107 msgid "Options" msgstr "Opzioni" @@ -1283,15 +1504,15 @@ msgstr "Tipo file" msgid "Sample Format" msgstr "Formato di campionamento" -#: ardour_ui_ed.cc:114 rc_option_editor.cc:1826 rc_option_editor.cc:1839 +#: ardour_ui_ed.cc:114 rc_option_editor.cc:1814 rc_option_editor.cc:1826 msgid "Control Surfaces" msgstr "Piattaforme di comando" -#: ardour_ui_ed.cc:115 rc_option_editor.cc:1558 +#: ardour_ui_ed.cc:115 rc_option_editor.cc:1546 msgid "Plugins" msgstr "Plugins" -#: ardour_ui_ed.cc:116 rc_option_editor.cc:1902 +#: ardour_ui_ed.cc:116 rc_option_editor.cc:1889 msgid "Metering" msgstr "Misurazione" @@ -1327,6 +1548,18 @@ msgstr "Chiudi" msgid "Add Track or Bus..." msgstr "Aggiungi traccia o bus..." +#: ardour_ui_ed.cc:135 +msgid "Open Video" +msgstr "" + +#: ardour_ui_ed.cc:138 +msgid "Remove Video" +msgstr "" + +#: ardour_ui_ed.cc:141 +msgid "Export To Video File" +msgstr "" + #: ardour_ui_ed.cc:145 msgid "Snapshot..." msgstr "Istantanea..." @@ -1365,7 +1598,7 @@ msgid "Stem export..." msgstr "Esportazione Stem" #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 -#: export_video_dialog.cc:72 +#: export_video_dialog.cc:71 msgid "Export" msgstr "Esporta" @@ -1377,146 +1610,153 @@ msgstr "Pulisci sorgenti inutilizzate..." msgid "Flush Wastebasket" msgstr "Svuota il cestino" -#: ardour_ui_ed.cc:189 keyeditor.cc:253 rc_option_editor.cc:1472 -msgid "JACK" -msgstr "JACK" - -#: ardour_ui_ed.cc:190 route_params_ui.cc:105 -msgid "Latency" -msgstr "Latenza" - -#: ardour_ui_ed.cc:192 -msgid "Reconnect" -msgstr "Riconnetti" - -#: ardour_ui_ed.cc:195 global_port_matrix.cc:207 io_selector.cc:210 -#: mixer_strip.cc:719 mixer_strip.cc:845 -msgid "Disconnect" -msgstr "Disconnetti" - -#: ardour_ui_ed.cc:222 +#: ardour_ui_ed.cc:189 msgid "Quit" msgstr "Esci" -#: ardour_ui_ed.cc:226 +#: ardour_ui_ed.cc:193 msgid "Maximise Editor Space" msgstr "Massimizza l'area dell'editor" -#: ardour_ui_ed.cc:234 midi_tracer.cc:39 +#: ardour_ui_ed.cc:194 +msgid "Show Toolbars" +msgstr "" + +#: ardour_ui_ed.cc:197 mixer_ui.cc:1865 mixer_ui.cc:1871 +msgid "Window|Mixer" +msgstr "" + +#: ardour_ui_ed.cc:198 +msgid "Toggle Editor+Mixer" +msgstr "" + +#: ardour_ui_ed.cc:199 meterbridge.cc:230 meterbridge.cc:236 +msgid "Window|Meterbridge" +msgstr "" + +#: ardour_ui_ed.cc:201 midi_tracer.cc:42 msgid "MIDI Tracer" msgstr "" -#: ardour_ui_ed.cc:236 +#: ardour_ui_ed.cc:203 msgid "Chat" msgstr "" -#: ardour_ui_ed.cc:239 +#: ardour_ui_ed.cc:205 +msgid "Help|Manual" +msgstr "" + +#: ardour_ui_ed.cc:206 msgid "Reference" msgstr "Riferimenti" -#: ardour_ui_ed.cc:241 plugin_ui.cc:418 +#: ardour_ui_ed.cc:208 plugin_ui.cc:415 msgid "Save" msgstr "Salva" -#: ardour_ui_ed.cc:249 rc_option_editor.cc:1114 rc_option_editor.cc:1125 -#: rc_option_editor.cc:1134 rc_option_editor.cc:1147 rc_option_editor.cc:1160 -#: rc_option_editor.cc:1169 rc_option_editor.cc:1179 rc_option_editor.cc:1181 -#: rc_option_editor.cc:1191 rc_option_editor.cc:1207 rc_option_editor.cc:1220 -#: rc_option_editor.cc:1238 rc_option_editor.cc:1240 rc_option_editor.cc:1254 -#: rc_option_editor.cc:1257 rc_option_editor.cc:1259 rc_option_editor.cc:1276 -#: rc_option_editor.cc:1287 +#: ardour_ui_ed.cc:216 rc_option_editor.cc:1112 rc_option_editor.cc:1123 +#: rc_option_editor.cc:1132 rc_option_editor.cc:1145 rc_option_editor.cc:1158 +#: rc_option_editor.cc:1167 rc_option_editor.cc:1177 rc_option_editor.cc:1179 +#: rc_option_editor.cc:1189 rc_option_editor.cc:1205 rc_option_editor.cc:1218 +#: rc_option_editor.cc:1236 rc_option_editor.cc:1238 rc_option_editor.cc:1252 +#: rc_option_editor.cc:1255 rc_option_editor.cc:1257 rc_option_editor.cc:1274 +#: rc_option_editor.cc:1285 msgid "Transport" msgstr "Trasporto" -#: ardour_ui_ed.cc:255 engine_dialog.cc:85 +#: ardour_ui_ed.cc:222 msgid "Stop" msgstr "Ferma" -#: ardour_ui_ed.cc:258 +#: ardour_ui_ed.cc:225 msgid "Roll" msgstr "Lancia" -#: ardour_ui_ed.cc:262 +#: ardour_ui_ed.cc:229 msgid "Start/Stop" msgstr "Avvia/Ferma" -#: ardour_ui_ed.cc:265 +#: ardour_ui_ed.cc:232 msgid "Start/Continue/Stop" msgstr "Avvia/Continua/Ferma" -#: ardour_ui_ed.cc:268 +#: ardour_ui_ed.cc:235 msgid "Stop and Forget Capture" msgstr "Ferma e interrompi la registrazione" -#: ardour_ui_ed.cc:278 +#: ardour_ui_ed.cc:245 msgid "Transition To Roll" msgstr "" -#: ardour_ui_ed.cc:282 +#: ardour_ui_ed.cc:249 msgid "Transition To Reverse" msgstr "" -#: ardour_ui_ed.cc:286 +#: ardour_ui_ed.cc:253 msgid "Play Loop Range" msgstr "Riproduci l'intervallo di ciclo" -#: ardour_ui_ed.cc:289 +#: ardour_ui_ed.cc:256 msgid "Play Selected Range" msgstr "Suona l'intervallo selezionato" -#: ardour_ui_ed.cc:296 +#: ardour_ui_ed.cc:259 +msgid "Play Selection w/Preroll" +msgstr "" + +#: ardour_ui_ed.cc:263 msgid "Enable Record" msgstr "Abilita la registrazione" -#: ardour_ui_ed.cc:299 +#: ardour_ui_ed.cc:266 msgid "Start Recording" msgstr "Inizia la registrazione" -#: ardour_ui_ed.cc:303 +#: ardour_ui_ed.cc:270 msgid "Rewind" msgstr "Indietro" -#: ardour_ui_ed.cc:306 +#: ardour_ui_ed.cc:273 msgid "Rewind (Slow)" msgstr "Indietro (lento)" -#: ardour_ui_ed.cc:309 +#: ardour_ui_ed.cc:276 msgid "Rewind (Fast)" msgstr "Indietro (veloce)" -#: ardour_ui_ed.cc:312 startup.cc:727 +#: ardour_ui_ed.cc:279 msgid "Forward" msgstr "Avanti" -#: ardour_ui_ed.cc:315 +#: ardour_ui_ed.cc:282 msgid "Forward (Slow)" msgstr "Avanti (lento)" -#: ardour_ui_ed.cc:318 +#: ardour_ui_ed.cc:285 msgid "Forward (Fast)" msgstr "Avanti (veloce)" -#: ardour_ui_ed.cc:321 +#: ardour_ui_ed.cc:288 msgid "Goto Zero" msgstr "Vai allo zero" -#: ardour_ui_ed.cc:324 +#: ardour_ui_ed.cc:291 msgid "Goto Start" msgstr "Vai all'inizio" -#: ardour_ui_ed.cc:327 +#: ardour_ui_ed.cc:294 msgid "Goto End" msgstr "Vai alla fine" -#: ardour_ui_ed.cc:330 +#: ardour_ui_ed.cc:297 msgid "Goto Wall Clock" msgstr "" -#: ardour_ui_ed.cc:334 +#: ardour_ui_ed.cc:301 msgid "Focus On Clock" msgstr "" -#: ardour_ui_ed.cc:338 ardour_ui_ed.cc:347 audio_clock.cc:2046 editor.cc:237 +#: ardour_ui_ed.cc:305 ardour_ui_ed.cc:314 audio_clock.cc:2046 editor.cc:237 #: editor_actions.cc:544 editor_actions.cc:553 export_timespan_selector.cc:88 #: session_option_editor.cc:41 session_option_editor.cc:61 #: session_option_editor.cc:80 session_option_editor.cc:96 @@ -1525,109 +1765,125 @@ msgstr "" msgid "Timecode" msgstr "" -#: ardour_ui_ed.cc:340 ardour_ui_ed.cc:349 editor_actions.cc:542 +#: ardour_ui_ed.cc:307 ardour_ui_ed.cc:316 editor_actions.cc:542 msgid "Bars & Beats" msgstr "Battute e battiti" -#: ardour_ui_ed.cc:342 ardour_ui_ed.cc:351 +#: ardour_ui_ed.cc:309 ardour_ui_ed.cc:318 msgid "Minutes & Seconds" msgstr "Minuti e secondi" -#: ardour_ui_ed.cc:344 ardour_ui_ed.cc:353 audio_clock.cc:2050 editor.cc:238 +#: ardour_ui_ed.cc:311 ardour_ui_ed.cc:320 audio_clock.cc:2050 editor.cc:238 #: editor_actions.cc:543 msgid "Samples" msgstr "Campioni" -#: ardour_ui_ed.cc:356 +#: ardour_ui_ed.cc:323 msgid "Punch In" msgstr "Punch in" -#: ardour_ui_ed.cc:357 mixer_strip.cc:1905 route_ui.cc:137 +#: ardour_ui_ed.cc:324 mixer_strip.cc:1905 route_ui.cc:137 #: time_info_box.cc:113 msgid "In" msgstr "Ingresso" -#: ardour_ui_ed.cc:360 +#: ardour_ui_ed.cc:327 msgid "Punch Out" msgstr "Punch out" -#: ardour_ui_ed.cc:361 time_info_box.cc:114 +#: ardour_ui_ed.cc:328 time_info_box.cc:114 msgid "Out" msgstr "Uscita" -#: ardour_ui_ed.cc:364 +#: ardour_ui_ed.cc:331 msgid "Punch In/Out" msgstr "" -#: ardour_ui_ed.cc:365 +#: ardour_ui_ed.cc:332 msgid "In/Out" msgstr "Ingresso/Uscita" -#: ardour_ui_ed.cc:368 rc_option_editor.cc:1071 +#: ardour_ui_ed.cc:335 rc_option_editor.cc:1069 msgid "Click" msgstr "Metronomo" -#: ardour_ui_ed.cc:371 +#: ardour_ui_ed.cc:338 msgid "Auto Input" msgstr "" -#: ardour_ui_ed.cc:374 +#: ardour_ui_ed.cc:341 msgid "Auto Play" msgstr "Riproduci automaticamente" -#: ardour_ui_ed.cc:385 +#: ardour_ui_ed.cc:352 msgid "Sync Startup to Video" msgstr "" -#: ardour_ui_ed.cc:387 +#: ardour_ui_ed.cc:354 msgid "Time Master" msgstr "" -#: ardour_ui_ed.cc:394 +#: ardour_ui_ed.cc:361 msgid "Toggle Record Enable Track %1" msgstr "Abilita la registrazione sulla traccia %1" -#: ardour_ui_ed.cc:401 +#: ardour_ui_ed.cc:368 msgid "Percentage" msgstr "Percentuale" -#: ardour_ui_ed.cc:402 shuttle_control.cc:169 +#: ardour_ui_ed.cc:369 shuttle_control.cc:169 msgid "Semitones" msgstr "Semitoni" -#: ardour_ui_ed.cc:406 +#: ardour_ui_ed.cc:373 msgid "Send MTC" msgstr "Invia MTC" -#: ardour_ui_ed.cc:408 +#: ardour_ui_ed.cc:375 msgid "Send MMC" msgstr "Invia MMC" -#: ardour_ui_ed.cc:410 +#: ardour_ui_ed.cc:377 msgid "Use MMC" msgstr "Usa MMC" -#: ardour_ui_ed.cc:412 rc_option_editor.cc:1710 +#: ardour_ui_ed.cc:379 rc_option_editor.cc:1698 msgid "Send MIDI Clock" msgstr "Invia il clock MIDI" -#: ardour_ui_ed.cc:414 +#: ardour_ui_ed.cc:381 msgid "Send MIDI Feedback" msgstr "" -#: ardour_ui_ed.cc:420 +#: ardour_ui_ed.cc:387 msgid "Panic" msgstr "Panico" -#: ardour_ui_ed.cc:561 +#: ardour_ui_ed.cc:472 +msgid "Wall Clock" +msgstr "" + +#: ardour_ui_ed.cc:473 msgid "Disk Space" msgstr "" -#: ardour_ui_ed.cc:564 -msgid "JACK Sampling Rate and Latency" +#: ardour_ui_ed.cc:474 +msgid "DSP" msgstr "" -#: ardour_ui_options.cc:65 +#: ardour_ui_ed.cc:475 +msgid "Buffers" +msgstr "" + +#: ardour_ui_ed.cc:477 +msgid "Timecode Format" +msgstr "" + +#: ardour_ui_ed.cc:478 +msgid "File Format" +msgstr "" + +#: ardour_ui_options.cc:61 msgid "" "It is not possible to use JACK as the the sync source\n" "when the pull up/down setting is non-zero." @@ -1635,19 +1891,23 @@ msgstr "" "Impossibile utilizzare JACK come sorgente di sincronizzazione\n" "se le impostazioni di \"pull up/down\" non sono uguali a zero." -#: ardour_ui_options.cc:321 +#: ardour_ui_options.cc:317 msgid "Internal" msgstr "Interno" -#: ardour_ui_options.cc:482 +#: ardour_ui_options.cc:468 msgid "Enable/Disable external positional sync" msgstr "" -#: ardour_ui_options.cc:484 +#: ardour_ui_options.cc:470 msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "" "Impossibile sincronizzazione con JACK: è impostato video \"pull up/down\"" +#: audio_clock.cc:1012 audio_clock.cc:1031 +msgid "--pending--" +msgstr "" + #: audio_clock.cc:1083 msgid "SR" msgstr "" @@ -1677,6 +1937,10 @@ msgstr "Suddivisione" msgid "programming error: %1" msgstr "Errore di programmazione: %1" +#: audio_clock.cc:1952 audio_clock.cc:1980 +msgid "programming error: %1 %2" +msgstr "" + #: audio_clock.cc:2048 editor.cc:236 export_timespan_selector.cc:98 msgid "Bars:Beats" msgstr "Battute:Battiti" @@ -1754,27 +2018,33 @@ msgstr "Stato dell'automazione" msgid "hide track" msgstr "Nascondi traccia" +#: automation_time_axis.cc:255 automation_time_axis.cc:307 +#: automation_time_axis.cc:496 gain_meter.cc:194 generic_pluginui.cc:454 +#: generic_pluginui.cc:775 panner_ui.cc:149 +msgid "Automation|Manual" +msgstr "" + #: automation_time_axis.cc:257 automation_time_axis.cc:318 -#: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 -#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 -#: generic_pluginui.cc:459 generic_pluginui.cc:748 midi_time_axis.cc:1488 -#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:153 +#: automation_time_axis.cc:501 editor.cc:1937 editor.cc:2014 +#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:197 +#: generic_pluginui.cc:457 generic_pluginui.cc:777 midi_time_axis.cc:1488 +#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:152 msgid "Play" msgstr "Suona" #: automation_time_axis.cc:259 automation_time_axis.cc:329 -#: automation_time_axis.cc:506 gain_meter.cc:201 generic_pluginui.cc:462 -#: generic_pluginui.cc:750 panner_ui.cc:156 +#: automation_time_axis.cc:506 gain_meter.cc:200 generic_pluginui.cc:460 +#: generic_pluginui.cc:779 panner_ui.cc:155 msgid "Write" msgstr "Scrivi" #: automation_time_axis.cc:261 automation_time_axis.cc:340 -#: automation_time_axis.cc:511 gain_meter.cc:204 generic_pluginui.cc:465 -#: generic_pluginui.cc:752 panner_ui.cc:159 +#: automation_time_axis.cc:511 gain_meter.cc:203 generic_pluginui.cc:463 +#: generic_pluginui.cc:781 panner_ui.cc:158 msgid "Touch" msgstr "Tocco" -#: automation_time_axis.cc:351 generic_pluginui.cc:468 meter_patterns.cc:108 +#: automation_time_axis.cc:351 generic_pluginui.cc:466 meter_patterns.cc:108 msgid "???" msgstr "???" @@ -1799,8 +2069,8 @@ msgstr "Stato" msgid "Discrete" msgstr "Discreto" -#: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 -#: editor.cc:1526 export_format_dialog.cc:476 +#: automation_time_axis.cc:537 editor.cc:1458 editor.cc:1465 editor.cc:1521 +#: editor.cc:1527 export_format_dialog.cc:476 msgid "Linear" msgstr "Lineare" @@ -1831,13 +2101,13 @@ msgstr "Ingresso" msgid "Output" msgstr "Uscita" -#: bundle_manager.cc:264 editor.cc:1974 editor_actions.cc:90 +#: bundle_manager.cc:264 editor.cc:1978 editor_actions.cc:90 #: editor_actions.cc:100 msgid "Edit" msgstr "Modifica" -#: bundle_manager.cc:265 editor.cc:5493 editor_actions.cc:310 -#: editor_actions.cc:368 plugin_ui.cc:419 processor_box.cc:2229 +#: bundle_manager.cc:265 editor.cc:5497 editor_actions.cc:310 +#: editor_actions.cc:368 plugin_ui.cc:416 processor_box.cc:2268 #: route_time_axis.cc:713 msgid "Delete" msgstr "Elimina" @@ -1967,6 +2237,26 @@ msgstr "Valore" msgid "Note" msgstr "Nota" +#: edit_note_dialog.cc:45 +msgid "Set selected notes to this channel" +msgstr "" + +#: edit_note_dialog.cc:46 +msgid "Set selected notes to this pitch" +msgstr "" + +#: edit_note_dialog.cc:47 +msgid "Set selected notes to this velocity" +msgstr "" + +#: edit_note_dialog.cc:49 +msgid "Set selected notes to this time" +msgstr "" + +#: edit_note_dialog.cc:51 +msgid "Set selected notes to this length" +msgstr "" + #: edit_note_dialog.cc:58 midi_list_editor.cc:104 patch_change_dialog.cc:91 #: step_entry.cc:393 msgid "Channel" @@ -1994,164 +2284,164 @@ msgstr "Durata" msgid "edit note" msgstr "modifca la nota" -#: editor.cc:137 editor.cc:3429 +#: editor.cc:137 editor.cc:3433 msgid "CD Frames" msgstr "CD Frames" -#: editor.cc:138 editor.cc:3431 +#: editor.cc:138 editor.cc:3435 msgid "Timecode Frames" msgstr "" -#: editor.cc:139 editor.cc:3433 +#: editor.cc:139 editor.cc:3437 msgid "Timecode Seconds" msgstr "" -#: editor.cc:140 editor.cc:3435 +#: editor.cc:140 editor.cc:3439 msgid "Timecode Minutes" msgstr "" -#: editor.cc:141 editor.cc:3437 +#: editor.cc:141 editor.cc:3441 msgid "Seconds" msgstr "Secondi" -#: editor.cc:142 editor.cc:3439 +#: editor.cc:142 editor.cc:3443 msgid "Minutes" msgstr "Minuti" -#: editor.cc:143 editor.cc:3413 quantize_dialog.cc:37 quantize_dialog.cc:141 +#: editor.cc:143 editor.cc:3417 quantize_dialog.cc:37 quantize_dialog.cc:141 msgid "Beats/128" msgstr "Battiti/128" -#: editor.cc:144 editor.cc:3411 quantize_dialog.cc:38 quantize_dialog.cc:143 +#: editor.cc:144 editor.cc:3415 quantize_dialog.cc:38 quantize_dialog.cc:143 msgid "Beats/64" msgstr "Battiti/64" -#: editor.cc:145 editor.cc:3409 quantize_dialog.cc:39 quantize_dialog.cc:145 +#: editor.cc:145 editor.cc:3413 quantize_dialog.cc:39 quantize_dialog.cc:145 msgid "Beats/32" msgstr "Battiti/32" -#: editor.cc:146 editor.cc:3407 +#: editor.cc:146 editor.cc:3411 msgid "Beats/28" msgstr "Battiti/28" -#: editor.cc:147 editor.cc:3405 +#: editor.cc:147 editor.cc:3409 msgid "Beats/24" msgstr "Battiti/24" -#: editor.cc:148 editor.cc:3403 +#: editor.cc:148 editor.cc:3407 msgid "Beats/20" msgstr "Battiti/20" -#: editor.cc:149 editor.cc:3401 quantize_dialog.cc:40 quantize_dialog.cc:147 +#: editor.cc:149 editor.cc:3405 quantize_dialog.cc:40 quantize_dialog.cc:147 msgid "Beats/16" msgstr "Battiti/16" -#: editor.cc:150 editor.cc:3399 +#: editor.cc:150 editor.cc:3403 msgid "Beats/14" msgstr "Battiti/14" -#: editor.cc:151 editor.cc:3397 +#: editor.cc:151 editor.cc:3401 msgid "Beats/12" msgstr "Battiti/12" -#: editor.cc:152 editor.cc:3395 +#: editor.cc:152 editor.cc:3399 msgid "Beats/10" msgstr "Battiti/10" -#: editor.cc:153 editor.cc:3393 quantize_dialog.cc:41 quantize_dialog.cc:149 +#: editor.cc:153 editor.cc:3397 quantize_dialog.cc:41 quantize_dialog.cc:149 msgid "Beats/8" msgstr "Battiti/8" -#: editor.cc:154 editor.cc:3391 +#: editor.cc:154 editor.cc:3395 msgid "Beats/7" msgstr "Battiti/7" -#: editor.cc:155 editor.cc:3389 +#: editor.cc:155 editor.cc:3393 msgid "Beats/6" msgstr "Battiti/6" -#: editor.cc:156 editor.cc:3387 +#: editor.cc:156 editor.cc:3391 msgid "Beats/5" msgstr "Battiti/5" -#: editor.cc:157 editor.cc:3385 quantize_dialog.cc:42 quantize_dialog.cc:151 +#: editor.cc:157 editor.cc:3389 quantize_dialog.cc:42 quantize_dialog.cc:151 msgid "Beats/4" msgstr "Battiti/4" -#: editor.cc:158 editor.cc:3383 quantize_dialog.cc:43 quantize_dialog.cc:153 +#: editor.cc:158 editor.cc:3387 quantize_dialog.cc:43 quantize_dialog.cc:153 msgid "Beats/3" msgstr "Battiti/3" -#: editor.cc:159 editor.cc:3381 quantize_dialog.cc:44 quantize_dialog.cc:155 +#: editor.cc:159 editor.cc:3385 quantize_dialog.cc:44 quantize_dialog.cc:155 msgid "Beats/2" msgstr "Battiti/2" -#: editor.cc:160 editor.cc:3415 quantize_dialog.cc:45 quantize_dialog.cc:157 +#: editor.cc:160 editor.cc:3419 quantize_dialog.cc:45 quantize_dialog.cc:157 msgid "Beats" msgstr "Battiti" -#: editor.cc:161 editor.cc:3417 +#: editor.cc:161 editor.cc:3421 msgid "Bars" msgstr "Battute" -#: editor.cc:162 editor.cc:3419 +#: editor.cc:162 editor.cc:3423 msgid "Marks" msgstr "Marcatori" -#: editor.cc:163 editor.cc:3421 +#: editor.cc:163 editor.cc:3425 msgid "Region starts" msgstr "Inizio regione" -#: editor.cc:164 editor.cc:3423 +#: editor.cc:164 editor.cc:3427 msgid "Region ends" msgstr "Fine regione" -#: editor.cc:165 editor.cc:3427 +#: editor.cc:165 editor.cc:3431 msgid "Region syncs" msgstr "Sync delle regioni" -#: editor.cc:166 editor.cc:3425 +#: editor.cc:166 editor.cc:3429 msgid "Region bounds" msgstr "Confini regione" -#: editor.cc:171 editor.cc:3455 editor_actions.cc:485 +#: editor.cc:171 editor.cc:3459 editor_actions.cc:485 msgid "No Grid" msgstr "Nessuna griglia" -#: editor.cc:172 editor.cc:3457 editor_actions.cc:486 +#: editor.cc:172 editor.cc:3461 editor_actions.cc:486 msgid "Grid" msgstr "Griglia" -#: editor.cc:173 editor.cc:3459 editor_actions.cc:487 +#: editor.cc:173 editor.cc:3463 editor_actions.cc:487 msgid "Magnetic" msgstr "Magnetico" -#: editor.cc:178 editor.cc:188 editor.cc:3498 editor.cc:3523 +#: editor.cc:178 editor.cc:188 editor.cc:3502 editor.cc:3527 #: editor_actions.cc:117 editor_actions.cc:468 msgid "Playhead" msgstr "Testina" -#: editor.cc:179 editor.cc:3496 editor_actions.cc:470 +#: editor.cc:179 editor.cc:3500 editor_actions.cc:470 msgid "Marker" msgstr "Marcatore" -#: editor.cc:180 editor.cc:189 editor.cc:3525 editor_actions.cc:469 +#: editor.cc:180 editor.cc:189 editor.cc:3529 editor_actions.cc:469 msgid "Mouse" msgstr "Mouse" -#: editor.cc:185 editor.cc:3517 mono_panner_editor.cc:42 +#: editor.cc:185 editor.cc:3521 mono_panner_editor.cc:42 msgid "Left" msgstr "Sinistra" -#: editor.cc:186 editor.cc:3519 mono_panner_editor.cc:47 +#: editor.cc:186 editor.cc:3523 mono_panner_editor.cc:47 msgid "Right" msgstr "Destra" -#: editor.cc:187 editor.cc:3521 +#: editor.cc:187 editor.cc:3525 msgid "Center" msgstr "Centro" -#: editor.cc:190 editor.cc:3090 editor.cc:3527 +#: editor.cc:190 editor.cc:3094 editor.cc:3531 msgid "Edit point" msgstr "Punto di modifica" @@ -2211,301 +2501,341 @@ msgstr "" msgid "mode" msgstr "modo" -#: editor.cc:542 +#: editor.cc:541 msgid "Regions" msgstr "Regioni" -#: editor.cc:543 +#: editor.cc:542 msgid "Tracks & Busses" msgstr "Tracce e Bus" -#: editor.cc:544 +#: editor.cc:543 msgid "Snapshots" msgstr "Istantanee" -#: editor.cc:546 +#: editor.cc:544 +msgid "Track & Bus Groups" +msgstr "" + +#: editor.cc:545 msgid "Ranges & Marks" msgstr "Intervalli & marcatori" -#: editor.cc:690 editor.cc:5345 rc_option_editor.cc:1294 -#: rc_option_editor.cc:1302 rc_option_editor.cc:1310 rc_option_editor.cc:1318 -#: rc_option_editor.cc:1335 rc_option_editor.cc:1337 rc_option_editor.cc:1345 -#: rc_option_editor.cc:1353 rc_option_editor.cc:1373 rc_option_editor.cc:1385 -#: rc_option_editor.cc:1387 rc_option_editor.cc:1395 rc_option_editor.cc:1403 -#: rc_option_editor.cc:1411 rc_option_editor.cc:1419 rc_option_editor.cc:1427 -#: rc_option_editor.cc:1442 rc_option_editor.cc:1446 +#: editor.cc:690 editor.cc:5349 rc_option_editor.cc:1292 +#: rc_option_editor.cc:1300 rc_option_editor.cc:1308 rc_option_editor.cc:1316 +#: rc_option_editor.cc:1333 rc_option_editor.cc:1335 rc_option_editor.cc:1343 +#: rc_option_editor.cc:1351 rc_option_editor.cc:1371 rc_option_editor.cc:1383 +#: rc_option_editor.cc:1385 rc_option_editor.cc:1393 rc_option_editor.cc:1401 +#: rc_option_editor.cc:1409 rc_option_editor.cc:1417 rc_option_editor.cc:1432 +#: rc_option_editor.cc:1436 msgid "Editor" msgstr "Editor" -#: editor.cc:1215 editor.cc:1225 editor.cc:4440 editor_actions.cc:130 +#: editor.cc:1215 editor.cc:1225 editor.cc:4444 editor_actions.cc:130 #: editor_actions.cc:1813 msgid "Loop" msgstr "Ciclo" -#: editor.cc:1231 editor.cc:1241 editor.cc:4467 editor_actions.cc:131 +#: editor.cc:1231 editor.cc:1241 editor.cc:4471 editor_actions.cc:131 #: time_info_box.cc:67 msgid "Punch" msgstr "Punch" -#: editor.cc:1352 +#: editor.cc:1353 msgid "Linear (for highly correlated material)" msgstr "" -#: editor.cc:1362 editor.cc:1499 editor.cc:1561 +#: editor.cc:1363 editor.cc:1500 editor.cc:1562 msgid "Constant power" msgstr "" -#: editor.cc:1371 editor.cc:1492 editor.cc:1554 +#: editor.cc:1372 editor.cc:1493 editor.cc:1555 msgid "Symmetric" msgstr "" -#: editor.cc:1381 editor.cc:1474 editor.cc:1536 +#: editor.cc:1382 editor.cc:1475 editor.cc:1537 msgid "Slow" msgstr "Lento" -#: editor.cc:1390 editor.cc:1483 editor.cc:1545 sfdb_ui.cc:1627 +#: editor.cc:1391 editor.cc:1484 editor.cc:1546 sfdb_ui.cc:1627 #: sfdb_ui.cc:1736 msgid "Fast" msgstr "Veloce" -#: editor.cc:1437 +#: editor.cc:1438 msgid "programming error: fade in canvas item has no regionview data pointer!" msgstr "" -#: editor.cc:1448 editor.cc:1512 +#: editor.cc:1449 editor.cc:1513 msgid "Deactivate" msgstr "Disattiva" -#: editor.cc:1450 editor.cc:1514 +#: editor.cc:1451 editor.cc:1515 msgid "Activate" msgstr "Attiva" -#: editor.cc:1458 editor.cc:1521 +#: editor.cc:1459 editor.cc:1522 msgid "Slowest" msgstr "Piu' Lento" -#: editor.cc:1572 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 +#: editor.cc:1573 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 msgid "programming error: " msgstr "errore di programmazione: " -#: editor.cc:1673 editor.cc:1681 editor_ops.cc:3522 +#: editor.cc:1674 editor.cc:1682 editor_ops.cc:3522 msgid "Freeze" msgstr "Congela" -#: editor.cc:1677 +#: editor.cc:1678 msgid "Unfreeze" msgstr "Scongela" -#: editor.cc:1816 +#: editor.cc:1817 msgid "Selected Regions" msgstr "Regioni selezionate" -#: editor.cc:1852 editor_markers.cc:895 +#: editor.cc:1853 editor_markers.cc:895 msgid "Play Range" msgstr "Riproduci l'intervallo" -#: editor.cc:1853 editor_markers.cc:898 +#: editor.cc:1854 editor_markers.cc:898 msgid "Loop Range" msgstr "Cicla l'intervallo" -#: editor.cc:1862 editor_actions.cc:332 +#: editor.cc:1863 editor_actions.cc:332 msgid "Move Range Start to Previous Region Boundary" msgstr "Sposta l'inizio intervallo alla regione precedente" -#: editor.cc:1869 editor_actions.cc:339 +#: editor.cc:1870 editor_actions.cc:339 msgid "Move Range Start to Next Region Boundary" msgstr "Sposta l'inizio intervallo alla regione successiva" -#: editor.cc:1876 editor_actions.cc:346 +#: editor.cc:1877 editor_actions.cc:346 msgid "Move Range End to Previous Region Boundary" msgstr "Sposta la fine intervallo alla regione precedente" -#: editor.cc:1883 editor_actions.cc:353 +#: editor.cc:1884 editor_actions.cc:353 msgid "Move Range End to Next Region Boundary" msgstr "Sposta la fine intervallo alla prossima regione" -#: editor.cc:1889 +#: editor.cc:1890 msgid "Convert to Region In-Place" msgstr "Converti in regione qui" -#: editor.cc:1893 editor_markers.cc:925 +#: editor.cc:1891 +msgid "Convert to Region in Region List" +msgstr "" + +#: editor.cc:1894 editor_markers.cc:925 msgid "Select All in Range" msgstr "Seleziona tutto nell'intervallo" -#: editor.cc:1896 +#: editor.cc:1897 msgid "Set Loop from Range" msgstr "Imposta il ciclo dall'intervallo" -#: editor.cc:1897 +#: editor.cc:1898 msgid "Set Punch from Range" msgstr "Imposta il punch dall'intervallo" -#: editor.cc:1900 +#: editor.cc:1901 msgid "Add Range Markers" msgstr "Aggiungi marcatori di intervallo" -#: editor.cc:1903 +#: editor.cc:1904 msgid "Crop Region to Range" msgstr "Rifila la regione in base all'intervallo" -#: editor.cc:1904 +#: editor.cc:1905 msgid "Fill Range with Region" msgstr "Riempi intervallo con la regione" -#: editor.cc:1905 editor_actions.cc:289 +#: editor.cc:1906 editor_actions.cc:289 msgid "Duplicate Range" msgstr "Duplica intervallo" -#: editor.cc:1908 +#: editor.cc:1909 msgid "Consolidate Range" msgstr "Consolida l'intervallo" -#: editor.cc:1909 +#: editor.cc:1910 msgid "Consolidate Range With Processing" msgstr "Consolida l'intervallo processando i dati" -#: editor.cc:1910 +#: editor.cc:1911 msgid "Bounce Range to Region List" msgstr "Fissa l'intervallo nella lista regioni" -#: editor.cc:1911 +#: editor.cc:1912 msgid "Bounce Range to Region List With Processing" msgstr "Fissa l'intervallo nella lista regioni elaborandolo" -#: editor.cc:1927 editor.cc:2008 editor_actions.cc:281 +#: editor.cc:1913 editor_markers.cc:908 +msgid "Export Range..." +msgstr "" + +#: editor.cc:1915 +msgid "Export Video Range..." +msgstr "" + +#: editor.cc:1931 editor.cc:2012 editor_actions.cc:281 msgid "Play From Edit Point" msgstr "Suona dal punto di modifica" -#: editor.cc:1928 editor.cc:2009 +#: editor.cc:1932 editor.cc:2013 msgid "Play From Start" msgstr "Riproduci dall'inizio" -#: editor.cc:1929 +#: editor.cc:1933 msgid "Play Region" msgstr "Riproduci la regione" -#: editor.cc:1931 +#: editor.cc:1935 msgid "Loop Region" msgstr "Regione in ciclo" -#: editor.cc:1941 editor.cc:2018 +#: editor.cc:1945 editor.cc:2022 msgid "Select All in Track" msgstr "Seleziona tutto nella traccia" -#: editor.cc:1942 editor.cc:2019 editor_actions.cc:185 -#: export_timespan_selector.cc:53 processor_box.cc:2237 +#: editor.cc:1946 editor.cc:2023 editor_actions.cc:185 +#: export_timespan_selector.cc:53 processor_box.cc:2276 msgid "Select All" msgstr "Seleziona tutto" -#: editor.cc:1943 editor.cc:2020 +#: editor.cc:1947 editor.cc:2024 msgid "Invert Selection in Track" msgstr "Inverti la selezione nella traccia" -#: editor.cc:1944 editor.cc:2021 editor_actions.cc:187 +#: editor.cc:1948 editor.cc:2025 editor_actions.cc:187 msgid "Invert Selection" msgstr "Inverti selezione" -#: editor.cc:1946 +#: editor.cc:1950 msgid "Set Range to Loop Range" msgstr "Imposta l'intervallo come ciclo" -#: editor.cc:1947 +#: editor.cc:1951 msgid "Set Range to Punch Range" msgstr "Imposta l'intervallo come intervallo di punch" -#: editor.cc:1949 editor.cc:2023 editor_actions.cc:188 +#: editor.cc:1953 editor.cc:2027 editor_actions.cc:188 msgid "Select All After Edit Point" msgstr "Seleziona tutto dopo il punto di modifica" -#: editor.cc:1950 editor.cc:2024 editor_actions.cc:189 +#: editor.cc:1954 editor.cc:2028 editor_actions.cc:189 msgid "Select All Before Edit Point" msgstr "Seleziona tutto prima del punto di modifica" -#: editor.cc:1951 editor.cc:2025 +#: editor.cc:1955 editor.cc:2029 msgid "Select All After Playhead" msgstr "Seleziona tutto dopo la testina" -#: editor.cc:1952 editor.cc:2026 +#: editor.cc:1956 editor.cc:2030 msgid "Select All Before Playhead" msgstr "Seleziona tutto prima della testina" -#: editor.cc:1953 +#: editor.cc:1957 msgid "Select All Between Playhead and Edit Point" msgstr "Seleziona tutto tra la testina ed il punto di modifica" -#: editor.cc:1954 +#: editor.cc:1958 msgid "Select All Within Playhead and Edit Point" msgstr "Seleziona tutto tra testina e punto di modifca" -#: editor.cc:1955 +#: editor.cc:1959 msgid "Select Range Between Playhead and Edit Point" msgstr "Seleziona l'intervallo tra la testina ed il punto di modifica" -#: editor.cc:1957 editor.cc:2028 editor_actions.cc:127 editor_actions.cc:128 +#: editor.cc:1961 editor.cc:2032 editor_actions.cc:127 editor_actions.cc:128 msgid "Select" msgstr "Seleziona" -#: editor.cc:1965 editor.cc:2036 editor_actions.cc:309 processor_box.cc:2222 +#: editor.cc:1969 editor.cc:2040 editor_actions.cc:309 processor_box.cc:2261 msgid "Cut" msgstr "Taglia" -#: editor.cc:1966 editor.cc:2037 editor_actions.cc:312 processor_box.cc:2225 +#: editor.cc:1970 editor.cc:2041 editor_actions.cc:312 processor_box.cc:2264 msgid "Copy" msgstr "Copia" -#: editor.cc:1967 editor.cc:2038 editor_actions.cc:313 processor_box.cc:2233 +#: editor.cc:1971 editor.cc:2042 editor_actions.cc:313 processor_box.cc:2272 msgid "Paste" msgstr "Incolla" -#: editor.cc:1971 editor_actions.cc:87 +#: editor.cc:1975 editor_actions.cc:87 msgid "Align" msgstr "Allinea" -#: editor.cc:1972 +#: editor.cc:1976 msgid "Align Relative" msgstr "Allinea Realtivo" -#: editor.cc:1979 +#: editor.cc:1983 msgid "Insert Selected Region" msgstr "Inserisci la regione selezionata" -#: editor.cc:1980 +#: editor.cc:1984 msgid "Insert Existing Media" msgstr "Inserisci media" +#: editor.cc:1993 editor.cc:2049 +msgid "Nudge Entire Track Later" +msgstr "" + #: editor.cc:1994 editor.cc:2050 +msgid "Nudge Track After Edit Point Later" +msgstr "" + +#: editor.cc:1995 editor.cc:2051 +msgid "Nudge Entire Track Earlier" +msgstr "" + +#: editor.cc:1996 editor.cc:2052 +msgid "Nudge Track After Edit Point Earlier" +msgstr "" + +#: editor.cc:1998 editor.cc:2054 msgid "Nudge" msgstr "Trascina" -#: editor.cc:3070 +#: editor.cc:3074 msgid "Smart Mode (add Range functions to Object mode)" msgstr "" -#: editor.cc:3073 +#: editor.cc:3075 +msgid "Object Mode (select/move Objects)" +msgstr "" + +#: editor.cc:3076 +msgid "Range Mode (select/move Ranges)" +msgstr "" + +#: editor.cc:3077 msgid "Draw/Edit MIDI Notes" msgstr "" -#: editor.cc:3074 +#: editor.cc:3078 msgid "Draw Region Gain" msgstr "Traccia il guadagno della regione" -#: editor.cc:3075 +#: editor.cc:3079 msgid "Select Zoom Range" msgstr "Intervallo di zoom" -#: editor.cc:3076 +#: editor.cc:3080 msgid "Stretch/Shrink Regions and MIDI Notes" msgstr "Allunga/restringi le regioni e le note MIDI" -#: editor.cc:3077 +#: editor.cc:3081 msgid "Listen to Specific Regions" msgstr "Ascolta specifiche regioni" -#: editor.cc:3078 +#: editor.cc:3082 msgid "Note Level Editing" msgstr "" -#: editor.cc:3079 +#: editor.cc:3083 msgid "" "Groups: click to (de)activate\n" "Context-click for other operations" @@ -2513,73 +2843,89 @@ msgstr "" "Gruppi: clicca per disattivare\n" "Click di contesto per il resto delle operazioni" -#: editor.cc:3082 editor_actions.cc:242 +#: editor.cc:3084 +msgid "Nudge Region/Selection Later" +msgstr "" + +#: editor.cc:3085 +msgid "Nudge Region/Selection Earlier" +msgstr "" + +#: editor.cc:3086 editor_actions.cc:242 msgid "Zoom In" msgstr "Zoom avanti" -#: editor.cc:3083 editor_actions.cc:241 +#: editor.cc:3087 editor_actions.cc:241 msgid "Zoom Out" msgstr "Zoom indietro" -#: editor.cc:3084 editor_actions.cc:243 +#: editor.cc:3088 editor_actions.cc:243 msgid "Zoom to Session" msgstr "Zoom sulla sessione" -#: editor.cc:3085 +#: editor.cc:3089 msgid "Zoom focus" msgstr "Zoom" -#: editor.cc:3086 +#: editor.cc:3090 msgid "Expand Tracks" msgstr "Espandi tracce" -#: editor.cc:3087 +#: editor.cc:3091 msgid "Shrink Tracks" msgstr "Restringi le tracce" -#: editor.cc:3088 +#: editor.cc:3092 msgid "Snap/Grid Units" msgstr "Aggancia/Griglia" -#: editor.cc:3089 +#: editor.cc:3093 msgid "Snap/Grid Mode" msgstr "Aggancia/Modalità griglia" -#: editor.cc:3091 +#: editor.cc:3095 msgid "Edit Mode" msgstr "Modalità di modifica" -#: editor.cc:3092 +#: editor.cc:3096 msgid "" "Nudge Clock\n" "(controls distance used to nudge regions and selections)" msgstr "" -#: editor.cc:3194 +#: editor.cc:3198 msgid "malformed URL passed to drag-n-drop code" msgstr "URL non valido passato al codice drag-n-drop" -#: editor.cc:3265 editor_actions.cc:292 +#: editor.cc:3260 editor_actions.cc:291 +msgid "Command|Undo" +msgstr "" + +#: editor.cc:3262 +msgid "Command|Undo (%1)" +msgstr "" + +#: editor.cc:3269 editor_actions.cc:292 msgid "Redo" msgstr "Ripristina" -#: editor.cc:3267 +#: editor.cc:3271 msgid "Redo (%1)" msgstr "Ripristina (%1)" -#: editor.cc:3286 editor.cc:3310 editor_actions.cc:106 editor_actions.cc:1794 +#: editor.cc:3290 editor.cc:3314 editor_actions.cc:106 editor_actions.cc:1794 msgid "Duplicate" msgstr "Duplica" -#: editor.cc:3287 +#: editor.cc:3291 msgid "Number of duplications:" msgstr "Numero di duplicazioni:" -#: editor.cc:3864 +#: editor.cc:3868 msgid "Playlist Deletion" msgstr "Eliminazione playlist" -#: editor.cc:3865 +#: editor.cc:3869 msgid "" "Playlist %1 is currently unused.\n" "If it is kept, its audio files will not be cleaned.\n" @@ -2589,32 +2935,37 @@ msgstr "" "Se viene mantenuta i file audio associati non saranno puliti.\n" "Se viene eliminata, soltanto i file audio da essa utilizzati saranno puliti." -#: editor.cc:3875 +#: editor.cc:3879 msgid "Delete Playlist" msgstr "Elimina la playlist" -#: editor.cc:3876 +#: editor.cc:3880 msgid "Keep Playlist" msgstr "Mantieni la playlist" -#: editor.cc:3877 editor_audio_import.cc:581 editor_ops.cc:5856 -#: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 +#: editor.cc:3881 editor_audio_import.cc:581 editor_ops.cc:5856 +#: engine_dialog.cc:1711 sfdb_freesound_mootcher.cc:69 processor_box.cc:2030 +#: processor_box.cc:2055 msgid "Cancel" msgstr "Cancella" -#: editor.cc:4021 +#: editor.cc:4025 msgid "new playlists" msgstr "nuove playlist" -#: editor.cc:4037 +#: editor.cc:4041 msgid "copy playlists" msgstr "copia le playlist" -#: editor.cc:4052 +#: editor.cc:4056 msgid "clear playlists" msgstr "cancella le playlist" -#: editor.cc:5492 editor_markers.cc:940 panner_ui.cc:393 processor_box.cc:2253 +#: editor.cc:4691 +msgid "Please wait while %1 loads visual data." +msgstr "" + +#: editor.cc:5496 editor_markers.cc:940 panner_ui.cc:392 processor_box.cc:2292 msgid "Edit..." msgstr "Modifica..." @@ -2663,8 +3014,8 @@ msgstr "Strato" msgid "Position" msgstr "Posizione" -#: editor_actions.cc:101 gain_meter.cc:121 gain_meter.cc:791 panner_ui.cc:177 -#: panner_ui.cc:586 +#: editor_actions.cc:101 gain_meter.cc:120 gain_meter.cc:794 panner_ui.cc:176 +#: panner_ui.cc:585 msgid "Trim" msgstr "Spunta" @@ -2698,15 +3049,23 @@ msgstr "Posizionati sui marcatori" msgid "Markers" msgstr "Marcatori" +#: editor_actions.cc:111 +msgid "Meter falloff" +msgstr "" + #: editor_actions.cc:112 msgid "Meter hold" msgstr "Tenuta del misuratore" +#: editor_actions.cc:113 session_option_editor.cc:234 +msgid "MIDI Options" +msgstr "" + #: editor_actions.cc:114 msgid "Misc Options" msgstr "Opzioni varie" -#: editor_actions.cc:115 rc_option_editor.cc:1460 route_group_dialog.cc:48 +#: editor_actions.cc:115 rc_option_editor.cc:1450 route_group_dialog.cc:48 #: session_option_editor.cc:218 session_option_editor.cc:225 msgid "Monitoring" msgstr "Controllo" @@ -2844,6 +3203,10 @@ msgstr "Al prossimo limite di regione (nessuna selezione della traccia)" msgid "To Previous Region Boundary" msgstr "Al precedente limite di regione" +#: editor_actions.cc:169 +msgid "To Previous Region Boundary (No Track Selection)" +msgstr "" + #: editor_actions.cc:171 msgid "To Next Region Start" msgstr "All'inizio della prossima regione" @@ -2852,6 +3215,10 @@ msgstr "All'inizio della prossima regione" msgid "To Next Region End" msgstr "Alla fine della prossima regione" +#: editor_actions.cc:173 +msgid "To Next Region Sync" +msgstr "" + #: editor_actions.cc:175 msgid "To Previous Region Start" msgstr "All'inizio della regione precedente" @@ -2860,6 +3227,10 @@ msgstr "All'inizio della regione precedente" msgid "To Previous Region End" msgstr "Alla fine della regione precedente" +#: editor_actions.cc:177 +msgid "To Previous Region Sync" +msgstr "" + #: editor_actions.cc:179 msgid "To Range Start" msgstr "All'inizio dell'intervallo" @@ -2876,7 +3247,7 @@ msgstr "Sposta la testina all'inizio dell'intervallo" msgid "Playhead to Range End" msgstr "Sposta la testina alla fine dell'intervallo" -#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2239 +#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2278 msgid "Deselect All" msgstr "Deseleziona tutto" @@ -2912,6 +3283,18 @@ msgstr "Seleziona la traccia o il bus precedente" msgid "Toggle Record Enable" msgstr "Abilita la registrazione" +#: editor_actions.cc:204 +msgid "Toggle Solo" +msgstr "" + +#: editor_actions.cc:206 +msgid "Toggle Mute" +msgstr "" + +#: editor_actions.cc:208 +msgid "Toggle Solo Isolate" +msgstr "" + #: editor_actions.cc:213 msgid "Save View %1" msgstr "Salva la vista %1" @@ -2924,6 +3307,14 @@ msgstr "Vai alla vista %1" msgid "Locate to Mark %1" msgstr "Posizionati sul marcatore %1" +#: editor_actions.cc:229 +msgid "Jump to Next Mark" +msgstr "" + +#: editor_actions.cc:230 +msgid "Jump to Previous Mark" +msgstr "" + #: editor_actions.cc:231 msgid "Add Mark from Playhead" msgstr "Aggiungi marcatore in corrispondenza della testina" @@ -2944,6 +3335,14 @@ msgstr "Avanza la testina" msgid "Nudge Playhead Backward" msgstr "Indietreggia la testina" +#: editor_actions.cc:238 +msgid "Playhead To Next Grid" +msgstr "" + +#: editor_actions.cc:239 +msgid "Playhead To Previous Grid" +msgstr "" + #: editor_actions.cc:244 msgid "Zoom to Region" msgstr "Zoom sulla regione" @@ -3092,6 +3491,10 @@ msgstr "Inizio intervallo" msgid "Finish Range" msgstr "Fine intervallo" +#: editor_actions.cc:327 +msgid "Finish Add Range" +msgstr "" + #: editor_actions.cc:357 msgid "Follow Playhead" msgstr "Segui la testina" @@ -3100,6 +3503,10 @@ msgstr "Segui la testina" msgid "Remove Last Capture" msgstr "Rimuovi l'ultima registrazione" +#: editor_actions.cc:360 +msgid "Stationary Playhead" +msgstr "" + #: editor_actions.cc:362 insert_time_dialog.cc:32 msgid "Insert Time" msgstr "Inserisci tempo" @@ -3158,6 +3565,14 @@ msgstr "" msgid "Zoom Focus Mouse" msgstr "Zoom sul mouse" +#: editor_actions.cc:402 +msgid "Zoom Focus Edit Point" +msgstr "" + +#: editor_actions.cc:404 +msgid "Next Zoom Focus" +msgstr "" + #: editor_actions.cc:410 msgid "Smart Object Mode" msgstr "" @@ -3174,6 +3589,10 @@ msgstr "Strumento oggetto" msgid "Range Tool" msgstr "Strumento intervallo" +#: editor_actions.cc:429 +msgid "Note Drawing Tool" +msgstr "" + #: editor_actions.cc:435 msgid "Gain Tool" msgstr "Strumento guadagno" @@ -3198,6 +3617,10 @@ msgstr "" msgid "Edit MIDI" msgstr "Modifica MIDI" +#: editor_actions.cc:472 +msgid "Change Edit Point" +msgstr "" + #: editor_actions.cc:473 msgid "Change Edit Point Including Marker" msgstr "" @@ -3227,10 +3650,18 @@ msgstr "Allinea a" msgid "Snap Mode" msgstr "Modalita' di Allineamento" +#: editor_actions.cc:489 +msgid "Next Snap Mode" +msgstr "" + #: editor_actions.cc:490 msgid "Next Snap Choice" msgstr "" +#: editor_actions.cc:491 +msgid "Next Musical Snap Choice" +msgstr "" + #: editor_actions.cc:492 msgid "Previous Snap Choice" msgstr "" @@ -3239,6 +3670,22 @@ msgstr "" msgid "Previous Musical Snap Choice" msgstr "" +#: editor_actions.cc:498 +msgid "Snap to CD Frame" +msgstr "" + +#: editor_actions.cc:499 +msgid "Snap to Timecode Frame" +msgstr "" + +#: editor_actions.cc:500 +msgid "Snap to Timecode Seconds" +msgstr "" + +#: editor_actions.cc:501 +msgid "Snap to Timecode Minutes" +msgstr "" + #: editor_actions.cc:502 msgid "Snap to Seconds" msgstr "Allinea ai secondi" @@ -3247,6 +3694,14 @@ msgstr "Allinea ai secondi" msgid "Snap to Minutes" msgstr "Allinea ai minuti" +#: editor_actions.cc:505 +msgid "Snap to One Twenty Eighths" +msgstr "" + +#: editor_actions.cc:506 +msgid "Snap to Sixty Fourths" +msgstr "" + #: editor_actions.cc:507 msgid "Snap to Thirty Seconds" msgstr "Allinea ai trentesimi di secondo" @@ -3327,6 +3782,14 @@ msgstr "Spostati ad inizio regione" msgid "Snap to Region End" msgstr "Allinea a fine regione" +#: editor_actions.cc:528 +msgid "Snap to Region Sync" +msgstr "" + +#: editor_actions.cc:529 +msgid "Snap to Region Boundary" +msgstr "" + #: editor_actions.cc:531 msgid "Show Marker Lines" msgstr "" @@ -3339,14 +3802,34 @@ msgstr "Ciclo/Punch" msgid "Min:Sec" msgstr "Min:Sec" -#: editor_actions.cc:549 rc_option_editor.cc:1842 +#: editor_actions.cc:547 editor_actions.cc:550 +msgid "Video Monitor" +msgstr "" + +#: editor_actions.cc:549 rc_option_editor.cc:1829 msgid "Video" msgstr "" +#: editor_actions.cc:552 +msgid "Always on Top" +msgstr "" + +#: editor_actions.cc:554 +msgid "Frame number" +msgstr "" + +#: editor_actions.cc:555 +msgid "Timecode Background" +msgstr "" + #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" +#: editor_actions.cc:557 +msgid "Letterbox" +msgstr "" + #: editor_actions.cc:558 msgid "Original Size" msgstr "" @@ -3415,6 +3898,10 @@ msgstr "Per Data di creazione di sorgente del file" msgid "By Source Filesystem" msgstr "Per Filesystem di sorgente" +#: editor_actions.cc:648 +msgid "Remove Unused" +msgstr "" + #: editor_actions.cc:652 editor_audio_import.cc:279 #: session_import_dialog.cc:74 session_import_dialog.cc:94 #: session_metadata_dialog.cc:297 editor_videotimeline.cc:108 @@ -3449,6 +3936,10 @@ msgstr "Mostra il logo" msgid "Toggle MIDI Input Active for Editor-Selected Tracks/Busses" msgstr "" +#: editor_actions.cc:696 +msgid "Loaded editor bindings from %1" +msgstr "" + #: editor_actions.cc:698 msgid "Could not find editor.bindings in search path %1" msgstr "" @@ -3487,6 +3978,10 @@ msgstr "" msgid "Glue to Bars and Beats" msgstr "Aggancia a battute e battiti" +#: editor_actions.cc:1749 +msgid "Remove Sync" +msgstr "" + #: editor_actions.cc:1752 mixer_strip.cc:1904 route_time_axis.cc:209 msgid "Mute" msgstr "Muto" @@ -3499,6 +3994,10 @@ msgstr "Normalizza..." msgid "Reverse" msgstr "" +#: editor_actions.cc:1761 +msgid "Make Mono Regions" +msgstr "" + #: editor_actions.cc:1764 msgid "Boost Gain" msgstr "Aumenta guadagno" @@ -3543,6 +4042,22 @@ msgstr "Imposta l'intervallo di loop" msgid "Set Punch" msgstr "Imposta Punch" +#: editor_actions.cc:1820 +msgid "Add Single Range Marker" +msgstr "" + +#: editor_actions.cc:1825 +msgid "Add Range Marker Per Region" +msgstr "" + +#: editor_actions.cc:1829 +msgid "Snap Position To Grid" +msgstr "" + +#: editor_actions.cc:1832 +msgid "Close Gaps" +msgstr "" + #: editor_actions.cc:1835 msgid "Rhythm Ferret..." msgstr "" @@ -3563,6 +4078,18 @@ msgstr "Imposta la durata della dissolvenza in entrata" msgid "Set Fade Out Length" msgstr "Durata della dissolvenza in uscita" +#: editor_actions.cc:1850 +msgid "Set Tempo from Region = Bar" +msgstr "" + +#: editor_actions.cc:1855 +msgid "Split at Percussion Onsets" +msgstr "" + +#: editor_actions.cc:1860 +msgid "List Editor..." +msgstr "" + #: editor_actions.cc:1863 msgid "Properties..." msgstr "Proprietà..." @@ -3599,6 +4126,10 @@ msgstr "Azzera guadagno" msgid "Envelope Active" msgstr "Inviluppo attivo/passiv" +#: editor_actions.cc:1885 +msgid "Quantize..." +msgstr "" + #: editor_actions.cc:1886 editor_actions.cc:1887 msgid "Insert Patch Change..." msgstr "" @@ -3615,6 +4146,22 @@ msgstr "Rimuovi silenzio" msgid "Set Range Selection" msgstr "Imposta intervallo di selezione" +#: editor_actions.cc:1892 +msgid "Nudge Later" +msgstr "" + +#: editor_actions.cc:1893 +msgid "Nudge Earlier" +msgstr "" + +#: editor_actions.cc:1898 +msgid "Nudge Later by Capture Offset" +msgstr "" + +#: editor_actions.cc:1905 +msgid "Nudge Earlier by Capture Offset" +msgstr "" + #: editor_actions.cc:1909 msgid "Trim to Loop" msgstr "Ritaglia in base al ciclo" @@ -3623,6 +4170,22 @@ msgstr "Ritaglia in base al ciclo" msgid "Trim to Punch" msgstr "Ritaglia in base al punch" +#: editor_actions.cc:1912 +msgid "Trim to Previous" +msgstr "" + +#: editor_actions.cc:1913 +msgid "Trim to Next" +msgstr "" + +#: editor_actions.cc:1920 +msgid "Insert Region From Region List" +msgstr "" + +#: editor_actions.cc:1926 +msgid "Set Sync Position" +msgstr "" + #: editor_actions.cc:1927 msgid "Place Transient" msgstr "" @@ -3647,6 +4210,22 @@ msgstr "" msgid "Align Start Relative" msgstr "" +#: editor_actions.cc:1946 +msgid "Align End" +msgstr "" + +#: editor_actions.cc:1951 +msgid "Align End Relative" +msgstr "" + +#: editor_actions.cc:1958 +msgid "Align Sync" +msgstr "" + +#: editor_actions.cc:1965 +msgid "Align Sync Relative" +msgstr "" + #: editor_actions.cc:1969 editor_actions.cc:1972 msgid "Choose Top..." msgstr "" @@ -3680,6 +4259,14 @@ msgstr "" msgid "Cancel Import" msgstr "Annullare l'importazione" +#: editor_audio_import.cc:543 +msgid "Editor: cannot open file \"%1\", (%2)" +msgstr "" + +#: editor_audio_import.cc:551 +msgid "Cancel entire import" +msgstr "" + #: editor_audio_import.cc:552 msgid "Don't embed it" msgstr "Non inludere" @@ -3709,6 +4296,10 @@ msgstr "Includi comunque" msgid "fixed time region drag" msgstr "" +#: editor_drag.cc:1700 +msgid "Video Start:" +msgstr "" + #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -3733,46 +4324,94 @@ msgstr "Copia il marcatore di tempo" msgid "move tempo mark" msgstr "Muovi il marcatore di tempo" -#: editor_drag.cc:2545 +#: editor_drag.cc:2550 msgid "change fade in length" msgstr "cambia la durata della dissolvenza in entrata" -#: editor_drag.cc:2663 +#: editor_drag.cc:2668 msgid "change fade out length" msgstr "cambia la durata della dissolvenza in uscita" -#: editor_drag.cc:3018 +#: editor_drag.cc:3023 msgid "move marker" msgstr "Muovi marcatore" -#: editor_drag.cc:3581 +#: editor_drag.cc:3586 msgid "An error occurred while executing time stretch operation" msgstr "C'è stato un errore durante l'esecuzione di 'time stretch'" -#: editor_drag.cc:4081 editor_markers.cc:680 +#: editor_drag.cc:4016 +msgid "programming_error: %1" +msgstr "" + +#: editor_drag.cc:4086 editor_markers.cc:680 msgid "new range marker" msgstr "nuovo marcatore di intervallo" +#: editor_drag.cc:4767 +msgid "rubberband selection" +msgstr "" + +#: editor_route_groups.cc:66 +msgid "No Selection = All Tracks?" +msgstr "" + +#: editor_route_groups.cc:95 +msgid "Col" +msgstr "" + +#: editor_route_groups.cc:95 +msgid "Group Tab Color" +msgstr "" + +#: editor_route_groups.cc:96 +msgid "Name of Group" +msgstr "" + #: editor_route_groups.cc:97 editor_routes.cc:203 msgid "V" msgstr "" +#: editor_route_groups.cc:97 +msgid "Group is visible?" +msgstr "" + +#: editor_route_groups.cc:98 +msgid "On" +msgstr "" + #: editor_route_groups.cc:98 msgid "Group is enabled?" msgstr "" +#: editor_route_groups.cc:99 +msgid "group|G" +msgstr "" + #: editor_route_groups.cc:99 msgid "Sharing Gain?" msgstr "" +#: editor_route_groups.cc:100 +msgid "relative|Rel" +msgstr "" + #: editor_route_groups.cc:100 msgid "Relative Gain Changes?" msgstr "" +#: editor_route_groups.cc:101 +msgid "mute|M" +msgstr "" + #: editor_route_groups.cc:101 msgid "Sharing Mute?" msgstr "" +#: editor_route_groups.cc:102 +msgid "solo|S" +msgstr "" + #: editor_route_groups.cc:102 msgid "Sharing Solo?" msgstr "" @@ -3786,6 +4425,26 @@ msgstr "Reg" msgid "Sharing Record-enable Status?" msgstr "" +#: editor_route_groups.cc:104 +msgid "monitoring|Mon" +msgstr "" + +#: editor_route_groups.cc:104 +msgid "Sharing Monitoring Choice?" +msgstr "" + +#: editor_route_groups.cc:105 +msgid "selection|Sel" +msgstr "" + +#: editor_route_groups.cc:105 +msgid "Sharing Selected/Editing Status?" +msgstr "" + +#: editor_route_groups.cc:106 +msgid "active|A" +msgstr "" + #: editor_route_groups.cc:106 msgid "Sharing Active Status?" msgstr "" @@ -3803,11 +4462,19 @@ msgstr "senza nome" #: editor_markers.cc:1022 editor_markers.cc:1041 editor_markers.cc:1071 #: editor_markers.cc:1102 editor_markers.cc:1132 editor_markers.cc:1160 #: editor_markers.cc:1191 editor_markers.cc:1216 editor_markers.cc:1267 -#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1514 -#: editor_mouse.cc:2478 +#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1526 +#: editor_mouse.cc:2528 msgid "programming error: marker canvas item has no marker object pointer!" msgstr "" +#: editor_export_audio.cc:143 editor_export_audio.cc:148 +msgid "File Exists!" +msgstr "" + +#: editor_export_audio.cc:151 +msgid "Overwrite Existing File" +msgstr "" + #: editor_group_tabs.cc:162 msgid "Fit to Window" msgstr "Adatta alla finestra" @@ -3825,6 +4492,10 @@ msgstr "fine" msgid "add marker" msgstr "aggiungi marcatore" +#: editor_markers.cc:677 +msgid "range" +msgstr "" + #: editor_markers.cc:713 location_ui.cc:852 msgid "remove marker" msgstr "rimuovi marcatore" @@ -3845,14 +4516,42 @@ msgstr "Sposta marcatore alla testina" msgid "Create Range to Next Marker" msgstr "Crea intervallo fino al prossimo marcatore" +#: editor_markers.cc:896 +msgid "Locate to Marker" +msgstr "" + +#: editor_markers.cc:897 +msgid "Play from Marker" +msgstr "" + +#: editor_markers.cc:900 +msgid "Set Marker from Playhead" +msgstr "" + +#: editor_markers.cc:902 +msgid "Set Range from Selection" +msgstr "" + +#: editor_markers.cc:905 +msgid "Zoom to Range" +msgstr "" + #: editor_markers.cc:912 msgid "Hide Range" msgstr "Nascondi intervallo" +#: editor_markers.cc:913 +msgid "Rename Range..." +msgstr "" + #: editor_markers.cc:917 msgid "Remove Range" msgstr "Rimuovi intervallo" +#: editor_markers.cc:924 +msgid "Separate Regions in Range" +msgstr "" + #: editor_markers.cc:927 msgid "Select Range" msgstr "Separa l'intervallo" @@ -3861,32 +4560,32 @@ msgstr "Separa l'intervallo" msgid "Set Punch Range" msgstr "Imposta l'intervallo di Punch" -#: editor_markers.cc:1351 editor_ops.cc:1699 +#: editor_markers.cc:1362 editor_ops.cc:1699 msgid "New Name:" msgstr "Nuovo nome: " -#: editor_markers.cc:1354 +#: editor_markers.cc:1365 msgid "Rename Mark" msgstr "Rinomina marcatore" -#: editor_markers.cc:1356 +#: editor_markers.cc:1367 msgid "Rename Range" msgstr "Rinomina intervallo" -#: editor_markers.cc:1363 editor_mouse.cc:2510 processor_box.cc:1781 -#: processor_box.cc:2235 route_time_axis.cc:982 route_ui.cc:1540 +#: editor_markers.cc:1374 editor_mouse.cc:2560 processor_box.cc:1808 +#: processor_box.cc:2274 route_time_axis.cc:982 route_ui.cc:1540 msgid "Rename" msgstr "Rinomina" -#: editor_markers.cc:1376 +#: editor_markers.cc:1387 msgid "rename marker" msgstr "Rinomina marcatore" -#: editor_markers.cc:1399 +#: editor_markers.cc:1411 msgid "set loop range" msgstr "imposta l'intervallo di ciclo" -#: editor_markers.cc:1405 +#: editor_markers.cc:1417 msgid "set punch range" msgstr "imposta l'intervallo di punch" @@ -3898,17 +4597,21 @@ msgstr "" msgid "Editor::event_frame() used on unhandled event type %1" msgstr "" -#: editor_mouse.cc:2235 editor_mouse.cc:2260 editor_mouse.cc:2273 +#: editor_mouse.cc:2285 editor_mouse.cc:2310 editor_mouse.cc:2323 msgid "" "programming error: control point canvas item has no control point object " "pointer!" msgstr "" -#: editor_mouse.cc:2441 +#: editor_mouse.cc:2466 +msgid "start point trim" +msgstr "" + +#: editor_mouse.cc:2491 msgid "End point trim" msgstr "" -#: editor_mouse.cc:2508 +#: editor_mouse.cc:2558 msgid "Name for region:" msgstr "Nome per la Regione:" @@ -3916,6 +4619,10 @@ msgstr "Nome per la Regione:" msgid "split" msgstr "dividi" +#: editor_ops.cc:256 +msgid "alter selection" +msgstr "" + #: editor_ops.cc:298 msgid "nudge regions forward" msgstr "sposta regioni in avanti" @@ -3932,6 +4639,10 @@ msgstr "sposta regioni indietro" msgid "nudge forward" msgstr "" +#: editor_ops.cc:492 +msgid "nudge backward" +msgstr "" + #: editor_ops.cc:557 msgid "build_region_boundary_cache called with snap_type = %1" msgstr "" @@ -3956,15 +4667,47 @@ msgstr "azzera gli intervalli" msgid "clear locations" msgstr "azzera le posizioni" +#: editor_ops.cc:2000 +msgid "insert dragged region" +msgstr "" + #: editor_ops.cc:2078 msgid "insert region" msgstr "inserisci regione" +#: editor_ops.cc:2261 +msgid "raise regions" +msgstr "" + +#: editor_ops.cc:2263 +msgid "raise region" +msgstr "" + +#: editor_ops.cc:2269 +msgid "raise regions to top" +msgstr "" + +#: editor_ops.cc:2271 +msgid "raise region to top" +msgstr "" + +#: editor_ops.cc:2277 +msgid "lower regions" +msgstr "" + +#: editor_ops.cc:2279 editor_ops.cc:2287 +msgid "lower region" +msgstr "" + +#: editor_ops.cc:2285 +msgid "lower regions to bottom" +msgstr "" + #: editor_ops.cc:2370 msgid "Rename Region" msgstr "Rinomina regione" -#: editor_ops.cc:2372 processor_box.cc:1779 route_ui.cc:1538 +#: editor_ops.cc:2372 processor_box.cc:1806 route_ui.cc:1538 msgid "New name:" msgstr "Nuovo nome: " @@ -3972,14 +4715,30 @@ msgstr "Nuovo nome: " msgid "separate" msgstr "separa" +#: editor_ops.cc:2795 +msgid "separate region under" +msgstr "" + #: editor_ops.cc:2916 msgid "trim to selection" msgstr "ritaglia in base alla selezione" +#: editor_ops.cc:3052 +msgid "set sync point" +msgstr "" + #: editor_ops.cc:3076 msgid "remove region sync" msgstr "Rimuovi il sync della regione" +#: editor_ops.cc:3098 +msgid "move regions to original position" +msgstr "" + +#: editor_ops.cc:3100 +msgid "move region to original position" +msgstr "" + #: editor_ops.cc:3121 msgid "align selection" msgstr "allinea selezione" @@ -3988,6 +4747,14 @@ msgstr "allinea selezione" msgid "align selection (relative)" msgstr "allinea selezione (relativo)" +#: editor_ops.cc:3229 +msgid "align region" +msgstr "" + +#: editor_ops.cc:3280 +msgid "trim front" +msgstr "" + #: editor_ops.cc:3280 msgid "trim back" msgstr "" @@ -4025,6 +4792,18 @@ msgid "" "Freezing will only process the signal as far as the first send/insert/return." msgstr "" +#: editor_ops.cc:3505 +msgid "Freeze anyway" +msgstr "" + +#: editor_ops.cc:3506 +msgid "Don't freeze" +msgstr "" + +#: editor_ops.cc:3507 +msgid "Freeze Limits" +msgstr "" + #: editor_ops.cc:3522 msgid "Cancel Freeze" msgstr "Annulla congelamento" @@ -4078,6 +4857,10 @@ msgstr "Rimuovi la regione" msgid "duplicate selection" msgstr "duplica selezione" +#: editor_ops.cc:4469 +msgid "nudge track" +msgstr "" + #: editor_ops.cc:4506 msgid "" "Do you really want to destroy the last capture?\n" @@ -4095,6 +4878,10 @@ msgstr "No, non fare niente." msgid "Yes, destroy it." msgstr "Si, rimuovi." +#: editor_ops.cc:4512 +msgid "Destroy last capture" +msgstr "" + #: editor_ops.cc:4573 msgid "normalize" msgstr "Normalizza" @@ -4107,10 +4894,26 @@ msgstr "fai il Reverse della regione" msgid "strip silence" msgstr "elimina silenzio" +#: editor_ops.cc:4763 +msgid "Fork Region(s)" +msgstr "" + #: editor_ops.cc:4963 msgid "reset region gain" msgstr "Ripristina il gain della regione" +#: editor_ops.cc:5016 +msgid "region gain envelope active" +msgstr "" + +#: editor_ops.cc:5043 +msgid "toggle region lock" +msgstr "" + +#: editor_ops.cc:5067 +msgid "Toggle Video Lock" +msgstr "" + #: editor_ops.cc:5091 msgid "region lock style" msgstr "" @@ -4147,6 +4950,14 @@ msgstr "attiva dissolvenza in uscita" msgid "set loop range from selection" msgstr "intervallo di ciclo dalla selezione" +#: editor_ops.cc:5660 +msgid "set loop range from edit range" +msgstr "" + +#: editor_ops.cc:5689 +msgid "set loop range from region" +msgstr "" + #: editor_ops.cc:5707 msgid "set punch range from selection" msgstr "imposta intervallo di punch dalla selezione" @@ -4176,6 +4987,10 @@ msgid "Do you want to set the global tempo or add a new tempo marker?" msgstr "" "Vuoi impostare il tempo globale o aggiungere un nuovo marcatore di tempo?" +#: editor_ops.cc:5888 +msgid "set tempo from region" +msgstr "" + #: editor_ops.cc:5918 msgid "split regions" msgstr "dividi regioni" @@ -4220,6 +5035,10 @@ msgstr "" msgid "snap regions to grid" msgstr "allinea le regioni alla griglia" +#: editor_ops.cc:6199 +msgid "Close Region Gaps" +msgstr "" + #: editor_ops.cc:6204 msgid "Crossfade length" msgstr "Durata della dissolvenza incrociata" @@ -4265,7 +5084,7 @@ msgstr "" msgid "tracks" msgstr "Tracce" -#: editor_ops.cc:6485 route_ui.cc:1822 +#: editor_ops.cc:6485 route_ui.cc:1821 msgid "track" msgstr "traccia" @@ -4273,7 +5092,7 @@ msgstr "traccia" msgid "busses" msgstr "Bus" -#: editor_ops.cc:6491 route_ui.cc:1822 +#: editor_ops.cc:6491 route_ui.cc:1821 msgid "bus" msgstr "bus" @@ -4360,10 +5179,22 @@ msgstr "separa le regioni" msgid "Region name, with number of channels in []'s" msgstr "" +#: editor_regions.cc:112 +msgid "Position of start of region" +msgstr "" + #: editor_regions.cc:113 editor_regions.cc:849 time_info_box.cc:98 msgid "End" msgstr "Fine" +#: editor_regions.cc:113 +msgid "Position of end of region" +msgstr "" + +#: editor_regions.cc:114 +msgid "Length of the region" +msgstr "" + #: editor_regions.cc:115 msgid "Position of region sync point, relative to start of the region" msgstr "" @@ -4381,6 +5212,10 @@ msgstr "" msgid "L" msgstr "" +#: editor_regions.cc:118 +msgid "Region position locked?" +msgstr "" + #: editor_regions.cc:119 msgid "G" msgstr "" @@ -4389,12 +5224,16 @@ msgstr "" msgid "Region position glued to Bars|Beats time?" msgstr "" -#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:759 -#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:554 +#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:762 +#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:553 #: stereo_panner.cc:237 msgid "M" msgstr "" +#: editor_regions.cc:120 +msgid "Region muted?" +msgstr "" + #: editor_regions.cc:121 msgid "O" msgstr "" @@ -4431,8 +5270,7 @@ msgstr "Rimuovi le regioni inutilizzate" msgid "Mult." msgstr "Mult." -#: editor_regions.cc:847 engine_dialog.cc:84 midi_list_editor.cc:103 -#: time_info_box.cc:91 +#: editor_regions.cc:847 midi_list_editor.cc:103 time_info_box.cc:91 msgid "Start" msgstr "Inizio" @@ -4448,20 +5286,64 @@ msgstr "MANCANTE" msgid "SS" msgstr "" +#: editor_routes.cc:202 +msgid "Track/Bus Name" +msgstr "" + +#: editor_routes.cc:203 +msgid "Track/Bus visible ?" +msgstr "" + #: editor_routes.cc:204 mixer_strip.cc:1945 meter_strip.cc:334 #: route_time_axis.cc:2407 msgid "A" msgstr "A" +#: editor_routes.cc:204 +msgid "Track/Bus active ?" +msgstr "" + +#: editor_routes.cc:205 mixer_strip.cc:1932 +msgid "I" +msgstr "" + +#: editor_routes.cc:205 +msgid "MIDI input enabled" +msgstr "" + #: editor_routes.cc:206 mixer_strip.cc:1930 mono_panner.cc:198 #: stereo_panner.cc:215 stereo_panner.cc:242 msgid "R" msgstr "" +#: editor_routes.cc:206 +msgid "Record enabled" +msgstr "" + +#: editor_routes.cc:207 +msgid "Muted" +msgstr "" + #: editor_routes.cc:208 mixer_strip.cc:1941 meter_strip.cc:330 msgid "S" msgstr "" +#: editor_routes.cc:208 +msgid "Soloed" +msgstr "" + +#: editor_routes.cc:209 +msgid "SI" +msgstr "" + +#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1867 +msgid "Solo Isolated" +msgstr "" + +#: editor_routes.cc:210 +msgid "Solo Safe (Locked)" +msgstr "" + #: editor_routes.cc:471 mixer_ui.cc:1162 msgid "Hide All" msgstr "Nascondi tutto" @@ -4506,6 +5388,10 @@ msgstr "Pulisci tutte le posizioni" msgid "Unhide locations" msgstr "Scopri le posizioni" +#: editor_rulers.cc:346 +msgid "New range" +msgstr "" + #: editor_rulers.cc:347 msgid "Clear all ranges" msgstr "Pulisci tutti gli intervalli" @@ -4530,6 +5416,14 @@ msgstr "Nuovo Meter" msgid "Timeline height" msgstr "" +#: editor_rulers.cc:383 +msgid "Align Video Track" +msgstr "" + +#: editor_selection.cc:889 editor_selection.cc:932 +msgid "set selected regions" +msgstr "" + #: editor_selection.cc:1414 msgid "select all" msgstr "seleziona tutto" @@ -4562,6 +5456,14 @@ msgstr "seleziona tutto dopo il cursore" msgid "select all before cursor" msgstr "seleziona tutto prima del cursore" +#: editor_selection.cc:1753 +msgid "select all after edit" +msgstr "" + +#: editor_selection.cc:1755 +msgid "select all before edit" +msgstr "" + #: editor_selection.cc:1888 msgid "No edit range defined" msgstr "Nessun intervallo di modifica definito" @@ -4574,6 +5476,10 @@ msgstr "" "Il punto di modifica è impostato sul marcatore selezionato\n" "ma non c'è nessun marcatore selezionato." +#: editor_snapshots.cc:136 +msgid "Rename Snapshot" +msgstr "" + #: editor_snapshots.cc:138 msgid "New name of snapshot" msgstr "Nuovo nome dell'istantanea" @@ -4633,6 +5539,10 @@ msgid "" "programming error: meter marker canvas item has no marker object pointer!" msgstr "" +#: editor_timefx.cc:68 +msgid "stretch/shrink" +msgstr "" + #: editor_timefx.cc:129 msgid "pitch shift" msgstr "" @@ -4641,228 +5551,218 @@ msgstr "" msgid "timefx cannot be started - thread creation error" msgstr "" -#: engine_dialog.cc:75 -msgid "Realtime" -msgstr "Tempo reale" - -#: engine_dialog.cc:76 -msgid "Do not lock memory" -msgstr "Non bloccare la memoria" - -#: engine_dialog.cc:77 -msgid "Unlock memory" -msgstr "Sblocca memoria" - -#: engine_dialog.cc:78 -msgid "No zombies" +#: engine_dialog.cc:79 +msgid "Device Control Panel" msgstr "" -#: engine_dialog.cc:79 -msgid "Provide monitor ports" -msgstr "Fornire porte per il controllo" - -#: engine_dialog.cc:80 -msgid "Force 16 bit" -msgstr "Forza 16 bit" +#: engine_dialog.cc:80 engine_dialog.cc:1725 +msgid "Measure" +msgstr "" #: engine_dialog.cc:81 -msgid "H/W monitoring" -msgstr "Controllo H/W" +msgid "Use results" +msgstr "" #: engine_dialog.cc:82 -msgid "H/W metering" -msgstr "Misuratore Hardware" +msgid "Back to settings ... (ignore results)" +msgstr "" #: engine_dialog.cc:83 -msgid "Verbose output" -msgstr "Output prolisso" - -#: engine_dialog.cc:103 -msgid "8000Hz" +msgid "Calibrate..." msgstr "" -#: engine_dialog.cc:104 -msgid "22050Hz" -msgstr "" - -#: engine_dialog.cc:105 -msgid "44100Hz" -msgstr "" - -#: engine_dialog.cc:106 -msgid "48000Hz" +#: engine_dialog.cc:87 +msgid "Refresh list" msgstr "" #: engine_dialog.cc:107 -msgid "88200Hz" +msgid "" +"No audio/MIDI backends detected. %1 cannot run\n" +"\n" +"(This is a build/packaging/system error. It should never happen.)" msgstr "" -#: engine_dialog.cc:108 -msgid "96000Hz" +#: engine_dialog.cc:136 +msgid "Latency Measurement Tool" msgstr "" -#: engine_dialog.cc:109 -msgid "192000Hz" +#: engine_dialog.cc:151 +msgid "" +"Turn down the volume on your audio equipment to a very " +"low level." msgstr "" -#: engine_dialog.cc:127 engine_dialog.cc:132 engine_dialog.cc:169 -#: engine_dialog.cc:562 midi_channel_selector.cc:163 -#: midi_channel_selector.cc:402 midi_channel_selector.cc:438 -#: rc_option_editor.cc:1250 sfdb_ui.cc:538 -msgid "None" -msgstr "Nessuno" - -#: engine_dialog.cc:128 engine_dialog.cc:563 -msgid "Triangular" -msgstr "Triangolare" - -#: engine_dialog.cc:129 engine_dialog.cc:565 -msgid "Rectangular" -msgstr "Rettangolare" - -#: engine_dialog.cc:130 engine_dialog.cc:567 -msgid "Shaped" +#: engine_dialog.cc:159 +msgid "Select two channels below and connect them using a cable." msgstr "" -#: engine_dialog.cc:158 engine_dialog.cc:483 engine_dialog.cc:974 -msgid "Playback/recording on 1 device" -msgstr "Riproduzione/Registrazione su un dispositivo" - -#: engine_dialog.cc:159 engine_dialog.cc:487 engine_dialog.cc:540 -#: engine_dialog.cc:977 -msgid "Playback/recording on 2 devices" -msgstr "Riproduzione/Registrazione su due dispositivi" - -#: engine_dialog.cc:160 engine_dialog.cc:503 engine_dialog.cc:980 -msgid "Playback only" -msgstr "Solo riproduzione" - -#: engine_dialog.cc:161 engine_dialog.cc:505 engine_dialog.cc:983 -msgid "Recording only" -msgstr "Solo registrazione" - -#: engine_dialog.cc:171 engine_dialog.cc:448 -msgid "coremidi" +#: engine_dialog.cc:164 +msgid "Output channel" msgstr "" -#: engine_dialog.cc:173 engine_dialog.cc:581 -msgid "seq" +#: engine_dialog.cc:172 +msgid "Input channel" msgstr "" -#: engine_dialog.cc:174 engine_dialog.cc:583 -msgid "raw" +#: engine_dialog.cc:207 +msgid "Once the channels are connected, click the \"Measure\" button." msgstr "" -#: engine_dialog.cc:181 +#: engine_dialog.cc:214 +msgid "When satisfied with the results, click the \"Use results\" button." +msgstr "" + +#: engine_dialog.cc:229 engine_dialog.cc:1727 +msgid "No measurement results yet" +msgstr "" + +#: engine_dialog.cc:238 route_params_ui.cc:105 +msgid "Latency" +msgstr "Latenza" + +#: engine_dialog.cc:333 +msgid "Audio System:" +msgstr "" + +#: engine_dialog.cc:374 msgid "Driver:" msgstr "Driver:" -#: engine_dialog.cc:191 sfdb_ui.cc:147 sfdb_ui.cc:260 sfdb_ui.cc:265 +#: engine_dialog.cc:380 +msgid "Device:" +msgstr "" + +#: engine_dialog.cc:385 engine_dialog.cc:475 sfdb_ui.cc:147 sfdb_ui.cc:260 +#: sfdb_ui.cc:265 msgid "Sample rate:" msgstr "Frequenza di campionamento" -#: engine_dialog.cc:196 +#: engine_dialog.cc:391 engine_dialog.cc:482 msgid "Buffer size:" msgstr "Dimenzione buffer:" -#: engine_dialog.cc:202 -msgid "Number of buffers:" -msgstr "Numero di buffer:" - -#: engine_dialog.cc:209 -msgid "Approximate latency:" -msgstr "Latenza:" - -#: engine_dialog.cc:222 -msgid "Audio mode:" -msgstr "Modalità audio:" - -#: engine_dialog.cc:284 engine_dialog.cc:408 -msgid "Ignore" -msgstr "Ignora" - -#: engine_dialog.cc:292 -msgid "Client timeout" +#: engine_dialog.cc:404 +msgid "Input Channels:" msgstr "" -#: engine_dialog.cc:299 -msgid "Number of ports:" -msgstr "Numero di porte:" +#: engine_dialog.cc:415 +msgid "Output Channels:" +msgstr "" -#: engine_dialog.cc:304 -msgid "MIDI driver:" -msgstr "Driver MIDI:" - -#: engine_dialog.cc:310 -msgid "Dither:" -msgstr "Dither:" - -#: engine_dialog.cc:319 -msgid "" -"No JACK server found anywhere on this system. Please install JACK and restart" -msgstr "Nessun server JACK trovato su questo sistema. Installa JACK e riavvia." - -#: engine_dialog.cc:327 -msgid "Server:" -msgstr "Server:" - -#: engine_dialog.cc:339 -msgid "Input device:" -msgstr "Dispositivo di ingresso:" - -#: engine_dialog.cc:343 -msgid "Output device:" -msgstr "Dispositivo di uscita" - -#: engine_dialog.cc:348 +#: engine_dialog.cc:426 msgid "Hardware input latency:" msgstr "Latenza in ingresso:" -#: engine_dialog.cc:351 engine_dialog.cc:357 +#: engine_dialog.cc:429 engine_dialog.cc:442 msgid "samples" msgstr "campioni" -#: engine_dialog.cc:354 +#: engine_dialog.cc:439 msgid "Hardware output latency:" msgstr "Latenza in uscita:" -#: engine_dialog.cc:368 -msgid "Device" -msgstr "Dispositivo" - -#: engine_dialog.cc:370 -msgid "Advanced" -msgstr "Avanzate" - -#: engine_dialog.cc:653 -msgid "cannot open JACK rc file %1 to store parameters" -msgstr "Non posso aprire il file rc di JACK per memorizzare i parametri" - -#: engine_dialog.cc:800 -msgid "No suitable audio devices" -msgstr "Non ci sono dispositivi audio adatti " - -#: engine_dialog.cc:1017 -msgid "JACK appears to be missing from the %1 bundle" -msgstr "Sembra che JACK sia assente dal raggruppamento %1" - -#: engine_dialog.cc:1087 -msgid "You need to choose an audio device first." -msgstr "Devi prima scegliere un dispositivo audio." - -#: engine_dialog.cc:1104 -msgid "Audio device \"%1\" not known on this computer." -msgstr "Impossibile riconoscere il dispositivo audio \"%1\" " - -#: engine_dialog.cc:1256 -msgid "AudioSetup value for %1 is missing data" -msgstr "Manca il valore di configurazione audio per %1" - -#: engine_dialog.cc:1335 -msgid "configuration files contain a JACK server path that doesn't exist (%1)" +#: engine_dialog.cc:450 +msgid "MIDI System" +msgstr "" + +#: engine_dialog.cc:467 +msgid "" +"The %1 audio backend was configured and started externally.\n" +"This limits your control over it." +msgstr "" + +#: engine_dialog.cc:521 +msgid "" +"Your selected audio configuration is playback- or capture-only.\n" +"\n" +"Latency calibration requires playback and capture" +msgstr "" + +#: engine_dialog.cc:595 +msgid "MIDI Inputs" +msgstr "" + +#: engine_dialog.cc:612 +msgid "MIDI Outputs" +msgstr "" + +#: engine_dialog.cc:696 +msgid "all available channels" +msgstr "" + +#: engine_dialog.cc:890 +#, c-format +msgid "%u samples" +msgstr "" + +#: engine_dialog.cc:941 +#, c-format +msgid "(%.1f msecs)" +msgstr "" + +#: engine_dialog.cc:1389 +msgid "Cannot set driver to %1" +msgstr "" + +#: engine_dialog.cc:1393 +msgid "Cannot set device name to %1" +msgstr "" + +#: engine_dialog.cc:1397 +msgid "Cannot set sample rate to %1" +msgstr "" + +#: engine_dialog.cc:1401 +msgid "Cannot set buffer size to %1" +msgstr "" + +#: engine_dialog.cc:1407 +msgid "Cannot set input channels to %1" +msgstr "" + +#: engine_dialog.cc:1411 +msgid "Cannot set output channels to %1" +msgstr "" + +#: engine_dialog.cc:1417 +msgid "Cannot set input latency to %1" +msgstr "" + +#: engine_dialog.cc:1421 +msgid "Cannot set output latency to %1" +msgstr "" + +#: engine_dialog.cc:1654 +msgid "No signal detected " +msgstr "" + +#: engine_dialog.cc:1667 port_insert_ui.cc:71 port_insert_ui.cc:99 +msgid "Disconnected from audio engine" +msgstr "Disconnesso dal motore audio" + +#: engine_dialog.cc:1681 +msgid "(signal detection error)" +msgstr "" + +#: engine_dialog.cc:1687 +msgid "(inverted - bad wiring)" +msgstr "" + +#: engine_dialog.cc:1697 +msgid "Detected roundtrip latency: %1" +msgstr "" + +#: engine_dialog.cc:1709 port_insert_ui.cc:135 +msgid "Detecting ..." +msgstr "Rilevamento..." + +#: engine_dialog.cc:1789 +msgid "Disconnect from %1" +msgstr "" + +#: engine_dialog.cc:1801 +msgid "Connect to %1" msgstr "" -"il file di configurazione contengono un percorso al server JACK inesistente " -"(%1)" #: export_channel_selector.cc:45 sfdb_ui.cc:145 msgid "Channels:" @@ -4888,6 +5788,14 @@ msgstr "La regione contiene dissolvenze e guadagno (canali: %1)" msgid "Track output (channels: %1)" msgstr "Uscita traccia (canali: %1)" +#: export_channel_selector.cc:536 +msgid "Export region contents" +msgstr "" + +#: export_channel_selector.cc:537 +msgid "Export track output" +msgstr "" + #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten.Error: " msgstr "Errore: " @@ -4961,6 +5881,10 @@ msgstr "Sorgente" msgid "Stem Export" msgstr "Esportazione Stem" +#: export_file_notebook.cc:38 +msgid "Add another format" +msgstr "" + #: export_file_notebook.cc:178 msgid "Format" msgstr "Formato" @@ -4969,6 +5893,14 @@ msgstr "Formato" msgid "Location" msgstr "Posizione" +#: export_file_notebook.cc:255 +msgid "No format!" +msgstr "" + +#: export_file_notebook.cc:267 +msgid "Format %1: %2" +msgstr "" + #: export_filename_selector.cc:32 msgid "Label:" msgstr "Etichetta:" @@ -4986,9 +5918,9 @@ msgid "Folder:" msgstr "Cartella:" #: export_filename_selector.cc:37 session_import_dialog.cc:44 -#: transcode_video_dialog.cc:59 video_server_dialog.cc:45 -#: video_server_dialog.cc:47 export_video_dialog.cc:69 -#: export_video_dialog.cc:71 +#: transcode_video_dialog.cc:58 video_server_dialog.cc:45 +#: video_server_dialog.cc:47 export_video_dialog.cc:68 +#: export_video_dialog.cc:70 msgid "Browse" msgstr "Sfoglia" @@ -5096,6 +6028,10 @@ msgstr "Veloce (sinc)" msgid "Zero order hold" msgstr "" +#: export_format_dialog.cc:879 +msgid "Linear encoding options" +msgstr "" + #: export_format_dialog.cc:895 msgid "Ogg Vorbis options" msgstr "Opzioni Ogg Vorbis" @@ -5108,6 +6044,10 @@ msgstr "Opzioni FLAC" msgid "Broadcast Wave options" msgstr "" +#: export_format_selector.cc:136 +msgid "Do you really want to remove the format?" +msgstr "" + #: export_preset_selector.cc:28 msgid "Preset" msgstr "Preimpostazione" @@ -5120,6 +6060,10 @@ msgstr "" "Il preset selezionato non è stato caricato correttamente!\n" "Forse fa riferimento ad un formato che è stato rimosso?" +#: export_preset_selector.cc:156 +msgid "Do you really want to remove this preset?" +msgstr "" + #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "Mostra tempo come:" @@ -5132,6 +6076,10 @@ msgstr "a" msgid "Range" msgstr "Intervallo" +#: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 +msgid "curl error %1 (%2)" +msgstr "" + #: sfdb_freesound_mootcher.cc:266 msgid "getSoundResourceFile: There is no valid root in the xml file" msgstr "" @@ -5144,65 +6092,78 @@ msgstr "" msgid "%1" msgstr "" -#: gain_meter.cc:106 gain_meter.cc:357 gain_meter.cc:462 gain_meter.cc:856 +#: gain_meter.cc:105 gain_meter.cc:360 gain_meter.cc:465 gain_meter.cc:859 msgid "-inf" msgstr "-inf" -#: gain_meter.cc:112 gain_meter.cc:913 +#: gain_meter.cc:111 gain_meter.cc:916 msgid "Fader automation mode" msgstr "Modalità di automazione fader" -#: gain_meter.cc:113 gain_meter.cc:914 +#: gain_meter.cc:112 gain_meter.cc:917 msgid "Fader automation type" msgstr "Tipo di automazione fader" -#: gain_meter.cc:122 gain_meter.cc:795 panner_ui.cc:178 panner_ui.cc:590 +#: gain_meter.cc:121 gain_meter.cc:798 panner_ui.cc:177 panner_ui.cc:589 msgid "Abs" msgstr "" -#: gain_meter.cc:762 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:557 +#: gain_meter.cc:765 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:556 #: route_time_axis.cc:2411 msgid "P" msgstr "" -#: gain_meter.cc:765 panner_ui.cc:560 +#: gain_meter.cc:768 panner_ui.cc:559 msgid "T" msgstr "" -#: gain_meter.cc:768 panner_ui.cc:563 +#: gain_meter.cc:771 panner_ui.cc:562 msgid "W" msgstr "" -#: generic_pluginui.cc:83 +#: generic_pluginui.cc:81 msgid "Presets" msgstr "Presets" -#: generic_pluginui.cc:242 generic_pluginui.cc:376 processor_box.cc:2212 +#: generic_pluginui.cc:230 +msgid "Switches" +msgstr "" + +#: generic_pluginui.cc:240 generic_pluginui.cc:374 processor_box.cc:2251 msgid "Controls" msgstr "Controlli" -#: generic_pluginui.cc:270 +#: generic_pluginui.cc:268 msgid "Plugin Editor: could not build control element for port %1" msgstr "" "Plugin Editor: impossibile creare elemento di controllo per la porta %1" -#: generic_pluginui.cc:423 +#: generic_pluginui.cc:406 +msgid "Meters" +msgstr "" + +#: generic_pluginui.cc:421 msgid "Automation control" msgstr "Controllo automazione" -#: generic_pluginui.cc:430 +#: generic_pluginui.cc:428 msgid "Mgnual" msgstr "" -#: global_port_matrix.cc:164 +#: global_port_matrix.cc:157 msgid "Audio Connection Manager" msgstr "Gestore delle connessioni audio" -#: global_port_matrix.cc:167 +#: global_port_matrix.cc:160 msgid "MIDI Connection Manager" msgstr "Gestore delle connessionio MIDI" -#: global_port_matrix.cc:213 io_selector.cc:216 +#: global_port_matrix.cc:200 io_selector.cc:210 mixer_strip.cc:719 +#: mixer_strip.cc:845 +msgid "Disconnect" +msgstr "Disconnetti" + +#: global_port_matrix.cc:206 io_selector.cc:216 msgid "port" msgstr "entrata" @@ -5218,10 +6179,30 @@ msgstr "Registrazione abilitata" msgid "Soloed..." msgstr "In solo..." +#: group_tabs.cc:316 +msgid "Create New Group ..." +msgstr "" + #: group_tabs.cc:317 msgid "Create New Group From" msgstr "" +#: group_tabs.cc:320 +msgid "Edit Group..." +msgstr "" + +#: group_tabs.cc:321 +msgid "Collect Group" +msgstr "" + +#: group_tabs.cc:322 +msgid "Remove Group" +msgstr "" + +#: group_tabs.cc:325 +msgid "Remove Subgroup Bus" +msgstr "" + #: group_tabs.cc:327 msgid "Add New Subgroup Bus" msgstr "Aggiungi un nuovo bus sottogruppo" @@ -5238,6 +6219,10 @@ msgstr "Aggiungi un bus ausiliario (post-fader)" msgid "Enable All Groups" msgstr "" +#: group_tabs.cc:337 +msgid "Disable All Groups" +msgstr "" + #: gtk-custom-ruler.c:133 msgid "Lower limit of ruler" msgstr "" @@ -5278,10 +6263,18 @@ msgstr "Tempo da inserire:" msgid "Intersected regions should:" msgstr "Le regioni con intersezione dovrebbero:" +#: insert_time_dialog.cc:57 +msgid "stay in position" +msgstr "" + #: insert_time_dialog.cc:58 msgid "move" msgstr "sposta" +#: insert_time_dialog.cc:59 +msgid "be split" +msgstr "" + #: insert_time_dialog.cc:65 msgid "Insert time on all the track's playlists" msgstr "" @@ -5308,10 +6301,18 @@ msgid "" "(may cause oddities in the tempo map)" msgstr "" +#: insert_time_dialog.cc:91 +msgid "Insert time" +msgstr "" + #: interthread_progress_window.cc:103 msgid "Importing file: %1 of %2" msgstr "Importazione file: %1 di %2" +#: io_selector.cc:220 +msgid "I/O selector" +msgstr "" + #: io_selector.cc:265 msgid "%1 input" msgstr "entrata %1" @@ -5356,15 +6357,41 @@ msgstr "" msgid "Main_menu" msgstr "" +#: keyeditor.cc:253 +msgid "redirectmenu" +msgstr "" + +#: keyeditor.cc:255 +msgid "Editor_menus" +msgstr "" + +#: keyeditor.cc:257 +msgid "RegionList" +msgstr "" + +#: keyeditor.cc:259 +msgid "ProcessorMenu" +msgstr "" + #: latency_gui.cc:39 msgid "sample" msgstr "campione" +#: latency_gui.cc:40 +msgid "msec" +msgstr "" + #: latency_gui.cc:41 msgid "period" msgstr "periodo" -#: latency_gui.cc:72 panner_ui.cc:392 +#: latency_gui.cc:55 +msgid "%1 sample" +msgid_plural "%1 samples" +msgstr[0] "" +msgstr[1] "" + +#: latency_gui.cc:72 panner_ui.cc:391 msgid "Reset" msgstr "Azzera" @@ -5372,6 +6399,10 @@ msgstr "Azzera" msgid "programming error: %1 (%2)" msgstr "Errore di programmazione: %1 (%2)" +#: location_ui.cc:50 location_ui.cc:52 +msgid "Use PH" +msgstr "" + #: location_ui.cc:54 msgid "CD" msgstr "CD" @@ -5384,10 +6415,18 @@ msgstr "Colla" msgid "Performer:" msgstr "" +#: location_ui.cc:86 +msgid "Composer:" +msgstr "" + #: location_ui.cc:88 msgid "Pre-Emphasis" msgstr "" +#: location_ui.cc:314 +msgid "Remove this range" +msgstr "" + #: location_ui.cc:315 msgid "Start time - middle click to locate here" msgstr "" @@ -5396,10 +6435,26 @@ msgstr "" msgid "End time - middle click to locate here" msgstr "" +#: location_ui.cc:319 +msgid "Set range start from playhead location" +msgstr "" + +#: location_ui.cc:320 +msgid "Set range end from playhead location" +msgstr "" + +#: location_ui.cc:324 +msgid "Remove this marker" +msgstr "" + #: location_ui.cc:325 msgid "Position - middle click to locate here" msgstr "" +#: location_ui.cc:327 +msgid "Set marker time from playhead location" +msgstr "" + #: location_ui.cc:494 msgid "You cannot put a CD marker at the start of the session" msgstr "Impossibile inserire un marcatore CD all'inizio della sessione" @@ -5428,102 +6483,118 @@ msgstr "Intervalli (inclusi gli intervalli traccia CD)" msgid "add range marker" msgstr "agggiungi marcatore di intervallo" -#: main.cc:83 -msgid "%1 could not connect to JACK." -msgstr "%1 non si è potuto connettere a JACK" +#: main.cc:81 +msgid "%1 could not connect to the audio backend." +msgstr "" -#: main.cc:210 main.cc:331 +#: main.cc:194 main.cc:315 +msgid "cannot create user %3 folder %1 (%2)" +msgstr "" + +#: main.cc:201 main.cc:322 msgid "cannot open pango.rc file %1" msgstr "impossibile aprire il file pango.rc %1" -#: main.cc:235 main.cc:358 +#: main.cc:226 main.cc:349 msgid "Cannot find ArdourMono TrueType font" msgstr "" -#: main.cc:247 main.cc:364 +#: main.cc:238 main.cc:355 msgid "Cannot load ArdourMono TrueType font." msgstr "" -#: main.cc:312 +#: main.cc:303 msgid "" "No fontconfig file found on your system. Things may looked very odd or ugly" msgstr "" -#: main.cc:368 +#: main.cc:359 msgid "Failed to set fontconfig configuration." msgstr "" -#: main.cc:379 main.cc:395 -msgid "JACK exited" -msgstr "JACK ha abbandonato" +#: main.cc:370 main.cc:386 +msgid "The audio backend (%1) has failed, or terminated" +msgstr "" -#: main.cc:382 +#: main.cc:373 msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" +"%2 exited unexpectedly, and without notifying %1.\n" "\n" -"This could be due to misconfiguration or to an error inside JACK.\n" +"This could be due to misconfiguration or to an error inside %2.\n" "\n" "Click OK to exit %1." msgstr "" -"JACK ha abbandonato inaspettatamente e senza preavviso %1.\n" -"\n" -"La causa può essere una errata configurazione o un errore interno a JACK.\n" -"\n" -"Clicca su OK per uscire %1." -#: main.cc:397 -msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" -"\n" -"This is probably due to an error inside JACK. You should restart JACK\n" -"and reconnect %1 to it, or exit %1 now. You cannot save your\n" -"session at this time, because we would lose your connection information.\n" +#: main.cc:387 +msgid "%2 exited unexpectedly, and without notifying %1." msgstr "" -"JACK ha abbandonato inaspettatamente e senza preavviso %1.\n" -"\n" -"La causa probabilmente è un errore interno a JACK. Dovresti riavviare JACK\n" -"e riconnettere %1, oppure uscire da %1 adesso. Non è possibile salvare\n" -"la sessione adesso perché perderemmo le tue impostazioni di connessione.\n" -#: main.cc:487 +#: main.cc:474 msgid " (built using " msgstr "" -#: main.cc:490 +#: main.cc:477 msgid " and GCC version " msgstr "" -#: main.cc:503 +#: main.cc:487 +msgid "Copyright (C) 1999-2012 Paul Davis" +msgstr "" + +#: main.cc:488 +msgid "" +"Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " +"Baker, Robin Gareus" +msgstr "" + +#: main.cc:490 msgid "%1 comes with ABSOLUTELY NO WARRANTY" msgstr "%1 è fornito SENZA ALCUNA GARANZIA" -#: main.cc:504 +#: main.cc:491 msgid "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." msgstr "neanche per la COMMERCIALIZZAZIONE o PER SCOPI PARTICOLARI." -#: main.cc:505 +#: main.cc:492 msgid "This is free software, and you are welcome to redistribute it " msgstr "Questo è software libero e siete i benvenuti se volete redistribuirlo " -#: main.cc:506 +#: main.cc:493 msgid "under certain conditions; see the source for copying conditions." msgstr "" "sotto determinate condizioni; leggere i sorgenti per le condizioni relative " "alla copia." -#: main.cc:513 +#: main.cc:500 msgid "could not initialize %1." msgstr "Impossibile inizializzare %1." -#: main.cc:522 +#: main.cc:509 msgid "Cannot xinstall SIGPIPE error handler" msgstr "" +#: main.cc:515 +msgid "could not create %1 GUI" +msgstr "" + +#: main_clock.cc:51 +msgid "Display delta to edit cursor" +msgstr "" + +#: marker.cc:251 video_image_frame.cc:121 +msgid "MarkerText" +msgstr "" + #: midi_channel_selector.cc:159 midi_channel_selector.cc:397 #: midi_channel_selector.cc:433 msgid "All" msgstr "Tutto" +#: midi_channel_selector.cc:163 midi_channel_selector.cc:402 +#: midi_channel_selector.cc:438 rc_option_editor.cc:1248 sfdb_ui.cc:538 +msgid "None" +msgstr "Nessuno" + #: midi_channel_selector.cc:167 midi_channel_selector.cc:407 #: midi_channel_selector.cc:443 msgid "Invert" @@ -5533,10 +6604,38 @@ msgstr "Inverti" msgid "Force" msgstr "Forza" +#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 +msgid "MIDI Channel Control" +msgstr "" + +#: midi_channel_selector.cc:332 +msgid "Playback all channels" +msgstr "" + +#: midi_channel_selector.cc:333 +msgid "Play only selected channels" +msgstr "" + #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" +#: midi_channel_selector.cc:335 +msgid "Record all channels" +msgstr "" + +#: midi_channel_selector.cc:336 +msgid "Record only selected channels" +msgstr "" + +#: midi_channel_selector.cc:337 +msgid "Force all channels to 1 channel" +msgstr "" + +#: midi_channel_selector.cc:378 +msgid "Inbound" +msgstr "" + #: midi_channel_selector.cc:398 msgid "Click to enable recording all channels" msgstr "" @@ -5549,6 +6648,10 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" +#: midi_channel_selector.cc:415 +msgid "Playback" +msgstr "" + #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -5593,6 +6696,22 @@ msgstr "" msgid "Triplet" msgstr "" +#: midi_list_editor.cc:58 +msgid "Quarter" +msgstr "" + +#: midi_list_editor.cc:59 +msgid "Eighth" +msgstr "" + +#: midi_list_editor.cc:60 +msgid "Sixteenth" +msgstr "" + +#: midi_list_editor.cc:61 +msgid "Thirty-second" +msgstr "" + #: midi_list_editor.cc:62 msgid "Sixty-fourth" msgstr "" @@ -5605,6 +6724,50 @@ msgstr "" msgid "Vel" msgstr "" +#: midi_list_editor.cc:215 +msgid "edit note start" +msgstr "" + +#: midi_list_editor.cc:224 +msgid "edit note channel" +msgstr "" + +#: midi_list_editor.cc:234 +msgid "edit note number" +msgstr "" + +#: midi_list_editor.cc:244 +msgid "edit note velocity" +msgstr "" + +#: midi_list_editor.cc:258 +msgid "edit note length" +msgstr "" + +#: midi_list_editor.cc:460 +msgid "insert new note" +msgstr "" + +#: midi_list_editor.cc:524 +msgid "delete notes (from list)" +msgstr "" + +#: midi_list_editor.cc:599 +msgid "change note channel" +msgstr "" + +#: midi_list_editor.cc:607 +msgid "change note number" +msgstr "" + +#: midi_list_editor.cc:617 +msgid "change note velocity" +msgstr "" + +#: midi_list_editor.cc:687 +msgid "change note length" +msgstr "" + #: midi_port_dialog.cc:39 msgid "Add MIDI Port" msgstr "Aggiungi una porta MIDI" @@ -5617,6 +6780,18 @@ msgstr "Nome porta:" msgid "MidiPortDialog" msgstr "" +#: midi_region_view.cc:838 +msgid "channel edit" +msgstr "" + +#: midi_region_view.cc:874 +msgid "velocity edit" +msgstr "" + +#: midi_region_view.cc:931 +msgid "add note" +msgstr "" + #: midi_region_view.cc:1779 msgid "step add" msgstr "" @@ -5625,10 +6800,22 @@ msgstr "" msgid "insane MIDI patch key %1:%2" msgstr "" +#: midi_region_view.cc:1870 midi_region_view.cc:1890 +msgid "alter patch change" +msgstr "" + #: midi_region_view.cc:1924 msgid "add patch change" msgstr "" +#: midi_region_view.cc:1942 +msgid "move patch change" +msgstr "" + +#: midi_region_view.cc:1953 +msgid "delete patch change" +msgstr "" + #: midi_region_view.cc:2022 msgid "delete selection" msgstr "cancella selezione" @@ -5637,26 +6824,74 @@ msgstr "cancella selezione" msgid "delete note" msgstr "Elimina nota" +#: midi_region_view.cc:2425 +msgid "move notes" +msgstr "" + #: midi_region_view.cc:2647 msgid "resize notes" msgstr "" +#: midi_region_view.cc:2901 +msgid "change velocities" +msgstr "" + +#: midi_region_view.cc:2967 +msgid "transpose" +msgstr "" + #: midi_region_view.cc:3001 msgid "change note lengths" msgstr "cambia le durate" +#: midi_region_view.cc:3070 +msgid "nudge" +msgstr "" + +#: midi_region_view.cc:3085 +msgid "change channel" +msgstr "" + +#: midi_region_view.cc:3130 +msgid "Bank " +msgstr "" + +#: midi_region_view.cc:3131 +msgid "Program " +msgstr "" + +#: midi_region_view.cc:3132 +msgid "Channel " +msgstr "" + #: midi_region_view.cc:3301 midi_region_view.cc:3303 msgid "paste" msgstr "Incolla" +#: midi_region_view.cc:3761 +msgid "delete sysex" +msgstr "" + +#: midi_streamview.cc:479 +msgid "failed to create MIDI region" +msgstr "" + #: midi_time_axis.cc:262 msgid "External MIDI Device" msgstr "" +#: midi_time_axis.cc:263 +msgid "External Device Mode" +msgstr "" + #: midi_time_axis.cc:271 msgid "Chns" msgstr "" +#: midi_time_axis.cc:272 +msgid "Click to edit channel settings" +msgstr "" + #: midi_time_axis.cc:486 msgid "Show Full Range" msgstr "Mostra tutto l'intervallo" @@ -5665,6 +6900,22 @@ msgstr "Mostra tutto l'intervallo" msgid "Fit Contents" msgstr "Adatta i contenuti" +#: midi_time_axis.cc:495 +msgid "Note Range" +msgstr "" + +#: midi_time_axis.cc:496 +msgid "Note Mode" +msgstr "" + +#: midi_time_axis.cc:497 +msgid "Channel Selector" +msgstr "" + +#: midi_time_axis.cc:502 +msgid "Color Mode" +msgstr "" + #: midi_time_axis.cc:561 msgid "Bender" msgstr "" @@ -5673,6 +6924,18 @@ msgstr "" msgid "Pressure" msgstr "Pressione" +#: midi_time_axis.cc:578 +msgid "Controllers" +msgstr "" + +#: midi_time_axis.cc:583 +msgid "No MIDI Channels selected" +msgstr "" + +#: midi_time_axis.cc:640 midi_time_axis.cc:769 +msgid "Hide all channels" +msgstr "" + #: midi_time_axis.cc:644 midi_time_axis.cc:773 msgid "Show all channels" msgstr "Mostra tutti i canali" @@ -5681,6 +6944,14 @@ msgstr "Mostra tutti i canali" msgid "Channel %1" msgstr "Canale %1" +#: midi_time_axis.cc:910 midi_time_axis.cc:942 +msgid "Controllers %1-%2" +msgstr "" + +#: midi_time_axis.cc:933 midi_time_axis.cc:936 +msgid "Controller %1" +msgstr "" + #: midi_time_axis.cc:959 msgid "Sustained" msgstr "Sostenuto" @@ -5689,6 +6960,10 @@ msgstr "Sostenuto" msgid "Percussive" msgstr "Percussivo" +#: midi_time_axis.cc:986 +msgid "Meter Colors" +msgstr "" + #: midi_time_axis.cc:993 msgid "Channel Colors" msgstr "Colore canale" @@ -5697,26 +6972,43 @@ msgstr "Colore canale" msgid "Track Color" msgstr "Colore traccia" +#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 +#: midi_time_axis.cc:1510 +msgid "all" +msgstr "" + #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" -#: midi_tracer.cc:51 +#: midi_tracer.cc:46 +msgid "Line history: " +msgstr "" + +#: midi_tracer.cc:54 msgid "Auto-Scroll" msgstr "Auto scorrimento" -#: midi_tracer.cc:52 +#: midi_tracer.cc:55 msgid "Decimal" msgstr "Decimale" -#: midi_tracer.cc:53 rc_option_editor.cc:659 +#: midi_tracer.cc:56 rc_option_editor.cc:657 msgid "Enabled" msgstr "Abilitato" -#: midi_tracer.cc:66 +#: midi_tracer.cc:57 +msgid "Delta times" +msgstr "" + +#: midi_tracer.cc:70 msgid "Port:" msgstr "Porta:" +#: midi_velocity_dialog.cc:31 +msgid "New velocity" +msgstr "" + #: missing_file_dialog.cc:34 msgid "Missing File!" msgstr "File mancante!" @@ -5774,7 +7066,7 @@ msgstr "Clicca per scegliere un'altra cartella" msgid "Missing Plugins" msgstr "Plugin mancanti" -#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 +#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:59 msgid "OK" msgstr "Ok" @@ -5802,6 +7094,34 @@ msgstr "" msgid "Set Gain to 0dB on Mixer-Selected Tracks/Busses" msgstr "" +#: mixer_actor.cc:63 +msgid "Copy Selected Processors" +msgstr "" + +#: mixer_actor.cc:64 +msgid "Cut Selected Processors" +msgstr "" + +#: mixer_actor.cc:65 +msgid "Paste Selected Processors" +msgstr "" + +#: mixer_actor.cc:66 +msgid "Delete Selected Processors" +msgstr "" + +#: mixer_actor.cc:67 +msgid "Select All (visible) Processors" +msgstr "" + +#: mixer_actor.cc:68 +msgid "Toggle Selected Processors" +msgstr "" + +#: mixer_actor.cc:69 +msgid "Toggle Selected Plugins" +msgstr "" + #: mixer_actor.cc:72 mixer_actor.cc:73 msgid "Scroll Mixer Window to the left" msgstr "" @@ -5810,6 +7130,10 @@ msgstr "" msgid "Toggle MIDI Input Active for Mixer-Selected Tracks/Busses" msgstr "" +#: mixer_actor.cc:90 +msgid "Loaded mixer bindings from %1" +msgstr "" + #: mixer_actor.cc:92 msgid "Could not find mixer.bindings in search path %1" msgstr "" @@ -5818,6 +7142,11 @@ msgstr "" msgid "pre" msgstr "" +#: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 +#: rc_option_editor.cc:1868 +msgid "Comments" +msgstr "" + #: mixer_strip.cc:147 msgid "Click to toggle the width of this mixer strip." msgstr "" @@ -5828,6 +7157,14 @@ msgid "" "%1-%2-click to toggle the width of all strips." msgstr "" +#: mixer_strip.cc:156 +msgid "Hide this mixer strip" +msgstr "" + +#: mixer_strip.cc:167 +msgid "Click to select metering point" +msgstr "" + #: mixer_strip.cc:173 msgid "tupni" msgstr "" @@ -5848,13 +7185,43 @@ msgstr "blocca" msgid "iso" msgstr "" +#: mixer_strip.cc:258 +msgid "Mix group" +msgstr "" + +#: mixer_strip.cc:351 rc_option_editor.cc:1865 +msgid "Phase Invert" +msgstr "" + +#: mixer_strip.cc:352 rc_option_editor.cc:1866 route_ui.cc:1218 +msgid "Solo Safe" +msgstr "" + #: mixer_strip.cc:355 mixer_ui.cc:124 route_time_axis.cc:673 msgid "Group" msgstr "Gruppo" -#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 -msgid "Not connected to JACK - no I/O changes are possible" -msgstr "Nessuna connessione a JACK - nessuna modifica I/O consentita" +#: mixer_strip.cc:356 rc_option_editor.cc:1869 +msgid "Meter Point" +msgstr "" + +#: mixer_strip.cc:470 +msgid "Enable/Disable MIDI input" +msgstr "" + +#: mixer_strip.cc:622 +msgid "" +"Aux\n" +"Sends" +msgstr "" + +#: mixer_strip.cc:646 +msgid "Snd" +msgstr "" + +#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2193 +msgid "Not connected to audio engine - no I/O changes are possible" +msgstr "" #: mixer_strip.cc:1096 msgid "INPUT to %1" @@ -5868,6 +7235,14 @@ msgstr "" msgid "Disconnected" msgstr "Disconnesso" +#: mixer_strip.cc:1303 +msgid "*Comments*" +msgstr "" + +#: mixer_strip.cc:1310 +msgid "Cmt" +msgstr "" + #: mixer_strip.cc:1313 msgid "*Cmt*" msgstr "" @@ -5876,6 +7251,10 @@ msgstr "" msgid "Click to Add/Edit Comments" msgstr "" +#: mixer_strip.cc:1358 +msgid ": comment editor" +msgstr "" + #: mixer_strip.cc:1435 msgid "Grp" msgstr "" @@ -5904,10 +7283,38 @@ msgstr "Regola la latenza..." msgid "Protect Against Denormals" msgstr "Protezione dalla denormalizzazione" +#: mixer_strip.cc:1491 route_time_axis.cc:435 +msgid "Remote Control ID..." +msgstr "" + +#: mixer_strip.cc:1717 mixer_strip.cc:1741 +msgid "in" +msgstr "" + +#: mixer_strip.cc:1725 +msgid "post" +msgstr "" + +#: mixer_strip.cc:1729 +msgid "out" +msgstr "" + #: mixer_strip.cc:1734 msgid "custom" msgstr "personalizzato" +#: mixer_strip.cc:1745 +msgid "pr" +msgstr "" + +#: mixer_strip.cc:1749 +msgid "po" +msgstr "" + +#: mixer_strip.cc:1753 +msgid "o" +msgstr "" + #: mixer_strip.cc:1758 msgid "c" msgstr "" @@ -5924,10 +7331,30 @@ msgstr "AFL" msgid "PFL" msgstr "PFL" +#: mixer_strip.cc:1933 +msgid "D" +msgstr "" + +#: mixer_strip.cc:1953 +msgid "i" +msgstr "" + +#: mixer_strip.cc:2128 +msgid "Pre-fader" +msgstr "" + +#: mixer_strip.cc:2129 +msgid "Post-fader" +msgstr "" + #: mixer_strip.cc:2166 meter_strip.cc:728 msgid "Change all in Group to %1" msgstr "" +#: mixer_strip.cc:2168 meter_strip.cc:730 +msgid "Change all to %1" +msgstr "" + #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -5948,6 +7375,10 @@ msgstr "Strisce" msgid "Variable height" msgstr "" +#: meter_strip.cc:765 +msgid "Short" +msgstr "" + #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -6000,6 +7431,10 @@ msgstr "" msgid "SiP" msgstr "SiP" +#: monitor_section.cc:86 +msgid "soloing" +msgstr "" + #: monitor_section.cc:90 msgid "isolated" msgstr "isolato" @@ -6024,6 +7459,18 @@ msgstr "" "Se attivo, qualcosa è in ascolto.\n" "Clicca per ripristinare" +#: monitor_section.cc:124 +msgid "Solo controls affect solo-in-place" +msgstr "" + +#: monitor_section.cc:130 +msgid "Solo controls toggle after-fader-listen" +msgstr "" + +#: monitor_section.cc:136 +msgid "Solo controls toggle pre-fader-listen" +msgstr "" + #: monitor_section.cc:144 msgid "Gain increase for soloed signals (0dB is normal)" msgstr "" @@ -6046,10 +7493,22 @@ msgstr "" msgid "Gain reduction to use when dimming monitor outputs" msgstr "" +#: monitor_section.cc:181 +msgid "Dim" +msgstr "" + +#: monitor_section.cc:190 +msgid "excl. solo" +msgstr "" + #: monitor_section.cc:192 msgid "Exclusive solo means that only 1 solo is active at a time" msgstr "Solo esclusivo vuol dire che soltanto un solo per volta è attivo" +#: monitor_section.cc:199 +msgid "solo » mute" +msgstr "" + #: monitor_section.cc:201 msgid "" "If enabled, solo will override mute\n" @@ -6070,14 +7529,58 @@ msgstr "" msgid "mono" msgstr "" +#: monitor_section.cc:266 +msgid "Monitor" +msgstr "" + +#: monitor_section.cc:678 +msgid "Switch monitor to mono" +msgstr "" + +#: monitor_section.cc:681 +msgid "Cut monitor" +msgstr "" + +#: monitor_section.cc:684 +msgid "Dim monitor" +msgstr "" + +#: monitor_section.cc:687 +msgid "Toggle exclusive solo mode" +msgstr "" + #: monitor_section.cc:693 msgid "Toggle mute overrides solo mode" msgstr "" +#: monitor_section.cc:705 +msgid "Cut monitor channel %1" +msgstr "" + +#: monitor_section.cc:710 +msgid "Dim monitor channel %1" +msgstr "" + +#: monitor_section.cc:715 +msgid "Solo monitor channel %1" +msgstr "" + +#: monitor_section.cc:720 +msgid "Invert monitor channel %1" +msgstr "" + #: monitor_section.cc:730 msgid "In-place solo" msgstr "" +#: monitor_section.cc:732 +msgid "After Fade Listen (AFL) solo" +msgstr "" + +#: monitor_section.cc:734 +msgid "Pre Fade Listen (PFL) solo" +msgstr "" + #: mono_panner.cc:101 #, c-format msgid "L:%3d R:%3d" @@ -6092,6 +7595,10 @@ msgstr "" msgid "%" msgstr "" +#: nag.cc:41 +msgid "Support %1 Development" +msgstr "" + #: nag.cc:42 msgid "I'd like to make a one-time donation" msgstr "Voglio fare una donazione una tantum" @@ -6222,13 +7729,16 @@ msgid "" " -a, --no-announcements Do not contact website for announcements\n" msgstr "" +#: opts.cc:62 +msgid "" +" -b, --bindings Print all possible keyboard binding names\n" +msgstr "" + #: opts.cc:63 msgid "" -" -c, --name Use a specific jack client name, default is " +" -c, --name Use a specific backend client name, default is " "ardour\n" msgstr "" -" -c, --jack-client-name name Utilizza nome specifico per jack, il " -"predefinito e' ardour\n" #: opts.cc:64 msgid "" @@ -6243,6 +7753,10 @@ msgid "" "available options\n" msgstr "" +#: opts.cc:66 +msgid " -n, --no-splash Do not show splash screen\n" +msgstr "" + #: opts.cc:67 msgid " -m, --menus file Use \"file\" to define menus\n" msgstr "" @@ -6261,6 +7775,10 @@ msgstr "" msgid " -P, --no-connect-ports Do not connect any ports at startup\n" msgstr "" +#: opts.cc:71 +msgid " -S, --sync Draw the gui synchronously \n" +msgstr "" + #: opts.cc:73 msgid " -V, --novst Do not use VST support\n" msgstr " -n, --no-splash Non usare il supporto VST\n" @@ -6285,19 +7803,23 @@ msgstr "" msgid "Panner (2D)" msgstr "" +#: panner2d.cc:783 panner_ui.cc:383 plugin_ui.cc:448 +msgid "Bypass" +msgstr "" + #: panner2d.cc:787 msgid "Panner" msgstr "" -#: panner_ui.cc:71 +#: panner_ui.cc:70 msgid "Pan automation mode" msgstr "Modalita' automazione pan" -#: panner_ui.cc:72 +#: panner_ui.cc:71 msgid "Pan automation type" msgstr "Tipo di automazione pan" -#: panner_ui.cc:295 +#: panner_ui.cc:294 msgid "" "No panner user interface is currently available for %1-in/2out tracks/busses" msgstr "" @@ -6342,14 +7864,26 @@ msgstr "Il nome contiene" msgid "Type contains" msgstr "Il tipo contiene" +#: plugin_selector.cc:55 plugin_selector.cc:222 +msgid "Category contains" +msgstr "" + #: plugin_selector.cc:56 plugin_selector.cc:244 msgid "Author contains" msgstr "" +#: plugin_selector.cc:57 plugin_selector.cc:246 +msgid "Library contains" +msgstr "" + #: plugin_selector.cc:58 plugin_selector.cc:210 plugin_selector.cc:521 msgid "Favorites only" msgstr "Solo favoriti" +#: plugin_selector.cc:59 plugin_selector.cc:214 plugin_selector.cc:521 +msgid "Hidden only" +msgstr "" + #: plugin_selector.cc:64 msgid "Plugin Manager" msgstr "Gestore dei plugin" @@ -6374,6 +7908,22 @@ msgstr "Categoria" msgid "Creator" msgstr "Creatore" +#: plugin_selector.cc:90 +msgid "# Audio In" +msgstr "" + +#: plugin_selector.cc:91 +msgid "# Audio Out" +msgstr "" + +#: plugin_selector.cc:92 +msgid "# MIDI In" +msgstr "" + +#: plugin_selector.cc:93 +msgid "# MIDI Out" +msgstr "" + #: plugin_selector.cc:115 msgid "Plugins to be connected" msgstr "Plugin da connettere" @@ -6425,99 +7975,133 @@ msgstr "Per creatore" msgid "By Category" msgstr "Per categoria" -#: plugin_ui.cc:116 +#: plugin_ui.cc:114 msgid "Eh? LADSPA plugins don't have editors!" msgstr "Cosa? I plugin LADSPA non hanno editor?" -#: plugin_ui.cc:329 +#: plugin_ui.cc:123 plugin_ui.cc:226 +msgid "" +"unknown type of editor-supplying plugin (note: no VST support in this " +"version of %1)" +msgstr "" + +#: plugin_ui.cc:126 +msgid "unknown type of editor-supplying plugin" +msgstr "" + +#: plugin_ui.cc:256 +msgid "" +"unknown type of editor-supplying plugin (note: no linuxVST support in this " +"version of %1)" +msgstr "" + +#: plugin_ui.cc:328 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "" -#: plugin_ui.cc:417 +#: plugin_ui.cc:414 msgid "Add" msgstr "Aggiungi" -#: plugin_ui.cc:422 +#: plugin_ui.cc:418 +msgid "Description" +msgstr "" + +#: plugin_ui.cc:419 msgid "Plugin analysis" msgstr "Analisi plugin" -#: plugin_ui.cc:429 +#: plugin_ui.cc:426 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:431 +#: plugin_ui.cc:427 +msgid "Save a new preset" +msgstr "" + +#: plugin_ui.cc:428 msgid "Save the current preset" msgstr "" -#: plugin_ui.cc:432 +#: plugin_ui.cc:429 msgid "Delete the current preset" msgstr "" -#: plugin_ui.cc:433 +#: plugin_ui.cc:430 msgid "Disable signal processing by the plugin" msgstr "" -#: plugin_ui.cc:466 plugin_ui.cc:662 +#: plugin_ui.cc:463 plugin_ui.cc:659 msgid "" "Click to allow the plugin to receive keyboard events that %1 would normally " "use as a shortcut" msgstr "" -#: plugin_ui.cc:467 +#: plugin_ui.cc:464 msgid "Click to enable/disable this plugin" msgstr "" -#: plugin_ui.cc:508 +#: plugin_ui.cc:503 +msgid "latency (%1 sample)" +msgid_plural "latency (%1 samples)" +msgstr[0] "" +msgstr[1] "" + +#: plugin_ui.cc:505 msgid "latency (%1 ms)" msgstr "latenza (%1 ms)" -#: plugin_ui.cc:519 +#: plugin_ui.cc:516 msgid "Edit Latency" msgstr "Modifica latenza" -#: plugin_ui.cc:558 +#: plugin_ui.cc:555 msgid "Plugin preset %1 not found" msgstr "Preset per plugin %1 non trovato" -#: plugin_ui.cc:595 +#: plugin_ui.cc:592 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "full version" msgstr "" -#: plugin_ui.cc:615 plugin_ui.cc:630 +#: plugin_ui.cc:612 plugin_ui.cc:627 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "newer version" msgstr "" -#: plugin_ui.cc:669 +#: plugin_ui.cc:666 msgid "Click to allow normal use of %1 keyboard shortcuts" msgstr "Clicca per consentire il normale utilizzo delle scorciatoie di %1" -#: port_group.cc:335 +#: port_group.cc:337 msgid "%1 Busses" msgstr "%1 Bus" -#: port_group.cc:336 +#: port_group.cc:338 msgid "%1 Tracks" msgstr "%1 Tracce" -#: port_group.cc:337 +#: port_group.cc:339 msgid "Hardware" msgstr "" -#: port_group.cc:339 +#: port_group.cc:340 +msgid "%1 Misc" +msgstr "" + +#: port_group.cc:341 msgid "Other" msgstr "Altro" -#: port_group.cc:430 port_group.cc:431 +#: port_group.cc:432 port_group.cc:433 msgid "LTC Out" msgstr "" -#: port_group.cc:434 port_group.cc:435 +#: port_group.cc:436 port_group.cc:437 msgid "LTC In" msgstr "" @@ -6525,6 +8109,10 @@ msgstr "" msgid "MTC in" msgstr "" +#: port_group.cc:466 +msgid "MIDI control in" +msgstr "" + #: port_group.cc:469 msgid "MIDI clock in" msgstr "" @@ -6533,6 +8121,14 @@ msgstr "" msgid "MMC in" msgstr "" +#: port_group.cc:476 +msgid "MTC out" +msgstr "" + +#: port_group.cc:479 +msgid "MIDI control out" +msgstr "" + #: port_group.cc:482 msgid "MIDI clock out" msgstr "" @@ -6541,15 +8137,15 @@ msgstr "" msgid "MMC out" msgstr "" -#: port_group.cc:540 +#: port_group.cc:532 msgid ":monitor" msgstr ":controllo" -#: port_group.cc:552 +#: port_group.cc:544 msgid "system:" msgstr "systema:" -#: port_group.cc:553 +#: port_group.cc:545 msgid "alsa_pcm" msgstr "" @@ -6565,17 +8161,17 @@ msgstr "Mandate/Uscite" msgid "Return/Input" msgstr "" -#: port_insert_ui.cc:71 port_insert_ui.cc:99 -msgid "Disconnected from audio engine" -msgstr "Disconnesso dal motore audio" - #: port_insert_ui.cc:86 msgid "No signal detected" msgstr "Nessun segnale rilevato" -#: port_insert_ui.cc:135 -msgid "Detecting ..." -msgstr "Rilevamento..." +#: port_insert_ui.cc:166 +msgid "Port Insert " +msgstr "" + +#: port_matrix.cc:331 port_matrix.cc:357 +msgid "Sources" +msgstr "" #: port_matrix.cc:332 port_matrix.cc:358 msgid "Destinations" @@ -6595,6 +8191,11 @@ msgstr "Rinomina '%s'..." msgid "Remove all" msgstr "Rimuovi tutto" +#: port_matrix.cc:492 port_matrix.cc:504 +#, c-format +msgid "%s all" +msgstr "" + #: port_matrix.cc:527 msgid "Rescan" msgstr "Aggiorna" @@ -6607,20 +8208,38 @@ msgstr "Mostra porte individuali" msgid "Flip" msgstr "" -#: port_matrix.cc:726 +#: port_matrix.cc:721 +msgid "" +"It is not possible to add a port here, as the first processor in the track " +"or buss cannot support the new configuration." +msgstr "" + +#: port_matrix.cc:724 msgid "Cannot add port" msgstr "" -#: port_matrix.cc:748 +#: port_matrix.cc:746 msgid "Port removal not allowed" msgstr "La rimozione delle porte non è consentita" -#: port_matrix.cc:966 +#: port_matrix.cc:747 +msgid "" +"This port cannot be removed.\n" +"Either the first plugin in the track or buss cannot accept\n" +"the new number of inputs or the last plugin has more outputs." +msgstr "" + +#: port_matrix.cc:964 #, c-format msgid "Remove '%s'" msgstr "Rimuovi '%s'" -#: port_matrix.cc:1047 +#: port_matrix.cc:979 +#, c-format +msgid "%s all from '%s'" +msgstr "" + +#: port_matrix.cc:1045 msgid "channel" msgstr "canali" @@ -6645,7 +8264,19 @@ msgid "" "Double-click to show generic GUI." msgstr "" -#: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 +#: processor_box.cc:372 +msgid "Show All Controls" +msgstr "" + +#: processor_box.cc:376 +msgid "Hide All Controls" +msgstr "" + +#: processor_box.cc:465 +msgid "on" +msgstr "" + +#: processor_box.cc:465 rc_option_editor.cc:1898 rc_option_editor.cc:1912 msgid "off" msgstr "spento" @@ -6655,7 +8286,7 @@ msgid "" "plugins,inserts,sends and more" msgstr "" -#: processor_box.cc:1197 processor_box.cc:1591 +#: processor_box.cc:1197 processor_box.cc:1618 msgid "Plugin Incompatibility" msgstr "" @@ -6671,6 +8302,18 @@ msgstr "" "\n" "Questo plugin ha:\n" +#: processor_box.cc:1209 +msgid "\t%1 MIDI input\n" +msgid_plural "\t%1 MIDI inputs\n" +msgstr[0] "" +msgstr[1] "" + +#: processor_box.cc:1213 +msgid "\t%1 audio input\n" +msgid_plural "\t%1 audio inputs\n" +msgstr[0] "" +msgstr[1] "" + #: processor_box.cc:1216 msgid "" "\n" @@ -6679,6 +8322,18 @@ msgstr "" "\n" "ma in corrispondenza del punto di inserimento ci sono:\n" +#: processor_box.cc:1219 +msgid "\t%1 MIDI channel\n" +msgid_plural "\t%1 MIDI channels\n" +msgstr[0] "" +msgstr[1] "" + +#: processor_box.cc:1223 +msgid "\t%1 audio channel\n" +msgid_plural "\t%1 audio channels\n" +msgstr[0] "" +msgstr[1] "" + #: processor_box.cc:1226 msgid "" "\n" @@ -6691,7 +8346,7 @@ msgstr "" msgid "Cannot set up new send: %1" msgstr "Impossibile prepare la nuova mandata: %1" -#: processor_box.cc:1594 +#: processor_box.cc:1621 msgid "" "You cannot reorder these plugins/sends/inserts\n" "in that way because the inputs and\n" @@ -6701,74 +8356,116 @@ msgstr "" "in questa maniera perché gli ingressi e le uscite\n" "non funzionerebbero correttamente." -#: processor_box.cc:1778 +#: processor_box.cc:1805 msgid "Rename Processor" msgstr "Rinomina processore" -#: processor_box.cc:1809 +#: processor_box.cc:1836 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "" "Esistono almeno 100 oggetti I/O con un nome simile a %1 - nome non cambiato" -#: processor_box.cc:1943 +#: processor_box.cc:1970 msgid "plugin insert constructor failed" msgstr "" -#: processor_box.cc:1954 +#: processor_box.cc:1981 msgid "" "Copying the set of processors on the clipboard failed,\n" "probably because the I/O configuration of the plugins\n" "could not match the configuration of this track." msgstr "" -#: processor_box.cc:2004 processor_box.cc:2029 +#: processor_box.cc:2027 +msgid "" +"Do you really want to remove all processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2031 processor_box.cc:2056 msgid "Yes, remove them all" msgstr "Si, rimuovi tutto" -#: processor_box.cc:2006 processor_box.cc:2031 +#: processor_box.cc:2033 processor_box.cc:2058 msgid "Remove processors" msgstr "Rimuovi processori" -#: processor_box.cc:2200 +#: processor_box.cc:2048 +msgid "" +"Do you really want to remove all pre-fader processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2051 +msgid "" +"Do you really want to remove all post-fader processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2239 msgid "New Plugin" msgstr "Nuovo plugin" -#: processor_box.cc:2203 +#: processor_box.cc:2242 msgid "New Insert" msgstr "Nuovo insert" -#: processor_box.cc:2210 +#: processor_box.cc:2245 +msgid "New External Send ..." +msgstr "" + +#: processor_box.cc:2249 msgid "New Aux Send ..." msgstr "Nuova mandata ausiliaria..." -#: processor_box.cc:2214 +#: processor_box.cc:2253 msgid "Clear (all)" msgstr "Pulisci (tutto)" -#: processor_box.cc:2216 +#: processor_box.cc:2255 msgid "Clear (pre-fader)" msgstr "Pulisci (pre-fader)" -#: processor_box.cc:2218 +#: processor_box.cc:2257 msgid "Clear (post-fader)" msgstr "Pulisci (post-fader)" -#: processor_box.cc:2244 +#: processor_box.cc:2283 msgid "Activate All" msgstr "Attiva tutto" -#: processor_box.cc:2248 +#: processor_box.cc:2285 +msgid "Deactivate All" +msgstr "" + +#: processor_box.cc:2287 msgid "A/B Plugins" msgstr "Plugin A/B" -#: processor_box.cc:2257 +#: processor_box.cc:2296 msgid "Edit with generic controls..." msgstr "" -#: processor_box.cc:2557 +#: processor_box.cc:2599 msgid "%1: %2 (by %3)" msgstr "%1: %2 (per %3)" +#: processor_box.cc:2601 +msgid "%2 (by %3)" +msgstr "" + +#: patch_change_dialog.cc:51 +msgid "Patch Change" +msgstr "" + +#: patch_change_dialog.cc:77 +msgid "Patch Bank" +msgstr "" + +#: patch_change_dialog.cc:84 +msgid "Patch" +msgstr "" + #: patch_change_dialog.cc:99 step_entry.cc:429 msgid "Program" msgstr "Programma" @@ -6797,110 +8494,130 @@ msgstr "Swing" msgid "Threshold (ticks)" msgstr "Soglia (ticks)" -#: rc_option_editor.cc:69 +#: quantize_dialog.cc:63 +msgid "Snap note start" +msgstr "" + +#: quantize_dialog.cc:64 +msgid "Snap note end" +msgstr "" + +#: rc_option_editor.cc:67 msgid "Click audio file:" msgstr "File audio (click):" -#: rc_option_editor.cc:72 rc_option_editor.cc:79 +#: rc_option_editor.cc:70 rc_option_editor.cc:77 msgid "Browse..." msgstr "Sfoglia..." -#: rc_option_editor.cc:76 +#: rc_option_editor.cc:74 msgid "Click emphasis audio file:" msgstr "Pecorso del file di enfasi click" -#: rc_option_editor.cc:108 +#: rc_option_editor.cc:106 msgid "Choose Click" msgstr "Scegli click" -#: rc_option_editor.cc:128 +#: rc_option_editor.cc:126 msgid "Choose Click Emphasis" msgstr "Usa come enfasi del click" -#: rc_option_editor.cc:160 +#: rc_option_editor.cc:158 msgid "Limit undo history to" msgstr "Limita lo storico degli annullamenti a" -#: rc_option_editor.cc:161 +#: rc_option_editor.cc:159 msgid "Save undo history of" msgstr "Salva lo storico degli annullamenti di" -#: rc_option_editor.cc:170 rc_option_editor.cc:177 +#: rc_option_editor.cc:168 rc_option_editor.cc:175 msgid "commands" msgstr "comandi" -#: rc_option_editor.cc:315 +#: rc_option_editor.cc:313 msgid "Edit using:" msgstr "Modifica usando:" -#: rc_option_editor.cc:321 rc_option_editor.cc:347 rc_option_editor.cc:374 +#: rc_option_editor.cc:319 rc_option_editor.cc:345 rc_option_editor.cc:372 msgid "+ button" msgstr "+ pulsante" -#: rc_option_editor.cc:341 +#: rc_option_editor.cc:339 msgid "Delete using:" msgstr "Elimina usando:" -#: rc_option_editor.cc:368 +#: rc_option_editor.cc:366 msgid "Insert note using:" msgstr "Inserisci nota usando:" -#: rc_option_editor.cc:411 +#: rc_option_editor.cc:393 +msgid "Ignore snap using:" +msgstr "" + +#: rc_option_editor.cc:409 msgid "Keyboard layout:" msgstr "Disposizione della tastiera:" -#: rc_option_editor.cc:534 +#: rc_option_editor.cc:532 msgid "Font scaling:" msgstr "Scala del carattere" -#: rc_option_editor.cc:586 +#: rc_option_editor.cc:584 msgid "Playback (seconds of buffering):" msgstr "Riproduzione (secondi di buffering)" -#: rc_option_editor.cc:599 +#: rc_option_editor.cc:597 msgid "Recording (seconds of buffering):" msgstr "Registrazione (secondi di buffering)" -#: rc_option_editor.cc:660 +#: rc_option_editor.cc:654 +msgid "Control Surface Protocol" +msgstr "" + +#: rc_option_editor.cc:658 msgid "Feedback" msgstr "" -#: rc_option_editor.cc:665 +#: rc_option_editor.cc:663 msgid "Double-click on a name to edit settings for an enabled protocol" msgstr "" "Doppio click su un nome per modificare le impostazioni di un protocollo " "abilitato" -#: rc_option_editor.cc:817 +#: rc_option_editor.cc:815 msgid "Show Video Export Info before export" msgstr "" -#: rc_option_editor.cc:818 +#: rc_option_editor.cc:816 msgid "Show Video Server Startup Dialog" msgstr "" -#: rc_option_editor.cc:819 +#: rc_option_editor.cc:817 msgid "Advanced Setup (remote video server)" msgstr "" -#: rc_option_editor.cc:827 +#: rc_option_editor.cc:825 msgid "" "When enabled you can speficify a custom video-server URL and docroot. " "- Do not enable this option unless you know what you are doing." msgstr "" -#: rc_option_editor.cc:829 +#: rc_option_editor.cc:827 msgid "Video Server URL:" msgstr "" -#: rc_option_editor.cc:834 +#: rc_option_editor.cc:832 msgid "" "Base URL of the video-server including http prefix. This is usually 'http://" "hostname.example.org:1554/' and defaults to 'http://localhost:1554/' when " "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:841 +#: rc_option_editor.cc:834 +msgid "Video Folder:" +msgstr "" + +#: rc_option_editor.cc:839 msgid "" "Local path to the video-server document-root. Only files below this " "directory will be accessible by the video-server. If the server run on a " @@ -6909,93 +8626,113 @@ msgid "" "monitor and file-browsing when opening/adding a video file." msgstr "" -#: rc_option_editor.cc:848 +#: rc_option_editor.cc:846 msgid "" "When enabled an information window with details is displayed before " "the video-export dialog." msgstr "" -#: rc_option_editor.cc:853 +#: rc_option_editor.cc:851 msgid "" "When enabled the video server is never launched automatically without " "confirmation" msgstr "" -#: rc_option_editor.cc:993 +#: rc_option_editor.cc:991 msgid "%1 Preferences" msgstr "Preferenze %1" -#: rc_option_editor.cc:1004 +#: rc_option_editor.cc:1002 msgid "DSP CPU Utilization" msgstr "Utilizzo DSP CPU " -#: rc_option_editor.cc:1008 +#: rc_option_editor.cc:1006 msgid "Signal processing uses" msgstr "Elaborazione del segnale utilizza" -#: rc_option_editor.cc:1013 +#: rc_option_editor.cc:1011 msgid "all but one processor" msgstr "tutti i processori tranne uno" -#: rc_option_editor.cc:1014 +#: rc_option_editor.cc:1012 msgid "all available processors" msgstr "tutti i processori disponibili" -#: rc_option_editor.cc:1017 +#: rc_option_editor.cc:1015 msgid "%1 processors" msgstr "%1 processori" -#: rc_option_editor.cc:1020 +#: rc_option_editor.cc:1018 msgid "This setting will only take effect when %1 is restarted." msgstr "" -#: rc_option_editor.cc:1040 +#: rc_option_editor.cc:1023 +msgid "Options|Undo" +msgstr "" + +#: rc_option_editor.cc:1030 +msgid "Verify removal of last capture" +msgstr "" + +#: rc_option_editor.cc:1038 msgid "Make periodic backups of the session file" msgstr "Fai periodicamente un backup del file di sessione" -#: rc_option_editor.cc:1050 +#: rc_option_editor.cc:1043 +msgid "Session Management" +msgstr "" + +#: rc_option_editor.cc:1048 msgid "Always copy imported files" msgstr "Copia sempre i file importati" -#: rc_option_editor.cc:1065 +#: rc_option_editor.cc:1055 +msgid "Default folder for new sessions:" +msgstr "" + +#: rc_option_editor.cc:1063 msgid "Maximum number of recent sessions" msgstr "" -#: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 +#: rc_option_editor.cc:1076 +msgid "Click gain level" +msgstr "" + +#: rc_option_editor.cc:1081 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "Automazione" -#: rc_option_editor.cc:1088 +#: rc_option_editor.cc:1086 msgid "Thinning factor (larger value => less data)" msgstr "" -#: rc_option_editor.cc:1097 +#: rc_option_editor.cc:1095 msgid "Automation sampling interval (milliseconds)" msgstr "" -#: rc_option_editor.cc:1109 +#: rc_option_editor.cc:1107 msgid "Keep record-enable engaged on stop" msgstr "Mantieni la registrazione abilitata dopo lo stop" -#: rc_option_editor.cc:1118 +#: rc_option_editor.cc:1116 msgid "Stop recording when an xrun occurs" msgstr "Ferma la registrazione in caso di xrun" -#: rc_option_editor.cc:1123 +#: rc_option_editor.cc:1121 msgid "" "When enabled %1 will stop recording if an over- or underrun is " "detected by the audio engine" msgstr "" -#: rc_option_editor.cc:1129 +#: rc_option_editor.cc:1127 msgid "Create markers where xruns occur" msgstr "Crea marcatori in corrispondenza di ogni xrun" -#: rc_option_editor.cc:1138 +#: rc_option_editor.cc:1136 msgid "Stop at the end of the session" msgstr "Fermati alla fine della sessione" -#: rc_option_editor.cc:1143 +#: rc_option_editor.cc:1141 msgid "" "When enabled if %1 is not recording, it will stop the " "transport when it reaches the current session end marker\n" @@ -7004,11 +8741,11 @@ msgid "" "all times" msgstr "" -#: rc_option_editor.cc:1151 -msgid "Do seamless looping (not possible when slaved to MTC, JACK etc)" +#: rc_option_editor.cc:1149 +msgid "Do seamless looping (not possible when slaved to MTC, LTC etc)" msgstr "" -#: rc_option_editor.cc:1156 +#: rc_option_editor.cc:1154 msgid "" "When enabled this will loop by reading ahead and wrapping around at " "the loop point, preventing any need to do a transport locate at the end of " @@ -7018,35 +8755,39 @@ msgid "" "loop when %1 reaches the end which will often cause a small click or delay" msgstr "" -#: rc_option_editor.cc:1164 +#: rc_option_editor.cc:1162 msgid "Disable per-track record disarm while rolling" msgstr "" -#: rc_option_editor.cc:1168 +#: rc_option_editor.cc:1166 msgid "" "When enabled this will prevent you from accidentally stopping " "specific tracks recording during a take" msgstr "" -#: rc_option_editor.cc:1173 +#: rc_option_editor.cc:1171 msgid "12dB gain reduction during fast-forward and fast-rewind" msgstr "Riduci il segnale di 12dB in avanzamento/riavvolgimento rapido" -#: rc_option_editor.cc:1177 +#: rc_option_editor.cc:1175 msgid "" "This will reduce the unpleasant increase in perceived volume that occurs " "when fast-forwarding or rewinding through some kinds of audio" msgstr "" -#: rc_option_editor.cc:1181 +#: rc_option_editor.cc:1179 msgid "Sync/Slave" msgstr "" -#: rc_option_editor.cc:1195 +#: rc_option_editor.cc:1183 +msgid "External timecode source" +msgstr "" + +#: rc_option_editor.cc:1193 msgid "Match session video frame rate to external timecode" msgstr "" -#: rc_option_editor.cc:1201 +#: rc_option_editor.cc:1199 msgid "" "This option controls the value of the video frame rate while chasing " "an external timecode source.\n" @@ -7060,17 +8801,21 @@ msgid "" "external timecode standard and the session standard." msgstr "" -#: rc_option_editor.cc:1217 +#: rc_option_editor.cc:1209 +msgid "External timecode is sync locked" +msgstr "" + +#: rc_option_editor.cc:1215 msgid "" "When enabled indicates that the selected external timecode source " "shares sync (Black & Burst, Wordclock, etc) with the audio interface." msgstr "" -#: rc_option_editor.cc:1224 +#: rc_option_editor.cc:1222 msgid "Lock to 29.9700 fps instead of 30000/1001" msgstr "" -#: rc_option_editor.cc:1230 +#: rc_option_editor.cc:1228 msgid "" "When enabled the external timecode source is assumed to use 29.97 fps " "instead of 30000/1001.\n" @@ -7083,104 +8828,140 @@ msgid "" "variant of using exactly 29.97 fps has zero timecode drift.\n" msgstr "" -#: rc_option_editor.cc:1244 +#: rc_option_editor.cc:1238 +msgid "LTC Reader" +msgstr "" + +#: rc_option_editor.cc:1242 msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1269 +#: rc_option_editor.cc:1255 +msgid "LTC Generator" +msgstr "" + +#: rc_option_editor.cc:1260 +msgid "Enable LTC generator" +msgstr "" + +#: rc_option_editor.cc:1267 msgid "send LTC while stopped" msgstr "" -#: rc_option_editor.cc:1275 +#: rc_option_editor.cc:1273 msgid "" "When enabled %1 will continue to send LTC information even when the " "transport (playhead) is not moving" msgstr "" -#: rc_option_editor.cc:1285 +#: rc_option_editor.cc:1279 +msgid "LTC generator level" +msgstr "" + +#: rc_option_editor.cc:1283 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " "is 0dBu ^= -18dbFS in an EBU calibrated system" msgstr "" -#: rc_option_editor.cc:1297 +#: rc_option_editor.cc:1295 msgid "Link selection of regions and tracks" msgstr "Collega la selezione delle tracce e delle regioni" -#: rc_option_editor.cc:1305 +#: rc_option_editor.cc:1303 msgid "Move relevant automation when audio regions are moved" msgstr "" "Sposta le automazioni rilevanti quando le regioni audio vengono spostate" -#: rc_option_editor.cc:1313 +#: rc_option_editor.cc:1311 msgid "Show meters on tracks in the editor" msgstr "Mostra i meter sulle tracce nell'editor" -#: rc_option_editor.cc:1321 +#: rc_option_editor.cc:1319 msgid "Display master-meter in the toolbar" msgstr "" -#: rc_option_editor.cc:1328 +#: rc_option_editor.cc:1326 msgid "Regions in active edit groups are edited together" msgstr "" -#: rc_option_editor.cc:1329 +#: rc_option_editor.cc:1327 msgid "whenever they overlap in time" msgstr "" -#: rc_option_editor.cc:1330 +#: rc_option_editor.cc:1328 msgid "only if they have identical length, position and origin" msgstr "" -#: rc_option_editor.cc:1340 +#: rc_option_editor.cc:1338 msgid "Make rubberband selection rectangle snap to the grid" msgstr "" -#: rc_option_editor.cc:1348 +#: rc_option_editor.cc:1346 msgid "Show waveforms in regions" msgstr "Mostra le onde nelle regioni" -#: rc_option_editor.cc:1357 +#: rc_option_editor.cc:1354 +msgid "Show gain envelopes in audio regions" +msgstr "" + +#: rc_option_editor.cc:1355 msgid "in all modes" msgstr "" -#: rc_option_editor.cc:1358 +#: rc_option_editor.cc:1356 msgid "only in region gain mode" msgstr "" -#: rc_option_editor.cc:1370 +#: rc_option_editor.cc:1363 +msgid "Waveform scale" +msgstr "" + +#: rc_option_editor.cc:1368 msgid "linear" msgstr "lineare" -#: rc_option_editor.cc:1371 +#: rc_option_editor.cc:1369 msgid "logarithmic" msgstr "logaritmico" -#: rc_option_editor.cc:1390 +#: rc_option_editor.cc:1375 +msgid "Waveform shape" +msgstr "" + +#: rc_option_editor.cc:1380 +msgid "traditional" +msgstr "" + +#: rc_option_editor.cc:1381 +msgid "rectified" +msgstr "" + +#: rc_option_editor.cc:1388 msgid "Show waveforms for audio while it is being recorded" msgstr "Mostra le onde durante la registrazione audio" -#: rc_option_editor.cc:1398 +#: rc_option_editor.cc:1396 msgid "Show zoom toolbar" msgstr "Mostra la barra dello zoom" -#: rc_option_editor.cc:1406 +#: rc_option_editor.cc:1404 msgid "Color regions using their track's color" msgstr "Colora le regioni utilizzando il colore della traccia di appartenenza" -#: rc_option_editor.cc:1414 +#: rc_option_editor.cc:1412 msgid "Update editor window during drags of the summary" msgstr "" -#: rc_option_editor.cc:1422 -msgid "Synchronise editor and mixer track order" -msgstr "Sincronizza l'ordine delle tracce tra editor e mixer" +#: rc_option_editor.cc:1420 +msgid "Synchronise editor and mixer selection" +msgstr "" -#: rc_option_editor.cc:1437 +#: rc_option_editor.cc:1427 msgid "Name new markers" msgstr "Assegna un nome ai nuovi marcatori" -#: rc_option_editor.cc:1443 +#: rc_option_editor.cc:1433 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " "be set as it is created.\n" @@ -7188,338 +8969,414 @@ msgid "" "You can always rename markers by right-clicking on them" msgstr "" -#: rc_option_editor.cc:1449 +#: rc_option_editor.cc:1439 msgid "Auto-scroll editor window when dragging near its edges" msgstr "" -#: rc_option_editor.cc:1456 +#: rc_option_editor.cc:1446 msgid "Buffering" msgstr "" -#: rc_option_editor.cc:1464 +#: rc_option_editor.cc:1454 msgid "Record monitoring handled by" msgstr "Controllo della registrazione da parte di" -#: rc_option_editor.cc:1476 +#: rc_option_editor.cc:1460 +msgid "via Audio Driver" +msgstr "" + +#: rc_option_editor.cc:1463 +msgid "ardour" +msgstr "" + +#: rc_option_editor.cc:1464 msgid "audio hardware" msgstr "hardware audio" -#: rc_option_editor.cc:1483 +#: rc_option_editor.cc:1471 msgid "Tape machine mode" msgstr "Modalità nastro" -#: rc_option_editor.cc:1488 +#: rc_option_editor.cc:1476 msgid "Connection of tracks and busses" msgstr "Connessione di tracce e bus" -#: rc_option_editor.cc:1493 +#: rc_option_editor.cc:1481 msgid "Auto-connect master/monitor busses" msgstr "Connetti automaticamente i bus master/monitor" -#: rc_option_editor.cc:1500 +#: rc_option_editor.cc:1488 msgid "Connect track inputs" msgstr "Connetti ingressi della traccia" -#: rc_option_editor.cc:1505 +#: rc_option_editor.cc:1493 msgid "automatically to physical inputs" msgstr "automaticamente agli ingressi fisici" -#: rc_option_editor.cc:1506 rc_option_editor.cc:1519 +#: rc_option_editor.cc:1494 rc_option_editor.cc:1507 msgid "manually" msgstr "manualmente" -#: rc_option_editor.cc:1512 +#: rc_option_editor.cc:1500 msgid "Connect track and bus outputs" msgstr "Connetti le uscite della traccia e del bus" -#: rc_option_editor.cc:1517 +#: rc_option_editor.cc:1505 msgid "automatically to physical outputs" msgstr "automaticamente alle uscite fisiche" -#: rc_option_editor.cc:1518 +#: rc_option_editor.cc:1506 msgid "automatically to master bus" msgstr "automaticamente al bus master" -#: rc_option_editor.cc:1528 +#: rc_option_editor.cc:1511 +msgid "Denormals" +msgstr "" + +#: rc_option_editor.cc:1516 msgid "Use DC bias to protect against denormals" msgstr "" -#: rc_option_editor.cc:1535 +#: rc_option_editor.cc:1523 msgid "Processor handling" msgstr "Gestione processore" -#: rc_option_editor.cc:1540 +#: rc_option_editor.cc:1528 msgid "no processor handling" msgstr "nessuna gestione processore" -#: rc_option_editor.cc:1545 +#: rc_option_editor.cc:1533 msgid "use FlushToZero" msgstr "" -#: rc_option_editor.cc:1549 +#: rc_option_editor.cc:1537 msgid "use DenormalsAreZero" msgstr "" -#: rc_option_editor.cc:1553 +#: rc_option_editor.cc:1541 msgid "use FlushToZero and DenormalsAreZero" msgstr "" -#: rc_option_editor.cc:1571 +#: rc_option_editor.cc:1551 +msgid "Silence plugins when the transport is stopped" +msgstr "" + +#: rc_option_editor.cc:1559 msgid "Make new plugins active" msgstr "Attiva i nuovi plugin" -#: rc_option_editor.cc:1579 +#: rc_option_editor.cc:1567 msgid "Enable automatic analysis of audio" msgstr "Abilita l'analisi automatica dell'audio" -#: rc_option_editor.cc:1587 +#: rc_option_editor.cc:1575 msgid "Replicate missing region channels" msgstr "" -#: rc_option_editor.cc:1594 rc_option_editor.cc:1609 rc_option_editor.cc:1621 -#: rc_option_editor.cc:1633 rc_option_editor.cc:1645 rc_option_editor.cc:1649 -#: rc_option_editor.cc:1657 rc_option_editor.cc:1665 rc_option_editor.cc:1673 -#: rc_option_editor.cc:1675 rc_option_editor.cc:1683 rc_option_editor.cc:1691 -#: rc_option_editor.cc:1699 +#: rc_option_editor.cc:1582 rc_option_editor.cc:1597 rc_option_editor.cc:1609 +#: rc_option_editor.cc:1621 rc_option_editor.cc:1633 rc_option_editor.cc:1637 +#: rc_option_editor.cc:1645 rc_option_editor.cc:1653 rc_option_editor.cc:1661 +#: rc_option_editor.cc:1663 rc_option_editor.cc:1671 rc_option_editor.cc:1679 +#: rc_option_editor.cc:1687 msgid "Solo / mute" msgstr "Solo / mute" -#: rc_option_editor.cc:1597 +#: rc_option_editor.cc:1585 msgid "Solo-in-place mute cut (dB)" msgstr "" -#: rc_option_editor.cc:1604 +#: rc_option_editor.cc:1592 msgid "Solo controls are Listen controls" msgstr "I controlli di solo sono controlli di ascolto" -#: rc_option_editor.cc:1625 +#: rc_option_editor.cc:1601 +msgid "Listen Position" +msgstr "" + +#: rc_option_editor.cc:1606 +msgid "after-fader (AFL)" +msgstr "" + +#: rc_option_editor.cc:1607 +msgid "pre-fader (PFL)" +msgstr "" + +#: rc_option_editor.cc:1613 msgid "PFL signals come from" msgstr "i segnali PFL provengono da" -#: rc_option_editor.cc:1631 +#: rc_option_editor.cc:1618 +msgid "before pre-fader processors" +msgstr "" + +#: rc_option_editor.cc:1619 msgid "pre-fader but after pre-fader processors" msgstr "" -#: rc_option_editor.cc:1637 +#: rc_option_editor.cc:1625 msgid "AFL signals come from" msgstr "I segnali AFL provengono da" -#: rc_option_editor.cc:1652 +#: rc_option_editor.cc:1630 +msgid "immediately post-fader" +msgstr "" + +#: rc_option_editor.cc:1631 +msgid "after post-fader processors (before pan)" +msgstr "" + +#: rc_option_editor.cc:1640 msgid "Exclusive solo" msgstr "Solo esclusivo" -#: rc_option_editor.cc:1660 +#: rc_option_editor.cc:1648 msgid "Show solo muting" msgstr "" -#: rc_option_editor.cc:1668 +#: rc_option_editor.cc:1656 msgid "Soloing overrides muting" msgstr "" -#: rc_option_editor.cc:1673 +#: rc_option_editor.cc:1661 msgid "Default track / bus muting options" msgstr "Opzioni di mute base per Tracce/Bus" -#: rc_option_editor.cc:1678 +#: rc_option_editor.cc:1666 msgid "Mute affects pre-fader sends" msgstr "Mute agisce sulle mandate pre-fader" -#: rc_option_editor.cc:1686 +#: rc_option_editor.cc:1674 msgid "Mute affects post-fader sends" msgstr "Mute agisce sulle mandate post-fader" -#: rc_option_editor.cc:1694 +#: rc_option_editor.cc:1682 msgid "Mute affects control outputs" msgstr "Mute agisce sulle uscite" -#: rc_option_editor.cc:1702 +#: rc_option_editor.cc:1690 msgid "Mute affects main outputs" msgstr "Mute agisce sulle uscite principali" -#: rc_option_editor.cc:1718 +#: rc_option_editor.cc:1706 msgid "Send MIDI Time Code" msgstr "" -#: rc_option_editor.cc:1726 +#: rc_option_editor.cc:1714 msgid "Percentage either side of normal transport speed to transmit MTC" msgstr "" -#: rc_option_editor.cc:1735 +#: rc_option_editor.cc:1723 msgid "Obey MIDI Machine Control commands" msgstr "" -#: rc_option_editor.cc:1743 +#: rc_option_editor.cc:1731 msgid "Send MIDI Machine Control commands" msgstr "" -#: rc_option_editor.cc:1759 +#: rc_option_editor.cc:1739 +msgid "Send MIDI control feedback" +msgstr "" + +#: rc_option_editor.cc:1747 msgid "Inbound MMC device ID" msgstr "" -#: rc_option_editor.cc:1768 +#: rc_option_editor.cc:1756 msgid "Outbound MMC device ID" msgstr "" -#: rc_option_editor.cc:1777 +#: rc_option_editor.cc:1765 msgid "Initial program change" msgstr "" -#: rc_option_editor.cc:1786 +#: rc_option_editor.cc:1774 msgid "Display first MIDI bank/program as 0" msgstr "" -#: rc_option_editor.cc:1794 +#: rc_option_editor.cc:1782 msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "" -#: rc_option_editor.cc:1813 +#: rc_option_editor.cc:1790 +msgid "Sound MIDI notes as they are selected" +msgstr "" + +#: rc_option_editor.cc:1798 rc_option_editor.cc:1808 rc_option_editor.cc:1810 +msgid "User interaction" +msgstr "" + +#: rc_option_editor.cc:1801 msgid "" "Use translations of %1 messages\n" " (requires a restart of %1 to take effect)\n" " (if available for your language preferences)" msgstr "" -#: rc_option_editor.cc:1820 +#: rc_option_editor.cc:1808 msgid "Keyboard" msgstr "Tastiera" -#: rc_option_editor.cc:1830 +#: rc_option_editor.cc:1818 msgid "Control surface remote ID" msgstr "ID della piattaforma di controllo" -#: rc_option_editor.cc:1835 +#: rc_option_editor.cc:1823 msgid "assigned by user" msgstr "assegnato dall'utente" -#: rc_option_editor.cc:1836 +#: rc_option_editor.cc:1824 msgid "follows order of mixer" msgstr "segue l'ordine del mixer" -#: rc_option_editor.cc:1837 -msgid "follows order of editor" -msgstr "segue l'ordine dell'editor" +#: rc_option_editor.cc:1833 rc_option_editor.cc:1841 rc_option_editor.cc:1851 +#: rc_option_editor.cc:1872 rc_option_editor.cc:1881 rc_option_editor.cc:1889 +#: rc_option_editor.cc:1903 rc_option_editor.cc:1922 rc_option_editor.cc:1938 +#: rc_option_editor.cc:1954 rc_option_editor.cc:1968 rc_option_editor.cc:1982 +#: rc_option_editor.cc:1984 +msgid "Preferences|GUI" +msgstr "" -#: rc_option_editor.cc:1849 +#: rc_option_editor.cc:1836 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "" -#: rc_option_editor.cc:1857 +#: rc_option_editor.cc:1844 msgid "Show tooltips if mouse hovers over a control" msgstr "" -#: rc_option_editor.cc:1867 +#: rc_option_editor.cc:1854 msgid "GUI" msgstr "" -#: rc_option_editor.cc:1870 +#: rc_option_editor.cc:1857 msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" -#: rc_option_editor.cc:1912 +#: rc_option_editor.cc:1874 +msgid "Mixer Strip" +msgstr "" + +#: rc_option_editor.cc:1884 +msgid "Use narrow strips in the mixer by default" +msgstr "" + +#: rc_option_editor.cc:1893 +msgid "Peak hold time" +msgstr "" + +#: rc_option_editor.cc:1899 msgid "short" msgstr "breve" -#: rc_option_editor.cc:1913 +#: rc_option_editor.cc:1900 msgid "medium" msgstr "medio" -#: rc_option_editor.cc:1914 +#: rc_option_editor.cc:1901 msgid "long" msgstr "lungo" -#: rc_option_editor.cc:1926 +#: rc_option_editor.cc:1907 +msgid "DPM fall-off" +msgstr "" + +#: rc_option_editor.cc:1913 msgid "slowest [6.6dB/sec]" msgstr "" -#: rc_option_editor.cc:1927 +#: rc_option_editor.cc:1914 msgid "slow [8.6dB/sec] (BBC PPM, EBU PPM)" msgstr "" -#: rc_option_editor.cc:1928 +#: rc_option_editor.cc:1915 msgid "slowish [12.0dB/sec] (DIN)" msgstr "" -#: rc_option_editor.cc:1929 +#: rc_option_editor.cc:1916 msgid "moderate [13.3dB/sec] (EBU Digi PPM, IRT Digi PPM)" msgstr "" -#: rc_option_editor.cc:1930 +#: rc_option_editor.cc:1917 msgid "medium [20dB/sec]" msgstr "" -#: rc_option_editor.cc:1931 +#: rc_option_editor.cc:1918 msgid "fast [32dB/sec]" msgstr "" -#: rc_option_editor.cc:1932 +#: rc_option_editor.cc:1919 msgid "faster [46dB/sec]" msgstr "" -#: rc_option_editor.cc:1933 +#: rc_option_editor.cc:1920 msgid "fastest [70dB/sec]" msgstr "" -#: rc_option_editor.cc:1939 +#: rc_option_editor.cc:1926 msgid "Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1944 rc_option_editor.cc:1960 +#: rc_option_editor.cc:1931 rc_option_editor.cc:1947 msgid "-24dBFS (SMPTE US: 4dBu = -20dBFS)" msgstr "" -#: rc_option_editor.cc:1945 rc_option_editor.cc:1961 +#: rc_option_editor.cc:1932 rc_option_editor.cc:1948 msgid "-20dBFS (SMPTE RP.0155)" msgstr "" -#: rc_option_editor.cc:1946 rc_option_editor.cc:1962 +#: rc_option_editor.cc:1933 rc_option_editor.cc:1949 msgid "-18dBFS (EBU, BBC)" msgstr "" -#: rc_option_editor.cc:1947 rc_option_editor.cc:1963 +#: rc_option_editor.cc:1934 rc_option_editor.cc:1950 msgid "-15dBFS (DIN)" msgstr "" -#: rc_option_editor.cc:1949 +#: rc_option_editor.cc:1936 msgid "" "Configure meter-marks and color-knee point for dBFS scale DPM, set reference " "level for IEC1/Nordic, IEC2 PPM and VU meter." msgstr "" -#: rc_option_editor.cc:1955 +#: rc_option_editor.cc:1942 msgid "IEC1/DIN Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1965 +#: rc_option_editor.cc:1952 msgid "Reference level for IEC1/DIN meter." msgstr "" -#: rc_option_editor.cc:1971 +#: rc_option_editor.cc:1958 msgid "VU Meter standard" msgstr "" -#: rc_option_editor.cc:1976 +#: rc_option_editor.cc:1963 msgid "0VU = -2dBu (France)" msgstr "" -#: rc_option_editor.cc:1977 +#: rc_option_editor.cc:1964 msgid "0VU = 0dBu (North America, Australia)" msgstr "" -#: rc_option_editor.cc:1978 +#: rc_option_editor.cc:1965 msgid "0VU = +4dBu (standard)" msgstr "" -#: rc_option_editor.cc:1979 +#: rc_option_editor.cc:1966 msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1993 +#: rc_option_editor.cc:1972 +msgid "Peak threshold [dBFS]" +msgstr "" + +#: rc_option_editor.cc:1980 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " "indicator will flash red." msgstr "" -#: rc_option_editor.cc:2000 +#: rc_option_editor.cc:1987 msgid "LED meter style" msgstr "" @@ -7563,10 +9420,26 @@ msgstr "Sorgente:" msgid "Region '%1'" msgstr "Regione '%1'" +#: region_editor.cc:273 +msgid "change region start position" +msgstr "" + +#: region_editor.cc:289 +msgid "change region end position" +msgstr "" + #: region_editor.cc:309 msgid "change region length" msgstr "cambia la durata della regione" +#: region_editor.cc:403 region_editor.cc:415 +msgid "change region sync point" +msgstr "" + +#: region_layering_order_editor.cc:41 +msgid "RegionLayeringOrderEditor" +msgstr "" + #: region_layering_order_editor.cc:54 msgid "Region Name" msgstr "Nome regione" @@ -7655,6 +9528,14 @@ msgstr "" msgid "Split region" msgstr "Separa la regione" +#: rhythm_ferret.cc:67 +msgid "Snap regions" +msgstr "" + +#: rhythm_ferret.cc:68 +msgid "Conform regions" +msgstr "" + #: rhythm_ferret.cc:73 msgid "Rhythm Ferret" msgstr "" @@ -7663,6 +9544,10 @@ msgstr "" msgid "Analyze" msgstr "Analizza" +#: rhythm_ferret.cc:114 +msgid "Detection function" +msgstr "" + #: rhythm_ferret.cc:118 msgid "Trigger gap" msgstr "" @@ -7699,6 +9584,10 @@ msgstr "" msgid "Relative" msgstr "Relativo" +#: route_group_dialog.cc:42 +msgid "Muting" +msgstr "" + #: route_group_dialog.cc:43 msgid "Soloing" msgstr "" @@ -7711,10 +9600,22 @@ msgstr "Attiva registrazione" msgid "Selection" msgstr "Selezione" +#: route_group_dialog.cc:46 +msgid "Active state" +msgstr "" + #: route_group_dialog.cc:47 route_group_dialog.cc:76 theme_manager.cc:71 msgid "Color" msgstr "Colore" +#: route_group_dialog.cc:53 +msgid "RouteGroupDialog" +msgstr "" + +#: route_group_dialog.cc:92 +msgid "Sharing" +msgstr "" + #: route_group_dialog.cc:182 msgid "" "A route group of this name already exists. Please use a different name." @@ -7773,6 +9674,14 @@ msgstr "Registrazione (clicca col destro per la modifica passo passo)" msgid "Record" msgstr "Registra" +#: route_time_axis.cc:210 +msgid "Route Group" +msgstr "" + +#: route_time_axis.cc:213 +msgid "MIDI Controllers and Automation" +msgstr "" + #: route_time_axis.cc:390 msgid "Show All Automation" msgstr "Mostra tutte le automazioni" @@ -7785,6 +9694,10 @@ msgstr "Mostra le automazioni esistenti" msgid "Hide All Automation" msgstr "Nascondi tutte le automazioni" +#: route_time_axis.cc:405 +msgid "Processor automation" +msgstr "" + #: route_time_axis.cc:424 msgid "Color..." msgstr "Colore..." @@ -7805,6 +9718,26 @@ msgstr "Livelli" msgid "Automatic (based on I/O connections)" msgstr "Automatico (basato sulle connessioni I/O)" +#: route_time_axis.cc:573 +msgid "(Currently: Existing Material)" +msgstr "" + +#: route_time_axis.cc:576 +msgid "(Currently: Capture Time)" +msgstr "" + +#: route_time_axis.cc:584 +msgid "Align With Existing Material" +msgstr "" + +#: route_time_axis.cc:589 +msgid "Align With Capture Time" +msgstr "" + +#: route_time_axis.cc:594 +msgid "Alignment" +msgstr "" + #: route_time_axis.cc:629 msgid "Normal Mode" msgstr "Normale" @@ -7813,6 +9746,10 @@ msgstr "Normale" msgid "Tape Mode" msgstr "Nastro" +#: route_time_axis.cc:641 +msgid "Non-Layered Mode" +msgstr "" + #: route_time_axis.cc:654 route_time_axis.cc:1601 msgid "Playlist" msgstr "Scaletta" @@ -7846,6 +9783,14 @@ msgstr "" msgid "New Copy..." msgstr "Nuova copia..." +#: route_time_axis.cc:1494 +msgid "New Take" +msgstr "" + +#: route_time_axis.cc:1495 +msgid "Copy Take" +msgstr "" + #: route_time_axis.cc:1500 msgid "Clear Current" msgstr "Pulisci Corrente" @@ -7870,6 +9815,14 @@ msgstr "Rimuovi \"%1\"" msgid "programming error: underlay reference pointer pairs are inconsistent!" msgstr "" +#: route_time_axis.cc:2408 +msgid "After-fade listen (AFL)" +msgstr "" + +#: route_time_axis.cc:2412 +msgid "Pre-fade listen (PFL)" +msgstr "" + #: route_time_axis.cc:2416 msgid "s" msgstr "" @@ -7894,18 +9847,58 @@ msgstr "Abilita la registrazione" msgid "make mixer strips show sends to this bus" msgstr "" +#: route_ui.cc:138 +msgid "Monitor input" +msgstr "" + +#: route_ui.cc:144 +msgid "Monitor playback" +msgstr "" + #: route_ui.cc:591 msgid "Not connected to JACK - cannot engage record" msgstr "" +#: route_ui.cc:786 +msgid "Step Entry" +msgstr "" + #: route_ui.cc:859 msgid "Assign all tracks (prefader)" msgstr "" +#: route_ui.cc:863 +msgid "Assign all tracks and buses (prefader)" +msgstr "" + #: route_ui.cc:867 msgid "Assign all tracks (postfader)" msgstr "" +#: route_ui.cc:871 +msgid "Assign all tracks and buses (postfader)" +msgstr "" + +#: route_ui.cc:875 +msgid "Assign selected tracks (prefader)" +msgstr "" + +#: route_ui.cc:879 +msgid "Assign selected tracks and buses (prefader)" +msgstr "" + +#: route_ui.cc:882 +msgid "Assign selected tracks (postfader)" +msgstr "" + +#: route_ui.cc:886 +msgid "Assign selected tracks and buses (postfader)" +msgstr "" + +#: route_ui.cc:889 +msgid "Copy track/bus gains to sends" +msgstr "" + #: route_ui.cc:890 msgid "Set sends gain to -inf" msgstr "Imposta il volume delle manda su -inf" @@ -7978,6 +9971,10 @@ msgid "" "Do you want to use this new name?" msgstr "" +#: route_ui.cc:1520 +msgid "Use the new name" +msgstr "" + #: route_ui.cc:1521 msgid "Re-edit the name" msgstr "" @@ -8006,6 +10003,14 @@ msgstr "Salva come modello" msgid "Template name:" msgstr "Nome del modello:" +#: route_ui.cc:1788 +msgid "Remote Control ID" +msgstr "" + +#: route_ui.cc:1798 +msgid "Remote control ID:" +msgstr "" + #: route_ui.cc:1812 msgid "" "The remote control ID of %1 is: %2\n" @@ -8014,24 +10019,33 @@ msgid "" "The remote control ID of %3 cannot be changed." msgstr "" -#: route_ui.cc:1818 -msgid "" -"The remote control ID of %6 is: %3\n" -"\n" -"\n" -"Remote Control IDs are currently determined by track/bus ordering in %1\n" -"\n" -"%4Use the User Interaction tab of the Preferences window if you want to " -"change this%5" +#: route_ui.cc:1816 +msgid "the master bus" msgstr "" -#: route_ui.cc:1876 +#: route_ui.cc:1816 +msgid "the monitor bus" +msgstr "" + +#: route_ui.cc:1818 +msgid "" +"The remote control ID of %5 is: %2\n" +"\n" +"\n" +"Remote Control IDs are currently determined by track/bus ordering in " +"Ardour.\n" +"\n" +"%3Use the User Interaction tab of the Preferences window if you want to " +"change this%4" +msgstr "" + +#: route_ui.cc:1875 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " "to show menu." msgstr "" -#: route_ui.cc:1878 +#: route_ui.cc:1877 msgid "Click to show a menu of channels for inversion (phase reverse)" msgstr "" @@ -8039,10 +10053,130 @@ msgstr "" msgid "Select folder to search for media" msgstr "Seleziona una cartella per cercare i media" +#: search_path_option.cc:44 +msgid "Click to add a new location" +msgstr "" + #: search_path_option.cc:51 msgid "the session folder" msgstr "la cartella di sessione" +#: send_ui.cc:126 +msgid "Send " +msgstr "" + +#: session_dialog.cc:66 +msgid "Session Setup" +msgstr "" + +#: session_dialog.cc:71 +msgid "Advanced options ..." +msgstr "" + +#: session_dialog.cc:267 +msgid "New Session" +msgstr "Nuova sessione" + +#: session_dialog.cc:305 +msgid "Check the website for more..." +msgstr "" + +#: session_dialog.cc:308 +msgid "Click to open the program website in your web browser" +msgstr "" + +#: session_dialog.cc:328 +msgid "Sample Rate" +msgstr "" + +#: session_dialog.cc:329 +msgid "Disk Format" +msgstr "" + +#: session_dialog.cc:347 +msgid "Select session file" +msgstr "Seleziona un file sessione" + +#: session_dialog.cc:362 +msgid "Other Sessions" +msgstr "" + +#: session_dialog.cc:388 +msgid "Open" +msgstr "" + +#: session_dialog.cc:455 +msgid "Session name:" +msgstr "Nome della sessione:" + +#: session_dialog.cc:477 +msgid "Create session folder in:" +msgstr "" + +#: session_dialog.cc:500 +msgid "Select folder for session" +msgstr "Seleziona una cartella per la sessione" + +#: session_dialog.cc:529 +msgid "Use this template" +msgstr "Usa questo modello" + +#: session_dialog.cc:532 +msgid "no template" +msgstr "nessun modello" + +#: session_dialog.cc:664 session_dialog.cc:696 +msgid "32 bit float" +msgstr "" + +#: session_dialog.cc:667 session_dialog.cc:699 +msgid "24 bit" +msgstr "" + +#: session_dialog.cc:670 session_dialog.cc:702 +msgid "16 bit" +msgstr "" + +#: session_dialog.cc:741 session_dialog.cc:742 session_dialog.cc:743 +msgid "channels" +msgstr "canali" + +#: session_dialog.cc:757 +msgid "Busses" +msgstr "Bus" + +#: session_dialog.cc:758 +msgid "Inputs" +msgstr "Ingressi" + +#: session_dialog.cc:759 +msgid "Outputs" +msgstr "Uscite" + +#: session_dialog.cc:767 +msgid "Create master bus" +msgstr "Crea un master bus" + +#: session_dialog.cc:777 +msgid "Automatically connect to physical inputs" +msgstr "" + +#: session_dialog.cc:784 session_dialog.cc:843 +msgid "Use only" +msgstr "Usa soltanto" + +#: session_dialog.cc:837 +msgid "Automatically connect outputs" +msgstr "Connetti automaticamente le uscite" + +#: session_dialog.cc:859 +msgid "... to master bus" +msgstr "... al bus Master" + +#: session_dialog.cc:869 +msgid "... to physical outputs" +msgstr "... alle uscite fisiche." + #: session_import_dialog.cc:64 msgid "Import from Session" msgstr "Importa da una sessione" @@ -8077,6 +10211,10 @@ msgstr "Campo" msgid "Values (current value on top)" msgstr "Valori" +#: session_metadata_dialog.cc:520 +msgid "User" +msgstr "" + #: session_metadata_dialog.cc:528 msgid "Email" msgstr "" @@ -8085,6 +10223,10 @@ msgstr "" msgid "Web" msgstr "" +#: session_metadata_dialog.cc:534 +msgid "Organization" +msgstr "" + #: session_metadata_dialog.cc:537 msgid "Country" msgstr "" @@ -8101,6 +10243,10 @@ msgstr "Numero traccia" msgid "Subtitle" msgstr "Sottotitolo" +#: session_metadata_dialog.cc:560 +msgid "Grouping" +msgstr "" + #: session_metadata_dialog.cc:563 msgid "Artist" msgstr "Artista" @@ -8145,6 +10291,10 @@ msgstr "" msgid "Total Discs" msgstr "" +#: session_metadata_dialog.cc:606 +msgid "Compilation" +msgstr "" + #: session_metadata_dialog.cc:609 msgid "ISRC" msgstr "" @@ -8169,6 +10319,10 @@ msgstr "" msgid "Remixer" msgstr "" +#: session_metadata_dialog.cc:634 +msgid "Arranger" +msgstr "" + #: session_metadata_dialog.cc:637 msgid "Engineer" msgstr "Ingegnere" @@ -8181,6 +10335,10 @@ msgstr "Produttore" msgid "DJ Mixer" msgstr "" +#: session_metadata_dialog.cc:646 +msgid "Metadata|Mixer" +msgstr "" + #: session_metadata_dialog.cc:654 msgid "School" msgstr "" @@ -8205,6 +10363,10 @@ msgstr "Importa i metadati di una sessione" msgid "Choose session to import metadata from" msgstr "Scegli la sessione da cui importare i metadati" +#: session_metadata_dialog.cc:760 +msgid "This session file could not be read!" +msgstr "" + #: session_metadata_dialog.cc:770 msgid "" "The session file didn't contain metadata!\n" @@ -8221,6 +10383,10 @@ msgstr "Importa tutto da:" msgid "Session Properties" msgstr "Proprietà della sessione" +#: session_option_editor.cc:41 +msgid "Timecode Settings" +msgstr "" + #: session_option_editor.cc:45 msgid "Timecode frames-per-second" msgstr "" @@ -8316,10 +10482,22 @@ msgid "" "Apply Pull-Up/Down to Video Timeline and Video Monitor (Unless in JACK-sync)." msgstr "" +#: session_option_editor.cc:96 +msgid "Ext Timecode Offsets" +msgstr "" + +#: session_option_editor.cc:100 +msgid "Slave Timecode offset" +msgstr "" + #: session_option_editor.cc:107 msgid "The specified offset is added to the received timecode (MTC or LTC)." msgstr "" +#: session_option_editor.cc:113 +msgid "Timecode Generator offset" +msgstr "" + #: session_option_editor.cc:120 msgid "" "Specify an offset which is added to the generated timecode (so far only LTC)." @@ -8334,6 +10512,10 @@ msgid "" "%1 is JACK Time Master (provides Bar|Beat|Tick and other information to JACK)" msgstr "" +#: session_option_editor.cc:137 +msgid "Default crossfade type" +msgstr "" + #: session_option_editor.cc:142 msgid "Constant power (-3dB) crossfade" msgstr "" @@ -8364,6 +10546,14 @@ msgstr "Visualizza dissolvenze della regione" msgid "Media" msgstr "" +#: session_option_editor.cc:172 +msgid "Audio file format" +msgstr "" + +#: session_option_editor.cc:176 +msgid "Sample format" +msgstr "" + #: session_option_editor.cc:181 msgid "32-bit floating point" msgstr "32-bit virgola mobile" @@ -8376,6 +10566,10 @@ msgstr "24-bit intero" msgid "16-bit integer" msgstr "16-bit intero" +#: session_option_editor.cc:189 +msgid "File type" +msgstr "" + #: session_option_editor.cc:194 msgid "Broadcast WAVE" msgstr "" @@ -8388,6 +10582,10 @@ msgstr "" msgid "WAVE-64" msgstr "" +#: session_option_editor.cc:201 +msgid "File locations" +msgstr "" + #: session_option_editor.cc:203 msgid "Search for audio files in:" msgstr "Cerca file audio in:" @@ -8401,6 +10599,10 @@ msgid "" "Track Input Monitoring automatically follows transport state (\"auto-input\")" msgstr "" +#: session_option_editor.cc:227 +msgid "Use monitor section in this session" +msgstr "" + #: session_option_editor.cc:238 msgid "MIDI region copies are independent" msgstr "" @@ -8435,18 +10637,70 @@ msgstr "" msgid "replace both overlapping notes with a single note" msgstr "" +#: session_option_editor.cc:259 +msgid "Glue to bars and beats" +msgstr "" + +#: session_option_editor.cc:263 +msgid "Glue new markers to bars and beats" +msgstr "" + +#: session_option_editor.cc:270 +msgid "Glue new regions to bars and beats" +msgstr "" + +#: session_option_editor.cc:275 session_option_editor.cc:277 +#: session_option_editor.cc:284 session_option_editor.cc:291 +#: session_option_editor.cc:298 session_option_editor.cc:300 +#: session_option_editor.cc:307 session_option_editor.cc:314 +#: session_option_editor.cc:321 session_option_editor.cc:323 +msgid "Meterbridge" +msgstr "" + #: session_option_editor.cc:275 msgid "Route Display" msgstr "" +#: session_option_editor.cc:279 +msgid "Show Midi Tracks" +msgstr "" + +#: session_option_editor.cc:286 +msgid "Show Busses" +msgstr "" + +#: session_option_editor.cc:293 +msgid "Include Master Bus" +msgstr "" + #: session_option_editor.cc:298 msgid "Button Area" msgstr "" +#: session_option_editor.cc:302 +msgid "Rec-enable Button" +msgstr "" + +#: session_option_editor.cc:309 +msgid "Mute Button" +msgstr "" + +#: session_option_editor.cc:316 +msgid "Solo Button" +msgstr "" + #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" +#: session_option_editor.cc:325 +msgid "Track Name" +msgstr "" + +#: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 +msgid "as new tracks" +msgstr "" + #: sfdb_ui.cc:88 sfdb_ui.cc:108 msgid "to selected tracks" msgstr "nelle tracce selezionate" @@ -8463,10 +10717,18 @@ msgstr "come nuove tracce nastro" msgid "programming error: unknown import mode string %1" msgstr "Errore di programmazione: modalità di importazione %1 sconosciuta" +#: sfdb_ui.cc:123 +msgid "Auto-play" +msgstr "" + #: sfdb_ui.cc:129 sfdb_ui.cc:236 msgid "Sound File Information" msgstr "Info sul file audio" +#: sfdb_ui.cc:141 +msgid "Timestamp:" +msgstr "" + #: sfdb_ui.cc:143 msgid "Format:" msgstr "Formato:" @@ -8495,6 +10757,10 @@ msgstr "" msgid "Search" msgstr "" +#: sfdb_ui.cc:449 +msgid "Audio and MIDI files" +msgstr "" + #: sfdb_ui.cc:452 msgid "Audio files" msgstr "File audio" @@ -8519,6 +10785,22 @@ msgstr "Percorsi" msgid "Search Tags" msgstr "" +#: sfdb_ui.cc:531 +msgid "Sort:" +msgstr "" + +#: sfdb_ui.cc:539 +msgid "Longest" +msgstr "" + +#: sfdb_ui.cc:540 +msgid "Shortest" +msgstr "" + +#: sfdb_ui.cc:541 +msgid "Newest" +msgstr "" + #: sfdb_ui.cc:542 msgid "Oldest" msgstr "" @@ -8527,6 +10809,10 @@ msgstr "" msgid "Most downloaded" msgstr "" +#: sfdb_ui.cc:544 +msgid "Least downloaded" +msgstr "" + #: sfdb_ui.cc:545 msgid "Highest rated" msgstr "" @@ -8543,6 +10829,26 @@ msgstr "" msgid "Similar" msgstr "" +#: sfdb_ui.cc:567 +msgid "ID" +msgstr "" + +#: sfdb_ui.cc:568 add_video_dialog.cc:84 +msgid "Filename" +msgstr "" + +#: sfdb_ui.cc:570 +msgid "Duration" +msgstr "" + +#: sfdb_ui.cc:571 +msgid "Size" +msgstr "" + +#: sfdb_ui.cc:572 +msgid "Samplerate" +msgstr "" + #: sfdb_ui.cc:573 msgid "License" msgstr "" @@ -8601,6 +10907,10 @@ msgstr "una traccia per file" msgid "one track per channel" msgstr "una traccia per canale" +#: sfdb_ui.cc:1309 sfdb_ui.cc:1659 sfdb_ui.cc:1676 +msgid "sequence files" +msgstr "" + #: sfdb_ui.cc:1312 sfdb_ui.cc:1664 msgid "all files in one track" msgstr "tutti i file in una traccia" @@ -8633,6 +10943,14 @@ msgstr "" msgid "Copy files to session" msgstr "Copia i file nella sessione" +#: sfdb_ui.cc:1551 sfdb_ui.cc:1714 +msgid "file timestamp" +msgstr "" + +#: sfdb_ui.cc:1552 sfdb_ui.cc:1716 +msgid "edit point" +msgstr "" + #: sfdb_ui.cc:1553 sfdb_ui.cc:1718 msgid "playhead" msgstr "testina" @@ -8645,6 +10963,18 @@ msgstr "inizio sessione" msgid "Add files as ..." msgstr "" +#: sfdb_ui.cc:1581 +msgid "Insert at" +msgstr "" + +#: sfdb_ui.cc:1594 +msgid "Mapping" +msgstr "" + +#: sfdb_ui.cc:1612 +msgid "Conversion quality" +msgstr "" + #: sfdb_ui.cc:1624 sfdb_ui.cc:1730 msgid "Best" msgstr "Migliore" @@ -8685,6 +11015,20 @@ msgstr "" msgid "Maximum speed" msgstr "Velocità massima" +#: shuttle_control.cc:561 +msgid "Playing" +msgstr "" + +#: shuttle_control.cc:576 +#, c-format +msgid "<<< %+d semitones" +msgstr "" + +#: shuttle_control.cc:578 +#, c-format +msgid ">>> %+d semitones" +msgstr "" + #: shuttle_control.cc:583 msgid "Stopped" msgstr "Fermato" @@ -8693,6 +11037,10 @@ msgstr "Fermato" msgid "%1 loading ..." msgstr "%1 si sta avviando..." +#: speaker_dialog.cc:40 +msgid "Add Speaker" +msgstr "" + #: speaker_dialog.cc:41 msgid "Remove Speaker" msgstr "Rimuovi altoparlante" @@ -8701,27 +11049,64 @@ msgstr "Rimuovi altoparlante" msgid "Azimuth:" msgstr "" -#: startup.cc:73 -msgid "Open an existing session" -msgstr "Apri una sessione" +#: startup.cc:72 +msgid "" +"Use an external mixer or the hardware mixer of your audio interface.\n" +"%1 will play NO role in monitoring" +msgstr "" -#: startup.cc:79 -msgid "I'd like more options for this session" -msgstr "Vorrei più opzioni per questa sessione" +#: startup.cc:74 +msgid "Ask %1 to play back material as it is being recorded" +msgstr "" -#: startup.cc:324 -msgid "Audio / MIDI Setup" -msgstr "Impostazioni Audio/MIDI" +#: startup.cc:143 +msgid "" +"Welcome to this BETA release of Ardour %1\n" +"\n" +"Ardour %1 has been released for Linux but because of the lack of testers,\n" +"it is still at the beta stage on OS X. So, a few guidelines:\n" +"\n" +"1) Please do NOT use this software with the expectation that it is " +"stable or reliable\n" +" though it may be so, depending on your workflow.\n" +"2) Please do NOT use the forums at ardour.org to report issues.\n" +"3) Please DO use the bugtracker at http://tracker.ardour.org/ to " +"report issues\n" +" making sure to note the product version number as %1-beta.\n" +"4) Please DO use the ardour-users mailing list to discuss ideas and " +"pass on comments.\n" +"5) Please DO join us on IRC for real time discussions about ardour3. " +"You\n" +" can get there directly from Ardour via the Help->Chat menu option.\n" +"\n" +"Full information on all the above can be found on the support page at\n" +"\n" +" http://ardour.org/support\n" +msgstr "" -#: startup.cc:362 +#: startup.cc:167 +msgid "This is a BETA RELEASE" +msgstr "" + +#: startup.cc:176 +msgid "" +"%1 is a digital audio workstation. You can use it to " +"record, edit and mix multi-track audio. You can produce your own CDs, mix " +"video soundtracks, or experiment with new ideas about music and sound. \n" +"\n" +"There are a few things that need to be configured before you start using the " +"program. " +msgstr "" + +#: startup.cc:202 msgid "Welcome to %1" msgstr "Benvenuti in %1" -#: startup.cc:385 +#: startup.cc:225 msgid "Default folder for %1 sessions" msgstr "Cartella base per le sessioni %1" -#: startup.cc:391 +#: startup.cc:231 msgid "" "Each project that you work on with %1 has its own folder.\n" "These can require a lot of disk space if you are recording audio.\n" @@ -8739,23 +11124,43 @@ msgstr "" "(Potrete memorizzare le sessioni dove volete, questo è solo un valore " "implicito)" -#: startup.cc:415 +#: startup.cc:254 msgid "Default folder for new sessions" msgstr "Cartella base per le nuove sessioni" -#: startup.cc:457 +#: startup.cc:275 +msgid "" +"While recording instruments or vocals, you probably want to listen to the\n" +"signal as well as record it. This is called \"monitoring\". There are\n" +"different ways to do this depending on the equipment you have and the\n" +"configuration of that equipment. The two most common are presented here.\n" +"Please choose whichever one is right for your setup.\n" +"\n" +"(You can change this preference at any time, via the Preferences dialog)\n" +"\n" +"If you do not understand what this is about, just accept the default." +msgstr "" + +#: startup.cc:296 msgid "Monitoring Choices" msgstr "Scelte di controllo" -#: startup.cc:480 +#: startup.cc:319 msgid "Use a Master bus directly" msgstr "Utilizza un Master bus direttamente" -#: startup.cc:491 +#: startup.cc:321 +msgid "" +"Connect the Master bus directly to your hardware outputs. This is preferable " +"for simple usage." +msgstr "" + +#: startup.cc:330 msgid "Use an additional Monitor bus" msgstr "Utilizza un bus Monitor aggiuntivo" -#: startup.cc:494 +#: startup.cc:333 msgid "" "Use a Monitor bus between Master bus and hardware outputs for \n" "greater control in monitoring without affecting the mix." @@ -8763,7 +11168,7 @@ msgstr "" "Usa un bus Monitor tra il bus Master e le uscite fisiche\n" "per avere un controllo maggiore senza influire sul mixaggio." -#: startup.cc:516 +#: startup.cc:355 msgid "" "You can change this preference at any time via the Preferences dialog.\n" "You can also add or remove the monitor section to/from any session.\n" @@ -8771,98 +11176,10 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:527 +#: startup.cc:366 msgid "Monitor Section" msgstr "Sezione di controllo" -#: startup.cc:573 -msgid "Check the website for more..." -msgstr "" - -#: startup.cc:576 -msgid "Click to open the program website in your web browser" -msgstr "" - -#: startup.cc:775 -msgid "Session name:" -msgstr "Nome della sessione:" - -#: startup.cc:821 -msgid "Select folder for session" -msgstr "Seleziona una cartella per la sessione" - -#: startup.cc:853 -msgid "Use this template" -msgstr "Usa questo modello" - -#: startup.cc:856 -msgid "no template" -msgstr "nessun modello" - -#: startup.cc:884 -msgid "Use an existing session as a template:" -msgstr "Usa una sessione salvata come modello" - -#: startup.cc:896 -msgid "Select template" -msgstr "Seleziona modello" - -#: startup.cc:922 -msgid "New Session" -msgstr "Nuova sessione" - -#: startup.cc:1077 -msgid "Select session file" -msgstr "Seleziona un file sessione" - -#: startup.cc:1093 -msgid "Browse:" -msgstr "Sfoglia:" - -#: startup.cc:1102 -msgid "Select a session" -msgstr "Scegli una sessione" - -#: startup.cc:1129 startup.cc:1130 startup.cc:1131 -msgid "channels" -msgstr "canali" - -#: startup.cc:1145 -msgid "Busses" -msgstr "Bus" - -#: startup.cc:1146 -msgid "Inputs" -msgstr "Ingressi" - -#: startup.cc:1147 -msgid "Outputs" -msgstr "Uscite" - -#: startup.cc:1155 -msgid "Create master bus" -msgstr "Crea un master bus" - -#: startup.cc:1172 startup.cc:1231 -msgid "Use only" -msgstr "Usa soltanto" - -#: startup.cc:1225 -msgid "Automatically connect outputs" -msgstr "Connetti automaticamente le uscite" - -#: startup.cc:1247 -msgid "... to master bus" -msgstr "... al bus Master" - -#: startup.cc:1257 -msgid "... to physical outputs" -msgstr "... alle uscite fisiche." - -#: startup.cc:1307 -msgid "Advanced Session Options" -msgstr "Opzioni avanzate della sessione" - #: step_entry.cc:59 msgid "Step Entry: %1" msgstr "" @@ -8919,6 +11236,10 @@ msgstr "Imposta la durata ad un ottavo di nota" msgid "Set note length to a sixteenth note" msgstr "Imposta la durata ad un sedicesimo di nota" +#: step_entry.cc:195 +msgid "Set note length to a thirty-second note" +msgstr "" + #: step_entry.cc:196 msgid "Set note length to a sixty-fourth note" msgstr "Imposta la durata ad un sessantaquattresimo di nota" @@ -9019,26 +11340,58 @@ msgstr "" msgid "Octave" msgstr "" +#: step_entry.cc:597 +msgid "Insert Note A" +msgstr "" + #: step_entry.cc:598 msgid "Insert Note A-sharp" msgstr "" +#: step_entry.cc:599 +msgid "Insert Note B" +msgstr "" + +#: step_entry.cc:600 +msgid "Insert Note C" +msgstr "" + #: step_entry.cc:601 msgid "Insert Note C-sharp" msgstr "" +#: step_entry.cc:602 +msgid "Insert Note D" +msgstr "" + #: step_entry.cc:603 msgid "Insert Note D-sharp" msgstr "" +#: step_entry.cc:604 +msgid "Insert Note E" +msgstr "" + +#: step_entry.cc:605 +msgid "Insert Note F" +msgstr "" + #: step_entry.cc:606 msgid "Insert Note F-sharp" msgstr "" +#: step_entry.cc:607 +msgid "Insert Note G" +msgstr "" + #: step_entry.cc:608 msgid "Insert Note G-sharp" msgstr "" +#: step_entry.cc:610 +msgid "Insert a Note-length Rest" +msgstr "" + #: step_entry.cc:611 msgid "Insert a Snap-length Rest" msgstr "" @@ -9216,6 +11569,14 @@ msgstr "" msgid "L:%3d R:%3d Width:%d%%" msgstr "" +#: stereo_panner_editor.cc:35 +msgid "Stereo Panner" +msgstr "" + +#: stereo_panner_editor.cc:49 +msgid "Width" +msgstr "" + #: strip_silence_dialog.cc:48 msgid "Strip Silence" msgstr "Rimuovi silenzio" @@ -9236,6 +11597,49 @@ msgstr "battuta:" msgid "beat:" msgstr "battito:" +#: tempo_dialog.cc:45 tempo_dialog.cc:60 +msgid "Pulse note" +msgstr "" + +#: tempo_dialog.cc:55 +msgid "Edit Tempo" +msgstr "" + +#: tempo_dialog.cc:76 tempo_dialog.cc:77 tempo_dialog.cc:282 +#: tempo_dialog.cc:283 +msgid "whole" +msgstr "" + +#: tempo_dialog.cc:78 tempo_dialog.cc:79 tempo_dialog.cc:284 +#: tempo_dialog.cc:285 +msgid "second" +msgstr "" + +#: tempo_dialog.cc:80 tempo_dialog.cc:81 tempo_dialog.cc:286 +#: tempo_dialog.cc:287 +msgid "third" +msgstr "" + +#: tempo_dialog.cc:82 tempo_dialog.cc:83 tempo_dialog.cc:288 +#: tempo_dialog.cc:289 +msgid "quarter" +msgstr "" + +#: tempo_dialog.cc:84 tempo_dialog.cc:85 tempo_dialog.cc:290 +#: tempo_dialog.cc:291 +msgid "eighth" +msgstr "" + +#: tempo_dialog.cc:86 tempo_dialog.cc:87 tempo_dialog.cc:292 +#: tempo_dialog.cc:293 +msgid "sixteenth" +msgstr "" + +#: tempo_dialog.cc:88 tempo_dialog.cc:89 tempo_dialog.cc:294 +#: tempo_dialog.cc:295 +msgid "thirty-second" +msgstr "" + #: tempo_dialog.cc:90 tempo_dialog.cc:91 tempo_dialog.cc:296 #: tempo_dialog.cc:297 msgid "sixty-fourth" @@ -9258,10 +11662,22 @@ msgstr "" msgid "incomprehensible pulse note type (%1)" msgstr "" +#: tempo_dialog.cc:266 +msgid "Edit Meter" +msgstr "" + +#: tempo_dialog.cc:314 +msgid "Note value:" +msgstr "" + #: tempo_dialog.cc:315 msgid "Beats per bar:" msgstr "Battiti per battuta:" +#: tempo_dialog.cc:330 +msgid "Meter begins at bar:" +msgstr "" + #: tempo_dialog.cc:441 msgid "incomprehensible meter note type (%1)" msgstr "" @@ -9286,6 +11702,10 @@ msgstr "" msgid "All floating windows are dialogs" msgstr "" +#: theme_manager.cc:62 +msgid "Draw waveforms with color gradient" +msgstr "" + #: theme_manager.cc:68 msgid "Object" msgstr "oggetto" @@ -9342,6 +11762,10 @@ msgstr "" msgid "Pitch Shift Audio" msgstr "" +#: time_fx_dialog.cc:76 +msgid "Time Stretch Audio" +msgstr "" + #: time_fx_dialog.cc:104 transpose_dialog.cc:41 msgid "Octaves:" msgstr "Ottave:" @@ -9350,10 +11774,22 @@ msgstr "Ottave:" msgid "Semitones:" msgstr "Semitoni:" +#: time_fx_dialog.cc:114 +msgid "Cents:" +msgstr "" + +#: time_fx_dialog.cc:122 +msgid "Time|Shift" +msgstr "" + #: time_fx_dialog.cc:146 time_fx_dialog.cc:149 msgid "TimeFXButton" msgstr "" +#: time_fx_dialog.cc:154 +msgid "Stretch/Shrink" +msgstr "" + #: time_fx_dialog.cc:164 msgid "Progress" msgstr "" @@ -9396,6 +11832,10 @@ msgstr "" msgid "Loading user ui configuration file %1" msgstr "Carico il file di configurazione dell'interfaccia utente %1" +#: ui_config.cc:137 +msgid "cannot read ui configuration file \"%1\"" +msgstr "" + #: ui_config.cc:142 msgid "user ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -9412,19 +11852,23 @@ msgstr "" msgid "Config file %1 not saved" msgstr "Il file di configurazione %1 non è stato salvato." -#: utils.cc:110 utils.cc:153 +#: utils.cc:111 utils.cc:154 msgid "bad XPM header %1" msgstr "" -#: utils.cc:292 utils.cc:324 +#: utils.cc:293 utils.cc:325 msgid "missing RGBA style for \"%1\"" msgstr "stile RGBA mancante per \"%1\"" -#: utils.cc:591 +#: utils.cc:598 msgid "cannot find XPM file for %1" msgstr "non riesco a trovare un file XPM per %1" -#: utils.cc:632 +#: utils.cc:624 +msgid "cannot find icon image for %1 using %2" +msgstr "" + +#: utils.cc:639 msgid "Caught exception while loading icon named %1" msgstr "" @@ -9432,6 +11876,14 @@ msgstr "" msgid "VerboseCanvasCursor" msgstr "" +#: add_video_dialog.cc:55 +msgid "Set Video Track" +msgstr "" + +#: add_video_dialog.cc:63 +msgid "Launch External Video Monitor" +msgstr "" + #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -9444,6 +11896,22 @@ msgstr "" msgid "VideoServerIndex" msgstr "" +#: add_video_dialog.cc:129 +msgid "Video files" +msgstr "" + +#: add_video_dialog.cc:164 +msgid "Video Information" +msgstr "" + +#: add_video_dialog.cc:167 +msgid "Start:" +msgstr "" + +#: add_video_dialog.cc:173 +msgid "Frame rate:" +msgstr "" + #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -9489,6 +11957,10 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" +#: video_monitor.cc:281 +msgid "Video Monitor: File Not Found." +msgstr "" + #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -9505,71 +11977,119 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:61 export_video_dialog.cc:73 +#: transcode_video_dialog.cc:55 +msgid "Transcode/Import Video File " +msgstr "" + +#: transcode_video_dialog.cc:57 +msgid "Output File:" +msgstr "" + +#: transcode_video_dialog.cc:60 export_video_dialog.cc:72 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:66 +#: transcode_video_dialog.cc:62 +msgid "Height = " +msgstr "" + +#: transcode_video_dialog.cc:65 msgid "Manual Override" msgstr "" -#: transcode_video_dialog.cc:70 export_video_dialog.cc:89 +#: transcode_video_dialog.cc:69 export_video_dialog.cc:88 msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:113 +#: transcode_video_dialog.cc:106 +msgid "File Information" +msgstr "" + +#: transcode_video_dialog.cc:112 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: transcode_video_dialog.cc:120 +#: transcode_video_dialog.cc:119 msgid "" "File-info can not be read. Most likely '%1' is not a valid video-file or an " "unsupported video codec or format." msgstr "" -#: transcode_video_dialog.cc:134 +#: transcode_video_dialog.cc:133 msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:138 +#: transcode_video_dialog.cc:135 +msgid "Duration:" +msgstr "" + +#: transcode_video_dialog.cc:137 msgid "Codec:" msgstr "" -#: transcode_video_dialog.cc:140 +#: transcode_video_dialog.cc:139 msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:181 +#: transcode_video_dialog.cc:154 +msgid "??" +msgstr "" + +#: transcode_video_dialog.cc:175 +msgid "Import Settings" +msgstr "" + +#: transcode_video_dialog.cc:180 msgid "Do Not Import Video" msgstr "" -#: transcode_video_dialog.cc:182 +#: transcode_video_dialog.cc:181 msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:198 +#: transcode_video_dialog.cc:183 +msgid "Import/Transcode Video to Session" +msgstr "" + +#: transcode_video_dialog.cc:197 msgid "Scale Video: Width = " msgstr "" -#: transcode_video_dialog.cc:205 +#: transcode_video_dialog.cc:204 msgid "Original Width" msgstr "" -#: transcode_video_dialog.cc:220 +#: transcode_video_dialog.cc:219 msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:348 +#: transcode_video_dialog.cc:224 +msgid "Extract Audio:" +msgstr "" + +#: transcode_video_dialog.cc:344 +msgid "Extracting Audio.." +msgstr "" + +#: transcode_video_dialog.cc:347 msgid "Audio Extraction Failed." msgstr "" -#: transcode_video_dialog.cc:374 +#: transcode_video_dialog.cc:373 msgid "Transcoding Video.." msgstr "" +#: transcode_video_dialog.cc:407 +msgid "Transcoding Failed." +msgstr "" + +#: transcode_video_dialog.cc:490 +msgid "Save Transcoded Video File" +msgstr "" + #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -9578,6 +12098,10 @@ msgstr "" msgid "Server Executable:" msgstr "" +#: video_server_dialog.cc:46 +msgid "Server Docroot:" +msgstr "" + #: video_server_dialog.cc:52 msgid "Don't show this dialog again. (Reset in Edit->Preferences)." msgstr "" @@ -9593,11 +12117,19 @@ msgstr "" msgid "Listen Address:" msgstr "" +#: video_server_dialog.cc:125 +msgid "Listen Port:" +msgstr "" + +#: video_server_dialog.cc:130 +msgid "Cache Size:" +msgstr "" + #: video_server_dialog.cc:136 msgid "" -"%1 relies on an external Video Server for the videotimeline.\n" -"The server configured in Edit -> Prefereces -> Video is not reachable.\n" -"Do you want ardour to launch 'harvid' on this machine?" +"%1 relies on an external video server for the videotimeline.\n" +"The server configured in Edit -> Preferences -> Video is not reachable.\n" +"Do you want %1 to launch 'harvid' on this machine?" msgstr "" #: video_server_dialog.cc:176 @@ -9622,71 +12154,187 @@ msgstr "" msgid "Continue" msgstr "" -#: export_video_dialog.cc:74 +#: utils_videotl.cc:63 +msgid "Confirm Overwrite" +msgstr "" + +#: utils_videotl.cc:64 +msgid "A file with the same name already exists. Do you want to overwrite it?" +msgstr "" + +#: utils_videotl.cc:74 utils_videotl.cc:90 +msgid "Cannot create video folder \"%1\" (%2)" +msgstr "" + +#: export_video_dialog.cc:65 +msgid "Export Video File " +msgstr "" + +#: export_video_dialog.cc:69 +msgid "Video:" +msgstr "" + +#: export_video_dialog.cc:73 msgid "Scale Video (W x H):" msgstr "" -#: export_video_dialog.cc:79 +#: export_video_dialog.cc:78 msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:81 +#: export_video_dialog.cc:79 +msgid "Normalize Audio" +msgstr "" + +#: export_video_dialog.cc:80 msgid "2 Pass Encoding" msgstr "" -#: export_video_dialog.cc:82 +#: export_video_dialog.cc:81 msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:85 +#: export_video_dialog.cc:83 +msgid "Deinterlace" +msgstr "" + +#: export_video_dialog.cc:84 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" -#: export_video_dialog.cc:86 +#: export_video_dialog.cc:85 msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:107 +#: export_video_dialog.cc:86 +msgid "Include Session Metadata" +msgstr "" + +#: export_video_dialog.cc:106 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: export_video_dialog.cc:145 +#: export_video_dialog.cc:116 +msgid "Output:" +msgstr "" + +#: export_video_dialog.cc:126 +msgid "Input:" +msgstr "" + +#: export_video_dialog.cc:137 +msgid "Audio:" +msgstr "" + +#: export_video_dialog.cc:139 +msgid "Master Bus" +msgstr "" + +#: export_video_dialog.cc:144 msgid "from the %1 session's start to the session's end" msgstr "" -#: export_video_dialog.cc:149 +#: export_video_dialog.cc:148 msgid "from 00:00:00:00 to the video's end" msgstr "" -#: export_video_dialog.cc:151 +#: export_video_dialog.cc:150 msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:494 +#: export_video_dialog.cc:153 +msgid "Selected range" +msgstr "" + +#: export_video_dialog.cc:193 +msgid "Settings:" +msgstr "" + +#: export_video_dialog.cc:201 +msgid "Range:" +msgstr "" + +#: export_video_dialog.cc:204 +msgid "Preset:" +msgstr "" + +#: export_video_dialog.cc:207 +msgid "Video Codec:" +msgstr "" + +#: export_video_dialog.cc:210 +msgid "Video KBit/s:" +msgstr "" + +#: export_video_dialog.cc:213 +msgid "Audio Codec:" +msgstr "" + +#: export_video_dialog.cc:216 +msgid "Audio KBit/s:" +msgstr "" + +#: export_video_dialog.cc:219 +msgid "Audio Samplerate:" +msgstr "" + +#: export_video_dialog.cc:395 +msgid "Normalizing audio" +msgstr "" + +#: export_video_dialog.cc:399 +msgid "Exporting audio" +msgstr "" + +#: export_video_dialog.cc:445 +msgid "Exporting Audio..." +msgstr "" + +#: export_video_dialog.cc:502 msgid "" "Export Video: Cannot query duration of video-file, using duration from " "timeline instead." msgstr "" -#: export_video_dialog.cc:523 +#: export_video_dialog.cc:532 +msgid "Export Video: export-range does not include video." +msgstr "" + +#: export_video_dialog.cc:544 msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" -#: export_video_dialog.cc:581 +#: export_video_dialog.cc:583 +msgid "Encoding Video..." +msgstr "" + +#: export_video_dialog.cc:602 msgid "Export Video: Video input file cannot be read." msgstr "" -#: export_video_dialog.cc:679 +#: export_video_dialog.cc:695 msgid "Encoding Video.. Pass 1/2" msgstr "" -#: export_video_dialog.cc:691 +#: export_video_dialog.cc:707 msgid "Encoding Video.. Pass 2/2" msgstr "" +#: export_video_dialog.cc:814 +msgid "Transcoding failed." +msgstr "" + +#: export_video_dialog.cc:983 export_video_dialog.cc:1003 +msgid "Save Exported Video File" +msgstr "" + +#: export_video_infobox.cc:30 +msgid "Video Export Info" +msgstr "" + #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -9703,3 +12351,236 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" + +#~ msgid "Starting audio engine" +#~ msgstr "Avvio del motore audio" + +#~ msgid "disconnected" +#~ msgstr "Disconesso" + +#~ msgid "" +#~ "%1 is not connected to JACK\n" +#~ "You cannot open or close sessions in this condition" +#~ msgstr "" +#~ "%1 non è connesso a JACK\n" +#~ "Non si possono aprire o chiudere sessioni in questo stato." + +#~ msgid "" +#~ "The audio backend (JACK) was shutdown because:\n" +#~ "\n" +#~ "%1" +#~ msgstr "" +#~ "Il backend audio (JACK) è stato chiuso perché:\n" +#~ "\n" +#~ "%1" + +#~ msgid "" +#~ "JACK has either been shutdown or it\n" +#~ "disconnected %1 because %1\n" +#~ "was not fast enough. Try to restart\n" +#~ "JACK, reconnect and save the session." +#~ msgstr "" +#~ "JACK è stato chiuso oppure ha disconnesso %1\n" +#~ "per non essere stato abbastanza veloce.\n" +#~ "E' consigliato salvare la sessione e riavviare\n" +#~ "sia JACK che Ardour." + +#~ msgid "Unable to start the session running" +#~ msgstr "Impossibilitato ad avviare la sessione" + +#~ msgid "Click the Refresh button to try again." +#~ msgstr "Clicca su 'Aggiorna' per provare di nuovo." + +#~ msgid "Could not disconnect from JACK" +#~ msgstr "Non posso disconnettermi da JACK" + +#~ msgid "Could not reconnect to JACK" +#~ msgstr "Non posso riconnettermi a JACK" + +#~ msgid "JACK" +#~ msgstr "JACK" + +#~ msgid "Reconnect" +#~ msgstr "Riconnetti" + +#~ msgid "Realtime" +#~ msgstr "Tempo reale" + +#~ msgid "Do not lock memory" +#~ msgstr "Non bloccare la memoria" + +#~ msgid "Unlock memory" +#~ msgstr "Sblocca memoria" + +#~ msgid "Provide monitor ports" +#~ msgstr "Fornire porte per il controllo" + +#~ msgid "Force 16 bit" +#~ msgstr "Forza 16 bit" + +#~ msgid "H/W monitoring" +#~ msgstr "Controllo H/W" + +#~ msgid "H/W metering" +#~ msgstr "Misuratore Hardware" + +#~ msgid "Verbose output" +#~ msgstr "Output prolisso" + +#~ msgid "Triangular" +#~ msgstr "Triangolare" + +#~ msgid "Rectangular" +#~ msgstr "Rettangolare" + +#~ msgid "Playback/recording on 1 device" +#~ msgstr "Riproduzione/Registrazione su un dispositivo" + +#~ msgid "Playback/recording on 2 devices" +#~ msgstr "Riproduzione/Registrazione su due dispositivi" + +#~ msgid "Playback only" +#~ msgstr "Solo riproduzione" + +#~ msgid "Recording only" +#~ msgstr "Solo registrazione" + +#~ msgid "Number of buffers:" +#~ msgstr "Numero di buffer:" + +#~ msgid "Approximate latency:" +#~ msgstr "Latenza:" + +#~ msgid "Audio mode:" +#~ msgstr "Modalità audio:" + +#~ msgid "Ignore" +#~ msgstr "Ignora" + +#~ msgid "Number of ports:" +#~ msgstr "Numero di porte:" + +#~ msgid "MIDI driver:" +#~ msgstr "Driver MIDI:" + +#~ msgid "Dither:" +#~ msgstr "Dither:" + +#~ msgid "" +#~ "No JACK server found anywhere on this system. Please install JACK and " +#~ "restart" +#~ msgstr "" +#~ "Nessun server JACK trovato su questo sistema. Installa JACK e riavvia." + +#~ msgid "Server:" +#~ msgstr "Server:" + +#~ msgid "Input device:" +#~ msgstr "Dispositivo di ingresso:" + +#~ msgid "Output device:" +#~ msgstr "Dispositivo di uscita" + +#~ msgid "Device" +#~ msgstr "Dispositivo" + +#~ msgid "Advanced" +#~ msgstr "Avanzate" + +#~ msgid "cannot open JACK rc file %1 to store parameters" +#~ msgstr "Non posso aprire il file rc di JACK per memorizzare i parametri" + +#~ msgid "No suitable audio devices" +#~ msgstr "Non ci sono dispositivi audio adatti " + +#~ msgid "JACK appears to be missing from the %1 bundle" +#~ msgstr "Sembra che JACK sia assente dal raggruppamento %1" + +#~ msgid "You need to choose an audio device first." +#~ msgstr "Devi prima scegliere un dispositivo audio." + +#~ msgid "Audio device \"%1\" not known on this computer." +#~ msgstr "Impossibile riconoscere il dispositivo audio \"%1\" " + +#~ msgid "AudioSetup value for %1 is missing data" +#~ msgstr "Manca il valore di configurazione audio per %1" + +#~ msgid "" +#~ "configuration files contain a JACK server path that doesn't exist (%1)" +#~ msgstr "" +#~ "il file di configurazione contengono un percorso al server JACK " +#~ "inesistente (%1)" + +#~ msgid "%1 could not connect to JACK." +#~ msgstr "%1 non si è potuto connettere a JACK" + +#~ msgid "JACK exited" +#~ msgstr "JACK ha abbandonato" + +#~ msgid "" +#~ "JACK exited unexpectedly, and without notifying %1.\n" +#~ "\n" +#~ "This could be due to misconfiguration or to an error inside JACK.\n" +#~ "\n" +#~ "Click OK to exit %1." +#~ msgstr "" +#~ "JACK ha abbandonato inaspettatamente e senza preavviso %1.\n" +#~ "\n" +#~ "La causa può essere una errata configurazione o un errore interno a " +#~ "JACK.\n" +#~ "\n" +#~ "Clicca su OK per uscire %1." + +#~ msgid "" +#~ "JACK exited unexpectedly, and without notifying %1.\n" +#~ "\n" +#~ "This is probably due to an error inside JACK. You should restart JACK\n" +#~ "and reconnect %1 to it, or exit %1 now. You cannot save your\n" +#~ "session at this time, because we would lose your connection information.\n" +#~ msgstr "" +#~ "JACK ha abbandonato inaspettatamente e senza preavviso %1.\n" +#~ "\n" +#~ "La causa probabilmente è un errore interno a JACK. Dovresti riavviare " +#~ "JACK\n" +#~ "e riconnettere %1, oppure uscire da %1 adesso. Non è possibile salvare\n" +#~ "la sessione adesso perché perderemmo le tue impostazioni di connessione.\n" + +#~ msgid "Not connected to JACK - no I/O changes are possible" +#~ msgstr "Nessuna connessione a JACK - nessuna modifica I/O consentita" + +#~ msgid "" +#~ " -c, --name Use a specific jack client name, default is " +#~ "ardour\n" +#~ msgstr "" +#~ " -c, --jack-client-name name Utilizza nome specifico per jack, il " +#~ "predefinito e' ardour\n" + +#~ msgid "Synchronise editor and mixer track order" +#~ msgstr "Sincronizza l'ordine delle tracce tra editor e mixer" + +#~ msgid "follows order of editor" +#~ msgstr "segue l'ordine dell'editor" + +#~ msgid "Open an existing session" +#~ msgstr "Apri una sessione" + +#~ msgid "I'd like more options for this session" +#~ msgstr "Vorrei più opzioni per questa sessione" + +#~ msgid "Audio / MIDI Setup" +#~ msgstr "Impostazioni Audio/MIDI" + +#~ msgid "Use an existing session as a template:" +#~ msgstr "Usa una sessione salvata come modello" + +#~ msgid "Select template" +#~ msgstr "Seleziona modello" + +#~ msgid "Browse:" +#~ msgstr "Sfoglia:" + +#~ msgid "Select a session" +#~ msgstr "Scegli una sessione" + +#~ msgid "Advanced Session Options" +#~ msgstr "Opzioni avanzate della sessione" diff --git a/gtk2_ardour/po/nn.po b/gtk2_ardour/po/nn.po index d44dc00352..8617a6908c 100644 --- a/gtk2_ardour/po/nn.po +++ b/gtk2_ardour/po/nn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gtk2_ardour 3.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2013-01-05 14:48+0100\n" "Last-Translator: Eivind ØdegÃ¥rd \n" "Language-Team: \n" @@ -257,6 +257,18 @@ msgstr "" "\tMartin Blanchard\n" "\tRomain Arnaud \n" +#: about.cc:183 +msgid "" +"German:\n" +"\tKarsten Petersen \n" +"\tSebastian Arnold \n" +"\tRobert Schwede \n" +"\tBenjamin Scherrer \n" +"\tEdgar Aichinger \n" +"\tRichard Oax \n" +"\tRobin Gloster \n" +msgstr "" + #: about.cc:190 msgid "" "Italian:\n" @@ -353,6 +365,10 @@ msgstr "" "Kinesisk:\n" "\t Rui-huai Zhang \n" +#: about.cc:580 +msgid "Copyright (C) 1999-2013 Paul Davis\n" +msgstr "" + #: about.cc:584 msgid "http://ardour.org/" msgstr "http://ardour.org/" @@ -421,8 +437,8 @@ msgstr "Bussar" msgid "Add:" msgstr "Legg til:" -#: add_route_dialog.cc:114 startup.cc:841 time_fx_dialog.cc:91 -#: add_video_dialog.cc:150 video_server_dialog.cc:112 +#: add_route_dialog.cc:114 time_fx_dialog.cc:91 add_video_dialog.cc:150 +#: video_server_dialog.cc:112 msgid "Options" msgstr "Val" @@ -436,21 +452,22 @@ msgid "Group:" msgstr "Gruppe:" #: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 -#: rc_option_editor.cc:1456 rc_option_editor.cc:1458 rc_option_editor.cc:1460 -#: rc_option_editor.cc:1478 rc_option_editor.cc:1480 rc_option_editor.cc:1488 -#: rc_option_editor.cc:1490 rc_option_editor.cc:1508 rc_option_editor.cc:1521 -#: rc_option_editor.cc:1523 rc_option_editor.cc:1525 rc_option_editor.cc:1556 -#: rc_option_editor.cc:1558 rc_option_editor.cc:1560 rc_option_editor.cc:1568 -#: rc_option_editor.cc:1576 rc_option_editor.cc:1584 +#: ardour_ui_ed.cc:476 engine_dialog.cc:236 rc_option_editor.cc:1446 +#: rc_option_editor.cc:1448 rc_option_editor.cc:1450 rc_option_editor.cc:1466 +#: rc_option_editor.cc:1468 rc_option_editor.cc:1476 rc_option_editor.cc:1478 +#: rc_option_editor.cc:1496 rc_option_editor.cc:1509 rc_option_editor.cc:1511 +#: rc_option_editor.cc:1513 rc_option_editor.cc:1544 rc_option_editor.cc:1546 +#: rc_option_editor.cc:1548 rc_option_editor.cc:1556 rc_option_editor.cc:1564 +#: rc_option_editor.cc:1572 msgid "Audio" msgstr "Lyd" #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 -#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1707 -#: rc_option_editor.cc:1715 rc_option_editor.cc:1723 rc_option_editor.cc:1732 -#: rc_option_editor.cc:1740 rc_option_editor.cc:1748 rc_option_editor.cc:1756 -#: rc_option_editor.cc:1765 rc_option_editor.cc:1774 rc_option_editor.cc:1783 -#: rc_option_editor.cc:1791 rc_option_editor.cc:1799 +#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1695 +#: rc_option_editor.cc:1703 rc_option_editor.cc:1711 rc_option_editor.cc:1720 +#: rc_option_editor.cc:1728 rc_option_editor.cc:1736 rc_option_editor.cc:1744 +#: rc_option_editor.cc:1753 rc_option_editor.cc:1762 rc_option_editor.cc:1771 +#: rc_option_editor.cc:1779 rc_option_editor.cc:1787 msgid "MIDI" msgstr "MIDI" @@ -541,6 +558,12 @@ msgstr "-ingen-" msgid "Ambiguous File" msgstr "Tvitydig fil" +#: ambiguous_file_dialog.cc:35 +msgid "" +"%1 has found the file %2 in the following places:\n" +"\n" +msgstr "" + #: ambiguous_file_dialog.cc:44 msgid "" "\n" @@ -591,7 +614,7 @@ msgstr "Normaliser verdiar" msgid "FFT analysis window" msgstr "FFT-analyserute" -#: analysis_window.cc:60 editor.cc:1856 +#: analysis_window.cc:60 editor.cc:1857 msgid "Spectral Analysis" msgstr "Spektrumanalyse" @@ -641,6 +664,10 @@ msgstr "Snøggtastar" msgid "Preferences" msgstr "Innstillingar" +#: ardour_ui.cc:191 ardour_ui.cc:197 +msgid "Add Tracks/Busses" +msgstr "" + #: ardour_ui.cc:192 msgid "About" msgstr "Om" @@ -653,31 +680,70 @@ msgstr "Stader" msgid "Tracks and Busses" msgstr "Spor og bussar" -#: ardour_ui.cc:195 +#: ardour_ui.cc:195 engine_dialog.cc:67 +msgid "Audio/MIDI Setup" +msgstr "" + +#: ardour_ui.cc:196 msgid "Properties" msgstr "Eigenskapar" -#: ardour_ui.cc:197 bundle_manager.cc:263 +#: ardour_ui.cc:198 bundle_manager.cc:263 msgid "Bundle Manager" msgstr "Bundelordnar" -#: ardour_ui.cc:198 big_clock_window.cc:35 +#: ardour_ui.cc:199 big_clock_window.cc:35 msgid "Big Clock" msgstr "Stor klokke" -#: ardour_ui.cc:202 +#: ardour_ui.cc:200 +msgid "Audio Connections" +msgstr "" + +#: ardour_ui.cc:201 +msgid "MIDI Connections" +msgstr "" + +#: ardour_ui.cc:203 msgid "Errors" msgstr "Feil" -#: ardour_ui.cc:388 -msgid "Starting audio engine" -msgstr "Startar lydmaskin" +#: ardour_ui.cc:436 +msgid "" +"The audio backend was shutdown because:\n" +"\n" +"%1" +msgstr "" -#: ardour_ui.cc:758 startup.cc:638 +#: ardour_ui.cc:438 +msgid "" +"The audio backend has either been shutdown or it\n" +"disconnected %1 because %1\n" +"was not fast enough. Try to restart\n" +"the audio backend and save the session." +msgstr "" + +#: ardour_ui.cc:758 +msgid "NSM server did not announce itself" +msgstr "" + +#: ardour_ui.cc:771 +msgid "NSM: no client ID provided" +msgstr "" + +#: ardour_ui.cc:778 +msgid "NSM: no session created" +msgstr "" + +#: ardour_ui.cc:801 +msgid "NSM: initialization failed" +msgstr "" + +#: ardour_ui.cc:840 startup.cc:379 msgid "%1 is ready for use" msgstr "%1 er klar til bruk" -#: ardour_ui.cc:806 +#: ardour_ui.cc:882 msgid "" "WARNING: Your system has a limit for maximum amount of locked memory. This " "might cause %1 to run out of memory before your system runs out of memory. \n" @@ -691,23 +757,23 @@ msgstr "" "Du kan finna ut kva minnegrensa er med 'ulimit -l'. Minnegrensa er vanlegvis " "kontrollert av %2" -#: ardour_ui.cc:823 +#: ardour_ui.cc:899 msgid "Do not show this window again" msgstr "Ikkje vis denne ruta att" -#: ardour_ui.cc:865 +#: ardour_ui.cc:943 msgid "Don't quit" msgstr "Ikkje avslutt" -#: ardour_ui.cc:866 +#: ardour_ui.cc:944 msgid "Just quit" msgstr "Berre avslutt" -#: ardour_ui.cc:867 +#: ardour_ui.cc:945 msgid "Save and quit" msgstr "Lagra og avslutt" -#: ardour_ui.cc:877 +#: ardour_ui.cc:955 msgid "" "%1 was unable to save your session.\n" "\n" @@ -721,15 +787,15 @@ msgstr "" "\n" "\"Berre avslutt\"-alternativet." -#: ardour_ui.cc:908 +#: ardour_ui.cc:986 msgid "Please wait while %1 cleans up..." msgstr "Vent medan %1 ryddar opp..." -#: ardour_ui.cc:925 +#: ardour_ui.cc:1004 msgid "Unsaved Session" msgstr "Ulagra økt" -#: ardour_ui.cc:946 +#: ardour_ui.cc:1025 msgid "" "The session \"%1\"\n" "has not been saved.\n" @@ -747,7 +813,7 @@ msgstr "" "\n" "Kva vil du gjera?" -#: ardour_ui.cc:949 +#: ardour_ui.cc:1028 msgid "" "The snapshot \"%1\"\n" "has not been saved.\n" @@ -765,74 +831,75 @@ msgstr "" "\n" "Kva vil du gjera?" -#: ardour_ui.cc:963 +#: ardour_ui.cc:1042 msgid "Prompter" msgstr "SpørsmÃ¥l" -#: ardour_ui.cc:1049 -msgid "disconnected" -msgstr "frÃ¥kopla" - -#: ardour_ui.cc:1056 +#: ardour_ui.cc:1128 ardour_ui.cc:1136 #, c-format -msgid "JACK: %.1f kHz / %4.1f ms" -msgstr "JACK: %.1f kHz / %4.1f ms" +msgid "Audio: none" +msgstr "" -#: ardour_ui.cc:1060 +#: ardour_ui.cc:1140 #, c-format -msgid "JACK: % kHz / %4.1f ms" -msgstr "JACK: % kHz / %4.1f ms" +msgid "Audio: %.1f kHz / %4.1f ms" +msgstr "" -#: ardour_ui.cc:1078 export_video_dialog.cc:68 +#: ardour_ui.cc:1144 +#, c-format +msgid "Audio: % kHz / %4.1f ms" +msgstr "" + +#: ardour_ui.cc:1162 export_video_dialog.cc:67 msgid "File:" msgstr "Fil:" -#: ardour_ui.cc:1082 +#: ardour_ui.cc:1166 msgid "BWF" msgstr "BWF" -#: ardour_ui.cc:1085 +#: ardour_ui.cc:1169 msgid "WAV" msgstr "WAV" -#: ardour_ui.cc:1088 +#: ardour_ui.cc:1172 msgid "WAV64" msgstr "WAV64" -#: ardour_ui.cc:1091 session_option_editor.cc:197 +#: ardour_ui.cc:1175 session_option_editor.cc:197 msgid "CAF" msgstr "CAF" -#: ardour_ui.cc:1094 +#: ardour_ui.cc:1178 msgid "AIFF" msgstr "AIFF" -#: ardour_ui.cc:1097 +#: ardour_ui.cc:1181 msgid "iXML" msgstr "iXML" -#: ardour_ui.cc:1100 +#: ardour_ui.cc:1184 msgid "RF64" msgstr "RF64" -#: ardour_ui.cc:1108 +#: ardour_ui.cc:1192 msgid "32-float" msgstr "32-flyt" -#: ardour_ui.cc:1111 +#: ardour_ui.cc:1195 msgid "24-int" msgstr "24-heiltal" -#: ardour_ui.cc:1114 +#: ardour_ui.cc:1198 msgid "16-int" msgstr "16-heiltal" -#: ardour_ui.cc:1133 +#: ardour_ui.cc:1217 #, c-format msgid "DSP: %5.1f%%" msgstr "DSP: %5.1f%%" -#: ardour_ui.cc:1152 +#: ardour_ui.cc:1236 #, c-format msgid "" "Buffers: p:" @@ -843,62 +910,61 @@ msgstr "" "%% c:" "%%%" -#: ardour_ui.cc:1188 +#: ardour_ui.cc:1277 msgid "Disk: Unknown" msgstr "Disk: Ukjent" -#: ardour_ui.cc:1190 +#: ardour_ui.cc:1279 msgid "Disk: 24hrs+" msgstr "Disk: 24t+" -#: ardour_ui.cc:1208 +#: ardour_ui.cc:1297 msgid "Disk: >24 hrs" msgstr "Disk: >24t" -#: ardour_ui.cc:1219 +#: ardour_ui.cc:1308 #, c-format msgid "Disk: %02dh:%02dm:%02ds" msgstr "Disk: %02dt:%02dm:%02ds" -#: ardour_ui.cc:1245 +#: ardour_ui.cc:1334 #, c-format msgid "Timecode|TC: %s" msgstr "Tidskode|TC: %s" -#: ardour_ui.cc:1362 ardour_ui.cc:1371 startup.cc:1054 +#: ardour_ui.cc:1451 ardour_ui.cc:1460 session_dialog.cc:322 +#: session_dialog.cc:327 msgid "Recent Sessions" msgstr "Siste øktene" -#: ardour_ui.cc:1451 +#: ardour_ui.cc:1539 msgid "" -"%1 is not connected to JACK\n" +"%1 is not connected to any audio backend.\n" "You cannot open or close sessions in this condition" msgstr "" -"%1 er ikkje kopla til JACK.\n" -"Du kan ikkje opna eller lukka økter nÃ¥r det stÃ¥r slik til." -#: ardour_ui.cc:1478 +#: ardour_ui.cc:1563 msgid "Open Session" msgstr "Opna økt" -#: ardour_ui.cc:1503 session_import_dialog.cc:169 -#: session_metadata_dialog.cc:729 startup.cc:1083 +#: ardour_ui.cc:1588 session_dialog.cc:353 session_import_dialog.cc:169 +#: session_metadata_dialog.cc:729 msgid "%1 sessions" msgstr "%1 økter" -#: ardour_ui.cc:1540 +#: ardour_ui.cc:1625 msgid "You cannot add a track without a session already loaded." msgstr "" "Du kan ikkje leggja til eit spor eller ein buss nÃ¥r du ikkje har ei økt " "innlasta." -#: ardour_ui.cc:1548 +#: ardour_ui.cc:1633 msgid "could not create %1 new mixed track" msgid_plural "could not create %1 new mixed tracks" msgstr[0] "greidde ikkje laga %1 nye miksa spor" msgstr[1] "ugreidde ikkje laga %1 nye miksa spor" -#: ardour_ui.cc:1554 ardour_ui.cc:1615 +#: ardour_ui.cc:1639 ardour_ui.cc:1700 msgid "" "There are insufficient JACK ports available\n" "to create a new track or bus.\n" @@ -910,25 +976,25 @@ msgstr "" "Du bør lagra %1, avslutta og starta\n" "omatt JACK med fleire portar." -#: ardour_ui.cc:1589 +#: ardour_ui.cc:1674 msgid "You cannot add a track or bus without a session already loaded." msgstr "" "Du kan ikkje leggja til eit spor eller ein buss nÃ¥r du ikkje har ei økt " "innlasta." -#: ardour_ui.cc:1598 +#: ardour_ui.cc:1683 msgid "could not create %1 new audio track" msgid_plural "could not create %1 new audio tracks" msgstr[0] "greidde ikkje laga nytt lydspor" msgstr[1] "greidde ikkje laga %1 nye lydspor" -#: ardour_ui.cc:1607 +#: ardour_ui.cc:1692 msgid "could not create %1 new audio bus" msgid_plural "could not create %1 new audio busses" msgstr[0] "greidde ikkje laga ny lydbuss" msgstr[1] "greidde ikkje laga %1 nye lydbussar" -#: ardour_ui.cc:1724 +#: ardour_ui.cc:1816 msgid "" "Please create one or more tracks before trying to record.\n" "You can do this with the \"Add Track or Bus\" option in the Session menu." @@ -936,41 +1002,15 @@ msgstr "" "Lag eitt eller fleire spor før du prøver Ã¥ ta opp.\n" "Du kan gjera det med «Legg til spor eller buss» i økt-menyen." -#: ardour_ui.cc:2114 -msgid "" -"The audio backend (JACK) was shutdown because:\n" -"\n" -"%1" -msgstr "" -"Lydmotoren (JACK) vart avslutta fordi:\n" -"\n" -"%1" - -#: ardour_ui.cc:2116 -msgid "" -"JACK has either been shutdown or it\n" -"disconnected %1 because %1\n" -"was not fast enough. Try to restart\n" -"JACK, reconnect and save the session." -msgstr "" -"JACK har anten vorte avslutta, eller\n" -"han vart kopla frÃ¥ fordi %1\n" -"ikkje var rask nok. Du kan lagra økta\n" -"og/eller prøva Ã¥ kopla til JACK att ." - -#: ardour_ui.cc:2142 -msgid "Unable to start the session running" -msgstr "Greidde ikkje starta økta" - -#: ardour_ui.cc:2222 +#: ardour_ui.cc:2193 msgid "Take Snapshot" msgstr "Ta snøggbilete" -#: ardour_ui.cc:2223 +#: ardour_ui.cc:2194 msgid "Name of new snapshot" msgstr "Namn pÃ¥ det nye snøggbiletet" -#: ardour_ui.cc:2247 +#: ardour_ui.cc:2218 msgid "" "To ensure compatibility with various systems\n" "snapshot names may not contain a '%1' character" @@ -978,27 +1018,27 @@ msgstr "" "For Ã¥ tryggja kompatibiliteten med ymse system,\n" "kan ikkje namn pÃ¥ snøggbilete innehalda teiknet '%1'" -#: ardour_ui.cc:2259 +#: ardour_ui.cc:2230 msgid "Confirm Snapshot Overwrite" msgstr "Stadfest at du vil skriva over snøggbilete" -#: ardour_ui.cc:2260 +#: ardour_ui.cc:2231 msgid "A snapshot already exists with that name. Do you want to overwrite it?" msgstr "Dette snøggbiletet finst frÃ¥ før. Vil du skriva over det?" -#: ardour_ui.cc:2263 utils_videotl.cc:67 +#: ardour_ui.cc:2234 utils_videotl.cc:67 msgid "Overwrite" msgstr "Skriv over" -#: ardour_ui.cc:2297 +#: ardour_ui.cc:2268 msgid "Rename Session" msgstr "Døyp om økt" -#: ardour_ui.cc:2298 +#: ardour_ui.cc:2269 msgid "New session name" msgstr "Nytt øktnamn" -#: ardour_ui.cc:2312 ardour_ui.cc:2692 ardour_ui.cc:2737 +#: ardour_ui.cc:2283 ardour_ui.cc:2684 ardour_ui.cc:2722 msgid "" "To ensure compatibility with various systems\n" "session names may not contain a '%1' character" @@ -1006,12 +1046,12 @@ msgstr "" "For Ã¥ tryggja kompatibiliteten med ymse system,\n" "kan ikkje namn pÃ¥ økter innehalda teiknet '%1'" -#: ardour_ui.cc:2320 +#: ardour_ui.cc:2291 msgid "" "That name is already in use by another directory/folder. Please try again." msgstr "Dette namnet er alt i bruk pÃ¥ ei anna mappe. Prøv pÃ¥ nytt." -#: ardour_ui.cc:2329 +#: ardour_ui.cc:2300 msgid "" "Renaming this session failed.\n" "Things could be seriously messed up at this point" @@ -1019,19 +1059,19 @@ msgstr "" "Fekk ikkje til Ã¥ døypa om denne økta.\n" "Her kan det vera noko skikkeleg rot." -#: ardour_ui.cc:2440 +#: ardour_ui.cc:2411 msgid "Save Template" msgstr "Lagra mal" -#: ardour_ui.cc:2441 +#: ardour_ui.cc:2412 msgid "Name for template:" msgstr "Namn pÃ¥ malen:" -#: ardour_ui.cc:2442 +#: ardour_ui.cc:2413 msgid "-template" msgstr "-mal" -#: ardour_ui.cc:2480 +#: ardour_ui.cc:2451 msgid "" "This session\n" "%1\n" @@ -1041,52 +1081,59 @@ msgstr "" "%1,\n" "finst frÃ¥ før. Vil du opna henne?" -#: ardour_ui.cc:2490 +#: ardour_ui.cc:2461 msgid "Open Existing Session" msgstr "Opna økt" -#: ardour_ui.cc:2728 +#: ardour_ui.cc:2712 msgid "There is no existing session at \"%1\"" msgstr "Det finst inga økt i \"%1\"" -#: ardour_ui.cc:2815 +#: ardour_ui.cc:2804 msgid "Please wait while %1 loads your session" msgstr "Vent medan %1 lastar økta di" -#: ardour_ui.cc:2830 +#: ardour_ui.cc:2819 msgid "Port Registration Error" msgstr "Feil ved portregistrering" -#: ardour_ui.cc:2831 +#: ardour_ui.cc:2820 msgid "Click the Close button to try again." msgstr "Klikk pÃ¥ Lukk for Ã¥ prøva att." -#: ardour_ui.cc:2852 +#: ardour_ui.cc:2841 msgid "Session \"%1 (snapshot %2)\" did not load successfully" msgstr "Økta \"%1 (snøggbilete %2)\" vart ikkje lasta" -#: ardour_ui.cc:2858 +#: ardour_ui.cc:2848 msgid "Loading Error" msgstr "Feil ved lasting" -#: ardour_ui.cc:2859 -msgid "Click the Refresh button to try again." -msgstr "Klikk pÃ¥ Last omatt for Ã¥ prøva att." +#: ardour_ui.cc:2867 +msgid "" +"This session has been opened in read-only mode.\n" +"\n" +"You will not be able to record or save." +msgstr "" -#: ardour_ui.cc:2941 +#: ardour_ui.cc:2873 +msgid "Read-only Session" +msgstr "" + +#: ardour_ui.cc:2931 msgid "Could not create session in \"%1\"" msgstr "Greidde ikkje laga økt i \"%1\"" -#: ardour_ui.cc:3041 +#: ardour_ui.cc:3031 msgid "No files were ready for clean-up" msgstr "Ingen filer var klare for rydding" -#: ardour_ui.cc:3045 ardour_ui.cc:3055 ardour_ui.cc:3188 ardour_ui.cc:3195 +#: ardour_ui.cc:3035 ardour_ui.cc:3045 ardour_ui.cc:3178 ardour_ui.cc:3185 #: ardour_ui_ed.cc:104 msgid "Clean-up" msgstr "Opprydding" -#: ardour_ui.cc:3046 +#: ardour_ui.cc:3036 msgid "" "If this seems suprising, \n" "check for any existing snapshots.\n" @@ -1098,23 +1145,55 @@ msgstr "" "Det kan hende dei inneheld bolkar\n" "som treng ubrukte lydfiler for Ã¥ eksistera." -#: ardour_ui.cc:3105 +#: ardour_ui.cc:3095 msgid "kilo" msgstr "kilo" -#: ardour_ui.cc:3108 +#: ardour_ui.cc:3098 msgid "mega" msgstr "mega" -#: ardour_ui.cc:3111 +#: ardour_ui.cc:3101 msgid "giga" msgstr "giga" -#: ardour_ui.cc:3183 +#: ardour_ui.cc:3106 +msgid "" +"The following file was deleted from %2,\n" +"releasing %3 %4bytes of disk space" +msgid_plural "" +"The following %1 files were deleted from %2,\n" +"releasing %3 %4bytes of disk space" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:3113 +msgid "" +"The following file was not in use and \n" +"has been moved to: %2\n" +"\n" +"After a restart of %5\n" +"\n" +"Session -> Clean-up -> Flush Wastebasket\n" +"\n" +"will release an additional %3 %4bytes of disk space.\n" +msgid_plural "" +"The following %1 files were not in use and \n" +"have been moved to: %2\n" +"\n" +"After a restart of %5\n" +"\n" +"Session -> Clean-up -> Flush Wastebasket\n" +"\n" +"will release an additional %3 %4bytes of disk space.\n" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:3173 msgid "Are you sure you want to clean-up?" msgstr "Er du sikker pÃ¥ at du vil rydda opp?" -#: ardour_ui.cc:3190 +#: ardour_ui.cc:3180 msgid "" "Clean-up is a destructive operation.\n" "ALL undo/redo information will be lost if you clean-up.\n" @@ -1124,72 +1203,80 @@ msgstr "" "ALL angra- og gjer om-informasjon blir sletta om du ryddar.\n" "Etter opprydding blir alle ubrukte lydfiler flytte til ei \"daudlyd\"-mappe." -#: ardour_ui.cc:3198 +#: ardour_ui.cc:3188 msgid "CleanupDialog" msgstr "Ryddedialog" -#: ardour_ui.cc:3228 +#: ardour_ui.cc:3218 msgid "Cleaned Files" msgstr "Rydda filer" -#: ardour_ui.cc:3245 +#: ardour_ui.cc:3235 msgid "deleted file" msgstr "sletta fil" -#: ardour_ui.cc:3337 +#: ardour_ui.cc:3381 msgid "" "Video-Server was not launched by Ardour. The request to stop it is ignored." msgstr "" -#: ardour_ui.cc:3341 +#: ardour_ui.cc:3385 msgid "Stop Video-Server" msgstr "" -#: ardour_ui.cc:3371 +#: ardour_ui.cc:3386 +msgid "Do you really want to stop the Video Server?" +msgstr "" + +#: ardour_ui.cc:3389 +msgid "Yes, Stop It" +msgstr "" + +#: ardour_ui.cc:3415 msgid "The Video Server is already started." msgstr "" -#: ardour_ui.cc:3373 +#: ardour_ui.cc:3417 msgid "" "An external Video Server is configured and can be reached. Not starting a " "new instance." msgstr "" -#: ardour_ui.cc:3381 ardour_ui.cc:3471 +#: ardour_ui.cc:3425 ardour_ui.cc:3515 msgid "" "Could not connect to the Video Server. Start it or configure its access URL " "in Edit -> Preferences." msgstr "" -#: ardour_ui.cc:3405 +#: ardour_ui.cc:3449 msgid "Specified docroot is not an existing directory." msgstr "" -#: ardour_ui.cc:3410 +#: ardour_ui.cc:3454 msgid "Given Video Server is not an executable file." msgstr "" -#: ardour_ui.cc:3443 +#: ardour_ui.cc:3487 msgid "Cannot launch the video-server" msgstr "" -#: ardour_ui.cc:3452 +#: ardour_ui.cc:3496 msgid "Video-server was started but does not respond to requests..." msgstr "" -#: ardour_ui.cc:3497 editor_audio_import.cc:632 +#: ardour_ui.cc:3541 editor_audio_import.cc:632 msgid "could not open %1" msgstr "greidde ikkje opna %1" -#: ardour_ui.cc:3501 +#: ardour_ui.cc:3545 msgid "no video-file selected" msgstr "" -#: ardour_ui.cc:3673 +#: ardour_ui.cc:3717 msgid "Recording was stopped because your system could not keep up." msgstr "Opptaket stoppa fordi datamaskina di ikkje greidde Ã¥ henga med." -#: ardour_ui.cc:3702 +#: ardour_ui.cc:3746 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1203,7 +1290,7 @@ msgstr "" "Det tyder at harddisksystemet ditt ikkje\n" "greidde lagra raskt nok til Ã¥ ta opp.\n" -#: ardour_ui.cc:3721 +#: ardour_ui.cc:3765 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1217,23 +1304,34 @@ msgstr "" "Det tyder at harddisksystemet ditt ikkje\n" "greidde lesa raskt nok til Ã¥ spela av.\n" -#: ardour_ui.cc:3761 +#: ardour_ui.cc:3805 msgid "Crash Recovery" msgstr "Gjenoppretting etter krasj" -#: ardour_ui.cc:3774 +#: ardour_ui.cc:3806 +msgid "" +"This session appears to have been in the\n" +"middle of recording when %1 or\n" +"the computer was shutdown.\n" +"\n" +"%1 can recover any captured audio for\n" +"you, or it can ignore it. Please decide\n" +"what you would like to do.\n" +msgstr "" + +#: ardour_ui.cc:3818 msgid "Ignore crash data" msgstr "SjÃ¥ bort frÃ¥ krasjdata" -#: ardour_ui.cc:3775 +#: ardour_ui.cc:3819 msgid "Recover from crash" msgstr "Hent fram att etter krasj" -#: ardour_ui.cc:3795 +#: ardour_ui.cc:3839 msgid "Sample Rate Mismatch" msgstr "Punktfrekvensen passar ikkje" -#: ardour_ui.cc:3796 +#: ardour_ui.cc:3840 msgid "" "This session was created with a sample rate of %1 Hz, but\n" "%2 is currently running at %3 Hz. If you load this session,\n" @@ -1243,23 +1341,23 @@ msgstr "" "%2 køyrer pÃ¥ %3 Hz nett no. Viss du lastar denne økta,\n" "kan det henda lyden blir spelt med feil punktfrekvens.\n" -#: ardour_ui.cc:3805 +#: ardour_ui.cc:3849 msgid "Do not load session" msgstr "Ikkje last økta" -#: ardour_ui.cc:3806 +#: ardour_ui.cc:3850 msgid "Load session anyway" msgstr "Last økta likevel" -#: ardour_ui.cc:3829 -msgid "Could not disconnect from JACK" -msgstr "Greidde ikkje kopla frÃ¥ JACK" +#: ardour_ui.cc:3877 +msgid "Could not disconnect from Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:3842 -msgid "Could not reconnect to JACK" -msgstr "Greidde ikkje kopla til JACK att" +#: ardour_ui.cc:3893 ardour_ui.cc:3896 +msgid "Could not reconnect to the Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:4116 +#: ardour_ui.cc:4172 msgid "" "%4This is a session from an older version of %3%5\n" "\n" @@ -1282,6 +1380,10 @@ msgstr "Grensesnitt: Greier ikkje setja opp redigeringa" msgid "UI: cannot setup mixer" msgstr "Grensesnitt: Greier ikkje setja opp miksaren" +#: ardour_ui2.cc:82 +msgid "UI: cannot setup meterbridge" +msgstr "" + #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "Spel frÃ¥ spelehovudet" @@ -1353,6 +1455,26 @@ msgstr "" msgid "When active, there is a feedback loop." msgstr "NÃ¥r denne er pÃ¥, er det ei rundgangssløyfe." +#: ardour_ui2.cc:145 +msgid "" +"Primary Clock right-click to set display mode. Click to edit, click" +"+drag a digit or mouse-over+scroll wheel to modify.\n" +"Text edits: right-to-left overwrite Esc: cancel; Enter: " +"confirm; postfix the edit with '+' or '-' to enter delta times.\n" +msgstr "" + +#: ardour_ui2.cc:146 +msgid "" +"Secondary Clock right-click to set display mode. Click to edit, click" +"+drag a digit or mouse-over+scroll wheel to modify.\n" +"Text edits: right-to-left overwrite Esc: cancel; Enter: " +"confirm; postfix the edit with '+' or '-' to enter delta times.\n" +msgstr "" + +#: ardour_ui2.cc:147 +msgid "Reset Level Meter" +msgstr "" + #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "[FEIL]:" @@ -1365,51 +1487,51 @@ msgstr "[Ã…TVARING]:" msgid "[INFO]: " msgstr "[INFO]:" -#: ardour_ui2.cc:247 ardour_ui_ed.cc:377 +#: ardour_ui2.cc:247 ardour_ui_ed.cc:344 msgid "Auto Return" msgstr "Autoretur" -#: ardour_ui2.cc:249 ardour_ui_ed.cc:380 +#: ardour_ui2.cc:249 ardour_ui_ed.cc:347 msgid "Follow Edits" msgstr "Fylg endringar" -#: ardour_ui2.cc:628 rc_option_editor.cc:1004 rc_option_editor.cc:1022 -#: rc_option_editor.cc:1025 rc_option_editor.cc:1027 rc_option_editor.cc:1029 -#: rc_option_editor.cc:1037 rc_option_editor.cc:1045 rc_option_editor.cc:1047 -#: rc_option_editor.cc:1055 rc_option_editor.cc:1062 rc_option_editor.cc:1071 -#: rc_option_editor.cc:1073 rc_option_editor.cc:1075 rc_option_editor.cc:1083 -#: rc_option_editor.cc:1085 rc_option_editor.cc:1094 +#: ardour_ui2.cc:628 rc_option_editor.cc:1002 rc_option_editor.cc:1020 +#: rc_option_editor.cc:1023 rc_option_editor.cc:1025 rc_option_editor.cc:1027 +#: rc_option_editor.cc:1035 rc_option_editor.cc:1043 rc_option_editor.cc:1045 +#: rc_option_editor.cc:1053 rc_option_editor.cc:1060 rc_option_editor.cc:1069 +#: rc_option_editor.cc:1071 rc_option_editor.cc:1073 rc_option_editor.cc:1081 +#: rc_option_editor.cc:1083 rc_option_editor.cc:1092 #: session_option_editor.cc:234 session_option_editor.cc:236 #: session_option_editor.cc:257 session_option_editor.cc:259 #: session_option_editor.cc:261 session_option_editor.cc:268 msgid "Misc" msgstr "Ymse" -#: ardour_ui_dependents.cc:77 +#: ardour_ui_dependents.cc:69 msgid "Setup Editor" msgstr "Set opp redigeringa" -#: ardour_ui_dependents.cc:79 +#: ardour_ui_dependents.cc:71 msgid "Setup Mixer" msgstr "Set opp miksaren" -#: ardour_ui_dependents.cc:85 +#: ardour_ui_dependents.cc:77 msgid "Reload Session History" msgstr "Oppdater øktliste" -#: ardour_ui_dialogs.cc:242 +#: ardour_ui_dialogs.cc:238 msgid "Don't close" msgstr "Ikkje lukk" -#: ardour_ui_dialogs.cc:243 +#: ardour_ui_dialogs.cc:239 msgid "Just close" msgstr "Berre lukk" -#: ardour_ui_dialogs.cc:244 +#: ardour_ui_dialogs.cc:240 msgid "Save and close" msgstr "Lagra og lukk" -#: ardour_ui_dialogs.cc:340 +#: ardour_ui_dialogs.cc:339 msgid "This screen is not tall enough to display the mixer window" msgstr "Denne skjermen er ikkje høg nok til Ã¥ visa miksarvindauga" @@ -1418,11 +1540,11 @@ msgid "Session" msgstr "Økt" #: ardour_ui_ed.cc:106 editor_actions.cc:134 editor_regions.cc:115 -#: port_group.cc:457 session_option_editor.cc:82 session_option_editor.cc:89 +#: port_group.cc:458 session_option_editor.cc:82 session_option_editor.cc:89 msgid "Sync" msgstr "Synk" -#: ardour_ui_ed.cc:107 engine_dialog.cc:369 +#: ardour_ui_ed.cc:107 msgid "Options" msgstr "Val" @@ -1450,15 +1572,15 @@ msgstr "Filtype" msgid "Sample Format" msgstr "Punktformat" -#: ardour_ui_ed.cc:114 rc_option_editor.cc:1826 rc_option_editor.cc:1839 +#: ardour_ui_ed.cc:114 rc_option_editor.cc:1814 rc_option_editor.cc:1826 msgid "Control Surfaces" msgstr "Kontrollflater" -#: ardour_ui_ed.cc:115 rc_option_editor.cc:1558 +#: ardour_ui_ed.cc:115 rc_option_editor.cc:1546 msgid "Plugins" msgstr "Utvidingar" -#: ardour_ui_ed.cc:116 rc_option_editor.cc:1902 +#: ardour_ui_ed.cc:116 rc_option_editor.cc:1889 msgid "Metering" msgstr "NivÃ¥mÃ¥ling" @@ -1494,6 +1616,18 @@ msgstr "Lukk" msgid "Add Track or Bus..." msgstr "Legg til spor eller buss..." +#: ardour_ui_ed.cc:135 +msgid "Open Video" +msgstr "" + +#: ardour_ui_ed.cc:138 +msgid "Remove Video" +msgstr "" + +#: ardour_ui_ed.cc:141 +msgid "Export To Video File" +msgstr "" + #: ardour_ui_ed.cc:145 msgid "Snapshot..." msgstr "Snøggbilete..." @@ -1532,7 +1666,7 @@ msgid "Stem export..." msgstr "Staveksport..." #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 -#: export_video_dialog.cc:72 +#: export_video_dialog.cc:71 msgid "Export" msgstr "Eksporter" @@ -1544,162 +1678,153 @@ msgstr "Rydd bort ubrukte kjelder..." msgid "Flush Wastebasket" msgstr "Tøm søppelkorga" -#: ardour_ui_ed.cc:189 keyeditor.cc:253 rc_option_editor.cc:1472 -msgid "JACK" -msgstr "JACK" - -#: ardour_ui_ed.cc:190 route_params_ui.cc:105 -msgid "Latency" -msgstr "Treigskap" - -#: ardour_ui_ed.cc:192 -msgid "Reconnect" -msgstr "Kopla til att" - -#: ardour_ui_ed.cc:195 global_port_matrix.cc:207 io_selector.cc:210 -#: mixer_strip.cc:719 mixer_strip.cc:845 -msgid "Disconnect" -msgstr "Kopla frÃ¥" - -#: ardour_ui_ed.cc:222 +#: ardour_ui_ed.cc:189 msgid "Quit" msgstr "Avslutt" -#: ardour_ui_ed.cc:226 +#: ardour_ui_ed.cc:193 msgid "Maximise Editor Space" msgstr "Gje redigeringa mest plass" -#: ardour_ui_ed.cc:227 +#: ardour_ui_ed.cc:194 msgid "Show Toolbars" msgstr "Vis verktylinene" -#: ardour_ui_ed.cc:230 mixer_ui.cc:1865 mixer_ui.cc:1871 +#: ardour_ui_ed.cc:197 mixer_ui.cc:1865 mixer_ui.cc:1871 msgid "Window|Mixer" msgstr "Vindauga|miksar" -#: ardour_ui_ed.cc:234 midi_tracer.cc:39 +#: ardour_ui_ed.cc:198 +msgid "Toggle Editor+Mixer" +msgstr "" + +#: ardour_ui_ed.cc:199 meterbridge.cc:230 meterbridge.cc:236 +msgid "Window|Meterbridge" +msgstr "" + +#: ardour_ui_ed.cc:201 midi_tracer.cc:42 msgid "MIDI Tracer" msgstr "MIDI-sporar" -#: ardour_ui_ed.cc:236 +#: ardour_ui_ed.cc:203 msgid "Chat" msgstr "Prat" -#: ardour_ui_ed.cc:238 +#: ardour_ui_ed.cc:205 msgid "Help|Manual" msgstr "Hjelp|Rettleiing" -#: ardour_ui_ed.cc:239 +#: ardour_ui_ed.cc:206 msgid "Reference" msgstr "Referanse" -#: ardour_ui_ed.cc:241 plugin_ui.cc:418 +#: ardour_ui_ed.cc:208 plugin_ui.cc:415 msgid "Save" msgstr "Lagre" -#: ardour_ui_ed.cc:249 rc_option_editor.cc:1114 rc_option_editor.cc:1125 -#: rc_option_editor.cc:1134 rc_option_editor.cc:1147 rc_option_editor.cc:1160 -#: rc_option_editor.cc:1169 rc_option_editor.cc:1179 rc_option_editor.cc:1181 -#: rc_option_editor.cc:1191 rc_option_editor.cc:1207 rc_option_editor.cc:1220 -#: rc_option_editor.cc:1238 rc_option_editor.cc:1240 rc_option_editor.cc:1254 -#: rc_option_editor.cc:1257 rc_option_editor.cc:1259 rc_option_editor.cc:1276 -#: rc_option_editor.cc:1287 +#: ardour_ui_ed.cc:216 rc_option_editor.cc:1112 rc_option_editor.cc:1123 +#: rc_option_editor.cc:1132 rc_option_editor.cc:1145 rc_option_editor.cc:1158 +#: rc_option_editor.cc:1167 rc_option_editor.cc:1177 rc_option_editor.cc:1179 +#: rc_option_editor.cc:1189 rc_option_editor.cc:1205 rc_option_editor.cc:1218 +#: rc_option_editor.cc:1236 rc_option_editor.cc:1238 rc_option_editor.cc:1252 +#: rc_option_editor.cc:1255 rc_option_editor.cc:1257 rc_option_editor.cc:1274 +#: rc_option_editor.cc:1285 msgid "Transport" msgstr "Speling" -#: ardour_ui_ed.cc:255 engine_dialog.cc:85 +#: ardour_ui_ed.cc:222 msgid "Stop" msgstr "Stopp" -#: ardour_ui_ed.cc:258 +#: ardour_ui_ed.cc:225 msgid "Roll" msgstr "Rull" -#: ardour_ui_ed.cc:262 +#: ardour_ui_ed.cc:229 msgid "Start/Stop" msgstr "Start/stopp" -#: ardour_ui_ed.cc:265 +#: ardour_ui_ed.cc:232 msgid "Start/Continue/Stop" msgstr "Start/hald fram/stopp" -#: ardour_ui_ed.cc:268 +#: ardour_ui_ed.cc:235 msgid "Stop and Forget Capture" msgstr "Stopp og gløym opptaket" -#: ardour_ui_ed.cc:278 +#: ardour_ui_ed.cc:245 msgid "Transition To Roll" msgstr "Overgang til rulling" -#: ardour_ui_ed.cc:282 +#: ardour_ui_ed.cc:249 msgid "Transition To Reverse" msgstr "Overgang til baklengs" -#: ardour_ui_ed.cc:286 +#: ardour_ui_ed.cc:253 msgid "Play Loop Range" msgstr "Spel lykkje-omrÃ¥det" -#: ardour_ui_ed.cc:289 +#: ardour_ui_ed.cc:256 msgid "Play Selected Range" msgstr "Spel det valte omrÃ¥det" -#: ardour_ui_ed.cc:292 +#: ardour_ui_ed.cc:259 msgid "Play Selection w/Preroll" msgstr "Spel utvalet m/førrull" -#: ardour_ui_ed.cc:296 +#: ardour_ui_ed.cc:263 msgid "Enable Record" msgstr "Skru pÃ¥ opptak" -#: ardour_ui_ed.cc:299 +#: ardour_ui_ed.cc:266 msgid "Start Recording" msgstr "Start opptak" -#: ardour_ui_ed.cc:303 +#: ardour_ui_ed.cc:270 msgid "Rewind" msgstr "Spol bakover" -#: ardour_ui_ed.cc:306 +#: ardour_ui_ed.cc:273 msgid "Rewind (Slow)" msgstr "Spol sakte bakover" -#: ardour_ui_ed.cc:309 +#: ardour_ui_ed.cc:276 msgid "Rewind (Fast)" msgstr "Spol fort bakover" -#: ardour_ui_ed.cc:312 startup.cc:727 +#: ardour_ui_ed.cc:279 msgid "Forward" msgstr "Framover" -#: ardour_ui_ed.cc:315 +#: ardour_ui_ed.cc:282 msgid "Forward (Slow)" msgstr "Spol sakte framover" -#: ardour_ui_ed.cc:318 +#: ardour_ui_ed.cc:285 msgid "Forward (Fast)" msgstr "Spol fort framover" -#: ardour_ui_ed.cc:321 +#: ardour_ui_ed.cc:288 msgid "Goto Zero" msgstr "GÃ¥ til null" -#: ardour_ui_ed.cc:324 +#: ardour_ui_ed.cc:291 msgid "Goto Start" msgstr "GÃ¥ til starten" -#: ardour_ui_ed.cc:327 +#: ardour_ui_ed.cc:294 msgid "Goto End" msgstr "GÃ¥ til slutten" -#: ardour_ui_ed.cc:330 +#: ardour_ui_ed.cc:297 msgid "Goto Wall Clock" msgstr "GÃ¥ til Veggur" -#: ardour_ui_ed.cc:334 +#: ardour_ui_ed.cc:301 msgid "Focus On Clock" msgstr "Fokuser pÃ¥ klokka" -#: ardour_ui_ed.cc:338 ardour_ui_ed.cc:347 audio_clock.cc:2046 editor.cc:237 +#: ardour_ui_ed.cc:305 ardour_ui_ed.cc:314 audio_clock.cc:2046 editor.cc:237 #: editor_actions.cc:544 editor_actions.cc:553 export_timespan_selector.cc:88 #: session_option_editor.cc:41 session_option_editor.cc:61 #: session_option_editor.cc:80 session_option_editor.cc:96 @@ -1708,129 +1833,125 @@ msgstr "Fokuser pÃ¥ klokka" msgid "Timecode" msgstr "Tidskode" -#: ardour_ui_ed.cc:340 ardour_ui_ed.cc:349 editor_actions.cc:542 +#: ardour_ui_ed.cc:307 ardour_ui_ed.cc:316 editor_actions.cc:542 msgid "Bars & Beats" msgstr "Takter og taktslag" -#: ardour_ui_ed.cc:342 ardour_ui_ed.cc:351 +#: ardour_ui_ed.cc:309 ardour_ui_ed.cc:318 msgid "Minutes & Seconds" msgstr "Minutt og sekund" -#: ardour_ui_ed.cc:344 ardour_ui_ed.cc:353 audio_clock.cc:2050 editor.cc:238 +#: ardour_ui_ed.cc:311 ardour_ui_ed.cc:320 audio_clock.cc:2050 editor.cc:238 #: editor_actions.cc:543 msgid "Samples" msgstr "Punktprøver" -#: ardour_ui_ed.cc:356 +#: ardour_ui_ed.cc:323 msgid "Punch In" msgstr "SlÃ¥ inn" -#: ardour_ui_ed.cc:357 mixer_strip.cc:1905 route_ui.cc:137 +#: ardour_ui_ed.cc:324 mixer_strip.cc:1905 route_ui.cc:137 #: time_info_box.cc:113 msgid "In" msgstr "Inn" -#: ardour_ui_ed.cc:360 +#: ardour_ui_ed.cc:327 msgid "Punch Out" msgstr "SlÃ¥ ut" -#: ardour_ui_ed.cc:361 time_info_box.cc:114 +#: ardour_ui_ed.cc:328 time_info_box.cc:114 msgid "Out" msgstr "Ut" -#: ardour_ui_ed.cc:364 +#: ardour_ui_ed.cc:331 msgid "Punch In/Out" msgstr "SlÃ¥ inn og ut" -#: ardour_ui_ed.cc:365 +#: ardour_ui_ed.cc:332 msgid "In/Out" msgstr "Inn/ut" -#: ardour_ui_ed.cc:368 rc_option_editor.cc:1071 +#: ardour_ui_ed.cc:335 rc_option_editor.cc:1069 msgid "Click" msgstr "Klikk" -#: ardour_ui_ed.cc:371 +#: ardour_ui_ed.cc:338 msgid "Auto Input" msgstr "Autoinngang" -#: ardour_ui_ed.cc:374 +#: ardour_ui_ed.cc:341 msgid "Auto Play" msgstr "Autospel" -#: ardour_ui_ed.cc:385 +#: ardour_ui_ed.cc:352 msgid "Sync Startup to Video" msgstr "Synk oppstart til video" -#: ardour_ui_ed.cc:387 +#: ardour_ui_ed.cc:354 msgid "Time Master" msgstr "Hovudklokke" -#: ardour_ui_ed.cc:394 +#: ardour_ui_ed.cc:361 msgid "Toggle Record Enable Track %1" msgstr "Skru pÃ¥/av opptak for spor %1" -#: ardour_ui_ed.cc:401 +#: ardour_ui_ed.cc:368 msgid "Percentage" msgstr "Prosent" -#: ardour_ui_ed.cc:402 shuttle_control.cc:169 +#: ardour_ui_ed.cc:369 shuttle_control.cc:169 msgid "Semitones" msgstr "Halvtonar" -#: ardour_ui_ed.cc:406 +#: ardour_ui_ed.cc:373 msgid "Send MTC" msgstr "Send MTC (Midi Time Code)" -#: ardour_ui_ed.cc:408 +#: ardour_ui_ed.cc:375 msgid "Send MMC" msgstr "Send MMC (Midi Machine Control)" -#: ardour_ui_ed.cc:410 +#: ardour_ui_ed.cc:377 msgid "Use MMC" msgstr "Bruk MMC (Midi Machine Control)" -#: ardour_ui_ed.cc:412 rc_option_editor.cc:1710 +#: ardour_ui_ed.cc:379 rc_option_editor.cc:1698 msgid "Send MIDI Clock" msgstr "Send MIDI-klokke" -#: ardour_ui_ed.cc:414 +#: ardour_ui_ed.cc:381 msgid "Send MIDI Feedback" msgstr "Send MIDI-svar" -#: ardour_ui_ed.cc:420 +#: ardour_ui_ed.cc:387 msgid "Panic" msgstr "Panikk" -#: ardour_ui_ed.cc:560 +#: ardour_ui_ed.cc:472 msgid "Wall Clock" msgstr "Veggur" -#: ardour_ui_ed.cc:561 +#: ardour_ui_ed.cc:473 msgid "Disk Space" msgstr "Diskplass" -#: ardour_ui_ed.cc:562 +#: ardour_ui_ed.cc:474 msgid "DSP" msgstr "DSP" -#: ardour_ui_ed.cc:563 +#: ardour_ui_ed.cc:475 msgid "Buffers" msgstr "Bufrar" -#: ardour_ui_ed.cc:564 -msgid "JACK Sampling Rate and Latency" -msgstr "JACK-punktrate og -treigskap" - -#: ardour_ui_ed.cc:565 +#: ardour_ui_ed.cc:477 msgid "Timecode Format" msgstr "Tidskodeformat" -#: ardour_ui_ed.cc:566 +#: ardour_ui_ed.cc:478 msgid "File Format" msgstr "Filformat" -#: ardour_ui_options.cc:65 +#: ardour_ui_options.cc:61 msgid "" "It is not possible to use JACK as the the sync source\n" "when the pull up/down setting is non-zero." @@ -1838,15 +1959,15 @@ msgstr "" "Du kan ikkje bruka JACK som synkkjelde\n" "nÃ¥r ned- og opptrekk-instillinga ikkje er null." -#: ardour_ui_options.cc:321 +#: ardour_ui_options.cc:317 msgid "Internal" msgstr "Intern" -#: ardour_ui_options.cc:482 +#: ardour_ui_options.cc:468 msgid "Enable/Disable external positional sync" msgstr "Skru pÃ¥/av ekstern posisjonssynk" -#: ardour_ui_options.cc:484 +#: ardour_ui_options.cc:470 msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "Ikkje mogleg Ã¥ synka til JACK: opp- og nedtrekk for video er fastsett" @@ -1965,32 +2086,32 @@ msgid "hide track" msgstr "gøym spor" #: automation_time_axis.cc:255 automation_time_axis.cc:307 -#: automation_time_axis.cc:496 gain_meter.cc:195 generic_pluginui.cc:456 -#: generic_pluginui.cc:746 panner_ui.cc:150 +#: automation_time_axis.cc:496 gain_meter.cc:194 generic_pluginui.cc:454 +#: generic_pluginui.cc:775 panner_ui.cc:149 msgid "Automation|Manual" msgstr "Automasjon|Manuell" #: automation_time_axis.cc:257 automation_time_axis.cc:318 -#: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 -#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 -#: generic_pluginui.cc:459 generic_pluginui.cc:748 midi_time_axis.cc:1488 -#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:153 +#: automation_time_axis.cc:501 editor.cc:1937 editor.cc:2014 +#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:197 +#: generic_pluginui.cc:457 generic_pluginui.cc:777 midi_time_axis.cc:1488 +#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:152 msgid "Play" msgstr "Spel" #: automation_time_axis.cc:259 automation_time_axis.cc:329 -#: automation_time_axis.cc:506 gain_meter.cc:201 generic_pluginui.cc:462 -#: generic_pluginui.cc:750 panner_ui.cc:156 +#: automation_time_axis.cc:506 gain_meter.cc:200 generic_pluginui.cc:460 +#: generic_pluginui.cc:779 panner_ui.cc:155 msgid "Write" msgstr "Skriv" #: automation_time_axis.cc:261 automation_time_axis.cc:340 -#: automation_time_axis.cc:511 gain_meter.cc:204 generic_pluginui.cc:465 -#: generic_pluginui.cc:752 panner_ui.cc:159 +#: automation_time_axis.cc:511 gain_meter.cc:203 generic_pluginui.cc:463 +#: generic_pluginui.cc:781 panner_ui.cc:158 msgid "Touch" msgstr "Rør" -#: automation_time_axis.cc:351 generic_pluginui.cc:468 meter_patterns.cc:108 +#: automation_time_axis.cc:351 generic_pluginui.cc:466 meter_patterns.cc:108 msgid "???" msgstr "???" @@ -2015,8 +2136,8 @@ msgstr "Tilstand" msgid "Discrete" msgstr "Diskret" -#: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 -#: editor.cc:1526 export_format_dialog.cc:476 +#: automation_time_axis.cc:537 editor.cc:1458 editor.cc:1465 editor.cc:1521 +#: editor.cc:1527 export_format_dialog.cc:476 msgid "Linear" msgstr "Rettlinja" @@ -2047,13 +2168,13 @@ msgstr "Inngang" msgid "Output" msgstr "Utgang" -#: bundle_manager.cc:264 editor.cc:1974 editor_actions.cc:90 +#: bundle_manager.cc:264 editor.cc:1978 editor_actions.cc:90 #: editor_actions.cc:100 msgid "Edit" msgstr "Rediger" -#: bundle_manager.cc:265 editor.cc:5493 editor_actions.cc:310 -#: editor_actions.cc:368 plugin_ui.cc:419 processor_box.cc:2229 +#: bundle_manager.cc:265 editor.cc:5497 editor_actions.cc:310 +#: editor_actions.cc:368 plugin_ui.cc:416 processor_box.cc:2268 #: route_time_axis.cc:713 msgid "Delete" msgstr "Slett" @@ -2230,164 +2351,164 @@ msgstr "Lengd" msgid "edit note" msgstr "endra noten" -#: editor.cc:137 editor.cc:3429 +#: editor.cc:137 editor.cc:3433 msgid "CD Frames" msgstr "CD-rammer" -#: editor.cc:138 editor.cc:3431 +#: editor.cc:138 editor.cc:3435 msgid "Timecode Frames" msgstr "Tidskoderammer" -#: editor.cc:139 editor.cc:3433 +#: editor.cc:139 editor.cc:3437 msgid "Timecode Seconds" msgstr "Tidskodesekund" -#: editor.cc:140 editor.cc:3435 +#: editor.cc:140 editor.cc:3439 msgid "Timecode Minutes" msgstr "Tidskodeminutt" -#: editor.cc:141 editor.cc:3437 +#: editor.cc:141 editor.cc:3441 msgid "Seconds" msgstr "Sekund" -#: editor.cc:142 editor.cc:3439 +#: editor.cc:142 editor.cc:3443 msgid "Minutes" msgstr "Minutt" -#: editor.cc:143 editor.cc:3413 quantize_dialog.cc:37 quantize_dialog.cc:141 +#: editor.cc:143 editor.cc:3417 quantize_dialog.cc:37 quantize_dialog.cc:141 msgid "Beats/128" msgstr "Slag/128" -#: editor.cc:144 editor.cc:3411 quantize_dialog.cc:38 quantize_dialog.cc:143 +#: editor.cc:144 editor.cc:3415 quantize_dialog.cc:38 quantize_dialog.cc:143 msgid "Beats/64" msgstr "Slag/64" -#: editor.cc:145 editor.cc:3409 quantize_dialog.cc:39 quantize_dialog.cc:145 +#: editor.cc:145 editor.cc:3413 quantize_dialog.cc:39 quantize_dialog.cc:145 msgid "Beats/32" msgstr "Slag/32" -#: editor.cc:146 editor.cc:3407 +#: editor.cc:146 editor.cc:3411 msgid "Beats/28" msgstr "Slag/28" -#: editor.cc:147 editor.cc:3405 +#: editor.cc:147 editor.cc:3409 msgid "Beats/24" msgstr "Slag/24" -#: editor.cc:148 editor.cc:3403 +#: editor.cc:148 editor.cc:3407 msgid "Beats/20" msgstr "Slag/20" -#: editor.cc:149 editor.cc:3401 quantize_dialog.cc:40 quantize_dialog.cc:147 +#: editor.cc:149 editor.cc:3405 quantize_dialog.cc:40 quantize_dialog.cc:147 msgid "Beats/16" msgstr "Slag/16" -#: editor.cc:150 editor.cc:3399 +#: editor.cc:150 editor.cc:3403 msgid "Beats/14" msgstr "Slag/14" -#: editor.cc:151 editor.cc:3397 +#: editor.cc:151 editor.cc:3401 msgid "Beats/12" msgstr "Slag/12" -#: editor.cc:152 editor.cc:3395 +#: editor.cc:152 editor.cc:3399 msgid "Beats/10" msgstr "Slag/10" -#: editor.cc:153 editor.cc:3393 quantize_dialog.cc:41 quantize_dialog.cc:149 +#: editor.cc:153 editor.cc:3397 quantize_dialog.cc:41 quantize_dialog.cc:149 msgid "Beats/8" msgstr "Slag/8" -#: editor.cc:154 editor.cc:3391 +#: editor.cc:154 editor.cc:3395 msgid "Beats/7" msgstr "Slag/7" -#: editor.cc:155 editor.cc:3389 +#: editor.cc:155 editor.cc:3393 msgid "Beats/6" msgstr "Slag/6" -#: editor.cc:156 editor.cc:3387 +#: editor.cc:156 editor.cc:3391 msgid "Beats/5" msgstr "Slag/5" -#: editor.cc:157 editor.cc:3385 quantize_dialog.cc:42 quantize_dialog.cc:151 +#: editor.cc:157 editor.cc:3389 quantize_dialog.cc:42 quantize_dialog.cc:151 msgid "Beats/4" msgstr "Slag/4" -#: editor.cc:158 editor.cc:3383 quantize_dialog.cc:43 quantize_dialog.cc:153 +#: editor.cc:158 editor.cc:3387 quantize_dialog.cc:43 quantize_dialog.cc:153 msgid "Beats/3" msgstr "Slag/3" -#: editor.cc:159 editor.cc:3381 quantize_dialog.cc:44 quantize_dialog.cc:155 +#: editor.cc:159 editor.cc:3385 quantize_dialog.cc:44 quantize_dialog.cc:155 msgid "Beats/2" msgstr "Slag/2" -#: editor.cc:160 editor.cc:3415 quantize_dialog.cc:45 quantize_dialog.cc:157 +#: editor.cc:160 editor.cc:3419 quantize_dialog.cc:45 quantize_dialog.cc:157 msgid "Beats" msgstr "Slag" -#: editor.cc:161 editor.cc:3417 +#: editor.cc:161 editor.cc:3421 msgid "Bars" msgstr "Takter" -#: editor.cc:162 editor.cc:3419 +#: editor.cc:162 editor.cc:3423 msgid "Marks" msgstr "Merke" -#: editor.cc:163 editor.cc:3421 +#: editor.cc:163 editor.cc:3425 msgid "Region starts" msgstr "Bolk-startar" -#: editor.cc:164 editor.cc:3423 +#: editor.cc:164 editor.cc:3427 msgid "Region ends" msgstr "Bolk-endar" -#: editor.cc:165 editor.cc:3427 +#: editor.cc:165 editor.cc:3431 msgid "Region syncs" msgstr "Bolk-synkar" -#: editor.cc:166 editor.cc:3425 +#: editor.cc:166 editor.cc:3429 msgid "Region bounds" msgstr "Bolkgrenser" -#: editor.cc:171 editor.cc:3455 editor_actions.cc:485 +#: editor.cc:171 editor.cc:3459 editor_actions.cc:485 msgid "No Grid" msgstr "Ikkje vis rutenett" -#: editor.cc:172 editor.cc:3457 editor_actions.cc:486 +#: editor.cc:172 editor.cc:3461 editor_actions.cc:486 msgid "Grid" msgstr "Rutenett" -#: editor.cc:173 editor.cc:3459 editor_actions.cc:487 +#: editor.cc:173 editor.cc:3463 editor_actions.cc:487 msgid "Magnetic" msgstr "Magnetisk" -#: editor.cc:178 editor.cc:188 editor.cc:3498 editor.cc:3523 +#: editor.cc:178 editor.cc:188 editor.cc:3502 editor.cc:3527 #: editor_actions.cc:117 editor_actions.cc:468 msgid "Playhead" msgstr "Spelehovudet" -#: editor.cc:179 editor.cc:3496 editor_actions.cc:470 +#: editor.cc:179 editor.cc:3500 editor_actions.cc:470 msgid "Marker" msgstr "Markør" -#: editor.cc:180 editor.cc:189 editor.cc:3525 editor_actions.cc:469 +#: editor.cc:180 editor.cc:189 editor.cc:3529 editor_actions.cc:469 msgid "Mouse" msgstr "Mus" -#: editor.cc:185 editor.cc:3517 mono_panner_editor.cc:42 +#: editor.cc:185 editor.cc:3521 mono_panner_editor.cc:42 msgid "Left" msgstr "Venstre" -#: editor.cc:186 editor.cc:3519 mono_panner_editor.cc:47 +#: editor.cc:186 editor.cc:3523 mono_panner_editor.cc:47 msgid "Right" msgstr "Høgre" -#: editor.cc:187 editor.cc:3521 +#: editor.cc:187 editor.cc:3525 msgid "Center" msgstr "Midten" -#: editor.cc:190 editor.cc:3090 editor.cc:3527 +#: editor.cc:190 editor.cc:3094 editor.cc:3531 msgid "Edit point" msgstr "Redigeringspunkt" @@ -2447,334 +2568,342 @@ msgstr "" msgid "mode" msgstr "modus" -#: editor.cc:542 +#: editor.cc:541 msgid "Regions" msgstr "Bolkar" -#: editor.cc:543 +#: editor.cc:542 msgid "Tracks & Busses" msgstr "Spor og bussar" -#: editor.cc:544 +#: editor.cc:543 msgid "Snapshots" msgstr "Snøggbilete" -#: editor.cc:545 +#: editor.cc:544 msgid "Track & Bus Groups" msgstr "Spor- og bussgrupper" -#: editor.cc:546 +#: editor.cc:545 msgid "Ranges & Marks" msgstr "OmrÃ¥de og merke" -#: editor.cc:690 editor.cc:5345 rc_option_editor.cc:1294 -#: rc_option_editor.cc:1302 rc_option_editor.cc:1310 rc_option_editor.cc:1318 -#: rc_option_editor.cc:1335 rc_option_editor.cc:1337 rc_option_editor.cc:1345 -#: rc_option_editor.cc:1353 rc_option_editor.cc:1373 rc_option_editor.cc:1385 -#: rc_option_editor.cc:1387 rc_option_editor.cc:1395 rc_option_editor.cc:1403 -#: rc_option_editor.cc:1411 rc_option_editor.cc:1419 rc_option_editor.cc:1427 -#: rc_option_editor.cc:1442 rc_option_editor.cc:1446 +#: editor.cc:690 editor.cc:5349 rc_option_editor.cc:1292 +#: rc_option_editor.cc:1300 rc_option_editor.cc:1308 rc_option_editor.cc:1316 +#: rc_option_editor.cc:1333 rc_option_editor.cc:1335 rc_option_editor.cc:1343 +#: rc_option_editor.cc:1351 rc_option_editor.cc:1371 rc_option_editor.cc:1383 +#: rc_option_editor.cc:1385 rc_option_editor.cc:1393 rc_option_editor.cc:1401 +#: rc_option_editor.cc:1409 rc_option_editor.cc:1417 rc_option_editor.cc:1432 +#: rc_option_editor.cc:1436 msgid "Editor" msgstr "Redigering" -#: editor.cc:1215 editor.cc:1225 editor.cc:4440 editor_actions.cc:130 +#: editor.cc:1215 editor.cc:1225 editor.cc:4444 editor_actions.cc:130 #: editor_actions.cc:1813 msgid "Loop" msgstr "Spel i lykkje" -#: editor.cc:1231 editor.cc:1241 editor.cc:4467 editor_actions.cc:131 +#: editor.cc:1231 editor.cc:1241 editor.cc:4471 editor_actions.cc:131 #: time_info_box.cc:67 msgid "Punch" msgstr "SlÃ¥ inn/ut" -#: editor.cc:1352 +#: editor.cc:1353 msgid "Linear (for highly correlated material)" msgstr "Lineært (for særs nivÃ¥rett materiale)" -#: editor.cc:1371 editor.cc:1492 editor.cc:1554 +#: editor.cc:1363 editor.cc:1500 editor.cc:1562 +msgid "Constant power" +msgstr "" + +#: editor.cc:1372 editor.cc:1493 editor.cc:1555 msgid "Symmetric" msgstr "Symmetrisk" -#: editor.cc:1381 editor.cc:1474 editor.cc:1536 +#: editor.cc:1382 editor.cc:1475 editor.cc:1537 msgid "Slow" msgstr "Sakte" -#: editor.cc:1390 editor.cc:1483 editor.cc:1545 sfdb_ui.cc:1627 +#: editor.cc:1391 editor.cc:1484 editor.cc:1546 sfdb_ui.cc:1627 #: sfdb_ui.cc:1736 msgid "Fast" msgstr "Fort" -#: editor.cc:1437 +#: editor.cc:1438 msgid "programming error: fade in canvas item has no regionview data pointer!" msgstr "" "Programmeringsfeil: Inntoningslerretet har ingen datapeikarar for bolkvising!" -#: editor.cc:1448 editor.cc:1512 +#: editor.cc:1449 editor.cc:1513 msgid "Deactivate" msgstr "SlÃ¥ av" -#: editor.cc:1450 editor.cc:1514 +#: editor.cc:1451 editor.cc:1515 msgid "Activate" msgstr "SlÃ¥ pÃ¥" -#: editor.cc:1458 editor.cc:1521 +#: editor.cc:1459 editor.cc:1522 msgid "Slowest" msgstr "Saktast" -#: editor.cc:1572 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 +#: editor.cc:1573 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 msgid "programming error: " msgstr "programmeringsfeil: " -#: editor.cc:1673 editor.cc:1681 editor_ops.cc:3522 +#: editor.cc:1674 editor.cc:1682 editor_ops.cc:3522 msgid "Freeze" msgstr "Frys" -#: editor.cc:1677 +#: editor.cc:1678 msgid "Unfreeze" msgstr "U-frys" -#: editor.cc:1816 +#: editor.cc:1817 msgid "Selected Regions" msgstr "Valde bolkar" -#: editor.cc:1852 editor_markers.cc:895 +#: editor.cc:1853 editor_markers.cc:895 msgid "Play Range" msgstr "Spel omrÃ¥det" -#: editor.cc:1853 editor_markers.cc:898 +#: editor.cc:1854 editor_markers.cc:898 msgid "Loop Range" msgstr "Spel omrÃ¥det i lykkje" -#: editor.cc:1862 editor_actions.cc:332 +#: editor.cc:1863 editor_actions.cc:332 msgid "Move Range Start to Previous Region Boundary" msgstr "Flytt omrÃ¥destarten til førre bolkgrense" -#: editor.cc:1869 editor_actions.cc:339 +#: editor.cc:1870 editor_actions.cc:339 msgid "Move Range Start to Next Region Boundary" msgstr "Flytt omrÃ¥destarten til neste bolkgrense" -#: editor.cc:1876 editor_actions.cc:346 +#: editor.cc:1877 editor_actions.cc:346 msgid "Move Range End to Previous Region Boundary" msgstr "Flytt omrÃ¥deslutten til førre bolkgrense" -#: editor.cc:1883 editor_actions.cc:353 +#: editor.cc:1884 editor_actions.cc:353 msgid "Move Range End to Next Region Boundary" msgstr "Flytt omrÃ¥deslutten til neste bolkgrense" -#: editor.cc:1889 +#: editor.cc:1890 msgid "Convert to Region In-Place" msgstr "Gjer om til omrÃ¥de-pÃ¥-staden" -#: editor.cc:1890 +#: editor.cc:1891 msgid "Convert to Region in Region List" msgstr "Gjer om til bolk i bolklista" -#: editor.cc:1893 editor_markers.cc:925 +#: editor.cc:1894 editor_markers.cc:925 msgid "Select All in Range" msgstr "Vel alt innan omrÃ¥det" -#: editor.cc:1896 +#: editor.cc:1897 msgid "Set Loop from Range" msgstr "Set lykkje frÃ¥ omrÃ¥det" -#: editor.cc:1897 +#: editor.cc:1898 msgid "Set Punch from Range" msgstr "Set innslag frÃ¥ omrÃ¥de" -#: editor.cc:1900 +#: editor.cc:1901 msgid "Add Range Markers" msgstr "Legg til omrÃ¥demarkørar" -#: editor.cc:1903 +#: editor.cc:1904 msgid "Crop Region to Range" msgstr "Skjer bolken til omrÃ¥det" -#: editor.cc:1904 +#: editor.cc:1905 msgid "Fill Range with Region" msgstr "Fyll omrÃ¥det med bolken" -#: editor.cc:1905 editor_actions.cc:289 +#: editor.cc:1906 editor_actions.cc:289 msgid "Duplicate Range" msgstr "Klon omrÃ¥det" -#: editor.cc:1908 +#: editor.cc:1909 msgid "Consolidate Range" msgstr "Sikra omrÃ¥det" -#: editor.cc:1909 +#: editor.cc:1910 msgid "Consolidate Range With Processing" msgstr "Sikra omrÃ¥det med prosessering" -#: editor.cc:1910 +#: editor.cc:1911 msgid "Bounce Range to Region List" msgstr "Miks ned omrÃ¥det til bolkliste" -#: editor.cc:1911 +#: editor.cc:1912 msgid "Bounce Range to Region List With Processing" msgstr "Miks ned omrÃ¥det til bolkliste med prosessering" -#: editor.cc:1912 editor_markers.cc:908 +#: editor.cc:1913 editor_markers.cc:908 msgid "Export Range..." msgstr "Eksporter omrÃ¥det..." -#: editor.cc:1927 editor.cc:2008 editor_actions.cc:281 +#: editor.cc:1915 +msgid "Export Video Range..." +msgstr "" + +#: editor.cc:1931 editor.cc:2012 editor_actions.cc:281 msgid "Play From Edit Point" msgstr "Spel frÃ¥ redigeringspunktet" -#: editor.cc:1928 editor.cc:2009 +#: editor.cc:1932 editor.cc:2013 msgid "Play From Start" msgstr "Spel frÃ¥ starten" -#: editor.cc:1929 +#: editor.cc:1933 msgid "Play Region" msgstr "Spel bolken" -#: editor.cc:1931 +#: editor.cc:1935 msgid "Loop Region" msgstr "Spel bolken i lykkje" -#: editor.cc:1941 editor.cc:2018 +#: editor.cc:1945 editor.cc:2022 msgid "Select All in Track" msgstr "Vel heile sporet" -#: editor.cc:1942 editor.cc:2019 editor_actions.cc:185 -#: export_timespan_selector.cc:53 processor_box.cc:2237 +#: editor.cc:1946 editor.cc:2023 editor_actions.cc:185 +#: export_timespan_selector.cc:53 processor_box.cc:2276 msgid "Select All" msgstr "Vel alt" -#: editor.cc:1943 editor.cc:2020 +#: editor.cc:1947 editor.cc:2024 msgid "Invert Selection in Track" msgstr "Omvend valet i sporet" -#: editor.cc:1944 editor.cc:2021 editor_actions.cc:187 +#: editor.cc:1948 editor.cc:2025 editor_actions.cc:187 msgid "Invert Selection" msgstr "Omvend utvalet" -#: editor.cc:1946 +#: editor.cc:1950 msgid "Set Range to Loop Range" msgstr "Gjer lykkje-omrÃ¥det til eige omrÃ¥de" -#: editor.cc:1947 +#: editor.cc:1951 msgid "Set Range to Punch Range" msgstr "Gjer innslagsomrÃ¥det til eige omrÃ¥de" -#: editor.cc:1949 editor.cc:2023 editor_actions.cc:188 +#: editor.cc:1953 editor.cc:2027 editor_actions.cc:188 msgid "Select All After Edit Point" msgstr "Vel alt etter redigeringspunktet" -#: editor.cc:1950 editor.cc:2024 editor_actions.cc:189 +#: editor.cc:1954 editor.cc:2028 editor_actions.cc:189 msgid "Select All Before Edit Point" msgstr "Vel alt før redigeringspunktet" -#: editor.cc:1951 editor.cc:2025 +#: editor.cc:1955 editor.cc:2029 msgid "Select All After Playhead" msgstr "Vel alt etter spelehovudet" -#: editor.cc:1952 editor.cc:2026 +#: editor.cc:1956 editor.cc:2030 msgid "Select All Before Playhead" msgstr "Vel alt før spelehovudet" -#: editor.cc:1953 +#: editor.cc:1957 msgid "Select All Between Playhead and Edit Point" msgstr "Vel alt mellom spelehovudet og redigeringspunktet" -#: editor.cc:1954 +#: editor.cc:1958 msgid "Select All Within Playhead and Edit Point" msgstr "Vel alt innanfor spelehovudet og redigeringspunktet" -#: editor.cc:1955 +#: editor.cc:1959 msgid "Select Range Between Playhead and Edit Point" msgstr "Vel omrÃ¥de mellom spelehovudet og redigeringspunktet" -#: editor.cc:1957 editor.cc:2028 editor_actions.cc:127 editor_actions.cc:128 +#: editor.cc:1961 editor.cc:2032 editor_actions.cc:127 editor_actions.cc:128 msgid "Select" msgstr "Vel" -#: editor.cc:1965 editor.cc:2036 editor_actions.cc:309 processor_box.cc:2222 +#: editor.cc:1969 editor.cc:2040 editor_actions.cc:309 processor_box.cc:2261 msgid "Cut" msgstr "Klypp ut" -#: editor.cc:1966 editor.cc:2037 editor_actions.cc:312 processor_box.cc:2225 +#: editor.cc:1970 editor.cc:2041 editor_actions.cc:312 processor_box.cc:2264 msgid "Copy" msgstr "Kopier" -#: editor.cc:1967 editor.cc:2038 editor_actions.cc:313 processor_box.cc:2233 +#: editor.cc:1971 editor.cc:2042 editor_actions.cc:313 processor_box.cc:2272 msgid "Paste" msgstr "Lim inn" -#: editor.cc:1971 editor_actions.cc:87 +#: editor.cc:1975 editor_actions.cc:87 msgid "Align" msgstr "Juster" -#: editor.cc:1972 +#: editor.cc:1976 msgid "Align Relative" msgstr "Juster relativt" -#: editor.cc:1979 +#: editor.cc:1983 msgid "Insert Selected Region" msgstr "Set inn den valde bolken" -#: editor.cc:1980 +#: editor.cc:1984 msgid "Insert Existing Media" msgstr "Set inn eksisterande media" -#: editor.cc:1989 editor.cc:2045 +#: editor.cc:1993 editor.cc:2049 msgid "Nudge Entire Track Later" msgstr "Skubb heile sporet seinare" -#: editor.cc:1990 editor.cc:2046 +#: editor.cc:1994 editor.cc:2050 msgid "Nudge Track After Edit Point Later" msgstr "Skubb sporet etter redigeringspunktet seinare" -#: editor.cc:1991 editor.cc:2047 +#: editor.cc:1995 editor.cc:2051 msgid "Nudge Entire Track Earlier" msgstr "Skubb heile sporet tidlegare" -#: editor.cc:1992 editor.cc:2048 +#: editor.cc:1996 editor.cc:2052 msgid "Nudge Track After Edit Point Earlier" msgstr "Skubb sporet etter redigeringspunktet tidlegare" -#: editor.cc:1994 editor.cc:2050 +#: editor.cc:1998 editor.cc:2054 msgid "Nudge" msgstr "Skubb" -#: editor.cc:3070 +#: editor.cc:3074 msgid "Smart Mode (add Range functions to Object mode)" msgstr "Smart modus (legg til omrÃ¥de-funksjonar i objektmodusen)" -#: editor.cc:3071 +#: editor.cc:3075 msgid "Object Mode (select/move Objects)" msgstr "Objektmodus (vel/flytt objekt)" -#: editor.cc:3072 +#: editor.cc:3076 msgid "Range Mode (select/move Ranges)" msgstr "OmrÃ¥demodus (vel/flytt omrÃ¥de)" -#: editor.cc:3073 +#: editor.cc:3077 msgid "Draw/Edit MIDI Notes" msgstr "Teikna/endra MIDI-notar" -#: editor.cc:3074 +#: editor.cc:3078 msgid "Draw Region Gain" msgstr "Teikna bolkvolumet" -#: editor.cc:3075 +#: editor.cc:3079 msgid "Select Zoom Range" msgstr "Vel zoom-omrÃ¥de" -#: editor.cc:3076 +#: editor.cc:3080 msgid "Stretch/Shrink Regions and MIDI Notes" msgstr "Strekk/krymp bolkar og MIDI-notar" -#: editor.cc:3077 +#: editor.cc:3081 msgid "Listen to Specific Regions" msgstr "Lytt pÃ¥ visse bolkar" -#: editor.cc:3078 +#: editor.cc:3082 msgid "Note Level Editing" msgstr "Rediger notenivÃ¥" -#: editor.cc:3079 +#: editor.cc:3083 msgid "" "Groups: click to (de)activate\n" "Context-click for other operations" @@ -2782,51 +2911,51 @@ msgstr "" "Grupper: klikk for Ã¥ skru av/pÃ¥\n" "Kontekst-klikk for andre handlingar" -#: editor.cc:3080 +#: editor.cc:3084 msgid "Nudge Region/Selection Later" msgstr "Skubb bolken/markeringa seinare" -#: editor.cc:3081 +#: editor.cc:3085 msgid "Nudge Region/Selection Earlier" msgstr "Skubb bolken/markeringa tidlegare" -#: editor.cc:3082 editor_actions.cc:242 +#: editor.cc:3086 editor_actions.cc:242 msgid "Zoom In" msgstr "Zoom inn" -#: editor.cc:3083 editor_actions.cc:241 +#: editor.cc:3087 editor_actions.cc:241 msgid "Zoom Out" msgstr "Zoom ut" -#: editor.cc:3084 editor_actions.cc:243 +#: editor.cc:3088 editor_actions.cc:243 msgid "Zoom to Session" msgstr "Zoom til heile økta" -#: editor.cc:3085 +#: editor.cc:3089 msgid "Zoom focus" msgstr "Zoom-fokus" -#: editor.cc:3086 +#: editor.cc:3090 msgid "Expand Tracks" msgstr "Utvid spor" -#: editor.cc:3087 +#: editor.cc:3091 msgid "Shrink Tracks" msgstr "Krymp spor" -#: editor.cc:3088 +#: editor.cc:3092 msgid "Snap/Grid Units" msgstr "Feste- og rutenetteiningar" -#: editor.cc:3089 +#: editor.cc:3093 msgid "Snap/Grid Mode" msgstr "Feste- og rutenettmodus" -#: editor.cc:3091 +#: editor.cc:3095 msgid "Edit Mode" msgstr "Endringsmodus" -#: editor.cc:3092 +#: editor.cc:3096 msgid "" "Nudge Clock\n" "(controls distance used to nudge regions and selections)" @@ -2834,39 +2963,39 @@ msgstr "" "Skubbeklokke\n" "(kontrollerer avstanden som blir brukt til Ã¥ skubba omrÃ¥de og utval)" -#: editor.cc:3194 +#: editor.cc:3198 msgid "malformed URL passed to drag-n-drop code" msgstr "feilforma adresse sendt til dra-og-slepp-koden" -#: editor.cc:3256 editor_actions.cc:291 +#: editor.cc:3260 editor_actions.cc:291 msgid "Command|Undo" msgstr "Kommando|Angra" -#: editor.cc:3258 +#: editor.cc:3262 msgid "Command|Undo (%1)" msgstr "Kommando|Angra (%1)" -#: editor.cc:3265 editor_actions.cc:292 +#: editor.cc:3269 editor_actions.cc:292 msgid "Redo" msgstr "Gjer omatt" -#: editor.cc:3267 +#: editor.cc:3271 msgid "Redo (%1)" msgstr "Gjer omatt (%1)" -#: editor.cc:3286 editor.cc:3310 editor_actions.cc:106 editor_actions.cc:1794 +#: editor.cc:3290 editor.cc:3314 editor_actions.cc:106 editor_actions.cc:1794 msgid "Duplicate" msgstr "Klon" -#: editor.cc:3287 +#: editor.cc:3291 msgid "Number of duplications:" msgstr "Kor mange klonar:" -#: editor.cc:3864 +#: editor.cc:3868 msgid "Playlist Deletion" msgstr "Slett spelelister" -#: editor.cc:3865 +#: editor.cc:3869 msgid "" "Playlist %1 is currently unused.\n" "If it is kept, its audio files will not be cleaned.\n" @@ -2876,36 +3005,37 @@ msgstr "" "Om du let henne vera, blir ingen lydfiler derifrÃ¥ rydda bort.\n" "Om du slettar henne, vil alle lydfiler derifrÃ¥ bli rydda bort." -#: editor.cc:3875 +#: editor.cc:3879 msgid "Delete Playlist" msgstr "Slett speleliste" -#: editor.cc:3876 +#: editor.cc:3880 msgid "Keep Playlist" msgstr "Ha speleliste" -#: editor.cc:3877 editor_audio_import.cc:581 editor_ops.cc:5856 -#: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 +#: editor.cc:3881 editor_audio_import.cc:581 editor_ops.cc:5856 +#: engine_dialog.cc:1711 sfdb_freesound_mootcher.cc:69 processor_box.cc:2030 +#: processor_box.cc:2055 msgid "Cancel" msgstr "Avbryt" -#: editor.cc:4021 +#: editor.cc:4025 msgid "new playlists" msgstr "nye spelelister" -#: editor.cc:4037 +#: editor.cc:4041 msgid "copy playlists" msgstr "kopier spelelister" -#: editor.cc:4052 +#: editor.cc:4056 msgid "clear playlists" msgstr "tøm spelelister" -#: editor.cc:4687 +#: editor.cc:4691 msgid "Please wait while %1 loads visual data." msgstr "Vent medan %1 lastar visuelle data" -#: editor.cc:5492 editor_markers.cc:940 panner_ui.cc:393 processor_box.cc:2253 +#: editor.cc:5496 editor_markers.cc:940 panner_ui.cc:392 processor_box.cc:2292 msgid "Edit..." msgstr "Endra..." @@ -2954,8 +3084,8 @@ msgstr "Lag" msgid "Position" msgstr "Posisjon" -#: editor_actions.cc:101 gain_meter.cc:121 gain_meter.cc:791 panner_ui.cc:177 -#: panner_ui.cc:586 +#: editor_actions.cc:101 gain_meter.cc:120 gain_meter.cc:794 panner_ui.cc:176 +#: panner_ui.cc:585 msgid "Trim" msgstr "Skjer til" @@ -3005,7 +3135,7 @@ msgstr "MIDI-oppsett" msgid "Misc Options" msgstr "Ymse val" -#: editor_actions.cc:115 rc_option_editor.cc:1460 route_group_dialog.cc:48 +#: editor_actions.cc:115 rc_option_editor.cc:1450 route_group_dialog.cc:48 #: session_option_editor.cc:218 session_option_editor.cc:225 msgid "Monitoring" msgstr "Lytting" @@ -3183,7 +3313,7 @@ msgstr "Spelehovudet til starten pÃ¥ omrÃ¥det" msgid "Playhead to Range End" msgstr "Spelehovudet til slutten av omrÃ¥det" -#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2239 +#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2278 msgid "Deselect All" msgstr "Fjern markering" @@ -3738,14 +3868,38 @@ msgstr "Lykkje/innslag" msgid "Min:Sec" msgstr "Min:sek" -#: editor_actions.cc:549 rc_option_editor.cc:1842 +#: editor_actions.cc:547 editor_actions.cc:550 +msgid "Video Monitor" +msgstr "" + +#: editor_actions.cc:549 rc_option_editor.cc:1829 msgid "Video" msgstr "" +#: editor_actions.cc:552 +msgid "Always on Top" +msgstr "" + +#: editor_actions.cc:554 +msgid "Frame number" +msgstr "" + +#: editor_actions.cc:555 +msgid "Timecode Background" +msgstr "" + #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" +#: editor_actions.cc:557 +msgid "Letterbox" +msgstr "" + +#: editor_actions.cc:558 +msgid "Original Size" +msgstr "" + #: editor_actions.cc:608 msgid "Sort" msgstr "Sorter" @@ -4208,6 +4362,10 @@ msgstr "Set inn likevel" msgid "fixed time region drag" msgstr "fast tid-bolkflytting" +#: editor_drag.cc:1700 +msgid "Video Start:" +msgstr "" + #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -4232,31 +4390,31 @@ msgstr "kopier tempomerke" msgid "move tempo mark" msgstr "flytt tempomerke" -#: editor_drag.cc:2545 +#: editor_drag.cc:2550 msgid "change fade in length" msgstr "endra inntoningslengd" -#: editor_drag.cc:2663 +#: editor_drag.cc:2668 msgid "change fade out length" msgstr "endra uttoningslengd" -#: editor_drag.cc:3018 +#: editor_drag.cc:3023 msgid "move marker" msgstr "flytt markør" -#: editor_drag.cc:3581 +#: editor_drag.cc:3586 msgid "An error occurred while executing time stretch operation" msgstr "Feil med tidsstrekkinga" -#: editor_drag.cc:4011 +#: editor_drag.cc:4016 msgid "programming_error: %1" msgstr "programming_error: %1" -#: editor_drag.cc:4081 editor_markers.cc:680 +#: editor_drag.cc:4086 editor_markers.cc:680 msgid "new range marker" msgstr "nytt omrÃ¥demerke" -#: editor_drag.cc:4762 +#: editor_drag.cc:4767 msgid "rubberband selection" msgstr "gummistrikkval" @@ -4370,8 +4528,8 @@ msgstr "utan namn" #: editor_markers.cc:1022 editor_markers.cc:1041 editor_markers.cc:1071 #: editor_markers.cc:1102 editor_markers.cc:1132 editor_markers.cc:1160 #: editor_markers.cc:1191 editor_markers.cc:1216 editor_markers.cc:1267 -#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1514 -#: editor_mouse.cc:2478 +#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1526 +#: editor_mouse.cc:2528 msgid "programming error: marker canvas item has no marker object pointer!" msgstr "Programmeringsfeil: markørpalettobjekt har ingen merkeobjektpeikar!" @@ -4424,6 +4582,22 @@ msgstr "Flytt merket til spelehovudet" msgid "Create Range to Next Marker" msgstr "Lag omrÃ¥de til neste markør" +#: editor_markers.cc:896 +msgid "Locate to Marker" +msgstr "" + +#: editor_markers.cc:897 +msgid "Play from Marker" +msgstr "" + +#: editor_markers.cc:900 +msgid "Set Marker from Playhead" +msgstr "" + +#: editor_markers.cc:902 +msgid "Set Range from Selection" +msgstr "" + #: editor_markers.cc:905 msgid "Zoom to Range" msgstr "Zoom til omrÃ¥det" @@ -4452,32 +4626,32 @@ msgstr "Vel omrÃ¥de" msgid "Set Punch Range" msgstr "Set innslagsomrÃ¥de" -#: editor_markers.cc:1351 editor_ops.cc:1699 +#: editor_markers.cc:1362 editor_ops.cc:1699 msgid "New Name:" msgstr "Nytt namn:" -#: editor_markers.cc:1354 +#: editor_markers.cc:1365 msgid "Rename Mark" msgstr "Døyp om merke" -#: editor_markers.cc:1356 +#: editor_markers.cc:1367 msgid "Rename Range" msgstr "Døyp om omrÃ¥det" -#: editor_markers.cc:1363 editor_mouse.cc:2510 processor_box.cc:1781 -#: processor_box.cc:2235 route_time_axis.cc:982 route_ui.cc:1540 +#: editor_markers.cc:1374 editor_mouse.cc:2560 processor_box.cc:1808 +#: processor_box.cc:2274 route_time_axis.cc:982 route_ui.cc:1540 msgid "Rename" msgstr "Døyp om" -#: editor_markers.cc:1376 +#: editor_markers.cc:1387 msgid "rename marker" msgstr "døyp om markør" -#: editor_markers.cc:1399 +#: editor_markers.cc:1411 msgid "set loop range" msgstr "set lykkje-omrÃ¥de" -#: editor_markers.cc:1405 +#: editor_markers.cc:1417 msgid "set punch range" msgstr "set innslagsomrÃ¥de" @@ -4489,7 +4663,7 @@ msgstr "Denne skjermen er ikkje høg nok til Ã¥ visa redigeringsmiksaren" msgid "Editor::event_frame() used on unhandled event type %1" msgstr "Redigering: event_frame() brukt pÃ¥ uhandtert handlingstype %1" -#: editor_mouse.cc:2235 editor_mouse.cc:2260 editor_mouse.cc:2273 +#: editor_mouse.cc:2285 editor_mouse.cc:2310 editor_mouse.cc:2323 msgid "" "programming error: control point canvas item has no control point object " "pointer!" @@ -4497,15 +4671,15 @@ msgstr "" "Programmeringsfeil: objektet pÃ¥ kontrollpunktpaletten har ingen " "kontrollpunktpeikar!" -#: editor_mouse.cc:2416 +#: editor_mouse.cc:2466 msgid "start point trim" msgstr "skjer startpunkt" -#: editor_mouse.cc:2441 +#: editor_mouse.cc:2491 msgid "End point trim" msgstr "Skjer sluttpunkt" -#: editor_mouse.cc:2508 +#: editor_mouse.cc:2558 msgid "Name for region:" msgstr "Namn pÃ¥ bolken:" @@ -4601,7 +4775,7 @@ msgstr "senk bolkane til botnlaget" msgid "Rename Region" msgstr "Døyp om bolken" -#: editor_ops.cc:2372 processor_box.cc:1779 route_ui.cc:1538 +#: editor_ops.cc:2372 processor_box.cc:1806 route_ui.cc:1538 msgid "New name:" msgstr "Nytt namn:" @@ -4712,6 +4886,15 @@ msgstr "Frysgrenser" msgid "Cancel Freeze" msgstr "Avbryt frysing" +#: editor_ops.cc:3553 +msgid "" +"You can't perform this operation because the processing of the signal will " +"cause one or more of the tracks to end up with a region with more channels " +"than this track has inputs.\n" +"\n" +"You can do this without processing, which is a different operation." +msgstr "" + #: editor_ops.cc:3557 msgid "Cannot bounce" msgstr "Kan ikkje miksa ned" @@ -4805,6 +4988,10 @@ msgstr "bolkomhyllinga pÃ¥" msgid "toggle region lock" msgstr "skru pÃ¥ bolklÃ¥s" +#: editor_ops.cc:5067 +msgid "Toggle Video Lock" +msgstr "" + #: editor_ops.cc:5091 msgid "region lock style" msgstr "type bolklÃ¥s" @@ -4976,7 +5163,7 @@ msgstr "" msgid "tracks" msgstr "spor" -#: editor_ops.cc:6485 route_ui.cc:1822 +#: editor_ops.cc:6485 route_ui.cc:1821 msgid "track" msgstr "spor" @@ -4984,7 +5171,7 @@ msgstr "spor" msgid "busses" msgstr "bussar" -#: editor_ops.cc:6491 route_ui.cc:1822 +#: editor_ops.cc:6491 route_ui.cc:1821 msgid "bus" msgstr "buss" @@ -5114,8 +5301,8 @@ msgstr "G" msgid "Region position glued to Bars|Beats time?" msgstr "Er bolkplasseringa limt til takter|taktslag-tida?" -#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:759 -#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:554 +#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:762 +#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:553 #: stereo_panner.cc:237 msgid "M" msgstr "M" @@ -5160,8 +5347,7 @@ msgstr "Fjern ubrukte bolkar" msgid "Mult." msgstr "Dobl." -#: editor_regions.cc:847 engine_dialog.cc:84 midi_list_editor.cc:103 -#: time_info_box.cc:91 +#: editor_regions.cc:847 midi_list_editor.cc:103 time_info_box.cc:91 msgid "Start" msgstr "Start" @@ -5227,7 +5413,7 @@ msgstr "Solo" msgid "SI" msgstr "SI" -#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1880 +#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1867 msgid "Solo Isolated" msgstr "Isolert solo" @@ -5303,6 +5489,14 @@ msgstr "Nytt tempo" msgid "New Meter" msgstr "Ny taktart" +#: editor_rulers.cc:373 +msgid "Timeline height" +msgstr "" + +#: editor_rulers.cc:383 +msgid "Align Video Track" +msgstr "" + #: editor_selection.cc:889 editor_selection.cc:932 msgid "set selected regions" msgstr "fastset valde bolkar" @@ -5437,232 +5631,218 @@ msgstr "endra tonehøgd" msgid "timefx cannot be started - thread creation error" msgstr "greidde ikkje starta tidsstrekk - trÃ¥dstartingsfeil" -#: engine_dialog.cc:75 -msgid "Realtime" -msgstr "Sanntid" - -#: engine_dialog.cc:76 -msgid "Do not lock memory" -msgstr "Ikkje lÃ¥s minnet" - -#: engine_dialog.cc:77 -msgid "Unlock memory" -msgstr "LÃ¥s opp minnet" - -#: engine_dialog.cc:78 -msgid "No zombies" -msgstr "Ingen zombiar" - #: engine_dialog.cc:79 -msgid "Provide monitor ports" -msgstr "Skaff lytteportar" - -#: engine_dialog.cc:80 -msgid "Force 16 bit" -msgstr "Tving 16-bit" - -#: engine_dialog.cc:81 -msgid "H/W monitoring" -msgstr "Lytting i maskinvara" - -#: engine_dialog.cc:82 -msgid "H/W metering" -msgstr "NivÃ¥mÃ¥ling i maskinvara" - -#: engine_dialog.cc:83 -msgid "Verbose output" -msgstr "Utvida meldingar" - -#: engine_dialog.cc:103 -msgid "8000Hz" -msgstr "8000Hz" - -#: engine_dialog.cc:104 -msgid "22050Hz" -msgstr "22050Hz" - -#: engine_dialog.cc:105 -msgid "44100Hz" -msgstr "44100Hz" - -#: engine_dialog.cc:106 -msgid "48000Hz" -msgstr "48000Hz" - -#: engine_dialog.cc:107 -msgid "88200Hz" -msgstr "88200Hz" - -#: engine_dialog.cc:108 -msgid "96000Hz" -msgstr "96000Hz" - -#: engine_dialog.cc:109 -msgid "192000Hz" -msgstr "192000Hz" - -#: engine_dialog.cc:127 engine_dialog.cc:132 engine_dialog.cc:169 -#: engine_dialog.cc:562 midi_channel_selector.cc:163 -#: midi_channel_selector.cc:402 midi_channel_selector.cc:438 -#: rc_option_editor.cc:1250 sfdb_ui.cc:538 -msgid "None" -msgstr "Ingen" - -#: engine_dialog.cc:128 engine_dialog.cc:563 -msgid "Triangular" -msgstr "Trekantbølgje" - -#: engine_dialog.cc:129 engine_dialog.cc:565 -msgid "Rectangular" -msgstr "Firkantbølgje" - -#: engine_dialog.cc:130 engine_dialog.cc:567 -msgid "Shaped" -msgstr "Forma" - -#: engine_dialog.cc:158 engine_dialog.cc:483 engine_dialog.cc:974 -msgid "Playback/recording on 1 device" -msgstr "Avspeling/opptak pÃ¥ 1 eining" - -#: engine_dialog.cc:159 engine_dialog.cc:487 engine_dialog.cc:540 -#: engine_dialog.cc:977 -msgid "Playback/recording on 2 devices" -msgstr "Avspeling/opptak pÃ¥ 2 einingar" - -#: engine_dialog.cc:160 engine_dialog.cc:503 engine_dialog.cc:980 -msgid "Playback only" -msgstr "Berre avspeling" - -#: engine_dialog.cc:161 engine_dialog.cc:505 engine_dialog.cc:983 -msgid "Recording only" -msgstr "Berre opptak" - -#: engine_dialog.cc:171 engine_dialog.cc:448 -msgid "coremidi" +msgid "Device Control Panel" msgstr "" -#: engine_dialog.cc:173 engine_dialog.cc:581 -msgid "seq" -msgstr "sekv" +#: engine_dialog.cc:80 engine_dialog.cc:1725 +msgid "Measure" +msgstr "" -#: engine_dialog.cc:174 engine_dialog.cc:583 -msgid "raw" -msgstr "rÃ¥" +#: engine_dialog.cc:81 +msgid "Use results" +msgstr "" -#: engine_dialog.cc:181 +#: engine_dialog.cc:82 +msgid "Back to settings ... (ignore results)" +msgstr "" + +#: engine_dialog.cc:83 +msgid "Calibrate..." +msgstr "" + +#: engine_dialog.cc:87 +msgid "Refresh list" +msgstr "" + +#: engine_dialog.cc:107 +msgid "" +"No audio/MIDI backends detected. %1 cannot run\n" +"\n" +"(This is a build/packaging/system error. It should never happen.)" +msgstr "" + +#: engine_dialog.cc:136 +msgid "Latency Measurement Tool" +msgstr "" + +#: engine_dialog.cc:151 +msgid "" +"Turn down the volume on your audio equipment to a very " +"low level." +msgstr "" + +#: engine_dialog.cc:159 +msgid "Select two channels below and connect them using a cable." +msgstr "" + +#: engine_dialog.cc:164 +msgid "Output channel" +msgstr "" + +#: engine_dialog.cc:172 +msgid "Input channel" +msgstr "" + +#: engine_dialog.cc:207 +msgid "Once the channels are connected, click the \"Measure\" button." +msgstr "" + +#: engine_dialog.cc:214 +msgid "When satisfied with the results, click the \"Use results\" button." +msgstr "" + +#: engine_dialog.cc:229 engine_dialog.cc:1727 +msgid "No measurement results yet" +msgstr "" + +#: engine_dialog.cc:238 route_params_ui.cc:105 +msgid "Latency" +msgstr "Treigskap" + +#: engine_dialog.cc:333 +msgid "Audio System:" +msgstr "" + +#: engine_dialog.cc:374 msgid "Driver:" msgstr "Drivar:" -#: engine_dialog.cc:186 -msgid "Audio Interface:" -msgstr "Lydkort:" +#: engine_dialog.cc:380 +msgid "Device:" +msgstr "" -#: engine_dialog.cc:191 sfdb_ui.cc:147 sfdb_ui.cc:260 sfdb_ui.cc:265 +#: engine_dialog.cc:385 engine_dialog.cc:475 sfdb_ui.cc:147 sfdb_ui.cc:260 +#: sfdb_ui.cc:265 msgid "Sample rate:" msgstr "Punktfrekvens:" -#: engine_dialog.cc:196 +#: engine_dialog.cc:391 engine_dialog.cc:482 msgid "Buffer size:" msgstr "Bufferstorleik:" -#: engine_dialog.cc:202 -msgid "Number of buffers:" -msgstr "Kor mange bufrar:" - -#: engine_dialog.cc:209 -msgid "Approximate latency:" -msgstr "Omrentleg treigskap:" - -#: engine_dialog.cc:222 -msgid "Audio mode:" -msgstr "Lydmodus:" - -#: engine_dialog.cc:284 engine_dialog.cc:408 -msgid "Ignore" -msgstr "OversjÃ¥" - -#: engine_dialog.cc:292 -msgid "Client timeout" -msgstr "Klienttidsgrense" - -#: engine_dialog.cc:299 -msgid "Number of ports:" -msgstr "Kor mange portar:" - -#: engine_dialog.cc:304 -msgid "MIDI driver:" -msgstr "MIDI-drivar" - -#: engine_dialog.cc:310 -msgid "Dither:" -msgstr "Utjamning:" - -#: engine_dialog.cc:319 -msgid "" -"No JACK server found anywhere on this system. Please install JACK and restart" +#: engine_dialog.cc:404 +msgid "Input Channels:" msgstr "" -"Fann ingen JACK-tenar pÃ¥ denne maskina. Installer JACK og start pÃ¥ nytt." -#: engine_dialog.cc:327 -msgid "Server:" -msgstr "Tenar:" +#: engine_dialog.cc:415 +msgid "Output Channels:" +msgstr "" -#: engine_dialog.cc:339 -msgid "Input device:" -msgstr "Inneining:" - -#: engine_dialog.cc:343 -msgid "Output device:" -msgstr "Uteining:" - -#: engine_dialog.cc:348 +#: engine_dialog.cc:426 msgid "Hardware input latency:" msgstr "Treigskap for maskinvare-inngangar:" -#: engine_dialog.cc:351 engine_dialog.cc:357 +#: engine_dialog.cc:429 engine_dialog.cc:442 msgid "samples" msgstr "punkt" -#: engine_dialog.cc:354 +#: engine_dialog.cc:439 msgid "Hardware output latency:" msgstr "Treigskap for maskinvare-utgangar:" -#: engine_dialog.cc:368 -msgid "Device" -msgstr "Eining" - -#: engine_dialog.cc:370 -msgid "Advanced" -msgstr "Avansert" - -#: engine_dialog.cc:653 -msgid "cannot open JACK rc file %1 to store parameters" -msgstr "greier ikkje opna JACK-rc-fila %1 for Ã¥ lagra val." - -#: engine_dialog.cc:800 -msgid "No suitable audio devices" -msgstr "Ingen brukande lydeiningar" - -#: engine_dialog.cc:1017 -msgid "JACK appears to be missing from the %1 bundle" -msgstr "Det ser ut som JACK ikkje er med i %1-bundelen" - -#: engine_dialog.cc:1087 -msgid "You need to choose an audio device first." -msgstr "Du mÃ¥ velja ei lydeining fyrst." - -#: engine_dialog.cc:1104 -msgid "Audio device \"%1\" not known on this computer." -msgstr "Lydeininga \"%1\" er ukjend for denne datamaskina." - -#: engine_dialog.cc:1256 -msgid "AudioSetup value for %1 is missing data" -msgstr "Lydoppsett-verdien for %1 manglar data" - -#: engine_dialog.cc:1335 -msgid "configuration files contain a JACK server path that doesn't exist (%1)" +#: engine_dialog.cc:450 +msgid "MIDI System" +msgstr "" + +#: engine_dialog.cc:467 +msgid "" +"The %1 audio backend was configured and started externally.\n" +"This limits your control over it." +msgstr "" + +#: engine_dialog.cc:521 +msgid "" +"Your selected audio configuration is playback- or capture-only.\n" +"\n" +"Latency calibration requires playback and capture" +msgstr "" + +#: engine_dialog.cc:595 +msgid "MIDI Inputs" +msgstr "" + +#: engine_dialog.cc:612 +msgid "MIDI Outputs" +msgstr "" + +#: engine_dialog.cc:696 +msgid "all available channels" +msgstr "" + +#: engine_dialog.cc:890 +#, c-format +msgid "%u samples" +msgstr "" + +#: engine_dialog.cc:941 +#, c-format +msgid "(%.1f msecs)" +msgstr "" + +#: engine_dialog.cc:1389 +msgid "Cannot set driver to %1" +msgstr "" + +#: engine_dialog.cc:1393 +msgid "Cannot set device name to %1" +msgstr "" + +#: engine_dialog.cc:1397 +msgid "Cannot set sample rate to %1" +msgstr "" + +#: engine_dialog.cc:1401 +msgid "Cannot set buffer size to %1" +msgstr "" + +#: engine_dialog.cc:1407 +msgid "Cannot set input channels to %1" +msgstr "" + +#: engine_dialog.cc:1411 +msgid "Cannot set output channels to %1" +msgstr "" + +#: engine_dialog.cc:1417 +msgid "Cannot set input latency to %1" +msgstr "" + +#: engine_dialog.cc:1421 +msgid "Cannot set output latency to %1" +msgstr "" + +#: engine_dialog.cc:1654 +msgid "No signal detected " +msgstr "" + +#: engine_dialog.cc:1667 port_insert_ui.cc:71 port_insert_ui.cc:99 +msgid "Disconnected from audio engine" +msgstr "Ikkje tilkopla lydmotoren" + +#: engine_dialog.cc:1681 +msgid "(signal detection error)" +msgstr "" + +#: engine_dialog.cc:1687 +msgid "(inverted - bad wiring)" +msgstr "" + +#: engine_dialog.cc:1697 +msgid "Detected roundtrip latency: %1" +msgstr "" + +#: engine_dialog.cc:1709 port_insert_ui.cc:135 +msgid "Detecting ..." +msgstr "Lyttar etter signal..." + +#: engine_dialog.cc:1789 +msgid "Disconnect from %1" +msgstr "" + +#: engine_dialog.cc:1801 +msgid "Connect to %1" msgstr "" -"oppsettsfilene inneheld ein ikkje-eksisterande stig til JACK-tenaren (%1)" #: export_channel_selector.cc:45 sfdb_ui.cc:145 msgid "Channels:" @@ -5688,6 +5868,14 @@ msgstr "Bolkinnhald med toningar og bolkvolum (kanalar: %1)" msgid "Track output (channels: %1)" msgstr "Sporutgang (kanalar: %1)" +#: export_channel_selector.cc:536 +msgid "Export region contents" +msgstr "" + +#: export_channel_selector.cc:537 +msgid "Export track output" +msgstr "" + #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten.Presets" msgstr "Ferdiginnstillingar" -#: generic_pluginui.cc:232 +#: generic_pluginui.cc:230 msgid "Switches" msgstr "Brytarar" -#: generic_pluginui.cc:242 generic_pluginui.cc:376 processor_box.cc:2212 +#: generic_pluginui.cc:240 generic_pluginui.cc:374 processor_box.cc:2251 msgid "Controls" msgstr "Kontrollar" -#: generic_pluginui.cc:270 +#: generic_pluginui.cc:268 msgid "Plugin Editor: could not build control element for port %1" msgstr "Utviding: greidde ikkje byggja kontrollelement for porten %1" -#: generic_pluginui.cc:408 +#: generic_pluginui.cc:406 msgid "Meters" msgstr "Mælarar" -#: generic_pluginui.cc:423 +#: generic_pluginui.cc:421 msgid "Automation control" msgstr "Automasjonskontroll" -#: generic_pluginui.cc:430 +#: generic_pluginui.cc:428 msgid "Mgnual" msgstr "Mgnual" -#: global_port_matrix.cc:164 +#: global_port_matrix.cc:157 msgid "Audio Connection Manager" msgstr "Lydtilkoplingar" -#: global_port_matrix.cc:167 +#: global_port_matrix.cc:160 msgid "MIDI Connection Manager" msgstr "MIDI-tilkoplingar" -#: global_port_matrix.cc:213 io_selector.cc:216 +#: global_port_matrix.cc:200 io_selector.cc:210 mixer_strip.cc:719 +#: mixer_strip.cc:845 +msgid "Disconnect" +msgstr "Kopla frÃ¥" + +#: global_port_matrix.cc:206 io_selector.cc:216 msgid "port" msgstr "port" @@ -6229,19 +6438,19 @@ msgstr "" msgid "Main_menu" msgstr "Hovud_meny" -#: keyeditor.cc:255 +#: keyeditor.cc:253 msgid "redirectmenu" msgstr "omdirigeringsmeny" -#: keyeditor.cc:257 +#: keyeditor.cc:255 msgid "Editor_menus" msgstr "Redigerings_menyar" -#: keyeditor.cc:259 +#: keyeditor.cc:257 msgid "RegionList" msgstr "Bolkliste" -#: keyeditor.cc:261 +#: keyeditor.cc:259 msgid "ProcessorMenu" msgstr "Prosessormeny" @@ -6263,7 +6472,7 @@ msgid_plural "%1 samples" msgstr[0] "%1 punkt" msgstr[1] "%1 punkt" -#: latency_gui.cc:72 panner_ui.cc:392 +#: latency_gui.cc:72 panner_ui.cc:391 msgid "Reset" msgstr "Nullstill" @@ -6355,76 +6564,65 @@ msgstr "Bolkar (inkl. CD-sporbolkar)" msgid "add range marker" msgstr "legg til omrÃ¥demarkørar" -#: main.cc:83 -msgid "%1 could not connect to JACK." -msgstr "%1 greidde ikkje kopla til JACK." +#: main.cc:81 +msgid "%1 could not connect to the audio backend." +msgstr "" -#: main.cc:210 main.cc:331 +#: main.cc:194 main.cc:315 +msgid "cannot create user %3 folder %1 (%2)" +msgstr "" + +#: main.cc:201 main.cc:322 msgid "cannot open pango.rc file %1" msgstr "greier ikkje opna pango.rc-fila %1" -#: main.cc:235 main.cc:358 +#: main.cc:226 main.cc:349 msgid "Cannot find ArdourMono TrueType font" msgstr "" -#: main.cc:247 main.cc:364 +#: main.cc:238 main.cc:355 msgid "Cannot load ArdourMono TrueType font." msgstr "" -#: main.cc:312 +#: main.cc:303 msgid "" "No fontconfig file found on your system. Things may looked very odd or ugly" msgstr "" -#: main.cc:368 +#: main.cc:359 msgid "Failed to set fontconfig configuration." msgstr "" -#: main.cc:379 main.cc:395 -msgid "JACK exited" -msgstr "JACK vart avslutta" +#: main.cc:370 main.cc:386 +msgid "The audio backend (%1) has failed, or terminated" +msgstr "" -#: main.cc:382 +#: main.cc:373 msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" +"%2 exited unexpectedly, and without notifying %1.\n" "\n" -"This could be due to misconfiguration or to an error inside JACK.\n" +"This could be due to misconfiguration or to an error inside %2.\n" "\n" "Click OK to exit %1." msgstr "" -"JACK vart uventa avslutta, og sa ikkje frÃ¥ til %1.\n" -"\n" -"Dette kan vera pÃ¥ grunn av feiloppsett, eller ein feil med JACK.\n" -"\n" -"Klikk OK for Ã¥ avslutta %1." -#: main.cc:397 -msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" -"\n" -"This is probably due to an error inside JACK. You should restart JACK\n" -"and reconnect %1 to it, or exit %1 now. You cannot save your\n" -"session at this time, because we would lose your connection information.\n" +#: main.cc:387 +msgid "%2 exited unexpectedly, and without notifying %1." msgstr "" -"JACK vart uventa avslutta, og sa ikkje frÃ¥ til %1.\n" -"\n" -"Dette er truleg pÃ¥ grunn av ein feil med JACK. Du bør starta omatt JACK,\n" -"og kopla til %1 pÃ¥ nytt, eller avslutta %1 no. Du kan ikkje lagra økta\n" -"di no, fordi dÃ¥ mistar me all informasjon om tilkoplingar.\n" -#: main.cc:487 +#: main.cc:474 msgid " (built using " msgstr " (bygd med " -#: main.cc:490 +#: main.cc:477 msgid " and GCC version " msgstr " og GCC-version " -#: main.cc:500 +#: main.cc:487 msgid "Copyright (C) 1999-2012 Paul Davis" msgstr "Copyright (C) 1999-2012 Paul Davis" -#: main.cc:501 +#: main.cc:488 msgid "" "Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " "Baker, Robin Gareus" @@ -6432,33 +6630,37 @@ msgstr "" "Nokre deler (C) Steve Harris, Ari Johnson, Brett Viren, Joel Baker, Robin " "Gareus" -#: main.cc:503 +#: main.cc:490 msgid "%1 comes with ABSOLUTELY NO WARRANTY" msgstr "%1 har ABSOLUTT INGEN GARANTI" -#: main.cc:504 +#: main.cc:491 msgid "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." msgstr "" "mogleik for sal eller bruk til eit spesielt føremÃ¥l er heller ikkje " "garantert." -#: main.cc:505 +#: main.cc:492 msgid "This is free software, and you are welcome to redistribute it " msgstr "Dette er gratis programvare, og du mÃ¥ gjerne gje henne vidare" -#: main.cc:506 +#: main.cc:493 msgid "under certain conditions; see the source for copying conditions." msgstr "" "pÃ¥ visse vilkÃ¥r, sjÃ¥ kjeldekoden for kopierings- og vidareformidlingsvilkÃ¥r. " -#: main.cc:513 +#: main.cc:500 msgid "could not initialize %1." msgstr "greidde ikkje starta %1." -#: main.cc:522 +#: main.cc:509 msgid "Cannot xinstall SIGPIPE error handler" msgstr "Kan ikkje xinstallera SIGPIPE-feilhandterar" +#: main.cc:515 +msgid "could not create %1 GUI" +msgstr "" + #: main_clock.cc:51 msgid "Display delta to edit cursor" msgstr "Vis delta til redigeringspunktet" @@ -6472,6 +6674,11 @@ msgstr "MarkørTekst" msgid "All" msgstr "Alt" +#: midi_channel_selector.cc:163 midi_channel_selector.cc:402 +#: midi_channel_selector.cc:438 rc_option_editor.cc:1248 sfdb_ui.cc:538 +msgid "None" +msgstr "Ingen" + #: midi_channel_selector.cc:167 midi_channel_selector.cc:407 #: midi_channel_selector.cc:443 msgid "Invert" @@ -6481,10 +6688,42 @@ msgstr "Omvend" msgid "Force" msgstr "Tving" +#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 +msgid "MIDI Channel Control" +msgstr "" + +#: midi_channel_selector.cc:332 +msgid "Playback all channels" +msgstr "" + +#: midi_channel_selector.cc:333 +msgid "Play only selected channels" +msgstr "" + #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" +#: midi_channel_selector.cc:335 +msgid "Record all channels" +msgstr "" + +#: midi_channel_selector.cc:336 +msgid "Record only selected channels" +msgstr "" + +#: midi_channel_selector.cc:337 +msgid "Force all channels to 1 channel" +msgstr "" + +#: midi_channel_selector.cc:378 +msgid "Inbound" +msgstr "" + +#: midi_channel_selector.cc:398 +msgid "Click to enable recording all channels" +msgstr "" + #: midi_channel_selector.cc:403 msgid "Click to disable recording all channels" msgstr "" @@ -6493,6 +6732,10 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" +#: midi_channel_selector.cc:415 +msgid "Playback" +msgstr "" + #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -6693,6 +6936,18 @@ msgstr "skubb" msgid "change channel" msgstr "endra kanal" +#: midi_region_view.cc:3130 +msgid "Bank " +msgstr "" + +#: midi_region_view.cc:3131 +msgid "Program " +msgstr "" + +#: midi_region_view.cc:3132 +msgid "Channel " +msgstr "" + #: midi_region_view.cc:3301 midi_region_view.cc:3303 msgid "paste" msgstr "lim inn" @@ -6701,6 +6956,10 @@ msgstr "lim inn" msgid "delete sysex" msgstr "slett sysex" +#: midi_streamview.cc:479 +msgid "failed to create MIDI region" +msgstr "" + #: midi_time_axis.cc:262 msgid "External MIDI Device" msgstr "Ekstern MIDI-eining" @@ -6713,6 +6972,10 @@ msgstr "Modus for ekstern eining" msgid "Chns" msgstr "" +#: midi_time_axis.cc:272 +msgid "Click to edit channel settings" +msgstr "" + #: midi_time_axis.cc:486 msgid "Show Full Range" msgstr "Vis heile omrÃ¥det" @@ -6729,6 +6992,10 @@ msgstr "NoteomrÃ¥de" msgid "Note Mode" msgstr "Notemodus" +#: midi_time_axis.cc:497 +msgid "Channel Selector" +msgstr "" + #: midi_time_axis.cc:502 msgid "Color Mode" msgstr "Fargemodus" @@ -6765,6 +7032,10 @@ msgstr "Kanal %1" msgid "Controllers %1-%2" msgstr "Kontrollarar %1-%2" +#: midi_time_axis.cc:933 midi_time_axis.cc:936 +msgid "Controller %1" +msgstr "" + #: midi_time_axis.cc:959 msgid "Sustained" msgstr "Uthalden" @@ -6785,31 +7056,36 @@ msgstr "Kanalfarger" msgid "Track Color" msgstr "Sporfarge" +#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 +#: midi_time_axis.cc:1510 +msgid "all" +msgstr "" + #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" -#: midi_tracer.cc:43 +#: midi_tracer.cc:46 msgid "Line history: " msgstr "Linjehistorie:" -#: midi_tracer.cc:51 +#: midi_tracer.cc:54 msgid "Auto-Scroll" msgstr "Auto-rull" -#: midi_tracer.cc:52 +#: midi_tracer.cc:55 msgid "Decimal" msgstr "Desimal" -#: midi_tracer.cc:53 rc_option_editor.cc:659 +#: midi_tracer.cc:56 rc_option_editor.cc:657 msgid "Enabled" msgstr "PÃ¥" -#: midi_tracer.cc:54 +#: midi_tracer.cc:57 msgid "Delta times" msgstr "Deltatider" -#: midi_tracer.cc:66 +#: midi_tracer.cc:70 msgid "Port:" msgstr "Port:" @@ -6873,7 +7149,7 @@ msgstr "Klikk for Ã¥ velja ei mappe til" msgid "Missing Plugins" msgstr "Manglande utvidingar" -#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 +#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:59 msgid "OK" msgstr "OK" @@ -6950,7 +7226,7 @@ msgid "pre" msgstr "før" #: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 -#: rc_option_editor.cc:1881 +#: rc_option_editor.cc:1868 msgid "Comments" msgstr "Kommentarar" @@ -6998,11 +7274,11 @@ msgstr "iso" msgid "Mix group" msgstr "Miksgruppe" -#: mixer_strip.cc:351 rc_option_editor.cc:1878 +#: mixer_strip.cc:351 rc_option_editor.cc:1865 msgid "Phase Invert" msgstr "Polaritetsvending" -#: mixer_strip.cc:352 rc_option_editor.cc:1879 route_ui.cc:1218 +#: mixer_strip.cc:352 rc_option_editor.cc:1866 route_ui.cc:1218 msgid "Solo Safe" msgstr "Solo-sikker" @@ -7010,7 +7286,7 @@ msgstr "Solo-sikker" msgid "Group" msgstr "Gruppe" -#: mixer_strip.cc:356 rc_option_editor.cc:1882 +#: mixer_strip.cc:356 rc_option_editor.cc:1869 msgid "Meter Point" msgstr "Mælepunkt" @@ -7030,9 +7306,9 @@ msgstr "" msgid "Snd" msgstr "Snd" -#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 -msgid "Not connected to JACK - no I/O changes are possible" -msgstr "Ikkje tilkopla JACK - I/U-endringar er ikkje mogleg" +#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2193 +msgid "Not connected to audio engine - no I/O changes are possible" +msgstr "" #: mixer_strip.cc:1096 msgid "INPUT to %1" @@ -7146,6 +7422,10 @@ msgstr "FL" msgid "D" msgstr "D" +#: mixer_strip.cc:1953 +msgid "i" +msgstr "" + #: mixer_strip.cc:2128 msgid "Pre-fader" msgstr "Før volumkontroll" @@ -7158,6 +7438,10 @@ msgstr "Etter volumkontroll" msgid "Change all in Group to %1" msgstr "" +#: mixer_strip.cc:2168 meter_strip.cc:730 +msgid "Change all to %1" +msgstr "" + #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -7174,6 +7458,14 @@ msgstr "-alle-" msgid "Strips" msgstr "Striper" +#: meter_strip.cc:764 +msgid "Variable height" +msgstr "" + +#: meter_strip.cc:765 +msgid "Short" +msgstr "" + #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -7218,6 +7510,10 @@ msgstr "" msgid "K14" msgstr "" +#: meter_patterns.cc:105 +msgid "VU" +msgstr "" + #: monitor_section.cc:62 msgid "SiP" msgstr "Spp" @@ -7326,6 +7622,22 @@ msgstr "mono" msgid "Monitor" msgstr "Lytting" +#: monitor_section.cc:678 +msgid "Switch monitor to mono" +msgstr "" + +#: monitor_section.cc:681 +msgid "Cut monitor" +msgstr "" + +#: monitor_section.cc:684 +msgid "Dim monitor" +msgstr "" + +#: monitor_section.cc:687 +msgid "Toggle exclusive solo mode" +msgstr "" + #: monitor_section.cc:693 msgid "Toggle mute overrides solo mode" msgstr "" @@ -7346,6 +7658,18 @@ msgstr "Solo lytting kan %1" msgid "Invert monitor channel %1" msgstr "Snu lytting kan %1" +#: monitor_section.cc:730 +msgid "In-place solo" +msgstr "" + +#: monitor_section.cc:732 +msgid "After Fade Listen (AFL) solo" +msgstr "" + +#: monitor_section.cc:734 +msgid "Pre Fade Listen (PFL) solo" +msgstr "" + #: mono_panner.cc:101 #, c-format msgid "L:%3d R:%3d" @@ -7360,6 +7684,10 @@ msgstr "Monopanorering" msgid "%" msgstr "%" +#: nag.cc:41 +msgid "Support %1 Development" +msgstr "" + #: nag.cc:42 msgid "I'd like to make a one-time donation" msgstr "Eg vil gjerne gje ein eingongssum" @@ -7493,11 +7821,9 @@ msgstr "" #: opts.cc:63 msgid "" -" -c, --name Use a specific jack client name, default is " +" -c, --name Use a specific backend client name, default is " "ardour\n" msgstr "" -" -c, --name name Bruk eit spesielt JACK-klientnamn, " -"standard: ardour\n" #: opts.cc:64 msgid "" @@ -7566,7 +7892,7 @@ msgstr "" msgid "Panner (2D)" msgstr "Panorering (2D)" -#: panner2d.cc:783 panner_ui.cc:384 plugin_ui.cc:451 +#: panner2d.cc:783 panner_ui.cc:383 plugin_ui.cc:448 msgid "Bypass" msgstr "Forbikopla" @@ -7574,15 +7900,15 @@ msgstr "Forbikopla" msgid "Panner" msgstr "Panorering" -#: panner_ui.cc:71 +#: panner_ui.cc:70 msgid "Pan automation mode" msgstr "pan-automasjonsmodus" -#: panner_ui.cc:72 +#: panner_ui.cc:71 msgid "Pan automation type" msgstr "pan-automasjonstype" -#: panner_ui.cc:295 +#: panner_ui.cc:294 msgid "" "No panner user interface is currently available for %1-in/2out tracks/busses" msgstr "Det finst inga panoreringsflate for spor/bussar med %1 inn/ 2 ut" @@ -7738,31 +8064,43 @@ msgstr "Etter opphavsperson" msgid "By Category" msgstr "Etter kategori" -#: plugin_ui.cc:116 +#: plugin_ui.cc:114 msgid "Eh? LADSPA plugins don't have editors!" msgstr "Hm? LADSPA-utvidingar har ikkje redigering!" -#: plugin_ui.cc:128 +#: plugin_ui.cc:123 plugin_ui.cc:226 +msgid "" +"unknown type of editor-supplying plugin (note: no VST support in this " +"version of %1)" +msgstr "" + +#: plugin_ui.cc:126 msgid "unknown type of editor-supplying plugin" msgstr "ukjent redigerbar utvidingstype" -#: plugin_ui.cc:329 +#: plugin_ui.cc:256 +msgid "" +"unknown type of editor-supplying plugin (note: no linuxVST support in this " +"version of %1)" +msgstr "" + +#: plugin_ui.cc:328 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "create_lv2_editor oppkalla pÃ¥ ikkje-LV2-utviding" -#: plugin_ui.cc:417 +#: plugin_ui.cc:414 msgid "Add" msgstr "Legg til" -#: plugin_ui.cc:421 +#: plugin_ui.cc:418 msgid "Description" msgstr "Skildring" -#: plugin_ui.cc:422 +#: plugin_ui.cc:419 msgid "Plugin analysis" msgstr "Analyse av programutvidingar" -#: plugin_ui.cc:429 +#: plugin_ui.cc:426 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" @@ -7770,23 +8108,23 @@ msgstr "" "Førehandsoppsett (viss dei finst) for utvidinga\n" "(BÃ¥de frÃ¥ produsent og brukarar)" -#: plugin_ui.cc:430 +#: plugin_ui.cc:427 msgid "Save a new preset" msgstr "Lagra nytt ferdigoppsett" -#: plugin_ui.cc:431 +#: plugin_ui.cc:428 msgid "Save the current preset" msgstr "Lagra ferdigoppsettet" -#: plugin_ui.cc:432 +#: plugin_ui.cc:429 msgid "Delete the current preset" msgstr "Slett dette ferdigoppsett" -#: plugin_ui.cc:433 +#: plugin_ui.cc:430 msgid "Disable signal processing by the plugin" msgstr "Skru av signalhandsaminga Ã¥t utvidinga" -#: plugin_ui.cc:466 plugin_ui.cc:662 +#: plugin_ui.cc:463 plugin_ui.cc:659 msgid "" "Click to allow the plugin to receive keyboard events that %1 would normally " "use as a shortcut" @@ -7794,69 +8132,69 @@ msgstr "" "Klikk for Ã¥ gje utvidinga lov til Ã¥ ta imot tastetrykk som %1 vanlegvis " "bruker som snøggtastar" -#: plugin_ui.cc:467 +#: plugin_ui.cc:464 msgid "Click to enable/disable this plugin" msgstr "Klikk for Ã¥ skru av/pÃ¥ denne utvidinga" -#: plugin_ui.cc:506 +#: plugin_ui.cc:503 msgid "latency (%1 sample)" msgid_plural "latency (%1 samples)" msgstr[0] "utreigskap (%1 punkt)" msgstr[1] "treigskap (%1 punkt)" -#: plugin_ui.cc:508 +#: plugin_ui.cc:505 msgid "latency (%1 ms)" msgstr "treigskap (%1 ms)" -#: plugin_ui.cc:519 +#: plugin_ui.cc:516 msgid "Edit Latency" msgstr "Endra treigskap" -#: plugin_ui.cc:558 +#: plugin_ui.cc:555 msgid "Plugin preset %1 not found" msgstr "Fann ikkje ferdiginnstillinga %1" -#: plugin_ui.cc:595 +#: plugin_ui.cc:592 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "full version" msgstr "" -#: plugin_ui.cc:615 plugin_ui.cc:630 +#: plugin_ui.cc:612 plugin_ui.cc:627 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "newer version" msgstr "" -#: plugin_ui.cc:669 +#: plugin_ui.cc:666 msgid "Click to allow normal use of %1 keyboard shortcuts" msgstr "Klikk for Ã¥ bruka snøggtastane som vanleg i %1" -#: port_group.cc:335 +#: port_group.cc:337 msgid "%1 Busses" msgstr "%1 bussar" -#: port_group.cc:336 +#: port_group.cc:338 msgid "%1 Tracks" msgstr "%1 spor" -#: port_group.cc:337 +#: port_group.cc:339 msgid "Hardware" msgstr "Maskinvare" -#: port_group.cc:338 +#: port_group.cc:340 msgid "%1 Misc" msgstr "%1 ymse" -#: port_group.cc:339 +#: port_group.cc:341 msgid "Other" msgstr "Anna" -#: port_group.cc:430 port_group.cc:431 +#: port_group.cc:432 port_group.cc:433 msgid "LTC Out" msgstr "LTC ut" -#: port_group.cc:434 port_group.cc:435 +#: port_group.cc:436 port_group.cc:437 msgid "LTC In" msgstr "LTC inn" @@ -7892,15 +8230,15 @@ msgstr "MIDI-klokke ut" msgid "MMC out" msgstr "MMC ut" -#: port_group.cc:540 +#: port_group.cc:532 msgid ":monitor" msgstr ":lytting" -#: port_group.cc:552 +#: port_group.cc:544 msgid "system:" msgstr "system:" -#: port_group.cc:553 +#: port_group.cc:545 msgid "alsa_pcm" msgstr "alsa_pcm" @@ -7916,18 +8254,10 @@ msgstr "Send/utgang" msgid "Return/Input" msgstr "Tilbake/inngang" -#: port_insert_ui.cc:71 port_insert_ui.cc:99 -msgid "Disconnected from audio engine" -msgstr "Ikkje tilkopla lydmotoren" - #: port_insert_ui.cc:86 msgid "No signal detected" msgstr "Fann ikkje noko signal" -#: port_insert_ui.cc:135 -msgid "Detecting ..." -msgstr "Lyttar etter signal..." - #: port_insert_ui.cc:166 msgid "Port Insert " msgstr "Portinnstikk" @@ -7971,7 +8301,7 @@ msgstr "Vis individuelle portart" msgid "Flip" msgstr "Flipp" -#: port_matrix.cc:723 +#: port_matrix.cc:721 msgid "" "It is not possible to add a port here, as the first processor in the track " "or buss cannot support the new configuration." @@ -7979,25 +8309,32 @@ msgstr "" "Du kan ikkje leggja til ein port her, fordi den fyrste signalprosessen pÃ¥ " "sporet eller bussen ikkje godtek det nye oppsettet." -#: port_matrix.cc:726 +#: port_matrix.cc:724 msgid "Cannot add port" msgstr "Kan ikkje leggja til port" -#: port_matrix.cc:748 +#: port_matrix.cc:746 msgid "Port removal not allowed" msgstr "Ikkje lov Ã¥ fjerna portar" -#: port_matrix.cc:966 +#: port_matrix.cc:747 +msgid "" +"This port cannot be removed.\n" +"Either the first plugin in the track or buss cannot accept\n" +"the new number of inputs or the last plugin has more outputs." +msgstr "" + +#: port_matrix.cc:964 #, c-format msgid "Remove '%s'" msgstr "Fjern '%s'" -#: port_matrix.cc:981 +#: port_matrix.cc:979 #, c-format msgid "%s all from '%s'" msgstr "%s alt frÃ¥ '%s'" -#: port_matrix.cc:1047 +#: port_matrix.cc:1045 msgid "channel" msgstr "kanal" @@ -8034,7 +8371,7 @@ msgstr "Gøym alle kontrollar" msgid "on" msgstr "pÃ¥" -#: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 +#: processor_box.cc:465 rc_option_editor.cc:1898 rc_option_editor.cc:1912 msgid "off" msgstr "av" @@ -8046,7 +8383,7 @@ msgstr "" "Høgreklikk for Ã¥ leggja til/fjerna/redigera\n" "utvidingar, innstikk, send og meir" -#: processor_box.cc:1197 processor_box.cc:1591 +#: processor_box.cc:1197 processor_box.cc:1618 msgid "Plugin Incompatibility" msgstr "Utvidinga samsvarar ikkje" @@ -8106,7 +8443,7 @@ msgstr "" msgid "Cannot set up new send: %1" msgstr "Greier ikkje setja opp ny send: %1" -#: processor_box.cc:1594 +#: processor_box.cc:1621 msgid "" "You cannot reorder these plugins/sends/inserts\n" "in that way because the inputs and\n" @@ -8116,19 +8453,19 @@ msgstr "" "signal-omdirigeringar, fordi inn- og utgangane\n" "ikkje verkar skikkeleg dÃ¥." -#: processor_box.cc:1778 +#: processor_box.cc:1805 msgid "Rename Processor" msgstr "Døyp om handsaming" -#: processor_box.cc:1809 +#: processor_box.cc:1836 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "Det finst minst 100 IU-objekt med namn som %1 - namnet er ikkje endra" -#: processor_box.cc:1943 +#: processor_box.cc:1970 msgid "plugin insert constructor failed" msgstr "greidde ikkje laga instikkpunkt for utvidinga" -#: processor_box.cc:1954 +#: processor_box.cc:1981 msgid "" "Copying the set of processors on the clipboard failed,\n" "probably because the I/O configuration of the plugins\n" @@ -8138,7 +8475,7 @@ msgstr "" "tavla, truleg fordi I/U-oppsettet for utvidingane\n" "ikkje passar med oppsettet for dette sporet." -#: processor_box.cc:2000 +#: processor_box.cc:2027 msgid "" "Do you really want to remove all processors from %1?\n" "(this cannot be undone)" @@ -8146,15 +8483,15 @@ msgstr "" "Vil du verkeleg fjerna alle handsamingar frÃ¥ %1?\n" "(Du kan ikkje angra)" -#: processor_box.cc:2004 processor_box.cc:2029 +#: processor_box.cc:2031 processor_box.cc:2056 msgid "Yes, remove them all" msgstr "Ja, slett alle" -#: processor_box.cc:2006 processor_box.cc:2031 +#: processor_box.cc:2033 processor_box.cc:2058 msgid "Remove processors" msgstr "Fjern handsamingar" -#: processor_box.cc:2021 +#: processor_box.cc:2048 msgid "" "Do you really want to remove all pre-fader processors from %1?\n" "(this cannot be undone)" @@ -8162,7 +8499,7 @@ msgstr "" "Vil du verkeleg fjerna alle før-dempar-handsamingar frÃ¥ %1?\n" "(Du kan ikkje angra)" -#: processor_box.cc:2024 +#: processor_box.cc:2051 msgid "" "Do you really want to remove all post-fader processors from %1?\n" "(this cannot be undone)" @@ -8170,50 +8507,58 @@ msgstr "" "Vil du verkeleg fjerna alle før-dempar-handsamingar frÃ¥ %1?\n" "(Du kan ikkje angra)" -#: processor_box.cc:2200 +#: processor_box.cc:2239 msgid "New Plugin" msgstr "Ny utviding" -#: processor_box.cc:2203 +#: processor_box.cc:2242 msgid "New Insert" msgstr "Nytt innstikk" -#: processor_box.cc:2206 +#: processor_box.cc:2245 msgid "New External Send ..." msgstr "Ny ekstern send..." -#: processor_box.cc:2210 +#: processor_box.cc:2249 msgid "New Aux Send ..." msgstr "Ny aux-send..." -#: processor_box.cc:2214 +#: processor_box.cc:2253 msgid "Clear (all)" msgstr "Tøm (alt)" -#: processor_box.cc:2216 +#: processor_box.cc:2255 msgid "Clear (pre-fader)" msgstr "Fjern (før-dempar)" -#: processor_box.cc:2218 +#: processor_box.cc:2257 msgid "Clear (post-fader)" msgstr "Fjern (etter-dempar)" -#: processor_box.cc:2244 +#: processor_box.cc:2283 msgid "Activate All" msgstr "SlÃ¥ pÃ¥ alle" -#: processor_box.cc:2246 +#: processor_box.cc:2285 msgid "Deactivate All" msgstr "SlÃ¥ av alle" -#: processor_box.cc:2248 +#: processor_box.cc:2287 msgid "A/B Plugins" msgstr "A/B programutvidingar" -#: processor_box.cc:2557 +#: processor_box.cc:2296 +msgid "Edit with generic controls..." +msgstr "" + +#: processor_box.cc:2599 msgid "%1: %2 (by %3)" msgstr "%1: %2 (av %3)" +#: processor_box.cc:2601 +msgid "%2 (by %3)" +msgstr "" + #: patch_change_dialog.cc:51 msgid "Patch Change" msgstr "Koplingsendring" @@ -8262,113 +8607,121 @@ msgstr "Fest notestarten" msgid "Snap note end" msgstr "Fest noteslutten" -#: rc_option_editor.cc:69 +#: rc_option_editor.cc:67 msgid "Click audio file:" msgstr "Klikk-lydfil:" -#: rc_option_editor.cc:72 rc_option_editor.cc:79 +#: rc_option_editor.cc:70 rc_option_editor.cc:77 msgid "Browse..." msgstr "Bla gjennom..." -#: rc_option_editor.cc:76 +#: rc_option_editor.cc:74 msgid "Click emphasis audio file:" msgstr "Trykklegging-lydfil:" -#: rc_option_editor.cc:108 +#: rc_option_editor.cc:106 msgid "Choose Click" msgstr "Vel klikk" -#: rc_option_editor.cc:128 +#: rc_option_editor.cc:126 msgid "Choose Click Emphasis" msgstr "Vel trykklegging for klikk" -#: rc_option_editor.cc:160 +#: rc_option_editor.cc:158 msgid "Limit undo history to" msgstr "Øvre grense for angrelogg er" -#: rc_option_editor.cc:161 +#: rc_option_editor.cc:159 msgid "Save undo history of" msgstr "Lagra angreloggen for" -#: rc_option_editor.cc:170 rc_option_editor.cc:177 +#: rc_option_editor.cc:168 rc_option_editor.cc:175 msgid "commands" msgstr "kommandoar" -#: rc_option_editor.cc:315 +#: rc_option_editor.cc:313 msgid "Edit using:" msgstr "Rediger med:" -#: rc_option_editor.cc:321 rc_option_editor.cc:347 rc_option_editor.cc:374 +#: rc_option_editor.cc:319 rc_option_editor.cc:345 rc_option_editor.cc:372 msgid "+ button" msgstr "+ museknapp" -#: rc_option_editor.cc:341 +#: rc_option_editor.cc:339 msgid "Delete using:" msgstr "Slett med:" -#: rc_option_editor.cc:368 +#: rc_option_editor.cc:366 msgid "Insert note using:" msgstr "Set inn note med:" -#: rc_option_editor.cc:395 +#: rc_option_editor.cc:393 msgid "Ignore snap using:" msgstr "SjÃ¥ bort frÃ¥ festing med:" -#: rc_option_editor.cc:411 +#: rc_option_editor.cc:409 msgid "Keyboard layout:" msgstr "Tastaturutforming:" -#: rc_option_editor.cc:534 +#: rc_option_editor.cc:532 msgid "Font scaling:" msgstr "Skriftskalering:" -#: rc_option_editor.cc:586 +#: rc_option_editor.cc:584 msgid "Playback (seconds of buffering):" msgstr "Avspeling (sekund bufring):" -#: rc_option_editor.cc:599 +#: rc_option_editor.cc:597 msgid "Recording (seconds of buffering):" msgstr "Opptak (sekund bufring):" -#: rc_option_editor.cc:660 +#: rc_option_editor.cc:654 +msgid "Control Surface Protocol" +msgstr "" + +#: rc_option_editor.cc:658 msgid "Feedback" msgstr "Tilbakeføring" -#: rc_option_editor.cc:665 +#: rc_option_editor.cc:663 msgid "Double-click on a name to edit settings for an enabled protocol" msgstr "" "Dobbelklikk pÃ¥ eit namn for Ã¥ redigera innstillingane for ein aktiv protokoll" -#: rc_option_editor.cc:817 +#: rc_option_editor.cc:815 msgid "Show Video Export Info before export" msgstr "" -#: rc_option_editor.cc:818 +#: rc_option_editor.cc:816 msgid "Show Video Server Startup Dialog" msgstr "" -#: rc_option_editor.cc:819 +#: rc_option_editor.cc:817 msgid "Advanced Setup (remote video server)" msgstr "" -#: rc_option_editor.cc:827 +#: rc_option_editor.cc:825 msgid "" "When enabled you can speficify a custom video-server URL and docroot. " "- Do not enable this option unless you know what you are doing." msgstr "" -#: rc_option_editor.cc:829 +#: rc_option_editor.cc:827 msgid "Video Server URL:" msgstr "" -#: rc_option_editor.cc:834 +#: rc_option_editor.cc:832 msgid "" "Base URL of the video-server including http prefix. This is usually 'http://" "hostname.example.org:1554/' and defaults to 'http://localhost:1554/' when " "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:841 +#: rc_option_editor.cc:834 +msgid "Video Folder:" +msgstr "" + +#: rc_option_editor.cc:839 msgid "" "Local path to the video-server document-root. Only files below this " "directory will be accessible by the video-server. If the server run on a " @@ -8377,116 +8730,140 @@ msgid "" "monitor and file-browsing when opening/adding a video file." msgstr "" -#: rc_option_editor.cc:848 +#: rc_option_editor.cc:846 msgid "" "When enabled an information window with details is displayed before " "the video-export dialog." msgstr "" -#: rc_option_editor.cc:853 +#: rc_option_editor.cc:851 msgid "" "When enabled the video server is never launched automatically without " "confirmation" msgstr "" -#: rc_option_editor.cc:993 +#: rc_option_editor.cc:991 msgid "%1 Preferences" msgstr "Innstillingar for %1" -#: rc_option_editor.cc:1004 +#: rc_option_editor.cc:1002 msgid "DSP CPU Utilization" msgstr "DSP-prosessorbruk" -#: rc_option_editor.cc:1008 +#: rc_option_editor.cc:1006 msgid "Signal processing uses" msgstr "Signalhandsaminga brukar" -#: rc_option_editor.cc:1013 +#: rc_option_editor.cc:1011 msgid "all but one processor" msgstr "alt bortsett frÃ¥ ei signalhandsaming" -#: rc_option_editor.cc:1014 +#: rc_option_editor.cc:1012 msgid "all available processors" msgstr "alle tilgjengelege signalhandsamingar" -#: rc_option_editor.cc:1017 +#: rc_option_editor.cc:1015 msgid "%1 processors" msgstr "%1 signalhandsamingar" -#: rc_option_editor.cc:1020 +#: rc_option_editor.cc:1018 msgid "This setting will only take effect when %1 is restarted." msgstr "Dette vil fyrst verka nÃ¥r du startar %s pÃ¥ nytt att." -#: rc_option_editor.cc:1025 +#: rc_option_editor.cc:1023 msgid "Options|Undo" msgstr "Val|Angra" -#: rc_option_editor.cc:1032 +#: rc_option_editor.cc:1030 msgid "Verify removal of last capture" msgstr "Stadfest nÃ¥r du vil fjerna siste opptak" -#: rc_option_editor.cc:1040 +#: rc_option_editor.cc:1038 msgid "Make periodic backups of the session file" msgstr "Tryggingskopier økta med jamne mellomrom" -#: rc_option_editor.cc:1045 +#: rc_option_editor.cc:1043 msgid "Session Management" msgstr "Økthandtering" -#: rc_option_editor.cc:1050 +#: rc_option_editor.cc:1048 msgid "Always copy imported files" msgstr "Kopier alltid importerte filer" -#: rc_option_editor.cc:1057 +#: rc_option_editor.cc:1055 msgid "Default folder for new sessions:" msgstr "Standardmappe for nye økter:" -#: rc_option_editor.cc:1065 +#: rc_option_editor.cc:1063 msgid "Maximum number of recent sessions" msgstr "Største tal pÃ¥ samtidige økter" -#: rc_option_editor.cc:1078 +#: rc_option_editor.cc:1076 msgid "Click gain level" msgstr "Klikkvolum" -#: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 +#: rc_option_editor.cc:1081 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "Automasjon" -#: rc_option_editor.cc:1088 +#: rc_option_editor.cc:1086 msgid "Thinning factor (larger value => less data)" msgstr "Tynningsfaktor (høgare verdi => mindre data)" -#: rc_option_editor.cc:1097 +#: rc_option_editor.cc:1095 msgid "Automation sampling interval (milliseconds)" msgstr "Tid mellom automasjonspunkt (i millisekund)" -#: rc_option_editor.cc:1109 +#: rc_option_editor.cc:1107 msgid "Keep record-enable engaged on stop" msgstr "Hald opptaksstatusen pÃ¥ ved stopp" -#: rc_option_editor.cc:1118 +#: rc_option_editor.cc:1116 msgid "Stop recording when an xrun occurs" msgstr "Stopp opptak ved xrun-hendingar" -#: rc_option_editor.cc:1129 +#: rc_option_editor.cc:1121 +msgid "" +"When enabled %1 will stop recording if an over- or underrun is " +"detected by the audio engine" +msgstr "" + +#: rc_option_editor.cc:1127 msgid "Create markers where xruns occur" msgstr "Lag markørar ved xrun-hendingar" -#: rc_option_editor.cc:1138 +#: rc_option_editor.cc:1136 msgid "Stop at the end of the session" msgstr "Stopp ved slutten av økta" -#: rc_option_editor.cc:1151 -msgid "Do seamless looping (not possible when slaved to MTC, JACK etc)" +#: rc_option_editor.cc:1141 +msgid "" +"When enabled if %1 is not recording, it will stop the " +"transport when it reaches the current session end marker\n" +"\n" +"When disabled %1 will continue to roll past the session end marker at " +"all times" msgstr "" -"Bruk saumlaus lykkje (ikkje mogleg nÃ¥r me er bundne til MTC, JACK osb.)" -#: rc_option_editor.cc:1164 +#: rc_option_editor.cc:1149 +msgid "Do seamless looping (not possible when slaved to MTC, LTC etc)" +msgstr "" + +#: rc_option_editor.cc:1154 +msgid "" +"When enabled this will loop by reading ahead and wrapping around at " +"the loop point, preventing any need to do a transport locate at the end of " +"the loop\n" +"\n" +"When disabled looping is done by locating back to the start of the " +"loop when %1 reaches the end which will often cause a small click or delay" +msgstr "" + +#: rc_option_editor.cc:1162 msgid "Disable per-track record disarm while rolling" msgstr "Ikkje tillat Ã¥ skru av opptaksstatusen per spor under avspeling" -#: rc_option_editor.cc:1168 +#: rc_option_editor.cc:1166 msgid "" "When enabled this will prevent you from accidentally stopping " "specific tracks recording during a take" @@ -8494,11 +8871,11 @@ msgstr "" "NÃ¥r dette er pÃ¥, vil du ikkje kunna slÃ¥ av opptak for bestemte spor " "ved eit uhell medan du tek opp" -#: rc_option_editor.cc:1173 +#: rc_option_editor.cc:1171 msgid "12dB gain reduction during fast-forward and fast-rewind" msgstr "12dB demping ved spoling" -#: rc_option_editor.cc:1177 +#: rc_option_editor.cc:1175 msgid "" "This will reduce the unpleasant increase in perceived volume that occurs " "when fast-forwarding or rewinding through some kinds of audio" @@ -8506,23 +8883,37 @@ msgstr "" "Dette reduserer den ubehagelege auken i oppfatta volum som kjem nÃ¥r du " "spolar framover eller bakover gjennom nokre typar lyd" -#: rc_option_editor.cc:1181 +#: rc_option_editor.cc:1179 msgid "Sync/Slave" msgstr "Synk/slave" -#: rc_option_editor.cc:1185 +#: rc_option_editor.cc:1183 msgid "External timecode source" msgstr "Ekstern tidskodekjelde" -#: rc_option_editor.cc:1195 +#: rc_option_editor.cc:1193 msgid "Match session video frame rate to external timecode" msgstr "Tilpass raten for videorammene i denne økta til ekstern tidskode" -#: rc_option_editor.cc:1211 +#: rc_option_editor.cc:1199 +msgid "" +"This option controls the value of the video frame rate while chasing " +"an external timecode source.\n" +"\n" +"When enabled the session video frame rate will be changed to match " +"that of the selected external timecode source.\n" +"\n" +"When disabled the session video frame rate will not be changed to " +"match that of the selected external timecode source.Instead the frame rate " +"indication in the main clock will flash red and %1 will convert between the " +"external timecode standard and the session standard." +msgstr "" + +#: rc_option_editor.cc:1209 msgid "External timecode is sync locked" msgstr "Ekstern tidskode er lÃ¥st til synk" -#: rc_option_editor.cc:1217 +#: rc_option_editor.cc:1215 msgid "" "When enabled indicates that the selected external timecode source " "shares sync (Black & Burst, Wordclock, etc) with the audio interface." @@ -8530,35 +8921,54 @@ msgstr "" "NÃ¥r dette er pÃ¥, viser det at den valde eksterne tidskodekjelda deler " "synk (Black & burst, Wordclock, osfr.) med lydkortet." -#: rc_option_editor.cc:1224 +#: rc_option_editor.cc:1222 msgid "Lock to 29.9700 fps instead of 30000/1001" msgstr "LÃ¥s til 29,9700 fps i staden for 30000/1001" -#: rc_option_editor.cc:1240 +#: rc_option_editor.cc:1228 +msgid "" +"When enabled the external timecode source is assumed to use 29.97 fps " +"instead of 30000/1001.\n" +"SMPTE 12M-1999 specifies 29.97df as 30000/1001. The spec further mentions " +"that drop-frame timecode has an accumulated error of -86ms over a 24-hour " +"period.\n" +"Drop-frame timecode would compensate exactly for a NTSC color frame rate of " +"30 * 0.9990 (ie 29.970000). That is not the actual rate. However, some " +"vendors use that rate - despite it being against the specs - because the " +"variant of using exactly 29.97 fps has zero timecode drift.\n" +msgstr "" + +#: rc_option_editor.cc:1238 msgid "LTC Reader" msgstr "LTC-lesar" -#: rc_option_editor.cc:1244 +#: rc_option_editor.cc:1242 msgid "LTC incoming port" msgstr "Innkomande LTC-port" -#: rc_option_editor.cc:1257 +#: rc_option_editor.cc:1255 msgid "LTC Generator" msgstr "LTC-generator" -#: rc_option_editor.cc:1262 +#: rc_option_editor.cc:1260 msgid "Enable LTC generator" msgstr "Skru pÃ¥ LTC-generator" -#: rc_option_editor.cc:1269 +#: rc_option_editor.cc:1267 msgid "send LTC while stopped" msgstr "send LTC nÃ¥r stoppa" -#: rc_option_editor.cc:1281 +#: rc_option_editor.cc:1273 +msgid "" +"When enabled %1 will continue to send LTC information even when the " +"transport (playhead) is not moving" +msgstr "" + +#: rc_option_editor.cc:1279 msgid "LTC generator level" msgstr "LTC-generatornivÃ¥" -#: rc_option_editor.cc:1285 +#: rc_option_editor.cc:1283 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " "is 0dBu ^= -18dbFS in an EBU calibrated system" @@ -8566,103 +8976,103 @@ msgstr "" "Gjev toppvolumet til dei genererte LTC-signala i dbFS. Ein bra verdi er " "0dBu ^= -18dbFS i eit EBU-kalibrert system" -#: rc_option_editor.cc:1297 +#: rc_option_editor.cc:1295 msgid "Link selection of regions and tracks" msgstr "Lenk valet av bolkar og spor" -#: rc_option_editor.cc:1305 +#: rc_option_editor.cc:1303 msgid "Move relevant automation when audio regions are moved" msgstr "Flytt relevant automasjon saman med lydbolkane" -#: rc_option_editor.cc:1313 +#: rc_option_editor.cc:1311 msgid "Show meters on tracks in the editor" msgstr "Vis mælarar pÃ¥ spor i redigeringa" -#: rc_option_editor.cc:1321 +#: rc_option_editor.cc:1319 msgid "Display master-meter in the toolbar" msgstr "" -#: rc_option_editor.cc:1328 +#: rc_option_editor.cc:1326 msgid "Regions in active edit groups are edited together" msgstr "" -#: rc_option_editor.cc:1330 +#: rc_option_editor.cc:1327 +msgid "whenever they overlap in time" +msgstr "" + +#: rc_option_editor.cc:1328 msgid "only if they have identical length, position and origin" msgstr "" -#: rc_option_editor.cc:1340 +#: rc_option_editor.cc:1338 msgid "Make rubberband selection rectangle snap to the grid" msgstr "FÃ¥ gummistrikkval-rektangelet til Ã¥ festa til gitteret" -#: rc_option_editor.cc:1348 +#: rc_option_editor.cc:1346 msgid "Show waveforms in regions" msgstr "Vis bylgjeformer i bolkane" -#: rc_option_editor.cc:1356 +#: rc_option_editor.cc:1354 msgid "Show gain envelopes in audio regions" msgstr "Vis lydomhylling i lydbolkane" -#: rc_option_editor.cc:1357 +#: rc_option_editor.cc:1355 msgid "in all modes" msgstr "i alle modi" -#: rc_option_editor.cc:1358 +#: rc_option_editor.cc:1356 msgid "only in region gain mode" msgstr "berre i bolkvolum-modus" -#: rc_option_editor.cc:1365 +#: rc_option_editor.cc:1363 msgid "Waveform scale" msgstr "Bylgjeskala" -#: rc_option_editor.cc:1370 +#: rc_option_editor.cc:1368 msgid "linear" msgstr "rettlinja" -#: rc_option_editor.cc:1371 +#: rc_option_editor.cc:1369 msgid "logarithmic" msgstr "logaritmisk" -#: rc_option_editor.cc:1377 +#: rc_option_editor.cc:1375 msgid "Waveform shape" msgstr "Bylgjeform" -#: rc_option_editor.cc:1382 +#: rc_option_editor.cc:1380 msgid "traditional" msgstr "tradisjonell" -#: rc_option_editor.cc:1383 +#: rc_option_editor.cc:1381 msgid "rectified" msgstr "innretta" -#: rc_option_editor.cc:1390 +#: rc_option_editor.cc:1388 msgid "Show waveforms for audio while it is being recorded" msgstr "Vis bylgjeformer ved opptak" -#: rc_option_editor.cc:1398 +#: rc_option_editor.cc:1396 msgid "Show zoom toolbar" msgstr "Vis zoom-verktylina" -#: rc_option_editor.cc:1406 +#: rc_option_editor.cc:1404 msgid "Color regions using their track's color" msgstr "Fargelegg bolkar med sporfarga" -#: rc_option_editor.cc:1414 +#: rc_option_editor.cc:1412 msgid "Update editor window during drags of the summary" msgstr "Oppdater redigeringsvindauga nÃ¥r du dreg samandraget" -#: rc_option_editor.cc:1422 -msgid "Synchronise editor and mixer track order" -msgstr "Samkøyr redigeringa og kanalrekkjefylgja pÃ¥ miksaren" - -#: rc_option_editor.cc:1430 +#: rc_option_editor.cc:1420 msgid "Synchronise editor and mixer selection" msgstr "Samkøyr redigeringa og miksarvalet" -#: rc_option_editor.cc:1437 +#: rc_option_editor.cc:1427 msgid "Name new markers" msgstr "Døyp nye markørar" -#: rc_option_editor.cc:1443 +#: rc_option_editor.cc:1433 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " "be set as it is created.\n" @@ -8674,394 +9084,414 @@ msgstr "" "\n" "Du kan alltid døypa om markørar ved Ã¥ høgreklikka pÃ¥ dei." -#: rc_option_editor.cc:1449 +#: rc_option_editor.cc:1439 msgid "Auto-scroll editor window when dragging near its edges" msgstr "Autorull redigeringsvindauga nÃ¥r du dreg nær kantane" -#: rc_option_editor.cc:1456 +#: rc_option_editor.cc:1446 msgid "Buffering" msgstr "Bufring" -#: rc_option_editor.cc:1464 +#: rc_option_editor.cc:1454 msgid "Record monitoring handled by" msgstr "Opptakslyttinga blir handtert av" -#: rc_option_editor.cc:1475 +#: rc_option_editor.cc:1460 +msgid "via Audio Driver" +msgstr "" + +#: rc_option_editor.cc:1463 msgid "ardour" msgstr "ardour" -#: rc_option_editor.cc:1476 +#: rc_option_editor.cc:1464 msgid "audio hardware" msgstr "lydmaskinvare" -#: rc_option_editor.cc:1483 +#: rc_option_editor.cc:1471 msgid "Tape machine mode" msgstr "Bandopptakarmodus" -#: rc_option_editor.cc:1488 +#: rc_option_editor.cc:1476 msgid "Connection of tracks and busses" msgstr "Tilkopling av spor og bussar" -#: rc_option_editor.cc:1493 +#: rc_option_editor.cc:1481 msgid "Auto-connect master/monitor busses" msgstr "Kopla til master- og lyttebussane automatisk" -#: rc_option_editor.cc:1500 +#: rc_option_editor.cc:1488 msgid "Connect track inputs" msgstr "Kopla sporinngangane" -#: rc_option_editor.cc:1505 +#: rc_option_editor.cc:1493 msgid "automatically to physical inputs" msgstr "automatisk til fysiske inngangar" -#: rc_option_editor.cc:1506 rc_option_editor.cc:1519 +#: rc_option_editor.cc:1494 rc_option_editor.cc:1507 msgid "manually" msgstr "manuelt" -#: rc_option_editor.cc:1512 +#: rc_option_editor.cc:1500 msgid "Connect track and bus outputs" msgstr "Kopla til spor- og bussutgangar" -#: rc_option_editor.cc:1517 +#: rc_option_editor.cc:1505 msgid "automatically to physical outputs" msgstr "automatisk til fysiske inngangar" -#: rc_option_editor.cc:1518 +#: rc_option_editor.cc:1506 msgid "automatically to master bus" msgstr "automatisk til masterbussen" -#: rc_option_editor.cc:1523 +#: rc_option_editor.cc:1511 msgid "Denormals" msgstr "Unormalar" -#: rc_option_editor.cc:1528 +#: rc_option_editor.cc:1516 msgid "Use DC bias to protect against denormals" msgstr "Bruk likestraumsbias for Ã¥ verna mot unormalar" -#: rc_option_editor.cc:1535 +#: rc_option_editor.cc:1523 msgid "Processor handling" msgstr "Prosessorhandtering" -#: rc_option_editor.cc:1540 +#: rc_option_editor.cc:1528 msgid "no processor handling" msgstr "inga prosessorhandtering" -#: rc_option_editor.cc:1545 +#: rc_option_editor.cc:1533 msgid "use FlushToZero" msgstr "bruk SpylTilNull" -#: rc_option_editor.cc:1549 +#: rc_option_editor.cc:1537 msgid "use DenormalsAreZero" msgstr "bruk UnormalarErNull" -#: rc_option_editor.cc:1553 +#: rc_option_editor.cc:1541 msgid "use FlushToZero and DenormalsAreZero" msgstr "bruk SpylTilNull og UnormalarErNull" -#: rc_option_editor.cc:1563 +#: rc_option_editor.cc:1551 msgid "Silence plugins when the transport is stopped" msgstr "Demp lyden frÃ¥ utvidingar ved stopp" -#: rc_option_editor.cc:1571 +#: rc_option_editor.cc:1559 msgid "Make new plugins active" msgstr "Gjer nye utvidingar aktive" -#: rc_option_editor.cc:1579 +#: rc_option_editor.cc:1567 msgid "Enable automatic analysis of audio" msgstr "Skru pÃ¥ automatisk analyse av lyd" -#: rc_option_editor.cc:1587 +#: rc_option_editor.cc:1575 msgid "Replicate missing region channels" msgstr "Kopier manglande bolk-kanalar" -#: rc_option_editor.cc:1594 rc_option_editor.cc:1609 rc_option_editor.cc:1621 -#: rc_option_editor.cc:1633 rc_option_editor.cc:1645 rc_option_editor.cc:1649 -#: rc_option_editor.cc:1657 rc_option_editor.cc:1665 rc_option_editor.cc:1673 -#: rc_option_editor.cc:1675 rc_option_editor.cc:1683 rc_option_editor.cc:1691 -#: rc_option_editor.cc:1699 +#: rc_option_editor.cc:1582 rc_option_editor.cc:1597 rc_option_editor.cc:1609 +#: rc_option_editor.cc:1621 rc_option_editor.cc:1633 rc_option_editor.cc:1637 +#: rc_option_editor.cc:1645 rc_option_editor.cc:1653 rc_option_editor.cc:1661 +#: rc_option_editor.cc:1663 rc_option_editor.cc:1671 rc_option_editor.cc:1679 +#: rc_option_editor.cc:1687 msgid "Solo / mute" msgstr "Solo / demp" -#: rc_option_editor.cc:1597 +#: rc_option_editor.cc:1585 msgid "Solo-in-place mute cut (dB)" msgstr "Demping for solo-pÃ¥-plass (dB)" -#: rc_option_editor.cc:1604 +#: rc_option_editor.cc:1592 msgid "Solo controls are Listen controls" msgstr "Solo-kontrollar er lyttekontrollar" -#: rc_option_editor.cc:1613 +#: rc_option_editor.cc:1601 msgid "Listen Position" msgstr "Lytteposisjon" -#: rc_option_editor.cc:1618 +#: rc_option_editor.cc:1606 msgid "after-fader (AFL)" msgstr "etterlytting (AFL)" -#: rc_option_editor.cc:1619 +#: rc_option_editor.cc:1607 msgid "pre-fader (PFL)" msgstr "førlytting (PFL)" -#: rc_option_editor.cc:1625 +#: rc_option_editor.cc:1613 msgid "PFL signals come from" msgstr "Førlyttingssignal kjem frÃ¥ " -#: rc_option_editor.cc:1630 +#: rc_option_editor.cc:1618 msgid "before pre-fader processors" msgstr "før før-volum-handsamingar" -#: rc_option_editor.cc:1631 +#: rc_option_editor.cc:1619 msgid "pre-fader but after pre-fader processors" msgstr "før-volum, men etter før-volum-signalhandsaming" -#: rc_option_editor.cc:1637 +#: rc_option_editor.cc:1625 msgid "AFL signals come from" msgstr "AFL-signal kjem frÃ¥ " -#: rc_option_editor.cc:1642 +#: rc_option_editor.cc:1630 msgid "immediately post-fader" msgstr "rett etter volum" -#: rc_option_editor.cc:1643 +#: rc_option_editor.cc:1631 msgid "after post-fader processors (before pan)" msgstr "etter etter-volum-signalprosessar (før panorering)" -#: rc_option_editor.cc:1652 +#: rc_option_editor.cc:1640 msgid "Exclusive solo" msgstr "Eksklusiv solo" -#: rc_option_editor.cc:1660 +#: rc_option_editor.cc:1648 msgid "Show solo muting" msgstr "Vis solodemping" -#: rc_option_editor.cc:1668 +#: rc_option_editor.cc:1656 msgid "Soloing overrides muting" msgstr "Solo overstyrer demping" -#: rc_option_editor.cc:1673 +#: rc_option_editor.cc:1661 msgid "Default track / bus muting options" msgstr "Standard spor- og bussdempeval" -#: rc_option_editor.cc:1678 +#: rc_option_editor.cc:1666 msgid "Mute affects pre-fader sends" msgstr "Demping verkar pÃ¥ send før volum" -#: rc_option_editor.cc:1686 +#: rc_option_editor.cc:1674 msgid "Mute affects post-fader sends" msgstr "Demping verkar pÃ¥ send etter volum" -#: rc_option_editor.cc:1694 +#: rc_option_editor.cc:1682 msgid "Mute affects control outputs" msgstr "Demping pÃ¥verkar kontrollutgangane" -#: rc_option_editor.cc:1702 +#: rc_option_editor.cc:1690 msgid "Mute affects main outputs" msgstr "Demping verkar pÃ¥ hovudutgangar" -#: rc_option_editor.cc:1718 +#: rc_option_editor.cc:1706 msgid "Send MIDI Time Code" msgstr "Send MIDI-tidskode" -#: rc_option_editor.cc:1726 +#: rc_option_editor.cc:1714 msgid "Percentage either side of normal transport speed to transmit MTC" msgstr "Prosentdel til kvar side av normal transportfart for Ã¥ senda MTC" -#: rc_option_editor.cc:1735 +#: rc_option_editor.cc:1723 msgid "Obey MIDI Machine Control commands" msgstr "Lyd MIDI-maskinkontrollkommandoar" -#: rc_option_editor.cc:1743 +#: rc_option_editor.cc:1731 msgid "Send MIDI Machine Control commands" msgstr "Send MIDI-maskinkontrollkommandoar" -#: rc_option_editor.cc:1751 +#: rc_option_editor.cc:1739 msgid "Send MIDI control feedback" msgstr "Send MIDI-kontrollsvar" -#: rc_option_editor.cc:1759 +#: rc_option_editor.cc:1747 msgid "Inbound MMC device ID" msgstr "ID for innkomande MMC-eining" -#: rc_option_editor.cc:1768 +#: rc_option_editor.cc:1756 msgid "Outbound MMC device ID" msgstr "ID for utgÃ¥ande MMC-eining" -#: rc_option_editor.cc:1777 +#: rc_option_editor.cc:1765 msgid "Initial program change" msgstr "Tidleg programendring" -#: rc_option_editor.cc:1786 +#: rc_option_editor.cc:1774 msgid "Display first MIDI bank/program as 0" msgstr "Vis fyrste MIDI-bank/program som 0" -#: rc_option_editor.cc:1794 +#: rc_option_editor.cc:1782 msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "Aldri vis periodiske MIDI-meldingar (MTC, MIDI-klokke)" -#: rc_option_editor.cc:1802 +#: rc_option_editor.cc:1790 msgid "Sound MIDI notes as they are selected" msgstr "Lytt pÃ¥ MIDI-notar medan du vel dei" -#: rc_option_editor.cc:1810 rc_option_editor.cc:1820 rc_option_editor.cc:1822 +#: rc_option_editor.cc:1798 rc_option_editor.cc:1808 rc_option_editor.cc:1810 msgid "User interaction" msgstr "Brukarsamhandling" -#: rc_option_editor.cc:1813 +#: rc_option_editor.cc:1801 msgid "" "Use translations of %1 messages\n" " (requires a restart of %1 to take effect)\n" " (if available for your language preferences)" msgstr "" -#: rc_option_editor.cc:1820 +#: rc_option_editor.cc:1808 msgid "Keyboard" msgstr "Tastatur" -#: rc_option_editor.cc:1830 +#: rc_option_editor.cc:1818 msgid "Control surface remote ID" msgstr "Fjernstyrings-ID for kontrollflate" -#: rc_option_editor.cc:1835 +#: rc_option_editor.cc:1823 msgid "assigned by user" msgstr "fastsett av brukaren" -#: rc_option_editor.cc:1836 +#: rc_option_editor.cc:1824 msgid "follows order of mixer" msgstr "fylgjer miksaren" -#: rc_option_editor.cc:1837 -msgid "follows order of editor" -msgstr "fylgjer redigeringa" +#: rc_option_editor.cc:1833 rc_option_editor.cc:1841 rc_option_editor.cc:1851 +#: rc_option_editor.cc:1872 rc_option_editor.cc:1881 rc_option_editor.cc:1889 +#: rc_option_editor.cc:1903 rc_option_editor.cc:1922 rc_option_editor.cc:1938 +#: rc_option_editor.cc:1954 rc_option_editor.cc:1968 rc_option_editor.cc:1982 +#: rc_option_editor.cc:1984 +msgid "Preferences|GUI" +msgstr "" -#: rc_option_editor.cc:1849 +#: rc_option_editor.cc:1836 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "Vis musepeikaren grafisk nÃ¥r han er over ulike smÃ¥program" -#: rc_option_editor.cc:1857 +#: rc_option_editor.cc:1844 msgid "Show tooltips if mouse hovers over a control" msgstr "Vis verktøytips nÃ¥r peikaren er over ein kontroll" -#: rc_option_editor.cc:1867 +#: rc_option_editor.cc:1854 msgid "GUI" msgstr "Brukarflate" -#: rc_option_editor.cc:1870 +#: rc_option_editor.cc:1857 msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" -#: rc_option_editor.cc:1887 +#: rc_option_editor.cc:1874 msgid "Mixer Strip" msgstr "Miksarstripe" -#: rc_option_editor.cc:1897 +#: rc_option_editor.cc:1884 msgid "Use narrow strips in the mixer by default" msgstr "Bruk smale miksarstriper i miksaren som standard" -#: rc_option_editor.cc:1912 +#: rc_option_editor.cc:1893 +msgid "Peak hold time" +msgstr "" + +#: rc_option_editor.cc:1899 msgid "short" msgstr "kort" -#: rc_option_editor.cc:1913 +#: rc_option_editor.cc:1900 msgid "medium" msgstr "middels" -#: rc_option_editor.cc:1914 +#: rc_option_editor.cc:1901 msgid "long" msgstr "lenge" -#: rc_option_editor.cc:1926 +#: rc_option_editor.cc:1907 +msgid "DPM fall-off" +msgstr "" + +#: rc_option_editor.cc:1913 msgid "slowest [6.6dB/sec]" msgstr "" -#: rc_option_editor.cc:1927 +#: rc_option_editor.cc:1914 msgid "slow [8.6dB/sec] (BBC PPM, EBU PPM)" msgstr "" -#: rc_option_editor.cc:1928 +#: rc_option_editor.cc:1915 msgid "slowish [12.0dB/sec] (DIN)" msgstr "" -#: rc_option_editor.cc:1929 +#: rc_option_editor.cc:1916 msgid "moderate [13.3dB/sec] (EBU Digi PPM, IRT Digi PPM)" msgstr "" -#: rc_option_editor.cc:1930 +#: rc_option_editor.cc:1917 msgid "medium [20dB/sec]" msgstr "" -#: rc_option_editor.cc:1931 +#: rc_option_editor.cc:1918 msgid "fast [32dB/sec]" msgstr "" -#: rc_option_editor.cc:1932 +#: rc_option_editor.cc:1919 msgid "faster [46dB/sec]" msgstr "" -#: rc_option_editor.cc:1933 +#: rc_option_editor.cc:1920 msgid "fastest [70dB/sec]" msgstr "" -#: rc_option_editor.cc:1939 +#: rc_option_editor.cc:1926 msgid "Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1944 rc_option_editor.cc:1960 +#: rc_option_editor.cc:1931 rc_option_editor.cc:1947 msgid "-24dBFS (SMPTE US: 4dBu = -20dBFS)" msgstr "" -#: rc_option_editor.cc:1945 rc_option_editor.cc:1961 +#: rc_option_editor.cc:1932 rc_option_editor.cc:1948 msgid "-20dBFS (SMPTE RP.0155)" msgstr "" -#: rc_option_editor.cc:1946 rc_option_editor.cc:1962 +#: rc_option_editor.cc:1933 rc_option_editor.cc:1949 msgid "-18dBFS (EBU, BBC)" msgstr "" -#: rc_option_editor.cc:1947 rc_option_editor.cc:1963 +#: rc_option_editor.cc:1934 rc_option_editor.cc:1950 msgid "-15dBFS (DIN)" msgstr "" -#: rc_option_editor.cc:1949 +#: rc_option_editor.cc:1936 msgid "" "Configure meter-marks and color-knee point for dBFS scale DPM, set reference " "level for IEC1/Nordic, IEC2 PPM and VU meter." msgstr "" -#: rc_option_editor.cc:1955 +#: rc_option_editor.cc:1942 msgid "IEC1/DIN Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1965 +#: rc_option_editor.cc:1952 msgid "Reference level for IEC1/DIN meter." msgstr "" -#: rc_option_editor.cc:1971 +#: rc_option_editor.cc:1958 msgid "VU Meter standard" msgstr "" -#: rc_option_editor.cc:1976 +#: rc_option_editor.cc:1963 msgid "0VU = -2dBu (France)" msgstr "" -#: rc_option_editor.cc:1977 +#: rc_option_editor.cc:1964 msgid "0VU = 0dBu (North America, Australia)" msgstr "" -#: rc_option_editor.cc:1978 +#: rc_option_editor.cc:1965 msgid "0VU = +4dBu (standard)" msgstr "" -#: rc_option_editor.cc:1979 +#: rc_option_editor.cc:1966 msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1993 +#: rc_option_editor.cc:1972 +msgid "Peak threshold [dBFS]" +msgstr "" + +#: rc_option_editor.cc:1980 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " "indicator will flash red." msgstr "" -#: rc_option_editor.cc:2000 +#: rc_option_editor.cc:1987 msgid "LED meter style" msgstr "" @@ -9381,6 +9811,10 @@ msgstr "Vis gjeldande automasjon" msgid "Hide All Automation" msgstr "Gøym all automasjon" +#: route_time_axis.cc:405 +msgid "Processor automation" +msgstr "" + #: route_time_axis.cc:424 msgid "Color..." msgstr "Farge..." @@ -9717,31 +10151,17 @@ msgstr "lyttebussen" #: route_ui.cc:1818 msgid "" -"The remote control ID of %6 is: %3\n" +"The remote control ID of %5 is: %2\n" "\n" "\n" -"Remote Control IDs are currently determined by track/bus ordering in %1\n" +"Remote Control IDs are currently determined by track/bus ordering in " +"Ardour.\n" "\n" -"%4Use the User Interaction tab of the Preferences window if you want to " -"change this%5" +"%3Use the User Interaction tab of the Preferences window if you want to " +"change this%4" msgstr "" -"Fjernkontroll-IDen for %6 er: %3\n" -"\n" -"\n" -"Fjernkontroll-IDane blir avgjorde av spor-/bussrekkjefylgja i %1\n" -"\n" -"%4SjÃ¥ pÃ¥ brukarsamhandling-fana i vindauga for innstillingar viss du vil " -"endra dette%5" -#: route_ui.cc:1821 -msgid "the mixer" -msgstr "miksaren" - -#: route_ui.cc:1821 -msgid "the editor" -msgstr "redigeringa" - -#: route_ui.cc:1876 +#: route_ui.cc:1875 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " "to show menu." @@ -9749,7 +10169,7 @@ msgstr "" "Venstreklikk for Ã¥ fasevenda kanal %1 pÃ¥ dette sporet. Høgreklikk for Ã¥ sjÃ¥ " "menyen." -#: route_ui.cc:1878 +#: route_ui.cc:1877 msgid "Click to show a menu of channels for inversion (phase reverse)" msgstr "Klikk for Ã¥ visa ein meny over kanalar Ã¥ invertera (fasevenda)" @@ -9769,6 +10189,118 @@ msgstr "øktmappa" msgid "Send " msgstr "Send" +#: session_dialog.cc:66 +msgid "Session Setup" +msgstr "" + +#: session_dialog.cc:71 +msgid "Advanced options ..." +msgstr "" + +#: session_dialog.cc:267 +msgid "New Session" +msgstr "Ny økt" + +#: session_dialog.cc:305 +msgid "Check the website for more..." +msgstr "" + +#: session_dialog.cc:308 +msgid "Click to open the program website in your web browser" +msgstr "" + +#: session_dialog.cc:328 +msgid "Sample Rate" +msgstr "" + +#: session_dialog.cc:329 +msgid "Disk Format" +msgstr "" + +#: session_dialog.cc:347 +msgid "Select session file" +msgstr "Vel øktfil" + +#: session_dialog.cc:362 +msgid "Other Sessions" +msgstr "" + +#: session_dialog.cc:388 +msgid "Open" +msgstr "Opna" + +#: session_dialog.cc:455 +msgid "Session name:" +msgstr "Namn pÃ¥ økta:" + +#: session_dialog.cc:477 +msgid "Create session folder in:" +msgstr "Lag øktmappa i :" + +#: session_dialog.cc:500 +msgid "Select folder for session" +msgstr "Vel mappe for økta" + +#: session_dialog.cc:529 +msgid "Use this template" +msgstr "Bruk denne malen" + +#: session_dialog.cc:532 +msgid "no template" +msgstr "ingen mal" + +#: session_dialog.cc:664 session_dialog.cc:696 +msgid "32 bit float" +msgstr "" + +#: session_dialog.cc:667 session_dialog.cc:699 +msgid "24 bit" +msgstr "" + +#: session_dialog.cc:670 session_dialog.cc:702 +msgid "16 bit" +msgstr "" + +#: session_dialog.cc:741 session_dialog.cc:742 session_dialog.cc:743 +msgid "channels" +msgstr "kanalar" + +#: session_dialog.cc:757 +msgid "Busses" +msgstr "Bussar" + +#: session_dialog.cc:758 +msgid "Inputs" +msgstr "Ingangar" + +#: session_dialog.cc:759 +msgid "Outputs" +msgstr "Utgangar" + +#: session_dialog.cc:767 +msgid "Create master bus" +msgstr "Lag hovudbuss" + +#: session_dialog.cc:777 +msgid "Automatically connect to physical inputs" +msgstr "Kopla automatisk til fysiske inngangar" + +#: session_dialog.cc:784 session_dialog.cc:843 +msgid "Use only" +msgstr "Bruk berre" + +#: session_dialog.cc:837 +msgid "Automatically connect outputs" +msgstr "Kopla utgangane automatisk" + +#: session_dialog.cc:859 +msgid "... to master bus" +msgstr "... til hovudbussen" + +#: session_dialog.cc:869 +msgid "... to physical outputs" +msgstr "... til fysiske utgangar" + #: session_import_dialog.cc:64 msgid "Import from Session" msgstr "Importer frÃ¥ økt" @@ -10245,18 +10777,54 @@ msgstr "Lim nye markørar til takter og taktslag" msgid "Glue new regions to bars and beats" msgstr "Lim nye bolkar til takter og taktslag" +#: session_option_editor.cc:275 session_option_editor.cc:277 +#: session_option_editor.cc:284 session_option_editor.cc:291 +#: session_option_editor.cc:298 session_option_editor.cc:300 +#: session_option_editor.cc:307 session_option_editor.cc:314 +#: session_option_editor.cc:321 session_option_editor.cc:323 +msgid "Meterbridge" +msgstr "" + #: session_option_editor.cc:275 msgid "Route Display" msgstr "" +#: session_option_editor.cc:279 +msgid "Show Midi Tracks" +msgstr "" + +#: session_option_editor.cc:286 +msgid "Show Busses" +msgstr "" + +#: session_option_editor.cc:293 +msgid "Include Master Bus" +msgstr "" + #: session_option_editor.cc:298 msgid "Button Area" msgstr "" +#: session_option_editor.cc:302 +msgid "Rec-enable Button" +msgstr "" + +#: session_option_editor.cc:309 +msgid "Mute Button" +msgstr "" + +#: session_option_editor.cc:316 +msgid "Solo Button" +msgstr "" + #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" +#: session_option_editor.cc:325 +msgid "Track Name" +msgstr "" + #: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 msgid "as new tracks" msgstr "som nytt spor" @@ -10610,30 +11178,45 @@ msgid "Azimuth:" msgstr "Asimut:" #: startup.cc:72 -msgid "Create a new session" -msgstr "Lag ei ny økt" +msgid "" +"Use an external mixer or the hardware mixer of your audio interface.\n" +"%1 will play NO role in monitoring" +msgstr "" -#: startup.cc:73 -msgid "Open an existing session" -msgstr "Opna ei eksisterande økt" - -#: startup.cc:76 +#: startup.cc:74 msgid "Ask %1 to play back material as it is being recorded" msgstr "Be %1 om Ã¥ spela det som blir teke opp" -#: startup.cc:79 -msgid "I'd like more options for this session" -msgstr "Eg vil gjerne ha fleire val for denne økta" +#: startup.cc:143 +msgid "" +"Welcome to this BETA release of Ardour %1\n" +"\n" +"Ardour %1 has been released for Linux but because of the lack of testers,\n" +"it is still at the beta stage on OS X. So, a few guidelines:\n" +"\n" +"1) Please do NOT use this software with the expectation that it is " +"stable or reliable\n" +" though it may be so, depending on your workflow.\n" +"2) Please do NOT use the forums at ardour.org to report issues.\n" +"3) Please DO use the bugtracker at http://tracker.ardour.org/ to " +"report issues\n" +" making sure to note the product version number as %1-beta.\n" +"4) Please DO use the ardour-users mailing list to discuss ideas and " +"pass on comments.\n" +"5) Please DO join us on IRC for real time discussions about ardour3. " +"You\n" +" can get there directly from Ardour via the Help->Chat menu option.\n" +"\n" +"Full information on all the above can be found on the support page at\n" +"\n" +" http://ardour.org/support\n" +msgstr "" -#: startup.cc:218 +#: startup.cc:167 msgid "This is a BETA RELEASE" msgstr "Dette er ei BETA-utgÃ¥ve" -#: startup.cc:324 -msgid "Audio / MIDI Setup" -msgstr "Lyd / MIDI-oppsett" - -#: startup.cc:336 +#: startup.cc:176 msgid "" "%1 is a digital audio workstation. You can use it to " "record, edit and mix multi-track audio. You can produce your own CDs, mix " @@ -10649,15 +11232,15 @@ msgstr "" "\n" "Me mÃ¥ gjera nokre val før du byrjar Ã¥ bruka programmet." -#: startup.cc:362 +#: startup.cc:202 msgid "Welcome to %1" msgstr "Velkomen til %1" -#: startup.cc:385 +#: startup.cc:225 msgid "Default folder for %1 sessions" msgstr "Standardmappa for %1-økter" -#: startup.cc:391 +#: startup.cc:231 msgid "" "Each project that you work on with %1 has its own folder.\n" "These can require a lot of disk space if you are recording audio.\n" @@ -10673,11 +11256,11 @@ msgstr "" "\n" "(Du kan lagra prosjekt kvar som helst, dette er berre standardvalet)" -#: startup.cc:415 +#: startup.cc:254 msgid "Default folder for new sessions" msgstr "Standardmappe for nye økter" -#: startup.cc:436 +#: startup.cc:275 msgid "" "While recording instruments or vocals, you probably want to listen to the\n" "signal as well as record it. This is called \"monitoring\". There are\n" @@ -10697,15 +11280,15 @@ msgstr "" "\n" "(Du kan endra dette i Innstillingar-ruta seinare)" -#: startup.cc:457 +#: startup.cc:296 msgid "Monitoring Choices" msgstr "Lyttingsval" -#: startup.cc:480 +#: startup.cc:319 msgid "Use a Master bus directly" msgstr "Bruk hovudbuss direkte" -#: startup.cc:482 +#: startup.cc:321 msgid "" "Connect the Master bus directly to your hardware outputs. This is preferable " "for simple usage." @@ -10713,11 +11296,11 @@ msgstr "" "Kopla hovudbussen direkte til maskinvareutgangane. Best for grunnleggande " "bruk." -#: startup.cc:491 +#: startup.cc:330 msgid "Use an additional Monitor bus" msgstr "Bruk eigen lyttebuss i tillegg" -#: startup.cc:494 +#: startup.cc:333 msgid "" "Use a Monitor bus between Master bus and hardware outputs for \n" "greater control in monitoring without affecting the mix." @@ -10725,7 +11308,7 @@ msgstr "" "Bruk ein lyttebuss mellom hovudbussen og maskinvareutgangane\n" "for Ã¥ ha betre kontroll med lyttinga utan Ã¥ pÃ¥verka miksen." -#: startup.cc:516 +#: startup.cc:355 msgid "" "You can change this preference at any time via the Preferences dialog.\n" "You can also add or remove the monitor section to/from any session.\n" @@ -10738,110 +11321,10 @@ msgstr "" "\n" "Viss du ikkje skjønar kva dette er til, kan du bruka standardvala." -#: startup.cc:527 +#: startup.cc:366 msgid "Monitor Section" msgstr "Lytteavdeling" -#: startup.cc:573 -msgid "Check the website for more..." -msgstr "" - -#: startup.cc:576 -msgid "Click to open the program website in your web browser" -msgstr "" - -#: startup.cc:729 -msgid "Open" -msgstr "Opna" - -#: startup.cc:775 -msgid "Session name:" -msgstr "Namn pÃ¥ økta:" - -#: startup.cc:798 -msgid "Create session folder in:" -msgstr "Lag øktmappa i :" - -#: startup.cc:821 -msgid "Select folder for session" -msgstr "Vel mappe for økta" - -#: startup.cc:853 -msgid "Use this template" -msgstr "Bruk denne malen" - -#: startup.cc:856 -msgid "no template" -msgstr "ingen mal" - -#: startup.cc:884 -msgid "Use an existing session as a template:" -msgstr "Bruk ei eksisterande økt som mal:" - -#: startup.cc:896 -msgid "Select template" -msgstr "Vel mal" - -#: startup.cc:922 -msgid "New Session" -msgstr "Ny økt" - -#: startup.cc:1077 -msgid "Select session file" -msgstr "Vel øktfil" - -#: startup.cc:1093 -msgid "Browse:" -msgstr "Bla gjennom:" - -#: startup.cc:1102 -msgid "Select a session" -msgstr "Vel ei økt" - -#: startup.cc:1129 startup.cc:1130 startup.cc:1131 -msgid "channels" -msgstr "kanalar" - -#: startup.cc:1145 -msgid "Busses" -msgstr "Bussar" - -#: startup.cc:1146 -msgid "Inputs" -msgstr "Ingangar" - -#: startup.cc:1147 -msgid "Outputs" -msgstr "Utgangar" - -#: startup.cc:1155 -msgid "Create master bus" -msgstr "Lag hovudbuss" - -#: startup.cc:1165 -msgid "Automatically connect to physical inputs" -msgstr "Kopla automatisk til fysiske inngangar" - -#: startup.cc:1172 startup.cc:1231 -msgid "Use only" -msgstr "Bruk berre" - -#: startup.cc:1225 -msgid "Automatically connect outputs" -msgstr "Kopla utgangane automatisk" - -#: startup.cc:1247 -msgid "... to master bus" -msgstr "... til hovudbussen" - -#: startup.cc:1257 -msgid "... to physical outputs" -msgstr "... til fysiske utgangar" - -#: startup.cc:1307 -msgid "Advanced Session Options" -msgstr "Avanserte innstillingar for økta" - #: step_entry.cc:59 msgid "Step Entry: %1" msgstr "Steginnlegging: %1" @@ -11226,6 +11709,11 @@ msgstr "Skru pÃ¥ akkordskriving" msgid "Sustain Selected Notes by Note Length" msgstr "Hald desse notane i notelengda" +#: stereo_panner.cc:108 +#, c-format +msgid "L:%3d R:%3d Width:%d%%" +msgstr "" + #: stereo_panner_editor.cc:35 msgid "Stereo Panner" msgstr "Stereopanorering" @@ -11501,23 +11989,23 @@ msgstr "finn inga grensesnitt-oppsettsfil, lerretet vil verka øydelagt." msgid "Config file %1 not saved" msgstr "Oppsettsfila %1 vart ikkje lagra" -#: utils.cc:110 utils.cc:153 +#: utils.cc:111 utils.cc:154 msgid "bad XPM header %1" msgstr "Feil med XPM-tittellinja %1" -#: utils.cc:292 utils.cc:324 +#: utils.cc:293 utils.cc:325 msgid "missing RGBA style for \"%1\"" msgstr "manglar RGBA-stil for \"%1\"" -#: utils.cc:591 +#: utils.cc:598 msgid "cannot find XPM file for %1" msgstr "greier ikkje finna XPM-fil for %1" -#: utils.cc:617 +#: utils.cc:624 msgid "cannot find icon image for %1 using %2" msgstr "greier ikkje finna ikonbilete for %1 ved bruk av %2" -#: utils.cc:632 +#: utils.cc:639 msgid "Caught exception while loading icon named %1" msgstr "Fekk unntak nÃ¥r me lasta ikonet %1" @@ -11525,6 +12013,14 @@ msgstr "Fekk unntak nÃ¥r me lasta ikonet %1" msgid "VerboseCanvasCursor" msgstr "VerboseCanvasCursor" +#: add_video_dialog.cc:55 +msgid "Set Video Track" +msgstr "" + +#: add_video_dialog.cc:63 +msgid "Launch External Video Monitor" +msgstr "" + #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -11537,6 +12033,22 @@ msgstr "" msgid "VideoServerIndex" msgstr "" +#: add_video_dialog.cc:129 +msgid "Video files" +msgstr "" + +#: add_video_dialog.cc:164 +msgid "Video Information" +msgstr "" + +#: add_video_dialog.cc:167 +msgid "Start:" +msgstr "" + +#: add_video_dialog.cc:173 +msgid "Frame rate:" +msgstr "" + #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -11545,6 +12057,10 @@ msgstr "" msgid " %1 fps" msgstr "" +#: editor_videotimeline.cc:146 +msgid "Export Successful: %1" +msgstr "" + #: video_timeline.cc:469 msgid "" "Parsing video file info failed. Is the Video Server running? Is the file " @@ -11578,6 +12094,10 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" +#: video_monitor.cc:281 +msgid "Video Monitor: File Not Found." +msgstr "" + #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -11594,67 +12114,119 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:61 export_video_dialog.cc:73 +#: transcode_video_dialog.cc:55 +msgid "Transcode/Import Video File " +msgstr "" + +#: transcode_video_dialog.cc:57 +msgid "Output File:" +msgstr "" + +#: transcode_video_dialog.cc:60 export_video_dialog.cc:72 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:66 +#: transcode_video_dialog.cc:62 +msgid "Height = " +msgstr "" + +#: transcode_video_dialog.cc:65 msgid "Manual Override" msgstr "" -#: transcode_video_dialog.cc:70 export_video_dialog.cc:89 +#: transcode_video_dialog.cc:69 export_video_dialog.cc:88 msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:113 +#: transcode_video_dialog.cc:106 +msgid "File Information" +msgstr "" + +#: transcode_video_dialog.cc:112 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: transcode_video_dialog.cc:120 +#: transcode_video_dialog.cc:119 msgid "" "File-info can not be read. Most likely '%1' is not a valid video-file or an " "unsupported video codec or format." msgstr "" -#: transcode_video_dialog.cc:134 +#: transcode_video_dialog.cc:133 msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:138 +#: transcode_video_dialog.cc:135 +msgid "Duration:" +msgstr "" + +#: transcode_video_dialog.cc:137 msgid "Codec:" msgstr "" -#: transcode_video_dialog.cc:140 +#: transcode_video_dialog.cc:139 msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:181 +#: transcode_video_dialog.cc:154 +msgid "??" +msgstr "" + +#: transcode_video_dialog.cc:175 +msgid "Import Settings" +msgstr "" + +#: transcode_video_dialog.cc:180 msgid "Do Not Import Video" msgstr "" -#: transcode_video_dialog.cc:182 +#: transcode_video_dialog.cc:181 msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:198 +#: transcode_video_dialog.cc:183 +msgid "Import/Transcode Video to Session" +msgstr "" + +#: transcode_video_dialog.cc:197 msgid "Scale Video: Width = " msgstr "" -#: transcode_video_dialog.cc:220 +#: transcode_video_dialog.cc:204 +msgid "Original Width" +msgstr "" + +#: transcode_video_dialog.cc:219 msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:348 +#: transcode_video_dialog.cc:224 +msgid "Extract Audio:" +msgstr "" + +#: transcode_video_dialog.cc:344 +msgid "Extracting Audio.." +msgstr "" + +#: transcode_video_dialog.cc:347 msgid "Audio Extraction Failed." msgstr "" -#: transcode_video_dialog.cc:374 +#: transcode_video_dialog.cc:373 msgid "Transcoding Video.." msgstr "" +#: transcode_video_dialog.cc:407 +msgid "Transcoding Failed." +msgstr "" + +#: transcode_video_dialog.cc:490 +msgid "Save Transcoded Video File" +msgstr "" + #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -11663,6 +12235,10 @@ msgstr "" msgid "Server Executable:" msgstr "" +#: video_server_dialog.cc:46 +msgid "Server Docroot:" +msgstr "" + #: video_server_dialog.cc:52 msgid "Don't show this dialog again. (Reset in Edit->Preferences)." msgstr "" @@ -11678,11 +12254,19 @@ msgstr "" msgid "Listen Address:" msgstr "" +#: video_server_dialog.cc:125 +msgid "Listen Port:" +msgstr "" + +#: video_server_dialog.cc:130 +msgid "Cache Size:" +msgstr "" + #: video_server_dialog.cc:136 msgid "" -"%1 relies on an external Video Server for the videotimeline.\n" -"The server configured in Edit -> Prefereces -> Video is not reachable.\n" -"Do you want ardour to launch 'harvid' on this machine?" +"%1 relies on an external video server for the videotimeline.\n" +"The server configured in Edit -> Preferences -> Video is not reachable.\n" +"Do you want %1 to launch 'harvid' on this machine?" msgstr "" #: video_server_dialog.cc:176 @@ -11707,71 +12291,187 @@ msgstr "" msgid "Continue" msgstr "" -#: export_video_dialog.cc:74 +#: utils_videotl.cc:63 +msgid "Confirm Overwrite" +msgstr "" + +#: utils_videotl.cc:64 +msgid "A file with the same name already exists. Do you want to overwrite it?" +msgstr "" + +#: utils_videotl.cc:74 utils_videotl.cc:90 +msgid "Cannot create video folder \"%1\" (%2)" +msgstr "" + +#: export_video_dialog.cc:65 +msgid "Export Video File " +msgstr "" + +#: export_video_dialog.cc:69 +msgid "Video:" +msgstr "" + +#: export_video_dialog.cc:73 msgid "Scale Video (W x H):" msgstr "" -#: export_video_dialog.cc:79 +#: export_video_dialog.cc:78 msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:81 +#: export_video_dialog.cc:79 +msgid "Normalize Audio" +msgstr "" + +#: export_video_dialog.cc:80 msgid "2 Pass Encoding" msgstr "" -#: export_video_dialog.cc:82 +#: export_video_dialog.cc:81 msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:85 +#: export_video_dialog.cc:83 +msgid "Deinterlace" +msgstr "" + +#: export_video_dialog.cc:84 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" -#: export_video_dialog.cc:86 +#: export_video_dialog.cc:85 msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:107 +#: export_video_dialog.cc:86 +msgid "Include Session Metadata" +msgstr "" + +#: export_video_dialog.cc:106 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: export_video_dialog.cc:145 +#: export_video_dialog.cc:116 +msgid "Output:" +msgstr "" + +#: export_video_dialog.cc:126 +msgid "Input:" +msgstr "" + +#: export_video_dialog.cc:137 +msgid "Audio:" +msgstr "" + +#: export_video_dialog.cc:139 +msgid "Master Bus" +msgstr "" + +#: export_video_dialog.cc:144 msgid "from the %1 session's start to the session's end" msgstr "" -#: export_video_dialog.cc:149 +#: export_video_dialog.cc:148 msgid "from 00:00:00:00 to the video's end" msgstr "" -#: export_video_dialog.cc:151 +#: export_video_dialog.cc:150 msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:494 +#: export_video_dialog.cc:153 +msgid "Selected range" +msgstr "" + +#: export_video_dialog.cc:193 +msgid "Settings:" +msgstr "" + +#: export_video_dialog.cc:201 +msgid "Range:" +msgstr "" + +#: export_video_dialog.cc:204 +msgid "Preset:" +msgstr "" + +#: export_video_dialog.cc:207 +msgid "Video Codec:" +msgstr "" + +#: export_video_dialog.cc:210 +msgid "Video KBit/s:" +msgstr "" + +#: export_video_dialog.cc:213 +msgid "Audio Codec:" +msgstr "" + +#: export_video_dialog.cc:216 +msgid "Audio KBit/s:" +msgstr "" + +#: export_video_dialog.cc:219 +msgid "Audio Samplerate:" +msgstr "" + +#: export_video_dialog.cc:395 +msgid "Normalizing audio" +msgstr "" + +#: export_video_dialog.cc:399 +msgid "Exporting audio" +msgstr "" + +#: export_video_dialog.cc:445 +msgid "Exporting Audio..." +msgstr "" + +#: export_video_dialog.cc:502 msgid "" "Export Video: Cannot query duration of video-file, using duration from " "timeline instead." msgstr "" -#: export_video_dialog.cc:523 +#: export_video_dialog.cc:532 +msgid "Export Video: export-range does not include video." +msgstr "" + +#: export_video_dialog.cc:544 msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" -#: export_video_dialog.cc:581 +#: export_video_dialog.cc:583 +msgid "Encoding Video..." +msgstr "" + +#: export_video_dialog.cc:602 msgid "Export Video: Video input file cannot be read." msgstr "" -#: export_video_dialog.cc:679 +#: export_video_dialog.cc:695 msgid "Encoding Video.. Pass 1/2" msgstr "" -#: export_video_dialog.cc:691 +#: export_video_dialog.cc:707 msgid "Encoding Video.. Pass 2/2" msgstr "" +#: export_video_dialog.cc:814 +msgid "Transcoding failed." +msgstr "" + +#: export_video_dialog.cc:983 export_video_dialog.cc:1003 +msgid "Save Exported Video File" +msgstr "" + +#: export_video_infobox.cc:30 +msgid "Video Export Info" +msgstr "" + #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -11788,3 +12488,311 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" + +#~ msgid "Starting audio engine" +#~ msgstr "Startar lydmaskin" + +#~ msgid "disconnected" +#~ msgstr "frÃ¥kopla" + +#~ msgid "JACK: %.1f kHz / %4.1f ms" +#~ msgstr "JACK: %.1f kHz / %4.1f ms" + +#~ msgid "JACK: % kHz / %4.1f ms" +#~ msgstr "JACK: % kHz / %4.1f ms" + +#~ msgid "" +#~ "%1 is not connected to JACK\n" +#~ "You cannot open or close sessions in this condition" +#~ msgstr "" +#~ "%1 er ikkje kopla til JACK.\n" +#~ "Du kan ikkje opna eller lukka økter nÃ¥r det stÃ¥r slik til." + +#~ msgid "" +#~ "The audio backend (JACK) was shutdown because:\n" +#~ "\n" +#~ "%1" +#~ msgstr "" +#~ "Lydmotoren (JACK) vart avslutta fordi:\n" +#~ "\n" +#~ "%1" + +#~ msgid "" +#~ "JACK has either been shutdown or it\n" +#~ "disconnected %1 because %1\n" +#~ "was not fast enough. Try to restart\n" +#~ "JACK, reconnect and save the session." +#~ msgstr "" +#~ "JACK har anten vorte avslutta, eller\n" +#~ "han vart kopla frÃ¥ fordi %1\n" +#~ "ikkje var rask nok. Du kan lagra økta\n" +#~ "og/eller prøva Ã¥ kopla til JACK att ." + +#~ msgid "Unable to start the session running" +#~ msgstr "Greidde ikkje starta økta" + +#~ msgid "Click the Refresh button to try again." +#~ msgstr "Klikk pÃ¥ Last omatt for Ã¥ prøva att." + +#~ msgid "Could not disconnect from JACK" +#~ msgstr "Greidde ikkje kopla frÃ¥ JACK" + +#~ msgid "Could not reconnect to JACK" +#~ msgstr "Greidde ikkje kopla til JACK att" + +#~ msgid "JACK" +#~ msgstr "JACK" + +#~ msgid "Reconnect" +#~ msgstr "Kopla til att" + +#~ msgid "JACK Sampling Rate and Latency" +#~ msgstr "JACK-punktrate og -treigskap" + +#~ msgid "Realtime" +#~ msgstr "Sanntid" + +#~ msgid "Do not lock memory" +#~ msgstr "Ikkje lÃ¥s minnet" + +#~ msgid "Unlock memory" +#~ msgstr "LÃ¥s opp minnet" + +#~ msgid "No zombies" +#~ msgstr "Ingen zombiar" + +#~ msgid "Provide monitor ports" +#~ msgstr "Skaff lytteportar" + +#~ msgid "Force 16 bit" +#~ msgstr "Tving 16-bit" + +#~ msgid "H/W monitoring" +#~ msgstr "Lytting i maskinvara" + +#~ msgid "H/W metering" +#~ msgstr "NivÃ¥mÃ¥ling i maskinvara" + +#~ msgid "Verbose output" +#~ msgstr "Utvida meldingar" + +#~ msgid "8000Hz" +#~ msgstr "8000Hz" + +#~ msgid "22050Hz" +#~ msgstr "22050Hz" + +#~ msgid "44100Hz" +#~ msgstr "44100Hz" + +#~ msgid "48000Hz" +#~ msgstr "48000Hz" + +#~ msgid "88200Hz" +#~ msgstr "88200Hz" + +#~ msgid "96000Hz" +#~ msgstr "96000Hz" + +#~ msgid "192000Hz" +#~ msgstr "192000Hz" + +#~ msgid "Triangular" +#~ msgstr "Trekantbølgje" + +#~ msgid "Rectangular" +#~ msgstr "Firkantbølgje" + +#~ msgid "Shaped" +#~ msgstr "Forma" + +#~ msgid "Playback/recording on 1 device" +#~ msgstr "Avspeling/opptak pÃ¥ 1 eining" + +#~ msgid "Playback/recording on 2 devices" +#~ msgstr "Avspeling/opptak pÃ¥ 2 einingar" + +#~ msgid "Playback only" +#~ msgstr "Berre avspeling" + +#~ msgid "Recording only" +#~ msgstr "Berre opptak" + +#~ msgid "seq" +#~ msgstr "sekv" + +#~ msgid "raw" +#~ msgstr "rÃ¥" + +#~ msgid "Audio Interface:" +#~ msgstr "Lydkort:" + +#~ msgid "Number of buffers:" +#~ msgstr "Kor mange bufrar:" + +#~ msgid "Approximate latency:" +#~ msgstr "Omrentleg treigskap:" + +#~ msgid "Audio mode:" +#~ msgstr "Lydmodus:" + +#~ msgid "Ignore" +#~ msgstr "OversjÃ¥" + +#~ msgid "Client timeout" +#~ msgstr "Klienttidsgrense" + +#~ msgid "Number of ports:" +#~ msgstr "Kor mange portar:" + +#~ msgid "MIDI driver:" +#~ msgstr "MIDI-drivar" + +#~ msgid "Dither:" +#~ msgstr "Utjamning:" + +#~ msgid "" +#~ "No JACK server found anywhere on this system. Please install JACK and " +#~ "restart" +#~ msgstr "" +#~ "Fann ingen JACK-tenar pÃ¥ denne maskina. Installer JACK og start pÃ¥ nytt." + +#~ msgid "Server:" +#~ msgstr "Tenar:" + +#~ msgid "Input device:" +#~ msgstr "Inneining:" + +#~ msgid "Output device:" +#~ msgstr "Uteining:" + +#~ msgid "Device" +#~ msgstr "Eining" + +#~ msgid "Advanced" +#~ msgstr "Avansert" + +#~ msgid "cannot open JACK rc file %1 to store parameters" +#~ msgstr "greier ikkje opna JACK-rc-fila %1 for Ã¥ lagra val." + +#~ msgid "No suitable audio devices" +#~ msgstr "Ingen brukande lydeiningar" + +#~ msgid "JACK appears to be missing from the %1 bundle" +#~ msgstr "Det ser ut som JACK ikkje er med i %1-bundelen" + +#~ msgid "You need to choose an audio device first." +#~ msgstr "Du mÃ¥ velja ei lydeining fyrst." + +#~ msgid "Audio device \"%1\" not known on this computer." +#~ msgstr "Lydeininga \"%1\" er ukjend for denne datamaskina." + +#~ msgid "AudioSetup value for %1 is missing data" +#~ msgstr "Lydoppsett-verdien for %1 manglar data" + +#~ msgid "" +#~ "configuration files contain a JACK server path that doesn't exist (%1)" +#~ msgstr "" +#~ "oppsettsfilene inneheld ein ikkje-eksisterande stig til JACK-tenaren (%1)" + +#~ msgid "%1 could not connect to JACK." +#~ msgstr "%1 greidde ikkje kopla til JACK." + +#~ msgid "JACK exited" +#~ msgstr "JACK vart avslutta" + +#~ msgid "" +#~ "JACK exited unexpectedly, and without notifying %1.\n" +#~ "\n" +#~ "This could be due to misconfiguration or to an error inside JACK.\n" +#~ "\n" +#~ "Click OK to exit %1." +#~ msgstr "" +#~ "JACK vart uventa avslutta, og sa ikkje frÃ¥ til %1.\n" +#~ "\n" +#~ "Dette kan vera pÃ¥ grunn av feiloppsett, eller ein feil med JACK.\n" +#~ "\n" +#~ "Klikk OK for Ã¥ avslutta %1." + +#~ msgid "" +#~ "JACK exited unexpectedly, and without notifying %1.\n" +#~ "\n" +#~ "This is probably due to an error inside JACK. You should restart JACK\n" +#~ "and reconnect %1 to it, or exit %1 now. You cannot save your\n" +#~ "session at this time, because we would lose your connection information.\n" +#~ msgstr "" +#~ "JACK vart uventa avslutta, og sa ikkje frÃ¥ til %1.\n" +#~ "\n" +#~ "Dette er truleg pÃ¥ grunn av ein feil med JACK. Du bør starta omatt JACK,\n" +#~ "og kopla til %1 pÃ¥ nytt, eller avslutta %1 no. Du kan ikkje lagra økta\n" +#~ "di no, fordi dÃ¥ mistar me all informasjon om tilkoplingar.\n" + +#~ msgid "Not connected to JACK - no I/O changes are possible" +#~ msgstr "Ikkje tilkopla JACK - I/U-endringar er ikkje mogleg" + +#~ msgid "" +#~ " -c, --name Use a specific jack client name, default is " +#~ "ardour\n" +#~ msgstr "" +#~ " -c, --name name Bruk eit spesielt JACK-klientnamn, " +#~ "standard: ardour\n" + +#~ msgid "Do seamless looping (not possible when slaved to MTC, JACK etc)" +#~ msgstr "" +#~ "Bruk saumlaus lykkje (ikkje mogleg nÃ¥r me er bundne til MTC, JACK osb.)" + +#~ msgid "Synchronise editor and mixer track order" +#~ msgstr "Samkøyr redigeringa og kanalrekkjefylgja pÃ¥ miksaren" + +#~ msgid "follows order of editor" +#~ msgstr "fylgjer redigeringa" + +#~ msgid "" +#~ "The remote control ID of %6 is: %3\n" +#~ "\n" +#~ "\n" +#~ "Remote Control IDs are currently determined by track/bus ordering in %1\n" +#~ "\n" +#~ "%4Use the User Interaction tab of the Preferences window if you want to " +#~ "change this%5" +#~ msgstr "" +#~ "Fjernkontroll-IDen for %6 er: %3\n" +#~ "\n" +#~ "\n" +#~ "Fjernkontroll-IDane blir avgjorde av spor-/bussrekkjefylgja i %1\n" +#~ "\n" +#~ "%4SjÃ¥ pÃ¥ brukarsamhandling-fana i vindauga for innstillingar viss du vil " +#~ "endra dette%5" + +#~ msgid "the mixer" +#~ msgstr "miksaren" + +#~ msgid "the editor" +#~ msgstr "redigeringa" + +#~ msgid "Create a new session" +#~ msgstr "Lag ei ny økt" + +#~ msgid "Open an existing session" +#~ msgstr "Opna ei eksisterande økt" + +#~ msgid "I'd like more options for this session" +#~ msgstr "Eg vil gjerne ha fleire val for denne økta" + +#~ msgid "Audio / MIDI Setup" +#~ msgstr "Lyd / MIDI-oppsett" + +#~ msgid "Use an existing session as a template:" +#~ msgstr "Bruk ei eksisterande økt som mal:" + +#~ msgid "Select template" +#~ msgstr "Vel mal" + +#~ msgid "Browse:" +#~ msgstr "Bla gjennom:" + +#~ msgid "Select a session" +#~ msgstr "Vel ei økt" + +#~ msgid "Advanced Session Options" +#~ msgstr "Avanserte innstillingar for økta" diff --git a/gtk2_ardour/po/pl.po b/gtk2_ardour/po/pl.po index cd99b15742..4ea4791d91 100644 --- a/gtk2_ardour/po/pl.po +++ b/gtk2_ardour/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gtk2_ardour\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2008-04-10 10:47+0100\n" "Last-Translator: Piotr Zaryk \n" "Language-Team: Polish \n" @@ -36,6 +36,10 @@ msgstr "Marcus Andersson" msgid "Nedko Arnaudov" msgstr "Nedko Arnaudov" +#: about.cc:126 +msgid "Hans Baier" +msgstr "" + #: about.cc:127 msgid "Ben Bell" msgstr "Ben Bell" @@ -212,6 +216,10 @@ msgstr "Per Sigmond" msgid "Lincoln Spiteri" msgstr "" +#: about.cc:171 +msgid "Mike Start" +msgstr "" + #: about.cc:172 msgid "Mark Stewart" msgstr "Mark Stewart" @@ -236,6 +244,34 @@ msgstr "" msgid "Thorsten Wilms" msgstr "Thorsten Wilms" +#: about.cc:182 +msgid "" +"French:\n" +"\tAlain Fréhel \n" +"\tChristophe Combelles \n" +"\tMartin Blanchard\n" +"\tRomain Arnaud \n" +msgstr "" + +#: about.cc:183 +msgid "" +"German:\n" +"\tKarsten Petersen \n" +"\tSebastian Arnold \n" +"\tRobert Schwede \n" +"\tBenjamin Scherrer \n" +"\tEdgar Aichinger \n" +"\tRichard Oax \n" +"\tRobin Gloster \n" +msgstr "" + +#: about.cc:190 +msgid "" +"Italian:\n" +"\tFilippo Pappalardo \n" +"\tRaffaele Morelli \n" +msgstr "" + #: about.cc:191 msgid "" "Portuguese:\n" @@ -254,6 +290,13 @@ msgstr "" "\tAlexander da Franca Fernandes \n" "\tChris Ross \n" +#: about.cc:194 +msgid "" +"Spanish:\n" +"\t Alex Krohn \n" +"\tPablo Fernández \n" +msgstr "" + #: about.cc:195 msgid "" "Russian:\n" @@ -299,6 +342,14 @@ msgid "" "\t Rui-huai Zhang \n" msgstr "" +#: about.cc:580 +msgid "Copyright (C) 1999-2013 Paul Davis\n" +msgstr "" + +#: about.cc:584 +msgid "http://ardour.org/" +msgstr "" + #: about.cc:585 msgid "" "%1\n" @@ -319,23 +370,92 @@ msgstr "" msgid "badly formatted UI definition file: %1" msgstr "niepoprawnie sformatowany plik definicji interfejsu użytkownika: %1" +#: actions.cc:91 +msgid "%1 menu definition file not found" +msgstr "" + +#: actions.cc:95 actions.cc:96 +msgid "%1 will not work without a valid ardour.menus file" +msgstr "" + +#: add_route_dialog.cc:53 route_params_ui.cc:500 +msgid "Add Track or Bus" +msgstr "" + +#: add_route_dialog.cc:56 +msgid "Configuration:" +msgstr "" + +#: add_route_dialog.cc:57 +msgid "Track mode:" +msgstr "" + #: add_route_dialog.cc:58 msgid "Instrument:" msgstr "" +#: add_route_dialog.cc:76 +msgid "Audio Tracks" +msgstr "" + +#: add_route_dialog.cc:77 +msgid "MIDI Tracks" +msgstr "" + +#: add_route_dialog.cc:78 +msgid "Audio+MIDI Tracks" +msgstr "" + +#: add_route_dialog.cc:79 +msgid "Busses" +msgstr "" + #: add_route_dialog.cc:101 msgid "Add:" msgstr "" +#: add_route_dialog.cc:114 time_fx_dialog.cc:91 add_video_dialog.cc:150 +#: video_server_dialog.cc:112 +msgid "Options" +msgstr "" + +#: add_route_dialog.cc:124 bundle_manager.cc:192 region_editor.cc:50 +#: route_group_dialog.cc:65 +msgid "Name:" +msgstr "" + +#: add_route_dialog.cc:154 +msgid "Group:" +msgstr "" + +#: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 +#: ardour_ui_ed.cc:476 engine_dialog.cc:236 rc_option_editor.cc:1446 +#: rc_option_editor.cc:1448 rc_option_editor.cc:1450 rc_option_editor.cc:1466 +#: rc_option_editor.cc:1468 rc_option_editor.cc:1476 rc_option_editor.cc:1478 +#: rc_option_editor.cc:1496 rc_option_editor.cc:1509 rc_option_editor.cc:1511 +#: rc_option_editor.cc:1513 rc_option_editor.cc:1544 rc_option_editor.cc:1546 +#: rc_option_editor.cc:1548 rc_option_editor.cc:1556 rc_option_editor.cc:1564 +#: rc_option_editor.cc:1572 +msgid "Audio" +msgstr "" + #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 -#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1707 -#: rc_option_editor.cc:1715 rc_option_editor.cc:1723 rc_option_editor.cc:1732 -#: rc_option_editor.cc:1740 rc_option_editor.cc:1748 rc_option_editor.cc:1756 -#: rc_option_editor.cc:1765 rc_option_editor.cc:1774 rc_option_editor.cc:1783 -#: rc_option_editor.cc:1791 rc_option_editor.cc:1799 +#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1695 +#: rc_option_editor.cc:1703 rc_option_editor.cc:1711 rc_option_editor.cc:1720 +#: rc_option_editor.cc:1728 rc_option_editor.cc:1736 rc_option_editor.cc:1744 +#: rc_option_editor.cc:1753 rc_option_editor.cc:1762 rc_option_editor.cc:1771 +#: rc_option_editor.cc:1779 rc_option_editor.cc:1787 msgid "MIDI" msgstr "MIDI" +#: add_route_dialog.cc:217 add_route_dialog.cc:230 add_route_dialog.cc:300 +msgid "Audio+MIDI" +msgstr "" + +#: add_route_dialog.cc:218 add_route_dialog.cc:233 add_route_dialog.cc:301 +msgid "Bus" +msgstr "" + #: add_route_dialog.cc:260 msgid "" "Audio+MIDI tracks are intended for use ONLY with plugins that use " @@ -366,10 +486,46 @@ msgstr "Mono" msgid "Stereo" msgstr "Stereo" +#: add_route_dialog.cc:451 +msgid "3 Channel" +msgstr "" + +#: add_route_dialog.cc:455 +msgid "4 Channel" +msgstr "" + +#: add_route_dialog.cc:459 +msgid "5 Channel" +msgstr "" + +#: add_route_dialog.cc:463 +msgid "6 Channel" +msgstr "" + +#: add_route_dialog.cc:467 +msgid "8 Channel" +msgstr "" + +#: add_route_dialog.cc:471 +msgid "12 Channel" +msgstr "" + #: add_route_dialog.cc:475 mixer_strip.cc:2131 msgid "Custom" msgstr "" +#: add_route_dialog.cc:508 add_route_dialog.cc:524 route_group_menu.cc:81 +msgid "New Group..." +msgstr "" + +#: add_route_dialog.cc:512 route_group_menu.cc:85 +msgid "No Group" +msgstr "" + +#: add_route_dialog.cc:588 +msgid "-none-" +msgstr "" + #: ambiguous_file_dialog.cc:30 msgid "Ambiguous File" msgstr "" @@ -427,7 +583,7 @@ msgstr "Normalizacja wartoÅ›ci" msgid "FFT analysis window" msgstr "Okno analizy FFT" -#: analysis_window.cc:60 editor.cc:1856 +#: analysis_window.cc:60 editor.cc:1857 msgid "Spectral Analysis" msgstr "Analiza spektrum" @@ -449,14 +605,38 @@ msgstr "Analizuj ponownie" msgid "button cannot watch state of non-existing Controllable\n" msgstr "" +#: ardour_ui.cc:180 +msgid "audition" +msgstr "" + +#: ardour_ui.cc:181 +msgid "solo" +msgstr "" + +#: ardour_ui.cc:182 +msgid "feedback" +msgstr "" + +#: ardour_ui.cc:187 speaker_dialog.cc:36 +msgid "Speaker Configuration" +msgstr "" + #: ardour_ui.cc:188 theme_manager.cc:56 theme_manager.cc:64 msgid "Theme Manager" msgstr "Menedżer motywów" +#: ardour_ui.cc:189 keyeditor.cc:53 +msgid "Key Bindings" +msgstr "" + #: ardour_ui.cc:190 msgid "Preferences" msgstr "Preferencje" +#: ardour_ui.cc:191 ardour_ui.cc:197 +msgid "Add Tracks/Busses" +msgstr "" + #: ardour_ui.cc:192 msgid "About" msgstr "O programie" @@ -465,90 +645,206 @@ msgstr "O programie" msgid "Locations" msgstr "PoÅ‚ożenia" -#: ardour_ui.cc:195 +#: ardour_ui.cc:194 route_params_ui.cc:58 route_params_ui.cc:606 +msgid "Tracks and Busses" +msgstr "" + +#: ardour_ui.cc:195 engine_dialog.cc:67 +msgid "Audio/MIDI Setup" +msgstr "" + +#: ardour_ui.cc:196 msgid "Properties" msgstr "" -#: ardour_ui.cc:198 big_clock_window.cc:35 +#: ardour_ui.cc:198 bundle_manager.cc:263 +msgid "Bundle Manager" +msgstr "" + +#: ardour_ui.cc:199 big_clock_window.cc:35 msgid "Big Clock" msgstr "Duży zegar" -#: ardour_ui.cc:202 +#: ardour_ui.cc:200 +msgid "Audio Connections" +msgstr "" + +#: ardour_ui.cc:201 +msgid "MIDI Connections" +msgstr "" + +#: ardour_ui.cc:203 msgid "Errors" msgstr "Błędy" -#: ardour_ui.cc:388 -msgid "Starting audio engine" -msgstr "Uruchamianie systemu dźwiÄ™ku" +#: ardour_ui.cc:436 +msgid "" +"The audio backend was shutdown because:\n" +"\n" +"%1" +msgstr "" -#: ardour_ui.cc:823 +#: ardour_ui.cc:438 +msgid "" +"The audio backend has either been shutdown or it\n" +"disconnected %1 because %1\n" +"was not fast enough. Try to restart\n" +"the audio backend and save the session." +msgstr "" + +#: ardour_ui.cc:758 +msgid "NSM server did not announce itself" +msgstr "" + +#: ardour_ui.cc:771 +msgid "NSM: no client ID provided" +msgstr "" + +#: ardour_ui.cc:778 +msgid "NSM: no session created" +msgstr "" + +#: ardour_ui.cc:801 +msgid "NSM: initialization failed" +msgstr "" + +#: ardour_ui.cc:840 startup.cc:379 +msgid "%1 is ready for use" +msgstr "" + +#: ardour_ui.cc:882 +msgid "" +"WARNING: Your system has a limit for maximum amount of locked memory. This " +"might cause %1 to run out of memory before your system runs out of memory. \n" +"\n" +"You can view the memory limit with 'ulimit -l', and it is normally " +"controlled by %2" +msgstr "" + +#: ardour_ui.cc:899 msgid "Do not show this window again" msgstr "Nie pokazuj tego okna wiÄ™cej" -#: ardour_ui.cc:963 +#: ardour_ui.cc:943 +msgid "Don't quit" +msgstr "" + +#: ardour_ui.cc:944 +msgid "Just quit" +msgstr "" + +#: ardour_ui.cc:945 +msgid "Save and quit" +msgstr "" + +#: ardour_ui.cc:955 +msgid "" +"%1 was unable to save your session.\n" +"\n" +"If you still wish to quit, please use the\n" +"\n" +"\"Just quit\" option." +msgstr "" + +#: ardour_ui.cc:986 +msgid "Please wait while %1 cleans up..." +msgstr "" + +#: ardour_ui.cc:1004 +msgid "Unsaved Session" +msgstr "" + +#: ardour_ui.cc:1025 +msgid "" +"The session \"%1\"\n" +"has not been saved.\n" +"\n" +"Any changes made this time\n" +"will be lost unless you save it.\n" +"\n" +"What do you want to do?" +msgstr "" + +#: ardour_ui.cc:1028 +msgid "" +"The snapshot \"%1\"\n" +"has not been saved.\n" +"\n" +"Any changes made this time\n" +"will be lost unless you save it.\n" +"\n" +"What do you want to do?" +msgstr "" + +#: ardour_ui.cc:1042 msgid "Prompter" msgstr "Prompter" -#: ardour_ui.cc:1049 -msgid "disconnected" -msgstr "rozłączono" - -#: ardour_ui.cc:1056 +#: ardour_ui.cc:1128 ardour_ui.cc:1136 #, c-format -msgid "JACK: %.1f kHz / %4.1f ms" +msgid "Audio: none" msgstr "" -#: ardour_ui.cc:1060 +#: ardour_ui.cc:1140 #, c-format -msgid "JACK: % kHz / %4.1f ms" +msgid "Audio: %.1f kHz / %4.1f ms" msgstr "" -#: ardour_ui.cc:1082 +#: ardour_ui.cc:1144 +#, c-format +msgid "Audio: % kHz / %4.1f ms" +msgstr "" + +#: ardour_ui.cc:1162 export_video_dialog.cc:67 +msgid "File:" +msgstr "" + +#: ardour_ui.cc:1166 msgid "BWF" msgstr "" -#: ardour_ui.cc:1085 +#: ardour_ui.cc:1169 msgid "WAV" msgstr "WAV" -#: ardour_ui.cc:1088 +#: ardour_ui.cc:1172 msgid "WAV64" msgstr "" -#: ardour_ui.cc:1091 session_option_editor.cc:197 +#: ardour_ui.cc:1175 session_option_editor.cc:197 msgid "CAF" msgstr "" -#: ardour_ui.cc:1094 +#: ardour_ui.cc:1178 msgid "AIFF" msgstr "" -#: ardour_ui.cc:1097 +#: ardour_ui.cc:1181 msgid "iXML" msgstr "" -#: ardour_ui.cc:1100 +#: ardour_ui.cc:1184 msgid "RF64" msgstr "" -#: ardour_ui.cc:1108 +#: ardour_ui.cc:1192 msgid "32-float" msgstr "" -#: ardour_ui.cc:1111 +#: ardour_ui.cc:1195 msgid "24-int" msgstr "" -#: ardour_ui.cc:1114 +#: ardour_ui.cc:1198 msgid "16-int" msgstr "" -#: ardour_ui.cc:1133 +#: ardour_ui.cc:1217 #, c-format msgid "DSP: %5.1f%%" msgstr "" -#: ardour_ui.cc:1152 +#: ardour_ui.cc:1236 #, c-format msgid "" "Buffers: p:" @@ -556,23 +852,60 @@ msgid "" "\">%%%" msgstr "" -#: ardour_ui.cc:1190 +#: ardour_ui.cc:1277 +msgid "Disk: Unknown" +msgstr "" + +#: ardour_ui.cc:1279 msgid "Disk: 24hrs+" msgstr "" -#: ardour_ui.cc:1208 +#: ardour_ui.cc:1297 msgid "Disk: >24 hrs" msgstr "" -#: ardour_ui.cc:1362 ardour_ui.cc:1371 startup.cc:1054 +#: ardour_ui.cc:1308 +#, c-format +msgid "Disk: %02dh:%02dm:%02ds" +msgstr "" + +#: ardour_ui.cc:1334 +#, c-format +msgid "Timecode|TC: %s" +msgstr "" + +#: ardour_ui.cc:1451 ardour_ui.cc:1460 session_dialog.cc:322 +#: session_dialog.cc:327 msgid "Recent Sessions" msgstr "Poprzednie sesje" -#: ardour_ui.cc:1478 +#: ardour_ui.cc:1539 +msgid "" +"%1 is not connected to any audio backend.\n" +"You cannot open or close sessions in this condition" +msgstr "" + +#: ardour_ui.cc:1563 msgid "Open Session" msgstr "Otwieranie sesji" -#: ardour_ui.cc:1554 ardour_ui.cc:1615 +#: ardour_ui.cc:1588 session_dialog.cc:353 session_import_dialog.cc:169 +#: session_metadata_dialog.cc:729 +msgid "%1 sessions" +msgstr "" + +#: ardour_ui.cc:1625 +msgid "You cannot add a track without a session already loaded." +msgstr "" + +#: ardour_ui.cc:1633 +msgid "could not create %1 new mixed track" +msgid_plural "could not create %1 new mixed tracks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ardour_ui.cc:1639 ardour_ui.cc:1700 msgid "" "There are insufficient JACK ports available\n" "to create a new track or bus.\n" @@ -580,57 +913,94 @@ msgid "" "restart JACK with more ports." msgstr "" -#: ardour_ui.cc:1589 +#: ardour_ui.cc:1674 msgid "You cannot add a track or bus without a session already loaded." msgstr "Nie możesz dodać Å›cieżki lub szyny bez otwierania sesji." -#: ardour_ui.cc:2114 +#: ardour_ui.cc:1683 +msgid "could not create %1 new audio track" +msgid_plural "could not create %1 new audio tracks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ardour_ui.cc:1692 +msgid "could not create %1 new audio bus" +msgid_plural "could not create %1 new audio busses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ardour_ui.cc:1816 msgid "" -"The audio backend (JACK) was shutdown because:\n" -"\n" -"%1" +"Please create one or more tracks before trying to record.\n" +"You can do this with the \"Add Track or Bus\" option in the Session menu." msgstr "" -#: ardour_ui.cc:2142 -msgid "Unable to start the session running" -msgstr "Nie można wczytać sesji, gdyż jest aktualnie w użyciu." +#: ardour_ui.cc:2193 +msgid "Take Snapshot" +msgstr "" -#: ardour_ui.cc:2247 +#: ardour_ui.cc:2194 +msgid "Name of new snapshot" +msgstr "" + +#: ardour_ui.cc:2218 msgid "" "To ensure compatibility with various systems\n" "snapshot names may not contain a '%1' character" msgstr "" -#: ardour_ui.cc:2259 +#: ardour_ui.cc:2230 msgid "Confirm Snapshot Overwrite" msgstr "" -#: ardour_ui.cc:2263 utils_videotl.cc:67 +#: ardour_ui.cc:2231 +msgid "A snapshot already exists with that name. Do you want to overwrite it?" +msgstr "" + +#: ardour_ui.cc:2234 utils_videotl.cc:67 msgid "Overwrite" msgstr "" -#: ardour_ui.cc:2312 ardour_ui.cc:2692 ardour_ui.cc:2737 +#: ardour_ui.cc:2268 +msgid "Rename Session" +msgstr "" + +#: ardour_ui.cc:2269 +msgid "New session name" +msgstr "" + +#: ardour_ui.cc:2283 ardour_ui.cc:2684 ardour_ui.cc:2722 msgid "" "To ensure compatibility with various systems\n" "session names may not contain a '%1' character" msgstr "" -#: ardour_ui.cc:2320 +#: ardour_ui.cc:2291 msgid "" "That name is already in use by another directory/folder. Please try again." msgstr "" -#: ardour_ui.cc:2329 +#: ardour_ui.cc:2300 msgid "" "Renaming this session failed.\n" "Things could be seriously messed up at this point" msgstr "" -#: ardour_ui.cc:2442 +#: ardour_ui.cc:2411 +msgid "Save Template" +msgstr "" + +#: ardour_ui.cc:2412 +msgid "Name for template:" +msgstr "" + +#: ardour_ui.cc:2413 msgid "-template" msgstr "-szablon" -#: ardour_ui.cc:2480 +#: ardour_ui.cc:2451 msgid "" "This session\n" "%1\n" @@ -640,35 +1010,59 @@ msgstr "" "%1\n" "już istnieje. Otworzyć jÄ…?" -#: ardour_ui.cc:2728 +#: ardour_ui.cc:2461 +msgid "Open Existing Session" +msgstr "" + +#: ardour_ui.cc:2712 msgid "There is no existing session at \"%1\"" msgstr "" -#: ardour_ui.cc:2830 +#: ardour_ui.cc:2804 +msgid "Please wait while %1 loads your session" +msgstr "" + +#: ardour_ui.cc:2819 msgid "Port Registration Error" msgstr "" -#: ardour_ui.cc:2831 +#: ardour_ui.cc:2820 msgid "Click the Close button to try again." msgstr "" -#: ardour_ui.cc:2852 +#: ardour_ui.cc:2841 msgid "Session \"%1 (snapshot %2)\" did not load successfully" msgstr "Sesja \"%1 (zrzut %2)\" nie zostaÅ‚a zaÅ‚adowana poprawnie" -#: ardour_ui.cc:2858 +#: ardour_ui.cc:2848 msgid "Loading Error" msgstr "Błąd wczytywania" -#: ardour_ui.cc:2859 -msgid "Click the Refresh button to try again." +#: ardour_ui.cc:2867 +msgid "" +"This session has been opened in read-only mode.\n" +"\n" +"You will not be able to record or save." msgstr "" -#: ardour_ui.cc:2941 +#: ardour_ui.cc:2873 +msgid "Read-only Session" +msgstr "" + +#: ardour_ui.cc:2931 msgid "Could not create session in \"%1\"" msgstr "Nie udaÅ‚o siÄ™ utworzyć sesji w \"%1\"" -#: ardour_ui.cc:3046 +#: ardour_ui.cc:3031 +msgid "No files were ready for clean-up" +msgstr "" + +#: ardour_ui.cc:3035 ardour_ui.cc:3045 ardour_ui.cc:3178 ardour_ui.cc:3185 +#: ardour_ui_ed.cc:104 +msgid "Clean-up" +msgstr "" + +#: ardour_ui.cc:3036 msgid "" "If this seems suprising, \n" "check for any existing snapshots.\n" @@ -680,19 +1074,19 @@ msgstr "" "Wciąż mogÄ… zawierać obszary\n" "wymagajÄ…ce obecnoÅ›ci nieużywanych plików." -#: ardour_ui.cc:3105 +#: ardour_ui.cc:3095 msgid "kilo" msgstr "" -#: ardour_ui.cc:3108 +#: ardour_ui.cc:3098 msgid "mega" msgstr "" -#: ardour_ui.cc:3111 +#: ardour_ui.cc:3101 msgid "giga" msgstr "" -#: ardour_ui.cc:3116 +#: ardour_ui.cc:3106 msgid "" "The following file was deleted from %2,\n" "releasing %3 %4bytes of disk space" @@ -703,7 +1097,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ardour_ui.cc:3123 +#: ardour_ui.cc:3113 msgid "" "The following file was not in use and \n" "has been moved to: %2\n" @@ -726,68 +1120,91 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ardour_ui.cc:3198 +#: ardour_ui.cc:3173 +msgid "Are you sure you want to clean-up?" +msgstr "" + +#: ardour_ui.cc:3180 +msgid "" +"Clean-up is a destructive operation.\n" +"ALL undo/redo information will be lost if you clean-up.\n" +"Clean-up will move all unused files to a \"dead\" location." +msgstr "" + +#: ardour_ui.cc:3188 msgid "CleanupDialog" msgstr "Okno dialogowe czyszczenia" -#: ardour_ui.cc:3245 +#: ardour_ui.cc:3218 +msgid "Cleaned Files" +msgstr "" + +#: ardour_ui.cc:3235 msgid "deleted file" msgstr "usuniÄ™ty plik" -#: ardour_ui.cc:3337 +#: ardour_ui.cc:3381 msgid "" "Video-Server was not launched by Ardour. The request to stop it is ignored." msgstr "" -#: ardour_ui.cc:3341 +#: ardour_ui.cc:3385 msgid "Stop Video-Server" msgstr "" -#: ardour_ui.cc:3371 +#: ardour_ui.cc:3386 +msgid "Do you really want to stop the Video Server?" +msgstr "" + +#: ardour_ui.cc:3389 +msgid "Yes, Stop It" +msgstr "" + +#: ardour_ui.cc:3415 msgid "The Video Server is already started." msgstr "" -#: ardour_ui.cc:3373 +#: ardour_ui.cc:3417 msgid "" "An external Video Server is configured and can be reached. Not starting a " "new instance." msgstr "" -#: ardour_ui.cc:3381 ardour_ui.cc:3471 +#: ardour_ui.cc:3425 ardour_ui.cc:3515 msgid "" "Could not connect to the Video Server. Start it or configure its access URL " "in Edit -> Preferences." msgstr "" -#: ardour_ui.cc:3405 +#: ardour_ui.cc:3449 msgid "Specified docroot is not an existing directory." msgstr "" -#: ardour_ui.cc:3410 +#: ardour_ui.cc:3454 msgid "Given Video Server is not an executable file." msgstr "" -#: ardour_ui.cc:3443 +#: ardour_ui.cc:3487 msgid "Cannot launch the video-server" msgstr "" -#: ardour_ui.cc:3452 +#: ardour_ui.cc:3496 msgid "Video-server was started but does not respond to requests..." msgstr "" -#: ardour_ui.cc:3497 editor_audio_import.cc:632 +#: ardour_ui.cc:3541 editor_audio_import.cc:632 msgid "could not open %1" msgstr "nie można otworzyć %1" -#: ardour_ui.cc:3501 +#: ardour_ui.cc:3545 msgid "no video-file selected" msgstr "" -#: ardour_ui.cc:3673 +#: ardour_ui.cc:3717 msgid "Recording was stopped because your system could not keep up." msgstr "" -#: ardour_ui.cc:3702 +#: ardour_ui.cc:3746 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -796,7 +1213,7 @@ msgid "" "quickly enough to keep up with recording.\n" msgstr "" -#: ardour_ui.cc:3721 +#: ardour_ui.cc:3765 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -805,46 +1222,57 @@ msgid "" "quickly enough to keep up with playback.\n" msgstr "" -#: ardour_ui.cc:3761 +#: ardour_ui.cc:3805 msgid "Crash Recovery" msgstr "" -#: ardour_ui.cc:3774 +#: ardour_ui.cc:3806 +msgid "" +"This session appears to have been in the\n" +"middle of recording when %1 or\n" +"the computer was shutdown.\n" +"\n" +"%1 can recover any captured audio for\n" +"you, or it can ignore it. Please decide\n" +"what you would like to do.\n" +msgstr "" + +#: ardour_ui.cc:3818 msgid "Ignore crash data" msgstr "Ignorowanie dane z awarii" -#: ardour_ui.cc:3775 +#: ardour_ui.cc:3819 msgid "Recover from crash" msgstr "Przywróć dane z awarii" -#: ardour_ui.cc:3795 +#: ardour_ui.cc:3839 msgid "Sample Rate Mismatch" msgstr "Błędna czÄ™stotliwość próbkowania" -#: ardour_ui.cc:3796 +#: ardour_ui.cc:3840 msgid "" "This session was created with a sample rate of %1 Hz, but\n" "%2 is currently running at %3 Hz. If you load this session,\n" "audio may be played at the wrong sample rate.\n" msgstr "" -#: ardour_ui.cc:3805 +#: ardour_ui.cc:3849 msgid "Do not load session" msgstr "Nie Å‚aduj sesji" -#: ardour_ui.cc:3806 +#: ardour_ui.cc:3850 msgid "Load session anyway" msgstr "ZaÅ‚aduj sesjÄ™ mimo to" -#: ardour_ui.cc:3829 -msgid "Could not disconnect from JACK" -msgstr "Nie można siÄ™ rozłączyć z JACK" +#: ardour_ui.cc:3877 +msgid "Could not disconnect from Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:3842 -msgid "Could not reconnect to JACK" -msgstr "Nie udaÅ‚o siÄ™ połączyć ponownie z JACK" +#: ardour_ui.cc:3893 ardour_ui.cc:3896 +msgid "Could not reconnect to the Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:4116 +#: ardour_ui.cc:4172 msgid "" "%4This is a session from an older version of %3%5\n" "\n" @@ -867,6 +1295,10 @@ msgstr "UI: nie można ustawić edytora" msgid "UI: cannot setup mixer" msgstr "UI: nie można ustawić miksera" +#: ardour_ui2.cc:82 +msgid "UI: cannot setup meterbridge" +msgstr "" + #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "Odtwórz od poÅ‚ożenia gÅ‚owicy" @@ -875,6 +1307,10 @@ msgstr "Odtwórz od poÅ‚ożenia gÅ‚owicy" msgid "Stop playback" msgstr "Zatrzymaj odtwarzanie" +#: ardour_ui2.cc:132 +msgid "Toggle record" +msgstr "" + #: ardour_ui2.cc:133 msgid "Play range/selection" msgstr "Odtwórz zakres/zaznaczenie" @@ -901,6 +1337,10 @@ msgstr "" msgid "Return to last playback start when stopped" msgstr "Powróć do poczÄ…tku ostatniego odtwarzania przy zatrzymaniu" +#: ardour_ui2.cc:139 +msgid "Playhead follows Range Selections and Edits" +msgstr "" + #: ardour_ui2.cc:140 msgid "Be sensible about input monitoring" msgstr "" @@ -945,6 +1385,10 @@ msgid "" "confirm; postfix the edit with '+' or '-' to enter delta times.\n" msgstr "" +#: ardour_ui2.cc:147 +msgid "Reset Level Meter" +msgstr "" + #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "[BÅAD]: " @@ -957,39 +1401,51 @@ msgstr "[OSTRZEÅ»ENIE]: " msgid "[INFO]: " msgstr "[INFORMACJA]: " -#: ardour_ui2.cc:247 ardour_ui_ed.cc:377 +#: ardour_ui2.cc:247 ardour_ui_ed.cc:344 msgid "Auto Return" msgstr "Autopowracanie" -#: ardour_ui2.cc:249 ardour_ui_ed.cc:380 +#: ardour_ui2.cc:249 ardour_ui_ed.cc:347 msgid "Follow Edits" msgstr "" -#: ardour_ui2.cc:628 rc_option_editor.cc:1004 rc_option_editor.cc:1022 -#: rc_option_editor.cc:1025 rc_option_editor.cc:1027 rc_option_editor.cc:1029 -#: rc_option_editor.cc:1037 rc_option_editor.cc:1045 rc_option_editor.cc:1047 -#: rc_option_editor.cc:1055 rc_option_editor.cc:1062 rc_option_editor.cc:1071 -#: rc_option_editor.cc:1073 rc_option_editor.cc:1075 rc_option_editor.cc:1083 -#: rc_option_editor.cc:1085 rc_option_editor.cc:1094 +#: ardour_ui2.cc:628 rc_option_editor.cc:1002 rc_option_editor.cc:1020 +#: rc_option_editor.cc:1023 rc_option_editor.cc:1025 rc_option_editor.cc:1027 +#: rc_option_editor.cc:1035 rc_option_editor.cc:1043 rc_option_editor.cc:1045 +#: rc_option_editor.cc:1053 rc_option_editor.cc:1060 rc_option_editor.cc:1069 +#: rc_option_editor.cc:1071 rc_option_editor.cc:1073 rc_option_editor.cc:1081 +#: rc_option_editor.cc:1083 rc_option_editor.cc:1092 #: session_option_editor.cc:234 session_option_editor.cc:236 #: session_option_editor.cc:257 session_option_editor.cc:259 #: session_option_editor.cc:261 session_option_editor.cc:268 msgid "Misc" msgstr "Różne" -#: ardour_ui_dependents.cc:77 +#: ardour_ui_dependents.cc:69 msgid "Setup Editor" msgstr "Ustawianie edytora" -#: ardour_ui_dependents.cc:79 +#: ardour_ui_dependents.cc:71 msgid "Setup Mixer" msgstr "Ustawianie miksera" -#: ardour_ui_dependents.cc:85 +#: ardour_ui_dependents.cc:77 msgid "Reload Session History" msgstr "Wczytywanie historii sesji" -#: ardour_ui_dialogs.cc:340 +#: ardour_ui_dialogs.cc:238 +msgid "Don't close" +msgstr "" + +#: ardour_ui_dialogs.cc:239 +msgid "Just close" +msgstr "" + +#: ardour_ui_dialogs.cc:240 +msgid "Save and close" +msgstr "" + +#: ardour_ui_dialogs.cc:339 msgid "This screen is not tall enough to display the mixer window" msgstr "" @@ -998,11 +1454,11 @@ msgid "Session" msgstr "Sesja" #: ardour_ui_ed.cc:106 editor_actions.cc:134 editor_regions.cc:115 -#: port_group.cc:457 session_option_editor.cc:82 session_option_editor.cc:89 +#: port_group.cc:458 session_option_editor.cc:82 session_option_editor.cc:89 msgid "Sync" msgstr "Synchronizacja" -#: ardour_ui_ed.cc:107 engine_dialog.cc:369 +#: ardour_ui_ed.cc:107 msgid "Options" msgstr "Opcje" @@ -1030,18 +1486,22 @@ msgstr "Format pliku" msgid "Sample Format" msgstr "Format próbkowania" -#: ardour_ui_ed.cc:114 rc_option_editor.cc:1826 rc_option_editor.cc:1839 +#: ardour_ui_ed.cc:114 rc_option_editor.cc:1814 rc_option_editor.cc:1826 msgid "Control Surfaces" msgstr "UrzÄ…dzenia sterujÄ…ce" -#: ardour_ui_ed.cc:115 rc_option_editor.cc:1558 +#: ardour_ui_ed.cc:115 rc_option_editor.cc:1546 msgid "Plugins" msgstr "Wtyczki" -#: ardour_ui_ed.cc:116 rc_option_editor.cc:1902 +#: ardour_ui_ed.cc:116 rc_option_editor.cc:1889 msgid "Metering" msgstr "Ustawienia metrum" +#: ardour_ui_ed.cc:117 +msgid "Fall Off Rate" +msgstr "" + #: ardour_ui_ed.cc:118 msgid "Hold Time" msgstr "Czas przytrzymania" @@ -1054,10 +1514,47 @@ msgstr "ObsÅ‚uga liczb zdenormalizowanych" msgid "New..." msgstr "" +#: ardour_ui_ed.cc:125 +msgid "Open..." +msgstr "" + +#: ardour_ui_ed.cc:126 +msgid "Recent..." +msgstr "" + #: ardour_ui_ed.cc:127 panner_editor.cc:29 playlist_selector.cc:64 msgid "Close" msgstr "Zamknij" +#: ardour_ui_ed.cc:130 +msgid "Add Track or Bus..." +msgstr "" + +#: ardour_ui_ed.cc:135 +msgid "Open Video" +msgstr "" + +#: ardour_ui_ed.cc:138 +msgid "Remove Video" +msgstr "" + +#: ardour_ui_ed.cc:141 +msgid "Export To Video File" +msgstr "" + +#: ardour_ui_ed.cc:145 +msgid "Snapshot..." +msgstr "" + +#: ardour_ui_ed.cc:149 +msgid "Save As..." +msgstr "" + +#: ardour_ui_ed.cc:153 editor_actions.cc:1719 editor_markers.cc:858 +#: editor_snapshots.cc:123 mixer_strip.cc:1471 route_time_axis.cc:1485 +msgid "Rename..." +msgstr "" + #: ardour_ui_ed.cc:157 msgid "Save Template..." msgstr "Zapisz szablon" @@ -1074,135 +1571,174 @@ msgstr "" msgid "Import Metadata..." msgstr "" +#: ardour_ui_ed.cc:169 +msgid "Export To Audio File(s)..." +msgstr "" + +#: ardour_ui_ed.cc:172 +msgid "Stem export..." +msgstr "" + #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 -#: export_video_dialog.cc:72 +#: export_video_dialog.cc:71 msgid "Export" msgstr "Eksportuj" -#: ardour_ui_ed.cc:189 keyeditor.cc:253 rc_option_editor.cc:1472 -msgid "JACK" -msgstr "JACK" +#: ardour_ui_ed.cc:178 +msgid "Clean-up Unused Sources..." +msgstr "" -#: ardour_ui_ed.cc:190 route_params_ui.cc:105 -msgid "Latency" -msgstr "Opóźnienie" +#: ardour_ui_ed.cc:182 +msgid "Flush Wastebasket" +msgstr "" -#: ardour_ui_ed.cc:192 -msgid "Reconnect" -msgstr "Połącz ponownie" - -#: ardour_ui_ed.cc:195 global_port_matrix.cc:207 io_selector.cc:210 -#: mixer_strip.cc:719 mixer_strip.cc:845 -msgid "Disconnect" -msgstr "Rozłącz" - -#: ardour_ui_ed.cc:222 +#: ardour_ui_ed.cc:189 msgid "Quit" msgstr "ZakoÅ„cz" -#: ardour_ui_ed.cc:226 +#: ardour_ui_ed.cc:193 msgid "Maximise Editor Space" msgstr "Maksymalizacja edytora" -#: ardour_ui_ed.cc:234 midi_tracer.cc:39 +#: ardour_ui_ed.cc:194 +msgid "Show Toolbars" +msgstr "" + +#: ardour_ui_ed.cc:197 mixer_ui.cc:1865 mixer_ui.cc:1871 +msgid "Window|Mixer" +msgstr "" + +#: ardour_ui_ed.cc:198 +msgid "Toggle Editor+Mixer" +msgstr "" + +#: ardour_ui_ed.cc:199 meterbridge.cc:230 meterbridge.cc:236 +msgid "Window|Meterbridge" +msgstr "" + +#: ardour_ui_ed.cc:201 midi_tracer.cc:42 msgid "MIDI Tracer" msgstr "" -#: ardour_ui_ed.cc:236 +#: ardour_ui_ed.cc:203 msgid "Chat" msgstr "" -#: ardour_ui_ed.cc:241 plugin_ui.cc:418 +#: ardour_ui_ed.cc:205 +msgid "Help|Manual" +msgstr "" + +#: ardour_ui_ed.cc:206 +msgid "Reference" +msgstr "" + +#: ardour_ui_ed.cc:208 plugin_ui.cc:415 msgid "Save" msgstr "Zapisz" -#: ardour_ui_ed.cc:249 rc_option_editor.cc:1114 rc_option_editor.cc:1125 -#: rc_option_editor.cc:1134 rc_option_editor.cc:1147 rc_option_editor.cc:1160 -#: rc_option_editor.cc:1169 rc_option_editor.cc:1179 rc_option_editor.cc:1181 -#: rc_option_editor.cc:1191 rc_option_editor.cc:1207 rc_option_editor.cc:1220 -#: rc_option_editor.cc:1238 rc_option_editor.cc:1240 rc_option_editor.cc:1254 -#: rc_option_editor.cc:1257 rc_option_editor.cc:1259 rc_option_editor.cc:1276 -#: rc_option_editor.cc:1287 +#: ardour_ui_ed.cc:216 rc_option_editor.cc:1112 rc_option_editor.cc:1123 +#: rc_option_editor.cc:1132 rc_option_editor.cc:1145 rc_option_editor.cc:1158 +#: rc_option_editor.cc:1167 rc_option_editor.cc:1177 rc_option_editor.cc:1179 +#: rc_option_editor.cc:1189 rc_option_editor.cc:1205 rc_option_editor.cc:1218 +#: rc_option_editor.cc:1236 rc_option_editor.cc:1238 rc_option_editor.cc:1252 +#: rc_option_editor.cc:1255 rc_option_editor.cc:1257 rc_option_editor.cc:1274 +#: rc_option_editor.cc:1285 msgid "Transport" msgstr "Nagrywanie i odtwarzanie" -#: ardour_ui_ed.cc:255 engine_dialog.cc:85 +#: ardour_ui_ed.cc:222 msgid "Stop" msgstr "Zatrzymaj" -#: ardour_ui_ed.cc:258 +#: ardour_ui_ed.cc:225 msgid "Roll" msgstr "" -#: ardour_ui_ed.cc:262 +#: ardour_ui_ed.cc:229 msgid "Start/Stop" msgstr "Uruchom/Zatrzymaj" -#: ardour_ui_ed.cc:278 +#: ardour_ui_ed.cc:232 +msgid "Start/Continue/Stop" +msgstr "" + +#: ardour_ui_ed.cc:235 +msgid "Stop and Forget Capture" +msgstr "" + +#: ardour_ui_ed.cc:245 msgid "Transition To Roll" msgstr "Do przodu" -#: ardour_ui_ed.cc:282 +#: ardour_ui_ed.cc:249 msgid "Transition To Reverse" msgstr "Od tyÅ‚u" -#: ardour_ui_ed.cc:286 +#: ardour_ui_ed.cc:253 msgid "Play Loop Range" msgstr "Odtwórz zakres pÄ™tli" -#: ardour_ui_ed.cc:296 +#: ardour_ui_ed.cc:256 +msgid "Play Selected Range" +msgstr "" + +#: ardour_ui_ed.cc:259 +msgid "Play Selection w/Preroll" +msgstr "" + +#: ardour_ui_ed.cc:263 msgid "Enable Record" msgstr "Włącz nagrywanie" -#: ardour_ui_ed.cc:299 +#: ardour_ui_ed.cc:266 msgid "Start Recording" msgstr "Rozpocznij nagrywanie" -#: ardour_ui_ed.cc:303 +#: ardour_ui_ed.cc:270 msgid "Rewind" msgstr "PrzewiÅ„ do tyÅ‚u" -#: ardour_ui_ed.cc:306 +#: ardour_ui_ed.cc:273 msgid "Rewind (Slow)" msgstr "PrzewiÅ„ do tyÅ‚u (powoli)" -#: ardour_ui_ed.cc:309 +#: ardour_ui_ed.cc:276 msgid "Rewind (Fast)" msgstr "PrzewiÅ„ do tyÅ‚u (szybko)" -#: ardour_ui_ed.cc:312 startup.cc:727 +#: ardour_ui_ed.cc:279 msgid "Forward" msgstr "PrzewiÅ„ do przodu" -#: ardour_ui_ed.cc:315 +#: ardour_ui_ed.cc:282 msgid "Forward (Slow)" msgstr "PrzewiÅ„ do przodu (powoli)" -#: ardour_ui_ed.cc:318 +#: ardour_ui_ed.cc:285 msgid "Forward (Fast)" msgstr "PrzewiÅ„ do przodu (szybko)" -#: ardour_ui_ed.cc:321 +#: ardour_ui_ed.cc:288 msgid "Goto Zero" msgstr "Do punktu zerowego" -#: ardour_ui_ed.cc:324 +#: ardour_ui_ed.cc:291 msgid "Goto Start" msgstr "Do poczÄ…tku" -#: ardour_ui_ed.cc:327 +#: ardour_ui_ed.cc:294 msgid "Goto End" msgstr "Do koÅ„ca" -#: ardour_ui_ed.cc:330 +#: ardour_ui_ed.cc:297 msgid "Goto Wall Clock" msgstr "" -#: ardour_ui_ed.cc:334 +#: ardour_ui_ed.cc:301 msgid "Focus On Clock" msgstr "" -#: ardour_ui_ed.cc:338 ardour_ui_ed.cc:347 audio_clock.cc:2046 editor.cc:237 +#: ardour_ui_ed.cc:305 ardour_ui_ed.cc:314 audio_clock.cc:2046 editor.cc:237 #: editor_actions.cc:544 editor_actions.cc:553 export_timespan_selector.cc:88 #: session_option_editor.cc:41 session_option_editor.cc:61 #: session_option_editor.cc:80 session_option_editor.cc:96 @@ -1211,94 +1747,146 @@ msgstr "" msgid "Timecode" msgstr "Zegar" -#: ardour_ui_ed.cc:340 ardour_ui_ed.cc:349 editor_actions.cc:542 +#: ardour_ui_ed.cc:307 ardour_ui_ed.cc:316 editor_actions.cc:542 msgid "Bars & Beats" msgstr "Takty i uderzenia" -#: ardour_ui_ed.cc:342 ardour_ui_ed.cc:351 +#: ardour_ui_ed.cc:309 ardour_ui_ed.cc:318 msgid "Minutes & Seconds" msgstr "Minuty i Sekundy" -#: ardour_ui_ed.cc:344 ardour_ui_ed.cc:353 audio_clock.cc:2050 editor.cc:238 +#: ardour_ui_ed.cc:311 ardour_ui_ed.cc:320 audio_clock.cc:2050 editor.cc:238 #: editor_actions.cc:543 msgid "Samples" msgstr "Próbki" -#: ardour_ui_ed.cc:356 +#: ardour_ui_ed.cc:323 msgid "Punch In" msgstr "WejÅ›cie przełącznika" -#: ardour_ui_ed.cc:357 mixer_strip.cc:1905 route_ui.cc:137 +#: ardour_ui_ed.cc:324 mixer_strip.cc:1905 route_ui.cc:137 #: time_info_box.cc:113 msgid "In" msgstr "WejÅ›cie" -#: ardour_ui_ed.cc:360 +#: ardour_ui_ed.cc:327 msgid "Punch Out" msgstr "WyjÅ›cie przełącznika" -#: ardour_ui_ed.cc:361 time_info_box.cc:114 +#: ardour_ui_ed.cc:328 time_info_box.cc:114 msgid "Out" msgstr "WyjÅ›cie" -#: ardour_ui_ed.cc:364 +#: ardour_ui_ed.cc:331 msgid "Punch In/Out" msgstr "We/wy przełącznika" -#: ardour_ui_ed.cc:368 rc_option_editor.cc:1071 +#: ardour_ui_ed.cc:332 +msgid "In/Out" +msgstr "" + +#: ardour_ui_ed.cc:335 rc_option_editor.cc:1069 msgid "Click" msgstr "Metronom" -#: ardour_ui_ed.cc:371 +#: ardour_ui_ed.cc:338 msgid "Auto Input" msgstr "WejÅ›cie dźwiÄ™ku" -#: ardour_ui_ed.cc:374 +#: ardour_ui_ed.cc:341 msgid "Auto Play" msgstr "Autoodtwarzanie" -#: ardour_ui_ed.cc:401 +#: ardour_ui_ed.cc:352 +msgid "Sync Startup to Video" +msgstr "" + +#: ardour_ui_ed.cc:354 +msgid "Time Master" +msgstr "" + +#: ardour_ui_ed.cc:361 +msgid "Toggle Record Enable Track %1" +msgstr "" + +#: ardour_ui_ed.cc:368 msgid "Percentage" msgstr "Procenty" -#: ardour_ui_ed.cc:402 shuttle_control.cc:169 +#: ardour_ui_ed.cc:369 shuttle_control.cc:169 msgid "Semitones" msgstr "Półtony" -#: ardour_ui_ed.cc:406 +#: ardour_ui_ed.cc:373 msgid "Send MTC" msgstr "WysyÅ‚anie MTC" -#: ardour_ui_ed.cc:408 +#: ardour_ui_ed.cc:375 msgid "Send MMC" msgstr "WysyÅ‚anie MMC" -#: ardour_ui_ed.cc:410 +#: ardour_ui_ed.cc:377 msgid "Use MMC" msgstr "Używanie MMC" -#: ardour_ui_ed.cc:420 +#: ardour_ui_ed.cc:379 rc_option_editor.cc:1698 +msgid "Send MIDI Clock" +msgstr "" + +#: ardour_ui_ed.cc:381 +msgid "Send MIDI Feedback" +msgstr "" + +#: ardour_ui_ed.cc:387 msgid "Panic" msgstr "" -#: ardour_ui_ed.cc:561 +#: ardour_ui_ed.cc:472 +msgid "Wall Clock" +msgstr "" + +#: ardour_ui_ed.cc:473 msgid "Disk Space" msgstr "" -#: ardour_ui_ed.cc:564 -msgid "JACK Sampling Rate and Latency" +#: ardour_ui_ed.cc:474 +msgid "DSP" msgstr "" -#: ardour_ui_options.cc:65 +#: ardour_ui_ed.cc:475 +msgid "Buffers" +msgstr "" + +#: ardour_ui_ed.cc:477 +msgid "Timecode Format" +msgstr "" + +#: ardour_ui_ed.cc:478 +msgid "File Format" +msgstr "" + +#: ardour_ui_options.cc:61 msgid "" "It is not possible to use JACK as the the sync source\n" "when the pull up/down setting is non-zero." msgstr "" -#: ardour_ui_options.cc:484 +#: ardour_ui_options.cc:317 +msgid "Internal" +msgstr "" + +#: ardour_ui_options.cc:468 +msgid "Enable/Disable external positional sync" +msgstr "" + +#: ardour_ui_options.cc:470 msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "" +#: audio_clock.cc:1012 audio_clock.cc:1031 +msgid "--pending--" +msgstr "" + #: audio_clock.cc:1083 msgid "SR" msgstr "" @@ -1340,11 +1928,23 @@ msgstr "Takty:Uderzenia" msgid "Minutes:Seconds" msgstr "Minuty i sekundy" +#: audio_clock.cc:2054 +msgid "Set From Playhead" +msgstr "" + +#: audio_clock.cc:2055 +msgid "Locate to This Time" +msgstr "" + #: audio_region_editor.cc:63 control_point_dialog.cc:49 rhythm_ferret.cc:125 #: rhythm_ferret.cc:130 rhythm_ferret.cc:135 msgid "dB" msgstr "" +#: audio_region_editor.cc:66 +msgid "Region gain:" +msgstr "" + #: audio_region_editor.cc:76 export_format_dialog.cc:43 msgid "dBFS" msgstr "" @@ -1353,6 +1953,10 @@ msgstr "" msgid "Peak amplitude:" msgstr "" +#: audio_region_editor.cc:90 +msgid "Calculating..." +msgstr "" + #: audio_region_view.cc:1001 msgid "add gain control point" msgstr "dodaj punkt kontrolny wzmocnienia" @@ -1369,6 +1973,10 @@ msgstr "Panorama" msgid "automation event move" msgstr "przesuÅ„ zdarzenie automatyki" +#: automation_line.cc:462 automation_line.cc:483 +msgid "automation range move" +msgstr "" + #: automation_line.cc:823 region_gain_line.cc:73 msgid "remove control point" msgstr "usuÅ„ punkt kontrolny" @@ -1377,6 +1985,10 @@ msgstr "usuÅ„ punkt kontrolny" msgid "Ignoring illegal points on AutomationLine \"%1\"" msgstr "" +#: automation_region_view.cc:160 automation_time_axis.cc:583 +msgid "add automation event" +msgstr "" + #: automation_time_axis.cc:146 msgid "automation state" msgstr "stan automatyki" @@ -1385,27 +1997,33 @@ msgstr "stan automatyki" msgid "hide track" msgstr "ukryj Å›cieżkÄ™" +#: automation_time_axis.cc:255 automation_time_axis.cc:307 +#: automation_time_axis.cc:496 gain_meter.cc:194 generic_pluginui.cc:454 +#: generic_pluginui.cc:775 panner_ui.cc:149 +msgid "Automation|Manual" +msgstr "" + #: automation_time_axis.cc:257 automation_time_axis.cc:318 -#: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 -#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 -#: generic_pluginui.cc:459 generic_pluginui.cc:748 midi_time_axis.cc:1488 -#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:153 +#: automation_time_axis.cc:501 editor.cc:1937 editor.cc:2014 +#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:197 +#: generic_pluginui.cc:457 generic_pluginui.cc:777 midi_time_axis.cc:1488 +#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:152 msgid "Play" msgstr "Odtwórz" #: automation_time_axis.cc:259 automation_time_axis.cc:329 -#: automation_time_axis.cc:506 gain_meter.cc:201 generic_pluginui.cc:462 -#: generic_pluginui.cc:750 panner_ui.cc:156 +#: automation_time_axis.cc:506 gain_meter.cc:200 generic_pluginui.cc:460 +#: generic_pluginui.cc:779 panner_ui.cc:155 msgid "Write" msgstr "Zapisz" #: automation_time_axis.cc:261 automation_time_axis.cc:340 -#: automation_time_axis.cc:511 gain_meter.cc:204 generic_pluginui.cc:465 -#: generic_pluginui.cc:752 panner_ui.cc:159 +#: automation_time_axis.cc:511 gain_meter.cc:203 generic_pluginui.cc:463 +#: generic_pluginui.cc:781 panner_ui.cc:158 msgid "Touch" msgstr "Dotyk" -#: automation_time_axis.cc:351 generic_pluginui.cc:468 meter_patterns.cc:108 +#: automation_time_axis.cc:351 generic_pluginui.cc:466 meter_patterns.cc:108 msgid "???" msgstr "???" @@ -1426,8 +2044,12 @@ msgstr "Wyczyść" msgid "State" msgstr "Stan" -#: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 -#: editor.cc:1526 export_format_dialog.cc:476 +#: automation_time_axis.cc:531 +msgid "Discrete" +msgstr "" + +#: automation_time_axis.cc:537 editor.cc:1458 editor.cc:1465 editor.cc:1521 +#: editor.cc:1527 export_format_dialog.cc:476 msgid "Linear" msgstr "Liniowy" @@ -1440,6 +2062,14 @@ msgstr "Tryb" msgid "Disassociate" msgstr "" +#: bundle_manager.cc:185 +msgid "Edit Bundle" +msgstr "" + +#: bundle_manager.cc:200 +msgid "Direction:" +msgstr "" + #: bundle_manager.cc:205 bundle_manager.cc:209 mixer_strip.cc:158 #: mixer_strip.cc:2127 msgid "Input" @@ -1450,13 +2080,13 @@ msgstr "WejÅ›cie" msgid "Output" msgstr "WyjÅ›cie" -#: bundle_manager.cc:264 editor.cc:1974 editor_actions.cc:90 +#: bundle_manager.cc:264 editor.cc:1978 editor_actions.cc:90 #: editor_actions.cc:100 msgid "Edit" msgstr "Edycja" -#: bundle_manager.cc:265 editor.cc:5493 editor_actions.cc:310 -#: editor_actions.cc:368 plugin_ui.cc:419 processor_box.cc:2229 +#: bundle_manager.cc:265 editor.cc:5497 editor_actions.cc:310 +#: editor_actions.cc:368 plugin_ui.cc:416 processor_box.cc:2268 #: route_time_axis.cc:713 msgid "Delete" msgstr "UsuÅ„" @@ -1474,6 +2104,14 @@ msgstr "Utwórz" msgid "Bundle" msgstr "" +#: bundle_manager.cc:417 +msgid "Add Channel" +msgstr "" + +#: bundle_manager.cc:424 +msgid "Rename Channel" +msgstr "" + #: canvas-simpleline.c:111 canvas-simplerect.c:106 msgid "x1" msgstr "" @@ -1562,6 +2200,18 @@ msgstr "kolor rgba wypeÅ‚nienia" msgid "color of fill" msgstr "kolor wypeÅ‚nienia" +#: configinfo.cc:28 +msgid "Build Configuration" +msgstr "" + +#: control_point_dialog.cc:33 +msgid "Control point" +msgstr "" + +#: control_point_dialog.cc:45 +msgid "Value" +msgstr "" + #: edit_note_dialog.cc:42 msgid "Note" msgstr "" @@ -1586,6 +2236,11 @@ msgstr "" msgid "Set selected notes to this length" msgstr "" +#: edit_note_dialog.cc:58 midi_list_editor.cc:104 patch_change_dialog.cc:91 +#: step_entry.cc:393 +msgid "Channel" +msgstr "" + #: edit_note_dialog.cc:68 msgid "Pitch" msgstr "" @@ -1594,104 +2249,178 @@ msgstr "" msgid "Velocity" msgstr "" -#: editor.cc:137 editor.cc:3429 +#: edit_note_dialog.cc:88 patch_change_dialog.cc:67 +msgid "Time" +msgstr "" + +#: edit_note_dialog.cc:98 editor_regions.cc:114 +#: export_timespan_selector.cc:359 export_timespan_selector.cc:421 +#: location_ui.cc:317 midi_list_editor.cc:114 time_info_box.cc:105 +msgid "Length" +msgstr "" + +#: edit_note_dialog.cc:165 +msgid "edit note" +msgstr "" + +#: editor.cc:137 editor.cc:3433 msgid "CD Frames" msgstr "Klatki CD" -#: editor.cc:141 editor.cc:3437 +#: editor.cc:138 editor.cc:3435 +msgid "Timecode Frames" +msgstr "" + +#: editor.cc:139 editor.cc:3437 +msgid "Timecode Seconds" +msgstr "" + +#: editor.cc:140 editor.cc:3439 +msgid "Timecode Minutes" +msgstr "" + +#: editor.cc:141 editor.cc:3441 msgid "Seconds" msgstr "Sekundy" -#: editor.cc:142 editor.cc:3439 +#: editor.cc:142 editor.cc:3443 msgid "Minutes" msgstr "Minuty" -#: editor.cc:145 editor.cc:3409 quantize_dialog.cc:39 quantize_dialog.cc:145 +#: editor.cc:143 editor.cc:3417 quantize_dialog.cc:37 quantize_dialog.cc:141 +msgid "Beats/128" +msgstr "" + +#: editor.cc:144 editor.cc:3415 quantize_dialog.cc:38 quantize_dialog.cc:143 +msgid "Beats/64" +msgstr "" + +#: editor.cc:145 editor.cc:3413 quantize_dialog.cc:39 quantize_dialog.cc:145 msgid "Beats/32" msgstr "Uderzenia/32" -#: editor.cc:149 editor.cc:3401 quantize_dialog.cc:40 quantize_dialog.cc:147 +#: editor.cc:146 editor.cc:3411 +msgid "Beats/28" +msgstr "" + +#: editor.cc:147 editor.cc:3409 +msgid "Beats/24" +msgstr "" + +#: editor.cc:148 editor.cc:3407 +msgid "Beats/20" +msgstr "" + +#: editor.cc:149 editor.cc:3405 quantize_dialog.cc:40 quantize_dialog.cc:147 msgid "Beats/16" msgstr "Uderzenia/16" -#: editor.cc:153 editor.cc:3393 quantize_dialog.cc:41 quantize_dialog.cc:149 +#: editor.cc:150 editor.cc:3403 +msgid "Beats/14" +msgstr "" + +#: editor.cc:151 editor.cc:3401 +msgid "Beats/12" +msgstr "" + +#: editor.cc:152 editor.cc:3399 +msgid "Beats/10" +msgstr "" + +#: editor.cc:153 editor.cc:3397 quantize_dialog.cc:41 quantize_dialog.cc:149 msgid "Beats/8" msgstr "Uderzenia/8" -#: editor.cc:157 editor.cc:3385 quantize_dialog.cc:42 quantize_dialog.cc:151 +#: editor.cc:154 editor.cc:3395 +msgid "Beats/7" +msgstr "" + +#: editor.cc:155 editor.cc:3393 +msgid "Beats/6" +msgstr "" + +#: editor.cc:156 editor.cc:3391 +msgid "Beats/5" +msgstr "" + +#: editor.cc:157 editor.cc:3389 quantize_dialog.cc:42 quantize_dialog.cc:151 msgid "Beats/4" msgstr "Uderzenia/4" -#: editor.cc:158 editor.cc:3383 quantize_dialog.cc:43 quantize_dialog.cc:153 +#: editor.cc:158 editor.cc:3387 quantize_dialog.cc:43 quantize_dialog.cc:153 msgid "Beats/3" msgstr "Uderzenia/3" -#: editor.cc:160 editor.cc:3415 quantize_dialog.cc:45 quantize_dialog.cc:157 +#: editor.cc:159 editor.cc:3385 quantize_dialog.cc:44 quantize_dialog.cc:155 +msgid "Beats/2" +msgstr "" + +#: editor.cc:160 editor.cc:3419 quantize_dialog.cc:45 quantize_dialog.cc:157 msgid "Beats" msgstr "Uderzenia" -#: editor.cc:161 editor.cc:3417 +#: editor.cc:161 editor.cc:3421 msgid "Bars" msgstr "Takty" -#: editor.cc:162 editor.cc:3419 +#: editor.cc:162 editor.cc:3423 msgid "Marks" msgstr "Znaczniki" -#: editor.cc:163 editor.cc:3421 +#: editor.cc:163 editor.cc:3425 msgid "Region starts" msgstr "PoczÄ…tek obszaru" -#: editor.cc:164 editor.cc:3423 +#: editor.cc:164 editor.cc:3427 msgid "Region ends" msgstr "Koniec obszaru" -#: editor.cc:165 editor.cc:3427 +#: editor.cc:165 editor.cc:3431 msgid "Region syncs" msgstr "Synchronizacja obszaru" -#: editor.cc:166 editor.cc:3425 +#: editor.cc:166 editor.cc:3429 msgid "Region bounds" msgstr "Granice obszaru" -#: editor.cc:171 editor.cc:3455 editor_actions.cc:485 +#: editor.cc:171 editor.cc:3459 editor_actions.cc:485 msgid "No Grid" msgstr "Bez siatki" -#: editor.cc:172 editor.cc:3457 editor_actions.cc:486 +#: editor.cc:172 editor.cc:3461 editor_actions.cc:486 msgid "Grid" msgstr "Siatka" -#: editor.cc:173 editor.cc:3459 editor_actions.cc:487 +#: editor.cc:173 editor.cc:3463 editor_actions.cc:487 msgid "Magnetic" msgstr "PrzyciÄ…ganie" -#: editor.cc:178 editor.cc:188 editor.cc:3498 editor.cc:3523 +#: editor.cc:178 editor.cc:188 editor.cc:3502 editor.cc:3527 #: editor_actions.cc:117 editor_actions.cc:468 msgid "Playhead" msgstr "GÅ‚owica" -#: editor.cc:179 editor.cc:3496 editor_actions.cc:470 +#: editor.cc:179 editor.cc:3500 editor_actions.cc:470 msgid "Marker" msgstr "Znacznik" -#: editor.cc:180 editor.cc:189 editor.cc:3525 editor_actions.cc:469 +#: editor.cc:180 editor.cc:189 editor.cc:3529 editor_actions.cc:469 msgid "Mouse" msgstr "Wskaźnik myszy" -#: editor.cc:185 editor.cc:3517 mono_panner_editor.cc:42 +#: editor.cc:185 editor.cc:3521 mono_panner_editor.cc:42 msgid "Left" msgstr "Lewa" -#: editor.cc:186 editor.cc:3519 mono_panner_editor.cc:47 +#: editor.cc:186 editor.cc:3523 mono_panner_editor.cc:47 msgid "Right" msgstr "Prawa" -#: editor.cc:187 editor.cc:3521 +#: editor.cc:187 editor.cc:3525 msgid "Center" msgstr "Åšrodek" -#: editor.cc:190 editor.cc:3090 editor.cc:3527 +#: editor.cc:190 editor.cc:3094 editor.cc:3531 msgid "Edit point" msgstr "Punkt edycji" @@ -1751,272 +2480,469 @@ msgstr "" msgid "mode" msgstr "tryb" -#: editor.cc:542 +#: editor.cc:541 msgid "Regions" msgstr "Obszar" -#: editor.cc:544 +#: editor.cc:542 +msgid "Tracks & Busses" +msgstr "" + +#: editor.cc:543 msgid "Snapshots" msgstr "Zrzuty" -#: editor.cc:690 editor.cc:5345 rc_option_editor.cc:1294 -#: rc_option_editor.cc:1302 rc_option_editor.cc:1310 rc_option_editor.cc:1318 -#: rc_option_editor.cc:1335 rc_option_editor.cc:1337 rc_option_editor.cc:1345 -#: rc_option_editor.cc:1353 rc_option_editor.cc:1373 rc_option_editor.cc:1385 -#: rc_option_editor.cc:1387 rc_option_editor.cc:1395 rc_option_editor.cc:1403 -#: rc_option_editor.cc:1411 rc_option_editor.cc:1419 rc_option_editor.cc:1427 -#: rc_option_editor.cc:1442 rc_option_editor.cc:1446 +#: editor.cc:544 +msgid "Track & Bus Groups" +msgstr "" + +#: editor.cc:545 +msgid "Ranges & Marks" +msgstr "" + +#: editor.cc:690 editor.cc:5349 rc_option_editor.cc:1292 +#: rc_option_editor.cc:1300 rc_option_editor.cc:1308 rc_option_editor.cc:1316 +#: rc_option_editor.cc:1333 rc_option_editor.cc:1335 rc_option_editor.cc:1343 +#: rc_option_editor.cc:1351 rc_option_editor.cc:1371 rc_option_editor.cc:1383 +#: rc_option_editor.cc:1385 rc_option_editor.cc:1393 rc_option_editor.cc:1401 +#: rc_option_editor.cc:1409 rc_option_editor.cc:1417 rc_option_editor.cc:1432 +#: rc_option_editor.cc:1436 msgid "Editor" msgstr "Edytor" -#: editor.cc:1215 editor.cc:1225 editor.cc:4440 editor_actions.cc:130 +#: editor.cc:1215 editor.cc:1225 editor.cc:4444 editor_actions.cc:130 #: editor_actions.cc:1813 msgid "Loop" msgstr "PÄ™tla" -#: editor.cc:1231 editor.cc:1241 editor.cc:4467 editor_actions.cc:131 +#: editor.cc:1231 editor.cc:1241 editor.cc:4471 editor_actions.cc:131 #: time_info_box.cc:67 msgid "Punch" msgstr "Przełącznik" -#: editor.cc:1352 +#: editor.cc:1353 msgid "Linear (for highly correlated material)" msgstr "" -#: editor.cc:1362 editor.cc:1499 editor.cc:1561 +#: editor.cc:1363 editor.cc:1500 editor.cc:1562 msgid "Constant power" msgstr "" -#: editor.cc:1371 editor.cc:1492 editor.cc:1554 +#: editor.cc:1372 editor.cc:1493 editor.cc:1555 msgid "Symmetric" msgstr "" -#: editor.cc:1381 editor.cc:1474 editor.cc:1536 +#: editor.cc:1382 editor.cc:1475 editor.cc:1537 msgid "Slow" msgstr "Wolno" -#: editor.cc:1390 editor.cc:1483 editor.cc:1545 sfdb_ui.cc:1627 +#: editor.cc:1391 editor.cc:1484 editor.cc:1546 sfdb_ui.cc:1627 #: sfdb_ui.cc:1736 msgid "Fast" msgstr "Szybko" -#: editor.cc:1437 +#: editor.cc:1438 msgid "programming error: fade in canvas item has no regionview data pointer!" msgstr "" -#: editor.cc:1448 editor.cc:1512 +#: editor.cc:1449 editor.cc:1513 msgid "Deactivate" msgstr "Wyłącz" -#: editor.cc:1450 editor.cc:1514 +#: editor.cc:1451 editor.cc:1515 msgid "Activate" msgstr "Włącz" -#: editor.cc:1458 editor.cc:1521 +#: editor.cc:1459 editor.cc:1522 msgid "Slowest" msgstr "Najwolniej" -#: editor.cc:1572 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 +#: editor.cc:1573 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 msgid "programming error: " msgstr "błąd programowania:" -#: editor.cc:1673 editor.cc:1681 editor_ops.cc:3522 +#: editor.cc:1674 editor.cc:1682 editor_ops.cc:3522 msgid "Freeze" msgstr "Zamroź" -#: editor.cc:1677 +#: editor.cc:1678 msgid "Unfreeze" msgstr "Odmroź" -#: editor.cc:1852 editor_markers.cc:895 +#: editor.cc:1817 +msgid "Selected Regions" +msgstr "" + +#: editor.cc:1853 editor_markers.cc:895 msgid "Play Range" msgstr "Odtwórz zakres" -#: editor.cc:1853 editor_markers.cc:898 +#: editor.cc:1854 editor_markers.cc:898 msgid "Loop Range" msgstr "ZapÄ™tl zakres" -#: editor.cc:1893 editor_markers.cc:925 +#: editor.cc:1863 editor_actions.cc:332 +msgid "Move Range Start to Previous Region Boundary" +msgstr "" + +#: editor.cc:1870 editor_actions.cc:339 +msgid "Move Range Start to Next Region Boundary" +msgstr "" + +#: editor.cc:1877 editor_actions.cc:346 +msgid "Move Range End to Previous Region Boundary" +msgstr "" + +#: editor.cc:1884 editor_actions.cc:353 +msgid "Move Range End to Next Region Boundary" +msgstr "" + +#: editor.cc:1890 +msgid "Convert to Region In-Place" +msgstr "" + +#: editor.cc:1891 +msgid "Convert to Region in Region List" +msgstr "" + +#: editor.cc:1894 editor_markers.cc:925 msgid "Select All in Range" msgstr "Wszystko w zakresie" -#: editor.cc:1900 +#: editor.cc:1897 +msgid "Set Loop from Range" +msgstr "" + +#: editor.cc:1898 +msgid "Set Punch from Range" +msgstr "" + +#: editor.cc:1901 msgid "Add Range Markers" msgstr "Dodaj znaczniki zakresu" -#: editor.cc:1905 editor_actions.cc:289 +#: editor.cc:1904 +msgid "Crop Region to Range" +msgstr "" + +#: editor.cc:1905 +msgid "Fill Range with Region" +msgstr "" + +#: editor.cc:1906 editor_actions.cc:289 msgid "Duplicate Range" msgstr "Duplikuj" #: editor.cc:1909 +msgid "Consolidate Range" +msgstr "" + +#: editor.cc:1910 msgid "Consolidate Range With Processing" msgstr "" #: editor.cc:1911 +msgid "Bounce Range to Region List" +msgstr "" + +#: editor.cc:1912 msgid "Bounce Range to Region List With Processing" msgstr "" -#: editor.cc:1927 editor.cc:2008 editor_actions.cc:281 +#: editor.cc:1913 editor_markers.cc:908 +msgid "Export Range..." +msgstr "" + +#: editor.cc:1915 +msgid "Export Video Range..." +msgstr "" + +#: editor.cc:1931 editor.cc:2012 editor_actions.cc:281 msgid "Play From Edit Point" msgstr "Od punktu edycji" -#: editor.cc:1931 +#: editor.cc:1932 editor.cc:2013 +msgid "Play From Start" +msgstr "" + +#: editor.cc:1933 +msgid "Play Region" +msgstr "" + +#: editor.cc:1935 msgid "Loop Region" msgstr "ZapÄ™tl obszar" -#: editor.cc:1942 editor.cc:2019 editor_actions.cc:185 -#: export_timespan_selector.cc:53 processor_box.cc:2237 +#: editor.cc:1945 editor.cc:2022 +msgid "Select All in Track" +msgstr "" + +#: editor.cc:1946 editor.cc:2023 editor_actions.cc:185 +#: export_timespan_selector.cc:53 processor_box.cc:2276 msgid "Select All" msgstr "Wszystko" -#: editor.cc:1944 editor.cc:2021 editor_actions.cc:187 +#: editor.cc:1947 editor.cc:2024 +msgid "Invert Selection in Track" +msgstr "" + +#: editor.cc:1948 editor.cc:2025 editor_actions.cc:187 msgid "Invert Selection" msgstr "Odwróć zaznaczenie" -#: editor.cc:1949 editor.cc:2023 editor_actions.cc:188 +#: editor.cc:1950 +msgid "Set Range to Loop Range" +msgstr "" + +#: editor.cc:1951 +msgid "Set Range to Punch Range" +msgstr "" + +#: editor.cc:1953 editor.cc:2027 editor_actions.cc:188 msgid "Select All After Edit Point" msgstr "Wszystko za punktem edycji" -#: editor.cc:1950 editor.cc:2024 editor_actions.cc:189 +#: editor.cc:1954 editor.cc:2028 editor_actions.cc:189 msgid "Select All Before Edit Point" msgstr "Wszystko przed punktem edycji" -#: editor.cc:1951 editor.cc:2025 +#: editor.cc:1955 editor.cc:2029 msgid "Select All After Playhead" msgstr "Wszystko za gÅ‚owicÄ…" -#: editor.cc:1952 editor.cc:2026 +#: editor.cc:1956 editor.cc:2030 msgid "Select All Before Playhead" msgstr "Wszystko przed gÅ‚owicÄ…" -#: editor.cc:1957 editor.cc:2028 editor_actions.cc:127 editor_actions.cc:128 +#: editor.cc:1957 +msgid "Select All Between Playhead and Edit Point" +msgstr "" + +#: editor.cc:1958 +msgid "Select All Within Playhead and Edit Point" +msgstr "" + +#: editor.cc:1959 +msgid "Select Range Between Playhead and Edit Point" +msgstr "" + +#: editor.cc:1961 editor.cc:2032 editor_actions.cc:127 editor_actions.cc:128 msgid "Select" msgstr "Zaznacz" -#: editor.cc:1965 editor.cc:2036 editor_actions.cc:309 processor_box.cc:2222 +#: editor.cc:1969 editor.cc:2040 editor_actions.cc:309 processor_box.cc:2261 msgid "Cut" msgstr "Wytnij" -#: editor.cc:1966 editor.cc:2037 editor_actions.cc:312 processor_box.cc:2225 +#: editor.cc:1970 editor.cc:2041 editor_actions.cc:312 processor_box.cc:2264 msgid "Copy" msgstr "Skopiuj" -#: editor.cc:1967 editor.cc:2038 editor_actions.cc:313 processor_box.cc:2233 +#: editor.cc:1971 editor.cc:2042 editor_actions.cc:313 processor_box.cc:2272 msgid "Paste" msgstr "Wklej" -#: editor.cc:1971 editor_actions.cc:87 +#: editor.cc:1975 editor_actions.cc:87 msgid "Align" msgstr "Wyrównaj" -#: editor.cc:1972 +#: editor.cc:1976 msgid "Align Relative" msgstr "Wyrównaj relatywnie" -#: editor.cc:1979 +#: editor.cc:1983 msgid "Insert Selected Region" msgstr "Wstaw zaznaczony obszar" +#: editor.cc:1984 +msgid "Insert Existing Media" +msgstr "" + +#: editor.cc:1993 editor.cc:2049 +msgid "Nudge Entire Track Later" +msgstr "" + #: editor.cc:1994 editor.cc:2050 +msgid "Nudge Track After Edit Point Later" +msgstr "" + +#: editor.cc:1995 editor.cc:2051 +msgid "Nudge Entire Track Earlier" +msgstr "" + +#: editor.cc:1996 editor.cc:2052 +msgid "Nudge Track After Edit Point Earlier" +msgstr "" + +#: editor.cc:1998 editor.cc:2054 msgid "Nudge" msgstr "Pchnij" -#: editor.cc:3070 +#: editor.cc:3074 msgid "Smart Mode (add Range functions to Object mode)" msgstr "" -#: editor.cc:3073 +#: editor.cc:3075 +msgid "Object Mode (select/move Objects)" +msgstr "" + +#: editor.cc:3076 +msgid "Range Mode (select/move Ranges)" +msgstr "" + +#: editor.cc:3077 msgid "Draw/Edit MIDI Notes" msgstr "" -#: editor.cc:3075 -msgid "Select Zoom Range" -msgstr "Ustawia zakres powiÄ™kszania" - -#: editor.cc:3077 -msgid "Listen to Specific Regions" -msgstr "Odtwarza okreÅ›lone obszary" - #: editor.cc:3078 -msgid "Note Level Editing" +msgid "Draw Region Gain" msgstr "" #: editor.cc:3079 +msgid "Select Zoom Range" +msgstr "Ustawia zakres powiÄ™kszania" + +#: editor.cc:3080 +msgid "Stretch/Shrink Regions and MIDI Notes" +msgstr "" + +#: editor.cc:3081 +msgid "Listen to Specific Regions" +msgstr "Odtwarza okreÅ›lone obszary" + +#: editor.cc:3082 +msgid "Note Level Editing" +msgstr "" + +#: editor.cc:3083 msgid "" "Groups: click to (de)activate\n" "Context-click for other operations" msgstr "" -#: editor.cc:3082 editor_actions.cc:242 +#: editor.cc:3084 +msgid "Nudge Region/Selection Later" +msgstr "" + +#: editor.cc:3085 +msgid "Nudge Region/Selection Earlier" +msgstr "" + +#: editor.cc:3086 editor_actions.cc:242 msgid "Zoom In" msgstr "PowiÄ™ksz" -#: editor.cc:3083 editor_actions.cc:241 +#: editor.cc:3087 editor_actions.cc:241 msgid "Zoom Out" msgstr "Pomniejsz" -#: editor.cc:3084 editor_actions.cc:243 +#: editor.cc:3088 editor_actions.cc:243 msgid "Zoom to Session" msgstr "Dopasuj do sesji" -#: editor.cc:3085 +#: editor.cc:3089 msgid "Zoom focus" msgstr "PowiÄ™kszanie do" -#: editor.cc:3088 +#: editor.cc:3090 +msgid "Expand Tracks" +msgstr "" + +#: editor.cc:3091 +msgid "Shrink Tracks" +msgstr "" + +#: editor.cc:3092 msgid "Snap/Grid Units" msgstr "" -#: editor.cc:3089 +#: editor.cc:3093 msgid "Snap/Grid Mode" msgstr "Tryb przyciÄ…gania" -#: editor.cc:3092 +#: editor.cc:3095 +msgid "Edit Mode" +msgstr "" + +#: editor.cc:3096 msgid "" "Nudge Clock\n" "(controls distance used to nudge regions and selections)" msgstr "" -#: editor.cc:3194 +#: editor.cc:3198 msgid "malformed URL passed to drag-n-drop code" msgstr "" -#: editor.cc:3265 editor_actions.cc:292 +#: editor.cc:3260 editor_actions.cc:291 +msgid "Command|Undo" +msgstr "" + +#: editor.cc:3262 +msgid "Command|Undo (%1)" +msgstr "" + +#: editor.cc:3269 editor_actions.cc:292 msgid "Redo" msgstr "Powtórz" -#: editor.cc:3267 +#: editor.cc:3271 msgid "Redo (%1)" msgstr "Powtórz (%1)" -#: editor.cc:3286 editor.cc:3310 editor_actions.cc:106 editor_actions.cc:1794 +#: editor.cc:3290 editor.cc:3314 editor_actions.cc:106 editor_actions.cc:1794 msgid "Duplicate" msgstr "Powiel" -#: editor.cc:3865 +#: editor.cc:3291 +msgid "Number of duplications:" +msgstr "" + +#: editor.cc:3868 +msgid "Playlist Deletion" +msgstr "" + +#: editor.cc:3869 msgid "" "Playlist %1 is currently unused.\n" "If it is kept, its audio files will not be cleaned.\n" "If it is deleted, audio files used by it alone will be cleaned." msgstr "" -#: editor.cc:3877 editor_audio_import.cc:581 editor_ops.cc:5856 -#: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 +#: editor.cc:3879 +msgid "Delete Playlist" +msgstr "" + +#: editor.cc:3880 +msgid "Keep Playlist" +msgstr "" + +#: editor.cc:3881 editor_audio_import.cc:581 editor_ops.cc:5856 +#: engine_dialog.cc:1711 sfdb_freesound_mootcher.cc:69 processor_box.cc:2030 +#: processor_box.cc:2055 msgid "Cancel" msgstr "Anuluj" -#: editor.cc:4021 +#: editor.cc:4025 msgid "new playlists" msgstr "nowe listy odtwarzania" -#: editor.cc:4037 +#: editor.cc:4041 msgid "copy playlists" msgstr "skopiuj listy odtwarzania" -#: editor.cc:4052 +#: editor.cc:4056 msgid "clear playlists" msgstr "wyczyść listy odtwarzania" +#: editor.cc:4691 +msgid "Please wait while %1 loads visual data." +msgstr "" + +#: editor.cc:5496 editor_markers.cc:940 panner_ui.cc:392 processor_box.cc:2292 +msgid "Edit..." +msgstr "" + #: editor_actions.cc:88 msgid "Autoconnect" msgstr "Automatyczne łączenie" @@ -2045,6 +2971,10 @@ msgstr "Punkt edycji" msgid "Fade" msgstr "PrzejÅ›cia" +#: editor_actions.cc:96 +msgid "Latch" +msgstr "" + #: editor_actions.cc:97 editor_regions.cc:111 region_editor.cc:46 msgid "Region" msgstr "Obszar" @@ -2058,8 +2988,8 @@ msgstr "Warstwy" msgid "Position" msgstr "Pozycja" -#: editor_actions.cc:101 gain_meter.cc:121 gain_meter.cc:791 panner_ui.cc:177 -#: panner_ui.cc:586 +#: editor_actions.cc:101 gain_meter.cc:120 gain_meter.cc:794 panner_ui.cc:176 +#: panner_ui.cc:585 msgid "Trim" msgstr "Przytnij" @@ -2071,6 +3001,12 @@ msgstr "Wzmocnienie" msgid "Ranges" msgstr "Zakresy" +#: editor_actions.cc:104 editor_actions.cc:1790 session_option_editor.cc:145 +#: session_option_editor.cc:147 session_option_editor.cc:156 +#: session_option_editor.cc:163 +msgid "Fades" +msgstr "" + #: editor_actions.cc:107 msgid "Link" msgstr "ÅÄ…cze" @@ -2079,6 +3015,10 @@ msgstr "ÅÄ…cze" msgid "Zoom Focus" msgstr "PowiÄ™kszanie do" +#: editor_actions.cc:109 +msgid "Locate to Markers" +msgstr "" + #: editor_actions.cc:110 editor_actions.cc:539 msgid "Markers" msgstr "Znaczniki" @@ -2091,11 +3031,15 @@ msgstr "Zmniejszanie metrum" msgid "Meter hold" msgstr "Przytrzymanie metrum" +#: editor_actions.cc:113 session_option_editor.cc:234 +msgid "MIDI Options" +msgstr "" + #: editor_actions.cc:114 msgid "Misc Options" msgstr "Różne" -#: editor_actions.cc:115 rc_option_editor.cc:1460 route_group_dialog.cc:48 +#: editor_actions.cc:115 rc_option_editor.cc:1450 route_group_dialog.cc:48 #: session_option_editor.cc:218 session_option_editor.cc:225 msgid "Monitoring" msgstr "Monitorowanie" @@ -2120,6 +3064,10 @@ msgstr "Operacje na obszarach" msgid "Rulers" msgstr "Linijki" +#: editor_actions.cc:124 +msgid "Views" +msgstr "" + #: editor_actions.cc:125 msgid "Scroll" msgstr "Przewijanie" @@ -2169,14 +3117,26 @@ msgstr "" msgid "Show Editor Mixer" msgstr "Mikser obok edytora" +#: editor_actions.cc:151 +msgid "Show Editor List" +msgstr "" + #: editor_actions.cc:153 msgid "Playhead to Next Region Boundary" msgstr "Do granicy nastÄ™pnego obszaru" +#: editor_actions.cc:154 +msgid "Playhead to Next Region Boundary (No Track Selection)" +msgstr "" + #: editor_actions.cc:155 msgid "Playhead to Previous Region Boundary" msgstr "Do granicy poprzedniego obszaru" +#: editor_actions.cc:156 +msgid "Playhead to Previous Region Boundary (No Track Selection)" +msgstr "" + #: editor_actions.cc:158 msgid "Playhead to Next Region Start" msgstr "Do poczÄ…tku nastÄ™pnego obszaru" @@ -2201,6 +3161,54 @@ msgstr "Do koÅ„ca poprzedniego obszaru" msgid "Playhead to Previous Region Sync" msgstr "Do poprzedniej synchronizacji obszaru" +#: editor_actions.cc:166 +msgid "To Next Region Boundary" +msgstr "" + +#: editor_actions.cc:167 +msgid "To Next Region Boundary (No Track Selection)" +msgstr "" + +#: editor_actions.cc:168 +msgid "To Previous Region Boundary" +msgstr "" + +#: editor_actions.cc:169 +msgid "To Previous Region Boundary (No Track Selection)" +msgstr "" + +#: editor_actions.cc:171 +msgid "To Next Region Start" +msgstr "" + +#: editor_actions.cc:172 +msgid "To Next Region End" +msgstr "" + +#: editor_actions.cc:173 +msgid "To Next Region Sync" +msgstr "" + +#: editor_actions.cc:175 +msgid "To Previous Region Start" +msgstr "" + +#: editor_actions.cc:176 +msgid "To Previous Region End" +msgstr "" + +#: editor_actions.cc:177 +msgid "To Previous Region Sync" +msgstr "" + +#: editor_actions.cc:179 +msgid "To Range Start" +msgstr "" + +#: editor_actions.cc:180 +msgid "To Range End" +msgstr "" + #: editor_actions.cc:182 msgid "Playhead to Range Start" msgstr "GÅ‚owica do poczÄ…tku zakresu" @@ -2209,10 +3217,22 @@ msgstr "GÅ‚owica do poczÄ…tku zakresu" msgid "Playhead to Range End" msgstr "GÅ‚owica do koÅ„ca zakresu" -#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2239 +#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2278 msgid "Deselect All" msgstr "Nic" +#: editor_actions.cc:191 +msgid "Select All Overlapping Edit Range" +msgstr "" + +#: editor_actions.cc:192 +msgid "Select All Inside Edit Range" +msgstr "" + +#: editor_actions.cc:194 +msgid "Select Edit Range" +msgstr "" + #: editor_actions.cc:196 msgid "Select All in Punch Range" msgstr "Wszystko w zakresie przełącznika" @@ -2221,14 +3241,62 @@ msgstr "Wszystko w zakresie przełącznika" msgid "Select All in Loop Range" msgstr "Wszystko w zakresie pÄ™tli" +#: editor_actions.cc:199 +msgid "Select Next Track or Bus" +msgstr "" + +#: editor_actions.cc:200 +msgid "Select Previous Track or Bus" +msgstr "" + +#: editor_actions.cc:202 +msgid "Toggle Record Enable" +msgstr "" + +#: editor_actions.cc:204 +msgid "Toggle Solo" +msgstr "" + +#: editor_actions.cc:206 +msgid "Toggle Mute" +msgstr "" + +#: editor_actions.cc:208 +msgid "Toggle Solo Isolate" +msgstr "" + +#: editor_actions.cc:213 +msgid "Save View %1" +msgstr "" + #: editor_actions.cc:219 msgid "Goto View %1" msgstr "" +#: editor_actions.cc:225 +msgid "Locate to Mark %1" +msgstr "" + +#: editor_actions.cc:229 +msgid "Jump to Next Mark" +msgstr "" + +#: editor_actions.cc:230 +msgid "Jump to Previous Mark" +msgstr "" + #: editor_actions.cc:231 msgid "Add Mark from Playhead" msgstr "Dodaj znacznik w poÅ‚ożeniu gÅ‚owicy" +#: editor_actions.cc:233 +msgid "Nudge Next Later" +msgstr "" + +#: editor_actions.cc:234 +msgid "Nudge Next Earlier" +msgstr "" + #: editor_actions.cc:236 msgid "Nudge Playhead Forward" msgstr "Do przodu" @@ -2237,6 +3305,14 @@ msgstr "Do przodu" msgid "Nudge Playhead Backward" msgstr "Do tyÅ‚u" +#: editor_actions.cc:238 +msgid "Playhead To Next Grid" +msgstr "" + +#: editor_actions.cc:239 +msgid "Playhead To Previous Grid" +msgstr "" + #: editor_actions.cc:244 msgid "Zoom to Region" msgstr "PowiÄ™kszanie do obszaru" @@ -2249,6 +3325,22 @@ msgstr "" msgid "Toggle Zoom State" msgstr "" +#: editor_actions.cc:248 +msgid "Expand Track Height" +msgstr "" + +#: editor_actions.cc:249 +msgid "Shrink Track Height" +msgstr "" + +#: editor_actions.cc:251 +msgid "Move Selected Tracks Up" +msgstr "" + +#: editor_actions.cc:253 +msgid "Move Selected Tracks Down" +msgstr "" + #: editor_actions.cc:256 msgid "Scroll Tracks Up" msgstr "PrzewiÅ„ Å›cieżki do góry" @@ -2277,6 +3369,10 @@ msgstr "PrzewiÅ„ do przodu" msgid "Center Playhead" msgstr "WyÅ›rodkuj" +#: editor_actions.cc:268 +msgid "Center Edit Point" +msgstr "" + #: editor_actions.cc:270 msgid "Playhead Forward" msgstr "GÅ‚owica do przodu" @@ -2285,6 +3381,30 @@ msgstr "GÅ‚owica do przodu" msgid "Playhead Backward" msgstr "GÅ‚owica do tyÅ‚u" +#: editor_actions.cc:273 +msgid "Playhead to Active Mark" +msgstr "" + +#: editor_actions.cc:274 +msgid "Active Mark to Playhead" +msgstr "" + +#: editor_actions.cc:276 +msgid "Set Loop from Edit Range" +msgstr "" + +#: editor_actions.cc:277 +msgid "Set Punch from Edit Range" +msgstr "" + +#: editor_actions.cc:280 +msgid "Play Selected Regions" +msgstr "" + +#: editor_actions.cc:282 +msgid "Play from Edit Point and Return" +msgstr "" + #: editor_actions.cc:284 msgid "Play Edit Range" msgstr "Zaznaczenie" @@ -2297,14 +3417,42 @@ msgstr "Do kursora myszy" msgid "Active Marker to Mouse" msgstr "Do kursora myszy" +#: editor_actions.cc:294 +msgid "Export Audio" +msgstr "" + #: editor_actions.cc:295 export_dialog.cc:406 msgid "Export Range" msgstr "Eksport zakresu" +#: editor_actions.cc:300 +msgid "Separate Using Punch Range" +msgstr "" + +#: editor_actions.cc:303 +msgid "Separate Using Loop Range" +msgstr "" + #: editor_actions.cc:306 editor_actions.cc:323 msgid "Crop" msgstr "Przytnij" +#: editor_actions.cc:315 +msgid "Set Tempo from Edit Range = Bar" +msgstr "" + +#: editor_actions.cc:317 +msgid "Log" +msgstr "" + +#: editor_actions.cc:320 +msgid "Move Later to Transient" +msgstr "" + +#: editor_actions.cc:321 +msgid "Move Earlier to Transient" +msgstr "" + #: editor_actions.cc:325 msgid "Start Range" msgstr "Rozpocznij zakres" @@ -2313,6 +3461,10 @@ msgstr "Rozpocznij zakres" msgid "Finish Range" msgstr "ZakoÅ„cz zakres" +#: editor_actions.cc:327 +msgid "Finish Add Range" +msgstr "" + #: editor_actions.cc:357 msgid "Follow Playhead" msgstr "Podążanie za gÅ‚owicÄ…" @@ -2321,6 +3473,10 @@ msgstr "Podążanie za gÅ‚owicÄ…" msgid "Remove Last Capture" msgstr "UsuÅ„ ostatnie nagranie" +#: editor_actions.cc:360 +msgid "Stationary Playhead" +msgstr "" + #: editor_actions.cc:362 insert_time_dialog.cc:32 msgid "Insert Time" msgstr "Czas wstawienia" @@ -2335,6 +3491,10 @@ msgstr "Przełącz aktywność" msgid "Remove" msgstr "UsuÅ„" +#: editor_actions.cc:374 +msgid "Fit Selected Tracks" +msgstr "" + #: editor_actions.cc:376 time_axis_view.cc:1302 msgid "Largest" msgstr "NajwiÄ™kszy" @@ -2375,6 +3535,14 @@ msgstr "Do gÅ‚owicy" msgid "Zoom Focus Mouse" msgstr "Do kursora myszy" +#: editor_actions.cc:402 +msgid "Zoom Focus Edit Point" +msgstr "" + +#: editor_actions.cc:404 +msgid "Next Zoom Focus" +msgstr "" + #: editor_actions.cc:410 msgid "Smart Object Mode" msgstr "" @@ -2391,6 +3559,10 @@ msgstr "NarzÄ™dzie obiektów" msgid "Range Tool" msgstr "NarzÄ™dzie zakresów" +#: editor_actions.cc:429 +msgid "Note Drawing Tool" +msgstr "" + #: editor_actions.cc:435 msgid "Gain Tool" msgstr "NarzÄ™dzie wzmocnienia" @@ -2399,10 +3571,30 @@ msgstr "NarzÄ™dzie wzmocnienia" msgid "Zoom Tool" msgstr "NarzÄ™dzie powiÄ™kszenia" +#: editor_actions.cc:447 +msgid "Audition Tool" +msgstr "" + +#: editor_actions.cc:453 +msgid "Time FX Tool" +msgstr "" + #: editor_actions.cc:459 msgid "Step Mouse Mode" msgstr "" +#: editor_actions.cc:461 +msgid "Edit MIDI" +msgstr "" + +#: editor_actions.cc:472 +msgid "Change Edit Point" +msgstr "" + +#: editor_actions.cc:473 +msgid "Change Edit Point Including Marker" +msgstr "" + #: editor_actions.cc:475 msgid "Splice" msgstr "Klocek" @@ -2420,14 +3612,26 @@ msgstr "Zablokuj" msgid "Toggle Edit Mode" msgstr "Przełącz tryb edycji" +#: editor_actions.cc:481 +msgid "Snap to" +msgstr "" + #: editor_actions.cc:482 msgid "Snap Mode" msgstr "Tryb przyciÄ…gania" +#: editor_actions.cc:489 +msgid "Next Snap Mode" +msgstr "" + #: editor_actions.cc:490 msgid "Next Snap Choice" msgstr "" +#: editor_actions.cc:491 +msgid "Next Musical Snap Choice" +msgstr "" + #: editor_actions.cc:492 msgid "Previous Snap Choice" msgstr "" @@ -2436,6 +3640,130 @@ msgstr "" msgid "Previous Musical Snap Choice" msgstr "" +#: editor_actions.cc:498 +msgid "Snap to CD Frame" +msgstr "" + +#: editor_actions.cc:499 +msgid "Snap to Timecode Frame" +msgstr "" + +#: editor_actions.cc:500 +msgid "Snap to Timecode Seconds" +msgstr "" + +#: editor_actions.cc:501 +msgid "Snap to Timecode Minutes" +msgstr "" + +#: editor_actions.cc:502 +msgid "Snap to Seconds" +msgstr "" + +#: editor_actions.cc:503 +msgid "Snap to Minutes" +msgstr "" + +#: editor_actions.cc:505 +msgid "Snap to One Twenty Eighths" +msgstr "" + +#: editor_actions.cc:506 +msgid "Snap to Sixty Fourths" +msgstr "" + +#: editor_actions.cc:507 +msgid "Snap to Thirty Seconds" +msgstr "" + +#: editor_actions.cc:508 +msgid "Snap to Twenty Eighths" +msgstr "" + +#: editor_actions.cc:509 +msgid "Snap to Twenty Fourths" +msgstr "" + +#: editor_actions.cc:510 +msgid "Snap to Twentieths" +msgstr "" + +#: editor_actions.cc:511 +msgid "Snap to Sixteenths" +msgstr "" + +#: editor_actions.cc:512 +msgid "Snap to Fourteenths" +msgstr "" + +#: editor_actions.cc:513 +msgid "Snap to Twelfths" +msgstr "" + +#: editor_actions.cc:514 +msgid "Snap to Tenths" +msgstr "" + +#: editor_actions.cc:515 +msgid "Snap to Eighths" +msgstr "" + +#: editor_actions.cc:516 +msgid "Snap to Sevenths" +msgstr "" + +#: editor_actions.cc:517 +msgid "Snap to Sixths" +msgstr "" + +#: editor_actions.cc:518 +msgid "Snap to Fifths" +msgstr "" + +#: editor_actions.cc:519 +msgid "Snap to Quarters" +msgstr "" + +#: editor_actions.cc:520 +msgid "Snap to Thirds" +msgstr "" + +#: editor_actions.cc:521 +msgid "Snap to Halves" +msgstr "" + +#: editor_actions.cc:523 +msgid "Snap to Beat" +msgstr "" + +#: editor_actions.cc:524 +msgid "Snap to Bar" +msgstr "" + +#: editor_actions.cc:525 +msgid "Snap to Mark" +msgstr "" + +#: editor_actions.cc:526 +msgid "Snap to Region Start" +msgstr "" + +#: editor_actions.cc:527 +msgid "Snap to Region End" +msgstr "" + +#: editor_actions.cc:528 +msgid "Snap to Region Sync" +msgstr "" + +#: editor_actions.cc:529 +msgid "Snap to Region Boundary" +msgstr "" + +#: editor_actions.cc:531 +msgid "Show Marker Lines" +msgstr "" + #: editor_actions.cc:541 msgid "Loop/Punch" msgstr "PÄ™tla/przełącznik" @@ -2444,14 +3772,38 @@ msgstr "PÄ™tla/przełącznik" msgid "Min:Sec" msgstr "Minuty i sekundy" -#: editor_actions.cc:549 rc_option_editor.cc:1842 +#: editor_actions.cc:547 editor_actions.cc:550 +msgid "Video Monitor" +msgstr "" + +#: editor_actions.cc:549 rc_option_editor.cc:1829 msgid "Video" msgstr "" +#: editor_actions.cc:552 +msgid "Always on Top" +msgstr "" + +#: editor_actions.cc:554 +msgid "Frame number" +msgstr "" + +#: editor_actions.cc:555 +msgid "Timecode Background" +msgstr "" + #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" +#: editor_actions.cc:557 +msgid "Letterbox" +msgstr "" + +#: editor_actions.cc:558 +msgid "Original Size" +msgstr "" + #: editor_actions.cc:608 msgid "Sort" msgstr "Sortuj" @@ -2464,6 +3816,10 @@ msgstr "OdsÅ‚uch" msgid "Show All" msgstr "WyÅ›wietl wszystko" +#: editor_actions.cc:620 +msgid "Show Automatic Regions" +msgstr "" + #: editor_actions.cc:622 msgid "Ascending" msgstr "RosnÄ…co" @@ -2512,12 +3868,28 @@ msgstr "WedÅ‚ug daty utworzenia pliku źródÅ‚owego" msgid "By Source Filesystem" msgstr "WedÅ‚ug systemu plików źródÅ‚a" +#: editor_actions.cc:648 +msgid "Remove Unused" +msgstr "" + #: editor_actions.cc:652 editor_audio_import.cc:279 #: session_import_dialog.cc:74 session_import_dialog.cc:94 #: session_metadata_dialog.cc:297 editor_videotimeline.cc:108 msgid "Import" msgstr "Importuj" +#: editor_actions.cc:655 +msgid "Import to Region List..." +msgstr "" + +#: editor_actions.cc:658 session_import_dialog.cc:43 +msgid "Import From Session" +msgstr "" + +#: editor_actions.cc:661 +msgid "Show Summary" +msgstr "" + #: editor_actions.cc:663 msgid "Show Group Tabs" msgstr "" @@ -2552,26 +3924,66 @@ msgstr "błąd programowania: %1: %2" msgid "Raise" msgstr "" +#: editor_actions.cc:1725 +msgid "Raise to Top" +msgstr "" + #: editor_actions.cc:1728 gtk-custom-ruler.c:132 msgid "Lower" msgstr "" +#: editor_actions.cc:1731 +msgid "Lower to Bottom" +msgstr "" + +#: editor_actions.cc:1734 +msgid "Move to Original Position" +msgstr "" + #: editor_actions.cc:1739 msgid "Lock to Video" msgstr "" +#: editor_actions.cc:1744 editor_markers.cc:867 +msgid "Glue to Bars and Beats" +msgstr "" + +#: editor_actions.cc:1749 +msgid "Remove Sync" +msgstr "" + #: editor_actions.cc:1752 mixer_strip.cc:1904 route_time_axis.cc:209 msgid "Mute" msgstr "Wyciszenie" +#: editor_actions.cc:1755 +msgid "Normalize..." +msgstr "" + #: editor_actions.cc:1758 msgid "Reverse" msgstr "Odwróć" +#: editor_actions.cc:1761 +msgid "Make Mono Regions" +msgstr "" + +#: editor_actions.cc:1764 +msgid "Boost Gain" +msgstr "" + +#: editor_actions.cc:1767 +msgid "Cut Gain" +msgstr "" + #: editor_actions.cc:1770 msgid "Pitch Shift..." msgstr "" +#: editor_actions.cc:1773 +msgid "Transpose..." +msgstr "" + #: editor_actions.cc:1776 msgid "Opaque" msgstr "MÄ™tna" @@ -2584,6 +3996,10 @@ msgstr "Stopniowe wzmocnienie" msgid "Fade Out" msgstr "Stopniowe wyciszenie" +#: editor_actions.cc:1800 +msgid "Multi-Duplicate..." +msgstr "" + #: editor_actions.cc:1805 msgid "Fill Track" msgstr "WypeÅ‚nij Å›cieżkÄ™" @@ -2592,10 +4008,38 @@ msgstr "WypeÅ‚nij Å›cieżkÄ™" msgid "Set Loop Range" msgstr "Ustaw zakres pÄ™tli" +#: editor_actions.cc:1816 +msgid "Set Punch" +msgstr "" + +#: editor_actions.cc:1820 +msgid "Add Single Range Marker" +msgstr "" + +#: editor_actions.cc:1825 +msgid "Add Range Marker Per Region" +msgstr "" + +#: editor_actions.cc:1829 +msgid "Snap Position To Grid" +msgstr "" + +#: editor_actions.cc:1832 +msgid "Close Gaps" +msgstr "" + #: editor_actions.cc:1835 msgid "Rhythm Ferret..." msgstr "" +#: editor_actions.cc:1838 +msgid "Export..." +msgstr "" + +#: editor_actions.cc:1844 +msgid "Separate Under" +msgstr "" + #: editor_actions.cc:1848 msgid "Set Fade In Length" msgstr "ZmieÅ„ dÅ‚ugość stopniowego wzmocnienia" @@ -2604,6 +4048,18 @@ msgstr "ZmieÅ„ dÅ‚ugość stopniowego wzmocnienia" msgid "Set Fade Out Length" msgstr "ZmieÅ„ dÅ‚ugość stopniowego wyciszenia" +#: editor_actions.cc:1850 +msgid "Set Tempo from Region = Bar" +msgstr "" + +#: editor_actions.cc:1855 +msgid "Split at Percussion Onsets" +msgstr "" + +#: editor_actions.cc:1860 +msgid "List Editor..." +msgstr "" + #: editor_actions.cc:1863 msgid "Properties..." msgstr "" @@ -2624,14 +4080,26 @@ msgstr "" msgid "Uncombine" msgstr "" +#: editor_actions.cc:1872 +msgid "Spectral Analysis..." +msgstr "" + #: editor_actions.cc:1874 msgid "Reset Envelope" msgstr "Resetuj obwiedniÄ™" +#: editor_actions.cc:1876 +msgid "Reset Gain" +msgstr "" + #: editor_actions.cc:1881 msgid "Envelope Active" msgstr "Włącz obwiedniÄ™" +#: editor_actions.cc:1885 +msgid "Quantize..." +msgstr "" + #: editor_actions.cc:1886 editor_actions.cc:1887 msgid "Insert Patch Change..." msgstr "" @@ -2648,6 +4116,46 @@ msgstr "" msgid "Set Range Selection" msgstr "Ustaw zakres zaznaczenia" +#: editor_actions.cc:1892 +msgid "Nudge Later" +msgstr "" + +#: editor_actions.cc:1893 +msgid "Nudge Earlier" +msgstr "" + +#: editor_actions.cc:1898 +msgid "Nudge Later by Capture Offset" +msgstr "" + +#: editor_actions.cc:1905 +msgid "Nudge Earlier by Capture Offset" +msgstr "" + +#: editor_actions.cc:1909 +msgid "Trim to Loop" +msgstr "" + +#: editor_actions.cc:1910 +msgid "Trim to Punch" +msgstr "" + +#: editor_actions.cc:1912 +msgid "Trim to Previous" +msgstr "" + +#: editor_actions.cc:1913 +msgid "Trim to Next" +msgstr "" + +#: editor_actions.cc:1920 +msgid "Insert Region From Region List" +msgstr "" + +#: editor_actions.cc:1926 +msgid "Set Sync Position" +msgstr "" + #: editor_actions.cc:1927 msgid "Place Transient" msgstr "" @@ -2656,6 +4164,38 @@ msgstr "" msgid "Split" msgstr "Podziel" +#: editor_actions.cc:1929 +msgid "Trim Start at Edit Point" +msgstr "" + +#: editor_actions.cc:1930 +msgid "Trim End at Edit Point" +msgstr "" + +#: editor_actions.cc:1935 +msgid "Align Start" +msgstr "" + +#: editor_actions.cc:1942 +msgid "Align Start Relative" +msgstr "" + +#: editor_actions.cc:1946 +msgid "Align End" +msgstr "" + +#: editor_actions.cc:1951 +msgid "Align End Relative" +msgstr "" + +#: editor_actions.cc:1958 +msgid "Align Sync" +msgstr "" + +#: editor_actions.cc:1965 +msgid "Align Sync Relative" +msgstr "" + #: editor_actions.cc:1969 editor_actions.cc:1972 msgid "Choose Top..." msgstr "" @@ -2666,6 +4206,10 @@ msgstr "" "Nie możesz importować lub osadzać pliku dźwiÄ™kowego dopóki nie wczytasz " "sesji." +#: editor_audio_import.cc:83 editor_audio_import.cc:127 +msgid "Add Existing Media" +msgstr "" + #: editor_audio_import.cc:177 msgid "" "The session already contains a source file named %1. Do you want to import " @@ -2698,6 +4242,11 @@ msgstr "Nie osadzaj tego" msgid "Embed all without questions" msgstr "Osadź wszystko bez zadawania pytaÅ„" +#: editor_audio_import.cc:556 editor_audio_import.cc:585 +#: export_format_dialog.cc:58 +msgid "Sample rate" +msgstr "" + #: editor_audio_import.cc:557 editor_audio_import.cc:586 msgid "" "%1\n" @@ -2715,6 +4264,10 @@ msgstr "Osadź mimo to" msgid "fixed time region drag" msgstr "" +#: editor_drag.cc:1700 +msgid "Video Start:" +msgstr "" + #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -2739,50 +4292,94 @@ msgstr "kopiuj znacznik tempa" msgid "move tempo mark" msgstr "przesuÅ„ znacznik tempa" -#: editor_drag.cc:2545 +#: editor_drag.cc:2550 msgid "change fade in length" msgstr "zmieÅ„ dÅ‚ugość stopniowego wzmocnienia" -#: editor_drag.cc:2663 +#: editor_drag.cc:2668 msgid "change fade out length" msgstr "" -#: editor_drag.cc:3018 +#: editor_drag.cc:3023 msgid "move marker" msgstr "przesuÅ„ znacznik" -#: editor_drag.cc:3581 +#: editor_drag.cc:3586 msgid "An error occurred while executing time stretch operation" msgstr "" -#: editor_drag.cc:4081 editor_markers.cc:680 +#: editor_drag.cc:4016 +msgid "programming_error: %1" +msgstr "" + +#: editor_drag.cc:4086 editor_markers.cc:680 msgid "new range marker" msgstr "nowy znacznik zakresu" -#: editor_drag.cc:4762 +#: editor_drag.cc:4767 msgid "rubberband selection" msgstr "" +#: editor_route_groups.cc:66 +msgid "No Selection = All Tracks?" +msgstr "" + +#: editor_route_groups.cc:95 +msgid "Col" +msgstr "" + +#: editor_route_groups.cc:95 +msgid "Group Tab Color" +msgstr "" + +#: editor_route_groups.cc:96 +msgid "Name of Group" +msgstr "" + #: editor_route_groups.cc:97 editor_routes.cc:203 msgid "V" msgstr "" +#: editor_route_groups.cc:97 +msgid "Group is visible?" +msgstr "" + +#: editor_route_groups.cc:98 +msgid "On" +msgstr "" + #: editor_route_groups.cc:98 msgid "Group is enabled?" msgstr "" +#: editor_route_groups.cc:99 +msgid "group|G" +msgstr "" + #: editor_route_groups.cc:99 msgid "Sharing Gain?" msgstr "" +#: editor_route_groups.cc:100 +msgid "relative|Rel" +msgstr "" + #: editor_route_groups.cc:100 msgid "Relative Gain Changes?" msgstr "" +#: editor_route_groups.cc:101 +msgid "mute|M" +msgstr "" + #: editor_route_groups.cc:101 msgid "Sharing Mute?" msgstr "" +#: editor_route_groups.cc:102 +msgid "solo|S" +msgstr "" + #: editor_route_groups.cc:102 msgid "Sharing Solo?" msgstr "" @@ -2796,6 +4393,26 @@ msgstr "Nagr" msgid "Sharing Record-enable Status?" msgstr "" +#: editor_route_groups.cc:104 +msgid "monitoring|Mon" +msgstr "" + +#: editor_route_groups.cc:104 +msgid "Sharing Monitoring Choice?" +msgstr "" + +#: editor_route_groups.cc:105 +msgid "selection|Sel" +msgstr "" + +#: editor_route_groups.cc:105 +msgid "Sharing Selected/Editing Status?" +msgstr "" + +#: editor_route_groups.cc:106 +msgid "active|A" +msgstr "" + #: editor_route_groups.cc:106 msgid "Sharing Active Status?" msgstr "" @@ -2813,32 +4430,88 @@ msgstr "bez nazwy" #: editor_markers.cc:1022 editor_markers.cc:1041 editor_markers.cc:1071 #: editor_markers.cc:1102 editor_markers.cc:1132 editor_markers.cc:1160 #: editor_markers.cc:1191 editor_markers.cc:1216 editor_markers.cc:1267 -#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1514 -#: editor_mouse.cc:2478 +#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1526 +#: editor_mouse.cc:2528 msgid "programming error: marker canvas item has no marker object pointer!" msgstr "" +#: editor_export_audio.cc:143 editor_export_audio.cc:148 +msgid "File Exists!" +msgstr "" + +#: editor_export_audio.cc:151 +msgid "Overwrite Existing File" +msgstr "" + +#: editor_group_tabs.cc:162 +msgid "Fit to Window" +msgstr "" + #: editor_markers.cc:129 msgid "start" msgstr "" +#: editor_markers.cc:130 +msgid "end" +msgstr "" + #: editor_markers.cc:646 editor_ops.cc:1744 editor_ops.cc:1764 #: editor_ops.cc:1788 editor_ops.cc:1815 location_ui.cc:1017 msgid "add marker" msgstr "dodaj znacznik" +#: editor_markers.cc:677 +msgid "range" +msgstr "" + #: editor_markers.cc:713 location_ui.cc:852 msgid "remove marker" msgstr "usuÅ„ znacznik" +#: editor_markers.cc:849 +msgid "Locate to Here" +msgstr "" + +#: editor_markers.cc:850 +msgid "Play from Here" +msgstr "" + #: editor_markers.cc:851 msgid "Move Mark to Playhead" msgstr "PrzesuÅ„ znacznik do gÅ‚owicy" +#: editor_markers.cc:855 +msgid "Create Range to Next Marker" +msgstr "" + +#: editor_markers.cc:896 +msgid "Locate to Marker" +msgstr "" + +#: editor_markers.cc:897 +msgid "Play from Marker" +msgstr "" + +#: editor_markers.cc:900 +msgid "Set Marker from Playhead" +msgstr "" + +#: editor_markers.cc:902 +msgid "Set Range from Selection" +msgstr "" + +#: editor_markers.cc:905 +msgid "Zoom to Range" +msgstr "" + #: editor_markers.cc:912 msgid "Hide Range" msgstr "Ukryj zakres" +#: editor_markers.cc:913 +msgid "Rename Range..." +msgstr "" + #: editor_markers.cc:917 msgid "Remove Range" msgstr "UsuÅ„ zakres" @@ -2855,32 +4528,32 @@ msgstr "Zaznacz zakres" msgid "Set Punch Range" msgstr "Ustaw zakres przełącznika" -#: editor_markers.cc:1351 editor_ops.cc:1699 +#: editor_markers.cc:1362 editor_ops.cc:1699 msgid "New Name:" msgstr "Nazwa:" -#: editor_markers.cc:1354 +#: editor_markers.cc:1365 msgid "Rename Mark" msgstr "ZmieÅ„ nazwÄ™ znacznika" -#: editor_markers.cc:1356 +#: editor_markers.cc:1367 msgid "Rename Range" msgstr "ZmieÅ„ nazwÄ™ zakresu" -#: editor_markers.cc:1363 editor_mouse.cc:2510 processor_box.cc:1781 -#: processor_box.cc:2235 route_time_axis.cc:982 route_ui.cc:1540 +#: editor_markers.cc:1374 editor_mouse.cc:2560 processor_box.cc:1808 +#: processor_box.cc:2274 route_time_axis.cc:982 route_ui.cc:1540 msgid "Rename" msgstr "ZmieÅ„ nazwÄ™" -#: editor_markers.cc:1376 +#: editor_markers.cc:1387 msgid "rename marker" msgstr "zmieÅ„ nazwÄ™ znacznika" -#: editor_markers.cc:1399 +#: editor_markers.cc:1411 msgid "set loop range" msgstr "ustaw zakres pÄ™tli" -#: editor_markers.cc:1405 +#: editor_markers.cc:1417 msgid "set punch range" msgstr "ustaw zakres przełącznika" @@ -2892,17 +4565,21 @@ msgstr "" msgid "Editor::event_frame() used on unhandled event type %1" msgstr "" -#: editor_mouse.cc:2235 editor_mouse.cc:2260 editor_mouse.cc:2273 +#: editor_mouse.cc:2285 editor_mouse.cc:2310 editor_mouse.cc:2323 msgid "" "programming error: control point canvas item has no control point object " "pointer!" msgstr "" -#: editor_mouse.cc:2441 +#: editor_mouse.cc:2466 +msgid "start point trim" +msgstr "" + +#: editor_mouse.cc:2491 msgid "End point trim" msgstr "Punkt koÅ„cowy przyciÄ™cia" -#: editor_mouse.cc:2508 +#: editor_mouse.cc:2558 msgid "Name for region:" msgstr "Nazwa obszaru:" @@ -2910,6 +4587,10 @@ msgstr "Nazwa obszaru:" msgid "split" msgstr "podziel" +#: editor_ops.cc:256 +msgid "alter selection" +msgstr "" + #: editor_ops.cc:298 msgid "nudge regions forward" msgstr "pchnij obszary do przodu" @@ -2926,10 +4607,22 @@ msgstr "pchnij obszar do tyÅ‚u" msgid "nudge forward" msgstr "pchnij do przodu" +#: editor_ops.cc:492 +msgid "nudge backward" +msgstr "" + #: editor_ops.cc:557 msgid "build_region_boundary_cache called with snap_type = %1" msgstr "" +#: editor_ops.cc:1701 +msgid "New Location Marker" +msgstr "" + +#: editor_ops.cc:1788 +msgid "add markers" +msgstr "" + #: editor_ops.cc:1894 msgid "clear markers" msgstr "wyczyść znaczniki" @@ -2950,11 +4643,39 @@ msgstr "wstaw przeciÄ…gniÄ™ty obszar" msgid "insert region" msgstr "wstaw obszar" +#: editor_ops.cc:2261 +msgid "raise regions" +msgstr "" + +#: editor_ops.cc:2263 +msgid "raise region" +msgstr "" + +#: editor_ops.cc:2269 +msgid "raise regions to top" +msgstr "" + +#: editor_ops.cc:2271 +msgid "raise region to top" +msgstr "" + +#: editor_ops.cc:2277 +msgid "lower regions" +msgstr "" + +#: editor_ops.cc:2279 editor_ops.cc:2287 +msgid "lower region" +msgstr "" + +#: editor_ops.cc:2285 +msgid "lower regions to bottom" +msgstr "" + #: editor_ops.cc:2370 msgid "Rename Region" msgstr "ZmieÅ„ nazwÄ™ obszaru" -#: editor_ops.cc:2372 processor_box.cc:1779 route_ui.cc:1538 +#: editor_ops.cc:2372 processor_box.cc:1806 route_ui.cc:1538 msgid "New name:" msgstr "Nazwa:" @@ -2962,6 +4683,10 @@ msgstr "Nazwa:" msgid "separate" msgstr "oddziel" +#: editor_ops.cc:2795 +msgid "separate region under" +msgstr "" + #: editor_ops.cc:2916 msgid "trim to selection" msgstr "przytnij do zaznaczenia" @@ -2970,6 +4695,18 @@ msgstr "przytnij do zaznaczenia" msgid "set sync point" msgstr "ustaw punkt synchronizacji" +#: editor_ops.cc:3076 +msgid "remove region sync" +msgstr "" + +#: editor_ops.cc:3098 +msgid "move regions to original position" +msgstr "" + +#: editor_ops.cc:3100 +msgid "move region to original position" +msgstr "" + #: editor_ops.cc:3121 msgid "align selection" msgstr "" @@ -2998,6 +4735,10 @@ msgstr "przytnij do pÄ™tli" msgid "trim to punch" msgstr "przytnij do przełącznika" +#: editor_ops.cc:3382 +msgid "trim to region" +msgstr "" + #: editor_ops.cc:3492 msgid "" "This track/bus cannot be frozen because the signal adds or loses channels " @@ -3006,6 +4747,10 @@ msgid "" "input or vice versa." msgstr "" +#: editor_ops.cc:3495 +msgid "Cannot freeze" +msgstr "" + #: editor_ops.cc:3501 msgid "" "%1\n" @@ -3015,6 +4760,18 @@ msgid "" "Freezing will only process the signal as far as the first send/insert/return." msgstr "" +#: editor_ops.cc:3505 +msgid "Freeze anyway" +msgstr "" + +#: editor_ops.cc:3506 +msgid "Don't freeze" +msgstr "" + +#: editor_ops.cc:3507 +msgid "Freeze Limits" +msgstr "" + #: editor_ops.cc:3522 msgid "Cancel Freeze" msgstr "Anuluj zamrożenie" @@ -3036,6 +4793,10 @@ msgstr "" msgid "bounce range" msgstr "zgraj zakres" +#: editor_ops.cc:3678 +msgid "delete" +msgstr "" + #: editor_ops.cc:3681 msgid "cut" msgstr "wytnij" @@ -3085,6 +4846,10 @@ msgstr "Nie usuwaj niczego" msgid "Yes, destroy it." msgstr "Tak, usuÅ„ go." +#: editor_ops.cc:4512 +msgid "Destroy last capture" +msgstr "" + #: editor_ops.cc:4573 msgid "normalize" msgstr "normalizuj" @@ -3097,10 +4862,34 @@ msgstr "odwróć obszary" msgid "strip silence" msgstr "" +#: editor_ops.cc:4763 +msgid "Fork Region(s)" +msgstr "" + #: editor_ops.cc:4963 msgid "reset region gain" msgstr "zresetuj wzmocnienie obszaru" +#: editor_ops.cc:5016 +msgid "region gain envelope active" +msgstr "" + +#: editor_ops.cc:5043 +msgid "toggle region lock" +msgstr "" + +#: editor_ops.cc:5067 +msgid "Toggle Video Lock" +msgstr "" + +#: editor_ops.cc:5091 +msgid "region lock style" +msgstr "" + +#: editor_ops.cc:5116 +msgid "change region opacity" +msgstr "" + #: editor_ops.cc:5231 msgid "set fade in length" msgstr "zmieÅ„ dÅ‚ugość stopniowego wzmocnienia" @@ -3203,6 +4992,23 @@ msgstr "" msgid "place transient" msgstr "" +#: editor_ops.cc:6160 +msgid "snap regions to grid" +msgstr "" + +#: editor_ops.cc:6199 +msgid "Close Region Gaps" +msgstr "" + +#: editor_ops.cc:6204 +msgid "Crossfade length" +msgstr "" + +#: editor_ops.cc:6213 editor_ops.cc:6224 rhythm_ferret.cc:120 +#: session_option_editor.cc:153 +msgid "ms" +msgstr "" + #: editor_ops.cc:6215 msgid "Pull-back length" msgstr "" @@ -3211,6 +5017,10 @@ msgstr "" msgid "Ok" msgstr "" +#: editor_ops.cc:6243 +msgid "close region gaps" +msgstr "" + #: editor_ops.cc:6461 route_ui.cc:1456 msgid "That would be bad news ...." msgstr "" @@ -3229,7 +5039,7 @@ msgstr "" msgid "tracks" msgstr "Å›cieżki" -#: editor_ops.cc:6485 route_ui.cc:1822 +#: editor_ops.cc:6485 route_ui.cc:1821 msgid "track" msgstr "Å›cieżka" @@ -3237,10 +5047,26 @@ msgstr "Å›cieżka" msgid "busses" msgstr "szyny" -#: editor_ops.cc:6491 route_ui.cc:1822 +#: editor_ops.cc:6491 route_ui.cc:1821 msgid "bus" msgstr "szyna" +#: editor_ops.cc:6496 +msgid "" +"Do you really want to remove %1 %2 and %3 %4?\n" +"(You may also lose the playlists associated with the %2)\n" +"\n" +"This action cannot be undone, and the session file will be overwritten!" +msgstr "" + +#: editor_ops.cc:6501 +msgid "" +"Do you really want to remove %1 %2?\n" +"(You may also lose the playlists associated with the %2)\n" +"\n" +"This action cannot be undone, and the session file will be overwritten!" +msgstr "" + #: editor_ops.cc:6507 msgid "" "Do you really want to remove %1 %2?\n" @@ -3256,6 +5082,10 @@ msgstr "Tak, usuÅ„ je." msgid "Yes, remove it." msgstr "Tak, usuÅ„." +#: editor_ops.cc:6521 editor_ops.cc:6523 +msgid "Remove %1" +msgstr "" + #: editor_ops.cc:6582 msgid "insert time" msgstr "wstaw czas" @@ -3269,18 +5099,42 @@ msgstr "" msgid "Saved view %u" msgstr "" +#: editor_ops.cc:6864 +msgid "mute regions" +msgstr "" + #: editor_ops.cc:6866 msgid "mute region" msgstr "wycisz obszar" +#: editor_ops.cc:6903 +msgid "combine regions" +msgstr "" + +#: editor_ops.cc:6941 +msgid "uncombine regions" +msgstr "" + #: editor_regions.cc:111 msgid "Region name, with number of channels in []'s" msgstr "" +#: editor_regions.cc:112 +msgid "Position of start of region" +msgstr "" + #: editor_regions.cc:113 editor_regions.cc:849 time_info_box.cc:98 msgid "End" msgstr "" +#: editor_regions.cc:113 +msgid "Position of end of region" +msgstr "" + +#: editor_regions.cc:114 +msgid "Length of the region" +msgstr "" + #: editor_regions.cc:115 msgid "Position of region sync point, relative to start of the region" msgstr "" @@ -3298,16 +5152,28 @@ msgstr "" msgid "L" msgstr "" +#: editor_regions.cc:118 +msgid "Region position locked?" +msgstr "" + +#: editor_regions.cc:119 +msgid "G" +msgstr "" + #: editor_regions.cc:119 msgid "Region position glued to Bars|Beats time?" msgstr "" -#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:759 -#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:554 +#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:762 +#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:553 #: stereo_panner.cc:237 msgid "M" msgstr "" +#: editor_regions.cc:120 +msgid "Region muted?" +msgstr "" + #: editor_regions.cc:121 msgid "O" msgstr "" @@ -3320,29 +5186,102 @@ msgstr "" msgid "Hidden" msgstr "Ukryte" +#: editor_regions.cc:389 +msgid "(MISSING) " +msgstr "" + +#: editor_regions.cc:457 +msgid "" +"Do you really want to remove unused regions?\n" +"(This is destructive and cannot be undone)" +msgstr "" + +#: editor_regions.cc:461 +msgid "Yes, remove." +msgstr "" + +#: editor_regions.cc:463 +msgid "Remove unused regions" +msgstr "" + #: editor_regions.cc:816 editor_regions.cc:830 editor_regions.cc:844 msgid "Mult." msgstr "" -#: editor_regions.cc:847 engine_dialog.cc:84 midi_list_editor.cc:103 -#: time_info_box.cc:91 +#: editor_regions.cc:847 midi_list_editor.cc:103 time_info_box.cc:91 msgid "Start" msgstr "" +#: editor_regions.cc:865 editor_regions.cc:881 +msgid "Multiple" +msgstr "" + +#: editor_regions.cc:950 +msgid "MISSING " +msgstr "" + +#: editor_routes.cc:178 editor_routes.cc:210 +msgid "SS" +msgstr "" + +#: editor_routes.cc:202 +msgid "Track/Bus Name" +msgstr "" + +#: editor_routes.cc:203 +msgid "Track/Bus visible ?" +msgstr "" + #: editor_routes.cc:204 mixer_strip.cc:1945 meter_strip.cc:334 #: route_time_axis.cc:2407 msgid "A" msgstr "" +#: editor_routes.cc:204 +msgid "Track/Bus active ?" +msgstr "" + +#: editor_routes.cc:205 mixer_strip.cc:1932 +msgid "I" +msgstr "" + +#: editor_routes.cc:205 +msgid "MIDI input enabled" +msgstr "" + #: editor_routes.cc:206 mixer_strip.cc:1930 mono_panner.cc:198 #: stereo_panner.cc:215 stereo_panner.cc:242 msgid "R" msgstr "" +#: editor_routes.cc:206 +msgid "Record enabled" +msgstr "" + +#: editor_routes.cc:207 +msgid "Muted" +msgstr "" + #: editor_routes.cc:208 mixer_strip.cc:1941 meter_strip.cc:330 msgid "S" msgstr "" +#: editor_routes.cc:208 +msgid "Soloed" +msgstr "" + +#: editor_routes.cc:209 +msgid "SI" +msgstr "" + +#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1867 +msgid "Solo Isolated" +msgstr "" + +#: editor_routes.cc:210 +msgid "Solo Safe (Locked)" +msgstr "" + #: editor_routes.cc:471 mixer_ui.cc:1162 msgid "Hide All" msgstr "Ukryj wszystko" @@ -3363,6 +5302,14 @@ msgstr "WyÅ›wietl wszystkie szyny audio" msgid "Hide All Audio Busses" msgstr "Ukryj wszystkie szyny audio" +#: editor_routes.cc:476 +msgid "Show All Midi Tracks" +msgstr "" + +#: editor_routes.cc:477 +msgid "Hide All Midi Tracks" +msgstr "" + #: editor_routes.cc:478 msgid "Show Tracks With Regions Under Playhead" msgstr "" @@ -3379,6 +5326,10 @@ msgstr "Wyczyść wszystkie poÅ‚ożenia" msgid "Unhide locations" msgstr "WyÅ›wietl poÅ‚ożenia" +#: editor_rulers.cc:346 +msgid "New range" +msgstr "" + #: editor_rulers.cc:347 msgid "Clear all ranges" msgstr "Wyczyść wszystkie zakresy" @@ -3399,6 +5350,14 @@ msgstr "Nowe tempo" msgid "New Meter" msgstr "Nowe metrum" +#: editor_rulers.cc:373 +msgid "Timeline height" +msgstr "" + +#: editor_rulers.cc:383 +msgid "Align Video Track" +msgstr "" + #: editor_selection.cc:889 editor_selection.cc:932 msgid "set selected regions" msgstr "ustaw zaznaczone obszary" @@ -3453,10 +5412,24 @@ msgid "" "but there is no selected marker." msgstr "" +#: editor_snapshots.cc:136 +msgid "Rename Snapshot" +msgstr "" + #: editor_snapshots.cc:138 msgid "New name of snapshot" msgstr "Nazwa zrzutu" +#: editor_snapshots.cc:156 +msgid "" +"Do you really want to remove snapshot \"%1\" ?\n" +"(which cannot be undone)" +msgstr "" + +#: editor_snapshots.cc:161 +msgid "Remove snapshot" +msgstr "" + #: editor_tempodisplay.cc:208 editor_tempodisplay.cc:250 msgid "add" msgstr "dodaj" @@ -3500,6 +5473,10 @@ msgid "" "programming error: meter marker canvas item has no marker object pointer!" msgstr "" +#: editor_timefx.cc:68 +msgid "stretch/shrink" +msgstr "" + #: editor_timefx.cc:129 msgid "pitch shift" msgstr "" @@ -3508,181 +5485,218 @@ msgstr "" msgid "timefx cannot be started - thread creation error" msgstr "" -#: engine_dialog.cc:75 -msgid "Realtime" -msgstr "Tryb czasu rzeczywistego" - -#: engine_dialog.cc:76 -msgid "Do not lock memory" -msgstr "Bez blokowania pamiÄ™ci" - -#: engine_dialog.cc:77 -msgid "Unlock memory" -msgstr "Odblokowanie pamiÄ™ci" - -#: engine_dialog.cc:78 -msgid "No zombies" -msgstr "Brak zombi" - #: engine_dialog.cc:79 -msgid "Provide monitor ports" -msgstr "Monitorowanie portów" +msgid "Device Control Panel" +msgstr "" -#: engine_dialog.cc:80 -msgid "Force 16 bit" -msgstr "Wymuszanie 16 bitów" +#: engine_dialog.cc:80 engine_dialog.cc:1725 +msgid "Measure" +msgstr "" #: engine_dialog.cc:81 -msgid "H/W monitoring" -msgstr "Monitorowanie H/W" +msgid "Use results" +msgstr "" #: engine_dialog.cc:82 -msgid "H/W metering" -msgstr "Odmierzanie H/W" +msgid "Back to settings ... (ignore results)" +msgstr "" #: engine_dialog.cc:83 -msgid "Verbose output" -msgstr "ZÅ‚ożone wyjÅ›cie" +msgid "Calibrate..." +msgstr "" -#: engine_dialog.cc:103 -msgid "8000Hz" -msgstr "8000Hz" - -#: engine_dialog.cc:104 -msgid "22050Hz" -msgstr "22050Hz" - -#: engine_dialog.cc:105 -msgid "44100Hz" -msgstr "44100Hz" - -#: engine_dialog.cc:106 -msgid "48000Hz" -msgstr "48000Hz" +#: engine_dialog.cc:87 +msgid "Refresh list" +msgstr "" #: engine_dialog.cc:107 -msgid "88200Hz" -msgstr "88200Hz" - -#: engine_dialog.cc:108 -msgid "96000Hz" -msgstr "96000Hz" - -#: engine_dialog.cc:109 -msgid "192000Hz" -msgstr "192000Hz" - -#: engine_dialog.cc:127 engine_dialog.cc:132 engine_dialog.cc:169 -#: engine_dialog.cc:562 midi_channel_selector.cc:163 -#: midi_channel_selector.cc:402 midi_channel_selector.cc:438 -#: rc_option_editor.cc:1250 sfdb_ui.cc:538 -msgid "None" -msgstr "Brak" - -#: engine_dialog.cc:128 engine_dialog.cc:563 -msgid "Triangular" -msgstr "Triangular" - -#: engine_dialog.cc:129 engine_dialog.cc:565 -msgid "Rectangular" -msgstr "Rectangular" - -#: engine_dialog.cc:130 engine_dialog.cc:567 -msgid "Shaped" -msgstr "Shaped" - -#: engine_dialog.cc:160 engine_dialog.cc:503 engine_dialog.cc:980 -msgid "Playback only" -msgstr "Tylko odtwarzanie" - -#: engine_dialog.cc:161 engine_dialog.cc:505 engine_dialog.cc:983 -msgid "Recording only" -msgstr "Tylko nagrywanie" - -#: engine_dialog.cc:171 engine_dialog.cc:448 -msgid "coremidi" +msgid "" +"No audio/MIDI backends detected. %1 cannot run\n" +"\n" +"(This is a build/packaging/system error. It should never happen.)" msgstr "" -#: engine_dialog.cc:173 engine_dialog.cc:581 -msgid "seq" +#: engine_dialog.cc:136 +msgid "Latency Measurement Tool" msgstr "" -#: engine_dialog.cc:191 sfdb_ui.cc:147 sfdb_ui.cc:260 sfdb_ui.cc:265 +#: engine_dialog.cc:151 +msgid "" +"Turn down the volume on your audio equipment to a very " +"low level." +msgstr "" + +#: engine_dialog.cc:159 +msgid "Select two channels below and connect them using a cable." +msgstr "" + +#: engine_dialog.cc:164 +msgid "Output channel" +msgstr "" + +#: engine_dialog.cc:172 +msgid "Input channel" +msgstr "" + +#: engine_dialog.cc:207 +msgid "Once the channels are connected, click the \"Measure\" button." +msgstr "" + +#: engine_dialog.cc:214 +msgid "When satisfied with the results, click the \"Use results\" button." +msgstr "" + +#: engine_dialog.cc:229 engine_dialog.cc:1727 +msgid "No measurement results yet" +msgstr "" + +#: engine_dialog.cc:238 route_params_ui.cc:105 +msgid "Latency" +msgstr "Opóźnienie" + +#: engine_dialog.cc:333 +msgid "Audio System:" +msgstr "" + +#: engine_dialog.cc:374 +msgid "Driver:" +msgstr "" + +#: engine_dialog.cc:380 +msgid "Device:" +msgstr "" + +#: engine_dialog.cc:385 engine_dialog.cc:475 sfdb_ui.cc:147 sfdb_ui.cc:260 +#: sfdb_ui.cc:265 msgid "Sample rate:" msgstr "CzÄ™stotliwość próbkowania:" -#: engine_dialog.cc:284 engine_dialog.cc:408 -msgid "Ignore" -msgstr "Ignorowanie" +#: engine_dialog.cc:391 engine_dialog.cc:482 +msgid "Buffer size:" +msgstr "" -#: engine_dialog.cc:292 -msgid "Client timeout" -msgstr "Limit czasu na opowiedź klienta" +#: engine_dialog.cc:404 +msgid "Input Channels:" +msgstr "" -#: engine_dialog.cc:319 +#: engine_dialog.cc:415 +msgid "Output Channels:" +msgstr "" + +#: engine_dialog.cc:426 +msgid "Hardware input latency:" +msgstr "" + +#: engine_dialog.cc:429 engine_dialog.cc:442 +msgid "samples" +msgstr "" + +#: engine_dialog.cc:439 +msgid "Hardware output latency:" +msgstr "" + +#: engine_dialog.cc:450 +msgid "MIDI System" +msgstr "" + +#: engine_dialog.cc:467 msgid "" -"No JACK server found anywhere on this system. Please install JACK and restart" -msgstr "" -"Nie znaleziono serwera JACK w systemie. ProszÄ™ zainstalować JACK i spróbować " -"ponownie." - -#: engine_dialog.cc:327 -msgid "Server:" -msgstr "Serwer:" - -#: engine_dialog.cc:368 -msgid "Device" -msgstr "UrzÄ…dzenie" - -#: engine_dialog.cc:370 -msgid "Advanced" -msgstr "Zaawansowane" - -#: engine_dialog.cc:653 -msgid "cannot open JACK rc file %1 to store parameters" +"The %1 audio backend was configured and started externally.\n" +"This limits your control over it." msgstr "" -#: engine_dialog.cc:787 +#: engine_dialog.cc:521 msgid "" -"You do not have any audio devices capable of\n" -"simultaneous playback and recording.\n" +"Your selected audio configuration is playback- or capture-only.\n" "\n" -"Please use Applications -> Utilities -> Audio MIDI Setup\n" -"to create an \"aggregrate\" device, or install a suitable\n" -"audio interface.\n" -"\n" -"Please send email to Apple and ask them why new Macs\n" -"have no duplex audio device.\n" -"\n" -"Alternatively, if you really want just playback\n" -"or recording but not both, start JACK before running\n" -"%1 and choose the relevant device then." +"Latency calibration requires playback and capture" msgstr "" -#: engine_dialog.cc:800 -msgid "No suitable audio devices" +#: engine_dialog.cc:595 +msgid "MIDI Inputs" msgstr "" -#: engine_dialog.cc:1017 -msgid "JACK appears to be missing from the %1 bundle" +#: engine_dialog.cc:612 +msgid "MIDI Outputs" msgstr "" -#: engine_dialog.cc:1087 -msgid "You need to choose an audio device first." +#: engine_dialog.cc:696 +msgid "all available channels" msgstr "" -#: engine_dialog.cc:1104 -msgid "Audio device \"%1\" not known on this computer." +#: engine_dialog.cc:890 +#, c-format +msgid "%u samples" msgstr "" -#: engine_dialog.cc:1256 -msgid "AudioSetup value for %1 is missing data" +#: engine_dialog.cc:941 +#, c-format +msgid "(%.1f msecs)" msgstr "" -#: engine_dialog.cc:1335 -msgid "configuration files contain a JACK server path that doesn't exist (%1)" +#: engine_dialog.cc:1389 +msgid "Cannot set driver to %1" +msgstr "" + +#: engine_dialog.cc:1393 +msgid "Cannot set device name to %1" +msgstr "" + +#: engine_dialog.cc:1397 +msgid "Cannot set sample rate to %1" +msgstr "" + +#: engine_dialog.cc:1401 +msgid "Cannot set buffer size to %1" +msgstr "" + +#: engine_dialog.cc:1407 +msgid "Cannot set input channels to %1" +msgstr "" + +#: engine_dialog.cc:1411 +msgid "Cannot set output channels to %1" +msgstr "" + +#: engine_dialog.cc:1417 +msgid "Cannot set input latency to %1" +msgstr "" + +#: engine_dialog.cc:1421 +msgid "Cannot set output latency to %1" +msgstr "" + +#: engine_dialog.cc:1654 +msgid "No signal detected " +msgstr "" + +#: engine_dialog.cc:1667 port_insert_ui.cc:71 port_insert_ui.cc:99 +msgid "Disconnected from audio engine" +msgstr "" + +#: engine_dialog.cc:1681 +msgid "(signal detection error)" +msgstr "" + +#: engine_dialog.cc:1687 +msgid "(inverted - bad wiring)" +msgstr "" + +#: engine_dialog.cc:1697 +msgid "Detected roundtrip latency: %1" +msgstr "" + +#: engine_dialog.cc:1709 port_insert_ui.cc:135 +msgid "Detecting ..." +msgstr "" + +#: engine_dialog.cc:1789 +msgid "Disconnect from %1" +msgstr "" + +#: engine_dialog.cc:1801 +msgid "Connect to %1" msgstr "" -"pliki konfiguracyjne zawierajÄ… nieistniejÄ…ce poÅ‚ożenie serwera JACK (%1)" #: export_channel_selector.cc:45 sfdb_ui.cc:145 msgid "Channels:" @@ -3704,12 +5718,33 @@ msgstr "" msgid "Region contents with fades and region gain (channels: %1)" msgstr "" +#: export_channel_selector.cc:467 +msgid "Track output (channels: %1)" +msgstr "" + +#: export_channel_selector.cc:536 +msgid "Export region contents" +msgstr "" + +#: export_channel_selector.cc:537 +msgid "Export track output" +msgstr "" + #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten." msgstr "" +#: export_dialog.cc:47 +msgid "List files" +msgstr "" + +#: export_dialog.cc:164 export_timespan_selector.cc:355 +#: export_timespan_selector.cc:417 +msgid "Time Span" +msgstr "" + #: export_dialog.cc:176 msgid "Channels" msgstr "KanaÅ‚y" @@ -3732,6 +5767,18 @@ msgstr "" msgid "Stop Export" msgstr "Zatrzymaj eksport" +#: export_dialog.cc:337 +msgid "export" +msgstr "" + +#: export_dialog.cc:356 +msgid "Normalizing '%3' (timespan %1 of %2)" +msgstr "" + +#: export_dialog.cc:360 +msgid "Exporting '%3' (timespan %1 of %2)" +msgstr "" + #: export_dialog.cc:383 export_dialog.cc:385 msgid "Error: " msgstr "" @@ -3746,10 +5793,26 @@ msgid "" "Warning: " msgstr "" +#: export_dialog.cc:420 +msgid "Export Selection" +msgstr "" + #: export_dialog.cc:433 msgid "Export Region" msgstr "Eksportuj obszar" +#: export_dialog.cc:443 +msgid "Source" +msgstr "" + +#: export_dialog.cc:458 +msgid "Stem Export" +msgstr "" + +#: export_file_notebook.cc:38 +msgid "Add another format" +msgstr "" + #: export_file_notebook.cc:178 msgid "Format" msgstr "Format" @@ -3758,18 +5821,34 @@ msgstr "Format" msgid "Location" msgstr "PoÅ‚ożenie" +#: export_file_notebook.cc:255 +msgid "No format!" +msgstr "" + +#: export_file_notebook.cc:267 +msgid "Format %1: %2" +msgstr "" + #: export_filename_selector.cc:32 msgid "Label:" msgstr "" +#: export_filename_selector.cc:33 +msgid "Session Name" +msgstr "" + +#: export_filename_selector.cc:34 +msgid "Revision:" +msgstr "" + #: export_filename_selector.cc:36 msgid "Folder:" msgstr "" #: export_filename_selector.cc:37 session_import_dialog.cc:44 -#: transcode_video_dialog.cc:59 video_server_dialog.cc:45 -#: video_server_dialog.cc:47 export_video_dialog.cc:69 -#: export_video_dialog.cc:71 +#: transcode_video_dialog.cc:58 video_server_dialog.cc:45 +#: video_server_dialog.cc:47 export_video_dialog.cc:68 +#: export_video_dialog.cc:70 msgid "Browse" msgstr "PrzeglÄ…daj" @@ -3797,14 +5876,34 @@ msgstr "" msgid "Choose export folder" msgstr "" +#: export_format_dialog.cc:31 +msgid "New Export Format Profile" +msgstr "" + +#: export_format_dialog.cc:31 +msgid "Edit Export Format Profile" +msgstr "" + #: export_format_dialog.cc:38 msgid "Label: " msgstr "" +#: export_format_dialog.cc:41 normalize_dialog.cc:42 +msgid "Normalize to:" +msgstr "" + +#: export_format_dialog.cc:46 +msgid "Trim silence at start" +msgstr "" + #: export_format_dialog.cc:47 msgid "Add silence at start:" msgstr "" +#: export_format_dialog.cc:50 +msgid "Trim silence at end" +msgstr "" + #: export_format_dialog.cc:51 msgid "Add silence at end:" msgstr "" @@ -3817,6 +5916,18 @@ msgstr "" msgid "Quality" msgstr "" +#: export_format_dialog.cc:57 +msgid "File format" +msgstr "" + +#: export_format_dialog.cc:59 +msgid "Sample rate conversion quality:" +msgstr "" + +#: export_format_dialog.cc:66 +msgid "Dithering" +msgstr "" + #: export_format_dialog.cc:68 msgid "Create CUE file for disk-at-once CD/DVD creation" msgstr "" @@ -3833,24 +5944,52 @@ msgstr "" msgid "Best (sinc)" msgstr "" +#: export_format_dialog.cc:466 +msgid "Medium (sinc)" +msgstr "" + #: export_format_dialog.cc:471 msgid "Fast (sinc)" msgstr "" +#: export_format_dialog.cc:481 +msgid "Zero order hold" +msgstr "" + #: export_format_dialog.cc:879 msgid "Linear encoding options" msgstr "" +#: export_format_dialog.cc:895 +msgid "Ogg Vorbis options" +msgstr "" + +#: export_format_dialog.cc:908 +msgid "FLAC options" +msgstr "" + #: export_format_dialog.cc:925 msgid "Broadcast Wave options" msgstr "" +#: export_format_selector.cc:136 +msgid "Do you really want to remove the format?" +msgstr "" + +#: export_preset_selector.cc:28 +msgid "Preset" +msgstr "" + #: export_preset_selector.cc:104 msgid "" "The selected preset did not load successfully!\n" "Perhaps it references a format that has been removed?" msgstr "" +#: export_preset_selector.cc:156 +msgid "Do you really want to remove this preset?" +msgstr "" + #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "" @@ -3859,6 +5998,14 @@ msgstr "" msgid " to " msgstr "" +#: export_timespan_selector.cc:348 export_timespan_selector.cc:407 +msgid "Range" +msgstr "" + +#: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 +msgid "curl error %1 (%2)" +msgstr "" + #: sfdb_freesound_mootcher.cc:266 msgid "getSoundResourceFile: There is no valid root in the xml file" msgstr "" @@ -3871,75 +6018,136 @@ msgstr "" msgid "%1" msgstr "" -#: gain_meter.cc:106 gain_meter.cc:357 gain_meter.cc:462 gain_meter.cc:856 +#: gain_meter.cc:105 gain_meter.cc:360 gain_meter.cc:465 gain_meter.cc:859 msgid "-inf" msgstr "" -#: gain_meter.cc:112 gain_meter.cc:913 +#: gain_meter.cc:111 gain_meter.cc:916 msgid "Fader automation mode" msgstr "Tryb automatyzacji wzmocnienia" -#: gain_meter.cc:113 gain_meter.cc:914 +#: gain_meter.cc:112 gain_meter.cc:917 msgid "Fader automation type" msgstr "Rodzaj automatyzacji wzmocnienia" -#: gain_meter.cc:122 gain_meter.cc:795 panner_ui.cc:178 panner_ui.cc:590 +#: gain_meter.cc:121 gain_meter.cc:798 panner_ui.cc:177 panner_ui.cc:589 msgid "Abs" msgstr "" -#: gain_meter.cc:762 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:557 +#: gain_meter.cc:765 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:556 #: route_time_axis.cc:2411 msgid "P" msgstr "" -#: gain_meter.cc:765 panner_ui.cc:560 +#: gain_meter.cc:768 panner_ui.cc:559 msgid "T" msgstr "" -#: gain_meter.cc:768 panner_ui.cc:563 +#: gain_meter.cc:771 panner_ui.cc:562 msgid "W" msgstr "" -#: generic_pluginui.cc:83 +#: generic_pluginui.cc:81 msgid "Presets" msgstr "" -#: generic_pluginui.cc:232 +#: generic_pluginui.cc:230 msgid "Switches" msgstr "" -#: generic_pluginui.cc:242 generic_pluginui.cc:376 processor_box.cc:2212 +#: generic_pluginui.cc:240 generic_pluginui.cc:374 processor_box.cc:2251 msgid "Controls" msgstr "Sterowanie" -#: generic_pluginui.cc:270 +#: generic_pluginui.cc:268 msgid "Plugin Editor: could not build control element for port %1" msgstr "" -#: generic_pluginui.cc:423 +#: generic_pluginui.cc:406 +msgid "Meters" +msgstr "" + +#: generic_pluginui.cc:421 msgid "Automation control" msgstr "Kontrola automatyzacji" -#: generic_pluginui.cc:430 +#: generic_pluginui.cc:428 msgid "Mgnual" msgstr "" +#: global_port_matrix.cc:157 +msgid "Audio Connection Manager" +msgstr "" + +#: global_port_matrix.cc:160 +msgid "MIDI Connection Manager" +msgstr "" + +#: global_port_matrix.cc:200 io_selector.cc:210 mixer_strip.cc:719 +#: mixer_strip.cc:845 +msgid "Disconnect" +msgstr "Rozłącz" + +#: global_port_matrix.cc:206 io_selector.cc:216 +msgid "port" +msgstr "" + +#: group_tabs.cc:308 +msgid "Selection..." +msgstr "" + #: group_tabs.cc:309 msgid "Record Enabled..." msgstr "" +#: group_tabs.cc:310 +msgid "Soloed..." +msgstr "" + +#: group_tabs.cc:316 +msgid "Create New Group ..." +msgstr "" + #: group_tabs.cc:317 msgid "Create New Group From" msgstr "" +#: group_tabs.cc:320 +msgid "Edit Group..." +msgstr "" + +#: group_tabs.cc:321 +msgid "Collect Group" +msgstr "" + +#: group_tabs.cc:322 +msgid "Remove Group" +msgstr "" + +#: group_tabs.cc:325 +msgid "Remove Subgroup Bus" +msgstr "" + +#: group_tabs.cc:327 +msgid "Add New Subgroup Bus" +msgstr "" + #: group_tabs.cc:329 msgid "Add New Aux Bus (pre-fader)" msgstr "" +#: group_tabs.cc:330 +msgid "Add New Aux Bus (post-fader)" +msgstr "" + #: group_tabs.cc:336 msgid "Enable All Groups" msgstr "" +#: group_tabs.cc:337 +msgid "Disable All Groups" +msgstr "" + #: gtk-custom-ruler.c:133 msgid "Lower limit of ruler" msgstr "" @@ -3972,16 +6180,64 @@ msgstr "WyÅ›wietl pozycjÄ™" msgid "Draw current ruler position" msgstr "" +#: insert_time_dialog.cc:46 +msgid "Time to insert:" +msgstr "" + +#: insert_time_dialog.cc:54 +msgid "Intersected regions should:" +msgstr "" + +#: insert_time_dialog.cc:57 +msgid "stay in position" +msgstr "" + +#: insert_time_dialog.cc:58 +msgid "move" +msgstr "" + +#: insert_time_dialog.cc:59 +msgid "be split" +msgstr "" + #: insert_time_dialog.cc:65 msgid "Insert time on all the track's playlists" msgstr "" +#: insert_time_dialog.cc:68 +msgid "Move glued regions" +msgstr "" + +#: insert_time_dialog.cc:70 +msgid "Move markers" +msgstr "" + +#: insert_time_dialog.cc:73 +msgid "Move glued markers" +msgstr "" + +#: insert_time_dialog.cc:78 +msgid "Move locked markers" +msgstr "" + #: insert_time_dialog.cc:83 msgid "" "Move tempo and meter changes\n" "(may cause oddities in the tempo map)" msgstr "" +#: insert_time_dialog.cc:91 +msgid "Insert time" +msgstr "" + +#: interthread_progress_window.cc:103 +msgid "Importing file: %1 of %2" +msgstr "" + +#: io_selector.cc:220 +msgid "I/O selector" +msgstr "" + #: io_selector.cc:265 msgid "%1 input" msgstr "%1 wejÅ›cie" @@ -4022,10 +6278,26 @@ msgstr "" msgid "Main_menu" msgstr "" -#: keyeditor.cc:255 +#: keyeditor.cc:253 msgid "redirectmenu" msgstr "" +#: keyeditor.cc:255 +msgid "Editor_menus" +msgstr "" + +#: keyeditor.cc:257 +msgid "RegionList" +msgstr "" + +#: keyeditor.cc:259 +msgid "ProcessorMenu" +msgstr "" + +#: latency_gui.cc:39 +msgid "sample" +msgstr "" + #: latency_gui.cc:40 msgid "msec" msgstr "" @@ -4034,7 +6306,14 @@ msgstr "" msgid "period" msgstr "" -#: latency_gui.cc:72 panner_ui.cc:392 +#: latency_gui.cc:55 +msgid "%1 sample" +msgid_plural "%1 samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: latency_gui.cc:72 panner_ui.cc:391 msgid "Reset" msgstr "Zresetuj" @@ -4042,6 +6321,10 @@ msgstr "Zresetuj" msgid "programming error: %1 (%2)" msgstr "" +#: location_ui.cc:50 location_ui.cc:52 +msgid "Use PH" +msgstr "" + #: location_ui.cc:54 msgid "CD" msgstr "CD" @@ -4062,6 +6345,10 @@ msgstr "" msgid "Pre-Emphasis" msgstr "Przed naciskiem" +#: location_ui.cc:314 +msgid "Remove this range" +msgstr "" + #: location_ui.cc:315 msgid "Start time - middle click to locate here" msgstr "" @@ -4070,14 +6357,42 @@ msgstr "" msgid "End time - middle click to locate here" msgstr "" +#: location_ui.cc:319 +msgid "Set range start from playhead location" +msgstr "" + +#: location_ui.cc:320 +msgid "Set range end from playhead location" +msgstr "" + +#: location_ui.cc:324 +msgid "Remove this marker" +msgstr "" + #: location_ui.cc:325 msgid "Position - middle click to locate here" msgstr "" +#: location_ui.cc:327 +msgid "Set marker time from playhead location" +msgstr "" + #: location_ui.cc:494 msgid "You cannot put a CD marker at the start of the session" msgstr "" +#: location_ui.cc:720 +msgid "New Marker" +msgstr "" + +#: location_ui.cc:721 +msgid "New Range" +msgstr "" + +#: location_ui.cc:734 +msgid "Loop/Punch Ranges" +msgstr "" + #: location_ui.cc:759 msgid "Markers (Including CD Index)" msgstr "" @@ -4090,78 +6405,103 @@ msgstr "" msgid "add range marker" msgstr "dodaj znacznik zakresu" -#: main.cc:203 main.cc:324 +#: main.cc:81 +msgid "%1 could not connect to the audio backend." +msgstr "" + +#: main.cc:194 main.cc:315 msgid "cannot create user %3 folder %1 (%2)" msgstr "" -#: main.cc:210 main.cc:331 +#: main.cc:201 main.cc:322 msgid "cannot open pango.rc file %1" msgstr "nie można otworzyć pliku pango.rc %1" -#: main.cc:235 main.cc:358 +#: main.cc:226 main.cc:349 msgid "Cannot find ArdourMono TrueType font" msgstr "" -#: main.cc:247 main.cc:364 +#: main.cc:238 main.cc:355 msgid "Cannot load ArdourMono TrueType font." msgstr "" -#: main.cc:312 +#: main.cc:303 msgid "" "No fontconfig file found on your system. Things may looked very odd or ugly" msgstr "" -#: main.cc:368 +#: main.cc:359 msgid "Failed to set fontconfig configuration." msgstr "" -#: main.cc:379 main.cc:395 -msgid "JACK exited" +#: main.cc:370 main.cc:386 +msgid "The audio backend (%1) has failed, or terminated" msgstr "" -#: main.cc:382 +#: main.cc:373 msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" +"%2 exited unexpectedly, and without notifying %1.\n" "\n" -"This could be due to misconfiguration or to an error inside JACK.\n" +"This could be due to misconfiguration or to an error inside %2.\n" "\n" "Click OK to exit %1." msgstr "" -#: main.cc:397 -msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" -"\n" -"This is probably due to an error inside JACK. You should restart JACK\n" -"and reconnect %1 to it, or exit %1 now. You cannot save your\n" -"session at this time, because we would lose your connection information.\n" +#: main.cc:387 +msgid "%2 exited unexpectedly, and without notifying %1." msgstr "" -#: main.cc:487 +#: main.cc:474 msgid " (built using " msgstr " (skompilowany przy użyciu " -#: main.cc:490 +#: main.cc:477 msgid " and GCC version " msgstr " oraz GCC w wesji " -#: main.cc:504 +#: main.cc:487 +msgid "Copyright (C) 1999-2012 Paul Davis" +msgstr "" + +#: main.cc:488 +msgid "" +"Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " +"Baker, Robin Gareus" +msgstr "" + +#: main.cc:490 +msgid "%1 comes with ABSOLUTELY NO WARRANTY" +msgstr "" + +#: main.cc:491 msgid "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." msgstr "" -#: main.cc:505 +#: main.cc:492 msgid "This is free software, and you are welcome to redistribute it " msgstr "To jest oprogramowanie darmowe i możesz je rozpowszechniać" -#: main.cc:506 +#: main.cc:493 msgid "under certain conditions; see the source for copying conditions." msgstr "" "na Å›ciÅ›le okreÅ›lonych zasadach; zobacz plik COPYING by dowiedzieć siÄ™ wiÄ™cej." -#: main.cc:522 +#: main.cc:500 +msgid "could not initialize %1." +msgstr "" + +#: main.cc:509 msgid "Cannot xinstall SIGPIPE error handler" msgstr "" +#: main.cc:515 +msgid "could not create %1 GUI" +msgstr "" + +#: main_clock.cc:51 +msgid "Display delta to edit cursor" +msgstr "" + #: marker.cc:251 video_image_frame.cc:121 msgid "MarkerText" msgstr "Tekst znacznika" @@ -4171,6 +6511,11 @@ msgstr "Tekst znacznika" msgid "All" msgstr "" +#: midi_channel_selector.cc:163 midi_channel_selector.cc:402 +#: midi_channel_selector.cc:438 rc_option_editor.cc:1248 sfdb_ui.cc:538 +msgid "None" +msgstr "Brak" + #: midi_channel_selector.cc:167 midi_channel_selector.cc:407 #: midi_channel_selector.cc:443 msgid "Invert" @@ -4180,10 +6525,38 @@ msgstr "" msgid "Force" msgstr "" +#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 +msgid "MIDI Channel Control" +msgstr "" + +#: midi_channel_selector.cc:332 +msgid "Playback all channels" +msgstr "" + +#: midi_channel_selector.cc:333 +msgid "Play only selected channels" +msgstr "" + #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" +#: midi_channel_selector.cc:335 +msgid "Record all channels" +msgstr "" + +#: midi_channel_selector.cc:336 +msgid "Record only selected channels" +msgstr "" + +#: midi_channel_selector.cc:337 +msgid "Force all channels to 1 channel" +msgstr "" + +#: midi_channel_selector.cc:378 +msgid "Inbound" +msgstr "" + #: midi_channel_selector.cc:398 msgid "Click to enable recording all channels" msgstr "" @@ -4196,6 +6569,10 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" +#: midi_channel_selector.cc:415 +msgid "Playback" +msgstr "" + #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -4240,6 +6617,22 @@ msgstr "" msgid "Triplet" msgstr "" +#: midi_list_editor.cc:58 +msgid "Quarter" +msgstr "" + +#: midi_list_editor.cc:59 +msgid "Eighth" +msgstr "" + +#: midi_list_editor.cc:60 +msgid "Sixteenth" +msgstr "" + +#: midi_list_editor.cc:61 +msgid "Thirty-second" +msgstr "" + #: midi_list_editor.cc:62 msgid "Sixty-fourth" msgstr "" @@ -4252,14 +6645,74 @@ msgstr "" msgid "Vel" msgstr "" +#: midi_list_editor.cc:215 +msgid "edit note start" +msgstr "" + +#: midi_list_editor.cc:224 +msgid "edit note channel" +msgstr "" + +#: midi_list_editor.cc:234 +msgid "edit note number" +msgstr "" + +#: midi_list_editor.cc:244 +msgid "edit note velocity" +msgstr "" + +#: midi_list_editor.cc:258 +msgid "edit note length" +msgstr "" + +#: midi_list_editor.cc:460 +msgid "insert new note" +msgstr "" + +#: midi_list_editor.cc:524 +msgid "delete notes (from list)" +msgstr "" + +#: midi_list_editor.cc:599 +msgid "change note channel" +msgstr "" + +#: midi_list_editor.cc:607 +msgid "change note number" +msgstr "" + +#: midi_list_editor.cc:617 +msgid "change note velocity" +msgstr "" + +#: midi_list_editor.cc:687 +msgid "change note length" +msgstr "" + +#: midi_port_dialog.cc:39 +msgid "Add MIDI Port" +msgstr "" + +#: midi_port_dialog.cc:40 +msgid "Port name:" +msgstr "" + #: midi_port_dialog.cc:45 msgid "MidiPortDialog" msgstr "" +#: midi_region_view.cc:838 +msgid "channel edit" +msgstr "" + #: midi_region_view.cc:874 msgid "velocity edit" msgstr "" +#: midi_region_view.cc:931 +msgid "add note" +msgstr "" + #: midi_region_view.cc:1779 msgid "step add" msgstr "" @@ -4268,10 +6721,34 @@ msgstr "" msgid "insane MIDI patch key %1:%2" msgstr "" +#: midi_region_view.cc:1870 midi_region_view.cc:1890 +msgid "alter patch change" +msgstr "" + #: midi_region_view.cc:1924 msgid "add patch change" msgstr "" +#: midi_region_view.cc:1942 +msgid "move patch change" +msgstr "" + +#: midi_region_view.cc:1953 +msgid "delete patch change" +msgstr "" + +#: midi_region_view.cc:2022 +msgid "delete selection" +msgstr "" + +#: midi_region_view.cc:2038 +msgid "delete note" +msgstr "" + +#: midi_region_view.cc:2425 +msgid "move notes" +msgstr "" + #: midi_region_view.cc:2647 msgid "resize notes" msgstr "" @@ -4280,6 +6757,22 @@ msgstr "" msgid "change velocities" msgstr "" +#: midi_region_view.cc:2967 +msgid "transpose" +msgstr "" + +#: midi_region_view.cc:3001 +msgid "change note lengths" +msgstr "" + +#: midi_region_view.cc:3070 +msgid "nudge" +msgstr "" + +#: midi_region_view.cc:3085 +msgid "change channel" +msgstr "" + #: midi_region_view.cc:3130 msgid "Bank " msgstr "" @@ -4288,18 +6781,62 @@ msgstr "" msgid "Program " msgstr "" +#: midi_region_view.cc:3132 +msgid "Channel " +msgstr "" + #: midi_region_view.cc:3301 midi_region_view.cc:3303 msgid "paste" msgstr "wklej" +#: midi_region_view.cc:3761 +msgid "delete sysex" +msgstr "" + +#: midi_streamview.cc:479 +msgid "failed to create MIDI region" +msgstr "" + #: midi_time_axis.cc:262 msgid "External MIDI Device" msgstr "" +#: midi_time_axis.cc:263 +msgid "External Device Mode" +msgstr "" + #: midi_time_axis.cc:271 msgid "Chns" msgstr "" +#: midi_time_axis.cc:272 +msgid "Click to edit channel settings" +msgstr "" + +#: midi_time_axis.cc:486 +msgid "Show Full Range" +msgstr "" + +#: midi_time_axis.cc:491 +msgid "Fit Contents" +msgstr "" + +#: midi_time_axis.cc:495 +msgid "Note Range" +msgstr "" + +#: midi_time_axis.cc:496 +msgid "Note Mode" +msgstr "" + +#: midi_time_axis.cc:497 +msgid "Channel Selector" +msgstr "" + +#: midi_time_axis.cc:502 +msgid "Color Mode" +msgstr "" + #: midi_time_axis.cc:561 msgid "Bender" msgstr "" @@ -4308,22 +6845,87 @@ msgstr "" msgid "Pressure" msgstr "" +#: midi_time_axis.cc:578 +msgid "Controllers" +msgstr "" + #: midi_time_axis.cc:583 msgid "No MIDI Channels selected" msgstr "" +#: midi_time_axis.cc:640 midi_time_axis.cc:769 +msgid "Hide all channels" +msgstr "" + +#: midi_time_axis.cc:644 midi_time_axis.cc:773 +msgid "Show all channels" +msgstr "" + +#: midi_time_axis.cc:655 midi_time_axis.cc:784 +msgid "Channel %1" +msgstr "" + +#: midi_time_axis.cc:910 midi_time_axis.cc:942 +msgid "Controllers %1-%2" +msgstr "" + +#: midi_time_axis.cc:933 midi_time_axis.cc:936 +msgid "Controller %1" +msgstr "" + #: midi_time_axis.cc:959 msgid "Sustained" msgstr "" +#: midi_time_axis.cc:966 +msgid "Percussive" +msgstr "" + +#: midi_time_axis.cc:986 +msgid "Meter Colors" +msgstr "" + +#: midi_time_axis.cc:993 +msgid "Channel Colors" +msgstr "" + +#: midi_time_axis.cc:1000 +msgid "Track Color" +msgstr "" + +#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 +#: midi_time_axis.cc:1510 +msgid "all" +msgstr "" + #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" -#: midi_tracer.cc:52 +#: midi_tracer.cc:46 +msgid "Line history: " +msgstr "" + +#: midi_tracer.cc:54 +msgid "Auto-Scroll" +msgstr "" + +#: midi_tracer.cc:55 msgid "Decimal" msgstr "" +#: midi_tracer.cc:56 rc_option_editor.cc:657 +msgid "Enabled" +msgstr "" + +#: midi_tracer.cc:57 +msgid "Delta times" +msgstr "" + +#: midi_tracer.cc:70 +msgid "Port:" +msgstr "" + #: midi_velocity_dialog.cc:31 msgid "New velocity" msgstr "" @@ -4332,10 +6934,22 @@ msgstr "" msgid "Missing File!" msgstr "" +#: missing_file_dialog.cc:36 +msgid "Select a folder to search" +msgstr "" + #: missing_file_dialog.cc:37 msgid "Add chosen folder to search path, and try again" msgstr "" +#: missing_file_dialog.cc:39 +msgid "Stop loading this session" +msgstr "" + +#: missing_file_dialog.cc:40 +msgid "Skip all missing files" +msgstr "" + #: missing_file_dialog.cc:41 msgid "Skip this file" msgstr "" @@ -4360,7 +6974,11 @@ msgstr "" msgid "Click to choose an additional folder" msgstr "" -#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 +#: missing_plugin_dialog.cc:29 +msgid "Missing Plugins" +msgstr "" + +#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:59 msgid "OK" msgstr "OK" @@ -4388,6 +7006,34 @@ msgstr "" msgid "Set Gain to 0dB on Mixer-Selected Tracks/Busses" msgstr "" +#: mixer_actor.cc:63 +msgid "Copy Selected Processors" +msgstr "" + +#: mixer_actor.cc:64 +msgid "Cut Selected Processors" +msgstr "" + +#: mixer_actor.cc:65 +msgid "Paste Selected Processors" +msgstr "" + +#: mixer_actor.cc:66 +msgid "Delete Selected Processors" +msgstr "" + +#: mixer_actor.cc:67 +msgid "Select All (visible) Processors" +msgstr "" + +#: mixer_actor.cc:68 +msgid "Toggle Selected Processors" +msgstr "" + +#: mixer_actor.cc:69 +msgid "Toggle Selected Plugins" +msgstr "" + #: mixer_actor.cc:72 mixer_actor.cc:73 msgid "Scroll Mixer Window to the left" msgstr "" @@ -4408,6 +7054,11 @@ msgstr "" msgid "pre" msgstr "przed" +#: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 +#: rc_option_editor.cc:1868 +msgid "Comments" +msgstr "" + #: mixer_strip.cc:147 msgid "Click to toggle the width of this mixer strip." msgstr "" @@ -4422,6 +7073,10 @@ msgstr "" msgid "Hide this mixer strip" msgstr "" +#: mixer_strip.cc:167 +msgid "Click to select metering point" +msgstr "" + #: mixer_strip.cc:173 msgid "tupni" msgstr "" @@ -4434,20 +7089,50 @@ msgstr "" msgid "Lock Solo Status" msgstr "" +#: mixer_strip.cc:203 mixer_strip.cc:1926 +msgid "lock" +msgstr "" + #: mixer_strip.cc:204 mixer_strip.cc:1925 msgid "iso" msgstr "" -#: mixer_strip.cc:351 rc_option_editor.cc:1878 +#: mixer_strip.cc:258 +msgid "Mix group" +msgstr "" + +#: mixer_strip.cc:351 rc_option_editor.cc:1865 msgid "Phase Invert" msgstr "" +#: mixer_strip.cc:352 rc_option_editor.cc:1866 route_ui.cc:1218 +msgid "Solo Safe" +msgstr "" + #: mixer_strip.cc:355 mixer_ui.cc:124 route_time_axis.cc:673 msgid "Group" msgstr "Grupa" -#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 -msgid "Not connected to JACK - no I/O changes are possible" +#: mixer_strip.cc:356 rc_option_editor.cc:1869 +msgid "Meter Point" +msgstr "" + +#: mixer_strip.cc:470 +msgid "Enable/Disable MIDI input" +msgstr "" + +#: mixer_strip.cc:622 +msgid "" +"Aux\n" +"Sends" +msgstr "" + +#: mixer_strip.cc:646 +msgid "Snd" +msgstr "" + +#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2193 +msgid "Not connected to audio engine - no I/O changes are possible" msgstr "" #: mixer_strip.cc:1096 @@ -4458,10 +7143,18 @@ msgstr "" msgid "OUTPUT from %1" msgstr "" +#: mixer_strip.cc:1174 +msgid "Disconnected" +msgstr "" + #: mixer_strip.cc:1303 msgid "*Comments*" msgstr "*Komentarze*" +#: mixer_strip.cc:1310 +msgid "Cmt" +msgstr "" + #: mixer_strip.cc:1313 msgid "*Cmt*" msgstr "" @@ -4482,6 +7175,14 @@ msgstr "" msgid "~G" msgstr "" +#: mixer_strip.cc:1467 +msgid "Comments..." +msgstr "" + +#: mixer_strip.cc:1469 +msgid "Save As Template..." +msgstr "" + #: mixer_strip.cc:1475 route_group_dialog.cc:39 route_time_axis.cc:696 msgid "Active" msgstr "Aktywne" @@ -4490,14 +7191,42 @@ msgstr "Aktywne" msgid "Adjust Latency..." msgstr "" +#: mixer_strip.cc:1485 +msgid "Protect Against Denormals" +msgstr "" + +#: mixer_strip.cc:1491 route_time_axis.cc:435 +msgid "Remote Control ID..." +msgstr "" + +#: mixer_strip.cc:1717 mixer_strip.cc:1741 +msgid "in" +msgstr "" + #: mixer_strip.cc:1725 msgid "post" msgstr "za" +#: mixer_strip.cc:1729 +msgid "out" +msgstr "" + #: mixer_strip.cc:1734 msgid "custom" msgstr "" +#: mixer_strip.cc:1745 +msgid "pr" +msgstr "" + +#: mixer_strip.cc:1749 +msgid "po" +msgstr "" + +#: mixer_strip.cc:1753 +msgid "o" +msgstr "" + #: mixer_strip.cc:1758 msgid "c" msgstr "" @@ -4514,10 +7243,30 @@ msgstr "" msgid "PFL" msgstr "" +#: mixer_strip.cc:1933 +msgid "D" +msgstr "" + +#: mixer_strip.cc:1953 +msgid "i" +msgstr "" + +#: mixer_strip.cc:2128 +msgid "Pre-fader" +msgstr "" + +#: mixer_strip.cc:2129 +msgid "Post-fader" +msgstr "" + #: mixer_strip.cc:2166 meter_strip.cc:728 msgid "Change all in Group to %1" msgstr "" +#: mixer_strip.cc:2168 meter_strip.cc:730 +msgid "Change all to %1" +msgstr "" + #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -4534,6 +7283,14 @@ msgstr "-wszystko-" msgid "Strips" msgstr "Pas" +#: meter_strip.cc:764 +msgid "Variable height" +msgstr "" + +#: meter_strip.cc:765 +msgid "Short" +msgstr "" + #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -4586,10 +7343,30 @@ msgstr "" msgid "SiP" msgstr "" +#: monitor_section.cc:86 +msgid "soloing" +msgstr "" + #: monitor_section.cc:90 msgid "isolated" msgstr "" +#: monitor_section.cc:94 +msgid "auditioning" +msgstr "" + +#: monitor_section.cc:104 +msgid "" +"When active, something is solo-isolated.\n" +"Click to de-isolate everything" +msgstr "" + +#: monitor_section.cc:107 +msgid "" +"When active, auditioning is active.\n" +"Click to stop the audition" +msgstr "" + #: monitor_section.cc:124 msgid "Solo controls affect solo-in-place" msgstr "" @@ -4624,6 +7401,10 @@ msgstr "" msgid "Gain reduction to use when dimming monitor outputs" msgstr "" +#: monitor_section.cc:181 +msgid "Dim" +msgstr "" + #: monitor_section.cc:190 msgid "excl. solo" msgstr "" @@ -4642,14 +7423,34 @@ msgid "" "(a soloed & muted track or bus will be audible)" msgstr "" +#: monitor_section.cc:227 +msgid "mute" +msgstr "" + +#: monitor_section.cc:238 +msgid "dim" +msgstr "" + #: monitor_section.cc:245 msgid "mono" msgstr "mono" +#: monitor_section.cc:266 +msgid "Monitor" +msgstr "" + #: monitor_section.cc:678 msgid "Switch monitor to mono" msgstr "" +#: monitor_section.cc:681 +msgid "Cut monitor" +msgstr "" + +#: monitor_section.cc:684 +msgid "Dim monitor" +msgstr "" + #: monitor_section.cc:687 msgid "Toggle exclusive solo mode" msgstr "" @@ -4658,10 +7459,34 @@ msgstr "" msgid "Toggle mute overrides solo mode" msgstr "" +#: monitor_section.cc:705 +msgid "Cut monitor channel %1" +msgstr "" + +#: monitor_section.cc:710 +msgid "Dim monitor channel %1" +msgstr "" + +#: monitor_section.cc:715 +msgid "Solo monitor channel %1" +msgstr "" + +#: monitor_section.cc:720 +msgid "Invert monitor channel %1" +msgstr "" + #: monitor_section.cc:730 msgid "In-place solo" msgstr "" +#: monitor_section.cc:732 +msgid "After Fade Listen (AFL) solo" +msgstr "" + +#: monitor_section.cc:734 +msgid "Pre Fade Listen (PFL) solo" +msgstr "" + #: mono_panner.cc:101 #, c-format msgid "L:%3d R:%3d" @@ -4727,6 +7552,26 @@ msgid "" "relies on a stable, sustainable income stream. Thanks for using Ardour!" msgstr "" +#: new_plugin_preset_dialog.cc:29 +msgid "New Preset" +msgstr "" + +#: new_plugin_preset_dialog.cc:30 +msgid "Replace existing preset with this name" +msgstr "" + +#: new_plugin_preset_dialog.cc:34 +msgid "Name of new preset" +msgstr "" + +#: normalize_dialog.cc:34 +msgid "Normalize regions" +msgstr "" + +#: normalize_dialog.cc:34 +msgid "Normalize region" +msgstr "" + #: normalize_dialog.cc:49 strip_silence_dialog.cc:70 msgid "dbFS" msgstr "" @@ -4747,11 +7592,34 @@ msgstr "Normalizuj" msgid "Usage: " msgstr "Użycie:" +#: opts.cc:58 +msgid " [SESSION_NAME] Name of session to load\n" +msgstr "" + +#: opts.cc:59 +msgid " -v, --version Show version information\n" +msgstr "" + +#: opts.cc:60 +msgid " -h, --help Print this message\n" +msgstr "" + #: opts.cc:61 msgid "" " -a, --no-announcements Do not contact website for announcements\n" msgstr "" +#: opts.cc:62 +msgid "" +" -b, --bindings Print all possible keyboard binding names\n" +msgstr "" + +#: opts.cc:63 +msgid "" +" -c, --name Use a specific backend client name, default is " +"ardour\n" +msgstr "" + #: opts.cc:64 msgid "" " -d, --disable-plugins Disable all plugins in an existing session\n" @@ -4763,21 +7631,56 @@ msgid "" "available options\n" msgstr "" +#: opts.cc:66 +msgid " -n, --no-splash Do not show splash screen\n" +msgstr "" + +#: opts.cc:67 +msgid " -m, --menus file Use \"file\" to define menus\n" +msgstr "" + +#: opts.cc:68 +msgid "" +" -N, --new session-name Create a new session from the command line\n" +msgstr "" + +#: opts.cc:69 +msgid " -O, --no-hw-optimizations Disable h/w specific optimizations\n" +msgstr "" + #: opts.cc:70 msgid " -P, --no-connect-ports Do not connect any ports at startup\n" msgstr "" +#: opts.cc:71 +msgid " -S, --sync Draw the gui synchronously \n" +msgstr "" + +#: opts.cc:73 +msgid " -V, --novst Do not use VST support\n" +msgstr "" + #: opts.cc:75 msgid "" " -E, --save Load the specified session, save it to " "and then quit\n" msgstr "" +#: opts.cc:76 +msgid " -C, --curvetest filename Curve algorithm debugger\n" +msgstr "" + +#: opts.cc:77 +msgid "" +" -k, --keybindings filename Name of key bindings to load (default is ~/." +"ardour3/ardour.bindings)\n" +msgstr "" + #: panner2d.cc:781 msgid "Panner (2D)" msgstr "" -#: panner2d.cc:783 panner_ui.cc:384 plugin_ui.cc:451 +#: panner2d.cc:783 panner_ui.cc:383 plugin_ui.cc:448 msgid "Bypass" msgstr "PomiÅ„" @@ -4785,15 +7688,15 @@ msgstr "PomiÅ„" msgid "Panner" msgstr "" -#: panner_ui.cc:71 +#: panner_ui.cc:70 msgid "Pan automation mode" msgstr "Tryb automatyzacji panoramy" -#: panner_ui.cc:72 +#: panner_ui.cc:71 msgid "Pan automation type" msgstr "Rodzaj automatyzacji panoramy" -#: panner_ui.cc:295 +#: panner_ui.cc:294 msgid "" "No panner user interface is currently available for %1-in/2out tracks/busses" msgstr "" @@ -4818,10 +7721,18 @@ msgstr "Inne Å›cieżki" msgid "unassigned" msgstr "nieokreÅ›lono" +#: playlist_selector.cc:194 +msgid "Imported" +msgstr "" + #: plugin_eq_gui.cc:75 plugin_eq_gui.cc:99 msgid "dB scale" msgstr "" +#: plugin_eq_gui.cc:106 +msgid "Show phase" +msgstr "" + #: plugin_selector.cc:53 plugin_selector.cc:220 msgid "Name contains" msgstr "Nazwa zawiera" @@ -4830,6 +7741,10 @@ msgstr "Nazwa zawiera" msgid "Type contains" msgstr "Rodzaj zawiera" +#: plugin_selector.cc:55 plugin_selector.cc:222 +msgid "Category contains" +msgstr "" + #: plugin_selector.cc:56 plugin_selector.cc:244 msgid "Author contains" msgstr "Autor zawiera" @@ -4842,6 +7757,10 @@ msgstr "Biblioteka zawiera" msgid "Favorites only" msgstr "" +#: plugin_selector.cc:59 plugin_selector.cc:214 plugin_selector.cc:521 +msgid "Hidden only" +msgstr "" + #: plugin_selector.cc:64 msgid "Plugin Manager" msgstr "" @@ -4866,6 +7785,18 @@ msgstr "Kategoria" msgid "Creator" msgstr "Kreator" +#: plugin_selector.cc:90 +msgid "# Audio In" +msgstr "" + +#: plugin_selector.cc:91 +msgid "# Audio Out" +msgstr "" + +#: plugin_selector.cc:92 +msgid "# MIDI In" +msgstr "" + #: plugin_selector.cc:93 msgid "# MIDI Out" msgstr "" @@ -4906,91 +7837,146 @@ msgstr "" msgid "Favorites" msgstr "" -#: plugin_ui.cc:116 +#: plugin_selector.cc:630 +msgid "Plugin Manager..." +msgstr "" + +#: plugin_selector.cc:634 +msgid "By Creator" +msgstr "" + +#: plugin_selector.cc:637 +msgid "By Category" +msgstr "" + +#: plugin_ui.cc:114 msgid "Eh? LADSPA plugins don't have editors!" msgstr "" -#: plugin_ui.cc:125 plugin_ui.cc:227 +#: plugin_ui.cc:123 plugin_ui.cc:226 msgid "" "unknown type of editor-supplying plugin (note: no VST support in this " "version of %1)" msgstr "" -#: plugin_ui.cc:128 +#: plugin_ui.cc:126 msgid "unknown type of editor-supplying plugin" msgstr "" -#: plugin_ui.cc:257 +#: plugin_ui.cc:256 msgid "" "unknown type of editor-supplying plugin (note: no linuxVST support in this " "version of %1)" msgstr "" -#: plugin_ui.cc:329 +#: plugin_ui.cc:328 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "" -#: plugin_ui.cc:417 +#: plugin_ui.cc:414 msgid "Add" msgstr "Dodaj" -#: plugin_ui.cc:429 +#: plugin_ui.cc:418 +msgid "Description" +msgstr "" + +#: plugin_ui.cc:419 +msgid "Plugin analysis" +msgstr "" + +#: plugin_ui.cc:426 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:431 +#: plugin_ui.cc:427 +msgid "Save a new preset" +msgstr "" + +#: plugin_ui.cc:428 msgid "Save the current preset" msgstr "" -#: plugin_ui.cc:432 +#: plugin_ui.cc:429 msgid "Delete the current preset" msgstr "" -#: plugin_ui.cc:433 +#: plugin_ui.cc:430 msgid "Disable signal processing by the plugin" msgstr "" -#: plugin_ui.cc:466 plugin_ui.cc:662 +#: plugin_ui.cc:463 plugin_ui.cc:659 msgid "" "Click to allow the plugin to receive keyboard events that %1 would normally " "use as a shortcut" msgstr "" -#: plugin_ui.cc:467 +#: plugin_ui.cc:464 msgid "Click to enable/disable this plugin" msgstr "" -#: plugin_ui.cc:558 +#: plugin_ui.cc:503 +msgid "latency (%1 sample)" +msgid_plural "latency (%1 samples)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: plugin_ui.cc:505 +msgid "latency (%1 ms)" +msgstr "" + +#: plugin_ui.cc:516 +msgid "Edit Latency" +msgstr "" + +#: plugin_ui.cc:555 msgid "Plugin preset %1 not found" msgstr "" -#: plugin_ui.cc:595 +#: plugin_ui.cc:592 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "full version" msgstr "" -#: plugin_ui.cc:615 plugin_ui.cc:630 +#: plugin_ui.cc:612 plugin_ui.cc:627 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "newer version" msgstr "" -#: plugin_ui.cc:669 +#: plugin_ui.cc:666 msgid "Click to allow normal use of %1 keyboard shortcuts" msgstr "" +#: port_group.cc:337 +msgid "%1 Busses" +msgstr "" + +#: port_group.cc:338 +msgid "%1 Tracks" +msgstr "" + #: port_group.cc:339 +msgid "Hardware" +msgstr "" + +#: port_group.cc:340 +msgid "%1 Misc" +msgstr "" + +#: port_group.cc:341 msgid "Other" msgstr "" -#: port_group.cc:430 port_group.cc:431 +#: port_group.cc:432 port_group.cc:433 msgid "LTC Out" msgstr "" -#: port_group.cc:434 port_group.cc:435 +#: port_group.cc:436 port_group.cc:437 msgid "LTC In" msgstr "" @@ -4998,6 +7984,10 @@ msgstr "" msgid "MTC in" msgstr "" +#: port_group.cc:466 +msgid "MIDI control in" +msgstr "" + #: port_group.cc:469 msgid "MIDI clock in" msgstr "" @@ -5010,6 +8000,10 @@ msgstr "" msgid "MTC out" msgstr "" +#: port_group.cc:479 +msgid "MIDI control out" +msgstr "" + #: port_group.cc:482 msgid "MIDI clock out" msgstr "" @@ -5018,14 +8012,26 @@ msgstr "" msgid "MMC out" msgstr "" -#: port_group.cc:552 +#: port_group.cc:532 +msgid ":monitor" +msgstr "" + +#: port_group.cc:544 msgid "system:" msgstr "" -#: port_group.cc:553 +#: port_group.cc:545 msgid "alsa_pcm" msgstr "" +#: port_insert_ui.cc:40 +msgid "Measure Latency" +msgstr "" + +#: port_insert_ui.cc:51 +msgid "Send/Output" +msgstr "" + #: port_insert_ui.cc:52 msgid "Return/Input" msgstr "" @@ -5034,8 +8040,16 @@ msgstr "" msgid "No signal detected" msgstr "" -#: port_insert_ui.cc:135 -msgid "Detecting ..." +#: port_insert_ui.cc:166 +msgid "Port Insert " +msgstr "" + +#: port_matrix.cc:331 port_matrix.cc:357 +msgid "Sources" +msgstr "" + +#: port_matrix.cc:332 port_matrix.cc:358 +msgid "Destinations" msgstr "" #: port_matrix.cc:440 port_matrix.cc:448 @@ -5043,6 +8057,20 @@ msgstr "" msgid "Add %s %s" msgstr "" +#: port_matrix.cc:456 +#, c-format +msgid "Rename '%s'..." +msgstr "" + +#: port_matrix.cc:472 +msgid "Remove all" +msgstr "" + +#: port_matrix.cc:492 port_matrix.cc:504 +#, c-format +msgid "%s all" +msgstr "" + #: port_matrix.cc:527 msgid "Rescan" msgstr "Skanuj ponownie" @@ -5055,32 +8083,49 @@ msgstr "" msgid "Flip" msgstr "" -#: port_matrix.cc:723 +#: port_matrix.cc:721 msgid "" "It is not possible to add a port here, as the first processor in the track " "or buss cannot support the new configuration." msgstr "" -#: port_matrix.cc:726 +#: port_matrix.cc:724 msgid "Cannot add port" msgstr "" -#: port_matrix.cc:748 +#: port_matrix.cc:746 msgid "Port removal not allowed" msgstr "" -#: port_matrix.cc:749 +#: port_matrix.cc:747 msgid "" "This port cannot be removed.\n" "Either the first plugin in the track or buss cannot accept\n" "the new number of inputs or the last plugin has more outputs." msgstr "" -#: port_matrix.cc:981 +#: port_matrix.cc:964 +#, c-format +msgid "Remove '%s'" +msgstr "" + +#: port_matrix.cc:979 #, c-format msgid "%s all from '%s'" msgstr "" +#: port_matrix.cc:1045 +msgid "channel" +msgstr "" + +#: port_matrix_body.cc:82 +msgid "There are no ports to connect." +msgstr "" + +#: port_matrix_body.cc:84 +msgid "There are no %1 ports to connect." +msgstr "" + #: processor_box.cc:256 msgid "" "%1\n" @@ -5094,7 +8139,19 @@ msgid "" "Double-click to show generic GUI." msgstr "" -#: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 +#: processor_box.cc:372 +msgid "Show All Controls" +msgstr "" + +#: processor_box.cc:376 +msgid "Hide All Controls" +msgstr "" + +#: processor_box.cc:465 +msgid "on" +msgstr "" + +#: processor_box.cc:465 rc_option_editor.cc:1898 rc_option_editor.cc:1912 msgid "off" msgstr "wyÅ‚" @@ -5104,7 +8161,7 @@ msgid "" "plugins,inserts,sends and more" msgstr "" -#: processor_box.cc:1197 processor_box.cc:1591 +#: processor_box.cc:1197 processor_box.cc:1618 msgid "Plugin Incompatibility" msgstr "" @@ -5118,12 +8175,40 @@ msgid "" "This plugin has:\n" msgstr "" +#: processor_box.cc:1209 +msgid "\t%1 MIDI input\n" +msgid_plural "\t%1 MIDI inputs\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: processor_box.cc:1213 +msgid "\t%1 audio input\n" +msgid_plural "\t%1 audio inputs\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: processor_box.cc:1216 msgid "" "\n" "but at the insertion point, there are:\n" msgstr "" +#: processor_box.cc:1219 +msgid "\t%1 MIDI channel\n" +msgid_plural "\t%1 MIDI channels\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: processor_box.cc:1223 +msgid "\t%1 audio channel\n" +msgid_plural "\t%1 audio channels\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: processor_box.cc:1226 msgid "" "\n" @@ -5134,48 +8219,122 @@ msgstr "" msgid "Cannot set up new send: %1" msgstr "" -#: processor_box.cc:1594 +#: processor_box.cc:1621 msgid "" "You cannot reorder these plugins/sends/inserts\n" "in that way because the inputs and\n" "outputs will not work correctly." msgstr "" -#: processor_box.cc:1809 +#: processor_box.cc:1805 +msgid "Rename Processor" +msgstr "" + +#: processor_box.cc:1836 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "" -#: processor_box.cc:1943 +#: processor_box.cc:1970 msgid "plugin insert constructor failed" msgstr "" -#: processor_box.cc:1954 +#: processor_box.cc:1981 msgid "" "Copying the set of processors on the clipboard failed,\n" "probably because the I/O configuration of the plugins\n" "could not match the configuration of this track." msgstr "" -#: processor_box.cc:2004 processor_box.cc:2029 +#: processor_box.cc:2027 +msgid "" +"Do you really want to remove all processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2031 processor_box.cc:2056 msgid "Yes, remove them all" msgstr "Tak, usuÅ„ je wszystkie" -#: processor_box.cc:2203 +#: processor_box.cc:2033 processor_box.cc:2058 +msgid "Remove processors" +msgstr "" + +#: processor_box.cc:2048 +msgid "" +"Do you really want to remove all pre-fader processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2051 +msgid "" +"Do you really want to remove all post-fader processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2239 +msgid "New Plugin" +msgstr "" + +#: processor_box.cc:2242 msgid "New Insert" msgstr "Nowy przysyÅ‚" -#: processor_box.cc:2244 +#: processor_box.cc:2245 +msgid "New External Send ..." +msgstr "" + +#: processor_box.cc:2249 +msgid "New Aux Send ..." +msgstr "" + +#: processor_box.cc:2253 +msgid "Clear (all)" +msgstr "" + +#: processor_box.cc:2255 +msgid "Clear (pre-fader)" +msgstr "" + +#: processor_box.cc:2257 +msgid "Clear (post-fader)" +msgstr "" + +#: processor_box.cc:2283 msgid "Activate All" msgstr "Włącz wszystko" -#: processor_box.cc:2257 +#: processor_box.cc:2285 +msgid "Deactivate All" +msgstr "" + +#: processor_box.cc:2287 +msgid "A/B Plugins" +msgstr "" + +#: processor_box.cc:2296 msgid "Edit with generic controls..." msgstr "" -#: processor_box.cc:2557 +#: processor_box.cc:2599 msgid "%1: %2 (by %3)" msgstr "" +#: processor_box.cc:2601 +msgid "%2 (by %3)" +msgstr "" + +#: patch_change_dialog.cc:51 +msgid "Patch Change" +msgstr "" + +#: patch_change_dialog.cc:77 +msgid "Patch Bank" +msgstr "" + +#: patch_change_dialog.cc:84 +msgid "Patch" +msgstr "" + #: patch_change_dialog.cc:99 step_entry.cc:429 msgid "Program" msgstr "" @@ -5192,72 +8351,140 @@ msgstr "" msgid "Quantize" msgstr "" +#: quantize_dialog.cc:56 +msgid "Strength" +msgstr "" + #: quantize_dialog.cc:59 msgid "Swing" msgstr "" -#: rc_option_editor.cc:108 +#: quantize_dialog.cc:62 +msgid "Threshold (ticks)" +msgstr "" + +#: quantize_dialog.cc:63 +msgid "Snap note start" +msgstr "" + +#: quantize_dialog.cc:64 +msgid "Snap note end" +msgstr "" + +#: rc_option_editor.cc:67 +msgid "Click audio file:" +msgstr "" + +#: rc_option_editor.cc:70 rc_option_editor.cc:77 +msgid "Browse..." +msgstr "" + +#: rc_option_editor.cc:74 +msgid "Click emphasis audio file:" +msgstr "" + +#: rc_option_editor.cc:106 msgid "Choose Click" msgstr "Wybór dźwiÄ™ku" -#: rc_option_editor.cc:128 +#: rc_option_editor.cc:126 msgid "Choose Click Emphasis" msgstr "Wybór dźwiÄ™ku akcentowanego uderzenia" -#: rc_option_editor.cc:321 rc_option_editor.cc:347 rc_option_editor.cc:374 +#: rc_option_editor.cc:158 +msgid "Limit undo history to" +msgstr "" + +#: rc_option_editor.cc:159 +msgid "Save undo history of" +msgstr "" + +#: rc_option_editor.cc:168 rc_option_editor.cc:175 +msgid "commands" +msgstr "" + +#: rc_option_editor.cc:313 +msgid "Edit using:" +msgstr "" + +#: rc_option_editor.cc:319 rc_option_editor.cc:345 rc_option_editor.cc:372 msgid "+ button" msgstr "i przycisk:" -#: rc_option_editor.cc:586 +#: rc_option_editor.cc:339 +msgid "Delete using:" +msgstr "" + +#: rc_option_editor.cc:366 +msgid "Insert note using:" +msgstr "" + +#: rc_option_editor.cc:393 +msgid "Ignore snap using:" +msgstr "" + +#: rc_option_editor.cc:409 +msgid "Keyboard layout:" +msgstr "" + +#: rc_option_editor.cc:532 +msgid "Font scaling:" +msgstr "" + +#: rc_option_editor.cc:584 msgid "Playback (seconds of buffering):" msgstr "" -#: rc_option_editor.cc:599 +#: rc_option_editor.cc:597 msgid "Recording (seconds of buffering):" msgstr "" -#: rc_option_editor.cc:660 +#: rc_option_editor.cc:654 +msgid "Control Surface Protocol" +msgstr "" + +#: rc_option_editor.cc:658 msgid "Feedback" msgstr "Sprzężenie zwrotne" -#: rc_option_editor.cc:665 +#: rc_option_editor.cc:663 msgid "Double-click on a name to edit settings for an enabled protocol" msgstr "" -#: rc_option_editor.cc:817 +#: rc_option_editor.cc:815 msgid "Show Video Export Info before export" msgstr "" -#: rc_option_editor.cc:818 +#: rc_option_editor.cc:816 msgid "Show Video Server Startup Dialog" msgstr "" -#: rc_option_editor.cc:819 +#: rc_option_editor.cc:817 msgid "Advanced Setup (remote video server)" msgstr "" -#: rc_option_editor.cc:827 +#: rc_option_editor.cc:825 msgid "" "When enabled you can speficify a custom video-server URL and docroot. " "- Do not enable this option unless you know what you are doing." msgstr "" -#: rc_option_editor.cc:829 +#: rc_option_editor.cc:827 msgid "Video Server URL:" msgstr "" -#: rc_option_editor.cc:834 +#: rc_option_editor.cc:832 msgid "" "Base URL of the video-server including http prefix. This is usually 'http://" "hostname.example.org:1554/' and defaults to 'http://localhost:1554/' when " "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:836 +#: rc_option_editor.cc:834 msgid "Video Folder:" msgstr "" -#: rc_option_editor.cc:841 +#: rc_option_editor.cc:839 msgid "" "Local path to the video-server document-root. Only files below this " "directory will be accessible by the video-server. If the server run on a " @@ -5266,65 +8493,113 @@ msgid "" "monitor and file-browsing when opening/adding a video file." msgstr "" -#: rc_option_editor.cc:848 +#: rc_option_editor.cc:846 msgid "" "When enabled an information window with details is displayed before " "the video-export dialog." msgstr "" -#: rc_option_editor.cc:853 +#: rc_option_editor.cc:851 msgid "" "When enabled the video server is never launched automatically without " "confirmation" msgstr "" -#: rc_option_editor.cc:1004 +#: rc_option_editor.cc:991 +msgid "%1 Preferences" +msgstr "" + +#: rc_option_editor.cc:1002 msgid "DSP CPU Utilization" msgstr "" -#: rc_option_editor.cc:1008 +#: rc_option_editor.cc:1006 msgid "Signal processing uses" msgstr "" -#: rc_option_editor.cc:1013 +#: rc_option_editor.cc:1011 msgid "all but one processor" msgstr "" -#: rc_option_editor.cc:1017 +#: rc_option_editor.cc:1012 +msgid "all available processors" +msgstr "" + +#: rc_option_editor.cc:1015 msgid "%1 processors" msgstr "" -#: rc_option_editor.cc:1020 +#: rc_option_editor.cc:1018 msgid "This setting will only take effect when %1 is restarted." msgstr "" -#: rc_option_editor.cc:1050 +#: rc_option_editor.cc:1023 +msgid "Options|Undo" +msgstr "" + +#: rc_option_editor.cc:1030 +msgid "Verify removal of last capture" +msgstr "" + +#: rc_option_editor.cc:1038 +msgid "Make periodic backups of the session file" +msgstr "" + +#: rc_option_editor.cc:1043 +msgid "Session Management" +msgstr "" + +#: rc_option_editor.cc:1048 msgid "Always copy imported files" msgstr "Kopiowanie importowanych plików" -#: rc_option_editor.cc:1065 +#: rc_option_editor.cc:1055 +msgid "Default folder for new sessions:" +msgstr "" + +#: rc_option_editor.cc:1063 msgid "Maximum number of recent sessions" msgstr "" -#: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 +#: rc_option_editor.cc:1076 +msgid "Click gain level" +msgstr "" + +#: rc_option_editor.cc:1081 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "Automatyka" -#: rc_option_editor.cc:1088 +#: rc_option_editor.cc:1086 msgid "Thinning factor (larger value => less data)" msgstr "" -#: rc_option_editor.cc:1097 +#: rc_option_editor.cc:1095 msgid "Automation sampling interval (milliseconds)" msgstr "" -#: rc_option_editor.cc:1123 +#: rc_option_editor.cc:1107 +msgid "Keep record-enable engaged on stop" +msgstr "" + +#: rc_option_editor.cc:1116 +msgid "Stop recording when an xrun occurs" +msgstr "" + +#: rc_option_editor.cc:1121 msgid "" "When enabled %1 will stop recording if an over- or underrun is " "detected by the audio engine" msgstr "" -#: rc_option_editor.cc:1143 +#: rc_option_editor.cc:1127 +msgid "Create markers where xruns occur" +msgstr "" + +#: rc_option_editor.cc:1136 +msgid "Stop at the end of the session" +msgstr "" + +#: rc_option_editor.cc:1141 msgid "" "When enabled if %1 is not recording, it will stop the " "transport when it reaches the current session end marker\n" @@ -5333,11 +8608,11 @@ msgid "" "all times" msgstr "" -#: rc_option_editor.cc:1151 -msgid "Do seamless looping (not possible when slaved to MTC, JACK etc)" +#: rc_option_editor.cc:1149 +msgid "Do seamless looping (not possible when slaved to MTC, LTC etc)" msgstr "" -#: rc_option_editor.cc:1156 +#: rc_option_editor.cc:1154 msgid "" "When enabled this will loop by reading ahead and wrapping around at " "the loop point, preventing any need to do a transport locate at the end of " @@ -5347,31 +8622,39 @@ msgid "" "loop when %1 reaches the end which will often cause a small click or delay" msgstr "" -#: rc_option_editor.cc:1164 +#: rc_option_editor.cc:1162 msgid "Disable per-track record disarm while rolling" msgstr "" -#: rc_option_editor.cc:1168 +#: rc_option_editor.cc:1166 msgid "" "When enabled this will prevent you from accidentally stopping " "specific tracks recording during a take" msgstr "" -#: rc_option_editor.cc:1177 +#: rc_option_editor.cc:1171 +msgid "12dB gain reduction during fast-forward and fast-rewind" +msgstr "" + +#: rc_option_editor.cc:1175 msgid "" "This will reduce the unpleasant increase in perceived volume that occurs " "when fast-forwarding or rewinding through some kinds of audio" msgstr "" -#: rc_option_editor.cc:1181 +#: rc_option_editor.cc:1179 msgid "Sync/Slave" msgstr "" -#: rc_option_editor.cc:1195 +#: rc_option_editor.cc:1183 +msgid "External timecode source" +msgstr "" + +#: rc_option_editor.cc:1193 msgid "Match session video frame rate to external timecode" msgstr "" -#: rc_option_editor.cc:1201 +#: rc_option_editor.cc:1199 msgid "" "This option controls the value of the video frame rate while chasing " "an external timecode source.\n" @@ -5385,17 +8668,21 @@ msgid "" "external timecode standard and the session standard." msgstr "" -#: rc_option_editor.cc:1217 +#: rc_option_editor.cc:1209 +msgid "External timecode is sync locked" +msgstr "" + +#: rc_option_editor.cc:1215 msgid "" "When enabled indicates that the selected external timecode source " "shares sync (Black & Burst, Wordclock, etc) with the audio interface." msgstr "" -#: rc_option_editor.cc:1224 +#: rc_option_editor.cc:1222 msgid "Lock to 29.9700 fps instead of 30000/1001" msgstr "" -#: rc_option_editor.cc:1230 +#: rc_option_editor.cc:1228 msgid "" "When enabled the external timecode source is assumed to use 29.97 fps " "instead of 30000/1001.\n" @@ -5408,87 +8695,139 @@ msgid "" "variant of using exactly 29.97 fps has zero timecode drift.\n" msgstr "" -#: rc_option_editor.cc:1240 +#: rc_option_editor.cc:1238 msgid "LTC Reader" msgstr "" -#: rc_option_editor.cc:1244 +#: rc_option_editor.cc:1242 msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1269 +#: rc_option_editor.cc:1255 +msgid "LTC Generator" +msgstr "" + +#: rc_option_editor.cc:1260 +msgid "Enable LTC generator" +msgstr "" + +#: rc_option_editor.cc:1267 msgid "send LTC while stopped" msgstr "" -#: rc_option_editor.cc:1275 +#: rc_option_editor.cc:1273 msgid "" "When enabled %1 will continue to send LTC information even when the " "transport (playhead) is not moving" msgstr "" -#: rc_option_editor.cc:1285 +#: rc_option_editor.cc:1279 +msgid "LTC generator level" +msgstr "" + +#: rc_option_editor.cc:1283 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " "is 0dBu ^= -18dbFS in an EBU calibrated system" msgstr "" -#: rc_option_editor.cc:1305 +#: rc_option_editor.cc:1295 +msgid "Link selection of regions and tracks" +msgstr "" + +#: rc_option_editor.cc:1303 msgid "Move relevant automation when audio regions are moved" msgstr "" -#: rc_option_editor.cc:1313 +#: rc_option_editor.cc:1311 msgid "Show meters on tracks in the editor" msgstr "" -#: rc_option_editor.cc:1321 +#: rc_option_editor.cc:1319 msgid "Display master-meter in the toolbar" msgstr "" -#: rc_option_editor.cc:1328 +#: rc_option_editor.cc:1326 msgid "Regions in active edit groups are edited together" msgstr "" -#: rc_option_editor.cc:1329 +#: rc_option_editor.cc:1327 msgid "whenever they overlap in time" msgstr "" -#: rc_option_editor.cc:1330 +#: rc_option_editor.cc:1328 msgid "only if they have identical length, position and origin" msgstr "" -#: rc_option_editor.cc:1340 +#: rc_option_editor.cc:1338 msgid "Make rubberband selection rectangle snap to the grid" msgstr "" -#: rc_option_editor.cc:1357 +#: rc_option_editor.cc:1346 +msgid "Show waveforms in regions" +msgstr "" + +#: rc_option_editor.cc:1354 +msgid "Show gain envelopes in audio regions" +msgstr "" + +#: rc_option_editor.cc:1355 msgid "in all modes" msgstr "" -#: rc_option_editor.cc:1358 +#: rc_option_editor.cc:1356 msgid "only in region gain mode" msgstr "" -#: rc_option_editor.cc:1370 +#: rc_option_editor.cc:1363 +msgid "Waveform scale" +msgstr "" + +#: rc_option_editor.cc:1368 msgid "linear" msgstr "linearna" -#: rc_option_editor.cc:1390 +#: rc_option_editor.cc:1369 +msgid "logarithmic" +msgstr "" + +#: rc_option_editor.cc:1375 +msgid "Waveform shape" +msgstr "" + +#: rc_option_editor.cc:1380 +msgid "traditional" +msgstr "" + +#: rc_option_editor.cc:1381 +msgid "rectified" +msgstr "" + +#: rc_option_editor.cc:1388 msgid "Show waveforms for audio while it is being recorded" msgstr "" -#: rc_option_editor.cc:1398 +#: rc_option_editor.cc:1396 msgid "Show zoom toolbar" msgstr "" -#: rc_option_editor.cc:1406 +#: rc_option_editor.cc:1404 msgid "Color regions using their track's color" msgstr "" -#: rc_option_editor.cc:1414 +#: rc_option_editor.cc:1412 msgid "Update editor window during drags of the summary" msgstr "" -#: rc_option_editor.cc:1443 +#: rc_option_editor.cc:1420 +msgid "Synchronise editor and mixer selection" +msgstr "" + +#: rc_option_editor.cc:1427 +msgid "Name new markers" +msgstr "" + +#: rc_option_editor.cc:1433 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " "be set as it is created.\n" @@ -5496,234 +8835,414 @@ msgid "" "You can always rename markers by right-clicking on them" msgstr "" -#: rc_option_editor.cc:1449 +#: rc_option_editor.cc:1439 msgid "Auto-scroll editor window when dragging near its edges" msgstr "" -#: rc_option_editor.cc:1488 +#: rc_option_editor.cc:1446 +msgid "Buffering" +msgstr "" + +#: rc_option_editor.cc:1454 +msgid "Record monitoring handled by" +msgstr "" + +#: rc_option_editor.cc:1460 +msgid "via Audio Driver" +msgstr "" + +#: rc_option_editor.cc:1463 +msgid "ardour" +msgstr "" + +#: rc_option_editor.cc:1464 +msgid "audio hardware" +msgstr "" + +#: rc_option_editor.cc:1471 +msgid "Tape machine mode" +msgstr "" + +#: rc_option_editor.cc:1476 msgid "Connection of tracks and busses" msgstr "" -#: rc_option_editor.cc:1512 +#: rc_option_editor.cc:1481 +msgid "Auto-connect master/monitor busses" +msgstr "" + +#: rc_option_editor.cc:1488 +msgid "Connect track inputs" +msgstr "" + +#: rc_option_editor.cc:1493 +msgid "automatically to physical inputs" +msgstr "" + +#: rc_option_editor.cc:1494 rc_option_editor.cc:1507 +msgid "manually" +msgstr "" + +#: rc_option_editor.cc:1500 msgid "Connect track and bus outputs" msgstr "" -#: rc_option_editor.cc:1579 +#: rc_option_editor.cc:1505 +msgid "automatically to physical outputs" +msgstr "" + +#: rc_option_editor.cc:1506 +msgid "automatically to master bus" +msgstr "" + +#: rc_option_editor.cc:1511 +msgid "Denormals" +msgstr "" + +#: rc_option_editor.cc:1516 +msgid "Use DC bias to protect against denormals" +msgstr "" + +#: rc_option_editor.cc:1523 +msgid "Processor handling" +msgstr "" + +#: rc_option_editor.cc:1528 +msgid "no processor handling" +msgstr "" + +#: rc_option_editor.cc:1533 +msgid "use FlushToZero" +msgstr "" + +#: rc_option_editor.cc:1537 +msgid "use DenormalsAreZero" +msgstr "" + +#: rc_option_editor.cc:1541 +msgid "use FlushToZero and DenormalsAreZero" +msgstr "" + +#: rc_option_editor.cc:1551 +msgid "Silence plugins when the transport is stopped" +msgstr "" + +#: rc_option_editor.cc:1559 +msgid "Make new plugins active" +msgstr "" + +#: rc_option_editor.cc:1567 msgid "Enable automatic analysis of audio" msgstr "" -#: rc_option_editor.cc:1587 +#: rc_option_editor.cc:1575 msgid "Replicate missing region channels" msgstr "" -#: rc_option_editor.cc:1594 rc_option_editor.cc:1609 rc_option_editor.cc:1621 -#: rc_option_editor.cc:1633 rc_option_editor.cc:1645 rc_option_editor.cc:1649 -#: rc_option_editor.cc:1657 rc_option_editor.cc:1665 rc_option_editor.cc:1673 -#: rc_option_editor.cc:1675 rc_option_editor.cc:1683 rc_option_editor.cc:1691 -#: rc_option_editor.cc:1699 +#: rc_option_editor.cc:1582 rc_option_editor.cc:1597 rc_option_editor.cc:1609 +#: rc_option_editor.cc:1621 rc_option_editor.cc:1633 rc_option_editor.cc:1637 +#: rc_option_editor.cc:1645 rc_option_editor.cc:1653 rc_option_editor.cc:1661 +#: rc_option_editor.cc:1663 rc_option_editor.cc:1671 rc_option_editor.cc:1679 +#: rc_option_editor.cc:1687 msgid "Solo / mute" msgstr "" -#: rc_option_editor.cc:1597 +#: rc_option_editor.cc:1585 msgid "Solo-in-place mute cut (dB)" msgstr "" -#: rc_option_editor.cc:1604 +#: rc_option_editor.cc:1592 msgid "Solo controls are Listen controls" msgstr "" -#: rc_option_editor.cc:1625 +#: rc_option_editor.cc:1601 +msgid "Listen Position" +msgstr "" + +#: rc_option_editor.cc:1606 +msgid "after-fader (AFL)" +msgstr "" + +#: rc_option_editor.cc:1607 +msgid "pre-fader (PFL)" +msgstr "" + +#: rc_option_editor.cc:1613 msgid "PFL signals come from" msgstr "" -#: rc_option_editor.cc:1631 +#: rc_option_editor.cc:1618 +msgid "before pre-fader processors" +msgstr "" + +#: rc_option_editor.cc:1619 msgid "pre-fader but after pre-fader processors" msgstr "" -#: rc_option_editor.cc:1637 +#: rc_option_editor.cc:1625 msgid "AFL signals come from" msgstr "" -#: rc_option_editor.cc:1652 +#: rc_option_editor.cc:1630 +msgid "immediately post-fader" +msgstr "" + +#: rc_option_editor.cc:1631 +msgid "after post-fader processors (before pan)" +msgstr "" + +#: rc_option_editor.cc:1640 msgid "Exclusive solo" msgstr "" -#: rc_option_editor.cc:1660 +#: rc_option_editor.cc:1648 msgid "Show solo muting" msgstr "WyÅ›wietlanie wyciszania solo" -#: rc_option_editor.cc:1668 +#: rc_option_editor.cc:1656 msgid "Soloing overrides muting" msgstr "" -#: rc_option_editor.cc:1673 +#: rc_option_editor.cc:1661 msgid "Default track / bus muting options" msgstr "" -#: rc_option_editor.cc:1678 +#: rc_option_editor.cc:1666 msgid "Mute affects pre-fader sends" msgstr "" -#: rc_option_editor.cc:1686 +#: rc_option_editor.cc:1674 msgid "Mute affects post-fader sends" msgstr "" -#: rc_option_editor.cc:1702 +#: rc_option_editor.cc:1682 +msgid "Mute affects control outputs" +msgstr "" + +#: rc_option_editor.cc:1690 msgid "Mute affects main outputs" msgstr "" -#: rc_option_editor.cc:1726 +#: rc_option_editor.cc:1706 +msgid "Send MIDI Time Code" +msgstr "" + +#: rc_option_editor.cc:1714 msgid "Percentage either side of normal transport speed to transmit MTC" msgstr "" -#: rc_option_editor.cc:1735 +#: rc_option_editor.cc:1723 msgid "Obey MIDI Machine Control commands" msgstr "" -#: rc_option_editor.cc:1743 +#: rc_option_editor.cc:1731 msgid "Send MIDI Machine Control commands" msgstr "" -#: rc_option_editor.cc:1777 +#: rc_option_editor.cc:1739 +msgid "Send MIDI control feedback" +msgstr "" + +#: rc_option_editor.cc:1747 +msgid "Inbound MMC device ID" +msgstr "" + +#: rc_option_editor.cc:1756 +msgid "Outbound MMC device ID" +msgstr "" + +#: rc_option_editor.cc:1765 msgid "Initial program change" msgstr "" -#: rc_option_editor.cc:1786 +#: rc_option_editor.cc:1774 msgid "Display first MIDI bank/program as 0" msgstr "" -#: rc_option_editor.cc:1794 +#: rc_option_editor.cc:1782 msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "" -#: rc_option_editor.cc:1802 +#: rc_option_editor.cc:1790 msgid "Sound MIDI notes as they are selected" msgstr "" -#: rc_option_editor.cc:1813 +#: rc_option_editor.cc:1798 rc_option_editor.cc:1808 rc_option_editor.cc:1810 +msgid "User interaction" +msgstr "" + +#: rc_option_editor.cc:1801 msgid "" "Use translations of %1 messages\n" " (requires a restart of %1 to take effect)\n" " (if available for your language preferences)" msgstr "" -#: rc_option_editor.cc:1849 +#: rc_option_editor.cc:1808 +msgid "Keyboard" +msgstr "" + +#: rc_option_editor.cc:1818 +msgid "Control surface remote ID" +msgstr "" + +#: rc_option_editor.cc:1823 +msgid "assigned by user" +msgstr "" + +#: rc_option_editor.cc:1824 +msgid "follows order of mixer" +msgstr "" + +#: rc_option_editor.cc:1833 rc_option_editor.cc:1841 rc_option_editor.cc:1851 +#: rc_option_editor.cc:1872 rc_option_editor.cc:1881 rc_option_editor.cc:1889 +#: rc_option_editor.cc:1903 rc_option_editor.cc:1922 rc_option_editor.cc:1938 +#: rc_option_editor.cc:1954 rc_option_editor.cc:1968 rc_option_editor.cc:1982 +#: rc_option_editor.cc:1984 +msgid "Preferences|GUI" +msgstr "" + +#: rc_option_editor.cc:1836 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "" -#: rc_option_editor.cc:1857 +#: rc_option_editor.cc:1844 msgid "Show tooltips if mouse hovers over a control" msgstr "" -#: rc_option_editor.cc:1867 +#: rc_option_editor.cc:1854 msgid "GUI" msgstr "" -#: rc_option_editor.cc:1870 +#: rc_option_editor.cc:1857 msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" -#: rc_option_editor.cc:1897 +#: rc_option_editor.cc:1874 +msgid "Mixer Strip" +msgstr "" + +#: rc_option_editor.cc:1884 msgid "Use narrow strips in the mixer by default" msgstr "" -#: rc_option_editor.cc:1914 +#: rc_option_editor.cc:1893 +msgid "Peak hold time" +msgstr "" + +#: rc_option_editor.cc:1899 +msgid "short" +msgstr "" + +#: rc_option_editor.cc:1900 +msgid "medium" +msgstr "" + +#: rc_option_editor.cc:1901 msgid "long" msgstr "" -#: rc_option_editor.cc:1926 +#: rc_option_editor.cc:1907 +msgid "DPM fall-off" +msgstr "" + +#: rc_option_editor.cc:1913 msgid "slowest [6.6dB/sec]" msgstr "" -#: rc_option_editor.cc:1927 +#: rc_option_editor.cc:1914 msgid "slow [8.6dB/sec] (BBC PPM, EBU PPM)" msgstr "" -#: rc_option_editor.cc:1928 +#: rc_option_editor.cc:1915 msgid "slowish [12.0dB/sec] (DIN)" msgstr "" -#: rc_option_editor.cc:1929 +#: rc_option_editor.cc:1916 msgid "moderate [13.3dB/sec] (EBU Digi PPM, IRT Digi PPM)" msgstr "" -#: rc_option_editor.cc:1930 +#: rc_option_editor.cc:1917 msgid "medium [20dB/sec]" msgstr "" -#: rc_option_editor.cc:1931 +#: rc_option_editor.cc:1918 msgid "fast [32dB/sec]" msgstr "" -#: rc_option_editor.cc:1932 +#: rc_option_editor.cc:1919 msgid "faster [46dB/sec]" msgstr "" -#: rc_option_editor.cc:1933 +#: rc_option_editor.cc:1920 msgid "fastest [70dB/sec]" msgstr "" -#: rc_option_editor.cc:1939 +#: rc_option_editor.cc:1926 msgid "Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1944 rc_option_editor.cc:1960 +#: rc_option_editor.cc:1931 rc_option_editor.cc:1947 msgid "-24dBFS (SMPTE US: 4dBu = -20dBFS)" msgstr "" -#: rc_option_editor.cc:1945 rc_option_editor.cc:1961 +#: rc_option_editor.cc:1932 rc_option_editor.cc:1948 msgid "-20dBFS (SMPTE RP.0155)" msgstr "" -#: rc_option_editor.cc:1946 rc_option_editor.cc:1962 +#: rc_option_editor.cc:1933 rc_option_editor.cc:1949 msgid "-18dBFS (EBU, BBC)" msgstr "" -#: rc_option_editor.cc:1947 rc_option_editor.cc:1963 +#: rc_option_editor.cc:1934 rc_option_editor.cc:1950 msgid "-15dBFS (DIN)" msgstr "" -#: rc_option_editor.cc:1949 +#: rc_option_editor.cc:1936 msgid "" "Configure meter-marks and color-knee point for dBFS scale DPM, set reference " "level for IEC1/Nordic, IEC2 PPM and VU meter." msgstr "" -#: rc_option_editor.cc:1955 +#: rc_option_editor.cc:1942 msgid "IEC1/DIN Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1965 +#: rc_option_editor.cc:1952 msgid "Reference level for IEC1/DIN meter." msgstr "" -#: rc_option_editor.cc:1971 +#: rc_option_editor.cc:1958 msgid "VU Meter standard" msgstr "" -#: rc_option_editor.cc:1976 +#: rc_option_editor.cc:1963 msgid "0VU = -2dBu (France)" msgstr "" -#: rc_option_editor.cc:1977 +#: rc_option_editor.cc:1964 msgid "0VU = 0dBu (North America, Australia)" msgstr "" -#: rc_option_editor.cc:1978 +#: rc_option_editor.cc:1965 msgid "0VU = +4dBu (standard)" msgstr "" -#: rc_option_editor.cc:1979 +#: rc_option_editor.cc:1966 msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1993 +#: rc_option_editor.cc:1972 +msgid "Peak threshold [dBFS]" +msgstr "" + +#: rc_option_editor.cc:1980 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " "indicator will flash red." msgstr "" -#: rc_option_editor.cc:2000 +#: rc_option_editor.cc:1987 msgid "LED meter style" msgstr "" @@ -5731,6 +9250,10 @@ msgstr "" msgid "audition this region" msgstr "przesÅ‚uchaj ten obszar" +#: region_editor.cc:88 region_layering_order_editor.cc:74 +msgid "Position:" +msgstr "" + #: region_editor.cc:90 add_video_dialog.cc:170 msgid "End:" msgstr "" @@ -5747,10 +9270,22 @@ msgstr "" msgid "Sync point (absolute):" msgstr "" +#: region_editor.cc:98 +msgid "File start:" +msgstr "" + #: region_editor.cc:102 msgid "Sources:" msgstr "" +#: region_editor.cc:104 +msgid "Source:" +msgstr "" + +#: region_editor.cc:166 +msgid "Region '%1'" +msgstr "" + #: region_editor.cc:273 msgid "change region start position" msgstr "zmieÅ„ pozycjÄ™ poczÄ…tkowÄ… obszaru" @@ -5763,14 +9298,34 @@ msgstr "zmieÅ„ pozycjÄ™ koÅ„cowÄ… obszaru" msgid "change region length" msgstr "zmieÅ„ dÅ‚ugość obszaru" +#: region_editor.cc:403 region_editor.cc:415 +msgid "change region sync point" +msgstr "" + #: region_layering_order_editor.cc:41 msgid "RegionLayeringOrderEditor" msgstr "" +#: region_layering_order_editor.cc:54 +msgid "Region Name" +msgstr "" + +#: region_layering_order_editor.cc:71 +msgid "Track:" +msgstr "" + +#: region_layering_order_editor.cc:103 +msgid "Choose Top Region" +msgstr "" + #: region_view.cc:274 msgid "SilenceText" msgstr "" +#: region_view.cc:290 region_view.cc:309 +msgid "minutes" +msgstr "" + #: region_view.cc:293 region_view.cc:312 msgid "msecs" msgstr "" @@ -5796,6 +9351,10 @@ msgid "" " (shortest audible segment = %1 %2)" msgstr "" +#: return_ui.cc:103 +msgid "Return " +msgstr "" + #: rhythm_ferret.cc:49 msgid "Percussive Onset" msgstr "WystÄ…pienie perkusji" @@ -5820,6 +9379,10 @@ msgstr "" msgid "Complex Domain" msgstr "" +#: rhythm_ferret.cc:59 +msgid "Phase Deviation" +msgstr "" + #: rhythm_ferret.cc:60 msgid "Kullback-Liebler" msgstr "" @@ -5828,6 +9391,18 @@ msgstr "" msgid "Modified Kullback-Liebler" msgstr "" +#: rhythm_ferret.cc:66 +msgid "Split region" +msgstr "" + +#: rhythm_ferret.cc:67 +msgid "Snap regions" +msgstr "" + +#: rhythm_ferret.cc:68 +msgid "Conform regions" +msgstr "" + #: rhythm_ferret.cc:73 msgid "Rhythm Ferret" msgstr "" @@ -5836,10 +9411,26 @@ msgstr "" msgid "Analyze" msgstr "Analizuj" +#: rhythm_ferret.cc:114 +msgid "Detection function" +msgstr "" + +#: rhythm_ferret.cc:118 +msgid "Trigger gap" +msgstr "" + #: rhythm_ferret.cc:123 strip_silence_dialog.cc:68 msgid "Threshold" msgstr "Wartość progowa" +#: rhythm_ferret.cc:128 +msgid "Peak threshold" +msgstr "" + +#: rhythm_ferret.cc:133 +msgid "Silence threshold" +msgstr "" + #: rhythm_ferret.cc:138 msgid "Sensitivity" msgstr "CzuÅ‚ość" @@ -5856,18 +9447,38 @@ msgstr "" msgid "Track/bus Group" msgstr "" +#: route_group_dialog.cc:41 +msgid "Relative" +msgstr "" + #: route_group_dialog.cc:42 msgid "Muting" msgstr "" +#: route_group_dialog.cc:43 +msgid "Soloing" +msgstr "" + +#: route_group_dialog.cc:44 +msgid "Record enable" +msgstr "" + #: route_group_dialog.cc:45 time_info_box.cc:66 msgid "Selection" msgstr "Zaznaczenie" +#: route_group_dialog.cc:46 +msgid "Active state" +msgstr "" + #: route_group_dialog.cc:47 route_group_dialog.cc:76 theme_manager.cc:71 msgid "Color" msgstr "Kolor" +#: route_group_dialog.cc:53 +msgid "RouteGroupDialog" +msgstr "" + #: route_group_dialog.cc:92 msgid "Sharing" msgstr "" @@ -5906,6 +9517,10 @@ msgstr "" msgid "NO TRACK" msgstr "BRAK ÅšCIEÅ»KI" +#: route_params_ui.cc:613 route_params_ui.cc:614 +msgid "No Track or Bus Selected" +msgstr "" + #: route_time_axis.cc:97 msgid "g" msgstr "g" @@ -5926,6 +9541,34 @@ msgstr "" msgid "Record" msgstr "Nagrywanie" +#: route_time_axis.cc:210 +msgid "Route Group" +msgstr "" + +#: route_time_axis.cc:213 +msgid "MIDI Controllers and Automation" +msgstr "" + +#: route_time_axis.cc:390 +msgid "Show All Automation" +msgstr "" + +#: route_time_axis.cc:393 +msgid "Show Existing Automation" +msgstr "" + +#: route_time_axis.cc:396 +msgid "Hide All Automation" +msgstr "" + +#: route_time_axis.cc:405 +msgid "Processor automation" +msgstr "" + +#: route_time_axis.cc:424 +msgid "Color..." +msgstr "" + #: route_time_axis.cc:481 msgid "Overlaid" msgstr "" @@ -5934,22 +9577,94 @@ msgstr "" msgid "Stacked" msgstr "" +#: route_time_axis.cc:495 +msgid "Layers" +msgstr "" + +#: route_time_axis.cc:564 +msgid "Automatic (based on I/O connections)" +msgstr "" + +#: route_time_axis.cc:573 +msgid "(Currently: Existing Material)" +msgstr "" + +#: route_time_axis.cc:576 +msgid "(Currently: Capture Time)" +msgstr "" + +#: route_time_axis.cc:584 +msgid "Align With Existing Material" +msgstr "" + +#: route_time_axis.cc:589 +msgid "Align With Capture Time" +msgstr "" + #: route_time_axis.cc:594 msgid "Alignment" msgstr "Wyrównanie" +#: route_time_axis.cc:629 +msgid "Normal Mode" +msgstr "" + +#: route_time_axis.cc:635 +msgid "Tape Mode" +msgstr "" + +#: route_time_axis.cc:641 +msgid "Non-Layered Mode" +msgstr "" + #: route_time_axis.cc:654 route_time_axis.cc:1601 msgid "Playlist" msgstr "Lista odtwarzania" +#: route_time_axis.cc:979 +msgid "Rename Playlist" +msgstr "" + +#: route_time_axis.cc:980 +msgid "New name for playlist:" +msgstr "" + +#: route_time_axis.cc:1065 +msgid "New Copy Playlist" +msgstr "" + +#: route_time_axis.cc:1066 route_time_axis.cc:1119 +msgid "Name for new playlist:" +msgstr "" + +#: route_time_axis.cc:1118 +msgid "New Playlist" +msgstr "" + #: route_time_axis.cc:1309 msgid "You cannot create a track with that name as it is reserved for %1" msgstr "" +#: route_time_axis.cc:1490 +msgid "New Copy..." +msgstr "" + +#: route_time_axis.cc:1494 +msgid "New Take" +msgstr "" + +#: route_time_axis.cc:1495 +msgid "Copy Take" +msgstr "" + #: route_time_axis.cc:1500 msgid "Clear Current" msgstr "Wyczyść aktualnÄ…" +#: route_time_axis.cc:1503 +msgid "Select From All..." +msgstr "" + #: route_time_axis.cc:1591 msgid "Take: %1.%2" msgstr "" @@ -5958,10 +9673,22 @@ msgstr "" msgid "Underlays" msgstr "" +#: route_time_axis.cc:2294 +msgid "Remove \"%1\"" +msgstr "" + #: route_time_axis.cc:2344 route_time_axis.cc:2381 msgid "programming error: underlay reference pointer pairs are inconsistent!" msgstr "" +#: route_time_axis.cc:2408 +msgid "After-fade listen (AFL)" +msgstr "" + +#: route_time_axis.cc:2412 +msgid "Pre-fade listen (PFL)" +msgstr "" + #: route_time_axis.cc:2416 msgid "s" msgstr "s" @@ -5970,6 +9697,10 @@ msgstr "s" msgid "m" msgstr "w" +#: route_ui.cc:119 +msgid "Mute this track" +msgstr "" + #: route_ui.cc:123 msgid "Mute other (non-soloed) tracks" msgstr "" @@ -5982,18 +9713,58 @@ msgstr "" msgid "make mixer strips show sends to this bus" msgstr "" +#: route_ui.cc:138 +msgid "Monitor input" +msgstr "" + +#: route_ui.cc:144 +msgid "Monitor playback" +msgstr "" + #: route_ui.cc:591 msgid "Not connected to JACK - cannot engage record" msgstr "Brak połączenia z JACK - nie można rozpocząć nagrywania" +#: route_ui.cc:786 +msgid "Step Entry" +msgstr "" + #: route_ui.cc:859 msgid "Assign all tracks (prefader)" msgstr "" +#: route_ui.cc:863 +msgid "Assign all tracks and buses (prefader)" +msgstr "" + #: route_ui.cc:867 msgid "Assign all tracks (postfader)" msgstr "" +#: route_ui.cc:871 +msgid "Assign all tracks and buses (postfader)" +msgstr "" + +#: route_ui.cc:875 +msgid "Assign selected tracks (prefader)" +msgstr "" + +#: route_ui.cc:879 +msgid "Assign selected tracks and buses (prefader)" +msgstr "" + +#: route_ui.cc:882 +msgid "Assign selected tracks (postfader)" +msgstr "" + +#: route_ui.cc:886 +msgid "Assign selected tracks and buses (postfader)" +msgstr "" + +#: route_ui.cc:889 +msgid "Copy track/bus gains to sends" +msgstr "" + #: route_ui.cc:890 msgid "Set sends gain to -inf" msgstr "" @@ -6002,6 +9773,10 @@ msgstr "" msgid "Set sends gain to 0dB" msgstr "" +#: route_ui.cc:1211 +msgid "Solo Isolate" +msgstr "" + #: route_ui.cc:1240 msgid "Pre Fader" msgstr "Przed potencjometrem" @@ -6018,12 +9793,44 @@ msgstr "" msgid "Main Outs" msgstr "Główne wyjÅ›cia" +#: route_ui.cc:1390 +msgid "Color Selection" +msgstr "" + +#: route_ui.cc:1477 +msgid "" +"Do you really want to remove track \"%1\" ?\n" +"\n" +"You may also lose the playlist used by this track.\n" +"\n" +"(This action cannot be undone, and the session file will be overwritten)" +msgstr "" + +#: route_ui.cc:1479 +msgid "" +"Do you really want to remove bus \"%1\" ?\n" +"\n" +"(This action cannot be undone, and the session file will be overwritten)" +msgstr "" + +#: route_ui.cc:1487 +msgid "Remove track" +msgstr "" + +#: route_ui.cc:1489 +msgid "Remove bus" +msgstr "" + #: route_ui.cc:1516 msgid "" "The use of colons (':') is discouraged in track and bus names.\n" "Do you want to use this new name?" msgstr "" +#: route_ui.cc:1520 +msgid "Use the new name" +msgstr "" + #: route_ui.cc:1521 msgid "Re-edit the name" msgstr "" @@ -6032,14 +9839,34 @@ msgstr "" msgid "Rename Track" msgstr "ZmieÅ„ nazwÄ™ Å›cieżki" +#: route_ui.cc:1536 +msgid "Rename Bus" +msgstr "" + +#: route_ui.cc:1695 +msgid " latency" +msgstr "" + #: route_ui.cc:1708 msgid "Cannot create route template directory %1" msgstr "" +#: route_ui.cc:1714 +msgid "Save As Template" +msgstr "" + +#: route_ui.cc:1715 +msgid "Template name:" +msgstr "" + #: route_ui.cc:1788 msgid "Remote Control ID" msgstr "ID zdalnego sterowania" +#: route_ui.cc:1798 +msgid "Remote control ID:" +msgstr "" + #: route_ui.cc:1812 msgid "" "The remote control ID of %1 is: %2\n" @@ -6048,24 +9875,33 @@ msgid "" "The remote control ID of %3 cannot be changed." msgstr "" -#: route_ui.cc:1818 -msgid "" -"The remote control ID of %6 is: %3\n" -"\n" -"\n" -"Remote Control IDs are currently determined by track/bus ordering in %1\n" -"\n" -"%4Use the User Interaction tab of the Preferences window if you want to " -"change this%5" +#: route_ui.cc:1816 +msgid "the master bus" msgstr "" -#: route_ui.cc:1876 +#: route_ui.cc:1816 +msgid "the monitor bus" +msgstr "" + +#: route_ui.cc:1818 +msgid "" +"The remote control ID of %5 is: %2\n" +"\n" +"\n" +"Remote Control IDs are currently determined by track/bus ordering in " +"Ardour.\n" +"\n" +"%3Use the User Interaction tab of the Preferences window if you want to " +"change this%4" +msgstr "" + +#: route_ui.cc:1875 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " "to show menu." msgstr "" -#: route_ui.cc:1878 +#: route_ui.cc:1877 msgid "Click to show a menu of channels for inversion (phase reverse)" msgstr "" @@ -6073,10 +9909,150 @@ msgstr "" msgid "Select folder to search for media" msgstr "" +#: search_path_option.cc:44 +msgid "Click to add a new location" +msgstr "" + +#: search_path_option.cc:51 +msgid "the session folder" +msgstr "" + +#: send_ui.cc:126 +msgid "Send " +msgstr "" + +#: session_dialog.cc:66 +msgid "Session Setup" +msgstr "" + +#: session_dialog.cc:71 +msgid "Advanced options ..." +msgstr "" + +#: session_dialog.cc:267 +msgid "New Session" +msgstr "Nowa Sesja" + +#: session_dialog.cc:305 +msgid "Check the website for more..." +msgstr "" + +#: session_dialog.cc:308 +msgid "Click to open the program website in your web browser" +msgstr "" + +#: session_dialog.cc:328 +msgid "Sample Rate" +msgstr "" + +#: session_dialog.cc:329 +msgid "Disk Format" +msgstr "" + +#: session_dialog.cc:347 +msgid "Select session file" +msgstr "" + +#: session_dialog.cc:362 +msgid "Other Sessions" +msgstr "" + +#: session_dialog.cc:388 +msgid "Open" +msgstr "" + +#: session_dialog.cc:455 +msgid "Session name:" +msgstr "" + +#: session_dialog.cc:477 +msgid "Create session folder in:" +msgstr "" + +#: session_dialog.cc:500 +msgid "Select folder for session" +msgstr "" + +#: session_dialog.cc:529 +msgid "Use this template" +msgstr "" + +#: session_dialog.cc:532 +msgid "no template" +msgstr "" + +#: session_dialog.cc:664 session_dialog.cc:696 +msgid "32 bit float" +msgstr "" + +#: session_dialog.cc:667 session_dialog.cc:699 +msgid "24 bit" +msgstr "" + +#: session_dialog.cc:670 session_dialog.cc:702 +msgid "16 bit" +msgstr "" + +#: session_dialog.cc:741 session_dialog.cc:742 session_dialog.cc:743 +msgid "channels" +msgstr " " + +#: session_dialog.cc:757 +msgid "Busses" +msgstr "Szyny" + +#: session_dialog.cc:758 +msgid "Inputs" +msgstr "WejÅ›cia" + +#: session_dialog.cc:759 +msgid "Outputs" +msgstr "WyjÅ›cia" + +#: session_dialog.cc:767 +msgid "Create master bus" +msgstr "" + +#: session_dialog.cc:777 +msgid "Automatically connect to physical inputs" +msgstr "" + +#: session_dialog.cc:784 session_dialog.cc:843 +msgid "Use only" +msgstr "Ilość używanych kanałów:" + +#: session_dialog.cc:837 +msgid "Automatically connect outputs" +msgstr "" + +#: session_dialog.cc:859 +msgid "... to master bus" +msgstr "" + +#: session_dialog.cc:869 +msgid "... to physical outputs" +msgstr "" + +#: session_import_dialog.cc:64 +msgid "Import from Session" +msgstr "" + +#: session_import_dialog.cc:73 +msgid "Elements" +msgstr "" + +#: session_import_dialog.cc:110 +msgid "Cannot load XML for session from %1" +msgstr "" + #: session_import_dialog.cc:127 session_import_dialog.cc:211 msgid "Some elements had errors in them. Please see the log for details" msgstr "" +#: session_import_dialog.cc:163 +msgid "Import from session" +msgstr "" + #: session_import_dialog.cc:227 msgid "This will select all elements of this type!" msgstr "" @@ -6089,6 +10065,10 @@ msgstr "" msgid "Values (current value on top)" msgstr "" +#: session_metadata_dialog.cc:520 +msgid "User" +msgstr "" + #: session_metadata_dialog.cc:528 msgid "Email" msgstr "" @@ -6097,6 +10077,10 @@ msgstr "" msgid "Web" msgstr "" +#: session_metadata_dialog.cc:534 +msgid "Organization" +msgstr "" + #: session_metadata_dialog.cc:537 msgid "Country" msgstr "" @@ -6113,6 +10097,10 @@ msgstr "" msgid "Subtitle" msgstr "" +#: session_metadata_dialog.cc:560 +msgid "Grouping" +msgstr "" + #: session_metadata_dialog.cc:563 msgid "Artist" msgstr "" @@ -6121,6 +10109,14 @@ msgstr "" msgid "Genre" msgstr "" +#: session_metadata_dialog.cc:569 +msgid "Comment" +msgstr "" + +#: session_metadata_dialog.cc:572 +msgid "Copyright" +msgstr "" + #: session_metadata_dialog.cc:580 session_metadata_dialog.cc:585 msgid "Album" msgstr "" @@ -6133,6 +10129,10 @@ msgstr "" msgid "Album Artist" msgstr "" +#: session_metadata_dialog.cc:594 +msgid "Total Tracks" +msgstr "" + #: session_metadata_dialog.cc:597 msgid "Disc Subtitle" msgstr "" @@ -6145,6 +10145,10 @@ msgstr "" msgid "Total Discs" msgstr "" +#: session_metadata_dialog.cc:606 +msgid "Compilation" +msgstr "" + #: session_metadata_dialog.cc:609 msgid "ISRC" msgstr "" @@ -6165,6 +10169,14 @@ msgstr "" msgid "Conductor" msgstr "" +#: session_metadata_dialog.cc:631 +msgid "Remixer" +msgstr "" + +#: session_metadata_dialog.cc:634 +msgid "Arranger" +msgstr "" + #: session_metadata_dialog.cc:637 msgid "Engineer" msgstr "" @@ -6173,6 +10185,10 @@ msgstr "" msgid "Producer" msgstr "" +#: session_metadata_dialog.cc:643 +msgid "DJ Mixer" +msgstr "" + #: session_metadata_dialog.cc:646 msgid "Metadata|Mixer" msgstr "" @@ -6189,6 +10205,14 @@ msgstr "" msgid "Course" msgstr "" +#: session_metadata_dialog.cc:670 +msgid "Edit Session Metadata" +msgstr "" + +#: session_metadata_dialog.cc:701 +msgid "Import session metadata" +msgstr "" + #: session_metadata_dialog.cc:722 msgid "Choose session to import metadata from" msgstr "" @@ -6207,6 +10231,18 @@ msgstr "" msgid "Import all from:" msgstr "" +#: session_option_editor.cc:32 +msgid "Session Properties" +msgstr "" + +#: session_option_editor.cc:41 +msgid "Timecode Settings" +msgstr "" + +#: session_option_editor.cc:45 +msgid "Timecode frames-per-second" +msgstr "" + #: session_option_editor.cc:50 msgid "23.976" msgstr "23.976" @@ -6215,6 +10251,10 @@ msgstr "23.976" msgid "24" msgstr "24" +#: session_option_editor.cc:52 +msgid "24.975" +msgstr "" + #: session_option_editor.cc:53 msgid "25" msgstr "25" @@ -6247,6 +10287,22 @@ msgstr "60" msgid "Pull-up / pull-down" msgstr "" +#: session_option_editor.cc:70 +msgid "4.1667 + 0.1%" +msgstr "" + +#: session_option_editor.cc:71 +msgid "4.1667" +msgstr "" + +#: session_option_editor.cc:72 +msgid "4.1667 - 0.1%" +msgstr "" + +#: session_option_editor.cc:73 +msgid "0.1" +msgstr "" + #: session_option_editor.cc:74 msgid "none" msgstr "brak" @@ -6255,6 +10311,18 @@ msgstr "brak" msgid "-0.1" msgstr "" +#: session_option_editor.cc:76 +msgid "-4.1667 + 0.1%" +msgstr "" + +#: session_option_editor.cc:77 +msgid "-4.1667" +msgstr "" + +#: session_option_editor.cc:78 +msgid "-4.1667 - 0.1%" +msgstr "" + #: session_option_editor.cc:84 msgid "" "Use Video File's FPS Instead of Timecode Value for Timeline and Video " @@ -6266,10 +10334,22 @@ msgid "" "Apply Pull-Up/Down to Video Timeline and Video Monitor (Unless in JACK-sync)." msgstr "" +#: session_option_editor.cc:96 +msgid "Ext Timecode Offsets" +msgstr "" + +#: session_option_editor.cc:100 +msgid "Slave Timecode offset" +msgstr "" + #: session_option_editor.cc:107 msgid "The specified offset is added to the received timecode (MTC or LTC)." msgstr "" +#: session_option_editor.cc:113 +msgid "Timecode Generator offset" +msgstr "" + #: session_option_editor.cc:120 msgid "" "Specify an offset which is added to the generated timecode (so far only LTC)." @@ -6284,6 +10364,10 @@ msgid "" "%1 is JACK Time Master (provides Bar|Beat|Tick and other information to JACK)" msgstr "" +#: session_option_editor.cc:137 +msgid "Default crossfade type" +msgstr "" + #: session_option_editor.cc:142 msgid "Constant power (-3dB) crossfade" msgstr "" @@ -6296,6 +10380,32 @@ msgstr "" msgid "destructive-xfade-seconds" msgstr "" +#: session_option_editor.cc:149 +msgid "Destructive crossfade length" +msgstr "" + +#: session_option_editor.cc:158 +msgid "Region fades active" +msgstr "" + +#: session_option_editor.cc:165 +msgid "Region fades visible" +msgstr "" + +#: session_option_editor.cc:172 session_option_editor.cc:185 +#: session_option_editor.cc:199 session_option_editor.cc:201 +#: session_option_editor.cc:207 session_option_editor.cc:214 +msgid "Media" +msgstr "" + +#: session_option_editor.cc:172 +msgid "Audio file format" +msgstr "" + +#: session_option_editor.cc:176 +msgid "Sample format" +msgstr "" + #: session_option_editor.cc:181 msgid "32-bit floating point" msgstr "" @@ -6308,6 +10418,10 @@ msgstr "" msgid "16-bit integer" msgstr "" +#: session_option_editor.cc:189 +msgid "File type" +msgstr "" + #: session_option_editor.cc:194 msgid "Broadcast WAVE" msgstr "" @@ -6320,6 +10434,10 @@ msgstr "" msgid "WAVE-64" msgstr "" +#: session_option_editor.cc:201 +msgid "File locations" +msgstr "" + #: session_option_editor.cc:203 msgid "Search for audio files in:" msgstr "" @@ -6333,6 +10451,10 @@ msgid "" "Track Input Monitoring automatically follows transport state (\"auto-input\")" msgstr "" +#: session_option_editor.cc:227 +msgid "Use monitor section in this session" +msgstr "" + #: session_option_editor.cc:238 msgid "MIDI region copies are independent" msgstr "" @@ -6367,18 +10489,66 @@ msgstr "" msgid "replace both overlapping notes with a single note" msgstr "" +#: session_option_editor.cc:259 +msgid "Glue to bars and beats" +msgstr "" + +#: session_option_editor.cc:263 +msgid "Glue new markers to bars and beats" +msgstr "" + +#: session_option_editor.cc:270 +msgid "Glue new regions to bars and beats" +msgstr "" + +#: session_option_editor.cc:275 session_option_editor.cc:277 +#: session_option_editor.cc:284 session_option_editor.cc:291 +#: session_option_editor.cc:298 session_option_editor.cc:300 +#: session_option_editor.cc:307 session_option_editor.cc:314 +#: session_option_editor.cc:321 session_option_editor.cc:323 +msgid "Meterbridge" +msgstr "" + #: session_option_editor.cc:275 msgid "Route Display" msgstr "" +#: session_option_editor.cc:279 +msgid "Show Midi Tracks" +msgstr "" + +#: session_option_editor.cc:286 +msgid "Show Busses" +msgstr "" + +#: session_option_editor.cc:293 +msgid "Include Master Bus" +msgstr "" + #: session_option_editor.cc:298 msgid "Button Area" msgstr "" +#: session_option_editor.cc:302 +msgid "Rec-enable Button" +msgstr "" + +#: session_option_editor.cc:309 +msgid "Mute Button" +msgstr "" + +#: session_option_editor.cc:316 +msgid "Solo Button" +msgstr "" + #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" +#: session_option_editor.cc:325 +msgid "Track Name" +msgstr "" + #: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 msgid "as new tracks" msgstr "jako nowe Å›cieżki" @@ -6403,6 +10573,10 @@ msgstr "" msgid "Auto-play" msgstr "Autoodtwarzanie" +#: sfdb_ui.cc:129 sfdb_ui.cc:236 +msgid "Sound File Information" +msgstr "" + #: sfdb_ui.cc:141 msgid "Timestamp:" msgstr "" @@ -6435,10 +10609,18 @@ msgstr "" msgid "Search" msgstr "Szukaj" +#: sfdb_ui.cc:449 +msgid "Audio and MIDI files" +msgstr "" + #: sfdb_ui.cc:452 msgid "Audio files" msgstr "Pliki dźwiÄ™kowe" +#: sfdb_ui.cc:455 +msgid "MIDI files" +msgstr "" + #: sfdb_ui.cc:458 add_video_dialog.cc:132 msgid "All files" msgstr "Wszystkie pliki" @@ -6455,6 +10637,22 @@ msgstr "Åšcieżki" msgid "Search Tags" msgstr "Wyszukiwanie etykiet" +#: sfdb_ui.cc:531 +msgid "Sort:" +msgstr "" + +#: sfdb_ui.cc:539 +msgid "Longest" +msgstr "" + +#: sfdb_ui.cc:540 +msgid "Shortest" +msgstr "" + +#: sfdb_ui.cc:541 +msgid "Newest" +msgstr "" + #: sfdb_ui.cc:542 msgid "Oldest" msgstr "" @@ -6463,6 +10661,10 @@ msgstr "" msgid "Most downloaded" msgstr "" +#: sfdb_ui.cc:544 +msgid "Least downloaded" +msgstr "" + #: sfdb_ui.cc:545 msgid "Highest rated" msgstr "" @@ -6479,6 +10681,26 @@ msgstr "" msgid "Similar" msgstr "" +#: sfdb_ui.cc:567 +msgid "ID" +msgstr "" + +#: sfdb_ui.cc:568 add_video_dialog.cc:84 +msgid "Filename" +msgstr "" + +#: sfdb_ui.cc:570 +msgid "Duration" +msgstr "" + +#: sfdb_ui.cc:571 +msgid "Size" +msgstr "" + +#: sfdb_ui.cc:572 +msgid "Samplerate" +msgstr "" + #: sfdb_ui.cc:573 msgid "License" msgstr "" @@ -6526,6 +10748,10 @@ msgstr "" msgid "MB" msgstr "" +#: sfdb_ui.cc:1086 +msgid "GB" +msgstr "" + #: sfdb_ui.cc:1298 sfdb_ui.cc:1606 sfdb_ui.cc:1656 sfdb_ui.cc:1674 msgid "one track per file" msgstr "jedna Å›cieżka na plik" @@ -6538,6 +10764,10 @@ msgstr "jedna Å›cieżka na kanaÅ‚" msgid "sequence files" msgstr "" +#: sfdb_ui.cc:1312 sfdb_ui.cc:1664 +msgid "all files in one track" +msgstr "" + #: sfdb_ui.cc:1313 sfdb_ui.cc:1658 msgid "merge files" msgstr "połącz pliki" @@ -6564,10 +10794,38 @@ msgstr "" msgid "Copy files to session" msgstr "Skopiuj pliki do sesji" +#: sfdb_ui.cc:1551 sfdb_ui.cc:1714 +msgid "file timestamp" +msgstr "" + +#: sfdb_ui.cc:1552 sfdb_ui.cc:1716 +msgid "edit point" +msgstr "" + +#: sfdb_ui.cc:1553 sfdb_ui.cc:1718 +msgid "playhead" +msgstr "" + +#: sfdb_ui.cc:1554 +msgid "session start" +msgstr "" + #: sfdb_ui.cc:1559 msgid "Add files as ..." msgstr "" +#: sfdb_ui.cc:1581 +msgid "Insert at" +msgstr "" + +#: sfdb_ui.cc:1594 +msgid "Mapping" +msgstr "" + +#: sfdb_ui.cc:1612 +msgid "Conversion quality" +msgstr "" + #: sfdb_ui.cc:1624 sfdb_ui.cc:1730 msgid "Best" msgstr "Najlepsza" @@ -6588,33 +10846,71 @@ msgstr "Najszybciej" msgid "Shuttle speed control (Context-click for options)" msgstr "" +#: shuttle_control.cc:165 +msgid "Percent" +msgstr "" + #: shuttle_control.cc:173 msgid "Units" msgstr "" +#: shuttle_control.cc:179 shuttle_control.cc:599 +msgid "Sprung" +msgstr "" + +#: shuttle_control.cc:183 shuttle_control.cc:602 +msgid "Wheel" +msgstr "" + #: shuttle_control.cc:217 msgid "Maximum speed" msgstr "Maksymalna prÄ™dkość" +#: shuttle_control.cc:561 +msgid "Playing" +msgstr "" + +#: shuttle_control.cc:576 +#, c-format +msgid "<<< %+d semitones" +msgstr "" + +#: shuttle_control.cc:578 +#, c-format +msgid ">>> %+d semitones" +msgstr "" + +#: shuttle_control.cc:583 +msgid "Stopped" +msgstr "" + +#: splash.cc:73 +msgid "%1 loading ..." +msgstr "" + +#: speaker_dialog.cc:40 +msgid "Add Speaker" +msgstr "" + +#: speaker_dialog.cc:41 +msgid "Remove Speaker" +msgstr "" + #: speaker_dialog.cc:63 msgid "Azimuth:" msgstr "" -#: startup.cc:74 +#: startup.cc:72 msgid "" "Use an external mixer or the hardware mixer of your audio interface.\n" "%1 will play NO role in monitoring" msgstr "" -#: startup.cc:76 +#: startup.cc:74 msgid "Ask %1 to play back material as it is being recorded" msgstr "" -#: startup.cc:79 -msgid "I'd like more options for this session" -msgstr "" - -#: startup.cc:194 +#: startup.cc:143 msgid "" "Welcome to this BETA release of Ardour %1\n" "\n" @@ -6639,11 +10935,11 @@ msgid "" " http://ardour.org/support\n" msgstr "" -#: startup.cc:218 +#: startup.cc:167 msgid "This is a BETA RELEASE" msgstr "" -#: startup.cc:336 +#: startup.cc:176 msgid "" "%1 is a digital audio workstation. You can use it to " "record, edit and mix multi-track audio. You can produce your own CDs, mix " @@ -6653,15 +10949,15 @@ msgid "" "program. " msgstr "" -#: startup.cc:362 +#: startup.cc:202 msgid "Welcome to %1" msgstr "" -#: startup.cc:385 +#: startup.cc:225 msgid "Default folder for %1 sessions" msgstr "" -#: startup.cc:391 +#: startup.cc:231 msgid "" "Each project that you work on with %1 has its own folder.\n" "These can require a lot of disk space if you are recording audio.\n" @@ -6671,11 +10967,11 @@ msgid "" "(You can put new sessions anywhere, this is just a default)" msgstr "" -#: startup.cc:415 +#: startup.cc:254 msgid "Default folder for new sessions" msgstr "" -#: startup.cc:436 +#: startup.cc:275 msgid "" "While recording instruments or vocals, you probably want to listen to the\n" "signal as well as record it. This is called \"monitoring\". There are\n" @@ -6689,27 +10985,31 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:480 +#: startup.cc:296 +msgid "Monitoring Choices" +msgstr "" + +#: startup.cc:319 msgid "Use a Master bus directly" msgstr "" -#: startup.cc:482 +#: startup.cc:321 msgid "" "Connect the Master bus directly to your hardware outputs. This is preferable " "for simple usage." msgstr "" -#: startup.cc:491 +#: startup.cc:330 msgid "Use an additional Monitor bus" msgstr "" -#: startup.cc:494 +#: startup.cc:333 msgid "" "Use a Monitor bus between Master bus and hardware outputs for \n" "greater control in monitoring without affecting the mix." msgstr "" -#: startup.cc:516 +#: startup.cc:355 msgid "" "You can change this preference at any time via the Preferences dialog.\n" "You can also add or remove the monitor section to/from any session.\n" @@ -6717,46 +11017,10 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:573 -msgid "Check the website for more..." +#: startup.cc:366 +msgid "Monitor Section" msgstr "" -#: startup.cc:576 -msgid "Click to open the program website in your web browser" -msgstr "" - -#: startup.cc:884 -msgid "Use an existing session as a template:" -msgstr "" - -#: startup.cc:922 -msgid "New Session" -msgstr "Nowa Sesja" - -#: startup.cc:1093 -msgid "Browse:" -msgstr "PoÅ‚ożenie:" - -#: startup.cc:1129 startup.cc:1130 startup.cc:1131 -msgid "channels" -msgstr " " - -#: startup.cc:1145 -msgid "Busses" -msgstr "Szyny" - -#: startup.cc:1146 -msgid "Inputs" -msgstr "WejÅ›cia" - -#: startup.cc:1147 -msgid "Outputs" -msgstr "WyjÅ›cia" - -#: startup.cc:1172 startup.cc:1231 -msgid "Use only" -msgstr "Ilość używanych kanałów:" - #: step_entry.cc:59 msgid "Step Entry: %1" msgstr "" @@ -6785,6 +11049,10 @@ msgstr "" msgid "g-rest" msgstr "" +#: step_entry.cc:70 +msgid "back" +msgstr "" + #: step_entry.cc:81 step_entry.cc:84 msgid "+" msgstr "" @@ -6809,6 +11077,10 @@ msgstr "" msgid "Set note length to a sixteenth note" msgstr "" +#: step_entry.cc:195 +msgid "Set note length to a thirty-second note" +msgstr "" + #: step_entry.cc:196 msgid "Set note length to a sixty-fourth note" msgstr "" @@ -6853,6 +11125,14 @@ msgstr "" msgid "Extend selected notes by note length" msgstr "" +#: step_entry.cc:332 +msgid "Use undotted note lengths" +msgstr "" + +#: step_entry.cc:333 +msgid "Use dotted (* 1.5) note lengths" +msgstr "" + #: step_entry.cc:334 msgid "Use double-dotted (* 1.75) note lengths" msgstr "" @@ -6861,6 +11141,10 @@ msgstr "" msgid "Use triple-dotted (* 1.875) note lengths" msgstr "" +#: step_entry.cc:336 +msgid "Insert a note-length's rest" +msgstr "" + #: step_entry.cc:337 msgid "Insert a grid-unit's rest" msgstr "" @@ -6893,30 +11177,86 @@ msgstr "" msgid "1/Note" msgstr "" +#: step_entry.cc:414 +msgid "Octave" +msgstr "" + +#: step_entry.cc:597 +msgid "Insert Note A" +msgstr "" + #: step_entry.cc:598 msgid "Insert Note A-sharp" msgstr "" +#: step_entry.cc:599 +msgid "Insert Note B" +msgstr "" + +#: step_entry.cc:600 +msgid "Insert Note C" +msgstr "" + #: step_entry.cc:601 msgid "Insert Note C-sharp" msgstr "" +#: step_entry.cc:602 +msgid "Insert Note D" +msgstr "" + #: step_entry.cc:603 msgid "Insert Note D-sharp" msgstr "" +#: step_entry.cc:604 +msgid "Insert Note E" +msgstr "" + +#: step_entry.cc:605 +msgid "Insert Note F" +msgstr "" + #: step_entry.cc:606 msgid "Insert Note F-sharp" msgstr "" +#: step_entry.cc:607 +msgid "Insert Note G" +msgstr "" + #: step_entry.cc:608 msgid "Insert Note G-sharp" msgstr "" +#: step_entry.cc:610 +msgid "Insert a Note-length Rest" +msgstr "" + +#: step_entry.cc:611 +msgid "Insert a Snap-length Rest" +msgstr "" + #: step_entry.cc:613 step_entry.cc:614 msgid "Move to next octave" msgstr "" +#: step_entry.cc:616 +msgid "Move to Next Note Length" +msgstr "" + +#: step_entry.cc:617 +msgid "Move to Previous Note Length" +msgstr "" + +#: step_entry.cc:619 +msgid "Increase Note Length" +msgstr "" + +#: step_entry.cc:620 +msgid "Decrease Note Length" +msgstr "" + #: step_entry.cc:622 msgid "Move to Next Note Velocity" msgstr "" @@ -6981,6 +11321,22 @@ msgstr "" msgid "Set Note Length to Whole" msgstr "" +#: step_entry.cc:645 +msgid "Set Note Length to 1/2" +msgstr "" + +#: step_entry.cc:647 +msgid "Set Note Length to 1/3" +msgstr "" + +#: step_entry.cc:649 +msgid "Set Note Length to 1/4" +msgstr "" + +#: step_entry.cc:651 +msgid "Set Note Length to 1/8" +msgstr "" + #: step_entry.cc:653 msgid "Set Note Length to 1/16" msgstr "" @@ -7021,10 +11377,18 @@ msgstr "" msgid "Set Note Velocity to Fortississimo" msgstr "" +#: step_entry.cc:678 +msgid "Toggle Triple Notes" +msgstr "" + #: step_entry.cc:683 msgid "No Dotted Notes" msgstr "" +#: step_entry.cc:685 +msgid "Toggled Dotted Notes" +msgstr "" + #: step_entry.cc:687 msgid "Toggled Double-Dotted Notes" msgstr "" @@ -7033,6 +11397,10 @@ msgstr "" msgid "Toggled Triple-Dotted Notes" msgstr "" +#: step_entry.cc:692 +msgid "Toggle Chord Entry" +msgstr "" + #: step_entry.cc:694 msgid "Sustain Selected Notes by Note Length" msgstr "" @@ -7042,10 +11410,26 @@ msgstr "" msgid "L:%3d R:%3d Width:%d%%" msgstr "" +#: stereo_panner_editor.cc:35 +msgid "Stereo Panner" +msgstr "" + +#: stereo_panner_editor.cc:49 +msgid "Width" +msgstr "" + +#: strip_silence_dialog.cc:48 +msgid "Strip Silence" +msgstr "" + #: strip_silence_dialog.cc:79 msgid "Minimum length" msgstr "" +#: strip_silence_dialog.cc:87 +msgid "Fade length" +msgstr "" + #: tempo_dialog.cc:43 tempo_dialog.cc:58 msgid "bar:" msgstr "" @@ -7054,6 +11438,49 @@ msgstr "" msgid "beat:" msgstr "" +#: tempo_dialog.cc:45 tempo_dialog.cc:60 +msgid "Pulse note" +msgstr "" + +#: tempo_dialog.cc:55 +msgid "Edit Tempo" +msgstr "" + +#: tempo_dialog.cc:76 tempo_dialog.cc:77 tempo_dialog.cc:282 +#: tempo_dialog.cc:283 +msgid "whole" +msgstr "" + +#: tempo_dialog.cc:78 tempo_dialog.cc:79 tempo_dialog.cc:284 +#: tempo_dialog.cc:285 +msgid "second" +msgstr "" + +#: tempo_dialog.cc:80 tempo_dialog.cc:81 tempo_dialog.cc:286 +#: tempo_dialog.cc:287 +msgid "third" +msgstr "" + +#: tempo_dialog.cc:82 tempo_dialog.cc:83 tempo_dialog.cc:288 +#: tempo_dialog.cc:289 +msgid "quarter" +msgstr "" + +#: tempo_dialog.cc:84 tempo_dialog.cc:85 tempo_dialog.cc:290 +#: tempo_dialog.cc:291 +msgid "eighth" +msgstr "" + +#: tempo_dialog.cc:86 tempo_dialog.cc:87 tempo_dialog.cc:292 +#: tempo_dialog.cc:293 +msgid "sixteenth" +msgstr "" + +#: tempo_dialog.cc:88 tempo_dialog.cc:89 tempo_dialog.cc:294 +#: tempo_dialog.cc:295 +msgid "thirty-second" +msgstr "" + #: tempo_dialog.cc:90 tempo_dialog.cc:91 tempo_dialog.cc:296 #: tempo_dialog.cc:297 msgid "sixty-fourth" @@ -7064,6 +11491,10 @@ msgstr "" msgid "one-hundred-twenty-eighth" msgstr "" +#: tempo_dialog.cc:120 +msgid "Beats per minute:" +msgstr "" + #: tempo_dialog.cc:152 msgid "Tempo begins at" msgstr "" @@ -7072,6 +11503,22 @@ msgstr "" msgid "incomprehensible pulse note type (%1)" msgstr "" +#: tempo_dialog.cc:266 +msgid "Edit Meter" +msgstr "" + +#: tempo_dialog.cc:314 +msgid "Note value:" +msgstr "" + +#: tempo_dialog.cc:315 +msgid "Beats per bar:" +msgstr "" + +#: tempo_dialog.cc:330 +msgid "Meter begins at bar:" +msgstr "" + #: tempo_dialog.cc:441 msgid "incomprehensible meter note type (%1)" msgstr "" @@ -7088,10 +11535,18 @@ msgstr "" msgid "Restore Defaults" msgstr "" +#: theme_manager.cc:60 +msgid "Draw \"flat\" buttons" +msgstr "" + #: theme_manager.cc:61 msgid "All floating windows are dialogs" msgstr "" +#: theme_manager.cc:62 +msgid "Draw waveforms with color gradient" +msgstr "" + #: theme_manager.cc:68 msgid "Object" msgstr "Obiekt" @@ -7147,6 +11602,22 @@ msgstr "Okno rozciÄ…gania w czasie" msgid "Pitch Shift Audio" msgstr "" +#: time_fx_dialog.cc:76 +msgid "Time Stretch Audio" +msgstr "" + +#: time_fx_dialog.cc:104 transpose_dialog.cc:41 +msgid "Octaves:" +msgstr "" + +#: time_fx_dialog.cc:109 transpose_dialog.cc:46 +msgid "Semitones:" +msgstr "" + +#: time_fx_dialog.cc:114 +msgid "Cents:" +msgstr "" + #: time_fx_dialog.cc:122 msgid "Time|Shift" msgstr "" @@ -7159,6 +11630,10 @@ msgstr "" msgid "Stretch/Shrink" msgstr "RozciÄ…gnij/skurcz" +#: time_fx_dialog.cc:164 +msgid "Progress" +msgstr "" + #: time_info_box.cc:121 msgid "Start recording at auto-punch start" msgstr "Rozpocznij nagrywanie przy napotkaniu przełącznika" @@ -7171,6 +11646,10 @@ msgstr "Zatrzymaj nagrywanie na koÅ„cu przełącznika" msgid "programming error: request for non-existent audio range (%1)!" msgstr "" +#: transpose_dialog.cc:30 +msgid "Transpose MIDI" +msgstr "" + #: transpose_dialog.cc:55 msgid "Transpose" msgstr "Transponuj" @@ -7191,6 +11670,10 @@ msgstr "" msgid "Loading user ui configuration file %1" msgstr "" +#: ui_config.cc:137 +msgid "cannot read ui configuration file \"%1\"" +msgstr "" + #: ui_config.cc:142 msgid "user ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -7203,15 +11686,23 @@ msgstr "" msgid "Config file %1 not saved" msgstr "" -#: utils.cc:110 utils.cc:153 +#: utils.cc:111 utils.cc:154 msgid "bad XPM header %1" msgstr "" -#: utils.cc:292 utils.cc:324 +#: utils.cc:293 utils.cc:325 msgid "missing RGBA style for \"%1\"" msgstr "" -#: utils.cc:632 +#: utils.cc:598 +msgid "cannot find XPM file for %1" +msgstr "" + +#: utils.cc:624 +msgid "cannot find icon image for %1 using %2" +msgstr "" + +#: utils.cc:639 msgid "Caught exception while loading icon named %1" msgstr "" @@ -7219,6 +11710,14 @@ msgstr "" msgid "VerboseCanvasCursor" msgstr "" +#: add_video_dialog.cc:55 +msgid "Set Video Track" +msgstr "" + +#: add_video_dialog.cc:63 +msgid "Launch External Video Monitor" +msgstr "" + #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -7231,6 +11730,22 @@ msgstr "" msgid "VideoServerIndex" msgstr "" +#: add_video_dialog.cc:129 +msgid "Video files" +msgstr "" + +#: add_video_dialog.cc:164 +msgid "Video Information" +msgstr "" + +#: add_video_dialog.cc:167 +msgid "Start:" +msgstr "" + +#: add_video_dialog.cc:173 +msgid "Frame rate:" +msgstr "" + #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -7276,6 +11791,10 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" +#: video_monitor.cc:281 +msgid "Video Monitor: File Not Found." +msgstr "" + #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -7292,71 +11811,119 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:61 export_video_dialog.cc:73 +#: transcode_video_dialog.cc:55 +msgid "Transcode/Import Video File " +msgstr "" + +#: transcode_video_dialog.cc:57 +msgid "Output File:" +msgstr "" + +#: transcode_video_dialog.cc:60 export_video_dialog.cc:72 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:66 +#: transcode_video_dialog.cc:62 +msgid "Height = " +msgstr "" + +#: transcode_video_dialog.cc:65 msgid "Manual Override" msgstr "" -#: transcode_video_dialog.cc:70 export_video_dialog.cc:89 +#: transcode_video_dialog.cc:69 export_video_dialog.cc:88 msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:113 +#: transcode_video_dialog.cc:106 +msgid "File Information" +msgstr "" + +#: transcode_video_dialog.cc:112 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: transcode_video_dialog.cc:120 +#: transcode_video_dialog.cc:119 msgid "" "File-info can not be read. Most likely '%1' is not a valid video-file or an " "unsupported video codec or format." msgstr "" -#: transcode_video_dialog.cc:134 +#: transcode_video_dialog.cc:133 msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:138 +#: transcode_video_dialog.cc:135 +msgid "Duration:" +msgstr "" + +#: transcode_video_dialog.cc:137 msgid "Codec:" msgstr "" -#: transcode_video_dialog.cc:140 +#: transcode_video_dialog.cc:139 msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:181 +#: transcode_video_dialog.cc:154 +msgid "??" +msgstr "" + +#: transcode_video_dialog.cc:175 +msgid "Import Settings" +msgstr "" + +#: transcode_video_dialog.cc:180 msgid "Do Not Import Video" msgstr "" -#: transcode_video_dialog.cc:182 +#: transcode_video_dialog.cc:181 msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:198 +#: transcode_video_dialog.cc:183 +msgid "Import/Transcode Video to Session" +msgstr "" + +#: transcode_video_dialog.cc:197 msgid "Scale Video: Width = " msgstr "" -#: transcode_video_dialog.cc:220 +#: transcode_video_dialog.cc:204 +msgid "Original Width" +msgstr "" + +#: transcode_video_dialog.cc:219 msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:348 +#: transcode_video_dialog.cc:224 +msgid "Extract Audio:" +msgstr "" + +#: transcode_video_dialog.cc:344 +msgid "Extracting Audio.." +msgstr "" + +#: transcode_video_dialog.cc:347 msgid "Audio Extraction Failed." msgstr "" -#: transcode_video_dialog.cc:374 +#: transcode_video_dialog.cc:373 msgid "Transcoding Video.." msgstr "" -#: transcode_video_dialog.cc:408 +#: transcode_video_dialog.cc:407 msgid "Transcoding Failed." msgstr "" +#: transcode_video_dialog.cc:490 +msgid "Save Transcoded Video File" +msgstr "" + #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -7365,6 +11932,10 @@ msgstr "" msgid "Server Executable:" msgstr "" +#: video_server_dialog.cc:46 +msgid "Server Docroot:" +msgstr "" + #: video_server_dialog.cc:52 msgid "Don't show this dialog again. (Reset in Edit->Preferences)." msgstr "" @@ -7380,11 +11951,19 @@ msgstr "" msgid "Listen Address:" msgstr "" +#: video_server_dialog.cc:125 +msgid "Listen Port:" +msgstr "" + +#: video_server_dialog.cc:130 +msgid "Cache Size:" +msgstr "" + #: video_server_dialog.cc:136 msgid "" -"%1 relies on an external Video Server for the videotimeline.\n" -"The server configured in Edit -> Prefereces -> Video is not reachable.\n" -"Do you want ardour to launch 'harvid' on this machine?" +"%1 relies on an external video server for the videotimeline.\n" +"The server configured in Edit -> Preferences -> Video is not reachable.\n" +"Do you want %1 to launch 'harvid' on this machine?" msgstr "" #: video_server_dialog.cc:176 @@ -7413,83 +11992,183 @@ msgstr "" msgid "Confirm Overwrite" msgstr "" -#: export_video_dialog.cc:74 +#: utils_videotl.cc:64 +msgid "A file with the same name already exists. Do you want to overwrite it?" +msgstr "" + +#: utils_videotl.cc:74 utils_videotl.cc:90 +msgid "Cannot create video folder \"%1\" (%2)" +msgstr "" + +#: export_video_dialog.cc:65 +msgid "Export Video File " +msgstr "" + +#: export_video_dialog.cc:69 +msgid "Video:" +msgstr "" + +#: export_video_dialog.cc:73 msgid "Scale Video (W x H):" msgstr "" -#: export_video_dialog.cc:79 +#: export_video_dialog.cc:78 msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:81 +#: export_video_dialog.cc:79 +msgid "Normalize Audio" +msgstr "" + +#: export_video_dialog.cc:80 msgid "2 Pass Encoding" msgstr "" -#: export_video_dialog.cc:82 +#: export_video_dialog.cc:81 msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:85 +#: export_video_dialog.cc:83 +msgid "Deinterlace" +msgstr "" + +#: export_video_dialog.cc:84 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" -#: export_video_dialog.cc:86 +#: export_video_dialog.cc:85 msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:107 +#: export_video_dialog.cc:86 +msgid "Include Session Metadata" +msgstr "" + +#: export_video_dialog.cc:106 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: export_video_dialog.cc:145 +#: export_video_dialog.cc:116 +msgid "Output:" +msgstr "" + +#: export_video_dialog.cc:126 +msgid "Input:" +msgstr "" + +#: export_video_dialog.cc:137 +msgid "Audio:" +msgstr "" + +#: export_video_dialog.cc:139 +msgid "Master Bus" +msgstr "" + +#: export_video_dialog.cc:144 msgid "from the %1 session's start to the session's end" msgstr "" -#: export_video_dialog.cc:149 +#: export_video_dialog.cc:148 msgid "from 00:00:00:00 to the video's end" msgstr "" -#: export_video_dialog.cc:151 +#: export_video_dialog.cc:150 msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:198 +#: export_video_dialog.cc:153 +msgid "Selected range" +msgstr "" + +#: export_video_dialog.cc:193 +msgid "Settings:" +msgstr "" + +#: export_video_dialog.cc:201 +msgid "Range:" +msgstr "" + +#: export_video_dialog.cc:204 +msgid "Preset:" +msgstr "" + +#: export_video_dialog.cc:207 msgid "Video Codec:" msgstr "" -#: export_video_dialog.cc:494 +#: export_video_dialog.cc:210 +msgid "Video KBit/s:" +msgstr "" + +#: export_video_dialog.cc:213 +msgid "Audio Codec:" +msgstr "" + +#: export_video_dialog.cc:216 +msgid "Audio KBit/s:" +msgstr "" + +#: export_video_dialog.cc:219 +msgid "Audio Samplerate:" +msgstr "" + +#: export_video_dialog.cc:395 +msgid "Normalizing audio" +msgstr "" + +#: export_video_dialog.cc:399 +msgid "Exporting audio" +msgstr "" + +#: export_video_dialog.cc:445 +msgid "Exporting Audio..." +msgstr "" + +#: export_video_dialog.cc:502 msgid "" "Export Video: Cannot query duration of video-file, using duration from " "timeline instead." msgstr "" -#: export_video_dialog.cc:523 +#: export_video_dialog.cc:532 +msgid "Export Video: export-range does not include video." +msgstr "" + +#: export_video_dialog.cc:544 msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" -#: export_video_dialog.cc:562 +#: export_video_dialog.cc:583 msgid "Encoding Video..." msgstr "" -#: export_video_dialog.cc:581 +#: export_video_dialog.cc:602 msgid "Export Video: Video input file cannot be read." msgstr "" -#: export_video_dialog.cc:679 +#: export_video_dialog.cc:695 msgid "Encoding Video.. Pass 1/2" msgstr "" -#: export_video_dialog.cc:691 +#: export_video_dialog.cc:707 msgid "Encoding Video.. Pass 2/2" msgstr "" -#: export_video_dialog.cc:779 +#: export_video_dialog.cc:814 msgid "Transcoding failed." msgstr "" +#: export_video_dialog.cc:983 export_video_dialog.cc:1003 +msgid "Save Exported Video File" +msgstr "" + +#: export_video_infobox.cc:30 +msgid "Video Export Info" +msgstr "" + #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -7506,3 +12185,117 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" + +#~ msgid "Starting audio engine" +#~ msgstr "Uruchamianie systemu dźwiÄ™ku" + +#~ msgid "disconnected" +#~ msgstr "rozłączono" + +#~ msgid "Unable to start the session running" +#~ msgstr "Nie można wczytać sesji, gdyż jest aktualnie w użyciu." + +#~ msgid "Could not disconnect from JACK" +#~ msgstr "Nie można siÄ™ rozłączyć z JACK" + +#~ msgid "Could not reconnect to JACK" +#~ msgstr "Nie udaÅ‚o siÄ™ połączyć ponownie z JACK" + +#~ msgid "JACK" +#~ msgstr "JACK" + +#~ msgid "Reconnect" +#~ msgstr "Połącz ponownie" + +#~ msgid "Realtime" +#~ msgstr "Tryb czasu rzeczywistego" + +#~ msgid "Do not lock memory" +#~ msgstr "Bez blokowania pamiÄ™ci" + +#~ msgid "Unlock memory" +#~ msgstr "Odblokowanie pamiÄ™ci" + +#~ msgid "No zombies" +#~ msgstr "Brak zombi" + +#~ msgid "Provide monitor ports" +#~ msgstr "Monitorowanie portów" + +#~ msgid "Force 16 bit" +#~ msgstr "Wymuszanie 16 bitów" + +#~ msgid "H/W monitoring" +#~ msgstr "Monitorowanie H/W" + +#~ msgid "H/W metering" +#~ msgstr "Odmierzanie H/W" + +#~ msgid "Verbose output" +#~ msgstr "ZÅ‚ożone wyjÅ›cie" + +#~ msgid "8000Hz" +#~ msgstr "8000Hz" + +#~ msgid "22050Hz" +#~ msgstr "22050Hz" + +#~ msgid "44100Hz" +#~ msgstr "44100Hz" + +#~ msgid "48000Hz" +#~ msgstr "48000Hz" + +#~ msgid "88200Hz" +#~ msgstr "88200Hz" + +#~ msgid "96000Hz" +#~ msgstr "96000Hz" + +#~ msgid "192000Hz" +#~ msgstr "192000Hz" + +#~ msgid "Triangular" +#~ msgstr "Triangular" + +#~ msgid "Rectangular" +#~ msgstr "Rectangular" + +#~ msgid "Shaped" +#~ msgstr "Shaped" + +#~ msgid "Playback only" +#~ msgstr "Tylko odtwarzanie" + +#~ msgid "Recording only" +#~ msgstr "Tylko nagrywanie" + +#~ msgid "Ignore" +#~ msgstr "Ignorowanie" + +#~ msgid "Client timeout" +#~ msgstr "Limit czasu na opowiedź klienta" + +#~ msgid "" +#~ "No JACK server found anywhere on this system. Please install JACK and " +#~ "restart" +#~ msgstr "" +#~ "Nie znaleziono serwera JACK w systemie. ProszÄ™ zainstalować JACK i " +#~ "spróbować ponownie." + +#~ msgid "Server:" +#~ msgstr "Serwer:" + +#~ msgid "Device" +#~ msgstr "UrzÄ…dzenie" + +#~ msgid "Advanced" +#~ msgstr "Zaawansowane" + +#~ msgid "" +#~ "configuration files contain a JACK server path that doesn't exist (%1)" +#~ msgstr "" +#~ "pliki konfiguracyjne zawierajÄ… nieistniejÄ…ce poÅ‚ożenie serwera JACK (%1)" + +#~ msgid "Browse:" +#~ msgstr "PoÅ‚ożenie:" diff --git a/gtk2_ardour/po/pt.po b/gtk2_ardour/po/pt.po index 7289e49cd0..cb492107a2 100644 --- a/gtk2_ardour/po/pt.po +++ b/gtk2_ardour/po/pt.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: ardour 0.688.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2005-08-15 21:50-0000\n" "Last-Translator: Chris Ross, Alexander Franca & Leandro Marco\n" "Language-Team: Portuguese\n" @@ -51,6 +51,10 @@ msgstr "" msgid "Chris Cannam" msgstr "" +#: about.cc:130 +msgid "Jesse Chappell" +msgstr "" + #: about.cc:131 msgid "Thomas Charbonnel" msgstr "" @@ -211,6 +215,10 @@ msgstr "" msgid "Lincoln Spiteri" msgstr "" +#: about.cc:171 +msgid "Mike Start" +msgstr "" + #: about.cc:172 msgid "Mark Stewart" msgstr "" @@ -348,6 +356,10 @@ msgstr "" msgid "Loading menus from %1" msgstr "" +#: actions.cc:88 actions.cc:89 +msgid "badly formatted UI definition file: %1" +msgstr "" + #: actions.cc:91 msgid "%1 menu definition file not found" msgstr "" @@ -356,23 +368,84 @@ msgstr "" msgid "%1 will not work without a valid ardour.menus file" msgstr "" +#: add_route_dialog.cc:53 route_params_ui.cc:500 +msgid "Add Track or Bus" +msgstr "" + +#: add_route_dialog.cc:56 +msgid "Configuration:" +msgstr "" + +#: add_route_dialog.cc:57 +msgid "Track mode:" +msgstr "" + #: add_route_dialog.cc:58 msgid "Instrument:" msgstr "" +#: add_route_dialog.cc:76 +msgid "Audio Tracks" +msgstr "" + +#: add_route_dialog.cc:77 +msgid "MIDI Tracks" +msgstr "" + +#: add_route_dialog.cc:78 +msgid "Audio+MIDI Tracks" +msgstr "" + +#: add_route_dialog.cc:79 +msgid "Busses" +msgstr "" + #: add_route_dialog.cc:101 msgid "Add:" msgstr "" +#: add_route_dialog.cc:114 time_fx_dialog.cc:91 add_video_dialog.cc:150 +#: video_server_dialog.cc:112 +msgid "Options" +msgstr "" + +#: add_route_dialog.cc:124 bundle_manager.cc:192 region_editor.cc:50 +#: route_group_dialog.cc:65 +msgid "Name:" +msgstr "" + +#: add_route_dialog.cc:154 +msgid "Group:" +msgstr "" + +#: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 +#: ardour_ui_ed.cc:476 engine_dialog.cc:236 rc_option_editor.cc:1446 +#: rc_option_editor.cc:1448 rc_option_editor.cc:1450 rc_option_editor.cc:1466 +#: rc_option_editor.cc:1468 rc_option_editor.cc:1476 rc_option_editor.cc:1478 +#: rc_option_editor.cc:1496 rc_option_editor.cc:1509 rc_option_editor.cc:1511 +#: rc_option_editor.cc:1513 rc_option_editor.cc:1544 rc_option_editor.cc:1546 +#: rc_option_editor.cc:1548 rc_option_editor.cc:1556 rc_option_editor.cc:1564 +#: rc_option_editor.cc:1572 +msgid "Audio" +msgstr "" + #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 -#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1707 -#: rc_option_editor.cc:1715 rc_option_editor.cc:1723 rc_option_editor.cc:1732 -#: rc_option_editor.cc:1740 rc_option_editor.cc:1748 rc_option_editor.cc:1756 -#: rc_option_editor.cc:1765 rc_option_editor.cc:1774 rc_option_editor.cc:1783 -#: rc_option_editor.cc:1791 rc_option_editor.cc:1799 +#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1695 +#: rc_option_editor.cc:1703 rc_option_editor.cc:1711 rc_option_editor.cc:1720 +#: rc_option_editor.cc:1728 rc_option_editor.cc:1736 rc_option_editor.cc:1744 +#: rc_option_editor.cc:1753 rc_option_editor.cc:1762 rc_option_editor.cc:1771 +#: rc_option_editor.cc:1779 rc_option_editor.cc:1787 msgid "MIDI" msgstr "MIDI" +#: add_route_dialog.cc:217 add_route_dialog.cc:230 add_route_dialog.cc:300 +msgid "Audio+MIDI" +msgstr "" + +#: add_route_dialog.cc:218 add_route_dialog.cc:233 add_route_dialog.cc:301 +msgid "Bus" +msgstr "" + #: add_route_dialog.cc:260 msgid "" "Audio+MIDI tracks are intended for use ONLY with plugins that use " @@ -387,10 +460,62 @@ msgstr "" msgid "Normal" msgstr "Normal" +#: add_route_dialog.cc:322 add_route_dialog.cc:340 +msgid "Non Layered" +msgstr "" + +#: add_route_dialog.cc:323 add_route_dialog.cc:342 +msgid "Tape" +msgstr "" + +#: add_route_dialog.cc:423 +msgid "Mono" +msgstr "" + +#: add_route_dialog.cc:427 +msgid "Stereo" +msgstr "" + +#: add_route_dialog.cc:451 +msgid "3 Channel" +msgstr "" + +#: add_route_dialog.cc:455 +msgid "4 Channel" +msgstr "" + +#: add_route_dialog.cc:459 +msgid "5 Channel" +msgstr "" + +#: add_route_dialog.cc:463 +msgid "6 Channel" +msgstr "" + +#: add_route_dialog.cc:467 +msgid "8 Channel" +msgstr "" + +#: add_route_dialog.cc:471 +msgid "12 Channel" +msgstr "" + #: add_route_dialog.cc:475 mixer_strip.cc:2131 msgid "Custom" msgstr "" +#: add_route_dialog.cc:508 add_route_dialog.cc:524 route_group_menu.cc:81 +msgid "New Group..." +msgstr "" + +#: add_route_dialog.cc:512 route_group_menu.cc:85 +msgid "No Group" +msgstr "" + +#: add_route_dialog.cc:588 +msgid "-none-" +msgstr "" + #: ambiguous_file_dialog.cc:30 msgid "Ambiguous File" msgstr "" @@ -416,6 +541,18 @@ msgstr "" msgid "Signal source" msgstr "" +#: analysis_window.cc:47 +msgid "Selected ranges" +msgstr "" + +#: analysis_window.cc:48 +msgid "Selected regions" +msgstr "" + +#: analysis_window.cc:50 +msgid "Display model" +msgstr "" + #: analysis_window.cc:51 msgid "Composite graphs for each track" msgstr "" @@ -428,11 +565,15 @@ msgstr "" msgid "Show frequency power range" msgstr "" +#: analysis_window.cc:55 +msgid "Normalize values" +msgstr "" + #: analysis_window.cc:59 msgid "FFT analysis window" msgstr "" -#: analysis_window.cc:60 editor.cc:1856 +#: analysis_window.cc:60 editor.cc:1857 msgid "Spectral Analysis" msgstr "" @@ -441,6 +582,11 @@ msgstr "" msgid "Track" msgstr "Trilha" +#: analysis_window.cc:68 editor_actions.cc:616 mixer_ui.cc:125 +#: mixer_ui.cc:1795 +msgid "Show" +msgstr "" + #: analysis_window.cc:135 msgid "Re-analyze data" msgstr "" @@ -449,10 +595,26 @@ msgstr "" msgid "button cannot watch state of non-existing Controllable\n" msgstr "" +#: ardour_ui.cc:180 +msgid "audition" +msgstr "" + +#: ardour_ui.cc:181 +msgid "solo" +msgstr "" + #: ardour_ui.cc:182 msgid "feedback" msgstr "" +#: ardour_ui.cc:187 speaker_dialog.cc:36 +msgid "Speaker Configuration" +msgstr "" + +#: ardour_ui.cc:188 theme_manager.cc:56 theme_manager.cc:64 +msgid "Theme Manager" +msgstr "" + #: ardour_ui.cc:189 keyeditor.cc:53 msgid "Key Bindings" msgstr "" @@ -461,6 +623,10 @@ msgstr "" msgid "Preferences" msgstr "" +#: ardour_ui.cc:191 ardour_ui.cc:197 +msgid "Add Tracks/Busses" +msgstr "" + #: ardour_ui.cc:192 msgid "About" msgstr "Sobre" @@ -469,27 +635,74 @@ msgstr "Sobre" msgid "Locations" msgstr "Localizações" -#: ardour_ui.cc:195 +#: ardour_ui.cc:194 route_params_ui.cc:58 route_params_ui.cc:606 +msgid "Tracks and Busses" +msgstr "" + +#: ardour_ui.cc:195 engine_dialog.cc:67 +msgid "Audio/MIDI Setup" +msgstr "" + +#: ardour_ui.cc:196 msgid "Properties" msgstr "" -#: ardour_ui.cc:197 bundle_manager.cc:263 +#: ardour_ui.cc:198 bundle_manager.cc:263 msgid "Bundle Manager" msgstr "" -#: ardour_ui.cc:198 big_clock_window.cc:35 +#: ardour_ui.cc:199 big_clock_window.cc:35 msgid "Big Clock" msgstr "Metrônomo" -#: ardour_ui.cc:202 +#: ardour_ui.cc:200 +msgid "Audio Connections" +msgstr "" + +#: ardour_ui.cc:201 +msgid "MIDI Connections" +msgstr "" + +#: ardour_ui.cc:203 msgid "Errors" msgstr "" -#: ardour_ui.cc:758 startup.cc:638 +#: ardour_ui.cc:436 +msgid "" +"The audio backend was shutdown because:\n" +"\n" +"%1" +msgstr "" + +#: ardour_ui.cc:438 +msgid "" +"The audio backend has either been shutdown or it\n" +"disconnected %1 because %1\n" +"was not fast enough. Try to restart\n" +"the audio backend and save the session." +msgstr "" + +#: ardour_ui.cc:758 +msgid "NSM server did not announce itself" +msgstr "" + +#: ardour_ui.cc:771 +msgid "NSM: no client ID provided" +msgstr "" + +#: ardour_ui.cc:778 +msgid "NSM: no session created" +msgstr "" + +#: ardour_ui.cc:801 +msgid "NSM: initialization failed" +msgstr "" + +#: ardour_ui.cc:840 startup.cc:379 msgid "%1 is ready for use" msgstr "" -#: ardour_ui.cc:806 +#: ardour_ui.cc:882 msgid "" "WARNING: Your system has a limit for maximum amount of locked memory. This " "might cause %1 to run out of memory before your system runs out of memory. \n" @@ -498,74 +711,130 @@ msgid "" "controlled by %2" msgstr "" -#: ardour_ui.cc:823 +#: ardour_ui.cc:899 msgid "Do not show this window again" msgstr "" -#: ardour_ui.cc:963 +#: ardour_ui.cc:943 +msgid "Don't quit" +msgstr "" + +#: ardour_ui.cc:944 +msgid "Just quit" +msgstr "" + +#: ardour_ui.cc:945 +msgid "Save and quit" +msgstr "" + +#: ardour_ui.cc:955 +msgid "" +"%1 was unable to save your session.\n" +"\n" +"If you still wish to quit, please use the\n" +"\n" +"\"Just quit\" option." +msgstr "" + +#: ardour_ui.cc:986 +msgid "Please wait while %1 cleans up..." +msgstr "" + +#: ardour_ui.cc:1004 +msgid "Unsaved Session" +msgstr "" + +#: ardour_ui.cc:1025 +msgid "" +"The session \"%1\"\n" +"has not been saved.\n" +"\n" +"Any changes made this time\n" +"will be lost unless you save it.\n" +"\n" +"What do you want to do?" +msgstr "" + +#: ardour_ui.cc:1028 +msgid "" +"The snapshot \"%1\"\n" +"has not been saved.\n" +"\n" +"Any changes made this time\n" +"will be lost unless you save it.\n" +"\n" +"What do you want to do?" +msgstr "" + +#: ardour_ui.cc:1042 msgid "Prompter" msgstr "" -#: ardour_ui.cc:1049 -msgid "disconnected" -msgstr "desconectado" - -#: ardour_ui.cc:1056 +#: ardour_ui.cc:1128 ardour_ui.cc:1136 #, c-format -msgid "JACK: %.1f kHz / %4.1f ms" +msgid "Audio: none" msgstr "" -#: ardour_ui.cc:1060 +#: ardour_ui.cc:1140 #, c-format -msgid "JACK: % kHz / %4.1f ms" +msgid "Audio: %.1f kHz / %4.1f ms" msgstr "" -#: ardour_ui.cc:1082 +#: ardour_ui.cc:1144 +#, c-format +msgid "Audio: % kHz / %4.1f ms" +msgstr "" + +#: ardour_ui.cc:1162 export_video_dialog.cc:67 +msgid "File:" +msgstr "" + +#: ardour_ui.cc:1166 msgid "BWF" msgstr "" -#: ardour_ui.cc:1085 +#: ardour_ui.cc:1169 msgid "WAV" msgstr "" -#: ardour_ui.cc:1088 +#: ardour_ui.cc:1172 msgid "WAV64" msgstr "" -#: ardour_ui.cc:1091 session_option_editor.cc:197 +#: ardour_ui.cc:1175 session_option_editor.cc:197 msgid "CAF" msgstr "" -#: ardour_ui.cc:1094 +#: ardour_ui.cc:1178 msgid "AIFF" msgstr "" -#: ardour_ui.cc:1097 +#: ardour_ui.cc:1181 msgid "iXML" msgstr "" -#: ardour_ui.cc:1100 +#: ardour_ui.cc:1184 msgid "RF64" msgstr "" -#: ardour_ui.cc:1108 +#: ardour_ui.cc:1192 msgid "32-float" msgstr "" -#: ardour_ui.cc:1111 +#: ardour_ui.cc:1195 msgid "24-int" msgstr "" -#: ardour_ui.cc:1114 +#: ardour_ui.cc:1198 msgid "16-int" msgstr "" -#: ardour_ui.cc:1133 +#: ardour_ui.cc:1217 #, c-format msgid "DSP: %5.1f%%" msgstr "" -#: ardour_ui.cc:1152 +#: ardour_ui.cc:1236 #, c-format msgid "" "Buffers: p:" @@ -573,185 +842,348 @@ msgid "" "\">%%%" msgstr "" -#: ardour_ui.cc:1190 +#: ardour_ui.cc:1277 +msgid "Disk: Unknown" +msgstr "" + +#: ardour_ui.cc:1279 msgid "Disk: 24hrs+" msgstr "" -#: ardour_ui.cc:1208 +#: ardour_ui.cc:1297 msgid "Disk: >24 hrs" msgstr "" -#: ardour_ui.cc:1451 +#: ardour_ui.cc:1308 +#, c-format +msgid "Disk: %02dh:%02dm:%02ds" +msgstr "" + +#: ardour_ui.cc:1334 +#, c-format +msgid "Timecode|TC: %s" +msgstr "" + +#: ardour_ui.cc:1451 ardour_ui.cc:1460 session_dialog.cc:322 +#: session_dialog.cc:327 +msgid "Recent Sessions" +msgstr "" + +#: ardour_ui.cc:1539 msgid "" -"%1 is not connected to JACK\n" +"%1 is not connected to any audio backend.\n" "You cannot open or close sessions in this condition" msgstr "" -#: ardour_ui.cc:1540 +#: ardour_ui.cc:1563 +msgid "Open Session" +msgstr "" + +#: ardour_ui.cc:1588 session_dialog.cc:353 session_import_dialog.cc:169 +#: session_metadata_dialog.cc:729 +msgid "%1 sessions" +msgstr "" + +#: ardour_ui.cc:1625 msgid "You cannot add a track without a session already loaded." msgstr "" "Você não pode adicionar uma trilha se uma sessão não estiver carregada." -#: ardour_ui.cc:2114 +#: ardour_ui.cc:1633 +msgid "could not create %1 new mixed track" +msgid_plural "could not create %1 new mixed tracks" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1639 ardour_ui.cc:1700 msgid "" -"The audio backend (JACK) was shutdown because:\n" -"\n" -"%1" +"There are insufficient JACK ports available\n" +"to create a new track or bus.\n" +"You should save %1, exit and\n" +"restart JACK with more ports." msgstr "" -#: ardour_ui.cc:2142 -msgid "Unable to start the session running" -msgstr "Impossível iniciar a sessão" +#: ardour_ui.cc:1674 +msgid "You cannot add a track or bus without a session already loaded." +msgstr "" -#: ardour_ui.cc:2247 +#: ardour_ui.cc:1683 +msgid "could not create %1 new audio track" +msgid_plural "could not create %1 new audio tracks" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1692 +msgid "could not create %1 new audio bus" +msgid_plural "could not create %1 new audio busses" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1816 +msgid "" +"Please create one or more tracks before trying to record.\n" +"You can do this with the \"Add Track or Bus\" option in the Session menu." +msgstr "" + +#: ardour_ui.cc:2193 +msgid "Take Snapshot" +msgstr "" + +#: ardour_ui.cc:2194 +msgid "Name of new snapshot" +msgstr "" + +#: ardour_ui.cc:2218 msgid "" "To ensure compatibility with various systems\n" "snapshot names may not contain a '%1' character" msgstr "" -#: ardour_ui.cc:2259 +#: ardour_ui.cc:2230 msgid "Confirm Snapshot Overwrite" msgstr "" -#: ardour_ui.cc:2263 utils_videotl.cc:67 +#: ardour_ui.cc:2231 +msgid "A snapshot already exists with that name. Do you want to overwrite it?" +msgstr "" + +#: ardour_ui.cc:2234 utils_videotl.cc:67 msgid "Overwrite" msgstr "" -#: ardour_ui.cc:2312 ardour_ui.cc:2692 ardour_ui.cc:2737 +#: ardour_ui.cc:2268 +msgid "Rename Session" +msgstr "" + +#: ardour_ui.cc:2269 +msgid "New session name" +msgstr "" + +#: ardour_ui.cc:2283 ardour_ui.cc:2684 ardour_ui.cc:2722 msgid "" "To ensure compatibility with various systems\n" "session names may not contain a '%1' character" msgstr "" -#: ardour_ui.cc:2320 +#: ardour_ui.cc:2291 msgid "" "That name is already in use by another directory/folder. Please try again." msgstr "" -#: ardour_ui.cc:2329 +#: ardour_ui.cc:2300 msgid "" "Renaming this session failed.\n" "Things could be seriously messed up at this point" msgstr "" -#: ardour_ui.cc:2442 +#: ardour_ui.cc:2411 +msgid "Save Template" +msgstr "" + +#: ardour_ui.cc:2412 +msgid "Name for template:" +msgstr "" + +#: ardour_ui.cc:2413 msgid "-template" msgstr "-esquema/template" -#: ardour_ui.cc:2728 +#: ardour_ui.cc:2451 +msgid "" +"This session\n" +"%1\n" +"already exists. Do you want to open it?" +msgstr "" + +#: ardour_ui.cc:2461 +msgid "Open Existing Session" +msgstr "" + +#: ardour_ui.cc:2712 msgid "There is no existing session at \"%1\"" msgstr "" -#: ardour_ui.cc:2815 +#: ardour_ui.cc:2804 msgid "Please wait while %1 loads your session" msgstr "" -#: ardour_ui.cc:2830 +#: ardour_ui.cc:2819 msgid "Port Registration Error" msgstr "" -#: ardour_ui.cc:2831 +#: ardour_ui.cc:2820 msgid "Click the Close button to try again." msgstr "" -#: ardour_ui.cc:2852 +#: ardour_ui.cc:2841 msgid "Session \"%1 (snapshot %2)\" did not load successfully" msgstr "A sessão \"%1 (instantâneo %2)\" não pôde ser carregada" -#: ardour_ui.cc:2858 +#: ardour_ui.cc:2848 msgid "Loading Error" msgstr "" -#: ardour_ui.cc:2859 -msgid "Click the Refresh button to try again." +#: ardour_ui.cc:2867 +msgid "" +"This session has been opened in read-only mode.\n" +"\n" +"You will not be able to record or save." msgstr "" -#: ardour_ui.cc:3041 +#: ardour_ui.cc:2873 +msgid "Read-only Session" +msgstr "" + +#: ardour_ui.cc:2931 +msgid "Could not create session in \"%1\"" +msgstr "" + +#: ardour_ui.cc:3031 msgid "No files were ready for clean-up" msgstr "" -#: ardour_ui.cc:3105 +#: ardour_ui.cc:3035 ardour_ui.cc:3045 ardour_ui.cc:3178 ardour_ui.cc:3185 +#: ardour_ui_ed.cc:104 +msgid "Clean-up" +msgstr "" + +#: ardour_ui.cc:3036 +msgid "" +"If this seems suprising, \n" +"check for any existing snapshots.\n" +"These may still include regions that\n" +"require some unused files to continue to exist." +msgstr "" + +#: ardour_ui.cc:3095 msgid "kilo" msgstr "" -#: ardour_ui.cc:3108 +#: ardour_ui.cc:3098 msgid "mega" msgstr "" -#: ardour_ui.cc:3111 +#: ardour_ui.cc:3101 msgid "giga" msgstr "" -#: ardour_ui.cc:3183 +#: ardour_ui.cc:3106 +msgid "" +"The following file was deleted from %2,\n" +"releasing %3 %4bytes of disk space" +msgid_plural "" +"The following %1 files were deleted from %2,\n" +"releasing %3 %4bytes of disk space" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:3113 +msgid "" +"The following file was not in use and \n" +"has been moved to: %2\n" +"\n" +"After a restart of %5\n" +"\n" +"Session -> Clean-up -> Flush Wastebasket\n" +"\n" +"will release an additional %3 %4bytes of disk space.\n" +msgid_plural "" +"The following %1 files were not in use and \n" +"have been moved to: %2\n" +"\n" +"After a restart of %5\n" +"\n" +"Session -> Clean-up -> Flush Wastebasket\n" +"\n" +"will release an additional %3 %4bytes of disk space.\n" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:3173 msgid "Are you sure you want to clean-up?" msgstr "" -#: ardour_ui.cc:3198 +#: ardour_ui.cc:3180 +msgid "" +"Clean-up is a destructive operation.\n" +"ALL undo/redo information will be lost if you clean-up.\n" +"Clean-up will move all unused files to a \"dead\" location." +msgstr "" + +#: ardour_ui.cc:3188 msgid "CleanupDialog" msgstr "Limpar" -#: ardour_ui.cc:3245 +#: ardour_ui.cc:3218 +msgid "Cleaned Files" +msgstr "" + +#: ardour_ui.cc:3235 msgid "deleted file" msgstr "arquivo removido" -#: ardour_ui.cc:3337 +#: ardour_ui.cc:3381 msgid "" "Video-Server was not launched by Ardour. The request to stop it is ignored." msgstr "" -#: ardour_ui.cc:3341 +#: ardour_ui.cc:3385 msgid "Stop Video-Server" msgstr "" -#: ardour_ui.cc:3342 +#: ardour_ui.cc:3386 msgid "Do you really want to stop the Video Server?" msgstr "" -#: ardour_ui.cc:3371 +#: ardour_ui.cc:3389 +msgid "Yes, Stop It" +msgstr "" + +#: ardour_ui.cc:3415 msgid "The Video Server is already started." msgstr "" -#: ardour_ui.cc:3373 +#: ardour_ui.cc:3417 msgid "" "An external Video Server is configured and can be reached. Not starting a " "new instance." msgstr "" -#: ardour_ui.cc:3381 ardour_ui.cc:3471 +#: ardour_ui.cc:3425 ardour_ui.cc:3515 msgid "" "Could not connect to the Video Server. Start it or configure its access URL " "in Edit -> Preferences." msgstr "" -#: ardour_ui.cc:3405 +#: ardour_ui.cc:3449 msgid "Specified docroot is not an existing directory." msgstr "" -#: ardour_ui.cc:3410 +#: ardour_ui.cc:3454 msgid "Given Video Server is not an executable file." msgstr "" -#: ardour_ui.cc:3443 +#: ardour_ui.cc:3487 msgid "Cannot launch the video-server" msgstr "" -#: ardour_ui.cc:3452 +#: ardour_ui.cc:3496 msgid "Video-server was started but does not respond to requests..." msgstr "" -#: ardour_ui.cc:3497 editor_audio_import.cc:632 +#: ardour_ui.cc:3541 editor_audio_import.cc:632 msgid "could not open %1" msgstr "não foi possível abrir %1" -#: ardour_ui.cc:3501 +#: ardour_ui.cc:3545 msgid "no video-file selected" msgstr "" -#: ardour_ui.cc:3673 +#: ardour_ui.cc:3717 msgid "Recording was stopped because your system could not keep up." msgstr "A gravação foi encerrada porque seu sistema não consegue acompanhar" -#: ardour_ui.cc:3702 +#: ardour_ui.cc:3746 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -760,7 +1192,7 @@ msgid "" "quickly enough to keep up with recording.\n" msgstr "" -#: ardour_ui.cc:3721 +#: ardour_ui.cc:3765 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -769,11 +1201,11 @@ msgid "" "quickly enough to keep up with playback.\n" msgstr "" -#: ardour_ui.cc:3761 +#: ardour_ui.cc:3805 msgid "Crash Recovery" msgstr "" -#: ardour_ui.cc:3762 +#: ardour_ui.cc:3806 msgid "" "This session appears to have been in the\n" "middle of recording when %1 or\n" @@ -784,30 +1216,42 @@ msgid "" "what you would like to do.\n" msgstr "" -#: ardour_ui.cc:3774 +#: ardour_ui.cc:3818 msgid "Ignore crash data" msgstr "" -#: ardour_ui.cc:3775 +#: ardour_ui.cc:3819 msgid "Recover from crash" msgstr "" -#: ardour_ui.cc:3796 +#: ardour_ui.cc:3839 +msgid "Sample Rate Mismatch" +msgstr "" + +#: ardour_ui.cc:3840 msgid "" "This session was created with a sample rate of %1 Hz, but\n" "%2 is currently running at %3 Hz. If you load this session,\n" "audio may be played at the wrong sample rate.\n" msgstr "" -#: ardour_ui.cc:3806 +#: ardour_ui.cc:3849 +msgid "Do not load session" +msgstr "" + +#: ardour_ui.cc:3850 msgid "Load session anyway" msgstr "" -#: ardour_ui.cc:3829 -msgid "Could not disconnect from JACK" -msgstr "Não foi possível se desconectar ao servidor JACK" +#: ardour_ui.cc:3877 +msgid "Could not disconnect from Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:4116 +#: ardour_ui.cc:3893 ardour_ui.cc:3896 +msgid "Could not reconnect to the Audio/MIDI engine" +msgstr "" + +#: ardour_ui.cc:4172 msgid "" "%4This is a session from an older version of %3%5\n" "\n" @@ -830,6 +1274,10 @@ msgstr "não foi possível iniciar o editor" msgid "UI: cannot setup mixer" msgstr "não foi possível iniciar o mixer" +#: ardour_ui2.cc:82 +msgid "UI: cannot setup meterbridge" +msgstr "" + #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "Reproduzir a partir do início" @@ -838,6 +1286,10 @@ msgstr "Reproduzir a partir do início" msgid "Stop playback" msgstr "Parar reprodução" +#: ardour_ui2.cc:132 +msgid "Toggle record" +msgstr "" + #: ardour_ui2.cc:133 msgid "Play range/selection" msgstr "Reproduzir intervalo/seleção" @@ -864,6 +1316,10 @@ msgstr "" msgid "Return to last playback start when stopped" msgstr "Ir para o início da última reprodução quando parar" +#: ardour_ui2.cc:139 +msgid "Playhead follows Range Selections and Edits" +msgstr "" + #: ardour_ui2.cc:140 msgid "Be sensible about input monitoring" msgstr "Sensível à monitoração na entrada" @@ -904,6 +1360,10 @@ msgid "" "confirm; postfix the edit with '+' or '-' to enter delta times.\n" msgstr "" +#: ardour_ui2.cc:147 +msgid "Reset Level Meter" +msgstr "" + #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "" @@ -916,27 +1376,51 @@ msgstr "" msgid "[INFO]: " msgstr "" -#: ardour_ui2.cc:249 ardour_ui_ed.cc:380 +#: ardour_ui2.cc:247 ardour_ui_ed.cc:344 +msgid "Auto Return" +msgstr "" + +#: ardour_ui2.cc:249 ardour_ui_ed.cc:347 msgid "Follow Edits" msgstr "" -#: ardour_ui2.cc:628 rc_option_editor.cc:1004 rc_option_editor.cc:1022 -#: rc_option_editor.cc:1025 rc_option_editor.cc:1027 rc_option_editor.cc:1029 -#: rc_option_editor.cc:1037 rc_option_editor.cc:1045 rc_option_editor.cc:1047 -#: rc_option_editor.cc:1055 rc_option_editor.cc:1062 rc_option_editor.cc:1071 -#: rc_option_editor.cc:1073 rc_option_editor.cc:1075 rc_option_editor.cc:1083 -#: rc_option_editor.cc:1085 rc_option_editor.cc:1094 +#: ardour_ui2.cc:628 rc_option_editor.cc:1002 rc_option_editor.cc:1020 +#: rc_option_editor.cc:1023 rc_option_editor.cc:1025 rc_option_editor.cc:1027 +#: rc_option_editor.cc:1035 rc_option_editor.cc:1043 rc_option_editor.cc:1045 +#: rc_option_editor.cc:1053 rc_option_editor.cc:1060 rc_option_editor.cc:1069 +#: rc_option_editor.cc:1071 rc_option_editor.cc:1073 rc_option_editor.cc:1081 +#: rc_option_editor.cc:1083 rc_option_editor.cc:1092 #: session_option_editor.cc:234 session_option_editor.cc:236 #: session_option_editor.cc:257 session_option_editor.cc:259 #: session_option_editor.cc:261 session_option_editor.cc:268 msgid "Misc" msgstr "Miscelânea" -#: ardour_ui_dependents.cc:85 +#: ardour_ui_dependents.cc:69 +msgid "Setup Editor" +msgstr "" + +#: ardour_ui_dependents.cc:71 +msgid "Setup Mixer" +msgstr "" + +#: ardour_ui_dependents.cc:77 msgid "Reload Session History" msgstr "" -#: ardour_ui_dialogs.cc:340 +#: ardour_ui_dialogs.cc:238 +msgid "Don't close" +msgstr "" + +#: ardour_ui_dialogs.cc:239 +msgid "Just close" +msgstr "" + +#: ardour_ui_dialogs.cc:240 +msgid "Save and close" +msgstr "" + +#: ardour_ui_dialogs.cc:339 msgid "This screen is not tall enough to display the mixer window" msgstr "" @@ -945,10 +1429,18 @@ msgid "Session" msgstr "Sessão" #: ardour_ui_ed.cc:106 editor_actions.cc:134 editor_regions.cc:115 -#: port_group.cc:457 session_option_editor.cc:82 session_option_editor.cc:89 +#: port_group.cc:458 session_option_editor.cc:82 session_option_editor.cc:89 msgid "Sync" msgstr "Sincronia" +#: ardour_ui_ed.cc:107 +msgid "Options" +msgstr "" + +#: ardour_ui_ed.cc:108 +msgid "Window" +msgstr "" + #: ardour_ui_ed.cc:109 msgid "Help" msgstr "" @@ -957,10 +1449,30 @@ msgstr "" msgid "Misc. Shortcuts" msgstr "" -#: ardour_ui_ed.cc:115 rc_option_editor.cc:1558 +#: ardour_ui_ed.cc:111 +msgid "Audio File Format" +msgstr "" + +#: ardour_ui_ed.cc:112 +msgid "File Type" +msgstr "" + +#: ardour_ui_ed.cc:113 export_format_dialog.cc:65 +msgid "Sample Format" +msgstr "" + +#: ardour_ui_ed.cc:114 rc_option_editor.cc:1814 rc_option_editor.cc:1826 +msgid "Control Surfaces" +msgstr "" + +#: ardour_ui_ed.cc:115 rc_option_editor.cc:1546 msgid "Plugins" msgstr "Entradas" +#: ardour_ui_ed.cc:116 rc_option_editor.cc:1889 +msgid "Metering" +msgstr "" + #: ardour_ui_ed.cc:117 msgid "Fall Off Rate" msgstr "" @@ -977,10 +1489,47 @@ msgstr "" msgid "New..." msgstr "" +#: ardour_ui_ed.cc:125 +msgid "Open..." +msgstr "" + +#: ardour_ui_ed.cc:126 +msgid "Recent..." +msgstr "" + #: ardour_ui_ed.cc:127 panner_editor.cc:29 playlist_selector.cc:64 msgid "Close" msgstr "Fechar" +#: ardour_ui_ed.cc:130 +msgid "Add Track or Bus..." +msgstr "" + +#: ardour_ui_ed.cc:135 +msgid "Open Video" +msgstr "" + +#: ardour_ui_ed.cc:138 +msgid "Remove Video" +msgstr "" + +#: ardour_ui_ed.cc:141 +msgid "Export To Video File" +msgstr "" + +#: ardour_ui_ed.cc:145 +msgid "Snapshot..." +msgstr "" + +#: ardour_ui_ed.cc:149 +msgid "Save As..." +msgstr "" + +#: ardour_ui_ed.cc:153 editor_actions.cc:1719 editor_markers.cc:858 +#: editor_snapshots.cc:123 mixer_strip.cc:1471 route_time_axis.cc:1485 +msgid "Rename..." +msgstr "" + #: ardour_ui_ed.cc:157 msgid "Save Template..." msgstr "Salvar Esquema..." @@ -993,105 +1542,178 @@ msgstr "" msgid "Edit Metadata..." msgstr "" +#: ardour_ui_ed.cc:166 +msgid "Import Metadata..." +msgstr "" + +#: ardour_ui_ed.cc:169 +msgid "Export To Audio File(s)..." +msgstr "" + +#: ardour_ui_ed.cc:172 +msgid "Stem export..." +msgstr "" + #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 -#: export_video_dialog.cc:72 +#: export_video_dialog.cc:71 msgid "Export" msgstr "Exportar" -#: ardour_ui_ed.cc:189 keyeditor.cc:253 rc_option_editor.cc:1472 -msgid "JACK" -msgstr "JACK" - -#: ardour_ui_ed.cc:190 route_params_ui.cc:105 -msgid "Latency" +#: ardour_ui_ed.cc:178 +msgid "Clean-up Unused Sources..." msgstr "" -#: ardour_ui_ed.cc:195 global_port_matrix.cc:207 io_selector.cc:210 -#: mixer_strip.cc:719 mixer_strip.cc:845 -msgid "Disconnect" -msgstr "Desconectar" +#: ardour_ui_ed.cc:182 +msgid "Flush Wastebasket" +msgstr "" -#: ardour_ui_ed.cc:222 +#: ardour_ui_ed.cc:189 msgid "Quit" msgstr "Sair" -#: ardour_ui_ed.cc:226 +#: ardour_ui_ed.cc:193 msgid "Maximise Editor Space" msgstr "" -#: ardour_ui_ed.cc:234 midi_tracer.cc:39 +#: ardour_ui_ed.cc:194 +msgid "Show Toolbars" +msgstr "" + +#: ardour_ui_ed.cc:197 mixer_ui.cc:1865 mixer_ui.cc:1871 +msgid "Window|Mixer" +msgstr "" + +#: ardour_ui_ed.cc:198 +msgid "Toggle Editor+Mixer" +msgstr "" + +#: ardour_ui_ed.cc:199 meterbridge.cc:230 meterbridge.cc:236 +msgid "Window|Meterbridge" +msgstr "" + +#: ardour_ui_ed.cc:201 midi_tracer.cc:42 msgid "MIDI Tracer" msgstr "" -#: ardour_ui_ed.cc:236 +#: ardour_ui_ed.cc:203 msgid "Chat" msgstr "" -#: ardour_ui_ed.cc:238 +#: ardour_ui_ed.cc:205 msgid "Help|Manual" msgstr "" -#: ardour_ui_ed.cc:239 +#: ardour_ui_ed.cc:206 msgid "Reference" msgstr "" -#: ardour_ui_ed.cc:241 plugin_ui.cc:418 +#: ardour_ui_ed.cc:208 plugin_ui.cc:415 msgid "Save" msgstr "Salvar" -#: ardour_ui_ed.cc:255 engine_dialog.cc:85 +#: ardour_ui_ed.cc:216 rc_option_editor.cc:1112 rc_option_editor.cc:1123 +#: rc_option_editor.cc:1132 rc_option_editor.cc:1145 rc_option_editor.cc:1158 +#: rc_option_editor.cc:1167 rc_option_editor.cc:1177 rc_option_editor.cc:1179 +#: rc_option_editor.cc:1189 rc_option_editor.cc:1205 rc_option_editor.cc:1218 +#: rc_option_editor.cc:1236 rc_option_editor.cc:1238 rc_option_editor.cc:1252 +#: rc_option_editor.cc:1255 rc_option_editor.cc:1257 rc_option_editor.cc:1274 +#: rc_option_editor.cc:1285 +msgid "Transport" +msgstr "" + +#: ardour_ui_ed.cc:222 msgid "Stop" msgstr "Parar" -#: ardour_ui_ed.cc:258 +#: ardour_ui_ed.cc:225 msgid "Roll" msgstr "" -#: ardour_ui_ed.cc:268 +#: ardour_ui_ed.cc:229 +msgid "Start/Stop" +msgstr "" + +#: ardour_ui_ed.cc:232 +msgid "Start/Continue/Stop" +msgstr "" + +#: ardour_ui_ed.cc:235 msgid "Stop and Forget Capture" msgstr "" -#: ardour_ui_ed.cc:282 +#: ardour_ui_ed.cc:245 +msgid "Transition To Roll" +msgstr "" + +#: ardour_ui_ed.cc:249 msgid "Transition To Reverse" msgstr "" -#: ardour_ui_ed.cc:306 +#: ardour_ui_ed.cc:253 +msgid "Play Loop Range" +msgstr "" + +#: ardour_ui_ed.cc:256 +msgid "Play Selected Range" +msgstr "" + +#: ardour_ui_ed.cc:259 +msgid "Play Selection w/Preroll" +msgstr "" + +#: ardour_ui_ed.cc:263 +msgid "Enable Record" +msgstr "" + +#: ardour_ui_ed.cc:266 +msgid "Start Recording" +msgstr "" + +#: ardour_ui_ed.cc:270 +msgid "Rewind" +msgstr "" + +#: ardour_ui_ed.cc:273 msgid "Rewind (Slow)" msgstr "" -#: ardour_ui_ed.cc:309 +#: ardour_ui_ed.cc:276 msgid "Rewind (Fast)" msgstr "" -#: ardour_ui_ed.cc:312 startup.cc:727 +#: ardour_ui_ed.cc:279 msgid "Forward" msgstr "" -#: ardour_ui_ed.cc:315 +#: ardour_ui_ed.cc:282 msgid "Forward (Slow)" msgstr "" -#: ardour_ui_ed.cc:318 +#: ardour_ui_ed.cc:285 msgid "Forward (Fast)" msgstr "" -#: ardour_ui_ed.cc:321 +#: ardour_ui_ed.cc:288 msgid "Goto Zero" msgstr "" -#: ardour_ui_ed.cc:327 +#: ardour_ui_ed.cc:291 +msgid "Goto Start" +msgstr "" + +#: ardour_ui_ed.cc:294 msgid "Goto End" msgstr "" -#: ardour_ui_ed.cc:330 +#: ardour_ui_ed.cc:297 msgid "Goto Wall Clock" msgstr "" -#: ardour_ui_ed.cc:334 +#: ardour_ui_ed.cc:301 msgid "Focus On Clock" msgstr "" -#: ardour_ui_ed.cc:338 ardour_ui_ed.cc:347 audio_clock.cc:2046 editor.cc:237 +#: ardour_ui_ed.cc:305 ardour_ui_ed.cc:314 audio_clock.cc:2046 editor.cc:237 #: editor_actions.cc:544 editor_actions.cc:553 export_timespan_selector.cc:88 #: session_option_editor.cc:41 session_option_editor.cc:61 #: session_option_editor.cc:80 session_option_editor.cc:96 @@ -1100,77 +1722,146 @@ msgstr "" msgid "Timecode" msgstr "" -#: ardour_ui_ed.cc:357 mixer_strip.cc:1905 route_ui.cc:137 +#: ardour_ui_ed.cc:307 ardour_ui_ed.cc:316 editor_actions.cc:542 +msgid "Bars & Beats" +msgstr "" + +#: ardour_ui_ed.cc:309 ardour_ui_ed.cc:318 +msgid "Minutes & Seconds" +msgstr "" + +#: ardour_ui_ed.cc:311 ardour_ui_ed.cc:320 audio_clock.cc:2050 editor.cc:238 +#: editor_actions.cc:543 +msgid "Samples" +msgstr "" + +#: ardour_ui_ed.cc:323 +msgid "Punch In" +msgstr "" + +#: ardour_ui_ed.cc:324 mixer_strip.cc:1905 route_ui.cc:137 #: time_info_box.cc:113 msgid "In" msgstr "Entrada" -#: ardour_ui_ed.cc:361 time_info_box.cc:114 +#: ardour_ui_ed.cc:327 +msgid "Punch Out" +msgstr "" + +#: ardour_ui_ed.cc:328 time_info_box.cc:114 msgid "Out" msgstr "Saídas" -#: ardour_ui_ed.cc:368 rc_option_editor.cc:1071 +#: ardour_ui_ed.cc:331 +msgid "Punch In/Out" +msgstr "" + +#: ardour_ui_ed.cc:332 +msgid "In/Out" +msgstr "" + +#: ardour_ui_ed.cc:335 rc_option_editor.cc:1069 msgid "Click" msgstr "Metrônomo" -#: ardour_ui_ed.cc:385 +#: ardour_ui_ed.cc:338 +msgid "Auto Input" +msgstr "" + +#: ardour_ui_ed.cc:341 +msgid "Auto Play" +msgstr "" + +#: ardour_ui_ed.cc:352 msgid "Sync Startup to Video" msgstr "" -#: ardour_ui_ed.cc:394 +#: ardour_ui_ed.cc:354 +msgid "Time Master" +msgstr "" + +#: ardour_ui_ed.cc:361 msgid "Toggle Record Enable Track %1" msgstr "" -#: ardour_ui_ed.cc:401 +#: ardour_ui_ed.cc:368 msgid "Percentage" msgstr "Percentual" -#: ardour_ui_ed.cc:402 shuttle_control.cc:169 +#: ardour_ui_ed.cc:369 shuttle_control.cc:169 msgid "Semitones" msgstr "Semitons" -#: ardour_ui_ed.cc:406 +#: ardour_ui_ed.cc:373 msgid "Send MTC" msgstr "Enviar MTC" -#: ardour_ui_ed.cc:408 +#: ardour_ui_ed.cc:375 msgid "Send MMC" msgstr "Enviar MMC" -#: ardour_ui_ed.cc:414 +#: ardour_ui_ed.cc:377 +msgid "Use MMC" +msgstr "" + +#: ardour_ui_ed.cc:379 rc_option_editor.cc:1698 +msgid "Send MIDI Clock" +msgstr "" + +#: ardour_ui_ed.cc:381 msgid "Send MIDI Feedback" msgstr "" -#: ardour_ui_ed.cc:420 +#: ardour_ui_ed.cc:387 msgid "Panic" msgstr "" -#: ardour_ui_ed.cc:561 +#: ardour_ui_ed.cc:472 +msgid "Wall Clock" +msgstr "" + +#: ardour_ui_ed.cc:473 msgid "Disk Space" msgstr "" -#: ardour_ui_ed.cc:562 +#: ardour_ui_ed.cc:474 msgid "DSP" msgstr "" -#: ardour_ui_ed.cc:563 +#: ardour_ui_ed.cc:475 msgid "Buffers" msgstr "" -#: ardour_ui_ed.cc:564 -msgid "JACK Sampling Rate and Latency" +#: ardour_ui_ed.cc:477 +msgid "Timecode Format" msgstr "" -#: ardour_ui_options.cc:65 +#: ardour_ui_ed.cc:478 +msgid "File Format" +msgstr "" + +#: ardour_ui_options.cc:61 msgid "" "It is not possible to use JACK as the the sync source\n" "when the pull up/down setting is non-zero." msgstr "" -#: ardour_ui_options.cc:484 +#: ardour_ui_options.cc:317 +msgid "Internal" +msgstr "" + +#: ardour_ui_options.cc:468 +msgid "Enable/Disable external positional sync" +msgstr "" + +#: ardour_ui_options.cc:470 msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "" +#: audio_clock.cc:1012 audio_clock.cc:1031 +msgid "--pending--" +msgstr "" + #: audio_clock.cc:1083 msgid "SR" msgstr "" @@ -1212,11 +1903,23 @@ msgstr "Compassos:Batimentos" msgid "Minutes:Seconds" msgstr "Minutos:Segundos" +#: audio_clock.cc:2054 +msgid "Set From Playhead" +msgstr "" + +#: audio_clock.cc:2055 +msgid "Locate to This Time" +msgstr "" + #: audio_region_editor.cc:63 control_point_dialog.cc:49 rhythm_ferret.cc:125 #: rhythm_ferret.cc:130 rhythm_ferret.cc:135 msgid "dB" msgstr "" +#: audio_region_editor.cc:66 +msgid "Region gain:" +msgstr "" + #: audio_region_editor.cc:76 export_format_dialog.cc:43 msgid "dBFS" msgstr "" @@ -1229,10 +1932,26 @@ msgstr "" msgid "Calculating..." msgstr "" +#: audio_region_view.cc:1001 +msgid "add gain control point" +msgstr "" + +#: audio_time_axis.cc:389 +msgid "Fader" +msgstr "" + +#: audio_time_axis.cc:396 +msgid "Pan" +msgstr "" + #: automation_line.cc:252 automation_line.cc:435 msgid "automation event move" msgstr "mover evento de automação" +#: automation_line.cc:462 automation_line.cc:483 +msgid "automation range move" +msgstr "" + #: automation_line.cc:823 region_gain_line.cc:73 msgid "remove control point" msgstr "Remover ponto de controlo" @@ -1241,6 +1960,10 @@ msgstr "Remover ponto de controlo" msgid "Ignoring illegal points on AutomationLine \"%1\"" msgstr "" +#: automation_region_view.cc:160 automation_time_axis.cc:583 +msgid "add automation event" +msgstr "" + #: automation_time_axis.cc:146 msgid "automation state" msgstr "estado do automação" @@ -1249,15 +1972,33 @@ msgstr "estado do automação" msgid "hide track" msgstr "ocultar esta trilha" +#: automation_time_axis.cc:255 automation_time_axis.cc:307 +#: automation_time_axis.cc:496 gain_meter.cc:194 generic_pluginui.cc:454 +#: generic_pluginui.cc:775 panner_ui.cc:149 +msgid "Automation|Manual" +msgstr "" + #: automation_time_axis.cc:257 automation_time_axis.cc:318 -#: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 -#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 -#: generic_pluginui.cc:459 generic_pluginui.cc:748 midi_time_axis.cc:1488 -#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:153 +#: automation_time_axis.cc:501 editor.cc:1937 editor.cc:2014 +#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:197 +#: generic_pluginui.cc:457 generic_pluginui.cc:777 midi_time_axis.cc:1488 +#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:152 msgid "Play" msgstr "Reproduzir" -#: automation_time_axis.cc:351 generic_pluginui.cc:468 meter_patterns.cc:108 +#: automation_time_axis.cc:259 automation_time_axis.cc:329 +#: automation_time_axis.cc:506 gain_meter.cc:200 generic_pluginui.cc:460 +#: generic_pluginui.cc:779 panner_ui.cc:155 +msgid "Write" +msgstr "" + +#: automation_time_axis.cc:261 automation_time_axis.cc:340 +#: automation_time_axis.cc:511 gain_meter.cc:203 generic_pluginui.cc:463 +#: generic_pluginui.cc:781 panner_ui.cc:158 +msgid "Touch" +msgstr "" + +#: automation_time_axis.cc:351 generic_pluginui.cc:466 meter_patterns.cc:108 msgid "???" msgstr "" @@ -1278,8 +2019,12 @@ msgstr "Limpar" msgid "State" msgstr "Estado" -#: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 -#: editor.cc:1526 export_format_dialog.cc:476 +#: automation_time_axis.cc:531 +msgid "Discrete" +msgstr "" + +#: automation_time_axis.cc:537 editor.cc:1458 editor.cc:1465 editor.cc:1521 +#: editor.cc:1527 export_format_dialog.cc:476 msgid "Linear" msgstr "Linear" @@ -1292,17 +2037,40 @@ msgstr "Modo" msgid "Disassociate" msgstr "" -#: bundle_manager.cc:264 editor.cc:1974 editor_actions.cc:90 +#: bundle_manager.cc:185 +msgid "Edit Bundle" +msgstr "" + +#: bundle_manager.cc:200 +msgid "Direction:" +msgstr "" + +#: bundle_manager.cc:205 bundle_manager.cc:209 mixer_strip.cc:158 +#: mixer_strip.cc:2127 +msgid "Input" +msgstr "" + +#: bundle_manager.cc:206 bundle_manager.cc:211 bundle_manager.cc:245 +#: mixer_strip.cc:163 mixer_strip.cc:2130 +msgid "Output" +msgstr "" + +#: bundle_manager.cc:264 editor.cc:1978 editor_actions.cc:90 #: editor_actions.cc:100 msgid "Edit" msgstr "Editar" -#: bundle_manager.cc:265 editor.cc:5493 editor_actions.cc:310 -#: editor_actions.cc:368 plugin_ui.cc:419 processor_box.cc:2229 +#: bundle_manager.cc:265 editor.cc:5497 editor_actions.cc:310 +#: editor_actions.cc:368 plugin_ui.cc:416 processor_box.cc:2268 #: route_time_axis.cc:713 msgid "Delete" msgstr "Apagar" +#: bundle_manager.cc:271 bundle_manager.cc:439 editor_route_groups.cc:96 +#: editor_routes.cc:202 midi_list_editor.cc:106 session_metadata_dialog.cc:525 +msgid "Name" +msgstr "" + #: bundle_manager.cc:282 msgid "New" msgstr "Novo" @@ -1311,6 +2079,14 @@ msgstr "Novo" msgid "Bundle" msgstr "" +#: bundle_manager.cc:417 +msgid "Add Channel" +msgstr "" + +#: bundle_manager.cc:424 +msgid "Rename Channel" +msgstr "" + #: canvas-simpleline.c:111 canvas-simplerect.c:106 msgid "x1" msgstr "" @@ -1347,6 +2123,10 @@ msgstr "" msgid "color rgba" msgstr "" +#: canvas-simpleline.c:152 +msgid "color of line" +msgstr "" + #: canvas-simplerect.c:148 msgid "outline pixels" msgstr "" @@ -1367,10 +2147,18 @@ msgstr "" msgid "fill" msgstr "" +#: canvas-simplerect.c:172 +msgid "fill rectangle" +msgstr "" + #: canvas-simplerect.c:179 msgid "draw" msgstr "" +#: canvas-simplerect.c:180 +msgid "draw rectangle" +msgstr "" + #: canvas-simplerect.c:188 msgid "outline color rgba" msgstr "" @@ -1387,6 +2175,14 @@ msgstr "" msgid "color of fill" msgstr "" +#: configinfo.cc:28 +msgid "Build Configuration" +msgstr "" + +#: control_point_dialog.cc:33 +msgid "Control point" +msgstr "" + #: control_point_dialog.cc:45 msgid "Value" msgstr "Valor" @@ -1395,6 +2191,31 @@ msgstr "Valor" msgid "Note" msgstr "" +#: edit_note_dialog.cc:45 +msgid "Set selected notes to this channel" +msgstr "" + +#: edit_note_dialog.cc:46 +msgid "Set selected notes to this pitch" +msgstr "" + +#: edit_note_dialog.cc:47 +msgid "Set selected notes to this velocity" +msgstr "" + +#: edit_note_dialog.cc:49 +msgid "Set selected notes to this time" +msgstr "" + +#: edit_note_dialog.cc:51 +msgid "Set selected notes to this length" +msgstr "" + +#: edit_note_dialog.cc:58 midi_list_editor.cc:104 patch_change_dialog.cc:91 +#: step_entry.cc:393 +msgid "Channel" +msgstr "" + #: edit_note_dialog.cc:68 msgid "Pitch" msgstr "" @@ -1413,100 +2234,172 @@ msgstr "" msgid "Length" msgstr "" -#: editor.cc:137 editor.cc:3429 +#: edit_note_dialog.cc:165 +msgid "edit note" +msgstr "" + +#: editor.cc:137 editor.cc:3433 msgid "CD Frames" msgstr "Quadros de CD" -#: editor.cc:141 editor.cc:3437 +#: editor.cc:138 editor.cc:3435 +msgid "Timecode Frames" +msgstr "" + +#: editor.cc:139 editor.cc:3437 +msgid "Timecode Seconds" +msgstr "" + +#: editor.cc:140 editor.cc:3439 +msgid "Timecode Minutes" +msgstr "" + +#: editor.cc:141 editor.cc:3441 msgid "Seconds" msgstr "Segundos" -#: editor.cc:142 editor.cc:3439 +#: editor.cc:142 editor.cc:3443 msgid "Minutes" msgstr "Minutos" +#: editor.cc:143 editor.cc:3417 quantize_dialog.cc:37 quantize_dialog.cc:141 +msgid "Beats/128" +msgstr "" + +#: editor.cc:144 editor.cc:3415 quantize_dialog.cc:38 quantize_dialog.cc:143 +msgid "Beats/64" +msgstr "" + # ## msgstr "Saídas Principais" -#: editor.cc:145 editor.cc:3409 quantize_dialog.cc:39 quantize_dialog.cc:145 +#: editor.cc:145 editor.cc:3413 quantize_dialog.cc:39 quantize_dialog.cc:145 msgid "Beats/32" msgstr "Batimentos/32" -#: editor.cc:149 editor.cc:3401 quantize_dialog.cc:40 quantize_dialog.cc:147 +#: editor.cc:146 editor.cc:3411 +msgid "Beats/28" +msgstr "" + +#: editor.cc:147 editor.cc:3409 +msgid "Beats/24" +msgstr "" + +#: editor.cc:148 editor.cc:3407 +msgid "Beats/20" +msgstr "" + +#: editor.cc:149 editor.cc:3405 quantize_dialog.cc:40 quantize_dialog.cc:147 msgid "Beats/16" msgstr "Batimentos/16" -#: editor.cc:153 editor.cc:3393 quantize_dialog.cc:41 quantize_dialog.cc:149 +#: editor.cc:150 editor.cc:3403 +msgid "Beats/14" +msgstr "" + +#: editor.cc:151 editor.cc:3401 +msgid "Beats/12" +msgstr "" + +#: editor.cc:152 editor.cc:3399 +msgid "Beats/10" +msgstr "" + +#: editor.cc:153 editor.cc:3397 quantize_dialog.cc:41 quantize_dialog.cc:149 msgid "Beats/8" msgstr "Batimentos/8" -#: editor.cc:157 editor.cc:3385 quantize_dialog.cc:42 quantize_dialog.cc:151 +#: editor.cc:154 editor.cc:3395 +msgid "Beats/7" +msgstr "" + +#: editor.cc:155 editor.cc:3393 +msgid "Beats/6" +msgstr "" + +#: editor.cc:156 editor.cc:3391 +msgid "Beats/5" +msgstr "" + +#: editor.cc:157 editor.cc:3389 quantize_dialog.cc:42 quantize_dialog.cc:151 msgid "Beats/4" msgstr "Batimentos/4" -#: editor.cc:158 editor.cc:3383 quantize_dialog.cc:43 quantize_dialog.cc:153 +#: editor.cc:158 editor.cc:3387 quantize_dialog.cc:43 quantize_dialog.cc:153 msgid "Beats/3" msgstr "Batimentos/3" -#: editor.cc:160 editor.cc:3415 quantize_dialog.cc:45 quantize_dialog.cc:157 +#: editor.cc:159 editor.cc:3385 quantize_dialog.cc:44 quantize_dialog.cc:155 +msgid "Beats/2" +msgstr "" + +#: editor.cc:160 editor.cc:3419 quantize_dialog.cc:45 quantize_dialog.cc:157 msgid "Beats" msgstr "Batimentos" -#: editor.cc:161 editor.cc:3417 +#: editor.cc:161 editor.cc:3421 msgid "Bars" msgstr "Compassos" -#: editor.cc:162 editor.cc:3419 +#: editor.cc:162 editor.cc:3423 msgid "Marks" msgstr "Marcas" -#: editor.cc:163 editor.cc:3421 +#: editor.cc:163 editor.cc:3425 msgid "Region starts" msgstr "Começo de regiões" -#: editor.cc:164 editor.cc:3423 +#: editor.cc:164 editor.cc:3427 msgid "Region ends" msgstr "Fim de regiões" -#: editor.cc:165 editor.cc:3427 +#: editor.cc:165 editor.cc:3431 msgid "Region syncs" msgstr "Sincronizações de região" -#: editor.cc:166 editor.cc:3425 +#: editor.cc:166 editor.cc:3429 msgid "Region bounds" msgstr "Divisas de região" -#: editor.cc:171 editor.cc:3455 editor_actions.cc:485 +#: editor.cc:171 editor.cc:3459 editor_actions.cc:485 msgid "No Grid" msgstr "" -#: editor.cc:172 editor.cc:3457 editor_actions.cc:486 +#: editor.cc:172 editor.cc:3461 editor_actions.cc:486 msgid "Grid" msgstr "" -#: editor.cc:173 editor.cc:3459 editor_actions.cc:487 +#: editor.cc:173 editor.cc:3463 editor_actions.cc:487 msgid "Magnetic" msgstr "Magnético" -#: editor.cc:178 editor.cc:188 editor.cc:3498 editor.cc:3523 +#: editor.cc:178 editor.cc:188 editor.cc:3502 editor.cc:3527 #: editor_actions.cc:117 editor_actions.cc:468 msgid "Playhead" msgstr "Início" -#: editor.cc:179 editor.cc:3496 editor_actions.cc:470 +#: editor.cc:179 editor.cc:3500 editor_actions.cc:470 msgid "Marker" msgstr "Marca" -#: editor.cc:185 editor.cc:3517 mono_panner_editor.cc:42 +#: editor.cc:180 editor.cc:189 editor.cc:3529 editor_actions.cc:469 +msgid "Mouse" +msgstr "" + +#: editor.cc:185 editor.cc:3521 mono_panner_editor.cc:42 msgid "Left" msgstr "Esquerdo" -#: editor.cc:186 editor.cc:3519 mono_panner_editor.cc:47 +#: editor.cc:186 editor.cc:3523 mono_panner_editor.cc:47 msgid "Right" msgstr "Direito" -#: editor.cc:187 editor.cc:3521 +#: editor.cc:187 editor.cc:3525 msgid "Center" msgstr "Centro" +#: editor.cc:190 editor.cc:3094 editor.cc:3531 +msgid "Edit point" +msgstr "" + #: editor.cc:196 msgid "Mushy" msgstr "" @@ -1551,6 +2444,10 @@ msgstr "Marcas de Intervalos" msgid "Loop/Punch Ranges" msgstr "Intervalos Loop/Insersão" +#: editor.cc:244 editor_actions.cc:540 +msgid "CD Markers" +msgstr "" + #: editor.cc:245 msgid "Video Timeline" msgstr "" @@ -1559,194 +2456,493 @@ msgstr "" msgid "mode" msgstr "modo" -#: editor.cc:544 +#: editor.cc:541 +msgid "Regions" +msgstr "" + +#: editor.cc:542 +msgid "Tracks & Busses" +msgstr "" + +#: editor.cc:543 msgid "Snapshots" msgstr "Capturas" -#: editor.cc:1215 editor.cc:1225 editor.cc:4440 editor_actions.cc:130 +#: editor.cc:544 +msgid "Track & Bus Groups" +msgstr "" + +#: editor.cc:545 +msgid "Ranges & Marks" +msgstr "" + +#: editor.cc:690 editor.cc:5349 rc_option_editor.cc:1292 +#: rc_option_editor.cc:1300 rc_option_editor.cc:1308 rc_option_editor.cc:1316 +#: rc_option_editor.cc:1333 rc_option_editor.cc:1335 rc_option_editor.cc:1343 +#: rc_option_editor.cc:1351 rc_option_editor.cc:1371 rc_option_editor.cc:1383 +#: rc_option_editor.cc:1385 rc_option_editor.cc:1393 rc_option_editor.cc:1401 +#: rc_option_editor.cc:1409 rc_option_editor.cc:1417 rc_option_editor.cc:1432 +#: rc_option_editor.cc:1436 +msgid "Editor" +msgstr "" + +#: editor.cc:1215 editor.cc:1225 editor.cc:4444 editor_actions.cc:130 #: editor_actions.cc:1813 msgid "Loop" msgstr "Ciclo" -#: editor.cc:1231 editor.cc:1241 editor.cc:4467 editor_actions.cc:131 +#: editor.cc:1231 editor.cc:1241 editor.cc:4471 editor_actions.cc:131 #: time_info_box.cc:67 msgid "Punch" msgstr "Inserção" -#: editor.cc:1352 +#: editor.cc:1353 msgid "Linear (for highly correlated material)" msgstr "" -#: editor.cc:1362 editor.cc:1499 editor.cc:1561 +#: editor.cc:1363 editor.cc:1500 editor.cc:1562 msgid "Constant power" msgstr "" -#: editor.cc:1371 editor.cc:1492 editor.cc:1554 +#: editor.cc:1372 editor.cc:1493 editor.cc:1555 msgid "Symmetric" msgstr "" -#: editor.cc:1381 editor.cc:1474 editor.cc:1536 +#: editor.cc:1382 editor.cc:1475 editor.cc:1537 msgid "Slow" msgstr "Devegar" -#: editor.cc:1390 editor.cc:1483 editor.cc:1545 sfdb_ui.cc:1627 +#: editor.cc:1391 editor.cc:1484 editor.cc:1546 sfdb_ui.cc:1627 #: sfdb_ui.cc:1736 msgid "Fast" msgstr "Rapido" -#: editor.cc:1437 +#: editor.cc:1438 msgid "programming error: fade in canvas item has no regionview data pointer!" msgstr "" -#: editor.cc:1448 editor.cc:1512 +#: editor.cc:1449 editor.cc:1513 msgid "Deactivate" msgstr "Desativar" -#: editor.cc:1450 editor.cc:1514 +#: editor.cc:1451 editor.cc:1515 msgid "Activate" msgstr "Ativar" -#: editor.cc:1458 editor.cc:1521 +#: editor.cc:1459 editor.cc:1522 msgid "Slowest" msgstr "Menor" -#: editor.cc:1572 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 +#: editor.cc:1573 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 msgid "programming error: " msgstr "" -#: editor.cc:1673 editor.cc:1681 editor_ops.cc:3522 +#: editor.cc:1674 editor.cc:1682 editor_ops.cc:3522 msgid "Freeze" msgstr "Congelar" -#: editor.cc:1677 +#: editor.cc:1678 msgid "Unfreeze" msgstr "Descongelar" +#: editor.cc:1817 +msgid "Selected Regions" +msgstr "" + +#: editor.cc:1853 editor_markers.cc:895 +msgid "Play Range" +msgstr "" + +#: editor.cc:1854 editor_markers.cc:898 +msgid "Loop Range" +msgstr "" + +#: editor.cc:1863 editor_actions.cc:332 +msgid "Move Range Start to Previous Region Boundary" +msgstr "" + +#: editor.cc:1870 editor_actions.cc:339 +msgid "Move Range Start to Next Region Boundary" +msgstr "" + +#: editor.cc:1877 editor_actions.cc:346 +msgid "Move Range End to Previous Region Boundary" +msgstr "" + +#: editor.cc:1884 editor_actions.cc:353 +msgid "Move Range End to Next Region Boundary" +msgstr "" + #: editor.cc:1890 +msgid "Convert to Region In-Place" +msgstr "" + +#: editor.cc:1891 msgid "Convert to Region in Region List" msgstr "" +#: editor.cc:1894 editor_markers.cc:925 +msgid "Select All in Range" +msgstr "" + +#: editor.cc:1897 +msgid "Set Loop from Range" +msgstr "" + +#: editor.cc:1898 +msgid "Set Punch from Range" +msgstr "" + +#: editor.cc:1901 +msgid "Add Range Markers" +msgstr "" + +#: editor.cc:1904 +msgid "Crop Region to Range" +msgstr "" + +#: editor.cc:1905 +msgid "Fill Range with Region" +msgstr "" + +#: editor.cc:1906 editor_actions.cc:289 +msgid "Duplicate Range" +msgstr "" + #: editor.cc:1909 +msgid "Consolidate Range" +msgstr "" + +#: editor.cc:1910 msgid "Consolidate Range With Processing" msgstr "" #: editor.cc:1911 +msgid "Bounce Range to Region List" +msgstr "" + +#: editor.cc:1912 msgid "Bounce Range to Region List With Processing" msgstr "" -#: editor.cc:1931 +#: editor.cc:1913 editor_markers.cc:908 +msgid "Export Range..." +msgstr "" + +#: editor.cc:1915 +msgid "Export Video Range..." +msgstr "" + +#: editor.cc:1931 editor.cc:2012 editor_actions.cc:281 +msgid "Play From Edit Point" +msgstr "" + +#: editor.cc:1932 editor.cc:2013 +msgid "Play From Start" +msgstr "" + +#: editor.cc:1933 +msgid "Play Region" +msgstr "" + +#: editor.cc:1935 msgid "Loop Region" msgstr "Região de loop" -#: editor.cc:1942 editor.cc:2019 editor_actions.cc:185 -#: export_timespan_selector.cc:53 processor_box.cc:2237 +#: editor.cc:1945 editor.cc:2022 +msgid "Select All in Track" +msgstr "" + +#: editor.cc:1946 editor.cc:2023 editor_actions.cc:185 +#: export_timespan_selector.cc:53 processor_box.cc:2276 msgid "Select All" msgstr "Selecionar Tudo" -#: editor.cc:1955 +#: editor.cc:1947 editor.cc:2024 +msgid "Invert Selection in Track" +msgstr "" + +#: editor.cc:1948 editor.cc:2025 editor_actions.cc:187 +msgid "Invert Selection" +msgstr "" + +#: editor.cc:1950 +msgid "Set Range to Loop Range" +msgstr "" + +#: editor.cc:1951 +msgid "Set Range to Punch Range" +msgstr "" + +#: editor.cc:1953 editor.cc:2027 editor_actions.cc:188 +msgid "Select All After Edit Point" +msgstr "" + +#: editor.cc:1954 editor.cc:2028 editor_actions.cc:189 +msgid "Select All Before Edit Point" +msgstr "" + +#: editor.cc:1955 editor.cc:2029 +msgid "Select All After Playhead" +msgstr "" + +#: editor.cc:1956 editor.cc:2030 +msgid "Select All Before Playhead" +msgstr "" + +#: editor.cc:1957 +msgid "Select All Between Playhead and Edit Point" +msgstr "" + +#: editor.cc:1958 +msgid "Select All Within Playhead and Edit Point" +msgstr "" + +#: editor.cc:1959 msgid "Select Range Between Playhead and Edit Point" msgstr "" -#: editor.cc:1957 editor.cc:2028 editor_actions.cc:127 editor_actions.cc:128 +#: editor.cc:1961 editor.cc:2032 editor_actions.cc:127 editor_actions.cc:128 msgid "Select" msgstr "Selecionar" -#: editor.cc:1965 editor.cc:2036 editor_actions.cc:309 processor_box.cc:2222 +#: editor.cc:1969 editor.cc:2040 editor_actions.cc:309 processor_box.cc:2261 msgid "Cut" msgstr "Cortar" -#: editor.cc:1966 editor.cc:2037 editor_actions.cc:312 processor_box.cc:2225 +#: editor.cc:1970 editor.cc:2041 editor_actions.cc:312 processor_box.cc:2264 msgid "Copy" msgstr "Copiar" -#: editor.cc:1967 editor.cc:2038 editor_actions.cc:313 processor_box.cc:2233 +#: editor.cc:1971 editor.cc:2042 editor_actions.cc:313 processor_box.cc:2272 msgid "Paste" msgstr "Colar" -#: editor.cc:1971 editor_actions.cc:87 +#: editor.cc:1975 editor_actions.cc:87 msgid "Align" msgstr "Alinhamento" -#: editor.cc:1972 +#: editor.cc:1976 msgid "Align Relative" msgstr "Alinhamento Relativo" +#: editor.cc:1983 +msgid "Insert Selected Region" +msgstr "" + +#: editor.cc:1984 +msgid "Insert Existing Media" +msgstr "" + +#: editor.cc:1993 editor.cc:2049 +msgid "Nudge Entire Track Later" +msgstr "" + #: editor.cc:1994 editor.cc:2050 +msgid "Nudge Track After Edit Point Later" +msgstr "" + +#: editor.cc:1995 editor.cc:2051 +msgid "Nudge Entire Track Earlier" +msgstr "" + +#: editor.cc:1996 editor.cc:2052 +msgid "Nudge Track After Edit Point Earlier" +msgstr "" + +#: editor.cc:1998 editor.cc:2054 msgid "Nudge" msgstr "Retocar" -#: editor.cc:3070 +#: editor.cc:3074 msgid "Smart Mode (add Range functions to Object mode)" msgstr "" -#: editor.cc:3073 +#: editor.cc:3075 +msgid "Object Mode (select/move Objects)" +msgstr "" + +#: editor.cc:3076 +msgid "Range Mode (select/move Ranges)" +msgstr "" + +#: editor.cc:3077 msgid "Draw/Edit MIDI Notes" msgstr "" #: editor.cc:3078 -msgid "Note Level Editing" +msgid "Draw Region Gain" msgstr "" #: editor.cc:3079 +msgid "Select Zoom Range" +msgstr "" + +#: editor.cc:3080 +msgid "Stretch/Shrink Regions and MIDI Notes" +msgstr "" + +#: editor.cc:3081 +msgid "Listen to Specific Regions" +msgstr "" + +#: editor.cc:3082 +msgid "Note Level Editing" +msgstr "" + +#: editor.cc:3083 msgid "" "Groups: click to (de)activate\n" "Context-click for other operations" msgstr "" -#: editor.cc:3088 -msgid "Snap/Grid Units" +#: editor.cc:3084 +msgid "Nudge Region/Selection Later" +msgstr "" + +#: editor.cc:3085 +msgid "Nudge Region/Selection Earlier" +msgstr "" + +#: editor.cc:3086 editor_actions.cc:242 +msgid "Zoom In" +msgstr "" + +#: editor.cc:3087 editor_actions.cc:241 +msgid "Zoom Out" +msgstr "" + +#: editor.cc:3088 editor_actions.cc:243 +msgid "Zoom to Session" +msgstr "" + +#: editor.cc:3089 +msgid "Zoom focus" +msgstr "" + +#: editor.cc:3090 +msgid "Expand Tracks" msgstr "" #: editor.cc:3091 +msgid "Shrink Tracks" +msgstr "" + +#: editor.cc:3092 +msgid "Snap/Grid Units" +msgstr "" + +#: editor.cc:3093 +msgid "Snap/Grid Mode" +msgstr "" + +#: editor.cc:3095 msgid "Edit Mode" msgstr "Modo de edição" -#: editor.cc:3092 +#: editor.cc:3096 msgid "" "Nudge Clock\n" "(controls distance used to nudge regions and selections)" msgstr "" -#: editor.cc:3194 +#: editor.cc:3198 msgid "malformed URL passed to drag-n-drop code" msgstr "" -#: editor.cc:3256 editor_actions.cc:291 +#: editor.cc:3260 editor_actions.cc:291 msgid "Command|Undo" msgstr "" -#: editor.cc:3265 editor_actions.cc:292 +#: editor.cc:3262 +msgid "Command|Undo (%1)" +msgstr "" + +#: editor.cc:3269 editor_actions.cc:292 msgid "Redo" msgstr "Refazer" -#: editor.cc:3267 +#: editor.cc:3271 msgid "Redo (%1)" msgstr "Refazer (%1)" -#: editor.cc:3286 editor.cc:3310 editor_actions.cc:106 editor_actions.cc:1794 +#: editor.cc:3290 editor.cc:3314 editor_actions.cc:106 editor_actions.cc:1794 msgid "Duplicate" msgstr "Duplicar" -#: editor.cc:3287 +#: editor.cc:3291 msgid "Number of duplications:" msgstr "" -#: editor.cc:3865 +#: editor.cc:3868 +msgid "Playlist Deletion" +msgstr "" + +#: editor.cc:3869 msgid "" "Playlist %1 is currently unused.\n" "If it is kept, its audio files will not be cleaned.\n" "If it is deleted, audio files used by it alone will be cleaned." msgstr "" -#: editor.cc:3877 editor_audio_import.cc:581 editor_ops.cc:5856 -#: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 +#: editor.cc:3879 +msgid "Delete Playlist" +msgstr "" + +#: editor.cc:3880 +msgid "Keep Playlist" +msgstr "" + +#: editor.cc:3881 editor_audio_import.cc:581 editor_ops.cc:5856 +#: engine_dialog.cc:1711 sfdb_freesound_mootcher.cc:69 processor_box.cc:2030 +#: processor_box.cc:2055 msgid "Cancel" msgstr "Cancelar" -#: editor.cc:4687 +#: editor.cc:4025 +msgid "new playlists" +msgstr "" + +#: editor.cc:4041 +msgid "copy playlists" +msgstr "" + +#: editor.cc:4056 +msgid "clear playlists" +msgstr "" + +#: editor.cc:4691 msgid "Please wait while %1 loads visual data." msgstr "" +#: editor.cc:5496 editor_markers.cc:940 panner_ui.cc:392 processor_box.cc:2292 +msgid "Edit..." +msgstr "" + +#: editor_actions.cc:88 +msgid "Autoconnect" +msgstr "" + +#: editor_actions.cc:89 +msgid "Crossfades" +msgstr "" + +#: editor_actions.cc:91 +msgid "Move Selected Marker" +msgstr "" + +#: editor_actions.cc:92 +msgid "Select Range Operations" +msgstr "" + +#: editor_actions.cc:93 +msgid "Select Regions" +msgstr "" + +#: editor_actions.cc:94 +msgid "Edit Point" +msgstr "" + #: editor_actions.cc:95 msgid "Fade" msgstr "Fade" @@ -1755,8 +2951,21 @@ msgstr "Fade" msgid "Latch" msgstr "" -#: editor_actions.cc:101 gain_meter.cc:121 gain_meter.cc:791 panner_ui.cc:177 -#: panner_ui.cc:586 +#: editor_actions.cc:97 editor_regions.cc:111 region_editor.cc:46 +msgid "Region" +msgstr "" + +#: editor_actions.cc:98 +msgid "Layering" +msgstr "" + +#: editor_actions.cc:99 editor_regions.cc:112 gtk-custom-ruler.c:152 +#: stereo_panner_editor.cc:44 +msgid "Position" +msgstr "" + +#: editor_actions.cc:101 gain_meter.cc:120 gain_meter.cc:794 panner_ui.cc:176 +#: panner_ui.cc:585 msgid "Trim" msgstr "Cortar" @@ -1764,6 +2973,16 @@ msgstr "Cortar" msgid "Gain" msgstr "" +#: editor_actions.cc:103 editor_actions.cc:538 +msgid "Ranges" +msgstr "" + +#: editor_actions.cc:104 editor_actions.cc:1790 session_option_editor.cc:145 +#: session_option_editor.cc:147 session_option_editor.cc:156 +#: session_option_editor.cc:163 +msgid "Fades" +msgstr "" + #: editor_actions.cc:107 msgid "Link" msgstr "" @@ -1772,14 +2991,51 @@ msgstr "" msgid "Zoom Focus" msgstr "Foco de Zoom" +#: editor_actions.cc:109 +msgid "Locate to Markers" +msgstr "" + +#: editor_actions.cc:110 editor_actions.cc:539 +msgid "Markers" +msgstr "" + #: editor_actions.cc:111 msgid "Meter falloff" msgstr "" +#: editor_actions.cc:112 +msgid "Meter hold" +msgstr "" + +#: editor_actions.cc:113 session_option_editor.cc:234 +msgid "MIDI Options" +msgstr "" + +#: editor_actions.cc:114 +msgid "Misc Options" +msgstr "" + +#: editor_actions.cc:115 rc_option_editor.cc:1450 route_group_dialog.cc:48 +#: session_option_editor.cc:218 session_option_editor.cc:225 +msgid "Monitoring" +msgstr "" + +#: editor_actions.cc:116 +msgid "Active Mark" +msgstr "" + +#: editor_actions.cc:119 +msgid "Primary Clock" +msgstr "" + #: editor_actions.cc:120 msgid "Pullup / Pulldown" msgstr "" +#: editor_actions.cc:121 +msgid "Region operations" +msgstr "" + #: editor_actions.cc:123 msgid "Rulers" msgstr "" @@ -1792,11 +3048,23 @@ msgstr "" msgid "Scroll" msgstr "" +#: editor_actions.cc:126 +msgid "Secondary Clock" +msgstr "" + +#: editor_actions.cc:129 editor_actions.cc:297 +msgid "Separate" +msgstr "" + #: editor_actions.cc:132 mixer_strip.cc:1914 route_time_axis.cc:208 #: route_time_axis.cc:2417 msgid "Solo" msgstr "Solo" +#: editor_actions.cc:133 +msgid "Subframes" +msgstr "" + #: editor_actions.cc:136 msgid "Timecode fps" msgstr "" @@ -1813,14 +3081,34 @@ msgstr "" msgid "View" msgstr "" +#: editor_actions.cc:142 +msgid "Zoom" +msgstr "" + #: editor_actions.cc:148 msgid "Break drag or deselect all" msgstr "" +#: editor_actions.cc:150 +msgid "Show Editor Mixer" +msgstr "" + +#: editor_actions.cc:151 +msgid "Show Editor List" +msgstr "" + +#: editor_actions.cc:153 +msgid "Playhead to Next Region Boundary" +msgstr "" + #: editor_actions.cc:154 msgid "Playhead to Next Region Boundary (No Track Selection)" msgstr "" +#: editor_actions.cc:155 +msgid "Playhead to Previous Region Boundary" +msgstr "" + #: editor_actions.cc:156 msgid "Playhead to Previous Region Boundary (No Track Selection)" msgstr "" @@ -1849,14 +3137,86 @@ msgstr "" msgid "Playhead to Previous Region Sync" msgstr "" +#: editor_actions.cc:166 +msgid "To Next Region Boundary" +msgstr "" + #: editor_actions.cc:167 msgid "To Next Region Boundary (No Track Selection)" msgstr "" +#: editor_actions.cc:168 +msgid "To Previous Region Boundary" +msgstr "" + +#: editor_actions.cc:169 +msgid "To Previous Region Boundary (No Track Selection)" +msgstr "" + +#: editor_actions.cc:171 +msgid "To Next Region Start" +msgstr "" + +#: editor_actions.cc:172 +msgid "To Next Region End" +msgstr "" + +#: editor_actions.cc:173 +msgid "To Next Region Sync" +msgstr "" + +#: editor_actions.cc:175 +msgid "To Previous Region Start" +msgstr "" + +#: editor_actions.cc:176 +msgid "To Previous Region End" +msgstr "" + +#: editor_actions.cc:177 +msgid "To Previous Region Sync" +msgstr "" + +#: editor_actions.cc:179 +msgid "To Range Start" +msgstr "" + +#: editor_actions.cc:180 +msgid "To Range End" +msgstr "" + #: editor_actions.cc:182 msgid "Playhead to Range Start" msgstr "" +#: editor_actions.cc:183 +msgid "Playhead to Range End" +msgstr "" + +#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2278 +msgid "Deselect All" +msgstr "" + +#: editor_actions.cc:191 +msgid "Select All Overlapping Edit Range" +msgstr "" + +#: editor_actions.cc:192 +msgid "Select All Inside Edit Range" +msgstr "" + +#: editor_actions.cc:194 +msgid "Select Edit Range" +msgstr "" + +#: editor_actions.cc:196 +msgid "Select All in Punch Range" +msgstr "" + +#: editor_actions.cc:197 +msgid "Select All in Loop Range" +msgstr "" + #: editor_actions.cc:199 msgid "Select Next Track or Bus" msgstr "" @@ -1869,18 +3229,106 @@ msgstr "" msgid "Toggle Record Enable" msgstr "" +#: editor_actions.cc:204 +msgid "Toggle Solo" +msgstr "" + +#: editor_actions.cc:206 +msgid "Toggle Mute" +msgstr "" + +#: editor_actions.cc:208 +msgid "Toggle Solo Isolate" +msgstr "" + +#: editor_actions.cc:213 +msgid "Save View %1" +msgstr "" + #: editor_actions.cc:219 msgid "Goto View %1" msgstr "" +#: editor_actions.cc:225 +msgid "Locate to Mark %1" +msgstr "" + +#: editor_actions.cc:229 +msgid "Jump to Next Mark" +msgstr "" + +#: editor_actions.cc:230 +msgid "Jump to Previous Mark" +msgstr "" + +#: editor_actions.cc:231 +msgid "Add Mark from Playhead" +msgstr "" + +#: editor_actions.cc:233 +msgid "Nudge Next Later" +msgstr "" + +#: editor_actions.cc:234 +msgid "Nudge Next Earlier" +msgstr "" + +#: editor_actions.cc:236 +msgid "Nudge Playhead Forward" +msgstr "" + +#: editor_actions.cc:237 +msgid "Nudge Playhead Backward" +msgstr "" + +#: editor_actions.cc:238 +msgid "Playhead To Next Grid" +msgstr "" + +#: editor_actions.cc:239 +msgid "Playhead To Previous Grid" +msgstr "" + +#: editor_actions.cc:244 +msgid "Zoom to Region" +msgstr "" + #: editor_actions.cc:245 msgid "Zoom to Region (Width and Height)" msgstr "" +#: editor_actions.cc:246 +msgid "Toggle Zoom State" +msgstr "" + +#: editor_actions.cc:248 +msgid "Expand Track Height" +msgstr "" + +#: editor_actions.cc:249 +msgid "Shrink Track Height" +msgstr "" + +#: editor_actions.cc:251 +msgid "Move Selected Tracks Up" +msgstr "" + +#: editor_actions.cc:253 +msgid "Move Selected Tracks Down" +msgstr "" + +#: editor_actions.cc:256 +msgid "Scroll Tracks Up" +msgstr "" + #: editor_actions.cc:258 msgid "Scroll Tracks Down" msgstr "" +#: editor_actions.cc:260 +msgid "Step Tracks Up" +msgstr "" + #: editor_actions.cc:262 msgid "Step Tracks Down" msgstr "" @@ -1893,10 +3341,82 @@ msgstr "" msgid "Scroll Forward" msgstr "" +#: editor_actions.cc:267 +msgid "Center Playhead" +msgstr "" + +#: editor_actions.cc:268 +msgid "Center Edit Point" +msgstr "" + +#: editor_actions.cc:270 +msgid "Playhead Forward" +msgstr "" + +#: editor_actions.cc:271 +msgid "Playhead Backward" +msgstr "" + +#: editor_actions.cc:273 +msgid "Playhead to Active Mark" +msgstr "" + +#: editor_actions.cc:274 +msgid "Active Mark to Playhead" +msgstr "" + +#: editor_actions.cc:276 +msgid "Set Loop from Edit Range" +msgstr "" + +#: editor_actions.cc:277 +msgid "Set Punch from Edit Range" +msgstr "" + +#: editor_actions.cc:280 +msgid "Play Selected Regions" +msgstr "" + +#: editor_actions.cc:282 +msgid "Play from Edit Point and Return" +msgstr "" + +#: editor_actions.cc:284 +msgid "Play Edit Range" +msgstr "" + +#: editor_actions.cc:286 +msgid "Playhead to Mouse" +msgstr "" + +#: editor_actions.cc:287 +msgid "Active Marker to Mouse" +msgstr "" + +#: editor_actions.cc:294 +msgid "Export Audio" +msgstr "" + +#: editor_actions.cc:295 export_dialog.cc:406 +msgid "Export Range" +msgstr "" + +#: editor_actions.cc:300 +msgid "Separate Using Punch Range" +msgstr "" + +#: editor_actions.cc:303 +msgid "Separate Using Loop Range" +msgstr "" + #: editor_actions.cc:306 editor_actions.cc:323 msgid "Crop" msgstr "" +#: editor_actions.cc:315 +msgid "Set Tempo from Edit Range = Bar" +msgstr "" + #: editor_actions.cc:317 msgid "Log" msgstr "" @@ -1909,16 +3429,48 @@ msgstr "" msgid "Move Earlier to Transient" msgstr "" +#: editor_actions.cc:325 +msgid "Start Range" +msgstr "" + #: editor_actions.cc:326 msgid "Finish Range" msgstr "" +#: editor_actions.cc:327 +msgid "Finish Add Range" +msgstr "" + +#: editor_actions.cc:357 +msgid "Follow Playhead" +msgstr "" + +#: editor_actions.cc:358 +msgid "Remove Last Capture" +msgstr "" + +#: editor_actions.cc:360 +msgid "Stationary Playhead" +msgstr "" + +#: editor_actions.cc:362 insert_time_dialog.cc:32 +msgid "Insert Time" +msgstr "" + +#: editor_actions.cc:365 +msgid "Toggle Active" +msgstr "" + #: editor_actions.cc:370 editor_actions.cc:1716 editor_markers.cc:876 #: editor_markers.cc:941 editor_snapshots.cc:121 mixer_strip.cc:1495 #: route_time_axis.cc:710 msgid "Remove" msgstr "Remover" +#: editor_actions.cc:374 +msgid "Fit Selected Tracks" +msgstr "" + #: editor_actions.cc:376 time_axis_view.cc:1302 msgid "Largest" msgstr "Enorme" @@ -1939,6 +3491,34 @@ msgstr "Pequeno" msgid "Sound Selected MIDI Notes" msgstr "" +#: editor_actions.cc:397 +msgid "Zoom Focus Left" +msgstr "" + +#: editor_actions.cc:398 +msgid "Zoom Focus Right" +msgstr "" + +#: editor_actions.cc:399 +msgid "Zoom Focus Center" +msgstr "" + +#: editor_actions.cc:400 +msgid "Zoom Focus Playhead" +msgstr "" + +#: editor_actions.cc:401 +msgid "Zoom Focus Mouse" +msgstr "" + +#: editor_actions.cc:402 +msgid "Zoom Focus Edit Point" +msgstr "" + +#: editor_actions.cc:404 +msgid "Next Zoom Focus" +msgstr "" + #: editor_actions.cc:410 msgid "Smart Object Mode" msgstr "" @@ -1951,6 +3531,10 @@ msgstr "" msgid "Object Tool" msgstr "" +#: editor_actions.cc:423 +msgid "Range Tool" +msgstr "" + #: editor_actions.cc:429 msgid "Note Drawing Tool" msgstr "" @@ -1959,6 +3543,14 @@ msgstr "" msgid "Gain Tool" msgstr "" +#: editor_actions.cc:441 +msgid "Zoom Tool" +msgstr "" + +#: editor_actions.cc:447 +msgid "Audition Tool" +msgstr "" + #: editor_actions.cc:453 msgid "Time FX Tool" msgstr "" @@ -1967,6 +3559,14 @@ msgstr "" msgid "Step Mouse Mode" msgstr "" +#: editor_actions.cc:461 +msgid "Edit MIDI" +msgstr "" + +#: editor_actions.cc:472 +msgid "Change Edit Point" +msgstr "" + #: editor_actions.cc:473 msgid "Change Edit Point Including Marker" msgstr "" @@ -1984,14 +3584,30 @@ msgstr "Deslizar" msgid "Lock" msgstr "Trancar" +#: editor_actions.cc:479 +msgid "Toggle Edit Mode" +msgstr "" + +#: editor_actions.cc:481 +msgid "Snap to" +msgstr "" + #: editor_actions.cc:482 msgid "Snap Mode" msgstr "Modo de Ajuste" +#: editor_actions.cc:489 +msgid "Next Snap Mode" +msgstr "" + #: editor_actions.cc:490 msgid "Next Snap Choice" msgstr "" +#: editor_actions.cc:491 +msgid "Next Musical Snap Choice" +msgstr "" + #: editor_actions.cc:492 msgid "Previous Snap Choice" msgstr "" @@ -2000,18 +3616,174 @@ msgstr "" msgid "Previous Musical Snap Choice" msgstr "" -#: editor_actions.cc:549 rc_option_editor.cc:1842 +#: editor_actions.cc:498 +msgid "Snap to CD Frame" +msgstr "" + +#: editor_actions.cc:499 +msgid "Snap to Timecode Frame" +msgstr "" + +#: editor_actions.cc:500 +msgid "Snap to Timecode Seconds" +msgstr "" + +#: editor_actions.cc:501 +msgid "Snap to Timecode Minutes" +msgstr "" + +#: editor_actions.cc:502 +msgid "Snap to Seconds" +msgstr "" + +#: editor_actions.cc:503 +msgid "Snap to Minutes" +msgstr "" + +#: editor_actions.cc:505 +msgid "Snap to One Twenty Eighths" +msgstr "" + +#: editor_actions.cc:506 +msgid "Snap to Sixty Fourths" +msgstr "" + +#: editor_actions.cc:507 +msgid "Snap to Thirty Seconds" +msgstr "" + +#: editor_actions.cc:508 +msgid "Snap to Twenty Eighths" +msgstr "" + +#: editor_actions.cc:509 +msgid "Snap to Twenty Fourths" +msgstr "" + +#: editor_actions.cc:510 +msgid "Snap to Twentieths" +msgstr "" + +#: editor_actions.cc:511 +msgid "Snap to Sixteenths" +msgstr "" + +#: editor_actions.cc:512 +msgid "Snap to Fourteenths" +msgstr "" + +#: editor_actions.cc:513 +msgid "Snap to Twelfths" +msgstr "" + +#: editor_actions.cc:514 +msgid "Snap to Tenths" +msgstr "" + +#: editor_actions.cc:515 +msgid "Snap to Eighths" +msgstr "" + +#: editor_actions.cc:516 +msgid "Snap to Sevenths" +msgstr "" + +#: editor_actions.cc:517 +msgid "Snap to Sixths" +msgstr "" + +#: editor_actions.cc:518 +msgid "Snap to Fifths" +msgstr "" + +#: editor_actions.cc:519 +msgid "Snap to Quarters" +msgstr "" + +#: editor_actions.cc:520 +msgid "Snap to Thirds" +msgstr "" + +#: editor_actions.cc:521 +msgid "Snap to Halves" +msgstr "" + +#: editor_actions.cc:523 +msgid "Snap to Beat" +msgstr "" + +#: editor_actions.cc:524 +msgid "Snap to Bar" +msgstr "" + +#: editor_actions.cc:525 +msgid "Snap to Mark" +msgstr "" + +#: editor_actions.cc:526 +msgid "Snap to Region Start" +msgstr "" + +#: editor_actions.cc:527 +msgid "Snap to Region End" +msgstr "" + +#: editor_actions.cc:528 +msgid "Snap to Region Sync" +msgstr "" + +#: editor_actions.cc:529 +msgid "Snap to Region Boundary" +msgstr "" + +#: editor_actions.cc:531 +msgid "Show Marker Lines" +msgstr "" + +#: editor_actions.cc:541 +msgid "Loop/Punch" +msgstr "" + +#: editor_actions.cc:545 +msgid "Min:Sec" +msgstr "" + +#: editor_actions.cc:547 editor_actions.cc:550 +msgid "Video Monitor" +msgstr "" + +#: editor_actions.cc:549 rc_option_editor.cc:1829 msgid "Video" msgstr "" +#: editor_actions.cc:552 +msgid "Always on Top" +msgstr "" + +#: editor_actions.cc:554 +msgid "Frame number" +msgstr "" + +#: editor_actions.cc:555 +msgid "Timecode Background" +msgstr "" + #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" +#: editor_actions.cc:557 +msgid "Letterbox" +msgstr "" + #: editor_actions.cc:558 msgid "Original Size" msgstr "" +#: editor_actions.cc:608 +msgid "Sort" +msgstr "" + #: editor_actions.cc:610 region_editor.cc:51 msgid "Audition" msgstr "Audição" @@ -2020,6 +3792,10 @@ msgstr "Audição" msgid "Show All" msgstr "Mostrar Tudo" +#: editor_actions.cc:620 +msgid "Show Automatic Regions" +msgstr "" + #: editor_actions.cc:622 msgid "Ascending" msgstr "Ascendente" @@ -2068,16 +3844,40 @@ msgstr "Por data de criação do arquivo original" msgid "By Source Filesystem" msgstr "Por sistema de arquivos original" +#: editor_actions.cc:648 +msgid "Remove Unused" +msgstr "" + #: editor_actions.cc:652 editor_audio_import.cc:279 #: session_import_dialog.cc:74 session_import_dialog.cc:94 #: session_metadata_dialog.cc:297 editor_videotimeline.cc:108 msgid "Import" msgstr "Importar" +#: editor_actions.cc:655 +msgid "Import to Region List..." +msgstr "" + +#: editor_actions.cc:658 session_import_dialog.cc:43 +msgid "Import From Session" +msgstr "" + +#: editor_actions.cc:661 +msgid "Show Summary" +msgstr "" + #: editor_actions.cc:663 msgid "Show Group Tabs" msgstr "" +#: editor_actions.cc:665 +msgid "Show Measures" +msgstr "" + +#: editor_actions.cc:669 +msgid "Show Logo" +msgstr "" + #: editor_actions.cc:673 msgid "Toggle MIDI Input Active for Editor-Selected Tracks/Busses" msgstr "" @@ -2100,6 +3900,22 @@ msgstr "" msgid "Raise" msgstr "" +#: editor_actions.cc:1725 +msgid "Raise to Top" +msgstr "" + +#: editor_actions.cc:1728 gtk-custom-ruler.c:132 +msgid "Lower" +msgstr "" + +#: editor_actions.cc:1731 +msgid "Lower to Bottom" +msgstr "" + +#: editor_actions.cc:1734 +msgid "Move to Original Position" +msgstr "" + #: editor_actions.cc:1739 msgid "Lock to Video" msgstr "" @@ -2108,14 +3924,26 @@ msgstr "" msgid "Glue to Bars and Beats" msgstr "" +#: editor_actions.cc:1749 +msgid "Remove Sync" +msgstr "" + #: editor_actions.cc:1752 mixer_strip.cc:1904 route_time_axis.cc:209 msgid "Mute" msgstr "Mutar" +#: editor_actions.cc:1755 +msgid "Normalize..." +msgstr "" + #: editor_actions.cc:1758 msgid "Reverse" msgstr "Inverter horizontalmente" +#: editor_actions.cc:1761 +msgid "Make Mono Regions" +msgstr "" + #: editor_actions.cc:1764 msgid "Boost Gain" msgstr "" @@ -2128,6 +3956,14 @@ msgstr "" msgid "Pitch Shift..." msgstr "" +#: editor_actions.cc:1773 +msgid "Transpose..." +msgstr "" + +#: editor_actions.cc:1776 +msgid "Opaque" +msgstr "" + #: editor_actions.cc:1780 editor_regions.cc:116 msgid "Fade In" msgstr "Fade In" @@ -2136,6 +3972,10 @@ msgstr "Fade In" msgid "Fade Out" msgstr "Fade Out" +#: editor_actions.cc:1800 +msgid "Multi-Duplicate..." +msgstr "" + #: editor_actions.cc:1805 msgid "Fill Track" msgstr "Preencher Trilha" @@ -2144,10 +3984,58 @@ msgstr "Preencher Trilha" msgid "Set Loop Range" msgstr "Marcar um intervalo de loop" +#: editor_actions.cc:1816 +msgid "Set Punch" +msgstr "" + +#: editor_actions.cc:1820 +msgid "Add Single Range Marker" +msgstr "" + +#: editor_actions.cc:1825 +msgid "Add Range Marker Per Region" +msgstr "" + +#: editor_actions.cc:1829 +msgid "Snap Position To Grid" +msgstr "" + +#: editor_actions.cc:1832 +msgid "Close Gaps" +msgstr "" + #: editor_actions.cc:1835 msgid "Rhythm Ferret..." msgstr "" +#: editor_actions.cc:1838 +msgid "Export..." +msgstr "" + +#: editor_actions.cc:1844 +msgid "Separate Under" +msgstr "" + +#: editor_actions.cc:1848 +msgid "Set Fade In Length" +msgstr "" + +#: editor_actions.cc:1849 +msgid "Set Fade Out Length" +msgstr "" + +#: editor_actions.cc:1850 +msgid "Set Tempo from Region = Bar" +msgstr "" + +#: editor_actions.cc:1855 +msgid "Split at Percussion Onsets" +msgstr "" + +#: editor_actions.cc:1860 +msgid "List Editor..." +msgstr "" + #: editor_actions.cc:1863 msgid "Properties..." msgstr "" @@ -2172,6 +4060,22 @@ msgstr "" msgid "Spectral Analysis..." msgstr "" +#: editor_actions.cc:1874 +msgid "Reset Envelope" +msgstr "" + +#: editor_actions.cc:1876 +msgid "Reset Gain" +msgstr "" + +#: editor_actions.cc:1881 +msgid "Envelope Active" +msgstr "" + +#: editor_actions.cc:1885 +msgid "Quantize..." +msgstr "" + #: editor_actions.cc:1886 editor_actions.cc:1887 msgid "Insert Patch Change..." msgstr "" @@ -2184,6 +4088,26 @@ msgstr "" msgid "Strip Silence..." msgstr "" +#: editor_actions.cc:1890 +msgid "Set Range Selection" +msgstr "" + +#: editor_actions.cc:1892 +msgid "Nudge Later" +msgstr "" + +#: editor_actions.cc:1893 +msgid "Nudge Earlier" +msgstr "" + +#: editor_actions.cc:1898 +msgid "Nudge Later by Capture Offset" +msgstr "" + +#: editor_actions.cc:1905 +msgid "Nudge Earlier by Capture Offset" +msgstr "" + #: editor_actions.cc:1909 msgid "Trim to Loop" msgstr "" @@ -2192,6 +4116,22 @@ msgstr "" msgid "Trim to Punch" msgstr "" +#: editor_actions.cc:1912 +msgid "Trim to Previous" +msgstr "" + +#: editor_actions.cc:1913 +msgid "Trim to Next" +msgstr "" + +#: editor_actions.cc:1920 +msgid "Insert Region From Region List" +msgstr "" + +#: editor_actions.cc:1926 +msgid "Set Sync Position" +msgstr "" + #: editor_actions.cc:1927 msgid "Place Transient" msgstr "" @@ -2208,10 +4148,42 @@ msgstr "" msgid "Trim End at Edit Point" msgstr "" +#: editor_actions.cc:1935 +msgid "Align Start" +msgstr "" + +#: editor_actions.cc:1942 +msgid "Align Start Relative" +msgstr "" + +#: editor_actions.cc:1946 +msgid "Align End" +msgstr "" + +#: editor_actions.cc:1951 +msgid "Align End Relative" +msgstr "" + +#: editor_actions.cc:1958 +msgid "Align Sync" +msgstr "" + +#: editor_actions.cc:1965 +msgid "Align Sync Relative" +msgstr "" + #: editor_actions.cc:1969 editor_actions.cc:1972 msgid "Choose Top..." msgstr "" +#: editor_audio_import.cc:77 editor_audio_import.cc:99 +msgid "You can't import or embed an audiofile until you have a session loaded." +msgstr "" + +#: editor_audio_import.cc:83 editor_audio_import.cc:127 +msgid "Add Existing Media" +msgstr "" + #: editor_audio_import.cc:177 msgid "" "The session already contains a source file named %1. Do you want to import " @@ -2228,10 +4200,45 @@ msgstr "" msgid "Cancel Import" msgstr "Cancelar importação" +#: editor_audio_import.cc:543 +msgid "Editor: cannot open file \"%1\", (%2)" +msgstr "" + +#: editor_audio_import.cc:551 +msgid "Cancel entire import" +msgstr "" + +#: editor_audio_import.cc:552 +msgid "Don't embed it" +msgstr "" + #: editor_audio_import.cc:553 msgid "Embed all without questions" msgstr "" +#: editor_audio_import.cc:556 editor_audio_import.cc:585 +#: export_format_dialog.cc:58 +msgid "Sample rate" +msgstr "" + +#: editor_audio_import.cc:557 editor_audio_import.cc:586 +msgid "" +"%1\n" +"This audiofile's sample rate doesn't match the session sample rate!" +msgstr "" + +#: editor_audio_import.cc:582 +msgid "Embed it anyway" +msgstr "" + +#: editor_drag.cc:1000 +msgid "fixed time region drag" +msgstr "" + +#: editor_drag.cc:1700 +msgid "Video Start:" +msgstr "" + #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -2240,42 +4247,143 @@ msgstr "" msgid "Move Video" msgstr "" -#: editor_drag.cc:3581 +#: editor_drag.cc:2200 +msgid "copy meter mark" +msgstr "" + +#: editor_drag.cc:2208 +msgid "move meter mark" +msgstr "" + +#: editor_drag.cc:2320 +msgid "copy tempo mark" +msgstr "" + +#: editor_drag.cc:2328 +msgid "move tempo mark" +msgstr "" + +#: editor_drag.cc:2550 +msgid "change fade in length" +msgstr "" + +#: editor_drag.cc:2668 +msgid "change fade out length" +msgstr "" + +#: editor_drag.cc:3023 +msgid "move marker" +msgstr "" + +#: editor_drag.cc:3586 msgid "An error occurred while executing time stretch operation" msgstr "" -#: editor_drag.cc:4011 +#: editor_drag.cc:4016 msgid "programming_error: %1" msgstr "" +#: editor_drag.cc:4086 editor_markers.cc:680 +msgid "new range marker" +msgstr "" + +#: editor_drag.cc:4767 +msgid "rubberband selection" +msgstr "" + +#: editor_route_groups.cc:66 +msgid "No Selection = All Tracks?" +msgstr "" + +#: editor_route_groups.cc:95 +msgid "Col" +msgstr "" + +#: editor_route_groups.cc:95 +msgid "Group Tab Color" +msgstr "" + +#: editor_route_groups.cc:96 +msgid "Name of Group" +msgstr "" + #: editor_route_groups.cc:97 editor_routes.cc:203 msgid "V" msgstr "" +#: editor_route_groups.cc:97 +msgid "Group is visible?" +msgstr "" + +#: editor_route_groups.cc:98 +msgid "On" +msgstr "" + #: editor_route_groups.cc:98 msgid "Group is enabled?" msgstr "" +#: editor_route_groups.cc:99 +msgid "group|G" +msgstr "" + #: editor_route_groups.cc:99 msgid "Sharing Gain?" msgstr "" +#: editor_route_groups.cc:100 +msgid "relative|Rel" +msgstr "" + #: editor_route_groups.cc:100 msgid "Relative Gain Changes?" msgstr "" +#: editor_route_groups.cc:101 +msgid "mute|M" +msgstr "" + #: editor_route_groups.cc:101 msgid "Sharing Mute?" msgstr "" +#: editor_route_groups.cc:102 +msgid "solo|S" +msgstr "" + #: editor_route_groups.cc:102 msgid "Sharing Solo?" msgstr "" +#: editor_route_groups.cc:103 midi_time_axis.cc:1504 midi_time_axis.cc:1507 +#: midi_time_axis.cc:1510 mixer_strip.cc:1903 +msgid "Rec" +msgstr "" + #: editor_route_groups.cc:103 msgid "Sharing Record-enable Status?" msgstr "" +#: editor_route_groups.cc:104 +msgid "monitoring|Mon" +msgstr "" + +#: editor_route_groups.cc:104 +msgid "Sharing Monitoring Choice?" +msgstr "" + +#: editor_route_groups.cc:105 +msgid "selection|Sel" +msgstr "" + +#: editor_route_groups.cc:105 +msgid "Sharing Selected/Editing Status?" +msgstr "" + +#: editor_route_groups.cc:106 +msgid "active|A" +msgstr "" + #: editor_route_groups.cc:106 msgid "Sharing Active Status?" msgstr "" @@ -2284,13 +4392,17 @@ msgstr "" msgid "Activate this button to operate on all tracks when none are selected." msgstr "" +#: editor_route_groups.cc:442 mixer_ui.cc:1449 +msgid "unnamed" +msgstr "" + #: editor_export_audio.cc:90 editor_markers.cc:695 editor_markers.cc:782 #: editor_markers.cc:967 editor_markers.cc:985 editor_markers.cc:1003 #: editor_markers.cc:1022 editor_markers.cc:1041 editor_markers.cc:1071 #: editor_markers.cc:1102 editor_markers.cc:1132 editor_markers.cc:1160 #: editor_markers.cc:1191 editor_markers.cc:1216 editor_markers.cc:1267 -#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1514 -#: editor_mouse.cc:2478 +#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1526 +#: editor_mouse.cc:2528 msgid "programming error: marker canvas item has no marker object pointer!" msgstr "" @@ -2298,24 +4410,124 @@ msgstr "" msgid "File Exists!" msgstr "" +#: editor_export_audio.cc:151 +msgid "Overwrite Existing File" +msgstr "" + +#: editor_group_tabs.cc:162 +msgid "Fit to Window" +msgstr "" + +#: editor_markers.cc:129 +msgid "start" +msgstr "" + +#: editor_markers.cc:130 +msgid "end" +msgstr "" + #: editor_markers.cc:646 editor_ops.cc:1744 editor_ops.cc:1764 #: editor_ops.cc:1788 editor_ops.cc:1815 location_ui.cc:1017 msgid "add marker" msgstr "adicionar marca" +#: editor_markers.cc:677 +msgid "range" +msgstr "" + #: editor_markers.cc:713 location_ui.cc:852 msgid "remove marker" msgstr "remover marca" +#: editor_markers.cc:849 +msgid "Locate to Here" +msgstr "" + +#: editor_markers.cc:850 +msgid "Play from Here" +msgstr "" + +#: editor_markers.cc:851 +msgid "Move Mark to Playhead" +msgstr "" + +#: editor_markers.cc:855 +msgid "Create Range to Next Marker" +msgstr "" + +#: editor_markers.cc:896 +msgid "Locate to Marker" +msgstr "" + +#: editor_markers.cc:897 +msgid "Play from Marker" +msgstr "" + +#: editor_markers.cc:900 +msgid "Set Marker from Playhead" +msgstr "" + +#: editor_markers.cc:902 +msgid "Set Range from Selection" +msgstr "" + +#: editor_markers.cc:905 +msgid "Zoom to Range" +msgstr "" + +#: editor_markers.cc:912 +msgid "Hide Range" +msgstr "" + +#: editor_markers.cc:913 +msgid "Rename Range..." +msgstr "" + +#: editor_markers.cc:917 +msgid "Remove Range" +msgstr "" + +#: editor_markers.cc:924 +msgid "Separate Regions in Range" +msgstr "" + +#: editor_markers.cc:927 +msgid "Select Range" +msgstr "" + #: editor_markers.cc:956 msgid "Set Punch Range" msgstr "Fazer intervalo de inserção" -#: editor_markers.cc:1363 editor_mouse.cc:2510 processor_box.cc:1781 -#: processor_box.cc:2235 route_time_axis.cc:982 route_ui.cc:1540 +#: editor_markers.cc:1362 editor_ops.cc:1699 +msgid "New Name:" +msgstr "" + +#: editor_markers.cc:1365 +msgid "Rename Mark" +msgstr "" + +#: editor_markers.cc:1367 +msgid "Rename Range" +msgstr "" + +#: editor_markers.cc:1374 editor_mouse.cc:2560 processor_box.cc:1808 +#: processor_box.cc:2274 route_time_axis.cc:982 route_ui.cc:1540 msgid "Rename" msgstr "Renomear" +#: editor_markers.cc:1387 +msgid "rename marker" +msgstr "" + +#: editor_markers.cc:1411 +msgid "set loop range" +msgstr "" + +#: editor_markers.cc:1417 +msgid "set punch range" +msgstr "" + #: editor_mixer.cc:90 msgid "This screen is not tall enough to display the editor mixer" msgstr "" @@ -2324,28 +4536,64 @@ msgstr "" msgid "Editor::event_frame() used on unhandled event type %1" msgstr "" -#: editor_mouse.cc:2235 editor_mouse.cc:2260 editor_mouse.cc:2273 +#: editor_mouse.cc:2285 editor_mouse.cc:2310 editor_mouse.cc:2323 msgid "" "programming error: control point canvas item has no control point object " "pointer!" msgstr "" -#: editor_mouse.cc:2441 +#: editor_mouse.cc:2466 +msgid "start point trim" +msgstr "" + +#: editor_mouse.cc:2491 msgid "End point trim" msgstr "" -#: editor_mouse.cc:2508 +#: editor_mouse.cc:2558 msgid "Name for region:" msgstr "Nome para a região:" +#: editor_ops.cc:140 +msgid "split" +msgstr "" + +#: editor_ops.cc:256 +msgid "alter selection" +msgstr "" + +#: editor_ops.cc:298 +msgid "nudge regions forward" +msgstr "" + +#: editor_ops.cc:321 editor_ops.cc:406 +msgid "nudge location forward" +msgstr "" + +#: editor_ops.cc:379 +msgid "nudge regions backward" +msgstr "" + #: editor_ops.cc:468 msgid "nudge forward" msgstr "" +#: editor_ops.cc:492 +msgid "nudge backward" +msgstr "" + #: editor_ops.cc:557 msgid "build_region_boundary_cache called with snap_type = %1" msgstr "" +#: editor_ops.cc:1701 +msgid "New Location Marker" +msgstr "" + +#: editor_ops.cc:1788 +msgid "add markers" +msgstr "" + #: editor_ops.cc:1894 msgid "clear markers" msgstr "limpar marcas" @@ -2358,6 +4606,110 @@ msgstr "limpar intervalos" msgid "clear locations" msgstr "limpar localizações" +#: editor_ops.cc:2000 +msgid "insert dragged region" +msgstr "" + +#: editor_ops.cc:2078 +msgid "insert region" +msgstr "" + +#: editor_ops.cc:2261 +msgid "raise regions" +msgstr "" + +#: editor_ops.cc:2263 +msgid "raise region" +msgstr "" + +#: editor_ops.cc:2269 +msgid "raise regions to top" +msgstr "" + +#: editor_ops.cc:2271 +msgid "raise region to top" +msgstr "" + +#: editor_ops.cc:2277 +msgid "lower regions" +msgstr "" + +#: editor_ops.cc:2279 editor_ops.cc:2287 +msgid "lower region" +msgstr "" + +#: editor_ops.cc:2285 +msgid "lower regions to bottom" +msgstr "" + +#: editor_ops.cc:2370 +msgid "Rename Region" +msgstr "" + +#: editor_ops.cc:2372 processor_box.cc:1806 route_ui.cc:1538 +msgid "New name:" +msgstr "" + +#: editor_ops.cc:2682 +msgid "separate" +msgstr "" + +#: editor_ops.cc:2795 +msgid "separate region under" +msgstr "" + +#: editor_ops.cc:2916 +msgid "trim to selection" +msgstr "" + +#: editor_ops.cc:3052 +msgid "set sync point" +msgstr "" + +#: editor_ops.cc:3076 +msgid "remove region sync" +msgstr "" + +#: editor_ops.cc:3098 +msgid "move regions to original position" +msgstr "" + +#: editor_ops.cc:3100 +msgid "move region to original position" +msgstr "" + +#: editor_ops.cc:3121 +msgid "align selection" +msgstr "" + +#: editor_ops.cc:3195 +msgid "align selection (relative)" +msgstr "" + +#: editor_ops.cc:3229 +msgid "align region" +msgstr "" + +#: editor_ops.cc:3280 +msgid "trim front" +msgstr "" + +#: editor_ops.cc:3280 +msgid "trim back" +msgstr "" + +#: editor_ops.cc:3310 +msgid "trim to loop" +msgstr "" + +#: editor_ops.cc:3320 +msgid "trim to punch" +msgstr "" + +#: editor_ops.cc:3382 +msgid "trim to region" +msgstr "" + #: editor_ops.cc:3492 msgid "" "This track/bus cannot be frozen because the signal adds or loses channels " @@ -2366,6 +4718,10 @@ msgid "" "input or vice versa." msgstr "" +#: editor_ops.cc:3495 +msgid "Cannot freeze" +msgstr "" + #: editor_ops.cc:3501 msgid "" "%1\n" @@ -2375,6 +4731,22 @@ msgid "" "Freezing will only process the signal as far as the first send/insert/return." msgstr "" +#: editor_ops.cc:3505 +msgid "Freeze anyway" +msgstr "" + +#: editor_ops.cc:3506 +msgid "Don't freeze" +msgstr "" + +#: editor_ops.cc:3507 +msgid "Freeze Limits" +msgstr "" + +#: editor_ops.cc:3522 +msgid "Cancel Freeze" +msgstr "" + #: editor_ops.cc:3553 msgid "" "You can't perform this operation because the processing of the signal will " @@ -2388,6 +4760,14 @@ msgstr "" msgid "Cannot bounce" msgstr "" +#: editor_ops.cc:3568 +msgid "bounce range" +msgstr "" + +#: editor_ops.cc:3678 +msgid "delete" +msgstr "" + #: editor_ops.cc:3681 msgid "cut" msgstr "cortar" @@ -2408,6 +4788,18 @@ msgstr "objetos" msgid " range" msgstr "intervalo" +#: editor_ops.cc:3957 editor_ops.cc:3984 +msgid "remove region" +msgstr "" + +#: editor_ops.cc:4391 +msgid "duplicate selection" +msgstr "" + +#: editor_ops.cc:4469 +msgid "nudge track" +msgstr "" + #: editor_ops.cc:4506 msgid "" "Do you really want to destroy the last capture?\n" @@ -2425,6 +4817,14 @@ msgstr "Não, não faça nada." msgid "Yes, destroy it." msgstr "Sim, remova definitivamente isto." +#: editor_ops.cc:4512 +msgid "Destroy last capture" +msgstr "" + +#: editor_ops.cc:4573 +msgid "normalize" +msgstr "" + #: editor_ops.cc:4668 msgid "reverse regions" msgstr "inverter horizontalmente as regiões" @@ -2433,6 +4833,26 @@ msgstr "inverter horizontalmente as regiões" msgid "strip silence" msgstr "" +#: editor_ops.cc:4763 +msgid "Fork Region(s)" +msgstr "" + +#: editor_ops.cc:4963 +msgid "reset region gain" +msgstr "" + +#: editor_ops.cc:5016 +msgid "region gain envelope active" +msgstr "" + +#: editor_ops.cc:5043 +msgid "toggle region lock" +msgstr "" + +#: editor_ops.cc:5067 +msgid "Toggle Video Lock" +msgstr "" + #: editor_ops.cc:5091 msgid "region lock style" msgstr "" @@ -2441,6 +4861,58 @@ msgstr "" msgid "change region opacity" msgstr "" +#: editor_ops.cc:5231 +msgid "set fade in length" +msgstr "" + +#: editor_ops.cc:5238 +msgid "set fade out length" +msgstr "" + +#: editor_ops.cc:5283 +msgid "set fade in shape" +msgstr "" + +#: editor_ops.cc:5314 +msgid "set fade out shape" +msgstr "" + +#: editor_ops.cc:5344 +msgid "set fade in active" +msgstr "" + +#: editor_ops.cc:5373 +msgid "set fade out active" +msgstr "" + +#: editor_ops.cc:5638 +msgid "set loop range from selection" +msgstr "" + +#: editor_ops.cc:5660 +msgid "set loop range from edit range" +msgstr "" + +#: editor_ops.cc:5689 +msgid "set loop range from region" +msgstr "" + +#: editor_ops.cc:5707 +msgid "set punch range from selection" +msgstr "" + +#: editor_ops.cc:5724 +msgid "set punch range from edit range" +msgstr "" + +#: editor_ops.cc:5748 +msgid "set punch range from region" +msgstr "" + +#: editor_ops.cc:5857 +msgid "Add new marker" +msgstr "" + #: editor_ops.cc:5858 msgid "Set global tempo" msgstr "" @@ -2453,6 +4925,14 @@ msgstr "" msgid "Do you want to set the global tempo or add a new tempo marker?" msgstr "" +#: editor_ops.cc:5888 +msgid "set tempo from region" +msgstr "" + +#: editor_ops.cc:5918 +msgid "split regions" +msgstr "" + #: editor_ops.cc:5960 msgid "" "You are about to split\n" @@ -2483,6 +4963,18 @@ msgstr "" msgid "place transient" msgstr "" +#: editor_ops.cc:6160 +msgid "snap regions to grid" +msgstr "" + +#: editor_ops.cc:6199 +msgid "Close Region Gaps" +msgstr "" + +#: editor_ops.cc:6204 +msgid "Crossfade length" +msgstr "" + #: editor_ops.cc:6213 editor_ops.cc:6224 rhythm_ferret.cc:120 #: session_option_editor.cc:153 msgid "ms" @@ -2492,6 +4984,14 @@ msgstr "" msgid "Pull-back length" msgstr "" +#: editor_ops.cc:6228 +msgid "Ok" +msgstr "" + +#: editor_ops.cc:6243 +msgid "close region gaps" +msgstr "" + #: editor_ops.cc:6461 route_ui.cc:1456 msgid "That would be bad news ...." msgstr "" @@ -2506,14 +5006,61 @@ msgid "" "\"allow-special-bus-removal\" option to be \"yes\"" msgstr "" -#: editor_ops.cc:6491 route_ui.cc:1822 +#: editor_ops.cc:6483 +msgid "tracks" +msgstr "" + +#: editor_ops.cc:6485 route_ui.cc:1821 +msgid "track" +msgstr "" + +#: editor_ops.cc:6489 +msgid "busses" +msgstr "" + +#: editor_ops.cc:6491 route_ui.cc:1821 msgid "bus" msgstr "" +#: editor_ops.cc:6496 +msgid "" +"Do you really want to remove %1 %2 and %3 %4?\n" +"(You may also lose the playlists associated with the %2)\n" +"\n" +"This action cannot be undone, and the session file will be overwritten!" +msgstr "" + +#: editor_ops.cc:6501 +msgid "" +"Do you really want to remove %1 %2?\n" +"(You may also lose the playlists associated with the %2)\n" +"\n" +"This action cannot be undone, and the session file will be overwritten!" +msgstr "" + +#: editor_ops.cc:6507 +msgid "" +"Do you really want to remove %1 %2?\n" +"\n" +"This action cannot be undon, and the session file will be overwritten" +msgstr "" + +#: editor_ops.cc:6514 +msgid "Yes, remove them." +msgstr "" + #: editor_ops.cc:6516 editor_snapshots.cc:159 route_ui.cc:1483 msgid "Yes, remove it." msgstr "Sim, remova isto." +#: editor_ops.cc:6521 editor_ops.cc:6523 +msgid "Remove %1" +msgstr "" + +#: editor_ops.cc:6582 +msgid "insert time" +msgstr "" + #: editor_ops.cc:6739 msgid "There are too many tracks to fit in the current window" msgstr "" @@ -2523,10 +5070,42 @@ msgstr "" msgid "Saved view %u" msgstr "" +#: editor_ops.cc:6864 +msgid "mute regions" +msgstr "" + +#: editor_ops.cc:6866 +msgid "mute region" +msgstr "" + +#: editor_ops.cc:6903 +msgid "combine regions" +msgstr "" + +#: editor_ops.cc:6941 +msgid "uncombine regions" +msgstr "" + #: editor_regions.cc:111 msgid "Region name, with number of channels in []'s" msgstr "" +#: editor_regions.cc:112 +msgid "Position of start of region" +msgstr "" + +#: editor_regions.cc:113 editor_regions.cc:849 time_info_box.cc:98 +msgid "End" +msgstr "" + +#: editor_regions.cc:113 +msgid "Position of end of region" +msgstr "" + +#: editor_regions.cc:114 +msgid "Length of the region" +msgstr "" + #: editor_regions.cc:115 msgid "Position of region sync point, relative to start of the region" msgstr "" @@ -2544,16 +5123,32 @@ msgstr "" msgid "L" msgstr "" +#: editor_regions.cc:118 +msgid "Region position locked?" +msgstr "" + +#: editor_regions.cc:119 +msgid "G" +msgstr "" + #: editor_regions.cc:119 msgid "Region position glued to Bars|Beats time?" msgstr "" -#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:759 -#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:554 +#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:762 +#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:553 #: stereo_panner.cc:237 msgid "M" msgstr "" +#: editor_regions.cc:120 +msgid "Region muted?" +msgstr "" + +#: editor_regions.cc:121 +msgid "O" +msgstr "" + #: editor_regions.cc:121 msgid "Region opaque (blocks regions below it from being heard)?" msgstr "" @@ -2566,10 +5161,28 @@ msgstr "Oculto" msgid "(MISSING) " msgstr "" +#: editor_regions.cc:457 +msgid "" +"Do you really want to remove unused regions?\n" +"(This is destructive and cannot be undone)" +msgstr "" + +#: editor_regions.cc:461 +msgid "Yes, remove." +msgstr "" + +#: editor_regions.cc:463 +msgid "Remove unused regions" +msgstr "" + #: editor_regions.cc:816 editor_regions.cc:830 editor_regions.cc:844 msgid "Mult." msgstr "" +#: editor_regions.cc:847 midi_list_editor.cc:103 time_info_box.cc:91 +msgid "Start" +msgstr "" + #: editor_regions.cc:865 editor_regions.cc:881 msgid "Multiple" msgstr "" @@ -2582,24 +5195,92 @@ msgstr "" msgid "SS" msgstr "" +#: editor_routes.cc:202 +msgid "Track/Bus Name" +msgstr "" + +#: editor_routes.cc:203 +msgid "Track/Bus visible ?" +msgstr "" + #: editor_routes.cc:204 mixer_strip.cc:1945 meter_strip.cc:334 #: route_time_axis.cc:2407 msgid "A" msgstr "" +#: editor_routes.cc:204 +msgid "Track/Bus active ?" +msgstr "" + +#: editor_routes.cc:205 mixer_strip.cc:1932 +msgid "I" +msgstr "" + +#: editor_routes.cc:205 +msgid "MIDI input enabled" +msgstr "" + #: editor_routes.cc:206 mixer_strip.cc:1930 mono_panner.cc:198 #: stereo_panner.cc:215 stereo_panner.cc:242 msgid "R" msgstr "" +#: editor_routes.cc:206 +msgid "Record enabled" +msgstr "" + +#: editor_routes.cc:207 +msgid "Muted" +msgstr "" + #: editor_routes.cc:208 mixer_strip.cc:1941 meter_strip.cc:330 msgid "S" msgstr "" +#: editor_routes.cc:208 +msgid "Soloed" +msgstr "" + +#: editor_routes.cc:209 +msgid "SI" +msgstr "" + +#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1867 +msgid "Solo Isolated" +msgstr "" + +#: editor_routes.cc:210 +msgid "Solo Safe (Locked)" +msgstr "" + #: editor_routes.cc:471 mixer_ui.cc:1162 msgid "Hide All" msgstr "Ocultar Tudo" +#: editor_routes.cc:472 mixer_ui.cc:1163 +msgid "Show All Audio Tracks" +msgstr "" + +#: editor_routes.cc:473 mixer_ui.cc:1164 +msgid "Hide All Audio Tracks" +msgstr "" + +#: editor_routes.cc:474 mixer_ui.cc:1165 +msgid "Show All Audio Busses" +msgstr "" + +#: editor_routes.cc:475 mixer_ui.cc:1166 +msgid "Hide All Audio Busses" +msgstr "" + +#: editor_routes.cc:476 +msgid "Show All Midi Tracks" +msgstr "" + +#: editor_routes.cc:477 +msgid "Hide All Midi Tracks" +msgstr "" + #: editor_routes.cc:478 msgid "Show Tracks With Regions Under Playhead" msgstr "" @@ -2612,10 +5293,26 @@ msgstr "Nova marca de localização" msgid "Clear all locations" msgstr "Apagar todas as localizações" +#: editor_rulers.cc:342 +msgid "Unhide locations" +msgstr "" + +#: editor_rulers.cc:346 +msgid "New range" +msgstr "" + #: editor_rulers.cc:347 msgid "Clear all ranges" msgstr "Remover todos os intervalos" +#: editor_rulers.cc:348 +msgid "Unhide ranges" +msgstr "" + +#: editor_rulers.cc:358 +msgid "New CD track marker" +msgstr "" + #: editor_rulers.cc:363 tempo_dialog.cc:40 msgid "New Tempo" msgstr "Novo Andamento" @@ -2624,6 +5321,58 @@ msgstr "Novo Andamento" msgid "New Meter" msgstr "Novo Meter" +#: editor_rulers.cc:373 +msgid "Timeline height" +msgstr "" + +#: editor_rulers.cc:383 +msgid "Align Video Track" +msgstr "" + +#: editor_selection.cc:889 editor_selection.cc:932 +msgid "set selected regions" +msgstr "" + +#: editor_selection.cc:1414 +msgid "select all" +msgstr "" + +#: editor_selection.cc:1506 +msgid "select all within" +msgstr "" + +#: editor_selection.cc:1564 +msgid "set selection from range" +msgstr "" + +#: editor_selection.cc:1604 +msgid "select all from range" +msgstr "" + +#: editor_selection.cc:1635 +msgid "select all from punch" +msgstr "" + +#: editor_selection.cc:1666 +msgid "select all from loop" +msgstr "" + +#: editor_selection.cc:1702 +msgid "select all after cursor" +msgstr "" + +#: editor_selection.cc:1704 +msgid "select all before cursor" +msgstr "" + +#: editor_selection.cc:1753 +msgid "select all after edit" +msgstr "" + +#: editor_selection.cc:1755 +msgid "select all before edit" +msgstr "" + #: editor_selection.cc:1888 msgid "No edit range defined" msgstr "" @@ -2634,10 +5383,36 @@ msgid "" "but there is no selected marker." msgstr "" +#: editor_snapshots.cc:136 +msgid "Rename Snapshot" +msgstr "" + +#: editor_snapshots.cc:138 +msgid "New name of snapshot" +msgstr "" + +#: editor_snapshots.cc:156 +msgid "" +"Do you really want to remove snapshot \"%1\" ?\n" +"(which cannot be undone)" +msgstr "" + +#: editor_snapshots.cc:161 +msgid "Remove snapshot" +msgstr "" + #: editor_tempodisplay.cc:208 editor_tempodisplay.cc:250 msgid "add" msgstr "adicionar" +#: editor_tempodisplay.cc:231 +msgid "add tempo mark" +msgstr "" + +#: editor_tempodisplay.cc:272 +msgid "add meter mark" +msgstr "" + #: editor_tempodisplay.cc:288 editor_tempodisplay.cc:367 #: editor_tempodisplay.cc:386 msgid "" @@ -2660,11 +5435,19 @@ msgstr "" msgid "programming error: marker for meter is not a meter marker!" msgstr "" +#: editor_tempodisplay.cc:401 editor_tempodisplay.cc:435 +msgid "remove tempo mark" +msgstr "" + #: editor_tempodisplay.cc:418 msgid "" "programming error: meter marker canvas item has no marker object pointer!" msgstr "" +#: editor_timefx.cc:68 +msgid "stretch/shrink" +msgstr "" + #: editor_timefx.cc:129 msgid "pitch shift" msgstr "" @@ -2673,204 +5456,231 @@ msgstr "" msgid "timefx cannot be started - thread creation error" msgstr "" -#: engine_dialog.cc:75 -msgid "Realtime" -msgstr "" - -#: engine_dialog.cc:76 -msgid "Do not lock memory" -msgstr "" - -#: engine_dialog.cc:78 -msgid "No zombies" -msgstr "" - #: engine_dialog.cc:79 -msgid "Provide monitor ports" +msgid "Device Control Panel" msgstr "" -#: engine_dialog.cc:80 -msgid "Force 16 bit" +#: engine_dialog.cc:80 engine_dialog.cc:1725 +msgid "Measure" msgstr "" -#: engine_dialog.cc:103 -msgid "8000Hz" +#: engine_dialog.cc:81 +msgid "Use results" msgstr "" -#: engine_dialog.cc:104 -msgid "22050Hz" +#: engine_dialog.cc:82 +msgid "Back to settings ... (ignore results)" msgstr "" -#: engine_dialog.cc:105 -msgid "44100Hz" +#: engine_dialog.cc:83 +msgid "Calibrate..." msgstr "" -#: engine_dialog.cc:106 -msgid "48000Hz" +#: engine_dialog.cc:87 +msgid "Refresh list" msgstr "" #: engine_dialog.cc:107 -msgid "88200Hz" +msgid "" +"No audio/MIDI backends detected. %1 cannot run\n" +"\n" +"(This is a build/packaging/system error. It should never happen.)" msgstr "" -#: engine_dialog.cc:108 -msgid "96000Hz" +#: engine_dialog.cc:136 +msgid "Latency Measurement Tool" msgstr "" -#: engine_dialog.cc:109 -msgid "192000Hz" +#: engine_dialog.cc:151 +msgid "" +"Turn down the volume on your audio equipment to a very " +"low level." msgstr "" -#: engine_dialog.cc:127 engine_dialog.cc:132 engine_dialog.cc:169 -#: engine_dialog.cc:562 midi_channel_selector.cc:163 -#: midi_channel_selector.cc:402 midi_channel_selector.cc:438 -#: rc_option_editor.cc:1250 sfdb_ui.cc:538 -msgid "None" -msgstr "Nenhum" - -#: engine_dialog.cc:128 engine_dialog.cc:563 -msgid "Triangular" -msgstr "Triangular" - -#: engine_dialog.cc:129 engine_dialog.cc:565 -msgid "Rectangular" -msgstr "Retangular" - -#: engine_dialog.cc:158 engine_dialog.cc:483 engine_dialog.cc:974 -msgid "Playback/recording on 1 device" +#: engine_dialog.cc:159 +msgid "Select two channels below and connect them using a cable." msgstr "" -#: engine_dialog.cc:159 engine_dialog.cc:487 engine_dialog.cc:540 -#: engine_dialog.cc:977 -msgid "Playback/recording on 2 devices" +#: engine_dialog.cc:164 +msgid "Output channel" msgstr "" -#: engine_dialog.cc:160 engine_dialog.cc:503 engine_dialog.cc:980 -msgid "Playback only" +#: engine_dialog.cc:172 +msgid "Input channel" msgstr "" -#: engine_dialog.cc:171 engine_dialog.cc:448 -msgid "coremidi" +#: engine_dialog.cc:207 +msgid "Once the channels are connected, click the \"Measure\" button." msgstr "" -#: engine_dialog.cc:173 engine_dialog.cc:581 -msgid "seq" +#: engine_dialog.cc:214 +msgid "When satisfied with the results, click the \"Use results\" button." msgstr "" -#: engine_dialog.cc:174 engine_dialog.cc:583 -msgid "raw" +#: engine_dialog.cc:229 engine_dialog.cc:1727 +msgid "No measurement results yet" msgstr "" -#: engine_dialog.cc:181 +#: engine_dialog.cc:238 route_params_ui.cc:105 +msgid "Latency" +msgstr "" + +#: engine_dialog.cc:333 +msgid "Audio System:" +msgstr "" + +#: engine_dialog.cc:374 msgid "Driver:" msgstr "" -#: engine_dialog.cc:196 +#: engine_dialog.cc:380 +msgid "Device:" +msgstr "" + +#: engine_dialog.cc:385 engine_dialog.cc:475 sfdb_ui.cc:147 sfdb_ui.cc:260 +#: sfdb_ui.cc:265 +msgid "Sample rate:" +msgstr "" + +#: engine_dialog.cc:391 engine_dialog.cc:482 msgid "Buffer size:" msgstr "" -#: engine_dialog.cc:202 -msgid "Number of buffers:" +#: engine_dialog.cc:404 +msgid "Input Channels:" msgstr "" -#: engine_dialog.cc:209 -msgid "Approximate latency:" +#: engine_dialog.cc:415 +msgid "Output Channels:" msgstr "" -#: engine_dialog.cc:284 engine_dialog.cc:408 -msgid "Ignore" -msgstr "" - -#: engine_dialog.cc:292 -msgid "Client timeout" -msgstr "" - -#: engine_dialog.cc:299 -msgid "Number of ports:" -msgstr "" - -#: engine_dialog.cc:304 -msgid "MIDI driver:" -msgstr "" - -#: engine_dialog.cc:310 -msgid "Dither:" -msgstr "" - -#: engine_dialog.cc:319 -msgid "" -"No JACK server found anywhere on this system. Please install JACK and restart" -msgstr "" - -#: engine_dialog.cc:327 -msgid "Server:" -msgstr "" - -#: engine_dialog.cc:339 -msgid "Input device:" -msgstr "" - -#: engine_dialog.cc:348 +#: engine_dialog.cc:426 msgid "Hardware input latency:" msgstr "" -#: engine_dialog.cc:354 +#: engine_dialog.cc:429 engine_dialog.cc:442 +msgid "samples" +msgstr "" + +#: engine_dialog.cc:439 msgid "Hardware output latency:" msgstr "" -#: engine_dialog.cc:368 -msgid "Device" +#: engine_dialog.cc:450 +msgid "MIDI System" msgstr "" -#: engine_dialog.cc:653 -msgid "cannot open JACK rc file %1 to store parameters" -msgstr "" - -#: engine_dialog.cc:787 +#: engine_dialog.cc:467 msgid "" -"You do not have any audio devices capable of\n" -"simultaneous playback and recording.\n" +"The %1 audio backend was configured and started externally.\n" +"This limits your control over it." +msgstr "" + +#: engine_dialog.cc:521 +msgid "" +"Your selected audio configuration is playback- or capture-only.\n" "\n" -"Please use Applications -> Utilities -> Audio MIDI Setup\n" -"to create an \"aggregrate\" device, or install a suitable\n" -"audio interface.\n" -"\n" -"Please send email to Apple and ask them why new Macs\n" -"have no duplex audio device.\n" -"\n" -"Alternatively, if you really want just playback\n" -"or recording but not both, start JACK before running\n" -"%1 and choose the relevant device then." +"Latency calibration requires playback and capture" msgstr "" -#: engine_dialog.cc:800 -msgid "No suitable audio devices" +#: engine_dialog.cc:595 +msgid "MIDI Inputs" msgstr "" -#: engine_dialog.cc:1017 -msgid "JACK appears to be missing from the %1 bundle" +#: engine_dialog.cc:612 +msgid "MIDI Outputs" msgstr "" -#: engine_dialog.cc:1087 -msgid "You need to choose an audio device first." +#: engine_dialog.cc:696 +msgid "all available channels" msgstr "" -#: engine_dialog.cc:1104 -msgid "Audio device \"%1\" not known on this computer." +#: engine_dialog.cc:890 +#, c-format +msgid "%u samples" msgstr "" -#: engine_dialog.cc:1256 -msgid "AudioSetup value for %1 is missing data" +#: engine_dialog.cc:941 +#, c-format +msgid "(%.1f msecs)" msgstr "" -#: engine_dialog.cc:1335 -msgid "configuration files contain a JACK server path that doesn't exist (%1)" +#: engine_dialog.cc:1389 +msgid "Cannot set driver to %1" +msgstr "" + +#: engine_dialog.cc:1393 +msgid "Cannot set device name to %1" +msgstr "" + +#: engine_dialog.cc:1397 +msgid "Cannot set sample rate to %1" +msgstr "" + +#: engine_dialog.cc:1401 +msgid "Cannot set buffer size to %1" +msgstr "" + +#: engine_dialog.cc:1407 +msgid "Cannot set input channels to %1" +msgstr "" + +#: engine_dialog.cc:1411 +msgid "Cannot set output channels to %1" +msgstr "" + +#: engine_dialog.cc:1417 +msgid "Cannot set input latency to %1" +msgstr "" + +#: engine_dialog.cc:1421 +msgid "Cannot set output latency to %1" +msgstr "" + +#: engine_dialog.cc:1654 +msgid "No signal detected " +msgstr "" + +#: engine_dialog.cc:1667 port_insert_ui.cc:71 port_insert_ui.cc:99 +msgid "Disconnected from audio engine" +msgstr "" + +#: engine_dialog.cc:1681 +msgid "(signal detection error)" +msgstr "" + +#: engine_dialog.cc:1687 +msgid "(inverted - bad wiring)" +msgstr "" + +#: engine_dialog.cc:1697 +msgid "Detected roundtrip latency: %1" +msgstr "" + +#: engine_dialog.cc:1709 port_insert_ui.cc:135 +msgid "Detecting ..." +msgstr "" + +#: engine_dialog.cc:1789 +msgid "Disconnect from %1" +msgstr "" + +#: engine_dialog.cc:1801 +msgid "Connect to %1" +msgstr "" + +#: export_channel_selector.cc:45 sfdb_ui.cc:145 +msgid "Channels:" msgstr "" #: export_channel_selector.cc:46 msgid "Split to mono files" msgstr "" +#: export_channel_selector.cc:182 +msgid "Bus or Track" +msgstr "" + #: export_channel_selector.cc:459 msgid "Region contents without fades nor region gain (channels: %1)" msgstr "" @@ -2883,12 +5693,33 @@ msgstr "" msgid "Track output (channels: %1)" msgstr "" +#: export_channel_selector.cc:536 +msgid "Export region contents" +msgstr "" + +#: export_channel_selector.cc:537 +msgid "Export track output" +msgstr "" + #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten." msgstr "" +#: export_dialog.cc:47 +msgid "List files" +msgstr "" + +#: export_dialog.cc:164 export_timespan_selector.cc:355 +#: export_timespan_selector.cc:417 +msgid "Time Span" +msgstr "" + +#: export_dialog.cc:176 +msgid "Channels" +msgstr "" + #: export_dialog.cc:187 msgid "Time span and channel options" msgstr "" @@ -2907,6 +5738,10 @@ msgstr "" msgid "Stop Export" msgstr "Cancelar Exportação" +#: export_dialog.cc:337 +msgid "export" +msgstr "" + #: export_dialog.cc:356 msgid "Normalizing '%3' (timespan %1 of %2)" msgstr "" @@ -2929,22 +5764,62 @@ msgid "" "Warning: " msgstr "" +#: export_dialog.cc:420 +msgid "Export Selection" +msgstr "" + +#: export_dialog.cc:433 +msgid "Export Region" +msgstr "" + #: export_dialog.cc:443 msgid "Source" msgstr "" +#: export_dialog.cc:458 +msgid "Stem Export" +msgstr "" + +#: export_file_notebook.cc:38 +msgid "Add another format" +msgstr "" + +#: export_file_notebook.cc:178 +msgid "Format" +msgstr "" + #: export_file_notebook.cc:179 msgid "Location" msgstr "Localização" +#: export_file_notebook.cc:255 +msgid "No format!" +msgstr "" + +#: export_file_notebook.cc:267 +msgid "Format %1: %2" +msgstr "" + #: export_filename_selector.cc:32 msgid "Label:" msgstr "" +#: export_filename_selector.cc:33 +msgid "Session Name" +msgstr "" + +#: export_filename_selector.cc:34 +msgid "Revision:" +msgstr "" + +#: export_filename_selector.cc:36 +msgid "Folder:" +msgstr "" + #: export_filename_selector.cc:37 session_import_dialog.cc:44 -#: transcode_video_dialog.cc:59 video_server_dialog.cc:45 -#: video_server_dialog.cc:47 export_video_dialog.cc:69 -#: export_video_dialog.cc:71 +#: transcode_video_dialog.cc:58 video_server_dialog.cc:45 +#: video_server_dialog.cc:47 export_video_dialog.cc:68 +#: export_video_dialog.cc:70 msgid "Browse" msgstr "Localizar" @@ -2972,14 +5847,34 @@ msgstr "" msgid "Choose export folder" msgstr "" +#: export_format_dialog.cc:31 +msgid "New Export Format Profile" +msgstr "" + +#: export_format_dialog.cc:31 +msgid "Edit Export Format Profile" +msgstr "" + #: export_format_dialog.cc:38 msgid "Label: " msgstr "" +#: export_format_dialog.cc:41 normalize_dialog.cc:42 +msgid "Normalize to:" +msgstr "" + +#: export_format_dialog.cc:46 +msgid "Trim silence at start" +msgstr "" + #: export_format_dialog.cc:47 msgid "Add silence at start:" msgstr "" +#: export_format_dialog.cc:50 +msgid "Trim silence at end" +msgstr "" + #: export_format_dialog.cc:51 msgid "Add silence at end:" msgstr "" @@ -2992,10 +5887,18 @@ msgstr "" msgid "Quality" msgstr "" +#: export_format_dialog.cc:57 +msgid "File format" +msgstr "" + #: export_format_dialog.cc:59 msgid "Sample rate conversion quality:" msgstr "" +#: export_format_dialog.cc:66 +msgid "Dithering" +msgstr "" + #: export_format_dialog.cc:68 msgid "Create CUE file for disk-at-once CD/DVD creation" msgstr "" @@ -3020,12 +5923,44 @@ msgstr "" msgid "Fast (sinc)" msgstr "" +#: export_format_dialog.cc:481 +msgid "Zero order hold" +msgstr "" + +#: export_format_dialog.cc:879 +msgid "Linear encoding options" +msgstr "" + +#: export_format_dialog.cc:895 +msgid "Ogg Vorbis options" +msgstr "" + +#: export_format_dialog.cc:908 +msgid "FLAC options" +msgstr "" + +#: export_format_dialog.cc:925 +msgid "Broadcast Wave options" +msgstr "" + +#: export_format_selector.cc:136 +msgid "Do you really want to remove the format?" +msgstr "" + +#: export_preset_selector.cc:28 +msgid "Preset" +msgstr "" + #: export_preset_selector.cc:104 msgid "" "The selected preset did not load successfully!\n" "Perhaps it references a format that has been removed?" msgstr "" +#: export_preset_selector.cc:156 +msgid "Do you really want to remove this preset?" +msgstr "" + #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "" @@ -3034,6 +5969,10 @@ msgstr "" msgid " to " msgstr "" +#: export_timespan_selector.cc:348 export_timespan_selector.cc:407 +msgid "Range" +msgstr "" + #: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 msgid "curl error %1 (%2)" msgstr "" @@ -3050,65 +5989,142 @@ msgstr "" msgid "%1" msgstr "" -#: gain_meter.cc:122 gain_meter.cc:795 panner_ui.cc:178 panner_ui.cc:590 +#: gain_meter.cc:105 gain_meter.cc:360 gain_meter.cc:465 gain_meter.cc:859 +msgid "-inf" +msgstr "" + +#: gain_meter.cc:111 gain_meter.cc:916 +msgid "Fader automation mode" +msgstr "" + +#: gain_meter.cc:112 gain_meter.cc:917 +msgid "Fader automation type" +msgstr "" + +#: gain_meter.cc:121 gain_meter.cc:798 panner_ui.cc:177 panner_ui.cc:589 msgid "Abs" msgstr "" -#: gain_meter.cc:762 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:557 +#: gain_meter.cc:765 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:556 #: route_time_axis.cc:2411 msgid "P" msgstr "" -#: gain_meter.cc:765 panner_ui.cc:560 +#: gain_meter.cc:768 panner_ui.cc:559 msgid "T" msgstr "" -#: gain_meter.cc:768 panner_ui.cc:563 +#: gain_meter.cc:771 panner_ui.cc:562 msgid "W" msgstr "" -#: generic_pluginui.cc:83 +#: generic_pluginui.cc:81 msgid "Presets" msgstr "" -#: generic_pluginui.cc:232 +#: generic_pluginui.cc:230 msgid "Switches" msgstr "" -#: generic_pluginui.cc:270 +#: generic_pluginui.cc:240 generic_pluginui.cc:374 processor_box.cc:2251 +msgid "Controls" +msgstr "" + +#: generic_pluginui.cc:268 msgid "Plugin Editor: could not build control element for port %1" msgstr "" "Plugin Editor: não foi possível construir elemento de controle para a porta " "%1" -#: generic_pluginui.cc:430 +#: generic_pluginui.cc:406 +msgid "Meters" +msgstr "" + +#: generic_pluginui.cc:421 +msgid "Automation control" +msgstr "" + +#: generic_pluginui.cc:428 msgid "Mgnual" msgstr "" -#: global_port_matrix.cc:164 +#: global_port_matrix.cc:157 msgid "Audio Connection Manager" msgstr "" -#: global_port_matrix.cc:213 io_selector.cc:216 +#: global_port_matrix.cc:160 +msgid "MIDI Connection Manager" +msgstr "" + +#: global_port_matrix.cc:200 io_selector.cc:210 mixer_strip.cc:719 +#: mixer_strip.cc:845 +msgid "Disconnect" +msgstr "Desconectar" + +#: global_port_matrix.cc:206 io_selector.cc:216 msgid "port" msgstr "porta" +#: group_tabs.cc:308 +msgid "Selection..." +msgstr "" + #: group_tabs.cc:309 msgid "Record Enabled..." msgstr "" +#: group_tabs.cc:310 +msgid "Soloed..." +msgstr "" + +#: group_tabs.cc:316 +msgid "Create New Group ..." +msgstr "" + #: group_tabs.cc:317 msgid "Create New Group From" msgstr "" +#: group_tabs.cc:320 +msgid "Edit Group..." +msgstr "" + +#: group_tabs.cc:321 +msgid "Collect Group" +msgstr "" + +#: group_tabs.cc:322 +msgid "Remove Group" +msgstr "" + +#: group_tabs.cc:325 +msgid "Remove Subgroup Bus" +msgstr "" + +#: group_tabs.cc:327 +msgid "Add New Subgroup Bus" +msgstr "" + #: group_tabs.cc:329 msgid "Add New Aux Bus (pre-fader)" msgstr "" +#: group_tabs.cc:330 +msgid "Add New Aux Bus (post-fader)" +msgstr "" + #: group_tabs.cc:336 msgid "Enable All Groups" msgstr "" +#: group_tabs.cc:337 +msgid "Disable All Groups" +msgstr "" + +#: gtk-custom-ruler.c:133 +msgid "Lower limit of ruler" +msgstr "" + #: gtk-custom-ruler.c:142 msgid "Upper" msgstr "" @@ -3129,6 +6145,10 @@ msgstr "" msgid "Maximum size of the ruler" msgstr "" +#: gtk-custom-ruler.c:172 +msgid "Show Position" +msgstr "" + #: gtk-custom-ruler.c:173 msgid "Draw current ruler position" msgstr "" @@ -3137,20 +6157,60 @@ msgstr "" msgid "Time to insert:" msgstr "" +#: insert_time_dialog.cc:54 +msgid "Intersected regions should:" +msgstr "" + +#: insert_time_dialog.cc:57 +msgid "stay in position" +msgstr "" + +#: insert_time_dialog.cc:58 +msgid "move" +msgstr "" + +#: insert_time_dialog.cc:59 +msgid "be split" +msgstr "" + #: insert_time_dialog.cc:65 msgid "Insert time on all the track's playlists" msgstr "" +#: insert_time_dialog.cc:68 +msgid "Move glued regions" +msgstr "" + +#: insert_time_dialog.cc:70 +msgid "Move markers" +msgstr "" + +#: insert_time_dialog.cc:73 +msgid "Move glued markers" +msgstr "" + +#: insert_time_dialog.cc:78 +msgid "Move locked markers" +msgstr "" + #: insert_time_dialog.cc:83 msgid "" "Move tempo and meter changes\n" "(may cause oddities in the tempo map)" msgstr "" +#: insert_time_dialog.cc:91 +msgid "Insert time" +msgstr "" + #: interthread_progress_window.cc:103 msgid "Importing file: %1 of %2" msgstr "" +#: io_selector.cc:220 +msgid "I/O selector" +msgstr "" + #: io_selector.cc:265 msgid "%1 input" msgstr "%1 entrada" @@ -3171,6 +6231,18 @@ msgstr "" msgid "Key bindings file \"%1\" not found. Default bindings used instead" msgstr "" +#: keyeditor.cc:54 +msgid "Remove shortcut" +msgstr "" + +#: keyeditor.cc:64 +msgid "Action" +msgstr "" + +#: keyeditor.cc:65 +msgid "Shortcut" +msgstr "" + #: keyeditor.cc:86 msgid "Select an action, then press the key(s) to (re)set its shortcut" msgstr "" @@ -3179,11 +6251,41 @@ msgstr "" msgid "Main_menu" msgstr "" +#: keyeditor.cc:253 +msgid "redirectmenu" +msgstr "" + +#: keyeditor.cc:255 +msgid "Editor_menus" +msgstr "" + +#: keyeditor.cc:257 +msgid "RegionList" +msgstr "" + +#: keyeditor.cc:259 +msgid "ProcessorMenu" +msgstr "" + +#: latency_gui.cc:39 +msgid "sample" +msgstr "" + +#: latency_gui.cc:40 +msgid "msec" +msgstr "" + #: latency_gui.cc:41 msgid "period" msgstr "" -#: latency_gui.cc:72 panner_ui.cc:392 +#: latency_gui.cc:55 +msgid "%1 sample" +msgid_plural "%1 samples" +msgstr[0] "" +msgstr[1] "" + +#: latency_gui.cc:72 panner_ui.cc:391 msgid "Reset" msgstr "Reiniciar" @@ -3191,6 +6293,10 @@ msgstr "Reiniciar" msgid "programming error: %1 (%2)" msgstr "" +#: location_ui.cc:50 location_ui.cc:52 +msgid "Use PH" +msgstr "" + #: location_ui.cc:54 msgid "CD" msgstr "CD" @@ -3211,6 +6317,10 @@ msgstr "" msgid "Pre-Emphasis" msgstr "" +#: location_ui.cc:314 +msgid "Remove this range" +msgstr "" + #: location_ui.cc:315 msgid "Start time - middle click to locate here" msgstr "" @@ -3219,14 +6329,42 @@ msgstr "" msgid "End time - middle click to locate here" msgstr "" +#: location_ui.cc:319 +msgid "Set range start from playhead location" +msgstr "" + +#: location_ui.cc:320 +msgid "Set range end from playhead location" +msgstr "" + +#: location_ui.cc:324 +msgid "Remove this marker" +msgstr "" + #: location_ui.cc:325 msgid "Position - middle click to locate here" msgstr "" +#: location_ui.cc:327 +msgid "Set marker time from playhead location" +msgstr "" + #: location_ui.cc:494 msgid "You cannot put a CD marker at the start of the session" msgstr "" +#: location_ui.cc:720 +msgid "New Marker" +msgstr "" + +#: location_ui.cc:721 +msgid "New Range" +msgstr "" + +#: location_ui.cc:734 +msgid "Loop/Punch Ranges" +msgstr "" + #: location_ui.cc:759 msgid "Markers (Including CD Index)" msgstr "" @@ -3239,88 +6377,116 @@ msgstr "" msgid "add range marker" msgstr "adicionar marca de intervalo" -#: main.cc:203 main.cc:324 +#: main.cc:81 +msgid "%1 could not connect to the audio backend." +msgstr "" + +#: main.cc:194 main.cc:315 msgid "cannot create user %3 folder %1 (%2)" msgstr "" -#: main.cc:235 main.cc:358 +#: main.cc:201 main.cc:322 +msgid "cannot open pango.rc file %1" +msgstr "" + +#: main.cc:226 main.cc:349 msgid "Cannot find ArdourMono TrueType font" msgstr "" -#: main.cc:247 main.cc:364 +#: main.cc:238 main.cc:355 msgid "Cannot load ArdourMono TrueType font." msgstr "" -#: main.cc:312 +#: main.cc:303 msgid "" "No fontconfig file found on your system. Things may looked very odd or ugly" msgstr "" -#: main.cc:368 +#: main.cc:359 msgid "Failed to set fontconfig configuration." msgstr "" -#: main.cc:379 main.cc:395 -msgid "JACK exited" +#: main.cc:370 main.cc:386 +msgid "The audio backend (%1) has failed, or terminated" msgstr "" -#: main.cc:382 +#: main.cc:373 msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" +"%2 exited unexpectedly, and without notifying %1.\n" "\n" -"This could be due to misconfiguration or to an error inside JACK.\n" +"This could be due to misconfiguration or to an error inside %2.\n" "\n" "Click OK to exit %1." msgstr "" -#: main.cc:397 -msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" -"\n" -"This is probably due to an error inside JACK. You should restart JACK\n" -"and reconnect %1 to it, or exit %1 now. You cannot save your\n" -"session at this time, because we would lose your connection information.\n" +#: main.cc:387 +msgid "%2 exited unexpectedly, and without notifying %1." msgstr "" -#: main.cc:487 +#: main.cc:474 msgid " (built using " msgstr "" -#: main.cc:490 +#: main.cc:477 msgid " and GCC version " msgstr "" -#: main.cc:500 +#: main.cc:487 msgid "Copyright (C) 1999-2012 Paul Davis" msgstr "" -#: main.cc:501 +#: main.cc:488 msgid "" "Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " "Baker, Robin Gareus" msgstr "" -#: main.cc:504 +#: main.cc:490 +msgid "%1 comes with ABSOLUTELY NO WARRANTY" +msgstr "" + +#: main.cc:491 msgid "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." msgstr "" -#: main.cc:505 +#: main.cc:492 msgid "This is free software, and you are welcome to redistribute it " msgstr "Isto é um Software Livre. Fique à vontade para redistribuí-lo " -#: main.cc:506 +#: main.cc:493 msgid "under certain conditions; see the source for copying conditions." msgstr "com algumas condições; veja o fonte para mais detalhes" -#: main.cc:522 +#: main.cc:500 +msgid "could not initialize %1." +msgstr "" + +#: main.cc:509 msgid "Cannot xinstall SIGPIPE error handler" msgstr "" +#: main.cc:515 +msgid "could not create %1 GUI" +msgstr "" + +#: main_clock.cc:51 +msgid "Display delta to edit cursor" +msgstr "" + +#: marker.cc:251 video_image_frame.cc:121 +msgid "MarkerText" +msgstr "" + #: midi_channel_selector.cc:159 midi_channel_selector.cc:397 #: midi_channel_selector.cc:433 msgid "All" msgstr "" +#: midi_channel_selector.cc:163 midi_channel_selector.cc:402 +#: midi_channel_selector.cc:438 rc_option_editor.cc:1248 sfdb_ui.cc:538 +msgid "None" +msgstr "Nenhum" + #: midi_channel_selector.cc:167 midi_channel_selector.cc:407 #: midi_channel_selector.cc:443 msgid "Invert" @@ -3330,10 +6496,38 @@ msgstr "Inverter verticalmente" msgid "Force" msgstr "" +#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 +msgid "MIDI Channel Control" +msgstr "" + +#: midi_channel_selector.cc:332 +msgid "Playback all channels" +msgstr "" + +#: midi_channel_selector.cc:333 +msgid "Play only selected channels" +msgstr "" + #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" +#: midi_channel_selector.cc:335 +msgid "Record all channels" +msgstr "" + +#: midi_channel_selector.cc:336 +msgid "Record only selected channels" +msgstr "" + +#: midi_channel_selector.cc:337 +msgid "Force all channels to 1 channel" +msgstr "" + +#: midi_channel_selector.cc:378 +msgid "Inbound" +msgstr "" + #: midi_channel_selector.cc:398 msgid "Click to enable recording all channels" msgstr "" @@ -3346,6 +6540,10 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" +#: midi_channel_selector.cc:415 +msgid "Playback" +msgstr "" + #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -3390,6 +6588,22 @@ msgstr "" msgid "Triplet" msgstr "" +#: midi_list_editor.cc:58 +msgid "Quarter" +msgstr "" + +#: midi_list_editor.cc:59 +msgid "Eighth" +msgstr "" + +#: midi_list_editor.cc:60 +msgid "Sixteenth" +msgstr "" + +#: midi_list_editor.cc:61 +msgid "Thirty-second" +msgstr "" + #: midi_list_editor.cc:62 msgid "Sixty-fourth" msgstr "" @@ -3402,14 +6616,74 @@ msgstr "" msgid "Vel" msgstr "" +#: midi_list_editor.cc:215 +msgid "edit note start" +msgstr "" + +#: midi_list_editor.cc:224 +msgid "edit note channel" +msgstr "" + +#: midi_list_editor.cc:234 +msgid "edit note number" +msgstr "" + +#: midi_list_editor.cc:244 +msgid "edit note velocity" +msgstr "" + +#: midi_list_editor.cc:258 +msgid "edit note length" +msgstr "" + +#: midi_list_editor.cc:460 +msgid "insert new note" +msgstr "" + +#: midi_list_editor.cc:524 +msgid "delete notes (from list)" +msgstr "" + +#: midi_list_editor.cc:599 +msgid "change note channel" +msgstr "" + +#: midi_list_editor.cc:607 +msgid "change note number" +msgstr "" + +#: midi_list_editor.cc:617 +msgid "change note velocity" +msgstr "" + +#: midi_list_editor.cc:687 +msgid "change note length" +msgstr "" + +#: midi_port_dialog.cc:39 +msgid "Add MIDI Port" +msgstr "" + +#: midi_port_dialog.cc:40 +msgid "Port name:" +msgstr "" + #: midi_port_dialog.cc:45 msgid "MidiPortDialog" msgstr "" +#: midi_region_view.cc:838 +msgid "channel edit" +msgstr "" + #: midi_region_view.cc:874 msgid "velocity edit" msgstr "" +#: midi_region_view.cc:931 +msgid "add note" +msgstr "" + #: midi_region_view.cc:1779 msgid "step add" msgstr "" @@ -3418,14 +6692,58 @@ msgstr "" msgid "insane MIDI patch key %1:%2" msgstr "" +#: midi_region_view.cc:1870 midi_region_view.cc:1890 +msgid "alter patch change" +msgstr "" + #: midi_region_view.cc:1924 msgid "add patch change" msgstr "" +#: midi_region_view.cc:1942 +msgid "move patch change" +msgstr "" + +#: midi_region_view.cc:1953 +msgid "delete patch change" +msgstr "" + +#: midi_region_view.cc:2022 +msgid "delete selection" +msgstr "" + +#: midi_region_view.cc:2038 +msgid "delete note" +msgstr "" + +#: midi_region_view.cc:2425 +msgid "move notes" +msgstr "" + #: midi_region_view.cc:2647 msgid "resize notes" msgstr "" +#: midi_region_view.cc:2901 +msgid "change velocities" +msgstr "" + +#: midi_region_view.cc:2967 +msgid "transpose" +msgstr "" + +#: midi_region_view.cc:3001 +msgid "change note lengths" +msgstr "" + +#: midi_region_view.cc:3070 +msgid "nudge" +msgstr "" + +#: midi_region_view.cc:3085 +msgid "change channel" +msgstr "" + #: midi_region_view.cc:3130 msgid "Bank " msgstr "" @@ -3434,18 +6752,62 @@ msgstr "" msgid "Program " msgstr "" +#: midi_region_view.cc:3132 +msgid "Channel " +msgstr "" + +#: midi_region_view.cc:3301 midi_region_view.cc:3303 +msgid "paste" +msgstr "" + +#: midi_region_view.cc:3761 +msgid "delete sysex" +msgstr "" + +#: midi_streamview.cc:479 +msgid "failed to create MIDI region" +msgstr "" + #: midi_time_axis.cc:262 msgid "External MIDI Device" msgstr "" +#: midi_time_axis.cc:263 +msgid "External Device Mode" +msgstr "" + #: midi_time_axis.cc:271 msgid "Chns" msgstr "" +#: midi_time_axis.cc:272 +msgid "Click to edit channel settings" +msgstr "" + +#: midi_time_axis.cc:486 +msgid "Show Full Range" +msgstr "" + #: midi_time_axis.cc:491 msgid "Fit Contents" msgstr "" +#: midi_time_axis.cc:495 +msgid "Note Range" +msgstr "" + +#: midi_time_axis.cc:496 +msgid "Note Mode" +msgstr "" + +#: midi_time_axis.cc:497 +msgid "Channel Selector" +msgstr "" + +#: midi_time_axis.cc:502 +msgid "Color Mode" +msgstr "" + #: midi_time_axis.cc:561 msgid "Bender" msgstr "" @@ -3454,6 +6816,34 @@ msgstr "" msgid "Pressure" msgstr "" +#: midi_time_axis.cc:578 +msgid "Controllers" +msgstr "" + +#: midi_time_axis.cc:583 +msgid "No MIDI Channels selected" +msgstr "" + +#: midi_time_axis.cc:640 midi_time_axis.cc:769 +msgid "Hide all channels" +msgstr "" + +#: midi_time_axis.cc:644 midi_time_axis.cc:773 +msgid "Show all channels" +msgstr "" + +#: midi_time_axis.cc:655 midi_time_axis.cc:784 +msgid "Channel %1" +msgstr "" + +#: midi_time_axis.cc:910 midi_time_axis.cc:942 +msgid "Controllers %1-%2" +msgstr "" + +#: midi_time_axis.cc:933 midi_time_axis.cc:936 +msgid "Controller %1" +msgstr "" + #: midi_time_axis.cc:959 msgid "Sustained" msgstr "" @@ -3462,30 +6852,75 @@ msgstr "" msgid "Percussive" msgstr "" +#: midi_time_axis.cc:986 +msgid "Meter Colors" +msgstr "" + +#: midi_time_axis.cc:993 +msgid "Channel Colors" +msgstr "" + +#: midi_time_axis.cc:1000 +msgid "Track Color" +msgstr "" + +#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 +#: midi_time_axis.cc:1510 +msgid "all" +msgstr "" + #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" -#: midi_tracer.cc:43 +#: midi_tracer.cc:46 msgid "Line history: " msgstr "" -#: midi_tracer.cc:51 +#: midi_tracer.cc:54 msgid "Auto-Scroll" msgstr "" -#: midi_tracer.cc:52 +#: midi_tracer.cc:55 msgid "Decimal" msgstr "" +#: midi_tracer.cc:56 rc_option_editor.cc:657 +msgid "Enabled" +msgstr "" + +#: midi_tracer.cc:57 +msgid "Delta times" +msgstr "" + +#: midi_tracer.cc:70 +msgid "Port:" +msgstr "" + +#: midi_velocity_dialog.cc:31 +msgid "New velocity" +msgstr "" + #: missing_file_dialog.cc:34 msgid "Missing File!" msgstr "" +#: missing_file_dialog.cc:36 +msgid "Select a folder to search" +msgstr "" + #: missing_file_dialog.cc:37 msgid "Add chosen folder to search path, and try again" msgstr "" +#: missing_file_dialog.cc:39 +msgid "Stop loading this session" +msgstr "" + +#: missing_file_dialog.cc:40 +msgid "Skip all missing files" +msgstr "" + #: missing_file_dialog.cc:41 msgid "Skip this file" msgstr "" @@ -3510,7 +6945,11 @@ msgstr "" msgid "Click to choose an additional folder" msgstr "" -#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 +#: missing_plugin_dialog.cc:29 +msgid "Missing Plugins" +msgstr "" + +#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:59 msgid "OK" msgstr "OK" @@ -3538,6 +6977,34 @@ msgstr "" msgid "Set Gain to 0dB on Mixer-Selected Tracks/Busses" msgstr "" +#: mixer_actor.cc:63 +msgid "Copy Selected Processors" +msgstr "" + +#: mixer_actor.cc:64 +msgid "Cut Selected Processors" +msgstr "" + +#: mixer_actor.cc:65 +msgid "Paste Selected Processors" +msgstr "" + +#: mixer_actor.cc:66 +msgid "Delete Selected Processors" +msgstr "" + +#: mixer_actor.cc:67 +msgid "Select All (visible) Processors" +msgstr "" + +#: mixer_actor.cc:68 +msgid "Toggle Selected Processors" +msgstr "" + +#: mixer_actor.cc:69 +msgid "Toggle Selected Plugins" +msgstr "" + #: mixer_actor.cc:72 mixer_actor.cc:73 msgid "Scroll Mixer Window to the left" msgstr "" @@ -3558,6 +7025,11 @@ msgstr "" msgid "pre" msgstr "" +#: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 +#: rc_option_editor.cc:1868 +msgid "Comments" +msgstr "" + #: mixer_strip.cc:147 msgid "Click to toggle the width of this mixer strip." msgstr "" @@ -3568,6 +7040,14 @@ msgid "" "%1-%2-click to toggle the width of all strips." msgstr "" +#: mixer_strip.cc:156 +msgid "Hide this mixer strip" +msgstr "" + +#: mixer_strip.cc:167 +msgid "Click to select metering point" +msgstr "" + #: mixer_strip.cc:173 msgid "tupni" msgstr "" @@ -3584,8 +7064,46 @@ msgstr "" msgid "lock" msgstr "bloquear" -#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 -msgid "Not connected to JACK - no I/O changes are possible" +#: mixer_strip.cc:204 mixer_strip.cc:1925 +msgid "iso" +msgstr "" + +#: mixer_strip.cc:258 +msgid "Mix group" +msgstr "" + +#: mixer_strip.cc:351 rc_option_editor.cc:1865 +msgid "Phase Invert" +msgstr "" + +#: mixer_strip.cc:352 rc_option_editor.cc:1866 route_ui.cc:1218 +msgid "Solo Safe" +msgstr "" + +#: mixer_strip.cc:355 mixer_ui.cc:124 route_time_axis.cc:673 +msgid "Group" +msgstr "" + +#: mixer_strip.cc:356 rc_option_editor.cc:1869 +msgid "Meter Point" +msgstr "" + +#: mixer_strip.cc:470 +msgid "Enable/Disable MIDI input" +msgstr "" + +#: mixer_strip.cc:622 +msgid "" +"Aux\n" +"Sends" +msgstr "" + +#: mixer_strip.cc:646 +msgid "Snd" +msgstr "" + +#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2193 +msgid "Not connected to audio engine - no I/O changes are possible" msgstr "" #: mixer_strip.cc:1096 @@ -3596,6 +7114,18 @@ msgstr "" msgid "OUTPUT from %1" msgstr "" +#: mixer_strip.cc:1174 +msgid "Disconnected" +msgstr "" + +#: mixer_strip.cc:1303 +msgid "*Comments*" +msgstr "" + +#: mixer_strip.cc:1310 +msgid "Cmt" +msgstr "" + #: mixer_strip.cc:1313 msgid "*Cmt*" msgstr "" @@ -3604,6 +7134,10 @@ msgstr "" msgid "Click to Add/Edit Comments" msgstr "" +#: mixer_strip.cc:1358 +msgid ": comment editor" +msgstr "" + #: mixer_strip.cc:1435 msgid "Grp" msgstr "" @@ -3616,6 +7150,10 @@ msgstr "" msgid "Comments..." msgstr "" +#: mixer_strip.cc:1469 +msgid "Save As Template..." +msgstr "" + #: mixer_strip.cc:1475 route_group_dialog.cc:39 route_time_axis.cc:696 msgid "Active" msgstr "Ativar" @@ -3628,10 +7166,18 @@ msgstr "" msgid "Protect Against Denormals" msgstr "" +#: mixer_strip.cc:1491 route_time_axis.cc:435 +msgid "Remote Control ID..." +msgstr "" + #: mixer_strip.cc:1717 mixer_strip.cc:1741 msgid "in" msgstr "entrada" +#: mixer_strip.cc:1725 +msgid "post" +msgstr "" + #: mixer_strip.cc:1729 msgid "out" msgstr "saída" @@ -3640,6 +7186,18 @@ msgstr "saída" msgid "custom" msgstr "" +#: mixer_strip.cc:1745 +msgid "pr" +msgstr "" + +#: mixer_strip.cc:1749 +msgid "po" +msgstr "" + +#: mixer_strip.cc:1753 +msgid "o" +msgstr "" + #: mixer_strip.cc:1758 msgid "c" msgstr "" @@ -3656,10 +7214,30 @@ msgstr "" msgid "PFL" msgstr "" +#: mixer_strip.cc:1933 +msgid "D" +msgstr "" + +#: mixer_strip.cc:1953 +msgid "i" +msgstr "" + +#: mixer_strip.cc:2128 +msgid "Pre-fader" +msgstr "" + +#: mixer_strip.cc:2129 +msgid "Post-fader" +msgstr "" + #: mixer_strip.cc:2166 meter_strip.cc:728 msgid "Change all in Group to %1" msgstr "" +#: mixer_strip.cc:2168 meter_strip.cc:730 +msgid "Change all to %1" +msgstr "" + #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -3676,6 +7254,14 @@ msgstr "-tudo-" msgid "Strips" msgstr "Painéis" +#: meter_strip.cc:764 +msgid "Variable height" +msgstr "" + +#: meter_strip.cc:765 +msgid "Short" +msgstr "" + #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -3728,10 +7314,18 @@ msgstr "" msgid "SiP" msgstr "" +#: monitor_section.cc:86 +msgid "soloing" +msgstr "" + #: monitor_section.cc:90 msgid "isolated" msgstr "" +#: monitor_section.cc:94 +msgid "auditioning" +msgstr "" + #: monitor_section.cc:104 msgid "" "When active, something is solo-isolated.\n" @@ -3812,10 +7406,22 @@ msgstr "" msgid "mono" msgstr "mono" +#: monitor_section.cc:266 +msgid "Monitor" +msgstr "" + #: monitor_section.cc:678 msgid "Switch monitor to mono" msgstr "" +#: monitor_section.cc:681 +msgid "Cut monitor" +msgstr "" + +#: monitor_section.cc:684 +msgid "Dim monitor" +msgstr "" + #: monitor_section.cc:687 msgid "Toggle exclusive solo mode" msgstr "" @@ -3824,6 +7430,34 @@ msgstr "" msgid "Toggle mute overrides solo mode" msgstr "" +#: monitor_section.cc:705 +msgid "Cut monitor channel %1" +msgstr "" + +#: monitor_section.cc:710 +msgid "Dim monitor channel %1" +msgstr "" + +#: monitor_section.cc:715 +msgid "Solo monitor channel %1" +msgstr "" + +#: monitor_section.cc:720 +msgid "Invert monitor channel %1" +msgstr "" + +#: monitor_section.cc:730 +msgid "In-place solo" +msgstr "" + +#: monitor_section.cc:732 +msgid "After Fade Listen (AFL) solo" +msgstr "" + +#: monitor_section.cc:734 +msgid "Pre Fade Listen (PFL) solo" +msgstr "" + #: mono_panner.cc:101 #, c-format msgid "L:%3d R:%3d" @@ -3889,6 +7523,26 @@ msgid "" "relies on a stable, sustainable income stream. Thanks for using Ardour!" msgstr "" +#: new_plugin_preset_dialog.cc:29 +msgid "New Preset" +msgstr "" + +#: new_plugin_preset_dialog.cc:30 +msgid "Replace existing preset with this name" +msgstr "" + +#: new_plugin_preset_dialog.cc:34 +msgid "Name of new preset" +msgstr "" + +#: normalize_dialog.cc:34 +msgid "Normalize regions" +msgstr "" + +#: normalize_dialog.cc:34 +msgid "Normalize region" +msgstr "" + #: normalize_dialog.cc:49 strip_silence_dialog.cc:70 msgid "dbFS" msgstr "" @@ -3909,11 +7563,34 @@ msgstr "Normalizar" msgid "Usage: " msgstr "Usual: " +#: opts.cc:58 +msgid " [SESSION_NAME] Name of session to load\n" +msgstr "" + +#: opts.cc:59 +msgid " -v, --version Show version information\n" +msgstr "" + +#: opts.cc:60 +msgid " -h, --help Print this message\n" +msgstr "" + #: opts.cc:61 msgid "" " -a, --no-announcements Do not contact website for announcements\n" msgstr "" +#: opts.cc:62 +msgid "" +" -b, --bindings Print all possible keyboard binding names\n" +msgstr "" + +#: opts.cc:63 +msgid "" +" -c, --name Use a specific backend client name, default is " +"ardour\n" +msgstr "" + #: opts.cc:64 msgid "" " -d, --disable-plugins Disable all plugins in an existing session\n" @@ -3925,10 +7602,19 @@ msgid "" "available options\n" msgstr "" +#: opts.cc:66 +msgid " -n, --no-splash Do not show splash screen\n" +msgstr "" + #: opts.cc:67 msgid " -m, --menus file Use \"file\" to define menus\n" msgstr "" +#: opts.cc:68 +msgid "" +" -N, --new session-name Create a new session from the command line\n" +msgstr "" + #: opts.cc:69 msgid " -O, --no-hw-optimizations Disable h/w specific optimizations\n" msgstr "" @@ -3937,6 +7623,14 @@ msgstr "" msgid " -P, --no-connect-ports Do not connect any ports at startup\n" msgstr "" +#: opts.cc:71 +msgid " -S, --sync Draw the gui synchronously \n" +msgstr "" + +#: opts.cc:73 +msgid " -V, --novst Do not use VST support\n" +msgstr "" + #: opts.cc:75 msgid "" " -E, --save Load the specified session, save it to " @@ -3957,7 +7651,7 @@ msgstr "" msgid "Panner (2D)" msgstr "" -#: panner2d.cc:783 panner_ui.cc:384 plugin_ui.cc:451 +#: panner2d.cc:783 panner_ui.cc:383 plugin_ui.cc:448 msgid "Bypass" msgstr "Ignorar" @@ -3965,23 +7659,31 @@ msgstr "Ignorar" msgid "Panner" msgstr "" -#: panner_ui.cc:71 +#: panner_ui.cc:70 msgid "Pan automation mode" msgstr "modo automático de pan" -#: panner_ui.cc:72 +#: panner_ui.cc:71 msgid "Pan automation type" msgstr "Tipo do pan automático" -#: panner_ui.cc:295 +#: panner_ui.cc:294 msgid "" "No panner user interface is currently available for %1-in/2out tracks/busses" msgstr "" +#: playlist_selector.cc:43 +msgid "Playlists" +msgstr "" + #: playlist_selector.cc:54 msgid "Playlists grouped by track" msgstr "" +#: playlist_selector.cc:101 +msgid "Playlist for %1" +msgstr "" + #: playlist_selector.cc:114 msgid "Other tracks" msgstr "Outras trilhas" @@ -3991,14 +7693,46 @@ msgstr "Outras trilhas" msgid "unassigned" msgstr "" +#: playlist_selector.cc:194 +msgid "Imported" +msgstr "" + #: plugin_eq_gui.cc:75 plugin_eq_gui.cc:99 msgid "dB scale" msgstr "" +#: plugin_eq_gui.cc:106 +msgid "Show phase" +msgstr "" + +#: plugin_selector.cc:53 plugin_selector.cc:220 +msgid "Name contains" +msgstr "" + +#: plugin_selector.cc:54 plugin_selector.cc:224 +msgid "Type contains" +msgstr "" + +#: plugin_selector.cc:55 plugin_selector.cc:222 +msgid "Category contains" +msgstr "" + +#: plugin_selector.cc:56 plugin_selector.cc:244 +msgid "Author contains" +msgstr "" + +#: plugin_selector.cc:57 plugin_selector.cc:246 +msgid "Library contains" +msgstr "" + #: plugin_selector.cc:58 plugin_selector.cc:210 plugin_selector.cc:521 msgid "Favorites only" msgstr "" +#: plugin_selector.cc:59 plugin_selector.cc:214 plugin_selector.cc:521 +msgid "Hidden only" +msgstr "" + #: plugin_selector.cc:64 msgid "Plugin Manager" msgstr "" @@ -4007,6 +7741,10 @@ msgstr "" msgid "Fav" msgstr "" +#: plugin_selector.cc:86 +msgid "Available Plugins" +msgstr "" + #: plugin_selector.cc:87 msgid "Type" msgstr "Tipo" @@ -4015,6 +7753,30 @@ msgstr "Tipo" msgid "Category" msgstr "" +#: plugin_selector.cc:89 +msgid "Creator" +msgstr "" + +#: plugin_selector.cc:90 +msgid "# Audio In" +msgstr "" + +#: plugin_selector.cc:91 +msgid "# Audio Out" +msgstr "" + +#: plugin_selector.cc:92 +msgid "# MIDI In" +msgstr "" + +#: plugin_selector.cc:93 +msgid "# MIDI Out" +msgstr "" + +#: plugin_selector.cc:115 +msgid "Plugins to be connected" +msgstr "" + #: plugin_selector.cc:128 msgid "Add a plugin to the effect list" msgstr "Adicionar plugin na lista de efeitos" @@ -4027,6 +7789,10 @@ msgstr "Remover plugin da lista de efeitos" msgid "Update available plugins" msgstr "Atualizar plugins disponíveis" +#: plugin_selector.cc:171 +msgid "Insert Plugin(s)" +msgstr "" + #: plugin_selector.cc:320 plugin_selector.cc:321 plugin_selector.cc:322 #: plugin_selector.cc:323 msgid "variable" @@ -4047,93 +7813,141 @@ msgstr "" msgid "Plugin Manager..." msgstr "" +#: plugin_selector.cc:634 +msgid "By Creator" +msgstr "" + #: plugin_selector.cc:637 msgid "By Category" msgstr "" -#: plugin_ui.cc:116 +#: plugin_ui.cc:114 msgid "Eh? LADSPA plugins don't have editors!" msgstr "" -#: plugin_ui.cc:329 +#: plugin_ui.cc:123 plugin_ui.cc:226 +msgid "" +"unknown type of editor-supplying plugin (note: no VST support in this " +"version of %1)" +msgstr "" + +#: plugin_ui.cc:126 +msgid "unknown type of editor-supplying plugin" +msgstr "" + +#: plugin_ui.cc:256 +msgid "" +"unknown type of editor-supplying plugin (note: no linuxVST support in this " +"version of %1)" +msgstr "" + +#: plugin_ui.cc:328 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "" -#: plugin_ui.cc:417 +#: plugin_ui.cc:414 msgid "Add" msgstr "Adicionar" -#: plugin_ui.cc:429 +#: plugin_ui.cc:418 +msgid "Description" +msgstr "" + +#: plugin_ui.cc:419 +msgid "Plugin analysis" +msgstr "" + +#: plugin_ui.cc:426 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:431 +#: plugin_ui.cc:427 +msgid "Save a new preset" +msgstr "" + +#: plugin_ui.cc:428 msgid "Save the current preset" msgstr "" -#: plugin_ui.cc:432 +#: plugin_ui.cc:429 msgid "Delete the current preset" msgstr "" -#: plugin_ui.cc:433 +#: plugin_ui.cc:430 msgid "Disable signal processing by the plugin" msgstr "" -#: plugin_ui.cc:466 plugin_ui.cc:662 +#: plugin_ui.cc:463 plugin_ui.cc:659 msgid "" "Click to allow the plugin to receive keyboard events that %1 would normally " "use as a shortcut" msgstr "" -#: plugin_ui.cc:467 +#: plugin_ui.cc:464 msgid "Click to enable/disable this plugin" msgstr "" -#: plugin_ui.cc:506 +#: plugin_ui.cc:503 msgid "latency (%1 sample)" msgid_plural "latency (%1 samples)" msgstr[0] "" msgstr[1] "" -#: plugin_ui.cc:508 +#: plugin_ui.cc:505 msgid "latency (%1 ms)" msgstr "" -#: plugin_ui.cc:519 +#: plugin_ui.cc:516 msgid "Edit Latency" msgstr "" -#: plugin_ui.cc:558 +#: plugin_ui.cc:555 msgid "Plugin preset %1 not found" msgstr "Pré-seleção do plugin %1 não encontrada" -#: plugin_ui.cc:595 +#: plugin_ui.cc:592 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "full version" msgstr "" -#: plugin_ui.cc:615 plugin_ui.cc:630 +#: plugin_ui.cc:612 plugin_ui.cc:627 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "newer version" msgstr "" -#: plugin_ui.cc:669 +#: plugin_ui.cc:666 msgid "Click to allow normal use of %1 keyboard shortcuts" msgstr "" +#: port_group.cc:337 +msgid "%1 Busses" +msgstr "" + +#: port_group.cc:338 +msgid "%1 Tracks" +msgstr "" + #: port_group.cc:339 +msgid "Hardware" +msgstr "" + +#: port_group.cc:340 +msgid "%1 Misc" +msgstr "" + +#: port_group.cc:341 msgid "Other" msgstr "" -#: port_group.cc:430 port_group.cc:431 +#: port_group.cc:432 port_group.cc:433 msgid "LTC Out" msgstr "" -#: port_group.cc:434 port_group.cc:435 +#: port_group.cc:436 port_group.cc:437 msgid "LTC In" msgstr "" @@ -4141,10 +7955,26 @@ msgstr "" msgid "MTC in" msgstr "" +#: port_group.cc:466 +msgid "MIDI control in" +msgstr "" + +#: port_group.cc:469 +msgid "MIDI clock in" +msgstr "" + #: port_group.cc:472 msgid "MMC in" msgstr "" +#: port_group.cc:476 +msgid "MTC out" +msgstr "" + +#: port_group.cc:479 +msgid "MIDI control out" +msgstr "" + #: port_group.cc:482 msgid "MIDI clock out" msgstr "" @@ -4153,11 +7983,15 @@ msgstr "" msgid "MMC out" msgstr "" -#: port_group.cc:552 +#: port_group.cc:532 +msgid ":monitor" +msgstr "" + +#: port_group.cc:544 msgid "system:" msgstr "" -#: port_group.cc:553 +#: port_group.cc:545 msgid "alsa_pcm" msgstr "" @@ -4165,20 +7999,24 @@ msgstr "" msgid "Measure Latency" msgstr "" -#: port_insert_ui.cc:52 -msgid "Return/Input" +#: port_insert_ui.cc:51 +msgid "Send/Output" msgstr "" -#: port_insert_ui.cc:71 port_insert_ui.cc:99 -msgid "Disconnected from audio engine" +#: port_insert_ui.cc:52 +msgid "Return/Input" msgstr "" #: port_insert_ui.cc:86 msgid "No signal detected" msgstr "" -#: port_insert_ui.cc:135 -msgid "Detecting ..." +#: port_insert_ui.cc:166 +msgid "Port Insert " +msgstr "" + +#: port_matrix.cc:331 port_matrix.cc:357 +msgid "Sources" msgstr "" #: port_matrix.cc:332 port_matrix.cc:358 @@ -4190,6 +8028,20 @@ msgstr "" msgid "Add %s %s" msgstr "" +#: port_matrix.cc:456 +#, c-format +msgid "Rename '%s'..." +msgstr "" + +#: port_matrix.cc:472 +msgid "Remove all" +msgstr "" + +#: port_matrix.cc:492 port_matrix.cc:504 +#, c-format +msgid "%s all" +msgstr "" + #: port_matrix.cc:527 msgid "Rescan" msgstr "Rescanear" @@ -4202,27 +8054,41 @@ msgstr "" msgid "Flip" msgstr "" -#: port_matrix.cc:723 +#: port_matrix.cc:721 msgid "" "It is not possible to add a port here, as the first processor in the track " "or buss cannot support the new configuration." msgstr "" -#: port_matrix.cc:726 +#: port_matrix.cc:724 msgid "Cannot add port" msgstr "" -#: port_matrix.cc:748 +#: port_matrix.cc:746 msgid "Port removal not allowed" msgstr "" -#: port_matrix.cc:749 +#: port_matrix.cc:747 msgid "" "This port cannot be removed.\n" "Either the first plugin in the track or buss cannot accept\n" "the new number of inputs or the last plugin has more outputs." msgstr "" +#: port_matrix.cc:964 +#, c-format +msgid "Remove '%s'" +msgstr "" + +#: port_matrix.cc:979 +#, c-format +msgid "%s all from '%s'" +msgstr "" + +#: port_matrix.cc:1045 +msgid "channel" +msgstr "" + #: port_matrix_body.cc:82 msgid "There are no ports to connect." msgstr "" @@ -4244,7 +8110,19 @@ msgid "" "Double-click to show generic GUI." msgstr "" -#: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 +#: processor_box.cc:372 +msgid "Show All Controls" +msgstr "" + +#: processor_box.cc:376 +msgid "Hide All Controls" +msgstr "" + +#: processor_box.cc:465 +msgid "on" +msgstr "" + +#: processor_box.cc:465 rc_option_editor.cc:1898 rc_option_editor.cc:1912 msgid "off" msgstr "desligado" @@ -4254,7 +8132,7 @@ msgid "" "plugins,inserts,sends and more" msgstr "" -#: processor_box.cc:1197 processor_box.cc:1591 +#: processor_box.cc:1197 processor_box.cc:1618 msgid "Plugin Incompatibility" msgstr "" @@ -4268,12 +8146,36 @@ msgid "" "This plugin has:\n" msgstr "" +#: processor_box.cc:1209 +msgid "\t%1 MIDI input\n" +msgid_plural "\t%1 MIDI inputs\n" +msgstr[0] "" +msgstr[1] "" + +#: processor_box.cc:1213 +msgid "\t%1 audio input\n" +msgid_plural "\t%1 audio inputs\n" +msgstr[0] "" +msgstr[1] "" + #: processor_box.cc:1216 msgid "" "\n" "but at the insertion point, there are:\n" msgstr "" +#: processor_box.cc:1219 +msgid "\t%1 MIDI channel\n" +msgid_plural "\t%1 MIDI channels\n" +msgstr[0] "" +msgstr[1] "" + +#: processor_box.cc:1223 +msgid "\t%1 audio channel\n" +msgid_plural "\t%1 audio channels\n" +msgstr[0] "" +msgstr[1] "" + #: processor_box.cc:1226 msgid "" "\n" @@ -4284,40 +8186,118 @@ msgstr "" msgid "Cannot set up new send: %1" msgstr "" -#: processor_box.cc:1594 +#: processor_box.cc:1621 msgid "" "You cannot reorder these plugins/sends/inserts\n" "in that way because the inputs and\n" "outputs will not work correctly." msgstr "" -#: processor_box.cc:1809 +#: processor_box.cc:1805 +msgid "Rename Processor" +msgstr "" + +#: processor_box.cc:1836 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "" -#: processor_box.cc:1943 +#: processor_box.cc:1970 msgid "plugin insert constructor failed" msgstr "" -#: processor_box.cc:1954 +#: processor_box.cc:1981 msgid "" "Copying the set of processors on the clipboard failed,\n" "probably because the I/O configuration of the plugins\n" "could not match the configuration of this track." msgstr "" -#: processor_box.cc:2206 +#: processor_box.cc:2027 +msgid "" +"Do you really want to remove all processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2031 processor_box.cc:2056 +msgid "Yes, remove them all" +msgstr "" + +#: processor_box.cc:2033 processor_box.cc:2058 +msgid "Remove processors" +msgstr "" + +#: processor_box.cc:2048 +msgid "" +"Do you really want to remove all pre-fader processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2051 +msgid "" +"Do you really want to remove all post-fader processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2239 +msgid "New Plugin" +msgstr "" + +#: processor_box.cc:2242 +msgid "New Insert" +msgstr "" + +#: processor_box.cc:2245 msgid "New External Send ..." msgstr "" -#: processor_box.cc:2210 +#: processor_box.cc:2249 msgid "New Aux Send ..." msgstr "" +#: processor_box.cc:2253 +msgid "Clear (all)" +msgstr "" + +#: processor_box.cc:2255 +msgid "Clear (pre-fader)" +msgstr "" + #: processor_box.cc:2257 +msgid "Clear (post-fader)" +msgstr "" + +#: processor_box.cc:2283 +msgid "Activate All" +msgstr "" + +#: processor_box.cc:2285 +msgid "Deactivate All" +msgstr "" + +#: processor_box.cc:2287 +msgid "A/B Plugins" +msgstr "" + +#: processor_box.cc:2296 msgid "Edit with generic controls..." msgstr "" +#: processor_box.cc:2599 +msgid "%1: %2 (by %3)" +msgstr "" + +#: processor_box.cc:2601 +msgid "%2 (by %3)" +msgstr "" + +#: patch_change_dialog.cc:51 +msgid "Patch Change" +msgstr "" + +#: patch_change_dialog.cc:77 +msgid "Patch Bank" +msgstr "" + #: patch_change_dialog.cc:84 msgid "Patch" msgstr "" @@ -4350,80 +8330,128 @@ msgstr "" msgid "Threshold (ticks)" msgstr "" -#: rc_option_editor.cc:108 +#: quantize_dialog.cc:63 +msgid "Snap note start" +msgstr "" + +#: quantize_dialog.cc:64 +msgid "Snap note end" +msgstr "" + +#: rc_option_editor.cc:67 +msgid "Click audio file:" +msgstr "" + +#: rc_option_editor.cc:70 rc_option_editor.cc:77 +msgid "Browse..." +msgstr "" + +#: rc_option_editor.cc:74 +msgid "Click emphasis audio file:" +msgstr "" + +#: rc_option_editor.cc:106 msgid "Choose Click" msgstr "" -#: rc_option_editor.cc:160 +#: rc_option_editor.cc:126 +msgid "Choose Click Emphasis" +msgstr "" + +#: rc_option_editor.cc:158 msgid "Limit undo history to" msgstr "" -#: rc_option_editor.cc:161 +#: rc_option_editor.cc:159 msgid "Save undo history of" msgstr "" -#: rc_option_editor.cc:170 rc_option_editor.cc:177 +#: rc_option_editor.cc:168 rc_option_editor.cc:175 msgid "commands" msgstr "" -#: rc_option_editor.cc:321 rc_option_editor.cc:347 rc_option_editor.cc:374 +#: rc_option_editor.cc:313 +msgid "Edit using:" +msgstr "" + +#: rc_option_editor.cc:319 rc_option_editor.cc:345 rc_option_editor.cc:372 msgid "+ button" msgstr "+ button" -#: rc_option_editor.cc:411 +#: rc_option_editor.cc:339 +msgid "Delete using:" +msgstr "" + +#: rc_option_editor.cc:366 +msgid "Insert note using:" +msgstr "" + +#: rc_option_editor.cc:393 +msgid "Ignore snap using:" +msgstr "" + +#: rc_option_editor.cc:409 msgid "Keyboard layout:" msgstr "" -#: rc_option_editor.cc:534 +#: rc_option_editor.cc:532 msgid "Font scaling:" msgstr "" -#: rc_option_editor.cc:586 +#: rc_option_editor.cc:584 msgid "Playback (seconds of buffering):" msgstr "" -#: rc_option_editor.cc:599 +#: rc_option_editor.cc:597 msgid "Recording (seconds of buffering):" msgstr "" -#: rc_option_editor.cc:660 +#: rc_option_editor.cc:654 +msgid "Control Surface Protocol" +msgstr "" + +#: rc_option_editor.cc:658 msgid "Feedback" msgstr "" -#: rc_option_editor.cc:665 +#: rc_option_editor.cc:663 msgid "Double-click on a name to edit settings for an enabled protocol" msgstr "" -#: rc_option_editor.cc:817 +#: rc_option_editor.cc:815 msgid "Show Video Export Info before export" msgstr "" -#: rc_option_editor.cc:818 +#: rc_option_editor.cc:816 msgid "Show Video Server Startup Dialog" msgstr "" -#: rc_option_editor.cc:819 +#: rc_option_editor.cc:817 msgid "Advanced Setup (remote video server)" msgstr "" -#: rc_option_editor.cc:827 +#: rc_option_editor.cc:825 msgid "" "When enabled you can speficify a custom video-server URL and docroot. " "- Do not enable this option unless you know what you are doing." msgstr "" -#: rc_option_editor.cc:829 +#: rc_option_editor.cc:827 msgid "Video Server URL:" msgstr "" -#: rc_option_editor.cc:834 +#: rc_option_editor.cc:832 msgid "" "Base URL of the video-server including http prefix. This is usually 'http://" "hostname.example.org:1554/' and defaults to 'http://localhost:1554/' when " "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:841 +#: rc_option_editor.cc:834 +msgid "Video Folder:" +msgstr "" + +#: rc_option_editor.cc:839 msgid "" "Local path to the video-server document-root. Only files below this " "directory will be accessible by the video-server. If the server run on a " @@ -4432,81 +8460,113 @@ msgid "" "monitor and file-browsing when opening/adding a video file." msgstr "" -#: rc_option_editor.cc:848 +#: rc_option_editor.cc:846 msgid "" "When enabled an information window with details is displayed before " "the video-export dialog." msgstr "" -#: rc_option_editor.cc:853 +#: rc_option_editor.cc:851 msgid "" "When enabled the video server is never launched automatically without " "confirmation" msgstr "" -#: rc_option_editor.cc:993 +#: rc_option_editor.cc:991 msgid "%1 Preferences" msgstr "" -#: rc_option_editor.cc:1004 +#: rc_option_editor.cc:1002 msgid "DSP CPU Utilization" msgstr "" -#: rc_option_editor.cc:1008 +#: rc_option_editor.cc:1006 msgid "Signal processing uses" msgstr "" -#: rc_option_editor.cc:1013 +#: rc_option_editor.cc:1011 msgid "all but one processor" msgstr "" -#: rc_option_editor.cc:1017 +#: rc_option_editor.cc:1012 +msgid "all available processors" +msgstr "" + +#: rc_option_editor.cc:1015 msgid "%1 processors" msgstr "" -#: rc_option_editor.cc:1020 +#: rc_option_editor.cc:1018 msgid "This setting will only take effect when %1 is restarted." msgstr "" -#: rc_option_editor.cc:1040 +#: rc_option_editor.cc:1023 +msgid "Options|Undo" +msgstr "" + +#: rc_option_editor.cc:1030 +msgid "Verify removal of last capture" +msgstr "" + +#: rc_option_editor.cc:1038 msgid "Make periodic backups of the session file" msgstr "" -#: rc_option_editor.cc:1050 +#: rc_option_editor.cc:1043 +msgid "Session Management" +msgstr "" + +#: rc_option_editor.cc:1048 msgid "Always copy imported files" msgstr "" -#: rc_option_editor.cc:1065 +#: rc_option_editor.cc:1055 +msgid "Default folder for new sessions:" +msgstr "" + +#: rc_option_editor.cc:1063 msgid "Maximum number of recent sessions" msgstr "" -#: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 +#: rc_option_editor.cc:1076 +msgid "Click gain level" +msgstr "" + +#: rc_option_editor.cc:1081 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "Automação" -#: rc_option_editor.cc:1088 +#: rc_option_editor.cc:1086 msgid "Thinning factor (larger value => less data)" msgstr "" -#: rc_option_editor.cc:1097 +#: rc_option_editor.cc:1095 msgid "Automation sampling interval (milliseconds)" msgstr "" -#: rc_option_editor.cc:1109 +#: rc_option_editor.cc:1107 msgid "Keep record-enable engaged on stop" msgstr "" -#: rc_option_editor.cc:1123 +#: rc_option_editor.cc:1116 +msgid "Stop recording when an xrun occurs" +msgstr "" + +#: rc_option_editor.cc:1121 msgid "" "When enabled %1 will stop recording if an over- or underrun is " "detected by the audio engine" msgstr "" -#: rc_option_editor.cc:1129 +#: rc_option_editor.cc:1127 msgid "Create markers where xruns occur" msgstr "" -#: rc_option_editor.cc:1143 +#: rc_option_editor.cc:1136 +msgid "Stop at the end of the session" +msgstr "" + +#: rc_option_editor.cc:1141 msgid "" "When enabled if %1 is not recording, it will stop the " "transport when it reaches the current session end marker\n" @@ -4515,11 +8575,11 @@ msgid "" "all times" msgstr "" -#: rc_option_editor.cc:1151 -msgid "Do seamless looping (not possible when slaved to MTC, JACK etc)" +#: rc_option_editor.cc:1149 +msgid "Do seamless looping (not possible when slaved to MTC, LTC etc)" msgstr "" -#: rc_option_editor.cc:1156 +#: rc_option_editor.cc:1154 msgid "" "When enabled this will loop by reading ahead and wrapping around at " "the loop point, preventing any need to do a transport locate at the end of " @@ -4529,35 +8589,39 @@ msgid "" "loop when %1 reaches the end which will often cause a small click or delay" msgstr "" -#: rc_option_editor.cc:1164 +#: rc_option_editor.cc:1162 msgid "Disable per-track record disarm while rolling" msgstr "" -#: rc_option_editor.cc:1168 +#: rc_option_editor.cc:1166 msgid "" "When enabled this will prevent you from accidentally stopping " "specific tracks recording during a take" msgstr "" -#: rc_option_editor.cc:1173 +#: rc_option_editor.cc:1171 msgid "12dB gain reduction during fast-forward and fast-rewind" msgstr "" -#: rc_option_editor.cc:1177 +#: rc_option_editor.cc:1175 msgid "" "This will reduce the unpleasant increase in perceived volume that occurs " "when fast-forwarding or rewinding through some kinds of audio" msgstr "" -#: rc_option_editor.cc:1181 +#: rc_option_editor.cc:1179 msgid "Sync/Slave" msgstr "" -#: rc_option_editor.cc:1195 +#: rc_option_editor.cc:1183 +msgid "External timecode source" +msgstr "" + +#: rc_option_editor.cc:1193 msgid "Match session video frame rate to external timecode" msgstr "" -#: rc_option_editor.cc:1201 +#: rc_option_editor.cc:1199 msgid "" "This option controls the value of the video frame rate while chasing " "an external timecode source.\n" @@ -4571,17 +8635,21 @@ msgid "" "external timecode standard and the session standard." msgstr "" -#: rc_option_editor.cc:1217 +#: rc_option_editor.cc:1209 +msgid "External timecode is sync locked" +msgstr "" + +#: rc_option_editor.cc:1215 msgid "" "When enabled indicates that the selected external timecode source " "shares sync (Black & Burst, Wordclock, etc) with the audio interface." msgstr "" -#: rc_option_editor.cc:1224 +#: rc_option_editor.cc:1222 msgid "Lock to 29.9700 fps instead of 30000/1001" msgstr "" -#: rc_option_editor.cc:1230 +#: rc_option_editor.cc:1228 msgid "" "When enabled the external timecode source is assumed to use 29.97 fps " "instead of 30000/1001.\n" @@ -4594,95 +8662,139 @@ msgid "" "variant of using exactly 29.97 fps has zero timecode drift.\n" msgstr "" -#: rc_option_editor.cc:1244 +#: rc_option_editor.cc:1238 +msgid "LTC Reader" +msgstr "" + +#: rc_option_editor.cc:1242 msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1269 +#: rc_option_editor.cc:1255 +msgid "LTC Generator" +msgstr "" + +#: rc_option_editor.cc:1260 +msgid "Enable LTC generator" +msgstr "" + +#: rc_option_editor.cc:1267 msgid "send LTC while stopped" msgstr "" -#: rc_option_editor.cc:1275 +#: rc_option_editor.cc:1273 msgid "" "When enabled %1 will continue to send LTC information even when the " "transport (playhead) is not moving" msgstr "" -#: rc_option_editor.cc:1285 +#: rc_option_editor.cc:1279 +msgid "LTC generator level" +msgstr "" + +#: rc_option_editor.cc:1283 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " "is 0dBu ^= -18dbFS in an EBU calibrated system" msgstr "" -#: rc_option_editor.cc:1305 +#: rc_option_editor.cc:1295 +msgid "Link selection of regions and tracks" +msgstr "" + +#: rc_option_editor.cc:1303 msgid "Move relevant automation when audio regions are moved" msgstr "" -#: rc_option_editor.cc:1313 +#: rc_option_editor.cc:1311 msgid "Show meters on tracks in the editor" msgstr "" -#: rc_option_editor.cc:1321 +#: rc_option_editor.cc:1319 msgid "Display master-meter in the toolbar" msgstr "" -#: rc_option_editor.cc:1328 +#: rc_option_editor.cc:1326 msgid "Regions in active edit groups are edited together" msgstr "" -#: rc_option_editor.cc:1329 +#: rc_option_editor.cc:1327 msgid "whenever they overlap in time" msgstr "" -#: rc_option_editor.cc:1330 +#: rc_option_editor.cc:1328 msgid "only if they have identical length, position and origin" msgstr "" -#: rc_option_editor.cc:1340 +#: rc_option_editor.cc:1338 msgid "Make rubberband selection rectangle snap to the grid" msgstr "" -#: rc_option_editor.cc:1357 +#: rc_option_editor.cc:1346 +msgid "Show waveforms in regions" +msgstr "" + +#: rc_option_editor.cc:1354 +msgid "Show gain envelopes in audio regions" +msgstr "" + +#: rc_option_editor.cc:1355 msgid "in all modes" msgstr "" -#: rc_option_editor.cc:1358 +#: rc_option_editor.cc:1356 msgid "only in region gain mode" msgstr "" -#: rc_option_editor.cc:1370 +#: rc_option_editor.cc:1363 +msgid "Waveform scale" +msgstr "" + +#: rc_option_editor.cc:1368 msgid "linear" msgstr "linear" -#: rc_option_editor.cc:1371 +#: rc_option_editor.cc:1369 msgid "logarithmic" msgstr "" -#: rc_option_editor.cc:1390 +#: rc_option_editor.cc:1375 +msgid "Waveform shape" +msgstr "" + +#: rc_option_editor.cc:1380 +msgid "traditional" +msgstr "" + +#: rc_option_editor.cc:1381 +msgid "rectified" +msgstr "" + +#: rc_option_editor.cc:1388 msgid "Show waveforms for audio while it is being recorded" msgstr "" -#: rc_option_editor.cc:1398 +#: rc_option_editor.cc:1396 msgid "Show zoom toolbar" msgstr "" -#: rc_option_editor.cc:1406 +#: rc_option_editor.cc:1404 msgid "Color regions using their track's color" msgstr "" -#: rc_option_editor.cc:1414 +#: rc_option_editor.cc:1412 msgid "Update editor window during drags of the summary" msgstr "" -#: rc_option_editor.cc:1422 -msgid "Synchronise editor and mixer track order" -msgstr "" - -#: rc_option_editor.cc:1430 +#: rc_option_editor.cc:1420 msgid "Synchronise editor and mixer selection" msgstr "" -#: rc_option_editor.cc:1443 +#: rc_option_editor.cc:1427 +msgid "Name new markers" +msgstr "" + +#: rc_option_editor.cc:1433 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " "be set as it is created.\n" @@ -4690,302 +8802,414 @@ msgid "" "You can always rename markers by right-clicking on them" msgstr "" -#: rc_option_editor.cc:1449 +#: rc_option_editor.cc:1439 msgid "Auto-scroll editor window when dragging near its edges" msgstr "" -#: rc_option_editor.cc:1456 +#: rc_option_editor.cc:1446 msgid "Buffering" msgstr "" -#: rc_option_editor.cc:1488 +#: rc_option_editor.cc:1454 +msgid "Record monitoring handled by" +msgstr "" + +#: rc_option_editor.cc:1460 +msgid "via Audio Driver" +msgstr "" + +#: rc_option_editor.cc:1463 +msgid "ardour" +msgstr "" + +#: rc_option_editor.cc:1464 +msgid "audio hardware" +msgstr "" + +#: rc_option_editor.cc:1471 +msgid "Tape machine mode" +msgstr "" + +#: rc_option_editor.cc:1476 msgid "Connection of tracks and busses" msgstr "" -#: rc_option_editor.cc:1493 +#: rc_option_editor.cc:1481 msgid "Auto-connect master/monitor busses" msgstr "" -#: rc_option_editor.cc:1506 rc_option_editor.cc:1519 +#: rc_option_editor.cc:1488 +msgid "Connect track inputs" +msgstr "" + +#: rc_option_editor.cc:1493 +msgid "automatically to physical inputs" +msgstr "" + +#: rc_option_editor.cc:1494 rc_option_editor.cc:1507 msgid "manually" msgstr "" -#: rc_option_editor.cc:1528 +#: rc_option_editor.cc:1500 +msgid "Connect track and bus outputs" +msgstr "" + +#: rc_option_editor.cc:1505 +msgid "automatically to physical outputs" +msgstr "" + +#: rc_option_editor.cc:1506 +msgid "automatically to master bus" +msgstr "" + +#: rc_option_editor.cc:1511 +msgid "Denormals" +msgstr "" + +#: rc_option_editor.cc:1516 msgid "Use DC bias to protect against denormals" msgstr "" -#: rc_option_editor.cc:1535 +#: rc_option_editor.cc:1523 msgid "Processor handling" msgstr "" -#: rc_option_editor.cc:1540 +#: rc_option_editor.cc:1528 msgid "no processor handling" msgstr "" -#: rc_option_editor.cc:1545 +#: rc_option_editor.cc:1533 msgid "use FlushToZero" msgstr "" -#: rc_option_editor.cc:1549 +#: rc_option_editor.cc:1537 msgid "use DenormalsAreZero" msgstr "" -#: rc_option_editor.cc:1553 +#: rc_option_editor.cc:1541 msgid "use FlushToZero and DenormalsAreZero" msgstr "" -#: rc_option_editor.cc:1571 +#: rc_option_editor.cc:1551 +msgid "Silence plugins when the transport is stopped" +msgstr "" + +#: rc_option_editor.cc:1559 msgid "Make new plugins active" msgstr "" -#: rc_option_editor.cc:1579 +#: rc_option_editor.cc:1567 msgid "Enable automatic analysis of audio" msgstr "" -#: rc_option_editor.cc:1587 +#: rc_option_editor.cc:1575 msgid "Replicate missing region channels" msgstr "" -#: rc_option_editor.cc:1594 rc_option_editor.cc:1609 rc_option_editor.cc:1621 -#: rc_option_editor.cc:1633 rc_option_editor.cc:1645 rc_option_editor.cc:1649 -#: rc_option_editor.cc:1657 rc_option_editor.cc:1665 rc_option_editor.cc:1673 -#: rc_option_editor.cc:1675 rc_option_editor.cc:1683 rc_option_editor.cc:1691 -#: rc_option_editor.cc:1699 +#: rc_option_editor.cc:1582 rc_option_editor.cc:1597 rc_option_editor.cc:1609 +#: rc_option_editor.cc:1621 rc_option_editor.cc:1633 rc_option_editor.cc:1637 +#: rc_option_editor.cc:1645 rc_option_editor.cc:1653 rc_option_editor.cc:1661 +#: rc_option_editor.cc:1663 rc_option_editor.cc:1671 rc_option_editor.cc:1679 +#: rc_option_editor.cc:1687 msgid "Solo / mute" msgstr "" -#: rc_option_editor.cc:1604 +#: rc_option_editor.cc:1585 +msgid "Solo-in-place mute cut (dB)" +msgstr "" + +#: rc_option_editor.cc:1592 msgid "Solo controls are Listen controls" msgstr "" -#: rc_option_editor.cc:1618 +#: rc_option_editor.cc:1601 +msgid "Listen Position" +msgstr "" + +#: rc_option_editor.cc:1606 msgid "after-fader (AFL)" msgstr "" -#: rc_option_editor.cc:1625 +#: rc_option_editor.cc:1607 +msgid "pre-fader (PFL)" +msgstr "" + +#: rc_option_editor.cc:1613 msgid "PFL signals come from" msgstr "" -#: rc_option_editor.cc:1631 +#: rc_option_editor.cc:1618 +msgid "before pre-fader processors" +msgstr "" + +#: rc_option_editor.cc:1619 msgid "pre-fader but after pre-fader processors" msgstr "" -#: rc_option_editor.cc:1637 +#: rc_option_editor.cc:1625 msgid "AFL signals come from" msgstr "" -#: rc_option_editor.cc:1652 +#: rc_option_editor.cc:1630 +msgid "immediately post-fader" +msgstr "" + +#: rc_option_editor.cc:1631 +msgid "after post-fader processors (before pan)" +msgstr "" + +#: rc_option_editor.cc:1640 msgid "Exclusive solo" msgstr "" -#: rc_option_editor.cc:1668 +#: rc_option_editor.cc:1648 +msgid "Show solo muting" +msgstr "" + +#: rc_option_editor.cc:1656 msgid "Soloing overrides muting" msgstr "" -#: rc_option_editor.cc:1678 +#: rc_option_editor.cc:1661 +msgid "Default track / bus muting options" +msgstr "" + +#: rc_option_editor.cc:1666 msgid "Mute affects pre-fader sends" msgstr "" -#: rc_option_editor.cc:1686 +#: rc_option_editor.cc:1674 msgid "Mute affects post-fader sends" msgstr "" -#: rc_option_editor.cc:1702 +#: rc_option_editor.cc:1682 +msgid "Mute affects control outputs" +msgstr "" + +#: rc_option_editor.cc:1690 msgid "Mute affects main outputs" msgstr "" -#: rc_option_editor.cc:1718 +#: rc_option_editor.cc:1706 msgid "Send MIDI Time Code" msgstr "" -#: rc_option_editor.cc:1726 +#: rc_option_editor.cc:1714 msgid "Percentage either side of normal transport speed to transmit MTC" msgstr "" -#: rc_option_editor.cc:1735 +#: rc_option_editor.cc:1723 msgid "Obey MIDI Machine Control commands" msgstr "" -#: rc_option_editor.cc:1743 +#: rc_option_editor.cc:1731 msgid "Send MIDI Machine Control commands" msgstr "" -#: rc_option_editor.cc:1759 +#: rc_option_editor.cc:1739 +msgid "Send MIDI control feedback" +msgstr "" + +#: rc_option_editor.cc:1747 msgid "Inbound MMC device ID" msgstr "" -#: rc_option_editor.cc:1768 +#: rc_option_editor.cc:1756 msgid "Outbound MMC device ID" msgstr "" -#: rc_option_editor.cc:1777 +#: rc_option_editor.cc:1765 msgid "Initial program change" msgstr "" -#: rc_option_editor.cc:1786 +#: rc_option_editor.cc:1774 msgid "Display first MIDI bank/program as 0" msgstr "" -#: rc_option_editor.cc:1794 +#: rc_option_editor.cc:1782 msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "" -#: rc_option_editor.cc:1813 +#: rc_option_editor.cc:1790 +msgid "Sound MIDI notes as they are selected" +msgstr "" + +#: rc_option_editor.cc:1798 rc_option_editor.cc:1808 rc_option_editor.cc:1810 +msgid "User interaction" +msgstr "" + +#: rc_option_editor.cc:1801 msgid "" "Use translations of %1 messages\n" " (requires a restart of %1 to take effect)\n" " (if available for your language preferences)" msgstr "" -#: rc_option_editor.cc:1820 +#: rc_option_editor.cc:1808 msgid "Keyboard" msgstr "" -#: rc_option_editor.cc:1835 +#: rc_option_editor.cc:1818 +msgid "Control surface remote ID" +msgstr "" + +#: rc_option_editor.cc:1823 msgid "assigned by user" msgstr "" -#: rc_option_editor.cc:1836 +#: rc_option_editor.cc:1824 msgid "follows order of mixer" msgstr "" -#: rc_option_editor.cc:1837 -msgid "follows order of editor" -msgstr "" - -#: rc_option_editor.cc:1846 rc_option_editor.cc:1854 rc_option_editor.cc:1864 -#: rc_option_editor.cc:1885 rc_option_editor.cc:1894 rc_option_editor.cc:1902 -#: rc_option_editor.cc:1916 rc_option_editor.cc:1935 rc_option_editor.cc:1951 -#: rc_option_editor.cc:1967 rc_option_editor.cc:1981 rc_option_editor.cc:1995 -#: rc_option_editor.cc:1997 +#: rc_option_editor.cc:1833 rc_option_editor.cc:1841 rc_option_editor.cc:1851 +#: rc_option_editor.cc:1872 rc_option_editor.cc:1881 rc_option_editor.cc:1889 +#: rc_option_editor.cc:1903 rc_option_editor.cc:1922 rc_option_editor.cc:1938 +#: rc_option_editor.cc:1954 rc_option_editor.cc:1968 rc_option_editor.cc:1982 +#: rc_option_editor.cc:1984 msgid "Preferences|GUI" msgstr "" -#: rc_option_editor.cc:1849 +#: rc_option_editor.cc:1836 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "" -#: rc_option_editor.cc:1857 +#: rc_option_editor.cc:1844 msgid "Show tooltips if mouse hovers over a control" msgstr "" -#: rc_option_editor.cc:1867 +#: rc_option_editor.cc:1854 msgid "GUI" msgstr "" -#: rc_option_editor.cc:1870 +#: rc_option_editor.cc:1857 msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" -#: rc_option_editor.cc:1913 +#: rc_option_editor.cc:1874 +msgid "Mixer Strip" +msgstr "" + +#: rc_option_editor.cc:1884 +msgid "Use narrow strips in the mixer by default" +msgstr "" + +#: rc_option_editor.cc:1893 +msgid "Peak hold time" +msgstr "" + +#: rc_option_editor.cc:1899 +msgid "short" +msgstr "" + +#: rc_option_editor.cc:1900 msgid "medium" msgstr "" -#: rc_option_editor.cc:1914 +#: rc_option_editor.cc:1901 msgid "long" msgstr "" -#: rc_option_editor.cc:1920 +#: rc_option_editor.cc:1907 msgid "DPM fall-off" msgstr "" -#: rc_option_editor.cc:1926 +#: rc_option_editor.cc:1913 msgid "slowest [6.6dB/sec]" msgstr "" -#: rc_option_editor.cc:1927 +#: rc_option_editor.cc:1914 msgid "slow [8.6dB/sec] (BBC PPM, EBU PPM)" msgstr "" -#: rc_option_editor.cc:1928 +#: rc_option_editor.cc:1915 msgid "slowish [12.0dB/sec] (DIN)" msgstr "" -#: rc_option_editor.cc:1929 +#: rc_option_editor.cc:1916 msgid "moderate [13.3dB/sec] (EBU Digi PPM, IRT Digi PPM)" msgstr "" -#: rc_option_editor.cc:1930 +#: rc_option_editor.cc:1917 msgid "medium [20dB/sec]" msgstr "" -#: rc_option_editor.cc:1931 +#: rc_option_editor.cc:1918 msgid "fast [32dB/sec]" msgstr "" -#: rc_option_editor.cc:1932 +#: rc_option_editor.cc:1919 msgid "faster [46dB/sec]" msgstr "" -#: rc_option_editor.cc:1933 +#: rc_option_editor.cc:1920 msgid "fastest [70dB/sec]" msgstr "" -#: rc_option_editor.cc:1939 +#: rc_option_editor.cc:1926 msgid "Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1944 rc_option_editor.cc:1960 +#: rc_option_editor.cc:1931 rc_option_editor.cc:1947 msgid "-24dBFS (SMPTE US: 4dBu = -20dBFS)" msgstr "" -#: rc_option_editor.cc:1945 rc_option_editor.cc:1961 +#: rc_option_editor.cc:1932 rc_option_editor.cc:1948 msgid "-20dBFS (SMPTE RP.0155)" msgstr "" -#: rc_option_editor.cc:1946 rc_option_editor.cc:1962 +#: rc_option_editor.cc:1933 rc_option_editor.cc:1949 msgid "-18dBFS (EBU, BBC)" msgstr "" -#: rc_option_editor.cc:1947 rc_option_editor.cc:1963 +#: rc_option_editor.cc:1934 rc_option_editor.cc:1950 msgid "-15dBFS (DIN)" msgstr "" -#: rc_option_editor.cc:1949 +#: rc_option_editor.cc:1936 msgid "" "Configure meter-marks and color-knee point for dBFS scale DPM, set reference " "level for IEC1/Nordic, IEC2 PPM and VU meter." msgstr "" -#: rc_option_editor.cc:1955 +#: rc_option_editor.cc:1942 msgid "IEC1/DIN Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1965 +#: rc_option_editor.cc:1952 msgid "Reference level for IEC1/DIN meter." msgstr "" -#: rc_option_editor.cc:1971 +#: rc_option_editor.cc:1958 msgid "VU Meter standard" msgstr "" -#: rc_option_editor.cc:1976 +#: rc_option_editor.cc:1963 msgid "0VU = -2dBu (France)" msgstr "" -#: rc_option_editor.cc:1977 +#: rc_option_editor.cc:1964 msgid "0VU = 0dBu (North America, Australia)" msgstr "" -#: rc_option_editor.cc:1978 +#: rc_option_editor.cc:1965 msgid "0VU = +4dBu (standard)" msgstr "" -#: rc_option_editor.cc:1979 +#: rc_option_editor.cc:1966 msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1985 +#: rc_option_editor.cc:1972 msgid "Peak threshold [dBFS]" msgstr "" -#: rc_option_editor.cc:1993 +#: rc_option_editor.cc:1980 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " "indicator will flash red." msgstr "" -#: rc_option_editor.cc:2000 +#: rc_option_editor.cc:1987 msgid "LED meter style" msgstr "" @@ -4993,6 +9217,10 @@ msgstr "" msgid "audition this region" msgstr "ouvir esta região" +#: region_editor.cc:88 region_layering_order_editor.cc:74 +msgid "Position:" +msgstr "" + #: region_editor.cc:90 add_video_dialog.cc:170 msgid "End:" msgstr "Final:" @@ -5021,10 +9249,54 @@ msgstr "" msgid "Source:" msgstr "" +#: region_editor.cc:166 +msgid "Region '%1'" +msgstr "" + +#: region_editor.cc:273 +msgid "change region start position" +msgstr "" + +#: region_editor.cc:289 +msgid "change region end position" +msgstr "" + +#: region_editor.cc:309 +msgid "change region length" +msgstr "" + +#: region_editor.cc:403 region_editor.cc:415 +msgid "change region sync point" +msgstr "" + +#: region_layering_order_editor.cc:41 +msgid "RegionLayeringOrderEditor" +msgstr "" + +#: region_layering_order_editor.cc:54 +msgid "Region Name" +msgstr "" + +#: region_layering_order_editor.cc:71 +msgid "Track:" +msgstr "" + +#: region_layering_order_editor.cc:103 +msgid "Choose Top Region" +msgstr "" + #: region_view.cc:274 msgid "SilenceText" msgstr "" +#: region_view.cc:290 region_view.cc:309 +msgid "minutes" +msgstr "" + +#: region_view.cc:293 region_view.cc:312 +msgid "msecs" +msgstr "" + #: region_view.cc:296 region_view.cc:315 msgid "secs" msgstr "" @@ -5073,6 +9345,10 @@ msgstr "" msgid "Complex Domain" msgstr "" +#: rhythm_ferret.cc:59 +msgid "Phase Deviation" +msgstr "" + #: rhythm_ferret.cc:60 msgid "Kullback-Liebler" msgstr "" @@ -5081,10 +9357,30 @@ msgstr "" msgid "Modified Kullback-Liebler" msgstr "" +#: rhythm_ferret.cc:66 +msgid "Split region" +msgstr "" + +#: rhythm_ferret.cc:67 +msgid "Snap regions" +msgstr "" + +#: rhythm_ferret.cc:68 +msgid "Conform regions" +msgstr "" + #: rhythm_ferret.cc:73 msgid "Rhythm Ferret" msgstr "" +#: rhythm_ferret.cc:79 +msgid "Analyze" +msgstr "" + +#: rhythm_ferret.cc:114 +msgid "Detection function" +msgstr "" + #: rhythm_ferret.cc:118 msgid "Trigger gap" msgstr "" @@ -5105,6 +9401,10 @@ msgstr "" msgid "Sensitivity" msgstr "" +#: rhythm_ferret.cc:142 +msgid "Operation" +msgstr "" + #: rhythm_ferret.cc:356 msgid "split regions (rhythm ferret)" msgstr "" @@ -5113,15 +9413,51 @@ msgstr "" msgid "Track/bus Group" msgstr "" +#: route_group_dialog.cc:41 +msgid "Relative" +msgstr "" + +#: route_group_dialog.cc:42 +msgid "Muting" +msgstr "" + +#: route_group_dialog.cc:43 +msgid "Soloing" +msgstr "" + +#: route_group_dialog.cc:44 +msgid "Record enable" +msgstr "" + +#: route_group_dialog.cc:45 time_info_box.cc:66 +msgid "Selection" +msgstr "" + +#: route_group_dialog.cc:46 +msgid "Active state" +msgstr "" + #: route_group_dialog.cc:47 route_group_dialog.cc:76 theme_manager.cc:71 msgid "Color" msgstr "Cor" +#: route_group_dialog.cc:53 +msgid "RouteGroupDialog" +msgstr "" + +#: route_group_dialog.cc:92 +msgid "Sharing" +msgstr "" + #: route_group_dialog.cc:182 msgid "" "A route group of this name already exists. Please use a different name." msgstr "" +#: route_params_ui.cc:83 +msgid "Tracks/Busses" +msgstr "" + #: route_params_ui.cc:102 msgid "Inputs" msgstr "Entradas" @@ -5147,6 +9483,10 @@ msgstr "" msgid "NO TRACK" msgstr "NENHUMA TRILHA" +#: route_params_ui.cc:613 route_params_ui.cc:614 +msgid "No Track or Bus Selected" +msgstr "" + #: route_time_axis.cc:97 msgid "g" msgstr "" @@ -5167,6 +9507,34 @@ msgstr "" msgid "Record" msgstr "Gravar" +#: route_time_axis.cc:210 +msgid "Route Group" +msgstr "" + +#: route_time_axis.cc:213 +msgid "MIDI Controllers and Automation" +msgstr "" + +#: route_time_axis.cc:390 +msgid "Show All Automation" +msgstr "" + +#: route_time_axis.cc:393 +msgid "Show Existing Automation" +msgstr "" + +#: route_time_axis.cc:396 +msgid "Hide All Automation" +msgstr "" + +#: route_time_axis.cc:405 +msgid "Processor automation" +msgstr "" + +#: route_time_axis.cc:424 +msgid "Color..." +msgstr "" + #: route_time_axis.cc:481 msgid "Overlaid" msgstr "" @@ -5175,14 +9543,94 @@ msgstr "" msgid "Stacked" msgstr "" +#: route_time_axis.cc:495 +msgid "Layers" +msgstr "" + +#: route_time_axis.cc:564 +msgid "Automatic (based on I/O connections)" +msgstr "" + +#: route_time_axis.cc:573 +msgid "(Currently: Existing Material)" +msgstr "" + +#: route_time_axis.cc:576 +msgid "(Currently: Capture Time)" +msgstr "" + +#: route_time_axis.cc:584 +msgid "Align With Existing Material" +msgstr "" + +#: route_time_axis.cc:589 +msgid "Align With Capture Time" +msgstr "" + +#: route_time_axis.cc:594 +msgid "Alignment" +msgstr "" + +#: route_time_axis.cc:629 +msgid "Normal Mode" +msgstr "" + +#: route_time_axis.cc:635 +msgid "Tape Mode" +msgstr "" + +#: route_time_axis.cc:641 +msgid "Non-Layered Mode" +msgstr "" + #: route_time_axis.cc:654 route_time_axis.cc:1601 msgid "Playlist" msgstr "Lista de reprodução" +#: route_time_axis.cc:979 +msgid "Rename Playlist" +msgstr "" + +#: route_time_axis.cc:980 +msgid "New name for playlist:" +msgstr "" + +#: route_time_axis.cc:1065 +msgid "New Copy Playlist" +msgstr "" + +#: route_time_axis.cc:1066 route_time_axis.cc:1119 +msgid "Name for new playlist:" +msgstr "" + +#: route_time_axis.cc:1118 +msgid "New Playlist" +msgstr "" + +#: route_time_axis.cc:1309 +msgid "You cannot create a track with that name as it is reserved for %1" +msgstr "" + +#: route_time_axis.cc:1490 +msgid "New Copy..." +msgstr "" + +#: route_time_axis.cc:1494 +msgid "New Take" +msgstr "" + +#: route_time_axis.cc:1495 +msgid "Copy Take" +msgstr "" + #: route_time_axis.cc:1500 msgid "Clear Current" msgstr "Limpar Atual" +#: route_time_axis.cc:1503 +msgid "Select From All..." +msgstr "" + #: route_time_axis.cc:1591 msgid "Take: %1.%2" msgstr "" @@ -5191,6 +9639,10 @@ msgstr "" msgid "Underlays" msgstr "" +#: route_time_axis.cc:2294 +msgid "Remove \"%1\"" +msgstr "" + #: route_time_axis.cc:2344 route_time_axis.cc:2381 msgid "programming error: underlay reference pointer pairs are inconsistent!" msgstr "" @@ -5199,6 +9651,10 @@ msgstr "" msgid "After-fade listen (AFL)" msgstr "" +#: route_time_axis.cc:2412 +msgid "Pre-fade listen (PFL)" +msgstr "" + #: route_time_axis.cc:2416 msgid "s" msgstr "" @@ -5207,6 +9663,10 @@ msgstr "" msgid "m" msgstr "" +#: route_ui.cc:119 +msgid "Mute this track" +msgstr "" + #: route_ui.cc:123 msgid "Mute other (non-soloed) tracks" msgstr "" @@ -5219,18 +9679,58 @@ msgstr "" msgid "make mixer strips show sends to this bus" msgstr "" +#: route_ui.cc:138 +msgid "Monitor input" +msgstr "" + +#: route_ui.cc:144 +msgid "Monitor playback" +msgstr "" + #: route_ui.cc:591 msgid "Not connected to JACK - cannot engage record" msgstr "" +#: route_ui.cc:786 +msgid "Step Entry" +msgstr "" + #: route_ui.cc:859 msgid "Assign all tracks (prefader)" msgstr "" +#: route_ui.cc:863 +msgid "Assign all tracks and buses (prefader)" +msgstr "" + #: route_ui.cc:867 msgid "Assign all tracks (postfader)" msgstr "" +#: route_ui.cc:871 +msgid "Assign all tracks and buses (postfader)" +msgstr "" + +#: route_ui.cc:875 +msgid "Assign selected tracks (prefader)" +msgstr "" + +#: route_ui.cc:879 +msgid "Assign selected tracks and buses (prefader)" +msgstr "" + +#: route_ui.cc:882 +msgid "Assign selected tracks (postfader)" +msgstr "" + +#: route_ui.cc:886 +msgid "Assign selected tracks and buses (postfader)" +msgstr "" + +#: route_ui.cc:889 +msgid "Copy track/bus gains to sends" +msgstr "" + #: route_ui.cc:890 msgid "Set sends gain to -inf" msgstr "" @@ -5239,6 +9739,10 @@ msgstr "" msgid "Set sends gain to 0dB" msgstr "" +#: route_ui.cc:1211 +msgid "Solo Isolate" +msgstr "" + #: route_ui.cc:1240 msgid "Pre Fader" msgstr "Pré Fade" @@ -5255,16 +9759,56 @@ msgstr "Controle de Saídas" msgid "Main Outs" msgstr "Saídas Principais" +#: route_ui.cc:1390 +msgid "Color Selection" +msgstr "" + +#: route_ui.cc:1477 +msgid "" +"Do you really want to remove track \"%1\" ?\n" +"\n" +"You may also lose the playlist used by this track.\n" +"\n" +"(This action cannot be undone, and the session file will be overwritten)" +msgstr "" + +#: route_ui.cc:1479 +msgid "" +"Do you really want to remove bus \"%1\" ?\n" +"\n" +"(This action cannot be undone, and the session file will be overwritten)" +msgstr "" + +#: route_ui.cc:1487 +msgid "Remove track" +msgstr "" + +#: route_ui.cc:1489 +msgid "Remove bus" +msgstr "" + #: route_ui.cc:1516 msgid "" "The use of colons (':') is discouraged in track and bus names.\n" "Do you want to use this new name?" msgstr "" +#: route_ui.cc:1520 +msgid "Use the new name" +msgstr "" + #: route_ui.cc:1521 msgid "Re-edit the name" msgstr "" +#: route_ui.cc:1534 +msgid "Rename Track" +msgstr "" + +#: route_ui.cc:1536 +msgid "Rename Bus" +msgstr "" + #: route_ui.cc:1695 msgid " latency" msgstr "" @@ -5273,6 +9817,22 @@ msgstr "" msgid "Cannot create route template directory %1" msgstr "" +#: route_ui.cc:1714 +msgid "Save As Template" +msgstr "" + +#: route_ui.cc:1715 +msgid "Template name:" +msgstr "" + +#: route_ui.cc:1788 +msgid "Remote Control ID" +msgstr "" + +#: route_ui.cc:1798 +msgid "Remote control ID:" +msgstr "" + #: route_ui.cc:1812 msgid "" "The remote control ID of %1 is: %2\n" @@ -5281,24 +9841,33 @@ msgid "" "The remote control ID of %3 cannot be changed." msgstr "" -#: route_ui.cc:1818 -msgid "" -"The remote control ID of %6 is: %3\n" -"\n" -"\n" -"Remote Control IDs are currently determined by track/bus ordering in %1\n" -"\n" -"%4Use the User Interaction tab of the Preferences window if you want to " -"change this%5" +#: route_ui.cc:1816 +msgid "the master bus" msgstr "" -#: route_ui.cc:1876 +#: route_ui.cc:1816 +msgid "the monitor bus" +msgstr "" + +#: route_ui.cc:1818 +msgid "" +"The remote control ID of %5 is: %2\n" +"\n" +"\n" +"Remote Control IDs are currently determined by track/bus ordering in " +"Ardour.\n" +"\n" +"%3Use the User Interaction tab of the Preferences window if you want to " +"change this%4" +msgstr "" + +#: route_ui.cc:1875 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " "to show menu." msgstr "" -#: route_ui.cc:1878 +#: route_ui.cc:1877 msgid "Click to show a menu of channels for inversion (phase reverse)" msgstr "" @@ -5306,6 +9875,134 @@ msgstr "" msgid "Select folder to search for media" msgstr "" +#: search_path_option.cc:44 +msgid "Click to add a new location" +msgstr "" + +#: search_path_option.cc:51 +msgid "the session folder" +msgstr "" + +#: send_ui.cc:126 +msgid "Send " +msgstr "" + +#: session_dialog.cc:66 +msgid "Session Setup" +msgstr "" + +#: session_dialog.cc:71 +msgid "Advanced options ..." +msgstr "" + +#: session_dialog.cc:267 +msgid "New Session" +msgstr "" + +#: session_dialog.cc:305 +msgid "Check the website for more..." +msgstr "" + +#: session_dialog.cc:308 +msgid "Click to open the program website in your web browser" +msgstr "" + +#: session_dialog.cc:328 +msgid "Sample Rate" +msgstr "" + +#: session_dialog.cc:329 +msgid "Disk Format" +msgstr "" + +#: session_dialog.cc:347 +msgid "Select session file" +msgstr "" + +#: session_dialog.cc:362 +msgid "Other Sessions" +msgstr "" + +#: session_dialog.cc:388 +msgid "Open" +msgstr "" + +#: session_dialog.cc:455 +msgid "Session name:" +msgstr "" + +#: session_dialog.cc:477 +msgid "Create session folder in:" +msgstr "" + +#: session_dialog.cc:500 +msgid "Select folder for session" +msgstr "" + +#: session_dialog.cc:529 +msgid "Use this template" +msgstr "" + +#: session_dialog.cc:532 +msgid "no template" +msgstr "" + +#: session_dialog.cc:664 session_dialog.cc:696 +msgid "32 bit float" +msgstr "" + +#: session_dialog.cc:667 session_dialog.cc:699 +msgid "24 bit" +msgstr "" + +#: session_dialog.cc:670 session_dialog.cc:702 +msgid "16 bit" +msgstr "" + +#: session_dialog.cc:741 session_dialog.cc:742 session_dialog.cc:743 +msgid "channels" +msgstr "" + +#: session_dialog.cc:757 +msgid "Busses" +msgstr "" + +#: session_dialog.cc:758 +msgid "Inputs" +msgstr "" + +#: session_dialog.cc:759 +msgid "Outputs" +msgstr "" + +#: session_dialog.cc:767 +msgid "Create master bus" +msgstr "" + +#: session_dialog.cc:777 +msgid "Automatically connect to physical inputs" +msgstr "" + +#: session_dialog.cc:784 session_dialog.cc:843 +msgid "Use only" +msgstr "" + +#: session_dialog.cc:837 +msgid "Automatically connect outputs" +msgstr "" + +#: session_dialog.cc:859 +msgid "... to master bus" +msgstr "" + +#: session_dialog.cc:869 +msgid "... to physical outputs" +msgstr "" + +#: session_import_dialog.cc:64 +msgid "Import from Session" +msgstr "" + #: session_import_dialog.cc:73 msgid "Elements" msgstr "" @@ -5318,6 +10015,10 @@ msgstr "" msgid "Some elements had errors in them. Please see the log for details" msgstr "" +#: session_import_dialog.cc:163 +msgid "Import from session" +msgstr "" + #: session_import_dialog.cc:227 msgid "This will select all elements of this type!" msgstr "" @@ -5342,6 +10043,10 @@ msgstr "" msgid "Web" msgstr "" +#: session_metadata_dialog.cc:534 +msgid "Organization" +msgstr "" + #: session_metadata_dialog.cc:537 msgid "Country" msgstr "" @@ -5358,6 +10063,10 @@ msgstr "" msgid "Subtitle" msgstr "" +#: session_metadata_dialog.cc:560 +msgid "Grouping" +msgstr "" + #: session_metadata_dialog.cc:563 msgid "Artist" msgstr "" @@ -5370,6 +10079,10 @@ msgstr "" msgid "Comment" msgstr "" +#: session_metadata_dialog.cc:572 +msgid "Copyright" +msgstr "" + #: session_metadata_dialog.cc:580 session_metadata_dialog.cc:585 msgid "Album" msgstr "" @@ -5382,6 +10095,10 @@ msgstr "" msgid "Album Artist" msgstr "" +#: session_metadata_dialog.cc:594 +msgid "Total Tracks" +msgstr "" + #: session_metadata_dialog.cc:597 msgid "Disc Subtitle" msgstr "" @@ -5394,6 +10111,10 @@ msgstr "" msgid "Total Discs" msgstr "" +#: session_metadata_dialog.cc:606 +msgid "Compilation" +msgstr "" + #: session_metadata_dialog.cc:609 msgid "ISRC" msgstr "" @@ -5418,6 +10139,10 @@ msgstr "" msgid "Remixer" msgstr "" +#: session_metadata_dialog.cc:634 +msgid "Arranger" +msgstr "" + #: session_metadata_dialog.cc:637 msgid "Engineer" msgstr "" @@ -5426,6 +10151,10 @@ msgstr "" msgid "Producer" msgstr "" +#: session_metadata_dialog.cc:643 +msgid "DJ Mixer" +msgstr "" + #: session_metadata_dialog.cc:646 msgid "Metadata|Mixer" msgstr "" @@ -5446,10 +10175,18 @@ msgstr "" msgid "Edit Session Metadata" msgstr "" +#: session_metadata_dialog.cc:701 +msgid "Import session metadata" +msgstr "" + #: session_metadata_dialog.cc:722 msgid "Choose session to import metadata from" msgstr "" +#: session_metadata_dialog.cc:760 +msgid "This session file could not be read!" +msgstr "" + #: session_metadata_dialog.cc:770 msgid "" "The session file didn't contain metadata!\n" @@ -5460,6 +10197,14 @@ msgstr "" msgid "Import all from:" msgstr "" +#: session_option_editor.cc:32 +msgid "Session Properties" +msgstr "" + +#: session_option_editor.cc:41 +msgid "Timecode Settings" +msgstr "" + #: session_option_editor.cc:45 msgid "Timecode frames-per-second" msgstr "" @@ -5555,10 +10300,22 @@ msgid "" "Apply Pull-Up/Down to Video Timeline and Video Monitor (Unless in JACK-sync)." msgstr "" +#: session_option_editor.cc:96 +msgid "Ext Timecode Offsets" +msgstr "" + +#: session_option_editor.cc:100 +msgid "Slave Timecode offset" +msgstr "" + #: session_option_editor.cc:107 msgid "The specified offset is added to the received timecode (MTC or LTC)." msgstr "" +#: session_option_editor.cc:113 +msgid "Timecode Generator offset" +msgstr "" + #: session_option_editor.cc:120 msgid "" "Specify an offset which is added to the generated timecode (so far only LTC)." @@ -5573,6 +10330,10 @@ msgid "" "%1 is JACK Time Master (provides Bar|Beat|Tick and other information to JACK)" msgstr "" +#: session_option_editor.cc:137 +msgid "Default crossfade type" +msgstr "" + #: session_option_editor.cc:142 msgid "Constant power (-3dB) crossfade" msgstr "" @@ -5589,12 +10350,32 @@ msgstr "" msgid "Destructive crossfade length" msgstr "" +#: session_option_editor.cc:158 +msgid "Region fades active" +msgstr "" + +#: session_option_editor.cc:165 +msgid "Region fades visible" +msgstr "" + #: session_option_editor.cc:172 session_option_editor.cc:185 #: session_option_editor.cc:199 session_option_editor.cc:201 #: session_option_editor.cc:207 session_option_editor.cc:214 msgid "Media" msgstr "" +#: session_option_editor.cc:172 +msgid "Audio file format" +msgstr "" + +#: session_option_editor.cc:176 +msgid "Sample format" +msgstr "" + +#: session_option_editor.cc:181 +msgid "32-bit floating point" +msgstr "" + #: session_option_editor.cc:182 msgid "24-bit integer" msgstr "" @@ -5603,6 +10384,14 @@ msgstr "" msgid "16-bit integer" msgstr "" +#: session_option_editor.cc:189 +msgid "File type" +msgstr "" + +#: session_option_editor.cc:194 +msgid "Broadcast WAVE" +msgstr "" + #: session_option_editor.cc:195 msgid "WAVE" msgstr "" @@ -5611,6 +10400,10 @@ msgstr "" msgid "WAVE-64" msgstr "" +#: session_option_editor.cc:201 +msgid "File locations" +msgstr "" + #: session_option_editor.cc:203 msgid "Search for audio files in:" msgstr "" @@ -5624,6 +10417,10 @@ msgid "" "Track Input Monitoring automatically follows transport state (\"auto-input\")" msgstr "" +#: session_option_editor.cc:227 +msgid "Use monitor section in this session" +msgstr "" + #: session_option_editor.cc:238 msgid "MIDI region copies are independent" msgstr "" @@ -5670,22 +10467,90 @@ msgstr "" msgid "Glue new regions to bars and beats" msgstr "" +#: session_option_editor.cc:275 session_option_editor.cc:277 +#: session_option_editor.cc:284 session_option_editor.cc:291 +#: session_option_editor.cc:298 session_option_editor.cc:300 +#: session_option_editor.cc:307 session_option_editor.cc:314 +#: session_option_editor.cc:321 session_option_editor.cc:323 +msgid "Meterbridge" +msgstr "" + #: session_option_editor.cc:275 msgid "Route Display" msgstr "" +#: session_option_editor.cc:279 +msgid "Show Midi Tracks" +msgstr "" + +#: session_option_editor.cc:286 +msgid "Show Busses" +msgstr "" + +#: session_option_editor.cc:293 +msgid "Include Master Bus" +msgstr "" + #: session_option_editor.cc:298 msgid "Button Area" msgstr "" +#: session_option_editor.cc:302 +msgid "Rec-enable Button" +msgstr "" + +#: session_option_editor.cc:309 +msgid "Mute Button" +msgstr "" + +#: session_option_editor.cc:316 +msgid "Solo Button" +msgstr "" + #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" +#: session_option_editor.cc:325 +msgid "Track Name" +msgstr "" + +#: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 +msgid "as new tracks" +msgstr "" + +#: sfdb_ui.cc:88 sfdb_ui.cc:108 +msgid "to selected tracks" +msgstr "" + +#: sfdb_ui.cc:90 sfdb_ui.cc:110 +msgid "to region list" +msgstr "" + +#: sfdb_ui.cc:92 sfdb_ui.cc:112 +msgid "as new tape tracks" +msgstr "" + #: sfdb_ui.cc:96 msgid "programming error: unknown import mode string %1" msgstr "" +#: sfdb_ui.cc:123 +msgid "Auto-play" +msgstr "" + +#: sfdb_ui.cc:129 sfdb_ui.cc:236 +msgid "Sound File Information" +msgstr "" + +#: sfdb_ui.cc:141 +msgid "Timestamp:" +msgstr "" + +#: sfdb_ui.cc:143 +msgid "Format:" +msgstr "" + #: sfdb_ui.cc:182 sfdb_ui.cc:526 msgid "Tags:" msgstr "" @@ -5710,10 +10575,50 @@ msgstr "" msgid "Search" msgstr "" +#: sfdb_ui.cc:449 +msgid "Audio and MIDI files" +msgstr "" + +#: sfdb_ui.cc:452 +msgid "Audio files" +msgstr "" + +#: sfdb_ui.cc:455 +msgid "MIDI files" +msgstr "" + +#: sfdb_ui.cc:458 add_video_dialog.cc:132 +msgid "All files" +msgstr "" + +#: sfdb_ui.cc:477 add_video_dialog.cc:143 +msgid "Browse Files" +msgstr "" + +#: sfdb_ui.cc:506 +msgid "Paths" +msgstr "" + #: sfdb_ui.cc:515 msgid "Search Tags" msgstr "" +#: sfdb_ui.cc:531 +msgid "Sort:" +msgstr "" + +#: sfdb_ui.cc:539 +msgid "Longest" +msgstr "" + +#: sfdb_ui.cc:540 +msgid "Shortest" +msgstr "" + +#: sfdb_ui.cc:541 +msgid "Newest" +msgstr "" + #: sfdb_ui.cc:542 msgid "Oldest" msgstr "" @@ -5722,6 +10627,10 @@ msgstr "" msgid "Most downloaded" msgstr "" +#: sfdb_ui.cc:544 +msgid "Least downloaded" +msgstr "" + #: sfdb_ui.cc:545 msgid "Highest rated" msgstr "" @@ -5738,10 +10647,26 @@ msgstr "" msgid "Similar" msgstr "" +#: sfdb_ui.cc:567 +msgid "ID" +msgstr "" + +#: sfdb_ui.cc:568 add_video_dialog.cc:84 +msgid "Filename" +msgstr "" + +#: sfdb_ui.cc:570 +msgid "Duration" +msgstr "" + #: sfdb_ui.cc:571 msgid "Size" msgstr "" +#: sfdb_ui.cc:572 +msgid "Samplerate" +msgstr "" + #: sfdb_ui.cc:573 msgid "License" msgstr "" @@ -5788,6 +10713,10 @@ msgstr "" msgid "MB" msgstr "" +#: sfdb_ui.cc:1086 +msgid "GB" +msgstr "" + #: sfdb_ui.cc:1298 sfdb_ui.cc:1606 sfdb_ui.cc:1656 sfdb_ui.cc:1674 msgid "one track per file" msgstr "" @@ -5796,20 +10725,68 @@ msgstr "" msgid "one track per channel" msgstr "" +#: sfdb_ui.cc:1309 sfdb_ui.cc:1659 sfdb_ui.cc:1676 +msgid "sequence files" +msgstr "" + #: sfdb_ui.cc:1312 sfdb_ui.cc:1664 msgid "all files in one track" msgstr "" +#: sfdb_ui.cc:1313 sfdb_ui.cc:1658 +msgid "merge files" +msgstr "" + +#: sfdb_ui.cc:1319 sfdb_ui.cc:1661 +msgid "one region per file" +msgstr "" + +#: sfdb_ui.cc:1322 sfdb_ui.cc:1662 +msgid "one region per channel" +msgstr "" + +#: sfdb_ui.cc:1327 sfdb_ui.cc:1663 sfdb_ui.cc:1677 +msgid "all files in one region" +msgstr "" + #: sfdb_ui.cc:1394 msgid "" "One or more of the selected files\n" "cannot be used by %1" msgstr "" +#: sfdb_ui.cc:1534 +msgid "Copy files to session" +msgstr "" + +#: sfdb_ui.cc:1551 sfdb_ui.cc:1714 +msgid "file timestamp" +msgstr "" + +#: sfdb_ui.cc:1552 sfdb_ui.cc:1716 +msgid "edit point" +msgstr "" + +#: sfdb_ui.cc:1553 sfdb_ui.cc:1718 +msgid "playhead" +msgstr "" + +#: sfdb_ui.cc:1554 +msgid "session start" +msgstr "" + #: sfdb_ui.cc:1559 msgid "Add files as ..." msgstr "" +#: sfdb_ui.cc:1581 +msgid "Insert at" +msgstr "" + +#: sfdb_ui.cc:1594 +msgid "Mapping" +msgstr "" + #: sfdb_ui.cc:1612 msgid "Conversion quality" msgstr "" @@ -5830,6 +10807,14 @@ msgstr "" msgid "Fastest" msgstr "Rapidamente" +#: shuttle_control.cc:56 +msgid "Shuttle speed control (Context-click for options)" +msgstr "" + +#: shuttle_control.cc:165 +msgid "Percent" +msgstr "" + #: shuttle_control.cc:173 msgid "Units" msgstr "" @@ -5842,29 +10827,55 @@ msgstr "Retornável" msgid "Wheel" msgstr "Fixo" +#: shuttle_control.cc:217 +msgid "Maximum speed" +msgstr "" + +#: shuttle_control.cc:561 +msgid "Playing" +msgstr "" + +#: shuttle_control.cc:576 +#, c-format +msgid "<<< %+d semitones" +msgstr "" + +#: shuttle_control.cc:578 +#, c-format +msgid ">>> %+d semitones" +msgstr "" + +#: shuttle_control.cc:583 +msgid "Stopped" +msgstr "" + #: splash.cc:73 msgid "%1 loading ..." msgstr "" +#: speaker_dialog.cc:40 +msgid "Add Speaker" +msgstr "" + +#: speaker_dialog.cc:41 +msgid "Remove Speaker" +msgstr "" + #: speaker_dialog.cc:63 msgid "Azimuth:" msgstr "" -#: startup.cc:74 +#: startup.cc:72 msgid "" "Use an external mixer or the hardware mixer of your audio interface.\n" "%1 will play NO role in monitoring" msgstr "" -#: startup.cc:76 +#: startup.cc:74 msgid "Ask %1 to play back material as it is being recorded" msgstr "" -#: startup.cc:79 -msgid "I'd like more options for this session" -msgstr "" - -#: startup.cc:194 +#: startup.cc:143 msgid "" "Welcome to this BETA release of Ardour %1\n" "\n" @@ -5889,15 +10900,11 @@ msgid "" " http://ardour.org/support\n" msgstr "" -#: startup.cc:218 +#: startup.cc:167 msgid "This is a BETA RELEASE" msgstr "" -#: startup.cc:324 -msgid "Audio / MIDI Setup" -msgstr "" - -#: startup.cc:336 +#: startup.cc:176 msgid "" "%1 is a digital audio workstation. You can use it to " "record, edit and mix multi-track audio. You can produce your own CDs, mix " @@ -5907,15 +10914,15 @@ msgid "" "program. " msgstr "" -#: startup.cc:362 +#: startup.cc:202 msgid "Welcome to %1" msgstr "" -#: startup.cc:385 +#: startup.cc:225 msgid "Default folder for %1 sessions" msgstr "" -#: startup.cc:391 +#: startup.cc:231 msgid "" "Each project that you work on with %1 has its own folder.\n" "These can require a lot of disk space if you are recording audio.\n" @@ -5925,11 +10932,11 @@ msgid "" "(You can put new sessions anywhere, this is just a default)" msgstr "" -#: startup.cc:415 +#: startup.cc:254 msgid "Default folder for new sessions" msgstr "" -#: startup.cc:436 +#: startup.cc:275 msgid "" "While recording instruments or vocals, you probably want to listen to the\n" "signal as well as record it. This is called \"monitoring\". There are\n" @@ -5943,27 +10950,31 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:480 +#: startup.cc:296 +msgid "Monitoring Choices" +msgstr "" + +#: startup.cc:319 msgid "Use a Master bus directly" msgstr "" -#: startup.cc:482 +#: startup.cc:321 msgid "" "Connect the Master bus directly to your hardware outputs. This is preferable " "for simple usage." msgstr "" -#: startup.cc:491 +#: startup.cc:330 msgid "Use an additional Monitor bus" msgstr "" -#: startup.cc:494 +#: startup.cc:333 msgid "" "Use a Monitor bus between Master bus and hardware outputs for \n" "greater control in monitoring without affecting the mix." msgstr "" -#: startup.cc:516 +#: startup.cc:355 msgid "" "You can change this preference at any time via the Preferences dialog.\n" "You can also add or remove the monitor section to/from any session.\n" @@ -5971,24 +10982,8 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:573 -msgid "Check the website for more..." -msgstr "" - -#: startup.cc:576 -msgid "Click to open the program website in your web browser" -msgstr "" - -#: startup.cc:1172 startup.cc:1231 -msgid "Use only" -msgstr "" - -#: startup.cc:1247 -msgid "... to master bus" -msgstr "" - -#: startup.cc:1257 -msgid "... to physical outputs" +#: startup.cc:366 +msgid "Monitor Section" msgstr "" #: step_entry.cc:59 @@ -6047,6 +11042,10 @@ msgstr "" msgid "Set note length to a sixteenth note" msgstr "" +#: step_entry.cc:195 +msgid "Set note length to a thirty-second note" +msgstr "" + #: step_entry.cc:196 msgid "Set note length to a sixty-fourth note" msgstr "" @@ -6147,26 +11146,58 @@ msgstr "" msgid "Octave" msgstr "" +#: step_entry.cc:597 +msgid "Insert Note A" +msgstr "" + #: step_entry.cc:598 msgid "Insert Note A-sharp" msgstr "" +#: step_entry.cc:599 +msgid "Insert Note B" +msgstr "" + +#: step_entry.cc:600 +msgid "Insert Note C" +msgstr "" + #: step_entry.cc:601 msgid "Insert Note C-sharp" msgstr "" +#: step_entry.cc:602 +msgid "Insert Note D" +msgstr "" + #: step_entry.cc:603 msgid "Insert Note D-sharp" msgstr "" +#: step_entry.cc:604 +msgid "Insert Note E" +msgstr "" + +#: step_entry.cc:605 +msgid "Insert Note F" +msgstr "" + #: step_entry.cc:606 msgid "Insert Note F-sharp" msgstr "" +#: step_entry.cc:607 +msgid "Insert Note G" +msgstr "" + #: step_entry.cc:608 msgid "Insert Note G-sharp" msgstr "" +#: step_entry.cc:610 +msgid "Insert a Note-length Rest" +msgstr "" + #: step_entry.cc:611 msgid "Insert a Snap-length Rest" msgstr "" @@ -6183,6 +11214,14 @@ msgstr "" msgid "Move to Previous Note Length" msgstr "" +#: step_entry.cc:619 +msgid "Increase Note Length" +msgstr "" + +#: step_entry.cc:620 +msgid "Decrease Note Length" +msgstr "" + #: step_entry.cc:622 msgid "Move to Next Note Velocity" msgstr "" @@ -6251,6 +11290,10 @@ msgstr "" msgid "Set Note Length to 1/2" msgstr "" +#: step_entry.cc:647 +msgid "Set Note Length to 1/3" +msgstr "" + #: step_entry.cc:649 msgid "Set Note Length to 1/4" msgstr "" @@ -6332,6 +11375,14 @@ msgstr "" msgid "L:%3d R:%3d Width:%d%%" msgstr "" +#: stereo_panner_editor.cc:35 +msgid "Stereo Panner" +msgstr "" + +#: stereo_panner_editor.cc:49 +msgid "Width" +msgstr "" + #: strip_silence_dialog.cc:48 msgid "Strip Silence" msgstr "" @@ -6340,6 +11391,10 @@ msgstr "" msgid "Minimum length" msgstr "" +#: strip_silence_dialog.cc:87 +msgid "Fade length" +msgstr "" + #: tempo_dialog.cc:43 tempo_dialog.cc:58 msgid "bar:" msgstr "" @@ -6348,6 +11403,49 @@ msgstr "" msgid "beat:" msgstr "" +#: tempo_dialog.cc:45 tempo_dialog.cc:60 +msgid "Pulse note" +msgstr "" + +#: tempo_dialog.cc:55 +msgid "Edit Tempo" +msgstr "" + +#: tempo_dialog.cc:76 tempo_dialog.cc:77 tempo_dialog.cc:282 +#: tempo_dialog.cc:283 +msgid "whole" +msgstr "" + +#: tempo_dialog.cc:78 tempo_dialog.cc:79 tempo_dialog.cc:284 +#: tempo_dialog.cc:285 +msgid "second" +msgstr "" + +#: tempo_dialog.cc:80 tempo_dialog.cc:81 tempo_dialog.cc:286 +#: tempo_dialog.cc:287 +msgid "third" +msgstr "" + +#: tempo_dialog.cc:82 tempo_dialog.cc:83 tempo_dialog.cc:288 +#: tempo_dialog.cc:289 +msgid "quarter" +msgstr "" + +#: tempo_dialog.cc:84 tempo_dialog.cc:85 tempo_dialog.cc:290 +#: tempo_dialog.cc:291 +msgid "eighth" +msgstr "" + +#: tempo_dialog.cc:86 tempo_dialog.cc:87 tempo_dialog.cc:292 +#: tempo_dialog.cc:293 +msgid "sixteenth" +msgstr "" + +#: tempo_dialog.cc:88 tempo_dialog.cc:89 tempo_dialog.cc:294 +#: tempo_dialog.cc:295 +msgid "thirty-second" +msgstr "" + #: tempo_dialog.cc:90 tempo_dialog.cc:91 tempo_dialog.cc:296 #: tempo_dialog.cc:297 msgid "sixty-fourth" @@ -6358,10 +11456,38 @@ msgstr "" msgid "one-hundred-twenty-eighth" msgstr "" +#: tempo_dialog.cc:120 +msgid "Beats per minute:" +msgstr "" + #: tempo_dialog.cc:152 msgid "Tempo begins at" msgstr "" +#: tempo_dialog.cc:240 +msgid "incomprehensible pulse note type (%1)" +msgstr "" + +#: tempo_dialog.cc:266 +msgid "Edit Meter" +msgstr "" + +#: tempo_dialog.cc:314 +msgid "Note value:" +msgstr "" + +#: tempo_dialog.cc:315 +msgid "Beats per bar:" +msgstr "" + +#: tempo_dialog.cc:330 +msgid "Meter begins at bar:" +msgstr "" + +#: tempo_dialog.cc:441 +msgid "incomprehensible meter note type (%1)" +msgstr "" + #: theme_manager.cc:57 msgid "Dark Theme" msgstr "" @@ -6370,6 +11496,10 @@ msgstr "" msgid "Light Theme" msgstr "" +#: theme_manager.cc:59 +msgid "Restore Defaults" +msgstr "" + #: theme_manager.cc:60 msgid "Draw \"flat\" buttons" msgstr "" @@ -6378,6 +11508,14 @@ msgstr "" msgid "All floating windows are dialogs" msgstr "" +#: theme_manager.cc:62 +msgid "Draw waveforms with color gradient" +msgstr "" + +#: theme_manager.cc:68 +msgid "Object" +msgstr "" + #: theme_manager.cc:123 msgid "" "Mark all floating windows to be type \"Dialog\" rather than using \"Utility" @@ -6416,18 +11554,46 @@ msgstr "" msgid "Minimize time distortion" msgstr "" +#: time_fx_dialog.cc:66 +msgid "Preserve Formants" +msgstr "" + +#: time_fx_dialog.cc:71 +msgid "TimeFXDialog" +msgstr "" + #: time_fx_dialog.cc:74 msgid "Pitch Shift Audio" msgstr "" +#: time_fx_dialog.cc:76 +msgid "Time Stretch Audio" +msgstr "" + #: time_fx_dialog.cc:104 transpose_dialog.cc:41 msgid "Octaves:" msgstr "" +#: time_fx_dialog.cc:109 transpose_dialog.cc:46 +msgid "Semitones:" +msgstr "" + +#: time_fx_dialog.cc:114 +msgid "Cents:" +msgstr "" + #: time_fx_dialog.cc:122 msgid "Time|Shift" msgstr "" +#: time_fx_dialog.cc:146 time_fx_dialog.cc:149 +msgid "TimeFXButton" +msgstr "" + +#: time_fx_dialog.cc:154 +msgid "Stretch/Shrink" +msgstr "" + #: time_fx_dialog.cc:164 msgid "Progress" msgstr "" @@ -6444,10 +11610,22 @@ msgstr "Parar gravação no final do ponto-automático" msgid "programming error: request for non-existent audio range (%1)!" msgstr "" +#: transpose_dialog.cc:30 +msgid "Transpose MIDI" +msgstr "" + +#: transpose_dialog.cc:55 +msgid "Transpose" +msgstr "" + #: ui_config.cc:82 ui_config.cc:113 msgid "Loading default ui configuration file %1" msgstr "" +#: ui_config.cc:85 ui_config.cc:116 +msgid "cannot read default ui configuration file \"%1\"" +msgstr "" + #: ui_config.cc:90 ui_config.cc:121 msgid "default ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -6456,6 +11634,10 @@ msgstr "" msgid "Loading user ui configuration file %1" msgstr "" +#: ui_config.cc:137 +msgid "cannot read ui configuration file \"%1\"" +msgstr "" + #: ui_config.cc:142 msgid "user ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -6468,23 +11650,23 @@ msgstr "" msgid "Config file %1 not saved" msgstr "" -#: utils.cc:110 utils.cc:153 +#: utils.cc:111 utils.cc:154 msgid "bad XPM header %1" msgstr "" -#: utils.cc:292 utils.cc:324 +#: utils.cc:293 utils.cc:325 msgid "missing RGBA style for \"%1\"" msgstr "" -#: utils.cc:591 +#: utils.cc:598 msgid "cannot find XPM file for %1" msgstr "" -#: utils.cc:617 +#: utils.cc:624 msgid "cannot find icon image for %1 using %2" msgstr "" -#: utils.cc:632 +#: utils.cc:639 msgid "Caught exception while loading icon named %1" msgstr "" @@ -6492,6 +11674,14 @@ msgstr "" msgid "VerboseCanvasCursor" msgstr "" +#: add_video_dialog.cc:55 +msgid "Set Video Track" +msgstr "" + +#: add_video_dialog.cc:63 +msgid "Launch External Video Monitor" +msgstr "" + #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -6504,6 +11694,22 @@ msgstr "" msgid "VideoServerIndex" msgstr "" +#: add_video_dialog.cc:129 +msgid "Video files" +msgstr "" + +#: add_video_dialog.cc:164 +msgid "Video Information" +msgstr "" + +#: add_video_dialog.cc:167 +msgid "Start:" +msgstr "" + +#: add_video_dialog.cc:173 +msgid "Frame rate:" +msgstr "" + #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -6549,6 +11755,10 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" +#: video_monitor.cc:281 +msgid "Video Monitor: File Not Found." +msgstr "" + #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -6565,79 +11775,119 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:61 export_video_dialog.cc:73 +#: transcode_video_dialog.cc:55 +msgid "Transcode/Import Video File " +msgstr "" + +#: transcode_video_dialog.cc:57 +msgid "Output File:" +msgstr "" + +#: transcode_video_dialog.cc:60 export_video_dialog.cc:72 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:66 +#: transcode_video_dialog.cc:62 +msgid "Height = " +msgstr "" + +#: transcode_video_dialog.cc:65 msgid "Manual Override" msgstr "" -#: transcode_video_dialog.cc:70 export_video_dialog.cc:89 +#: transcode_video_dialog.cc:69 export_video_dialog.cc:88 msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:113 +#: transcode_video_dialog.cc:106 +msgid "File Information" +msgstr "" + +#: transcode_video_dialog.cc:112 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: transcode_video_dialog.cc:120 +#: transcode_video_dialog.cc:119 msgid "" "File-info can not be read. Most likely '%1' is not a valid video-file or an " "unsupported video codec or format." msgstr "" -#: transcode_video_dialog.cc:134 +#: transcode_video_dialog.cc:133 msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:138 +#: transcode_video_dialog.cc:135 +msgid "Duration:" +msgstr "" + +#: transcode_video_dialog.cc:137 msgid "Codec:" msgstr "" -#: transcode_video_dialog.cc:140 +#: transcode_video_dialog.cc:139 msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:155 +#: transcode_video_dialog.cc:154 msgid "??" msgstr "" -#: transcode_video_dialog.cc:181 +#: transcode_video_dialog.cc:175 +msgid "Import Settings" +msgstr "" + +#: transcode_video_dialog.cc:180 msgid "Do Not Import Video" msgstr "" -#: transcode_video_dialog.cc:182 +#: transcode_video_dialog.cc:181 msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:198 +#: transcode_video_dialog.cc:183 +msgid "Import/Transcode Video to Session" +msgstr "" + +#: transcode_video_dialog.cc:197 msgid "Scale Video: Width = " msgstr "" -#: transcode_video_dialog.cc:205 +#: transcode_video_dialog.cc:204 msgid "Original Width" msgstr "" -#: transcode_video_dialog.cc:220 +#: transcode_video_dialog.cc:219 msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:348 +#: transcode_video_dialog.cc:224 +msgid "Extract Audio:" +msgstr "" + +#: transcode_video_dialog.cc:344 +msgid "Extracting Audio.." +msgstr "" + +#: transcode_video_dialog.cc:347 msgid "Audio Extraction Failed." msgstr "" -#: transcode_video_dialog.cc:374 +#: transcode_video_dialog.cc:373 msgid "Transcoding Video.." msgstr "" -#: transcode_video_dialog.cc:408 +#: transcode_video_dialog.cc:407 msgid "Transcoding Failed." msgstr "" +#: transcode_video_dialog.cc:490 +msgid "Save Transcoded Video File" +msgstr "" + #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -6665,15 +11915,19 @@ msgstr "" msgid "Listen Address:" msgstr "" +#: video_server_dialog.cc:125 +msgid "Listen Port:" +msgstr "" + #: video_server_dialog.cc:130 msgid "Cache Size:" msgstr "" #: video_server_dialog.cc:136 msgid "" -"%1 relies on an external Video Server for the videotimeline.\n" -"The server configured in Edit -> Prefereces -> Video is not reachable.\n" -"Do you want ardour to launch 'harvid' on this machine?" +"%1 relies on an external video server for the videotimeline.\n" +"The server configured in Edit -> Preferences -> Video is not reachable.\n" +"Do you want %1 to launch 'harvid' on this machine?" msgstr "" #: video_server_dialog.cc:176 @@ -6702,79 +11956,183 @@ msgstr "" msgid "Confirm Overwrite" msgstr "" -#: export_video_dialog.cc:74 +#: utils_videotl.cc:64 +msgid "A file with the same name already exists. Do you want to overwrite it?" +msgstr "" + +#: utils_videotl.cc:74 utils_videotl.cc:90 +msgid "Cannot create video folder \"%1\" (%2)" +msgstr "" + +#: export_video_dialog.cc:65 +msgid "Export Video File " +msgstr "" + +#: export_video_dialog.cc:69 +msgid "Video:" +msgstr "" + +#: export_video_dialog.cc:73 msgid "Scale Video (W x H):" msgstr "" -#: export_video_dialog.cc:79 +#: export_video_dialog.cc:78 msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:81 +#: export_video_dialog.cc:79 +msgid "Normalize Audio" +msgstr "" + +#: export_video_dialog.cc:80 msgid "2 Pass Encoding" msgstr "" -#: export_video_dialog.cc:82 +#: export_video_dialog.cc:81 msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:85 +#: export_video_dialog.cc:83 +msgid "Deinterlace" +msgstr "" + +#: export_video_dialog.cc:84 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" -#: export_video_dialog.cc:86 +#: export_video_dialog.cc:85 msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:107 +#: export_video_dialog.cc:86 +msgid "Include Session Metadata" +msgstr "" + +#: export_video_dialog.cc:106 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: export_video_dialog.cc:145 +#: export_video_dialog.cc:116 +msgid "Output:" +msgstr "" + +#: export_video_dialog.cc:126 +msgid "Input:" +msgstr "" + +#: export_video_dialog.cc:137 +msgid "Audio:" +msgstr "" + +#: export_video_dialog.cc:139 +msgid "Master Bus" +msgstr "" + +#: export_video_dialog.cc:144 msgid "from the %1 session's start to the session's end" msgstr "" -#: export_video_dialog.cc:149 +#: export_video_dialog.cc:148 msgid "from 00:00:00:00 to the video's end" msgstr "" -#: export_video_dialog.cc:151 +#: export_video_dialog.cc:150 msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:494 +#: export_video_dialog.cc:153 +msgid "Selected range" +msgstr "" + +#: export_video_dialog.cc:193 +msgid "Settings:" +msgstr "" + +#: export_video_dialog.cc:201 +msgid "Range:" +msgstr "" + +#: export_video_dialog.cc:204 +msgid "Preset:" +msgstr "" + +#: export_video_dialog.cc:207 +msgid "Video Codec:" +msgstr "" + +#: export_video_dialog.cc:210 +msgid "Video KBit/s:" +msgstr "" + +#: export_video_dialog.cc:213 +msgid "Audio Codec:" +msgstr "" + +#: export_video_dialog.cc:216 +msgid "Audio KBit/s:" +msgstr "" + +#: export_video_dialog.cc:219 +msgid "Audio Samplerate:" +msgstr "" + +#: export_video_dialog.cc:395 +msgid "Normalizing audio" +msgstr "" + +#: export_video_dialog.cc:399 +msgid "Exporting audio" +msgstr "" + +#: export_video_dialog.cc:445 +msgid "Exporting Audio..." +msgstr "" + +#: export_video_dialog.cc:502 msgid "" "Export Video: Cannot query duration of video-file, using duration from " "timeline instead." msgstr "" -#: export_video_dialog.cc:523 +#: export_video_dialog.cc:532 +msgid "Export Video: export-range does not include video." +msgstr "" + +#: export_video_dialog.cc:544 msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" -#: export_video_dialog.cc:562 +#: export_video_dialog.cc:583 msgid "Encoding Video..." msgstr "" -#: export_video_dialog.cc:581 +#: export_video_dialog.cc:602 msgid "Export Video: Video input file cannot be read." msgstr "" -#: export_video_dialog.cc:679 +#: export_video_dialog.cc:695 msgid "Encoding Video.. Pass 1/2" msgstr "" -#: export_video_dialog.cc:691 +#: export_video_dialog.cc:707 msgid "Encoding Video.. Pass 2/2" msgstr "" -#: export_video_dialog.cc:779 +#: export_video_dialog.cc:814 msgid "Transcoding failed." msgstr "" +#: export_video_dialog.cc:983 export_video_dialog.cc:1003 +msgid "Save Exported Video File" +msgstr "" + +#: export_video_infobox.cc:30 +msgid "Video Export Info" +msgstr "" + #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -6791,3 +12149,21 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" + +#~ msgid "disconnected" +#~ msgstr "desconectado" + +#~ msgid "Unable to start the session running" +#~ msgstr "Impossível iniciar a sessão" + +#~ msgid "Could not disconnect from JACK" +#~ msgstr "Não foi possível se desconectar ao servidor JACK" + +#~ msgid "JACK" +#~ msgstr "JACK" + +#~ msgid "Triangular" +#~ msgstr "Triangular" + +#~ msgid "Rectangular" +#~ msgstr "Retangular" diff --git a/gtk2_ardour/po/pt_PT.po b/gtk2_ardour/po/pt_PT.po index 1abff5c6cc..9887a750d8 100644 --- a/gtk2_ardour/po/pt_PT.po +++ b/gtk2_ardour/po/pt_PT.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gtk2_ardour rev.1702\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2007-04-15 19:00+0100\n" "Last-Translator: Rui Nuno Capela \n" "Language-Team: Portuguese\n" @@ -212,6 +212,10 @@ msgstr "" msgid "Lincoln Spiteri" msgstr "" +#: about.cc:171 +msgid "Mike Start" +msgstr "" + #: about.cc:172 msgid "Mark Stewart" msgstr "" @@ -349,6 +353,10 @@ msgstr "" msgid "Loading menus from %1" msgstr "" +#: actions.cc:88 actions.cc:89 +msgid "badly formatted UI definition file: %1" +msgstr "" + #: actions.cc:91 msgid "%1 menu definition file not found" msgstr "" @@ -357,23 +365,84 @@ msgstr "" msgid "%1 will not work without a valid ardour.menus file" msgstr "" +#: add_route_dialog.cc:53 route_params_ui.cc:500 +msgid "Add Track or Bus" +msgstr "" + +#: add_route_dialog.cc:56 +msgid "Configuration:" +msgstr "" + +#: add_route_dialog.cc:57 +msgid "Track mode:" +msgstr "" + #: add_route_dialog.cc:58 msgid "Instrument:" msgstr "" +#: add_route_dialog.cc:76 +msgid "Audio Tracks" +msgstr "" + +#: add_route_dialog.cc:77 +msgid "MIDI Tracks" +msgstr "" + +#: add_route_dialog.cc:78 +msgid "Audio+MIDI Tracks" +msgstr "" + +#: add_route_dialog.cc:79 +msgid "Busses" +msgstr "" + #: add_route_dialog.cc:101 msgid "Add:" msgstr "" +#: add_route_dialog.cc:114 time_fx_dialog.cc:91 add_video_dialog.cc:150 +#: video_server_dialog.cc:112 +msgid "Options" +msgstr "" + +#: add_route_dialog.cc:124 bundle_manager.cc:192 region_editor.cc:50 +#: route_group_dialog.cc:65 +msgid "Name:" +msgstr "" + +#: add_route_dialog.cc:154 +msgid "Group:" +msgstr "" + +#: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 +#: ardour_ui_ed.cc:476 engine_dialog.cc:236 rc_option_editor.cc:1446 +#: rc_option_editor.cc:1448 rc_option_editor.cc:1450 rc_option_editor.cc:1466 +#: rc_option_editor.cc:1468 rc_option_editor.cc:1476 rc_option_editor.cc:1478 +#: rc_option_editor.cc:1496 rc_option_editor.cc:1509 rc_option_editor.cc:1511 +#: rc_option_editor.cc:1513 rc_option_editor.cc:1544 rc_option_editor.cc:1546 +#: rc_option_editor.cc:1548 rc_option_editor.cc:1556 rc_option_editor.cc:1564 +#: rc_option_editor.cc:1572 +msgid "Audio" +msgstr "" + #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 -#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1707 -#: rc_option_editor.cc:1715 rc_option_editor.cc:1723 rc_option_editor.cc:1732 -#: rc_option_editor.cc:1740 rc_option_editor.cc:1748 rc_option_editor.cc:1756 -#: rc_option_editor.cc:1765 rc_option_editor.cc:1774 rc_option_editor.cc:1783 -#: rc_option_editor.cc:1791 rc_option_editor.cc:1799 +#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1695 +#: rc_option_editor.cc:1703 rc_option_editor.cc:1711 rc_option_editor.cc:1720 +#: rc_option_editor.cc:1728 rc_option_editor.cc:1736 rc_option_editor.cc:1744 +#: rc_option_editor.cc:1753 rc_option_editor.cc:1762 rc_option_editor.cc:1771 +#: rc_option_editor.cc:1779 rc_option_editor.cc:1787 msgid "MIDI" msgstr "" +#: add_route_dialog.cc:217 add_route_dialog.cc:230 add_route_dialog.cc:300 +msgid "Audio+MIDI" +msgstr "" + +#: add_route_dialog.cc:218 add_route_dialog.cc:233 add_route_dialog.cc:301 +msgid "Bus" +msgstr "" + #: add_route_dialog.cc:260 msgid "" "Audio+MIDI tracks are intended for use ONLY with plugins that use " @@ -388,6 +457,10 @@ msgstr "" msgid "Normal" msgstr "Normal" +#: add_route_dialog.cc:322 add_route_dialog.cc:340 +msgid "Non Layered" +msgstr "" + #: add_route_dialog.cc:323 add_route_dialog.cc:342 msgid "Tape" msgstr "Fita" @@ -400,10 +473,46 @@ msgstr "" msgid "Stereo" msgstr "" +#: add_route_dialog.cc:451 +msgid "3 Channel" +msgstr "" + +#: add_route_dialog.cc:455 +msgid "4 Channel" +msgstr "" + +#: add_route_dialog.cc:459 +msgid "5 Channel" +msgstr "" + +#: add_route_dialog.cc:463 +msgid "6 Channel" +msgstr "" + +#: add_route_dialog.cc:467 +msgid "8 Channel" +msgstr "" + +#: add_route_dialog.cc:471 +msgid "12 Channel" +msgstr "" + #: add_route_dialog.cc:475 mixer_strip.cc:2131 msgid "Custom" msgstr "" +#: add_route_dialog.cc:508 add_route_dialog.cc:524 route_group_menu.cc:81 +msgid "New Group..." +msgstr "" + +#: add_route_dialog.cc:512 route_group_menu.cc:85 +msgid "No Group" +msgstr "" + +#: add_route_dialog.cc:588 +msgid "-none-" +msgstr "" + #: ambiguous_file_dialog.cc:30 msgid "Ambiguous File" msgstr "" @@ -425,6 +534,22 @@ msgstr "" msgid "Done" msgstr "" +#: analysis_window.cc:46 +msgid "Signal source" +msgstr "" + +#: analysis_window.cc:47 +msgid "Selected ranges" +msgstr "" + +#: analysis_window.cc:48 +msgid "Selected regions" +msgstr "" + +#: analysis_window.cc:50 +msgid "Display model" +msgstr "" + #: analysis_window.cc:51 msgid "Composite graphs for each track" msgstr "" @@ -437,11 +562,15 @@ msgstr "" msgid "Show frequency power range" msgstr "" +#: analysis_window.cc:55 +msgid "Normalize values" +msgstr "" + #: analysis_window.cc:59 msgid "FFT analysis window" msgstr "" -#: analysis_window.cc:60 editor.cc:1856 +#: analysis_window.cc:60 editor.cc:1857 msgid "Spectral Analysis" msgstr "" @@ -450,6 +579,11 @@ msgstr "" msgid "Track" msgstr "Faixa" +#: analysis_window.cc:68 editor_actions.cc:616 mixer_ui.cc:125 +#: mixer_ui.cc:1795 +msgid "Show" +msgstr "" + #: analysis_window.cc:135 msgid "Re-analyze data" msgstr "" @@ -458,10 +592,26 @@ msgstr "" msgid "button cannot watch state of non-existing Controllable\n" msgstr "" +#: ardour_ui.cc:180 +msgid "audition" +msgstr "" + +#: ardour_ui.cc:181 +msgid "solo" +msgstr "" + #: ardour_ui.cc:182 msgid "feedback" msgstr "" +#: ardour_ui.cc:187 speaker_dialog.cc:36 +msgid "Speaker Configuration" +msgstr "" + +#: ardour_ui.cc:188 theme_manager.cc:56 theme_manager.cc:64 +msgid "Theme Manager" +msgstr "" + #: ardour_ui.cc:189 keyeditor.cc:53 msgid "Key Bindings" msgstr "" @@ -470,6 +620,10 @@ msgstr "" msgid "Preferences" msgstr "" +#: ardour_ui.cc:191 ardour_ui.cc:197 +msgid "Add Tracks/Busses" +msgstr "" + #: ardour_ui.cc:192 msgid "About" msgstr "Acerca de" @@ -478,27 +632,74 @@ msgstr "Acerca de" msgid "Locations" msgstr "Localizações" -#: ardour_ui.cc:195 +#: ardour_ui.cc:194 route_params_ui.cc:58 route_params_ui.cc:606 +msgid "Tracks and Busses" +msgstr "" + +#: ardour_ui.cc:195 engine_dialog.cc:67 +msgid "Audio/MIDI Setup" +msgstr "" + +#: ardour_ui.cc:196 msgid "Properties" msgstr "" -#: ardour_ui.cc:197 bundle_manager.cc:263 +#: ardour_ui.cc:198 bundle_manager.cc:263 msgid "Bundle Manager" msgstr "" -#: ardour_ui.cc:198 big_clock_window.cc:35 +#: ardour_ui.cc:199 big_clock_window.cc:35 msgid "Big Clock" msgstr "Cronómetro principal" -#: ardour_ui.cc:202 +#: ardour_ui.cc:200 +msgid "Audio Connections" +msgstr "" + +#: ardour_ui.cc:201 +msgid "MIDI Connections" +msgstr "" + +#: ardour_ui.cc:203 msgid "Errors" msgstr "" -#: ardour_ui.cc:758 startup.cc:638 +#: ardour_ui.cc:436 +msgid "" +"The audio backend was shutdown because:\n" +"\n" +"%1" +msgstr "" + +#: ardour_ui.cc:438 +msgid "" +"The audio backend has either been shutdown or it\n" +"disconnected %1 because %1\n" +"was not fast enough. Try to restart\n" +"the audio backend and save the session." +msgstr "" + +#: ardour_ui.cc:758 +msgid "NSM server did not announce itself" +msgstr "" + +#: ardour_ui.cc:771 +msgid "NSM: no client ID provided" +msgstr "" + +#: ardour_ui.cc:778 +msgid "NSM: no session created" +msgstr "" + +#: ardour_ui.cc:801 +msgid "NSM: initialization failed" +msgstr "" + +#: ardour_ui.cc:840 startup.cc:379 msgid "%1 is ready for use" msgstr "" -#: ardour_ui.cc:806 +#: ardour_ui.cc:882 msgid "" "WARNING: Your system has a limit for maximum amount of locked memory. This " "might cause %1 to run out of memory before your system runs out of memory. \n" @@ -507,78 +708,130 @@ msgid "" "controlled by %2" msgstr "" -#: ardour_ui.cc:823 +#: ardour_ui.cc:899 msgid "Do not show this window again" msgstr "" -#: ardour_ui.cc:908 +#: ardour_ui.cc:943 +msgid "Don't quit" +msgstr "" + +#: ardour_ui.cc:944 +msgid "Just quit" +msgstr "" + +#: ardour_ui.cc:945 +msgid "Save and quit" +msgstr "" + +#: ardour_ui.cc:955 +msgid "" +"%1 was unable to save your session.\n" +"\n" +"If you still wish to quit, please use the\n" +"\n" +"\"Just quit\" option." +msgstr "" + +#: ardour_ui.cc:986 msgid "Please wait while %1 cleans up..." msgstr "" -#: ardour_ui.cc:963 +#: ardour_ui.cc:1004 +msgid "Unsaved Session" +msgstr "" + +#: ardour_ui.cc:1025 +msgid "" +"The session \"%1\"\n" +"has not been saved.\n" +"\n" +"Any changes made this time\n" +"will be lost unless you save it.\n" +"\n" +"What do you want to do?" +msgstr "" + +#: ardour_ui.cc:1028 +msgid "" +"The snapshot \"%1\"\n" +"has not been saved.\n" +"\n" +"Any changes made this time\n" +"will be lost unless you save it.\n" +"\n" +"What do you want to do?" +msgstr "" + +#: ardour_ui.cc:1042 msgid "Prompter" msgstr "Alerta" -#: ardour_ui.cc:1049 -msgid "disconnected" -msgstr "desligado" - -#: ardour_ui.cc:1056 +#: ardour_ui.cc:1128 ardour_ui.cc:1136 #, c-format -msgid "JACK: %.1f kHz / %4.1f ms" +msgid "Audio: none" msgstr "" -#: ardour_ui.cc:1060 +#: ardour_ui.cc:1140 #, c-format -msgid "JACK: % kHz / %4.1f ms" +msgid "Audio: %.1f kHz / %4.1f ms" msgstr "" -#: ardour_ui.cc:1082 +#: ardour_ui.cc:1144 +#, c-format +msgid "Audio: % kHz / %4.1f ms" +msgstr "" + +#: ardour_ui.cc:1162 export_video_dialog.cc:67 +msgid "File:" +msgstr "" + +#: ardour_ui.cc:1166 msgid "BWF" msgstr "" -#: ardour_ui.cc:1085 +#: ardour_ui.cc:1169 msgid "WAV" msgstr "" -#: ardour_ui.cc:1088 +#: ardour_ui.cc:1172 msgid "WAV64" msgstr "" -#: ardour_ui.cc:1091 session_option_editor.cc:197 +#: ardour_ui.cc:1175 session_option_editor.cc:197 msgid "CAF" msgstr "" -#: ardour_ui.cc:1094 +#: ardour_ui.cc:1178 msgid "AIFF" msgstr "" -#: ardour_ui.cc:1097 +#: ardour_ui.cc:1181 msgid "iXML" msgstr "" -#: ardour_ui.cc:1100 +#: ardour_ui.cc:1184 msgid "RF64" msgstr "" -#: ardour_ui.cc:1108 +#: ardour_ui.cc:1192 msgid "32-float" msgstr "" -#: ardour_ui.cc:1111 +#: ardour_ui.cc:1195 msgid "24-int" msgstr "" -#: ardour_ui.cc:1114 +#: ardour_ui.cc:1198 msgid "16-int" msgstr "" -#: ardour_ui.cc:1133 +#: ardour_ui.cc:1217 #, c-format msgid "DSP: %5.1f%%" msgstr "" -#: ardour_ui.cc:1152 +#: ardour_ui.cc:1236 #, c-format msgid "" "Buffers: p:" @@ -586,105 +839,213 @@ msgid "" "\">%%%" msgstr "" -#: ardour_ui.cc:1190 +#: ardour_ui.cc:1277 +msgid "Disk: Unknown" +msgstr "" + +#: ardour_ui.cc:1279 msgid "Disk: 24hrs+" msgstr "" -#: ardour_ui.cc:1208 +#: ardour_ui.cc:1297 msgid "Disk: >24 hrs" msgstr "" -#: ardour_ui.cc:1362 ardour_ui.cc:1371 startup.cc:1054 +#: ardour_ui.cc:1308 +#, c-format +msgid "Disk: %02dh:%02dm:%02ds" +msgstr "" + +#: ardour_ui.cc:1334 +#, c-format +msgid "Timecode|TC: %s" +msgstr "" + +#: ardour_ui.cc:1451 ardour_ui.cc:1460 session_dialog.cc:322 +#: session_dialog.cc:327 msgid "Recent Sessions" msgstr "Sessões recentes" -#: ardour_ui.cc:1451 +#: ardour_ui.cc:1539 msgid "" -"%1 is not connected to JACK\n" +"%1 is not connected to any audio backend.\n" "You cannot open or close sessions in this condition" msgstr "" -#: ardour_ui.cc:1478 +#: ardour_ui.cc:1563 msgid "Open Session" msgstr "Abrir sessão" -#: ardour_ui.cc:1540 +#: ardour_ui.cc:1588 session_dialog.cc:353 session_import_dialog.cc:169 +#: session_metadata_dialog.cc:729 +msgid "%1 sessions" +msgstr "" + +#: ardour_ui.cc:1625 msgid "You cannot add a track without a session already loaded." msgstr "" "Não é possível acrescentar uma faixa sem que haja uma sessão esteja " "carregada." -#: ardour_ui.cc:2114 +#: ardour_ui.cc:1633 +msgid "could not create %1 new mixed track" +msgid_plural "could not create %1 new mixed tracks" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1639 ardour_ui.cc:1700 msgid "" -"The audio backend (JACK) was shutdown because:\n" -"\n" -"%1" +"There are insufficient JACK ports available\n" +"to create a new track or bus.\n" +"You should save %1, exit and\n" +"restart JACK with more ports." msgstr "" -#: ardour_ui.cc:2142 -msgid "Unable to start the session running" -msgstr "Não foi possível iniciar a sessão corrente" +#: ardour_ui.cc:1674 +msgid "You cannot add a track or bus without a session already loaded." +msgstr "" -#: ardour_ui.cc:2247 +#: ardour_ui.cc:1683 +msgid "could not create %1 new audio track" +msgid_plural "could not create %1 new audio tracks" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1692 +msgid "could not create %1 new audio bus" +msgid_plural "could not create %1 new audio busses" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1816 +msgid "" +"Please create one or more tracks before trying to record.\n" +"You can do this with the \"Add Track or Bus\" option in the Session menu." +msgstr "" + +#: ardour_ui.cc:2193 +msgid "Take Snapshot" +msgstr "" + +#: ardour_ui.cc:2194 +msgid "Name of new snapshot" +msgstr "" + +#: ardour_ui.cc:2218 msgid "" "To ensure compatibility with various systems\n" "snapshot names may not contain a '%1' character" msgstr "" -#: ardour_ui.cc:2259 +#: ardour_ui.cc:2230 msgid "Confirm Snapshot Overwrite" msgstr "" -#: ardour_ui.cc:2312 ardour_ui.cc:2692 ardour_ui.cc:2737 +#: ardour_ui.cc:2231 +msgid "A snapshot already exists with that name. Do you want to overwrite it?" +msgstr "" + +#: ardour_ui.cc:2234 utils_videotl.cc:67 +msgid "Overwrite" +msgstr "" + +#: ardour_ui.cc:2268 +msgid "Rename Session" +msgstr "" + +#: ardour_ui.cc:2269 +msgid "New session name" +msgstr "" + +#: ardour_ui.cc:2283 ardour_ui.cc:2684 ardour_ui.cc:2722 msgid "" "To ensure compatibility with various systems\n" "session names may not contain a '%1' character" msgstr "" -#: ardour_ui.cc:2320 +#: ardour_ui.cc:2291 msgid "" "That name is already in use by another directory/folder. Please try again." msgstr "" -#: ardour_ui.cc:2329 +#: ardour_ui.cc:2300 msgid "" "Renaming this session failed.\n" "Things could be seriously messed up at this point" msgstr "" -#: ardour_ui.cc:2442 +#: ardour_ui.cc:2411 +msgid "Save Template" +msgstr "" + +#: ardour_ui.cc:2412 +msgid "Name for template:" +msgstr "" + +#: ardour_ui.cc:2413 msgid "-template" msgstr "-modelo" -#: ardour_ui.cc:2728 +#: ardour_ui.cc:2451 +msgid "" +"This session\n" +"%1\n" +"already exists. Do you want to open it?" +msgstr "" + +#: ardour_ui.cc:2461 +msgid "Open Existing Session" +msgstr "" + +#: ardour_ui.cc:2712 msgid "There is no existing session at \"%1\"" msgstr "" -#: ardour_ui.cc:2815 +#: ardour_ui.cc:2804 msgid "Please wait while %1 loads your session" msgstr "" -#: ardour_ui.cc:2830 +#: ardour_ui.cc:2819 msgid "Port Registration Error" msgstr "" -#: ardour_ui.cc:2831 +#: ardour_ui.cc:2820 msgid "Click the Close button to try again." msgstr "" -#: ardour_ui.cc:2852 +#: ardour_ui.cc:2841 msgid "Session \"%1 (snapshot %2)\" did not load successfully" msgstr "Não foi possível carregar a sessão \"%1 (captura %2)\" com sucesso" -#: ardour_ui.cc:2858 +#: ardour_ui.cc:2848 msgid "Loading Error" msgstr "" -#: ardour_ui.cc:2859 -msgid "Click the Refresh button to try again." +#: ardour_ui.cc:2867 +msgid "" +"This session has been opened in read-only mode.\n" +"\n" +"You will not be able to record or save." msgstr "" -#: ardour_ui.cc:3046 +#: ardour_ui.cc:2873 +msgid "Read-only Session" +msgstr "" + +#: ardour_ui.cc:2931 +msgid "Could not create session in \"%1\"" +msgstr "" + +#: ardour_ui.cc:3031 +msgid "No files were ready for clean-up" +msgstr "" + +#: ardour_ui.cc:3035 ardour_ui.cc:3045 ardour_ui.cc:3178 ardour_ui.cc:3185 +#: ardour_ui_ed.cc:104 +msgid "Clean-up" +msgstr "" + +#: ardour_ui.cc:3036 msgid "" "If this seems suprising, \n" "check for any existing snapshots.\n" @@ -696,117 +1057,205 @@ msgstr "" "Estas podem ainda incluir regiões que necessitem\n" "da existência de alguns ficheiros já em desuso." -#: ardour_ui.cc:3105 +#: ardour_ui.cc:3095 msgid "kilo" msgstr "" -#: ardour_ui.cc:3108 +#: ardour_ui.cc:3098 msgid "mega" msgstr "" -#: ardour_ui.cc:3111 +#: ardour_ui.cc:3101 msgid "giga" msgstr "" -#: ardour_ui.cc:3198 +#: ardour_ui.cc:3106 +msgid "" +"The following file was deleted from %2,\n" +"releasing %3 %4bytes of disk space" +msgid_plural "" +"The following %1 files were deleted from %2,\n" +"releasing %3 %4bytes of disk space" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:3113 +msgid "" +"The following file was not in use and \n" +"has been moved to: %2\n" +"\n" +"After a restart of %5\n" +"\n" +"Session -> Clean-up -> Flush Wastebasket\n" +"\n" +"will release an additional %3 %4bytes of disk space.\n" +msgid_plural "" +"The following %1 files were not in use and \n" +"have been moved to: %2\n" +"\n" +"After a restart of %5\n" +"\n" +"Session -> Clean-up -> Flush Wastebasket\n" +"\n" +"will release an additional %3 %4bytes of disk space.\n" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:3173 +msgid "Are you sure you want to clean-up?" +msgstr "" + +#: ardour_ui.cc:3180 +msgid "" +"Clean-up is a destructive operation.\n" +"ALL undo/redo information will be lost if you clean-up.\n" +"Clean-up will move all unused files to a \"dead\" location." +msgstr "" + +#: ardour_ui.cc:3188 msgid "CleanupDialog" msgstr "" -#: ardour_ui.cc:3245 +#: ardour_ui.cc:3218 +msgid "Cleaned Files" +msgstr "" + +#: ardour_ui.cc:3235 msgid "deleted file" msgstr "ficheiro eliminado" -#: ardour_ui.cc:3337 +#: ardour_ui.cc:3381 msgid "" "Video-Server was not launched by Ardour. The request to stop it is ignored." msgstr "" -#: ardour_ui.cc:3341 +#: ardour_ui.cc:3385 msgid "Stop Video-Server" msgstr "" -#: ardour_ui.cc:3342 +#: ardour_ui.cc:3386 msgid "Do you really want to stop the Video Server?" msgstr "" -#: ardour_ui.cc:3371 +#: ardour_ui.cc:3389 +msgid "Yes, Stop It" +msgstr "" + +#: ardour_ui.cc:3415 msgid "The Video Server is already started." msgstr "" -#: ardour_ui.cc:3373 +#: ardour_ui.cc:3417 msgid "" "An external Video Server is configured and can be reached. Not starting a " "new instance." msgstr "" -#: ardour_ui.cc:3381 ardour_ui.cc:3471 +#: ardour_ui.cc:3425 ardour_ui.cc:3515 msgid "" "Could not connect to the Video Server. Start it or configure its access URL " "in Edit -> Preferences." msgstr "" -#: ardour_ui.cc:3405 +#: ardour_ui.cc:3449 msgid "Specified docroot is not an existing directory." msgstr "" -#: ardour_ui.cc:3410 +#: ardour_ui.cc:3454 msgid "Given Video Server is not an executable file." msgstr "" -#: ardour_ui.cc:3443 +#: ardour_ui.cc:3487 msgid "Cannot launch the video-server" msgstr "" -#: ardour_ui.cc:3452 +#: ardour_ui.cc:3496 msgid "Video-server was started but does not respond to requests..." msgstr "" -#: ardour_ui.cc:3497 editor_audio_import.cc:632 +#: ardour_ui.cc:3541 editor_audio_import.cc:632 msgid "could not open %1" msgstr "não foi possível abrir %1" -#: ardour_ui.cc:3501 +#: ardour_ui.cc:3545 msgid "no video-file selected" msgstr "" -#: ardour_ui.cc:3673 +#: ardour_ui.cc:3717 msgid "Recording was stopped because your system could not keep up." msgstr "" "A gravação foi interrompida porque o seu sistema não foi capaz de a " "acompanhar adequadamente." -#: ardour_ui.cc:3761 +#: ardour_ui.cc:3746 +msgid "" +"The disk system on your computer\n" +"was not able to keep up with %1.\n" +"\n" +"Specifically, it failed to write data to disk\n" +"quickly enough to keep up with recording.\n" +msgstr "" + +#: ardour_ui.cc:3765 +msgid "" +"The disk system on your computer\n" +"was not able to keep up with %1.\n" +"\n" +"Specifically, it failed to read data from disk\n" +"quickly enough to keep up with playback.\n" +msgstr "" + +#: ardour_ui.cc:3805 msgid "Crash Recovery" msgstr "" -#: ardour_ui.cc:3774 +#: ardour_ui.cc:3806 +msgid "" +"This session appears to have been in the\n" +"middle of recording when %1 or\n" +"the computer was shutdown.\n" +"\n" +"%1 can recover any captured audio for\n" +"you, or it can ignore it. Please decide\n" +"what you would like to do.\n" +msgstr "" + +#: ardour_ui.cc:3818 msgid "Ignore crash data" msgstr "Ignorar" -#: ardour_ui.cc:3775 +#: ardour_ui.cc:3819 msgid "Recover from crash" msgstr "Recuperar" -#: ardour_ui.cc:3796 +#: ardour_ui.cc:3839 +msgid "Sample Rate Mismatch" +msgstr "" + +#: ardour_ui.cc:3840 msgid "" "This session was created with a sample rate of %1 Hz, but\n" "%2 is currently running at %3 Hz. If you load this session,\n" "audio may be played at the wrong sample rate.\n" msgstr "" -#: ardour_ui.cc:3806 +#: ardour_ui.cc:3849 +msgid "Do not load session" +msgstr "" + +#: ardour_ui.cc:3850 msgid "Load session anyway" msgstr "" -#: ardour_ui.cc:3829 -msgid "Could not disconnect from JACK" -msgstr "Não foi possível desligar do serviço JACK" +#: ardour_ui.cc:3877 +msgid "Could not disconnect from Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:3842 -msgid "Could not reconnect to JACK" -msgstr "Não foi possível ligar ao serviço JACK" +#: ardour_ui.cc:3893 ardour_ui.cc:3896 +msgid "Could not reconnect to the Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:4116 +#: ardour_ui.cc:4172 msgid "" "%4This is a session from an older version of %3%5\n" "\n" @@ -829,6 +1278,10 @@ msgstr "Não foi possível iniciar o painel de edição" msgid "UI: cannot setup mixer" msgstr "Não foi posivel iniciar o painel de mistura" +#: ardour_ui2.cc:82 +msgid "UI: cannot setup meterbridge" +msgstr "" + #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "Reproduzir desde o cursor de reprodução" @@ -837,6 +1290,10 @@ msgstr "Reproduzir desde o cursor de reprodução" msgid "Stop playback" msgstr "Parar reprodução" +#: ardour_ui2.cc:132 +msgid "Toggle record" +msgstr "" + #: ardour_ui2.cc:133 msgid "Play range/selection" msgstr "Reproduzir selecção" @@ -863,6 +1320,10 @@ msgstr "" msgid "Return to last playback start when stopped" msgstr "Ir para a última posição inicial do cursor de reprodução quando parar" +#: ardour_ui2.cc:139 +msgid "Playhead follows Range Selections and Edits" +msgstr "" + #: ardour_ui2.cc:140 msgid "Be sensible about input monitoring" msgstr "Seja sensível acerca da monitorização de entradas" @@ -903,6 +1364,10 @@ msgid "" "confirm; postfix the edit with '+' or '-' to enter delta times.\n" msgstr "" +#: ardour_ui2.cc:147 +msgid "Reset Level Meter" +msgstr "" + #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "" @@ -915,23 +1380,51 @@ msgstr "" msgid "[INFO]: " msgstr "" -#: ardour_ui2.cc:249 ardour_ui_ed.cc:380 +#: ardour_ui2.cc:247 ardour_ui_ed.cc:344 +msgid "Auto Return" +msgstr "" + +#: ardour_ui2.cc:249 ardour_ui_ed.cc:347 msgid "Follow Edits" msgstr "" -#: ardour_ui2.cc:628 rc_option_editor.cc:1004 rc_option_editor.cc:1022 -#: rc_option_editor.cc:1025 rc_option_editor.cc:1027 rc_option_editor.cc:1029 -#: rc_option_editor.cc:1037 rc_option_editor.cc:1045 rc_option_editor.cc:1047 -#: rc_option_editor.cc:1055 rc_option_editor.cc:1062 rc_option_editor.cc:1071 -#: rc_option_editor.cc:1073 rc_option_editor.cc:1075 rc_option_editor.cc:1083 -#: rc_option_editor.cc:1085 rc_option_editor.cc:1094 +#: ardour_ui2.cc:628 rc_option_editor.cc:1002 rc_option_editor.cc:1020 +#: rc_option_editor.cc:1023 rc_option_editor.cc:1025 rc_option_editor.cc:1027 +#: rc_option_editor.cc:1035 rc_option_editor.cc:1043 rc_option_editor.cc:1045 +#: rc_option_editor.cc:1053 rc_option_editor.cc:1060 rc_option_editor.cc:1069 +#: rc_option_editor.cc:1071 rc_option_editor.cc:1073 rc_option_editor.cc:1081 +#: rc_option_editor.cc:1083 rc_option_editor.cc:1092 #: session_option_editor.cc:234 session_option_editor.cc:236 #: session_option_editor.cc:257 session_option_editor.cc:259 #: session_option_editor.cc:261 session_option_editor.cc:268 msgid "Misc" msgstr "Miscelânea" -#: ardour_ui_dialogs.cc:340 +#: ardour_ui_dependents.cc:69 +msgid "Setup Editor" +msgstr "" + +#: ardour_ui_dependents.cc:71 +msgid "Setup Mixer" +msgstr "" + +#: ardour_ui_dependents.cc:77 +msgid "Reload Session History" +msgstr "" + +#: ardour_ui_dialogs.cc:238 +msgid "Don't close" +msgstr "" + +#: ardour_ui_dialogs.cc:239 +msgid "Just close" +msgstr "" + +#: ardour_ui_dialogs.cc:240 +msgid "Save and close" +msgstr "" + +#: ardour_ui_dialogs.cc:339 msgid "This screen is not tall enough to display the mixer window" msgstr "" @@ -940,14 +1433,18 @@ msgid "Session" msgstr "Sessão" #: ardour_ui_ed.cc:106 editor_actions.cc:134 editor_regions.cc:115 -#: port_group.cc:457 session_option_editor.cc:82 session_option_editor.cc:89 +#: port_group.cc:458 session_option_editor.cc:82 session_option_editor.cc:89 msgid "Sync" msgstr "Sincronia" -#: ardour_ui_ed.cc:107 engine_dialog.cc:369 +#: ardour_ui_ed.cc:107 msgid "Options" msgstr "Opções" +#: ardour_ui_ed.cc:108 +msgid "Window" +msgstr "" + #: ardour_ui_ed.cc:109 msgid "Help" msgstr "Ajuda" @@ -968,18 +1465,22 @@ msgstr "Tipo de ficheiro" msgid "Sample Format" msgstr "Formato de amostra" -#: ardour_ui_ed.cc:114 rc_option_editor.cc:1826 rc_option_editor.cc:1839 +#: ardour_ui_ed.cc:114 rc_option_editor.cc:1814 rc_option_editor.cc:1826 msgid "Control Surfaces" msgstr "Mesas de controlo" -#: ardour_ui_ed.cc:115 rc_option_editor.cc:1558 +#: ardour_ui_ed.cc:115 rc_option_editor.cc:1546 msgid "Plugins" msgstr "Efeitos/plug-ins" -#: ardour_ui_ed.cc:116 rc_option_editor.cc:1902 +#: ardour_ui_ed.cc:116 rc_option_editor.cc:1889 msgid "Metering" msgstr "VUímetro" +#: ardour_ui_ed.cc:117 +msgid "Fall Off Rate" +msgstr "" + #: ardour_ui_ed.cc:118 msgid "Hold Time" msgstr "Tempo de persistência" @@ -992,10 +1493,47 @@ msgstr "" msgid "New..." msgstr "" +#: ardour_ui_ed.cc:125 +msgid "Open..." +msgstr "" + +#: ardour_ui_ed.cc:126 +msgid "Recent..." +msgstr "" + #: ardour_ui_ed.cc:127 panner_editor.cc:29 playlist_selector.cc:64 msgid "Close" msgstr "Fechar" +#: ardour_ui_ed.cc:130 +msgid "Add Track or Bus..." +msgstr "" + +#: ardour_ui_ed.cc:135 +msgid "Open Video" +msgstr "" + +#: ardour_ui_ed.cc:138 +msgid "Remove Video" +msgstr "" + +#: ardour_ui_ed.cc:141 +msgid "Export To Video File" +msgstr "" + +#: ardour_ui_ed.cc:145 +msgid "Snapshot..." +msgstr "" + +#: ardour_ui_ed.cc:149 +msgid "Save As..." +msgstr "" + +#: ardour_ui_ed.cc:153 editor_actions.cc:1719 editor_markers.cc:858 +#: editor_snapshots.cc:123 mixer_strip.cc:1471 route_time_axis.cc:1485 +msgid "Rename..." +msgstr "" + #: ardour_ui_ed.cc:157 msgid "Save Template..." msgstr "Guardar modelo..." @@ -1008,131 +1546,178 @@ msgstr "" msgid "Edit Metadata..." msgstr "" +#: ardour_ui_ed.cc:166 +msgid "Import Metadata..." +msgstr "" + +#: ardour_ui_ed.cc:169 +msgid "Export To Audio File(s)..." +msgstr "" + +#: ardour_ui_ed.cc:172 +msgid "Stem export..." +msgstr "" + #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 -#: export_video_dialog.cc:72 +#: export_video_dialog.cc:71 msgid "Export" msgstr "Exportar" -#: ardour_ui_ed.cc:189 keyeditor.cc:253 rc_option_editor.cc:1472 -msgid "JACK" +#: ardour_ui_ed.cc:178 +msgid "Clean-up Unused Sources..." msgstr "" -#: ardour_ui_ed.cc:190 route_params_ui.cc:105 -msgid "Latency" -msgstr "Latência" +#: ardour_ui_ed.cc:182 +msgid "Flush Wastebasket" +msgstr "" -#: ardour_ui_ed.cc:192 -msgid "Reconnect" -msgstr "Religar" - -#: ardour_ui_ed.cc:195 global_port_matrix.cc:207 io_selector.cc:210 -#: mixer_strip.cc:719 mixer_strip.cc:845 -msgid "Disconnect" -msgstr "Desligar" - -#: ardour_ui_ed.cc:222 +#: ardour_ui_ed.cc:189 msgid "Quit" msgstr "Sair" -#: ardour_ui_ed.cc:226 +#: ardour_ui_ed.cc:193 msgid "Maximise Editor Space" msgstr "Maximizar o painel de edição" -#: ardour_ui_ed.cc:236 +#: ardour_ui_ed.cc:194 +msgid "Show Toolbars" +msgstr "" + +#: ardour_ui_ed.cc:197 mixer_ui.cc:1865 mixer_ui.cc:1871 +msgid "Window|Mixer" +msgstr "" + +#: ardour_ui_ed.cc:198 +msgid "Toggle Editor+Mixer" +msgstr "" + +#: ardour_ui_ed.cc:199 meterbridge.cc:230 meterbridge.cc:236 +msgid "Window|Meterbridge" +msgstr "" + +#: ardour_ui_ed.cc:201 midi_tracer.cc:42 +msgid "MIDI Tracer" +msgstr "" + +#: ardour_ui_ed.cc:203 msgid "Chat" msgstr "" -#: ardour_ui_ed.cc:238 +#: ardour_ui_ed.cc:205 msgid "Help|Manual" msgstr "" -#: ardour_ui_ed.cc:239 +#: ardour_ui_ed.cc:206 msgid "Reference" msgstr "" -#: ardour_ui_ed.cc:241 plugin_ui.cc:418 +#: ardour_ui_ed.cc:208 plugin_ui.cc:415 msgid "Save" msgstr "Guardar" -#: ardour_ui_ed.cc:249 rc_option_editor.cc:1114 rc_option_editor.cc:1125 -#: rc_option_editor.cc:1134 rc_option_editor.cc:1147 rc_option_editor.cc:1160 -#: rc_option_editor.cc:1169 rc_option_editor.cc:1179 rc_option_editor.cc:1181 -#: rc_option_editor.cc:1191 rc_option_editor.cc:1207 rc_option_editor.cc:1220 -#: rc_option_editor.cc:1238 rc_option_editor.cc:1240 rc_option_editor.cc:1254 -#: rc_option_editor.cc:1257 rc_option_editor.cc:1259 rc_option_editor.cc:1276 -#: rc_option_editor.cc:1287 +#: ardour_ui_ed.cc:216 rc_option_editor.cc:1112 rc_option_editor.cc:1123 +#: rc_option_editor.cc:1132 rc_option_editor.cc:1145 rc_option_editor.cc:1158 +#: rc_option_editor.cc:1167 rc_option_editor.cc:1177 rc_option_editor.cc:1179 +#: rc_option_editor.cc:1189 rc_option_editor.cc:1205 rc_option_editor.cc:1218 +#: rc_option_editor.cc:1236 rc_option_editor.cc:1238 rc_option_editor.cc:1252 +#: rc_option_editor.cc:1255 rc_option_editor.cc:1257 rc_option_editor.cc:1274 +#: rc_option_editor.cc:1285 msgid "Transport" msgstr "Transporte" -#: ardour_ui_ed.cc:255 engine_dialog.cc:85 +#: ardour_ui_ed.cc:222 msgid "Stop" msgstr "Parar" -#: ardour_ui_ed.cc:258 +#: ardour_ui_ed.cc:225 msgid "Roll" msgstr "Rolar" -#: ardour_ui_ed.cc:262 +#: ardour_ui_ed.cc:229 msgid "Start/Stop" msgstr "Iniciar/Parar" -#: ardour_ui_ed.cc:282 +#: ardour_ui_ed.cc:232 +msgid "Start/Continue/Stop" +msgstr "" + +#: ardour_ui_ed.cc:235 +msgid "Stop and Forget Capture" +msgstr "" + +#: ardour_ui_ed.cc:245 +msgid "Transition To Roll" +msgstr "" + +#: ardour_ui_ed.cc:249 msgid "Transition To Reverse" msgstr "" -#: ardour_ui_ed.cc:286 +#: ardour_ui_ed.cc:253 msgid "Play Loop Range" msgstr "Reproduzir intervalo cíclico" -#: ardour_ui_ed.cc:296 +#: ardour_ui_ed.cc:256 +msgid "Play Selected Range" +msgstr "" + +#: ardour_ui_ed.cc:259 +msgid "Play Selection w/Preroll" +msgstr "" + +#: ardour_ui_ed.cc:263 msgid "Enable Record" msgstr "Gravar" -#: ardour_ui_ed.cc:303 +#: ardour_ui_ed.cc:266 +msgid "Start Recording" +msgstr "" + +#: ardour_ui_ed.cc:270 msgid "Rewind" msgstr "Rebobinar" -#: ardour_ui_ed.cc:306 +#: ardour_ui_ed.cc:273 msgid "Rewind (Slow)" msgstr "Rebobinar (devagar)" -#: ardour_ui_ed.cc:309 +#: ardour_ui_ed.cc:276 msgid "Rewind (Fast)" msgstr "Rebobinar (rápido)" -#: ardour_ui_ed.cc:312 startup.cc:727 +#: ardour_ui_ed.cc:279 msgid "Forward" msgstr "Avançar" -#: ardour_ui_ed.cc:315 +#: ardour_ui_ed.cc:282 msgid "Forward (Slow)" msgstr "Avançar (devagar)" -#: ardour_ui_ed.cc:318 +#: ardour_ui_ed.cc:285 msgid "Forward (Fast)" msgstr "Avançar (rápido)" -#: ardour_ui_ed.cc:321 +#: ardour_ui_ed.cc:288 msgid "Goto Zero" msgstr "Ir para o zero" -#: ardour_ui_ed.cc:324 +#: ardour_ui_ed.cc:291 msgid "Goto Start" msgstr "Ir para o início" -#: ardour_ui_ed.cc:327 +#: ardour_ui_ed.cc:294 msgid "Goto End" msgstr "Ir para o final" -#: ardour_ui_ed.cc:330 +#: ardour_ui_ed.cc:297 msgid "Goto Wall Clock" msgstr "" -#: ardour_ui_ed.cc:334 +#: ardour_ui_ed.cc:301 msgid "Focus On Clock" msgstr "" -#: ardour_ui_ed.cc:338 ardour_ui_ed.cc:347 audio_clock.cc:2046 editor.cc:237 +#: ardour_ui_ed.cc:305 ardour_ui_ed.cc:314 audio_clock.cc:2046 editor.cc:237 #: editor_actions.cc:544 editor_actions.cc:553 export_timespan_selector.cc:88 #: session_option_editor.cc:41 session_option_editor.cc:61 #: session_option_editor.cc:80 session_option_editor.cc:96 @@ -1141,77 +1726,146 @@ msgstr "" msgid "Timecode" msgstr "" -#: ardour_ui_ed.cc:357 mixer_strip.cc:1905 route_ui.cc:137 +#: ardour_ui_ed.cc:307 ardour_ui_ed.cc:316 editor_actions.cc:542 +msgid "Bars & Beats" +msgstr "" + +#: ardour_ui_ed.cc:309 ardour_ui_ed.cc:318 +msgid "Minutes & Seconds" +msgstr "" + +#: ardour_ui_ed.cc:311 ardour_ui_ed.cc:320 audio_clock.cc:2050 editor.cc:238 +#: editor_actions.cc:543 +msgid "Samples" +msgstr "" + +#: ardour_ui_ed.cc:323 +msgid "Punch In" +msgstr "" + +#: ardour_ui_ed.cc:324 mixer_strip.cc:1905 route_ui.cc:137 #: time_info_box.cc:113 msgid "In" msgstr "Entrada" -#: ardour_ui_ed.cc:361 time_info_box.cc:114 +#: ardour_ui_ed.cc:327 +msgid "Punch Out" +msgstr "" + +#: ardour_ui_ed.cc:328 time_info_box.cc:114 msgid "Out" msgstr "Saída" -#: ardour_ui_ed.cc:368 rc_option_editor.cc:1071 +#: ardour_ui_ed.cc:331 +msgid "Punch In/Out" +msgstr "" + +#: ardour_ui_ed.cc:332 +msgid "In/Out" +msgstr "" + +#: ardour_ui_ed.cc:335 rc_option_editor.cc:1069 msgid "Click" msgstr "Metrónomo" -#: ardour_ui_ed.cc:385 +#: ardour_ui_ed.cc:338 +msgid "Auto Input" +msgstr "" + +#: ardour_ui_ed.cc:341 +msgid "Auto Play" +msgstr "" + +#: ardour_ui_ed.cc:352 msgid "Sync Startup to Video" msgstr "" -#: ardour_ui_ed.cc:401 +#: ardour_ui_ed.cc:354 +msgid "Time Master" +msgstr "" + +#: ardour_ui_ed.cc:361 +msgid "Toggle Record Enable Track %1" +msgstr "" + +#: ardour_ui_ed.cc:368 msgid "Percentage" msgstr "Percentagem" -#: ardour_ui_ed.cc:402 shuttle_control.cc:169 +#: ardour_ui_ed.cc:369 shuttle_control.cc:169 msgid "Semitones" msgstr "Semi-tons" -#: ardour_ui_ed.cc:406 +#: ardour_ui_ed.cc:373 msgid "Send MTC" msgstr "Enviar MTC" -#: ardour_ui_ed.cc:408 +#: ardour_ui_ed.cc:375 msgid "Send MMC" msgstr "Enviar MMC" -#: ardour_ui_ed.cc:410 +#: ardour_ui_ed.cc:377 msgid "Use MMC" msgstr "Usar MMC" -#: ardour_ui_ed.cc:420 +#: ardour_ui_ed.cc:379 rc_option_editor.cc:1698 +msgid "Send MIDI Clock" +msgstr "" + +#: ardour_ui_ed.cc:381 +msgid "Send MIDI Feedback" +msgstr "" + +#: ardour_ui_ed.cc:387 msgid "Panic" msgstr "" -#: ardour_ui_ed.cc:561 +#: ardour_ui_ed.cc:472 +msgid "Wall Clock" +msgstr "" + +#: ardour_ui_ed.cc:473 msgid "Disk Space" msgstr "" -#: ardour_ui_ed.cc:562 +#: ardour_ui_ed.cc:474 msgid "DSP" msgstr "" -#: ardour_ui_ed.cc:563 +#: ardour_ui_ed.cc:475 msgid "Buffers" msgstr "" -#: ardour_ui_ed.cc:564 -msgid "JACK Sampling Rate and Latency" +#: ardour_ui_ed.cc:477 +msgid "Timecode Format" msgstr "" -#: ardour_ui_options.cc:65 +#: ardour_ui_ed.cc:478 +msgid "File Format" +msgstr "" + +#: ardour_ui_options.cc:61 msgid "" "It is not possible to use JACK as the the sync source\n" "when the pull up/down setting is non-zero." msgstr "" -#: ardour_ui_options.cc:321 +#: ardour_ui_options.cc:317 msgid "Internal" msgstr "Interno" -#: ardour_ui_options.cc:484 +#: ardour_ui_options.cc:468 +msgid "Enable/Disable external positional sync" +msgstr "" + +#: ardour_ui_options.cc:470 msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "" +#: audio_clock.cc:1012 audio_clock.cc:1031 +msgid "--pending--" +msgstr "" + #: audio_clock.cc:1083 msgid "SR" msgstr "" @@ -1253,11 +1907,23 @@ msgstr "Comp:Bat" msgid "Minutes:Seconds" msgstr "Mins:Segs" +#: audio_clock.cc:2054 +msgid "Set From Playhead" +msgstr "" + +#: audio_clock.cc:2055 +msgid "Locate to This Time" +msgstr "" + #: audio_region_editor.cc:63 control_point_dialog.cc:49 rhythm_ferret.cc:125 #: rhythm_ferret.cc:130 rhythm_ferret.cc:135 msgid "dB" msgstr "" +#: audio_region_editor.cc:66 +msgid "Region gain:" +msgstr "" + #: audio_region_editor.cc:76 export_format_dialog.cc:43 msgid "dBFS" msgstr "" @@ -1286,6 +1952,10 @@ msgstr "Panorama" msgid "automation event move" msgstr "mover evento de automatização" +#: automation_line.cc:462 automation_line.cc:483 +msgid "automation range move" +msgstr "" + #: automation_line.cc:823 region_gain_line.cc:73 msgid "remove control point" msgstr "remover ponto de controlo" @@ -1294,6 +1964,10 @@ msgstr "remover ponto de controlo" msgid "Ignoring illegal points on AutomationLine \"%1\"" msgstr "" +#: automation_region_view.cc:160 automation_time_axis.cc:583 +msgid "add automation event" +msgstr "" + #: automation_time_axis.cc:146 msgid "automation state" msgstr "estado de automatização" @@ -1302,27 +1976,33 @@ msgstr "estado de automatização" msgid "hide track" msgstr "esconder faixa" +#: automation_time_axis.cc:255 automation_time_axis.cc:307 +#: automation_time_axis.cc:496 gain_meter.cc:194 generic_pluginui.cc:454 +#: generic_pluginui.cc:775 panner_ui.cc:149 +msgid "Automation|Manual" +msgstr "" + #: automation_time_axis.cc:257 automation_time_axis.cc:318 -#: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 -#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 -#: generic_pluginui.cc:459 generic_pluginui.cc:748 midi_time_axis.cc:1488 -#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:153 +#: automation_time_axis.cc:501 editor.cc:1937 editor.cc:2014 +#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:197 +#: generic_pluginui.cc:457 generic_pluginui.cc:777 midi_time_axis.cc:1488 +#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:152 msgid "Play" msgstr "Reprodução" #: automation_time_axis.cc:259 automation_time_axis.cc:329 -#: automation_time_axis.cc:506 gain_meter.cc:201 generic_pluginui.cc:462 -#: generic_pluginui.cc:750 panner_ui.cc:156 +#: automation_time_axis.cc:506 gain_meter.cc:200 generic_pluginui.cc:460 +#: generic_pluginui.cc:779 panner_ui.cc:155 msgid "Write" msgstr "Escrita" #: automation_time_axis.cc:261 automation_time_axis.cc:340 -#: automation_time_axis.cc:511 gain_meter.cc:204 generic_pluginui.cc:465 -#: generic_pluginui.cc:752 panner_ui.cc:159 +#: automation_time_axis.cc:511 gain_meter.cc:203 generic_pluginui.cc:463 +#: generic_pluginui.cc:781 panner_ui.cc:158 msgid "Touch" msgstr "Tocar" -#: automation_time_axis.cc:351 generic_pluginui.cc:468 meter_patterns.cc:108 +#: automation_time_axis.cc:351 generic_pluginui.cc:466 meter_patterns.cc:108 msgid "???" msgstr "" @@ -1343,8 +2023,12 @@ msgstr "Apagar" msgid "State" msgstr "Estado" -#: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 -#: editor.cc:1526 export_format_dialog.cc:476 +#: automation_time_axis.cc:531 +msgid "Discrete" +msgstr "" + +#: automation_time_axis.cc:537 editor.cc:1458 editor.cc:1465 editor.cc:1521 +#: editor.cc:1527 export_format_dialog.cc:476 msgid "Linear" msgstr "" @@ -1357,6 +2041,14 @@ msgstr "Modo" msgid "Disassociate" msgstr "" +#: bundle_manager.cc:185 +msgid "Edit Bundle" +msgstr "" + +#: bundle_manager.cc:200 +msgid "Direction:" +msgstr "" + #: bundle_manager.cc:205 bundle_manager.cc:209 mixer_strip.cc:158 #: mixer_strip.cc:2127 msgid "Input" @@ -1367,13 +2059,13 @@ msgstr "Entradas" msgid "Output" msgstr "Saída" -#: bundle_manager.cc:264 editor.cc:1974 editor_actions.cc:90 +#: bundle_manager.cc:264 editor.cc:1978 editor_actions.cc:90 #: editor_actions.cc:100 msgid "Edit" msgstr "Editar" -#: bundle_manager.cc:265 editor.cc:5493 editor_actions.cc:310 -#: editor_actions.cc:368 plugin_ui.cc:419 processor_box.cc:2229 +#: bundle_manager.cc:265 editor.cc:5497 editor_actions.cc:310 +#: editor_actions.cc:368 plugin_ui.cc:416 processor_box.cc:2268 #: route_time_axis.cc:713 msgid "Delete" msgstr "Eliminar" @@ -1391,6 +2083,14 @@ msgstr "Novo" msgid "Bundle" msgstr "" +#: bundle_manager.cc:417 +msgid "Add Channel" +msgstr "" + +#: bundle_manager.cc:424 +msgid "Rename Channel" +msgstr "" + #: canvas-simpleline.c:111 canvas-simplerect.c:106 msgid "x1" msgstr "" @@ -1479,6 +2179,14 @@ msgstr "cor de preenchimento (rgba)" msgid "color of fill" msgstr "cor de preenchimento" +#: configinfo.cc:28 +msgid "Build Configuration" +msgstr "" + +#: control_point_dialog.cc:33 +msgid "Control point" +msgstr "" + #: control_point_dialog.cc:45 msgid "Value" msgstr "Valor" @@ -1487,6 +2195,31 @@ msgstr "Valor" msgid "Note" msgstr "" +#: edit_note_dialog.cc:45 +msgid "Set selected notes to this channel" +msgstr "" + +#: edit_note_dialog.cc:46 +msgid "Set selected notes to this pitch" +msgstr "" + +#: edit_note_dialog.cc:47 +msgid "Set selected notes to this velocity" +msgstr "" + +#: edit_note_dialog.cc:49 +msgid "Set selected notes to this time" +msgstr "" + +#: edit_note_dialog.cc:51 +msgid "Set selected notes to this length" +msgstr "" + +#: edit_note_dialog.cc:58 midi_list_editor.cc:104 patch_change_dialog.cc:91 +#: step_entry.cc:393 +msgid "Channel" +msgstr "" + #: edit_note_dialog.cc:68 msgid "Pitch" msgstr "" @@ -1495,105 +2228,181 @@ msgstr "" msgid "Velocity" msgstr "" +#: edit_note_dialog.cc:88 patch_change_dialog.cc:67 +msgid "Time" +msgstr "" + #: edit_note_dialog.cc:98 editor_regions.cc:114 #: export_timespan_selector.cc:359 export_timespan_selector.cc:421 #: location_ui.cc:317 midi_list_editor.cc:114 time_info_box.cc:105 msgid "Length" msgstr "" -#: editor.cc:137 editor.cc:3429 +#: edit_note_dialog.cc:165 +msgid "edit note" +msgstr "" + +#: editor.cc:137 editor.cc:3433 msgid "CD Frames" msgstr "Quadros CD" -#: editor.cc:141 editor.cc:3437 +#: editor.cc:138 editor.cc:3435 +msgid "Timecode Frames" +msgstr "" + +#: editor.cc:139 editor.cc:3437 +msgid "Timecode Seconds" +msgstr "" + +#: editor.cc:140 editor.cc:3439 +msgid "Timecode Minutes" +msgstr "" + +#: editor.cc:141 editor.cc:3441 msgid "Seconds" msgstr "Segundos" -#: editor.cc:142 editor.cc:3439 +#: editor.cc:142 editor.cc:3443 msgid "Minutes" msgstr "Minutos" -#: editor.cc:145 editor.cc:3409 quantize_dialog.cc:39 quantize_dialog.cc:145 +#: editor.cc:143 editor.cc:3417 quantize_dialog.cc:37 quantize_dialog.cc:141 +msgid "Beats/128" +msgstr "" + +#: editor.cc:144 editor.cc:3415 quantize_dialog.cc:38 quantize_dialog.cc:143 +msgid "Beats/64" +msgstr "" + +#: editor.cc:145 editor.cc:3413 quantize_dialog.cc:39 quantize_dialog.cc:145 msgid "Beats/32" msgstr "Batimentos/32" -#: editor.cc:149 editor.cc:3401 quantize_dialog.cc:40 quantize_dialog.cc:147 +#: editor.cc:146 editor.cc:3411 +msgid "Beats/28" +msgstr "" + +#: editor.cc:147 editor.cc:3409 +msgid "Beats/24" +msgstr "" + +#: editor.cc:148 editor.cc:3407 +msgid "Beats/20" +msgstr "" + +#: editor.cc:149 editor.cc:3405 quantize_dialog.cc:40 quantize_dialog.cc:147 msgid "Beats/16" msgstr "Batimentos/16" -#: editor.cc:153 editor.cc:3393 quantize_dialog.cc:41 quantize_dialog.cc:149 +#: editor.cc:150 editor.cc:3403 +msgid "Beats/14" +msgstr "" + +#: editor.cc:151 editor.cc:3401 +msgid "Beats/12" +msgstr "" + +#: editor.cc:152 editor.cc:3399 +msgid "Beats/10" +msgstr "" + +#: editor.cc:153 editor.cc:3397 quantize_dialog.cc:41 quantize_dialog.cc:149 msgid "Beats/8" msgstr "Batimentos/8" -#: editor.cc:157 editor.cc:3385 quantize_dialog.cc:42 quantize_dialog.cc:151 +#: editor.cc:154 editor.cc:3395 +msgid "Beats/7" +msgstr "" + +#: editor.cc:155 editor.cc:3393 +msgid "Beats/6" +msgstr "" + +#: editor.cc:156 editor.cc:3391 +msgid "Beats/5" +msgstr "" + +#: editor.cc:157 editor.cc:3389 quantize_dialog.cc:42 quantize_dialog.cc:151 msgid "Beats/4" msgstr "Batimentos/4" -#: editor.cc:158 editor.cc:3383 quantize_dialog.cc:43 quantize_dialog.cc:153 +#: editor.cc:158 editor.cc:3387 quantize_dialog.cc:43 quantize_dialog.cc:153 msgid "Beats/3" msgstr "Batimentos/3" -#: editor.cc:160 editor.cc:3415 quantize_dialog.cc:45 quantize_dialog.cc:157 +#: editor.cc:159 editor.cc:3385 quantize_dialog.cc:44 quantize_dialog.cc:155 +msgid "Beats/2" +msgstr "" + +#: editor.cc:160 editor.cc:3419 quantize_dialog.cc:45 quantize_dialog.cc:157 msgid "Beats" msgstr "Batimentos" -#: editor.cc:161 editor.cc:3417 +#: editor.cc:161 editor.cc:3421 msgid "Bars" msgstr "Compassos" -#: editor.cc:162 editor.cc:3419 +#: editor.cc:162 editor.cc:3423 msgid "Marks" msgstr "Marcadores" -#: editor.cc:163 editor.cc:3421 +#: editor.cc:163 editor.cc:3425 msgid "Region starts" msgstr "Inícios de região" -#: editor.cc:164 editor.cc:3423 +#: editor.cc:164 editor.cc:3427 msgid "Region ends" msgstr "Finais de região" -#: editor.cc:165 editor.cc:3427 +#: editor.cc:165 editor.cc:3431 msgid "Region syncs" msgstr "Sincronismos de região" -#: editor.cc:166 editor.cc:3425 +#: editor.cc:166 editor.cc:3429 msgid "Region bounds" msgstr "Extremos de região" -#: editor.cc:171 editor.cc:3455 editor_actions.cc:485 +#: editor.cc:171 editor.cc:3459 editor_actions.cc:485 msgid "No Grid" msgstr "" -#: editor.cc:172 editor.cc:3457 editor_actions.cc:486 +#: editor.cc:172 editor.cc:3461 editor_actions.cc:486 msgid "Grid" msgstr "" -#: editor.cc:173 editor.cc:3459 editor_actions.cc:487 +#: editor.cc:173 editor.cc:3463 editor_actions.cc:487 msgid "Magnetic" msgstr "Magnético" -#: editor.cc:178 editor.cc:188 editor.cc:3498 editor.cc:3523 +#: editor.cc:178 editor.cc:188 editor.cc:3502 editor.cc:3527 #: editor_actions.cc:117 editor_actions.cc:468 msgid "Playhead" msgstr "Cursor de reprodução" -#: editor.cc:179 editor.cc:3496 editor_actions.cc:470 +#: editor.cc:179 editor.cc:3500 editor_actions.cc:470 msgid "Marker" msgstr "Marcador" -#: editor.cc:185 editor.cc:3517 mono_panner_editor.cc:42 +#: editor.cc:180 editor.cc:189 editor.cc:3529 editor_actions.cc:469 +msgid "Mouse" +msgstr "" + +#: editor.cc:185 editor.cc:3521 mono_panner_editor.cc:42 msgid "Left" msgstr "Esquerda" -#: editor.cc:186 editor.cc:3519 mono_panner_editor.cc:47 +#: editor.cc:186 editor.cc:3523 mono_panner_editor.cc:47 msgid "Right" msgstr "Direita" -#: editor.cc:187 editor.cc:3521 +#: editor.cc:187 editor.cc:3525 msgid "Center" msgstr "Centro" +#: editor.cc:190 editor.cc:3094 editor.cc:3531 +msgid "Edit point" +msgstr "" + #: editor.cc:196 msgid "Mushy" msgstr "" @@ -1638,6 +2447,10 @@ msgstr "Marcadores de intervalo" msgid "Loop/Punch Ranges" msgstr "Ciclos/inserção" +#: editor.cc:244 editor_actions.cc:540 +msgid "CD Markers" +msgstr "" + #: editor.cc:245 msgid "Video Timeline" msgstr "" @@ -1646,239 +2459,469 @@ msgstr "" msgid "mode" msgstr "modo" -#: editor.cc:542 +#: editor.cc:541 msgid "Regions" msgstr "Regiões" -#: editor.cc:544 +#: editor.cc:542 +msgid "Tracks & Busses" +msgstr "" + +#: editor.cc:543 msgid "Snapshots" msgstr "Capturas" -#: editor.cc:1215 editor.cc:1225 editor.cc:4440 editor_actions.cc:130 +#: editor.cc:544 +msgid "Track & Bus Groups" +msgstr "" + +#: editor.cc:545 +msgid "Ranges & Marks" +msgstr "" + +#: editor.cc:690 editor.cc:5349 rc_option_editor.cc:1292 +#: rc_option_editor.cc:1300 rc_option_editor.cc:1308 rc_option_editor.cc:1316 +#: rc_option_editor.cc:1333 rc_option_editor.cc:1335 rc_option_editor.cc:1343 +#: rc_option_editor.cc:1351 rc_option_editor.cc:1371 rc_option_editor.cc:1383 +#: rc_option_editor.cc:1385 rc_option_editor.cc:1393 rc_option_editor.cc:1401 +#: rc_option_editor.cc:1409 rc_option_editor.cc:1417 rc_option_editor.cc:1432 +#: rc_option_editor.cc:1436 +msgid "Editor" +msgstr "" + +#: editor.cc:1215 editor.cc:1225 editor.cc:4444 editor_actions.cc:130 #: editor_actions.cc:1813 msgid "Loop" msgstr "Ciclo" -#: editor.cc:1231 editor.cc:1241 editor.cc:4467 editor_actions.cc:131 +#: editor.cc:1231 editor.cc:1241 editor.cc:4471 editor_actions.cc:131 #: time_info_box.cc:67 msgid "Punch" msgstr "Inserção" -#: editor.cc:1352 +#: editor.cc:1353 msgid "Linear (for highly correlated material)" msgstr "" -#: editor.cc:1362 editor.cc:1499 editor.cc:1561 +#: editor.cc:1363 editor.cc:1500 editor.cc:1562 msgid "Constant power" msgstr "" -#: editor.cc:1371 editor.cc:1492 editor.cc:1554 +#: editor.cc:1372 editor.cc:1493 editor.cc:1555 msgid "Symmetric" msgstr "" -#: editor.cc:1381 editor.cc:1474 editor.cc:1536 +#: editor.cc:1382 editor.cc:1475 editor.cc:1537 msgid "Slow" msgstr "Lento" -#: editor.cc:1390 editor.cc:1483 editor.cc:1545 sfdb_ui.cc:1627 +#: editor.cc:1391 editor.cc:1484 editor.cc:1546 sfdb_ui.cc:1627 #: sfdb_ui.cc:1736 msgid "Fast" msgstr "Rápido" -#: editor.cc:1437 +#: editor.cc:1438 msgid "programming error: fade in canvas item has no regionview data pointer!" msgstr "" -#: editor.cc:1448 editor.cc:1512 +#: editor.cc:1449 editor.cc:1513 msgid "Deactivate" msgstr "Desactivar" -#: editor.cc:1450 editor.cc:1514 +#: editor.cc:1451 editor.cc:1515 msgid "Activate" msgstr "Activar" -#: editor.cc:1458 editor.cc:1521 +#: editor.cc:1459 editor.cc:1522 msgid "Slowest" msgstr "Mais lento" -#: editor.cc:1572 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 +#: editor.cc:1573 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 msgid "programming error: " msgstr "" -#: editor.cc:1673 editor.cc:1681 editor_ops.cc:3522 +#: editor.cc:1674 editor.cc:1682 editor_ops.cc:3522 msgid "Freeze" msgstr "Congelar" -#: editor.cc:1677 +#: editor.cc:1678 msgid "Unfreeze" msgstr "Descongelar" -#: editor.cc:1853 editor_markers.cc:898 +#: editor.cc:1817 +msgid "Selected Regions" +msgstr "" + +#: editor.cc:1853 editor_markers.cc:895 +msgid "Play Range" +msgstr "" + +#: editor.cc:1854 editor_markers.cc:898 msgid "Loop Range" msgstr "Intervalo cíclico" +#: editor.cc:1863 editor_actions.cc:332 +msgid "Move Range Start to Previous Region Boundary" +msgstr "" + +#: editor.cc:1870 editor_actions.cc:339 +msgid "Move Range Start to Next Region Boundary" +msgstr "" + +#: editor.cc:1877 editor_actions.cc:346 +msgid "Move Range End to Previous Region Boundary" +msgstr "" + +#: editor.cc:1884 editor_actions.cc:353 +msgid "Move Range End to Next Region Boundary" +msgstr "" + #: editor.cc:1890 +msgid "Convert to Region In-Place" +msgstr "" + +#: editor.cc:1891 msgid "Convert to Region in Region List" msgstr "" -#: editor.cc:1893 editor_markers.cc:925 +#: editor.cc:1894 editor_markers.cc:925 msgid "Select All in Range" msgstr "Seleccionar tudo no intervalo" -#: editor.cc:1900 +#: editor.cc:1897 +msgid "Set Loop from Range" +msgstr "" + +#: editor.cc:1898 +msgid "Set Punch from Range" +msgstr "" + +#: editor.cc:1901 msgid "Add Range Markers" msgstr "Acrescentar marcadores de intervalo" -#: editor.cc:1905 editor_actions.cc:289 +#: editor.cc:1904 +msgid "Crop Region to Range" +msgstr "" + +#: editor.cc:1905 +msgid "Fill Range with Region" +msgstr "" + +#: editor.cc:1906 editor_actions.cc:289 msgid "Duplicate Range" msgstr "Duplicar intervalo" #: editor.cc:1909 +msgid "Consolidate Range" +msgstr "" + +#: editor.cc:1910 msgid "Consolidate Range With Processing" msgstr "" #: editor.cc:1911 +msgid "Bounce Range to Region List" +msgstr "" + +#: editor.cc:1912 msgid "Bounce Range to Region List With Processing" msgstr "" -#: editor.cc:1931 +#: editor.cc:1913 editor_markers.cc:908 +msgid "Export Range..." +msgstr "" + +#: editor.cc:1915 +msgid "Export Video Range..." +msgstr "" + +#: editor.cc:1931 editor.cc:2012 editor_actions.cc:281 +msgid "Play From Edit Point" +msgstr "" + +#: editor.cc:1932 editor.cc:2013 +msgid "Play From Start" +msgstr "" + +#: editor.cc:1933 +msgid "Play Region" +msgstr "" + +#: editor.cc:1935 msgid "Loop Region" msgstr "Reproduzir região em ciclo" -#: editor.cc:1942 editor.cc:2019 editor_actions.cc:185 -#: export_timespan_selector.cc:53 processor_box.cc:2237 +#: editor.cc:1945 editor.cc:2022 +msgid "Select All in Track" +msgstr "" + +#: editor.cc:1946 editor.cc:2023 editor_actions.cc:185 +#: export_timespan_selector.cc:53 processor_box.cc:2276 msgid "Select All" msgstr "Seleccionar tudo" -#: editor.cc:1951 editor.cc:2025 +#: editor.cc:1947 editor.cc:2024 +msgid "Invert Selection in Track" +msgstr "" + +#: editor.cc:1948 editor.cc:2025 editor_actions.cc:187 +msgid "Invert Selection" +msgstr "" + +#: editor.cc:1950 +msgid "Set Range to Loop Range" +msgstr "" + +#: editor.cc:1951 +msgid "Set Range to Punch Range" +msgstr "" + +#: editor.cc:1953 editor.cc:2027 editor_actions.cc:188 +msgid "Select All After Edit Point" +msgstr "" + +#: editor.cc:1954 editor.cc:2028 editor_actions.cc:189 +msgid "Select All Before Edit Point" +msgstr "" + +#: editor.cc:1955 editor.cc:2029 msgid "Select All After Playhead" msgstr "Seleccionar tudo após o cursor de reprodução" -#: editor.cc:1952 editor.cc:2026 +#: editor.cc:1956 editor.cc:2030 msgid "Select All Before Playhead" msgstr "Seleccionar tudo antes do cursor de reprodução" -#: editor.cc:1955 +#: editor.cc:1957 +msgid "Select All Between Playhead and Edit Point" +msgstr "" + +#: editor.cc:1958 +msgid "Select All Within Playhead and Edit Point" +msgstr "" + +#: editor.cc:1959 msgid "Select Range Between Playhead and Edit Point" msgstr "" -#: editor.cc:1957 editor.cc:2028 editor_actions.cc:127 editor_actions.cc:128 +#: editor.cc:1961 editor.cc:2032 editor_actions.cc:127 editor_actions.cc:128 msgid "Select" msgstr "Seleccionar" -#: editor.cc:1965 editor.cc:2036 editor_actions.cc:309 processor_box.cc:2222 +#: editor.cc:1969 editor.cc:2040 editor_actions.cc:309 processor_box.cc:2261 msgid "Cut" msgstr "Cortar" -#: editor.cc:1966 editor.cc:2037 editor_actions.cc:312 processor_box.cc:2225 +#: editor.cc:1970 editor.cc:2041 editor_actions.cc:312 processor_box.cc:2264 msgid "Copy" msgstr "Copiar" -#: editor.cc:1967 editor.cc:2038 editor_actions.cc:313 processor_box.cc:2233 +#: editor.cc:1971 editor.cc:2042 editor_actions.cc:313 processor_box.cc:2272 msgid "Paste" msgstr "Colar" -#: editor.cc:1971 editor_actions.cc:87 +#: editor.cc:1975 editor_actions.cc:87 msgid "Align" msgstr "Alinhar" -#: editor.cc:1972 +#: editor.cc:1976 msgid "Align Relative" msgstr "Alinhar relativamente" -#: editor.cc:1979 +#: editor.cc:1983 msgid "Insert Selected Region" msgstr "Inserir regiões seleccionadas" +#: editor.cc:1984 +msgid "Insert Existing Media" +msgstr "" + +#: editor.cc:1993 editor.cc:2049 +msgid "Nudge Entire Track Later" +msgstr "" + #: editor.cc:1994 editor.cc:2050 +msgid "Nudge Track After Edit Point Later" +msgstr "" + +#: editor.cc:1995 editor.cc:2051 +msgid "Nudge Entire Track Earlier" +msgstr "" + +#: editor.cc:1996 editor.cc:2052 +msgid "Nudge Track After Edit Point Earlier" +msgstr "" + +#: editor.cc:1998 editor.cc:2054 msgid "Nudge" msgstr "Retocar" -#: editor.cc:3070 +#: editor.cc:3074 msgid "Smart Mode (add Range functions to Object mode)" msgstr "" -#: editor.cc:3073 +#: editor.cc:3075 +msgid "Object Mode (select/move Objects)" +msgstr "" + +#: editor.cc:3076 +msgid "Range Mode (select/move Ranges)" +msgstr "" + +#: editor.cc:3077 msgid "Draw/Edit MIDI Notes" msgstr "" #: editor.cc:3078 -msgid "Note Level Editing" +msgid "Draw Region Gain" msgstr "" #: editor.cc:3079 +msgid "Select Zoom Range" +msgstr "" + +#: editor.cc:3080 +msgid "Stretch/Shrink Regions and MIDI Notes" +msgstr "" + +#: editor.cc:3081 +msgid "Listen to Specific Regions" +msgstr "" + +#: editor.cc:3082 +msgid "Note Level Editing" +msgstr "" + +#: editor.cc:3083 msgid "" "Groups: click to (de)activate\n" "Context-click for other operations" msgstr "" -#: editor.cc:3082 editor_actions.cc:242 +#: editor.cc:3084 +msgid "Nudge Region/Selection Later" +msgstr "" + +#: editor.cc:3085 +msgid "Nudge Region/Selection Earlier" +msgstr "" + +#: editor.cc:3086 editor_actions.cc:242 msgid "Zoom In" msgstr "Zoom (+)" -#: editor.cc:3083 editor_actions.cc:241 +#: editor.cc:3087 editor_actions.cc:241 msgid "Zoom Out" msgstr "Zoom (-)" -#: editor.cc:3084 editor_actions.cc:243 +#: editor.cc:3088 editor_actions.cc:243 msgid "Zoom to Session" msgstr "Zoom (sessão)" -#: editor.cc:3088 -msgid "Snap/Grid Units" +#: editor.cc:3089 +msgid "Zoom focus" +msgstr "" + +#: editor.cc:3090 +msgid "Expand Tracks" msgstr "" #: editor.cc:3091 +msgid "Shrink Tracks" +msgstr "" + +#: editor.cc:3092 +msgid "Snap/Grid Units" +msgstr "" + +#: editor.cc:3093 +msgid "Snap/Grid Mode" +msgstr "" + +#: editor.cc:3095 msgid "Edit Mode" msgstr "Modo de edição" -#: editor.cc:3092 +#: editor.cc:3096 msgid "" "Nudge Clock\n" "(controls distance used to nudge regions and selections)" msgstr "" -#: editor.cc:3194 +#: editor.cc:3198 msgid "malformed URL passed to drag-n-drop code" msgstr "" -#: editor.cc:3265 editor_actions.cc:292 +#: editor.cc:3260 editor_actions.cc:291 +msgid "Command|Undo" +msgstr "" + +#: editor.cc:3262 +msgid "Command|Undo (%1)" +msgstr "" + +#: editor.cc:3269 editor_actions.cc:292 msgid "Redo" msgstr "Refazer" -#: editor.cc:3267 +#: editor.cc:3271 msgid "Redo (%1)" msgstr "Refazer (%1)" -#: editor.cc:3286 editor.cc:3310 editor_actions.cc:106 editor_actions.cc:1794 +#: editor.cc:3290 editor.cc:3314 editor_actions.cc:106 editor_actions.cc:1794 msgid "Duplicate" msgstr "Duplicar" -#: editor.cc:3287 +#: editor.cc:3291 msgid "Number of duplications:" msgstr "" -#: editor.cc:3877 editor_audio_import.cc:581 editor_ops.cc:5856 -#: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 +#: editor.cc:3868 +msgid "Playlist Deletion" +msgstr "" + +#: editor.cc:3869 +msgid "" +"Playlist %1 is currently unused.\n" +"If it is kept, its audio files will not be cleaned.\n" +"If it is deleted, audio files used by it alone will be cleaned." +msgstr "" + +#: editor.cc:3879 +msgid "Delete Playlist" +msgstr "" + +#: editor.cc:3880 +msgid "Keep Playlist" +msgstr "" + +#: editor.cc:3881 editor_audio_import.cc:581 editor_ops.cc:5856 +#: engine_dialog.cc:1711 sfdb_freesound_mootcher.cc:69 processor_box.cc:2030 +#: processor_box.cc:2055 msgid "Cancel" msgstr "Cancelar" -#: editor.cc:4021 +#: editor.cc:4025 msgid "new playlists" msgstr "nova lista de reprodução" -#: editor.cc:4037 +#: editor.cc:4041 msgid "copy playlists" msgstr "copiar lista de reprodução" -#: editor.cc:4052 +#: editor.cc:4056 msgid "clear playlists" msgstr "apagar lista de reprodução" -#: editor.cc:4687 +#: editor.cc:4691 msgid "Please wait while %1 loads visual data." msgstr "" +#: editor.cc:5496 editor_markers.cc:940 panner_ui.cc:392 processor_box.cc:2292 +msgid "Edit..." +msgstr "" + #: editor_actions.cc:88 msgid "Autoconnect" msgstr "Auto-ligar" @@ -1887,6 +2930,22 @@ msgstr "Auto-ligar" msgid "Crossfades" msgstr "Desvanecimentos cruzados" +#: editor_actions.cc:91 +msgid "Move Selected Marker" +msgstr "" + +#: editor_actions.cc:92 +msgid "Select Range Operations" +msgstr "" + +#: editor_actions.cc:93 +msgid "Select Regions" +msgstr "" + +#: editor_actions.cc:94 +msgid "Edit Point" +msgstr "" + #: editor_actions.cc:95 msgid "Fade" msgstr "Desvanecimento" @@ -1895,6 +2954,10 @@ msgstr "Desvanecimento" msgid "Latch" msgstr "" +#: editor_actions.cc:97 editor_regions.cc:111 region_editor.cc:46 +msgid "Region" +msgstr "" + #: editor_actions.cc:98 msgid "Layering" msgstr "Nivelar" @@ -1904,11 +2967,25 @@ msgstr "Nivelar" msgid "Position" msgstr "Posição" -#: editor_actions.cc:101 gain_meter.cc:121 gain_meter.cc:791 panner_ui.cc:177 -#: panner_ui.cc:586 +#: editor_actions.cc:101 gain_meter.cc:120 gain_meter.cc:794 panner_ui.cc:176 +#: panner_ui.cc:585 msgid "Trim" msgstr "Cortar" +#: editor_actions.cc:102 editor_actions.cc:122 route_group_dialog.cc:40 +msgid "Gain" +msgstr "" + +#: editor_actions.cc:103 editor_actions.cc:538 +msgid "Ranges" +msgstr "" + +#: editor_actions.cc:104 editor_actions.cc:1790 session_option_editor.cc:145 +#: session_option_editor.cc:147 session_option_editor.cc:156 +#: session_option_editor.cc:163 +msgid "Fades" +msgstr "" + #: editor_actions.cc:107 msgid "Link" msgstr "" @@ -1917,6 +2994,14 @@ msgstr "" msgid "Zoom Focus" msgstr "Zoom (focagem)" +#: editor_actions.cc:109 +msgid "Locate to Markers" +msgstr "" + +#: editor_actions.cc:110 editor_actions.cc:539 +msgid "Markers" +msgstr "" + #: editor_actions.cc:111 msgid "Meter falloff" msgstr "VUímetro (decaimento)" @@ -1925,11 +3010,27 @@ msgstr "VUímetro (decaimento)" msgid "Meter hold" msgstr "VUímetro (persistência)" -#: editor_actions.cc:115 rc_option_editor.cc:1460 route_group_dialog.cc:48 +#: editor_actions.cc:113 session_option_editor.cc:234 +msgid "MIDI Options" +msgstr "" + +#: editor_actions.cc:114 +msgid "Misc Options" +msgstr "" + +#: editor_actions.cc:115 rc_option_editor.cc:1450 route_group_dialog.cc:48 #: session_option_editor.cc:218 session_option_editor.cc:225 msgid "Monitoring" msgstr "Monitorização" +#: editor_actions.cc:116 +msgid "Active Mark" +msgstr "" + +#: editor_actions.cc:119 +msgid "Primary Clock" +msgstr "" + #: editor_actions.cc:120 msgid "Pullup / Pulldown" msgstr "" @@ -1942,11 +3043,31 @@ msgstr "Operações em regiões" msgid "Rulers" msgstr "" +#: editor_actions.cc:124 +msgid "Views" +msgstr "" + +#: editor_actions.cc:125 +msgid "Scroll" +msgstr "" + +#: editor_actions.cc:126 +msgid "Secondary Clock" +msgstr "" + +#: editor_actions.cc:129 editor_actions.cc:297 +msgid "Separate" +msgstr "" + #: editor_actions.cc:132 mixer_strip.cc:1914 route_time_axis.cc:208 #: route_time_axis.cc:2417 msgid "Solo" msgstr "" +#: editor_actions.cc:133 +msgid "Subframes" +msgstr "" + #: editor_actions.cc:136 msgid "Timecode fps" msgstr "" @@ -1963,6 +3084,10 @@ msgstr "Ferramentas" msgid "View" msgstr "Ver" +#: editor_actions.cc:142 +msgid "Zoom" +msgstr "" + #: editor_actions.cc:148 msgid "Break drag or deselect all" msgstr "" @@ -1971,6 +3096,26 @@ msgstr "" msgid "Show Editor Mixer" msgstr "Mostrar painel de mistura" +#: editor_actions.cc:151 +msgid "Show Editor List" +msgstr "" + +#: editor_actions.cc:153 +msgid "Playhead to Next Region Boundary" +msgstr "" + +#: editor_actions.cc:154 +msgid "Playhead to Next Region Boundary (No Track Selection)" +msgstr "" + +#: editor_actions.cc:155 +msgid "Playhead to Previous Region Boundary" +msgstr "" + +#: editor_actions.cc:156 +msgid "Playhead to Previous Region Boundary (No Track Selection)" +msgstr "" + #: editor_actions.cc:158 msgid "Playhead to Next Region Start" msgstr "Reprodução ao início da próxima região" @@ -1995,10 +3140,54 @@ msgstr "Reprodução ao final da região anterior" msgid "Playhead to Previous Region Sync" msgstr "Reprodução sincronizada com a região anterior" +#: editor_actions.cc:166 +msgid "To Next Region Boundary" +msgstr "" + #: editor_actions.cc:167 msgid "To Next Region Boundary (No Track Selection)" msgstr "" +#: editor_actions.cc:168 +msgid "To Previous Region Boundary" +msgstr "" + +#: editor_actions.cc:169 +msgid "To Previous Region Boundary (No Track Selection)" +msgstr "" + +#: editor_actions.cc:171 +msgid "To Next Region Start" +msgstr "" + +#: editor_actions.cc:172 +msgid "To Next Region End" +msgstr "" + +#: editor_actions.cc:173 +msgid "To Next Region Sync" +msgstr "" + +#: editor_actions.cc:175 +msgid "To Previous Region Start" +msgstr "" + +#: editor_actions.cc:176 +msgid "To Previous Region End" +msgstr "" + +#: editor_actions.cc:177 +msgid "To Previous Region Sync" +msgstr "" + +#: editor_actions.cc:179 +msgid "To Range Start" +msgstr "" + +#: editor_actions.cc:180 +msgid "To Range End" +msgstr "" + #: editor_actions.cc:182 msgid "Playhead to Range Start" msgstr "Reprodução no início do intervalo" @@ -2007,10 +3196,22 @@ msgstr "Reprodução no início do intervalo" msgid "Playhead to Range End" msgstr "Reprodução no final do intervalo" -#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2239 +#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2278 msgid "Deselect All" msgstr "Seleccionar nenhum" +#: editor_actions.cc:191 +msgid "Select All Overlapping Edit Range" +msgstr "" + +#: editor_actions.cc:192 +msgid "Select All Inside Edit Range" +msgstr "" + +#: editor_actions.cc:194 +msgid "Select Edit Range" +msgstr "" + #: editor_actions.cc:196 msgid "Select All in Punch Range" msgstr "Seleccionar tudo no intervalo de inserção" @@ -2027,14 +3228,98 @@ msgstr "" msgid "Select Previous Track or Bus" msgstr "" +#: editor_actions.cc:202 +msgid "Toggle Record Enable" +msgstr "" + +#: editor_actions.cc:204 +msgid "Toggle Solo" +msgstr "" + +#: editor_actions.cc:206 +msgid "Toggle Mute" +msgstr "" + +#: editor_actions.cc:208 +msgid "Toggle Solo Isolate" +msgstr "" + +#: editor_actions.cc:213 +msgid "Save View %1" +msgstr "" + #: editor_actions.cc:219 msgid "Goto View %1" msgstr "" +#: editor_actions.cc:225 +msgid "Locate to Mark %1" +msgstr "" + +#: editor_actions.cc:229 +msgid "Jump to Next Mark" +msgstr "" + +#: editor_actions.cc:230 +msgid "Jump to Previous Mark" +msgstr "" + +#: editor_actions.cc:231 +msgid "Add Mark from Playhead" +msgstr "" + +#: editor_actions.cc:233 +msgid "Nudge Next Later" +msgstr "" + +#: editor_actions.cc:234 +msgid "Nudge Next Earlier" +msgstr "" + +#: editor_actions.cc:236 +msgid "Nudge Playhead Forward" +msgstr "" + +#: editor_actions.cc:237 +msgid "Nudge Playhead Backward" +msgstr "" + +#: editor_actions.cc:238 +msgid "Playhead To Next Grid" +msgstr "" + +#: editor_actions.cc:239 +msgid "Playhead To Previous Grid" +msgstr "" + +#: editor_actions.cc:244 +msgid "Zoom to Region" +msgstr "" + #: editor_actions.cc:245 msgid "Zoom to Region (Width and Height)" msgstr "" +#: editor_actions.cc:246 +msgid "Toggle Zoom State" +msgstr "" + +#: editor_actions.cc:248 +msgid "Expand Track Height" +msgstr "" + +#: editor_actions.cc:249 +msgid "Shrink Track Height" +msgstr "" + +#: editor_actions.cc:251 +msgid "Move Selected Tracks Up" +msgstr "" + +#: editor_actions.cc:253 +msgid "Move Selected Tracks Down" +msgstr "" + #: editor_actions.cc:256 msgid "Scroll Tracks Up" msgstr "Rolar faixas p/cima" @@ -2063,6 +3348,10 @@ msgstr "Rolar p/frente" msgid "Center Playhead" msgstr "Centrar cursor de reprodução" +#: editor_actions.cc:268 +msgid "Center Edit Point" +msgstr "" + #: editor_actions.cc:270 msgid "Playhead Forward" msgstr "Cursor de reprodução p/frente" @@ -2071,14 +3360,70 @@ msgstr "Cursor de reprodução p/frente" msgid "Playhead Backward" msgstr "Cursor de reprodução p/trás" +#: editor_actions.cc:273 +msgid "Playhead to Active Mark" +msgstr "" + +#: editor_actions.cc:274 +msgid "Active Mark to Playhead" +msgstr "" + +#: editor_actions.cc:276 +msgid "Set Loop from Edit Range" +msgstr "" + +#: editor_actions.cc:277 +msgid "Set Punch from Edit Range" +msgstr "" + +#: editor_actions.cc:280 +msgid "Play Selected Regions" +msgstr "" + +#: editor_actions.cc:282 +msgid "Play from Edit Point and Return" +msgstr "" + +#: editor_actions.cc:284 +msgid "Play Edit Range" +msgstr "" + +#: editor_actions.cc:286 +msgid "Playhead to Mouse" +msgstr "" + +#: editor_actions.cc:287 +msgid "Active Marker to Mouse" +msgstr "" + +#: editor_actions.cc:294 +msgid "Export Audio" +msgstr "" + #: editor_actions.cc:295 export_dialog.cc:406 msgid "Export Range" msgstr "Exportar intervalo" +#: editor_actions.cc:300 +msgid "Separate Using Punch Range" +msgstr "" + +#: editor_actions.cc:303 +msgid "Separate Using Loop Range" +msgstr "" + #: editor_actions.cc:306 editor_actions.cc:323 msgid "Crop" msgstr "" +#: editor_actions.cc:315 +msgid "Set Tempo from Edit Range = Bar" +msgstr "" + +#: editor_actions.cc:317 +msgid "Log" +msgstr "" + #: editor_actions.cc:320 msgid "Move Later to Transient" msgstr "" @@ -2095,6 +3440,10 @@ msgstr "Iniciar intervalo" msgid "Finish Range" msgstr "Finalizar intervalo" +#: editor_actions.cc:327 +msgid "Finish Add Range" +msgstr "" + #: editor_actions.cc:357 msgid "Follow Playhead" msgstr "Seguir o cursor de reprodução" @@ -2103,12 +3452,28 @@ msgstr "Seguir o cursor de reprodução" msgid "Remove Last Capture" msgstr "Remover a última captura" +#: editor_actions.cc:360 +msgid "Stationary Playhead" +msgstr "" + +#: editor_actions.cc:362 insert_time_dialog.cc:32 +msgid "Insert Time" +msgstr "" + +#: editor_actions.cc:365 +msgid "Toggle Active" +msgstr "" + #: editor_actions.cc:370 editor_actions.cc:1716 editor_markers.cc:876 #: editor_markers.cc:941 editor_snapshots.cc:121 mixer_strip.cc:1495 #: route_time_axis.cc:710 msgid "Remove" msgstr "Remover" +#: editor_actions.cc:374 +msgid "Fit Selected Tracks" +msgstr "" + #: editor_actions.cc:376 time_axis_view.cc:1302 msgid "Largest" msgstr "Enorme" @@ -2145,6 +3510,18 @@ msgstr "Zoom (focagem/centro)" msgid "Zoom Focus Playhead" msgstr "Zoom (focagem/reprodução)" +#: editor_actions.cc:401 +msgid "Zoom Focus Mouse" +msgstr "" + +#: editor_actions.cc:402 +msgid "Zoom Focus Edit Point" +msgstr "" + +#: editor_actions.cc:404 +msgid "Next Zoom Focus" +msgstr "" + #: editor_actions.cc:410 msgid "Smart Object Mode" msgstr "" @@ -2161,6 +3538,10 @@ msgstr "Ferramenta/objecto" msgid "Range Tool" msgstr "Ferramenta/intervalo" +#: editor_actions.cc:429 +msgid "Note Drawing Tool" +msgstr "" + #: editor_actions.cc:435 msgid "Gain Tool" msgstr "Ferramenta/ganho" @@ -2169,10 +3550,26 @@ msgstr "Ferramenta/ganho" msgid "Zoom Tool" msgstr "Ferramenta/zoom" +#: editor_actions.cc:447 +msgid "Audition Tool" +msgstr "" + +#: editor_actions.cc:453 +msgid "Time FX Tool" +msgstr "" + #: editor_actions.cc:459 msgid "Step Mouse Mode" msgstr "" +#: editor_actions.cc:461 +msgid "Edit MIDI" +msgstr "" + +#: editor_actions.cc:472 +msgid "Change Edit Point" +msgstr "" + #: editor_actions.cc:473 msgid "Change Edit Point Including Marker" msgstr "" @@ -2190,14 +3587,30 @@ msgstr "Deslizar" msgid "Lock" msgstr "Bloquear" +#: editor_actions.cc:479 +msgid "Toggle Edit Mode" +msgstr "" + +#: editor_actions.cc:481 +msgid "Snap to" +msgstr "" + #: editor_actions.cc:482 msgid "Snap Mode" msgstr "Modo de ajuste" +#: editor_actions.cc:489 +msgid "Next Snap Mode" +msgstr "" + #: editor_actions.cc:490 msgid "Next Snap Choice" msgstr "" +#: editor_actions.cc:491 +msgid "Next Musical Snap Choice" +msgstr "" + #: editor_actions.cc:492 msgid "Previous Snap Choice" msgstr "" @@ -2206,14 +3619,166 @@ msgstr "" msgid "Previous Musical Snap Choice" msgstr "" -#: editor_actions.cc:549 rc_option_editor.cc:1842 +#: editor_actions.cc:498 +msgid "Snap to CD Frame" +msgstr "" + +#: editor_actions.cc:499 +msgid "Snap to Timecode Frame" +msgstr "" + +#: editor_actions.cc:500 +msgid "Snap to Timecode Seconds" +msgstr "" + +#: editor_actions.cc:501 +msgid "Snap to Timecode Minutes" +msgstr "" + +#: editor_actions.cc:502 +msgid "Snap to Seconds" +msgstr "" + +#: editor_actions.cc:503 +msgid "Snap to Minutes" +msgstr "" + +#: editor_actions.cc:505 +msgid "Snap to One Twenty Eighths" +msgstr "" + +#: editor_actions.cc:506 +msgid "Snap to Sixty Fourths" +msgstr "" + +#: editor_actions.cc:507 +msgid "Snap to Thirty Seconds" +msgstr "" + +#: editor_actions.cc:508 +msgid "Snap to Twenty Eighths" +msgstr "" + +#: editor_actions.cc:509 +msgid "Snap to Twenty Fourths" +msgstr "" + +#: editor_actions.cc:510 +msgid "Snap to Twentieths" +msgstr "" + +#: editor_actions.cc:511 +msgid "Snap to Sixteenths" +msgstr "" + +#: editor_actions.cc:512 +msgid "Snap to Fourteenths" +msgstr "" + +#: editor_actions.cc:513 +msgid "Snap to Twelfths" +msgstr "" + +#: editor_actions.cc:514 +msgid "Snap to Tenths" +msgstr "" + +#: editor_actions.cc:515 +msgid "Snap to Eighths" +msgstr "" + +#: editor_actions.cc:516 +msgid "Snap to Sevenths" +msgstr "" + +#: editor_actions.cc:517 +msgid "Snap to Sixths" +msgstr "" + +#: editor_actions.cc:518 +msgid "Snap to Fifths" +msgstr "" + +#: editor_actions.cc:519 +msgid "Snap to Quarters" +msgstr "" + +#: editor_actions.cc:520 +msgid "Snap to Thirds" +msgstr "" + +#: editor_actions.cc:521 +msgid "Snap to Halves" +msgstr "" + +#: editor_actions.cc:523 +msgid "Snap to Beat" +msgstr "" + +#: editor_actions.cc:524 +msgid "Snap to Bar" +msgstr "" + +#: editor_actions.cc:525 +msgid "Snap to Mark" +msgstr "" + +#: editor_actions.cc:526 +msgid "Snap to Region Start" +msgstr "" + +#: editor_actions.cc:527 +msgid "Snap to Region End" +msgstr "" + +#: editor_actions.cc:528 +msgid "Snap to Region Sync" +msgstr "" + +#: editor_actions.cc:529 +msgid "Snap to Region Boundary" +msgstr "" + +#: editor_actions.cc:531 +msgid "Show Marker Lines" +msgstr "" + +#: editor_actions.cc:541 +msgid "Loop/Punch" +msgstr "" + +#: editor_actions.cc:545 +msgid "Min:Sec" +msgstr "" + +#: editor_actions.cc:547 editor_actions.cc:550 +msgid "Video Monitor" +msgstr "" + +#: editor_actions.cc:549 rc_option_editor.cc:1829 msgid "Video" msgstr "" +#: editor_actions.cc:552 +msgid "Always on Top" +msgstr "" + +#: editor_actions.cc:554 +msgid "Frame number" +msgstr "" + +#: editor_actions.cc:555 +msgid "Timecode Background" +msgstr "" + #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" +#: editor_actions.cc:557 +msgid "Letterbox" +msgstr "" + #: editor_actions.cc:558 msgid "Original Size" msgstr "" @@ -2230,6 +3795,10 @@ msgstr "Audição" msgid "Show All" msgstr "Mostrar tudo" +#: editor_actions.cc:620 +msgid "Show Automatic Regions" +msgstr "" + #: editor_actions.cc:622 msgid "Ascending" msgstr "Crescente" @@ -2278,12 +3847,28 @@ msgstr "Por data de criação do ficheiro original" msgid "By Source Filesystem" msgstr "Por sistema de ficheiros original" +#: editor_actions.cc:648 +msgid "Remove Unused" +msgstr "" + #: editor_actions.cc:652 editor_audio_import.cc:279 #: session_import_dialog.cc:74 session_import_dialog.cc:94 #: session_metadata_dialog.cc:297 editor_videotimeline.cc:108 msgid "Import" msgstr "Importar" +#: editor_actions.cc:655 +msgid "Import to Region List..." +msgstr "" + +#: editor_actions.cc:658 session_import_dialog.cc:43 +msgid "Import From Session" +msgstr "" + +#: editor_actions.cc:661 +msgid "Show Summary" +msgstr "" + #: editor_actions.cc:663 msgid "Show Group Tabs" msgstr "" @@ -2292,6 +3877,10 @@ msgstr "" msgid "Show Measures" msgstr "Mostrar linhas de tempo" +#: editor_actions.cc:669 +msgid "Show Logo" +msgstr "" + #: editor_actions.cc:673 msgid "Toggle MIDI Input Active for Editor-Selected Tracks/Busses" msgstr "" @@ -2314,10 +3903,22 @@ msgstr "" msgid "Raise" msgstr "" +#: editor_actions.cc:1725 +msgid "Raise to Top" +msgstr "" + #: editor_actions.cc:1728 gtk-custom-ruler.c:132 msgid "Lower" msgstr "Inferior" +#: editor_actions.cc:1731 +msgid "Lower to Bottom" +msgstr "" + +#: editor_actions.cc:1734 +msgid "Move to Original Position" +msgstr "" + #: editor_actions.cc:1739 msgid "Lock to Video" msgstr "" @@ -2326,14 +3927,26 @@ msgstr "" msgid "Glue to Bars and Beats" msgstr "" +#: editor_actions.cc:1749 +msgid "Remove Sync" +msgstr "" + #: editor_actions.cc:1752 mixer_strip.cc:1904 route_time_axis.cc:209 msgid "Mute" msgstr "Mudo" +#: editor_actions.cc:1755 +msgid "Normalize..." +msgstr "" + #: editor_actions.cc:1758 msgid "Reverse" msgstr "Inverter" +#: editor_actions.cc:1761 +msgid "Make Mono Regions" +msgstr "" + #: editor_actions.cc:1764 msgid "Boost Gain" msgstr "" @@ -2346,6 +3959,14 @@ msgstr "" msgid "Pitch Shift..." msgstr "" +#: editor_actions.cc:1773 +msgid "Transpose..." +msgstr "" + +#: editor_actions.cc:1776 +msgid "Opaque" +msgstr "" + #: editor_actions.cc:1780 editor_regions.cc:116 msgid "Fade In" msgstr "Evanescimento" @@ -2354,6 +3975,10 @@ msgstr "Evanescimento" msgid "Fade Out" msgstr "Desvanecimento" +#: editor_actions.cc:1800 +msgid "Multi-Duplicate..." +msgstr "" + #: editor_actions.cc:1805 msgid "Fill Track" msgstr "Preencher faixa" @@ -2362,10 +3987,58 @@ msgstr "Preencher faixa" msgid "Set Loop Range" msgstr "Estabelecer intervalo cíclico" +#: editor_actions.cc:1816 +msgid "Set Punch" +msgstr "" + +#: editor_actions.cc:1820 +msgid "Add Single Range Marker" +msgstr "" + +#: editor_actions.cc:1825 +msgid "Add Range Marker Per Region" +msgstr "" + +#: editor_actions.cc:1829 +msgid "Snap Position To Grid" +msgstr "" + +#: editor_actions.cc:1832 +msgid "Close Gaps" +msgstr "" + #: editor_actions.cc:1835 msgid "Rhythm Ferret..." msgstr "" +#: editor_actions.cc:1838 +msgid "Export..." +msgstr "" + +#: editor_actions.cc:1844 +msgid "Separate Under" +msgstr "" + +#: editor_actions.cc:1848 +msgid "Set Fade In Length" +msgstr "" + +#: editor_actions.cc:1849 +msgid "Set Fade Out Length" +msgstr "" + +#: editor_actions.cc:1850 +msgid "Set Tempo from Region = Bar" +msgstr "" + +#: editor_actions.cc:1855 +msgid "Split at Percussion Onsets" +msgstr "" + +#: editor_actions.cc:1860 +msgid "List Editor..." +msgstr "" + #: editor_actions.cc:1863 msgid "Properties..." msgstr "" @@ -2390,6 +4063,22 @@ msgstr "" msgid "Spectral Analysis..." msgstr "" +#: editor_actions.cc:1874 +msgid "Reset Envelope" +msgstr "" + +#: editor_actions.cc:1876 +msgid "Reset Gain" +msgstr "" + +#: editor_actions.cc:1881 +msgid "Envelope Active" +msgstr "" + +#: editor_actions.cc:1885 +msgid "Quantize..." +msgstr "" + #: editor_actions.cc:1886 editor_actions.cc:1887 msgid "Insert Patch Change..." msgstr "" @@ -2402,6 +4091,26 @@ msgstr "" msgid "Strip Silence..." msgstr "" +#: editor_actions.cc:1890 +msgid "Set Range Selection" +msgstr "" + +#: editor_actions.cc:1892 +msgid "Nudge Later" +msgstr "" + +#: editor_actions.cc:1893 +msgid "Nudge Earlier" +msgstr "" + +#: editor_actions.cc:1898 +msgid "Nudge Later by Capture Offset" +msgstr "" + +#: editor_actions.cc:1905 +msgid "Nudge Earlier by Capture Offset" +msgstr "" + #: editor_actions.cc:1909 msgid "Trim to Loop" msgstr "" @@ -2410,6 +4119,22 @@ msgstr "" msgid "Trim to Punch" msgstr "" +#: editor_actions.cc:1912 +msgid "Trim to Previous" +msgstr "" + +#: editor_actions.cc:1913 +msgid "Trim to Next" +msgstr "" + +#: editor_actions.cc:1920 +msgid "Insert Region From Region List" +msgstr "" + +#: editor_actions.cc:1926 +msgid "Set Sync Position" +msgstr "" + #: editor_actions.cc:1927 msgid "Place Transient" msgstr "" @@ -2426,6 +4151,30 @@ msgstr "" msgid "Trim End at Edit Point" msgstr "" +#: editor_actions.cc:1935 +msgid "Align Start" +msgstr "" + +#: editor_actions.cc:1942 +msgid "Align Start Relative" +msgstr "" + +#: editor_actions.cc:1946 +msgid "Align End" +msgstr "" + +#: editor_actions.cc:1951 +msgid "Align End Relative" +msgstr "" + +#: editor_actions.cc:1958 +msgid "Align Sync" +msgstr "" + +#: editor_actions.cc:1965 +msgid "Align Sync Relative" +msgstr "" + #: editor_actions.cc:1969 editor_actions.cc:1972 msgid "Choose Top..." msgstr "" @@ -2435,6 +4184,10 @@ msgid "You can't import or embed an audiofile until you have a session loaded." msgstr "" "Não é possível importar um ficheiro audio sem que haja uma sessão carregada" +#: editor_audio_import.cc:83 editor_audio_import.cc:127 +msgid "Add Existing Media" +msgstr "" + #: editor_audio_import.cc:177 msgid "" "The session already contains a source file named %1. Do you want to import " @@ -2467,6 +4220,11 @@ msgstr "Não acrescentar" msgid "Embed all without questions" msgstr "Acrescentar sem qualquer questão" +#: editor_audio_import.cc:556 editor_audio_import.cc:585 +#: export_format_dialog.cc:58 +msgid "Sample rate" +msgstr "" + #: editor_audio_import.cc:557 editor_audio_import.cc:586 msgid "" "%1\n" @@ -2479,6 +4237,14 @@ msgstr "" msgid "Embed it anyway" msgstr "Acrescentar de qualquer forma" +#: editor_drag.cc:1000 +msgid "fixed time region drag" +msgstr "" + +#: editor_drag.cc:1700 +msgid "Video Start:" +msgstr "" + #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -2503,50 +4269,94 @@ msgstr "copiar marcador de tempo" msgid "move tempo mark" msgstr "mover marcador de tempo" -#: editor_drag.cc:2545 +#: editor_drag.cc:2550 msgid "change fade in length" msgstr "alterar duração de evanescimento" -#: editor_drag.cc:2663 +#: editor_drag.cc:2668 msgid "change fade out length" msgstr "alterar duração de desvanecimento" -#: editor_drag.cc:3018 +#: editor_drag.cc:3023 msgid "move marker" msgstr "mover marcador" -#: editor_drag.cc:3581 +#: editor_drag.cc:3586 msgid "An error occurred while executing time stretch operation" msgstr "" -#: editor_drag.cc:4011 +#: editor_drag.cc:4016 msgid "programming_error: %1" msgstr "" -#: editor_drag.cc:4081 editor_markers.cc:680 +#: editor_drag.cc:4086 editor_markers.cc:680 msgid "new range marker" msgstr "novo marcador de região" +#: editor_drag.cc:4767 +msgid "rubberband selection" +msgstr "" + +#: editor_route_groups.cc:66 +msgid "No Selection = All Tracks?" +msgstr "" + +#: editor_route_groups.cc:95 +msgid "Col" +msgstr "" + +#: editor_route_groups.cc:95 +msgid "Group Tab Color" +msgstr "" + +#: editor_route_groups.cc:96 +msgid "Name of Group" +msgstr "" + #: editor_route_groups.cc:97 editor_routes.cc:203 msgid "V" msgstr "" +#: editor_route_groups.cc:97 +msgid "Group is visible?" +msgstr "" + +#: editor_route_groups.cc:98 +msgid "On" +msgstr "" + #: editor_route_groups.cc:98 msgid "Group is enabled?" msgstr "" +#: editor_route_groups.cc:99 +msgid "group|G" +msgstr "" + #: editor_route_groups.cc:99 msgid "Sharing Gain?" msgstr "" +#: editor_route_groups.cc:100 +msgid "relative|Rel" +msgstr "" + #: editor_route_groups.cc:100 msgid "Relative Gain Changes?" msgstr "" +#: editor_route_groups.cc:101 +msgid "mute|M" +msgstr "" + #: editor_route_groups.cc:101 msgid "Sharing Mute?" msgstr "" +#: editor_route_groups.cc:102 +msgid "solo|S" +msgstr "" + #: editor_route_groups.cc:102 msgid "Sharing Solo?" msgstr "" @@ -2560,6 +4370,26 @@ msgstr "" msgid "Sharing Record-enable Status?" msgstr "" +#: editor_route_groups.cc:104 +msgid "monitoring|Mon" +msgstr "" + +#: editor_route_groups.cc:104 +msgid "Sharing Monitoring Choice?" +msgstr "" + +#: editor_route_groups.cc:105 +msgid "selection|Sel" +msgstr "" + +#: editor_route_groups.cc:105 +msgid "Sharing Selected/Editing Status?" +msgstr "" + +#: editor_route_groups.cc:106 +msgid "active|A" +msgstr "" + #: editor_route_groups.cc:106 msgid "Sharing Active Status?" msgstr "" @@ -2577,8 +4407,8 @@ msgstr "sem nome" #: editor_markers.cc:1022 editor_markers.cc:1041 editor_markers.cc:1071 #: editor_markers.cc:1102 editor_markers.cc:1132 editor_markers.cc:1160 #: editor_markers.cc:1191 editor_markers.cc:1216 editor_markers.cc:1267 -#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1514 -#: editor_mouse.cc:2478 +#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1526 +#: editor_mouse.cc:2528 msgid "programming error: marker canvas item has no marker object pointer!" msgstr "" @@ -2586,19 +4416,79 @@ msgstr "" msgid "File Exists!" msgstr "" +#: editor_export_audio.cc:151 +msgid "Overwrite Existing File" +msgstr "" + +#: editor_group_tabs.cc:162 +msgid "Fit to Window" +msgstr "" + +#: editor_markers.cc:129 +msgid "start" +msgstr "" + +#: editor_markers.cc:130 +msgid "end" +msgstr "" + #: editor_markers.cc:646 editor_ops.cc:1744 editor_ops.cc:1764 #: editor_ops.cc:1788 editor_ops.cc:1815 location_ui.cc:1017 msgid "add marker" msgstr "acrescentar marcador" +#: editor_markers.cc:677 +msgid "range" +msgstr "" + #: editor_markers.cc:713 location_ui.cc:852 msgid "remove marker" msgstr "remover marcador" +#: editor_markers.cc:849 +msgid "Locate to Here" +msgstr "" + +#: editor_markers.cc:850 +msgid "Play from Here" +msgstr "" + +#: editor_markers.cc:851 +msgid "Move Mark to Playhead" +msgstr "" + +#: editor_markers.cc:855 +msgid "Create Range to Next Marker" +msgstr "" + +#: editor_markers.cc:896 +msgid "Locate to Marker" +msgstr "" + +#: editor_markers.cc:897 +msgid "Play from Marker" +msgstr "" + +#: editor_markers.cc:900 +msgid "Set Marker from Playhead" +msgstr "" + +#: editor_markers.cc:902 +msgid "Set Range from Selection" +msgstr "" + +#: editor_markers.cc:905 +msgid "Zoom to Range" +msgstr "" + #: editor_markers.cc:912 msgid "Hide Range" msgstr "Esconder intervalo" +#: editor_markers.cc:913 +msgid "Rename Range..." +msgstr "" + #: editor_markers.cc:917 msgid "Remove Range" msgstr "Remover intervalo" @@ -2607,36 +4497,40 @@ msgstr "Remover intervalo" msgid "Separate Regions in Range" msgstr "Separar regiões no intervalo" +#: editor_markers.cc:927 +msgid "Select Range" +msgstr "" + #: editor_markers.cc:956 msgid "Set Punch Range" msgstr "Estabelecer intervalo de inserção" -#: editor_markers.cc:1351 editor_ops.cc:1699 +#: editor_markers.cc:1362 editor_ops.cc:1699 msgid "New Name:" msgstr "Novo nome: " -#: editor_markers.cc:1354 +#: editor_markers.cc:1365 msgid "Rename Mark" msgstr "Renomear marcador" -#: editor_markers.cc:1356 +#: editor_markers.cc:1367 msgid "Rename Range" msgstr "Renomear intervalo" -#: editor_markers.cc:1363 editor_mouse.cc:2510 processor_box.cc:1781 -#: processor_box.cc:2235 route_time_axis.cc:982 route_ui.cc:1540 +#: editor_markers.cc:1374 editor_mouse.cc:2560 processor_box.cc:1808 +#: processor_box.cc:2274 route_time_axis.cc:982 route_ui.cc:1540 msgid "Rename" msgstr "Renomear" -#: editor_markers.cc:1376 +#: editor_markers.cc:1387 msgid "rename marker" msgstr "remover marcador" -#: editor_markers.cc:1399 +#: editor_markers.cc:1411 msgid "set loop range" msgstr "estabelcer intervalo cíclico" -#: editor_markers.cc:1405 +#: editor_markers.cc:1417 msgid "set punch range" msgstr "estabelecer intervalo de inserção" @@ -2648,17 +4542,21 @@ msgstr "" msgid "Editor::event_frame() used on unhandled event type %1" msgstr "" -#: editor_mouse.cc:2235 editor_mouse.cc:2260 editor_mouse.cc:2273 +#: editor_mouse.cc:2285 editor_mouse.cc:2310 editor_mouse.cc:2323 msgid "" "programming error: control point canvas item has no control point object " "pointer!" msgstr "" -#: editor_mouse.cc:2441 +#: editor_mouse.cc:2466 +msgid "start point trim" +msgstr "" + +#: editor_mouse.cc:2491 msgid "End point trim" msgstr "Ponto final de corte" -#: editor_mouse.cc:2508 +#: editor_mouse.cc:2558 msgid "Name for region:" msgstr "Nome para a região:" @@ -2666,14 +4564,42 @@ msgstr "Nome para a região:" msgid "split" msgstr "separar" +#: editor_ops.cc:256 +msgid "alter selection" +msgstr "" + +#: editor_ops.cc:298 +msgid "nudge regions forward" +msgstr "" + +#: editor_ops.cc:321 editor_ops.cc:406 +msgid "nudge location forward" +msgstr "" + +#: editor_ops.cc:379 +msgid "nudge regions backward" +msgstr "" + #: editor_ops.cc:468 msgid "nudge forward" msgstr "retocar p/frente" +#: editor_ops.cc:492 +msgid "nudge backward" +msgstr "" + #: editor_ops.cc:557 msgid "build_region_boundary_cache called with snap_type = %1" msgstr "" +#: editor_ops.cc:1701 +msgid "New Location Marker" +msgstr "" + +#: editor_ops.cc:1788 +msgid "add markers" +msgstr "" + #: editor_ops.cc:1894 msgid "clear markers" msgstr "apagar marcadores" @@ -2694,14 +4620,70 @@ msgstr "inserir região arrastada" msgid "insert region" msgstr "inserir região" +#: editor_ops.cc:2261 +msgid "raise regions" +msgstr "" + +#: editor_ops.cc:2263 +msgid "raise region" +msgstr "" + +#: editor_ops.cc:2269 +msgid "raise regions to top" +msgstr "" + +#: editor_ops.cc:2271 +msgid "raise region to top" +msgstr "" + +#: editor_ops.cc:2277 +msgid "lower regions" +msgstr "" + +#: editor_ops.cc:2279 editor_ops.cc:2287 +msgid "lower region" +msgstr "" + +#: editor_ops.cc:2285 +msgid "lower regions to bottom" +msgstr "" + +#: editor_ops.cc:2370 +msgid "Rename Region" +msgstr "" + +#: editor_ops.cc:2372 processor_box.cc:1806 route_ui.cc:1538 +msgid "New name:" +msgstr "" + #: editor_ops.cc:2682 msgid "separate" msgstr "separar" +#: editor_ops.cc:2795 +msgid "separate region under" +msgstr "" + #: editor_ops.cc:2916 msgid "trim to selection" msgstr "cortar pela selecção" +#: editor_ops.cc:3052 +msgid "set sync point" +msgstr "" + +#: editor_ops.cc:3076 +msgid "remove region sync" +msgstr "" + +#: editor_ops.cc:3098 +msgid "move regions to original position" +msgstr "" + +#: editor_ops.cc:3100 +msgid "move region to original position" +msgstr "" + #: editor_ops.cc:3121 msgid "align selection" msgstr "alinhar selecção" @@ -2714,6 +4696,26 @@ msgstr "alinhar selecção (relativamente)" msgid "align region" msgstr "alinhar região" +#: editor_ops.cc:3280 +msgid "trim front" +msgstr "" + +#: editor_ops.cc:3280 +msgid "trim back" +msgstr "" + +#: editor_ops.cc:3310 +msgid "trim to loop" +msgstr "" + +#: editor_ops.cc:3320 +msgid "trim to punch" +msgstr "" + +#: editor_ops.cc:3382 +msgid "trim to region" +msgstr "" + #: editor_ops.cc:3492 msgid "" "This track/bus cannot be frozen because the signal adds or loses channels " @@ -2722,6 +4724,10 @@ msgid "" "input or vice versa." msgstr "" +#: editor_ops.cc:3495 +msgid "Cannot freeze" +msgstr "" + #: editor_ops.cc:3501 msgid "" "%1\n" @@ -2731,6 +4737,18 @@ msgid "" "Freezing will only process the signal as far as the first send/insert/return." msgstr "" +#: editor_ops.cc:3505 +msgid "Freeze anyway" +msgstr "" + +#: editor_ops.cc:3506 +msgid "Don't freeze" +msgstr "" + +#: editor_ops.cc:3507 +msgid "Freeze Limits" +msgstr "" + #: editor_ops.cc:3522 msgid "Cancel Freeze" msgstr "Cancelar congelamento" @@ -2752,6 +4770,10 @@ msgstr "" msgid "bounce range" msgstr "regravar região" +#: editor_ops.cc:3678 +msgid "delete" +msgstr "" + #: editor_ops.cc:3681 msgid "cut" msgstr "corte" @@ -2801,6 +4823,10 @@ msgstr "Não, não fazer nada." msgid "Yes, destroy it." msgstr "Sim, elimine-a." +#: editor_ops.cc:4512 +msgid "Destroy last capture" +msgstr "" + #: editor_ops.cc:4573 msgid "normalize" msgstr "normalizar" @@ -2813,6 +4839,86 @@ msgstr "inverter regiões" msgid "strip silence" msgstr "" +#: editor_ops.cc:4763 +msgid "Fork Region(s)" +msgstr "" + +#: editor_ops.cc:4963 +msgid "reset region gain" +msgstr "" + +#: editor_ops.cc:5016 +msgid "region gain envelope active" +msgstr "" + +#: editor_ops.cc:5043 +msgid "toggle region lock" +msgstr "" + +#: editor_ops.cc:5067 +msgid "Toggle Video Lock" +msgstr "" + +#: editor_ops.cc:5091 +msgid "region lock style" +msgstr "" + +#: editor_ops.cc:5116 +msgid "change region opacity" +msgstr "" + +#: editor_ops.cc:5231 +msgid "set fade in length" +msgstr "" + +#: editor_ops.cc:5238 +msgid "set fade out length" +msgstr "" + +#: editor_ops.cc:5283 +msgid "set fade in shape" +msgstr "" + +#: editor_ops.cc:5314 +msgid "set fade out shape" +msgstr "" + +#: editor_ops.cc:5344 +msgid "set fade in active" +msgstr "" + +#: editor_ops.cc:5373 +msgid "set fade out active" +msgstr "" + +#: editor_ops.cc:5638 +msgid "set loop range from selection" +msgstr "" + +#: editor_ops.cc:5660 +msgid "set loop range from edit range" +msgstr "" + +#: editor_ops.cc:5689 +msgid "set loop range from region" +msgstr "" + +#: editor_ops.cc:5707 +msgid "set punch range from selection" +msgstr "" + +#: editor_ops.cc:5724 +msgid "set punch range from edit range" +msgstr "" + +#: editor_ops.cc:5748 +msgid "set punch range from region" +msgstr "" + +#: editor_ops.cc:5857 +msgid "Add new marker" +msgstr "" + #: editor_ops.cc:5858 msgid "Set global tempo" msgstr "" @@ -2825,6 +4931,14 @@ msgstr "" msgid "Do you want to set the global tempo or add a new tempo marker?" msgstr "" +#: editor_ops.cc:5888 +msgid "set tempo from region" +msgstr "" + +#: editor_ops.cc:5918 +msgid "split regions" +msgstr "" + #: editor_ops.cc:5960 msgid "" "You are about to split\n" @@ -2855,6 +4969,18 @@ msgstr "" msgid "place transient" msgstr "" +#: editor_ops.cc:6160 +msgid "snap regions to grid" +msgstr "" + +#: editor_ops.cc:6199 +msgid "Close Region Gaps" +msgstr "" + +#: editor_ops.cc:6204 +msgid "Crossfade length" +msgstr "" + #: editor_ops.cc:6213 editor_ops.cc:6224 rhythm_ferret.cc:120 #: session_option_editor.cc:153 msgid "ms" @@ -2868,6 +4994,10 @@ msgstr "" msgid "Ok" msgstr "" +#: editor_ops.cc:6243 +msgid "close region gaps" +msgstr "" + #: editor_ops.cc:6461 route_ui.cc:1456 msgid "That would be bad news ...." msgstr "" @@ -2882,14 +5012,61 @@ msgid "" "\"allow-special-bus-removal\" option to be \"yes\"" msgstr "" -#: editor_ops.cc:6491 route_ui.cc:1822 +#: editor_ops.cc:6483 +msgid "tracks" +msgstr "" + +#: editor_ops.cc:6485 route_ui.cc:1821 +msgid "track" +msgstr "" + +#: editor_ops.cc:6489 +msgid "busses" +msgstr "" + +#: editor_ops.cc:6491 route_ui.cc:1821 msgid "bus" msgstr "" +#: editor_ops.cc:6496 +msgid "" +"Do you really want to remove %1 %2 and %3 %4?\n" +"(You may also lose the playlists associated with the %2)\n" +"\n" +"This action cannot be undone, and the session file will be overwritten!" +msgstr "" + +#: editor_ops.cc:6501 +msgid "" +"Do you really want to remove %1 %2?\n" +"(You may also lose the playlists associated with the %2)\n" +"\n" +"This action cannot be undone, and the session file will be overwritten!" +msgstr "" + +#: editor_ops.cc:6507 +msgid "" +"Do you really want to remove %1 %2?\n" +"\n" +"This action cannot be undon, and the session file will be overwritten" +msgstr "" + +#: editor_ops.cc:6514 +msgid "Yes, remove them." +msgstr "" + #: editor_ops.cc:6516 editor_snapshots.cc:159 route_ui.cc:1483 msgid "Yes, remove it." msgstr "Sim, remover." +#: editor_ops.cc:6521 editor_ops.cc:6523 +msgid "Remove %1" +msgstr "" + +#: editor_ops.cc:6582 +msgid "insert time" +msgstr "" + #: editor_ops.cc:6739 msgid "There are too many tracks to fit in the current window" msgstr "" @@ -2899,14 +5076,42 @@ msgstr "" msgid "Saved view %u" msgstr "" +#: editor_ops.cc:6864 +msgid "mute regions" +msgstr "" + #: editor_ops.cc:6866 msgid "mute region" msgstr "emudecer região" +#: editor_ops.cc:6903 +msgid "combine regions" +msgstr "" + +#: editor_ops.cc:6941 +msgid "uncombine regions" +msgstr "" + #: editor_regions.cc:111 msgid "Region name, with number of channels in []'s" msgstr "" +#: editor_regions.cc:112 +msgid "Position of start of region" +msgstr "" + +#: editor_regions.cc:113 editor_regions.cc:849 time_info_box.cc:98 +msgid "End" +msgstr "" + +#: editor_regions.cc:113 +msgid "Position of end of region" +msgstr "" + +#: editor_regions.cc:114 +msgid "Length of the region" +msgstr "" + #: editor_regions.cc:115 msgid "Position of region sync point, relative to start of the region" msgstr "" @@ -2924,16 +5129,28 @@ msgstr "" msgid "L" msgstr "" +#: editor_regions.cc:118 +msgid "Region position locked?" +msgstr "" + +#: editor_regions.cc:119 +msgid "G" +msgstr "" + #: editor_regions.cc:119 msgid "Region position glued to Bars|Beats time?" msgstr "" -#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:759 -#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:554 +#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:762 +#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:553 #: stereo_panner.cc:237 msgid "M" msgstr "" +#: editor_regions.cc:120 +msgid "Region muted?" +msgstr "" + #: editor_regions.cc:121 msgid "O" msgstr "" @@ -2950,10 +5167,28 @@ msgstr "Escondida" msgid "(MISSING) " msgstr "" +#: editor_regions.cc:457 +msgid "" +"Do you really want to remove unused regions?\n" +"(This is destructive and cannot be undone)" +msgstr "" + +#: editor_regions.cc:461 +msgid "Yes, remove." +msgstr "" + +#: editor_regions.cc:463 +msgid "Remove unused regions" +msgstr "" + #: editor_regions.cc:816 editor_regions.cc:830 editor_regions.cc:844 msgid "Mult." msgstr "" +#: editor_regions.cc:847 midi_list_editor.cc:103 time_info_box.cc:91 +msgid "Start" +msgstr "" + #: editor_regions.cc:865 editor_regions.cc:881 msgid "Multiple" msgstr "" @@ -2966,24 +5201,64 @@ msgstr "" msgid "SS" msgstr "" +#: editor_routes.cc:202 +msgid "Track/Bus Name" +msgstr "" + +#: editor_routes.cc:203 +msgid "Track/Bus visible ?" +msgstr "" + #: editor_routes.cc:204 mixer_strip.cc:1945 meter_strip.cc:334 #: route_time_axis.cc:2407 msgid "A" msgstr "" +#: editor_routes.cc:204 +msgid "Track/Bus active ?" +msgstr "" + #: editor_routes.cc:205 mixer_strip.cc:1932 msgid "I" msgstr "E" +#: editor_routes.cc:205 +msgid "MIDI input enabled" +msgstr "" + #: editor_routes.cc:206 mixer_strip.cc:1930 mono_panner.cc:198 #: stereo_panner.cc:215 stereo_panner.cc:242 msgid "R" msgstr "" +#: editor_routes.cc:206 +msgid "Record enabled" +msgstr "" + +#: editor_routes.cc:207 +msgid "Muted" +msgstr "" + #: editor_routes.cc:208 mixer_strip.cc:1941 meter_strip.cc:330 msgid "S" msgstr "" +#: editor_routes.cc:208 +msgid "Soloed" +msgstr "" + +#: editor_routes.cc:209 +msgid "SI" +msgstr "" + +#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1867 +msgid "Solo Isolated" +msgstr "" + +#: editor_routes.cc:210 +msgid "Solo Safe (Locked)" +msgstr "" + #: editor_routes.cc:471 mixer_ui.cc:1162 msgid "Hide All" msgstr "Esconder tudo" @@ -3004,6 +5279,14 @@ msgstr "Mostrar todos os barramentos audio" msgid "Hide All Audio Busses" msgstr "Esconder todos os barramentos audio" +#: editor_routes.cc:476 +msgid "Show All Midi Tracks" +msgstr "" + +#: editor_routes.cc:477 +msgid "Hide All Midi Tracks" +msgstr "" + #: editor_routes.cc:478 msgid "Show Tracks With Regions Under Playhead" msgstr "" @@ -3016,10 +5299,26 @@ msgstr "Novo marcador de localização" msgid "Clear all locations" msgstr "Apagar todas as localizações" +#: editor_rulers.cc:342 +msgid "Unhide locations" +msgstr "" + +#: editor_rulers.cc:346 +msgid "New range" +msgstr "" + #: editor_rulers.cc:347 msgid "Clear all ranges" msgstr "Apagar todos os intervalos" +#: editor_rulers.cc:348 +msgid "Unhide ranges" +msgstr "" + +#: editor_rulers.cc:358 +msgid "New CD track marker" +msgstr "" + #: editor_rulers.cc:363 tempo_dialog.cc:40 msgid "New Tempo" msgstr "Novo tempo" @@ -3032,6 +5331,10 @@ msgstr "Novo VUímetro" msgid "Timeline height" msgstr "" +#: editor_rulers.cc:383 +msgid "Align Video Track" +msgstr "" + #: editor_selection.cc:889 editor_selection.cc:932 msgid "set selected regions" msgstr "seleccionar regiões" @@ -3068,6 +5371,14 @@ msgstr "seleccionar tudo após o cursor" msgid "select all before cursor" msgstr "seleccionar tudo anterior ao cursor" +#: editor_selection.cc:1753 +msgid "select all after edit" +msgstr "" + +#: editor_selection.cc:1755 +msgid "select all before edit" +msgstr "" + #: editor_selection.cc:1888 msgid "No edit range defined" msgstr "" @@ -3078,6 +5389,24 @@ msgid "" "but there is no selected marker." msgstr "" +#: editor_snapshots.cc:136 +msgid "Rename Snapshot" +msgstr "" + +#: editor_snapshots.cc:138 +msgid "New name of snapshot" +msgstr "" + +#: editor_snapshots.cc:156 +msgid "" +"Do you really want to remove snapshot \"%1\" ?\n" +"(which cannot be undone)" +msgstr "" + +#: editor_snapshots.cc:161 +msgid "Remove snapshot" +msgstr "" + #: editor_tempodisplay.cc:208 editor_tempodisplay.cc:250 msgid "add" msgstr "acrescentar" @@ -3121,6 +5450,10 @@ msgid "" "programming error: meter marker canvas item has no marker object pointer!" msgstr "" +#: editor_timefx.cc:68 +msgid "stretch/shrink" +msgstr "" + #: editor_timefx.cc:129 msgid "pitch shift" msgstr "" @@ -3129,188 +5462,231 @@ msgstr "" msgid "timefx cannot be started - thread creation error" msgstr "" -#: engine_dialog.cc:75 -msgid "Realtime" -msgstr "" - -#: engine_dialog.cc:76 -msgid "Do not lock memory" -msgstr "" - -#: engine_dialog.cc:78 -msgid "No zombies" -msgstr "" - #: engine_dialog.cc:79 -msgid "Provide monitor ports" +msgid "Device Control Panel" msgstr "" -#: engine_dialog.cc:80 -msgid "Force 16 bit" +#: engine_dialog.cc:80 engine_dialog.cc:1725 +msgid "Measure" msgstr "" -#: engine_dialog.cc:103 -msgid "8000Hz" +#: engine_dialog.cc:81 +msgid "Use results" msgstr "" -#: engine_dialog.cc:104 -msgid "22050Hz" +#: engine_dialog.cc:82 +msgid "Back to settings ... (ignore results)" msgstr "" -#: engine_dialog.cc:105 -msgid "44100Hz" +#: engine_dialog.cc:83 +msgid "Calibrate..." msgstr "" -#: engine_dialog.cc:106 -msgid "48000Hz" +#: engine_dialog.cc:87 +msgid "Refresh list" msgstr "" #: engine_dialog.cc:107 -msgid "88200Hz" +msgid "" +"No audio/MIDI backends detected. %1 cannot run\n" +"\n" +"(This is a build/packaging/system error. It should never happen.)" msgstr "" -#: engine_dialog.cc:108 -msgid "96000Hz" +#: engine_dialog.cc:136 +msgid "Latency Measurement Tool" msgstr "" -#: engine_dialog.cc:109 -msgid "192000Hz" +#: engine_dialog.cc:151 +msgid "" +"Turn down the volume on your audio equipment to a very " +"low level." msgstr "" -#: engine_dialog.cc:127 engine_dialog.cc:132 engine_dialog.cc:169 -#: engine_dialog.cc:562 midi_channel_selector.cc:163 -#: midi_channel_selector.cc:402 midi_channel_selector.cc:438 -#: rc_option_editor.cc:1250 sfdb_ui.cc:538 -msgid "None" -msgstr "Nenhum" - -#: engine_dialog.cc:128 engine_dialog.cc:563 -msgid "Triangular" +#: engine_dialog.cc:159 +msgid "Select two channels below and connect them using a cable." msgstr "" -#: engine_dialog.cc:129 engine_dialog.cc:565 -msgid "Rectangular" +#: engine_dialog.cc:164 +msgid "Output channel" msgstr "" -#: engine_dialog.cc:158 engine_dialog.cc:483 engine_dialog.cc:974 -msgid "Playback/recording on 1 device" +#: engine_dialog.cc:172 +msgid "Input channel" msgstr "" -#: engine_dialog.cc:159 engine_dialog.cc:487 engine_dialog.cc:540 -#: engine_dialog.cc:977 -msgid "Playback/recording on 2 devices" +#: engine_dialog.cc:207 +msgid "Once the channels are connected, click the \"Measure\" button." msgstr "" -#: engine_dialog.cc:160 engine_dialog.cc:503 engine_dialog.cc:980 -msgid "Playback only" +#: engine_dialog.cc:214 +msgid "When satisfied with the results, click the \"Use results\" button." msgstr "" -#: engine_dialog.cc:171 engine_dialog.cc:448 -msgid "coremidi" +#: engine_dialog.cc:229 engine_dialog.cc:1727 +msgid "No measurement results yet" msgstr "" -#: engine_dialog.cc:173 engine_dialog.cc:581 -msgid "seq" +#: engine_dialog.cc:238 route_params_ui.cc:105 +msgid "Latency" +msgstr "Latência" + +#: engine_dialog.cc:333 +msgid "Audio System:" msgstr "" -#: engine_dialog.cc:181 +#: engine_dialog.cc:374 msgid "Driver:" msgstr "" -#: engine_dialog.cc:196 +#: engine_dialog.cc:380 +msgid "Device:" +msgstr "" + +#: engine_dialog.cc:385 engine_dialog.cc:475 sfdb_ui.cc:147 sfdb_ui.cc:260 +#: sfdb_ui.cc:265 +msgid "Sample rate:" +msgstr "" + +#: engine_dialog.cc:391 engine_dialog.cc:482 msgid "Buffer size:" msgstr "" -#: engine_dialog.cc:202 -msgid "Number of buffers:" +#: engine_dialog.cc:404 +msgid "Input Channels:" msgstr "" -#: engine_dialog.cc:209 -msgid "Approximate latency:" +#: engine_dialog.cc:415 +msgid "Output Channels:" msgstr "" -#: engine_dialog.cc:284 engine_dialog.cc:408 -msgid "Ignore" +#: engine_dialog.cc:426 +msgid "Hardware input latency:" msgstr "" -#: engine_dialog.cc:292 -msgid "Client timeout" +#: engine_dialog.cc:429 engine_dialog.cc:442 +msgid "samples" msgstr "" -#: engine_dialog.cc:299 -msgid "Number of ports:" +#: engine_dialog.cc:439 +msgid "Hardware output latency:" msgstr "" -#: engine_dialog.cc:304 -msgid "MIDI driver:" +#: engine_dialog.cc:450 +msgid "MIDI System" msgstr "" -#: engine_dialog.cc:319 +#: engine_dialog.cc:467 msgid "" -"No JACK server found anywhere on this system. Please install JACK and restart" +"The %1 audio backend was configured and started externally.\n" +"This limits your control over it." msgstr "" -#: engine_dialog.cc:327 -msgid "Server:" -msgstr "" - -#: engine_dialog.cc:339 -msgid "Input device:" -msgstr "" - -#: engine_dialog.cc:368 -msgid "Device" -msgstr "" - -#: engine_dialog.cc:653 -msgid "cannot open JACK rc file %1 to store parameters" -msgstr "" - -#: engine_dialog.cc:787 +#: engine_dialog.cc:521 msgid "" -"You do not have any audio devices capable of\n" -"simultaneous playback and recording.\n" +"Your selected audio configuration is playback- or capture-only.\n" "\n" -"Please use Applications -> Utilities -> Audio MIDI Setup\n" -"to create an \"aggregrate\" device, or install a suitable\n" -"audio interface.\n" -"\n" -"Please send email to Apple and ask them why new Macs\n" -"have no duplex audio device.\n" -"\n" -"Alternatively, if you really want just playback\n" -"or recording but not both, start JACK before running\n" -"%1 and choose the relevant device then." +"Latency calibration requires playback and capture" msgstr "" -#: engine_dialog.cc:800 -msgid "No suitable audio devices" +#: engine_dialog.cc:595 +msgid "MIDI Inputs" msgstr "" -#: engine_dialog.cc:1017 -msgid "JACK appears to be missing from the %1 bundle" +#: engine_dialog.cc:612 +msgid "MIDI Outputs" msgstr "" -#: engine_dialog.cc:1087 -msgid "You need to choose an audio device first." +#: engine_dialog.cc:696 +msgid "all available channels" msgstr "" -#: engine_dialog.cc:1104 -msgid "Audio device \"%1\" not known on this computer." +#: engine_dialog.cc:890 +#, c-format +msgid "%u samples" msgstr "" -#: engine_dialog.cc:1256 -msgid "AudioSetup value for %1 is missing data" +#: engine_dialog.cc:941 +#, c-format +msgid "(%.1f msecs)" msgstr "" -#: engine_dialog.cc:1335 -msgid "configuration files contain a JACK server path that doesn't exist (%1)" +#: engine_dialog.cc:1389 +msgid "Cannot set driver to %1" +msgstr "" + +#: engine_dialog.cc:1393 +msgid "Cannot set device name to %1" +msgstr "" + +#: engine_dialog.cc:1397 +msgid "Cannot set sample rate to %1" +msgstr "" + +#: engine_dialog.cc:1401 +msgid "Cannot set buffer size to %1" +msgstr "" + +#: engine_dialog.cc:1407 +msgid "Cannot set input channels to %1" +msgstr "" + +#: engine_dialog.cc:1411 +msgid "Cannot set output channels to %1" +msgstr "" + +#: engine_dialog.cc:1417 +msgid "Cannot set input latency to %1" +msgstr "" + +#: engine_dialog.cc:1421 +msgid "Cannot set output latency to %1" +msgstr "" + +#: engine_dialog.cc:1654 +msgid "No signal detected " +msgstr "" + +#: engine_dialog.cc:1667 port_insert_ui.cc:71 port_insert_ui.cc:99 +msgid "Disconnected from audio engine" +msgstr "" + +#: engine_dialog.cc:1681 +msgid "(signal detection error)" +msgstr "" + +#: engine_dialog.cc:1687 +msgid "(inverted - bad wiring)" +msgstr "" + +#: engine_dialog.cc:1697 +msgid "Detected roundtrip latency: %1" +msgstr "" + +#: engine_dialog.cc:1709 port_insert_ui.cc:135 +msgid "Detecting ..." +msgstr "" + +#: engine_dialog.cc:1789 +msgid "Disconnect from %1" +msgstr "" + +#: engine_dialog.cc:1801 +msgid "Connect to %1" +msgstr "" + +#: export_channel_selector.cc:45 sfdb_ui.cc:145 +msgid "Channels:" msgstr "" #: export_channel_selector.cc:46 msgid "Split to mono files" msgstr "" +#: export_channel_selector.cc:182 +msgid "Bus or Track" +msgstr "" + #: export_channel_selector.cc:459 msgid "Region contents without fades nor region gain (channels: %1)" msgstr "" @@ -3323,12 +5699,29 @@ msgstr "" msgid "Track output (channels: %1)" msgstr "" +#: export_channel_selector.cc:536 +msgid "Export region contents" +msgstr "" + +#: export_channel_selector.cc:537 +msgid "Export track output" +msgstr "" + #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten." msgstr "" +#: export_dialog.cc:47 +msgid "List files" +msgstr "" + +#: export_dialog.cc:164 export_timespan_selector.cc:355 +#: export_timespan_selector.cc:417 +msgid "Time Span" +msgstr "" + #: export_dialog.cc:176 msgid "Channels" msgstr "Canais" @@ -3351,6 +5744,10 @@ msgstr "" msgid "Stop Export" msgstr "Cancelar exportação" +#: export_dialog.cc:337 +msgid "export" +msgstr "" + #: export_dialog.cc:356 msgid "Normalizing '%3' (timespan %1 of %2)" msgstr "" @@ -3373,10 +5770,26 @@ msgid "" "Warning: " msgstr "" +#: export_dialog.cc:420 +msgid "Export Selection" +msgstr "" + +#: export_dialog.cc:433 +msgid "Export Region" +msgstr "" + #: export_dialog.cc:443 msgid "Source" msgstr "" +#: export_dialog.cc:458 +msgid "Stem Export" +msgstr "" + +#: export_file_notebook.cc:38 +msgid "Add another format" +msgstr "" + #: export_file_notebook.cc:178 msgid "Format" msgstr "Formato" @@ -3385,14 +5798,34 @@ msgstr "Formato" msgid "Location" msgstr "Localização" +#: export_file_notebook.cc:255 +msgid "No format!" +msgstr "" + +#: export_file_notebook.cc:267 +msgid "Format %1: %2" +msgstr "" + #: export_filename_selector.cc:32 msgid "Label:" msgstr "" +#: export_filename_selector.cc:33 +msgid "Session Name" +msgstr "" + +#: export_filename_selector.cc:34 +msgid "Revision:" +msgstr "" + +#: export_filename_selector.cc:36 +msgid "Folder:" +msgstr "" + #: export_filename_selector.cc:37 session_import_dialog.cc:44 -#: transcode_video_dialog.cc:59 video_server_dialog.cc:45 -#: video_server_dialog.cc:47 export_video_dialog.cc:69 -#: export_video_dialog.cc:71 +#: transcode_video_dialog.cc:58 video_server_dialog.cc:45 +#: video_server_dialog.cc:47 export_video_dialog.cc:68 +#: export_video_dialog.cc:70 msgid "Browse" msgstr "Pesquisar" @@ -3420,14 +5853,34 @@ msgstr "" msgid "Choose export folder" msgstr "" +#: export_format_dialog.cc:31 +msgid "New Export Format Profile" +msgstr "" + +#: export_format_dialog.cc:31 +msgid "Edit Export Format Profile" +msgstr "" + #: export_format_dialog.cc:38 msgid "Label: " msgstr "" +#: export_format_dialog.cc:41 normalize_dialog.cc:42 +msgid "Normalize to:" +msgstr "" + +#: export_format_dialog.cc:46 +msgid "Trim silence at start" +msgstr "" + #: export_format_dialog.cc:47 msgid "Add silence at start:" msgstr "" +#: export_format_dialog.cc:50 +msgid "Trim silence at end" +msgstr "" + #: export_format_dialog.cc:51 msgid "Add silence at end:" msgstr "" @@ -3440,6 +5893,18 @@ msgstr "" msgid "Quality" msgstr "" +#: export_format_dialog.cc:57 +msgid "File format" +msgstr "" + +#: export_format_dialog.cc:59 +msgid "Sample rate conversion quality:" +msgstr "" + +#: export_format_dialog.cc:66 +msgid "Dithering" +msgstr "" + #: export_format_dialog.cc:68 msgid "Create CUE file for disk-at-once CD/DVD creation" msgstr "" @@ -3456,16 +5921,52 @@ msgstr "" msgid "Best (sinc)" msgstr "" +#: export_format_dialog.cc:466 +msgid "Medium (sinc)" +msgstr "" + #: export_format_dialog.cc:471 msgid "Fast (sinc)" msgstr "" +#: export_format_dialog.cc:481 +msgid "Zero order hold" +msgstr "" + +#: export_format_dialog.cc:879 +msgid "Linear encoding options" +msgstr "" + +#: export_format_dialog.cc:895 +msgid "Ogg Vorbis options" +msgstr "" + +#: export_format_dialog.cc:908 +msgid "FLAC options" +msgstr "" + +#: export_format_dialog.cc:925 +msgid "Broadcast Wave options" +msgstr "" + +#: export_format_selector.cc:136 +msgid "Do you really want to remove the format?" +msgstr "" + +#: export_preset_selector.cc:28 +msgid "Preset" +msgstr "" + #: export_preset_selector.cc:104 msgid "" "The selected preset did not load successfully!\n" "Perhaps it references a format that has been removed?" msgstr "" +#: export_preset_selector.cc:156 +msgid "Do you really want to remove this preset?" +msgstr "" + #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "" @@ -3474,6 +5975,10 @@ msgstr "" msgid " to " msgstr "" +#: export_timespan_selector.cc:348 export_timespan_selector.cc:407 +msgid "Range" +msgstr "" + #: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 msgid "curl error %1 (%2)" msgstr "" @@ -3490,69 +5995,86 @@ msgstr "" msgid "%1" msgstr "" -#: gain_meter.cc:106 gain_meter.cc:357 gain_meter.cc:462 gain_meter.cc:856 +#: gain_meter.cc:105 gain_meter.cc:360 gain_meter.cc:465 gain_meter.cc:859 msgid "-inf" msgstr "" -#: gain_meter.cc:112 gain_meter.cc:913 +#: gain_meter.cc:111 gain_meter.cc:916 msgid "Fader automation mode" msgstr "Modo de automatizaçã" -#: gain_meter.cc:113 gain_meter.cc:914 +#: gain_meter.cc:112 gain_meter.cc:917 msgid "Fader automation type" msgstr "Tipo de automatização" -#: gain_meter.cc:122 gain_meter.cc:795 panner_ui.cc:178 panner_ui.cc:590 +#: gain_meter.cc:121 gain_meter.cc:798 panner_ui.cc:177 panner_ui.cc:589 msgid "Abs" msgstr "" -#: gain_meter.cc:762 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:557 +#: gain_meter.cc:765 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:556 #: route_time_axis.cc:2411 msgid "P" msgstr "" -#: gain_meter.cc:765 panner_ui.cc:560 +#: gain_meter.cc:768 panner_ui.cc:559 msgid "T" msgstr "" -#: gain_meter.cc:768 panner_ui.cc:563 +#: gain_meter.cc:771 panner_ui.cc:562 msgid "W" msgstr "" -#: generic_pluginui.cc:83 +#: generic_pluginui.cc:81 msgid "Presets" msgstr "Parametrizações" -#: generic_pluginui.cc:232 +#: generic_pluginui.cc:230 msgid "Switches" msgstr "" -#: generic_pluginui.cc:242 generic_pluginui.cc:376 processor_box.cc:2212 +#: generic_pluginui.cc:240 generic_pluginui.cc:374 processor_box.cc:2251 msgid "Controls" msgstr "Controlos" -#: generic_pluginui.cc:270 +#: generic_pluginui.cc:268 msgid "Plugin Editor: could not build control element for port %1" msgstr "" "Editor de efeitos/plug-ins: não foi possível criar elemento de controlo para " "%1" -#: generic_pluginui.cc:423 +#: generic_pluginui.cc:406 +msgid "Meters" +msgstr "" + +#: generic_pluginui.cc:421 msgid "Automation control" msgstr "Controlo de automatização" -#: generic_pluginui.cc:430 +#: generic_pluginui.cc:428 msgid "Mgnual" msgstr "" -#: global_port_matrix.cc:164 +#: global_port_matrix.cc:157 msgid "Audio Connection Manager" msgstr "" -#: global_port_matrix.cc:213 io_selector.cc:216 +#: global_port_matrix.cc:160 +msgid "MIDI Connection Manager" +msgstr "" + +#: global_port_matrix.cc:200 io_selector.cc:210 mixer_strip.cc:719 +#: mixer_strip.cc:845 +msgid "Disconnect" +msgstr "Desligar" + +#: global_port_matrix.cc:206 io_selector.cc:216 msgid "port" msgstr "porto" +#: group_tabs.cc:308 +msgid "Selection..." +msgstr "" + #: group_tabs.cc:309 msgid "Record Enabled..." msgstr "" @@ -3561,18 +6083,50 @@ msgstr "" msgid "Soloed..." msgstr "" +#: group_tabs.cc:316 +msgid "Create New Group ..." +msgstr "" + #: group_tabs.cc:317 msgid "Create New Group From" msgstr "" +#: group_tabs.cc:320 +msgid "Edit Group..." +msgstr "" + +#: group_tabs.cc:321 +msgid "Collect Group" +msgstr "" + +#: group_tabs.cc:322 +msgid "Remove Group" +msgstr "" + +#: group_tabs.cc:325 +msgid "Remove Subgroup Bus" +msgstr "" + +#: group_tabs.cc:327 +msgid "Add New Subgroup Bus" +msgstr "" + #: group_tabs.cc:329 msgid "Add New Aux Bus (pre-fader)" msgstr "" +#: group_tabs.cc:330 +msgid "Add New Aux Bus (post-fader)" +msgstr "" + #: group_tabs.cc:336 msgid "Enable All Groups" msgstr "" +#: group_tabs.cc:337 +msgid "Disable All Groups" +msgstr "" + #: gtk-custom-ruler.c:133 msgid "Lower limit of ruler" msgstr "Limite inferior da régua" @@ -3609,20 +6163,60 @@ msgstr "Visualizar posição corrente da régua" msgid "Time to insert:" msgstr "" +#: insert_time_dialog.cc:54 +msgid "Intersected regions should:" +msgstr "" + +#: insert_time_dialog.cc:57 +msgid "stay in position" +msgstr "" + +#: insert_time_dialog.cc:58 +msgid "move" +msgstr "" + +#: insert_time_dialog.cc:59 +msgid "be split" +msgstr "" + #: insert_time_dialog.cc:65 msgid "Insert time on all the track's playlists" msgstr "" +#: insert_time_dialog.cc:68 +msgid "Move glued regions" +msgstr "" + +#: insert_time_dialog.cc:70 +msgid "Move markers" +msgstr "" + +#: insert_time_dialog.cc:73 +msgid "Move glued markers" +msgstr "" + +#: insert_time_dialog.cc:78 +msgid "Move locked markers" +msgstr "" + #: insert_time_dialog.cc:83 msgid "" "Move tempo and meter changes\n" "(may cause oddities in the tempo map)" msgstr "" +#: insert_time_dialog.cc:91 +msgid "Insert time" +msgstr "" + #: interthread_progress_window.cc:103 msgid "Importing file: %1 of %2" msgstr "" +#: io_selector.cc:220 +msgid "I/O selector" +msgstr "" + #: io_selector.cc:265 msgid "%1 input" msgstr "%1 entrada" @@ -3643,6 +6237,18 @@ msgstr "" msgid "Key bindings file \"%1\" not found. Default bindings used instead" msgstr "" +#: keyeditor.cc:54 +msgid "Remove shortcut" +msgstr "" + +#: keyeditor.cc:64 +msgid "Action" +msgstr "" + +#: keyeditor.cc:65 +msgid "Shortcut" +msgstr "" + #: keyeditor.cc:86 msgid "Select an action, then press the key(s) to (re)set its shortcut" msgstr "" @@ -3651,11 +6257,41 @@ msgstr "" msgid "Main_menu" msgstr "" +#: keyeditor.cc:253 +msgid "redirectmenu" +msgstr "" + +#: keyeditor.cc:255 +msgid "Editor_menus" +msgstr "" + +#: keyeditor.cc:257 +msgid "RegionList" +msgstr "" + +#: keyeditor.cc:259 +msgid "ProcessorMenu" +msgstr "" + +#: latency_gui.cc:39 +msgid "sample" +msgstr "" + +#: latency_gui.cc:40 +msgid "msec" +msgstr "" + #: latency_gui.cc:41 msgid "period" msgstr "" -#: latency_gui.cc:72 panner_ui.cc:392 +#: latency_gui.cc:55 +msgid "%1 sample" +msgid_plural "%1 samples" +msgstr[0] "" +msgstr[1] "" + +#: latency_gui.cc:72 panner_ui.cc:391 msgid "Reset" msgstr "Reiniciar" @@ -3663,6 +6299,10 @@ msgstr "Reiniciar" msgid "programming error: %1 (%2)" msgstr "" +#: location_ui.cc:50 location_ui.cc:52 +msgid "Use PH" +msgstr "" + #: location_ui.cc:54 msgid "CD" msgstr "" @@ -3683,6 +6323,10 @@ msgstr "" msgid "Pre-Emphasis" msgstr "Pré-êmfase" +#: location_ui.cc:314 +msgid "Remove this range" +msgstr "" + #: location_ui.cc:315 msgid "Start time - middle click to locate here" msgstr "" @@ -3691,14 +6335,42 @@ msgstr "" msgid "End time - middle click to locate here" msgstr "" +#: location_ui.cc:319 +msgid "Set range start from playhead location" +msgstr "" + +#: location_ui.cc:320 +msgid "Set range end from playhead location" +msgstr "" + +#: location_ui.cc:324 +msgid "Remove this marker" +msgstr "" + #: location_ui.cc:325 msgid "Position - middle click to locate here" msgstr "" +#: location_ui.cc:327 +msgid "Set marker time from playhead location" +msgstr "" + #: location_ui.cc:494 msgid "You cannot put a CD marker at the start of the session" msgstr "" +#: location_ui.cc:720 +msgid "New Marker" +msgstr "" + +#: location_ui.cc:721 +msgid "New Range" +msgstr "" + +#: location_ui.cc:734 +msgid "Loop/Punch Ranges" +msgstr "" + #: location_ui.cc:759 msgid "Markers (Including CD Index)" msgstr "" @@ -3711,75 +6383,104 @@ msgstr "" msgid "add range marker" msgstr "acrescentar marcador de região" -#: main.cc:235 main.cc:358 +#: main.cc:81 +msgid "%1 could not connect to the audio backend." +msgstr "" + +#: main.cc:194 main.cc:315 +msgid "cannot create user %3 folder %1 (%2)" +msgstr "" + +#: main.cc:201 main.cc:322 +msgid "cannot open pango.rc file %1" +msgstr "" + +#: main.cc:226 main.cc:349 msgid "Cannot find ArdourMono TrueType font" msgstr "" -#: main.cc:247 main.cc:364 +#: main.cc:238 main.cc:355 msgid "Cannot load ArdourMono TrueType font." msgstr "" -#: main.cc:312 +#: main.cc:303 msgid "" "No fontconfig file found on your system. Things may looked very odd or ugly" msgstr "" -#: main.cc:368 +#: main.cc:359 msgid "Failed to set fontconfig configuration." msgstr "" -#: main.cc:379 main.cc:395 -msgid "JACK exited" +#: main.cc:370 main.cc:386 +msgid "The audio backend (%1) has failed, or terminated" msgstr "" -#: main.cc:382 +#: main.cc:373 msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" +"%2 exited unexpectedly, and without notifying %1.\n" "\n" -"This could be due to misconfiguration or to an error inside JACK.\n" +"This could be due to misconfiguration or to an error inside %2.\n" "\n" "Click OK to exit %1." msgstr "" -#: main.cc:397 -msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" -"\n" -"This is probably due to an error inside JACK. You should restart JACK\n" -"and reconnect %1 to it, or exit %1 now. You cannot save your\n" -"session at this time, because we would lose your connection information.\n" +#: main.cc:387 +msgid "%2 exited unexpectedly, and without notifying %1." msgstr "" -#: main.cc:487 +#: main.cc:474 msgid " (built using " msgstr " (compilado " -#: main.cc:490 +#: main.cc:477 msgid " and GCC version " msgstr " e versão GCC " -#: main.cc:500 +#: main.cc:487 msgid "Copyright (C) 1999-2012 Paul Davis" msgstr "" -#: main.cc:504 +#: main.cc:488 +msgid "" +"Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " +"Baker, Robin Gareus" +msgstr "" + +#: main.cc:490 +msgid "%1 comes with ABSOLUTELY NO WARRANTY" +msgstr "" + +#: main.cc:491 msgid "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." msgstr "nem mesmo para COMERCIALIZAÇÃO ou INDICADO PARA UM FIM PARTICULAR." -#: main.cc:505 +#: main.cc:492 msgid "This is free software, and you are welcome to redistribute it " msgstr "Sendo software livre, é permitida e até encorajada a sua distribuição " -#: main.cc:506 +#: main.cc:493 msgid "under certain conditions; see the source for copying conditions." msgstr "" "desde que sejam respeitadas algumas condições; para mais informações, por " "favor leia o ficheiro COPYING." -#: main.cc:522 +#: main.cc:500 +msgid "could not initialize %1." +msgstr "" + +#: main.cc:509 msgid "Cannot xinstall SIGPIPE error handler" msgstr "" +#: main.cc:515 +msgid "could not create %1 GUI" +msgstr "" + +#: main_clock.cc:51 +msgid "Display delta to edit cursor" +msgstr "" + #: marker.cc:251 video_image_frame.cc:121 msgid "MarkerText" msgstr "Marcadores" @@ -3789,6 +6490,11 @@ msgstr "Marcadores" msgid "All" msgstr "" +#: midi_channel_selector.cc:163 midi_channel_selector.cc:402 +#: midi_channel_selector.cc:438 rc_option_editor.cc:1248 sfdb_ui.cc:538 +msgid "None" +msgstr "Nenhum" + #: midi_channel_selector.cc:167 midi_channel_selector.cc:407 #: midi_channel_selector.cc:443 msgid "Invert" @@ -3798,10 +6504,38 @@ msgstr "Inverter" msgid "Force" msgstr "" +#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 +msgid "MIDI Channel Control" +msgstr "" + +#: midi_channel_selector.cc:332 +msgid "Playback all channels" +msgstr "" + +#: midi_channel_selector.cc:333 +msgid "Play only selected channels" +msgstr "" + #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" +#: midi_channel_selector.cc:335 +msgid "Record all channels" +msgstr "" + +#: midi_channel_selector.cc:336 +msgid "Record only selected channels" +msgstr "" + +#: midi_channel_selector.cc:337 +msgid "Force all channels to 1 channel" +msgstr "" + +#: midi_channel_selector.cc:378 +msgid "Inbound" +msgstr "" + #: midi_channel_selector.cc:398 msgid "Click to enable recording all channels" msgstr "" @@ -3814,6 +6548,10 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" +#: midi_channel_selector.cc:415 +msgid "Playback" +msgstr "" + #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -3858,6 +6596,22 @@ msgstr "" msgid "Triplet" msgstr "" +#: midi_list_editor.cc:58 +msgid "Quarter" +msgstr "" + +#: midi_list_editor.cc:59 +msgid "Eighth" +msgstr "" + +#: midi_list_editor.cc:60 +msgid "Sixteenth" +msgstr "" + +#: midi_list_editor.cc:61 +msgid "Thirty-second" +msgstr "" + #: midi_list_editor.cc:62 msgid "Sixty-fourth" msgstr "" @@ -3870,14 +6624,74 @@ msgstr "" msgid "Vel" msgstr "" +#: midi_list_editor.cc:215 +msgid "edit note start" +msgstr "" + +#: midi_list_editor.cc:224 +msgid "edit note channel" +msgstr "" + +#: midi_list_editor.cc:234 +msgid "edit note number" +msgstr "" + +#: midi_list_editor.cc:244 +msgid "edit note velocity" +msgstr "" + +#: midi_list_editor.cc:258 +msgid "edit note length" +msgstr "" + +#: midi_list_editor.cc:460 +msgid "insert new note" +msgstr "" + +#: midi_list_editor.cc:524 +msgid "delete notes (from list)" +msgstr "" + +#: midi_list_editor.cc:599 +msgid "change note channel" +msgstr "" + +#: midi_list_editor.cc:607 +msgid "change note number" +msgstr "" + +#: midi_list_editor.cc:617 +msgid "change note velocity" +msgstr "" + +#: midi_list_editor.cc:687 +msgid "change note length" +msgstr "" + +#: midi_port_dialog.cc:39 +msgid "Add MIDI Port" +msgstr "" + +#: midi_port_dialog.cc:40 +msgid "Port name:" +msgstr "" + #: midi_port_dialog.cc:45 msgid "MidiPortDialog" msgstr "" +#: midi_region_view.cc:838 +msgid "channel edit" +msgstr "" + #: midi_region_view.cc:874 msgid "velocity edit" msgstr "" +#: midi_region_view.cc:931 +msgid "add note" +msgstr "" + #: midi_region_view.cc:1779 msgid "step add" msgstr "" @@ -3886,14 +6700,58 @@ msgstr "" msgid "insane MIDI patch key %1:%2" msgstr "" +#: midi_region_view.cc:1870 midi_region_view.cc:1890 +msgid "alter patch change" +msgstr "" + #: midi_region_view.cc:1924 msgid "add patch change" msgstr "" +#: midi_region_view.cc:1942 +msgid "move patch change" +msgstr "" + +#: midi_region_view.cc:1953 +msgid "delete patch change" +msgstr "" + +#: midi_region_view.cc:2022 +msgid "delete selection" +msgstr "" + +#: midi_region_view.cc:2038 +msgid "delete note" +msgstr "" + +#: midi_region_view.cc:2425 +msgid "move notes" +msgstr "" + #: midi_region_view.cc:2647 msgid "resize notes" msgstr "" +#: midi_region_view.cc:2901 +msgid "change velocities" +msgstr "" + +#: midi_region_view.cc:2967 +msgid "transpose" +msgstr "" + +#: midi_region_view.cc:3001 +msgid "change note lengths" +msgstr "" + +#: midi_region_view.cc:3070 +msgid "nudge" +msgstr "" + +#: midi_region_view.cc:3085 +msgid "change channel" +msgstr "" + #: midi_region_view.cc:3130 msgid "Bank " msgstr "" @@ -3902,18 +6760,62 @@ msgstr "" msgid "Program " msgstr "" +#: midi_region_view.cc:3132 +msgid "Channel " +msgstr "" + #: midi_region_view.cc:3301 midi_region_view.cc:3303 msgid "paste" msgstr "colar" +#: midi_region_view.cc:3761 +msgid "delete sysex" +msgstr "" + +#: midi_streamview.cc:479 +msgid "failed to create MIDI region" +msgstr "" + #: midi_time_axis.cc:262 msgid "External MIDI Device" msgstr "" +#: midi_time_axis.cc:263 +msgid "External Device Mode" +msgstr "" + #: midi_time_axis.cc:271 msgid "Chns" msgstr "" +#: midi_time_axis.cc:272 +msgid "Click to edit channel settings" +msgstr "" + +#: midi_time_axis.cc:486 +msgid "Show Full Range" +msgstr "" + +#: midi_time_axis.cc:491 +msgid "Fit Contents" +msgstr "" + +#: midi_time_axis.cc:495 +msgid "Note Range" +msgstr "" + +#: midi_time_axis.cc:496 +msgid "Note Mode" +msgstr "" + +#: midi_time_axis.cc:497 +msgid "Channel Selector" +msgstr "" + +#: midi_time_axis.cc:502 +msgid "Color Mode" +msgstr "" + #: midi_time_axis.cc:561 msgid "Bender" msgstr "" @@ -3922,6 +6824,34 @@ msgstr "" msgid "Pressure" msgstr "" +#: midi_time_axis.cc:578 +msgid "Controllers" +msgstr "" + +#: midi_time_axis.cc:583 +msgid "No MIDI Channels selected" +msgstr "" + +#: midi_time_axis.cc:640 midi_time_axis.cc:769 +msgid "Hide all channels" +msgstr "" + +#: midi_time_axis.cc:644 midi_time_axis.cc:773 +msgid "Show all channels" +msgstr "" + +#: midi_time_axis.cc:655 midi_time_axis.cc:784 +msgid "Channel %1" +msgstr "" + +#: midi_time_axis.cc:910 midi_time_axis.cc:942 +msgid "Controllers %1-%2" +msgstr "" + +#: midi_time_axis.cc:933 midi_time_axis.cc:936 +msgid "Controller %1" +msgstr "" + #: midi_time_axis.cc:959 msgid "Sustained" msgstr "" @@ -3930,30 +6860,75 @@ msgstr "" msgid "Percussive" msgstr "" +#: midi_time_axis.cc:986 +msgid "Meter Colors" +msgstr "" + +#: midi_time_axis.cc:993 +msgid "Channel Colors" +msgstr "" + +#: midi_time_axis.cc:1000 +msgid "Track Color" +msgstr "" + +#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 +#: midi_time_axis.cc:1510 +msgid "all" +msgstr "" + #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" -#: midi_tracer.cc:43 +#: midi_tracer.cc:46 msgid "Line history: " msgstr "" -#: midi_tracer.cc:51 +#: midi_tracer.cc:54 msgid "Auto-Scroll" msgstr "" -#: midi_tracer.cc:52 +#: midi_tracer.cc:55 msgid "Decimal" msgstr "" +#: midi_tracer.cc:56 rc_option_editor.cc:657 +msgid "Enabled" +msgstr "" + +#: midi_tracer.cc:57 +msgid "Delta times" +msgstr "" + +#: midi_tracer.cc:70 +msgid "Port:" +msgstr "" + +#: midi_velocity_dialog.cc:31 +msgid "New velocity" +msgstr "" + #: missing_file_dialog.cc:34 msgid "Missing File!" msgstr "" +#: missing_file_dialog.cc:36 +msgid "Select a folder to search" +msgstr "" + #: missing_file_dialog.cc:37 msgid "Add chosen folder to search path, and try again" msgstr "" +#: missing_file_dialog.cc:39 +msgid "Stop loading this session" +msgstr "" + +#: missing_file_dialog.cc:40 +msgid "Skip all missing files" +msgstr "" + #: missing_file_dialog.cc:41 msgid "Skip this file" msgstr "" @@ -3978,7 +6953,11 @@ msgstr "" msgid "Click to choose an additional folder" msgstr "" -#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 +#: missing_plugin_dialog.cc:29 +msgid "Missing Plugins" +msgstr "" + +#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:59 msgid "OK" msgstr "" @@ -4006,6 +6985,34 @@ msgstr "" msgid "Set Gain to 0dB on Mixer-Selected Tracks/Busses" msgstr "" +#: mixer_actor.cc:63 +msgid "Copy Selected Processors" +msgstr "" + +#: mixer_actor.cc:64 +msgid "Cut Selected Processors" +msgstr "" + +#: mixer_actor.cc:65 +msgid "Paste Selected Processors" +msgstr "" + +#: mixer_actor.cc:66 +msgid "Delete Selected Processors" +msgstr "" + +#: mixer_actor.cc:67 +msgid "Select All (visible) Processors" +msgstr "" + +#: mixer_actor.cc:68 +msgid "Toggle Selected Processors" +msgstr "" + +#: mixer_actor.cc:69 +msgid "Toggle Selected Plugins" +msgstr "" + #: mixer_actor.cc:72 mixer_actor.cc:73 msgid "Scroll Mixer Window to the left" msgstr "" @@ -4026,6 +7033,11 @@ msgstr "" msgid "pre" msgstr "" +#: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 +#: rc_option_editor.cc:1868 +msgid "Comments" +msgstr "" + #: mixer_strip.cc:147 msgid "Click to toggle the width of this mixer strip." msgstr "" @@ -4036,6 +7048,14 @@ msgid "" "%1-%2-click to toggle the width of all strips." msgstr "" +#: mixer_strip.cc:156 +msgid "Hide this mixer strip" +msgstr "" + +#: mixer_strip.cc:167 +msgid "Click to select metering point" +msgstr "" + #: mixer_strip.cc:173 msgid "tupni" msgstr "adartne" @@ -4052,13 +7072,47 @@ msgstr "" msgid "lock" msgstr "bloquear" +#: mixer_strip.cc:204 mixer_strip.cc:1925 +msgid "iso" +msgstr "" + +#: mixer_strip.cc:258 +msgid "Mix group" +msgstr "" + +#: mixer_strip.cc:351 rc_option_editor.cc:1865 +msgid "Phase Invert" +msgstr "" + +#: mixer_strip.cc:352 rc_option_editor.cc:1866 route_ui.cc:1218 +msgid "Solo Safe" +msgstr "" + #: mixer_strip.cc:355 mixer_ui.cc:124 route_time_axis.cc:673 msgid "Group" msgstr "Grupo" -#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 -msgid "Not connected to JACK - no I/O changes are possible" -msgstr "Desligado do JACK - não são possíveis alterações nas entradas/saídas" +#: mixer_strip.cc:356 rc_option_editor.cc:1869 +msgid "Meter Point" +msgstr "" + +#: mixer_strip.cc:470 +msgid "Enable/Disable MIDI input" +msgstr "" + +#: mixer_strip.cc:622 +msgid "" +"Aux\n" +"Sends" +msgstr "" + +#: mixer_strip.cc:646 +msgid "Snd" +msgstr "" + +#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2193 +msgid "Not connected to audio engine - no I/O changes are possible" +msgstr "" #: mixer_strip.cc:1096 msgid "INPUT to %1" @@ -4068,10 +7122,18 @@ msgstr "" msgid "OUTPUT from %1" msgstr "" +#: mixer_strip.cc:1174 +msgid "Disconnected" +msgstr "" + #: mixer_strip.cc:1303 msgid "*Comments*" msgstr "*Comentários*" +#: mixer_strip.cc:1310 +msgid "Cmt" +msgstr "" + #: mixer_strip.cc:1313 msgid "*Cmt*" msgstr "" @@ -4092,6 +7154,14 @@ msgstr "" msgid "~G" msgstr "" +#: mixer_strip.cc:1467 +msgid "Comments..." +msgstr "" + +#: mixer_strip.cc:1469 +msgid "Save As Template..." +msgstr "" + #: mixer_strip.cc:1475 route_group_dialog.cc:39 route_time_axis.cc:696 msgid "Active" msgstr "Activo" @@ -4104,6 +7174,10 @@ msgstr "" msgid "Protect Against Denormals" msgstr "" +#: mixer_strip.cc:1491 route_time_axis.cc:435 +msgid "Remote Control ID..." +msgstr "" + #: mixer_strip.cc:1717 mixer_strip.cc:1741 msgid "in" msgstr "entrada" @@ -4120,6 +7194,18 @@ msgstr "saída" msgid "custom" msgstr "" +#: mixer_strip.cc:1745 +msgid "pr" +msgstr "" + +#: mixer_strip.cc:1749 +msgid "po" +msgstr "" + +#: mixer_strip.cc:1753 +msgid "o" +msgstr "" + #: mixer_strip.cc:1758 msgid "c" msgstr "" @@ -4140,10 +7226,26 @@ msgstr "" msgid "D" msgstr "" +#: mixer_strip.cc:1953 +msgid "i" +msgstr "" + +#: mixer_strip.cc:2128 +msgid "Pre-fader" +msgstr "" + +#: mixer_strip.cc:2129 +msgid "Post-fader" +msgstr "" + #: mixer_strip.cc:2166 meter_strip.cc:728 msgid "Change all in Group to %1" msgstr "" +#: mixer_strip.cc:2168 meter_strip.cc:730 +msgid "Change all to %1" +msgstr "" + #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -4160,6 +7262,14 @@ msgstr "-tudo-" msgid "Strips" msgstr "Painéis" +#: meter_strip.cc:764 +msgid "Variable height" +msgstr "" + +#: meter_strip.cc:765 +msgid "Short" +msgstr "" + #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -4212,10 +7322,18 @@ msgstr "" msgid "SiP" msgstr "" +#: monitor_section.cc:86 +msgid "soloing" +msgstr "" + #: monitor_section.cc:90 msgid "isolated" msgstr "" +#: monitor_section.cc:94 +msgid "auditioning" +msgstr "" + #: monitor_section.cc:104 msgid "" "When active, something is solo-isolated.\n" @@ -4262,6 +7380,10 @@ msgstr "" msgid "Gain reduction to use when dimming monitor outputs" msgstr "" +#: monitor_section.cc:181 +msgid "Dim" +msgstr "" + #: monitor_section.cc:190 msgid "excl. solo" msgstr "" @@ -4270,6 +7392,10 @@ msgstr "" msgid "Exclusive solo means that only 1 solo is active at a time" msgstr "" +#: monitor_section.cc:199 +msgid "solo » mute" +msgstr "" + #: monitor_section.cc:201 msgid "" "If enabled, solo will override mute\n" @@ -4280,14 +7406,30 @@ msgstr "" msgid "mute" msgstr "mudo" +#: monitor_section.cc:238 +msgid "dim" +msgstr "" + #: monitor_section.cc:245 msgid "mono" msgstr "" +#: monitor_section.cc:266 +msgid "Monitor" +msgstr "" + #: monitor_section.cc:678 msgid "Switch monitor to mono" msgstr "" +#: monitor_section.cc:681 +msgid "Cut monitor" +msgstr "" + +#: monitor_section.cc:684 +msgid "Dim monitor" +msgstr "" + #: monitor_section.cc:687 msgid "Toggle exclusive solo mode" msgstr "" @@ -4296,6 +7438,34 @@ msgstr "" msgid "Toggle mute overrides solo mode" msgstr "" +#: monitor_section.cc:705 +msgid "Cut monitor channel %1" +msgstr "" + +#: monitor_section.cc:710 +msgid "Dim monitor channel %1" +msgstr "" + +#: monitor_section.cc:715 +msgid "Solo monitor channel %1" +msgstr "" + +#: monitor_section.cc:720 +msgid "Invert monitor channel %1" +msgstr "" + +#: monitor_section.cc:730 +msgid "In-place solo" +msgstr "" + +#: monitor_section.cc:732 +msgid "After Fade Listen (AFL) solo" +msgstr "" + +#: monitor_section.cc:734 +msgid "Pre Fade Listen (PFL) solo" +msgstr "" + #: mono_panner.cc:101 #, c-format msgid "L:%3d R:%3d" @@ -4361,6 +7531,26 @@ msgid "" "relies on a stable, sustainable income stream. Thanks for using Ardour!" msgstr "" +#: new_plugin_preset_dialog.cc:29 +msgid "New Preset" +msgstr "" + +#: new_plugin_preset_dialog.cc:30 +msgid "Replace existing preset with this name" +msgstr "" + +#: new_plugin_preset_dialog.cc:34 +msgid "Name of new preset" +msgstr "" + +#: normalize_dialog.cc:34 +msgid "Normalize regions" +msgstr "" + +#: normalize_dialog.cc:34 +msgid "Normalize region" +msgstr "" + #: normalize_dialog.cc:49 strip_silence_dialog.cc:70 msgid "dbFS" msgstr "" @@ -4381,11 +7571,34 @@ msgstr "Normalizar" msgid "Usage: " msgstr "Uso: " +#: opts.cc:58 +msgid " [SESSION_NAME] Name of session to load\n" +msgstr "" + +#: opts.cc:59 +msgid " -v, --version Show version information\n" +msgstr "" + +#: opts.cc:60 +msgid " -h, --help Print this message\n" +msgstr "" + #: opts.cc:61 msgid "" " -a, --no-announcements Do not contact website for announcements\n" msgstr "" +#: opts.cc:62 +msgid "" +" -b, --bindings Print all possible keyboard binding names\n" +msgstr "" + +#: opts.cc:63 +msgid "" +" -c, --name Use a specific backend client name, default is " +"ardour\n" +msgstr "" + #: opts.cc:64 msgid "" " -d, --disable-plugins Disable all plugins in an existing session\n" @@ -4397,20 +7610,45 @@ msgid "" "available options\n" msgstr "" +#: opts.cc:66 +msgid " -n, --no-splash Do not show splash screen\n" +msgstr "" + #: opts.cc:67 msgid " -m, --menus file Use \"file\" to define menus\n" msgstr "" +#: opts.cc:68 +msgid "" +" -N, --new session-name Create a new session from the command line\n" +msgstr "" + +#: opts.cc:69 +msgid " -O, --no-hw-optimizations Disable h/w specific optimizations\n" +msgstr "" + #: opts.cc:70 msgid " -P, --no-connect-ports Do not connect any ports at startup\n" msgstr "" +#: opts.cc:71 +msgid " -S, --sync Draw the gui synchronously \n" +msgstr "" + +#: opts.cc:73 +msgid " -V, --novst Do not use VST support\n" +msgstr "" + #: opts.cc:75 msgid "" " -E, --save Load the specified session, save it to " "and then quit\n" msgstr "" +#: opts.cc:76 +msgid " -C, --curvetest filename Curve algorithm debugger\n" +msgstr "" + #: opts.cc:77 msgid "" " -k, --keybindings filename Name of key bindings to load (default is ~/." @@ -4421,7 +7659,7 @@ msgstr "" msgid "Panner (2D)" msgstr "" -#: panner2d.cc:783 panner_ui.cc:384 plugin_ui.cc:451 +#: panner2d.cc:783 panner_ui.cc:383 plugin_ui.cc:448 msgid "Bypass" msgstr "Ignorar" @@ -4429,23 +7667,31 @@ msgstr "Ignorar" msgid "Panner" msgstr "" -#: panner_ui.cc:71 +#: panner_ui.cc:70 msgid "Pan automation mode" msgstr "Modo de automatização de panorâmica" -#: panner_ui.cc:72 +#: panner_ui.cc:71 msgid "Pan automation type" msgstr "Tipo de automatização de panorâmica" -#: panner_ui.cc:295 +#: panner_ui.cc:294 msgid "" "No panner user interface is currently available for %1-in/2out tracks/busses" msgstr "" +#: playlist_selector.cc:43 +msgid "Playlists" +msgstr "" + #: playlist_selector.cc:54 msgid "Playlists grouped by track" msgstr "Listas de reprodução agrupadas por faixa" +#: playlist_selector.cc:101 +msgid "Playlist for %1" +msgstr "" + #: playlist_selector.cc:114 msgid "Other tracks" msgstr "Outras faixas" @@ -4454,14 +7700,46 @@ msgstr "Outras faixas" msgid "unassigned" msgstr "não atribuidas" +#: playlist_selector.cc:194 +msgid "Imported" +msgstr "" + #: plugin_eq_gui.cc:75 plugin_eq_gui.cc:99 msgid "dB scale" msgstr "" +#: plugin_eq_gui.cc:106 +msgid "Show phase" +msgstr "" + +#: plugin_selector.cc:53 plugin_selector.cc:220 +msgid "Name contains" +msgstr "" + +#: plugin_selector.cc:54 plugin_selector.cc:224 +msgid "Type contains" +msgstr "" + +#: plugin_selector.cc:55 plugin_selector.cc:222 +msgid "Category contains" +msgstr "" + +#: plugin_selector.cc:56 plugin_selector.cc:244 +msgid "Author contains" +msgstr "" + +#: plugin_selector.cc:57 plugin_selector.cc:246 +msgid "Library contains" +msgstr "" + #: plugin_selector.cc:58 plugin_selector.cc:210 plugin_selector.cc:521 msgid "Favorites only" msgstr "" +#: plugin_selector.cc:59 plugin_selector.cc:214 plugin_selector.cc:521 +msgid "Hidden only" +msgstr "" + #: plugin_selector.cc:64 msgid "Plugin Manager" msgstr "" @@ -4470,6 +7748,10 @@ msgstr "" msgid "Fav" msgstr "" +#: plugin_selector.cc:86 +msgid "Available Plugins" +msgstr "" + #: plugin_selector.cc:87 msgid "Type" msgstr "Tipo" @@ -4478,6 +7760,30 @@ msgstr "Tipo" msgid "Category" msgstr "" +#: plugin_selector.cc:89 +msgid "Creator" +msgstr "" + +#: plugin_selector.cc:90 +msgid "# Audio In" +msgstr "" + +#: plugin_selector.cc:91 +msgid "# Audio Out" +msgstr "" + +#: plugin_selector.cc:92 +msgid "# MIDI In" +msgstr "" + +#: plugin_selector.cc:93 +msgid "# MIDI Out" +msgstr "" + +#: plugin_selector.cc:115 +msgid "Plugins to be connected" +msgstr "" + #: plugin_selector.cc:128 msgid "Add a plugin to the effect list" msgstr "Acrescentar à lista de efeitos/plug-ins" @@ -4490,6 +7796,10 @@ msgstr "Remover da lista de efeitos/plug-ins" msgid "Update available plugins" msgstr "Actualizar efeitos/plug-ins disponíveis" +#: plugin_selector.cc:171 +msgid "Insert Plugin(s)" +msgstr "" + #: plugin_selector.cc:320 plugin_selector.cc:321 plugin_selector.cc:322 #: plugin_selector.cc:323 msgid "variable" @@ -4502,79 +7812,149 @@ msgid "" "See the Log window for more details (maybe)" msgstr "" +#: plugin_selector.cc:628 +msgid "Favorites" +msgstr "" + +#: plugin_selector.cc:630 +msgid "Plugin Manager..." +msgstr "" + +#: plugin_selector.cc:634 +msgid "By Creator" +msgstr "" + #: plugin_selector.cc:637 msgid "By Category" msgstr "" -#: plugin_ui.cc:116 +#: plugin_ui.cc:114 msgid "Eh? LADSPA plugins don't have editors!" msgstr "" -#: plugin_ui.cc:329 +#: plugin_ui.cc:123 plugin_ui.cc:226 +msgid "" +"unknown type of editor-supplying plugin (note: no VST support in this " +"version of %1)" +msgstr "" + +#: plugin_ui.cc:126 +msgid "unknown type of editor-supplying plugin" +msgstr "" + +#: plugin_ui.cc:256 +msgid "" +"unknown type of editor-supplying plugin (note: no linuxVST support in this " +"version of %1)" +msgstr "" + +#: plugin_ui.cc:328 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "" -#: plugin_ui.cc:417 +#: plugin_ui.cc:414 msgid "Add" msgstr "Acrescentar" -#: plugin_ui.cc:429 +#: plugin_ui.cc:418 +msgid "Description" +msgstr "" + +#: plugin_ui.cc:419 +msgid "Plugin analysis" +msgstr "" + +#: plugin_ui.cc:426 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:431 +#: plugin_ui.cc:427 +msgid "Save a new preset" +msgstr "" + +#: plugin_ui.cc:428 msgid "Save the current preset" msgstr "" -#: plugin_ui.cc:432 +#: plugin_ui.cc:429 msgid "Delete the current preset" msgstr "" -#: plugin_ui.cc:433 +#: plugin_ui.cc:430 msgid "Disable signal processing by the plugin" msgstr "" -#: plugin_ui.cc:466 plugin_ui.cc:662 +#: plugin_ui.cc:463 plugin_ui.cc:659 msgid "" "Click to allow the plugin to receive keyboard events that %1 would normally " "use as a shortcut" msgstr "" -#: plugin_ui.cc:467 +#: plugin_ui.cc:464 msgid "Click to enable/disable this plugin" msgstr "" -#: plugin_ui.cc:558 +#: plugin_ui.cc:503 +msgid "latency (%1 sample)" +msgid_plural "latency (%1 samples)" +msgstr[0] "" +msgstr[1] "" + +#: plugin_ui.cc:505 +msgid "latency (%1 ms)" +msgstr "" + +#: plugin_ui.cc:516 +msgid "Edit Latency" +msgstr "" + +#: plugin_ui.cc:555 msgid "Plugin preset %1 not found" msgstr "Parametrização de efeito/plug-in %1 inexistente" -#: plugin_ui.cc:595 +#: plugin_ui.cc:592 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "full version" msgstr "" -#: plugin_ui.cc:615 plugin_ui.cc:630 +#: plugin_ui.cc:612 plugin_ui.cc:627 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "newer version" msgstr "" -#: plugin_ui.cc:669 +#: plugin_ui.cc:666 msgid "Click to allow normal use of %1 keyboard shortcuts" msgstr "" +#: port_group.cc:337 +msgid "%1 Busses" +msgstr "" + +#: port_group.cc:338 +msgid "%1 Tracks" +msgstr "" + #: port_group.cc:339 +msgid "Hardware" +msgstr "" + +#: port_group.cc:340 +msgid "%1 Misc" +msgstr "" + +#: port_group.cc:341 msgid "Other" msgstr "" -#: port_group.cc:430 port_group.cc:431 +#: port_group.cc:432 port_group.cc:433 msgid "LTC Out" msgstr "" -#: port_group.cc:434 port_group.cc:435 +#: port_group.cc:436 port_group.cc:437 msgid "LTC In" msgstr "" @@ -4582,10 +7962,26 @@ msgstr "" msgid "MTC in" msgstr "" +#: port_group.cc:466 +msgid "MIDI control in" +msgstr "" + +#: port_group.cc:469 +msgid "MIDI clock in" +msgstr "" + #: port_group.cc:472 msgid "MMC in" msgstr "" +#: port_group.cc:476 +msgid "MTC out" +msgstr "" + +#: port_group.cc:479 +msgid "MIDI control out" +msgstr "" + #: port_group.cc:482 msgid "MIDI clock out" msgstr "" @@ -4594,28 +7990,40 @@ msgstr "" msgid "MMC out" msgstr "" -#: port_group.cc:552 +#: port_group.cc:532 +msgid ":monitor" +msgstr "" + +#: port_group.cc:544 msgid "system:" msgstr "" -#: port_group.cc:553 +#: port_group.cc:545 msgid "alsa_pcm" msgstr "" +#: port_insert_ui.cc:40 +msgid "Measure Latency" +msgstr "" + +#: port_insert_ui.cc:51 +msgid "Send/Output" +msgstr "" + #: port_insert_ui.cc:52 msgid "Return/Input" msgstr "" -#: port_insert_ui.cc:71 port_insert_ui.cc:99 -msgid "Disconnected from audio engine" -msgstr "" - #: port_insert_ui.cc:86 msgid "No signal detected" msgstr "" -#: port_insert_ui.cc:135 -msgid "Detecting ..." +#: port_insert_ui.cc:166 +msgid "Port Insert " +msgstr "" + +#: port_matrix.cc:331 port_matrix.cc:357 +msgid "Sources" msgstr "" #: port_matrix.cc:332 port_matrix.cc:358 @@ -4627,6 +8035,20 @@ msgstr "" msgid "Add %s %s" msgstr "" +#: port_matrix.cc:456 +#, c-format +msgid "Rename '%s'..." +msgstr "" + +#: port_matrix.cc:472 +msgid "Remove all" +msgstr "" + +#: port_matrix.cc:492 port_matrix.cc:504 +#, c-format +msgid "%s all" +msgstr "" + #: port_matrix.cc:527 msgid "Rescan" msgstr "Refrescar" @@ -4639,27 +8061,49 @@ msgstr "" msgid "Flip" msgstr "" -#: port_matrix.cc:723 +#: port_matrix.cc:721 msgid "" "It is not possible to add a port here, as the first processor in the track " "or buss cannot support the new configuration." msgstr "" -#: port_matrix.cc:726 +#: port_matrix.cc:724 msgid "Cannot add port" msgstr "" -#: port_matrix.cc:748 +#: port_matrix.cc:746 msgid "Port removal not allowed" msgstr "" -#: port_matrix.cc:749 +#: port_matrix.cc:747 msgid "" "This port cannot be removed.\n" "Either the first plugin in the track or buss cannot accept\n" "the new number of inputs or the last plugin has more outputs." msgstr "" +#: port_matrix.cc:964 +#, c-format +msgid "Remove '%s'" +msgstr "" + +#: port_matrix.cc:979 +#, c-format +msgid "%s all from '%s'" +msgstr "" + +#: port_matrix.cc:1045 +msgid "channel" +msgstr "" + +#: port_matrix_body.cc:82 +msgid "There are no ports to connect." +msgstr "" + +#: port_matrix_body.cc:84 +msgid "There are no %1 ports to connect." +msgstr "" + #: processor_box.cc:256 msgid "" "%1\n" @@ -4673,7 +8117,19 @@ msgid "" "Double-click to show generic GUI." msgstr "" -#: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 +#: processor_box.cc:372 +msgid "Show All Controls" +msgstr "" + +#: processor_box.cc:376 +msgid "Hide All Controls" +msgstr "" + +#: processor_box.cc:465 +msgid "on" +msgstr "" + +#: processor_box.cc:465 rc_option_editor.cc:1898 rc_option_editor.cc:1912 msgid "off" msgstr "desligado" @@ -4683,7 +8139,7 @@ msgid "" "plugins,inserts,sends and more" msgstr "" -#: processor_box.cc:1197 processor_box.cc:1591 +#: processor_box.cc:1197 processor_box.cc:1618 msgid "Plugin Incompatibility" msgstr "" @@ -4697,42 +8153,158 @@ msgid "" "This plugin has:\n" msgstr "" +#: processor_box.cc:1209 +msgid "\t%1 MIDI input\n" +msgid_plural "\t%1 MIDI inputs\n" +msgstr[0] "" +msgstr[1] "" + +#: processor_box.cc:1213 +msgid "\t%1 audio input\n" +msgid_plural "\t%1 audio inputs\n" +msgstr[0] "" +msgstr[1] "" + #: processor_box.cc:1216 msgid "" "\n" "but at the insertion point, there are:\n" msgstr "" +#: processor_box.cc:1219 +msgid "\t%1 MIDI channel\n" +msgid_plural "\t%1 MIDI channels\n" +msgstr[0] "" +msgstr[1] "" + +#: processor_box.cc:1223 +msgid "\t%1 audio channel\n" +msgid_plural "\t%1 audio channels\n" +msgstr[0] "" +msgstr[1] "" + #: processor_box.cc:1226 msgid "" "\n" "%1 is unable to insert this plugin here.\n" msgstr "" -#: processor_box.cc:1809 +#: processor_box.cc:1262 +msgid "Cannot set up new send: %1" +msgstr "" + +#: processor_box.cc:1621 +msgid "" +"You cannot reorder these plugins/sends/inserts\n" +"in that way because the inputs and\n" +"outputs will not work correctly." +msgstr "" + +#: processor_box.cc:1805 +msgid "Rename Processor" +msgstr "" + +#: processor_box.cc:1836 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "" -#: processor_box.cc:1943 +#: processor_box.cc:1970 msgid "plugin insert constructor failed" msgstr "" -#: processor_box.cc:2004 processor_box.cc:2029 +#: processor_box.cc:1981 +msgid "" +"Copying the set of processors on the clipboard failed,\n" +"probably because the I/O configuration of the plugins\n" +"could not match the configuration of this track." +msgstr "" + +#: processor_box.cc:2027 +msgid "" +"Do you really want to remove all processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2031 processor_box.cc:2056 msgid "Yes, remove them all" msgstr "Sim, remover todos" -#: processor_box.cc:2203 +#: processor_box.cc:2033 processor_box.cc:2058 +msgid "Remove processors" +msgstr "" + +#: processor_box.cc:2048 +msgid "" +"Do you really want to remove all pre-fader processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2051 +msgid "" +"Do you really want to remove all post-fader processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2239 +msgid "New Plugin" +msgstr "" + +#: processor_box.cc:2242 msgid "New Insert" msgstr "Nova inserção" -#: processor_box.cc:2244 +#: processor_box.cc:2245 +msgid "New External Send ..." +msgstr "" + +#: processor_box.cc:2249 +msgid "New Aux Send ..." +msgstr "" + +#: processor_box.cc:2253 +msgid "Clear (all)" +msgstr "" + +#: processor_box.cc:2255 +msgid "Clear (pre-fader)" +msgstr "" + +#: processor_box.cc:2257 +msgid "Clear (post-fader)" +msgstr "" + +#: processor_box.cc:2283 msgid "Activate All" msgstr "Activar tudo" -#: processor_box.cc:2257 +#: processor_box.cc:2285 +msgid "Deactivate All" +msgstr "" + +#: processor_box.cc:2287 +msgid "A/B Plugins" +msgstr "" + +#: processor_box.cc:2296 msgid "Edit with generic controls..." msgstr "" +#: processor_box.cc:2599 +msgid "%1: %2 (by %3)" +msgstr "" + +#: processor_box.cc:2601 +msgid "%2 (by %3)" +msgstr "" + +#: patch_change_dialog.cc:51 +msgid "Patch Change" +msgstr "" + +#: patch_change_dialog.cc:77 +msgid "Patch Bank" +msgstr "" + #: patch_change_dialog.cc:84 msgid "Patch" msgstr "" @@ -4765,80 +8337,128 @@ msgstr "" msgid "Threshold (ticks)" msgstr "" -#: rc_option_editor.cc:108 +#: quantize_dialog.cc:63 +msgid "Snap note start" +msgstr "" + +#: quantize_dialog.cc:64 +msgid "Snap note end" +msgstr "" + +#: rc_option_editor.cc:67 +msgid "Click audio file:" +msgstr "" + +#: rc_option_editor.cc:70 rc_option_editor.cc:77 +msgid "Browse..." +msgstr "" + +#: rc_option_editor.cc:74 +msgid "Click emphasis audio file:" +msgstr "" + +#: rc_option_editor.cc:106 msgid "Choose Click" msgstr "Metrónomo" -#: rc_option_editor.cc:128 +#: rc_option_editor.cc:126 msgid "Choose Click Emphasis" msgstr "Usar metrónomo acentuado" -#: rc_option_editor.cc:160 +#: rc_option_editor.cc:158 msgid "Limit undo history to" msgstr "" -#: rc_option_editor.cc:161 +#: rc_option_editor.cc:159 msgid "Save undo history of" msgstr "" -#: rc_option_editor.cc:321 rc_option_editor.cc:347 rc_option_editor.cc:374 +#: rc_option_editor.cc:168 rc_option_editor.cc:175 +msgid "commands" +msgstr "" + +#: rc_option_editor.cc:313 +msgid "Edit using:" +msgstr "" + +#: rc_option_editor.cc:319 rc_option_editor.cc:345 rc_option_editor.cc:372 msgid "+ button" msgstr "+ botão" -#: rc_option_editor.cc:411 +#: rc_option_editor.cc:339 +msgid "Delete using:" +msgstr "" + +#: rc_option_editor.cc:366 +msgid "Insert note using:" +msgstr "" + +#: rc_option_editor.cc:393 +msgid "Ignore snap using:" +msgstr "" + +#: rc_option_editor.cc:409 msgid "Keyboard layout:" msgstr "" -#: rc_option_editor.cc:534 +#: rc_option_editor.cc:532 msgid "Font scaling:" msgstr "" -#: rc_option_editor.cc:586 +#: rc_option_editor.cc:584 msgid "Playback (seconds of buffering):" msgstr "" -#: rc_option_editor.cc:599 +#: rc_option_editor.cc:597 msgid "Recording (seconds of buffering):" msgstr "" -#: rc_option_editor.cc:660 +#: rc_option_editor.cc:654 +msgid "Control Surface Protocol" +msgstr "" + +#: rc_option_editor.cc:658 msgid "Feedback" msgstr "" -#: rc_option_editor.cc:665 +#: rc_option_editor.cc:663 msgid "Double-click on a name to edit settings for an enabled protocol" msgstr "" -#: rc_option_editor.cc:817 +#: rc_option_editor.cc:815 msgid "Show Video Export Info before export" msgstr "" -#: rc_option_editor.cc:818 +#: rc_option_editor.cc:816 msgid "Show Video Server Startup Dialog" msgstr "" -#: rc_option_editor.cc:819 +#: rc_option_editor.cc:817 msgid "Advanced Setup (remote video server)" msgstr "" -#: rc_option_editor.cc:827 +#: rc_option_editor.cc:825 msgid "" "When enabled you can speficify a custom video-server URL and docroot. " "- Do not enable this option unless you know what you are doing." msgstr "" -#: rc_option_editor.cc:829 +#: rc_option_editor.cc:827 msgid "Video Server URL:" msgstr "" -#: rc_option_editor.cc:834 +#: rc_option_editor.cc:832 msgid "" "Base URL of the video-server including http prefix. This is usually 'http://" "hostname.example.org:1554/' and defaults to 'http://localhost:1554/' when " "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:841 +#: rc_option_editor.cc:834 +msgid "Video Folder:" +msgstr "" + +#: rc_option_editor.cc:839 msgid "" "Local path to the video-server document-root. Only files below this " "directory will be accessible by the video-server. If the server run on a " @@ -4847,77 +8467,113 @@ msgid "" "monitor and file-browsing when opening/adding a video file." msgstr "" -#: rc_option_editor.cc:848 +#: rc_option_editor.cc:846 msgid "" "When enabled an information window with details is displayed before " "the video-export dialog." msgstr "" -#: rc_option_editor.cc:853 +#: rc_option_editor.cc:851 msgid "" "When enabled the video server is never launched automatically without " "confirmation" msgstr "" -#: rc_option_editor.cc:993 +#: rc_option_editor.cc:991 msgid "%1 Preferences" msgstr "" -#: rc_option_editor.cc:1004 +#: rc_option_editor.cc:1002 msgid "DSP CPU Utilization" msgstr "" -#: rc_option_editor.cc:1008 +#: rc_option_editor.cc:1006 msgid "Signal processing uses" msgstr "" -#: rc_option_editor.cc:1013 +#: rc_option_editor.cc:1011 msgid "all but one processor" msgstr "" -#: rc_option_editor.cc:1017 +#: rc_option_editor.cc:1012 +msgid "all available processors" +msgstr "" + +#: rc_option_editor.cc:1015 msgid "%1 processors" msgstr "" -#: rc_option_editor.cc:1020 +#: rc_option_editor.cc:1018 msgid "This setting will only take effect when %1 is restarted." msgstr "" -#: rc_option_editor.cc:1040 +#: rc_option_editor.cc:1023 +msgid "Options|Undo" +msgstr "" + +#: rc_option_editor.cc:1030 +msgid "Verify removal of last capture" +msgstr "" + +#: rc_option_editor.cc:1038 msgid "Make periodic backups of the session file" msgstr "" -#: rc_option_editor.cc:1050 +#: rc_option_editor.cc:1043 +msgid "Session Management" +msgstr "" + +#: rc_option_editor.cc:1048 msgid "Always copy imported files" msgstr "" -#: rc_option_editor.cc:1065 +#: rc_option_editor.cc:1055 +msgid "Default folder for new sessions:" +msgstr "" + +#: rc_option_editor.cc:1063 msgid "Maximum number of recent sessions" msgstr "" -#: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 +#: rc_option_editor.cc:1076 +msgid "Click gain level" +msgstr "" + +#: rc_option_editor.cc:1081 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "Automatização" -#: rc_option_editor.cc:1088 +#: rc_option_editor.cc:1086 msgid "Thinning factor (larger value => less data)" msgstr "" -#: rc_option_editor.cc:1097 +#: rc_option_editor.cc:1095 msgid "Automation sampling interval (milliseconds)" msgstr "" -#: rc_option_editor.cc:1123 +#: rc_option_editor.cc:1107 +msgid "Keep record-enable engaged on stop" +msgstr "" + +#: rc_option_editor.cc:1116 +msgid "Stop recording when an xrun occurs" +msgstr "" + +#: rc_option_editor.cc:1121 msgid "" "When enabled %1 will stop recording if an over- or underrun is " "detected by the audio engine" msgstr "" -#: rc_option_editor.cc:1129 +#: rc_option_editor.cc:1127 msgid "Create markers where xruns occur" msgstr "" -#: rc_option_editor.cc:1143 +#: rc_option_editor.cc:1136 +msgid "Stop at the end of the session" +msgstr "" + +#: rc_option_editor.cc:1141 msgid "" "When enabled if %1 is not recording, it will stop the " "transport when it reaches the current session end marker\n" @@ -4926,11 +8582,11 @@ msgid "" "all times" msgstr "" -#: rc_option_editor.cc:1151 -msgid "Do seamless looping (not possible when slaved to MTC, JACK etc)" +#: rc_option_editor.cc:1149 +msgid "Do seamless looping (not possible when slaved to MTC, LTC etc)" msgstr "" -#: rc_option_editor.cc:1156 +#: rc_option_editor.cc:1154 msgid "" "When enabled this will loop by reading ahead and wrapping around at " "the loop point, preventing any need to do a transport locate at the end of " @@ -4940,31 +8596,39 @@ msgid "" "loop when %1 reaches the end which will often cause a small click or delay" msgstr "" -#: rc_option_editor.cc:1164 +#: rc_option_editor.cc:1162 msgid "Disable per-track record disarm while rolling" msgstr "" -#: rc_option_editor.cc:1168 +#: rc_option_editor.cc:1166 msgid "" "When enabled this will prevent you from accidentally stopping " "specific tracks recording during a take" msgstr "" -#: rc_option_editor.cc:1177 +#: rc_option_editor.cc:1171 +msgid "12dB gain reduction during fast-forward and fast-rewind" +msgstr "" + +#: rc_option_editor.cc:1175 msgid "" "This will reduce the unpleasant increase in perceived volume that occurs " "when fast-forwarding or rewinding through some kinds of audio" msgstr "" -#: rc_option_editor.cc:1181 +#: rc_option_editor.cc:1179 msgid "Sync/Slave" msgstr "" -#: rc_option_editor.cc:1195 +#: rc_option_editor.cc:1183 +msgid "External timecode source" +msgstr "" + +#: rc_option_editor.cc:1193 msgid "Match session video frame rate to external timecode" msgstr "" -#: rc_option_editor.cc:1201 +#: rc_option_editor.cc:1199 msgid "" "This option controls the value of the video frame rate while chasing " "an external timecode source.\n" @@ -4978,17 +8642,21 @@ msgid "" "external timecode standard and the session standard." msgstr "" -#: rc_option_editor.cc:1217 +#: rc_option_editor.cc:1209 +msgid "External timecode is sync locked" +msgstr "" + +#: rc_option_editor.cc:1215 msgid "" "When enabled indicates that the selected external timecode source " "shares sync (Black & Burst, Wordclock, etc) with the audio interface." msgstr "" -#: rc_option_editor.cc:1224 +#: rc_option_editor.cc:1222 msgid "Lock to 29.9700 fps instead of 30000/1001" msgstr "" -#: rc_option_editor.cc:1230 +#: rc_option_editor.cc:1228 msgid "" "When enabled the external timecode source is assumed to use 29.97 fps " "instead of 30000/1001.\n" @@ -5001,95 +8669,139 @@ msgid "" "variant of using exactly 29.97 fps has zero timecode drift.\n" msgstr "" -#: rc_option_editor.cc:1244 +#: rc_option_editor.cc:1238 +msgid "LTC Reader" +msgstr "" + +#: rc_option_editor.cc:1242 msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1269 +#: rc_option_editor.cc:1255 +msgid "LTC Generator" +msgstr "" + +#: rc_option_editor.cc:1260 +msgid "Enable LTC generator" +msgstr "" + +#: rc_option_editor.cc:1267 msgid "send LTC while stopped" msgstr "" -#: rc_option_editor.cc:1275 +#: rc_option_editor.cc:1273 msgid "" "When enabled %1 will continue to send LTC information even when the " "transport (playhead) is not moving" msgstr "" -#: rc_option_editor.cc:1285 +#: rc_option_editor.cc:1279 +msgid "LTC generator level" +msgstr "" + +#: rc_option_editor.cc:1283 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " "is 0dBu ^= -18dbFS in an EBU calibrated system" msgstr "" -#: rc_option_editor.cc:1305 +#: rc_option_editor.cc:1295 +msgid "Link selection of regions and tracks" +msgstr "" + +#: rc_option_editor.cc:1303 msgid "Move relevant automation when audio regions are moved" msgstr "" -#: rc_option_editor.cc:1313 +#: rc_option_editor.cc:1311 msgid "Show meters on tracks in the editor" msgstr "" -#: rc_option_editor.cc:1321 +#: rc_option_editor.cc:1319 msgid "Display master-meter in the toolbar" msgstr "" -#: rc_option_editor.cc:1328 +#: rc_option_editor.cc:1326 msgid "Regions in active edit groups are edited together" msgstr "" -#: rc_option_editor.cc:1329 +#: rc_option_editor.cc:1327 msgid "whenever they overlap in time" msgstr "" -#: rc_option_editor.cc:1330 +#: rc_option_editor.cc:1328 msgid "only if they have identical length, position and origin" msgstr "" -#: rc_option_editor.cc:1340 +#: rc_option_editor.cc:1338 msgid "Make rubberband selection rectangle snap to the grid" msgstr "" -#: rc_option_editor.cc:1357 +#: rc_option_editor.cc:1346 +msgid "Show waveforms in regions" +msgstr "" + +#: rc_option_editor.cc:1354 +msgid "Show gain envelopes in audio regions" +msgstr "" + +#: rc_option_editor.cc:1355 msgid "in all modes" msgstr "" -#: rc_option_editor.cc:1358 +#: rc_option_editor.cc:1356 msgid "only in region gain mode" msgstr "" -#: rc_option_editor.cc:1370 +#: rc_option_editor.cc:1363 +msgid "Waveform scale" +msgstr "" + +#: rc_option_editor.cc:1368 msgid "linear" msgstr "linear" -#: rc_option_editor.cc:1371 +#: rc_option_editor.cc:1369 msgid "logarithmic" msgstr "" -#: rc_option_editor.cc:1390 +#: rc_option_editor.cc:1375 +msgid "Waveform shape" +msgstr "" + +#: rc_option_editor.cc:1380 +msgid "traditional" +msgstr "" + +#: rc_option_editor.cc:1381 +msgid "rectified" +msgstr "" + +#: rc_option_editor.cc:1388 msgid "Show waveforms for audio while it is being recorded" msgstr "" -#: rc_option_editor.cc:1398 +#: rc_option_editor.cc:1396 msgid "Show zoom toolbar" msgstr "" -#: rc_option_editor.cc:1406 +#: rc_option_editor.cc:1404 msgid "Color regions using their track's color" msgstr "" -#: rc_option_editor.cc:1414 +#: rc_option_editor.cc:1412 msgid "Update editor window during drags of the summary" msgstr "" -#: rc_option_editor.cc:1422 -msgid "Synchronise editor and mixer track order" -msgstr "" - -#: rc_option_editor.cc:1430 +#: rc_option_editor.cc:1420 msgid "Synchronise editor and mixer selection" msgstr "" -#: rc_option_editor.cc:1443 +#: rc_option_editor.cc:1427 +msgid "Name new markers" +msgstr "" + +#: rc_option_editor.cc:1433 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " "be set as it is created.\n" @@ -5097,278 +8809,414 @@ msgid "" "You can always rename markers by right-clicking on them" msgstr "" -#: rc_option_editor.cc:1449 +#: rc_option_editor.cc:1439 msgid "Auto-scroll editor window when dragging near its edges" msgstr "" -#: rc_option_editor.cc:1456 +#: rc_option_editor.cc:1446 msgid "Buffering" msgstr "" -#: rc_option_editor.cc:1488 +#: rc_option_editor.cc:1454 +msgid "Record monitoring handled by" +msgstr "" + +#: rc_option_editor.cc:1460 +msgid "via Audio Driver" +msgstr "" + +#: rc_option_editor.cc:1463 +msgid "ardour" +msgstr "" + +#: rc_option_editor.cc:1464 +msgid "audio hardware" +msgstr "" + +#: rc_option_editor.cc:1471 +msgid "Tape machine mode" +msgstr "" + +#: rc_option_editor.cc:1476 msgid "Connection of tracks and busses" msgstr "" -#: rc_option_editor.cc:1493 +#: rc_option_editor.cc:1481 msgid "Auto-connect master/monitor busses" msgstr "" -#: rc_option_editor.cc:1506 rc_option_editor.cc:1519 +#: rc_option_editor.cc:1488 +msgid "Connect track inputs" +msgstr "" + +#: rc_option_editor.cc:1493 +msgid "automatically to physical inputs" +msgstr "" + +#: rc_option_editor.cc:1494 rc_option_editor.cc:1507 msgid "manually" msgstr "" -#: rc_option_editor.cc:1528 +#: rc_option_editor.cc:1500 +msgid "Connect track and bus outputs" +msgstr "" + +#: rc_option_editor.cc:1505 +msgid "automatically to physical outputs" +msgstr "" + +#: rc_option_editor.cc:1506 +msgid "automatically to master bus" +msgstr "" + +#: rc_option_editor.cc:1511 +msgid "Denormals" +msgstr "" + +#: rc_option_editor.cc:1516 msgid "Use DC bias to protect against denormals" msgstr "" -#: rc_option_editor.cc:1535 +#: rc_option_editor.cc:1523 msgid "Processor handling" msgstr "" -#: rc_option_editor.cc:1540 +#: rc_option_editor.cc:1528 msgid "no processor handling" msgstr "" -#: rc_option_editor.cc:1545 +#: rc_option_editor.cc:1533 msgid "use FlushToZero" msgstr "" -#: rc_option_editor.cc:1549 +#: rc_option_editor.cc:1537 msgid "use DenormalsAreZero" msgstr "" -#: rc_option_editor.cc:1553 +#: rc_option_editor.cc:1541 msgid "use FlushToZero and DenormalsAreZero" msgstr "" -#: rc_option_editor.cc:1571 +#: rc_option_editor.cc:1551 +msgid "Silence plugins when the transport is stopped" +msgstr "" + +#: rc_option_editor.cc:1559 msgid "Make new plugins active" msgstr "" -#: rc_option_editor.cc:1579 +#: rc_option_editor.cc:1567 msgid "Enable automatic analysis of audio" msgstr "" -#: rc_option_editor.cc:1597 +#: rc_option_editor.cc:1575 +msgid "Replicate missing region channels" +msgstr "" + +#: rc_option_editor.cc:1582 rc_option_editor.cc:1597 rc_option_editor.cc:1609 +#: rc_option_editor.cc:1621 rc_option_editor.cc:1633 rc_option_editor.cc:1637 +#: rc_option_editor.cc:1645 rc_option_editor.cc:1653 rc_option_editor.cc:1661 +#: rc_option_editor.cc:1663 rc_option_editor.cc:1671 rc_option_editor.cc:1679 +#: rc_option_editor.cc:1687 +msgid "Solo / mute" +msgstr "" + +#: rc_option_editor.cc:1585 msgid "Solo-in-place mute cut (dB)" msgstr "" -#: rc_option_editor.cc:1604 +#: rc_option_editor.cc:1592 msgid "Solo controls are Listen controls" msgstr "" -#: rc_option_editor.cc:1618 +#: rc_option_editor.cc:1601 +msgid "Listen Position" +msgstr "" + +#: rc_option_editor.cc:1606 msgid "after-fader (AFL)" msgstr "" -#: rc_option_editor.cc:1625 +#: rc_option_editor.cc:1607 +msgid "pre-fader (PFL)" +msgstr "" + +#: rc_option_editor.cc:1613 msgid "PFL signals come from" msgstr "" -#: rc_option_editor.cc:1631 +#: rc_option_editor.cc:1618 +msgid "before pre-fader processors" +msgstr "" + +#: rc_option_editor.cc:1619 msgid "pre-fader but after pre-fader processors" msgstr "" -#: rc_option_editor.cc:1637 +#: rc_option_editor.cc:1625 msgid "AFL signals come from" msgstr "" -#: rc_option_editor.cc:1652 +#: rc_option_editor.cc:1630 +msgid "immediately post-fader" +msgstr "" + +#: rc_option_editor.cc:1631 +msgid "after post-fader processors (before pan)" +msgstr "" + +#: rc_option_editor.cc:1640 msgid "Exclusive solo" msgstr "" -#: rc_option_editor.cc:1668 +#: rc_option_editor.cc:1648 +msgid "Show solo muting" +msgstr "" + +#: rc_option_editor.cc:1656 msgid "Soloing overrides muting" msgstr "" -#: rc_option_editor.cc:1678 +#: rc_option_editor.cc:1661 +msgid "Default track / bus muting options" +msgstr "" + +#: rc_option_editor.cc:1666 msgid "Mute affects pre-fader sends" msgstr "" -#: rc_option_editor.cc:1686 +#: rc_option_editor.cc:1674 msgid "Mute affects post-fader sends" msgstr "" -#: rc_option_editor.cc:1702 +#: rc_option_editor.cc:1682 +msgid "Mute affects control outputs" +msgstr "" + +#: rc_option_editor.cc:1690 msgid "Mute affects main outputs" msgstr "" -#: rc_option_editor.cc:1726 +#: rc_option_editor.cc:1706 +msgid "Send MIDI Time Code" +msgstr "" + +#: rc_option_editor.cc:1714 msgid "Percentage either side of normal transport speed to transmit MTC" msgstr "" -#: rc_option_editor.cc:1735 +#: rc_option_editor.cc:1723 msgid "Obey MIDI Machine Control commands" msgstr "" -#: rc_option_editor.cc:1743 +#: rc_option_editor.cc:1731 msgid "Send MIDI Machine Control commands" msgstr "" -#: rc_option_editor.cc:1759 +#: rc_option_editor.cc:1739 +msgid "Send MIDI control feedback" +msgstr "" + +#: rc_option_editor.cc:1747 msgid "Inbound MMC device ID" msgstr "" -#: rc_option_editor.cc:1768 +#: rc_option_editor.cc:1756 msgid "Outbound MMC device ID" msgstr "" -#: rc_option_editor.cc:1777 +#: rc_option_editor.cc:1765 msgid "Initial program change" msgstr "" -#: rc_option_editor.cc:1786 +#: rc_option_editor.cc:1774 msgid "Display first MIDI bank/program as 0" msgstr "" -#: rc_option_editor.cc:1794 +#: rc_option_editor.cc:1782 msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "" -#: rc_option_editor.cc:1813 +#: rc_option_editor.cc:1790 +msgid "Sound MIDI notes as they are selected" +msgstr "" + +#: rc_option_editor.cc:1798 rc_option_editor.cc:1808 rc_option_editor.cc:1810 +msgid "User interaction" +msgstr "" + +#: rc_option_editor.cc:1801 msgid "" "Use translations of %1 messages\n" " (requires a restart of %1 to take effect)\n" " (if available for your language preferences)" msgstr "" -#: rc_option_editor.cc:1820 +#: rc_option_editor.cc:1808 msgid "Keyboard" msgstr "" -#: rc_option_editor.cc:1836 +#: rc_option_editor.cc:1818 +msgid "Control surface remote ID" +msgstr "" + +#: rc_option_editor.cc:1823 +msgid "assigned by user" +msgstr "" + +#: rc_option_editor.cc:1824 msgid "follows order of mixer" msgstr "" -#: rc_option_editor.cc:1837 -msgid "follows order of editor" -msgstr "" - -#: rc_option_editor.cc:1846 rc_option_editor.cc:1854 rc_option_editor.cc:1864 -#: rc_option_editor.cc:1885 rc_option_editor.cc:1894 rc_option_editor.cc:1902 -#: rc_option_editor.cc:1916 rc_option_editor.cc:1935 rc_option_editor.cc:1951 -#: rc_option_editor.cc:1967 rc_option_editor.cc:1981 rc_option_editor.cc:1995 -#: rc_option_editor.cc:1997 +#: rc_option_editor.cc:1833 rc_option_editor.cc:1841 rc_option_editor.cc:1851 +#: rc_option_editor.cc:1872 rc_option_editor.cc:1881 rc_option_editor.cc:1889 +#: rc_option_editor.cc:1903 rc_option_editor.cc:1922 rc_option_editor.cc:1938 +#: rc_option_editor.cc:1954 rc_option_editor.cc:1968 rc_option_editor.cc:1982 +#: rc_option_editor.cc:1984 msgid "Preferences|GUI" msgstr "" -#: rc_option_editor.cc:1849 +#: rc_option_editor.cc:1836 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "" -#: rc_option_editor.cc:1857 +#: rc_option_editor.cc:1844 msgid "Show tooltips if mouse hovers over a control" msgstr "" -#: rc_option_editor.cc:1867 +#: rc_option_editor.cc:1854 msgid "GUI" msgstr "" -#: rc_option_editor.cc:1870 +#: rc_option_editor.cc:1857 msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" -#: rc_option_editor.cc:1914 +#: rc_option_editor.cc:1874 +msgid "Mixer Strip" +msgstr "" + +#: rc_option_editor.cc:1884 +msgid "Use narrow strips in the mixer by default" +msgstr "" + +#: rc_option_editor.cc:1893 +msgid "Peak hold time" +msgstr "" + +#: rc_option_editor.cc:1899 +msgid "short" +msgstr "" + +#: rc_option_editor.cc:1900 +msgid "medium" +msgstr "" + +#: rc_option_editor.cc:1901 msgid "long" msgstr "" -#: rc_option_editor.cc:1926 +#: rc_option_editor.cc:1907 +msgid "DPM fall-off" +msgstr "" + +#: rc_option_editor.cc:1913 msgid "slowest [6.6dB/sec]" msgstr "" -#: rc_option_editor.cc:1927 +#: rc_option_editor.cc:1914 msgid "slow [8.6dB/sec] (BBC PPM, EBU PPM)" msgstr "" -#: rc_option_editor.cc:1928 +#: rc_option_editor.cc:1915 msgid "slowish [12.0dB/sec] (DIN)" msgstr "" -#: rc_option_editor.cc:1929 +#: rc_option_editor.cc:1916 msgid "moderate [13.3dB/sec] (EBU Digi PPM, IRT Digi PPM)" msgstr "" -#: rc_option_editor.cc:1930 +#: rc_option_editor.cc:1917 msgid "medium [20dB/sec]" msgstr "" -#: rc_option_editor.cc:1931 +#: rc_option_editor.cc:1918 msgid "fast [32dB/sec]" msgstr "" -#: rc_option_editor.cc:1932 +#: rc_option_editor.cc:1919 msgid "faster [46dB/sec]" msgstr "" -#: rc_option_editor.cc:1933 +#: rc_option_editor.cc:1920 msgid "fastest [70dB/sec]" msgstr "" -#: rc_option_editor.cc:1939 +#: rc_option_editor.cc:1926 msgid "Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1944 rc_option_editor.cc:1960 +#: rc_option_editor.cc:1931 rc_option_editor.cc:1947 msgid "-24dBFS (SMPTE US: 4dBu = -20dBFS)" msgstr "" -#: rc_option_editor.cc:1945 rc_option_editor.cc:1961 +#: rc_option_editor.cc:1932 rc_option_editor.cc:1948 msgid "-20dBFS (SMPTE RP.0155)" msgstr "" -#: rc_option_editor.cc:1946 rc_option_editor.cc:1962 +#: rc_option_editor.cc:1933 rc_option_editor.cc:1949 msgid "-18dBFS (EBU, BBC)" msgstr "" -#: rc_option_editor.cc:1947 rc_option_editor.cc:1963 +#: rc_option_editor.cc:1934 rc_option_editor.cc:1950 msgid "-15dBFS (DIN)" msgstr "" -#: rc_option_editor.cc:1949 +#: rc_option_editor.cc:1936 msgid "" "Configure meter-marks and color-knee point for dBFS scale DPM, set reference " "level for IEC1/Nordic, IEC2 PPM and VU meter." msgstr "" -#: rc_option_editor.cc:1955 +#: rc_option_editor.cc:1942 msgid "IEC1/DIN Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1965 +#: rc_option_editor.cc:1952 msgid "Reference level for IEC1/DIN meter." msgstr "" -#: rc_option_editor.cc:1971 +#: rc_option_editor.cc:1958 msgid "VU Meter standard" msgstr "" -#: rc_option_editor.cc:1976 +#: rc_option_editor.cc:1963 msgid "0VU = -2dBu (France)" msgstr "" -#: rc_option_editor.cc:1977 +#: rc_option_editor.cc:1964 msgid "0VU = 0dBu (North America, Australia)" msgstr "" -#: rc_option_editor.cc:1978 +#: rc_option_editor.cc:1965 msgid "0VU = +4dBu (standard)" msgstr "" -#: rc_option_editor.cc:1979 +#: rc_option_editor.cc:1966 msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1985 +#: rc_option_editor.cc:1972 msgid "Peak threshold [dBFS]" msgstr "" -#: rc_option_editor.cc:1993 +#: rc_option_editor.cc:1980 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " "indicator will flash red." msgstr "" -#: rc_option_editor.cc:2000 +#: rc_option_editor.cc:1987 msgid "LED meter style" msgstr "" @@ -5376,6 +9224,10 @@ msgstr "" msgid "audition this region" msgstr "ouvir esta região" +#: region_editor.cc:88 region_layering_order_editor.cc:74 +msgid "Position:" +msgstr "" + #: region_editor.cc:90 add_video_dialog.cc:170 msgid "End:" msgstr "Final:" @@ -5404,10 +9256,54 @@ msgstr "" msgid "Source:" msgstr "" +#: region_editor.cc:166 +msgid "Region '%1'" +msgstr "" + +#: region_editor.cc:273 +msgid "change region start position" +msgstr "" + +#: region_editor.cc:289 +msgid "change region end position" +msgstr "" + +#: region_editor.cc:309 +msgid "change region length" +msgstr "" + +#: region_editor.cc:403 region_editor.cc:415 +msgid "change region sync point" +msgstr "" + +#: region_layering_order_editor.cc:41 +msgid "RegionLayeringOrderEditor" +msgstr "" + +#: region_layering_order_editor.cc:54 +msgid "Region Name" +msgstr "" + +#: region_layering_order_editor.cc:71 +msgid "Track:" +msgstr "" + +#: region_layering_order_editor.cc:103 +msgid "Choose Top Region" +msgstr "" + #: region_view.cc:274 msgid "SilenceText" msgstr "" +#: region_view.cc:290 region_view.cc:309 +msgid "minutes" +msgstr "" + +#: region_view.cc:293 region_view.cc:312 +msgid "msecs" +msgstr "" + #: region_view.cc:296 region_view.cc:315 msgid "secs" msgstr "" @@ -5456,6 +9352,10 @@ msgstr "" msgid "Complex Domain" msgstr "" +#: rhythm_ferret.cc:59 +msgid "Phase Deviation" +msgstr "" + #: rhythm_ferret.cc:60 msgid "Kullback-Liebler" msgstr "" @@ -5464,10 +9364,30 @@ msgstr "" msgid "Modified Kullback-Liebler" msgstr "" +#: rhythm_ferret.cc:66 +msgid "Split region" +msgstr "" + +#: rhythm_ferret.cc:67 +msgid "Snap regions" +msgstr "" + +#: rhythm_ferret.cc:68 +msgid "Conform regions" +msgstr "" + #: rhythm_ferret.cc:73 msgid "Rhythm Ferret" msgstr "" +#: rhythm_ferret.cc:79 +msgid "Analyze" +msgstr "" + +#: rhythm_ferret.cc:114 +msgid "Detection function" +msgstr "" + #: rhythm_ferret.cc:118 msgid "Trigger gap" msgstr "" @@ -5488,6 +9408,10 @@ msgstr "" msgid "Sensitivity" msgstr "" +#: rhythm_ferret.cc:142 +msgid "Operation" +msgstr "" + #: rhythm_ferret.cc:356 msgid "split regions (rhythm ferret)" msgstr "" @@ -5496,6 +9420,30 @@ msgstr "" msgid "Track/bus Group" msgstr "" +#: route_group_dialog.cc:41 +msgid "Relative" +msgstr "" + +#: route_group_dialog.cc:42 +msgid "Muting" +msgstr "" + +#: route_group_dialog.cc:43 +msgid "Soloing" +msgstr "" + +#: route_group_dialog.cc:44 +msgid "Record enable" +msgstr "" + +#: route_group_dialog.cc:45 time_info_box.cc:66 +msgid "Selection" +msgstr "" + +#: route_group_dialog.cc:46 +msgid "Active state" +msgstr "" + #: route_group_dialog.cc:47 route_group_dialog.cc:76 theme_manager.cc:71 msgid "Color" msgstr "Cor" @@ -5504,6 +9452,10 @@ msgstr "Cor" msgid "RouteGroupDialog" msgstr "" +#: route_group_dialog.cc:92 +msgid "Sharing" +msgstr "" + #: route_group_dialog.cc:182 msgid "" "A route group of this name already exists. Please use a different name." @@ -5538,6 +9490,10 @@ msgstr "" msgid "NO TRACK" msgstr "Nenhuma faixa" +#: route_params_ui.cc:613 route_params_ui.cc:614 +msgid "No Track or Bus Selected" +msgstr "" + #: route_time_axis.cc:97 msgid "g" msgstr "" @@ -5558,6 +9514,34 @@ msgstr "" msgid "Record" msgstr "Gravar" +#: route_time_axis.cc:210 +msgid "Route Group" +msgstr "" + +#: route_time_axis.cc:213 +msgid "MIDI Controllers and Automation" +msgstr "" + +#: route_time_axis.cc:390 +msgid "Show All Automation" +msgstr "" + +#: route_time_axis.cc:393 +msgid "Show Existing Automation" +msgstr "" + +#: route_time_axis.cc:396 +msgid "Hide All Automation" +msgstr "" + +#: route_time_axis.cc:405 +msgid "Processor automation" +msgstr "" + +#: route_time_axis.cc:424 +msgid "Color..." +msgstr "" + #: route_time_axis.cc:481 msgid "Overlaid" msgstr "" @@ -5566,18 +9550,94 @@ msgstr "" msgid "Stacked" msgstr "" +#: route_time_axis.cc:495 +msgid "Layers" +msgstr "" + +#: route_time_axis.cc:564 +msgid "Automatic (based on I/O connections)" +msgstr "" + +#: route_time_axis.cc:573 +msgid "(Currently: Existing Material)" +msgstr "" + +#: route_time_axis.cc:576 +msgid "(Currently: Capture Time)" +msgstr "" + +#: route_time_axis.cc:584 +msgid "Align With Existing Material" +msgstr "" + +#: route_time_axis.cc:589 +msgid "Align With Capture Time" +msgstr "" + #: route_time_axis.cc:594 msgid "Alignment" msgstr "Alinhamento" +#: route_time_axis.cc:629 +msgid "Normal Mode" +msgstr "" + +#: route_time_axis.cc:635 +msgid "Tape Mode" +msgstr "" + +#: route_time_axis.cc:641 +msgid "Non-Layered Mode" +msgstr "" + #: route_time_axis.cc:654 route_time_axis.cc:1601 msgid "Playlist" msgstr "Lista de reprodução" +#: route_time_axis.cc:979 +msgid "Rename Playlist" +msgstr "" + +#: route_time_axis.cc:980 +msgid "New name for playlist:" +msgstr "" + +#: route_time_axis.cc:1065 +msgid "New Copy Playlist" +msgstr "" + +#: route_time_axis.cc:1066 route_time_axis.cc:1119 +msgid "Name for new playlist:" +msgstr "" + +#: route_time_axis.cc:1118 +msgid "New Playlist" +msgstr "" + +#: route_time_axis.cc:1309 +msgid "You cannot create a track with that name as it is reserved for %1" +msgstr "" + +#: route_time_axis.cc:1490 +msgid "New Copy..." +msgstr "" + +#: route_time_axis.cc:1494 +msgid "New Take" +msgstr "" + +#: route_time_axis.cc:1495 +msgid "Copy Take" +msgstr "" + #: route_time_axis.cc:1500 msgid "Clear Current" msgstr "Apagar actual" +#: route_time_axis.cc:1503 +msgid "Select From All..." +msgstr "" + #: route_time_axis.cc:1591 msgid "Take: %1.%2" msgstr "" @@ -5586,6 +9646,10 @@ msgstr "" msgid "Underlays" msgstr "" +#: route_time_axis.cc:2294 +msgid "Remove \"%1\"" +msgstr "" + #: route_time_axis.cc:2344 route_time_axis.cc:2381 msgid "programming error: underlay reference pointer pairs are inconsistent!" msgstr "" @@ -5594,6 +9658,10 @@ msgstr "" msgid "After-fade listen (AFL)" msgstr "" +#: route_time_axis.cc:2412 +msgid "Pre-fade listen (PFL)" +msgstr "" + #: route_time_axis.cc:2416 msgid "s" msgstr "" @@ -5602,6 +9670,10 @@ msgstr "" msgid "m" msgstr "" +#: route_ui.cc:119 +msgid "Mute this track" +msgstr "" + #: route_ui.cc:123 msgid "Mute other (non-soloed) tracks" msgstr "" @@ -5614,14 +9686,58 @@ msgstr "" msgid "make mixer strips show sends to this bus" msgstr "" +#: route_ui.cc:138 +msgid "Monitor input" +msgstr "" + +#: route_ui.cc:144 +msgid "Monitor playback" +msgstr "" + +#: route_ui.cc:591 +msgid "Not connected to JACK - cannot engage record" +msgstr "" + +#: route_ui.cc:786 +msgid "Step Entry" +msgstr "" + #: route_ui.cc:859 msgid "Assign all tracks (prefader)" msgstr "" +#: route_ui.cc:863 +msgid "Assign all tracks and buses (prefader)" +msgstr "" + #: route_ui.cc:867 msgid "Assign all tracks (postfader)" msgstr "" +#: route_ui.cc:871 +msgid "Assign all tracks and buses (postfader)" +msgstr "" + +#: route_ui.cc:875 +msgid "Assign selected tracks (prefader)" +msgstr "" + +#: route_ui.cc:879 +msgid "Assign selected tracks and buses (prefader)" +msgstr "" + +#: route_ui.cc:882 +msgid "Assign selected tracks (postfader)" +msgstr "" + +#: route_ui.cc:886 +msgid "Assign selected tracks and buses (postfader)" +msgstr "" + +#: route_ui.cc:889 +msgid "Copy track/bus gains to sends" +msgstr "" + #: route_ui.cc:890 msgid "Set sends gain to -inf" msgstr "" @@ -5630,6 +9746,10 @@ msgstr "" msgid "Set sends gain to 0dB" msgstr "" +#: route_ui.cc:1211 +msgid "Solo Isolate" +msgstr "" + #: route_ui.cc:1240 msgid "Pre Fader" msgstr "Pré-atenuador" @@ -5646,12 +9766,44 @@ msgstr "Saídas de controlo" msgid "Main Outs" msgstr "Saídas principais" +#: route_ui.cc:1390 +msgid "Color Selection" +msgstr "" + +#: route_ui.cc:1477 +msgid "" +"Do you really want to remove track \"%1\" ?\n" +"\n" +"You may also lose the playlist used by this track.\n" +"\n" +"(This action cannot be undone, and the session file will be overwritten)" +msgstr "" + +#: route_ui.cc:1479 +msgid "" +"Do you really want to remove bus \"%1\" ?\n" +"\n" +"(This action cannot be undone, and the session file will be overwritten)" +msgstr "" + +#: route_ui.cc:1487 +msgid "Remove track" +msgstr "" + +#: route_ui.cc:1489 +msgid "Remove bus" +msgstr "" + #: route_ui.cc:1516 msgid "" "The use of colons (':') is discouraged in track and bus names.\n" "Do you want to use this new name?" msgstr "" +#: route_ui.cc:1520 +msgid "Use the new name" +msgstr "" + #: route_ui.cc:1521 msgid "Re-edit the name" msgstr "" @@ -5660,14 +9812,34 @@ msgstr "" msgid "Rename Track" msgstr "Renomear faixa" +#: route_ui.cc:1536 +msgid "Rename Bus" +msgstr "" + +#: route_ui.cc:1695 +msgid " latency" +msgstr "" + #: route_ui.cc:1708 msgid "Cannot create route template directory %1" msgstr "" +#: route_ui.cc:1714 +msgid "Save As Template" +msgstr "" + +#: route_ui.cc:1715 +msgid "Template name:" +msgstr "" + #: route_ui.cc:1788 msgid "Remote Control ID" msgstr "ID controlo remoto" +#: route_ui.cc:1798 +msgid "Remote control ID:" +msgstr "" + #: route_ui.cc:1812 msgid "" "The remote control ID of %1 is: %2\n" @@ -5676,24 +9848,33 @@ msgid "" "The remote control ID of %3 cannot be changed." msgstr "" -#: route_ui.cc:1818 -msgid "" -"The remote control ID of %6 is: %3\n" -"\n" -"\n" -"Remote Control IDs are currently determined by track/bus ordering in %1\n" -"\n" -"%4Use the User Interaction tab of the Preferences window if you want to " -"change this%5" +#: route_ui.cc:1816 +msgid "the master bus" msgstr "" -#: route_ui.cc:1876 +#: route_ui.cc:1816 +msgid "the monitor bus" +msgstr "" + +#: route_ui.cc:1818 +msgid "" +"The remote control ID of %5 is: %2\n" +"\n" +"\n" +"Remote Control IDs are currently determined by track/bus ordering in " +"Ardour.\n" +"\n" +"%3Use the User Interaction tab of the Preferences window if you want to " +"change this%4" +msgstr "" + +#: route_ui.cc:1875 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " "to show menu." msgstr "" -#: route_ui.cc:1878 +#: route_ui.cc:1877 msgid "Click to show a menu of channels for inversion (phase reverse)" msgstr "" @@ -5701,6 +9882,138 @@ msgstr "" msgid "Select folder to search for media" msgstr "" +#: search_path_option.cc:44 +msgid "Click to add a new location" +msgstr "" + +#: search_path_option.cc:51 +msgid "the session folder" +msgstr "" + +#: send_ui.cc:126 +msgid "Send " +msgstr "" + +#: session_dialog.cc:66 +msgid "Session Setup" +msgstr "" + +#: session_dialog.cc:71 +msgid "Advanced options ..." +msgstr "" + +#: session_dialog.cc:267 +msgid "New Session" +msgstr "Nova sessão" + +#: session_dialog.cc:305 +msgid "Check the website for more..." +msgstr "" + +#: session_dialog.cc:308 +msgid "Click to open the program website in your web browser" +msgstr "" + +#: session_dialog.cc:328 +msgid "Sample Rate" +msgstr "" + +#: session_dialog.cc:329 +msgid "Disk Format" +msgstr "" + +#: session_dialog.cc:347 +msgid "Select session file" +msgstr "" + +#: session_dialog.cc:362 +msgid "Other Sessions" +msgstr "" + +#: session_dialog.cc:388 +msgid "Open" +msgstr "" + +#: session_dialog.cc:455 +msgid "Session name:" +msgstr "" + +#: session_dialog.cc:477 +msgid "Create session folder in:" +msgstr "" + +#: session_dialog.cc:500 +msgid "Select folder for session" +msgstr "" + +#: session_dialog.cc:529 +msgid "Use this template" +msgstr "" + +#: session_dialog.cc:532 +msgid "no template" +msgstr "" + +#: session_dialog.cc:664 session_dialog.cc:696 +msgid "32 bit float" +msgstr "" + +#: session_dialog.cc:667 session_dialog.cc:699 +msgid "24 bit" +msgstr "" + +#: session_dialog.cc:670 session_dialog.cc:702 +msgid "16 bit" +msgstr "" + +#: session_dialog.cc:741 session_dialog.cc:742 session_dialog.cc:743 +msgid "channels" +msgstr "canais" + +#: session_dialog.cc:757 +msgid "Busses" +msgstr "" + +#: session_dialog.cc:758 +msgid "Inputs" +msgstr "" + +#: session_dialog.cc:759 +msgid "Outputs" +msgstr "" + +#: session_dialog.cc:767 +msgid "Create master bus" +msgstr "" + +#: session_dialog.cc:777 +msgid "Automatically connect to physical inputs" +msgstr "" + +#: session_dialog.cc:784 session_dialog.cc:843 +msgid "Use only" +msgstr "" + +#: session_dialog.cc:837 +msgid "Automatically connect outputs" +msgstr "" + +#: session_dialog.cc:859 +msgid "... to master bus" +msgstr "" + +#: session_dialog.cc:869 +msgid "... to physical outputs" +msgstr "" + +#: session_import_dialog.cc:64 +msgid "Import from Session" +msgstr "" + +#: session_import_dialog.cc:73 +msgid "Elements" +msgstr "" + #: session_import_dialog.cc:110 msgid "Cannot load XML for session from %1" msgstr "" @@ -5709,6 +10022,10 @@ msgstr "" msgid "Some elements had errors in them. Please see the log for details" msgstr "" +#: session_import_dialog.cc:163 +msgid "Import from session" +msgstr "" + #: session_import_dialog.cc:227 msgid "This will select all elements of this type!" msgstr "" @@ -5733,6 +10050,10 @@ msgstr "" msgid "Web" msgstr "" +#: session_metadata_dialog.cc:534 +msgid "Organization" +msgstr "" + #: session_metadata_dialog.cc:537 msgid "Country" msgstr "" @@ -5749,6 +10070,10 @@ msgstr "" msgid "Subtitle" msgstr "" +#: session_metadata_dialog.cc:560 +msgid "Grouping" +msgstr "" + #: session_metadata_dialog.cc:563 msgid "Artist" msgstr "" @@ -5757,6 +10082,14 @@ msgstr "" msgid "Genre" msgstr "" +#: session_metadata_dialog.cc:569 +msgid "Comment" +msgstr "" + +#: session_metadata_dialog.cc:572 +msgid "Copyright" +msgstr "" + #: session_metadata_dialog.cc:580 session_metadata_dialog.cc:585 msgid "Album" msgstr "" @@ -5769,6 +10102,10 @@ msgstr "" msgid "Album Artist" msgstr "" +#: session_metadata_dialog.cc:594 +msgid "Total Tracks" +msgstr "" + #: session_metadata_dialog.cc:597 msgid "Disc Subtitle" msgstr "" @@ -5781,6 +10118,10 @@ msgstr "" msgid "Total Discs" msgstr "" +#: session_metadata_dialog.cc:606 +msgid "Compilation" +msgstr "" + #: session_metadata_dialog.cc:609 msgid "ISRC" msgstr "" @@ -5801,6 +10142,14 @@ msgstr "" msgid "Conductor" msgstr "" +#: session_metadata_dialog.cc:631 +msgid "Remixer" +msgstr "" + +#: session_metadata_dialog.cc:634 +msgid "Arranger" +msgstr "" + #: session_metadata_dialog.cc:637 msgid "Engineer" msgstr "" @@ -5809,6 +10158,10 @@ msgstr "" msgid "Producer" msgstr "" +#: session_metadata_dialog.cc:643 +msgid "DJ Mixer" +msgstr "" + #: session_metadata_dialog.cc:646 msgid "Metadata|Mixer" msgstr "" @@ -5829,10 +10182,18 @@ msgstr "" msgid "Edit Session Metadata" msgstr "" +#: session_metadata_dialog.cc:701 +msgid "Import session metadata" +msgstr "" + #: session_metadata_dialog.cc:722 msgid "Choose session to import metadata from" msgstr "" +#: session_metadata_dialog.cc:760 +msgid "This session file could not be read!" +msgstr "" + #: session_metadata_dialog.cc:770 msgid "" "The session file didn't contain metadata!\n" @@ -5843,6 +10204,14 @@ msgstr "" msgid "Import all from:" msgstr "" +#: session_option_editor.cc:32 +msgid "Session Properties" +msgstr "" + +#: session_option_editor.cc:41 +msgid "Timecode Settings" +msgstr "" + #: session_option_editor.cc:45 msgid "Timecode frames-per-second" msgstr "" @@ -5938,10 +10307,22 @@ msgid "" "Apply Pull-Up/Down to Video Timeline and Video Monitor (Unless in JACK-sync)." msgstr "" +#: session_option_editor.cc:96 +msgid "Ext Timecode Offsets" +msgstr "" + +#: session_option_editor.cc:100 +msgid "Slave Timecode offset" +msgstr "" + #: session_option_editor.cc:107 msgid "The specified offset is added to the received timecode (MTC or LTC)." msgstr "" +#: session_option_editor.cc:113 +msgid "Timecode Generator offset" +msgstr "" + #: session_option_editor.cc:120 msgid "" "Specify an offset which is added to the generated timecode (so far only LTC)." @@ -5956,6 +10337,10 @@ msgid "" "%1 is JACK Time Master (provides Bar|Beat|Tick and other information to JACK)" msgstr "" +#: session_option_editor.cc:137 +msgid "Default crossfade type" +msgstr "" + #: session_option_editor.cc:142 msgid "Constant power (-3dB) crossfade" msgstr "" @@ -5968,6 +10353,36 @@ msgstr "" msgid "destructive-xfade-seconds" msgstr "" +#: session_option_editor.cc:149 +msgid "Destructive crossfade length" +msgstr "" + +#: session_option_editor.cc:158 +msgid "Region fades active" +msgstr "" + +#: session_option_editor.cc:165 +msgid "Region fades visible" +msgstr "" + +#: session_option_editor.cc:172 session_option_editor.cc:185 +#: session_option_editor.cc:199 session_option_editor.cc:201 +#: session_option_editor.cc:207 session_option_editor.cc:214 +msgid "Media" +msgstr "" + +#: session_option_editor.cc:172 +msgid "Audio file format" +msgstr "" + +#: session_option_editor.cc:176 +msgid "Sample format" +msgstr "" + +#: session_option_editor.cc:181 +msgid "32-bit floating point" +msgstr "" + #: session_option_editor.cc:182 msgid "24-bit integer" msgstr "" @@ -5976,6 +10391,14 @@ msgstr "" msgid "16-bit integer" msgstr "" +#: session_option_editor.cc:189 +msgid "File type" +msgstr "" + +#: session_option_editor.cc:194 +msgid "Broadcast WAVE" +msgstr "" + #: session_option_editor.cc:195 msgid "WAVE" msgstr "" @@ -5984,6 +10407,10 @@ msgstr "" msgid "WAVE-64" msgstr "" +#: session_option_editor.cc:201 +msgid "File locations" +msgstr "" + #: session_option_editor.cc:203 msgid "Search for audio files in:" msgstr "" @@ -5997,6 +10424,10 @@ msgid "" "Track Input Monitoring automatically follows transport state (\"auto-input\")" msgstr "" +#: session_option_editor.cc:227 +msgid "Use monitor section in this session" +msgstr "" + #: session_option_editor.cc:238 msgid "MIDI region copies are independent" msgstr "" @@ -6043,22 +10474,90 @@ msgstr "" msgid "Glue new regions to bars and beats" msgstr "" +#: session_option_editor.cc:275 session_option_editor.cc:277 +#: session_option_editor.cc:284 session_option_editor.cc:291 +#: session_option_editor.cc:298 session_option_editor.cc:300 +#: session_option_editor.cc:307 session_option_editor.cc:314 +#: session_option_editor.cc:321 session_option_editor.cc:323 +msgid "Meterbridge" +msgstr "" + #: session_option_editor.cc:275 msgid "Route Display" msgstr "" +#: session_option_editor.cc:279 +msgid "Show Midi Tracks" +msgstr "" + +#: session_option_editor.cc:286 +msgid "Show Busses" +msgstr "" + +#: session_option_editor.cc:293 +msgid "Include Master Bus" +msgstr "" + #: session_option_editor.cc:298 msgid "Button Area" msgstr "" +#: session_option_editor.cc:302 +msgid "Rec-enable Button" +msgstr "" + +#: session_option_editor.cc:309 +msgid "Mute Button" +msgstr "" + +#: session_option_editor.cc:316 +msgid "Solo Button" +msgstr "" + #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" +#: session_option_editor.cc:325 +msgid "Track Name" +msgstr "" + +#: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 +msgid "as new tracks" +msgstr "" + +#: sfdb_ui.cc:88 sfdb_ui.cc:108 +msgid "to selected tracks" +msgstr "" + +#: sfdb_ui.cc:90 sfdb_ui.cc:110 +msgid "to region list" +msgstr "" + +#: sfdb_ui.cc:92 sfdb_ui.cc:112 +msgid "as new tape tracks" +msgstr "" + #: sfdb_ui.cc:96 msgid "programming error: unknown import mode string %1" msgstr "" +#: sfdb_ui.cc:123 +msgid "Auto-play" +msgstr "" + +#: sfdb_ui.cc:129 sfdb_ui.cc:236 +msgid "Sound File Information" +msgstr "" + +#: sfdb_ui.cc:141 +msgid "Timestamp:" +msgstr "" + +#: sfdb_ui.cc:143 +msgid "Format:" +msgstr "" + #: sfdb_ui.cc:182 sfdb_ui.cc:526 msgid "Tags:" msgstr "" @@ -6083,6 +10582,26 @@ msgstr "" msgid "Search" msgstr "" +#: sfdb_ui.cc:449 +msgid "Audio and MIDI files" +msgstr "" + +#: sfdb_ui.cc:452 +msgid "Audio files" +msgstr "" + +#: sfdb_ui.cc:455 +msgid "MIDI files" +msgstr "" + +#: sfdb_ui.cc:458 add_video_dialog.cc:132 +msgid "All files" +msgstr "" + +#: sfdb_ui.cc:477 add_video_dialog.cc:143 +msgid "Browse Files" +msgstr "" + #: sfdb_ui.cc:506 msgid "Paths" msgstr "Directórios" @@ -6091,6 +10610,22 @@ msgstr "Directórios" msgid "Search Tags" msgstr "" +#: sfdb_ui.cc:531 +msgid "Sort:" +msgstr "" + +#: sfdb_ui.cc:539 +msgid "Longest" +msgstr "" + +#: sfdb_ui.cc:540 +msgid "Shortest" +msgstr "" + +#: sfdb_ui.cc:541 +msgid "Newest" +msgstr "" + #: sfdb_ui.cc:542 msgid "Oldest" msgstr "" @@ -6099,6 +10634,10 @@ msgstr "" msgid "Most downloaded" msgstr "" +#: sfdb_ui.cc:544 +msgid "Least downloaded" +msgstr "" + #: sfdb_ui.cc:545 msgid "Highest rated" msgstr "" @@ -6115,6 +10654,26 @@ msgstr "" msgid "Similar" msgstr "" +#: sfdb_ui.cc:567 +msgid "ID" +msgstr "" + +#: sfdb_ui.cc:568 add_video_dialog.cc:84 +msgid "Filename" +msgstr "" + +#: sfdb_ui.cc:570 +msgid "Duration" +msgstr "" + +#: sfdb_ui.cc:571 +msgid "Size" +msgstr "" + +#: sfdb_ui.cc:572 +msgid "Samplerate" +msgstr "" + #: sfdb_ui.cc:573 msgid "License" msgstr "" @@ -6161,24 +10720,84 @@ msgstr "" msgid "MB" msgstr "" +#: sfdb_ui.cc:1086 +msgid "GB" +msgstr "" + #: sfdb_ui.cc:1298 sfdb_ui.cc:1606 sfdb_ui.cc:1656 sfdb_ui.cc:1674 msgid "one track per file" msgstr "" +#: sfdb_ui.cc:1301 sfdb_ui.cc:1657 sfdb_ui.cc:1675 +msgid "one track per channel" +msgstr "" + +#: sfdb_ui.cc:1309 sfdb_ui.cc:1659 sfdb_ui.cc:1676 +msgid "sequence files" +msgstr "" + #: sfdb_ui.cc:1312 sfdb_ui.cc:1664 msgid "all files in one track" msgstr "" +#: sfdb_ui.cc:1313 sfdb_ui.cc:1658 +msgid "merge files" +msgstr "" + +#: sfdb_ui.cc:1319 sfdb_ui.cc:1661 +msgid "one region per file" +msgstr "" + +#: sfdb_ui.cc:1322 sfdb_ui.cc:1662 +msgid "one region per channel" +msgstr "" + +#: sfdb_ui.cc:1327 sfdb_ui.cc:1663 sfdb_ui.cc:1677 +msgid "all files in one region" +msgstr "" + #: sfdb_ui.cc:1394 msgid "" "One or more of the selected files\n" "cannot be used by %1" msgstr "" +#: sfdb_ui.cc:1534 +msgid "Copy files to session" +msgstr "" + +#: sfdb_ui.cc:1551 sfdb_ui.cc:1714 +msgid "file timestamp" +msgstr "" + +#: sfdb_ui.cc:1552 sfdb_ui.cc:1716 +msgid "edit point" +msgstr "" + +#: sfdb_ui.cc:1553 sfdb_ui.cc:1718 +msgid "playhead" +msgstr "" + +#: sfdb_ui.cc:1554 +msgid "session start" +msgstr "" + #: sfdb_ui.cc:1559 msgid "Add files as ..." msgstr "" +#: sfdb_ui.cc:1581 +msgid "Insert at" +msgstr "" + +#: sfdb_ui.cc:1594 +msgid "Mapping" +msgstr "" + +#: sfdb_ui.cc:1612 +msgid "Conversion quality" +msgstr "" + #: sfdb_ui.cc:1624 sfdb_ui.cc:1730 msgid "Best" msgstr "" @@ -6195,6 +10814,14 @@ msgstr "" msgid "Fastest" msgstr "Mais rápido" +#: shuttle_control.cc:56 +msgid "Shuttle speed control (Context-click for options)" +msgstr "" + +#: shuttle_control.cc:165 +msgid "Percent" +msgstr "" + #: shuttle_control.cc:173 msgid "Units" msgstr "" @@ -6211,29 +10838,51 @@ msgstr "Roda" msgid "Maximum speed" msgstr "Velocidade máxima" +#: shuttle_control.cc:561 +msgid "Playing" +msgstr "" + +#: shuttle_control.cc:576 +#, c-format +msgid "<<< %+d semitones" +msgstr "" + +#: shuttle_control.cc:578 +#, c-format +msgid ">>> %+d semitones" +msgstr "" + +#: shuttle_control.cc:583 +msgid "Stopped" +msgstr "" + #: splash.cc:73 msgid "%1 loading ..." msgstr "" +#: speaker_dialog.cc:40 +msgid "Add Speaker" +msgstr "" + +#: speaker_dialog.cc:41 +msgid "Remove Speaker" +msgstr "" + #: speaker_dialog.cc:63 msgid "Azimuth:" msgstr "" -#: startup.cc:74 +#: startup.cc:72 msgid "" "Use an external mixer or the hardware mixer of your audio interface.\n" "%1 will play NO role in monitoring" msgstr "" -#: startup.cc:76 +#: startup.cc:74 msgid "Ask %1 to play back material as it is being recorded" msgstr "" -#: startup.cc:79 -msgid "I'd like more options for this session" -msgstr "" - -#: startup.cc:194 +#: startup.cc:143 msgid "" "Welcome to this BETA release of Ardour %1\n" "\n" @@ -6258,15 +10907,11 @@ msgid "" " http://ardour.org/support\n" msgstr "" -#: startup.cc:218 +#: startup.cc:167 msgid "This is a BETA RELEASE" msgstr "" -#: startup.cc:324 -msgid "Audio / MIDI Setup" -msgstr "" - -#: startup.cc:336 +#: startup.cc:176 msgid "" "%1 is a digital audio workstation. You can use it to " "record, edit and mix multi-track audio. You can produce your own CDs, mix " @@ -6276,15 +10921,15 @@ msgid "" "program. " msgstr "" -#: startup.cc:362 +#: startup.cc:202 msgid "Welcome to %1" msgstr "" -#: startup.cc:385 +#: startup.cc:225 msgid "Default folder for %1 sessions" msgstr "" -#: startup.cc:391 +#: startup.cc:231 msgid "" "Each project that you work on with %1 has its own folder.\n" "These can require a lot of disk space if you are recording audio.\n" @@ -6294,11 +10939,11 @@ msgid "" "(You can put new sessions anywhere, this is just a default)" msgstr "" -#: startup.cc:415 +#: startup.cc:254 msgid "Default folder for new sessions" msgstr "" -#: startup.cc:436 +#: startup.cc:275 msgid "" "While recording instruments or vocals, you probably want to listen to the\n" "signal as well as record it. This is called \"monitoring\". There are\n" @@ -6312,27 +10957,31 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:480 +#: startup.cc:296 +msgid "Monitoring Choices" +msgstr "" + +#: startup.cc:319 msgid "Use a Master bus directly" msgstr "" -#: startup.cc:482 +#: startup.cc:321 msgid "" "Connect the Master bus directly to your hardware outputs. This is preferable " "for simple usage." msgstr "" -#: startup.cc:491 +#: startup.cc:330 msgid "Use an additional Monitor bus" msgstr "" -#: startup.cc:494 +#: startup.cc:333 msgid "" "Use a Monitor bus between Master bus and hardware outputs for \n" "greater control in monitoring without affecting the mix." msgstr "" -#: startup.cc:516 +#: startup.cc:355 msgid "" "You can change this preference at any time via the Preferences dialog.\n" "You can also add or remove the monitor section to/from any session.\n" @@ -6340,24 +10989,8 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:573 -msgid "Check the website for more..." -msgstr "" - -#: startup.cc:576 -msgid "Click to open the program website in your web browser" -msgstr "" - -#: startup.cc:922 -msgid "New Session" -msgstr "Nova sessão" - -#: startup.cc:1129 startup.cc:1130 startup.cc:1131 -msgid "channels" -msgstr "canais" - -#: startup.cc:1172 startup.cc:1231 -msgid "Use only" +#: startup.cc:366 +msgid "Monitor Section" msgstr "" #: step_entry.cc:59 @@ -6416,6 +11049,10 @@ msgstr "" msgid "Set note length to a sixteenth note" msgstr "" +#: step_entry.cc:195 +msgid "Set note length to a thirty-second note" +msgstr "" + #: step_entry.cc:196 msgid "Set note length to a sixty-fourth note" msgstr "" @@ -6516,26 +11153,58 @@ msgstr "" msgid "Octave" msgstr "" +#: step_entry.cc:597 +msgid "Insert Note A" +msgstr "" + #: step_entry.cc:598 msgid "Insert Note A-sharp" msgstr "" +#: step_entry.cc:599 +msgid "Insert Note B" +msgstr "" + +#: step_entry.cc:600 +msgid "Insert Note C" +msgstr "" + #: step_entry.cc:601 msgid "Insert Note C-sharp" msgstr "" +#: step_entry.cc:602 +msgid "Insert Note D" +msgstr "" + #: step_entry.cc:603 msgid "Insert Note D-sharp" msgstr "" +#: step_entry.cc:604 +msgid "Insert Note E" +msgstr "" + +#: step_entry.cc:605 +msgid "Insert Note F" +msgstr "" + #: step_entry.cc:606 msgid "Insert Note F-sharp" msgstr "" +#: step_entry.cc:607 +msgid "Insert Note G" +msgstr "" + #: step_entry.cc:608 msgid "Insert Note G-sharp" msgstr "" +#: step_entry.cc:610 +msgid "Insert a Note-length Rest" +msgstr "" + #: step_entry.cc:611 msgid "Insert a Snap-length Rest" msgstr "" @@ -6552,6 +11221,14 @@ msgstr "" msgid "Move to Previous Note Length" msgstr "" +#: step_entry.cc:619 +msgid "Increase Note Length" +msgstr "" + +#: step_entry.cc:620 +msgid "Decrease Note Length" +msgstr "" + #: step_entry.cc:622 msgid "Move to Next Note Velocity" msgstr "" @@ -6620,6 +11297,10 @@ msgstr "" msgid "Set Note Length to 1/2" msgstr "" +#: step_entry.cc:647 +msgid "Set Note Length to 1/3" +msgstr "" + #: step_entry.cc:649 msgid "Set Note Length to 1/4" msgstr "" @@ -6688,6 +11369,10 @@ msgstr "" msgid "Toggled Triple-Dotted Notes" msgstr "" +#: step_entry.cc:692 +msgid "Toggle Chord Entry" +msgstr "" + #: step_entry.cc:694 msgid "Sustain Selected Notes by Note Length" msgstr "" @@ -6701,6 +11386,10 @@ msgstr "" msgid "Stereo Panner" msgstr "" +#: stereo_panner_editor.cc:49 +msgid "Width" +msgstr "" + #: strip_silence_dialog.cc:48 msgid "Strip Silence" msgstr "" @@ -6709,6 +11398,10 @@ msgstr "" msgid "Minimum length" msgstr "" +#: strip_silence_dialog.cc:87 +msgid "Fade length" +msgstr "" + #: tempo_dialog.cc:43 tempo_dialog.cc:58 msgid "bar:" msgstr "" @@ -6717,6 +11410,49 @@ msgstr "" msgid "beat:" msgstr "" +#: tempo_dialog.cc:45 tempo_dialog.cc:60 +msgid "Pulse note" +msgstr "" + +#: tempo_dialog.cc:55 +msgid "Edit Tempo" +msgstr "" + +#: tempo_dialog.cc:76 tempo_dialog.cc:77 tempo_dialog.cc:282 +#: tempo_dialog.cc:283 +msgid "whole" +msgstr "" + +#: tempo_dialog.cc:78 tempo_dialog.cc:79 tempo_dialog.cc:284 +#: tempo_dialog.cc:285 +msgid "second" +msgstr "" + +#: tempo_dialog.cc:80 tempo_dialog.cc:81 tempo_dialog.cc:286 +#: tempo_dialog.cc:287 +msgid "third" +msgstr "" + +#: tempo_dialog.cc:82 tempo_dialog.cc:83 tempo_dialog.cc:288 +#: tempo_dialog.cc:289 +msgid "quarter" +msgstr "" + +#: tempo_dialog.cc:84 tempo_dialog.cc:85 tempo_dialog.cc:290 +#: tempo_dialog.cc:291 +msgid "eighth" +msgstr "" + +#: tempo_dialog.cc:86 tempo_dialog.cc:87 tempo_dialog.cc:292 +#: tempo_dialog.cc:293 +msgid "sixteenth" +msgstr "" + +#: tempo_dialog.cc:88 tempo_dialog.cc:89 tempo_dialog.cc:294 +#: tempo_dialog.cc:295 +msgid "thirty-second" +msgstr "" + #: tempo_dialog.cc:90 tempo_dialog.cc:91 tempo_dialog.cc:296 #: tempo_dialog.cc:297 msgid "sixty-fourth" @@ -6727,10 +11463,38 @@ msgstr "" msgid "one-hundred-twenty-eighth" msgstr "" +#: tempo_dialog.cc:120 +msgid "Beats per minute:" +msgstr "" + #: tempo_dialog.cc:152 msgid "Tempo begins at" msgstr "" +#: tempo_dialog.cc:240 +msgid "incomprehensible pulse note type (%1)" +msgstr "" + +#: tempo_dialog.cc:266 +msgid "Edit Meter" +msgstr "" + +#: tempo_dialog.cc:314 +msgid "Note value:" +msgstr "" + +#: tempo_dialog.cc:315 +msgid "Beats per bar:" +msgstr "" + +#: tempo_dialog.cc:330 +msgid "Meter begins at bar:" +msgstr "" + +#: tempo_dialog.cc:441 +msgid "incomprehensible meter note type (%1)" +msgstr "" + #: theme_manager.cc:57 msgid "Dark Theme" msgstr "" @@ -6739,6 +11503,10 @@ msgstr "" msgid "Light Theme" msgstr "" +#: theme_manager.cc:59 +msgid "Restore Defaults" +msgstr "" + #: theme_manager.cc:60 msgid "Draw \"flat\" buttons" msgstr "" @@ -6747,6 +11515,10 @@ msgstr "" msgid "All floating windows are dialogs" msgstr "" +#: theme_manager.cc:62 +msgid "Draw waveforms with color gradient" +msgstr "" + #: theme_manager.cc:68 msgid "Object" msgstr "Objecto" @@ -6767,6 +11539,12 @@ msgstr "" msgid "Track/Bus name (double click to edit)" msgstr "" +#: time_axis_view_item.cc:332 +msgid "new duration %1 frame is out of bounds for %2" +msgid_plural "new duration of %1 frames is out of bounds for %2" +msgstr[0] "" +msgstr[1] "" + #: time_fx_dialog.cc:62 msgid "Quick but Ugly" msgstr "Rápido e feio" @@ -6775,10 +11553,18 @@ msgstr "Rápido e feio" msgid "Skip Anti-aliasing" msgstr "Ignorar anti-aliasing" +#: time_fx_dialog.cc:64 +msgid "Contents:" +msgstr "" + #: time_fx_dialog.cc:65 msgid "Minimize time distortion" msgstr "" +#: time_fx_dialog.cc:66 +msgid "Preserve Formants" +msgstr "" + #: time_fx_dialog.cc:71 msgid "TimeFXDialog" msgstr "" @@ -6787,10 +11573,22 @@ msgstr "" msgid "Pitch Shift Audio" msgstr "" +#: time_fx_dialog.cc:76 +msgid "Time Stretch Audio" +msgstr "" + #: time_fx_dialog.cc:104 transpose_dialog.cc:41 msgid "Octaves:" msgstr "" +#: time_fx_dialog.cc:109 transpose_dialog.cc:46 +msgid "Semitones:" +msgstr "" + +#: time_fx_dialog.cc:114 +msgid "Cents:" +msgstr "" + #: time_fx_dialog.cc:122 msgid "Time|Shift" msgstr "" @@ -6799,6 +11597,10 @@ msgstr "" msgid "TimeFXButton" msgstr "" +#: time_fx_dialog.cc:154 +msgid "Stretch/Shrink" +msgstr "" + #: time_fx_dialog.cc:164 msgid "Progress" msgstr "" @@ -6815,10 +11617,22 @@ msgstr "Parar gravação na posição final de inserção automática" msgid "programming error: request for non-existent audio range (%1)!" msgstr "" +#: transpose_dialog.cc:30 +msgid "Transpose MIDI" +msgstr "" + +#: transpose_dialog.cc:55 +msgid "Transpose" +msgstr "" + #: ui_config.cc:82 ui_config.cc:113 msgid "Loading default ui configuration file %1" msgstr "" +#: ui_config.cc:85 ui_config.cc:116 +msgid "cannot read default ui configuration file \"%1\"" +msgstr "" + #: ui_config.cc:90 ui_config.cc:121 msgid "default ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -6827,6 +11641,10 @@ msgstr "" msgid "Loading user ui configuration file %1" msgstr "" +#: ui_config.cc:137 +msgid "cannot read ui configuration file \"%1\"" +msgstr "" + #: ui_config.cc:142 msgid "user ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -6839,19 +11657,23 @@ msgstr "" msgid "Config file %1 not saved" msgstr "" -#: utils.cc:110 utils.cc:153 +#: utils.cc:111 utils.cc:154 msgid "bad XPM header %1" msgstr "" -#: utils.cc:292 utils.cc:324 +#: utils.cc:293 utils.cc:325 msgid "missing RGBA style for \"%1\"" msgstr "" -#: utils.cc:591 +#: utils.cc:598 msgid "cannot find XPM file for %1" msgstr "" -#: utils.cc:632 +#: utils.cc:624 +msgid "cannot find icon image for %1 using %2" +msgstr "" + +#: utils.cc:639 msgid "Caught exception while loading icon named %1" msgstr "" @@ -6859,6 +11681,14 @@ msgstr "" msgid "VerboseCanvasCursor" msgstr "" +#: add_video_dialog.cc:55 +msgid "Set Video Track" +msgstr "" + +#: add_video_dialog.cc:63 +msgid "Launch External Video Monitor" +msgstr "" + #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -6871,6 +11701,22 @@ msgstr "" msgid "VideoServerIndex" msgstr "" +#: add_video_dialog.cc:129 +msgid "Video files" +msgstr "" + +#: add_video_dialog.cc:164 +msgid "Video Information" +msgstr "" + +#: add_video_dialog.cc:167 +msgid "Start:" +msgstr "" + +#: add_video_dialog.cc:173 +msgid "Frame rate:" +msgstr "" + #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -6916,6 +11762,10 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" +#: video_monitor.cc:281 +msgid "Video Monitor: File Not Found." +msgstr "" + #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -6932,79 +11782,119 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:61 export_video_dialog.cc:73 +#: transcode_video_dialog.cc:55 +msgid "Transcode/Import Video File " +msgstr "" + +#: transcode_video_dialog.cc:57 +msgid "Output File:" +msgstr "" + +#: transcode_video_dialog.cc:60 export_video_dialog.cc:72 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:66 +#: transcode_video_dialog.cc:62 +msgid "Height = " +msgstr "" + +#: transcode_video_dialog.cc:65 msgid "Manual Override" msgstr "" -#: transcode_video_dialog.cc:70 export_video_dialog.cc:89 +#: transcode_video_dialog.cc:69 export_video_dialog.cc:88 msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:113 +#: transcode_video_dialog.cc:106 +msgid "File Information" +msgstr "" + +#: transcode_video_dialog.cc:112 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: transcode_video_dialog.cc:120 +#: transcode_video_dialog.cc:119 msgid "" "File-info can not be read. Most likely '%1' is not a valid video-file or an " "unsupported video codec or format." msgstr "" -#: transcode_video_dialog.cc:134 +#: transcode_video_dialog.cc:133 msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:138 +#: transcode_video_dialog.cc:135 +msgid "Duration:" +msgstr "" + +#: transcode_video_dialog.cc:137 msgid "Codec:" msgstr "" -#: transcode_video_dialog.cc:140 +#: transcode_video_dialog.cc:139 msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:155 +#: transcode_video_dialog.cc:154 msgid "??" msgstr "" -#: transcode_video_dialog.cc:181 +#: transcode_video_dialog.cc:175 +msgid "Import Settings" +msgstr "" + +#: transcode_video_dialog.cc:180 msgid "Do Not Import Video" msgstr "" -#: transcode_video_dialog.cc:182 +#: transcode_video_dialog.cc:181 msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:198 +#: transcode_video_dialog.cc:183 +msgid "Import/Transcode Video to Session" +msgstr "" + +#: transcode_video_dialog.cc:197 msgid "Scale Video: Width = " msgstr "" -#: transcode_video_dialog.cc:205 +#: transcode_video_dialog.cc:204 msgid "Original Width" msgstr "" -#: transcode_video_dialog.cc:220 +#: transcode_video_dialog.cc:219 msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:348 +#: transcode_video_dialog.cc:224 +msgid "Extract Audio:" +msgstr "" + +#: transcode_video_dialog.cc:344 +msgid "Extracting Audio.." +msgstr "" + +#: transcode_video_dialog.cc:347 msgid "Audio Extraction Failed." msgstr "" -#: transcode_video_dialog.cc:374 +#: transcode_video_dialog.cc:373 msgid "Transcoding Video.." msgstr "" -#: transcode_video_dialog.cc:408 +#: transcode_video_dialog.cc:407 msgid "Transcoding Failed." msgstr "" +#: transcode_video_dialog.cc:490 +msgid "Save Transcoded Video File" +msgstr "" + #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -7032,11 +11922,19 @@ msgstr "" msgid "Listen Address:" msgstr "" +#: video_server_dialog.cc:125 +msgid "Listen Port:" +msgstr "" + +#: video_server_dialog.cc:130 +msgid "Cache Size:" +msgstr "" + #: video_server_dialog.cc:136 msgid "" -"%1 relies on an external Video Server for the videotimeline.\n" -"The server configured in Edit -> Prefereces -> Video is not reachable.\n" -"Do you want ardour to launch 'harvid' on this machine?" +"%1 relies on an external video server for the videotimeline.\n" +"The server configured in Edit -> Preferences -> Video is not reachable.\n" +"Do you want %1 to launch 'harvid' on this machine?" msgstr "" #: video_server_dialog.cc:176 @@ -7061,79 +11959,187 @@ msgstr "" msgid "Continue" msgstr "" -#: export_video_dialog.cc:74 +#: utils_videotl.cc:63 +msgid "Confirm Overwrite" +msgstr "" + +#: utils_videotl.cc:64 +msgid "A file with the same name already exists. Do you want to overwrite it?" +msgstr "" + +#: utils_videotl.cc:74 utils_videotl.cc:90 +msgid "Cannot create video folder \"%1\" (%2)" +msgstr "" + +#: export_video_dialog.cc:65 +msgid "Export Video File " +msgstr "" + +#: export_video_dialog.cc:69 +msgid "Video:" +msgstr "" + +#: export_video_dialog.cc:73 msgid "Scale Video (W x H):" msgstr "" -#: export_video_dialog.cc:79 +#: export_video_dialog.cc:78 msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:81 +#: export_video_dialog.cc:79 +msgid "Normalize Audio" +msgstr "" + +#: export_video_dialog.cc:80 msgid "2 Pass Encoding" msgstr "" -#: export_video_dialog.cc:82 +#: export_video_dialog.cc:81 msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:85 +#: export_video_dialog.cc:83 +msgid "Deinterlace" +msgstr "" + +#: export_video_dialog.cc:84 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" -#: export_video_dialog.cc:86 +#: export_video_dialog.cc:85 msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:107 +#: export_video_dialog.cc:86 +msgid "Include Session Metadata" +msgstr "" + +#: export_video_dialog.cc:106 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: export_video_dialog.cc:145 +#: export_video_dialog.cc:116 +msgid "Output:" +msgstr "" + +#: export_video_dialog.cc:126 +msgid "Input:" +msgstr "" + +#: export_video_dialog.cc:137 +msgid "Audio:" +msgstr "" + +#: export_video_dialog.cc:139 +msgid "Master Bus" +msgstr "" + +#: export_video_dialog.cc:144 msgid "from the %1 session's start to the session's end" msgstr "" -#: export_video_dialog.cc:149 +#: export_video_dialog.cc:148 msgid "from 00:00:00:00 to the video's end" msgstr "" -#: export_video_dialog.cc:151 +#: export_video_dialog.cc:150 msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:494 +#: export_video_dialog.cc:153 +msgid "Selected range" +msgstr "" + +#: export_video_dialog.cc:193 +msgid "Settings:" +msgstr "" + +#: export_video_dialog.cc:201 +msgid "Range:" +msgstr "" + +#: export_video_dialog.cc:204 +msgid "Preset:" +msgstr "" + +#: export_video_dialog.cc:207 +msgid "Video Codec:" +msgstr "" + +#: export_video_dialog.cc:210 +msgid "Video KBit/s:" +msgstr "" + +#: export_video_dialog.cc:213 +msgid "Audio Codec:" +msgstr "" + +#: export_video_dialog.cc:216 +msgid "Audio KBit/s:" +msgstr "" + +#: export_video_dialog.cc:219 +msgid "Audio Samplerate:" +msgstr "" + +#: export_video_dialog.cc:395 +msgid "Normalizing audio" +msgstr "" + +#: export_video_dialog.cc:399 +msgid "Exporting audio" +msgstr "" + +#: export_video_dialog.cc:445 +msgid "Exporting Audio..." +msgstr "" + +#: export_video_dialog.cc:502 msgid "" "Export Video: Cannot query duration of video-file, using duration from " "timeline instead." msgstr "" -#: export_video_dialog.cc:523 +#: export_video_dialog.cc:532 +msgid "Export Video: export-range does not include video." +msgstr "" + +#: export_video_dialog.cc:544 msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" -#: export_video_dialog.cc:562 +#: export_video_dialog.cc:583 msgid "Encoding Video..." msgstr "" -#: export_video_dialog.cc:581 +#: export_video_dialog.cc:602 msgid "Export Video: Video input file cannot be read." msgstr "" -#: export_video_dialog.cc:679 +#: export_video_dialog.cc:695 msgid "Encoding Video.. Pass 1/2" msgstr "" -#: export_video_dialog.cc:691 +#: export_video_dialog.cc:707 msgid "Encoding Video.. Pass 2/2" msgstr "" -#: export_video_dialog.cc:779 +#: export_video_dialog.cc:814 msgid "Transcoding failed." msgstr "" +#: export_video_dialog.cc:983 export_video_dialog.cc:1003 +msgid "Save Exported Video File" +msgstr "" + +#: export_video_infobox.cc:30 +msgid "Video Export Info" +msgstr "" + #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -7150,3 +12156,22 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" + +#~ msgid "disconnected" +#~ msgstr "desligado" + +#~ msgid "Unable to start the session running" +#~ msgstr "Não foi possível iniciar a sessão corrente" + +#~ msgid "Could not disconnect from JACK" +#~ msgstr "Não foi possível desligar do serviço JACK" + +#~ msgid "Could not reconnect to JACK" +#~ msgstr "Não foi possível ligar ao serviço JACK" + +#~ msgid "Reconnect" +#~ msgstr "Religar" + +#~ msgid "Not connected to JACK - no I/O changes are possible" +#~ msgstr "" +#~ "Desligado do JACK - não são possíveis alterações nas entradas/saídas" diff --git a/gtk2_ardour/po/ru.po b/gtk2_ardour/po/ru.po index ff6a51e8d8..50537046be 100644 --- a/gtk2_ardour/po/ru.po +++ b/gtk2_ardour/po/ru.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Ardour 3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-10-15 21:42+0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2013-10-15 23:24+0300\n" "Last-Translator: ÐлекÑандр Прокудин \n" "Language-Team: руÑÑкий <>\n" @@ -464,22 +464,22 @@ msgid "Group:" msgstr "Группа:" #: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 -#: ardour_ui_ed.cc:476 engine_dialog.cc:238 rc_option_editor.cc:1454 -#: rc_option_editor.cc:1456 rc_option_editor.cc:1458 rc_option_editor.cc:1474 -#: rc_option_editor.cc:1476 rc_option_editor.cc:1484 rc_option_editor.cc:1486 -#: rc_option_editor.cc:1504 rc_option_editor.cc:1517 rc_option_editor.cc:1519 -#: rc_option_editor.cc:1521 rc_option_editor.cc:1552 rc_option_editor.cc:1554 -#: rc_option_editor.cc:1556 rc_option_editor.cc:1564 rc_option_editor.cc:1572 -#: rc_option_editor.cc:1580 +#: ardour_ui_ed.cc:476 engine_dialog.cc:236 rc_option_editor.cc:1446 +#: rc_option_editor.cc:1448 rc_option_editor.cc:1450 rc_option_editor.cc:1466 +#: rc_option_editor.cc:1468 rc_option_editor.cc:1476 rc_option_editor.cc:1478 +#: rc_option_editor.cc:1496 rc_option_editor.cc:1509 rc_option_editor.cc:1511 +#: rc_option_editor.cc:1513 rc_option_editor.cc:1544 rc_option_editor.cc:1546 +#: rc_option_editor.cc:1548 rc_option_editor.cc:1556 rc_option_editor.cc:1564 +#: rc_option_editor.cc:1572 msgid "Audio" msgstr "Audio" #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 -#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1703 -#: rc_option_editor.cc:1711 rc_option_editor.cc:1719 rc_option_editor.cc:1728 -#: rc_option_editor.cc:1736 rc_option_editor.cc:1744 rc_option_editor.cc:1752 -#: rc_option_editor.cc:1761 rc_option_editor.cc:1770 rc_option_editor.cc:1779 -#: rc_option_editor.cc:1787 rc_option_editor.cc:1795 +#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1695 +#: rc_option_editor.cc:1703 rc_option_editor.cc:1711 rc_option_editor.cc:1720 +#: rc_option_editor.cc:1728 rc_option_editor.cc:1736 rc_option_editor.cc:1744 +#: rc_option_editor.cc:1753 rc_option_editor.cc:1762 rc_option_editor.cc:1771 +#: rc_option_editor.cc:1779 rc_option_editor.cc:1787 msgid "MIDI" msgstr "MIDI" @@ -651,86 +651,86 @@ msgstr "Повторно проанализировать данные" msgid "button cannot watch state of non-existing Controllable\n" msgstr "" -#: ardour_ui.cc:179 +#: ardour_ui.cc:180 msgid "audition" msgstr "проÑлушивание" -#: ardour_ui.cc:180 +#: ardour_ui.cc:181 msgid "solo" msgstr "Ñолирование" -#: ardour_ui.cc:181 +#: ardour_ui.cc:182 msgid "feedback" msgstr "отклик" -#: ardour_ui.cc:186 speaker_dialog.cc:36 +#: ardour_ui.cc:187 speaker_dialog.cc:36 msgid "Speaker Configuration" msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð³Ñ€Ð¾Ð¼ÐºÐ¾Ð³Ð¾Ð²Ð¾Ñ€Ð¸Ñ‚ÐµÐ»ÐµÐ¹" -#: ardour_ui.cc:187 theme_manager.cc:56 theme_manager.cc:64 +#: ardour_ui.cc:188 theme_manager.cc:56 theme_manager.cc:64 msgid "Theme Manager" msgstr "Стиль оформлениÑ" -#: ardour_ui.cc:188 keyeditor.cc:53 +#: ardour_ui.cc:189 keyeditor.cc:53 msgid "Key Bindings" msgstr "Клавиатурные комбинации" -#: ardour_ui.cc:189 +#: ardour_ui.cc:190 msgid "Preferences" msgstr "Параметры" -#: ardour_ui.cc:190 ardour_ui.cc:196 +#: ardour_ui.cc:191 ardour_ui.cc:197 msgid "Add Tracks/Busses" msgstr "Добавить дорожки/шины" -#: ardour_ui.cc:191 +#: ardour_ui.cc:192 msgid "About" msgstr "О программе" -#: ardour_ui.cc:192 location_ui.cc:1146 +#: ardour_ui.cc:193 location_ui.cc:1146 msgid "Locations" msgstr "Позиции" -#: ardour_ui.cc:193 route_params_ui.cc:58 route_params_ui.cc:606 +#: ardour_ui.cc:194 route_params_ui.cc:58 route_params_ui.cc:606 msgid "Tracks and Busses" msgstr "Дорожки и шины" -#: ardour_ui.cc:194 engine_dialog.cc:67 +#: ardour_ui.cc:195 engine_dialog.cc:67 msgid "Audio/MIDI Setup" msgstr "ÐаÑтройка звука и MIDI" -#: ardour_ui.cc:195 +#: ardour_ui.cc:196 msgid "Properties" msgstr "СвойÑтва" -#: ardour_ui.cc:197 bundle_manager.cc:263 +#: ardour_ui.cc:198 bundle_manager.cc:263 msgid "Bundle Manager" msgstr "Управление пакетами" -#: ardour_ui.cc:198 big_clock_window.cc:35 +#: ardour_ui.cc:199 big_clock_window.cc:35 msgid "Big Clock" msgstr "Большой Ñчётчик" -#: ardour_ui.cc:199 +#: ardour_ui.cc:200 msgid "Audio Connections" msgstr "Звуковые ÑоединениÑ" -#: ardour_ui.cc:200 +#: ardour_ui.cc:201 msgid "MIDI Connections" msgstr "Ð¡Ð¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ MIDI" -#: ardour_ui.cc:202 +#: ardour_ui.cc:203 msgid "Errors" msgstr "Ошибки" -#: ardour_ui.cc:435 +#: ardour_ui.cc:436 msgid "" "The audio backend was shutdown because:\n" "\n" "%1" msgstr "" -#: ardour_ui.cc:437 +#: ardour_ui.cc:438 msgid "" "The audio backend has either been shutdown or it\n" "disconnected %1 because %1\n" @@ -742,11 +742,27 @@ msgstr "" "работал недоÑтаточно быÑтро. Попробуйте Ñнова\n" "запуÑтить подÑиÑтему и Ñохранить ÑеанÑ." -#: ardour_ui.cc:826 startup.cc:379 +#: ardour_ui.cc:758 +msgid "NSM server did not announce itself" +msgstr "" + +#: ardour_ui.cc:771 +msgid "NSM: no client ID provided" +msgstr "" + +#: ardour_ui.cc:778 +msgid "NSM: no session created" +msgstr "" + +#: ardour_ui.cc:801 +msgid "NSM: initialization failed" +msgstr "" + +#: ardour_ui.cc:840 startup.cc:379 msgid "%1 is ready for use" msgstr "%1 готов к работе" -#: ardour_ui.cc:875 +#: ardour_ui.cc:882 msgid "" "WARNING: Your system has a limit for maximum amount of locked memory. This " "might cause %1 to run out of memory before your system runs out of memory. \n" @@ -761,23 +777,23 @@ msgstr "" "Ð’Ñ‹ можете узнать уÑтановленный предел при помощи команды 'ulimit -l'. Обычно " "Ñто контролируетÑÑ Ð² %2." -#: ardour_ui.cc:892 +#: ardour_ui.cc:899 msgid "Do not show this window again" msgstr "Больше не показывать Ñто окно" -#: ardour_ui.cc:934 +#: ardour_ui.cc:943 msgid "Don't quit" msgstr "Ðе выходить" -#: ardour_ui.cc:935 +#: ardour_ui.cc:944 msgid "Just quit" msgstr "ПроÑто выйти" -#: ardour_ui.cc:936 +#: ardour_ui.cc:945 msgid "Save and quit" msgstr "Сохранить и выйти" -#: ardour_ui.cc:946 +#: ardour_ui.cc:955 msgid "" "%1 was unable to save your session.\n" "\n" @@ -792,15 +808,15 @@ msgstr "" "\n" "«ПроÑто выйти»." -#: ardour_ui.cc:977 +#: ardour_ui.cc:986 msgid "Please wait while %1 cleans up..." msgstr "ДождитеÑÑŒ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ Ð¿Ð¾Ð´Ñ‡Ð¸Ñтки ÑеанÑа в %1..." -#: ardour_ui.cc:995 +#: ardour_ui.cc:1004 msgid "Unsaved Session" msgstr "Ð¡ÐµÐ°Ð½Ñ Ð½Ðµ Ñохранён" -#: ardour_ui.cc:1016 +#: ardour_ui.cc:1025 msgid "" "The session \"%1\"\n" "has not been saved.\n" @@ -818,7 +834,7 @@ msgstr "" "\n" "Что вы хотите Ñделать?" -#: ardour_ui.cc:1019 +#: ardour_ui.cc:1028 msgid "" "The snapshot \"%1\"\n" "has not been saved.\n" @@ -836,75 +852,75 @@ msgstr "" "\n" "Что вы хотите Ñделать?" -#: ardour_ui.cc:1033 +#: ardour_ui.cc:1042 msgid "Prompter" msgstr "" -#: ardour_ui.cc:1119 ardour_ui.cc:1127 +#: ardour_ui.cc:1128 ardour_ui.cc:1136 #, c-format msgid "Audio: none" msgstr "Звук: нет" -#: ardour_ui.cc:1131 +#: ardour_ui.cc:1140 #, c-format msgid "Audio: %.1f kHz / %4.1f ms" msgstr "Звук: %.1f КГц / %4.1f мÑ" -#: ardour_ui.cc:1135 +#: ardour_ui.cc:1144 #, c-format msgid "Audio: % kHz / %4.1f ms" msgstr "Звук: % КГц / %4.1f мÑ" -#: ardour_ui.cc:1153 export_video_dialog.cc:67 +#: ardour_ui.cc:1162 export_video_dialog.cc:67 msgid "File:" msgstr "Файл:" -#: ardour_ui.cc:1157 +#: ardour_ui.cc:1166 msgid "BWF" msgstr "BWF" -#: ardour_ui.cc:1160 +#: ardour_ui.cc:1169 msgid "WAV" msgstr "WAV" -#: ardour_ui.cc:1163 +#: ardour_ui.cc:1172 msgid "WAV64" msgstr "WAV64" -#: ardour_ui.cc:1166 session_option_editor.cc:197 +#: ardour_ui.cc:1175 session_option_editor.cc:197 msgid "CAF" msgstr "CAF" -#: ardour_ui.cc:1169 +#: ardour_ui.cc:1178 msgid "AIFF" msgstr "AIFF" -#: ardour_ui.cc:1172 +#: ardour_ui.cc:1181 msgid "iXML" msgstr "iXML" -#: ardour_ui.cc:1175 +#: ardour_ui.cc:1184 msgid "RF64" msgstr "RF64" -#: ardour_ui.cc:1183 +#: ardour_ui.cc:1192 msgid "32-float" msgstr "32-float" -#: ardour_ui.cc:1186 +#: ardour_ui.cc:1195 msgid "24-int" msgstr "24-int" -#: ardour_ui.cc:1189 +#: ardour_ui.cc:1198 msgid "16-int" msgstr "16-int" -#: ardour_ui.cc:1208 +#: ardour_ui.cc:1217 #, c-format msgid "DSP: %5.1f%%" msgstr "ЦП: %5.1f%%" -#: ardour_ui.cc:1227 +#: ardour_ui.cc:1236 #, c-format msgid "" "Buffers: p:" @@ -915,34 +931,34 @@ msgstr "" "%% c:" "%%%" -#: ardour_ui.cc:1268 +#: ardour_ui.cc:1277 msgid "Disk: Unknown" msgstr "Ðа диÑке: неизвеÑтно" -#: ardour_ui.cc:1270 +#: ardour_ui.cc:1279 msgid "Disk: 24hrs+" msgstr "Ðа диÑке: 24ч+" -#: ardour_ui.cc:1288 +#: ardour_ui.cc:1297 msgid "Disk: >24 hrs" msgstr "Ðа диÑке: >24ч" -#: ardour_ui.cc:1299 +#: ardour_ui.cc:1308 #, c-format msgid "Disk: %02dh:%02dm:%02ds" msgstr "Ðа диÑке: %02dч:%02dм:%02dÑ" -#: ardour_ui.cc:1325 +#: ardour_ui.cc:1334 #, c-format msgid "Timecode|TC: %s" msgstr "ТК: %s" -#: ardour_ui.cc:1442 ardour_ui.cc:1451 session_dialog.cc:322 +#: ardour_ui.cc:1451 ardour_ui.cc:1460 session_dialog.cc:322 #: session_dialog.cc:327 msgid "Recent Sessions" msgstr "Ðедавние ÑеанÑÑ‹" -#: ardour_ui.cc:1530 +#: ardour_ui.cc:1539 msgid "" "%1 is not connected to any audio backend.\n" "You cannot open or close sessions in this condition" @@ -950,27 +966,27 @@ msgstr "" "%1 не Ñоединен Ñ ÐºÐ°ÐºÐ¾Ð¹-либо звуковой подÑиÑтемой.\n" "Открытие и закрытие ÑеанÑов невозможно." -#: ardour_ui.cc:1554 +#: ardour_ui.cc:1563 msgid "Open Session" msgstr "Открыть ÑеанÑ" -#: ardour_ui.cc:1579 session_dialog.cc:353 session_import_dialog.cc:169 +#: ardour_ui.cc:1588 session_dialog.cc:353 session_import_dialog.cc:169 #: session_metadata_dialog.cc:729 msgid "%1 sessions" msgstr "CеанÑÑ‹ %1" -#: ardour_ui.cc:1616 +#: ardour_ui.cc:1625 msgid "You cannot add a track without a session already loaded." msgstr "Ð’Ñ‹ не можете добавить дорожку без загруженного ÑеанÑа." -#: ardour_ui.cc:1624 +#: ardour_ui.cc:1633 msgid "could not create %1 new mixed track" msgid_plural "could not create %1 new mixed tracks" msgstr[0] "Ðе удалоÑÑŒ Ñоздать %1 новую Ñмешанную дорожку" msgstr[1] "Ðе удалоÑÑŒ Ñоздать %1 новых Ñмешанных дорожки" msgstr[2] "Ðе удалоÑÑŒ Ñоздать %1 новых Ñмешанных дорожек" -#: ardour_ui.cc:1630 ardour_ui.cc:1691 +#: ardour_ui.cc:1639 ardour_ui.cc:1700 msgid "" "There are insufficient JACK ports available\n" "to create a new track or bus.\n" @@ -982,25 +998,25 @@ msgstr "" "Ðеобходимо Ñохранить %1, выйти и запуÑтить\n" "JACK Ñ ÑƒÐ²ÐµÐ»Ð¸Ñ‡ÐµÐ½Ð½Ñ‹Ð¼ количеÑтвом портов." -#: ardour_ui.cc:1665 +#: ardour_ui.cc:1674 msgid "You cannot add a track or bus without a session already loaded." msgstr "Ð’Ñ‹ не можете добавить дорожку или шину без открытого ÑеанÑа." -#: ardour_ui.cc:1674 +#: ardour_ui.cc:1683 msgid "could not create %1 new audio track" msgid_plural "could not create %1 new audio tracks" msgstr[0] "Ðе удалоÑÑŒ Ñоздать %1 новую звуковую дорожку" msgstr[1] "Ðе удалоÑÑŒ Ñоздать %2 новых звуковых дорожки" msgstr[2] "Ðе удалоÑÑŒ Ñоздать %2 новых звуковых дорожек" -#: ardour_ui.cc:1683 +#: ardour_ui.cc:1692 msgid "could not create %1 new audio bus" msgid_plural "could not create %1 new audio busses" msgstr[0] "Ðе удалоÑÑŒ Ñоздать %1 новую звуковую шину" msgstr[1] "Ðе удалоÑÑŒ Ñоздать %1 новых звуковых шины" msgstr[2] "Ðе удалоÑÑŒ Ñоздать %1 новых звуковых шин" -#: ardour_ui.cc:1807 +#: ardour_ui.cc:1816 msgid "" "Please create one or more tracks before trying to record.\n" "You can do this with the \"Add Track or Bus\" option in the Session menu." @@ -1009,15 +1025,15 @@ msgstr "" "как пытатьÑÑ Ñ‡Ñ‚Ð¾-либо запиÑать.\n" "ИÑпользуйте меню Â«Ð¡ÐµÐ°Ð½Ñ > Добавить дорожку/шину»." -#: ardour_ui.cc:2184 +#: ardour_ui.cc:2193 msgid "Take Snapshot" msgstr "Создать Ñнимок" -#: ardour_ui.cc:2185 +#: ardour_ui.cc:2194 msgid "Name of new snapshot" msgstr "Ðазвание нового Ñнимка" -#: ardour_ui.cc:2209 +#: ardour_ui.cc:2218 msgid "" "To ensure compatibility with various systems\n" "snapshot names may not contain a '%1' character" @@ -1025,27 +1041,27 @@ msgstr "" "Ð”Ð»Ñ Ð¾Ð±ÐµÑÐ¿ÐµÑ‡ÐµÐ½Ð¸Ñ ÑовмеÑтимоÑти Ñ Ñ€Ð°Ð·Ð»Ð¸Ñ‡Ð½Ñ‹Ð¼Ð¸ ÑиÑтемами\n" "Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ñ Ñнимков не могут Ñодержать Ñимвол '%1'." -#: ardour_ui.cc:2221 +#: ardour_ui.cc:2230 msgid "Confirm Snapshot Overwrite" msgstr "Подтвердите перезапиÑÑŒ Ñнимка" -#: ardour_ui.cc:2222 +#: ardour_ui.cc:2231 msgid "A snapshot already exists with that name. Do you want to overwrite it?" msgstr "Снимок Ñ Ñ‚Ð°ÐºÐ¸Ð¼ названием уже еÑть. ПерезапиÑать его?" -#: ardour_ui.cc:2225 utils_videotl.cc:67 +#: ardour_ui.cc:2234 utils_videotl.cc:67 msgid "Overwrite" msgstr "ПерезапиÑать" -#: ardour_ui.cc:2259 +#: ardour_ui.cc:2268 msgid "Rename Session" msgstr "Переименовать ÑеанÑ" -#: ardour_ui.cc:2260 +#: ardour_ui.cc:2269 msgid "New session name" msgstr "Ðовое название ÑеанÑа" -#: ardour_ui.cc:2274 ardour_ui.cc:2675 ardour_ui.cc:2713 +#: ardour_ui.cc:2283 ardour_ui.cc:2684 ardour_ui.cc:2722 msgid "" "To ensure compatibility with various systems\n" "session names may not contain a '%1' character" @@ -1053,12 +1069,12 @@ msgstr "" "Ð”Ð»Ñ Ð¾Ð±ÐµÑÐ¿ÐµÑ‡ÐµÐ½Ð¸Ñ ÑовмеÑтимоÑти Ñ Ñ€Ð°Ð·Ð»Ð¸Ñ‡Ð½Ñ‹Ð¼Ð¸ ÑиÑтемами\n" "Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ñ ÑеанÑов не могут Ñодержать Ñимвол '%1'." -#: ardour_ui.cc:2282 +#: ardour_ui.cc:2291 msgid "" "That name is already in use by another directory/folder. Please try again." msgstr "" -#: ardour_ui.cc:2291 +#: ardour_ui.cc:2300 msgid "" "Renaming this session failed.\n" "Things could be seriously messed up at this point" @@ -1066,19 +1082,19 @@ msgstr "" "Ðе удалоÑÑŒ переименовать Ñтот ÑеанÑ.\n" "Очень может быть, что вÑÑ‘ иÑпортилоÑÑŒ." -#: ardour_ui.cc:2402 +#: ardour_ui.cc:2411 msgid "Save Template" msgstr "Сохранить шаблон" -#: ardour_ui.cc:2403 +#: ardour_ui.cc:2412 msgid "Name for template:" msgstr "Ðазвание шаблона:" -#: ardour_ui.cc:2404 +#: ardour_ui.cc:2413 msgid "-template" msgstr "-шаблон" -#: ardour_ui.cc:2442 +#: ardour_ui.cc:2451 msgid "" "This session\n" "%1\n" @@ -1088,35 +1104,35 @@ msgstr "" "%1\n" "уже ÑущеÑтвует. Открыть его?" -#: ardour_ui.cc:2452 +#: ardour_ui.cc:2461 msgid "Open Existing Session" msgstr "Открыть ÑущеÑтвующий ÑеанÑ" -#: ardour_ui.cc:2703 +#: ardour_ui.cc:2712 msgid "There is no existing session at \"%1\"" msgstr "По адреÑу \"%1\" не ÑущеÑтвующего ÑеанÑа" -#: ardour_ui.cc:2795 +#: ardour_ui.cc:2804 msgid "Please wait while %1 loads your session" msgstr "ДождитеÑÑŒ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ Ð·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ¸ ÑеанÑа в %1" -#: ardour_ui.cc:2810 +#: ardour_ui.cc:2819 msgid "Port Registration Error" msgstr "Ошибка региÑтрации порта" -#: ardour_ui.cc:2811 +#: ardour_ui.cc:2820 msgid "Click the Close button to try again." msgstr "Щелкните кнопку «Закрыть» Ð´Ð»Ñ Ð²Ð¾Ð·Ð²Ñ€Ð°Ñ‚Ð° к предыдущему диалогу." -#: ardour_ui.cc:2832 +#: ardour_ui.cc:2841 msgid "Session \"%1 (snapshot %2)\" did not load successfully" msgstr "Ðе удалоÑÑŒ загрузить ÑÐµÐ°Ð½Ñ \"%1 (Ñнимок %2)\"" -#: ardour_ui.cc:2839 +#: ardour_ui.cc:2848 msgid "Loading Error" msgstr "Ошибка при загрузке" -#: ardour_ui.cc:2858 +#: ardour_ui.cc:2867 msgid "" "This session has been opened in read-only mode.\n" "\n" @@ -1126,24 +1142,24 @@ msgstr "" "\n" "Ð’Ñ‹ не Ñможете запиÑывать или ÑохранÑть." -#: ardour_ui.cc:2864 +#: ardour_ui.cc:2873 msgid "Read-only Session" msgstr "Ð¡ÐµÐ°Ð½Ñ Ð² режиме чтениÑ" -#: ardour_ui.cc:2922 +#: ardour_ui.cc:2931 msgid "Could not create session in \"%1\"" msgstr "Ðе удалоÑÑŒ Ñоздать ÑÐµÐ°Ð½Ñ Â«%1»" -#: ardour_ui.cc:3022 +#: ardour_ui.cc:3031 msgid "No files were ready for clean-up" msgstr "Ðет готовых к удалению звуковых файлов" -#: ardour_ui.cc:3026 ardour_ui.cc:3036 ardour_ui.cc:3169 ardour_ui.cc:3176 +#: ardour_ui.cc:3035 ardour_ui.cc:3045 ardour_ui.cc:3178 ardour_ui.cc:3185 #: ardour_ui_ed.cc:104 msgid "Clean-up" msgstr "ОчиÑтить" -#: ardour_ui.cc:3027 +#: ardour_ui.cc:3036 msgid "" "If this seems suprising, \n" "check for any existing snapshots.\n" @@ -1155,19 +1171,19 @@ msgstr "" "Они могут включать облаÑти, которым\n" "нужны неиÑпользуемые файлы." -#: ardour_ui.cc:3086 +#: ardour_ui.cc:3095 msgid "kilo" msgstr "кило" -#: ardour_ui.cc:3089 +#: ardour_ui.cc:3098 msgid "mega" msgstr "мега" -#: ardour_ui.cc:3092 +#: ardour_ui.cc:3101 msgid "giga" msgstr "гига" -#: ardour_ui.cc:3097 +#: ardour_ui.cc:3106 msgid "" "The following file was deleted from %2,\n" "releasing %3 %4bytes of disk space" @@ -1187,7 +1203,7 @@ msgstr[2] "" "оÑвободив при Ñтом %3 %4байт\n" "диÑкового проÑтранÑтва." -#: ardour_ui.cc:3104 +#: ardour_ui.cc:3113 msgid "" "The following file was not in use and \n" "has been moved to: %2\n" @@ -1234,11 +1250,11 @@ msgstr[2] "" "\n" "дополнительно оÑвободит %3 %4байт диÑкового проÑтранÑтва.\n" -#: ardour_ui.cc:3164 +#: ardour_ui.cc:3173 msgid "Are you sure you want to clean-up?" msgstr "Ð’Ñ‹ уверены, что хотите выполнить очиÑтку?" -#: ardour_ui.cc:3171 +#: ardour_ui.cc:3180 msgid "" "Clean-up is a destructive operation.\n" "ALL undo/redo information will be lost if you clean-up.\n" @@ -1249,81 +1265,81 @@ msgstr "" "неиÑпользуемые звуковые файлы\n" "будут перемещены в «мертвую» зону." -#: ardour_ui.cc:3179 +#: ardour_ui.cc:3188 msgid "CleanupDialog" msgstr "ОчиÑтка" -#: ardour_ui.cc:3209 +#: ardour_ui.cc:3218 msgid "Cleaned Files" msgstr "Очищенные файлы" -#: ardour_ui.cc:3226 +#: ardour_ui.cc:3235 msgid "deleted file" msgstr "удалён файл" -#: ardour_ui.cc:3318 +#: ardour_ui.cc:3381 msgid "" "Video-Server was not launched by Ardour. The request to stop it is ignored." msgstr "" "ВидеоÑервер не был запущен Ardour. Ð—Ð°Ð¿Ñ€Ð¾Ñ Ð½Ð° его оÑтановку проигнорирован." -#: ardour_ui.cc:3322 +#: ardour_ui.cc:3385 msgid "Stop Video-Server" msgstr "ОÑтановить видеоÑервер" -#: ardour_ui.cc:3323 +#: ardour_ui.cc:3386 msgid "Do you really want to stop the Video Server?" msgstr "Ð’Ñ‹ дейÑтвительно хотите оÑтановить видеоÑервер?" -#: ardour_ui.cc:3326 +#: ardour_ui.cc:3389 msgid "Yes, Stop It" msgstr "Да, оÑтановить" -#: ardour_ui.cc:3352 +#: ardour_ui.cc:3415 msgid "The Video Server is already started." msgstr "" -#: ardour_ui.cc:3354 +#: ardour_ui.cc:3417 msgid "" "An external Video Server is configured and can be reached. Not starting a " "new instance." msgstr "" -#: ardour_ui.cc:3362 ardour_ui.cc:3452 +#: ardour_ui.cc:3425 ardour_ui.cc:3515 msgid "" "Could not connect to the Video Server. Start it or configure its access URL " "in Edit -> Preferences." msgstr "" -#: ardour_ui.cc:3386 +#: ardour_ui.cc:3449 msgid "Specified docroot is not an existing directory." msgstr "" -#: ardour_ui.cc:3391 +#: ardour_ui.cc:3454 msgid "Given Video Server is not an executable file." msgstr "" -#: ardour_ui.cc:3424 +#: ardour_ui.cc:3487 msgid "Cannot launch the video-server" msgstr "Ðе удалоÑÑŒ запуÑтить видеоÑервер" -#: ardour_ui.cc:3433 +#: ardour_ui.cc:3496 msgid "Video-server was started but does not respond to requests..." msgstr "" -#: ardour_ui.cc:3478 editor_audio_import.cc:632 +#: ardour_ui.cc:3541 editor_audio_import.cc:632 msgid "could not open %1" msgstr "не удалоÑÑŒ открыть %1" -#: ardour_ui.cc:3482 +#: ardour_ui.cc:3545 msgid "no video-file selected" msgstr "" -#: ardour_ui.cc:3654 +#: ardour_ui.cc:3717 msgid "Recording was stopped because your system could not keep up." msgstr "ЗапиÑÑŒ оÑтановлена из-за недоÑтаточного быÑтродейÑÑ‚Ð²Ð¸Ñ ÑиÑтемы" -#: ardour_ui.cc:3683 +#: ardour_ui.cc:3746 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1337,7 +1353,7 @@ msgstr "" "Ð’ чаÑтноÑти ей не удалоÑÑŒ запиÑать данные на диÑк\n" "доÑтаточно быÑтро Ð´Ð»Ñ Ñ„Ð¸ÐºÑации захваченных данных.\n" -#: ardour_ui.cc:3702 +#: ardour_ui.cc:3765 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1351,11 +1367,11 @@ msgstr "" "Ð’ чаÑтноÑти ей не удалоÑÑŒ прочитать данные\n" "Ñ Ð´Ð¸Ñка доÑтаточно быÑтро Ð´Ð»Ñ Ð²Ð¾ÑпроизведениÑ.\n" -#: ardour_ui.cc:3742 +#: ardour_ui.cc:3805 msgid "Crash Recovery" msgstr "ВоÑÑтановление данных" -#: ardour_ui.cc:3743 +#: ardour_ui.cc:3806 msgid "" "This session appears to have been in the\n" "middle of recording when %1 or\n" @@ -1371,19 +1387,19 @@ msgstr "" "%1 может воÑÑтановить запиÑанные данные,\n" "либо проигнорировать их. Примите решение.\n" -#: ardour_ui.cc:3755 +#: ardour_ui.cc:3818 msgid "Ignore crash data" msgstr "Проигнорировать" -#: ardour_ui.cc:3756 +#: ardour_ui.cc:3819 msgid "Recover from crash" msgstr "ВоÑÑтановить данные" -#: ardour_ui.cc:3776 +#: ardour_ui.cc:3839 msgid "Sample Rate Mismatch" msgstr "ÐеÑовпадение чаÑтот ÑÑмплированиÑ" -#: ardour_ui.cc:3777 +#: ardour_ui.cc:3840 msgid "" "This session was created with a sample rate of %1 Hz, but\n" "%2 is currently running at %3 Hz. If you load this session,\n" @@ -1395,23 +1411,23 @@ msgstr "" "ЕÑли вы загрузите Ñтот ÑеанÑ, звуковые данные могут быть\n" "воÑпроизведены Ñ Ð½ÐµÐºÐ¾Ñ€Ñ€ÐµÐºÑ‚Ð½Ð¾Ð¹ чаÑтотой ÑÑмплированиÑ.\n" -#: ardour_ui.cc:3786 +#: ardour_ui.cc:3849 msgid "Do not load session" msgstr "Ðе загружать ÑеанÑ" -#: ardour_ui.cc:3787 +#: ardour_ui.cc:3850 msgid "Load session anyway" msgstr "Ð’Ñе равно загрузить" -#: ardour_ui.cc:3814 +#: ardour_ui.cc:3877 msgid "Could not disconnect from Audio/MIDI engine" msgstr "Ðе удалоÑÑŒ отÑоединитьÑÑ Ð¾Ñ‚ аудио/MIDI-подÑиÑтемы." -#: ardour_ui.cc:3830 ardour_ui.cc:3833 +#: ardour_ui.cc:3893 ardour_ui.cc:3896 msgid "Could not reconnect to the Audio/MIDI engine" msgstr "Ðе удалоÑÑŒ повторно ÑоединитьÑÑ Ñ Ð°ÑƒÐ´Ð¸Ð¾/MIDI-подÑиÑтемой." -#: ardour_ui.cc:4109 +#: ardour_ui.cc:4172 msgid "" "%4This is a session from an older version of %3%5\n" "\n" @@ -1635,15 +1651,15 @@ msgstr "Тип файла" msgid "Sample Format" msgstr "Формат ÑÑмпла" -#: ardour_ui_ed.cc:114 rc_option_editor.cc:1822 rc_option_editor.cc:1835 +#: ardour_ui_ed.cc:114 rc_option_editor.cc:1814 rc_option_editor.cc:1826 msgid "Control Surfaces" msgstr "УÑтройÑтва управлениÑ" -#: ardour_ui_ed.cc:115 rc_option_editor.cc:1554 +#: ardour_ui_ed.cc:115 rc_option_editor.cc:1546 msgid "Plugins" msgstr "Модули" -#: ardour_ui_ed.cc:116 rc_option_editor.cc:1898 +#: ardour_ui_ed.cc:116 rc_option_editor.cc:1889 msgid "Metering" msgstr "Индикаторы" @@ -1978,7 +1994,7 @@ msgstr "Передавать MMC" msgid "Use MMC" msgstr "ИÑпользовать MMC" -#: ardour_ui_ed.cc:379 rc_option_editor.cc:1706 +#: ardour_ui_ed.cc:379 rc_option_editor.cc:1698 msgid "Send MIDI Clock" msgstr "ОтправлÑть MIDI Clock" @@ -2148,27 +2164,27 @@ msgstr "Скрыть дорожку" #: automation_time_axis.cc:255 automation_time_axis.cc:307 #: automation_time_axis.cc:496 gain_meter.cc:194 generic_pluginui.cc:454 -#: generic_pluginui.cc:744 panner_ui.cc:149 +#: generic_pluginui.cc:775 panner_ui.cc:149 msgid "Automation|Manual" msgstr "Вручную" #: automation_time_axis.cc:257 automation_time_axis.cc:318 #: automation_time_axis.cc:501 editor.cc:1937 editor.cc:2014 #: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:197 -#: generic_pluginui.cc:457 generic_pluginui.cc:746 midi_time_axis.cc:1488 +#: generic_pluginui.cc:457 generic_pluginui.cc:777 midi_time_axis.cc:1488 #: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:152 msgid "Play" msgstr "ВоÑпр." #: automation_time_axis.cc:259 automation_time_axis.cc:329 #: automation_time_axis.cc:506 gain_meter.cc:200 generic_pluginui.cc:460 -#: generic_pluginui.cc:748 panner_ui.cc:155 +#: generic_pluginui.cc:779 panner_ui.cc:155 msgid "Write" msgstr "ЗапиÑÑŒ" #: automation_time_axis.cc:261 automation_time_axis.cc:340 #: automation_time_axis.cc:511 gain_meter.cc:203 generic_pluginui.cc:463 -#: generic_pluginui.cc:750 panner_ui.cc:158 +#: generic_pluginui.cc:781 panner_ui.cc:158 msgid "Touch" msgstr "КаÑание" @@ -2654,8 +2670,8 @@ msgstr "ОблаÑти и маркеры" #: rc_option_editor.cc:1333 rc_option_editor.cc:1335 rc_option_editor.cc:1343 #: rc_option_editor.cc:1351 rc_option_editor.cc:1371 rc_option_editor.cc:1383 #: rc_option_editor.cc:1385 rc_option_editor.cc:1393 rc_option_editor.cc:1401 -#: rc_option_editor.cc:1409 rc_option_editor.cc:1417 rc_option_editor.cc:1425 -#: rc_option_editor.cc:1440 rc_option_editor.cc:1444 +#: rc_option_editor.cc:1409 rc_option_editor.cc:1417 rc_option_editor.cc:1432 +#: rc_option_editor.cc:1436 msgid "Editor" msgstr "Редактор" @@ -3072,7 +3088,7 @@ msgid "Keep Playlist" msgstr "Сохранить ÑпиÑок" #: editor.cc:3881 editor_audio_import.cc:581 editor_ops.cc:5856 -#: engine_dialog.cc:1713 sfdb_freesound_mootcher.cc:69 processor_box.cc:2030 +#: engine_dialog.cc:1711 sfdb_freesound_mootcher.cc:69 processor_box.cc:2030 #: processor_box.cc:2055 msgid "Cancel" msgstr "Отмена" @@ -3193,7 +3209,7 @@ msgstr "Параметры MIDI" msgid "Misc Options" msgstr "Прочие параметры" -#: editor_actions.cc:115 rc_option_editor.cc:1458 route_group_dialog.cc:48 +#: editor_actions.cc:115 rc_option_editor.cc:1450 route_group_dialog.cc:48 #: session_option_editor.cc:218 session_option_editor.cc:225 msgid "Monitoring" msgstr "Мониторинг" @@ -3930,7 +3946,7 @@ msgstr "Мин:С" msgid "Video Monitor" msgstr "Видеомонитор" -#: editor_actions.cc:549 rc_option_editor.cc:1838 +#: editor_actions.cc:549 rc_option_editor.cc:1829 msgid "Video" msgstr "Видео" @@ -4587,8 +4603,8 @@ msgstr "безымÑнный" #: editor_markers.cc:1022 editor_markers.cc:1041 editor_markers.cc:1071 #: editor_markers.cc:1102 editor_markers.cc:1132 editor_markers.cc:1160 #: editor_markers.cc:1191 editor_markers.cc:1216 editor_markers.cc:1267 -#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1514 -#: editor_mouse.cc:2478 +#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1526 +#: editor_mouse.cc:2528 msgid "programming error: marker canvas item has no marker object pointer!" msgstr "Ошибка в программе: marker canvas item has no marker object pointer!" @@ -4685,32 +4701,32 @@ msgstr "Выбрать выделение" msgid "Set Punch Range" msgstr "УÑтановить облаÑть врезки" -#: editor_markers.cc:1351 editor_ops.cc:1699 +#: editor_markers.cc:1362 editor_ops.cc:1699 msgid "New Name:" msgstr "Ðовое название:" -#: editor_markers.cc:1354 +#: editor_markers.cc:1365 msgid "Rename Mark" msgstr "Переименовать маркер" -#: editor_markers.cc:1356 +#: editor_markers.cc:1367 msgid "Rename Range" msgstr "Переименовать выделение" -#: editor_markers.cc:1363 editor_mouse.cc:2510 processor_box.cc:1808 +#: editor_markers.cc:1374 editor_mouse.cc:2560 processor_box.cc:1808 #: processor_box.cc:2274 route_time_axis.cc:982 route_ui.cc:1540 msgid "Rename" msgstr "Переименовать" -#: editor_markers.cc:1376 +#: editor_markers.cc:1387 msgid "rename marker" msgstr "переименование маркера" -#: editor_markers.cc:1399 +#: editor_markers.cc:1411 msgid "set loop range" msgstr "Создать петлю из облаÑти" -#: editor_markers.cc:1405 +#: editor_markers.cc:1417 msgid "set punch range" msgstr "Ñоздание Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð¸Ñ Ð²Ñ€ÐµÐ·ÐºÐ¸" @@ -4722,7 +4738,7 @@ msgstr "" msgid "Editor::event_frame() used on unhandled event type %1" msgstr "" -#: editor_mouse.cc:2235 editor_mouse.cc:2260 editor_mouse.cc:2273 +#: editor_mouse.cc:2285 editor_mouse.cc:2310 editor_mouse.cc:2323 msgid "" "programming error: control point canvas item has no control point object " "pointer!" @@ -4730,15 +4746,15 @@ msgstr "" "ошибка в программе: control point canvas item has no control point object " "pointer!" -#: editor_mouse.cc:2416 +#: editor_mouse.cc:2466 msgid "start point trim" msgstr "обрезка начальной точки" -#: editor_mouse.cc:2441 +#: editor_mouse.cc:2491 msgid "End point trim" msgstr "" -#: editor_mouse.cc:2508 +#: editor_mouse.cc:2558 msgid "Name for region:" msgstr "Ðазвание облаÑти: " @@ -5210,7 +5226,7 @@ msgstr "" msgid "tracks" msgstr "дорожек" -#: editor_ops.cc:6485 route_ui.cc:1822 +#: editor_ops.cc:6485 route_ui.cc:1821 msgid "track" msgstr "дорожка" @@ -5218,7 +5234,7 @@ msgstr "дорожка" msgid "busses" msgstr "шин" -#: editor_ops.cc:6491 route_ui.cc:1822 +#: editor_ops.cc:6491 route_ui.cc:1821 msgid "bus" msgstr "шина" @@ -5458,7 +5474,7 @@ msgstr "..." msgid "SI" msgstr "" -#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1876 +#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1867 msgid "Solo Isolated" msgstr "Изолирование Ñоло" @@ -5677,7 +5693,7 @@ msgstr "" msgid "Device Control Panel" msgstr "Панель ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ ÑƒÑтройÑтвом" -#: engine_dialog.cc:80 engine_dialog.cc:1727 +#: engine_dialog.cc:80 engine_dialog.cc:1725 msgid "Measure" msgstr "Измерить" @@ -5728,69 +5744,69 @@ msgstr "Канал выхода" msgid "Input channel" msgstr "Канал входа" -#: engine_dialog.cc:209 +#: engine_dialog.cc:207 msgid "Once the channels are connected, click the \"Measure\" button." msgstr "Соединив каналы, нажмите кнопку «Измерить»." -#: engine_dialog.cc:216 +#: engine_dialog.cc:214 msgid "When satisfied with the results, click the \"Use results\" button." msgstr "" "ЕÑли результат Ð²Ð°Ñ ÑƒÑтраивает, нажмите кнопку «ИÑпользовать результаты»." -#: engine_dialog.cc:231 engine_dialog.cc:1729 +#: engine_dialog.cc:229 engine_dialog.cc:1727 msgid "No measurement results yet" msgstr "Пока нет результатов измерениÑ" -#: engine_dialog.cc:240 route_params_ui.cc:105 +#: engine_dialog.cc:238 route_params_ui.cc:105 msgid "Latency" msgstr "Задержка отклика" -#: engine_dialog.cc:335 +#: engine_dialog.cc:333 msgid "Audio System:" msgstr "Ð—Ð²ÑƒÐºÐ¾Ð²Ð°Ñ Ð¿Ð¾Ð´ÑиÑтема:" -#: engine_dialog.cc:376 +#: engine_dialog.cc:374 msgid "Driver:" msgstr "Драйвер:" -#: engine_dialog.cc:382 +#: engine_dialog.cc:380 msgid "Device:" msgstr "УÑтройÑтво:" -#: engine_dialog.cc:387 engine_dialog.cc:477 sfdb_ui.cc:147 sfdb_ui.cc:260 +#: engine_dialog.cc:385 engine_dialog.cc:475 sfdb_ui.cc:147 sfdb_ui.cc:260 #: sfdb_ui.cc:265 msgid "Sample rate:" msgstr "ЧаÑтота ÑÑмплированиÑ:" -#: engine_dialog.cc:393 engine_dialog.cc:484 +#: engine_dialog.cc:391 engine_dialog.cc:482 msgid "Buffer size:" msgstr "Размер буфера:" -#: engine_dialog.cc:406 +#: engine_dialog.cc:404 msgid "Input Channels:" msgstr "Каналов входа:" -#: engine_dialog.cc:417 +#: engine_dialog.cc:415 msgid "Output Channels:" msgstr "Каналов выхода:" -#: engine_dialog.cc:428 +#: engine_dialog.cc:426 msgid "Hardware input latency:" msgstr "Задержка аппаратных входов:" -#: engine_dialog.cc:431 engine_dialog.cc:444 +#: engine_dialog.cc:429 engine_dialog.cc:442 msgid "samples" msgstr "ÑÑмплов" -#: engine_dialog.cc:441 +#: engine_dialog.cc:439 msgid "Hardware output latency:" msgstr "Задержка аппаратных выходов:" -#: engine_dialog.cc:452 +#: engine_dialog.cc:450 msgid "MIDI System" msgstr "ПодÑиÑтема MIDI" -#: engine_dialog.cc:469 +#: engine_dialog.cc:467 msgid "" "The %1 audio backend was configured and started externally.\n" "This limits your control over it." @@ -5798,96 +5814,96 @@ msgstr "" "Ð—Ð²ÑƒÐºÐ¾Ð²Ð°Ñ Ð¿Ð¾Ð´ÑиÑтема %1 была наÑтроена и запущена извне.\n" "Ð’Ñ‹ не Ñможете полноÑтью контролировать её." -#: engine_dialog.cc:523 +#: engine_dialog.cc:521 msgid "" "Your selected audio configuration is playback- or capture-only.\n" "\n" "Latency calibration requires playback and capture" msgstr "" -#: engine_dialog.cc:597 +#: engine_dialog.cc:595 msgid "MIDI Inputs" msgstr "MIDI-входы" -#: engine_dialog.cc:614 +#: engine_dialog.cc:612 msgid "MIDI Outputs" msgstr "MIDI-выходы" -#: engine_dialog.cc:698 +#: engine_dialog.cc:696 msgid "all available channels" msgstr "вÑе доÑтупные каналы" -#: engine_dialog.cc:892 +#: engine_dialog.cc:890 #, c-format msgid "%u samples" msgstr "%u ÑÑмплов" -#: engine_dialog.cc:943 +#: engine_dialog.cc:941 #, c-format msgid "(%.1f msecs)" msgstr "(%.1f мÑ)" -#: engine_dialog.cc:1391 +#: engine_dialog.cc:1389 msgid "Cannot set driver to %1" msgstr "Ðевозможно иÑпользовать %1 в качеÑтве драйвера." -#: engine_dialog.cc:1395 +#: engine_dialog.cc:1393 msgid "Cannot set device name to %1" msgstr "Ðевозможно %1 в имени уÑтройÑтва." -#: engine_dialog.cc:1399 +#: engine_dialog.cc:1397 msgid "Cannot set sample rate to %1" msgstr "Ðевозможно иÑпользовать %1 в чаÑтоты ÑÑмплированиÑ." -#: engine_dialog.cc:1403 +#: engine_dialog.cc:1401 msgid "Cannot set buffer size to %1" msgstr "Ðевозможно иÑпользовать %1 в размера буфера." -#: engine_dialog.cc:1409 +#: engine_dialog.cc:1407 msgid "Cannot set input channels to %1" msgstr "" -#: engine_dialog.cc:1413 +#: engine_dialog.cc:1411 msgid "Cannot set output channels to %1" msgstr "" -#: engine_dialog.cc:1419 +#: engine_dialog.cc:1417 msgid "Cannot set input latency to %1" msgstr "" -#: engine_dialog.cc:1423 +#: engine_dialog.cc:1421 msgid "Cannot set output latency to %1" msgstr "" -#: engine_dialog.cc:1656 +#: engine_dialog.cc:1654 msgid "No signal detected " msgstr "Сигнал не обнаружен" -#: engine_dialog.cc:1669 port_insert_ui.cc:71 port_insert_ui.cc:99 +#: engine_dialog.cc:1667 port_insert_ui.cc:71 port_insert_ui.cc:99 msgid "Disconnected from audio engine" msgstr "Выполнено отÑоединение от звукового движка" -#: engine_dialog.cc:1683 +#: engine_dialog.cc:1681 msgid "(signal detection error)" msgstr "(ошибка Ð¾Ð±Ð½Ð°Ñ€ÑƒÐ¶ÐµÐ½Ð¸Ñ Ñигнала)" -#: engine_dialog.cc:1689 +#: engine_dialog.cc:1687 msgid "(inverted - bad wiring)" msgstr "" -#: engine_dialog.cc:1699 +#: engine_dialog.cc:1697 msgid "Detected roundtrip latency: %1" msgstr "Обнаружена цикличеÑÐºÐ°Ñ Ð·Ð°Ð´ÐµÑ€Ð¶ÐºÐ° отклика: %1" -#: engine_dialog.cc:1711 port_insert_ui.cc:135 +#: engine_dialog.cc:1709 port_insert_ui.cc:135 msgid "Detecting ..." msgstr "ВыполнÑетÑÑ Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ðµ..." -#: engine_dialog.cc:1791 +#: engine_dialog.cc:1789 msgid "Disconnect from %1" msgstr "ОтÑоединить от %1" -#: engine_dialog.cc:1803 +#: engine_dialog.cc:1801 msgid "Connect to %1" msgstr "Соединить Ñ %1" @@ -7263,7 +7279,7 @@ msgid "pre" msgstr "lj" #: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 -#: rc_option_editor.cc:1877 +#: rc_option_editor.cc:1868 msgid "Comments" msgstr "Комментарии" @@ -7309,11 +7325,11 @@ msgstr "Изол" msgid "Mix group" msgstr "Группа микÑа" -#: mixer_strip.cc:351 rc_option_editor.cc:1874 +#: mixer_strip.cc:351 rc_option_editor.cc:1865 msgid "Phase Invert" msgstr "ИнверÑÐ¸Ñ Ñ„Ð°Ð·Ñ‹" -#: mixer_strip.cc:352 rc_option_editor.cc:1875 route_ui.cc:1218 +#: mixer_strip.cc:352 rc_option_editor.cc:1866 route_ui.cc:1218 msgid "Solo Safe" msgstr "Блокировка ÑолированиÑ" @@ -7321,7 +7337,7 @@ msgstr "Блокировка ÑолированиÑ" msgid "Group" msgstr "Группа" -#: mixer_strip.cc:356 rc_option_editor.cc:1878 +#: mixer_strip.cc:356 rc_option_editor.cc:1869 msgid "Meter Point" msgstr "Точка измерениÑ" @@ -8335,7 +8351,7 @@ msgstr "Показывать порты раздельно" msgid "Flip" msgstr "Повернуть матрицу" -#: port_matrix.cc:723 +#: port_matrix.cc:721 msgid "" "It is not possible to add a port here, as the first processor in the track " "or buss cannot support the new configuration." @@ -8343,32 +8359,32 @@ msgstr "" "Ðевозможно добавить Ñюда порт, поÑкольку первый обработчик дорожки или шины " "не может поддерживать новую конфигурацию." -#: port_matrix.cc:726 +#: port_matrix.cc:724 msgid "Cannot add port" msgstr "Ðевозможно добавить порт" -#: port_matrix.cc:748 +#: port_matrix.cc:746 msgid "Port removal not allowed" msgstr "Удаление портов не разрешено" -#: port_matrix.cc:749 +#: port_matrix.cc:747 msgid "" "This port cannot be removed.\n" "Either the first plugin in the track or buss cannot accept\n" "the new number of inputs or the last plugin has more outputs." msgstr "" -#: port_matrix.cc:966 +#: port_matrix.cc:964 #, c-format msgid "Remove '%s'" msgstr "Удалить '%s'" -#: port_matrix.cc:981 +#: port_matrix.cc:979 #, c-format msgid "%s all from '%s'" msgstr "%s вÑе из '%s'" -#: port_matrix.cc:1047 +#: port_matrix.cc:1045 msgid "channel" msgstr "канал" @@ -8410,7 +8426,7 @@ msgstr "Скрыть вÑе регулÑторы" msgid "on" msgstr "Вкл" -#: processor_box.cc:465 rc_option_editor.cc:1907 rc_option_editor.cc:1921 +#: processor_box.cc:465 rc_option_editor.cc:1898 rc_option_editor.cc:1912 msgid "off" msgstr "Выкл" @@ -9127,18 +9143,14 @@ msgid "Update editor window during drags of the summary" msgstr "ОбновлÑть окно редактора при изменениÑÑ… в панели Ñводки" #: rc_option_editor.cc:1420 -msgid "Synchronise editor and mixer track order" -msgstr "Синхронизировать порÑдок дорожек в редакторе и микшере" - -#: rc_option_editor.cc:1428 msgid "Synchronise editor and mixer selection" msgstr "Синхронизировать выделение в редакторе и микшере" -#: rc_option_editor.cc:1435 +#: rc_option_editor.cc:1427 msgid "Name new markers" msgstr "Спрашивать об имени каждого нового маркера" -#: rc_option_editor.cc:1441 +#: rc_option_editor.cc:1433 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " "be set as it is created.\n" @@ -9146,244 +9158,244 @@ msgid "" "You can always rename markers by right-clicking on them" msgstr "" -#: rc_option_editor.cc:1447 +#: rc_option_editor.cc:1439 msgid "Auto-scroll editor window when dragging near its edges" msgstr "" "ÐвтоматичеÑки прокручивать окно редактора при перетаÑкивании близко к краÑм" -#: rc_option_editor.cc:1454 +#: rc_option_editor.cc:1446 msgid "Buffering" msgstr "БуферизациÑ" -#: rc_option_editor.cc:1462 +#: rc_option_editor.cc:1454 msgid "Record monitoring handled by" msgstr "Мониторинг запиÑи выполнÑет" -#: rc_option_editor.cc:1468 +#: rc_option_editor.cc:1460 msgid "via Audio Driver" msgstr "" -#: rc_option_editor.cc:1471 +#: rc_option_editor.cc:1463 msgid "ardour" msgstr "Ardour" -#: rc_option_editor.cc:1472 +#: rc_option_editor.cc:1464 msgid "audio hardware" msgstr "Ðппаратное обеÑпечение" -#: rc_option_editor.cc:1479 +#: rc_option_editor.cc:1471 msgid "Tape machine mode" msgstr "Режим плёночного магнитофона" -#: rc_option_editor.cc:1484 +#: rc_option_editor.cc:1476 msgid "Connection of tracks and busses" msgstr "Соединение дорожек и шин" -#: rc_option_editor.cc:1489 +#: rc_option_editor.cc:1481 msgid "Auto-connect master/monitor busses" msgstr "ÐвтоматичеÑки ÑоединÑть шины master/monitor" -#: rc_option_editor.cc:1496 +#: rc_option_editor.cc:1488 msgid "Connect track inputs" msgstr "СоединÑть входы дорожек" -#: rc_option_editor.cc:1501 +#: rc_option_editor.cc:1493 msgid "automatically to physical inputs" msgstr "ÐвтоматичеÑки Ñ Ñ„Ð¸Ð·Ð¸Ñ‡ÐµÑкими входами" -#: rc_option_editor.cc:1502 rc_option_editor.cc:1515 +#: rc_option_editor.cc:1494 rc_option_editor.cc:1507 msgid "manually" msgstr "Вручную" -#: rc_option_editor.cc:1508 +#: rc_option_editor.cc:1500 msgid "Connect track and bus outputs" msgstr "СоединÑть выходы дорожек и шин" -#: rc_option_editor.cc:1513 +#: rc_option_editor.cc:1505 msgid "automatically to physical outputs" msgstr "ÐвтоматичеÑки Ñ Ñ„Ð¸Ð·Ð¸Ñ‡ÐµÑкими выходами" -#: rc_option_editor.cc:1514 +#: rc_option_editor.cc:1506 msgid "automatically to master bus" msgstr "ÐвтоматичеÑки Ñ Ð¾Ð±Ñ‰ÐµÐ¹ шиной" -#: rc_option_editor.cc:1519 +#: rc_option_editor.cc:1511 msgid "Denormals" msgstr "ÐžÑ‚ÐºÐ»Ð¾Ð½ÐµÐ½Ð¸Ñ Ñигнала" -#: rc_option_editor.cc:1524 +#: rc_option_editor.cc:1516 msgid "Use DC bias to protect against denormals" msgstr "" -#: rc_option_editor.cc:1531 +#: rc_option_editor.cc:1523 msgid "Processor handling" msgstr "Что делать Ñ Ð¾Ð±Ñ€Ð°Ð±Ð¾Ñ‚Ñ‡Ð¸ÐºÐ°Ð¼Ð¸" -#: rc_option_editor.cc:1536 +#: rc_option_editor.cc:1528 msgid "no processor handling" msgstr "Ðичего не делать" -#: rc_option_editor.cc:1541 +#: rc_option_editor.cc:1533 msgid "use FlushToZero" msgstr "ИÑпользовать FlushToZero" -#: rc_option_editor.cc:1545 +#: rc_option_editor.cc:1537 msgid "use DenormalsAreZero" msgstr "ИÑпользовать DenormalsAreZero" -#: rc_option_editor.cc:1549 +#: rc_option_editor.cc:1541 msgid "use FlushToZero and DenormalsAreZero" msgstr "ИÑпользовать FlushToZero и DenormalsAreZero" -#: rc_option_editor.cc:1559 +#: rc_option_editor.cc:1551 msgid "Silence plugins when the transport is stopped" msgstr "Приглушать модули при оÑтановке транÑпорта" -#: rc_option_editor.cc:1567 +#: rc_option_editor.cc:1559 msgid "Make new plugins active" msgstr "Делать новые Ñффекты/инÑтрументы активными" -#: rc_option_editor.cc:1575 +#: rc_option_editor.cc:1567 msgid "Enable automatic analysis of audio" msgstr "Включить автоматичеÑкий анализ звука" -#: rc_option_editor.cc:1583 +#: rc_option_editor.cc:1575 msgid "Replicate missing region channels" msgstr "ВоÑÑоздавать отÑутÑтвующие каналы облаÑти" -#: rc_option_editor.cc:1590 rc_option_editor.cc:1605 rc_option_editor.cc:1617 -#: rc_option_editor.cc:1629 rc_option_editor.cc:1641 rc_option_editor.cc:1645 -#: rc_option_editor.cc:1653 rc_option_editor.cc:1661 rc_option_editor.cc:1669 -#: rc_option_editor.cc:1671 rc_option_editor.cc:1679 rc_option_editor.cc:1687 -#: rc_option_editor.cc:1695 +#: rc_option_editor.cc:1582 rc_option_editor.cc:1597 rc_option_editor.cc:1609 +#: rc_option_editor.cc:1621 rc_option_editor.cc:1633 rc_option_editor.cc:1637 +#: rc_option_editor.cc:1645 rc_option_editor.cc:1653 rc_option_editor.cc:1661 +#: rc_option_editor.cc:1663 rc_option_editor.cc:1671 rc_option_editor.cc:1679 +#: rc_option_editor.cc:1687 msgid "Solo / mute" msgstr "Соло/Приглушение" -#: rc_option_editor.cc:1593 +#: rc_option_editor.cc:1585 msgid "Solo-in-place mute cut (dB)" msgstr "Приглушение Ñигнала при Ñолировании (dB)" -#: rc_option_editor.cc:1600 +#: rc_option_editor.cc:1592 msgid "Solo controls are Listen controls" msgstr "Управление Ñолированием работает как управление проÑлушиванием" -#: rc_option_editor.cc:1609 +#: rc_option_editor.cc:1601 msgid "Listen Position" msgstr "Положение проÑлушиваниÑ" -#: rc_option_editor.cc:1614 +#: rc_option_editor.cc:1606 msgid "after-fader (AFL)" msgstr "ПоÑле фейдера (AFL)" -#: rc_option_editor.cc:1615 +#: rc_option_editor.cc:1607 msgid "pre-fader (PFL)" msgstr "До фейдера (PFL)" -#: rc_option_editor.cc:1621 +#: rc_option_editor.cc:1613 msgid "PFL signals come from" msgstr "ИÑточник Ñигнала PFL" -#: rc_option_editor.cc:1626 +#: rc_option_editor.cc:1618 msgid "before pre-fader processors" msgstr "До поÑлефейдерных обработчиков" -#: rc_option_editor.cc:1627 +#: rc_option_editor.cc:1619 msgid "pre-fader but after pre-fader processors" msgstr "До фейдера, но поÑле предфейдерных обработчиков" -#: rc_option_editor.cc:1633 +#: rc_option_editor.cc:1625 msgid "AFL signals come from" msgstr "ИÑточник Ñигнала AFL" -#: rc_option_editor.cc:1638 +#: rc_option_editor.cc:1630 msgid "immediately post-fader" msgstr "Сразу поÑле фейдера" -#: rc_option_editor.cc:1639 +#: rc_option_editor.cc:1631 msgid "after post-fader processors (before pan)" msgstr "За поÑлефейдерными обработчиками и до панорамированиÑ" -#: rc_option_editor.cc:1648 +#: rc_option_editor.cc:1640 msgid "Exclusive solo" msgstr "ЭкÑклюзивное Ñолирование" -#: rc_option_editor.cc:1656 +#: rc_option_editor.cc:1648 msgid "Show solo muting" msgstr "Показывать приглушение при Ñолировании" -#: rc_option_editor.cc:1664 +#: rc_option_editor.cc:1656 msgid "Soloing overrides muting" msgstr "Солирование приоритетнее приглушениÑ" -#: rc_option_editor.cc:1669 +#: rc_option_editor.cc:1661 msgid "Default track / bus muting options" msgstr "Приглушение дорожек и шин по умолчанию затрагивает" -#: rc_option_editor.cc:1674 +#: rc_option_editor.cc:1666 msgid "Mute affects pre-fader sends" msgstr "Предфейдерные поÑылы" -#: rc_option_editor.cc:1682 +#: rc_option_editor.cc:1674 msgid "Mute affects post-fader sends" msgstr "ПоÑлефейдерные поÑылы" -#: rc_option_editor.cc:1690 +#: rc_option_editor.cc:1682 msgid "Mute affects control outputs" msgstr "Выходы мониторинга" -#: rc_option_editor.cc:1698 +#: rc_option_editor.cc:1690 msgid "Mute affects main outputs" msgstr "ОÑновные выходы" -#: rc_option_editor.cc:1714 +#: rc_option_editor.cc:1706 msgid "Send MIDI Time Code" msgstr "Передавать MIDI Time Code" -#: rc_option_editor.cc:1722 +#: rc_option_editor.cc:1714 msgid "Percentage either side of normal transport speed to transmit MTC" msgstr "" -#: rc_option_editor.cc:1731 +#: rc_option_editor.cc:1723 msgid "Obey MIDI Machine Control commands" msgstr "ВыполнÑть команды MIDI Machine Control" -#: rc_option_editor.cc:1739 +#: rc_option_editor.cc:1731 msgid "Send MIDI Machine Control commands" msgstr "ОтправлÑть команды MIDI Machine Control" -#: rc_option_editor.cc:1747 +#: rc_option_editor.cc:1739 msgid "Send MIDI control feedback" msgstr "ОтправлÑть отклик на контрольные ÑÐ¾Ð±Ñ‹Ñ‚Ð¸Ñ MIDI" -#: rc_option_editor.cc:1755 +#: rc_option_editor.cc:1747 msgid "Inbound MMC device ID" msgstr "Идентификатор входÑщего уÑтройÑтва MMC" -#: rc_option_editor.cc:1764 +#: rc_option_editor.cc:1756 msgid "Outbound MMC device ID" msgstr "Идентификатор выходÑщего уÑтройÑтва MMC" -#: rc_option_editor.cc:1773 +#: rc_option_editor.cc:1765 msgid "Initial program change" msgstr "ИÑÑ…Ð¾Ð´Ð½Ð°Ñ Ñмена программы" -#: rc_option_editor.cc:1782 +#: rc_option_editor.cc:1774 msgid "Display first MIDI bank/program as 0" msgstr "Показывать первый банк/программу MIDI как 0" -#: rc_option_editor.cc:1790 +#: rc_option_editor.cc:1782 msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "Ðикогда не показывать периодичеÑкие ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ MIDI (MTC, MIDI Clock)" -#: rc_option_editor.cc:1798 +#: rc_option_editor.cc:1790 msgid "Sound MIDI notes as they are selected" msgstr "ВоÑпроизводить ноты MIDI при их выделении" -#: rc_option_editor.cc:1806 rc_option_editor.cc:1816 rc_option_editor.cc:1818 +#: rc_option_editor.cc:1798 rc_option_editor.cc:1808 rc_option_editor.cc:1810 msgid "User interaction" msgstr "ВзаимодейÑтвие Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÐµÐ¼" -#: rc_option_editor.cc:1809 +#: rc_option_editor.cc:1801 msgid "" "Use translations of %1 messages\n" " (requires a restart of %1 to take effect)\n" @@ -9393,175 +9405,171 @@ msgstr "" " (вÑтупает в Ñилу поÑле перезапуÑка %1)\n" " (еÑли Ð»Ð¾ÐºÐ°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð´Ð»Ñ Ð²Ð°ÑˆÐµÐ³Ð¾ Ñзыка доÑтупна)" -#: rc_option_editor.cc:1816 +#: rc_option_editor.cc:1808 msgid "Keyboard" msgstr "Клавиатура" -#: rc_option_editor.cc:1826 +#: rc_option_editor.cc:1818 msgid "Control surface remote ID" msgstr "ID Ð´Ð»Ñ ÑƒÐ´Ð°Ð»Ñ‘Ð½Ð½Ð¾Ð³Ð¾ управлениÑ" -#: rc_option_editor.cc:1831 +#: rc_option_editor.cc:1823 msgid "assigned by user" msgstr "Ðазначенные пользователем" -#: rc_option_editor.cc:1832 +#: rc_option_editor.cc:1824 msgid "follows order of mixer" msgstr "Следуют порÑдку микшера" -#: rc_option_editor.cc:1833 -msgid "follows order of editor" -msgstr "Следуют порÑдку редактора" - -#: rc_option_editor.cc:1842 rc_option_editor.cc:1850 rc_option_editor.cc:1860 -#: rc_option_editor.cc:1881 rc_option_editor.cc:1890 rc_option_editor.cc:1898 -#: rc_option_editor.cc:1912 rc_option_editor.cc:1931 rc_option_editor.cc:1947 -#: rc_option_editor.cc:1963 rc_option_editor.cc:1977 rc_option_editor.cc:1991 -#: rc_option_editor.cc:1993 +#: rc_option_editor.cc:1833 rc_option_editor.cc:1841 rc_option_editor.cc:1851 +#: rc_option_editor.cc:1872 rc_option_editor.cc:1881 rc_option_editor.cc:1889 +#: rc_option_editor.cc:1903 rc_option_editor.cc:1922 rc_option_editor.cc:1938 +#: rc_option_editor.cc:1954 rc_option_editor.cc:1968 rc_option_editor.cc:1982 +#: rc_option_editor.cc:1984 msgid "Preferences|GUI" msgstr "ИнтерфейÑ" -#: rc_option_editor.cc:1845 +#: rc_option_editor.cc:1836 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "ПодÑвечивать Ñлементы интерфейÑа под указателем мыши" -#: rc_option_editor.cc:1853 +#: rc_option_editor.cc:1844 msgid "Show tooltips if mouse hovers over a control" msgstr "Показывать вÑплывающие подÑказки к Ñлементам интерфейÑа" -#: rc_option_editor.cc:1863 +#: rc_option_editor.cc:1854 msgid "GUI" msgstr "ИнтерфейÑ" -#: rc_option_editor.cc:1866 +#: rc_option_editor.cc:1857 msgid "update transport clock display every 40ms instead of every 100ms" msgstr "ОбновлÑть Ñчётчик транÑпорта каждые 40Ð¼Ñ Ð²Ð¼ÐµÑто каждых 100мÑ" -#: rc_option_editor.cc:1883 +#: rc_option_editor.cc:1874 msgid "Mixer Strip" msgstr "ПолоÑа микшера" -#: rc_option_editor.cc:1893 +#: rc_option_editor.cc:1884 msgid "Use narrow strips in the mixer by default" msgstr "ИÑпользовать тонкие полоÑки в микшере по умолчанию" -#: rc_option_editor.cc:1902 +#: rc_option_editor.cc:1893 msgid "Peak hold time" msgstr "Удерживание пика" -#: rc_option_editor.cc:1908 +#: rc_option_editor.cc:1899 msgid "short" msgstr "Короткое" -#: rc_option_editor.cc:1909 +#: rc_option_editor.cc:1900 msgid "medium" msgstr "Среднее" -#: rc_option_editor.cc:1910 +#: rc_option_editor.cc:1901 msgid "long" msgstr "Долгое" -#: rc_option_editor.cc:1916 +#: rc_option_editor.cc:1907 msgid "DPM fall-off" msgstr "СкороÑть ÑпаданиÑ" -#: rc_option_editor.cc:1922 +#: rc_option_editor.cc:1913 msgid "slowest [6.6dB/sec]" msgstr "Самое медленное [6,6 Дб/Ñ]" -#: rc_option_editor.cc:1923 +#: rc_option_editor.cc:1914 msgid "slow [8.6dB/sec] (BBC PPM, EBU PPM)" msgstr "Медленное [8,6 Дб/Ñ] (BBC PPM, EBU PPM)" -#: rc_option_editor.cc:1924 +#: rc_option_editor.cc:1915 msgid "slowish [12.0dB/sec] (DIN)" msgstr "Ðеторопливое [12 Дб/Ñ] (DIN)" -#: rc_option_editor.cc:1925 +#: rc_option_editor.cc:1916 msgid "moderate [13.3dB/sec] (EBU Digi PPM, IRT Digi PPM)" msgstr "Умеренное [13,3 Дб/Ñ] (EBU Digi PPM, IRT Digi PPM)" -#: rc_option_editor.cc:1926 +#: rc_option_editor.cc:1917 msgid "medium [20dB/sec]" msgstr "Среднее [20 Дб/Ñ]" -#: rc_option_editor.cc:1927 +#: rc_option_editor.cc:1918 msgid "fast [32dB/sec]" msgstr "БыÑтрое [32 Дб/Ñ]" -#: rc_option_editor.cc:1928 +#: rc_option_editor.cc:1919 msgid "faster [46dB/sec]" msgstr "Ещё быÑтрее [46 Дб/Ñ]" -#: rc_option_editor.cc:1929 +#: rc_option_editor.cc:1920 msgid "fastest [70dB/sec]" msgstr "Самое быÑтрое [70 Дб/Ñ]" -#: rc_option_editor.cc:1935 +#: rc_option_editor.cc:1926 msgid "Meter line-up level; 0dBu" msgstr "Точка Ð²Ñ‹Ñ€Ð°Ð²Ð½Ð¸Ð²Ð°Ð½Ð¸Ñ Ð¸Ð½Ð´Ð¸ÐºÐ°Ñ‚Ð¾Ñ€Ð°; 0dBu" -#: rc_option_editor.cc:1940 rc_option_editor.cc:1956 +#: rc_option_editor.cc:1931 rc_option_editor.cc:1947 msgid "-24dBFS (SMPTE US: 4dBu = -20dBFS)" msgstr "-24dBFS (SMPTE US: 4dBu = -20dBFS)" -#: rc_option_editor.cc:1941 rc_option_editor.cc:1957 +#: rc_option_editor.cc:1932 rc_option_editor.cc:1948 msgid "-20dBFS (SMPTE RP.0155)" msgstr "-20dBFS (SMPTE RP.0155)" -#: rc_option_editor.cc:1942 rc_option_editor.cc:1958 +#: rc_option_editor.cc:1933 rc_option_editor.cc:1949 msgid "-18dBFS (EBU, BBC)" msgstr "-18dBFS (EBU, BBC)" -#: rc_option_editor.cc:1943 rc_option_editor.cc:1959 +#: rc_option_editor.cc:1934 rc_option_editor.cc:1950 msgid "-15dBFS (DIN)" msgstr "-15dBFS (DIN)" -#: rc_option_editor.cc:1945 +#: rc_option_editor.cc:1936 msgid "" "Configure meter-marks and color-knee point for dBFS scale DPM, set reference " "level for IEC1/Nordic, IEC2 PPM and VU meter." msgstr "" -#: rc_option_editor.cc:1951 +#: rc_option_editor.cc:1942 msgid "IEC1/DIN Meter line-up level; 0dBu" msgstr "Точка Ð²Ñ‹Ñ€Ð°Ð²Ð½Ð¸Ð²Ð°Ð½Ð¸Ñ Ð¸Ð½Ð´Ð¸ÐºÐ°Ñ‚Ð¾Ñ€Ð° IEC1/DIN; 0dBu" -#: rc_option_editor.cc:1961 +#: rc_option_editor.cc:1952 msgid "Reference level for IEC1/DIN meter." msgstr "РеференÑный уровень индикатора IEC1/DIN" -#: rc_option_editor.cc:1967 +#: rc_option_editor.cc:1958 msgid "VU Meter standard" msgstr "Стандарт индикатора VU" -#: rc_option_editor.cc:1972 +#: rc_option_editor.cc:1963 msgid "0VU = -2dBu (France)" msgstr "0VU = -2dBu (ФранциÑ)" -#: rc_option_editor.cc:1973 +#: rc_option_editor.cc:1964 msgid "0VU = 0dBu (North America, Australia)" msgstr "0VU = 0dBu (Ð¡ÐµÐ²ÐµÑ€Ð½Ð°Ñ Ðмерика, ÐвÑтралиÑ)" -#: rc_option_editor.cc:1974 +#: rc_option_editor.cc:1965 msgid "0VU = +4dBu (standard)" msgstr "0VU = +4dBu (Ñтандарт)" -#: rc_option_editor.cc:1975 +#: rc_option_editor.cc:1966 msgid "0VU = +8dBu" msgstr "0VU = +8dBu" -#: rc_option_editor.cc:1981 +#: rc_option_editor.cc:1972 msgid "Peak threshold [dBFS]" msgstr "Порог пика (dbFS)" -#: rc_option_editor.cc:1989 +#: rc_option_editor.cc:1980 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " "indicator will flash red." msgstr "" -#: rc_option_editor.cc:1996 +#: rc_option_editor.cc:1987 msgid "LED meter style" msgstr "Индикатор в Ñтиле LED" @@ -10221,31 +10229,17 @@ msgstr "Шина мониторинга" #: route_ui.cc:1818 msgid "" -"The remote control ID of %6 is: %3\n" +"The remote control ID of %5 is: %2\n" "\n" "\n" -"Remote Control IDs are currently determined by track/bus ordering in %1\n" +"Remote Control IDs are currently determined by track/bus ordering in " +"Ardour.\n" "\n" -"%4Use the User Interaction tab of the Preferences window if you want to " -"change this%5" +"%3Use the User Interaction tab of the Preferences window if you want to " +"change this%4" msgstr "" -"ID Ð´Ð»Ñ ÑƒÐ´Ð°Ð»Ñ‘Ð½Ð½Ð¾Ð³Ð¾ ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ %6: %3\n" -"\n" -"Идентификаторы Ð´Ð»Ñ ÑƒÐ´Ð°Ð»Ñ‘Ð½Ð½Ð¾Ð³Ð¾ ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»ÑÑŽÑ‚ÑÑ ÑейчаÑ\n" -"порÑдком дорожек и шин в %1е.\n" -"\n" -"%4Ð’Ñ‹ можете наÑтроить Ñто в диалоге «Параметры» на вкладке «ВзаимодейÑтвие Ñ " -"пользователем»%5" -#: route_ui.cc:1821 -msgid "the mixer" -msgstr "микшер" - -#: route_ui.cc:1821 -msgid "the editor" -msgstr "the editor" - -#: route_ui.cc:1876 +#: route_ui.cc:1875 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " "to show menu." @@ -10253,7 +10247,7 @@ msgstr "" "Щелчком левой клавиши мыши инвертируетÑÑ (инверÑÐ¸Ñ Ñ„Ð°Ð·Ñ‹) \n" "канал %1 Ñтой дорожки. По правой клавише вызываетÑÑ Ð¼ÐµÐ½ÑŽ." -#: route_ui.cc:1878 +#: route_ui.cc:1877 msgid "Click to show a menu of channels for inversion (phase reverse)" msgstr " " @@ -12626,3 +12620,32 @@ msgstr "" "#export.\n" "\n" "Открыть руководÑтво в браузере? " + +#~ msgid "Synchronise editor and mixer track order" +#~ msgstr "Синхронизировать порÑдок дорожек в редакторе и микшере" + +#~ msgid "follows order of editor" +#~ msgstr "Следуют порÑдку редактора" + +#~ msgid "" +#~ "The remote control ID of %6 is: %3\n" +#~ "\n" +#~ "\n" +#~ "Remote Control IDs are currently determined by track/bus ordering in %1\n" +#~ "\n" +#~ "%4Use the User Interaction tab of the Preferences window if you want to " +#~ "change this%5" +#~ msgstr "" +#~ "ID Ð´Ð»Ñ ÑƒÐ´Ð°Ð»Ñ‘Ð½Ð½Ð¾Ð³Ð¾ ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ %6: %3\n" +#~ "\n" +#~ "Идентификаторы Ð´Ð»Ñ ÑƒÐ´Ð°Ð»Ñ‘Ð½Ð½Ð¾Ð³Ð¾ ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»ÑÑŽÑ‚ÑÑ ÑейчаÑ\n" +#~ "порÑдком дорожек и шин в %1е.\n" +#~ "\n" +#~ "%4Ð’Ñ‹ можете наÑтроить Ñто в диалоге «Параметры» на вкладке " +#~ "«ВзаимодейÑтвие Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÐµÐ¼Â»%5" + +#~ msgid "the mixer" +#~ msgstr "микшер" + +#~ msgid "the editor" +#~ msgstr "the editor" diff --git a/gtk2_ardour/po/sv.po b/gtk2_ardour/po/sv.po index 1617b76ddf..a27b46c21e 100644 --- a/gtk2_ardour/po/sv.po +++ b/gtk2_ardour/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ardour-gtk 1.0.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2006-06-26 23:57+GMT+1\n" "Last-Translator: Petter Sundlöf \n" "Language-Team: Svenska \n" @@ -132,6 +132,10 @@ msgstr "" msgid "Robert Jordens" msgstr "" +#: about.cc:151 +msgid "Stefan Kersten" +msgstr "" + #: about.cc:152 msgid "Armand Klenk" msgstr "" @@ -208,6 +212,10 @@ msgstr "" msgid "Lincoln Spiteri" msgstr "" +#: about.cc:171 +msgid "Mike Start" +msgstr "" + #: about.cc:172 msgid "Mark Stewart" msgstr "" @@ -339,10 +347,18 @@ msgstr "" "%1\n" "(kompilerat frÃ¥n revision %2)" +#: about.cc:589 +msgid "Config" +msgstr "" + #: actions.cc:85 msgid "Loading menus from %1" msgstr "" +#: actions.cc:88 actions.cc:89 +msgid "badly formatted UI definition file: %1" +msgstr "" + #: actions.cc:91 msgid "%1 menu definition file not found" msgstr "" @@ -371,12 +387,24 @@ msgstr "" msgid "Audio Tracks" msgstr "LjudspÃ¥r" +#: add_route_dialog.cc:77 +msgid "MIDI Tracks" +msgstr "" + +#: add_route_dialog.cc:78 +msgid "Audio+MIDI Tracks" +msgstr "" + +#: add_route_dialog.cc:79 +msgid "Busses" +msgstr "" + #: add_route_dialog.cc:101 msgid "Add:" msgstr "Lägg till" -#: add_route_dialog.cc:114 startup.cc:841 time_fx_dialog.cc:91 -#: add_video_dialog.cc:150 video_server_dialog.cc:112 +#: add_route_dialog.cc:114 time_fx_dialog.cc:91 add_video_dialog.cc:150 +#: video_server_dialog.cc:112 msgid "Options" msgstr "Alternativ" @@ -390,24 +418,33 @@ msgid "Group:" msgstr "Grupp:" #: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 -#: rc_option_editor.cc:1456 rc_option_editor.cc:1458 rc_option_editor.cc:1460 -#: rc_option_editor.cc:1478 rc_option_editor.cc:1480 rc_option_editor.cc:1488 -#: rc_option_editor.cc:1490 rc_option_editor.cc:1508 rc_option_editor.cc:1521 -#: rc_option_editor.cc:1523 rc_option_editor.cc:1525 rc_option_editor.cc:1556 -#: rc_option_editor.cc:1558 rc_option_editor.cc:1560 rc_option_editor.cc:1568 -#: rc_option_editor.cc:1576 rc_option_editor.cc:1584 +#: ardour_ui_ed.cc:476 engine_dialog.cc:236 rc_option_editor.cc:1446 +#: rc_option_editor.cc:1448 rc_option_editor.cc:1450 rc_option_editor.cc:1466 +#: rc_option_editor.cc:1468 rc_option_editor.cc:1476 rc_option_editor.cc:1478 +#: rc_option_editor.cc:1496 rc_option_editor.cc:1509 rc_option_editor.cc:1511 +#: rc_option_editor.cc:1513 rc_option_editor.cc:1544 rc_option_editor.cc:1546 +#: rc_option_editor.cc:1548 rc_option_editor.cc:1556 rc_option_editor.cc:1564 +#: rc_option_editor.cc:1572 msgid "Audio" msgstr "LjudspÃ¥r" #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 -#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1707 -#: rc_option_editor.cc:1715 rc_option_editor.cc:1723 rc_option_editor.cc:1732 -#: rc_option_editor.cc:1740 rc_option_editor.cc:1748 rc_option_editor.cc:1756 -#: rc_option_editor.cc:1765 rc_option_editor.cc:1774 rc_option_editor.cc:1783 -#: rc_option_editor.cc:1791 rc_option_editor.cc:1799 +#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1695 +#: rc_option_editor.cc:1703 rc_option_editor.cc:1711 rc_option_editor.cc:1720 +#: rc_option_editor.cc:1728 rc_option_editor.cc:1736 rc_option_editor.cc:1744 +#: rc_option_editor.cc:1753 rc_option_editor.cc:1762 rc_option_editor.cc:1771 +#: rc_option_editor.cc:1779 rc_option_editor.cc:1787 msgid "MIDI" msgstr "" +#: add_route_dialog.cc:217 add_route_dialog.cc:230 add_route_dialog.cc:300 +msgid "Audio+MIDI" +msgstr "" + +#: add_route_dialog.cc:218 add_route_dialog.cc:233 add_route_dialog.cc:301 +msgid "Bus" +msgstr "" + #: add_route_dialog.cc:260 msgid "" "Audio+MIDI tracks are intended for use ONLY with plugins that use " @@ -466,6 +503,18 @@ msgstr "12 kanaler" msgid "Custom" msgstr "Manuellt" +#: add_route_dialog.cc:508 add_route_dialog.cc:524 route_group_menu.cc:81 +msgid "New Group..." +msgstr "" + +#: add_route_dialog.cc:512 route_group_menu.cc:85 +msgid "No Group" +msgstr "" + +#: add_route_dialog.cc:588 +msgid "-none-" +msgstr "" + #: ambiguous_file_dialog.cc:30 msgid "Ambiguous File" msgstr "" @@ -523,7 +572,7 @@ msgstr "Normalisera värden" msgid "FFT analysis window" msgstr "FFT-analysfönster" -#: analysis_window.cc:60 editor.cc:1856 +#: analysis_window.cc:60 editor.cc:1857 msgid "Spectral Analysis" msgstr "Spektralanalys" @@ -545,6 +594,22 @@ msgstr "Ã…teranalysera data" msgid "button cannot watch state of non-existing Controllable\n" msgstr "" +#: ardour_ui.cc:180 +msgid "audition" +msgstr "" + +#: ardour_ui.cc:181 +msgid "solo" +msgstr "" + +#: ardour_ui.cc:182 +msgid "feedback" +msgstr "" + +#: ardour_ui.cc:187 speaker_dialog.cc:36 +msgid "Speaker Configuration" +msgstr "" + #: ardour_ui.cc:188 theme_manager.cc:56 theme_manager.cc:64 msgid "Theme Manager" msgstr "Färgtema" @@ -557,6 +622,10 @@ msgstr "Kortkommandon" msgid "Preferences" msgstr "Inställningar" +#: ardour_ui.cc:191 ardour_ui.cc:197 +msgid "Add Tracks/Busses" +msgstr "" + #: ardour_ui.cc:192 msgid "About" msgstr "Om" @@ -569,27 +638,70 @@ msgstr "Platser" msgid "Tracks and Busses" msgstr "SpÃ¥r och bussar" -#: ardour_ui.cc:195 +#: ardour_ui.cc:195 engine_dialog.cc:67 +msgid "Audio/MIDI Setup" +msgstr "" + +#: ardour_ui.cc:196 msgid "Properties" msgstr "Egenskaper" -#: ardour_ui.cc:197 bundle_manager.cc:263 +#: ardour_ui.cc:198 bundle_manager.cc:263 msgid "Bundle Manager" msgstr "Buntar" -#: ardour_ui.cc:198 big_clock_window.cc:35 +#: ardour_ui.cc:199 big_clock_window.cc:35 msgid "Big Clock" msgstr "Stor klocka" -#: ardour_ui.cc:202 +#: ardour_ui.cc:200 +msgid "Audio Connections" +msgstr "" + +#: ardour_ui.cc:201 +msgid "MIDI Connections" +msgstr "" + +#: ardour_ui.cc:203 msgid "Errors" msgstr "" -#: ardour_ui.cc:388 -msgid "Starting audio engine" -msgstr "Startar ljudsystemet" +#: ardour_ui.cc:436 +msgid "" +"The audio backend was shutdown because:\n" +"\n" +"%1" +msgstr "" -#: ardour_ui.cc:806 +#: ardour_ui.cc:438 +msgid "" +"The audio backend has either been shutdown or it\n" +"disconnected %1 because %1\n" +"was not fast enough. Try to restart\n" +"the audio backend and save the session." +msgstr "" + +#: ardour_ui.cc:758 +msgid "NSM server did not announce itself" +msgstr "" + +#: ardour_ui.cc:771 +msgid "NSM: no client ID provided" +msgstr "" + +#: ardour_ui.cc:778 +msgid "NSM: no session created" +msgstr "" + +#: ardour_ui.cc:801 +msgid "NSM: initialization failed" +msgstr "" + +#: ardour_ui.cc:840 startup.cc:379 +msgid "%1 is ready for use" +msgstr "" + +#: ardour_ui.cc:882 msgid "" "WARNING: Your system has a limit for maximum amount of locked memory. This " "might cause %1 to run out of memory before your system runs out of memory. \n" @@ -598,74 +710,130 @@ msgid "" "controlled by %2" msgstr "" -#: ardour_ui.cc:823 +#: ardour_ui.cc:899 msgid "Do not show this window again" msgstr "" -#: ardour_ui.cc:963 +#: ardour_ui.cc:943 +msgid "Don't quit" +msgstr "" + +#: ardour_ui.cc:944 +msgid "Just quit" +msgstr "" + +#: ardour_ui.cc:945 +msgid "Save and quit" +msgstr "" + +#: ardour_ui.cc:955 +msgid "" +"%1 was unable to save your session.\n" +"\n" +"If you still wish to quit, please use the\n" +"\n" +"\"Just quit\" option." +msgstr "" + +#: ardour_ui.cc:986 +msgid "Please wait while %1 cleans up..." +msgstr "" + +#: ardour_ui.cc:1004 +msgid "Unsaved Session" +msgstr "" + +#: ardour_ui.cc:1025 +msgid "" +"The session \"%1\"\n" +"has not been saved.\n" +"\n" +"Any changes made this time\n" +"will be lost unless you save it.\n" +"\n" +"What do you want to do?" +msgstr "" + +#: ardour_ui.cc:1028 +msgid "" +"The snapshot \"%1\"\n" +"has not been saved.\n" +"\n" +"Any changes made this time\n" +"will be lost unless you save it.\n" +"\n" +"What do you want to do?" +msgstr "" + +#: ardour_ui.cc:1042 msgid "Prompter" msgstr "FrÃ¥ga" -#: ardour_ui.cc:1049 -msgid "disconnected" -msgstr "frÃ¥nkopplad" - -#: ardour_ui.cc:1056 +#: ardour_ui.cc:1128 ardour_ui.cc:1136 #, c-format -msgid "JACK: %.1f kHz / %4.1f ms" +msgid "Audio: none" msgstr "" -#: ardour_ui.cc:1060 +#: ardour_ui.cc:1140 #, c-format -msgid "JACK: % kHz / %4.1f ms" +msgid "Audio: %.1f kHz / %4.1f ms" msgstr "" -#: ardour_ui.cc:1082 +#: ardour_ui.cc:1144 +#, c-format +msgid "Audio: % kHz / %4.1f ms" +msgstr "" + +#: ardour_ui.cc:1162 export_video_dialog.cc:67 +msgid "File:" +msgstr "" + +#: ardour_ui.cc:1166 msgid "BWF" msgstr "" -#: ardour_ui.cc:1085 +#: ardour_ui.cc:1169 msgid "WAV" msgstr "" -#: ardour_ui.cc:1088 +#: ardour_ui.cc:1172 msgid "WAV64" msgstr "" -#: ardour_ui.cc:1091 session_option_editor.cc:197 +#: ardour_ui.cc:1175 session_option_editor.cc:197 msgid "CAF" msgstr "" -#: ardour_ui.cc:1094 +#: ardour_ui.cc:1178 msgid "AIFF" msgstr "" -#: ardour_ui.cc:1097 +#: ardour_ui.cc:1181 msgid "iXML" msgstr "" -#: ardour_ui.cc:1100 +#: ardour_ui.cc:1184 msgid "RF64" msgstr "" -#: ardour_ui.cc:1108 +#: ardour_ui.cc:1192 msgid "32-float" msgstr "" -#: ardour_ui.cc:1111 +#: ardour_ui.cc:1195 msgid "24-int" msgstr "" -#: ardour_ui.cc:1114 +#: ardour_ui.cc:1198 msgid "16-int" msgstr "" -#: ardour_ui.cc:1133 +#: ardour_ui.cc:1217 #, c-format msgid "DSP: %5.1f%%" msgstr "" -#: ardour_ui.cc:1152 +#: ardour_ui.cc:1236 #, c-format msgid "" "Buffers: p:" @@ -673,103 +841,211 @@ msgid "" "\">%%%" msgstr "" -#: ardour_ui.cc:1190 +#: ardour_ui.cc:1277 +msgid "Disk: Unknown" +msgstr "" + +#: ardour_ui.cc:1279 msgid "Disk: 24hrs+" msgstr "" -#: ardour_ui.cc:1208 +#: ardour_ui.cc:1297 msgid "Disk: >24 hrs" msgstr "" -#: ardour_ui.cc:1362 ardour_ui.cc:1371 startup.cc:1054 +#: ardour_ui.cc:1308 +#, c-format +msgid "Disk: %02dh:%02dm:%02ds" +msgstr "" + +#: ardour_ui.cc:1334 +#, c-format +msgid "Timecode|TC: %s" +msgstr "" + +#: ardour_ui.cc:1451 ardour_ui.cc:1460 session_dialog.cc:322 +#: session_dialog.cc:327 msgid "Recent Sessions" msgstr "Tidigare Sessioner" -#: ardour_ui.cc:1451 +#: ardour_ui.cc:1539 msgid "" -"%1 is not connected to JACK\n" +"%1 is not connected to any audio backend.\n" "You cannot open or close sessions in this condition" msgstr "" -#: ardour_ui.cc:1478 +#: ardour_ui.cc:1563 msgid "Open Session" msgstr "Öppna session" -#: ardour_ui.cc:1540 +#: ardour_ui.cc:1588 session_dialog.cc:353 session_import_dialog.cc:169 +#: session_metadata_dialog.cc:729 +msgid "%1 sessions" +msgstr "" + +#: ardour_ui.cc:1625 msgid "You cannot add a track without a session already loaded." msgstr "Du kan inte lägga till ett spÃ¥r utan en session laddad." -#: ardour_ui.cc:2114 +#: ardour_ui.cc:1633 +msgid "could not create %1 new mixed track" +msgid_plural "could not create %1 new mixed tracks" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1639 ardour_ui.cc:1700 msgid "" -"The audio backend (JACK) was shutdown because:\n" -"\n" -"%1" +"There are insufficient JACK ports available\n" +"to create a new track or bus.\n" +"You should save %1, exit and\n" +"restart JACK with more ports." msgstr "" -#: ardour_ui.cc:2142 -msgid "Unable to start the session running" -msgstr "Kan ej starta sessionen" +#: ardour_ui.cc:1674 +msgid "You cannot add a track or bus without a session already loaded." +msgstr "" -#: ardour_ui.cc:2222 +#: ardour_ui.cc:1683 +msgid "could not create %1 new audio track" +msgid_plural "could not create %1 new audio tracks" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1692 +msgid "could not create %1 new audio bus" +msgid_plural "could not create %1 new audio busses" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1816 +msgid "" +"Please create one or more tracks before trying to record.\n" +"You can do this with the \"Add Track or Bus\" option in the Session menu." +msgstr "" + +#: ardour_ui.cc:2193 msgid "Take Snapshot" msgstr "Gör ögonblickskopia" -#: ardour_ui.cc:2223 +#: ardour_ui.cc:2194 msgid "Name of new snapshot" msgstr "Namnge ny ögonblickskopia" -#: ardour_ui.cc:2247 +#: ardour_ui.cc:2218 msgid "" "To ensure compatibility with various systems\n" "snapshot names may not contain a '%1' character" msgstr "" -#: ardour_ui.cc:2259 +#: ardour_ui.cc:2230 msgid "Confirm Snapshot Overwrite" msgstr "" -#: ardour_ui.cc:2263 utils_videotl.cc:67 +#: ardour_ui.cc:2231 +msgid "A snapshot already exists with that name. Do you want to overwrite it?" +msgstr "" + +#: ardour_ui.cc:2234 utils_videotl.cc:67 msgid "Overwrite" msgstr "" -#: ardour_ui.cc:2312 ardour_ui.cc:2692 ardour_ui.cc:2737 +#: ardour_ui.cc:2268 +msgid "Rename Session" +msgstr "" + +#: ardour_ui.cc:2269 +msgid "New session name" +msgstr "" + +#: ardour_ui.cc:2283 ardour_ui.cc:2684 ardour_ui.cc:2722 msgid "" "To ensure compatibility with various systems\n" "session names may not contain a '%1' character" msgstr "" -#: ardour_ui.cc:2320 +#: ardour_ui.cc:2291 msgid "" "That name is already in use by another directory/folder. Please try again." msgstr "" -#: ardour_ui.cc:2329 +#: ardour_ui.cc:2300 msgid "" "Renaming this session failed.\n" "Things could be seriously messed up at this point" msgstr "" -#: ardour_ui.cc:2442 +#: ardour_ui.cc:2411 +msgid "Save Template" +msgstr "" + +#: ardour_ui.cc:2412 +msgid "Name for template:" +msgstr "" + +#: ardour_ui.cc:2413 msgid "-template" msgstr "-mall" -#: ardour_ui.cc:2830 +#: ardour_ui.cc:2451 +msgid "" +"This session\n" +"%1\n" +"already exists. Do you want to open it?" +msgstr "" + +#: ardour_ui.cc:2461 +msgid "Open Existing Session" +msgstr "" + +#: ardour_ui.cc:2712 +msgid "There is no existing session at \"%1\"" +msgstr "" + +#: ardour_ui.cc:2804 +msgid "Please wait while %1 loads your session" +msgstr "" + +#: ardour_ui.cc:2819 msgid "Port Registration Error" msgstr "" -#: ardour_ui.cc:2831 +#: ardour_ui.cc:2820 msgid "Click the Close button to try again." msgstr "" -#: ardour_ui.cc:2852 +#: ardour_ui.cc:2841 msgid "Session \"%1 (snapshot %2)\" did not load successfully" msgstr "Session \"%1 (ögonblickskopia %2)\" kunde inte laddas" -#: ardour_ui.cc:2859 -msgid "Click the Refresh button to try again." +#: ardour_ui.cc:2848 +msgid "Loading Error" msgstr "" -#: ardour_ui.cc:3046 +#: ardour_ui.cc:2867 +msgid "" +"This session has been opened in read-only mode.\n" +"\n" +"You will not be able to record or save." +msgstr "" + +#: ardour_ui.cc:2873 +msgid "Read-only Session" +msgstr "" + +#: ardour_ui.cc:2931 +msgid "Could not create session in \"%1\"" +msgstr "" + +#: ardour_ui.cc:3031 +msgid "No files were ready for clean-up" +msgstr "" + +#: ardour_ui.cc:3035 ardour_ui.cc:3045 ardour_ui.cc:3178 ardour_ui.cc:3185 +#: ardour_ui_ed.cc:104 +msgid "Clean-up" +msgstr "" + +#: ardour_ui.cc:3036 msgid "" "If this seems suprising, \n" "check for any existing snapshots.\n" @@ -780,107 +1056,203 @@ msgstr "" "ögonblickskopior. Dessa kan använda regioner som\n" "använder oanvända filer för att kunna fungera." -#: ardour_ui.cc:3105 +#: ardour_ui.cc:3095 msgid "kilo" msgstr "" -#: ardour_ui.cc:3108 +#: ardour_ui.cc:3098 msgid "mega" msgstr "" -#: ardour_ui.cc:3111 +#: ardour_ui.cc:3101 msgid "giga" msgstr "" -#: ardour_ui.cc:3198 +#: ardour_ui.cc:3106 +msgid "" +"The following file was deleted from %2,\n" +"releasing %3 %4bytes of disk space" +msgid_plural "" +"The following %1 files were deleted from %2,\n" +"releasing %3 %4bytes of disk space" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:3113 +msgid "" +"The following file was not in use and \n" +"has been moved to: %2\n" +"\n" +"After a restart of %5\n" +"\n" +"Session -> Clean-up -> Flush Wastebasket\n" +"\n" +"will release an additional %3 %4bytes of disk space.\n" +msgid_plural "" +"The following %1 files were not in use and \n" +"have been moved to: %2\n" +"\n" +"After a restart of %5\n" +"\n" +"Session -> Clean-up -> Flush Wastebasket\n" +"\n" +"will release an additional %3 %4bytes of disk space.\n" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:3173 +msgid "Are you sure you want to clean-up?" +msgstr "" + +#: ardour_ui.cc:3180 +msgid "" +"Clean-up is a destructive operation.\n" +"ALL undo/redo information will be lost if you clean-up.\n" +"Clean-up will move all unused files to a \"dead\" location." +msgstr "" + +#: ardour_ui.cc:3188 msgid "CleanupDialog" msgstr "Rensadialog" -#: ardour_ui.cc:3245 +#: ardour_ui.cc:3218 +msgid "Cleaned Files" +msgstr "" + +#: ardour_ui.cc:3235 msgid "deleted file" msgstr "raderad fil" -#: ardour_ui.cc:3337 +#: ardour_ui.cc:3381 msgid "" "Video-Server was not launched by Ardour. The request to stop it is ignored." msgstr "" -#: ardour_ui.cc:3341 +#: ardour_ui.cc:3385 msgid "Stop Video-Server" msgstr "" -#: ardour_ui.cc:3342 +#: ardour_ui.cc:3386 msgid "Do you really want to stop the Video Server?" msgstr "" -#: ardour_ui.cc:3371 +#: ardour_ui.cc:3389 +msgid "Yes, Stop It" +msgstr "" + +#: ardour_ui.cc:3415 msgid "The Video Server is already started." msgstr "" -#: ardour_ui.cc:3373 +#: ardour_ui.cc:3417 msgid "" "An external Video Server is configured and can be reached. Not starting a " "new instance." msgstr "" -#: ardour_ui.cc:3381 ardour_ui.cc:3471 +#: ardour_ui.cc:3425 ardour_ui.cc:3515 msgid "" "Could not connect to the Video Server. Start it or configure its access URL " "in Edit -> Preferences." msgstr "" -#: ardour_ui.cc:3405 +#: ardour_ui.cc:3449 msgid "Specified docroot is not an existing directory." msgstr "" -#: ardour_ui.cc:3410 +#: ardour_ui.cc:3454 msgid "Given Video Server is not an executable file." msgstr "" -#: ardour_ui.cc:3443 +#: ardour_ui.cc:3487 msgid "Cannot launch the video-server" msgstr "" -#: ardour_ui.cc:3452 +#: ardour_ui.cc:3496 msgid "Video-server was started but does not respond to requests..." msgstr "" -#: ardour_ui.cc:3497 editor_audio_import.cc:632 +#: ardour_ui.cc:3541 editor_audio_import.cc:632 msgid "could not open %1" msgstr "kunde inte öppna %1" -#: ardour_ui.cc:3673 +#: ardour_ui.cc:3545 +msgid "no video-file selected" +msgstr "" + +#: ardour_ui.cc:3717 msgid "Recording was stopped because your system could not keep up." msgstr "Inspelningen stoppades eftersom ditt system inte kunde hänga med." -#: ardour_ui.cc:3761 +#: ardour_ui.cc:3746 +msgid "" +"The disk system on your computer\n" +"was not able to keep up with %1.\n" +"\n" +"Specifically, it failed to write data to disk\n" +"quickly enough to keep up with recording.\n" +msgstr "" + +#: ardour_ui.cc:3765 +msgid "" +"The disk system on your computer\n" +"was not able to keep up with %1.\n" +"\n" +"Specifically, it failed to read data from disk\n" +"quickly enough to keep up with playback.\n" +msgstr "" + +#: ardour_ui.cc:3805 msgid "Crash Recovery" msgstr "" -#: ardour_ui.cc:3774 +#: ardour_ui.cc:3806 +msgid "" +"This session appears to have been in the\n" +"middle of recording when %1 or\n" +"the computer was shutdown.\n" +"\n" +"%1 can recover any captured audio for\n" +"you, or it can ignore it. Please decide\n" +"what you would like to do.\n" +msgstr "" + +#: ardour_ui.cc:3818 msgid "Ignore crash data" msgstr "Ignorera kraschdata" -#: ardour_ui.cc:3775 +#: ardour_ui.cc:3819 msgid "Recover from crash" msgstr "Ã…terhämta frÃ¥n krasch" -#: ardour_ui.cc:3796 +#: ardour_ui.cc:3839 +msgid "Sample Rate Mismatch" +msgstr "" + +#: ardour_ui.cc:3840 msgid "" "This session was created with a sample rate of %1 Hz, but\n" "%2 is currently running at %3 Hz. If you load this session,\n" "audio may be played at the wrong sample rate.\n" msgstr "" -#: ardour_ui.cc:3829 -msgid "Could not disconnect from JACK" -msgstr "Kunde inte koppla loss frÃ¥n JACK" +#: ardour_ui.cc:3849 +msgid "Do not load session" +msgstr "" -#: ardour_ui.cc:3842 -msgid "Could not reconnect to JACK" -msgstr "Kunde inte Ã¥teransluta till JACK" +#: ardour_ui.cc:3850 +msgid "Load session anyway" +msgstr "" -#: ardour_ui.cc:4116 +#: ardour_ui.cc:3877 +msgid "Could not disconnect from Audio/MIDI engine" +msgstr "" + +#: ardour_ui.cc:3893 ardour_ui.cc:3896 +msgid "Could not reconnect to the Audio/MIDI engine" +msgstr "" + +#: ardour_ui.cc:4172 msgid "" "%4This is a session from an older version of %3%5\n" "\n" @@ -903,6 +1275,10 @@ msgstr "Gränssnitt: kan ej konfigurera editorn" msgid "UI: cannot setup mixer" msgstr "Gränssnitt: kan inte konfigurera mixern" +#: ardour_ui2.cc:82 +msgid "UI: cannot setup meterbridge" +msgstr "" + #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "Spela frÃ¥n startmarkören" @@ -931,10 +1307,20 @@ msgstr "GÃ¥ till slutet av sessionen" msgid "Play loop range" msgstr "Spela loop-omfÃ¥ng" +#: ardour_ui2.cc:137 +msgid "" +"MIDI Panic\n" +"Send note off and reset controller messages on all MIDI channels" +msgstr "" + #: ardour_ui2.cc:138 msgid "Return to last playback start when stopped" msgstr "Ã…tervänd till senaste startmarkörpunkten vid stopp" +#: ardour_ui2.cc:139 +msgid "Playhead follows Range Selections and Edits" +msgstr "" + #: ardour_ui2.cc:140 msgid "Be sensible about input monitoring" msgstr "Rimlig inljudsmedhörning" @@ -979,6 +1365,10 @@ msgid "" "confirm; postfix the edit with '+' or '-' to enter delta times.\n" msgstr "" +#: ardour_ui2.cc:147 +msgid "Reset Level Meter" +msgstr "" + #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "" @@ -991,35 +1381,51 @@ msgstr "" msgid "[INFO]: " msgstr "" -#: ardour_ui2.cc:247 ardour_ui_ed.cc:377 +#: ardour_ui2.cc:247 ardour_ui_ed.cc:344 msgid "Auto Return" msgstr "AutoÃ¥tervänd" -#: ardour_ui2.cc:628 rc_option_editor.cc:1004 rc_option_editor.cc:1022 -#: rc_option_editor.cc:1025 rc_option_editor.cc:1027 rc_option_editor.cc:1029 -#: rc_option_editor.cc:1037 rc_option_editor.cc:1045 rc_option_editor.cc:1047 -#: rc_option_editor.cc:1055 rc_option_editor.cc:1062 rc_option_editor.cc:1071 -#: rc_option_editor.cc:1073 rc_option_editor.cc:1075 rc_option_editor.cc:1083 -#: rc_option_editor.cc:1085 rc_option_editor.cc:1094 +#: ardour_ui2.cc:249 ardour_ui_ed.cc:347 +msgid "Follow Edits" +msgstr "" + +#: ardour_ui2.cc:628 rc_option_editor.cc:1002 rc_option_editor.cc:1020 +#: rc_option_editor.cc:1023 rc_option_editor.cc:1025 rc_option_editor.cc:1027 +#: rc_option_editor.cc:1035 rc_option_editor.cc:1043 rc_option_editor.cc:1045 +#: rc_option_editor.cc:1053 rc_option_editor.cc:1060 rc_option_editor.cc:1069 +#: rc_option_editor.cc:1071 rc_option_editor.cc:1073 rc_option_editor.cc:1081 +#: rc_option_editor.cc:1083 rc_option_editor.cc:1092 #: session_option_editor.cc:234 session_option_editor.cc:236 #: session_option_editor.cc:257 session_option_editor.cc:259 #: session_option_editor.cc:261 session_option_editor.cc:268 msgid "Misc" msgstr "Diverse" -#: ardour_ui_dependents.cc:77 +#: ardour_ui_dependents.cc:69 msgid "Setup Editor" msgstr "Förbereder redigeraren..." -#: ardour_ui_dependents.cc:79 +#: ardour_ui_dependents.cc:71 msgid "Setup Mixer" msgstr "Förbereder mixern..." -#: ardour_ui_dependents.cc:85 +#: ardour_ui_dependents.cc:77 msgid "Reload Session History" msgstr "Laddar sessionshistoriken..." -#: ardour_ui_dialogs.cc:340 +#: ardour_ui_dialogs.cc:238 +msgid "Don't close" +msgstr "" + +#: ardour_ui_dialogs.cc:239 +msgid "Just close" +msgstr "" + +#: ardour_ui_dialogs.cc:240 +msgid "Save and close" +msgstr "" + +#: ardour_ui_dialogs.cc:339 msgid "This screen is not tall enough to display the mixer window" msgstr "" @@ -1028,11 +1434,11 @@ msgid "Session" msgstr "" #: ardour_ui_ed.cc:106 editor_actions.cc:134 editor_regions.cc:115 -#: port_group.cc:457 session_option_editor.cc:82 session_option_editor.cc:89 +#: port_group.cc:458 session_option_editor.cc:82 session_option_editor.cc:89 msgid "Sync" msgstr "Synk." -#: ardour_ui_ed.cc:107 engine_dialog.cc:369 +#: ardour_ui_ed.cc:107 msgid "Options" msgstr "Inställningar" @@ -1060,18 +1466,22 @@ msgstr "Filtyp" msgid "Sample Format" msgstr "Samplingsformat" -#: ardour_ui_ed.cc:114 rc_option_editor.cc:1826 rc_option_editor.cc:1839 +#: ardour_ui_ed.cc:114 rc_option_editor.cc:1814 rc_option_editor.cc:1826 msgid "Control Surfaces" msgstr "Kontrollytor" -#: ardour_ui_ed.cc:115 rc_option_editor.cc:1558 +#: ardour_ui_ed.cc:115 rc_option_editor.cc:1546 msgid "Plugins" msgstr "Insticksprogram" -#: ardour_ui_ed.cc:116 rc_option_editor.cc:1902 +#: ardour_ui_ed.cc:116 rc_option_editor.cc:1889 msgid "Metering" msgstr "NivÃ¥mätning" +#: ardour_ui_ed.cc:117 +msgid "Fall Off Rate" +msgstr "" + #: ardour_ui_ed.cc:118 msgid "Hold Time" msgstr "HÃ¥llningslängd" @@ -1100,6 +1510,18 @@ msgstr "Stäng" msgid "Add Track or Bus..." msgstr "Lägg till spÃ¥r eller buss..." +#: ardour_ui_ed.cc:135 +msgid "Open Video" +msgstr "" + +#: ardour_ui_ed.cc:138 +msgid "Remove Video" +msgstr "" + +#: ardour_ui_ed.cc:141 +msgid "Export To Video File" +msgstr "" + #: ardour_ui_ed.cc:145 msgid "Snapshot..." msgstr "Ögonblickskopia..." @@ -1117,6 +1539,10 @@ msgstr "Byt namn..." msgid "Save Template..." msgstr "Spara mall..." +#: ardour_ui_ed.cc:160 +msgid "Metadata" +msgstr "" + #: ardour_ui_ed.cc:163 msgid "Edit Metadata..." msgstr "Redigera metadata..." @@ -1129,151 +1555,170 @@ msgstr "Importera metadata..." msgid "Export To Audio File(s)..." msgstr "Exportera till ljudfil(er)..." +#: ardour_ui_ed.cc:172 +msgid "Stem export..." +msgstr "" + #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 -#: export_video_dialog.cc:72 +#: export_video_dialog.cc:71 msgid "Export" msgstr "Exportera" +#: ardour_ui_ed.cc:178 +msgid "Clean-up Unused Sources..." +msgstr "" + #: ardour_ui_ed.cc:182 msgid "Flush Wastebasket" msgstr "Töm papperskorgen" -#: ardour_ui_ed.cc:189 keyeditor.cc:253 rc_option_editor.cc:1472 -msgid "JACK" -msgstr "" - -#: ardour_ui_ed.cc:190 route_params_ui.cc:105 -msgid "Latency" -msgstr "Fördröjning" - -#: ardour_ui_ed.cc:192 -msgid "Reconnect" -msgstr "Ã…teranslut" - -#: ardour_ui_ed.cc:195 global_port_matrix.cc:207 io_selector.cc:210 -#: mixer_strip.cc:719 mixer_strip.cc:845 -msgid "Disconnect" -msgstr "Koppla frÃ¥n" - -#: ardour_ui_ed.cc:222 +#: ardour_ui_ed.cc:189 msgid "Quit" msgstr "Avsluta" -#: ardour_ui_ed.cc:226 +#: ardour_ui_ed.cc:193 msgid "Maximise Editor Space" msgstr "Helskärmsläge" -#: ardour_ui_ed.cc:234 midi_tracer.cc:39 +#: ardour_ui_ed.cc:194 +msgid "Show Toolbars" +msgstr "" + +#: ardour_ui_ed.cc:197 mixer_ui.cc:1865 mixer_ui.cc:1871 +msgid "Window|Mixer" +msgstr "" + +#: ardour_ui_ed.cc:198 +msgid "Toggle Editor+Mixer" +msgstr "" + +#: ardour_ui_ed.cc:199 meterbridge.cc:230 meterbridge.cc:236 +msgid "Window|Meterbridge" +msgstr "" + +#: ardour_ui_ed.cc:201 midi_tracer.cc:42 msgid "MIDI Tracer" msgstr "MIDI-spÃ¥rare" -#: ardour_ui_ed.cc:236 +#: ardour_ui_ed.cc:203 msgid "Chat" msgstr "Chatt" -#: ardour_ui_ed.cc:239 +#: ardour_ui_ed.cc:205 +msgid "Help|Manual" +msgstr "" + +#: ardour_ui_ed.cc:206 msgid "Reference" msgstr "Referens" -#: ardour_ui_ed.cc:241 plugin_ui.cc:418 +#: ardour_ui_ed.cc:208 plugin_ui.cc:415 msgid "Save" msgstr "Spara" -#: ardour_ui_ed.cc:249 rc_option_editor.cc:1114 rc_option_editor.cc:1125 -#: rc_option_editor.cc:1134 rc_option_editor.cc:1147 rc_option_editor.cc:1160 -#: rc_option_editor.cc:1169 rc_option_editor.cc:1179 rc_option_editor.cc:1181 -#: rc_option_editor.cc:1191 rc_option_editor.cc:1207 rc_option_editor.cc:1220 -#: rc_option_editor.cc:1238 rc_option_editor.cc:1240 rc_option_editor.cc:1254 -#: rc_option_editor.cc:1257 rc_option_editor.cc:1259 rc_option_editor.cc:1276 -#: rc_option_editor.cc:1287 +#: ardour_ui_ed.cc:216 rc_option_editor.cc:1112 rc_option_editor.cc:1123 +#: rc_option_editor.cc:1132 rc_option_editor.cc:1145 rc_option_editor.cc:1158 +#: rc_option_editor.cc:1167 rc_option_editor.cc:1177 rc_option_editor.cc:1179 +#: rc_option_editor.cc:1189 rc_option_editor.cc:1205 rc_option_editor.cc:1218 +#: rc_option_editor.cc:1236 rc_option_editor.cc:1238 rc_option_editor.cc:1252 +#: rc_option_editor.cc:1255 rc_option_editor.cc:1257 rc_option_editor.cc:1274 +#: rc_option_editor.cc:1285 msgid "Transport" msgstr "Uppspelning" -#: ardour_ui_ed.cc:255 engine_dialog.cc:85 +#: ardour_ui_ed.cc:222 msgid "Stop" msgstr "Stopp" -#: ardour_ui_ed.cc:258 +#: ardour_ui_ed.cc:225 msgid "Roll" msgstr "" -#: ardour_ui_ed.cc:262 +#: ardour_ui_ed.cc:229 msgid "Start/Stop" msgstr "Start/Stopp" -#: ardour_ui_ed.cc:265 +#: ardour_ui_ed.cc:232 msgid "Start/Continue/Stop" msgstr "Start/Fortsätt/Stopp" -#: ardour_ui_ed.cc:268 +#: ardour_ui_ed.cc:235 msgid "Stop and Forget Capture" msgstr "Stoppa och glöm inspelning" -#: ardour_ui_ed.cc:278 +#: ardour_ui_ed.cc:245 msgid "Transition To Roll" msgstr "ÖvergÃ¥ng till Rullning" -#: ardour_ui_ed.cc:282 +#: ardour_ui_ed.cc:249 msgid "Transition To Reverse" msgstr "ÖvergÃ¥ng till Motsatt riktning" -#: ardour_ui_ed.cc:286 +#: ardour_ui_ed.cc:253 msgid "Play Loop Range" msgstr "Spela loop-omfÃ¥ng" -#: ardour_ui_ed.cc:296 +#: ardour_ui_ed.cc:256 +msgid "Play Selected Range" +msgstr "" + +#: ardour_ui_ed.cc:259 +msgid "Play Selection w/Preroll" +msgstr "" + +#: ardour_ui_ed.cc:263 msgid "Enable Record" msgstr "TillÃ¥t inspelning" -#: ardour_ui_ed.cc:299 +#: ardour_ui_ed.cc:266 msgid "Start Recording" msgstr "Börja inspelning" -#: ardour_ui_ed.cc:303 +#: ardour_ui_ed.cc:270 msgid "Rewind" msgstr "BakÃ¥tspolning" -#: ardour_ui_ed.cc:306 +#: ardour_ui_ed.cc:273 msgid "Rewind (Slow)" msgstr "BakÃ¥tspolning (lÃ¥ngsam)" -#: ardour_ui_ed.cc:309 +#: ardour_ui_ed.cc:276 msgid "Rewind (Fast)" msgstr "BakÃ¥tspolning (snabb)" -#: ardour_ui_ed.cc:312 startup.cc:727 +#: ardour_ui_ed.cc:279 msgid "Forward" msgstr "FramÃ¥tspolning" -#: ardour_ui_ed.cc:315 +#: ardour_ui_ed.cc:282 msgid "Forward (Slow)" msgstr "FramÃ¥tspolning (lÃ¥ngsam)" -#: ardour_ui_ed.cc:318 +#: ardour_ui_ed.cc:285 msgid "Forward (Fast)" msgstr "FramÃ¥tspolning (snabb)" -#: ardour_ui_ed.cc:321 +#: ardour_ui_ed.cc:288 msgid "Goto Zero" msgstr "GÃ¥ till noll" -#: ardour_ui_ed.cc:324 +#: ardour_ui_ed.cc:291 msgid "Goto Start" msgstr "GÃ¥ till början" -#: ardour_ui_ed.cc:327 +#: ardour_ui_ed.cc:294 msgid "Goto End" msgstr "GÃ¥ till slutet" -#: ardour_ui_ed.cc:330 +#: ardour_ui_ed.cc:297 msgid "Goto Wall Clock" msgstr "GÃ¥ till väggklocka" -#: ardour_ui_ed.cc:334 +#: ardour_ui_ed.cc:301 msgid "Focus On Clock" msgstr "Fokus pÃ¥ klockan" -#: ardour_ui_ed.cc:338 ardour_ui_ed.cc:347 audio_clock.cc:2046 editor.cc:237 +#: ardour_ui_ed.cc:305 ardour_ui_ed.cc:314 audio_clock.cc:2046 editor.cc:237 #: editor_actions.cc:544 editor_actions.cc:553 export_timespan_selector.cc:88 #: session_option_editor.cc:41 session_option_editor.cc:61 #: session_option_editor.cc:80 session_option_editor.cc:96 @@ -1282,114 +1727,150 @@ msgstr "Fokus pÃ¥ klockan" msgid "Timecode" msgstr "Tidskod" -#: ardour_ui_ed.cc:340 ardour_ui_ed.cc:349 editor_actions.cc:542 +#: ardour_ui_ed.cc:307 ardour_ui_ed.cc:316 editor_actions.cc:542 msgid "Bars & Beats" msgstr "Takter & slag" -#: ardour_ui_ed.cc:342 ardour_ui_ed.cc:351 +#: ardour_ui_ed.cc:309 ardour_ui_ed.cc:318 msgid "Minutes & Seconds" msgstr "Minuter & sekunder" -#: ardour_ui_ed.cc:344 ardour_ui_ed.cc:353 audio_clock.cc:2050 editor.cc:238 +#: ardour_ui_ed.cc:311 ardour_ui_ed.cc:320 audio_clock.cc:2050 editor.cc:238 #: editor_actions.cc:543 msgid "Samples" msgstr "Samplingar" -#: ardour_ui_ed.cc:356 +#: ardour_ui_ed.cc:323 msgid "Punch In" msgstr "Inslag" -#: ardour_ui_ed.cc:357 mixer_strip.cc:1905 route_ui.cc:137 +#: ardour_ui_ed.cc:324 mixer_strip.cc:1905 route_ui.cc:137 #: time_info_box.cc:113 msgid "In" msgstr "" -#: ardour_ui_ed.cc:360 +#: ardour_ui_ed.cc:327 msgid "Punch Out" msgstr "Utslag" -#: ardour_ui_ed.cc:361 time_info_box.cc:114 +#: ardour_ui_ed.cc:328 time_info_box.cc:114 msgid "Out" msgstr "Ut" -#: ardour_ui_ed.cc:364 +#: ardour_ui_ed.cc:331 msgid "Punch In/Out" msgstr "Inslag/utslag" -#: ardour_ui_ed.cc:368 rc_option_editor.cc:1071 +#: ardour_ui_ed.cc:332 +msgid "In/Out" +msgstr "" + +#: ardour_ui_ed.cc:335 rc_option_editor.cc:1069 msgid "Click" msgstr "Klick" -#: ardour_ui_ed.cc:371 +#: ardour_ui_ed.cc:338 msgid "Auto Input" msgstr "Autoinljud" -#: ardour_ui_ed.cc:374 +#: ardour_ui_ed.cc:341 msgid "Auto Play" msgstr "Autospela" -#: ardour_ui_ed.cc:387 +#: ardour_ui_ed.cc:352 +msgid "Sync Startup to Video" +msgstr "" + +#: ardour_ui_ed.cc:354 msgid "Time Master" msgstr "Huvudklocka" -#: ardour_ui_ed.cc:401 +#: ardour_ui_ed.cc:361 +msgid "Toggle Record Enable Track %1" +msgstr "" + +#: ardour_ui_ed.cc:368 msgid "Percentage" msgstr "Procent" -#: ardour_ui_ed.cc:402 shuttle_control.cc:169 +#: ardour_ui_ed.cc:369 shuttle_control.cc:169 msgid "Semitones" msgstr "Halvtoner" -#: ardour_ui_ed.cc:406 +#: ardour_ui_ed.cc:373 msgid "Send MTC" msgstr "Skicka MTC" -#: ardour_ui_ed.cc:408 +#: ardour_ui_ed.cc:375 msgid "Send MMC" msgstr "Skicka MMC" -#: ardour_ui_ed.cc:410 +#: ardour_ui_ed.cc:377 msgid "Use MMC" msgstr "Använd MMC" -#: ardour_ui_ed.cc:412 rc_option_editor.cc:1710 +#: ardour_ui_ed.cc:379 rc_option_editor.cc:1698 msgid "Send MIDI Clock" msgstr "Skicka MIDI-klocka" -#: ardour_ui_ed.cc:420 +#: ardour_ui_ed.cc:381 +msgid "Send MIDI Feedback" +msgstr "" + +#: ardour_ui_ed.cc:387 msgid "Panic" msgstr "Panik!" -#: ardour_ui_ed.cc:561 +#: ardour_ui_ed.cc:472 +msgid "Wall Clock" +msgstr "" + +#: ardour_ui_ed.cc:473 msgid "Disk Space" msgstr "" -#: ardour_ui_ed.cc:562 +#: ardour_ui_ed.cc:474 msgid "DSP" msgstr "" -#: ardour_ui_ed.cc:564 -msgid "JACK Sampling Rate and Latency" +#: ardour_ui_ed.cc:475 +msgid "Buffers" msgstr "" -#: ardour_ui_options.cc:65 +#: ardour_ui_ed.cc:477 +msgid "Timecode Format" +msgstr "" + +#: ardour_ui_ed.cc:478 +msgid "File Format" +msgstr "" + +#: ardour_ui_options.cc:61 msgid "" "It is not possible to use JACK as the the sync source\n" "when the pull up/down setting is non-zero." msgstr "" -#: ardour_ui_options.cc:321 +#: ardour_ui_options.cc:317 msgid "Internal" msgstr "Intern" -#: ardour_ui_options.cc:482 +#: ardour_ui_options.cc:468 msgid "Enable/Disable external positional sync" msgstr "Välj extern positionssynkronisering" -#: ardour_ui_options.cc:484 +#: ardour_ui_options.cc:470 msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "" +#: audio_clock.cc:1012 audio_clock.cc:1031 +msgid "--pending--" +msgstr "" + +#: audio_clock.cc:1083 +msgid "SR" +msgstr "" + #: audio_clock.cc:1089 audio_clock.cc:1093 msgid "Pull" msgstr "" @@ -1415,6 +1896,10 @@ msgstr "Taktart" msgid "programming error: %1" msgstr "" +#: audio_clock.cc:1952 audio_clock.cc:1980 +msgid "programming error: %1 %2" +msgstr "" + #: audio_clock.cc:2048 editor.cc:236 export_timespan_selector.cc:98 msgid "Bars:Beats" msgstr "Takt:Slag" @@ -1423,6 +1908,14 @@ msgstr "Takt:Slag" msgid "Minutes:Seconds" msgstr "Minuter:Sekunder" +#: audio_clock.cc:2054 +msgid "Set From Playhead" +msgstr "" + +#: audio_clock.cc:2055 +msgid "Locate to This Time" +msgstr "" + #: audio_region_editor.cc:63 control_point_dialog.cc:49 rhythm_ferret.cc:125 #: rhythm_ferret.cc:130 rhythm_ferret.cc:135 msgid "dB" @@ -1460,6 +1953,10 @@ msgstr "Panorering" msgid "automation event move" msgstr "automatiseringshändelse: förflyttning" +#: automation_line.cc:462 automation_line.cc:483 +msgid "automation range move" +msgstr "" + #: automation_line.cc:823 region_gain_line.cc:73 msgid "remove control point" msgstr "ta bort kontrollpunkt" @@ -1468,6 +1965,10 @@ msgstr "ta bort kontrollpunkt" msgid "Ignoring illegal points on AutomationLine \"%1\"" msgstr "" +#: automation_region_view.cc:160 automation_time_axis.cc:583 +msgid "add automation event" +msgstr "" + #: automation_time_axis.cc:146 msgid "automation state" msgstr "automatiseringstillstÃ¥nd" @@ -1476,27 +1977,33 @@ msgstr "automatiseringstillstÃ¥nd" msgid "hide track" msgstr "dölj spÃ¥r" +#: automation_time_axis.cc:255 automation_time_axis.cc:307 +#: automation_time_axis.cc:496 gain_meter.cc:194 generic_pluginui.cc:454 +#: generic_pluginui.cc:775 panner_ui.cc:149 +msgid "Automation|Manual" +msgstr "" + #: automation_time_axis.cc:257 automation_time_axis.cc:318 -#: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 -#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 -#: generic_pluginui.cc:459 generic_pluginui.cc:748 midi_time_axis.cc:1488 -#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:153 +#: automation_time_axis.cc:501 editor.cc:1937 editor.cc:2014 +#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:197 +#: generic_pluginui.cc:457 generic_pluginui.cc:777 midi_time_axis.cc:1488 +#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:152 msgid "Play" msgstr "Uppspelning" #: automation_time_axis.cc:259 automation_time_axis.cc:329 -#: automation_time_axis.cc:506 gain_meter.cc:201 generic_pluginui.cc:462 -#: generic_pluginui.cc:750 panner_ui.cc:156 +#: automation_time_axis.cc:506 gain_meter.cc:200 generic_pluginui.cc:460 +#: generic_pluginui.cc:779 panner_ui.cc:155 msgid "Write" msgstr "Skriv" #: automation_time_axis.cc:261 automation_time_axis.cc:340 -#: automation_time_axis.cc:511 gain_meter.cc:204 generic_pluginui.cc:465 -#: generic_pluginui.cc:752 panner_ui.cc:159 +#: automation_time_axis.cc:511 gain_meter.cc:203 generic_pluginui.cc:463 +#: generic_pluginui.cc:781 panner_ui.cc:158 msgid "Touch" msgstr "Beröring" -#: automation_time_axis.cc:351 generic_pluginui.cc:468 meter_patterns.cc:108 +#: automation_time_axis.cc:351 generic_pluginui.cc:466 meter_patterns.cc:108 msgid "???" msgstr "" @@ -1517,8 +2024,12 @@ msgstr "Rensa" msgid "State" msgstr "TillstÃ¥nd" -#: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 -#: editor.cc:1526 export_format_dialog.cc:476 +#: automation_time_axis.cc:531 +msgid "Discrete" +msgstr "" + +#: automation_time_axis.cc:537 editor.cc:1458 editor.cc:1465 editor.cc:1521 +#: editor.cc:1527 export_format_dialog.cc:476 msgid "Linear" msgstr "Linjär" @@ -1549,13 +2060,13 @@ msgstr "IngÃ¥ng" msgid "Output" msgstr "UtgÃ¥ng" -#: bundle_manager.cc:264 editor.cc:1974 editor_actions.cc:90 +#: bundle_manager.cc:264 editor.cc:1978 editor_actions.cc:90 #: editor_actions.cc:100 msgid "Edit" msgstr "Redigera" -#: bundle_manager.cc:265 editor.cc:5493 editor_actions.cc:310 -#: editor_actions.cc:368 plugin_ui.cc:419 processor_box.cc:2229 +#: bundle_manager.cc:265 editor.cc:5497 editor_actions.cc:310 +#: editor_actions.cc:368 plugin_ui.cc:416 processor_box.cc:2268 #: route_time_axis.cc:713 msgid "Delete" msgstr "Radera" @@ -1573,6 +2084,10 @@ msgstr "Ny" msgid "Bundle" msgstr "Bunt" +#: bundle_manager.cc:417 +msgid "Add Channel" +msgstr "" + #: bundle_manager.cc:424 msgid "Rename Channel" msgstr "Byt namn pÃ¥ kanal" @@ -1665,6 +2180,14 @@ msgstr "" msgid "color of fill" msgstr "" +#: configinfo.cc:28 +msgid "Build Configuration" +msgstr "" + +#: control_point_dialog.cc:33 +msgid "Control point" +msgstr "" + #: control_point_dialog.cc:45 msgid "Value" msgstr "Värde" @@ -1681,6 +2204,10 @@ msgstr "" msgid "Set selected notes to this pitch" msgstr "" +#: edit_note_dialog.cc:47 +msgid "Set selected notes to this velocity" +msgstr "" + #: edit_note_dialog.cc:49 msgid "Set selected notes to this time" msgstr "" @@ -1694,174 +2221,186 @@ msgstr "" msgid "Channel" msgstr "Kanal" +#: edit_note_dialog.cc:68 +msgid "Pitch" +msgstr "" + #: edit_note_dialog.cc:78 step_entry.cc:407 msgid "Velocity" msgstr "" +#: edit_note_dialog.cc:88 patch_change_dialog.cc:67 +msgid "Time" +msgstr "" + #: edit_note_dialog.cc:98 editor_regions.cc:114 #: export_timespan_selector.cc:359 export_timespan_selector.cc:421 #: location_ui.cc:317 midi_list_editor.cc:114 time_info_box.cc:105 msgid "Length" msgstr "Längd" -#: editor.cc:137 editor.cc:3429 +#: edit_note_dialog.cc:165 +msgid "edit note" +msgstr "" + +#: editor.cc:137 editor.cc:3433 msgid "CD Frames" msgstr "CD-frames" -#: editor.cc:138 editor.cc:3431 +#: editor.cc:138 editor.cc:3435 msgid "Timecode Frames" msgstr "Tidskod: rutor" -#: editor.cc:139 editor.cc:3433 +#: editor.cc:139 editor.cc:3437 msgid "Timecode Seconds" msgstr "Tidskod: sekunder" -#: editor.cc:140 editor.cc:3435 +#: editor.cc:140 editor.cc:3439 msgid "Timecode Minutes" msgstr "Tidskod: minuter" -#: editor.cc:141 editor.cc:3437 +#: editor.cc:141 editor.cc:3441 msgid "Seconds" msgstr "Sekunder" -#: editor.cc:142 editor.cc:3439 +#: editor.cc:142 editor.cc:3443 msgid "Minutes" msgstr "Minuter" -#: editor.cc:143 editor.cc:3413 quantize_dialog.cc:37 quantize_dialog.cc:141 +#: editor.cc:143 editor.cc:3417 quantize_dialog.cc:37 quantize_dialog.cc:141 msgid "Beats/128" msgstr "Slag/128" -#: editor.cc:144 editor.cc:3411 quantize_dialog.cc:38 quantize_dialog.cc:143 +#: editor.cc:144 editor.cc:3415 quantize_dialog.cc:38 quantize_dialog.cc:143 msgid "Beats/64" msgstr "Slag/64" -#: editor.cc:145 editor.cc:3409 quantize_dialog.cc:39 quantize_dialog.cc:145 +#: editor.cc:145 editor.cc:3413 quantize_dialog.cc:39 quantize_dialog.cc:145 msgid "Beats/32" msgstr "Slag/32" -#: editor.cc:146 editor.cc:3407 +#: editor.cc:146 editor.cc:3411 msgid "Beats/28" msgstr "Slag/28" -#: editor.cc:147 editor.cc:3405 +#: editor.cc:147 editor.cc:3409 msgid "Beats/24" msgstr "Slag/24" -#: editor.cc:148 editor.cc:3403 +#: editor.cc:148 editor.cc:3407 msgid "Beats/20" msgstr "Slag/20" -#: editor.cc:149 editor.cc:3401 quantize_dialog.cc:40 quantize_dialog.cc:147 +#: editor.cc:149 editor.cc:3405 quantize_dialog.cc:40 quantize_dialog.cc:147 msgid "Beats/16" msgstr "Slag/16" -#: editor.cc:150 editor.cc:3399 +#: editor.cc:150 editor.cc:3403 msgid "Beats/14" msgstr "Slag/14" -#: editor.cc:151 editor.cc:3397 +#: editor.cc:151 editor.cc:3401 msgid "Beats/12" msgstr "Slag/12" -#: editor.cc:152 editor.cc:3395 +#: editor.cc:152 editor.cc:3399 msgid "Beats/10" msgstr "Slag/10" -#: editor.cc:153 editor.cc:3393 quantize_dialog.cc:41 quantize_dialog.cc:149 +#: editor.cc:153 editor.cc:3397 quantize_dialog.cc:41 quantize_dialog.cc:149 msgid "Beats/8" msgstr "Slag/8" -#: editor.cc:154 editor.cc:3391 +#: editor.cc:154 editor.cc:3395 msgid "Beats/7" msgstr "Slag/7" -#: editor.cc:155 editor.cc:3389 +#: editor.cc:155 editor.cc:3393 msgid "Beats/6" msgstr "Slag/6" -#: editor.cc:156 editor.cc:3387 +#: editor.cc:156 editor.cc:3391 msgid "Beats/5" msgstr "Slag/5" -#: editor.cc:157 editor.cc:3385 quantize_dialog.cc:42 quantize_dialog.cc:151 +#: editor.cc:157 editor.cc:3389 quantize_dialog.cc:42 quantize_dialog.cc:151 msgid "Beats/4" msgstr "Slag/4" -#: editor.cc:158 editor.cc:3383 quantize_dialog.cc:43 quantize_dialog.cc:153 +#: editor.cc:158 editor.cc:3387 quantize_dialog.cc:43 quantize_dialog.cc:153 msgid "Beats/3" msgstr "Slag/3" -#: editor.cc:159 editor.cc:3381 quantize_dialog.cc:44 quantize_dialog.cc:155 +#: editor.cc:159 editor.cc:3385 quantize_dialog.cc:44 quantize_dialog.cc:155 msgid "Beats/2" msgstr "Slag/2" -#: editor.cc:160 editor.cc:3415 quantize_dialog.cc:45 quantize_dialog.cc:157 +#: editor.cc:160 editor.cc:3419 quantize_dialog.cc:45 quantize_dialog.cc:157 msgid "Beats" msgstr "Slag" -#: editor.cc:161 editor.cc:3417 +#: editor.cc:161 editor.cc:3421 msgid "Bars" msgstr "Takter" -#: editor.cc:162 editor.cc:3419 +#: editor.cc:162 editor.cc:3423 msgid "Marks" msgstr "Markörer" -#: editor.cc:163 editor.cc:3421 +#: editor.cc:163 editor.cc:3425 msgid "Region starts" msgstr "Region börjar" -#: editor.cc:164 editor.cc:3423 +#: editor.cc:164 editor.cc:3427 msgid "Region ends" msgstr "Region slutar" -#: editor.cc:165 editor.cc:3427 +#: editor.cc:165 editor.cc:3431 msgid "Region syncs" msgstr "Region synkar" -#: editor.cc:166 editor.cc:3425 +#: editor.cc:166 editor.cc:3429 msgid "Region bounds" msgstr "Region gränsar" -#: editor.cc:171 editor.cc:3455 editor_actions.cc:485 +#: editor.cc:171 editor.cc:3459 editor_actions.cc:485 msgid "No Grid" msgstr "Inget rutnät" -#: editor.cc:172 editor.cc:3457 editor_actions.cc:486 +#: editor.cc:172 editor.cc:3461 editor_actions.cc:486 msgid "Grid" msgstr "Rutnät" -#: editor.cc:173 editor.cc:3459 editor_actions.cc:487 +#: editor.cc:173 editor.cc:3463 editor_actions.cc:487 msgid "Magnetic" msgstr "Magnetisk" -#: editor.cc:178 editor.cc:188 editor.cc:3498 editor.cc:3523 +#: editor.cc:178 editor.cc:188 editor.cc:3502 editor.cc:3527 #: editor_actions.cc:117 editor_actions.cc:468 msgid "Playhead" msgstr "Startmarkören" -#: editor.cc:179 editor.cc:3496 editor_actions.cc:470 +#: editor.cc:179 editor.cc:3500 editor_actions.cc:470 msgid "Marker" msgstr "Markör" -#: editor.cc:180 editor.cc:189 editor.cc:3525 editor_actions.cc:469 +#: editor.cc:180 editor.cc:189 editor.cc:3529 editor_actions.cc:469 msgid "Mouse" msgstr "Mus" -#: editor.cc:185 editor.cc:3517 mono_panner_editor.cc:42 +#: editor.cc:185 editor.cc:3521 mono_panner_editor.cc:42 msgid "Left" msgstr "Vänster" -#: editor.cc:186 editor.cc:3519 mono_panner_editor.cc:47 +#: editor.cc:186 editor.cc:3523 mono_panner_editor.cc:47 msgid "Right" msgstr "Höger" -#: editor.cc:187 editor.cc:3521 +#: editor.cc:187 editor.cc:3525 msgid "Center" msgstr "Mitten" -#: editor.cc:190 editor.cc:3090 editor.cc:3527 +#: editor.cc:190 editor.cc:3094 editor.cc:3531 msgid "Edit point" msgstr "redigeringspunkten" @@ -1921,338 +2460,466 @@ msgstr "" msgid "mode" msgstr "läge" -#: editor.cc:542 +#: editor.cc:541 msgid "Regions" msgstr "Regioner" -#: editor.cc:543 +#: editor.cc:542 msgid "Tracks & Busses" msgstr "SpÃ¥r & bussar" -#: editor.cc:544 +#: editor.cc:543 msgid "Snapshots" msgstr "Ögonblickskopior" -#: editor.cc:546 +#: editor.cc:544 +msgid "Track & Bus Groups" +msgstr "" + +#: editor.cc:545 msgid "Ranges & Marks" msgstr "OmfÃ¥ng & markörer" -#: editor.cc:690 editor.cc:5345 rc_option_editor.cc:1294 -#: rc_option_editor.cc:1302 rc_option_editor.cc:1310 rc_option_editor.cc:1318 -#: rc_option_editor.cc:1335 rc_option_editor.cc:1337 rc_option_editor.cc:1345 -#: rc_option_editor.cc:1353 rc_option_editor.cc:1373 rc_option_editor.cc:1385 -#: rc_option_editor.cc:1387 rc_option_editor.cc:1395 rc_option_editor.cc:1403 -#: rc_option_editor.cc:1411 rc_option_editor.cc:1419 rc_option_editor.cc:1427 -#: rc_option_editor.cc:1442 rc_option_editor.cc:1446 +#: editor.cc:690 editor.cc:5349 rc_option_editor.cc:1292 +#: rc_option_editor.cc:1300 rc_option_editor.cc:1308 rc_option_editor.cc:1316 +#: rc_option_editor.cc:1333 rc_option_editor.cc:1335 rc_option_editor.cc:1343 +#: rc_option_editor.cc:1351 rc_option_editor.cc:1371 rc_option_editor.cc:1383 +#: rc_option_editor.cc:1385 rc_option_editor.cc:1393 rc_option_editor.cc:1401 +#: rc_option_editor.cc:1409 rc_option_editor.cc:1417 rc_option_editor.cc:1432 +#: rc_option_editor.cc:1436 msgid "Editor" msgstr "Redigerare" -#: editor.cc:1215 editor.cc:1225 editor.cc:4440 editor_actions.cc:130 +#: editor.cc:1215 editor.cc:1225 editor.cc:4444 editor_actions.cc:130 #: editor_actions.cc:1813 msgid "Loop" msgstr "Loop" -#: editor.cc:1231 editor.cc:1241 editor.cc:4467 editor_actions.cc:131 +#: editor.cc:1231 editor.cc:1241 editor.cc:4471 editor_actions.cc:131 #: time_info_box.cc:67 msgid "Punch" msgstr "Inslag" -#: editor.cc:1352 +#: editor.cc:1353 msgid "Linear (for highly correlated material)" msgstr "" -#: editor.cc:1362 editor.cc:1499 editor.cc:1561 +#: editor.cc:1363 editor.cc:1500 editor.cc:1562 msgid "Constant power" msgstr "" -#: editor.cc:1371 editor.cc:1492 editor.cc:1554 +#: editor.cc:1372 editor.cc:1493 editor.cc:1555 msgid "Symmetric" msgstr "" -#: editor.cc:1381 editor.cc:1474 editor.cc:1536 +#: editor.cc:1382 editor.cc:1475 editor.cc:1537 msgid "Slow" msgstr "LÃ¥ngsam" -#: editor.cc:1390 editor.cc:1483 editor.cc:1545 sfdb_ui.cc:1627 +#: editor.cc:1391 editor.cc:1484 editor.cc:1546 sfdb_ui.cc:1627 #: sfdb_ui.cc:1736 msgid "Fast" msgstr "Snabb" -#: editor.cc:1437 +#: editor.cc:1438 msgid "programming error: fade in canvas item has no regionview data pointer!" msgstr "" -#: editor.cc:1448 editor.cc:1512 +#: editor.cc:1449 editor.cc:1513 msgid "Deactivate" msgstr "Avaktivera" -#: editor.cc:1450 editor.cc:1514 +#: editor.cc:1451 editor.cc:1515 msgid "Activate" msgstr "Aktivera" -#: editor.cc:1458 editor.cc:1521 +#: editor.cc:1459 editor.cc:1522 msgid "Slowest" msgstr "LÃ¥ngsammast" -#: editor.cc:1572 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 +#: editor.cc:1573 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 msgid "programming error: " msgstr "programmeringsfel: " -#: editor.cc:1673 editor.cc:1681 editor_ops.cc:3522 +#: editor.cc:1674 editor.cc:1682 editor_ops.cc:3522 msgid "Freeze" msgstr "Frys" -#: editor.cc:1677 +#: editor.cc:1678 msgid "Unfreeze" msgstr "Ofrys" -#: editor.cc:1816 +#: editor.cc:1817 msgid "Selected Regions" msgstr "Markerade regioner" -#: editor.cc:1852 editor_markers.cc:895 +#: editor.cc:1853 editor_markers.cc:895 msgid "Play Range" msgstr "Spela omfÃ¥ng" -#: editor.cc:1853 editor_markers.cc:898 +#: editor.cc:1854 editor_markers.cc:898 msgid "Loop Range" msgstr "Loopa omfÃ¥ng" -#: editor.cc:1893 editor_markers.cc:925 +#: editor.cc:1863 editor_actions.cc:332 +msgid "Move Range Start to Previous Region Boundary" +msgstr "" + +#: editor.cc:1870 editor_actions.cc:339 +msgid "Move Range Start to Next Region Boundary" +msgstr "" + +#: editor.cc:1877 editor_actions.cc:346 +msgid "Move Range End to Previous Region Boundary" +msgstr "" + +#: editor.cc:1884 editor_actions.cc:353 +msgid "Move Range End to Next Region Boundary" +msgstr "" + +#: editor.cc:1890 +msgid "Convert to Region In-Place" +msgstr "" + +#: editor.cc:1891 +msgid "Convert to Region in Region List" +msgstr "" + +#: editor.cc:1894 editor_markers.cc:925 msgid "Select All in Range" msgstr "Markera allt i omfÃ¥nget" -#: editor.cc:1900 +#: editor.cc:1897 +msgid "Set Loop from Range" +msgstr "" + +#: editor.cc:1898 +msgid "Set Punch from Range" +msgstr "" + +#: editor.cc:1901 msgid "Add Range Markers" msgstr "Lägg till omfÃ¥ngsmarkörer" -#: editor.cc:1905 editor_actions.cc:289 +#: editor.cc:1904 +msgid "Crop Region to Range" +msgstr "" + +#: editor.cc:1905 +msgid "Fill Range with Region" +msgstr "" + +#: editor.cc:1906 editor_actions.cc:289 msgid "Duplicate Range" msgstr "Duplicera omfÃ¥ng" #: editor.cc:1909 +msgid "Consolidate Range" +msgstr "" + +#: editor.cc:1910 msgid "Consolidate Range With Processing" msgstr "" #: editor.cc:1911 +msgid "Bounce Range to Region List" +msgstr "" + +#: editor.cc:1912 msgid "Bounce Range to Region List With Processing" msgstr "" -#: editor.cc:1927 editor.cc:2008 editor_actions.cc:281 +#: editor.cc:1913 editor_markers.cc:908 +msgid "Export Range..." +msgstr "" + +#: editor.cc:1915 +msgid "Export Video Range..." +msgstr "" + +#: editor.cc:1931 editor.cc:2012 editor_actions.cc:281 msgid "Play From Edit Point" msgstr "Spela frÃ¥n redigeringspunkten" -#: editor.cc:1928 editor.cc:2009 +#: editor.cc:1932 editor.cc:2013 msgid "Play From Start" msgstr "Spela frÃ¥n starten" -#: editor.cc:1929 +#: editor.cc:1933 msgid "Play Region" msgstr "Spela region" -#: editor.cc:1931 +#: editor.cc:1935 msgid "Loop Region" msgstr "Loopa region" -#: editor.cc:1941 editor.cc:2018 +#: editor.cc:1945 editor.cc:2022 msgid "Select All in Track" msgstr "Välj allt i spÃ¥ret" -#: editor.cc:1942 editor.cc:2019 editor_actions.cc:185 -#: export_timespan_selector.cc:53 processor_box.cc:2237 +#: editor.cc:1946 editor.cc:2023 editor_actions.cc:185 +#: export_timespan_selector.cc:53 processor_box.cc:2276 msgid "Select All" msgstr "Markera allt" -#: editor.cc:1943 editor.cc:2020 +#: editor.cc:1947 editor.cc:2024 msgid "Invert Selection in Track" msgstr "Invertera markeringen i spÃ¥ret" -#: editor.cc:1944 editor.cc:2021 editor_actions.cc:187 +#: editor.cc:1948 editor.cc:2025 editor_actions.cc:187 msgid "Invert Selection" msgstr "Invertera" -#: editor.cc:1946 +#: editor.cc:1950 msgid "Set Range to Loop Range" msgstr "Ställ in omfÃ¥ng till loop-omfÃ¥nget" -#: editor.cc:1947 +#: editor.cc:1951 msgid "Set Range to Punch Range" msgstr "Ställ in omfÃ¥ng till inslagsomfÃ¥nget" -#: editor.cc:1949 editor.cc:2023 editor_actions.cc:188 +#: editor.cc:1953 editor.cc:2027 editor_actions.cc:188 msgid "Select All After Edit Point" msgstr "Markera allt efter redigeringspunkten" -#: editor.cc:1950 editor.cc:2024 editor_actions.cc:189 +#: editor.cc:1954 editor.cc:2028 editor_actions.cc:189 msgid "Select All Before Edit Point" msgstr "Markera allt före redigeringspunkten" -#: editor.cc:1951 editor.cc:2025 +#: editor.cc:1955 editor.cc:2029 msgid "Select All After Playhead" msgstr "Markera allt efter startmarkören" -#: editor.cc:1952 editor.cc:2026 +#: editor.cc:1956 editor.cc:2030 msgid "Select All Before Playhead" msgstr "Markera allt innan startmarkören" -#: editor.cc:1953 +#: editor.cc:1957 msgid "Select All Between Playhead and Edit Point" msgstr "Markera allt mellan startmarkören och redigeringspunkten" -#: editor.cc:1954 +#: editor.cc:1958 msgid "Select All Within Playhead and Edit Point" msgstr "Markera allt inom startmarkör och redigeringspunkten" -#: editor.cc:1955 +#: editor.cc:1959 msgid "Select Range Between Playhead and Edit Point" msgstr "Markera omfÃ¥ng mellan startmarkören och redigeringspunkten" -#: editor.cc:1957 editor.cc:2028 editor_actions.cc:127 editor_actions.cc:128 +#: editor.cc:1961 editor.cc:2032 editor_actions.cc:127 editor_actions.cc:128 msgid "Select" msgstr "Markera" -#: editor.cc:1965 editor.cc:2036 editor_actions.cc:309 processor_box.cc:2222 +#: editor.cc:1969 editor.cc:2040 editor_actions.cc:309 processor_box.cc:2261 msgid "Cut" msgstr "Klipp ut" -#: editor.cc:1966 editor.cc:2037 editor_actions.cc:312 processor_box.cc:2225 +#: editor.cc:1970 editor.cc:2041 editor_actions.cc:312 processor_box.cc:2264 msgid "Copy" msgstr "Kopiera" -#: editor.cc:1967 editor.cc:2038 editor_actions.cc:313 processor_box.cc:2233 +#: editor.cc:1971 editor.cc:2042 editor_actions.cc:313 processor_box.cc:2272 msgid "Paste" msgstr "Klistra in" -#: editor.cc:1971 editor_actions.cc:87 +#: editor.cc:1975 editor_actions.cc:87 msgid "Align" msgstr "Justera" -#: editor.cc:1972 +#: editor.cc:1976 msgid "Align Relative" msgstr "Justera relativt" -#: editor.cc:1979 +#: editor.cc:1983 msgid "Insert Selected Region" msgstr "Infoga vald region" -#: editor.cc:1980 +#: editor.cc:1984 msgid "Insert Existing Media" msgstr "Infoga existerande media" +#: editor.cc:1993 editor.cc:2049 +msgid "Nudge Entire Track Later" +msgstr "" + #: editor.cc:1994 editor.cc:2050 +msgid "Nudge Track After Edit Point Later" +msgstr "" + +#: editor.cc:1995 editor.cc:2051 +msgid "Nudge Entire Track Earlier" +msgstr "" + +#: editor.cc:1996 editor.cc:2052 +msgid "Nudge Track After Edit Point Earlier" +msgstr "" + +#: editor.cc:1998 editor.cc:2054 msgid "Nudge" msgstr "Knuffa" -#: editor.cc:3070 +#: editor.cc:3074 msgid "Smart Mode (add Range functions to Object mode)" msgstr "" -#: editor.cc:3073 +#: editor.cc:3075 +msgid "Object Mode (select/move Objects)" +msgstr "" + +#: editor.cc:3076 +msgid "Range Mode (select/move Ranges)" +msgstr "" + +#: editor.cc:3077 msgid "Draw/Edit MIDI Notes" msgstr "Rita/redigera MIDI-noter" -#: editor.cc:3074 +#: editor.cc:3078 msgid "Draw Region Gain" msgstr "Rita regionvolym" -#: editor.cc:3075 +#: editor.cc:3079 msgid "Select Zoom Range" msgstr "Markera zoom-omfÃ¥ng" -#: editor.cc:3076 +#: editor.cc:3080 msgid "Stretch/Shrink Regions and MIDI Notes" msgstr "Förläng/förkorta regioner och MIDI-noter" -#: editor.cc:3077 +#: editor.cc:3081 msgid "Listen to Specific Regions" msgstr "Lyssna pÃ¥ specifika regioner" -#: editor.cc:3078 +#: editor.cc:3082 msgid "Note Level Editing" msgstr "" -#: editor.cc:3079 +#: editor.cc:3083 msgid "" "Groups: click to (de)activate\n" "Context-click for other operations" msgstr "" -#: editor.cc:3082 editor_actions.cc:242 +#: editor.cc:3084 +msgid "Nudge Region/Selection Later" +msgstr "" + +#: editor.cc:3085 +msgid "Nudge Region/Selection Earlier" +msgstr "" + +#: editor.cc:3086 editor_actions.cc:242 msgid "Zoom In" msgstr "Zooma in" -#: editor.cc:3083 editor_actions.cc:241 +#: editor.cc:3087 editor_actions.cc:241 msgid "Zoom Out" msgstr "Zooma ut" -#: editor.cc:3084 editor_actions.cc:243 +#: editor.cc:3088 editor_actions.cc:243 msgid "Zoom to Session" msgstr "Zooma in/ut till hela sessionen" -#: editor.cc:3085 +#: editor.cc:3089 msgid "Zoom focus" msgstr "Zoom-fokus" -#: editor.cc:3086 +#: editor.cc:3090 msgid "Expand Tracks" msgstr "Expandera spÃ¥r" -#: editor.cc:3087 +#: editor.cc:3091 msgid "Shrink Tracks" msgstr "Krymp spÃ¥r" -#: editor.cc:3088 +#: editor.cc:3092 msgid "Snap/Grid Units" msgstr "Fästläge/rutnätsenheter" -#: editor.cc:3089 +#: editor.cc:3093 msgid "Snap/Grid Mode" msgstr "Fästläge/rutnätsläge" -#: editor.cc:3091 +#: editor.cc:3095 msgid "Edit Mode" msgstr "Redigeringsläge" -#: editor.cc:3092 +#: editor.cc:3096 msgid "" "Nudge Clock\n" "(controls distance used to nudge regions and selections)" msgstr "" -#: editor.cc:3194 +#: editor.cc:3198 msgid "malformed URL passed to drag-n-drop code" msgstr "" -#: editor.cc:3265 editor_actions.cc:292 +#: editor.cc:3260 editor_actions.cc:291 +msgid "Command|Undo" +msgstr "" + +#: editor.cc:3262 +msgid "Command|Undo (%1)" +msgstr "" + +#: editor.cc:3269 editor_actions.cc:292 msgid "Redo" msgstr "Gör om" -#: editor.cc:3267 +#: editor.cc:3271 msgid "Redo (%1)" msgstr "Gör om (%1)" -#: editor.cc:3286 editor.cc:3310 editor_actions.cc:106 editor_actions.cc:1794 +#: editor.cc:3290 editor.cc:3314 editor_actions.cc:106 editor_actions.cc:1794 msgid "Duplicate" msgstr "Duplicera" -#: editor.cc:3877 editor_audio_import.cc:581 editor_ops.cc:5856 -#: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 +#: editor.cc:3291 +msgid "Number of duplications:" +msgstr "" + +#: editor.cc:3868 +msgid "Playlist Deletion" +msgstr "" + +#: editor.cc:3869 +msgid "" +"Playlist %1 is currently unused.\n" +"If it is kept, its audio files will not be cleaned.\n" +"If it is deleted, audio files used by it alone will be cleaned." +msgstr "" + +#: editor.cc:3879 +msgid "Delete Playlist" +msgstr "" + +#: editor.cc:3880 +msgid "Keep Playlist" +msgstr "" + +#: editor.cc:3881 editor_audio_import.cc:581 editor_ops.cc:5856 +#: engine_dialog.cc:1711 sfdb_freesound_mootcher.cc:69 processor_box.cc:2030 +#: processor_box.cc:2055 msgid "Cancel" msgstr "Avbryt" -#: editor.cc:4021 +#: editor.cc:4025 msgid "new playlists" msgstr "nya spellistor" -#: editor.cc:4037 +#: editor.cc:4041 msgid "copy playlists" msgstr "kopiera spellistor" -#: editor.cc:4052 +#: editor.cc:4056 msgid "clear playlists" msgstr "rensa spellistor" -#: editor.cc:5492 editor_markers.cc:940 panner_ui.cc:393 processor_box.cc:2253 +#: editor.cc:4691 +msgid "Please wait while %1 loads visual data." +msgstr "" + +#: editor.cc:5496 editor_markers.cc:940 panner_ui.cc:392 processor_box.cc:2292 msgid "Edit..." msgstr "Redigera..." @@ -2270,6 +2937,14 @@ msgstr "Övertoningar" msgid "Move Selected Marker" msgstr "Flytta vald platsmarkör" +#: editor_actions.cc:92 +msgid "Select Range Operations" +msgstr "" + +#: editor_actions.cc:93 +msgid "Select Regions" +msgstr "" + #: editor_actions.cc:94 msgid "Edit Point" msgstr "Redigeringspunkten" @@ -2282,6 +2957,10 @@ msgstr "Tona" msgid "Latch" msgstr "" +#: editor_actions.cc:97 editor_regions.cc:111 region_editor.cc:46 +msgid "Region" +msgstr "" + #: editor_actions.cc:98 msgid "Layering" msgstr "Lager" @@ -2291,8 +2970,8 @@ msgstr "Lager" msgid "Position" msgstr "" -#: editor_actions.cc:101 gain_meter.cc:121 gain_meter.cc:791 panner_ui.cc:177 -#: panner_ui.cc:586 +#: editor_actions.cc:101 gain_meter.cc:120 gain_meter.cc:794 panner_ui.cc:176 +#: panner_ui.cc:585 msgid "Trim" msgstr "Beskär" @@ -2318,6 +2997,10 @@ msgstr "" msgid "Zoom Focus" msgstr "Zoomfokus" +#: editor_actions.cc:109 +msgid "Locate to Markers" +msgstr "" + #: editor_actions.cc:110 editor_actions.cc:539 msgid "Markers" msgstr "Markörer" @@ -2330,11 +3013,15 @@ msgstr "NivÃ¥mätarnedfall" msgid "Meter hold" msgstr "NivÃ¥mätartopphÃ¥llning" +#: editor_actions.cc:113 session_option_editor.cc:234 +msgid "MIDI Options" +msgstr "" + #: editor_actions.cc:114 msgid "Misc Options" msgstr "Diverse inställningar" -#: editor_actions.cc:115 rc_option_editor.cc:1460 route_group_dialog.cc:48 +#: editor_actions.cc:115 rc_option_editor.cc:1450 route_group_dialog.cc:48 #: session_option_editor.cc:218 session_option_editor.cc:225 msgid "Monitoring" msgstr "Medhörning" @@ -2402,6 +3089,10 @@ msgstr "Verktyg" msgid "View" msgstr "Visa" +#: editor_actions.cc:142 +msgid "Zoom" +msgstr "" + #: editor_actions.cc:148 msgid "Break drag or deselect all" msgstr "Avbryt dragmanöver eller välj ingenting" @@ -2466,6 +3157,18 @@ msgstr "Till nästa regiongräns (inget spÃ¥rval)" msgid "To Previous Region Boundary" msgstr "Till förra regiongränsen" +#: editor_actions.cc:169 +msgid "To Previous Region Boundary (No Track Selection)" +msgstr "" + +#: editor_actions.cc:171 +msgid "To Next Region Start" +msgstr "" + +#: editor_actions.cc:172 +msgid "To Next Region End" +msgstr "" + #: editor_actions.cc:173 msgid "To Next Region Sync" msgstr "Till nästa regionsynk." @@ -2474,6 +3177,22 @@ msgstr "Till nästa regionsynk." msgid "To Previous Region Start" msgstr "Till förra regionstart" +#: editor_actions.cc:176 +msgid "To Previous Region End" +msgstr "" + +#: editor_actions.cc:177 +msgid "To Previous Region Sync" +msgstr "" + +#: editor_actions.cc:179 +msgid "To Range Start" +msgstr "" + +#: editor_actions.cc:180 +msgid "To Range End" +msgstr "" + #: editor_actions.cc:182 msgid "Playhead to Range Start" msgstr "Startmarkören till omfÃ¥ngstarten" @@ -2482,7 +3201,7 @@ msgstr "Startmarkören till omfÃ¥ngstarten" msgid "Playhead to Range End" msgstr "Startmarkören till omfÃ¥ngslutet" -#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2239 +#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2278 msgid "Deselect All" msgstr "Avmarkera allt" @@ -2518,6 +3237,18 @@ msgstr "Välj föregÃ¥ende spÃ¥r eller buss" msgid "Toggle Record Enable" msgstr "Växla tillÃ¥t inspelning" +#: editor_actions.cc:204 +msgid "Toggle Solo" +msgstr "" + +#: editor_actions.cc:206 +msgid "Toggle Mute" +msgstr "" + +#: editor_actions.cc:208 +msgid "Toggle Solo Isolate" +msgstr "" + #: editor_actions.cc:213 msgid "Save View %1" msgstr "Spara vy %1" @@ -2530,10 +3261,26 @@ msgstr "GÃ¥ till vy %1" msgid "Locate to Mark %1" msgstr "Hoppa till markör %1" +#: editor_actions.cc:229 +msgid "Jump to Next Mark" +msgstr "" + +#: editor_actions.cc:230 +msgid "Jump to Previous Mark" +msgstr "" + #: editor_actions.cc:231 msgid "Add Mark from Playhead" msgstr "Lägg till markör utifrÃ¥n startmarkören" +#: editor_actions.cc:233 +msgid "Nudge Next Later" +msgstr "" + +#: editor_actions.cc:234 +msgid "Nudge Next Earlier" +msgstr "" + #: editor_actions.cc:236 msgid "Nudge Playhead Forward" msgstr "Knuffa startmarkören framÃ¥t" @@ -2542,6 +3289,14 @@ msgstr "Knuffa startmarkören framÃ¥t" msgid "Nudge Playhead Backward" msgstr "Knuffa startmarkören bakÃ¥t" +#: editor_actions.cc:238 +msgid "Playhead To Next Grid" +msgstr "" + +#: editor_actions.cc:239 +msgid "Playhead To Previous Grid" +msgstr "" + #: editor_actions.cc:244 msgid "Zoom to Region" msgstr "Zooma till region" @@ -2554,6 +3309,14 @@ msgstr "Zooma till region (bredd och höjd)" msgid "Toggle Zoom State" msgstr "Växla zoomtillstÃ¥nd" +#: editor_actions.cc:248 +msgid "Expand Track Height" +msgstr "" + +#: editor_actions.cc:249 +msgid "Shrink Track Height" +msgstr "" + #: editor_actions.cc:251 msgid "Move Selected Tracks Up" msgstr "Flytta valda spÃ¥r uppÃ¥t" @@ -2618,6 +3381,14 @@ msgstr "Ställ in loop frÃ¥n redigeringsomfÃ¥ng" msgid "Set Punch from Edit Range" msgstr "Ställ in inslags frÃ¥n redigeringsomfÃ¥ng" +#: editor_actions.cc:280 +msgid "Play Selected Regions" +msgstr "" + +#: editor_actions.cc:282 +msgid "Play from Edit Point and Return" +msgstr "" + #: editor_actions.cc:284 msgid "Play Edit Range" msgstr "Spela redigeringsomfÃ¥nget" @@ -2630,6 +3401,10 @@ msgstr "Startmarkören till mus" msgid "Active Marker to Mouse" msgstr "Aktiv markör till musen" +#: editor_actions.cc:294 +msgid "Export Audio" +msgstr "" + #: editor_actions.cc:295 export_dialog.cc:406 msgid "Export Range" msgstr "Exportera omfÃ¥ng" @@ -2646,10 +3421,22 @@ msgstr "Separera utifrÃ¥n loopomfÃ¥nget" msgid "Crop" msgstr "Beskär" +#: editor_actions.cc:315 +msgid "Set Tempo from Edit Range = Bar" +msgstr "" + #: editor_actions.cc:317 msgid "Log" msgstr "Logg" +#: editor_actions.cc:320 +msgid "Move Later to Transient" +msgstr "" + +#: editor_actions.cc:321 +msgid "Move Earlier to Transient" +msgstr "" + #: editor_actions.cc:325 msgid "Start Range" msgstr "Börja omfÃ¥ng" @@ -2708,6 +3495,10 @@ msgstr "Större" msgid "Small" msgstr "Liten" +#: editor_actions.cc:392 +msgid "Sound Selected MIDI Notes" +msgstr "" + #: editor_actions.cc:397 msgid "Zoom Focus Left" msgstr "Zoomfokus: vänster" @@ -2732,6 +3523,10 @@ msgstr "Zoomfokus: mus" msgid "Zoom Focus Edit Point" msgstr "Zoomfokus: redigeringspunkten" +#: editor_actions.cc:404 +msgid "Next Zoom Focus" +msgstr "" + #: editor_actions.cc:410 msgid "Smart Object Mode" msgstr "" @@ -2748,6 +3543,10 @@ msgstr "Objektverktyg" msgid "Range Tool" msgstr "OmfÃ¥ngsverktyg" +#: editor_actions.cc:429 +msgid "Note Drawing Tool" +msgstr "" + #: editor_actions.cc:435 msgid "Gain Tool" msgstr "Volymverktyg" @@ -2756,6 +3555,10 @@ msgstr "Volymverktyg" msgid "Zoom Tool" msgstr "Zoomverktyg" +#: editor_actions.cc:447 +msgid "Audition Tool" +msgstr "" + #: editor_actions.cc:453 msgid "Time FX Tool" msgstr "TidsFX-verktyg" @@ -2809,6 +3612,14 @@ msgstr "Nästa fästläge" msgid "Next Snap Choice" msgstr "Nästa fästlägealternativ" +#: editor_actions.cc:491 +msgid "Next Musical Snap Choice" +msgstr "" + +#: editor_actions.cc:492 +msgid "Previous Snap Choice" +msgstr "" + #: editor_actions.cc:493 msgid "Previous Musical Snap Choice" msgstr "" @@ -2837,6 +3648,14 @@ msgstr "Sekunder" msgid "Snap to Minutes" msgstr "Minuter" +#: editor_actions.cc:505 +msgid "Snap to One Twenty Eighths" +msgstr "" + +#: editor_actions.cc:506 +msgid "Snap to Sixty Fourths" +msgstr "" + #: editor_actions.cc:507 msgid "Snap to Thirty Seconds" msgstr "Trettio sekunder" @@ -2861,6 +3680,10 @@ msgstr "Sextondelar" msgid "Snap to Fourteenths" msgstr "Fjortondelar" +#: editor_actions.cc:513 +msgid "Snap to Twelfths" +msgstr "" + #: editor_actions.cc:514 msgid "Snap to Tenths" msgstr "Tiondelar" @@ -2933,14 +3756,38 @@ msgstr "Loop-/inslagsmarkörer" msgid "Min:Sec" msgstr "Min:sek" -#: editor_actions.cc:549 rc_option_editor.cc:1842 +#: editor_actions.cc:547 editor_actions.cc:550 +msgid "Video Monitor" +msgstr "" + +#: editor_actions.cc:549 rc_option_editor.cc:1829 msgid "Video" msgstr "" +#: editor_actions.cc:552 +msgid "Always on Top" +msgstr "" + +#: editor_actions.cc:554 +msgid "Frame number" +msgstr "" + +#: editor_actions.cc:555 +msgid "Timecode Background" +msgstr "" + #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" +#: editor_actions.cc:557 +msgid "Letterbox" +msgstr "" + +#: editor_actions.cc:558 +msgid "Original Size" +msgstr "" + #: editor_actions.cc:608 msgid "Sort" msgstr "Sortera" @@ -3005,6 +3852,10 @@ msgstr "utifrÃ¥n Källfilens skapelsedatum" msgid "By Source Filesystem" msgstr "utifrÃ¥n Källfilsystemet" +#: editor_actions.cc:648 +msgid "Remove Unused" +msgstr "" + #: editor_actions.cc:652 editor_audio_import.cc:279 #: session_import_dialog.cc:74 session_import_dialog.cc:94 #: session_metadata_dialog.cc:297 editor_videotimeline.cc:108 @@ -3031,6 +3882,10 @@ msgstr "Visa grupptabbar" msgid "Show Measures" msgstr "Visa rutnät" +#: editor_actions.cc:669 +msgid "Show Logo" +msgstr "" + #: editor_actions.cc:673 msgid "Toggle MIDI Input Active for Editor-Selected Tracks/Busses" msgstr "" @@ -3043,6 +3898,12 @@ msgstr "" msgid "Could not find editor.bindings in search path %1" msgstr "" +#: editor_actions.cc:1028 editor_actions.cc:1424 editor_actions.cc:1435 +#: editor_actions.cc:1488 editor_actions.cc:1499 editor_actions.cc:1546 +#: editor_actions.cc:1556 editor_regions.cc:1561 +msgid "programming error: %1: %2" +msgstr "" + #: editor_actions.cc:1722 msgid "Raise" msgstr "Högre" @@ -3099,6 +3960,14 @@ msgstr "Öka volym" msgid "Cut Gain" msgstr "Sänk volym" +#: editor_actions.cc:1770 +msgid "Pitch Shift..." +msgstr "" + +#: editor_actions.cc:1773 +msgid "Transpose..." +msgstr "" + #: editor_actions.cc:1776 msgid "Opaque" msgstr "Ogenomskinlig" @@ -3127,6 +3996,18 @@ msgstr "Sätt loop-omfÃ¥ng här" msgid "Set Punch" msgstr "Ställ in inslag" +#: editor_actions.cc:1820 +msgid "Add Single Range Marker" +msgstr "" + +#: editor_actions.cc:1825 +msgid "Add Range Marker Per Region" +msgstr "" + +#: editor_actions.cc:1829 +msgid "Snap Position To Grid" +msgstr "" + #: editor_actions.cc:1832 msgid "Close Gaps" msgstr "Stäng luckor" @@ -3191,10 +4072,18 @@ msgstr "Spektralanalys..." msgid "Reset Envelope" msgstr "Nollställ konvolut" +#: editor_actions.cc:1876 +msgid "Reset Gain" +msgstr "" + #: editor_actions.cc:1881 msgid "Envelope Active" msgstr "Konvolut aktivt" +#: editor_actions.cc:1885 +msgid "Quantize..." +msgstr "" + #: editor_actions.cc:1886 editor_actions.cc:1887 msgid "Insert Patch Change..." msgstr "Infoga patchändring..." @@ -3211,6 +4100,22 @@ msgstr "Klipp ut tystnad..." msgid "Set Range Selection" msgstr "Definiera omfÃ¥ngsmarkering" +#: editor_actions.cc:1892 +msgid "Nudge Later" +msgstr "" + +#: editor_actions.cc:1893 +msgid "Nudge Earlier" +msgstr "" + +#: editor_actions.cc:1898 +msgid "Nudge Later by Capture Offset" +msgstr "" + +#: editor_actions.cc:1905 +msgid "Nudge Earlier by Capture Offset" +msgstr "" + #: editor_actions.cc:1909 msgid "Trim to Loop" msgstr "Beskär till loop" @@ -3319,6 +4224,11 @@ msgstr "Infoga inte" msgid "Embed all without questions" msgstr "Infoga alla" +#: editor_audio_import.cc:556 editor_audio_import.cc:585 +#: export_format_dialog.cc:58 +msgid "Sample rate" +msgstr "" + #: editor_audio_import.cc:557 editor_audio_import.cc:586 msgid "" "%1\n" @@ -3331,6 +4241,14 @@ msgstr "" msgid "Embed it anyway" msgstr "Infoga ändÃ¥" +#: editor_drag.cc:1000 +msgid "fixed time region drag" +msgstr "" + +#: editor_drag.cc:1700 +msgid "Video Start:" +msgstr "" + #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -3355,46 +4273,94 @@ msgstr "kopiera tempomarkör" msgid "move tempo mark" msgstr "flytta tempomarkör" -#: editor_drag.cc:2545 +#: editor_drag.cc:2550 msgid "change fade in length" msgstr "ändra intoningslängd" -#: editor_drag.cc:2663 +#: editor_drag.cc:2668 msgid "change fade out length" msgstr "ändra uttoningslängd" -#: editor_drag.cc:3018 +#: editor_drag.cc:3023 msgid "move marker" msgstr "flytta markör" -#: editor_drag.cc:3581 +#: editor_drag.cc:3586 msgid "An error occurred while executing time stretch operation" msgstr "" -#: editor_drag.cc:4081 editor_markers.cc:680 +#: editor_drag.cc:4016 +msgid "programming_error: %1" +msgstr "" + +#: editor_drag.cc:4086 editor_markers.cc:680 msgid "new range marker" msgstr "ny omfÃ¥ngsmarkör" +#: editor_drag.cc:4767 +msgid "rubberband selection" +msgstr "" + +#: editor_route_groups.cc:66 +msgid "No Selection = All Tracks?" +msgstr "" + +#: editor_route_groups.cc:95 +msgid "Col" +msgstr "" + +#: editor_route_groups.cc:95 +msgid "Group Tab Color" +msgstr "" + +#: editor_route_groups.cc:96 +msgid "Name of Group" +msgstr "" + #: editor_route_groups.cc:97 editor_routes.cc:203 msgid "V" msgstr "" +#: editor_route_groups.cc:97 +msgid "Group is visible?" +msgstr "" + +#: editor_route_groups.cc:98 +msgid "On" +msgstr "" + #: editor_route_groups.cc:98 msgid "Group is enabled?" msgstr "" +#: editor_route_groups.cc:99 +msgid "group|G" +msgstr "" + #: editor_route_groups.cc:99 msgid "Sharing Gain?" msgstr "" +#: editor_route_groups.cc:100 +msgid "relative|Rel" +msgstr "" + #: editor_route_groups.cc:100 msgid "Relative Gain Changes?" msgstr "" +#: editor_route_groups.cc:101 +msgid "mute|M" +msgstr "" + #: editor_route_groups.cc:101 msgid "Sharing Mute?" msgstr "" +#: editor_route_groups.cc:102 +msgid "solo|S" +msgstr "" + #: editor_route_groups.cc:102 msgid "Sharing Solo?" msgstr "" @@ -3408,6 +4374,26 @@ msgstr "Spela in" msgid "Sharing Record-enable Status?" msgstr "" +#: editor_route_groups.cc:104 +msgid "monitoring|Mon" +msgstr "" + +#: editor_route_groups.cc:104 +msgid "Sharing Monitoring Choice?" +msgstr "" + +#: editor_route_groups.cc:105 +msgid "selection|Sel" +msgstr "" + +#: editor_route_groups.cc:105 +msgid "Sharing Selected/Editing Status?" +msgstr "" + +#: editor_route_groups.cc:106 +msgid "active|A" +msgstr "" + #: editor_route_groups.cc:106 msgid "Sharing Active Status?" msgstr "" @@ -3425,15 +4411,31 @@ msgstr "namnlös" #: editor_markers.cc:1022 editor_markers.cc:1041 editor_markers.cc:1071 #: editor_markers.cc:1102 editor_markers.cc:1132 editor_markers.cc:1160 #: editor_markers.cc:1191 editor_markers.cc:1216 editor_markers.cc:1267 -#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1514 -#: editor_mouse.cc:2478 +#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1526 +#: editor_mouse.cc:2528 msgid "programming error: marker canvas item has no marker object pointer!" msgstr "" +#: editor_export_audio.cc:143 editor_export_audio.cc:148 +msgid "File Exists!" +msgstr "" + +#: editor_export_audio.cc:151 +msgid "Overwrite Existing File" +msgstr "" + #: editor_group_tabs.cc:162 msgid "Fit to Window" msgstr "Anpassa till fönstret" +#: editor_markers.cc:129 +msgid "start" +msgstr "" + +#: editor_markers.cc:130 +msgid "end" +msgstr "" + #: editor_markers.cc:646 editor_ops.cc:1744 editor_ops.cc:1764 #: editor_ops.cc:1788 editor_ops.cc:1815 location_ui.cc:1017 msgid "add marker" @@ -3447,14 +4449,50 @@ msgstr "omfÃ¥ng" msgid "remove marker" msgstr "ta bort markör" +#: editor_markers.cc:849 +msgid "Locate to Here" +msgstr "" + +#: editor_markers.cc:850 +msgid "Play from Here" +msgstr "" + #: editor_markers.cc:851 msgid "Move Mark to Playhead" msgstr "Flytta markör till startmarkören" +#: editor_markers.cc:855 +msgid "Create Range to Next Marker" +msgstr "" + +#: editor_markers.cc:896 +msgid "Locate to Marker" +msgstr "" + +#: editor_markers.cc:897 +msgid "Play from Marker" +msgstr "" + +#: editor_markers.cc:900 +msgid "Set Marker from Playhead" +msgstr "" + +#: editor_markers.cc:902 +msgid "Set Range from Selection" +msgstr "" + +#: editor_markers.cc:905 +msgid "Zoom to Range" +msgstr "" + #: editor_markers.cc:912 msgid "Hide Range" msgstr "Göm omfÃ¥ng" +#: editor_markers.cc:913 +msgid "Rename Range..." +msgstr "" + #: editor_markers.cc:917 msgid "Remove Range" msgstr "Ta bort omfÃ¥ng" @@ -3471,32 +4509,32 @@ msgstr "Markera omfÃ¥ng" msgid "Set Punch Range" msgstr "Sätt inslagsomfÃ¥ng här" -#: editor_markers.cc:1351 editor_ops.cc:1699 +#: editor_markers.cc:1362 editor_ops.cc:1699 msgid "New Name:" msgstr "Nytt namn:" -#: editor_markers.cc:1354 +#: editor_markers.cc:1365 msgid "Rename Mark" msgstr "Byt namn pÃ¥ markör" -#: editor_markers.cc:1356 +#: editor_markers.cc:1367 msgid "Rename Range" msgstr "Byt namn pÃ¥ omfÃ¥ng" -#: editor_markers.cc:1363 editor_mouse.cc:2510 processor_box.cc:1781 -#: processor_box.cc:2235 route_time_axis.cc:982 route_ui.cc:1540 +#: editor_markers.cc:1374 editor_mouse.cc:2560 processor_box.cc:1808 +#: processor_box.cc:2274 route_time_axis.cc:982 route_ui.cc:1540 msgid "Rename" msgstr "Döp om" -#: editor_markers.cc:1376 +#: editor_markers.cc:1387 msgid "rename marker" msgstr "byt namn pÃ¥ markör" -#: editor_markers.cc:1399 +#: editor_markers.cc:1411 msgid "set loop range" msgstr "ställ in loop-omfÃ¥ng" -#: editor_markers.cc:1405 +#: editor_markers.cc:1417 msgid "set punch range" msgstr "ställ in inslagsomfÃ¥ng" @@ -3508,17 +4546,21 @@ msgstr "" msgid "Editor::event_frame() used on unhandled event type %1" msgstr "" -#: editor_mouse.cc:2235 editor_mouse.cc:2260 editor_mouse.cc:2273 +#: editor_mouse.cc:2285 editor_mouse.cc:2310 editor_mouse.cc:2323 msgid "" "programming error: control point canvas item has no control point object " "pointer!" msgstr "" -#: editor_mouse.cc:2441 +#: editor_mouse.cc:2466 +msgid "start point trim" +msgstr "" + +#: editor_mouse.cc:2491 msgid "End point trim" msgstr "Beskär slutpunkt" -#: editor_mouse.cc:2508 +#: editor_mouse.cc:2558 msgid "Name for region:" msgstr "Namnge region:" @@ -3526,14 +4568,42 @@ msgstr "Namnge region:" msgid "split" msgstr "dela" +#: editor_ops.cc:256 +msgid "alter selection" +msgstr "" + +#: editor_ops.cc:298 +msgid "nudge regions forward" +msgstr "" + +#: editor_ops.cc:321 editor_ops.cc:406 +msgid "nudge location forward" +msgstr "" + +#: editor_ops.cc:379 +msgid "nudge regions backward" +msgstr "" + #: editor_ops.cc:468 msgid "nudge forward" msgstr "knuffa framÃ¥t" +#: editor_ops.cc:492 +msgid "nudge backward" +msgstr "" + #: editor_ops.cc:557 msgid "build_region_boundary_cache called with snap_type = %1" msgstr "" +#: editor_ops.cc:1701 +msgid "New Location Marker" +msgstr "" + +#: editor_ops.cc:1788 +msgid "add markers" +msgstr "" + #: editor_ops.cc:1894 msgid "clear markers" msgstr "rensa markörer" @@ -3554,11 +4624,39 @@ msgstr "infoga dragen region" msgid "insert region" msgstr "infoga region" +#: editor_ops.cc:2261 +msgid "raise regions" +msgstr "" + +#: editor_ops.cc:2263 +msgid "raise region" +msgstr "" + +#: editor_ops.cc:2269 +msgid "raise regions to top" +msgstr "" + +#: editor_ops.cc:2271 +msgid "raise region to top" +msgstr "" + +#: editor_ops.cc:2277 +msgid "lower regions" +msgstr "" + +#: editor_ops.cc:2279 editor_ops.cc:2287 +msgid "lower region" +msgstr "" + +#: editor_ops.cc:2285 +msgid "lower regions to bottom" +msgstr "" + #: editor_ops.cc:2370 msgid "Rename Region" msgstr "Byt namn pÃ¥ region" -#: editor_ops.cc:2372 processor_box.cc:1779 route_ui.cc:1538 +#: editor_ops.cc:2372 processor_box.cc:1806 route_ui.cc:1538 msgid "New name:" msgstr "Nytt namn:" @@ -3566,10 +4664,30 @@ msgstr "Nytt namn:" msgid "separate" msgstr "separera" +#: editor_ops.cc:2795 +msgid "separate region under" +msgstr "" + #: editor_ops.cc:2916 msgid "trim to selection" msgstr "beskär till markeringen" +#: editor_ops.cc:3052 +msgid "set sync point" +msgstr "" + +#: editor_ops.cc:3076 +msgid "remove region sync" +msgstr "" + +#: editor_ops.cc:3098 +msgid "move regions to original position" +msgstr "" + +#: editor_ops.cc:3100 +msgid "move region to original position" +msgstr "" + #: editor_ops.cc:3121 msgid "align selection" msgstr "justera markering" @@ -3582,10 +4700,26 @@ msgstr "justera markering (relativt)" msgid "align region" msgstr "justera region" +#: editor_ops.cc:3280 +msgid "trim front" +msgstr "" + #: editor_ops.cc:3280 msgid "trim back" msgstr "" +#: editor_ops.cc:3310 +msgid "trim to loop" +msgstr "" + +#: editor_ops.cc:3320 +msgid "trim to punch" +msgstr "" + +#: editor_ops.cc:3382 +msgid "trim to region" +msgstr "" + #: editor_ops.cc:3492 msgid "" "This track/bus cannot be frozen because the signal adds or loses channels " @@ -3594,6 +4728,10 @@ msgid "" "input or vice versa." msgstr "" +#: editor_ops.cc:3495 +msgid "Cannot freeze" +msgstr "" + #: editor_ops.cc:3501 msgid "" "%1\n" @@ -3603,6 +4741,18 @@ msgid "" "Freezing will only process the signal as far as the first send/insert/return." msgstr "" +#: editor_ops.cc:3505 +msgid "Freeze anyway" +msgstr "" + +#: editor_ops.cc:3506 +msgid "Don't freeze" +msgstr "" + +#: editor_ops.cc:3507 +msgid "Freeze Limits" +msgstr "" + #: editor_ops.cc:3522 msgid "Cancel Freeze" msgstr "Avbryt frysning" @@ -3624,6 +4774,10 @@ msgstr "" msgid "bounce range" msgstr "omfÃ¥ng till disk" +#: editor_ops.cc:3678 +msgid "delete" +msgstr "" + #: editor_ops.cc:3681 msgid "cut" msgstr "klipp ut" @@ -3673,6 +4827,10 @@ msgstr "Nej, gör ingenting." msgid "Yes, destroy it." msgstr "Ja, radera den." +#: editor_ops.cc:4512 +msgid "Destroy last capture" +msgstr "" + #: editor_ops.cc:4573 msgid "normalize" msgstr "normalisera" @@ -3681,10 +4839,110 @@ msgstr "normalisera" msgid "reverse regions" msgstr "regioner till motsatt riktning" +#: editor_ops.cc:4702 +msgid "strip silence" +msgstr "" + +#: editor_ops.cc:4763 +msgid "Fork Region(s)" +msgstr "" + +#: editor_ops.cc:4963 +msgid "reset region gain" +msgstr "" + +#: editor_ops.cc:5016 +msgid "region gain envelope active" +msgstr "" + +#: editor_ops.cc:5043 +msgid "toggle region lock" +msgstr "" + +#: editor_ops.cc:5067 +msgid "Toggle Video Lock" +msgstr "" + +#: editor_ops.cc:5091 +msgid "region lock style" +msgstr "" + +#: editor_ops.cc:5116 +msgid "change region opacity" +msgstr "" + +#: editor_ops.cc:5231 +msgid "set fade in length" +msgstr "" + +#: editor_ops.cc:5238 +msgid "set fade out length" +msgstr "" + +#: editor_ops.cc:5283 +msgid "set fade in shape" +msgstr "" + +#: editor_ops.cc:5314 +msgid "set fade out shape" +msgstr "" + +#: editor_ops.cc:5344 +msgid "set fade in active" +msgstr "" + +#: editor_ops.cc:5373 +msgid "set fade out active" +msgstr "" + +#: editor_ops.cc:5638 +msgid "set loop range from selection" +msgstr "" + +#: editor_ops.cc:5660 +msgid "set loop range from edit range" +msgstr "" + +#: editor_ops.cc:5689 +msgid "set loop range from region" +msgstr "" + +#: editor_ops.cc:5707 +msgid "set punch range from selection" +msgstr "" + +#: editor_ops.cc:5724 +msgid "set punch range from edit range" +msgstr "" + +#: editor_ops.cc:5748 +msgid "set punch range from region" +msgstr "" + +#: editor_ops.cc:5857 +msgid "Add new marker" +msgstr "" + +#: editor_ops.cc:5858 +msgid "Set global tempo" +msgstr "" + +#: editor_ops.cc:5861 +msgid "Define one bar" +msgstr "" + #: editor_ops.cc:5862 msgid "Do you want to set the global tempo or add a new tempo marker?" msgstr "" +#: editor_ops.cc:5888 +msgid "set tempo from region" +msgstr "" + +#: editor_ops.cc:5918 +msgid "split regions" +msgstr "" + #: editor_ops.cc:5960 msgid "" "You are about to split\n" @@ -3707,10 +4965,43 @@ msgstr "" msgid "Press OK to continue with this split operation" msgstr "" +#: editor_ops.cc:5973 +msgid "Excessive split?" +msgstr "" + +#: editor_ops.cc:6125 +msgid "place transient" +msgstr "" + +#: editor_ops.cc:6160 +msgid "snap regions to grid" +msgstr "" + +#: editor_ops.cc:6199 +msgid "Close Region Gaps" +msgstr "" + +#: editor_ops.cc:6204 +msgid "Crossfade length" +msgstr "" + +#: editor_ops.cc:6213 editor_ops.cc:6224 rhythm_ferret.cc:120 +#: session_option_editor.cc:153 +msgid "ms" +msgstr "" + #: editor_ops.cc:6215 msgid "Pull-back length" msgstr "" +#: editor_ops.cc:6228 +msgid "Ok" +msgstr "" + +#: editor_ops.cc:6243 +msgid "close region gaps" +msgstr "" + #: editor_ops.cc:6461 route_ui.cc:1456 msgid "That would be bad news ...." msgstr "" @@ -3729,30 +5020,102 @@ msgstr "" msgid "tracks" msgstr "spÃ¥r" +#: editor_ops.cc:6485 route_ui.cc:1821 +msgid "track" +msgstr "" + #: editor_ops.cc:6489 msgid "busses" msgstr "buss(ar)" +#: editor_ops.cc:6491 route_ui.cc:1821 +msgid "bus" +msgstr "" + +#: editor_ops.cc:6496 +msgid "" +"Do you really want to remove %1 %2 and %3 %4?\n" +"(You may also lose the playlists associated with the %2)\n" +"\n" +"This action cannot be undone, and the session file will be overwritten!" +msgstr "" + +#: editor_ops.cc:6501 +msgid "" +"Do you really want to remove %1 %2?\n" +"(You may also lose the playlists associated with the %2)\n" +"\n" +"This action cannot be undone, and the session file will be overwritten!" +msgstr "" + +#: editor_ops.cc:6507 +msgid "" +"Do you really want to remove %1 %2?\n" +"\n" +"This action cannot be undon, and the session file will be overwritten" +msgstr "" + +#: editor_ops.cc:6514 +msgid "Yes, remove them." +msgstr "" + #: editor_ops.cc:6516 editor_snapshots.cc:159 route_ui.cc:1483 msgid "Yes, remove it." msgstr "Ja, ta bort den." +#: editor_ops.cc:6521 editor_ops.cc:6523 +msgid "Remove %1" +msgstr "" + +#: editor_ops.cc:6582 +msgid "insert time" +msgstr "" + #: editor_ops.cc:6739 msgid "There are too many tracks to fit in the current window" msgstr "" +#: editor_ops.cc:6839 +#, c-format +msgid "Saved view %u" +msgstr "" + +#: editor_ops.cc:6864 +msgid "mute regions" +msgstr "" + #: editor_ops.cc:6866 msgid "mute region" msgstr "tysta region" +#: editor_ops.cc:6903 +msgid "combine regions" +msgstr "" + +#: editor_ops.cc:6941 +msgid "uncombine regions" +msgstr "" + #: editor_regions.cc:111 msgid "Region name, with number of channels in []'s" msgstr "" +#: editor_regions.cc:112 +msgid "Position of start of region" +msgstr "" + #: editor_regions.cc:113 editor_regions.cc:849 time_info_box.cc:98 msgid "End" msgstr "Slut" +#: editor_regions.cc:113 +msgid "Position of end of region" +msgstr "" + +#: editor_regions.cc:114 +msgid "Length of the region" +msgstr "" + #: editor_regions.cc:115 msgid "Position of region sync point, relative to start of the region" msgstr "" @@ -3770,16 +5133,28 @@ msgstr "" msgid "L" msgstr "V" +#: editor_regions.cc:118 +msgid "Region position locked?" +msgstr "" + +#: editor_regions.cc:119 +msgid "G" +msgstr "" + #: editor_regions.cc:119 msgid "Region position glued to Bars|Beats time?" msgstr "" -#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:759 -#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:554 +#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:762 +#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:553 #: stereo_panner.cc:237 msgid "M" msgstr "" +#: editor_regions.cc:120 +msgid "Region muted?" +msgstr "" + #: editor_regions.cc:121 msgid "O" msgstr "A" @@ -3796,15 +5171,32 @@ msgstr "Dold" msgid "(MISSING) " msgstr "" +#: editor_regions.cc:457 +msgid "" +"Do you really want to remove unused regions?\n" +"(This is destructive and cannot be undone)" +msgstr "" + +#: editor_regions.cc:461 +msgid "Yes, remove." +msgstr "" + +#: editor_regions.cc:463 +msgid "Remove unused regions" +msgstr "" + #: editor_regions.cc:816 editor_regions.cc:830 editor_regions.cc:844 msgid "Mult." msgstr "" -#: editor_regions.cc:847 engine_dialog.cc:84 midi_list_editor.cc:103 -#: time_info_box.cc:91 +#: editor_regions.cc:847 midi_list_editor.cc:103 time_info_box.cc:91 msgid "Start" msgstr "" +#: editor_regions.cc:865 editor_regions.cc:881 +msgid "Multiple" +msgstr "" + #: editor_regions.cc:950 msgid "MISSING " msgstr "" @@ -3813,28 +5205,64 @@ msgstr "" msgid "SS" msgstr "" +#: editor_routes.cc:202 +msgid "Track/Bus Name" +msgstr "" + +#: editor_routes.cc:203 +msgid "Track/Bus visible ?" +msgstr "" + #: editor_routes.cc:204 mixer_strip.cc:1945 meter_strip.cc:334 #: route_time_axis.cc:2407 msgid "A" msgstr "" +#: editor_routes.cc:204 +msgid "Track/Bus active ?" +msgstr "" + #: editor_routes.cc:205 mixer_strip.cc:1932 msgid "I" msgstr "" +#: editor_routes.cc:205 +msgid "MIDI input enabled" +msgstr "" + #: editor_routes.cc:206 mixer_strip.cc:1930 mono_panner.cc:198 #: stereo_panner.cc:215 stereo_panner.cc:242 msgid "R" msgstr "H" +#: editor_routes.cc:206 +msgid "Record enabled" +msgstr "" + +#: editor_routes.cc:207 +msgid "Muted" +msgstr "" + #: editor_routes.cc:208 mixer_strip.cc:1941 meter_strip.cc:330 msgid "S" msgstr "" +#: editor_routes.cc:208 +msgid "Soloed" +msgstr "" + #: editor_routes.cc:209 msgid "SI" msgstr "" +#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1867 +msgid "Solo Isolated" +msgstr "" + +#: editor_routes.cc:210 +msgid "Solo Safe (Locked)" +msgstr "" + #: editor_routes.cc:471 mixer_ui.cc:1162 msgid "Hide All" msgstr "Dölj Alla" @@ -3879,6 +5307,10 @@ msgstr "Rensa alla platsmarkörer" msgid "Unhide locations" msgstr "Visa platsmarkörer" +#: editor_rulers.cc:346 +msgid "New range" +msgstr "" + #: editor_rulers.cc:347 msgid "Clear all ranges" msgstr "Rensa alla omfÃ¥ng" @@ -3899,6 +5331,14 @@ msgstr "Nytt tempo" msgid "New Meter" msgstr "Ny taktart" +#: editor_rulers.cc:373 +msgid "Timeline height" +msgstr "" + +#: editor_rulers.cc:383 +msgid "Align Video Track" +msgstr "" + #: editor_selection.cc:889 editor_selection.cc:932 msgid "set selected regions" msgstr "ställ in valda regioner" @@ -3935,12 +5375,42 @@ msgstr "markera allt efter markör" msgid "select all before cursor" msgstr "markera allt före markör" +#: editor_selection.cc:1753 +msgid "select all after edit" +msgstr "" + +#: editor_selection.cc:1755 +msgid "select all before edit" +msgstr "" + +#: editor_selection.cc:1888 +msgid "No edit range defined" +msgstr "" + #: editor_selection.cc:1894 msgid "" "the edit point is Selected Marker\n" "but there is no selected marker." msgstr "" +#: editor_snapshots.cc:136 +msgid "Rename Snapshot" +msgstr "" + +#: editor_snapshots.cc:138 +msgid "New name of snapshot" +msgstr "" + +#: editor_snapshots.cc:156 +msgid "" +"Do you really want to remove snapshot \"%1\" ?\n" +"(which cannot be undone)" +msgstr "" + +#: editor_snapshots.cc:161 +msgid "Remove snapshot" +msgstr "" + #: editor_tempodisplay.cc:208 editor_tempodisplay.cc:250 msgid "add" msgstr "lägg till" @@ -3984,235 +5454,230 @@ msgid "" "programming error: meter marker canvas item has no marker object pointer!" msgstr "" -#: engine_dialog.cc:75 -msgid "Realtime" -msgstr "Realtid" +#: editor_timefx.cc:68 +msgid "stretch/shrink" +msgstr "" -#: engine_dialog.cc:76 -msgid "Do not lock memory" -msgstr "LÃ¥s ej minnet" +#: editor_timefx.cc:129 +msgid "pitch shift" +msgstr "" -#: engine_dialog.cc:77 -msgid "Unlock memory" -msgstr "Frigör minnet" - -#: engine_dialog.cc:78 -msgid "No zombies" -msgstr "Inga zombies" +#: editor_timefx.cc:301 +msgid "timefx cannot be started - thread creation error" +msgstr "" #: engine_dialog.cc:79 -msgid "Provide monitor ports" -msgstr "Skapa medhörningsportar" +msgid "Device Control Panel" +msgstr "" -#: engine_dialog.cc:80 -msgid "Force 16 bit" -msgstr "Tvinga 16 bit" +#: engine_dialog.cc:80 engine_dialog.cc:1725 +msgid "Measure" +msgstr "" #: engine_dialog.cc:81 -msgid "H/W monitoring" -msgstr "HÃ¥rdvarumedhörning" +msgid "Use results" +msgstr "" #: engine_dialog.cc:82 -msgid "H/W metering" -msgstr "HÃ¥rdvarunivÃ¥mätning" +msgid "Back to settings ... (ignore results)" +msgstr "" #: engine_dialog.cc:83 -msgid "Verbose output" -msgstr "Utförlig information" - -#: engine_dialog.cc:103 -msgid "8000Hz" +msgid "Calibrate..." msgstr "" -#: engine_dialog.cc:104 -msgid "22050Hz" -msgstr "" - -#: engine_dialog.cc:105 -msgid "44100Hz" -msgstr "" - -#: engine_dialog.cc:106 -msgid "48000Hz" +#: engine_dialog.cc:87 +msgid "Refresh list" msgstr "" #: engine_dialog.cc:107 -msgid "88200Hz" +msgid "" +"No audio/MIDI backends detected. %1 cannot run\n" +"\n" +"(This is a build/packaging/system error. It should never happen.)" msgstr "" -#: engine_dialog.cc:108 -msgid "96000Hz" +#: engine_dialog.cc:136 +msgid "Latency Measurement Tool" msgstr "" -#: engine_dialog.cc:109 -msgid "192000Hz" +#: engine_dialog.cc:151 +msgid "" +"Turn down the volume on your audio equipment to a very " +"low level." msgstr "" -#: engine_dialog.cc:127 engine_dialog.cc:132 engine_dialog.cc:169 -#: engine_dialog.cc:562 midi_channel_selector.cc:163 -#: midi_channel_selector.cc:402 midi_channel_selector.cc:438 -#: rc_option_editor.cc:1250 sfdb_ui.cc:538 -msgid "None" -msgstr "Ingen" - -#: engine_dialog.cc:128 engine_dialog.cc:563 -msgid "Triangular" -msgstr "Triangulär" - -#: engine_dialog.cc:129 engine_dialog.cc:565 -msgid "Rectangular" -msgstr "Rektangulär" - -#: engine_dialog.cc:130 engine_dialog.cc:567 -msgid "Shaped" -msgstr "Formad" - -#: engine_dialog.cc:158 engine_dialog.cc:483 engine_dialog.cc:974 -msgid "Playback/recording on 1 device" -msgstr "Upp-/inspelning pÃ¥ 1 enhet" - -#: engine_dialog.cc:159 engine_dialog.cc:487 engine_dialog.cc:540 -#: engine_dialog.cc:977 -msgid "Playback/recording on 2 devices" -msgstr "Upp-/inspelning pÃ¥ 2 enheter" - -#: engine_dialog.cc:160 engine_dialog.cc:503 engine_dialog.cc:980 -msgid "Playback only" -msgstr "Uppspelning endast" - -#: engine_dialog.cc:161 engine_dialog.cc:505 engine_dialog.cc:983 -msgid "Recording only" -msgstr "Inspelning endast" - -#: engine_dialog.cc:171 engine_dialog.cc:448 -msgid "coremidi" +#: engine_dialog.cc:159 +msgid "Select two channels below and connect them using a cable." msgstr "" -#: engine_dialog.cc:173 engine_dialog.cc:581 -msgid "seq" +#: engine_dialog.cc:164 +msgid "Output channel" msgstr "" -#: engine_dialog.cc:174 engine_dialog.cc:583 -msgid "raw" +#: engine_dialog.cc:172 +msgid "Input channel" msgstr "" -#: engine_dialog.cc:181 +#: engine_dialog.cc:207 +msgid "Once the channels are connected, click the \"Measure\" button." +msgstr "" + +#: engine_dialog.cc:214 +msgid "When satisfied with the results, click the \"Use results\" button." +msgstr "" + +#: engine_dialog.cc:229 engine_dialog.cc:1727 +msgid "No measurement results yet" +msgstr "" + +#: engine_dialog.cc:238 route_params_ui.cc:105 +msgid "Latency" +msgstr "Fördröjning" + +#: engine_dialog.cc:333 +msgid "Audio System:" +msgstr "" + +#: engine_dialog.cc:374 msgid "Driver:" msgstr "Drivrutin:" -#: engine_dialog.cc:191 sfdb_ui.cc:147 sfdb_ui.cc:260 sfdb_ui.cc:265 +#: engine_dialog.cc:380 +msgid "Device:" +msgstr "" + +#: engine_dialog.cc:385 engine_dialog.cc:475 sfdb_ui.cc:147 sfdb_ui.cc:260 +#: sfdb_ui.cc:265 msgid "Sample rate:" msgstr "Samplingsfrekvens:" -#: engine_dialog.cc:196 +#: engine_dialog.cc:391 engine_dialog.cc:482 msgid "Buffer size:" msgstr "Buffertstorlek:" -#: engine_dialog.cc:202 -msgid "Number of buffers:" -msgstr "Antal buffertar:" - -#: engine_dialog.cc:209 -msgid "Approximate latency:" -msgstr "Ungefärlig fördröjning:" - -#: engine_dialog.cc:222 -msgid "Audio mode:" -msgstr "Ljudläge:" - -#: engine_dialog.cc:284 engine_dialog.cc:408 -msgid "Ignore" -msgstr "Ignorera" - -#: engine_dialog.cc:292 -msgid "Client timeout" -msgstr "Klient-timeout" - -#: engine_dialog.cc:299 -msgid "Number of ports:" -msgstr "Antal portar:" - -#: engine_dialog.cc:304 -msgid "MIDI driver:" -msgstr "MIDI-drivrutin:" - -#: engine_dialog.cc:319 -msgid "" -"No JACK server found anywhere on this system. Please install JACK and restart" -msgstr "Ingen JACK-server hittades. Installera JACK och starta om" - -#: engine_dialog.cc:327 -msgid "Server:" +#: engine_dialog.cc:404 +msgid "Input Channels:" msgstr "" -#: engine_dialog.cc:339 -msgid "Input device:" -msgstr "IngÃ¥ngsenhet:" +#: engine_dialog.cc:415 +msgid "Output Channels:" +msgstr "" -#: engine_dialog.cc:343 -msgid "Output device:" -msgstr "UtgÃ¥ngsenhet:" - -#: engine_dialog.cc:348 +#: engine_dialog.cc:426 msgid "Hardware input latency:" msgstr "HÃ¥rdvarans ingÃ¥ngsfördröjning" -#: engine_dialog.cc:351 engine_dialog.cc:357 +#: engine_dialog.cc:429 engine_dialog.cc:442 msgid "samples" msgstr "samplingar" -#: engine_dialog.cc:354 +#: engine_dialog.cc:439 msgid "Hardware output latency:" msgstr "HÃ¥rdvarans utgÃ¥ngsfördröjning" -#: engine_dialog.cc:368 -msgid "Device" -msgstr "Enhet" +#: engine_dialog.cc:450 +msgid "MIDI System" +msgstr "" -#: engine_dialog.cc:370 -msgid "Advanced" -msgstr "Avancerat" - -#: engine_dialog.cc:653 -msgid "cannot open JACK rc file %1 to store parameters" -msgstr "kan ej öppna JACKs rc-fil %1 för att lagra parametrar" - -#: engine_dialog.cc:787 +#: engine_dialog.cc:467 msgid "" -"You do not have any audio devices capable of\n" -"simultaneous playback and recording.\n" +"The %1 audio backend was configured and started externally.\n" +"This limits your control over it." +msgstr "" + +#: engine_dialog.cc:521 +msgid "" +"Your selected audio configuration is playback- or capture-only.\n" "\n" -"Please use Applications -> Utilities -> Audio MIDI Setup\n" -"to create an \"aggregrate\" device, or install a suitable\n" -"audio interface.\n" -"\n" -"Please send email to Apple and ask them why new Macs\n" -"have no duplex audio device.\n" -"\n" -"Alternatively, if you really want just playback\n" -"or recording but not both, start JACK before running\n" -"%1 and choose the relevant device then." +"Latency calibration requires playback and capture" msgstr "" -#: engine_dialog.cc:800 -msgid "No suitable audio devices" +#: engine_dialog.cc:595 +msgid "MIDI Inputs" msgstr "" -#: engine_dialog.cc:1087 -msgid "You need to choose an audio device first." +#: engine_dialog.cc:612 +msgid "MIDI Outputs" msgstr "" -#: engine_dialog.cc:1104 -msgid "Audio device \"%1\" not known on this computer." +#: engine_dialog.cc:696 +msgid "all available channels" msgstr "" -#: engine_dialog.cc:1256 -msgid "AudioSetup value for %1 is missing data" -msgstr "AudioSetup-värde för %1 saknar data" +#: engine_dialog.cc:890 +#, c-format +msgid "%u samples" +msgstr "" -#: engine_dialog.cc:1335 -msgid "configuration files contain a JACK server path that doesn't exist (%1)" -msgstr "konfigurationsfilerna anger en JACK-serversökväg som inte existerar" +#: engine_dialog.cc:941 +#, c-format +msgid "(%.1f msecs)" +msgstr "" + +#: engine_dialog.cc:1389 +msgid "Cannot set driver to %1" +msgstr "" + +#: engine_dialog.cc:1393 +msgid "Cannot set device name to %1" +msgstr "" + +#: engine_dialog.cc:1397 +msgid "Cannot set sample rate to %1" +msgstr "" + +#: engine_dialog.cc:1401 +msgid "Cannot set buffer size to %1" +msgstr "" + +#: engine_dialog.cc:1407 +msgid "Cannot set input channels to %1" +msgstr "" + +#: engine_dialog.cc:1411 +msgid "Cannot set output channels to %1" +msgstr "" + +#: engine_dialog.cc:1417 +msgid "Cannot set input latency to %1" +msgstr "" + +#: engine_dialog.cc:1421 +msgid "Cannot set output latency to %1" +msgstr "" + +#: engine_dialog.cc:1654 +msgid "No signal detected " +msgstr "" + +#: engine_dialog.cc:1667 port_insert_ui.cc:71 port_insert_ui.cc:99 +msgid "Disconnected from audio engine" +msgstr "" + +#: engine_dialog.cc:1681 +msgid "(signal detection error)" +msgstr "" + +#: engine_dialog.cc:1687 +msgid "(inverted - bad wiring)" +msgstr "" + +#: engine_dialog.cc:1697 +msgid "Detected roundtrip latency: %1" +msgstr "" + +#: engine_dialog.cc:1709 port_insert_ui.cc:135 +msgid "Detecting ..." +msgstr "" + +#: engine_dialog.cc:1789 +msgid "Disconnect from %1" +msgstr "" + +#: engine_dialog.cc:1801 +msgid "Connect to %1" +msgstr "" #: export_channel_selector.cc:45 sfdb_ui.cc:145 msgid "Channels:" @@ -4222,6 +5687,10 @@ msgstr "Kanaler:" msgid "Split to mono files" msgstr "Dela upp i monofiler" +#: export_channel_selector.cc:182 +msgid "Bus or Track" +msgstr "" + #: export_channel_selector.cc:459 msgid "Region contents without fades nor region gain (channels: %1)" msgstr "" @@ -4230,12 +5699,28 @@ msgstr "" msgid "Region contents with fades and region gain (channels: %1)" msgstr "" +#: export_channel_selector.cc:467 +msgid "Track output (channels: %1)" +msgstr "" + +#: export_channel_selector.cc:536 +msgid "Export region contents" +msgstr "" + +#: export_channel_selector.cc:537 +msgid "Export track output" +msgstr "" + #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten." msgstr "" +#: export_dialog.cc:47 +msgid "List files" +msgstr "" + #: export_dialog.cc:164 export_timespan_selector.cc:355 #: export_timespan_selector.cc:417 msgid "Time Span" @@ -4263,6 +5748,10 @@ msgstr "" msgid "Stop Export" msgstr "Avbryt Export" +#: export_dialog.cc:337 +msgid "export" +msgstr "" + #: export_dialog.cc:356 msgid "Normalizing '%3' (timespan %1 of %2)" msgstr "" @@ -4285,6 +5774,26 @@ msgid "" "Warning: " msgstr "" +#: export_dialog.cc:420 +msgid "Export Selection" +msgstr "" + +#: export_dialog.cc:433 +msgid "Export Region" +msgstr "" + +#: export_dialog.cc:443 +msgid "Source" +msgstr "" + +#: export_dialog.cc:458 +msgid "Stem Export" +msgstr "" + +#: export_file_notebook.cc:38 +msgid "Add another format" +msgstr "" + #: export_file_notebook.cc:178 msgid "Format" msgstr "" @@ -4293,18 +5802,34 @@ msgstr "" msgid "Location" msgstr "Plats" +#: export_file_notebook.cc:255 +msgid "No format!" +msgstr "" + #: export_file_notebook.cc:267 msgid "Format %1: %2" msgstr "" +#: export_filename_selector.cc:32 +msgid "Label:" +msgstr "" + +#: export_filename_selector.cc:33 +msgid "Session Name" +msgstr "" + +#: export_filename_selector.cc:34 +msgid "Revision:" +msgstr "" + #: export_filename_selector.cc:36 msgid "Folder:" msgstr "Mapp:" #: export_filename_selector.cc:37 session_import_dialog.cc:44 -#: transcode_video_dialog.cc:59 video_server_dialog.cc:45 -#: video_server_dialog.cc:47 export_video_dialog.cc:69 -#: export_video_dialog.cc:71 +#: transcode_video_dialog.cc:58 video_server_dialog.cc:45 +#: video_server_dialog.cc:47 export_video_dialog.cc:68 +#: export_video_dialog.cc:70 msgid "Browse" msgstr "Bläddra" @@ -4332,6 +5857,14 @@ msgstr "" msgid "Choose export folder" msgstr "" +#: export_format_dialog.cc:31 +msgid "New Export Format Profile" +msgstr "" + +#: export_format_dialog.cc:31 +msgid "Edit Export Format Profile" +msgstr "" + #: export_format_dialog.cc:38 msgid "Label: " msgstr "Etikett: " @@ -4364,6 +5897,18 @@ msgstr "Kompatibilitet" msgid "Quality" msgstr "Kvalitet" +#: export_format_dialog.cc:57 +msgid "File format" +msgstr "" + +#: export_format_dialog.cc:59 +msgid "Sample rate conversion quality:" +msgstr "" + +#: export_format_dialog.cc:66 +msgid "Dithering" +msgstr "" + #: export_format_dialog.cc:68 msgid "Create CUE file for disk-at-once CD/DVD creation" msgstr "" @@ -4372,6 +5917,10 @@ msgstr "" msgid "Create TOC file for disk-at-once CD/DVD creation" msgstr "" +#: export_format_dialog.cc:71 +msgid "Tag file with session's metadata" +msgstr "" + #: export_format_dialog.cc:461 msgid "Best (sinc)" msgstr "" @@ -4384,20 +5933,44 @@ msgstr "" msgid "Fast (sinc)" msgstr "" +#: export_format_dialog.cc:481 +msgid "Zero order hold" +msgstr "" + #: export_format_dialog.cc:879 msgid "Linear encoding options" msgstr "" +#: export_format_dialog.cc:895 +msgid "Ogg Vorbis options" +msgstr "" + +#: export_format_dialog.cc:908 +msgid "FLAC options" +msgstr "" + #: export_format_dialog.cc:925 msgid "Broadcast Wave options" msgstr "" +#: export_format_selector.cc:136 +msgid "Do you really want to remove the format?" +msgstr "" + +#: export_preset_selector.cc:28 +msgid "Preset" +msgstr "" + #: export_preset_selector.cc:104 msgid "" "The selected preset did not load successfully!\n" "Perhaps it references a format that has been removed?" msgstr "" +#: export_preset_selector.cc:156 +msgid "Do you really want to remove this preset?" +msgstr "" + #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "Visa tider som:" @@ -4410,6 +5983,10 @@ msgstr "" msgid "Range" msgstr "OmfÃ¥ng" +#: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 +msgid "curl error %1 (%2)" +msgstr "" + #: sfdb_freesound_mootcher.cc:266 msgid "getSoundResourceFile: There is no valid root in the xml file" msgstr "" @@ -4422,61 +5999,78 @@ msgstr "" msgid "%1" msgstr "" -#: gain_meter.cc:106 gain_meter.cc:357 gain_meter.cc:462 gain_meter.cc:856 +#: gain_meter.cc:105 gain_meter.cc:360 gain_meter.cc:465 gain_meter.cc:859 msgid "-inf" msgstr "" -#: gain_meter.cc:112 gain_meter.cc:913 +#: gain_meter.cc:111 gain_meter.cc:916 msgid "Fader automation mode" msgstr "Automatiseringsläge för reglage" -#: gain_meter.cc:113 gain_meter.cc:914 +#: gain_meter.cc:112 gain_meter.cc:917 msgid "Fader automation type" msgstr "Automatiseringstyp för reglage" -#: gain_meter.cc:122 gain_meter.cc:795 panner_ui.cc:178 panner_ui.cc:590 +#: gain_meter.cc:121 gain_meter.cc:798 panner_ui.cc:177 panner_ui.cc:589 msgid "Abs" msgstr "" -#: gain_meter.cc:762 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:557 +#: gain_meter.cc:765 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:556 #: route_time_axis.cc:2411 msgid "P" msgstr "U" -#: gain_meter.cc:765 panner_ui.cc:560 +#: gain_meter.cc:768 panner_ui.cc:559 msgid "T" msgstr "B" -#: gain_meter.cc:768 panner_ui.cc:563 +#: gain_meter.cc:771 panner_ui.cc:562 msgid "W" msgstr "S" -#: generic_pluginui.cc:83 +#: generic_pluginui.cc:81 msgid "Presets" msgstr "Förinställningar" -#: generic_pluginui.cc:242 generic_pluginui.cc:376 processor_box.cc:2212 +#: generic_pluginui.cc:230 +msgid "Switches" +msgstr "" + +#: generic_pluginui.cc:240 generic_pluginui.cc:374 processor_box.cc:2251 msgid "Controls" msgstr "Kontroller" -#: generic_pluginui.cc:270 +#: generic_pluginui.cc:268 msgid "Plugin Editor: could not build control element for port %1" msgstr "" "Insticksprogramsredigerare: kunde inte bygga kontrollelement för port%1" -#: generic_pluginui.cc:423 +#: generic_pluginui.cc:406 +msgid "Meters" +msgstr "" + +#: generic_pluginui.cc:421 msgid "Automation control" msgstr "Automatiseringskontroll" -#: global_port_matrix.cc:164 +#: generic_pluginui.cc:428 +msgid "Mgnual" +msgstr "" + +#: global_port_matrix.cc:157 msgid "Audio Connection Manager" msgstr "LjudspÃ¥rsanslutningar" -#: global_port_matrix.cc:167 +#: global_port_matrix.cc:160 msgid "MIDI Connection Manager" msgstr "MIDI-spÃ¥ranslutningar" -#: global_port_matrix.cc:213 io_selector.cc:216 +#: global_port_matrix.cc:200 io_selector.cc:210 mixer_strip.cc:719 +#: mixer_strip.cc:845 +msgid "Disconnect" +msgstr "Koppla frÃ¥n" + +#: global_port_matrix.cc:206 io_selector.cc:216 msgid "port" msgstr "" @@ -4492,14 +6086,50 @@ msgstr "Inspelningsläge" msgid "Soloed..." msgstr "Solad..." +#: group_tabs.cc:316 +msgid "Create New Group ..." +msgstr "" + #: group_tabs.cc:317 msgid "Create New Group From" msgstr "" +#: group_tabs.cc:320 +msgid "Edit Group..." +msgstr "" + +#: group_tabs.cc:321 +msgid "Collect Group" +msgstr "" + +#: group_tabs.cc:322 +msgid "Remove Group" +msgstr "" + +#: group_tabs.cc:325 +msgid "Remove Subgroup Bus" +msgstr "" + +#: group_tabs.cc:327 +msgid "Add New Subgroup Bus" +msgstr "" + #: group_tabs.cc:329 msgid "Add New Aux Bus (pre-fader)" msgstr "" +#: group_tabs.cc:330 +msgid "Add New Aux Bus (post-fader)" +msgstr "" + +#: group_tabs.cc:336 +msgid "Enable All Groups" +msgstr "" + +#: group_tabs.cc:337 +msgid "Disable All Groups" +msgstr "" + #: gtk-custom-ruler.c:133 msgid "Lower limit of ruler" msgstr "Lägre gräns för räcke" @@ -4532,20 +6162,64 @@ msgstr "Visa position" msgid "Draw current ruler position" msgstr "Rita upp räckets aktuellt position" +#: insert_time_dialog.cc:46 +msgid "Time to insert:" +msgstr "" + +#: insert_time_dialog.cc:54 +msgid "Intersected regions should:" +msgstr "" + +#: insert_time_dialog.cc:57 +msgid "stay in position" +msgstr "" + +#: insert_time_dialog.cc:58 +msgid "move" +msgstr "" + +#: insert_time_dialog.cc:59 +msgid "be split" +msgstr "" + #: insert_time_dialog.cc:65 msgid "Insert time on all the track's playlists" msgstr "" +#: insert_time_dialog.cc:68 +msgid "Move glued regions" +msgstr "" + +#: insert_time_dialog.cc:70 +msgid "Move markers" +msgstr "" + +#: insert_time_dialog.cc:73 +msgid "Move glued markers" +msgstr "" + +#: insert_time_dialog.cc:78 +msgid "Move locked markers" +msgstr "" + #: insert_time_dialog.cc:83 msgid "" "Move tempo and meter changes\n" "(may cause oddities in the tempo map)" msgstr "" +#: insert_time_dialog.cc:91 +msgid "Insert time" +msgstr "" + #: interthread_progress_window.cc:103 msgid "Importing file: %1 of %2" msgstr "" +#: io_selector.cc:220 +msgid "I/O selector" +msgstr "" + #: io_selector.cc:265 msgid "%1 input" msgstr "%1-ingÃ¥ng" @@ -4586,10 +6260,22 @@ msgstr "Välj en händelse och tryck tangentkombinationen du vill använda" msgid "Main_menu" msgstr "" -#: keyeditor.cc:255 +#: keyeditor.cc:253 msgid "redirectmenu" msgstr "" +#: keyeditor.cc:255 +msgid "Editor_menus" +msgstr "" + +#: keyeditor.cc:257 +msgid "RegionList" +msgstr "" + +#: keyeditor.cc:259 +msgid "ProcessorMenu" +msgstr "" + #: latency_gui.cc:39 msgid "sample" msgstr "sampling" @@ -4602,10 +6288,20 @@ msgstr "msek" msgid "period" msgstr "" -#: latency_gui.cc:72 panner_ui.cc:392 +#: latency_gui.cc:55 +msgid "%1 sample" +msgid_plural "%1 samples" +msgstr[0] "" +msgstr[1] "" + +#: latency_gui.cc:72 panner_ui.cc:391 msgid "Reset" msgstr "Nollställ" +#: latency_gui.cc:151 rhythm_ferret.cc:274 sfdb_ui.cc:1755 +msgid "programming error: %1 (%2)" +msgstr "" + #: location_ui.cc:50 location_ui.cc:52 msgid "Use PH" msgstr "Använd SM" @@ -4618,10 +6314,22 @@ msgstr "" msgid "Glue" msgstr "Klistra" +#: location_ui.cc:85 +msgid "Performer:" +msgstr "" + +#: location_ui.cc:86 +msgid "Composer:" +msgstr "" + #: location_ui.cc:88 msgid "Pre-Emphasis" msgstr "" +#: location_ui.cc:314 +msgid "Remove this range" +msgstr "" + #: location_ui.cc:315 msgid "Start time - middle click to locate here" msgstr "" @@ -4630,10 +6338,26 @@ msgstr "" msgid "End time - middle click to locate here" msgstr "" +#: location_ui.cc:319 +msgid "Set range start from playhead location" +msgstr "" + +#: location_ui.cc:320 +msgid "Set range end from playhead location" +msgstr "" + +#: location_ui.cc:324 +msgid "Remove this marker" +msgstr "" + #: location_ui.cc:325 msgid "Position - middle click to locate here" msgstr "" +#: location_ui.cc:327 +msgid "Set marker time from playhead location" +msgstr "" + #: location_ui.cc:494 msgid "You cannot put a CD marker at the start of the session" msgstr "" @@ -4662,73 +6386,102 @@ msgstr "OmfÃ¥ng (inkl CD-spÃ¥rsomfÃ¥ng)" msgid "add range marker" msgstr "lägg till omfÃ¥ngsmarkör" -#: main.cc:235 main.cc:358 +#: main.cc:81 +msgid "%1 could not connect to the audio backend." +msgstr "" + +#: main.cc:194 main.cc:315 +msgid "cannot create user %3 folder %1 (%2)" +msgstr "" + +#: main.cc:201 main.cc:322 +msgid "cannot open pango.rc file %1" +msgstr "" + +#: main.cc:226 main.cc:349 msgid "Cannot find ArdourMono TrueType font" msgstr "" -#: main.cc:247 main.cc:364 +#: main.cc:238 main.cc:355 msgid "Cannot load ArdourMono TrueType font." msgstr "" -#: main.cc:312 +#: main.cc:303 msgid "" "No fontconfig file found on your system. Things may looked very odd or ugly" msgstr "" -#: main.cc:368 +#: main.cc:359 msgid "Failed to set fontconfig configuration." msgstr "" -#: main.cc:379 main.cc:395 -msgid "JACK exited" +#: main.cc:370 main.cc:386 +msgid "The audio backend (%1) has failed, or terminated" msgstr "" -#: main.cc:382 +#: main.cc:373 msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" +"%2 exited unexpectedly, and without notifying %1.\n" "\n" -"This could be due to misconfiguration or to an error inside JACK.\n" +"This could be due to misconfiguration or to an error inside %2.\n" "\n" "Click OK to exit %1." msgstr "" -#: main.cc:397 -msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" -"\n" -"This is probably due to an error inside JACK. You should restart JACK\n" -"and reconnect %1 to it, or exit %1 now. You cannot save your\n" -"session at this time, because we would lose your connection information.\n" +#: main.cc:387 +msgid "%2 exited unexpectedly, and without notifying %1." msgstr "" -#: main.cc:490 +#: main.cc:474 +msgid " (built using " +msgstr "" + +#: main.cc:477 msgid " and GCC version " msgstr " och GCC version " -#: main.cc:500 +#: main.cc:487 msgid "Copyright (C) 1999-2012 Paul Davis" msgstr "" -#: main.cc:503 +#: main.cc:488 +msgid "" +"Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " +"Baker, Robin Gareus" +msgstr "" + +#: main.cc:490 msgid "%1 comes with ABSOLUTELY NO WARRANTY" msgstr "" -#: main.cc:504 +#: main.cc:491 msgid "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." msgstr "" -#: main.cc:505 +#: main.cc:492 msgid "This is free software, and you are welcome to redistribute it " msgstr "" -#: main.cc:506 +#: main.cc:493 msgid "under certain conditions; see the source for copying conditions." msgstr "" -#: main.cc:522 +#: main.cc:500 +msgid "could not initialize %1." +msgstr "" + +#: main.cc:509 msgid "Cannot xinstall SIGPIPE error handler" msgstr "" +#: main.cc:515 +msgid "could not create %1 GUI" +msgstr "" + +#: main_clock.cc:51 +msgid "Display delta to edit cursor" +msgstr "" + #: marker.cc:251 video_image_frame.cc:121 msgid "MarkerText" msgstr "MarkörText" @@ -4738,6 +6491,11 @@ msgstr "MarkörText" msgid "All" msgstr "Alla" +#: midi_channel_selector.cc:163 midi_channel_selector.cc:402 +#: midi_channel_selector.cc:438 rc_option_editor.cc:1248 sfdb_ui.cc:538 +msgid "None" +msgstr "Ingen" + #: midi_channel_selector.cc:167 midi_channel_selector.cc:407 #: midi_channel_selector.cc:443 msgid "Invert" @@ -4747,10 +6505,42 @@ msgstr "Invertera" msgid "Force" msgstr "Tvinga" +#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 +msgid "MIDI Channel Control" +msgstr "" + +#: midi_channel_selector.cc:332 +msgid "Playback all channels" +msgstr "" + +#: midi_channel_selector.cc:333 +msgid "Play only selected channels" +msgstr "" + #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" +#: midi_channel_selector.cc:335 +msgid "Record all channels" +msgstr "" + +#: midi_channel_selector.cc:336 +msgid "Record only selected channels" +msgstr "" + +#: midi_channel_selector.cc:337 +msgid "Force all channels to 1 channel" +msgstr "" + +#: midi_channel_selector.cc:378 +msgid "Inbound" +msgstr "" + +#: midi_channel_selector.cc:398 +msgid "Click to enable recording all channels" +msgstr "" + #: midi_channel_selector.cc:403 msgid "Click to disable recording all channels" msgstr "" @@ -4759,6 +6549,10 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" +#: midi_channel_selector.cc:415 +msgid "Playback" +msgstr "" + #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -4803,6 +6597,22 @@ msgstr "" msgid "Triplet" msgstr "" +#: midi_list_editor.cc:58 +msgid "Quarter" +msgstr "" + +#: midi_list_editor.cc:59 +msgid "Eighth" +msgstr "" + +#: midi_list_editor.cc:60 +msgid "Sixteenth" +msgstr "" + +#: midi_list_editor.cc:61 +msgid "Thirty-second" +msgstr "" + #: midi_list_editor.cc:62 msgid "Sixty-fourth" msgstr "" @@ -4815,14 +6625,74 @@ msgstr "" msgid "Vel" msgstr "Styrka" +#: midi_list_editor.cc:215 +msgid "edit note start" +msgstr "" + +#: midi_list_editor.cc:224 +msgid "edit note channel" +msgstr "" + +#: midi_list_editor.cc:234 +msgid "edit note number" +msgstr "" + +#: midi_list_editor.cc:244 +msgid "edit note velocity" +msgstr "" + +#: midi_list_editor.cc:258 +msgid "edit note length" +msgstr "" + +#: midi_list_editor.cc:460 +msgid "insert new note" +msgstr "" + +#: midi_list_editor.cc:524 +msgid "delete notes (from list)" +msgstr "" + +#: midi_list_editor.cc:599 +msgid "change note channel" +msgstr "" + +#: midi_list_editor.cc:607 +msgid "change note number" +msgstr "" + +#: midi_list_editor.cc:617 +msgid "change note velocity" +msgstr "" + +#: midi_list_editor.cc:687 +msgid "change note length" +msgstr "" + +#: midi_port_dialog.cc:39 +msgid "Add MIDI Port" +msgstr "" + +#: midi_port_dialog.cc:40 +msgid "Port name:" +msgstr "" + #: midi_port_dialog.cc:45 msgid "MidiPortDialog" msgstr "" +#: midi_region_view.cc:838 +msgid "channel edit" +msgstr "" + #: midi_region_view.cc:874 msgid "velocity edit" msgstr "" +#: midi_region_view.cc:931 +msgid "add note" +msgstr "" + #: midi_region_view.cc:1779 msgid "step add" msgstr "" @@ -4831,14 +6701,58 @@ msgstr "" msgid "insane MIDI patch key %1:%2" msgstr "" +#: midi_region_view.cc:1870 midi_region_view.cc:1890 +msgid "alter patch change" +msgstr "" + #: midi_region_view.cc:1924 msgid "add patch change" msgstr "" +#: midi_region_view.cc:1942 +msgid "move patch change" +msgstr "" + +#: midi_region_view.cc:1953 +msgid "delete patch change" +msgstr "" + +#: midi_region_view.cc:2022 +msgid "delete selection" +msgstr "" + +#: midi_region_view.cc:2038 +msgid "delete note" +msgstr "" + +#: midi_region_view.cc:2425 +msgid "move notes" +msgstr "" + #: midi_region_view.cc:2647 msgid "resize notes" msgstr "" +#: midi_region_view.cc:2901 +msgid "change velocities" +msgstr "" + +#: midi_region_view.cc:2967 +msgid "transpose" +msgstr "" + +#: midi_region_view.cc:3001 +msgid "change note lengths" +msgstr "" + +#: midi_region_view.cc:3070 +msgid "nudge" +msgstr "" + +#: midi_region_view.cc:3085 +msgid "change channel" +msgstr "" + #: midi_region_view.cc:3130 msgid "Bank " msgstr "" @@ -4847,18 +6761,38 @@ msgstr "" msgid "Program " msgstr "" +#: midi_region_view.cc:3132 +msgid "Channel " +msgstr "" + #: midi_region_view.cc:3301 midi_region_view.cc:3303 msgid "paste" msgstr "klistra" +#: midi_region_view.cc:3761 +msgid "delete sysex" +msgstr "" + +#: midi_streamview.cc:479 +msgid "failed to create MIDI region" +msgstr "" + #: midi_time_axis.cc:262 msgid "External MIDI Device" msgstr "" +#: midi_time_axis.cc:263 +msgid "External Device Mode" +msgstr "" + #: midi_time_axis.cc:271 msgid "Chns" msgstr "" +#: midi_time_axis.cc:272 +msgid "Click to edit channel settings" +msgstr "" + #: midi_time_axis.cc:486 msgid "Show Full Range" msgstr "Visa hela omfÃ¥nget" @@ -4867,6 +6801,22 @@ msgstr "Visa hela omfÃ¥nget" msgid "Fit Contents" msgstr "Anpassa innehÃ¥llet" +#: midi_time_axis.cc:495 +msgid "Note Range" +msgstr "" + +#: midi_time_axis.cc:496 +msgid "Note Mode" +msgstr "" + +#: midi_time_axis.cc:497 +msgid "Channel Selector" +msgstr "" + +#: midi_time_axis.cc:502 +msgid "Color Mode" +msgstr "" + #: midi_time_axis.cc:561 msgid "Bender" msgstr "" @@ -4875,38 +6825,111 @@ msgstr "" msgid "Pressure" msgstr "" +#: midi_time_axis.cc:578 +msgid "Controllers" +msgstr "" + #: midi_time_axis.cc:583 msgid "No MIDI Channels selected" msgstr "" +#: midi_time_axis.cc:640 midi_time_axis.cc:769 +msgid "Hide all channels" +msgstr "" + +#: midi_time_axis.cc:644 midi_time_axis.cc:773 +msgid "Show all channels" +msgstr "" + +#: midi_time_axis.cc:655 midi_time_axis.cc:784 +msgid "Channel %1" +msgstr "" + +#: midi_time_axis.cc:910 midi_time_axis.cc:942 +msgid "Controllers %1-%2" +msgstr "" + +#: midi_time_axis.cc:933 midi_time_axis.cc:936 +msgid "Controller %1" +msgstr "" + #: midi_time_axis.cc:959 msgid "Sustained" msgstr "" +#: midi_time_axis.cc:966 +msgid "Percussive" +msgstr "" + +#: midi_time_axis.cc:986 +msgid "Meter Colors" +msgstr "" + +#: midi_time_axis.cc:993 +msgid "Channel Colors" +msgstr "" + +#: midi_time_axis.cc:1000 +msgid "Track Color" +msgstr "" + +#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 +#: midi_time_axis.cc:1510 +msgid "all" +msgstr "" + #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" -#: midi_tracer.cc:52 +#: midi_tracer.cc:46 +msgid "Line history: " +msgstr "" + +#: midi_tracer.cc:54 +msgid "Auto-Scroll" +msgstr "" + +#: midi_tracer.cc:55 msgid "Decimal" msgstr "" -#: midi_tracer.cc:53 rc_option_editor.cc:659 +#: midi_tracer.cc:56 rc_option_editor.cc:657 msgid "Enabled" msgstr "Aktiverad" -#: midi_tracer.cc:66 +#: midi_tracer.cc:57 +msgid "Delta times" +msgstr "" + +#: midi_tracer.cc:70 msgid "Port:" msgstr "" +#: midi_velocity_dialog.cc:31 +msgid "New velocity" +msgstr "" + #: missing_file_dialog.cc:34 msgid "Missing File!" msgstr "" +#: missing_file_dialog.cc:36 +msgid "Select a folder to search" +msgstr "" + #: missing_file_dialog.cc:37 msgid "Add chosen folder to search path, and try again" msgstr "" +#: missing_file_dialog.cc:39 +msgid "Stop loading this session" +msgstr "" + +#: missing_file_dialog.cc:40 +msgid "Skip all missing files" +msgstr "" + #: missing_file_dialog.cc:41 msgid "Skip this file" msgstr "" @@ -4927,7 +6950,15 @@ msgid "" "\n" msgstr "" -#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 +#: missing_file_dialog.cc:99 +msgid "Click to choose an additional folder" +msgstr "" + +#: missing_plugin_dialog.cc:29 +msgid "Missing Plugins" +msgstr "" + +#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:59 msgid "OK" msgstr "" @@ -4955,6 +6986,34 @@ msgstr "" msgid "Set Gain to 0dB on Mixer-Selected Tracks/Busses" msgstr "" +#: mixer_actor.cc:63 +msgid "Copy Selected Processors" +msgstr "" + +#: mixer_actor.cc:64 +msgid "Cut Selected Processors" +msgstr "" + +#: mixer_actor.cc:65 +msgid "Paste Selected Processors" +msgstr "" + +#: mixer_actor.cc:66 +msgid "Delete Selected Processors" +msgstr "" + +#: mixer_actor.cc:67 +msgid "Select All (visible) Processors" +msgstr "" + +#: mixer_actor.cc:68 +msgid "Toggle Selected Processors" +msgstr "" + +#: mixer_actor.cc:69 +msgid "Toggle Selected Plugins" +msgstr "" + #: mixer_actor.cc:72 mixer_actor.cc:73 msgid "Scroll Mixer Window to the left" msgstr "" @@ -4975,6 +7034,11 @@ msgstr "" msgid "pre" msgstr "pre" +#: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 +#: rc_option_editor.cc:1868 +msgid "Comments" +msgstr "" + #: mixer_strip.cc:147 msgid "Click to toggle the width of this mixer strip." msgstr "" @@ -4985,6 +7049,14 @@ msgid "" "%1-%2-click to toggle the width of all strips." msgstr "" +#: mixer_strip.cc:156 +msgid "Hide this mixer strip" +msgstr "" + +#: mixer_strip.cc:167 +msgid "Click to select metering point" +msgstr "" + #: mixer_strip.cc:173 msgid "tupni" msgstr "ni" @@ -5009,13 +7081,39 @@ msgstr "" msgid "Mix group" msgstr "Mixgrupp" +#: mixer_strip.cc:351 rc_option_editor.cc:1865 +msgid "Phase Invert" +msgstr "" + +#: mixer_strip.cc:352 rc_option_editor.cc:1866 route_ui.cc:1218 +msgid "Solo Safe" +msgstr "" + #: mixer_strip.cc:355 mixer_ui.cc:124 route_time_axis.cc:673 msgid "Group" msgstr "Grupp" -#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 -msgid "Not connected to JACK - no I/O changes are possible" -msgstr "Inte ansluten till JACK - in/ut-ändringar är inte möjliga" +#: mixer_strip.cc:356 rc_option_editor.cc:1869 +msgid "Meter Point" +msgstr "" + +#: mixer_strip.cc:470 +msgid "Enable/Disable MIDI input" +msgstr "" + +#: mixer_strip.cc:622 +msgid "" +"Aux\n" +"Sends" +msgstr "" + +#: mixer_strip.cc:646 +msgid "Snd" +msgstr "" + +#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2193 +msgid "Not connected to audio engine - no I/O changes are possible" +msgstr "" #: mixer_strip.cc:1096 msgid "INPUT to %1" @@ -5025,6 +7123,10 @@ msgstr "" msgid "OUTPUT from %1" msgstr "" +#: mixer_strip.cc:1174 +msgid "Disconnected" +msgstr "" + #: mixer_strip.cc:1303 msgid "*Comments*" msgstr "*Kommentarer" @@ -5053,6 +7155,10 @@ msgstr "" msgid "~G" msgstr "" +#: mixer_strip.cc:1467 +msgid "Comments..." +msgstr "" + #: mixer_strip.cc:1469 msgid "Save As Template..." msgstr "Spara som spÃ¥rmall..." @@ -5073,14 +7179,34 @@ msgstr "Skydda mot denormals" msgid "Remote Control ID..." msgstr "Fjärr-ID..." +#: mixer_strip.cc:1717 mixer_strip.cc:1741 +msgid "in" +msgstr "" + #: mixer_strip.cc:1725 msgid "post" msgstr "post" +#: mixer_strip.cc:1729 +msgid "out" +msgstr "" + #: mixer_strip.cc:1734 msgid "custom" msgstr "egen" +#: mixer_strip.cc:1745 +msgid "pr" +msgstr "" + +#: mixer_strip.cc:1749 +msgid "po" +msgstr "" + +#: mixer_strip.cc:1753 +msgid "o" +msgstr "" + #: mixer_strip.cc:1758 msgid "c" msgstr "" @@ -5101,10 +7227,26 @@ msgstr "" msgid "D" msgstr "" +#: mixer_strip.cc:1953 +msgid "i" +msgstr "" + +#: mixer_strip.cc:2128 +msgid "Pre-fader" +msgstr "" + +#: mixer_strip.cc:2129 +msgid "Post-fader" +msgstr "" + #: mixer_strip.cc:2166 meter_strip.cc:728 msgid "Change all in Group to %1" msgstr "" +#: mixer_strip.cc:2168 meter_strip.cc:730 +msgid "Change all to %1" +msgstr "" + #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -5121,6 +7263,14 @@ msgstr "-alla-" msgid "Strips" msgstr "Remsor" +#: meter_strip.cc:764 +msgid "Variable height" +msgstr "" + +#: meter_strip.cc:765 +msgid "Short" +msgstr "" + #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -5173,10 +7323,42 @@ msgstr "" msgid "SiP" msgstr "" +#: monitor_section.cc:86 +msgid "soloing" +msgstr "" + #: monitor_section.cc:90 msgid "isolated" msgstr "" +#: monitor_section.cc:94 +msgid "auditioning" +msgstr "" + +#: monitor_section.cc:104 +msgid "" +"When active, something is solo-isolated.\n" +"Click to de-isolate everything" +msgstr "" + +#: monitor_section.cc:107 +msgid "" +"When active, auditioning is active.\n" +"Click to stop the audition" +msgstr "" + +#: monitor_section.cc:124 +msgid "Solo controls affect solo-in-place" +msgstr "" + +#: monitor_section.cc:130 +msgid "Solo controls toggle after-fader-listen" +msgstr "" + +#: monitor_section.cc:136 +msgid "Solo controls toggle pre-fader-listen" +msgstr "" + #: monitor_section.cc:144 msgid "Gain increase for soloed signals (0dB is normal)" msgstr "" @@ -5203,10 +7385,18 @@ msgstr "" msgid "Dim" msgstr "" +#: monitor_section.cc:190 +msgid "excl. solo" +msgstr "" + #: monitor_section.cc:192 msgid "Exclusive solo means that only 1 solo is active at a time" msgstr "" +#: monitor_section.cc:199 +msgid "solo » mute" +msgstr "" + #: monitor_section.cc:201 msgid "" "If enabled, solo will override mute\n" @@ -5225,23 +7415,67 @@ msgstr "" msgid "mono" msgstr "" +#: monitor_section.cc:266 +msgid "Monitor" +msgstr "" + #: monitor_section.cc:678 msgid "Switch monitor to mono" msgstr "" +#: monitor_section.cc:681 +msgid "Cut monitor" +msgstr "" + +#: monitor_section.cc:684 +msgid "Dim monitor" +msgstr "" + +#: monitor_section.cc:687 +msgid "Toggle exclusive solo mode" +msgstr "" + #: monitor_section.cc:693 msgid "Toggle mute overrides solo mode" msgstr "" +#: monitor_section.cc:705 +msgid "Cut monitor channel %1" +msgstr "" + +#: monitor_section.cc:710 +msgid "Dim monitor channel %1" +msgstr "" + #: monitor_section.cc:715 msgid "Solo monitor channel %1" msgstr "" +#: monitor_section.cc:720 +msgid "Invert monitor channel %1" +msgstr "" + +#: monitor_section.cc:730 +msgid "In-place solo" +msgstr "" + +#: monitor_section.cc:732 +msgid "After Fade Listen (AFL) solo" +msgstr "" + +#: monitor_section.cc:734 +msgid "Pre Fade Listen (PFL) solo" +msgstr "" + #: mono_panner.cc:101 #, c-format msgid "L:%3d R:%3d" msgstr "" +#: mono_panner_editor.cc:33 +msgid "Mono Panner" +msgstr "" + #: mono_panner_editor.cc:44 mono_panner_editor.cc:49 #: stereo_panner_editor.cc:46 stereo_panner_editor.cc:51 msgid "%" @@ -5338,11 +7572,34 @@ msgstr "Normalisera" msgid "Usage: " msgstr "Användning: " +#: opts.cc:58 +msgid " [SESSION_NAME] Name of session to load\n" +msgstr "" + +#: opts.cc:59 +msgid " -v, --version Show version information\n" +msgstr "" + +#: opts.cc:60 +msgid " -h, --help Print this message\n" +msgstr "" + #: opts.cc:61 msgid "" " -a, --no-announcements Do not contact website for announcements\n" msgstr "" +#: opts.cc:62 +msgid "" +" -b, --bindings Print all possible keyboard binding names\n" +msgstr "" + +#: opts.cc:63 +msgid "" +" -c, --name Use a specific backend client name, default is " +"ardour\n" +msgstr "" + #: opts.cc:64 msgid "" " -d, --disable-plugins Disable all plugins in an existing session\n" @@ -5354,14 +7611,35 @@ msgid "" "available options\n" msgstr "" +#: opts.cc:66 +msgid " -n, --no-splash Do not show splash screen\n" +msgstr "" + #: opts.cc:67 msgid " -m, --menus file Use \"file\" to define menus\n" msgstr "" +#: opts.cc:68 +msgid "" +" -N, --new session-name Create a new session from the command line\n" +msgstr "" + +#: opts.cc:69 +msgid " -O, --no-hw-optimizations Disable h/w specific optimizations\n" +msgstr "" + #: opts.cc:70 msgid " -P, --no-connect-ports Do not connect any ports at startup\n" msgstr "" +#: opts.cc:71 +msgid " -S, --sync Draw the gui synchronously \n" +msgstr "" + +#: opts.cc:73 +msgid " -V, --novst Do not use VST support\n" +msgstr "" + #: opts.cc:75 msgid "" " -E, --save Load the specified session, save it to " @@ -5378,7 +7656,11 @@ msgid "" "ardour3/ardour.bindings)\n" msgstr "" -#: panner2d.cc:783 panner_ui.cc:384 plugin_ui.cc:451 +#: panner2d.cc:781 +msgid "Panner (2D)" +msgstr "" + +#: panner2d.cc:783 panner_ui.cc:383 plugin_ui.cc:448 msgid "Bypass" msgstr "FörbigÃ¥" @@ -5386,23 +7668,31 @@ msgstr "FörbigÃ¥" msgid "Panner" msgstr "Panorerare" -#: panner_ui.cc:71 +#: panner_ui.cc:70 msgid "Pan automation mode" msgstr "panoreringsautomatiseringsläge" -#: panner_ui.cc:72 +#: panner_ui.cc:71 msgid "Pan automation type" msgstr "panoreringsuatomtiseringstyp" -#: panner_ui.cc:295 +#: panner_ui.cc:294 msgid "" "No panner user interface is currently available for %1-in/2out tracks/busses" msgstr "" +#: playlist_selector.cc:43 +msgid "Playlists" +msgstr "" + #: playlist_selector.cc:54 msgid "Playlists grouped by track" msgstr "Spellista grupperad utifrÃ¥n spÃ¥r" +#: playlist_selector.cc:101 +msgid "Playlist for %1" +msgstr "" + #: playlist_selector.cc:114 msgid "Other tracks" msgstr "Andra spÃ¥r" @@ -5411,6 +7701,10 @@ msgstr "Andra spÃ¥r" msgid "unassigned" msgstr "otilldelad" +#: playlist_selector.cc:194 +msgid "Imported" +msgstr "" + #: plugin_eq_gui.cc:75 plugin_eq_gui.cc:99 msgid "dB scale" msgstr "dB-skala" @@ -5471,6 +7765,18 @@ msgstr "Kategori" msgid "Creator" msgstr "Upphovsman" +#: plugin_selector.cc:90 +msgid "# Audio In" +msgstr "" + +#: plugin_selector.cc:91 +msgid "# Audio Out" +msgstr "" + +#: plugin_selector.cc:92 +msgid "# MIDI In" +msgstr "" + #: plugin_selector.cc:93 msgid "# MIDI Out" msgstr "" @@ -5523,41 +7829,65 @@ msgstr "Upphovsman" msgid "By Category" msgstr "Kategori" -#: plugin_ui.cc:116 +#: plugin_ui.cc:114 msgid "Eh? LADSPA plugins don't have editors!" msgstr "" -#: plugin_ui.cc:329 +#: plugin_ui.cc:123 plugin_ui.cc:226 +msgid "" +"unknown type of editor-supplying plugin (note: no VST support in this " +"version of %1)" +msgstr "" + +#: plugin_ui.cc:126 +msgid "unknown type of editor-supplying plugin" +msgstr "" + +#: plugin_ui.cc:256 +msgid "" +"unknown type of editor-supplying plugin (note: no linuxVST support in this " +"version of %1)" +msgstr "" + +#: plugin_ui.cc:328 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "" -#: plugin_ui.cc:417 +#: plugin_ui.cc:414 msgid "Add" msgstr "Lägg till" -#: plugin_ui.cc:422 +#: plugin_ui.cc:418 +msgid "Description" +msgstr "" + +#: plugin_ui.cc:419 msgid "Plugin analysis" msgstr "Analys av insticksprogram" -#: plugin_ui.cc:429 +#: plugin_ui.cc:426 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:431 +#: plugin_ui.cc:427 +msgid "Save a new preset" +msgstr "" + +#: plugin_ui.cc:428 msgid "Save the current preset" msgstr "" -#: plugin_ui.cc:432 +#: plugin_ui.cc:429 msgid "Delete the current preset" msgstr "" -#: plugin_ui.cc:433 +#: plugin_ui.cc:430 msgid "Disable signal processing by the plugin" msgstr "" -#: plugin_ui.cc:466 plugin_ui.cc:662 +#: plugin_ui.cc:463 plugin_ui.cc:659 msgid "" "Click to allow the plugin to receive keyboard events that %1 would normally " "use as a shortcut" @@ -5565,59 +7895,69 @@ msgstr "" "Tryck här för att tillÃ¥ta att insticksprogrammet mottar tangentbordsgenvägar " "som %1 vanligtvis skulle använda" -#: plugin_ui.cc:467 +#: plugin_ui.cc:464 msgid "Click to enable/disable this plugin" msgstr "Tryck för att slÃ¥ pÃ¥/av insticksprogrammet" -#: plugin_ui.cc:508 +#: plugin_ui.cc:503 +msgid "latency (%1 sample)" +msgid_plural "latency (%1 samples)" +msgstr[0] "" +msgstr[1] "" + +#: plugin_ui.cc:505 msgid "latency (%1 ms)" msgstr "fördröjning (%1 msek)" -#: plugin_ui.cc:519 +#: plugin_ui.cc:516 msgid "Edit Latency" msgstr "Ställ in fördröjning" -#: plugin_ui.cc:558 +#: plugin_ui.cc:555 msgid "Plugin preset %1 not found" msgstr "Förinställningen %1 hittades ej" -#: plugin_ui.cc:595 +#: plugin_ui.cc:592 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "full version" msgstr "" -#: plugin_ui.cc:615 plugin_ui.cc:630 +#: plugin_ui.cc:612 plugin_ui.cc:627 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "newer version" msgstr "" -#: plugin_ui.cc:669 +#: plugin_ui.cc:666 msgid "Click to allow normal use of %1 keyboard shortcuts" msgstr "Tryck här för att Ã¥terställa normala tangentbordsgenvägar" -#: port_group.cc:335 +#: port_group.cc:337 msgid "%1 Busses" msgstr "%1-bussar" -#: port_group.cc:336 +#: port_group.cc:338 msgid "%1 Tracks" msgstr "%1-spÃ¥r" -#: port_group.cc:337 +#: port_group.cc:339 msgid "Hardware" msgstr "HÃ¥rdvara" -#: port_group.cc:339 +#: port_group.cc:340 +msgid "%1 Misc" +msgstr "" + +#: port_group.cc:341 msgid "Other" msgstr "" -#: port_group.cc:430 port_group.cc:431 +#: port_group.cc:432 port_group.cc:433 msgid "LTC Out" msgstr "" -#: port_group.cc:434 port_group.cc:435 +#: port_group.cc:436 port_group.cc:437 msgid "LTC In" msgstr "" @@ -5625,30 +7965,66 @@ msgstr "" msgid "MTC in" msgstr "" +#: port_group.cc:466 +msgid "MIDI control in" +msgstr "" + +#: port_group.cc:469 +msgid "MIDI clock in" +msgstr "" + +#: port_group.cc:472 +msgid "MMC in" +msgstr "" + #: port_group.cc:476 msgid "MTC out" msgstr "" -#: port_group.cc:552 +#: port_group.cc:479 +msgid "MIDI control out" +msgstr "" + +#: port_group.cc:482 +msgid "MIDI clock out" +msgstr "" + +#: port_group.cc:485 +msgid "MMC out" +msgstr "" + +#: port_group.cc:532 +msgid ":monitor" +msgstr "" + +#: port_group.cc:544 msgid "system:" msgstr "" -#: port_group.cc:553 +#: port_group.cc:545 msgid "alsa_pcm" msgstr "" +#: port_insert_ui.cc:40 +msgid "Measure Latency" +msgstr "" + +#: port_insert_ui.cc:51 +msgid "Send/Output" +msgstr "" + #: port_insert_ui.cc:52 msgid "Return/Input" msgstr "" -#: port_insert_ui.cc:71 port_insert_ui.cc:99 -msgid "Disconnected from audio engine" -msgstr "" - #: port_insert_ui.cc:86 msgid "No signal detected" msgstr "" +#: port_insert_ui.cc:166 +msgid "Port Insert " +msgstr "" + #: port_matrix.cc:331 port_matrix.cc:357 msgid "Sources" msgstr "Källor" @@ -5672,6 +8048,11 @@ msgstr "Byt namn pÃ¥ '%s'..." msgid "Remove all" msgstr "Ta bort alla" +#: port_matrix.cc:492 port_matrix.cc:504 +#, c-format +msgid "%s all" +msgstr "" + #: port_matrix.cc:527 msgid "Rescan" msgstr "Uppdatera" @@ -5684,41 +8065,49 @@ msgstr "Visa enskilda portar" msgid "Flip" msgstr "" -#: port_matrix.cc:723 +#: port_matrix.cc:721 msgid "" "It is not possible to add a port here, as the first processor in the track " "or buss cannot support the new configuration." msgstr "" -#: port_matrix.cc:726 +#: port_matrix.cc:724 msgid "Cannot add port" msgstr "" -#: port_matrix.cc:748 +#: port_matrix.cc:746 msgid "Port removal not allowed" msgstr "" -#: port_matrix.cc:749 +#: port_matrix.cc:747 msgid "" "This port cannot be removed.\n" "Either the first plugin in the track or buss cannot accept\n" "the new number of inputs or the last plugin has more outputs." msgstr "" -#: port_matrix.cc:966 +#: port_matrix.cc:964 #, c-format msgid "Remove '%s'" msgstr "Ta bort '%s'" -#: port_matrix.cc:981 +#: port_matrix.cc:979 #, c-format msgid "%s all from '%s'" msgstr "%s alla frÃ¥n '%s'" -#: port_matrix.cc:1047 +#: port_matrix.cc:1045 msgid "channel" msgstr "kanal" +#: port_matrix_body.cc:82 +msgid "There are no ports to connect." +msgstr "" + +#: port_matrix_body.cc:84 +msgid "There are no %1 ports to connect." +msgstr "" + #: processor_box.cc:256 msgid "" "%1\n" @@ -5732,7 +8121,19 @@ msgid "" "Double-click to show generic GUI." msgstr "" -#: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 +#: processor_box.cc:372 +msgid "Show All Controls" +msgstr "" + +#: processor_box.cc:376 +msgid "Hide All Controls" +msgstr "" + +#: processor_box.cc:465 +msgid "on" +msgstr "" + +#: processor_box.cc:465 rc_option_editor.cc:1898 rc_option_editor.cc:1912 msgid "off" msgstr "av" @@ -5742,6 +8143,10 @@ msgid "" "plugins,inserts,sends and more" msgstr "" +#: processor_box.cc:1197 processor_box.cc:1618 +msgid "Plugin Incompatibility" +msgstr "" + #: processor_box.cc:1200 msgid "You attempted to add the plugin \"%1\" in slot %2.\n" msgstr "" @@ -5752,6 +8157,18 @@ msgid "" "This plugin has:\n" msgstr "" +#: processor_box.cc:1209 +msgid "\t%1 MIDI input\n" +msgid_plural "\t%1 MIDI inputs\n" +msgstr[0] "" +msgstr[1] "" + +#: processor_box.cc:1213 +msgid "\t%1 audio input\n" +msgid_plural "\t%1 audio inputs\n" +msgstr[0] "" +msgstr[1] "" + #: processor_box.cc:1216 msgid "" "\n" @@ -5776,54 +8193,122 @@ msgid "" "%1 is unable to insert this plugin here.\n" msgstr "" -#: processor_box.cc:1809 +#: processor_box.cc:1262 +msgid "Cannot set up new send: %1" +msgstr "" + +#: processor_box.cc:1621 +msgid "" +"You cannot reorder these plugins/sends/inserts\n" +"in that way because the inputs and\n" +"outputs will not work correctly." +msgstr "" + +#: processor_box.cc:1805 +msgid "Rename Processor" +msgstr "" + +#: processor_box.cc:1836 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "" -#: processor_box.cc:1943 +#: processor_box.cc:1970 msgid "plugin insert constructor failed" msgstr "" -#: processor_box.cc:2004 processor_box.cc:2029 +#: processor_box.cc:1981 +msgid "" +"Copying the set of processors on the clipboard failed,\n" +"probably because the I/O configuration of the plugins\n" +"could not match the configuration of this track." +msgstr "" + +#: processor_box.cc:2027 +msgid "" +"Do you really want to remove all processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2031 processor_box.cc:2056 msgid "Yes, remove them all" msgstr "Ja, ta bort alla" -#: processor_box.cc:2200 +#: processor_box.cc:2033 processor_box.cc:2058 +msgid "Remove processors" +msgstr "" + +#: processor_box.cc:2048 +msgid "" +"Do you really want to remove all pre-fader processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2051 +msgid "" +"Do you really want to remove all post-fader processors from %1?\n" +"(this cannot be undone)" +msgstr "" + +#: processor_box.cc:2239 msgid "New Plugin" msgstr "Nytt insticksprogram" -#: processor_box.cc:2203 +#: processor_box.cc:2242 msgid "New Insert" msgstr "Ny Anslutningspunkt" -#: processor_box.cc:2210 +#: processor_box.cc:2245 +msgid "New External Send ..." +msgstr "" + +#: processor_box.cc:2249 msgid "New Aux Send ..." msgstr "Ny auxilliär sänd..." -#: processor_box.cc:2214 +#: processor_box.cc:2253 msgid "Clear (all)" msgstr "Rensa (alla)" -#: processor_box.cc:2216 +#: processor_box.cc:2255 msgid "Clear (pre-fader)" msgstr "Rensa (förreglage)" -#: processor_box.cc:2218 +#: processor_box.cc:2257 msgid "Clear (post-fader)" msgstr "Rensa (efterreglage)" -#: processor_box.cc:2244 +#: processor_box.cc:2283 msgid "Activate All" msgstr "Aktivera alla" -#: processor_box.cc:2248 +#: processor_box.cc:2285 +msgid "Deactivate All" +msgstr "" + +#: processor_box.cc:2287 msgid "A/B Plugins" msgstr "A/B:a insticksprogram" -#: processor_box.cc:2257 +#: processor_box.cc:2296 msgid "Edit with generic controls..." msgstr "" +#: processor_box.cc:2599 +msgid "%1: %2 (by %3)" +msgstr "" + +#: processor_box.cc:2601 +msgid "%2 (by %3)" +msgstr "" + +#: patch_change_dialog.cc:51 +msgid "Patch Change" +msgstr "" + +#: patch_change_dialog.cc:77 +msgid "Patch Bank" +msgstr "" + #: patch_change_dialog.cc:84 msgid "Patch" msgstr "" @@ -5864,104 +8349,120 @@ msgstr "Fäst notstart mot" msgid "Snap note end" msgstr "Fäst notslut mot" -#: rc_option_editor.cc:69 +#: rc_option_editor.cc:67 msgid "Click audio file:" msgstr "Klickljudfil" -#: rc_option_editor.cc:72 rc_option_editor.cc:79 +#: rc_option_editor.cc:70 rc_option_editor.cc:77 msgid "Browse..." msgstr "Bläddra..." -#: rc_option_editor.cc:76 +#: rc_option_editor.cc:74 msgid "Click emphasis audio file:" msgstr "Betoning:" -#: rc_option_editor.cc:108 +#: rc_option_editor.cc:106 msgid "Choose Click" msgstr "Markera klick" -#: rc_option_editor.cc:128 +#: rc_option_editor.cc:126 msgid "Choose Click Emphasis" msgstr "Markera klickbetoning" -#: rc_option_editor.cc:160 +#: rc_option_editor.cc:158 msgid "Limit undo history to" msgstr "Begränsa Ã¥ngrahistoriken till" -#: rc_option_editor.cc:161 +#: rc_option_editor.cc:159 msgid "Save undo history of" msgstr "Spara Ã¥ngrahistorik för" -#: rc_option_editor.cc:170 rc_option_editor.cc:177 +#: rc_option_editor.cc:168 rc_option_editor.cc:175 msgid "commands" msgstr "kommandon" -#: rc_option_editor.cc:315 +#: rc_option_editor.cc:313 msgid "Edit using:" msgstr "Redigera med:" -#: rc_option_editor.cc:321 rc_option_editor.cc:347 rc_option_editor.cc:374 +#: rc_option_editor.cc:319 rc_option_editor.cc:345 rc_option_editor.cc:372 msgid "+ button" msgstr "+ musknapp" -#: rc_option_editor.cc:341 +#: rc_option_editor.cc:339 msgid "Delete using:" msgstr "Radera med:" -#: rc_option_editor.cc:411 +#: rc_option_editor.cc:366 +msgid "Insert note using:" +msgstr "" + +#: rc_option_editor.cc:393 +msgid "Ignore snap using:" +msgstr "" + +#: rc_option_editor.cc:409 msgid "Keyboard layout:" msgstr "Tangentbordslayout:" -#: rc_option_editor.cc:534 +#: rc_option_editor.cc:532 msgid "Font scaling:" msgstr "Typsnittskalning" -#: rc_option_editor.cc:586 +#: rc_option_editor.cc:584 msgid "Playback (seconds of buffering):" msgstr "Uppspelning (sekunder buffert):" -#: rc_option_editor.cc:599 +#: rc_option_editor.cc:597 msgid "Recording (seconds of buffering):" msgstr "Inspelning (sekunder buffert):" -#: rc_option_editor.cc:660 +#: rc_option_editor.cc:654 +msgid "Control Surface Protocol" +msgstr "" + +#: rc_option_editor.cc:658 msgid "Feedback" msgstr "Gensvar" -#: rc_option_editor.cc:665 +#: rc_option_editor.cc:663 msgid "Double-click on a name to edit settings for an enabled protocol" msgstr "Dubbleklicka aktiverad kontrollytas namn för inställningar" -#: rc_option_editor.cc:817 +#: rc_option_editor.cc:815 msgid "Show Video Export Info before export" msgstr "" -#: rc_option_editor.cc:818 +#: rc_option_editor.cc:816 msgid "Show Video Server Startup Dialog" msgstr "" -#: rc_option_editor.cc:819 +#: rc_option_editor.cc:817 msgid "Advanced Setup (remote video server)" msgstr "" -#: rc_option_editor.cc:827 +#: rc_option_editor.cc:825 msgid "" "When enabled you can speficify a custom video-server URL and docroot. " "- Do not enable this option unless you know what you are doing." msgstr "" -#: rc_option_editor.cc:829 +#: rc_option_editor.cc:827 msgid "Video Server URL:" msgstr "" -#: rc_option_editor.cc:834 +#: rc_option_editor.cc:832 msgid "" "Base URL of the video-server including http prefix. This is usually 'http://" "hostname.example.org:1554/' and defaults to 'http://localhost:1554/' when " "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:841 +#: rc_option_editor.cc:834 +msgid "Video Folder:" +msgstr "" + +#: rc_option_editor.cc:839 msgid "" "Local path to the video-server document-root. Only files below this " "directory will be accessible by the video-server. If the server run on a " @@ -5970,97 +8471,113 @@ msgid "" "monitor and file-browsing when opening/adding a video file." msgstr "" -#: rc_option_editor.cc:848 +#: rc_option_editor.cc:846 msgid "" "When enabled an information window with details is displayed before " "the video-export dialog." msgstr "" -#: rc_option_editor.cc:853 +#: rc_option_editor.cc:851 msgid "" "When enabled the video server is never launched automatically without " "confirmation" msgstr "" -#: rc_option_editor.cc:993 +#: rc_option_editor.cc:991 msgid "%1 Preferences" msgstr "%1-inställningar" -#: rc_option_editor.cc:1004 +#: rc_option_editor.cc:1002 msgid "DSP CPU Utilization" msgstr "DSP CPU-användning" -#: rc_option_editor.cc:1008 +#: rc_option_editor.cc:1006 msgid "Signal processing uses" msgstr "Signalprocessering använder" -#: rc_option_editor.cc:1013 +#: rc_option_editor.cc:1011 msgid "all but one processor" msgstr "alla förutom en processor" -#: rc_option_editor.cc:1014 +#: rc_option_editor.cc:1012 msgid "all available processors" msgstr "alla tillgängliga processorer" -#: rc_option_editor.cc:1017 +#: rc_option_editor.cc:1015 msgid "%1 processors" msgstr "%1 processor(er)" -#: rc_option_editor.cc:1020 +#: rc_option_editor.cc:1018 msgid "This setting will only take effect when %1 is restarted." msgstr "" -#: rc_option_editor.cc:1032 +#: rc_option_editor.cc:1023 +msgid "Options|Undo" +msgstr "" + +#: rc_option_editor.cc:1030 msgid "Verify removal of last capture" msgstr "Bekräfta borttagning av senaste inspelningen" -#: rc_option_editor.cc:1040 +#: rc_option_editor.cc:1038 msgid "Make periodic backups of the session file" msgstr "Gör periodiska säkerhetskopior" -#: rc_option_editor.cc:1050 +#: rc_option_editor.cc:1043 +msgid "Session Management" +msgstr "" + +#: rc_option_editor.cc:1048 msgid "Always copy imported files" msgstr "Kopiera alltid importerade filer" -#: rc_option_editor.cc:1065 +#: rc_option_editor.cc:1055 +msgid "Default folder for new sessions:" +msgstr "" + +#: rc_option_editor.cc:1063 msgid "Maximum number of recent sessions" msgstr "" -#: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 +#: rc_option_editor.cc:1076 +msgid "Click gain level" +msgstr "" + +#: rc_option_editor.cc:1081 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "Automatisering" -#: rc_option_editor.cc:1088 +#: rc_option_editor.cc:1086 msgid "Thinning factor (larger value => less data)" msgstr "" -#: rc_option_editor.cc:1097 +#: rc_option_editor.cc:1095 msgid "Automation sampling interval (milliseconds)" msgstr "" -#: rc_option_editor.cc:1109 +#: rc_option_editor.cc:1107 msgid "Keep record-enable engaged on stop" msgstr "BehÃ¥ll inspelningsläge pÃ¥ vid stopp" -#: rc_option_editor.cc:1118 +#: rc_option_editor.cc:1116 msgid "Stop recording when an xrun occurs" msgstr "Stoppa inspelningen när en xrun inträffar" -#: rc_option_editor.cc:1123 +#: rc_option_editor.cc:1121 msgid "" "When enabled %1 will stop recording if an over- or underrun is " "detected by the audio engine" msgstr "" -#: rc_option_editor.cc:1129 +#: rc_option_editor.cc:1127 msgid "Create markers where xruns occur" msgstr "Skapa en markör där en xrun inträffar" -#: rc_option_editor.cc:1138 +#: rc_option_editor.cc:1136 msgid "Stop at the end of the session" msgstr "Stoppa vid slutet av sessionen" -#: rc_option_editor.cc:1143 +#: rc_option_editor.cc:1141 msgid "" "When enabled if %1 is not recording, it will stop the " "transport when it reaches the current session end marker\n" @@ -6069,11 +8586,11 @@ msgid "" "all times" msgstr "" -#: rc_option_editor.cc:1151 -msgid "Do seamless looping (not possible when slaved to MTC, JACK etc)" -msgstr "Loopa sömlöst (ej möjligt vid slavläge mot MTC, Jack etc)" +#: rc_option_editor.cc:1149 +msgid "Do seamless looping (not possible when slaved to MTC, LTC etc)" +msgstr "" -#: rc_option_editor.cc:1156 +#: rc_option_editor.cc:1154 msgid "" "When enabled this will loop by reading ahead and wrapping around at " "the loop point, preventing any need to do a transport locate at the end of " @@ -6083,35 +8600,39 @@ msgid "" "loop when %1 reaches the end which will often cause a small click or delay" msgstr "" -#: rc_option_editor.cc:1164 +#: rc_option_editor.cc:1162 msgid "Disable per-track record disarm while rolling" msgstr "Omöjliggör spÃ¥rspecifik inspelningslägesändring i rullande läge" -#: rc_option_editor.cc:1168 +#: rc_option_editor.cc:1166 msgid "" "When enabled this will prevent you from accidentally stopping " "specific tracks recording during a take" msgstr "" -#: rc_option_editor.cc:1173 +#: rc_option_editor.cc:1171 msgid "12dB gain reduction during fast-forward and fast-rewind" msgstr "12dB volymreduktion för snabbspolning" -#: rc_option_editor.cc:1177 +#: rc_option_editor.cc:1175 msgid "" "This will reduce the unpleasant increase in perceived volume that occurs " "when fast-forwarding or rewinding through some kinds of audio" msgstr "" -#: rc_option_editor.cc:1181 +#: rc_option_editor.cc:1179 msgid "Sync/Slave" msgstr "" -#: rc_option_editor.cc:1195 +#: rc_option_editor.cc:1183 +msgid "External timecode source" +msgstr "" + +#: rc_option_editor.cc:1193 msgid "Match session video frame rate to external timecode" msgstr "" -#: rc_option_editor.cc:1201 +#: rc_option_editor.cc:1199 msgid "" "This option controls the value of the video frame rate while chasing " "an external timecode source.\n" @@ -6125,17 +8646,21 @@ msgid "" "external timecode standard and the session standard." msgstr "" -#: rc_option_editor.cc:1217 +#: rc_option_editor.cc:1209 +msgid "External timecode is sync locked" +msgstr "" + +#: rc_option_editor.cc:1215 msgid "" "When enabled indicates that the selected external timecode source " "shares sync (Black & Burst, Wordclock, etc) with the audio interface." msgstr "" -#: rc_option_editor.cc:1224 +#: rc_option_editor.cc:1222 msgid "Lock to 29.9700 fps instead of 30000/1001" msgstr "" -#: rc_option_editor.cc:1230 +#: rc_option_editor.cc:1228 msgid "" "When enabled the external timecode source is assumed to use 29.97 fps " "instead of 30000/1001.\n" @@ -6148,111 +8673,139 @@ msgid "" "variant of using exactly 29.97 fps has zero timecode drift.\n" msgstr "" -#: rc_option_editor.cc:1240 +#: rc_option_editor.cc:1238 msgid "LTC Reader" msgstr "" -#: rc_option_editor.cc:1244 +#: rc_option_editor.cc:1242 msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1269 +#: rc_option_editor.cc:1255 +msgid "LTC Generator" +msgstr "" + +#: rc_option_editor.cc:1260 +msgid "Enable LTC generator" +msgstr "" + +#: rc_option_editor.cc:1267 msgid "send LTC while stopped" msgstr "" -#: rc_option_editor.cc:1275 +#: rc_option_editor.cc:1273 msgid "" "When enabled %1 will continue to send LTC information even when the " "transport (playhead) is not moving" msgstr "" -#: rc_option_editor.cc:1285 +#: rc_option_editor.cc:1279 +msgid "LTC generator level" +msgstr "" + +#: rc_option_editor.cc:1283 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " "is 0dBu ^= -18dbFS in an EBU calibrated system" msgstr "" -#: rc_option_editor.cc:1297 +#: rc_option_editor.cc:1295 msgid "Link selection of regions and tracks" msgstr "Länka region- och spÃ¥rmarkering" -#: rc_option_editor.cc:1305 +#: rc_option_editor.cc:1303 msgid "Move relevant automation when audio regions are moved" msgstr "Flytta automation tillsammans med regioner" -#: rc_option_editor.cc:1313 +#: rc_option_editor.cc:1311 msgid "Show meters on tracks in the editor" msgstr "Visa nivÃ¥mätning vid spÃ¥ren i redigeraren" -#: rc_option_editor.cc:1321 +#: rc_option_editor.cc:1319 msgid "Display master-meter in the toolbar" msgstr "" -#: rc_option_editor.cc:1328 +#: rc_option_editor.cc:1326 msgid "Regions in active edit groups are edited together" msgstr "" -#: rc_option_editor.cc:1330 +#: rc_option_editor.cc:1327 +msgid "whenever they overlap in time" +msgstr "" + +#: rc_option_editor.cc:1328 msgid "only if they have identical length, position and origin" msgstr "" -#: rc_option_editor.cc:1340 +#: rc_option_editor.cc:1338 msgid "Make rubberband selection rectangle snap to the grid" msgstr "Gummibandsmarkeringen fäster mot rutnätet" -#: rc_option_editor.cc:1348 +#: rc_option_editor.cc:1346 msgid "Show waveforms in regions" msgstr "Visa vÃ¥gformer i regioner" -#: rc_option_editor.cc:1358 +#: rc_option_editor.cc:1354 +msgid "Show gain envelopes in audio regions" +msgstr "" + +#: rc_option_editor.cc:1355 +msgid "in all modes" +msgstr "" + +#: rc_option_editor.cc:1356 msgid "only in region gain mode" msgstr "" -#: rc_option_editor.cc:1365 +#: rc_option_editor.cc:1363 msgid "Waveform scale" msgstr "VÃ¥gformsskala" -#: rc_option_editor.cc:1370 +#: rc_option_editor.cc:1368 msgid "linear" msgstr "linjär" -#: rc_option_editor.cc:1371 +#: rc_option_editor.cc:1369 msgid "logarithmic" msgstr "logaritmisk" -#: rc_option_editor.cc:1377 +#: rc_option_editor.cc:1375 msgid "Waveform shape" msgstr "VÃ¥gformsutseende" -#: rc_option_editor.cc:1382 +#: rc_option_editor.cc:1380 msgid "traditional" msgstr "traditionell" -#: rc_option_editor.cc:1383 +#: rc_option_editor.cc:1381 msgid "rectified" msgstr "korrigerad" -#: rc_option_editor.cc:1390 +#: rc_option_editor.cc:1388 msgid "Show waveforms for audio while it is being recorded" msgstr "Visa vÃ¥gformer vid inspelning" -#: rc_option_editor.cc:1398 +#: rc_option_editor.cc:1396 msgid "Show zoom toolbar" msgstr "Visa zoom-verktygsraden" -#: rc_option_editor.cc:1406 +#: rc_option_editor.cc:1404 msgid "Color regions using their track's color" msgstr "Färglägg regioner med spÃ¥rets färg" -#: rc_option_editor.cc:1414 +#: rc_option_editor.cc:1412 msgid "Update editor window during drags of the summary" msgstr "" -#: rc_option_editor.cc:1437 +#: rc_option_editor.cc:1420 +msgid "Synchronise editor and mixer selection" +msgstr "" + +#: rc_option_editor.cc:1427 msgid "Name new markers" msgstr "Namnge nya markörer" -#: rc_option_editor.cc:1443 +#: rc_option_editor.cc:1433 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " "be set as it is created.\n" @@ -6260,350 +8813,414 @@ msgid "" "You can always rename markers by right-clicking on them" msgstr "" -#: rc_option_editor.cc:1449 +#: rc_option_editor.cc:1439 msgid "Auto-scroll editor window when dragging near its edges" msgstr "" -#: rc_option_editor.cc:1456 +#: rc_option_editor.cc:1446 msgid "Buffering" msgstr "Buffertar" -#: rc_option_editor.cc:1475 +#: rc_option_editor.cc:1454 +msgid "Record monitoring handled by" +msgstr "" + +#: rc_option_editor.cc:1460 +msgid "via Audio Driver" +msgstr "" + +#: rc_option_editor.cc:1463 msgid "ardour" msgstr "" -#: rc_option_editor.cc:1476 +#: rc_option_editor.cc:1464 msgid "audio hardware" msgstr "ljudhÃ¥rdvaran" -#: rc_option_editor.cc:1483 +#: rc_option_editor.cc:1471 msgid "Tape machine mode" msgstr "Bandmaskingläge" -#: rc_option_editor.cc:1488 +#: rc_option_editor.cc:1476 msgid "Connection of tracks and busses" msgstr "SpÃ¥r- och bussanslutning" -#: rc_option_editor.cc:1493 +#: rc_option_editor.cc:1481 msgid "Auto-connect master/monitor busses" msgstr "Anslut master/medhörningsbussar automatiskt" -#: rc_option_editor.cc:1500 +#: rc_option_editor.cc:1488 msgid "Connect track inputs" msgstr "Anslut spÃ¥ringÃ¥ngar" -#: rc_option_editor.cc:1505 +#: rc_option_editor.cc:1493 msgid "automatically to physical inputs" msgstr "automatiskt till fysiska ingÃ¥ngar" -#: rc_option_editor.cc:1506 rc_option_editor.cc:1519 +#: rc_option_editor.cc:1494 rc_option_editor.cc:1507 msgid "manually" msgstr "manuellt" -#: rc_option_editor.cc:1512 +#: rc_option_editor.cc:1500 msgid "Connect track and bus outputs" msgstr "Anslut spÃ¥r- och bussutgÃ¥ngar" -#: rc_option_editor.cc:1517 +#: rc_option_editor.cc:1505 msgid "automatically to physical outputs" msgstr "automatiskt till fysiska utgÃ¥ngar" -#: rc_option_editor.cc:1518 +#: rc_option_editor.cc:1506 msgid "automatically to master bus" msgstr "automatiskt till master-bussen" -#: rc_option_editor.cc:1523 +#: rc_option_editor.cc:1511 msgid "Denormals" msgstr "" -#: rc_option_editor.cc:1528 +#: rc_option_editor.cc:1516 msgid "Use DC bias to protect against denormals" msgstr "Använd DC-bias för att skydda mot denormals" -#: rc_option_editor.cc:1535 +#: rc_option_editor.cc:1523 msgid "Processor handling" msgstr "Processorhantering" -#: rc_option_editor.cc:1540 +#: rc_option_editor.cc:1528 msgid "no processor handling" msgstr "ingen processorhantering" -#: rc_option_editor.cc:1545 +#: rc_option_editor.cc:1533 msgid "use FlushToZero" msgstr "använd FlushToZero" -#: rc_option_editor.cc:1549 +#: rc_option_editor.cc:1537 msgid "use DenormalsAreZero" msgstr "använd DenormalsAreZero" -#: rc_option_editor.cc:1571 +#: rc_option_editor.cc:1541 +msgid "use FlushToZero and DenormalsAreZero" +msgstr "" + +#: rc_option_editor.cc:1551 +msgid "Silence plugins when the transport is stopped" +msgstr "" + +#: rc_option_editor.cc:1559 msgid "Make new plugins active" msgstr "Aktivera nya insticksprogram automatiskt" -#: rc_option_editor.cc:1579 +#: rc_option_editor.cc:1567 msgid "Enable automatic analysis of audio" msgstr "Analysera ljudfiler automatiskt" -#: rc_option_editor.cc:1587 +#: rc_option_editor.cc:1575 msgid "Replicate missing region channels" msgstr "Ã…terskapa saknade regioners kanaler" -#: rc_option_editor.cc:1594 rc_option_editor.cc:1609 rc_option_editor.cc:1621 -#: rc_option_editor.cc:1633 rc_option_editor.cc:1645 rc_option_editor.cc:1649 -#: rc_option_editor.cc:1657 rc_option_editor.cc:1665 rc_option_editor.cc:1673 -#: rc_option_editor.cc:1675 rc_option_editor.cc:1683 rc_option_editor.cc:1691 -#: rc_option_editor.cc:1699 +#: rc_option_editor.cc:1582 rc_option_editor.cc:1597 rc_option_editor.cc:1609 +#: rc_option_editor.cc:1621 rc_option_editor.cc:1633 rc_option_editor.cc:1637 +#: rc_option_editor.cc:1645 rc_option_editor.cc:1653 rc_option_editor.cc:1661 +#: rc_option_editor.cc:1663 rc_option_editor.cc:1671 rc_option_editor.cc:1679 +#: rc_option_editor.cc:1687 msgid "Solo / mute" msgstr "Solo / tysta" -#: rc_option_editor.cc:1604 +#: rc_option_editor.cc:1585 +msgid "Solo-in-place mute cut (dB)" +msgstr "" + +#: rc_option_editor.cc:1592 msgid "Solo controls are Listen controls" msgstr "Solokontroller är avlyssningskontroller" -#: rc_option_editor.cc:1613 +#: rc_option_editor.cc:1601 msgid "Listen Position" msgstr "Avlyssningsposition" -#: rc_option_editor.cc:1625 +#: rc_option_editor.cc:1606 +msgid "after-fader (AFL)" +msgstr "" + +#: rc_option_editor.cc:1607 +msgid "pre-fader (PFL)" +msgstr "" + +#: rc_option_editor.cc:1613 msgid "PFL signals come from" msgstr "PFL-signaler kommer frÃ¥n" -#: rc_option_editor.cc:1630 +#: rc_option_editor.cc:1618 msgid "before pre-fader processors" msgstr "innan för-nivÃ¥reglageprocessorer" -#: rc_option_editor.cc:1631 +#: rc_option_editor.cc:1619 msgid "pre-fader but after pre-fader processors" msgstr "för-nivÃ¥reglage men efter för-nivÃ¥reglageprocessorer" -#: rc_option_editor.cc:1637 +#: rc_option_editor.cc:1625 msgid "AFL signals come from" msgstr "AFL-signaler kommer frÃ¥n" -#: rc_option_editor.cc:1652 +#: rc_option_editor.cc:1630 +msgid "immediately post-fader" +msgstr "" + +#: rc_option_editor.cc:1631 +msgid "after post-fader processors (before pan)" +msgstr "" + +#: rc_option_editor.cc:1640 msgid "Exclusive solo" msgstr "Avskild solo" -#: rc_option_editor.cc:1660 +#: rc_option_editor.cc:1648 msgid "Show solo muting" msgstr "Visa solotystning" -#: rc_option_editor.cc:1668 +#: rc_option_editor.cc:1656 msgid "Soloing overrides muting" msgstr "Solo Ã¥sidosätter tystning" -#: rc_option_editor.cc:1673 +#: rc_option_editor.cc:1661 msgid "Default track / bus muting options" msgstr "Standardinställningar för spÃ¥r-/busstystning" -#: rc_option_editor.cc:1678 +#: rc_option_editor.cc:1666 msgid "Mute affects pre-fader sends" msgstr "Tystning pÃ¥verkar för-reglagesändningar" -#: rc_option_editor.cc:1686 +#: rc_option_editor.cc:1674 msgid "Mute affects post-fader sends" msgstr "Tystning pÃ¥verkar efter-reglagesändningar" -#: rc_option_editor.cc:1694 +#: rc_option_editor.cc:1682 msgid "Mute affects control outputs" msgstr "Tystning pÃ¥verkar kontrollutgÃ¥ngar" -#: rc_option_editor.cc:1702 +#: rc_option_editor.cc:1690 msgid "Mute affects main outputs" msgstr "Tystning pÃ¥verkar huvudutgÃ¥ngarna" -#: rc_option_editor.cc:1718 +#: rc_option_editor.cc:1706 msgid "Send MIDI Time Code" msgstr "Skicka MIDI-tidskod" -#: rc_option_editor.cc:1726 +#: rc_option_editor.cc:1714 msgid "Percentage either side of normal transport speed to transmit MTC" msgstr "" -#: rc_option_editor.cc:1735 +#: rc_option_editor.cc:1723 msgid "Obey MIDI Machine Control commands" msgstr "Lyd MIDI Machine Control-kommandon" -#: rc_option_editor.cc:1743 +#: rc_option_editor.cc:1731 msgid "Send MIDI Machine Control commands" msgstr "Skicka MIDI Machine Control-kommandon" -#: rc_option_editor.cc:1751 +#: rc_option_editor.cc:1739 msgid "Send MIDI control feedback" msgstr "Skicka MIDI-kontrollgensvar" -#: rc_option_editor.cc:1759 +#: rc_option_editor.cc:1747 msgid "Inbound MMC device ID" msgstr "Inkommande MMC-enhets-ID" -#: rc_option_editor.cc:1768 +#: rc_option_editor.cc:1756 msgid "Outbound MMC device ID" msgstr "UtgÃ¥ende MMC-enhets-ID" -#: rc_option_editor.cc:1777 +#: rc_option_editor.cc:1765 msgid "Initial program change" msgstr "Initiell programändring" -#: rc_option_editor.cc:1786 +#: rc_option_editor.cc:1774 msgid "Display first MIDI bank/program as 0" msgstr "" -#: rc_option_editor.cc:1794 +#: rc_option_editor.cc:1782 msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "" -#: rc_option_editor.cc:1802 +#: rc_option_editor.cc:1790 msgid "Sound MIDI notes as they are selected" msgstr "" -#: rc_option_editor.cc:1813 +#: rc_option_editor.cc:1798 rc_option_editor.cc:1808 rc_option_editor.cc:1810 +msgid "User interaction" +msgstr "" + +#: rc_option_editor.cc:1801 msgid "" "Use translations of %1 messages\n" " (requires a restart of %1 to take effect)\n" " (if available for your language preferences)" msgstr "" -#: rc_option_editor.cc:1820 +#: rc_option_editor.cc:1808 msgid "Keyboard" msgstr "Tangentbord" -#: rc_option_editor.cc:1830 +#: rc_option_editor.cc:1818 msgid "Control surface remote ID" msgstr "Kontrollytans fjärr-ID" -#: rc_option_editor.cc:1835 +#: rc_option_editor.cc:1823 msgid "assigned by user" msgstr "användardefinierat" -#: rc_option_editor.cc:1836 +#: rc_option_editor.cc:1824 msgid "follows order of mixer" msgstr "följer mixerns ordning" -#: rc_option_editor.cc:1837 -msgid "follows order of editor" -msgstr "följer redigerarens ordning" +#: rc_option_editor.cc:1833 rc_option_editor.cc:1841 rc_option_editor.cc:1851 +#: rc_option_editor.cc:1872 rc_option_editor.cc:1881 rc_option_editor.cc:1889 +#: rc_option_editor.cc:1903 rc_option_editor.cc:1922 rc_option_editor.cc:1938 +#: rc_option_editor.cc:1954 rc_option_editor.cc:1968 rc_option_editor.cc:1982 +#: rc_option_editor.cc:1984 +msgid "Preferences|GUI" +msgstr "" -#: rc_option_editor.cc:1849 +#: rc_option_editor.cc:1836 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "" -#: rc_option_editor.cc:1857 +#: rc_option_editor.cc:1844 msgid "Show tooltips if mouse hovers over a control" msgstr "" -#: rc_option_editor.cc:1867 +#: rc_option_editor.cc:1854 msgid "GUI" msgstr "" -#: rc_option_editor.cc:1870 +#: rc_option_editor.cc:1857 msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" -#: rc_option_editor.cc:1912 +#: rc_option_editor.cc:1874 +msgid "Mixer Strip" +msgstr "" + +#: rc_option_editor.cc:1884 +msgid "Use narrow strips in the mixer by default" +msgstr "" + +#: rc_option_editor.cc:1893 +msgid "Peak hold time" +msgstr "" + +#: rc_option_editor.cc:1899 msgid "short" msgstr "kort" -#: rc_option_editor.cc:1913 +#: rc_option_editor.cc:1900 msgid "medium" msgstr "" -#: rc_option_editor.cc:1914 +#: rc_option_editor.cc:1901 msgid "long" msgstr "lÃ¥ng" -#: rc_option_editor.cc:1926 +#: rc_option_editor.cc:1907 +msgid "DPM fall-off" +msgstr "" + +#: rc_option_editor.cc:1913 msgid "slowest [6.6dB/sec]" msgstr "" -#: rc_option_editor.cc:1927 +#: rc_option_editor.cc:1914 msgid "slow [8.6dB/sec] (BBC PPM, EBU PPM)" msgstr "" -#: rc_option_editor.cc:1928 +#: rc_option_editor.cc:1915 msgid "slowish [12.0dB/sec] (DIN)" msgstr "" -#: rc_option_editor.cc:1929 +#: rc_option_editor.cc:1916 msgid "moderate [13.3dB/sec] (EBU Digi PPM, IRT Digi PPM)" msgstr "" -#: rc_option_editor.cc:1930 +#: rc_option_editor.cc:1917 msgid "medium [20dB/sec]" msgstr "" -#: rc_option_editor.cc:1931 +#: rc_option_editor.cc:1918 msgid "fast [32dB/sec]" msgstr "" -#: rc_option_editor.cc:1932 +#: rc_option_editor.cc:1919 msgid "faster [46dB/sec]" msgstr "" -#: rc_option_editor.cc:1933 +#: rc_option_editor.cc:1920 msgid "fastest [70dB/sec]" msgstr "" -#: rc_option_editor.cc:1939 +#: rc_option_editor.cc:1926 msgid "Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1944 rc_option_editor.cc:1960 +#: rc_option_editor.cc:1931 rc_option_editor.cc:1947 msgid "-24dBFS (SMPTE US: 4dBu = -20dBFS)" msgstr "" -#: rc_option_editor.cc:1945 rc_option_editor.cc:1961 +#: rc_option_editor.cc:1932 rc_option_editor.cc:1948 msgid "-20dBFS (SMPTE RP.0155)" msgstr "" -#: rc_option_editor.cc:1946 rc_option_editor.cc:1962 +#: rc_option_editor.cc:1933 rc_option_editor.cc:1949 msgid "-18dBFS (EBU, BBC)" msgstr "" -#: rc_option_editor.cc:1947 rc_option_editor.cc:1963 +#: rc_option_editor.cc:1934 rc_option_editor.cc:1950 msgid "-15dBFS (DIN)" msgstr "" -#: rc_option_editor.cc:1949 +#: rc_option_editor.cc:1936 msgid "" "Configure meter-marks and color-knee point for dBFS scale DPM, set reference " "level for IEC1/Nordic, IEC2 PPM and VU meter." msgstr "" -#: rc_option_editor.cc:1955 +#: rc_option_editor.cc:1942 msgid "IEC1/DIN Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1965 +#: rc_option_editor.cc:1952 msgid "Reference level for IEC1/DIN meter." msgstr "" -#: rc_option_editor.cc:1971 +#: rc_option_editor.cc:1958 msgid "VU Meter standard" msgstr "" -#: rc_option_editor.cc:1976 +#: rc_option_editor.cc:1963 msgid "0VU = -2dBu (France)" msgstr "" -#: rc_option_editor.cc:1977 +#: rc_option_editor.cc:1964 msgid "0VU = 0dBu (North America, Australia)" msgstr "" -#: rc_option_editor.cc:1978 +#: rc_option_editor.cc:1965 msgid "0VU = +4dBu (standard)" msgstr "" -#: rc_option_editor.cc:1979 +#: rc_option_editor.cc:1966 msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1993 +#: rc_option_editor.cc:1972 +msgid "Peak threshold [dBFS]" +msgstr "" + +#: rc_option_editor.cc:1980 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " "indicator will flash red." msgstr "" -#: rc_option_editor.cc:2000 +#: rc_option_editor.cc:1987 msgid "LED meter style" msgstr "" @@ -6611,6 +9228,10 @@ msgstr "" msgid "audition this region" msgstr "avlyssna denna region" +#: region_editor.cc:88 region_layering_order_editor.cc:74 +msgid "Position:" +msgstr "" + #: region_editor.cc:90 add_video_dialog.cc:170 msgid "End:" msgstr "Slut:" @@ -6639,14 +9260,58 @@ msgstr "Källor:" msgid "Source:" msgstr "Källa:" +#: region_editor.cc:166 +msgid "Region '%1'" +msgstr "" + +#: region_editor.cc:273 +msgid "change region start position" +msgstr "" + +#: region_editor.cc:289 +msgid "change region end position" +msgstr "" + +#: region_editor.cc:309 +msgid "change region length" +msgstr "" + +#: region_editor.cc:403 region_editor.cc:415 +msgid "change region sync point" +msgstr "" + +#: region_layering_order_editor.cc:41 +msgid "RegionLayeringOrderEditor" +msgstr "" + +#: region_layering_order_editor.cc:54 +msgid "Region Name" +msgstr "" + +#: region_layering_order_editor.cc:71 +msgid "Track:" +msgstr "" + +#: region_layering_order_editor.cc:103 +msgid "Choose Top Region" +msgstr "" + #: region_view.cc:274 msgid "SilenceText" msgstr "" +#: region_view.cc:290 region_view.cc:309 +msgid "minutes" +msgstr "" + #: region_view.cc:293 region_view.cc:312 msgid "msecs" msgstr "msek" +#: region_view.cc:296 region_view.cc:315 +msgid "secs" +msgstr "" + #: region_view.cc:299 msgid "%1 silent segment" msgid_plural "%1 silent segments" @@ -6663,6 +9328,10 @@ msgid "" " (shortest audible segment = %1 %2)" msgstr "" +#: return_ui.cc:103 +msgid "Return " +msgstr "" + #: rhythm_ferret.cc:49 msgid "Percussive Onset" msgstr "Perkussivt anslag" @@ -6683,6 +9352,10 @@ msgstr "" msgid "High-Frequency Content" msgstr "" +#: rhythm_ferret.cc:58 +msgid "Complex Domain" +msgstr "" + #: rhythm_ferret.cc:59 msgid "Phase Deviation" msgstr "" @@ -6699,6 +9372,14 @@ msgstr "" msgid "Split region" msgstr "Dela region" +#: rhythm_ferret.cc:67 +msgid "Snap regions" +msgstr "" + +#: rhythm_ferret.cc:68 +msgid "Conform regions" +msgstr "" + #: rhythm_ferret.cc:73 msgid "Rhythm Ferret" msgstr "" @@ -6763,10 +9444,18 @@ msgstr "Inspelningsläge" msgid "Selection" msgstr "Markering" +#: route_group_dialog.cc:46 +msgid "Active state" +msgstr "" + #: route_group_dialog.cc:47 route_group_dialog.cc:76 theme_manager.cc:71 msgid "Color" msgstr "Färg" +#: route_group_dialog.cc:53 +msgid "RouteGroupDialog" +msgstr "" + #: route_group_dialog.cc:92 msgid "Sharing" msgstr "Gemensamt" @@ -6833,6 +9522,10 @@ msgstr "Spela in" msgid "Route Group" msgstr "Ruttgrupp" +#: route_time_axis.cc:213 +msgid "MIDI Controllers and Automation" +msgstr "" + #: route_time_axis.cc:390 msgid "Show All Automation" msgstr "Visa all automatisering" @@ -6845,6 +9538,10 @@ msgstr "Visa existerande automatisering" msgid "Hide All Automation" msgstr "Göm all automatisering" +#: route_time_axis.cc:405 +msgid "Processor automation" +msgstr "" + #: route_time_axis.cc:424 msgid "Color..." msgstr "Färg..." @@ -6861,6 +9558,18 @@ msgstr "I trappa" msgid "Layers" msgstr "Lager" +#: route_time_axis.cc:564 +msgid "Automatic (based on I/O connections)" +msgstr "" + +#: route_time_axis.cc:573 +msgid "(Currently: Existing Material)" +msgstr "" + +#: route_time_axis.cc:576 +msgid "(Currently: Capture Time)" +msgstr "" + #: route_time_axis.cc:584 msgid "Align With Existing Material" msgstr "Efter existerande material" @@ -6889,14 +9598,50 @@ msgstr "Ej i lager" msgid "Playlist" msgstr "Spellista" +#: route_time_axis.cc:979 +msgid "Rename Playlist" +msgstr "" + +#: route_time_axis.cc:980 +msgid "New name for playlist:" +msgstr "" + +#: route_time_axis.cc:1065 +msgid "New Copy Playlist" +msgstr "" + +#: route_time_axis.cc:1066 route_time_axis.cc:1119 +msgid "Name for new playlist:" +msgstr "" + +#: route_time_axis.cc:1118 +msgid "New Playlist" +msgstr "" + +#: route_time_axis.cc:1309 +msgid "You cannot create a track with that name as it is reserved for %1" +msgstr "" + #: route_time_axis.cc:1490 msgid "New Copy..." msgstr "Ny kopia..." +#: route_time_axis.cc:1494 +msgid "New Take" +msgstr "" + +#: route_time_axis.cc:1495 +msgid "Copy Take" +msgstr "" + #: route_time_axis.cc:1500 msgid "Clear Current" msgstr "Rensa aktuell" +#: route_time_axis.cc:1503 +msgid "Select From All..." +msgstr "" + #: route_time_axis.cc:1591 msgid "Take: %1.%2" msgstr "" @@ -6905,10 +9650,22 @@ msgstr "" msgid "Underlays" msgstr "" +#: route_time_axis.cc:2294 +msgid "Remove \"%1\"" +msgstr "" + #: route_time_axis.cc:2344 route_time_axis.cc:2381 msgid "programming error: underlay reference pointer pairs are inconsistent!" msgstr "" +#: route_time_axis.cc:2408 +msgid "After-fade listen (AFL)" +msgstr "" + +#: route_time_axis.cc:2412 +msgid "Pre-fade listen (PFL)" +msgstr "" + #: route_time_axis.cc:2416 msgid "s" msgstr "" @@ -6933,6 +9690,18 @@ msgstr "" msgid "make mixer strips show sends to this bus" msgstr "" +#: route_ui.cc:138 +msgid "Monitor input" +msgstr "" + +#: route_ui.cc:144 +msgid "Monitor playback" +msgstr "" + +#: route_ui.cc:591 +msgid "Not connected to JACK - cannot engage record" +msgstr "" + #: route_ui.cc:786 msgid "Step Entry" msgstr "" @@ -6953,14 +9722,26 @@ msgstr "" msgid "Assign all tracks and buses (postfader)" msgstr "" +#: route_ui.cc:875 +msgid "Assign selected tracks (prefader)" +msgstr "" + #: route_ui.cc:879 msgid "Assign selected tracks and buses (prefader)" msgstr "" +#: route_ui.cc:882 +msgid "Assign selected tracks (postfader)" +msgstr "" + #: route_ui.cc:886 msgid "Assign selected tracks and buses (postfader)" msgstr "" +#: route_ui.cc:889 +msgid "Copy track/bus gains to sends" +msgstr "" + #: route_ui.cc:890 msgid "Set sends gain to -inf" msgstr "" @@ -6969,6 +9750,10 @@ msgstr "" msgid "Set sends gain to 0dB" msgstr "" +#: route_ui.cc:1211 +msgid "Solo Isolate" +msgstr "" + #: route_ui.cc:1240 msgid "Pre Fader" msgstr "Före-nivÃ¥reglage" @@ -6989,12 +9774,44 @@ msgstr "HuvudutgÃ¥ngar" msgid "Color Selection" msgstr "Färgval" +#: route_ui.cc:1477 +msgid "" +"Do you really want to remove track \"%1\" ?\n" +"\n" +"You may also lose the playlist used by this track.\n" +"\n" +"(This action cannot be undone, and the session file will be overwritten)" +msgstr "" + +#: route_ui.cc:1479 +msgid "" +"Do you really want to remove bus \"%1\" ?\n" +"\n" +"(This action cannot be undone, and the session file will be overwritten)" +msgstr "" + +#: route_ui.cc:1487 +msgid "Remove track" +msgstr "" + +#: route_ui.cc:1489 +msgid "Remove bus" +msgstr "" + #: route_ui.cc:1516 msgid "" "The use of colons (':') is discouraged in track and bus names.\n" "Do you want to use this new name?" msgstr "" +#: route_ui.cc:1520 +msgid "Use the new name" +msgstr "" + +#: route_ui.cc:1521 +msgid "Re-edit the name" +msgstr "" + #: route_ui.cc:1534 msgid "Rename Track" msgstr "Döp om spÃ¥r" @@ -7035,18 +9852,27 @@ msgid "" "The remote control ID of %3 cannot be changed." msgstr "" -#: route_ui.cc:1818 -msgid "" -"The remote control ID of %6 is: %3\n" -"\n" -"\n" -"Remote Control IDs are currently determined by track/bus ordering in %1\n" -"\n" -"%4Use the User Interaction tab of the Preferences window if you want to " -"change this%5" +#: route_ui.cc:1816 +msgid "the master bus" msgstr "" -#: route_ui.cc:1876 +#: route_ui.cc:1816 +msgid "the monitor bus" +msgstr "" + +#: route_ui.cc:1818 +msgid "" +"The remote control ID of %5 is: %2\n" +"\n" +"\n" +"Remote Control IDs are currently determined by track/bus ordering in " +"Ardour.\n" +"\n" +"%3Use the User Interaction tab of the Preferences window if you want to " +"change this%4" +msgstr "" + +#: route_ui.cc:1875 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " "to show menu." @@ -7054,10 +9880,142 @@ msgstr "" "Vänsterklicka för att invertera (fasinvers) kanal %1 i detta spÃ¥r. " "Högerklicka för att visa menyn" -#: route_ui.cc:1878 +#: route_ui.cc:1877 msgid "Click to show a menu of channels for inversion (phase reverse)" msgstr "" +#: search_path_option.cc:35 +msgid "Select folder to search for media" +msgstr "" + +#: search_path_option.cc:44 +msgid "Click to add a new location" +msgstr "" + +#: search_path_option.cc:51 +msgid "the session folder" +msgstr "" + +#: send_ui.cc:126 +msgid "Send " +msgstr "" + +#: session_dialog.cc:66 +msgid "Session Setup" +msgstr "" + +#: session_dialog.cc:71 +msgid "Advanced options ..." +msgstr "" + +#: session_dialog.cc:267 +msgid "New Session" +msgstr "Ny session" + +#: session_dialog.cc:305 +msgid "Check the website for more..." +msgstr "" + +#: session_dialog.cc:308 +msgid "Click to open the program website in your web browser" +msgstr "" + +#: session_dialog.cc:328 +msgid "Sample Rate" +msgstr "" + +#: session_dialog.cc:329 +msgid "Disk Format" +msgstr "" + +#: session_dialog.cc:347 +msgid "Select session file" +msgstr "Välj sessionsfil" + +#: session_dialog.cc:362 +msgid "Other Sessions" +msgstr "" + +#: session_dialog.cc:388 +msgid "Open" +msgstr "Öppna" + +#: session_dialog.cc:455 +msgid "Session name:" +msgstr "Sessionens namn:" + +#: session_dialog.cc:477 +msgid "Create session folder in:" +msgstr "Skapa sessionsmappen i:" + +#: session_dialog.cc:500 +msgid "Select folder for session" +msgstr "Välj mapp för sessionen" + +#: session_dialog.cc:529 +msgid "Use this template" +msgstr "Använd denna mall" + +#: session_dialog.cc:532 +msgid "no template" +msgstr "ingen mall" + +#: session_dialog.cc:664 session_dialog.cc:696 +msgid "32 bit float" +msgstr "" + +#: session_dialog.cc:667 session_dialog.cc:699 +msgid "24 bit" +msgstr "" + +#: session_dialog.cc:670 session_dialog.cc:702 +msgid "16 bit" +msgstr "" + +#: session_dialog.cc:741 session_dialog.cc:742 session_dialog.cc:743 +msgid "channels" +msgstr "kanaler" + +#: session_dialog.cc:757 +msgid "Busses" +msgstr "Bussar" + +#: session_dialog.cc:758 +msgid "Inputs" +msgstr "IngÃ¥ngar" + +#: session_dialog.cc:759 +msgid "Outputs" +msgstr "UtgÃ¥ngar" + +#: session_dialog.cc:767 +msgid "Create master bus" +msgstr "Skapa master-buss" + +#: session_dialog.cc:777 +msgid "Automatically connect to physical inputs" +msgstr "" + +#: session_dialog.cc:784 session_dialog.cc:843 +msgid "Use only" +msgstr "Använd endast" + +#: session_dialog.cc:837 +msgid "Automatically connect outputs" +msgstr "Anslut automatiskt utgÃ¥ngar" + +#: session_dialog.cc:859 +msgid "... to master bus" +msgstr "...till master-bussen" + +#: session_dialog.cc:869 +msgid "... to physical outputs" +msgstr "...till fysiska utgÃ¥ngar" + +#: session_import_dialog.cc:64 +msgid "Import from Session" +msgstr "" + #: session_import_dialog.cc:73 msgid "Elements" msgstr "BestÃ¥ndsdelar" @@ -7070,6 +10028,10 @@ msgstr "" msgid "Some elements had errors in them. Please see the log for details" msgstr "Vissa bestÃ¥ndsdelar hade fel i sig. Se loggen" +#: session_import_dialog.cc:163 +msgid "Import from session" +msgstr "" + #: session_import_dialog.cc:227 msgid "This will select all elements of this type!" msgstr "Detta väljer alla bestÃ¥ndsdelar av denna typen!" @@ -7082,6 +10044,10 @@ msgstr "Fält" msgid "Values (current value on top)" msgstr "Värden (aktuellt värde längst upp)" +#: session_metadata_dialog.cc:520 +msgid "User" +msgstr "" + #: session_metadata_dialog.cc:528 msgid "Email" msgstr "" @@ -7090,6 +10056,14 @@ msgstr "" msgid "Web" msgstr "" +#: session_metadata_dialog.cc:534 +msgid "Organization" +msgstr "" + +#: session_metadata_dialog.cc:537 +msgid "Country" +msgstr "" + #: session_metadata_dialog.cc:551 msgid "Title" msgstr "Titel" @@ -7194,10 +10168,18 @@ msgstr "Producent" msgid "DJ Mixer" msgstr "DJ-mixer" +#: session_metadata_dialog.cc:646 +msgid "Metadata|Mixer" +msgstr "" + #: session_metadata_dialog.cc:654 msgid "School" msgstr "" +#: session_metadata_dialog.cc:659 +msgid "Instructor" +msgstr "" + #: session_metadata_dialog.cc:662 msgid "Course" msgstr "" @@ -7232,6 +10214,10 @@ msgstr "" msgid "Session Properties" msgstr "Sessionsegenskaper" +#: session_option_editor.cc:41 +msgid "Timecode Settings" +msgstr "" + #: session_option_editor.cc:45 msgid "Timecode frames-per-second" msgstr "Rutor-per-sekund för tidskod" @@ -7252,6 +10238,10 @@ msgstr "" msgid "25" msgstr "" +#: session_option_editor.cc:54 +msgid "29.97" +msgstr "" + #: session_option_editor.cc:55 msgid "29.97 drop" msgstr "29.97 fall" @@ -7272,6 +10262,10 @@ msgstr "" msgid "60" msgstr "" +#: session_option_editor.cc:65 +msgid "Pull-up / pull-down" +msgstr "" + #: session_option_editor.cc:70 msgid "4.1667 + 0.1%" msgstr "" @@ -7319,10 +10313,22 @@ msgid "" "Apply Pull-Up/Down to Video Timeline and Video Monitor (Unless in JACK-sync)." msgstr "" +#: session_option_editor.cc:96 +msgid "Ext Timecode Offsets" +msgstr "" + +#: session_option_editor.cc:100 +msgid "Slave Timecode offset" +msgstr "" + #: session_option_editor.cc:107 msgid "The specified offset is added to the received timecode (MTC or LTC)." msgstr "" +#: session_option_editor.cc:113 +msgid "Timecode Generator offset" +msgstr "" + #: session_option_editor.cc:120 msgid "" "Specify an offset which is added to the generated timecode (so far only LTC)." @@ -7337,6 +10343,10 @@ msgid "" "%1 is JACK Time Master (provides Bar|Beat|Tick and other information to JACK)" msgstr "" +#: session_option_editor.cc:137 +msgid "Default crossfade type" +msgstr "" + #: session_option_editor.cc:142 msgid "Constant power (-3dB) crossfade" msgstr "" @@ -7420,10 +10430,20 @@ msgid "" "Track Input Monitoring automatically follows transport state (\"auto-input\")" msgstr "" +#: session_option_editor.cc:227 +msgid "Use monitor section in this session" +msgstr "" + #: session_option_editor.cc:238 msgid "MIDI region copies are independent" msgstr "" +#: session_option_editor.cc:245 +msgid "" +"Policy for handling overlapping notes\n" +" on the same MIDI channel" +msgstr "" + #: session_option_editor.cc:250 msgid "never allow them" msgstr "tillÃ¥ter inte" @@ -7448,18 +10468,66 @@ msgstr "förkorta den nya överlappande noten" msgid "replace both overlapping notes with a single note" msgstr "ersätt bÃ¥da överlappande noter med en enstaka not" +#: session_option_editor.cc:259 +msgid "Glue to bars and beats" +msgstr "" + +#: session_option_editor.cc:263 +msgid "Glue new markers to bars and beats" +msgstr "" + +#: session_option_editor.cc:270 +msgid "Glue new regions to bars and beats" +msgstr "" + +#: session_option_editor.cc:275 session_option_editor.cc:277 +#: session_option_editor.cc:284 session_option_editor.cc:291 +#: session_option_editor.cc:298 session_option_editor.cc:300 +#: session_option_editor.cc:307 session_option_editor.cc:314 +#: session_option_editor.cc:321 session_option_editor.cc:323 +msgid "Meterbridge" +msgstr "" + #: session_option_editor.cc:275 msgid "Route Display" msgstr "" +#: session_option_editor.cc:279 +msgid "Show Midi Tracks" +msgstr "" + +#: session_option_editor.cc:286 +msgid "Show Busses" +msgstr "" + +#: session_option_editor.cc:293 +msgid "Include Master Bus" +msgstr "" + #: session_option_editor.cc:298 msgid "Button Area" msgstr "" +#: session_option_editor.cc:302 +msgid "Rec-enable Button" +msgstr "" + +#: session_option_editor.cc:309 +msgid "Mute Button" +msgstr "" + +#: session_option_editor.cc:316 +msgid "Solo Button" +msgstr "" + #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" +#: session_option_editor.cc:325 +msgid "Track Name" +msgstr "" + #: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 msgid "as new tracks" msgstr "som nya spÃ¥r" @@ -7476,10 +10544,18 @@ msgstr "till regionslistan" msgid "as new tape tracks" msgstr "som nya bandspÃ¥r" +#: sfdb_ui.cc:96 +msgid "programming error: unknown import mode string %1" +msgstr "" + #: sfdb_ui.cc:123 msgid "Auto-play" msgstr "Spela autom." +#: sfdb_ui.cc:129 sfdb_ui.cc:236 +msgid "Sound File Information" +msgstr "" + #: sfdb_ui.cc:141 msgid "Timestamp:" msgstr "" @@ -7512,6 +10588,10 @@ msgstr "" msgid "Search" msgstr "Sök" +#: sfdb_ui.cc:449 +msgid "Audio and MIDI files" +msgstr "" + #: sfdb_ui.cc:452 msgid "Audio files" msgstr "Ljudfiler" @@ -7536,6 +10616,22 @@ msgstr "Sökvägar" msgid "Search Tags" msgstr "Sök taggar" +#: sfdb_ui.cc:531 +msgid "Sort:" +msgstr "" + +#: sfdb_ui.cc:539 +msgid "Longest" +msgstr "" + +#: sfdb_ui.cc:540 +msgid "Shortest" +msgstr "" + +#: sfdb_ui.cc:541 +msgid "Newest" +msgstr "" + #: sfdb_ui.cc:542 msgid "Oldest" msgstr "" @@ -7544,6 +10640,10 @@ msgstr "" msgid "Most downloaded" msgstr "" +#: sfdb_ui.cc:544 +msgid "Least downloaded" +msgstr "" + #: sfdb_ui.cc:545 msgid "Highest rated" msgstr "" @@ -7564,6 +10664,22 @@ msgstr "" msgid "ID" msgstr "" +#: sfdb_ui.cc:568 add_video_dialog.cc:84 +msgid "Filename" +msgstr "" + +#: sfdb_ui.cc:570 +msgid "Duration" +msgstr "" + +#: sfdb_ui.cc:571 +msgid "Size" +msgstr "" + +#: sfdb_ui.cc:572 +msgid "Samplerate" +msgstr "" + #: sfdb_ui.cc:573 msgid "License" msgstr "" @@ -7610,10 +10726,48 @@ msgstr "" msgid "MB" msgstr "" +#: sfdb_ui.cc:1086 +msgid "GB" +msgstr "" + #: sfdb_ui.cc:1298 sfdb_ui.cc:1606 sfdb_ui.cc:1656 sfdb_ui.cc:1674 msgid "one track per file" msgstr "ett spÃ¥r per fil" +#: sfdb_ui.cc:1301 sfdb_ui.cc:1657 sfdb_ui.cc:1675 +msgid "one track per channel" +msgstr "" + +#: sfdb_ui.cc:1309 sfdb_ui.cc:1659 sfdb_ui.cc:1676 +msgid "sequence files" +msgstr "" + +#: sfdb_ui.cc:1312 sfdb_ui.cc:1664 +msgid "all files in one track" +msgstr "" + +#: sfdb_ui.cc:1313 sfdb_ui.cc:1658 +msgid "merge files" +msgstr "" + +#: sfdb_ui.cc:1319 sfdb_ui.cc:1661 +msgid "one region per file" +msgstr "" + +#: sfdb_ui.cc:1322 sfdb_ui.cc:1662 +msgid "one region per channel" +msgstr "" + +#: sfdb_ui.cc:1327 sfdb_ui.cc:1663 sfdb_ui.cc:1677 +msgid "all files in one region" +msgstr "" + +#: sfdb_ui.cc:1394 +msgid "" +"One or more of the selected files\n" +"cannot be used by %1" +msgstr "" + #: sfdb_ui.cc:1534 msgid "Copy files to session" msgstr "Kopiera filer till sessionen" @@ -7638,6 +10792,18 @@ msgstr "sessionens start" msgid "Add files as ..." msgstr "" +#: sfdb_ui.cc:1581 +msgid "Insert at" +msgstr "" + +#: sfdb_ui.cc:1594 +msgid "Mapping" +msgstr "" + +#: sfdb_ui.cc:1612 +msgid "Conversion quality" +msgstr "" + #: sfdb_ui.cc:1624 sfdb_ui.cc:1730 msgid "Best" msgstr "Bäst" @@ -7654,31 +10820,75 @@ msgstr "Snabb" msgid "Fastest" msgstr "Snabbast" +#: shuttle_control.cc:56 +msgid "Shuttle speed control (Context-click for options)" +msgstr "" + +#: shuttle_control.cc:165 +msgid "Percent" +msgstr "" + #: shuttle_control.cc:173 msgid "Units" msgstr "Enheter" +#: shuttle_control.cc:179 shuttle_control.cc:599 +msgid "Sprung" +msgstr "" + +#: shuttle_control.cc:183 shuttle_control.cc:602 +msgid "Wheel" +msgstr "" + #: shuttle_control.cc:217 msgid "Maximum speed" msgstr "Maxhastighet" +#: shuttle_control.cc:561 +msgid "Playing" +msgstr "" + +#: shuttle_control.cc:576 +#, c-format +msgid "<<< %+d semitones" +msgstr "" + +#: shuttle_control.cc:578 +#, c-format +msgid ">>> %+d semitones" +msgstr "" + +#: shuttle_control.cc:583 +msgid "Stopped" +msgstr "" + #: splash.cc:73 msgid "%1 loading ..." msgstr "" +#: speaker_dialog.cc:40 +msgid "Add Speaker" +msgstr "" + +#: speaker_dialog.cc:41 +msgid "Remove Speaker" +msgstr "" + #: speaker_dialog.cc:63 msgid "Azimuth:" msgstr "" -#: startup.cc:73 -msgid "Open an existing session" -msgstr "Öppna en existerande session" +#: startup.cc:72 +msgid "" +"Use an external mixer or the hardware mixer of your audio interface.\n" +"%1 will play NO role in monitoring" +msgstr "" -#: startup.cc:79 -msgid "I'd like more options for this session" -msgstr "Jag vill ha fler alternativ för sessionen" +#: startup.cc:74 +msgid "Ask %1 to play back material as it is being recorded" +msgstr "" -#: startup.cc:194 +#: startup.cc:143 msgid "" "Welcome to this BETA release of Ardour %1\n" "\n" @@ -7703,23 +10913,29 @@ msgid "" " http://ardour.org/support\n" msgstr "" -#: startup.cc:218 +#: startup.cc:167 msgid "This is a BETA RELEASE" msgstr "" -#: startup.cc:324 -msgid "Audio / MIDI Setup" -msgstr "Audio-/MIDI-inställningar" +#: startup.cc:176 +msgid "" +"%1 is a digital audio workstation. You can use it to " +"record, edit and mix multi-track audio. You can produce your own CDs, mix " +"video soundtracks, or experiment with new ideas about music and sound. \n" +"\n" +"There are a few things that need to be configured before you start using the " +"program. " +msgstr "" -#: startup.cc:362 +#: startup.cc:202 msgid "Welcome to %1" msgstr "Välkommen till %1" -#: startup.cc:385 +#: startup.cc:225 msgid "Default folder for %1 sessions" msgstr "Standardplatsen för %1-sessioner" -#: startup.cc:391 +#: startup.cc:231 msgid "" "Each project that you work on with %1 has its own folder.\n" "These can require a lot of disk space if you are recording audio.\n" @@ -7736,23 +10952,43 @@ msgstr "" "(Du kan sÃ¥ klart placera sessioner var du vill, detta är bara " "stanardplatsen)" -#: startup.cc:415 +#: startup.cc:254 msgid "Default folder for new sessions" msgstr "Standardplats för nya sessioner" -#: startup.cc:457 +#: startup.cc:275 +msgid "" +"While recording instruments or vocals, you probably want to listen to the\n" +"signal as well as record it. This is called \"monitoring\". There are\n" +"different ways to do this depending on the equipment you have and the\n" +"configuration of that equipment. The two most common are presented here.\n" +"Please choose whichever one is right for your setup.\n" +"\n" +"(You can change this preference at any time, via the Preferences dialog)\n" +"\n" +"If you do not understand what this is about, just accept the default." +msgstr "" + +#: startup.cc:296 msgid "Monitoring Choices" msgstr "Medhörningsalternativ" -#: startup.cc:480 +#: startup.cc:319 msgid "Use a Master bus directly" msgstr "Använd master-bussen" -#: startup.cc:491 +#: startup.cc:321 +msgid "" +"Connect the Master bus directly to your hardware outputs. This is preferable " +"for simple usage." +msgstr "" + +#: startup.cc:330 msgid "Use an additional Monitor bus" msgstr "Använd en ytterligare medhörningsbuss" -#: startup.cc:494 +#: startup.cc:333 msgid "" "Use a Monitor bus between Master bus and hardware outputs for \n" "greater control in monitoring without affecting the mix." @@ -7760,7 +10996,7 @@ msgstr "" "Använd en medhörningsbuss mellan mater-bussen och hÃ¥rdvaruutgÃ¥ngarna för \n" "större kontroll av medhörning, utan att pÃ¥verka mixen." -#: startup.cc:516 +#: startup.cc:355 msgid "" "You can change this preference at any time via the Preferences dialog.\n" "You can also add or remove the monitor section to/from any session.\n" @@ -7768,106 +11004,10 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:527 +#: startup.cc:366 msgid "Monitor Section" msgstr "Medhörningssektion" -#: startup.cc:573 -msgid "Check the website for more..." -msgstr "" - -#: startup.cc:576 -msgid "Click to open the program website in your web browser" -msgstr "" - -#: startup.cc:729 -msgid "Open" -msgstr "Öppna" - -#: startup.cc:775 -msgid "Session name:" -msgstr "Sessionens namn:" - -#: startup.cc:798 -msgid "Create session folder in:" -msgstr "Skapa sessionsmappen i:" - -#: startup.cc:821 -msgid "Select folder for session" -msgstr "Välj mapp för sessionen" - -#: startup.cc:853 -msgid "Use this template" -msgstr "Använd denna mall" - -#: startup.cc:856 -msgid "no template" -msgstr "ingen mall" - -#: startup.cc:884 -msgid "Use an existing session as a template:" -msgstr "Använd en existerande session som mall:" - -#: startup.cc:896 -msgid "Select template" -msgstr "Välj mall" - -#: startup.cc:922 -msgid "New Session" -msgstr "Ny session" - -#: startup.cc:1077 -msgid "Select session file" -msgstr "Välj sessionsfil" - -#: startup.cc:1093 -msgid "Browse:" -msgstr "Bläddra:" - -#: startup.cc:1102 -msgid "Select a session" -msgstr "Välj en session" - -#: startup.cc:1129 startup.cc:1130 startup.cc:1131 -msgid "channels" -msgstr "kanaler" - -#: startup.cc:1145 -msgid "Busses" -msgstr "Bussar" - -#: startup.cc:1146 -msgid "Inputs" -msgstr "IngÃ¥ngar" - -#: startup.cc:1147 -msgid "Outputs" -msgstr "UtgÃ¥ngar" - -#: startup.cc:1155 -msgid "Create master bus" -msgstr "Skapa master-buss" - -#: startup.cc:1172 startup.cc:1231 -msgid "Use only" -msgstr "Använd endast" - -#: startup.cc:1225 -msgid "Automatically connect outputs" -msgstr "Anslut automatiskt utgÃ¥ngar" - -#: startup.cc:1247 -msgid "... to master bus" -msgstr "...till master-bussen" - -#: startup.cc:1257 -msgid "... to physical outputs" -msgstr "...till fysiska utgÃ¥ngar" - -#: startup.cc:1307 -msgid "Advanced Session Options" -msgstr "Avancerade sessionsalternativ" - #: step_entry.cc:59 msgid "Step Entry: %1" msgstr "" @@ -7896,6 +11036,10 @@ msgstr "" msgid "g-rest" msgstr "" +#: step_entry.cc:70 +msgid "back" +msgstr "" + #: step_entry.cc:81 step_entry.cc:84 msgid "+" msgstr "" @@ -7920,6 +11064,10 @@ msgstr "" msgid "Set note length to a sixteenth note" msgstr "" +#: step_entry.cc:195 +msgid "Set note length to a thirty-second note" +msgstr "" + #: step_entry.cc:196 msgid "Set note length to a sixty-fourth note" msgstr "" @@ -8000,6 +11148,10 @@ msgstr "" msgid "Insert a bank change message" msgstr "" +#: step_entry.cc:341 +msgid "Insert a program change message" +msgstr "" + #: step_entry.cc:342 step_entry.cc:699 msgid "Move Insert Position Back by Note Length" msgstr "" @@ -8012,22 +11164,54 @@ msgstr "" msgid "1/Note" msgstr "" +#: step_entry.cc:414 +msgid "Octave" +msgstr "" + +#: step_entry.cc:597 +msgid "Insert Note A" +msgstr "" + #: step_entry.cc:598 msgid "Insert Note A-sharp" msgstr "" +#: step_entry.cc:599 +msgid "Insert Note B" +msgstr "" + +#: step_entry.cc:600 +msgid "Insert Note C" +msgstr "" + #: step_entry.cc:601 msgid "Insert Note C-sharp" msgstr "" +#: step_entry.cc:602 +msgid "Insert Note D" +msgstr "" + #: step_entry.cc:603 msgid "Insert Note D-sharp" msgstr "" +#: step_entry.cc:604 +msgid "Insert Note E" +msgstr "" + +#: step_entry.cc:605 +msgid "Insert Note F" +msgstr "" + #: step_entry.cc:606 msgid "Insert Note F-sharp" msgstr "" +#: step_entry.cc:607 +msgid "Insert Note G" +msgstr "" + #: step_entry.cc:608 msgid "Insert Note G-sharp" msgstr "" @@ -8044,6 +11228,22 @@ msgstr "" msgid "Move to next octave" msgstr "" +#: step_entry.cc:616 +msgid "Move to Next Note Length" +msgstr "" + +#: step_entry.cc:617 +msgid "Move to Previous Note Length" +msgstr "" + +#: step_entry.cc:619 +msgid "Increase Note Length" +msgstr "" + +#: step_entry.cc:620 +msgid "Decrease Note Length" +msgstr "" + #: step_entry.cc:622 msgid "Move to Next Note Velocity" msgstr "" @@ -8108,6 +11308,22 @@ msgstr "" msgid "Set Note Length to Whole" msgstr "" +#: step_entry.cc:645 +msgid "Set Note Length to 1/2" +msgstr "" + +#: step_entry.cc:647 +msgid "Set Note Length to 1/3" +msgstr "" + +#: step_entry.cc:649 +msgid "Set Note Length to 1/4" +msgstr "" + +#: step_entry.cc:651 +msgid "Set Note Length to 1/8" +msgstr "" + #: step_entry.cc:653 msgid "Set Note Length to 1/16" msgstr "" @@ -8148,6 +11364,18 @@ msgstr "" msgid "Set Note Velocity to Fortississimo" msgstr "" +#: step_entry.cc:678 +msgid "Toggle Triple Notes" +msgstr "" + +#: step_entry.cc:683 +msgid "No Dotted Notes" +msgstr "" + +#: step_entry.cc:685 +msgid "Toggled Dotted Notes" +msgstr "" + #: step_entry.cc:687 msgid "Toggled Double-Dotted Notes" msgstr "" @@ -8156,14 +11384,39 @@ msgstr "" msgid "Toggled Triple-Dotted Notes" msgstr "" +#: step_entry.cc:692 +msgid "Toggle Chord Entry" +msgstr "" + #: step_entry.cc:694 msgid "Sustain Selected Notes by Note Length" msgstr "" +#: stereo_panner.cc:108 +#, c-format +msgid "L:%3d R:%3d Width:%d%%" +msgstr "" + +#: stereo_panner_editor.cc:35 +msgid "Stereo Panner" +msgstr "" + +#: stereo_panner_editor.cc:49 +msgid "Width" +msgstr "" + +#: strip_silence_dialog.cc:48 +msgid "Strip Silence" +msgstr "" + #: strip_silence_dialog.cc:79 msgid "Minimum length" msgstr "" +#: strip_silence_dialog.cc:87 +msgid "Fade length" +msgstr "" + #: tempo_dialog.cc:43 tempo_dialog.cc:58 msgid "bar:" msgstr "" @@ -8172,6 +11425,49 @@ msgstr "" msgid "beat:" msgstr "" +#: tempo_dialog.cc:45 tempo_dialog.cc:60 +msgid "Pulse note" +msgstr "" + +#: tempo_dialog.cc:55 +msgid "Edit Tempo" +msgstr "" + +#: tempo_dialog.cc:76 tempo_dialog.cc:77 tempo_dialog.cc:282 +#: tempo_dialog.cc:283 +msgid "whole" +msgstr "" + +#: tempo_dialog.cc:78 tempo_dialog.cc:79 tempo_dialog.cc:284 +#: tempo_dialog.cc:285 +msgid "second" +msgstr "" + +#: tempo_dialog.cc:80 tempo_dialog.cc:81 tempo_dialog.cc:286 +#: tempo_dialog.cc:287 +msgid "third" +msgstr "" + +#: tempo_dialog.cc:82 tempo_dialog.cc:83 tempo_dialog.cc:288 +#: tempo_dialog.cc:289 +msgid "quarter" +msgstr "" + +#: tempo_dialog.cc:84 tempo_dialog.cc:85 tempo_dialog.cc:290 +#: tempo_dialog.cc:291 +msgid "eighth" +msgstr "" + +#: tempo_dialog.cc:86 tempo_dialog.cc:87 tempo_dialog.cc:292 +#: tempo_dialog.cc:293 +msgid "sixteenth" +msgstr "" + +#: tempo_dialog.cc:88 tempo_dialog.cc:89 tempo_dialog.cc:294 +#: tempo_dialog.cc:295 +msgid "thirty-second" +msgstr "" + #: tempo_dialog.cc:90 tempo_dialog.cc:91 tempo_dialog.cc:296 #: tempo_dialog.cc:297 msgid "sixty-fourth" @@ -8186,6 +11482,18 @@ msgstr "" msgid "Beats per minute:" msgstr "Slag per minut:" +#: tempo_dialog.cc:152 +msgid "Tempo begins at" +msgstr "" + +#: tempo_dialog.cc:240 +msgid "incomprehensible pulse note type (%1)" +msgstr "" + +#: tempo_dialog.cc:266 +msgid "Edit Meter" +msgstr "" + #: tempo_dialog.cc:314 msgid "Note value:" msgstr "Notvärde:" @@ -8194,6 +11502,14 @@ msgstr "Notvärde:" msgid "Beats per bar:" msgstr "Slag per takt:" +#: tempo_dialog.cc:330 +msgid "Meter begins at bar:" +msgstr "" + +#: tempo_dialog.cc:441 +msgid "incomprehensible meter note type (%1)" +msgstr "" + #: theme_manager.cc:57 msgid "Dark Theme" msgstr "Mörkt tema" @@ -8206,10 +11522,18 @@ msgstr "Ljust tema" msgid "Restore Defaults" msgstr "Nollställ" +#: theme_manager.cc:60 +msgid "Draw \"flat\" buttons" +msgstr "" + #: theme_manager.cc:61 msgid "All floating windows are dialogs" msgstr "" +#: theme_manager.cc:62 +msgid "Draw waveforms with color gradient" +msgstr "" + #: theme_manager.cc:68 msgid "Object" msgstr "Objekt" @@ -8230,6 +11554,12 @@ msgstr "" msgid "Track/Bus name (double click to edit)" msgstr "" +#: time_axis_view_item.cc:332 +msgid "new duration %1 frame is out of bounds for %2" +msgid_plural "new duration of %1 frames is out of bounds for %2" +msgstr[0] "" +msgstr[1] "" + #: time_fx_dialog.cc:62 msgid "Quick but Ugly" msgstr "Snabbt men fult" @@ -8250,10 +11580,46 @@ msgstr "" msgid "Preserve Formants" msgstr "" +#: time_fx_dialog.cc:71 +msgid "TimeFXDialog" +msgstr "" + +#: time_fx_dialog.cc:74 +msgid "Pitch Shift Audio" +msgstr "" + +#: time_fx_dialog.cc:76 +msgid "Time Stretch Audio" +msgstr "" + +#: time_fx_dialog.cc:104 transpose_dialog.cc:41 +msgid "Octaves:" +msgstr "" + +#: time_fx_dialog.cc:109 transpose_dialog.cc:46 +msgid "Semitones:" +msgstr "" + +#: time_fx_dialog.cc:114 +msgid "Cents:" +msgstr "" + +#: time_fx_dialog.cc:122 +msgid "Time|Shift" +msgstr "" + +#: time_fx_dialog.cc:146 time_fx_dialog.cc:149 +msgid "TimeFXButton" +msgstr "" + #: time_fx_dialog.cc:154 msgid "Stretch/Shrink" msgstr "Förläng/Förkorta" +#: time_fx_dialog.cc:164 +msgid "Progress" +msgstr "" + #: time_info_box.cc:121 msgid "Start recording at auto-punch start" msgstr "Starta inspelning vid autoinslagsstart" @@ -8266,6 +11632,10 @@ msgstr "Stanna inspelning vid autoinslagsslut" msgid "programming error: request for non-existent audio range (%1)!" msgstr "" +#: transpose_dialog.cc:30 +msgid "Transpose MIDI" +msgstr "" + #: transpose_dialog.cc:55 msgid "Transpose" msgstr "Transponera" @@ -8274,6 +11644,10 @@ msgstr "Transponera" msgid "Loading default ui configuration file %1" msgstr "" +#: ui_config.cc:85 ui_config.cc:116 +msgid "cannot read default ui configuration file \"%1\"" +msgstr "" + #: ui_config.cc:90 ui_config.cc:121 msgid "default ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -8282,6 +11656,10 @@ msgstr "" msgid "Loading user ui configuration file %1" msgstr "" +#: ui_config.cc:137 +msgid "cannot read ui configuration file \"%1\"" +msgstr "" + #: ui_config.cc:142 msgid "user ui configuration file \"%1\" not loaded successfully." msgstr "" @@ -8294,15 +11672,23 @@ msgstr "" msgid "Config file %1 not saved" msgstr "" -#: utils.cc:110 utils.cc:153 +#: utils.cc:111 utils.cc:154 msgid "bad XPM header %1" msgstr "" -#: utils.cc:292 utils.cc:324 +#: utils.cc:293 utils.cc:325 msgid "missing RGBA style for \"%1\"" msgstr "saknar RGBA-stil för \"%1\"" -#: utils.cc:632 +#: utils.cc:598 +msgid "cannot find XPM file for %1" +msgstr "" + +#: utils.cc:624 +msgid "cannot find icon image for %1 using %2" +msgstr "" + +#: utils.cc:639 msgid "Caught exception while loading icon named %1" msgstr "" @@ -8310,6 +11696,14 @@ msgstr "" msgid "VerboseCanvasCursor" msgstr "" +#: add_video_dialog.cc:55 +msgid "Set Video Track" +msgstr "" + +#: add_video_dialog.cc:63 +msgid "Launch External Video Monitor" +msgstr "" + #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -8322,6 +11716,22 @@ msgstr "" msgid "VideoServerIndex" msgstr "" +#: add_video_dialog.cc:129 +msgid "Video files" +msgstr "" + +#: add_video_dialog.cc:164 +msgid "Video Information" +msgstr "" + +#: add_video_dialog.cc:167 +msgid "Start:" +msgstr "" + +#: add_video_dialog.cc:173 +msgid "Frame rate:" +msgstr "" + #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -8367,6 +11777,10 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" +#: video_monitor.cc:281 +msgid "Video Monitor: File Not Found." +msgstr "" + #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -8383,75 +11797,119 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:61 export_video_dialog.cc:73 +#: transcode_video_dialog.cc:55 +msgid "Transcode/Import Video File " +msgstr "" + +#: transcode_video_dialog.cc:57 +msgid "Output File:" +msgstr "" + +#: transcode_video_dialog.cc:60 export_video_dialog.cc:72 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:66 +#: transcode_video_dialog.cc:62 +msgid "Height = " +msgstr "" + +#: transcode_video_dialog.cc:65 msgid "Manual Override" msgstr "" -#: transcode_video_dialog.cc:70 export_video_dialog.cc:89 +#: transcode_video_dialog.cc:69 export_video_dialog.cc:88 msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:113 +#: transcode_video_dialog.cc:106 +msgid "File Information" +msgstr "" + +#: transcode_video_dialog.cc:112 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: transcode_video_dialog.cc:120 +#: transcode_video_dialog.cc:119 msgid "" "File-info can not be read. Most likely '%1' is not a valid video-file or an " "unsupported video codec or format." msgstr "" -#: transcode_video_dialog.cc:134 +#: transcode_video_dialog.cc:133 msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:138 +#: transcode_video_dialog.cc:135 +msgid "Duration:" +msgstr "" + +#: transcode_video_dialog.cc:137 msgid "Codec:" msgstr "" -#: transcode_video_dialog.cc:140 +#: transcode_video_dialog.cc:139 msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:155 +#: transcode_video_dialog.cc:154 msgid "??" msgstr "" -#: transcode_video_dialog.cc:181 +#: transcode_video_dialog.cc:175 +msgid "Import Settings" +msgstr "" + +#: transcode_video_dialog.cc:180 msgid "Do Not Import Video" msgstr "" -#: transcode_video_dialog.cc:182 +#: transcode_video_dialog.cc:181 msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:198 +#: transcode_video_dialog.cc:183 +msgid "Import/Transcode Video to Session" +msgstr "" + +#: transcode_video_dialog.cc:197 msgid "Scale Video: Width = " msgstr "" -#: transcode_video_dialog.cc:220 +#: transcode_video_dialog.cc:204 +msgid "Original Width" +msgstr "" + +#: transcode_video_dialog.cc:219 msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:348 +#: transcode_video_dialog.cc:224 +msgid "Extract Audio:" +msgstr "" + +#: transcode_video_dialog.cc:344 +msgid "Extracting Audio.." +msgstr "" + +#: transcode_video_dialog.cc:347 msgid "Audio Extraction Failed." msgstr "" -#: transcode_video_dialog.cc:374 +#: transcode_video_dialog.cc:373 msgid "Transcoding Video.." msgstr "" -#: transcode_video_dialog.cc:408 +#: transcode_video_dialog.cc:407 msgid "Transcoding Failed." msgstr "" +#: transcode_video_dialog.cc:490 +msgid "Save Transcoded Video File" +msgstr "" + #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -8479,11 +11937,19 @@ msgstr "" msgid "Listen Address:" msgstr "" +#: video_server_dialog.cc:125 +msgid "Listen Port:" +msgstr "" + +#: video_server_dialog.cc:130 +msgid "Cache Size:" +msgstr "" + #: video_server_dialog.cc:136 msgid "" -"%1 relies on an external Video Server for the videotimeline.\n" -"The server configured in Edit -> Prefereces -> Video is not reachable.\n" -"Do you want ardour to launch 'harvid' on this machine?" +"%1 relies on an external video server for the videotimeline.\n" +"The server configured in Edit -> Preferences -> Video is not reachable.\n" +"Do you want %1 to launch 'harvid' on this machine?" msgstr "" #: video_server_dialog.cc:176 @@ -8512,79 +11978,183 @@ msgstr "" msgid "Confirm Overwrite" msgstr "" -#: export_video_dialog.cc:74 +#: utils_videotl.cc:64 +msgid "A file with the same name already exists. Do you want to overwrite it?" +msgstr "" + +#: utils_videotl.cc:74 utils_videotl.cc:90 +msgid "Cannot create video folder \"%1\" (%2)" +msgstr "" + +#: export_video_dialog.cc:65 +msgid "Export Video File " +msgstr "" + +#: export_video_dialog.cc:69 +msgid "Video:" +msgstr "" + +#: export_video_dialog.cc:73 msgid "Scale Video (W x H):" msgstr "" -#: export_video_dialog.cc:79 +#: export_video_dialog.cc:78 msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:81 +#: export_video_dialog.cc:79 +msgid "Normalize Audio" +msgstr "" + +#: export_video_dialog.cc:80 msgid "2 Pass Encoding" msgstr "" -#: export_video_dialog.cc:82 +#: export_video_dialog.cc:81 msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:85 +#: export_video_dialog.cc:83 +msgid "Deinterlace" +msgstr "" + +#: export_video_dialog.cc:84 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" -#: export_video_dialog.cc:86 +#: export_video_dialog.cc:85 msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:107 +#: export_video_dialog.cc:86 +msgid "Include Session Metadata" +msgstr "" + +#: export_video_dialog.cc:106 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: export_video_dialog.cc:145 +#: export_video_dialog.cc:116 +msgid "Output:" +msgstr "" + +#: export_video_dialog.cc:126 +msgid "Input:" +msgstr "" + +#: export_video_dialog.cc:137 +msgid "Audio:" +msgstr "" + +#: export_video_dialog.cc:139 +msgid "Master Bus" +msgstr "" + +#: export_video_dialog.cc:144 msgid "from the %1 session's start to the session's end" msgstr "" -#: export_video_dialog.cc:149 +#: export_video_dialog.cc:148 msgid "from 00:00:00:00 to the video's end" msgstr "" -#: export_video_dialog.cc:151 +#: export_video_dialog.cc:150 msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:494 +#: export_video_dialog.cc:153 +msgid "Selected range" +msgstr "" + +#: export_video_dialog.cc:193 +msgid "Settings:" +msgstr "" + +#: export_video_dialog.cc:201 +msgid "Range:" +msgstr "" + +#: export_video_dialog.cc:204 +msgid "Preset:" +msgstr "" + +#: export_video_dialog.cc:207 +msgid "Video Codec:" +msgstr "" + +#: export_video_dialog.cc:210 +msgid "Video KBit/s:" +msgstr "" + +#: export_video_dialog.cc:213 +msgid "Audio Codec:" +msgstr "" + +#: export_video_dialog.cc:216 +msgid "Audio KBit/s:" +msgstr "" + +#: export_video_dialog.cc:219 +msgid "Audio Samplerate:" +msgstr "" + +#: export_video_dialog.cc:395 +msgid "Normalizing audio" +msgstr "" + +#: export_video_dialog.cc:399 +msgid "Exporting audio" +msgstr "" + +#: export_video_dialog.cc:445 +msgid "Exporting Audio..." +msgstr "" + +#: export_video_dialog.cc:502 msgid "" "Export Video: Cannot query duration of video-file, using duration from " "timeline instead." msgstr "" -#: export_video_dialog.cc:523 +#: export_video_dialog.cc:532 +msgid "Export Video: export-range does not include video." +msgstr "" + +#: export_video_dialog.cc:544 msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" -#: export_video_dialog.cc:562 +#: export_video_dialog.cc:583 msgid "Encoding Video..." msgstr "" -#: export_video_dialog.cc:581 +#: export_video_dialog.cc:602 msgid "Export Video: Video input file cannot be read." msgstr "" -#: export_video_dialog.cc:679 +#: export_video_dialog.cc:695 msgid "Encoding Video.. Pass 1/2" msgstr "" -#: export_video_dialog.cc:691 +#: export_video_dialog.cc:707 msgid "Encoding Video.. Pass 2/2" msgstr "" -#: export_video_dialog.cc:779 +#: export_video_dialog.cc:814 msgid "Transcoding failed." msgstr "" +#: export_video_dialog.cc:983 export_video_dialog.cc:1003 +msgid "Save Exported Video File" +msgstr "" + +#: export_video_infobox.cc:30 +msgid "Video Export Info" +msgstr "" + #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -8601,3 +12171,150 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" + +#~ msgid "Starting audio engine" +#~ msgstr "Startar ljudsystemet" + +#~ msgid "disconnected" +#~ msgstr "frÃ¥nkopplad" + +#~ msgid "Unable to start the session running" +#~ msgstr "Kan ej starta sessionen" + +#~ msgid "Could not disconnect from JACK" +#~ msgstr "Kunde inte koppla loss frÃ¥n JACK" + +#~ msgid "Could not reconnect to JACK" +#~ msgstr "Kunde inte Ã¥teransluta till JACK" + +#~ msgid "Reconnect" +#~ msgstr "Ã…teranslut" + +#~ msgid "Realtime" +#~ msgstr "Realtid" + +#~ msgid "Do not lock memory" +#~ msgstr "LÃ¥s ej minnet" + +#~ msgid "Unlock memory" +#~ msgstr "Frigör minnet" + +#~ msgid "No zombies" +#~ msgstr "Inga zombies" + +#~ msgid "Provide monitor ports" +#~ msgstr "Skapa medhörningsportar" + +#~ msgid "Force 16 bit" +#~ msgstr "Tvinga 16 bit" + +#~ msgid "H/W monitoring" +#~ msgstr "HÃ¥rdvarumedhörning" + +#~ msgid "H/W metering" +#~ msgstr "HÃ¥rdvarunivÃ¥mätning" + +#~ msgid "Verbose output" +#~ msgstr "Utförlig information" + +#~ msgid "Triangular" +#~ msgstr "Triangulär" + +#~ msgid "Rectangular" +#~ msgstr "Rektangulär" + +#~ msgid "Shaped" +#~ msgstr "Formad" + +#~ msgid "Playback/recording on 1 device" +#~ msgstr "Upp-/inspelning pÃ¥ 1 enhet" + +#~ msgid "Playback/recording on 2 devices" +#~ msgstr "Upp-/inspelning pÃ¥ 2 enheter" + +#~ msgid "Playback only" +#~ msgstr "Uppspelning endast" + +#~ msgid "Recording only" +#~ msgstr "Inspelning endast" + +#~ msgid "Number of buffers:" +#~ msgstr "Antal buffertar:" + +#~ msgid "Approximate latency:" +#~ msgstr "Ungefärlig fördröjning:" + +#~ msgid "Audio mode:" +#~ msgstr "Ljudläge:" + +#~ msgid "Ignore" +#~ msgstr "Ignorera" + +#~ msgid "Client timeout" +#~ msgstr "Klient-timeout" + +#~ msgid "Number of ports:" +#~ msgstr "Antal portar:" + +#~ msgid "MIDI driver:" +#~ msgstr "MIDI-drivrutin:" + +#~ msgid "" +#~ "No JACK server found anywhere on this system. Please install JACK and " +#~ "restart" +#~ msgstr "Ingen JACK-server hittades. Installera JACK och starta om" + +#~ msgid "Input device:" +#~ msgstr "IngÃ¥ngsenhet:" + +#~ msgid "Output device:" +#~ msgstr "UtgÃ¥ngsenhet:" + +#~ msgid "Device" +#~ msgstr "Enhet" + +#~ msgid "Advanced" +#~ msgstr "Avancerat" + +#~ msgid "cannot open JACK rc file %1 to store parameters" +#~ msgstr "kan ej öppna JACKs rc-fil %1 för att lagra parametrar" + +#~ msgid "AudioSetup value for %1 is missing data" +#~ msgstr "AudioSetup-värde för %1 saknar data" + +#~ msgid "" +#~ "configuration files contain a JACK server path that doesn't exist (%1)" +#~ msgstr "konfigurationsfilerna anger en JACK-serversökväg som inte existerar" + +#~ msgid "Not connected to JACK - no I/O changes are possible" +#~ msgstr "Inte ansluten till JACK - in/ut-ändringar är inte möjliga" + +#~ msgid "Do seamless looping (not possible when slaved to MTC, JACK etc)" +#~ msgstr "Loopa sömlöst (ej möjligt vid slavläge mot MTC, Jack etc)" + +#~ msgid "follows order of editor" +#~ msgstr "följer redigerarens ordning" + +#~ msgid "Open an existing session" +#~ msgstr "Öppna en existerande session" + +#~ msgid "I'd like more options for this session" +#~ msgstr "Jag vill ha fler alternativ för sessionen" + +#~ msgid "Audio / MIDI Setup" +#~ msgstr "Audio-/MIDI-inställningar" + +#~ msgid "Use an existing session as a template:" +#~ msgstr "Använd en existerande session som mall:" + +#~ msgid "Select template" +#~ msgstr "Välj mall" + +#~ msgid "Browse:" +#~ msgstr "Bläddra:" + +#~ msgid "Select a session" +#~ msgstr "Välj en session" + +#~ msgid "Advanced Session Options" +#~ msgstr "Avancerade sessionsalternativ" diff --git a/gtk2_ardour/po/zh.po b/gtk2_ardour/po/zh.po index 761312995a..3d0834d9cc 100644 --- a/gtk2_ardour/po/zh.po +++ b/gtk2_ardour/po/zh.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Ardour 3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-03 07:59-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2013-01-03 08:29-0500\n" "Last-Translator: Rui-huai Zhang \n" "Language-Team: zrhzrh \n" @@ -57,6 +57,10 @@ msgstr "" msgid "Jesse Chappell" msgstr "" +#: about.cc:131 +msgid "Thomas Charbonnel" +msgstr "" + #: about.cc:132 msgid "Sam Chessman" msgstr "" @@ -213,6 +217,14 @@ msgstr "" msgid "Lincoln Spiteri" msgstr "" +#: about.cc:171 +msgid "Mike Start" +msgstr "" + +#: about.cc:172 +msgid "Mark Stewart" +msgstr "" + #: about.cc:173 msgid "Roland Stigge" msgstr "" @@ -374,12 +386,28 @@ msgstr "音轨模å¼:" msgid "Instrument:" msgstr "" +#: add_route_dialog.cc:76 +msgid "Audio Tracks" +msgstr "" + +#: add_route_dialog.cc:77 +msgid "MIDI Tracks" +msgstr "" + +#: add_route_dialog.cc:78 +msgid "Audio+MIDI Tracks" +msgstr "" + +#: add_route_dialog.cc:79 +msgid "Busses" +msgstr "" + #: add_route_dialog.cc:101 msgid "Add:" msgstr "添加:" -#: add_route_dialog.cc:114 startup.cc:841 time_fx_dialog.cc:91 -#: add_video_dialog.cc:150 video_server_dialog.cc:112 +#: add_route_dialog.cc:114 time_fx_dialog.cc:91 add_video_dialog.cc:150 +#: video_server_dialog.cc:112 msgid "Options" msgstr "选项" @@ -393,24 +421,29 @@ msgid "Group:" msgstr "分组:" #: add_route_dialog.cc:215 add_route_dialog.cc:224 add_route_dialog.cc:298 -#: rc_option_editor.cc:1456 rc_option_editor.cc:1458 rc_option_editor.cc:1460 -#: rc_option_editor.cc:1478 rc_option_editor.cc:1480 rc_option_editor.cc:1488 -#: rc_option_editor.cc:1490 rc_option_editor.cc:1508 rc_option_editor.cc:1521 -#: rc_option_editor.cc:1523 rc_option_editor.cc:1525 rc_option_editor.cc:1556 -#: rc_option_editor.cc:1558 rc_option_editor.cc:1560 rc_option_editor.cc:1568 -#: rc_option_editor.cc:1576 rc_option_editor.cc:1584 +#: ardour_ui_ed.cc:476 engine_dialog.cc:236 rc_option_editor.cc:1446 +#: rc_option_editor.cc:1448 rc_option_editor.cc:1450 rc_option_editor.cc:1466 +#: rc_option_editor.cc:1468 rc_option_editor.cc:1476 rc_option_editor.cc:1478 +#: rc_option_editor.cc:1496 rc_option_editor.cc:1509 rc_option_editor.cc:1511 +#: rc_option_editor.cc:1513 rc_option_editor.cc:1544 rc_option_editor.cc:1546 +#: rc_option_editor.cc:1548 rc_option_editor.cc:1556 rc_option_editor.cc:1564 +#: rc_option_editor.cc:1572 msgid "Audio" msgstr "音频" #: add_route_dialog.cc:216 add_route_dialog.cc:227 add_route_dialog.cc:299 -#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1707 -#: rc_option_editor.cc:1715 rc_option_editor.cc:1723 rc_option_editor.cc:1732 -#: rc_option_editor.cc:1740 rc_option_editor.cc:1748 rc_option_editor.cc:1756 -#: rc_option_editor.cc:1765 rc_option_editor.cc:1774 rc_option_editor.cc:1783 -#: rc_option_editor.cc:1791 rc_option_editor.cc:1799 +#: editor_actions.cc:105 missing_file_dialog.cc:55 rc_option_editor.cc:1695 +#: rc_option_editor.cc:1703 rc_option_editor.cc:1711 rc_option_editor.cc:1720 +#: rc_option_editor.cc:1728 rc_option_editor.cc:1736 rc_option_editor.cc:1744 +#: rc_option_editor.cc:1753 rc_option_editor.cc:1762 rc_option_editor.cc:1771 +#: rc_option_editor.cc:1779 rc_option_editor.cc:1787 msgid "MIDI" msgstr "MIDI" +#: add_route_dialog.cc:217 add_route_dialog.cc:230 add_route_dialog.cc:300 +msgid "Audio+MIDI" +msgstr "" + #: add_route_dialog.cc:218 add_route_dialog.cc:233 add_route_dialog.cc:301 msgid "Bus" msgstr "总线" @@ -489,6 +522,12 @@ msgstr "" msgid "Ambiguous File" msgstr "模糊的文件" +#: ambiguous_file_dialog.cc:35 +msgid "" +"%1 has found the file %2 in the following places:\n" +"\n" +msgstr "" + #: ambiguous_file_dialog.cc:44 msgid "" "\n" @@ -539,7 +578,7 @@ msgstr "归一化值" msgid "FFT analysis window" msgstr "快速傅立å¶å˜æ¢åˆ†æžè§†çª—" -#: analysis_window.cc:60 editor.cc:1856 +#: analysis_window.cc:60 editor.cc:1857 msgid "Spectral Analysis" msgstr "频谱分æž" @@ -561,10 +600,18 @@ msgstr "釿–°åˆ†æžæ•°æ®" msgid "button cannot watch state of non-existing Controllable\n" msgstr "" +#: ardour_ui.cc:180 +msgid "audition" +msgstr "" + #: ardour_ui.cc:181 msgid "solo" msgstr "" +#: ardour_ui.cc:182 +msgid "feedback" +msgstr "" + #: ardour_ui.cc:187 speaker_dialog.cc:36 msgid "Speaker Configuration" msgstr "扬声器é…ç½®" @@ -581,6 +628,10 @@ msgstr "按键绑定" msgid "Preferences" msgstr "首选项" +#: ardour_ui.cc:191 ardour_ui.cc:197 +msgid "Add Tracks/Busses" +msgstr "" + #: ardour_ui.cc:192 msgid "About" msgstr "关于" @@ -593,51 +644,112 @@ msgstr "ä½ç½®" msgid "Tracks and Busses" msgstr "音轨和总线" -#: ardour_ui.cc:195 +#: ardour_ui.cc:195 engine_dialog.cc:67 +msgid "Audio/MIDI Setup" +msgstr "" + +#: ardour_ui.cc:196 msgid "Properties" msgstr "属性" -#: ardour_ui.cc:197 bundle_manager.cc:263 +#: ardour_ui.cc:198 bundle_manager.cc:263 msgid "Bundle Manager" msgstr "æ†ç»‘管ç†" -#: ardour_ui.cc:198 big_clock_window.cc:35 +#: ardour_ui.cc:199 big_clock_window.cc:35 msgid "Big Clock" msgstr "大时钟" -#: ardour_ui.cc:202 +#: ardour_ui.cc:200 +msgid "Audio Connections" +msgstr "" + +#: ardour_ui.cc:201 +msgid "MIDI Connections" +msgstr "" + +#: ardour_ui.cc:203 msgid "Errors" msgstr "错误" -#: ardour_ui.cc:388 -msgid "Starting audio engine" -msgstr "å¯åŠ¨éŸ³é¢‘å¼•æ“Ž" +#: ardour_ui.cc:436 +msgid "" +"The audio backend was shutdown because:\n" +"\n" +"%1" +msgstr "" -#: ardour_ui.cc:758 startup.cc:638 +#: ardour_ui.cc:438 +msgid "" +"The audio backend has either been shutdown or it\n" +"disconnected %1 because %1\n" +"was not fast enough. Try to restart\n" +"the audio backend and save the session." +msgstr "" + +#: ardour_ui.cc:758 +msgid "NSM server did not announce itself" +msgstr "" + +#: ardour_ui.cc:771 +msgid "NSM: no client ID provided" +msgstr "" + +#: ardour_ui.cc:778 +msgid "NSM: no session created" +msgstr "" + +#: ardour_ui.cc:801 +msgid "NSM: initialization failed" +msgstr "" + +#: ardour_ui.cc:840 startup.cc:379 msgid "%1 is ready for use" msgstr "%1 准备就绪" -#: ardour_ui.cc:823 +#: ardour_ui.cc:882 +msgid "" +"WARNING: Your system has a limit for maximum amount of locked memory. This " +"might cause %1 to run out of memory before your system runs out of memory. \n" +"\n" +"You can view the memory limit with 'ulimit -l', and it is normally " +"controlled by %2" +msgstr "" + +#: ardour_ui.cc:899 msgid "Do not show this window again" msgstr "ä¸å†æ˜¾ç¤ºæ­¤çª—å£" -#: ardour_ui.cc:865 +#: ardour_ui.cc:943 msgid "Don't quit" msgstr "ä¸é€€å‡º" -#: ardour_ui.cc:866 +#: ardour_ui.cc:944 msgid "Just quit" msgstr "ä¸ä¿å­˜è€Œé€€å‡º" -#: ardour_ui.cc:867 +#: ardour_ui.cc:945 msgid "Save and quit" msgstr "ä¿å­˜å¹¶é€€å‡º" -#: ardour_ui.cc:925 +#: ardour_ui.cc:955 +msgid "" +"%1 was unable to save your session.\n" +"\n" +"If you still wish to quit, please use the\n" +"\n" +"\"Just quit\" option." +msgstr "" + +#: ardour_ui.cc:986 +msgid "Please wait while %1 cleans up..." +msgstr "" + +#: ardour_ui.cc:1004 msgid "Unsaved Session" msgstr "未ä¿å­˜çš„会è¯" -#: ardour_ui.cc:946 +#: ardour_ui.cc:1025 msgid "" "The session \"%1\"\n" "has not been saved.\n" @@ -654,7 +766,7 @@ msgstr "" "\n" "你想干å—?" -#: ardour_ui.cc:949 +#: ardour_ui.cc:1028 msgid "" "The snapshot \"%1\"\n" "has not been saved.\n" @@ -671,66 +783,75 @@ msgstr "" "\n" "你想干å—?" -#: ardour_ui.cc:963 +#: ardour_ui.cc:1042 msgid "Prompter" msgstr "" -#: ardour_ui.cc:1049 -msgid "disconnected" -msgstr "å–æ¶ˆè¿žæŽ¥" - -#: ardour_ui.cc:1056 +#: ardour_ui.cc:1128 ardour_ui.cc:1136 #, c-format -msgid "JACK: %.1f kHz / %4.1f ms" +msgid "Audio: none" msgstr "" -#: ardour_ui.cc:1060 +#: ardour_ui.cc:1140 #, c-format -msgid "JACK: % kHz / %4.1f ms" +msgid "Audio: %.1f kHz / %4.1f ms" msgstr "" -#: ardour_ui.cc:1082 +#: ardour_ui.cc:1144 +#, c-format +msgid "Audio: % kHz / %4.1f ms" +msgstr "" + +#: ardour_ui.cc:1162 export_video_dialog.cc:67 +msgid "File:" +msgstr "" + +#: ardour_ui.cc:1166 msgid "BWF" msgstr "" -#: ardour_ui.cc:1088 +#: ardour_ui.cc:1169 +msgid "WAV" +msgstr "" + +#: ardour_ui.cc:1172 msgid "WAV64" msgstr "" -#: ardour_ui.cc:1091 session_option_editor.cc:197 +#: ardour_ui.cc:1175 session_option_editor.cc:197 msgid "CAF" msgstr "CAF" -#: ardour_ui.cc:1094 +#: ardour_ui.cc:1178 msgid "AIFF" msgstr "" -#: ardour_ui.cc:1097 +#: ardour_ui.cc:1181 msgid "iXML" msgstr "" -#: ardour_ui.cc:1100 +#: ardour_ui.cc:1184 msgid "RF64" msgstr "" -#: ardour_ui.cc:1108 +#: ardour_ui.cc:1192 msgid "32-float" msgstr "" -#: ardour_ui.cc:1111 +#: ardour_ui.cc:1195 msgid "24-int" msgstr "" -#: ardour_ui.cc:1114 +#: ardour_ui.cc:1198 msgid "16-int" msgstr "" -#: ardour_ui.cc:1133 +#: ardour_ui.cc:1217 #, c-format msgid "DSP: %5.1f%%" msgstr "" -#: ardour_ui.cc:1152 +#: ardour_ui.cc:1236 #, c-format msgid "" "Buffers: p:" @@ -738,54 +859,59 @@ msgid "" "\">%%%" msgstr "" -#: ardour_ui.cc:1188 +#: ardour_ui.cc:1277 msgid "Disk: Unknown" msgstr "" -#: ardour_ui.cc:1190 +#: ardour_ui.cc:1279 msgid "Disk: 24hrs+" msgstr "" -#: ardour_ui.cc:1208 +#: ardour_ui.cc:1297 msgid "Disk: >24 hrs" msgstr "" -#: ardour_ui.cc:1219 +#: ardour_ui.cc:1308 #, c-format msgid "Disk: %02dh:%02dm:%02ds" msgstr "" -#: ardour_ui.cc:1245 +#: ardour_ui.cc:1334 #, c-format msgid "Timecode|TC: %s" msgstr "" -#: ardour_ui.cc:1362 ardour_ui.cc:1371 startup.cc:1054 +#: ardour_ui.cc:1451 ardour_ui.cc:1460 session_dialog.cc:322 +#: session_dialog.cc:327 msgid "Recent Sessions" msgstr "最近的会è¯" -#: ardour_ui.cc:1451 +#: ardour_ui.cc:1539 msgid "" -"%1 is not connected to JACK\n" +"%1 is not connected to any audio backend.\n" "You cannot open or close sessions in this condition" msgstr "" -"%1 未连接到 JACK.\n" -"冿­¤æƒ…况下,你无法打开或关闭会è¯" -#: ardour_ui.cc:1478 +#: ardour_ui.cc:1563 msgid "Open Session" msgstr "打开会è¯" -#: ardour_ui.cc:1503 session_import_dialog.cc:169 -#: session_metadata_dialog.cc:729 startup.cc:1083 +#: ardour_ui.cc:1588 session_dialog.cc:353 session_import_dialog.cc:169 +#: session_metadata_dialog.cc:729 msgid "%1 sessions" msgstr "%1 会è¯" -#: ardour_ui.cc:1540 +#: ardour_ui.cc:1625 msgid "You cannot add a track without a session already loaded." msgstr "您åªèƒ½åœ¨å·²è½½å…¥çš„会è¯ä¸­æ·»åŠ éŸ³è½¨" -#: ardour_ui.cc:1554 ardour_ui.cc:1615 +#: ardour_ui.cc:1633 +msgid "could not create %1 new mixed track" +msgid_plural "could not create %1 new mixed tracks" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1639 ardour_ui.cc:1700 msgid "" "There are insufficient JACK ports available\n" "to create a new track or bus.\n" @@ -796,69 +922,74 @@ msgstr "" "无法继续新建音轨或总线\n" "请ä¿å­˜ %1ï¼Œé‡æ–°å¯åЍJACKå¸¦æ¥æ›´å¤šçš„端å£.\n" -#: ardour_ui.cc:1589 +#: ardour_ui.cc:1674 msgid "You cannot add a track or bus without a session already loaded." msgstr "您åªèƒ½åœ¨å·²è½½å…¥çš„ä¼šè¯æˆ–总线中添加音轨和总线" -#: ardour_ui.cc:2114 +#: ardour_ui.cc:1683 +msgid "could not create %1 new audio track" +msgid_plural "could not create %1 new audio tracks" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1692 +msgid "could not create %1 new audio bus" +msgid_plural "could not create %1 new audio busses" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:1816 msgid "" -"The audio backend (JACK) was shutdown because:\n" -"\n" -"%1" +"Please create one or more tracks before trying to record.\n" +"You can do this with the \"Add Track or Bus\" option in the Session menu." msgstr "" -"音频åŽå°(JACK)关闭了,原因如下:\n" -"\n" -"%1" -#: ardour_ui.cc:2116 -msgid "" -"JACK has either been shutdown or it\n" -"disconnected %1 because %1\n" -"was not fast enough. Try to restart\n" -"JACK, reconnect and save the session." -msgstr "" -"JACK 被关闭了,或与 %1 失去了连接\n" -"原因是 %1 ä¸å¤Ÿå¿«.\n" -"å°è¯•é‡å¯JACKï¼Œé‡æ–°è¿žæŽ¥å¹¶ä¸”ä¿å­˜ä¼šè¯." - -#: ardour_ui.cc:2142 -msgid "Unable to start the session running" -msgstr "无法å¯åŠ¨ä¼šè¯" - -#: ardour_ui.cc:2222 +#: ardour_ui.cc:2193 msgid "Take Snapshot" msgstr "å¿«ç…§" -#: ardour_ui.cc:2223 +#: ardour_ui.cc:2194 msgid "Name of new snapshot" msgstr "新建快照的åç§°" -#: ardour_ui.cc:2259 +#: ardour_ui.cc:2218 +msgid "" +"To ensure compatibility with various systems\n" +"snapshot names may not contain a '%1' character" +msgstr "" + +#: ardour_ui.cc:2230 msgid "Confirm Snapshot Overwrite" msgstr "确定覆盖快照" -#: ardour_ui.cc:2260 +#: ardour_ui.cc:2231 msgid "A snapshot already exists with that name. Do you want to overwrite it?" msgstr "已存在åŒåå¿«ç…§. 覆盖之?" -#: ardour_ui.cc:2263 utils_videotl.cc:67 +#: ardour_ui.cc:2234 utils_videotl.cc:67 msgid "Overwrite" msgstr "覆盖" -#: ardour_ui.cc:2297 +#: ardour_ui.cc:2268 msgid "Rename Session" msgstr "é‡å‘½å会è¯" -#: ardour_ui.cc:2298 +#: ardour_ui.cc:2269 msgid "New session name" msgstr "新建快照的åç§°" -#: ardour_ui.cc:2320 +#: ardour_ui.cc:2283 ardour_ui.cc:2684 ardour_ui.cc:2722 +msgid "" +"To ensure compatibility with various systems\n" +"session names may not contain a '%1' character" +msgstr "" + +#: ardour_ui.cc:2291 msgid "" "That name is already in use by another directory/folder. Please try again." msgstr "æ­¤å称已被å¦ä¸€ä¸ªæ–‡ä»¶å¤¹ä½¿ç”¨. 请å†å°è¯•一é." -#: ardour_ui.cc:2329 +#: ardour_ui.cc:2300 msgid "" "Renaming this session failed.\n" "Things could be seriously messed up at this point" @@ -866,19 +997,19 @@ msgstr "" "é‡å‘½å会è¯å¤±è´¥.\n" "从现在开始事情将会å˜å¾—乱七八糟" -#: ardour_ui.cc:2440 +#: ardour_ui.cc:2411 msgid "Save Template" msgstr "ä¿å­˜æ¨¡æ¿..." -#: ardour_ui.cc:2441 +#: ardour_ui.cc:2412 msgid "Name for template:" msgstr "模æ¿å:" -#: ardour_ui.cc:2442 +#: ardour_ui.cc:2413 msgid "-template" msgstr "-模æ¿" -#: ardour_ui.cc:2480 +#: ardour_ui.cc:2451 msgid "" "This session\n" "%1\n" @@ -888,52 +1019,59 @@ msgstr "" "%1\n" "已存在. 打开它?" -#: ardour_ui.cc:2490 +#: ardour_ui.cc:2461 msgid "Open Existing Session" msgstr "打开已存在的会è¯" -#: ardour_ui.cc:2728 +#: ardour_ui.cc:2712 msgid "There is no existing session at \"%1\"" msgstr " \"%1\" æ²¡æœ‰ä¼šè¯æ–‡ä»¶" -#: ardour_ui.cc:2815 +#: ardour_ui.cc:2804 msgid "Please wait while %1 loads your session" msgstr "请等待 %1 载入会è¯" -#: ardour_ui.cc:2830 +#: ardour_ui.cc:2819 msgid "Port Registration Error" msgstr "端å£(port)注册错误" -#: ardour_ui.cc:2831 +#: ardour_ui.cc:2820 msgid "Click the Close button to try again." msgstr "å•击关闭按钮,å†å°è¯•一é" -#: ardour_ui.cc:2852 +#: ardour_ui.cc:2841 msgid "Session \"%1 (snapshot %2)\" did not load successfully" msgstr "ä¼šè¯ \"%1 (å¿«ç…§ %2)\" 装载失败." -#: ardour_ui.cc:2858 +#: ardour_ui.cc:2848 msgid "Loading Error" msgstr "装载错误" -#: ardour_ui.cc:2859 -msgid "Click the Refresh button to try again." -msgstr "å•击刷新按钮,å†å°è¯•一é" +#: ardour_ui.cc:2867 +msgid "" +"This session has been opened in read-only mode.\n" +"\n" +"You will not be able to record or save." +msgstr "" -#: ardour_ui.cc:2941 +#: ardour_ui.cc:2873 +msgid "Read-only Session" +msgstr "" + +#: ardour_ui.cc:2931 msgid "Could not create session in \"%1\"" msgstr "在 \"%1\" 无法创建会è¯" -#: ardour_ui.cc:3041 +#: ardour_ui.cc:3031 msgid "No files were ready for clean-up" msgstr "没有å¯ä»¥æ¸…空的文件" -#: ardour_ui.cc:3045 ardour_ui.cc:3055 ardour_ui.cc:3188 ardour_ui.cc:3195 +#: ardour_ui.cc:3035 ardour_ui.cc:3045 ardour_ui.cc:3178 ardour_ui.cc:3185 #: ardour_ui_ed.cc:104 msgid "Clean-up" msgstr "清空" -#: ardour_ui.cc:3046 +#: ardour_ui.cc:3036 msgid "" "If this seems suprising, \n" "check for any existing snapshots.\n" @@ -941,23 +1079,55 @@ msgid "" "require some unused files to continue to exist." msgstr "" -#: ardour_ui.cc:3105 +#: ardour_ui.cc:3095 msgid "kilo" msgstr "" -#: ardour_ui.cc:3108 +#: ardour_ui.cc:3098 msgid "mega" msgstr "" -#: ardour_ui.cc:3111 +#: ardour_ui.cc:3101 msgid "giga" msgstr "" -#: ardour_ui.cc:3183 +#: ardour_ui.cc:3106 +msgid "" +"The following file was deleted from %2,\n" +"releasing %3 %4bytes of disk space" +msgid_plural "" +"The following %1 files were deleted from %2,\n" +"releasing %3 %4bytes of disk space" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:3113 +msgid "" +"The following file was not in use and \n" +"has been moved to: %2\n" +"\n" +"After a restart of %5\n" +"\n" +"Session -> Clean-up -> Flush Wastebasket\n" +"\n" +"will release an additional %3 %4bytes of disk space.\n" +msgid_plural "" +"The following %1 files were not in use and \n" +"have been moved to: %2\n" +"\n" +"After a restart of %5\n" +"\n" +"Session -> Clean-up -> Flush Wastebasket\n" +"\n" +"will release an additional %3 %4bytes of disk space.\n" +msgstr[0] "" +msgstr[1] "" + +#: ardour_ui.cc:3173 msgid "Are you sure you want to clean-up?" msgstr "您确认è¦åˆ é™¤è¿™äº›æ–‡ä»¶å—" -#: ardour_ui.cc:3190 +#: ardour_ui.cc:3180 msgid "" "Clean-up is a destructive operation.\n" "ALL undo/redo information will be lost if you clean-up.\n" @@ -967,76 +1137,80 @@ msgstr "" "如果你清空了, 所有的撤销/é‡å¤ä¿¡æ¯å°†ä¼šä¸¢å¤±.\n" "清空将会把所有未使用过的文件弄到 \"死亡\" ä½ç½®" -#: ardour_ui.cc:3198 +#: ardour_ui.cc:3188 msgid "CleanupDialog" msgstr "æ¸…ç©ºå¯¹è¯æ¡†" -#: ardour_ui.cc:3228 +#: ardour_ui.cc:3218 msgid "Cleaned Files" msgstr "清除文件" -#: ardour_ui.cc:3245 +#: ardour_ui.cc:3235 msgid "deleted file" msgstr "删除文件" -#: ardour_ui.cc:3337 +#: ardour_ui.cc:3381 msgid "" "Video-Server was not launched by Ardour. The request to stop it is ignored." msgstr "" -#: ardour_ui.cc:3341 +#: ardour_ui.cc:3385 msgid "Stop Video-Server" msgstr "" -#: ardour_ui.cc:3342 +#: ardour_ui.cc:3386 msgid "Do you really want to stop the Video Server?" msgstr "" -#: ardour_ui.cc:3371 +#: ardour_ui.cc:3389 +msgid "Yes, Stop It" +msgstr "" + +#: ardour_ui.cc:3415 msgid "The Video Server is already started." msgstr "" -#: ardour_ui.cc:3373 +#: ardour_ui.cc:3417 msgid "" "An external Video Server is configured and can be reached. Not starting a " "new instance." msgstr "" -#: ardour_ui.cc:3381 ardour_ui.cc:3471 +#: ardour_ui.cc:3425 ardour_ui.cc:3515 msgid "" "Could not connect to the Video Server. Start it or configure its access URL " "in Edit -> Preferences." msgstr "" -#: ardour_ui.cc:3405 +#: ardour_ui.cc:3449 msgid "Specified docroot is not an existing directory." msgstr "" -#: ardour_ui.cc:3410 +#: ardour_ui.cc:3454 msgid "Given Video Server is not an executable file." msgstr "" -#: ardour_ui.cc:3443 +#: ardour_ui.cc:3487 msgid "Cannot launch the video-server" msgstr "" -#: ardour_ui.cc:3452 +#: ardour_ui.cc:3496 msgid "Video-server was started but does not respond to requests..." msgstr "" -#: ardour_ui.cc:3497 editor_audio_import.cc:632 +#: ardour_ui.cc:3541 editor_audio_import.cc:632 msgid "could not open %1" msgstr "无法打开%1" -#: ardour_ui.cc:3501 +#: ardour_ui.cc:3545 msgid "no video-file selected" msgstr "" -#: ardour_ui.cc:3673 +#: ardour_ui.cc:3717 msgid "Recording was stopped because your system could not keep up." msgstr "您的系统无法继续, å½•éŸ³åœæ­¢." -#: ardour_ui.cc:3702 +#: ardour_ui.cc:3746 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1049,7 +1223,7 @@ msgstr "" "\n" "确切地说, ç£ç›˜çš„读写速度无法跟上录音速度\n" -#: ardour_ui.cc:3721 +#: ardour_ui.cc:3765 msgid "" "The disk system on your computer\n" "was not able to keep up with %1.\n" @@ -1062,39 +1236,57 @@ msgstr "" "\n" "确切地说, ç£ç›˜çš„读写速度无法跟上播放速度\n" -#: ardour_ui.cc:3761 +#: ardour_ui.cc:3805 msgid "Crash Recovery" msgstr "崩溃æ¢å¤" -#: ardour_ui.cc:3774 +#: ardour_ui.cc:3806 +msgid "" +"This session appears to have been in the\n" +"middle of recording when %1 or\n" +"the computer was shutdown.\n" +"\n" +"%1 can recover any captured audio for\n" +"you, or it can ignore it. Please decide\n" +"what you would like to do.\n" +msgstr "" + +#: ardour_ui.cc:3818 msgid "Ignore crash data" msgstr "忽略崩æ¯çš„æ•°æ®" -#: ardour_ui.cc:3775 +#: ardour_ui.cc:3819 msgid "Recover from crash" msgstr "æ¢å¤åˆ°å´©æºƒå‰" -#: ardour_ui.cc:3795 +#: ardour_ui.cc:3839 msgid "Sample Rate Mismatch" msgstr "采样率ä¸åŒ¹é…" -#: ardour_ui.cc:3805 +#: ardour_ui.cc:3840 +msgid "" +"This session was created with a sample rate of %1 Hz, but\n" +"%2 is currently running at %3 Hz. If you load this session,\n" +"audio may be played at the wrong sample rate.\n" +msgstr "" + +#: ardour_ui.cc:3849 msgid "Do not load session" msgstr "ä¸è¦è£…载会è¯" -#: ardour_ui.cc:3806 +#: ardour_ui.cc:3850 msgid "Load session anyway" msgstr "转载会è¯" -#: ardour_ui.cc:3829 -msgid "Could not disconnect from JACK" -msgstr "无法断开JACK的连接" +#: ardour_ui.cc:3877 +msgid "Could not disconnect from Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:3842 -msgid "Could not reconnect to JACK" -msgstr "æ— æ³•é‡æ–°è¿žæŽ¥åˆ°JACK" +#: ardour_ui.cc:3893 ardour_ui.cc:3896 +msgid "Could not reconnect to the Audio/MIDI engine" +msgstr "" -#: ardour_ui.cc:4116 +#: ardour_ui.cc:4172 msgid "" "%4This is a session from an older version of %3%5\n" "\n" @@ -1117,6 +1309,10 @@ msgstr "用户界é¢: 无法设置编辑器." msgid "UI: cannot setup mixer" msgstr "用户界é¢: 无法设置混音器." +#: ardour_ui2.cc:82 +msgid "UI: cannot setup meterbridge" +msgstr "" + #: ardour_ui2.cc:130 msgid "Play from playhead" msgstr "从播放头播放" @@ -1155,6 +1351,10 @@ msgstr "" msgid "Return to last playback start when stopped" msgstr "å½“åœæ­¢æ—¶è¿”回至最åŽä¸€æ¬¡å›žæ”¾èµ·ç‚¹" +#: ardour_ui2.cc:139 +msgid "Playhead follows Range Selections and Edits" +msgstr "" + #: ardour_ui2.cc:140 msgid "Be sensible about input monitoring" msgstr "" @@ -1197,6 +1397,10 @@ msgid "" "confirm; postfix the edit with '+' or '-' to enter delta times.\n" msgstr "" +#: ardour_ui2.cc:147 +msgid "Reset Level Meter" +msgstr "" + #: ardour_ui2.cc:179 msgid "[ERROR]: " msgstr "[错误]:" @@ -1209,51 +1413,51 @@ msgstr "[警告]:" msgid "[INFO]: " msgstr "[ä¿¡æ¯]: " -#: ardour_ui2.cc:247 ardour_ui_ed.cc:377 +#: ardour_ui2.cc:247 ardour_ui_ed.cc:344 msgid "Auto Return" msgstr "自动返回" -#: ardour_ui2.cc:249 ardour_ui_ed.cc:380 +#: ardour_ui2.cc:249 ardour_ui_ed.cc:347 msgid "Follow Edits" msgstr "" -#: ardour_ui2.cc:628 rc_option_editor.cc:1004 rc_option_editor.cc:1022 -#: rc_option_editor.cc:1025 rc_option_editor.cc:1027 rc_option_editor.cc:1029 -#: rc_option_editor.cc:1037 rc_option_editor.cc:1045 rc_option_editor.cc:1047 -#: rc_option_editor.cc:1055 rc_option_editor.cc:1062 rc_option_editor.cc:1071 -#: rc_option_editor.cc:1073 rc_option_editor.cc:1075 rc_option_editor.cc:1083 -#: rc_option_editor.cc:1085 rc_option_editor.cc:1094 +#: ardour_ui2.cc:628 rc_option_editor.cc:1002 rc_option_editor.cc:1020 +#: rc_option_editor.cc:1023 rc_option_editor.cc:1025 rc_option_editor.cc:1027 +#: rc_option_editor.cc:1035 rc_option_editor.cc:1043 rc_option_editor.cc:1045 +#: rc_option_editor.cc:1053 rc_option_editor.cc:1060 rc_option_editor.cc:1069 +#: rc_option_editor.cc:1071 rc_option_editor.cc:1073 rc_option_editor.cc:1081 +#: rc_option_editor.cc:1083 rc_option_editor.cc:1092 #: session_option_editor.cc:234 session_option_editor.cc:236 #: session_option_editor.cc:257 session_option_editor.cc:259 #: session_option_editor.cc:261 session_option_editor.cc:268 msgid "Misc" msgstr "æ‚项" -#: ardour_ui_dependents.cc:77 +#: ardour_ui_dependents.cc:69 msgid "Setup Editor" msgstr "设置编辑器" -#: ardour_ui_dependents.cc:79 +#: ardour_ui_dependents.cc:71 msgid "Setup Mixer" msgstr "设置混音器" -#: ardour_ui_dependents.cc:85 +#: ardour_ui_dependents.cc:77 msgid "Reload Session History" msgstr "釿–°è£…摘会è¯åކå²" -#: ardour_ui_dialogs.cc:242 +#: ardour_ui_dialogs.cc:238 msgid "Don't close" msgstr "别关闭" -#: ardour_ui_dialogs.cc:243 +#: ardour_ui_dialogs.cc:239 msgid "Just close" msgstr "ä¸ä¿å­˜è€Œå…³é—­" -#: ardour_ui_dialogs.cc:244 +#: ardour_ui_dialogs.cc:240 msgid "Save and close" msgstr "ä¿å­˜å¹¶å…³é—­" -#: ardour_ui_dialogs.cc:340 +#: ardour_ui_dialogs.cc:339 msgid "This screen is not tall enough to display the mixer window" msgstr "" @@ -1262,11 +1466,11 @@ msgid "Session" msgstr "会è¯" #: ardour_ui_ed.cc:106 editor_actions.cc:134 editor_regions.cc:115 -#: port_group.cc:457 session_option_editor.cc:82 session_option_editor.cc:89 +#: port_group.cc:458 session_option_editor.cc:82 session_option_editor.cc:89 msgid "Sync" msgstr "åŒæ­¥" -#: ardour_ui_ed.cc:107 engine_dialog.cc:369 +#: ardour_ui_ed.cc:107 msgid "Options" msgstr "选项" @@ -1294,15 +1498,15 @@ msgstr "文件类型" msgid "Sample Format" msgstr "采样格å¼" -#: ardour_ui_ed.cc:114 rc_option_editor.cc:1826 rc_option_editor.cc:1839 +#: ardour_ui_ed.cc:114 rc_option_editor.cc:1814 rc_option_editor.cc:1826 msgid "Control Surfaces" msgstr "控制表é¢" -#: ardour_ui_ed.cc:115 rc_option_editor.cc:1558 +#: ardour_ui_ed.cc:115 rc_option_editor.cc:1546 msgid "Plugins" msgstr "æ’ä»¶" -#: ardour_ui_ed.cc:116 rc_option_editor.cc:1902 +#: ardour_ui_ed.cc:116 rc_option_editor.cc:1889 msgid "Metering" msgstr "" @@ -1338,6 +1542,18 @@ msgstr "关闭" msgid "Add Track or Bus..." msgstr "添加音轨或总线..." +#: ardour_ui_ed.cc:135 +msgid "Open Video" +msgstr "" + +#: ardour_ui_ed.cc:138 +msgid "Remove Video" +msgstr "" + +#: ardour_ui_ed.cc:141 +msgid "Export To Video File" +msgstr "" + #: ardour_ui_ed.cc:145 msgid "Snapshot..." msgstr "å¿«ç…§..." @@ -1376,7 +1592,7 @@ msgid "Stem export..." msgstr "" #: ardour_ui_ed.cc:175 editor_export_audio.cc:63 export_dialog.cc:129 -#: export_video_dialog.cc:72 +#: export_video_dialog.cc:71 msgid "Export" msgstr "导出" @@ -1388,146 +1604,153 @@ msgstr "清空未使用的æº..." msgid "Flush Wastebasket" msgstr "清空回收站" -#: ardour_ui_ed.cc:189 keyeditor.cc:253 rc_option_editor.cc:1472 -msgid "JACK" -msgstr "JACK" - -#: ardour_ui_ed.cc:190 route_params_ui.cc:105 -msgid "Latency" -msgstr "延迟" - -#: ardour_ui_ed.cc:192 -msgid "Reconnect" -msgstr "釿–°é“¾æŽ¥" - -#: ardour_ui_ed.cc:195 global_port_matrix.cc:207 io_selector.cc:210 -#: mixer_strip.cc:719 mixer_strip.cc:845 -msgid "Disconnect" -msgstr "å–æ¶ˆè¿žæŽ¥" - -#: ardour_ui_ed.cc:222 +#: ardour_ui_ed.cc:189 msgid "Quit" msgstr "退出" -#: ardour_ui_ed.cc:226 +#: ardour_ui_ed.cc:193 msgid "Maximise Editor Space" msgstr "最大化编辑空间" -#: ardour_ui_ed.cc:234 midi_tracer.cc:39 +#: ardour_ui_ed.cc:194 +msgid "Show Toolbars" +msgstr "" + +#: ardour_ui_ed.cc:197 mixer_ui.cc:1865 mixer_ui.cc:1871 +msgid "Window|Mixer" +msgstr "" + +#: ardour_ui_ed.cc:198 +msgid "Toggle Editor+Mixer" +msgstr "" + +#: ardour_ui_ed.cc:199 meterbridge.cc:230 meterbridge.cc:236 +msgid "Window|Meterbridge" +msgstr "" + +#: ardour_ui_ed.cc:201 midi_tracer.cc:42 msgid "MIDI Tracer" msgstr "MIDI示踪" -#: ardour_ui_ed.cc:236 +#: ardour_ui_ed.cc:203 msgid "Chat" msgstr "èŠå¤©" -#: ardour_ui_ed.cc:239 +#: ardour_ui_ed.cc:205 +msgid "Help|Manual" +msgstr "" + +#: ardour_ui_ed.cc:206 msgid "Reference" msgstr "å‚考" -#: ardour_ui_ed.cc:241 plugin_ui.cc:418 +#: ardour_ui_ed.cc:208 plugin_ui.cc:415 msgid "Save" msgstr "ä¿å­˜" -#: ardour_ui_ed.cc:249 rc_option_editor.cc:1114 rc_option_editor.cc:1125 -#: rc_option_editor.cc:1134 rc_option_editor.cc:1147 rc_option_editor.cc:1160 -#: rc_option_editor.cc:1169 rc_option_editor.cc:1179 rc_option_editor.cc:1181 -#: rc_option_editor.cc:1191 rc_option_editor.cc:1207 rc_option_editor.cc:1220 -#: rc_option_editor.cc:1238 rc_option_editor.cc:1240 rc_option_editor.cc:1254 -#: rc_option_editor.cc:1257 rc_option_editor.cc:1259 rc_option_editor.cc:1276 -#: rc_option_editor.cc:1287 +#: ardour_ui_ed.cc:216 rc_option_editor.cc:1112 rc_option_editor.cc:1123 +#: rc_option_editor.cc:1132 rc_option_editor.cc:1145 rc_option_editor.cc:1158 +#: rc_option_editor.cc:1167 rc_option_editor.cc:1177 rc_option_editor.cc:1179 +#: rc_option_editor.cc:1189 rc_option_editor.cc:1205 rc_option_editor.cc:1218 +#: rc_option_editor.cc:1236 rc_option_editor.cc:1238 rc_option_editor.cc:1252 +#: rc_option_editor.cc:1255 rc_option_editor.cc:1257 rc_option_editor.cc:1274 +#: rc_option_editor.cc:1285 msgid "Transport" msgstr "" -#: ardour_ui_ed.cc:255 engine_dialog.cc:85 +#: ardour_ui_ed.cc:222 msgid "Stop" msgstr "æš‚åœ" -#: ardour_ui_ed.cc:258 +#: ardour_ui_ed.cc:225 msgid "Roll" msgstr "" -#: ardour_ui_ed.cc:262 +#: ardour_ui_ed.cc:229 msgid "Start/Stop" msgstr "开始/æš‚åœ" -#: ardour_ui_ed.cc:265 +#: ardour_ui_ed.cc:232 msgid "Start/Continue/Stop" msgstr "开始/ç»§ç»­/æš‚åœ" -#: ardour_ui_ed.cc:268 +#: ardour_ui_ed.cc:235 msgid "Stop and Forget Capture" msgstr "æš‚åœå¹¶åºŸå¼ƒå½•音" -#: ardour_ui_ed.cc:278 +#: ardour_ui_ed.cc:245 msgid "Transition To Roll" msgstr "" -#: ardour_ui_ed.cc:282 +#: ardour_ui_ed.cc:249 msgid "Transition To Reverse" msgstr "" -#: ardour_ui_ed.cc:286 +#: ardour_ui_ed.cc:253 msgid "Play Loop Range" msgstr "循环播放范围" -#: ardour_ui_ed.cc:289 +#: ardour_ui_ed.cc:256 msgid "Play Selected Range" msgstr "播放已选择的范围" -#: ardour_ui_ed.cc:296 +#: ardour_ui_ed.cc:259 +msgid "Play Selection w/Preroll" +msgstr "" + +#: ardour_ui_ed.cc:263 msgid "Enable Record" msgstr "å¯ç”¨å½•音" -#: ardour_ui_ed.cc:299 +#: ardour_ui_ed.cc:266 msgid "Start Recording" msgstr "开始录音" -#: ardour_ui_ed.cc:303 +#: ardour_ui_ed.cc:270 msgid "Rewind" msgstr "倒带" -#: ardour_ui_ed.cc:306 +#: ardour_ui_ed.cc:273 msgid "Rewind (Slow)" msgstr "倒带(慢速)" -#: ardour_ui_ed.cc:309 +#: ardour_ui_ed.cc:276 msgid "Rewind (Fast)" msgstr "倒带(快速)" -#: ardour_ui_ed.cc:312 startup.cc:727 +#: ardour_ui_ed.cc:279 msgid "Forward" msgstr "å¿«è¿›" -#: ardour_ui_ed.cc:315 +#: ardour_ui_ed.cc:282 msgid "Forward (Slow)" msgstr "å¿«è¿›(慢速)" -#: ardour_ui_ed.cc:318 +#: ardour_ui_ed.cc:285 msgid "Forward (Fast)" msgstr "倒带(快速)" -#: ardour_ui_ed.cc:321 +#: ardour_ui_ed.cc:288 msgid "Goto Zero" msgstr "转到零点" -#: ardour_ui_ed.cc:324 +#: ardour_ui_ed.cc:291 msgid "Goto Start" msgstr "转到起始ä½ç½®" -#: ardour_ui_ed.cc:327 +#: ardour_ui_ed.cc:294 msgid "Goto End" msgstr "转到末尾ä½ç½®" -#: ardour_ui_ed.cc:330 +#: ardour_ui_ed.cc:297 msgid "Goto Wall Clock" msgstr "转到确切的本地时间" -#: ardour_ui_ed.cc:334 +#: ardour_ui_ed.cc:301 msgid "Focus On Clock" msgstr "é”定时间指针" -#: ardour_ui_ed.cc:338 ardour_ui_ed.cc:347 audio_clock.cc:2046 editor.cc:237 +#: ardour_ui_ed.cc:305 ardour_ui_ed.cc:314 audio_clock.cc:2046 editor.cc:237 #: editor_actions.cc:544 editor_actions.cc:553 export_timespan_selector.cc:88 #: session_option_editor.cc:41 session_option_editor.cc:61 #: session_option_editor.cc:80 session_option_editor.cc:96 @@ -1536,142 +1759,146 @@ msgstr "é”定时间指针" msgid "Timecode" msgstr "æ—¶é—´ç " -#: ardour_ui_ed.cc:340 ardour_ui_ed.cc:349 editor_actions.cc:542 +#: ardour_ui_ed.cc:307 ardour_ui_ed.cc:316 editor_actions.cc:542 msgid "Bars & Beats" msgstr "å°èŠ‚ & æ‹å­" -#: ardour_ui_ed.cc:342 ardour_ui_ed.cc:351 +#: ardour_ui_ed.cc:309 ardour_ui_ed.cc:318 msgid "Minutes & Seconds" msgstr "分&ç§’" -#: ardour_ui_ed.cc:344 ardour_ui_ed.cc:353 audio_clock.cc:2050 editor.cc:238 +#: ardour_ui_ed.cc:311 ardour_ui_ed.cc:320 audio_clock.cc:2050 editor.cc:238 #: editor_actions.cc:543 msgid "Samples" msgstr "采样" -#: ardour_ui_ed.cc:356 +#: ardour_ui_ed.cc:323 msgid "Punch In" msgstr "切入" -#: ardour_ui_ed.cc:357 mixer_strip.cc:1905 route_ui.cc:137 +#: ardour_ui_ed.cc:324 mixer_strip.cc:1905 route_ui.cc:137 #: time_info_box.cc:113 msgid "In" msgstr "" -#: ardour_ui_ed.cc:360 +#: ardour_ui_ed.cc:327 msgid "Punch Out" msgstr "切出" -#: ardour_ui_ed.cc:361 time_info_box.cc:114 +#: ardour_ui_ed.cc:328 time_info_box.cc:114 msgid "Out" msgstr "ýstup" -#: ardour_ui_ed.cc:364 +#: ardour_ui_ed.cc:331 msgid "Punch In/Out" msgstr "切入/切出" -#: ardour_ui_ed.cc:365 +#: ardour_ui_ed.cc:332 msgid "In/Out" msgstr "å…¥/出" -#: ardour_ui_ed.cc:368 rc_option_editor.cc:1071 +#: ardour_ui_ed.cc:335 rc_option_editor.cc:1069 msgid "Click" msgstr "点击" -#: ardour_ui_ed.cc:371 +#: ardour_ui_ed.cc:338 msgid "Auto Input" msgstr "自动输入" -#: ardour_ui_ed.cc:374 +#: ardour_ui_ed.cc:341 msgid "Auto Play" msgstr "自动播放" -#: ardour_ui_ed.cc:385 +#: ardour_ui_ed.cc:352 msgid "Sync Startup to Video" msgstr "åŒæ­¥å¯åŠ¨åˆ°è§†é¢‘" -#: ardour_ui_ed.cc:387 +#: ardour_ui_ed.cc:354 msgid "Time Master" msgstr "时间主控" -#: ardour_ui_ed.cc:394 +#: ardour_ui_ed.cc:361 msgid "Toggle Record Enable Track %1" msgstr "" -#: ardour_ui_ed.cc:401 +#: ardour_ui_ed.cc:368 msgid "Percentage" msgstr "百分比" -#: ardour_ui_ed.cc:402 shuttle_control.cc:169 +#: ardour_ui_ed.cc:369 shuttle_control.cc:169 msgid "Semitones" msgstr "åŠéŸ³" -#: ardour_ui_ed.cc:406 +#: ardour_ui_ed.cc:373 msgid "Send MTC" msgstr "å‘é€MTC" -#: ardour_ui_ed.cc:408 +#: ardour_ui_ed.cc:375 msgid "Send MMC" msgstr "å‘é€MMC" -#: ardour_ui_ed.cc:410 +#: ardour_ui_ed.cc:377 msgid "Use MMC" msgstr "使用MMC" -#: ardour_ui_ed.cc:412 rc_option_editor.cc:1710 +#: ardour_ui_ed.cc:379 rc_option_editor.cc:1698 msgid "Send MIDI Clock" msgstr "å‘é€MIDIæ—¶é’Ÿ" -#: ardour_ui_ed.cc:414 +#: ardour_ui_ed.cc:381 msgid "Send MIDI Feedback" msgstr "å‘é€MIDIå馈" -#: ardour_ui_ed.cc:420 +#: ardour_ui_ed.cc:387 msgid "Panic" msgstr "" -#: ardour_ui_ed.cc:560 +#: ardour_ui_ed.cc:472 msgid "Wall Clock" msgstr "本地时间" -#: ardour_ui_ed.cc:561 +#: ardour_ui_ed.cc:473 msgid "Disk Space" msgstr "盘空间" -#: ardour_ui_ed.cc:562 +#: ardour_ui_ed.cc:474 msgid "DSP" msgstr "æ•°å­—ä¿¡å·å¤„ç†" -#: ardour_ui_ed.cc:563 +#: ardour_ui_ed.cc:475 msgid "Buffers" msgstr "缓冲" -#: ardour_ui_ed.cc:564 -msgid "JACK Sampling Rate and Latency" -msgstr "JACK采样率和延迟" +#: ardour_ui_ed.cc:477 +msgid "Timecode Format" +msgstr "" -#: ardour_ui_ed.cc:566 +#: ardour_ui_ed.cc:478 msgid "File Format" msgstr "文件格å¼" -#: ardour_ui_options.cc:65 +#: ardour_ui_options.cc:61 msgid "" "It is not possible to use JACK as the the sync source\n" "when the pull up/down setting is non-zero." msgstr "" -#: ardour_ui_options.cc:321 +#: ardour_ui_options.cc:317 msgid "Internal" msgstr "内部的" -#: ardour_ui_options.cc:482 +#: ardour_ui_options.cc:468 msgid "Enable/Disable external positional sync" msgstr "å¯ç”¨/ç¦ç”¨å¤–部ä½ç½®åŒæ­¥" -#: ardour_ui_options.cc:484 +#: ardour_ui_options.cc:470 msgid "Sync to JACK is not possible: video pull up/down is set" msgstr "" +#: audio_clock.cc:1012 audio_clock.cc:1031 +msgid "--pending--" +msgstr "" + #: audio_clock.cc:1083 msgid "SR" msgstr "" @@ -1701,6 +1928,10 @@ msgstr "标尺" msgid "programming error: %1" msgstr "程åºé”™è¯¯: %1" +#: audio_clock.cc:1952 audio_clock.cc:1980 +msgid "programming error: %1 %2" +msgstr "" + #: audio_clock.cc:2048 editor.cc:236 export_timespan_selector.cc:98 msgid "Bars:Beats" msgstr "å°èŠ‚:æ‹å­" @@ -1778,27 +2009,33 @@ msgstr "自动化状æ€" msgid "hide track" msgstr "éšè—音轨" +#: automation_time_axis.cc:255 automation_time_axis.cc:307 +#: automation_time_axis.cc:496 gain_meter.cc:194 generic_pluginui.cc:454 +#: generic_pluginui.cc:775 panner_ui.cc:149 +msgid "Automation|Manual" +msgstr "" + #: automation_time_axis.cc:257 automation_time_axis.cc:318 -#: automation_time_axis.cc:501 editor.cc:1933 editor.cc:2010 -#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:198 -#: generic_pluginui.cc:459 generic_pluginui.cc:748 midi_time_axis.cc:1488 -#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:153 +#: automation_time_axis.cc:501 editor.cc:1937 editor.cc:2014 +#: editor_actions.cc:118 editor_actions.cc:1865 gain_meter.cc:197 +#: generic_pluginui.cc:457 generic_pluginui.cc:777 midi_time_axis.cc:1488 +#: midi_time_axis.cc:1491 midi_time_axis.cc:1494 panner_ui.cc:152 msgid "Play" msgstr "播放" #: automation_time_axis.cc:259 automation_time_axis.cc:329 -#: automation_time_axis.cc:506 gain_meter.cc:201 generic_pluginui.cc:462 -#: generic_pluginui.cc:750 panner_ui.cc:156 +#: automation_time_axis.cc:506 gain_meter.cc:200 generic_pluginui.cc:460 +#: generic_pluginui.cc:779 panner_ui.cc:155 msgid "Write" msgstr "" #: automation_time_axis.cc:261 automation_time_axis.cc:340 -#: automation_time_axis.cc:511 gain_meter.cc:204 generic_pluginui.cc:465 -#: generic_pluginui.cc:752 panner_ui.cc:159 +#: automation_time_axis.cc:511 gain_meter.cc:203 generic_pluginui.cc:463 +#: generic_pluginui.cc:781 panner_ui.cc:158 msgid "Touch" msgstr "" -#: automation_time_axis.cc:351 generic_pluginui.cc:468 meter_patterns.cc:108 +#: automation_time_axis.cc:351 generic_pluginui.cc:466 meter_patterns.cc:108 msgid "???" msgstr "???" @@ -1823,8 +2060,8 @@ msgstr "状æ€" msgid "Discrete" msgstr "离散" -#: automation_time_axis.cc:537 editor.cc:1457 editor.cc:1464 editor.cc:1520 -#: editor.cc:1526 export_format_dialog.cc:476 +#: automation_time_axis.cc:537 editor.cc:1458 editor.cc:1465 editor.cc:1521 +#: editor.cc:1527 export_format_dialog.cc:476 msgid "Linear" msgstr "先行" @@ -1855,13 +2092,13 @@ msgstr "输入" msgid "Output" msgstr "输出" -#: bundle_manager.cc:264 editor.cc:1974 editor_actions.cc:90 +#: bundle_manager.cc:264 editor.cc:1978 editor_actions.cc:90 #: editor_actions.cc:100 msgid "Edit" msgstr "编辑" -#: bundle_manager.cc:265 editor.cc:5493 editor_actions.cc:310 -#: editor_actions.cc:368 plugin_ui.cc:419 processor_box.cc:2229 +#: bundle_manager.cc:265 editor.cc:5497 editor_actions.cc:310 +#: editor_actions.cc:368 plugin_ui.cc:416 processor_box.cc:2268 #: route_time_axis.cc:713 msgid "Delete" msgstr "删除" @@ -1991,6 +2228,26 @@ msgstr "值" msgid "Note" msgstr "音符" +#: edit_note_dialog.cc:45 +msgid "Set selected notes to this channel" +msgstr "" + +#: edit_note_dialog.cc:46 +msgid "Set selected notes to this pitch" +msgstr "" + +#: edit_note_dialog.cc:47 +msgid "Set selected notes to this velocity" +msgstr "" + +#: edit_note_dialog.cc:49 +msgid "Set selected notes to this time" +msgstr "" + +#: edit_note_dialog.cc:51 +msgid "Set selected notes to this length" +msgstr "" + #: edit_note_dialog.cc:58 midi_list_editor.cc:104 patch_change_dialog.cc:91 #: step_entry.cc:393 msgid "Channel" @@ -2018,164 +2275,164 @@ msgstr "长度" msgid "edit note" msgstr "编辑音符" -#: editor.cc:137 editor.cc:3429 +#: editor.cc:137 editor.cc:3433 msgid "CD Frames" msgstr "CD框架" -#: editor.cc:138 editor.cc:3431 +#: editor.cc:138 editor.cc:3435 msgid "Timecode Frames" msgstr "æ—¶é—´ç æ¡†æž¶" -#: editor.cc:139 editor.cc:3433 +#: editor.cc:139 editor.cc:3437 msgid "Timecode Seconds" msgstr "æ—¶é—´ç ç§’" -#: editor.cc:140 editor.cc:3435 +#: editor.cc:140 editor.cc:3439 msgid "Timecode Minutes" msgstr "æ—¶é—´ç åˆ†" -#: editor.cc:141 editor.cc:3437 +#: editor.cc:141 editor.cc:3441 msgid "Seconds" msgstr "ç§’" -#: editor.cc:142 editor.cc:3439 +#: editor.cc:142 editor.cc:3443 msgid "Minutes" msgstr "分" -#: editor.cc:143 editor.cc:3413 quantize_dialog.cc:37 quantize_dialog.cc:141 +#: editor.cc:143 editor.cc:3417 quantize_dialog.cc:37 quantize_dialog.cc:141 msgid "Beats/128" msgstr "节æ‹/128" -#: editor.cc:144 editor.cc:3411 quantize_dialog.cc:38 quantize_dialog.cc:143 +#: editor.cc:144 editor.cc:3415 quantize_dialog.cc:38 quantize_dialog.cc:143 msgid "Beats/64" msgstr "节æ‹/64" -#: editor.cc:145 editor.cc:3409 quantize_dialog.cc:39 quantize_dialog.cc:145 +#: editor.cc:145 editor.cc:3413 quantize_dialog.cc:39 quantize_dialog.cc:145 msgid "Beats/32" msgstr "节æ‹/32" -#: editor.cc:146 editor.cc:3407 +#: editor.cc:146 editor.cc:3411 msgid "Beats/28" msgstr "节æ‹/28" -#: editor.cc:147 editor.cc:3405 +#: editor.cc:147 editor.cc:3409 msgid "Beats/24" msgstr "节æ‹/24" -#: editor.cc:148 editor.cc:3403 +#: editor.cc:148 editor.cc:3407 msgid "Beats/20" msgstr "节æ‹/20" -#: editor.cc:149 editor.cc:3401 quantize_dialog.cc:40 quantize_dialog.cc:147 +#: editor.cc:149 editor.cc:3405 quantize_dialog.cc:40 quantize_dialog.cc:147 msgid "Beats/16" msgstr "节æ‹/16" -#: editor.cc:150 editor.cc:3399 +#: editor.cc:150 editor.cc:3403 msgid "Beats/14" msgstr "节æ‹/14" -#: editor.cc:151 editor.cc:3397 +#: editor.cc:151 editor.cc:3401 msgid "Beats/12" msgstr "节æ‹/12" -#: editor.cc:152 editor.cc:3395 +#: editor.cc:152 editor.cc:3399 msgid "Beats/10" msgstr "节æ‹/10" -#: editor.cc:153 editor.cc:3393 quantize_dialog.cc:41 quantize_dialog.cc:149 +#: editor.cc:153 editor.cc:3397 quantize_dialog.cc:41 quantize_dialog.cc:149 msgid "Beats/8" msgstr "节æ‹/8" -#: editor.cc:154 editor.cc:3391 +#: editor.cc:154 editor.cc:3395 msgid "Beats/7" msgstr "节æ‹/7" -#: editor.cc:155 editor.cc:3389 +#: editor.cc:155 editor.cc:3393 msgid "Beats/6" msgstr "节æ‹/6" -#: editor.cc:156 editor.cc:3387 +#: editor.cc:156 editor.cc:3391 msgid "Beats/5" msgstr "节æ‹/5" -#: editor.cc:157 editor.cc:3385 quantize_dialog.cc:42 quantize_dialog.cc:151 +#: editor.cc:157 editor.cc:3389 quantize_dialog.cc:42 quantize_dialog.cc:151 msgid "Beats/4" msgstr "节æ‹/4" -#: editor.cc:158 editor.cc:3383 quantize_dialog.cc:43 quantize_dialog.cc:153 +#: editor.cc:158 editor.cc:3387 quantize_dialog.cc:43 quantize_dialog.cc:153 msgid "Beats/3" msgstr "节æ‹/3" -#: editor.cc:159 editor.cc:3381 quantize_dialog.cc:44 quantize_dialog.cc:155 +#: editor.cc:159 editor.cc:3385 quantize_dialog.cc:44 quantize_dialog.cc:155 msgid "Beats/2" msgstr "节æ‹/2" -#: editor.cc:160 editor.cc:3415 quantize_dialog.cc:45 quantize_dialog.cc:157 +#: editor.cc:160 editor.cc:3419 quantize_dialog.cc:45 quantize_dialog.cc:157 msgid "Beats" msgstr "节æ‹" -#: editor.cc:161 editor.cc:3417 +#: editor.cc:161 editor.cc:3421 msgid "Bars" msgstr "å°èŠ‚" -#: editor.cc:162 editor.cc:3419 +#: editor.cc:162 editor.cc:3423 msgid "Marks" msgstr "标记" -#: editor.cc:163 editor.cc:3421 +#: editor.cc:163 editor.cc:3425 msgid "Region starts" msgstr "区域开始" -#: editor.cc:164 editor.cc:3423 +#: editor.cc:164 editor.cc:3427 msgid "Region ends" msgstr "区域结æŸ" -#: editor.cc:165 editor.cc:3427 +#: editor.cc:165 editor.cc:3431 msgid "Region syncs" msgstr "åŒºåŸŸåŒæ­¥" -#: editor.cc:166 editor.cc:3425 +#: editor.cc:166 editor.cc:3429 msgid "Region bounds" msgstr "区域界é™" -#: editor.cc:171 editor.cc:3455 editor_actions.cc:485 +#: editor.cc:171 editor.cc:3459 editor_actions.cc:485 msgid "No Grid" msgstr "无网格" -#: editor.cc:172 editor.cc:3457 editor_actions.cc:486 +#: editor.cc:172 editor.cc:3461 editor_actions.cc:486 msgid "Grid" msgstr "网格" -#: editor.cc:173 editor.cc:3459 editor_actions.cc:487 +#: editor.cc:173 editor.cc:3463 editor_actions.cc:487 msgid "Magnetic" msgstr "ç£æ€§" -#: editor.cc:178 editor.cc:188 editor.cc:3498 editor.cc:3523 +#: editor.cc:178 editor.cc:188 editor.cc:3502 editor.cc:3527 #: editor_actions.cc:117 editor_actions.cc:468 msgid "Playhead" msgstr "播放头" -#: editor.cc:179 editor.cc:3496 editor_actions.cc:470 +#: editor.cc:179 editor.cc:3500 editor_actions.cc:470 msgid "Marker" msgstr "标记" -#: editor.cc:180 editor.cc:189 editor.cc:3525 editor_actions.cc:469 +#: editor.cc:180 editor.cc:189 editor.cc:3529 editor_actions.cc:469 msgid "Mouse" msgstr "é¼ " -#: editor.cc:185 editor.cc:3517 mono_panner_editor.cc:42 +#: editor.cc:185 editor.cc:3521 mono_panner_editor.cc:42 msgid "Left" msgstr "å·¦" -#: editor.cc:186 editor.cc:3519 mono_panner_editor.cc:47 +#: editor.cc:186 editor.cc:3523 mono_panner_editor.cc:47 msgid "Right" msgstr "å³" -#: editor.cc:187 editor.cc:3521 +#: editor.cc:187 editor.cc:3525 msgid "Center" msgstr "中" -#: editor.cc:190 editor.cc:3090 editor.cc:3527 +#: editor.cc:190 editor.cc:3094 editor.cc:3531 msgid "Edit point" msgstr "编辑点" @@ -2235,429 +2492,466 @@ msgstr "" msgid "mode" msgstr "" -#: editor.cc:542 +#: editor.cc:541 msgid "Regions" msgstr "" -#: editor.cc:543 +#: editor.cc:542 msgid "Tracks & Busses" msgstr "音轨&总线" -#: editor.cc:544 +#: editor.cc:543 msgid "Snapshots" msgstr "" -#: editor.cc:546 +#: editor.cc:544 +msgid "Track & Bus Groups" +msgstr "" + +#: editor.cc:545 msgid "Ranges & Marks" msgstr "" -#: editor.cc:690 editor.cc:5345 rc_option_editor.cc:1294 -#: rc_option_editor.cc:1302 rc_option_editor.cc:1310 rc_option_editor.cc:1318 -#: rc_option_editor.cc:1335 rc_option_editor.cc:1337 rc_option_editor.cc:1345 -#: rc_option_editor.cc:1353 rc_option_editor.cc:1373 rc_option_editor.cc:1385 -#: rc_option_editor.cc:1387 rc_option_editor.cc:1395 rc_option_editor.cc:1403 -#: rc_option_editor.cc:1411 rc_option_editor.cc:1419 rc_option_editor.cc:1427 -#: rc_option_editor.cc:1442 rc_option_editor.cc:1446 +#: editor.cc:690 editor.cc:5349 rc_option_editor.cc:1292 +#: rc_option_editor.cc:1300 rc_option_editor.cc:1308 rc_option_editor.cc:1316 +#: rc_option_editor.cc:1333 rc_option_editor.cc:1335 rc_option_editor.cc:1343 +#: rc_option_editor.cc:1351 rc_option_editor.cc:1371 rc_option_editor.cc:1383 +#: rc_option_editor.cc:1385 rc_option_editor.cc:1393 rc_option_editor.cc:1401 +#: rc_option_editor.cc:1409 rc_option_editor.cc:1417 rc_option_editor.cc:1432 +#: rc_option_editor.cc:1436 msgid "Editor" msgstr "编辑器" -#: editor.cc:1215 editor.cc:1225 editor.cc:4440 editor_actions.cc:130 +#: editor.cc:1215 editor.cc:1225 editor.cc:4444 editor_actions.cc:130 #: editor_actions.cc:1813 msgid "Loop" msgstr "循环" -#: editor.cc:1231 editor.cc:1241 editor.cc:4467 editor_actions.cc:131 +#: editor.cc:1231 editor.cc:1241 editor.cc:4471 editor_actions.cc:131 #: time_info_box.cc:67 msgid "Punch" msgstr "" -#: editor.cc:1352 +#: editor.cc:1353 msgid "Linear (for highly correlated material)" msgstr "" -#: editor.cc:1362 editor.cc:1499 editor.cc:1561 +#: editor.cc:1363 editor.cc:1500 editor.cc:1562 msgid "Constant power" msgstr "" -#: editor.cc:1371 editor.cc:1492 editor.cc:1554 +#: editor.cc:1372 editor.cc:1493 editor.cc:1555 msgid "Symmetric" msgstr "" -#: editor.cc:1381 editor.cc:1474 editor.cc:1536 +#: editor.cc:1382 editor.cc:1475 editor.cc:1537 msgid "Slow" msgstr "æ…¢" -#: editor.cc:1390 editor.cc:1483 editor.cc:1545 sfdb_ui.cc:1627 +#: editor.cc:1391 editor.cc:1484 editor.cc:1546 sfdb_ui.cc:1627 #: sfdb_ui.cc:1736 msgid "Fast" msgstr "å¿«" -#: editor.cc:1437 +#: editor.cc:1438 msgid "programming error: fade in canvas item has no regionview data pointer!" msgstr "" -#: editor.cc:1448 editor.cc:1512 +#: editor.cc:1449 editor.cc:1513 msgid "Deactivate" msgstr "å–æ¶ˆæ¿€æ´»" -#: editor.cc:1450 editor.cc:1514 +#: editor.cc:1451 editor.cc:1515 msgid "Activate" msgstr "激活" -#: editor.cc:1458 editor.cc:1521 +#: editor.cc:1459 editor.cc:1522 msgid "Slowest" msgstr "最慢" -#: editor.cc:1572 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 +#: editor.cc:1573 route_time_axis.cc:1877 selection.cc:1009 selection.cc:1064 msgid "programming error: " msgstr "程åºé”™è¯¯:" -#: editor.cc:1673 editor.cc:1681 editor_ops.cc:3522 +#: editor.cc:1674 editor.cc:1682 editor_ops.cc:3522 msgid "Freeze" msgstr "冻结" -#: editor.cc:1677 +#: editor.cc:1678 msgid "Unfreeze" msgstr "å–æ¶ˆå†»ç»“" -#: editor.cc:1816 +#: editor.cc:1817 msgid "Selected Regions" msgstr "已选择的区域" -#: editor.cc:1852 editor_markers.cc:895 +#: editor.cc:1853 editor_markers.cc:895 msgid "Play Range" msgstr "播放范围" -#: editor.cc:1853 editor_markers.cc:898 +#: editor.cc:1854 editor_markers.cc:898 msgid "Loop Range" msgstr "循环范围" -#: editor.cc:1862 editor_actions.cc:332 +#: editor.cc:1863 editor_actions.cc:332 msgid "Move Range Start to Previous Region Boundary" msgstr "" -#: editor.cc:1869 editor_actions.cc:339 +#: editor.cc:1870 editor_actions.cc:339 msgid "Move Range Start to Next Region Boundary" msgstr "" -#: editor.cc:1876 editor_actions.cc:346 +#: editor.cc:1877 editor_actions.cc:346 msgid "Move Range End to Previous Region Boundary" msgstr "" -#: editor.cc:1883 editor_actions.cc:353 +#: editor.cc:1884 editor_actions.cc:353 msgid "Move Range End to Next Region Boundary" msgstr "" -#: editor.cc:1889 +#: editor.cc:1890 msgid "Convert to Region In-Place" msgstr "在此转æ¢è‡³åŒºåŸŸ" -#: editor.cc:1890 +#: editor.cc:1891 msgid "Convert to Region in Region List" msgstr "在区域列表转æ¢è‡³åŒºåŸŸ" -#: editor.cc:1893 editor_markers.cc:925 +#: editor.cc:1894 editor_markers.cc:925 msgid "Select All in Range" msgstr "在范围选择所有" -#: editor.cc:1896 +#: editor.cc:1897 msgid "Set Loop from Range" msgstr "从范围设置循环" -#: editor.cc:1897 +#: editor.cc:1898 msgid "Set Punch from Range" msgstr "从范围设置Punch" -#: editor.cc:1900 +#: editor.cc:1901 msgid "Add Range Markers" msgstr "添加范围标记" -#: editor.cc:1903 +#: editor.cc:1904 msgid "Crop Region to Range" msgstr "è£å‰ªåŒºåŸŸåˆ°èŒƒå›´" -#: editor.cc:1904 +#: editor.cc:1905 msgid "Fill Range with Region" msgstr "用区域填充范围" -#: editor.cc:1905 editor_actions.cc:289 +#: editor.cc:1906 editor_actions.cc:289 msgid "Duplicate Range" msgstr "å¤åˆ¶èŒƒå›´" -#: editor.cc:1908 +#: editor.cc:1909 msgid "Consolidate Range" msgstr "åˆå¹¶èŒƒå›´" -#: editor.cc:1909 +#: editor.cc:1910 msgid "Consolidate Range With Processing" msgstr "" -#: editor.cc:1910 +#: editor.cc:1911 msgid "Bounce Range to Region List" msgstr "" -#: editor.cc:1911 +#: editor.cc:1912 msgid "Bounce Range to Region List With Processing" msgstr "" -#: editor.cc:1912 editor_markers.cc:908 +#: editor.cc:1913 editor_markers.cc:908 msgid "Export Range..." msgstr "导出范围" -#: editor.cc:1927 editor.cc:2008 editor_actions.cc:281 +#: editor.cc:1915 +msgid "Export Video Range..." +msgstr "" + +#: editor.cc:1931 editor.cc:2012 editor_actions.cc:281 msgid "Play From Edit Point" msgstr "从编辑点播放" -#: editor.cc:1928 editor.cc:2009 +#: editor.cc:1932 editor.cc:2013 msgid "Play From Start" msgstr "从开始播放" -#: editor.cc:1929 +#: editor.cc:1933 msgid "Play Region" msgstr "播放区域" -#: editor.cc:1931 +#: editor.cc:1935 msgid "Loop Region" msgstr "循环区域" -#: editor.cc:1941 editor.cc:2018 +#: editor.cc:1945 editor.cc:2022 msgid "Select All in Track" msgstr "在音轨选择所有" -#: editor.cc:1942 editor.cc:2019 editor_actions.cc:185 -#: export_timespan_selector.cc:53 processor_box.cc:2237 +#: editor.cc:1946 editor.cc:2023 editor_actions.cc:185 +#: export_timespan_selector.cc:53 processor_box.cc:2276 msgid "Select All" msgstr "选择所有" -#: editor.cc:1943 editor.cc:2020 +#: editor.cc:1947 editor.cc:2024 msgid "Invert Selection in Track" msgstr "在音轨å转选区" -#: editor.cc:1944 editor.cc:2021 editor_actions.cc:187 +#: editor.cc:1948 editor.cc:2025 editor_actions.cc:187 msgid "Invert Selection" msgstr "å转选区" -#: editor.cc:1946 +#: editor.cc:1950 msgid "Set Range to Loop Range" msgstr "设置范围到循环范围" -#: editor.cc:1947 +#: editor.cc:1951 msgid "Set Range to Punch Range" msgstr "设置范围到Punch区间" -#: editor.cc:1949 editor.cc:2023 editor_actions.cc:188 +#: editor.cc:1953 editor.cc:2027 editor_actions.cc:188 msgid "Select All After Edit Point" msgstr "在编辑点åŽé€‰æ‹©æ‰€æœ‰" -#: editor.cc:1950 editor.cc:2024 editor_actions.cc:189 +#: editor.cc:1954 editor.cc:2028 editor_actions.cc:189 msgid "Select All Before Edit Point" msgstr "在编辑点å‰é€‰æ‹©æ‰€æœ‰" -#: editor.cc:1951 editor.cc:2025 +#: editor.cc:1955 editor.cc:2029 msgid "Select All After Playhead" msgstr "播放头åŽé€‰æ‹©æ‰€æœ‰" -#: editor.cc:1952 editor.cc:2026 +#: editor.cc:1956 editor.cc:2030 msgid "Select All Before Playhead" msgstr "播放头å‰é€‰æ‹©æ‰€æœ‰" -#: editor.cc:1953 +#: editor.cc:1957 msgid "Select All Between Playhead and Edit Point" msgstr "播放头和编辑点间选择所有" -#: editor.cc:1954 +#: editor.cc:1958 msgid "Select All Within Playhead and Edit Point" msgstr "播放头和编辑点内选择所有" -#: editor.cc:1955 +#: editor.cc:1959 msgid "Select Range Between Playhead and Edit Point" msgstr "播放头和编辑点间选择范围" -#: editor.cc:1957 editor.cc:2028 editor_actions.cc:127 editor_actions.cc:128 +#: editor.cc:1961 editor.cc:2032 editor_actions.cc:127 editor_actions.cc:128 msgid "Select" msgstr "选择" -#: editor.cc:1965 editor.cc:2036 editor_actions.cc:309 processor_box.cc:2222 +#: editor.cc:1969 editor.cc:2040 editor_actions.cc:309 processor_box.cc:2261 msgid "Cut" msgstr "剪切" -#: editor.cc:1966 editor.cc:2037 editor_actions.cc:312 processor_box.cc:2225 +#: editor.cc:1970 editor.cc:2041 editor_actions.cc:312 processor_box.cc:2264 msgid "Copy" msgstr "å¤åˆ¶" -#: editor.cc:1967 editor.cc:2038 editor_actions.cc:313 processor_box.cc:2233 +#: editor.cc:1971 editor.cc:2042 editor_actions.cc:313 processor_box.cc:2272 msgid "Paste" msgstr "粘贴" -#: editor.cc:1971 editor_actions.cc:87 +#: editor.cc:1975 editor_actions.cc:87 msgid "Align" msgstr "对é½" -#: editor.cc:1972 +#: editor.cc:1976 msgid "Align Relative" msgstr "相对对é½" -#: editor.cc:1979 +#: editor.cc:1983 msgid "Insert Selected Region" msgstr "æ’入已选择的区域" -#: editor.cc:1980 +#: editor.cc:1984 msgid "Insert Existing Media" msgstr "æ’入已存在的媒体" -#: editor.cc:1989 editor.cc:2045 +#: editor.cc:1993 editor.cc:2049 msgid "Nudge Entire Track Later" msgstr "" -#: editor.cc:1991 editor.cc:2047 +#: editor.cc:1994 editor.cc:2050 +msgid "Nudge Track After Edit Point Later" +msgstr "" + +#: editor.cc:1995 editor.cc:2051 msgid "Nudge Entire Track Earlier" msgstr "" -#: editor.cc:1994 editor.cc:2050 +#: editor.cc:1996 editor.cc:2052 +msgid "Nudge Track After Edit Point Earlier" +msgstr "" + +#: editor.cc:1998 editor.cc:2054 msgid "Nudge" msgstr "" -#: editor.cc:3070 +#: editor.cc:3074 msgid "Smart Mode (add Range functions to Object mode)" msgstr "" -#: editor.cc:3073 +#: editor.cc:3075 +msgid "Object Mode (select/move Objects)" +msgstr "" + +#: editor.cc:3076 +msgid "Range Mode (select/move Ranges)" +msgstr "" + +#: editor.cc:3077 msgid "Draw/Edit MIDI Notes" msgstr "绘画/编辑MIDI音符" -#: editor.cc:3074 +#: editor.cc:3078 msgid "Draw Region Gain" msgstr "绘制区域增益" -#: editor.cc:3075 +#: editor.cc:3079 msgid "Select Zoom Range" msgstr "选择å˜ç„¦èŒƒå›´" -#: editor.cc:3076 +#: editor.cc:3080 msgid "Stretch/Shrink Regions and MIDI Notes" msgstr "伸/缩区域和MIDI音符" -#: editor.cc:3077 +#: editor.cc:3081 msgid "Listen to Specific Regions" msgstr "å¬ç‰¹å®šåŒºåŸŸ" -#: editor.cc:3078 +#: editor.cc:3082 msgid "Note Level Editing" msgstr "" -#: editor.cc:3079 +#: editor.cc:3083 msgid "" "Groups: click to (de)activate\n" "Context-click for other operations" msgstr "" -#: editor.cc:3080 +#: editor.cc:3084 msgid "Nudge Region/Selection Later" msgstr "" -#: editor.cc:3081 +#: editor.cc:3085 msgid "Nudge Region/Selection Earlier" msgstr "" -#: editor.cc:3082 editor_actions.cc:242 +#: editor.cc:3086 editor_actions.cc:242 msgid "Zoom In" msgstr "放大" -#: editor.cc:3083 editor_actions.cc:241 +#: editor.cc:3087 editor_actions.cc:241 msgid "Zoom Out" msgstr "缩å°" -#: editor.cc:3084 editor_actions.cc:243 +#: editor.cc:3088 editor_actions.cc:243 msgid "Zoom to Session" msgstr "缩放到会è¯" -#: editor.cc:3085 +#: editor.cc:3089 msgid "Zoom focus" msgstr "缩放到焦点" -#: editor.cc:3086 +#: editor.cc:3090 msgid "Expand Tracks" msgstr "扩展音轨" -#: editor.cc:3087 +#: editor.cc:3091 msgid "Shrink Tracks" msgstr "收缩音轨" -#: editor.cc:3088 +#: editor.cc:3092 msgid "Snap/Grid Units" msgstr "" -#: editor.cc:3089 +#: editor.cc:3093 msgid "Snap/Grid Mode" msgstr "" -#: editor.cc:3091 +#: editor.cc:3095 msgid "Edit Mode" msgstr "编辑模å¼" -#: editor.cc:3092 +#: editor.cc:3096 msgid "" "Nudge Clock\n" "(controls distance used to nudge regions and selections)" msgstr "" -#: editor.cc:3194 +#: editor.cc:3198 msgid "malformed URL passed to drag-n-drop code" msgstr "" -#: editor.cc:3265 editor_actions.cc:292 +#: editor.cc:3260 editor_actions.cc:291 +msgid "Command|Undo" +msgstr "" + +#: editor.cc:3262 +msgid "Command|Undo (%1)" +msgstr "" + +#: editor.cc:3269 editor_actions.cc:292 msgid "Redo" msgstr "é‡åš" -#: editor.cc:3267 +#: editor.cc:3271 msgid "Redo (%1)" msgstr "é‡åš (%1)" -#: editor.cc:3286 editor.cc:3310 editor_actions.cc:106 editor_actions.cc:1794 +#: editor.cc:3290 editor.cc:3314 editor_actions.cc:106 editor_actions.cc:1794 msgid "Duplicate" msgstr "å¤åˆ¶" -#: editor.cc:3287 +#: editor.cc:3291 msgid "Number of duplications:" msgstr "å¤åˆ¶çš„æ•°é‡:" -#: editor.cc:3864 +#: editor.cc:3868 msgid "Playlist Deletion" msgstr "播放列表删除" -#: editor.cc:3865 +#: editor.cc:3869 msgid "" "Playlist %1 is currently unused.\n" "If it is kept, its audio files will not be cleaned.\n" "If it is deleted, audio files used by it alone will be cleaned." msgstr "" -#: editor.cc:3875 +#: editor.cc:3879 msgid "Delete Playlist" msgstr "删除播放列表" -#: editor.cc:3876 +#: editor.cc:3880 msgid "Keep Playlist" msgstr "ä¿æŒæ’­æ”¾åˆ—表" -#: editor.cc:3877 editor_audio_import.cc:581 editor_ops.cc:5856 -#: sfdb_freesound_mootcher.cc:69 processor_box.cc:2003 processor_box.cc:2028 +#: editor.cc:3881 editor_audio_import.cc:581 editor_ops.cc:5856 +#: engine_dialog.cc:1711 sfdb_freesound_mootcher.cc:69 processor_box.cc:2030 +#: processor_box.cc:2055 msgid "Cancel" msgstr "å–æ¶ˆ" -#: editor.cc:4021 +#: editor.cc:4025 msgid "new playlists" msgstr "新播放列表" -#: editor.cc:4037 +#: editor.cc:4041 msgid "copy playlists" msgstr "å¤åˆ¶æ’­æ”¾åˆ—表" -#: editor.cc:4052 +#: editor.cc:4056 msgid "clear playlists" msgstr "清除播放列表" -#: editor.cc:5492 editor_markers.cc:940 panner_ui.cc:393 processor_box.cc:2253 +#: editor.cc:4691 +msgid "Please wait while %1 loads visual data." +msgstr "" + +#: editor.cc:5496 editor_markers.cc:940 panner_ui.cc:392 processor_box.cc:2292 msgid "Edit..." msgstr "编辑..." @@ -2706,8 +3000,8 @@ msgstr "" msgid "Position" msgstr "ä½ç½®" -#: editor_actions.cc:101 gain_meter.cc:121 gain_meter.cc:791 panner_ui.cc:177 -#: panner_ui.cc:586 +#: editor_actions.cc:101 gain_meter.cc:120 gain_meter.cc:794 panner_ui.cc:176 +#: panner_ui.cc:585 msgid "Trim" msgstr "" @@ -2757,7 +3051,7 @@ msgstr "MIDI选项" msgid "Misc Options" msgstr "其他选项" -#: editor_actions.cc:115 rc_option_editor.cc:1460 route_group_dialog.cc:48 +#: editor_actions.cc:115 rc_option_editor.cc:1450 route_group_dialog.cc:48 #: session_option_editor.cc:218 session_option_editor.cc:225 msgid "Monitoring" msgstr "监控中" @@ -2891,6 +3185,10 @@ msgstr "到下一个区域边界 (没有音轨选区)" msgid "To Previous Region Boundary" msgstr "到上一个区域边界" +#: editor_actions.cc:169 +msgid "To Previous Region Boundary (No Track Selection)" +msgstr "" + #: editor_actions.cc:171 msgid "To Next Region Start" msgstr "到下一个区域开始" @@ -2931,7 +3229,7 @@ msgstr "播放头到范围开始" msgid "Playhead to Range End" msgstr "播放头到范围结æŸ" -#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2239 +#: editor_actions.cc:186 export_timespan_selector.cc:61 processor_box.cc:2278 msgid "Deselect All" msgstr "å选所有" @@ -2991,6 +3289,14 @@ msgstr "跳转到视图 %1" msgid "Locate to Mark %1" msgstr "定ä½åˆ°æ ‡è®° %1" +#: editor_actions.cc:229 +msgid "Jump to Next Mark" +msgstr "" + +#: editor_actions.cc:230 +msgid "Jump to Previous Mark" +msgstr "" + #: editor_actions.cc:231 msgid "Add Mark from Playhead" msgstr "从播放头添加编辑" @@ -3011,6 +3317,14 @@ msgstr "" msgid "Nudge Playhead Backward" msgstr "" +#: editor_actions.cc:238 +msgid "Playhead To Next Grid" +msgstr "" + +#: editor_actions.cc:239 +msgid "Playhead To Previous Grid" +msgstr "" + #: editor_actions.cc:244 msgid "Zoom to Region" msgstr "" @@ -3209,6 +3523,10 @@ msgstr "大" msgid "Small" msgstr "å°" +#: editor_actions.cc:392 +msgid "Sound Selected MIDI Notes" +msgstr "" + #: editor_actions.cc:397 msgid "Zoom Focus Left" msgstr "" @@ -3233,6 +3551,10 @@ msgstr "" msgid "Zoom Focus Edit Point" msgstr "" +#: editor_actions.cc:404 +msgid "Next Zoom Focus" +msgstr "" + #: editor_actions.cc:410 msgid "Smart Object Mode" msgstr "" @@ -3354,6 +3676,14 @@ msgstr "对é½åˆ°ç§’" msgid "Snap to Minutes" msgstr "对é½åˆ°åˆ†" +#: editor_actions.cc:505 +msgid "Snap to One Twenty Eighths" +msgstr "" + +#: editor_actions.cc:506 +msgid "Snap to Sixty Fourths" +msgstr "" + #: editor_actions.cc:507 msgid "Snap to Thirty Seconds" msgstr "对é½åˆ°30ç§’" @@ -3454,10 +3784,26 @@ msgstr "循环/Punch" msgid "Min:Sec" msgstr "分:ç§’" -#: editor_actions.cc:549 rc_option_editor.cc:1842 +#: editor_actions.cc:547 editor_actions.cc:550 +msgid "Video Monitor" +msgstr "" + +#: editor_actions.cc:549 rc_option_editor.cc:1829 msgid "Video" msgstr "" +#: editor_actions.cc:552 +msgid "Always on Top" +msgstr "" + +#: editor_actions.cc:554 +msgid "Frame number" +msgstr "" + +#: editor_actions.cc:555 +msgid "Timecode Background" +msgstr "" + #: editor_actions.cc:556 msgid "Fullscreen" msgstr "" @@ -3534,6 +3880,10 @@ msgstr "ç”±æºæ–‡ä»¶åˆ›å»ºæ—¥æœŸ" msgid "By Source Filesystem" msgstr "ç”±æºæ–‡ä»¶ç³»ç»Ÿ" +#: editor_actions.cc:648 +msgid "Remove Unused" +msgstr "" + #: editor_actions.cc:652 editor_audio_import.cc:279 #: session_import_dialog.cc:74 session_import_dialog.cc:94 #: session_metadata_dialog.cc:297 editor_videotimeline.cc:108 @@ -3568,6 +3918,10 @@ msgstr "显示Logo" msgid "Toggle MIDI Input Active for Editor-Selected Tracks/Busses" msgstr "" +#: editor_actions.cc:696 +msgid "Loaded editor bindings from %1" +msgstr "" + #: editor_actions.cc:698 msgid "Could not find editor.bindings in search path %1" msgstr "" @@ -3670,6 +4024,18 @@ msgstr "设置循环范围" msgid "Set Punch" msgstr "设置Punch" +#: editor_actions.cc:1820 +msgid "Add Single Range Marker" +msgstr "" + +#: editor_actions.cc:1825 +msgid "Add Range Marker Per Region" +msgstr "" + +#: editor_actions.cc:1829 +msgid "Snap Position To Grid" +msgstr "" + #: editor_actions.cc:1832 msgid "Close Gaps" msgstr "" @@ -3742,6 +4108,10 @@ msgstr "预设增益" msgid "Envelope Active" msgstr "激活包络线" +#: editor_actions.cc:1885 +msgid "Quantize..." +msgstr "" + #: editor_actions.cc:1886 editor_actions.cc:1887 msgid "Insert Patch Change..." msgstr "" @@ -3907,6 +4277,10 @@ msgstr "嵌入之, ä¸ç®¡äº†" msgid "fixed time region drag" msgstr "固定时间区域拖拽" +#: editor_drag.cc:1700 +msgid "Video Start:" +msgstr "" + #: editor_drag.cc:1702 msgid "Diff:" msgstr "" @@ -3931,46 +4305,86 @@ msgstr "å¤åˆ¶èЂ奿 ‡è®°" msgid "move tempo mark" msgstr "ç§»åŠ¨èŠ‚å¥æ ‡è®°" -#: editor_drag.cc:2545 +#: editor_drag.cc:2550 msgid "change fade in length" msgstr "æ”¹å˜æ¸å…¥é•¿åº¦" -#: editor_drag.cc:2663 +#: editor_drag.cc:2668 msgid "change fade out length" msgstr "æ”¹å˜æ¸å‡ºé•¿åº¦" -#: editor_drag.cc:3018 +#: editor_drag.cc:3023 msgid "move marker" msgstr "移动标记" -#: editor_drag.cc:3581 +#: editor_drag.cc:3586 msgid "An error occurred while executing time stretch operation" msgstr "当执行时间延伸æ“作时出现错误" -#: editor_drag.cc:4081 editor_markers.cc:680 +#: editor_drag.cc:4016 +msgid "programming_error: %1" +msgstr "" + +#: editor_drag.cc:4086 editor_markers.cc:680 msgid "new range marker" msgstr "新范围标记" -#: editor_drag.cc:4762 +#: editor_drag.cc:4767 msgid "rubberband selection" msgstr "" +#: editor_route_groups.cc:66 +msgid "No Selection = All Tracks?" +msgstr "" + +#: editor_route_groups.cc:95 +msgid "Col" +msgstr "" + +#: editor_route_groups.cc:95 +msgid "Group Tab Color" +msgstr "" + +#: editor_route_groups.cc:96 +msgid "Name of Group" +msgstr "" + #: editor_route_groups.cc:97 editor_routes.cc:203 msgid "V" msgstr "" +#: editor_route_groups.cc:97 +msgid "Group is visible?" +msgstr "" + +#: editor_route_groups.cc:98 +msgid "On" +msgstr "" + #: editor_route_groups.cc:98 msgid "Group is enabled?" msgstr "" +#: editor_route_groups.cc:99 +msgid "group|G" +msgstr "" + #: editor_route_groups.cc:99 msgid "Sharing Gain?" msgstr "" +#: editor_route_groups.cc:100 +msgid "relative|Rel" +msgstr "" + #: editor_route_groups.cc:100 msgid "Relative Gain Changes?" msgstr "" +#: editor_route_groups.cc:101 +msgid "mute|M" +msgstr "" + #: editor_route_groups.cc:101 msgid "Sharing Mute?" msgstr "" @@ -3992,10 +4406,26 @@ msgstr "" msgid "Sharing Record-enable Status?" msgstr "" +#: editor_route_groups.cc:104 +msgid "monitoring|Mon" +msgstr "" + +#: editor_route_groups.cc:104 +msgid "Sharing Monitoring Choice?" +msgstr "" + +#: editor_route_groups.cc:105 +msgid "selection|Sel" +msgstr "" + #: editor_route_groups.cc:105 msgid "Sharing Selected/Editing Status?" msgstr "" +#: editor_route_groups.cc:106 +msgid "active|A" +msgstr "" + #: editor_route_groups.cc:106 msgid "Sharing Active Status?" msgstr "" @@ -4013,11 +4443,19 @@ msgstr "未命åçš„" #: editor_markers.cc:1022 editor_markers.cc:1041 editor_markers.cc:1071 #: editor_markers.cc:1102 editor_markers.cc:1132 editor_markers.cc:1160 #: editor_markers.cc:1191 editor_markers.cc:1216 editor_markers.cc:1267 -#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1514 -#: editor_mouse.cc:2478 +#: editor_markers.cc:1311 editor_markers.cc:1337 editor_markers.cc:1526 +#: editor_mouse.cc:2528 msgid "programming error: marker canvas item has no marker object pointer!" msgstr "" +#: editor_export_audio.cc:143 editor_export_audio.cc:148 +msgid "File Exists!" +msgstr "" + +#: editor_export_audio.cc:151 +msgid "Overwrite Existing File" +msgstr "" + #: editor_group_tabs.cc:162 msgid "Fit to Window" msgstr "放置窗å£" @@ -4035,6 +4473,10 @@ msgstr "结æŸ" msgid "add marker" msgstr "添加标记" +#: editor_markers.cc:677 +msgid "range" +msgstr "" + #: editor_markers.cc:713 location_ui.cc:852 msgid "remove marker" msgstr "移除标记" @@ -4055,6 +4497,26 @@ msgstr "移动标记到播放头" msgid "Create Range to Next Marker" msgstr "创建范围到下一个标记" +#: editor_markers.cc:896 +msgid "Locate to Marker" +msgstr "" + +#: editor_markers.cc:897 +msgid "Play from Marker" +msgstr "" + +#: editor_markers.cc:900 +msgid "Set Marker from Playhead" +msgstr "" + +#: editor_markers.cc:902 +msgid "Set Range from Selection" +msgstr "" + +#: editor_markers.cc:905 +msgid "Zoom to Range" +msgstr "" + #: editor_markers.cc:912 msgid "Hide Range" msgstr "éšè—范围" @@ -4079,32 +4541,32 @@ msgstr "选择范围" msgid "Set Punch Range" msgstr "设置Punch范围" -#: editor_markers.cc:1351 editor_ops.cc:1699 +#: editor_markers.cc:1362 editor_ops.cc:1699 msgid "New Name:" msgstr "æ–°å称:" -#: editor_markers.cc:1354 +#: editor_markers.cc:1365 msgid "Rename Mark" msgstr "é‡å‘½å标记" -#: editor_markers.cc:1356 +#: editor_markers.cc:1367 msgid "Rename Range" msgstr "é‡å‘½å范围" -#: editor_markers.cc:1363 editor_mouse.cc:2510 processor_box.cc:1781 -#: processor_box.cc:2235 route_time_axis.cc:982 route_ui.cc:1540 +#: editor_markers.cc:1374 editor_mouse.cc:2560 processor_box.cc:1808 +#: processor_box.cc:2274 route_time_axis.cc:982 route_ui.cc:1540 msgid "Rename" msgstr "é‡å‘½å" -#: editor_markers.cc:1376 +#: editor_markers.cc:1387 msgid "rename marker" msgstr "é‡å‘½å标记" -#: editor_markers.cc:1399 +#: editor_markers.cc:1411 msgid "set loop range" msgstr "设置循环范围" -#: editor_markers.cc:1405 +#: editor_markers.cc:1417 msgid "set punch range" msgstr "设置冲击范围" @@ -4116,21 +4578,21 @@ msgstr "" msgid "Editor::event_frame() used on unhandled event type %1" msgstr "" -#: editor_mouse.cc:2235 editor_mouse.cc:2260 editor_mouse.cc:2273 +#: editor_mouse.cc:2285 editor_mouse.cc:2310 editor_mouse.cc:2323 msgid "" "programming error: control point canvas item has no control point object " "pointer!" msgstr "" -#: editor_mouse.cc:2416 +#: editor_mouse.cc:2466 msgid "start point trim" msgstr "起始点修剪" -#: editor_mouse.cc:2441 +#: editor_mouse.cc:2491 msgid "End point trim" msgstr "终止点修剪" -#: editor_mouse.cc:2508 +#: editor_mouse.cc:2558 msgid "Name for region:" msgstr "区域å:" @@ -4194,11 +4656,39 @@ msgstr "æ’入拖拽区域" msgid "insert region" msgstr "摄入区域" +#: editor_ops.cc:2261 +msgid "raise regions" +msgstr "" + +#: editor_ops.cc:2263 +msgid "raise region" +msgstr "" + +#: editor_ops.cc:2269 +msgid "raise regions to top" +msgstr "" + +#: editor_ops.cc:2271 +msgid "raise region to top" +msgstr "" + +#: editor_ops.cc:2277 +msgid "lower regions" +msgstr "" + +#: editor_ops.cc:2279 editor_ops.cc:2287 +msgid "lower region" +msgstr "" + +#: editor_ops.cc:2285 +msgid "lower regions to bottom" +msgstr "" + #: editor_ops.cc:2370 msgid "Rename Region" msgstr "é‡å‘½å区域" -#: editor_ops.cc:2372 processor_box.cc:1779 route_ui.cc:1538 +#: editor_ops.cc:2372 processor_box.cc:1806 route_ui.cc:1538 msgid "New name:" msgstr "æ–°åå­—:" @@ -4283,6 +4773,18 @@ msgid "" "Freezing will only process the signal as far as the first send/insert/return." msgstr "" +#: editor_ops.cc:3505 +msgid "Freeze anyway" +msgstr "" + +#: editor_ops.cc:3506 +msgid "Don't freeze" +msgstr "" + +#: editor_ops.cc:3507 +msgid "Freeze Limits" +msgstr "" + #: editor_ops.cc:3522 msgid "Cancel Freeze" msgstr "å–æ¶ˆå†»ç»“" @@ -4389,6 +4891,10 @@ msgstr "区域增益包络å¯ç”¨" msgid "toggle region lock" msgstr "切æ¢åŒºåŸŸé”定" +#: editor_ops.cc:5067 +msgid "Toggle Video Lock" +msgstr "" + #: editor_ops.cc:5091 msgid "region lock style" msgstr "区域é”定风格" @@ -4552,7 +5058,7 @@ msgstr "" msgid "tracks" msgstr "音轨" -#: editor_ops.cc:6485 route_ui.cc:1822 +#: editor_ops.cc:6485 route_ui.cc:1821 msgid "track" msgstr "音轨" @@ -4560,7 +5066,7 @@ msgstr "音轨" msgid "busses" msgstr "总线" -#: editor_ops.cc:6491 route_ui.cc:1822 +#: editor_ops.cc:6491 route_ui.cc:1821 msgid "bus" msgstr "总线" @@ -4643,10 +5149,22 @@ msgstr "å–æ¶ˆè¿™äº›åŒºåŸŸçš„组åˆ" msgid "Region name, with number of channels in []'s" msgstr "" +#: editor_regions.cc:112 +msgid "Position of start of region" +msgstr "" + #: editor_regions.cc:113 editor_regions.cc:849 time_info_box.cc:98 msgid "End" msgstr "结æŸ" +#: editor_regions.cc:113 +msgid "Position of end of region" +msgstr "" + +#: editor_regions.cc:114 +msgid "Length of the region" +msgstr "" + #: editor_regions.cc:115 msgid "Position of region sync point, relative to start of the region" msgstr "" @@ -4664,6 +5182,10 @@ msgstr "" msgid "L" msgstr "" +#: editor_regions.cc:118 +msgid "Region position locked?" +msgstr "" + #: editor_regions.cc:119 msgid "G" msgstr "" @@ -4672,12 +5194,16 @@ msgstr "" msgid "Region position glued to Bars|Beats time?" msgstr "" -#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:759 -#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:554 +#: editor_regions.cc:120 editor_routes.cc:207 gain_meter.cc:762 +#: mixer_strip.cc:1931 meter_strip.cc:320 panner_ui.cc:553 #: stereo_panner.cc:237 msgid "M" msgstr "" +#: editor_regions.cc:120 +msgid "Region muted?" +msgstr "" + #: editor_regions.cc:121 msgid "O" msgstr "" @@ -4712,8 +5238,7 @@ msgstr "移除没用的区域" msgid "Mult." msgstr "多" -#: editor_regions.cc:847 engine_dialog.cc:84 midi_list_editor.cc:103 -#: time_info_box.cc:91 +#: editor_regions.cc:847 midi_list_editor.cc:103 time_info_box.cc:91 msgid "Start" msgstr "开始" @@ -4729,28 +5254,64 @@ msgstr "找ä¸åˆ°" msgid "SS" msgstr "" +#: editor_routes.cc:202 +msgid "Track/Bus Name" +msgstr "" + +#: editor_routes.cc:203 +msgid "Track/Bus visible ?" +msgstr "" + #: editor_routes.cc:204 mixer_strip.cc:1945 meter_strip.cc:334 #: route_time_axis.cc:2407 msgid "A" msgstr "" +#: editor_routes.cc:204 +msgid "Track/Bus active ?" +msgstr "" + #: editor_routes.cc:205 mixer_strip.cc:1932 msgid "I" msgstr "" +#: editor_routes.cc:205 +msgid "MIDI input enabled" +msgstr "" + #: editor_routes.cc:206 mixer_strip.cc:1930 mono_panner.cc:198 #: stereo_panner.cc:215 stereo_panner.cc:242 msgid "R" msgstr "" +#: editor_routes.cc:206 +msgid "Record enabled" +msgstr "" + +#: editor_routes.cc:207 +msgid "Muted" +msgstr "" + #: editor_routes.cc:208 mixer_strip.cc:1941 meter_strip.cc:330 msgid "S" msgstr "" +#: editor_routes.cc:208 +msgid "Soloed" +msgstr "" + #: editor_routes.cc:209 msgid "SI" msgstr "" +#: editor_routes.cc:209 mixer_strip.cc:353 rc_option_editor.cc:1867 +msgid "Solo Isolated" +msgstr "" + +#: editor_routes.cc:210 +msgid "Solo Safe (Locked)" +msgstr "" + #: editor_routes.cc:471 mixer_ui.cc:1162 msgid "Hide All" msgstr "éšè—所有" @@ -4795,6 +5356,10 @@ msgstr "清除所有ä½ç½®" msgid "Unhide locations" msgstr "å–æ¶ˆéšè—ä½ç½®" +#: editor_rulers.cc:346 +msgid "New range" +msgstr "" + #: editor_rulers.cc:347 msgid "Clear all ranges" msgstr "清除所有范围" @@ -4819,6 +5384,10 @@ msgstr "新标尺" msgid "Timeline height" msgstr "" +#: editor_rulers.cc:383 +msgid "Align Video Track" +msgstr "" + #: editor_selection.cc:889 editor_selection.cc:932 msgid "set selected regions" msgstr "设置所选区域" @@ -4875,6 +5444,10 @@ msgstr "" "这个编辑点是已选择的标记,\n" "但是没有已选择的标记." +#: editor_snapshots.cc:136 +msgid "Rename Snapshot" +msgstr "" + #: editor_snapshots.cc:138 msgid "New name of snapshot" msgstr "å¿«ç…§æ–°åç§°" @@ -4934,6 +5507,10 @@ msgid "" "programming error: meter marker canvas item has no marker object pointer!" msgstr "" +#: editor_timefx.cc:68 +msgid "stretch/shrink" +msgstr "" + #: editor_timefx.cc:129 msgid "pitch shift" msgstr "音调切æ¢" @@ -4944,243 +5521,217 @@ msgstr "" "Protáhnutí Äasu (timefx) nemohlo být provedeno - PÅ™i vytváření vlákna doÅ¡lo " "k chybÄ›" -#: engine_dialog.cc:75 -msgid "Realtime" -msgstr "实时" - -#: engine_dialog.cc:76 -msgid "Do not lock memory" -msgstr "ä¸é”内存" - -#: engine_dialog.cc:77 -msgid "Unlock memory" -msgstr "è§£é”内存" - -#: engine_dialog.cc:78 -msgid "No zombies" -msgstr "" - #: engine_dialog.cc:79 -msgid "Provide monitor ports" +msgid "Device Control Panel" msgstr "" -#: engine_dialog.cc:80 -msgid "Force 16 bit" +#: engine_dialog.cc:80 engine_dialog.cc:1725 +msgid "Measure" msgstr "" #: engine_dialog.cc:81 -msgid "H/W monitoring" +msgid "Use results" msgstr "" #: engine_dialog.cc:82 -msgid "H/W metering" +msgid "Back to settings ... (ignore results)" msgstr "" #: engine_dialog.cc:83 -msgid "Verbose output" +msgid "Calibrate..." msgstr "" -#: engine_dialog.cc:103 -msgid "8000Hz" -msgstr "8000 Hz" - -#: engine_dialog.cc:104 -msgid "22050Hz" -msgstr "22050 Hz" - -#: engine_dialog.cc:105 -msgid "44100Hz" -msgstr "44100 Hz" - -#: engine_dialog.cc:106 -msgid "48000Hz" -msgstr "48000 Hz" +#: engine_dialog.cc:87 +msgid "Refresh list" +msgstr "" #: engine_dialog.cc:107 -msgid "88200Hz" -msgstr "88200 Hz" - -#: engine_dialog.cc:108 -msgid "96000Hz" -msgstr "96000 Hz" - -#: engine_dialog.cc:109 -msgid "192000Hz" -msgstr "192000 Hz" - -#: engine_dialog.cc:127 engine_dialog.cc:132 engine_dialog.cc:169 -#: engine_dialog.cc:562 midi_channel_selector.cc:163 -#: midi_channel_selector.cc:402 midi_channel_selector.cc:438 -#: rc_option_editor.cc:1250 sfdb_ui.cc:538 -msgid "None" +msgid "" +"No audio/MIDI backends detected. %1 cannot run\n" +"\n" +"(This is a build/packaging/system error. It should never happen.)" msgstr "" -#: engine_dialog.cc:128 engine_dialog.cc:563 -msgid "Triangular" -msgstr "三角形" - -#: engine_dialog.cc:129 engine_dialog.cc:565 -msgid "Rectangular" -msgstr "矩形" - -#: engine_dialog.cc:130 engine_dialog.cc:567 -msgid "Shaped" -msgstr "形状" - -#: engine_dialog.cc:158 engine_dialog.cc:483 engine_dialog.cc:974 -msgid "Playback/recording on 1 device" -msgstr "在设备1 播放/录音" - -#: engine_dialog.cc:159 engine_dialog.cc:487 engine_dialog.cc:540 -#: engine_dialog.cc:977 -msgid "Playback/recording on 2 devices" -msgstr "在设备2 播放/录音" - -#: engine_dialog.cc:160 engine_dialog.cc:503 engine_dialog.cc:980 -msgid "Playback only" -msgstr "仅播放" - -#: engine_dialog.cc:161 engine_dialog.cc:505 engine_dialog.cc:983 -msgid "Recording only" -msgstr "仅录音" - -#: engine_dialog.cc:171 engine_dialog.cc:448 -msgid "coremidi" +#: engine_dialog.cc:136 +msgid "Latency Measurement Tool" msgstr "" -#: engine_dialog.cc:173 engine_dialog.cc:581 -msgid "seq" +#: engine_dialog.cc:151 +msgid "" +"Turn down the volume on your audio equipment to a very " +"low level." msgstr "" -#: engine_dialog.cc:174 engine_dialog.cc:583 -msgid "raw" +#: engine_dialog.cc:159 +msgid "Select two channels below and connect them using a cable." msgstr "" -#: engine_dialog.cc:181 +#: engine_dialog.cc:164 +msgid "Output channel" +msgstr "" + +#: engine_dialog.cc:172 +msgid "Input channel" +msgstr "" + +#: engine_dialog.cc:207 +msgid "Once the channels are connected, click the \"Measure\" button." +msgstr "" + +#: engine_dialog.cc:214 +msgid "When satisfied with the results, click the \"Use results\" button." +msgstr "" + +#: engine_dialog.cc:229 engine_dialog.cc:1727 +msgid "No measurement results yet" +msgstr "" + +#: engine_dialog.cc:238 route_params_ui.cc:105 +msgid "Latency" +msgstr "延迟" + +#: engine_dialog.cc:333 +msgid "Audio System:" +msgstr "" + +#: engine_dialog.cc:374 msgid "Driver:" msgstr "驱动:" -#: engine_dialog.cc:191 sfdb_ui.cc:147 sfdb_ui.cc:260 sfdb_ui.cc:265 +#: engine_dialog.cc:380 +msgid "Device:" +msgstr "" + +#: engine_dialog.cc:385 engine_dialog.cc:475 sfdb_ui.cc:147 sfdb_ui.cc:260 +#: sfdb_ui.cc:265 msgid "Sample rate:" msgstr "采样率:" -#: engine_dialog.cc:196 +#: engine_dialog.cc:391 engine_dialog.cc:482 msgid "Buffer size:" msgstr "缓冲区大å°:" -#: engine_dialog.cc:202 -msgid "Number of buffers:" -msgstr "缓冲区数é‡:" - -#: engine_dialog.cc:209 -msgid "Approximate latency:" -msgstr "大约延迟:" - -#: engine_dialog.cc:222 -msgid "Audio mode:" -msgstr "音频模å¼:" - -#: engine_dialog.cc:284 engine_dialog.cc:408 -msgid "Ignore" -msgstr "忽略" - -#: engine_dialog.cc:292 -msgid "Client timeout" -msgstr "客户端超时" - -#: engine_dialog.cc:299 -msgid "Number of ports:" -msgstr "ç«¯å£æ•°é‡:" - -#: engine_dialog.cc:304 -msgid "MIDI driver:" -msgstr "MIDI驱动:" - -#: engine_dialog.cc:310 -msgid "Dither:" +#: engine_dialog.cc:404 +msgid "Input Channels:" msgstr "" -#: engine_dialog.cc:319 -msgid "" -"No JACK server found anywhere on this system. Please install JACK and restart" +#: engine_dialog.cc:415 +msgid "Output Channels:" msgstr "" -"No JACK server found anywhere on this system. Please install JACK and restart" -#: engine_dialog.cc:327 -msgid "Server:" -msgstr "æœåС噍:" - -#: engine_dialog.cc:339 -msgid "Input device:" -msgstr "输入设备:" - -#: engine_dialog.cc:343 -msgid "Output device:" -msgstr "输出设备:" - -#: engine_dialog.cc:348 +#: engine_dialog.cc:426 msgid "Hardware input latency:" msgstr "硬件输入延迟:" -#: engine_dialog.cc:351 engine_dialog.cc:357 +#: engine_dialog.cc:429 engine_dialog.cc:442 msgid "samples" msgstr "采样" -#: engine_dialog.cc:354 +#: engine_dialog.cc:439 msgid "Hardware output latency:" msgstr "硬件输出延迟:" -#: engine_dialog.cc:368 -msgid "Device" -msgstr "设备" +#: engine_dialog.cc:450 +msgid "MIDI System" +msgstr "" -#: engine_dialog.cc:370 -msgid "Advanced" -msgstr "高级" - -#: engine_dialog.cc:653 -msgid "cannot open JACK rc file %1 to store parameters" -msgstr "无法打开JACKçš„rc文件%1æ¥å‚¨å­˜å‚æ•°" - -#: engine_dialog.cc:787 +#: engine_dialog.cc:467 msgid "" -"You do not have any audio devices capable of\n" -"simultaneous playback and recording.\n" -"\n" -"Please use Applications -> Utilities -> Audio MIDI Setup\n" -"to create an \"aggregrate\" device, or install a suitable\n" -"audio interface.\n" -"\n" -"Please send email to Apple and ask them why new Macs\n" -"have no duplex audio device.\n" -"\n" -"Alternatively, if you really want just playback\n" -"or recording but not both, start JACK before running\n" -"%1 and choose the relevant device then." +"The %1 audio backend was configured and started externally.\n" +"This limits your control over it." msgstr "" -#: engine_dialog.cc:800 -msgid "No suitable audio devices" -msgstr "没有åˆé€‚的音频设备" - -#: engine_dialog.cc:1017 -msgid "JACK appears to be missing from the %1 bundle" -msgstr "JACK%1" - -#: engine_dialog.cc:1087 -msgid "You need to choose an audio device first." -msgstr "你需è¦å…ˆé€‰æ‹©ä¸€ä¸ªéŸ³é¢‘设备" - -#: engine_dialog.cc:1104 -msgid "Audio device \"%1\" not known on this computer." -msgstr "电脑无法识别音频设备 %1" - -#: engine_dialog.cc:1256 -msgid "AudioSetup value for %1 is missing data" +#: engine_dialog.cc:521 +msgid "" +"Your selected audio configuration is playback- or capture-only.\n" +"\n" +"Latency calibration requires playback and capture" msgstr "" -#: engine_dialog.cc:1335 -msgid "configuration files contain a JACK server path that doesn't exist (%1)" +#: engine_dialog.cc:595 +msgid "MIDI Inputs" +msgstr "" + +#: engine_dialog.cc:612 +msgid "MIDI Outputs" +msgstr "" + +#: engine_dialog.cc:696 +msgid "all available channels" +msgstr "" + +#: engine_dialog.cc:890 +#, c-format +msgid "%u samples" +msgstr "" + +#: engine_dialog.cc:941 +#, c-format +msgid "(%.1f msecs)" +msgstr "" + +#: engine_dialog.cc:1389 +msgid "Cannot set driver to %1" +msgstr "" + +#: engine_dialog.cc:1393 +msgid "Cannot set device name to %1" +msgstr "" + +#: engine_dialog.cc:1397 +msgid "Cannot set sample rate to %1" +msgstr "" + +#: engine_dialog.cc:1401 +msgid "Cannot set buffer size to %1" +msgstr "" + +#: engine_dialog.cc:1407 +msgid "Cannot set input channels to %1" +msgstr "" + +#: engine_dialog.cc:1411 +msgid "Cannot set output channels to %1" +msgstr "" + +#: engine_dialog.cc:1417 +msgid "Cannot set input latency to %1" +msgstr "" + +#: engine_dialog.cc:1421 +msgid "Cannot set output latency to %1" +msgstr "" + +#: engine_dialog.cc:1654 +msgid "No signal detected " +msgstr "" + +#: engine_dialog.cc:1667 port_insert_ui.cc:71 port_insert_ui.cc:99 +msgid "Disconnected from audio engine" +msgstr "与音频引擎断开连接" + +#: engine_dialog.cc:1681 +msgid "(signal detection error)" +msgstr "" + +#: engine_dialog.cc:1687 +msgid "(inverted - bad wiring)" +msgstr "" + +#: engine_dialog.cc:1697 +msgid "Detected roundtrip latency: %1" +msgstr "" + +#: engine_dialog.cc:1709 port_insert_ui.cc:135 +msgid "Detecting ..." +msgstr "检测中..." + +#: engine_dialog.cc:1789 +msgid "Disconnect from %1" +msgstr "" + +#: engine_dialog.cc:1801 +msgid "Connect to %1" msgstr "" #: export_channel_selector.cc:45 sfdb_ui.cc:145 @@ -5207,6 +5758,14 @@ msgstr "" msgid "Track output (channels: %1)" msgstr "音轨输出 (声é“: %1)" +#: export_channel_selector.cc:536 +msgid "Export region contents" +msgstr "" + +#: export_channel_selector.cc:537 +msgid "Export track output" +msgstr "" + #: export_dialog.cc:46 msgid "" "Some already existing files will be overwritten.Error: " msgstr "错误: " @@ -5282,6 +5849,10 @@ msgstr "æº" msgid "Stem Export" msgstr "" +#: export_file_notebook.cc:38 +msgid "Add another format" +msgstr "" + #: export_file_notebook.cc:178 msgid "Format" msgstr "æ ¼å¼" @@ -5290,6 +5861,14 @@ msgstr "æ ¼å¼" msgid "Location" msgstr "ä½ç½®" +#: export_file_notebook.cc:255 +msgid "No format!" +msgstr "" + +#: export_file_notebook.cc:267 +msgid "Format %1: %2" +msgstr "" + #: export_filename_selector.cc:32 msgid "Label:" msgstr "标签:" @@ -5307,9 +5886,9 @@ msgid "Folder:" msgstr "文件:" #: export_filename_selector.cc:37 session_import_dialog.cc:44 -#: transcode_video_dialog.cc:59 video_server_dialog.cc:45 -#: video_server_dialog.cc:47 export_video_dialog.cc:69 -#: export_video_dialog.cc:71 +#: transcode_video_dialog.cc:58 video_server_dialog.cc:45 +#: video_server_dialog.cc:47 export_video_dialog.cc:68 +#: export_video_dialog.cc:70 msgid "Browse" msgstr "æµè§ˆ" @@ -5433,6 +6012,10 @@ msgstr "FLAC选项" msgid "Broadcast Wave options" msgstr "广播Wave (Broadcast Wave) 选项" +#: export_format_selector.cc:136 +msgid "Do you really want to remove the format?" +msgstr "" + #: export_preset_selector.cc:28 msgid "Preset" msgstr "预设" @@ -5445,6 +6028,10 @@ msgstr "" "è¢«é€‰ä¸­çš„é¢„è®¾è½½å…¥ä¸æˆåŠŸ!\n" "æ˜¯ä¸æ˜¯å…¶å¼•用的的格å¼è¢«åˆ é™¤äº†?" +#: export_preset_selector.cc:156 +msgid "Do you really want to remove this preset?" +msgstr "" + #: export_timespan_selector.cc:46 msgid "Show Times as:" msgstr "显示时间:" @@ -5457,6 +6044,10 @@ msgstr "到" msgid "Range" msgstr "范围" +#: sfdb_freesound_mootcher.cc:189 sfdb_freesound_mootcher.cc:324 +msgid "curl error %1 (%2)" +msgstr "" + #: sfdb_freesound_mootcher.cc:266 msgid "getSoundResourceFile: There is no valid root in the xml file" msgstr "" @@ -5469,72 +6060,77 @@ msgstr "" msgid "%1" msgstr "" -#: gain_meter.cc:106 gain_meter.cc:357 gain_meter.cc:462 gain_meter.cc:856 +#: gain_meter.cc:105 gain_meter.cc:360 gain_meter.cc:465 gain_meter.cc:859 msgid "-inf" msgstr "" -#: gain_meter.cc:112 gain_meter.cc:913 +#: gain_meter.cc:111 gain_meter.cc:916 msgid "Fader automation mode" msgstr "" -#: gain_meter.cc:113 gain_meter.cc:914 +#: gain_meter.cc:112 gain_meter.cc:917 msgid "Fader automation type" msgstr "" -#: gain_meter.cc:122 gain_meter.cc:795 panner_ui.cc:178 panner_ui.cc:590 +#: gain_meter.cc:121 gain_meter.cc:798 panner_ui.cc:177 panner_ui.cc:589 msgid "Abs" msgstr "" -#: gain_meter.cc:762 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:557 +#: gain_meter.cc:765 mixer_strip.cc:1948 meter_strip.cc:337 panner_ui.cc:556 #: route_time_axis.cc:2411 msgid "P" msgstr "" -#: gain_meter.cc:765 panner_ui.cc:560 +#: gain_meter.cc:768 panner_ui.cc:559 msgid "T" msgstr "" -#: gain_meter.cc:768 panner_ui.cc:563 +#: gain_meter.cc:771 panner_ui.cc:562 msgid "W" msgstr "" -#: generic_pluginui.cc:83 +#: generic_pluginui.cc:81 msgid "Presets" msgstr "预设" -#: generic_pluginui.cc:232 +#: generic_pluginui.cc:230 msgid "Switches" msgstr "" -#: generic_pluginui.cc:242 generic_pluginui.cc:376 processor_box.cc:2212 +#: generic_pluginui.cc:240 generic_pluginui.cc:374 processor_box.cc:2251 msgid "Controls" msgstr "控制" -#: generic_pluginui.cc:270 +#: generic_pluginui.cc:268 msgid "Plugin Editor: could not build control element for port %1" msgstr "æ’件编辑器: æ— æ³•ä¸ºç«¯å£ %1 建立控制元素" -#: generic_pluginui.cc:408 +#: generic_pluginui.cc:406 msgid "Meters" msgstr "" -#: generic_pluginui.cc:423 +#: generic_pluginui.cc:421 msgid "Automation control" msgstr "自动控制" -#: generic_pluginui.cc:430 +#: generic_pluginui.cc:428 msgid "Mgnual" msgstr "" -#: global_port_matrix.cc:164 +#: global_port_matrix.cc:157 msgid "Audio Connection Manager" msgstr "音频连结管ç†" -#: global_port_matrix.cc:167 +#: global_port_matrix.cc:160 msgid "MIDI Connection Manager" msgstr "MIDI连接管ç†" -#: global_port_matrix.cc:213 io_selector.cc:216 +#: global_port_matrix.cc:200 io_selector.cc:210 mixer_strip.cc:719 +#: mixer_strip.cc:845 +msgid "Disconnect" +msgstr "å–æ¶ˆè¿žæŽ¥" + +#: global_port_matrix.cc:206 io_selector.cc:216 msgid "port" msgstr "" @@ -5550,10 +6146,30 @@ msgstr "å¯ç”¨å½•音..." msgid "Soloed..." msgstr "独å¥..." +#: group_tabs.cc:316 +msgid "Create New Group ..." +msgstr "" + #: group_tabs.cc:317 msgid "Create New Group From" msgstr "" +#: group_tabs.cc:320 +msgid "Edit Group..." +msgstr "" + +#: group_tabs.cc:321 +msgid "Collect Group" +msgstr "" + +#: group_tabs.cc:322 +msgid "Remove Group" +msgstr "" + +#: group_tabs.cc:325 +msgid "Remove Subgroup Bus" +msgstr "" + #: group_tabs.cc:327 msgid "Add New Subgroup Bus" msgstr "" @@ -5570,6 +6186,10 @@ msgstr "" msgid "Enable All Groups" msgstr "" +#: group_tabs.cc:337 +msgid "Disable All Groups" +msgstr "" + #: gtk-custom-ruler.c:133 msgid "Lower limit of ruler" msgstr "" @@ -5700,15 +6320,41 @@ msgstr "选择一个动作, ç„¶åŽç‚¹å‡»æŒ‰é”®æ¥(é‡)设置快æ·é”®" msgid "Main_menu" msgstr "" -#: keyeditor.cc:255 +#: keyeditor.cc:253 msgid "redirectmenu" msgstr "" +#: keyeditor.cc:255 +msgid "Editor_menus" +msgstr "" + +#: keyeditor.cc:257 +msgid "RegionList" +msgstr "" + +#: keyeditor.cc:259 +msgid "ProcessorMenu" +msgstr "" + +#: latency_gui.cc:39 +msgid "sample" +msgstr "" + +#: latency_gui.cc:40 +msgid "msec" +msgstr "" + #: latency_gui.cc:41 msgid "period" msgstr "" -#: latency_gui.cc:72 panner_ui.cc:392 +#: latency_gui.cc:55 +msgid "%1 sample" +msgid_plural "%1 samples" +msgstr[0] "" +msgstr[1] "" + +#: latency_gui.cc:72 panner_ui.cc:391 msgid "Reset" msgstr "预设" @@ -5740,6 +6386,10 @@ msgstr "" msgid "Pre-Emphasis" msgstr "" +#: location_ui.cc:314 +msgid "Remove this range" +msgstr "" + #: location_ui.cc:315 msgid "Start time - middle click to locate here" msgstr "" @@ -5748,10 +6398,26 @@ msgstr "" msgid "End time - middle click to locate here" msgstr "" +#: location_ui.cc:319 +msgid "Set range start from playhead location" +msgstr "" + +#: location_ui.cc:320 +msgid "Set range end from playhead location" +msgstr "" + +#: location_ui.cc:324 +msgid "Remove this marker" +msgstr "" + #: location_ui.cc:325 msgid "Position - middle click to locate here" msgstr "" +#: location_ui.cc:327 +msgid "Set marker time from playhead location" +msgstr "" + #: location_ui.cc:494 msgid "You cannot put a CD marker at the start of the session" msgstr "无法在会è¯å¼€å§‹æ”¾ç½®CD标记" @@ -5780,114 +6446,116 @@ msgstr "范围(包括CD轨é“区间)" msgid "add range marker" msgstr "添加范围标记" -#: main.cc:83 -msgid "%1 could not connect to JACK." -msgstr "%1 无法连接到JACK" +#: main.cc:81 +msgid "%1 could not connect to the audio backend." +msgstr "" -#: main.cc:210 main.cc:331 +#: main.cc:194 main.cc:315 +msgid "cannot create user %3 folder %1 (%2)" +msgstr "" + +#: main.cc:201 main.cc:322 msgid "cannot open pango.rc file %1" msgstr "无法打开pango.rc 文件 %1" -#: main.cc:235 main.cc:358 +#: main.cc:226 main.cc:349 msgid "Cannot find ArdourMono TrueType font" msgstr "" -#: main.cc:247 main.cc:364 +#: main.cc:238 main.cc:355 msgid "Cannot load ArdourMono TrueType font." msgstr "" -#: main.cc:312 +#: main.cc:303 msgid "" "No fontconfig file found on your system. Things may looked very odd or ugly" msgstr "" -#: main.cc:368 +#: main.cc:359 msgid "Failed to set fontconfig configuration." msgstr "" -#: main.cc:379 main.cc:395 -msgid "JACK exited" -msgstr "JACKå·²ç»é€€å‡º" +#: main.cc:370 main.cc:386 +msgid "The audio backend (%1) has failed, or terminated" +msgstr "" -#: main.cc:382 +#: main.cc:373 msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" +"%2 exited unexpectedly, and without notifying %1.\n" "\n" -"This could be due to misconfiguration or to an error inside JACK.\n" +"This could be due to misconfiguration or to an error inside %2.\n" "\n" "Click OK to exit %1." msgstr "" -"JACKå‡ºä¹Žæ„æ–™åœ°é€€å‡ºäº†, 没有任何报告 %1.\n" -"\n" -"è¿™å¯èƒ½æ˜¯å¾®é…置或JACK里é¢çš„错误.\n" -"\n" -"å•击OK退出 %1." -#: main.cc:397 -msgid "" -"JACK exited unexpectedly, and without notifying %1.\n" -"\n" -"This is probably due to an error inside JACK. You should restart JACK\n" -"and reconnect %1 to it, or exit %1 now. You cannot save your\n" -"session at this time, because we would lose your connection information.\n" +#: main.cc:387 +msgid "%2 exited unexpectedly, and without notifying %1." msgstr "" -"JACKå‡ºä¹Žæ„æ–™åœ°é€€å‡ºäº†, 没有任何报告 %1.\n" -"\n" -"è¿™å¯èƒ½æ˜¯JACK里é¢çš„错误. 你最好é‡å¯JACK\n" -"ç„¶åŽè¿žæŽ¥åˆ°%1, 或者现在退出%1.\n" -"现在你没办法ä¿å­˜ä¼šè¯, 因为你的连接信æ¯å¯èƒ½ä¼šä¸¢å¤±.\n" -#: main.cc:487 +#: main.cc:474 msgid " (built using " msgstr "" -#: main.cc:490 +#: main.cc:477 msgid " and GCC version " msgstr "" -#: main.cc:500 +#: main.cc:487 msgid "Copyright (C) 1999-2012 Paul Davis" msgstr "" -#: main.cc:501 +#: main.cc:488 msgid "" "Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel " "Baker, Robin Gareus" msgstr "" -#: main.cc:503 +#: main.cc:490 msgid "%1 comes with ABSOLUTELY NO WARRANTY" msgstr "" -#: main.cc:504 +#: main.cc:491 msgid "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." msgstr "" -#: main.cc:505 +#: main.cc:492 msgid "This is free software, and you are welcome to redistribute it " msgstr "" -#: main.cc:506 +#: main.cc:493 msgid "under certain conditions; see the source for copying conditions." msgstr "" -#: main.cc:513 +#: main.cc:500 msgid "could not initialize %1." msgstr "无法åˆå§‹åŒ– %1." -#: main.cc:522 +#: main.cc:509 msgid "Cannot xinstall SIGPIPE error handler" msgstr "" +#: main.cc:515 +msgid "could not create %1 GUI" +msgstr "" + #: main_clock.cc:51 msgid "Display delta to edit cursor" msgstr "" +#: marker.cc:251 video_image_frame.cc:121 +msgid "MarkerText" +msgstr "" + #: midi_channel_selector.cc:159 midi_channel_selector.cc:397 #: midi_channel_selector.cc:433 msgid "All" msgstr "所有" +#: midi_channel_selector.cc:163 midi_channel_selector.cc:402 +#: midi_channel_selector.cc:438 rc_option_editor.cc:1248 sfdb_ui.cc:538 +msgid "None" +msgstr "" + #: midi_channel_selector.cc:167 midi_channel_selector.cc:407 #: midi_channel_selector.cc:443 msgid "Invert" @@ -5897,10 +6565,42 @@ msgstr "å转" msgid "Force" msgstr "" +#: midi_channel_selector.cc:330 midi_channel_selector.cc:372 +msgid "MIDI Channel Control" +msgstr "" + +#: midi_channel_selector.cc:332 +msgid "Playback all channels" +msgstr "" + +#: midi_channel_selector.cc:333 +msgid "Play only selected channels" +msgstr "" + #: midi_channel_selector.cc:334 msgid "Use a single fixed channel for all playback" msgstr "" +#: midi_channel_selector.cc:335 +msgid "Record all channels" +msgstr "" + +#: midi_channel_selector.cc:336 +msgid "Record only selected channels" +msgstr "" + +#: midi_channel_selector.cc:337 +msgid "Force all channels to 1 channel" +msgstr "" + +#: midi_channel_selector.cc:378 +msgid "Inbound" +msgstr "" + +#: midi_channel_selector.cc:398 +msgid "Click to enable recording all channels" +msgstr "" + #: midi_channel_selector.cc:403 msgid "Click to disable recording all channels" msgstr "" @@ -5909,6 +6609,10 @@ msgstr "" msgid "Click to invert currently selected recording channels" msgstr "" +#: midi_channel_selector.cc:415 +msgid "Playback" +msgstr "" + #: midi_channel_selector.cc:434 msgid "Click to enable playback of all channels" msgstr "" @@ -5953,6 +6657,22 @@ msgstr "" msgid "Triplet" msgstr "" +#: midi_list_editor.cc:58 +msgid "Quarter" +msgstr "" + +#: midi_list_editor.cc:59 +msgid "Eighth" +msgstr "" + +#: midi_list_editor.cc:60 +msgid "Sixteenth" +msgstr "" + +#: midi_list_editor.cc:61 +msgid "Thirty-second" +msgstr "" + #: midi_list_editor.cc:62 msgid "Sixty-fourth" msgstr "" @@ -5965,6 +6685,50 @@ msgstr "" msgid "Vel" msgstr "" +#: midi_list_editor.cc:215 +msgid "edit note start" +msgstr "" + +#: midi_list_editor.cc:224 +msgid "edit note channel" +msgstr "" + +#: midi_list_editor.cc:234 +msgid "edit note number" +msgstr "" + +#: midi_list_editor.cc:244 +msgid "edit note velocity" +msgstr "" + +#: midi_list_editor.cc:258 +msgid "edit note length" +msgstr "" + +#: midi_list_editor.cc:460 +msgid "insert new note" +msgstr "" + +#: midi_list_editor.cc:524 +msgid "delete notes (from list)" +msgstr "" + +#: midi_list_editor.cc:599 +msgid "change note channel" +msgstr "" + +#: midi_list_editor.cc:607 +msgid "change note number" +msgstr "" + +#: midi_list_editor.cc:617 +msgid "change note velocity" +msgstr "" + +#: midi_list_editor.cc:687 +msgid "change note length" +msgstr "" + #: midi_port_dialog.cc:39 msgid "Add MIDI Port" msgstr "添加MIDI端å£" @@ -5981,6 +6745,14 @@ msgstr "" msgid "channel edit" msgstr "声é“编辑" +#: midi_region_view.cc:874 +msgid "velocity edit" +msgstr "" + +#: midi_region_view.cc:931 +msgid "add note" +msgstr "" + #: midi_region_view.cc:1779 msgid "step add" msgstr "步增" @@ -6045,10 +6817,22 @@ msgstr "改å˜å£°é“" msgid "Bank " msgstr "" +#: midi_region_view.cc:3131 +msgid "Program " +msgstr "" + +#: midi_region_view.cc:3132 +msgid "Channel " +msgstr "" + #: midi_region_view.cc:3301 midi_region_view.cc:3303 msgid "paste" msgstr "粘贴" +#: midi_region_view.cc:3761 +msgid "delete sysex" +msgstr "" + #: midi_streamview.cc:479 msgid "failed to create MIDI region" msgstr "" @@ -6057,6 +6841,10 @@ msgstr "" msgid "External MIDI Device" msgstr "" +#: midi_time_axis.cc:263 +msgid "External Device Mode" +msgstr "" + #: midi_time_axis.cc:271 msgid "Chns" msgstr "" @@ -6081,6 +6869,10 @@ msgstr "音符范围" msgid "Note Mode" msgstr "音符模å¼" +#: midi_time_axis.cc:497 +msgid "Channel Selector" +msgstr "" + #: midi_time_axis.cc:502 msgid "Color Mode" msgstr "颜色模å¼" @@ -6117,6 +6909,10 @@ msgstr "é€šé“ %1" msgid "Controllers %1-%2" msgstr "控制器 %1-%2" +#: midi_time_axis.cc:933 midi_time_axis.cc:936 +msgid "Controller %1" +msgstr "" + #: midi_time_axis.cc:959 msgid "Sustained" msgstr "ä¿æŒ" @@ -6137,26 +6933,43 @@ msgstr "通é“颜色" msgid "Track Color" msgstr "音轨颜色" +#: midi_time_axis.cc:1488 midi_time_axis.cc:1494 midi_time_axis.cc:1504 +#: midi_time_axis.cc:1510 +msgid "all" +msgstr "" + #: midi_time_axis.cc:1491 midi_time_axis.cc:1507 msgid "some" msgstr "" -#: midi_tracer.cc:51 +#: midi_tracer.cc:46 +msgid "Line history: " +msgstr "" + +#: midi_tracer.cc:54 msgid "Auto-Scroll" msgstr "自动滚动" -#: midi_tracer.cc:52 +#: midi_tracer.cc:55 msgid "Decimal" msgstr "å进制" -#: midi_tracer.cc:53 rc_option_editor.cc:659 +#: midi_tracer.cc:56 rc_option_editor.cc:657 msgid "Enabled" msgstr "å¯ç”¨" -#: midi_tracer.cc:66 +#: midi_tracer.cc:57 +msgid "Delta times" +msgstr "" + +#: midi_tracer.cc:70 msgid "Port:" msgstr "端å£:" +#: midi_velocity_dialog.cc:31 +msgid "New velocity" +msgstr "" + #: missing_file_dialog.cc:34 msgid "Missing File!" msgstr "找ä¸åˆ°æ–‡ä»¶!" @@ -6213,7 +7026,7 @@ msgstr "点击选择一个é¢å¤–的文件夹" msgid "Missing Plugins" msgstr "丢失æ’ä»¶" -#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:60 +#: missing_plugin_dialog.cc:33 transcode_video_dialog.cc:59 msgid "OK" msgstr "OK" @@ -6241,6 +7054,34 @@ msgstr "" msgid "Set Gain to 0dB on Mixer-Selected Tracks/Busses" msgstr "" +#: mixer_actor.cc:63 +msgid "Copy Selected Processors" +msgstr "" + +#: mixer_actor.cc:64 +msgid "Cut Selected Processors" +msgstr "" + +#: mixer_actor.cc:65 +msgid "Paste Selected Processors" +msgstr "" + +#: mixer_actor.cc:66 +msgid "Delete Selected Processors" +msgstr "" + +#: mixer_actor.cc:67 +msgid "Select All (visible) Processors" +msgstr "" + +#: mixer_actor.cc:68 +msgid "Toggle Selected Processors" +msgstr "" + +#: mixer_actor.cc:69 +msgid "Toggle Selected Plugins" +msgstr "" + #: mixer_actor.cc:72 mixer_actor.cc:73 msgid "Scroll Mixer Window to the left" msgstr "" @@ -6249,6 +7090,10 @@ msgstr "" msgid "Toggle MIDI Input Active for Mixer-Selected Tracks/Busses" msgstr "" +#: mixer_actor.cc:90 +msgid "Loaded mixer bindings from %1" +msgstr "" + #: mixer_actor.cc:92 msgid "Could not find mixer.bindings in search path %1" msgstr "" @@ -6257,6 +7102,11 @@ msgstr "" msgid "pre" msgstr "" +#: mixer_strip.cc:95 mixer_strip.cc:123 mixer_strip.cc:354 mixer_strip.cc:1300 +#: rc_option_editor.cc:1868 +msgid "Comments" +msgstr "" + #: mixer_strip.cc:147 msgid "Click to toggle the width of this mixer strip." msgstr "" @@ -6267,6 +7117,14 @@ msgid "" "%1-%2-click to toggle the width of all strips." msgstr "" +#: mixer_strip.cc:156 +msgid "Hide this mixer strip" +msgstr "" + +#: mixer_strip.cc:167 +msgid "Click to select metering point" +msgstr "" + #: mixer_strip.cc:173 msgid "tupni" msgstr "" @@ -6291,7 +7149,11 @@ msgstr "" msgid "Mix group" msgstr "" -#: mixer_strip.cc:352 rc_option_editor.cc:1879 route_ui.cc:1218 +#: mixer_strip.cc:351 rc_option_editor.cc:1865 +msgid "Phase Invert" +msgstr "" + +#: mixer_strip.cc:352 rc_option_editor.cc:1866 route_ui.cc:1218 msgid "Solo Safe" msgstr "Solo安全" @@ -6299,6 +7161,10 @@ msgstr "Solo安全" msgid "Group" msgstr "组" +#: mixer_strip.cc:356 rc_option_editor.cc:1869 +msgid "Meter Point" +msgstr "" + #: mixer_strip.cc:470 msgid "Enable/Disable MIDI input" msgstr "å¯ç”¨/ç¦ç”¨MIDI输入" @@ -6313,8 +7179,8 @@ msgstr "" msgid "Snd" msgstr "" -#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2154 -msgid "Not connected to JACK - no I/O changes are possible" +#: mixer_strip.cc:701 mixer_strip.cc:829 processor_box.cc:2193 +msgid "Not connected to audio engine - no I/O changes are possible" msgstr "" #: mixer_strip.cc:1096 @@ -6329,6 +7195,14 @@ msgstr "" msgid "Disconnected" msgstr "失去连接" +#: mixer_strip.cc:1303 +msgid "*Comments*" +msgstr "" + +#: mixer_strip.cc:1310 +msgid "Cmt" +msgstr "" + #: mixer_strip.cc:1313 msgid "*Cmt*" msgstr "" @@ -6429,10 +7303,18 @@ msgstr "" msgid "Pre-fader" msgstr "" +#: mixer_strip.cc:2129 +msgid "Post-fader" +msgstr "" + #: mixer_strip.cc:2166 meter_strip.cc:728 msgid "Change all in Group to %1" msgstr "" +#: mixer_strip.cc:2168 meter_strip.cc:730 +msgid "Change all to %1" +msgstr "" + #: mixer_strip.cc:2170 meter_strip.cc:732 msgid "Change same track-type to %1" msgstr "" @@ -6453,6 +7335,10 @@ msgstr "" msgid "Variable height" msgstr "" +#: meter_strip.cc:765 +msgid "Short" +msgstr "" + #: meter_strip.cc:766 msgid "Tall" msgstr "" @@ -6569,16 +7455,28 @@ msgstr "" msgid "Dim" msgstr "" +#: monitor_section.cc:190 +msgid "excl. solo" +msgstr "" + #: monitor_section.cc:192 msgid "Exclusive solo means that only 1 solo is active at a time" msgstr "" +#: monitor_section.cc:199 +msgid "solo » mute" +msgstr "" + #: monitor_section.cc:201 msgid "" "If enabled, solo will override mute\n" "(a soloed & muted track or bus will be audible)" msgstr "" +#: monitor_section.cc:227 +msgid "mute" +msgstr "" + #: monitor_section.cc:238 msgid "dim" msgstr "" @@ -6591,6 +7489,22 @@ msgstr "å•声é“" msgid "Monitor" msgstr "" +#: monitor_section.cc:678 +msgid "Switch monitor to mono" +msgstr "" + +#: monitor_section.cc:681 +msgid "Cut monitor" +msgstr "" + +#: monitor_section.cc:684 +msgid "Dim monitor" +msgstr "" + +#: monitor_section.cc:687 +msgid "Toggle exclusive solo mode" +msgstr "" + #: monitor_section.cc:693 msgid "Toggle mute overrides solo mode" msgstr "" @@ -6637,6 +7551,10 @@ msgstr "" msgid "%" msgstr "" +#: nag.cc:41 +msgid "Support %1 Development" +msgstr "" + #: nag.cc:42 msgid "I'd like to make a one-time donation" msgstr "我想æ¥ä¸ªä¸€æ¬¡æ€§æèµ " @@ -6763,10 +7681,9 @@ msgstr " -b, --bindings æ‰“å°æ‰€æœ‰å¯èƒ½çš„键盘绑定åç§°\n" #: opts.cc:63 msgid "" -" -c, --name Use a specific jack client name, default is " +" -c, --name Use a specific backend client name, default is " "ardour\n" msgstr "" -" -c, --name 用一个特殊的JACK用户åç§°, 默认å称是: ardour\n" #: opts.cc:64 msgid "" @@ -6780,6 +7697,10 @@ msgid "" msgstr "" " -D, --debug 设置调试标志. 使用 \"-D list\" 显示å¯ç”¨çš„选项\n" +#: opts.cc:66 +msgid " -n, --no-splash Do not show splash screen\n" +msgstr "" + #: opts.cc:67 msgid " -m, --menus file Use \"file\" to define menus\n" msgstr " -m, --menus file 使用 \"file\" 定义èœå•\n" @@ -6827,7 +7748,7 @@ msgstr "" msgid "Panner (2D)" msgstr "" -#: panner2d.cc:783 panner_ui.cc:384 plugin_ui.cc:451 +#: panner2d.cc:783 panner_ui.cc:383 plugin_ui.cc:448 msgid "Bypass" msgstr "" @@ -6835,15 +7756,15 @@ msgstr "" msgid "Panner" msgstr "" -#: panner_ui.cc:71 +#: panner_ui.cc:70 msgid "Pan automation mode" msgstr "" -#: panner_ui.cc:72 +#: panner_ui.cc:71 msgid "Pan automation type" msgstr "" -#: panner_ui.cc:295 +#: panner_ui.cc:294 msgid "" "No panner user interface is currently available for %1-in/2out tracks/busses" msgstr "" @@ -6996,107 +7917,133 @@ msgstr "æ ¹æ®åˆ›å»ºè€…" msgid "By Category" msgstr "æ ¹æ®ç±»åˆ«" -#: plugin_ui.cc:116 +#: plugin_ui.cc:114 msgid "Eh? LADSPA plugins don't have editors!" msgstr "呃?LADSPAæ’件没有编辑器" -#: plugin_ui.cc:128 +#: plugin_ui.cc:123 plugin_ui.cc:226 +msgid "" +"unknown type of editor-supplying plugin (note: no VST support in this " +"version of %1)" +msgstr "" + +#: plugin_ui.cc:126 msgid "unknown type of editor-supplying plugin" msgstr "未知类型编辑器æ’ä»¶" -#: plugin_ui.cc:329 +#: plugin_ui.cc:256 +msgid "" +"unknown type of editor-supplying plugin (note: no linuxVST support in this " +"version of %1)" +msgstr "" + +#: plugin_ui.cc:328 msgid "create_lv2_editor called on non-LV2 plugin" msgstr "" -#: plugin_ui.cc:417 +#: plugin_ui.cc:414 msgid "Add" msgstr "增添" -#: plugin_ui.cc:422 +#: plugin_ui.cc:418 +msgid "Description" +msgstr "" + +#: plugin_ui.cc:419 msgid "Plugin analysis" msgstr "æ’件分æž" -#: plugin_ui.cc:429 +#: plugin_ui.cc:426 msgid "" "Presets (if any) for this plugin\n" "(Both factory and user-created)" msgstr "" -#: plugin_ui.cc:431 +#: plugin_ui.cc:427 +msgid "Save a new preset" +msgstr "" + +#: plugin_ui.cc:428 msgid "Save the current preset" msgstr "" -#: plugin_ui.cc:432 +#: plugin_ui.cc:429 msgid "Delete the current preset" msgstr "" -#: plugin_ui.cc:433 +#: plugin_ui.cc:430 msgid "Disable signal processing by the plugin" msgstr "" -#: plugin_ui.cc:466 plugin_ui.cc:662 +#: plugin_ui.cc:463 plugin_ui.cc:659 msgid "" "Click to allow the plugin to receive keyboard events that %1 would normally " "use as a shortcut" msgstr "å•击æ¥å…许此æ’件接å—键盘事件, 这样å­å°±å¯ä»¥æ­£å¸¸åœ°ä½¿ç”¨ %1 å¿«æ·é”®" -#: plugin_ui.cc:467 +#: plugin_ui.cc:464 msgid "Click to enable/disable this plugin" msgstr "å•击æ¥å¯ç”¨/ç¦ç”¨æ­¤æ’ä»¶" -#: plugin_ui.cc:508 +#: plugin_ui.cc:503 +msgid "latency (%1 sample)" +msgid_plural "latency (%1 samples)" +msgstr[0] "" +msgstr[1] "" + +#: plugin_ui.cc:505 msgid "latency (%1 ms)" msgstr "延迟 (%1 毫秒)" -#: plugin_ui.cc:519 +#: plugin_ui.cc:516 msgid "Edit Latency" msgstr "Upravit prodlevu" -#: plugin_ui.cc:558 +#: plugin_ui.cc:555 msgid "Plugin preset %1 not found" msgstr "未找到æ’件预设%1" -#: plugin_ui.cc:595 +#: plugin_ui.cc:592 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "full version" msgstr "" -#: plugin_ui.cc:615 plugin_ui.cc:630 +#: plugin_ui.cc:612 plugin_ui.cc:627 msgid "" "Plugin presets are not supported in this build of %1. Consider paying for a " "newer version" msgstr "" -#: plugin_ui.cc:669 +#: plugin_ui.cc:666 msgid "Click to allow normal use of %1 keyboard shortcuts" msgstr "å•击æ¥å…许正常地使用 %1 å¿«æ·é”®" -#: port_group.cc:335 +#: port_group.cc:337 msgid "%1 Busses" msgstr "%1 总线" -#: port_group.cc:336 +#: port_group.cc:338 msgid "%1 Tracks" msgstr "%1 音轨" -#: port_group.cc:337 +#: port_group.cc:339 msgid "Hardware" msgstr "银监" -#: port_group.cc:338 +#: port_group.cc:340 msgid "%1 Misc" msgstr "%1 æ‚项" -#: port_group.cc:339 +#: port_group.cc:341 msgid "Other" msgstr "å…¶ä»–" -#: port_group.cc:430 port_group.cc:431 +#: port_group.cc:432 port_group.cc:433 msgid "LTC Out" msgstr "" -#: port_group.cc:434 port_group.cc:435 +#: port_group.cc:436 port_group.cc:437 msgid "LTC In" msgstr "" @@ -7132,11 +8079,15 @@ msgstr "MIDI时钟输出" msgid "MMC out" msgstr "MMC输出" -#: port_group.cc:552 +#: port_group.cc:532 +msgid ":monitor" +msgstr "" + +#: port_group.cc:544 msgid "system:" msgstr "" -#: port_group.cc:553 +#: port_group.cc:545 msgid "alsa_pcm" msgstr "" @@ -7152,18 +8103,10 @@ msgstr "å‘é€/输出" msgid "Return/Input" msgstr "返回/输入" -#: port_insert_ui.cc:71 port_insert_ui.cc:99 -msgid "Disconnected from audio engine" -msgstr "与音频引擎断开连接" - #: port_insert_ui.cc:86 msgid "No signal detected" msgstr "没有检测到信å·" -#: port_insert_ui.cc:135 -msgid "Detecting ..." -msgstr "检测中..." - #: port_insert_ui.cc:166 msgid "Port Insert " msgstr "æ’入端å£" @@ -7207,25 +8150,38 @@ msgstr "显示å„个端å£" msgid "Flip" msgstr "" -#: port_matrix.cc:726 +#: port_matrix.cc:721 +msgid "" +"It is not possible to add a port here, as the first processor in the track " +"or buss cannot support the new configuration." +msgstr "" + +#: port_matrix.cc:724 msgid "Cannot add port" msgstr "" -#: port_matrix.cc:748 +#: port_matrix.cc:746 msgid "Port removal not allowed" msgstr "ä¸å…许端å£ç§»é™¤" -#: port_matrix.cc:966 +#: port_matrix.cc:747 +msgid "" +"This port cannot be removed.\n" +"Either the first plugin in the track or buss cannot accept\n" +"the new number of inputs or the last plugin has more outputs." +msgstr "" + +#: port_matrix.cc:964 #, c-format msgid "Remove '%s'" msgstr "移除 '%s'" -#: port_matrix.cc:981 +#: port_matrix.cc:979 #, c-format msgid "%s all from '%s'" msgstr "%s 所有, 从 '%s'" -#: port_matrix.cc:1047 +#: port_matrix.cc:1045 msgid "channel" msgstr "声é“" @@ -7250,7 +8206,19 @@ msgid "" "Double-click to show generic GUI." msgstr "" -#: processor_box.cc:465 rc_option_editor.cc:1911 rc_option_editor.cc:1925 +#: processor_box.cc:372 +msgid "Show All Controls" +msgstr "" + +#: processor_box.cc:376 +msgid "Hide All Controls" +msgstr "" + +#: processor_box.cc:465 +msgid "on" +msgstr "" + +#: processor_box.cc:465 rc_option_editor.cc:1898 rc_option_editor.cc:1912 msgid "off" msgstr "" @@ -7260,7 +8228,7 @@ msgid "" "plugins,inserts,sends and more" msgstr "" -#: processor_box.cc:1197 processor_box.cc:1591 +#: processor_box.cc:1197 processor_box.cc:1618 msgid "Plugin Incompatibility" msgstr "æ’ä»¶ä¸åŒ¹é…" @@ -7276,12 +8244,36 @@ msgstr "" "\n" "æ­¤æ’ä»¶:\n" +#: processor_box.cc:1209 +msgid "\t%1 MIDI input\n" +msgid_plural "\t%1 MIDI inputs\n" +msgstr[0] "" +msgstr[1] "" + +#: processor_box.cc:1213 +msgid "\t%1 audio input\n" +msgid_plural "\t%1 audio inputs\n" +msgstr[0] "" +msgstr[1] "" + #: processor_box.cc:1216 msgid "" "\n" "but at the insertion point, there are:\n" msgstr "" +#: processor_box.cc:1219 +msgid "\t%1 MIDI channel\n" +msgid_plural "\t%1 MIDI channels\n" +msgstr[0] "" +msgstr[1] "" + +#: processor_box.cc:1223 +msgid "\t%1 audio channel\n" +msgid_plural "\t%1 audio channels\n" +msgstr[0] "" +msgstr[1] "" + #: processor_box.cc:1226 msgid "" "\n" @@ -7294,33 +8286,33 @@ msgstr "" msgid "Cannot set up new send: %1" msgstr "" -#: processor_box.cc:1594 +#: processor_box.cc:1621 msgid "" "You cannot reorder these plugins/sends/inserts\n" "in that way because the inputs and\n" "outputs will not work correctly." msgstr "" -#: processor_box.cc:1778 +#: processor_box.cc:1805 msgid "Rename Processor" msgstr "é‡å‘½å处ç†å™¨" -#: processor_box.cc:1809 +#: processor_box.cc:1836 msgid "At least 100 IO objects exist with a name like %1 - name not changed" msgstr "至少有100个IO(输入输出)对象存在ç€è¿™æ ·çš„%1çš„åç§° -å称没有改å˜" -#: processor_box.cc:1943 +#: processor_box.cc:1970 msgid "plugin insert constructor failed" msgstr "" -#: processor_box.cc:1954 +#: processor_box.cc:1981 msgid "" "Copying the set of processors on the clipboard failed,\n" "probably because the I/O configuration of the plugins\n" "could not match the configuration of this track." msgstr "" -#: processor_box.cc:2000 +#: processor_box.cc:2027 msgid "" "Do you really want to remove all processors from %1?\n" "(this cannot be undone)" @@ -7328,70 +8320,78 @@ msgstr "" "你真想è¦ç§»é™¤æ‰€æœ‰å¤„ç†å™¨ä»Ž %1?\n" "(æ­¤æ“作ä¸å¯æ’¤é”€)" -#: processor_box.cc:2004 processor_box.cc:2029 +#: processor_box.cc:2031 processor_box.cc:2056 msgid "Yes, remove them all" msgstr "确定移除所有" -#: processor_box.cc:2006 processor_box.cc:2031 +#: processor_box.cc:2033 processor_box.cc:2058 msgid "Remove processors" msgstr "移除处ç†å™¨" -#: processor_box.cc:2021 +#: processor_box.cc:2048 msgid "" "Do you really want to remove all pre-fader processors from %1?\n" "(this cannot be undone)" msgstr "" -#: processor_box.cc:2024 +#: processor_box.cc:2051 msgid "" "Do you really want to remove all post-fader processors from %1?\n" "(this cannot be undone)" msgstr "" -#: processor_box.cc:2200 +#: processor_box.cc:2239 msgid "New Plugin" msgstr "æ–°æ’ä»¶" -#: processor_box.cc:2203 +#: processor_box.cc:2242 msgid "New Insert" msgstr "æ–°æ’å…¥" -#: processor_box.cc:2206 +#: processor_box.cc:2245 msgid "New External Send ..." msgstr "" -#: processor_box.cc:2210 +#: processor_box.cc:2249 msgid "New Aux Send ..." msgstr "" -#: processor_box.cc:2214 +#: processor_box.cc:2253 msgid "Clear (all)" msgstr "清除(所有)" -#: processor_box.cc:2216 +#: processor_box.cc:2255 msgid "Clear (pre-fader)" msgstr "" -#: processor_box.cc:2218 +#: processor_box.cc:2257 msgid "Clear (post-fader)" msgstr "" -#: processor_box.cc:2244 +#: processor_box.cc:2283 msgid "Activate All" msgstr "激活所有" -#: processor_box.cc:2248 +#: processor_box.cc:2285 +msgid "Deactivate All" +msgstr "" + +#: processor_box.cc:2287 msgid "A/B Plugins" msgstr "A/B æ’ä»¶" -#: processor_box.cc:2257 +#: processor_box.cc:2296 msgid "Edit with generic controls..." msgstr "" -#: processor_box.cc:2557 +#: processor_box.cc:2599 msgid "%1: %2 (by %3)" msgstr "" +#: processor_box.cc:2601 +msgid "%2 (by %3)" +msgstr "" + #: patch_change_dialog.cc:51 msgid "Patch Change" msgstr "" @@ -7440,108 +8440,120 @@ msgstr "对é½éŸ³ç¬¦å¼€å§‹" msgid "Snap note end" msgstr "对é½éŸ³ç¬¦ç»“æŸ" -#: rc_option_editor.cc:69 +#: rc_option_editor.cc:67 msgid "Click audio file:" msgstr "å•击音频文件:" -#: rc_option_editor.cc:72 rc_option_editor.cc:79 +#: rc_option_editor.cc:70 rc_option_editor.cc:77 msgid "Browse..." msgstr "æµè§ˆ..." -#: rc_option_editor.cc:76 +#: rc_option_editor.cc:74 msgid "Click emphasis audio file:" msgstr "" -#: rc_option_editor.cc:108 +#: rc_option_editor.cc:106 msgid "Choose Click" msgstr "选择点击" -#: rc_option_editor.cc:128 +#: rc_option_editor.cc:126 msgid "Choose Click Emphasis" msgstr "" -#: rc_option_editor.cc:160 +#: rc_option_editor.cc:158 msgid "Limit undo history to" msgstr "显示撤销历å²" -#: rc_option_editor.cc:161 +#: rc_option_editor.cc:159 msgid "Save undo history of" msgstr "ä¿å­˜æ’¤é”€åކå²" -#: rc_option_editor.cc:170 rc_option_editor.cc:177 +#: rc_option_editor.cc:168 rc_option_editor.cc:175 msgid "commands" msgstr "命令" -#: rc_option_editor.cc:315 +#: rc_option_editor.cc:313 msgid "Edit using:" msgstr "用于编辑:" -#: rc_option_editor.cc:321 rc_option_editor.cc:347 rc_option_editor.cc:374 +#: rc_option_editor.cc:319 rc_option_editor.cc:345 rc_option_editor.cc:372 msgid "+ button" msgstr "+按钮" -#: rc_option_editor.cc:341 +#: rc_option_editor.cc:339 msgid "Delete using:" msgstr "用于删除:" -#: rc_option_editor.cc:368 +#: rc_option_editor.cc:366 msgid "Insert note using:" msgstr "用户æ’入音符:" -#: rc_option_editor.cc:411 +#: rc_option_editor.cc:393 +msgid "Ignore snap using:" +msgstr "" + +#: rc_option_editor.cc:409 msgid "Keyboard layout:" msgstr "键盘布局:" -#: rc_option_editor.cc:534 +#: rc_option_editor.cc:532 msgid "Font scaling:" msgstr "字体缩放:" -#: rc_option_editor.cc:586 +#: rc_option_editor.cc:584 msgid "Playback (seconds of buffering):" msgstr "回放(缓冲的秒数):" -#: rc_option_editor.cc:599 +#: rc_option_editor.cc:597 msgid "Recording (seconds of buffering):" msgstr "录音(缓冲的秒数):" -#: rc_option_editor.cc:660 +#: rc_option_editor.cc:654 +msgid "Control Surface Protocol" +msgstr "" + +#: rc_option_editor.cc:658 msgid "Feedback" msgstr "å馈" -#: rc_option_editor.cc:665 +#: rc_option_editor.cc:663 msgid "Double-click on a name to edit settings for an enabled protocol" msgstr "åŒå‡»åç§°æ¥æ ‡è®°å·²å¯ç”¨çš„å议设置" -#: rc_option_editor.cc:817 +#: rc_option_editor.cc:815 msgid "Show Video Export Info before export" msgstr "" -#: rc_option_editor.cc:818 +#: rc_option_editor.cc:816 msgid "Show Video Server Startup Dialog" msgstr "" -#: rc_option_editor.cc:819 +#: rc_option_editor.cc:817 msgid "Advanced Setup (remote video server)" msgstr "" -#: rc_option_editor.cc:827 +#: rc_option_editor.cc:825 msgid "" "When enabled you can speficify a custom video-server URL and docroot. " "- Do not enable this option unless you know what you are doing." msgstr "" -#: rc_option_editor.cc:829 +#: rc_option_editor.cc:827 msgid "Video Server URL:" msgstr "" -#: rc_option_editor.cc:834 +#: rc_option_editor.cc:832 msgid "" "Base URL of the video-server including http prefix. This is usually 'http://" "hostname.example.org:1554/' and defaults to 'http://localhost:1554/' when " "the video-server is running locally" msgstr "" -#: rc_option_editor.cc:841 +#: rc_option_editor.cc:834 +msgid "Video Folder:" +msgstr "" + +#: rc_option_editor.cc:839 msgid "" "Local path to the video-server document-root. Only files below this " "directory will be accessible by the video-server. If the server run on a " @@ -7550,97 +8562,113 @@ msgid "" "monitor and file-browsing when opening/adding a video file." msgstr "" -#: rc_option_editor.cc:848 +#: rc_option_editor.cc:846 msgid "" "When enabled an information window with details is displayed before " "the video-export dialog." msgstr "" -#: rc_option_editor.cc:853 +#: rc_option_editor.cc:851 msgid "" "When enabled the video server is never launched automatically without " "confirmation" msgstr "" -#: rc_option_editor.cc:993 +#: rc_option_editor.cc:991 msgid "%1 Preferences" msgstr "%1 首选项" -#: rc_option_editor.cc:1004 +#: rc_option_editor.cc:1002 msgid "DSP CPU Utilization" msgstr "DSPçš„CPU使用率" -#: rc_option_editor.cc:1008 +#: rc_option_editor.cc:1006 msgid "Signal processing uses" msgstr "ä¿¡å·å¤„ç†ä½¿ç”¨" -#: rc_option_editor.cc:1013 +#: rc_option_editor.cc:1011 msgid "all but one processor" msgstr "除了一个处ç†å™¨" -#: rc_option_editor.cc:1014 +#: rc_option_editor.cc:1012 msgid "all available processors" msgstr "所有å¯ç”¨çš„处ç†å™¨" -#: rc_option_editor.cc:1017 +#: rc_option_editor.cc:1015 msgid "%1 processors" msgstr "ï¼…1 处ç†å™¨" -#: rc_option_editor.cc:1020 +#: rc_option_editor.cc:1018 msgid "This setting will only take effect when %1 is restarted." msgstr "" -#: rc_option_editor.cc:1032 +#: rc_option_editor.cc:1023 +msgid "Options|Undo" +msgstr "" + +#: rc_option_editor.cc:1030 msgid "Verify removal of last capture" msgstr "确认移除最åŽçš„录音" -#: rc_option_editor.cc:1040 +#: rc_option_editor.cc:1038 msgid "Make periodic backups of the session file" msgstr "å®šæœŸå¤‡ä»½ä¼šè¯æ–‡ä»¶" -#: rc_option_editor.cc:1050 +#: rc_option_editor.cc:1043 +msgid "Session Management" +msgstr "" + +#: rc_option_editor.cc:1048 msgid "Always copy imported files" msgstr "总是å¤åˆ¶å¯¼å…¥çš„æ–‡ä»¶" -#: rc_option_editor.cc:1065 +#: rc_option_editor.cc:1055 +msgid "Default folder for new sessions:" +msgstr "" + +#: rc_option_editor.cc:1063 msgid "Maximum number of recent sessions" msgstr "" -#: rc_option_editor.cc:1083 route_time_axis.cc:215 route_time_axis.cc:676 +#: rc_option_editor.cc:1076 +msgid "Click gain level" +msgstr "" + +#: rc_option_editor.cc:1081 route_time_axis.cc:215 route_time_axis.cc:676 msgid "Automation" msgstr "自动化" -#: rc_option_editor.cc:1088 +#: rc_option_editor.cc:1086 msgid "Thinning factor (larger value => less data)" msgstr "" -#: rc_option_editor.cc:1097 +#: rc_option_editor.cc:1095 msgid "Automation sampling interval (milliseconds)" msgstr "" -#: rc_option_editor.cc:1109 +#: rc_option_editor.cc:1107 msgid "Keep record-enable engaged on stop" msgstr "" -#: rc_option_editor.cc:1118 +#: rc_option_editor.cc:1116 msgid "Stop recording when an xrun occurs" msgstr "在xrunså‡ºçŽ°æ—¶åœæ­¢å½•音" -#: rc_option_editor.cc:1123 +#: rc_option_editor.cc:1121 msgid "" "When enabled %1 will stop recording if an over- or underrun is " "detected by the audio engine" msgstr "" -#: rc_option_editor.cc:1129 +#: rc_option_editor.cc:1127 msgid "Create markers where xruns occur" msgstr "在xruns出现时创建标记" -#: rc_option_editor.cc:1138 +#: rc_option_editor.cc:1136 msgid "Stop at the end of the session" msgstr "在会è¯ç»“å°¾åœæ­¢" -#: rc_option_editor.cc:1143 +#: rc_option_editor.cc:1141 msgid "" "When enabled if %1 is not recording, it will stop the " "transport when it reaches the current session end marker\n" @@ -7649,11 +8677,11 @@ msgid "" "all times" msgstr "" -#: rc_option_editor.cc:1151 -msgid "Do seamless looping (not possible when slaved to MTC, JACK etc)" +#: rc_option_editor.cc:1149 +msgid "Do seamless looping (not possible when slaved to MTC, LTC etc)" msgstr "" -#: rc_option_editor.cc:1156 +#: rc_option_editor.cc:1154 msgid "" "When enabled this will loop by reading ahead and wrapping around at " "the loop point, preventing any need to do a transport locate at the end of " @@ -7663,39 +8691,39 @@ msgid "" "loop when %1 reaches the end which will often cause a small click or delay" msgstr "" -#: rc_option_editor.cc:1164 +#: rc_option_editor.cc:1162 msgid "Disable per-track record disarm while rolling" msgstr "" -#: rc_option_editor.cc:1168 +#: rc_option_editor.cc:1166 msgid "" "When enabled this will prevent you from accidentally stopping " "specific tracks recording during a take" msgstr "" -#: rc_option_editor.cc:1173 +#: rc_option_editor.cc:1171 msgid "12dB gain reduction during fast-forward and fast-rewind" msgstr "快进和倒带时有12dB的增益å‡å°‘" -#: rc_option_editor.cc:1177 +#: rc_option_editor.cc:1175 msgid "" "This will reduce the unpleasant increase in perceived volume that occurs " "when fast-forwarding or rewinding through some kinds of audio" msgstr "" -#: rc_option_editor.cc:1181 +#: rc_option_editor.cc:1179 msgid "Sync/Slave" msgstr "" -#: rc_option_editor.cc:1185 +#: rc_option_editor.cc:1183 msgid "External timecode source" msgstr "å¤–éƒ¨æ—¶é—´ç æº" -#: rc_option_editor.cc:1195 +#: rc_option_editor.cc:1193 msgid "Match session video frame rate to external timecode" msgstr "" -#: rc_option_editor.cc:1201 +#: rc_option_editor.cc:1199 msgid "" "This option controls the value of the video frame rate while chasing " "an external timecode source.\n" @@ -7709,17 +8737,21 @@ msgid "" "external timecode standard and the session standard." msgstr "" -#: rc_option_editor.cc:1217 +#: rc_option_editor.cc:1209 +msgid "External timecode is sync locked" +msgstr "" + +#: rc_option_editor.cc:1215 msgid "" "When enabled indicates that the selected external timecode source " "shares sync (Black & Burst, Wordclock, etc) with the audio interface." msgstr "" -#: rc_option_editor.cc:1224 +#: rc_option_editor.cc:1222 msgid "Lock to 29.9700 fps instead of 30000/1001" msgstr "" -#: rc_option_editor.cc:1230 +#: rc_option_editor.cc:1228 msgid "" "When enabled the external timecode source is assumed to use 29.97 fps " "instead of 30000/1001.\n" @@ -7732,123 +8764,139 @@ msgid "" "variant of using exactly 29.97 fps has zero timecode drift.\n" msgstr "" -#: rc_option_editor.cc:1240 +#: rc_option_editor.cc:1238 msgid "LTC Reader" msgstr "" -#: rc_option_editor.cc:1244 +#: rc_option_editor.cc:1242 msgid "LTC incoming port" msgstr "" -#: rc_option_editor.cc:1269 +#: rc_option_editor.cc:1255 +msgid "LTC Generator" +msgstr "" + +#: rc_option_editor.cc:1260 +msgid "Enable LTC generator" +msgstr "" + +#: rc_option_editor.cc:1267 msgid "send LTC while stopped" msgstr "" -#: rc_option_editor.cc:1275 +#: rc_option_editor.cc:1273 msgid "" "When enabled %1 will continue to send LTC information even when the " "transport (playhead) is not moving" msgstr "" -#: rc_option_editor.cc:1285 +#: rc_option_editor.cc:1279 +msgid "LTC generator level" +msgstr "" + +#: rc_option_editor.cc:1283 msgid "" "Specify the Peak Volume of the generated LTC signal in dbFS. A good value " "is 0dBu ^= -18dbFS in an EBU calibrated system" msgstr "" -#: rc_option_editor.cc:1297 +#: rc_option_editor.cc:1295 msgid "Link selection of regions and tracks" msgstr "链接所选的区域和音轨" -#: rc_option_editor.cc:1305 +#: rc_option_editor.cc:1303 msgid "Move relevant automation when audio regions are moved" msgstr "当音频区域移除时移除相应自动化" -#: rc_option_editor.cc:1313 +#: rc_option_editor.cc:1311 msgid "Show meters on tracks in the editor" msgstr "在编辑器的音轨显示仪表" -#: rc_option_editor.cc:1321 +#: rc_option_editor.cc:1319 msgid "Display master-meter in the toolbar" msgstr "" -#: rc_option_editor.cc:1328 +#: rc_option_editor.cc:1326 msgid "Regions in active edit groups are edited together" msgstr "" -#: rc_option_editor.cc:1330 +#: rc_option_editor.cc:1327 +msgid "whenever they overlap in time" +msgstr "" + +#: rc_option_editor.cc:1328 msgid "only if they have identical length, position and origin" msgstr "" -#: rc_option_editor.cc:1340 +#: rc_option_editor.cc:1338 msgid "Make rubberband selection rectangle snap to the grid" msgstr "" -#: rc_option_editor.cc:1348 +#: rc_option_editor.cc:1346 msgid "Show waveforms in regions" msgstr "显示区域的波形" -#: rc_option_editor.cc:1357 +#: rc_option_editor.cc:1354 +msgid "Show gain envelopes in audio regions" +msgstr "" + +#: rc_option_editor.cc:1355 msgid "in all modes" msgstr "" -#: rc_option_editor.cc:1358 +#: rc_option_editor.cc:1356 msgid "only in region gain mode" msgstr "" -#: rc_option_editor.cc:1365 +#: rc_option_editor.cc:1363 msgid "Waveform scale" msgstr "波形标尺" -#: rc_option_editor.cc:1370 +#: rc_option_editor.cc:1368 msgid "linear" msgstr "先行" -#: rc_option_editor.cc:1371 +#: rc_option_editor.cc:1369 msgid "logarithmic" msgstr "对数" -#: rc_option_editor.cc:1377 +#: rc_option_editor.cc:1375 msgid "Waveform shape" msgstr "波形形状" -#: rc_option_editor.cc:1382 +#: rc_option_editor.cc:1380 msgid "traditional" msgstr "传统的" -#: rc_option_editor.cc:1383 +#: rc_option_editor.cc:1381 msgid "rectified" msgstr "æ•´æµçš„" -#: rc_option_editor.cc:1390 +#: rc_option_editor.cc:1388 msgid "Show waveforms for audio while it is being recorded" msgstr "在录制音频的时候显示波形" -#: rc_option_editor.cc:1398 +#: rc_option_editor.cc:1396 msgid "Show zoom toolbar" msgstr "显示缩放工具æ " -#: rc_option_editor.cc:1406 +#: rc_option_editor.cc:1404 msgid "Color regions using their track's color" msgstr "" -#: rc_option_editor.cc:1414 +#: rc_option_editor.cc:1412 msgid "Update editor window during drags of the summary" msgstr "" -#: rc_option_editor.cc:1422 -msgid "Synchronise editor and mixer track order" -msgstr "" - -#: rc_option_editor.cc:1430 +#: rc_option_editor.cc:1420 msgid "Synchronise editor and mixer selection" msgstr "" -#: rc_option_editor.cc:1437 +#: rc_option_editor.cc:1427 msgid "Name new markers" msgstr "命忖°æ ‡ç­¾" -#: rc_option_editor.cc:1443 +#: rc_option_editor.cc:1433 msgid "" "If enabled, popup a dialog when a new marker is created to allow its name to " "be set as it is created.\n" @@ -7856,378 +8904,414 @@ msgid "" "You can always rename markers by right-clicking on them" msgstr "" -#: rc_option_editor.cc:1449 +#: rc_option_editor.cc:1439 msgid "Auto-scroll editor window when dragging near its edges" msgstr "" -#: rc_option_editor.cc:1456 +#: rc_option_editor.cc:1446 msgid "Buffering" msgstr "缓冲中" -#: rc_option_editor.cc:1464 +#: rc_option_editor.cc:1454 msgid "Record monitoring handled by" msgstr "" -#: rc_option_editor.cc:1475 +#: rc_option_editor.cc:1460 +msgid "via Audio Driver" +msgstr "" + +#: rc_option_editor.cc:1463 msgid "ardour" msgstr "ardour" -#: rc_option_editor.cc:1476 +#: rc_option_editor.cc:1464 msgid "audio hardware" msgstr "音频硬件" -#: rc_option_editor.cc:1483 +#: rc_option_editor.cc:1471 msgid "Tape machine mode" msgstr "ç£å¸¦æœºæ¨¡å¼" -#: rc_option_editor.cc:1488 +#: rc_option_editor.cc:1476 msgid "Connection of tracks and busses" msgstr "音轨和总线的连接" -#: rc_option_editor.cc:1493 +#: rc_option_editor.cc:1481 msgid "Auto-connect master/monitor busses" msgstr "自动连接 主控/监视 总线" -#: rc_option_editor.cc:1500 +#: rc_option_editor.cc:1488 msgid "Connect track inputs" msgstr "链接音轨输入" -#: rc_option_editor.cc:1505 +#: rc_option_editor.cc:1493 msgid "automatically to physical inputs" msgstr "è‡ªåŠ¨ç‰©ç†æ•°å…¥" -#: rc_option_editor.cc:1506 rc_option_editor.cc:1519 +#: rc_option_editor.cc:1494 rc_option_editor.cc:1507 msgid "manually" msgstr "手动" -#: rc_option_editor.cc:1512 +#: rc_option_editor.cc:1500 msgid "Connect track and bus outputs" msgstr "链接音轨和总线的输出" -#: rc_option_editor.cc:1517 +#: rc_option_editor.cc:1505 msgid "automatically to physical outputs" msgstr "è‡ªåŠ¨ç‰©ç†æ•°å‡º" -#: rc_option_editor.cc:1518 +#: rc_option_editor.cc:1506 msgid "automatically to master bus" msgstr "自动化主控总线" -#: rc_option_editor.cc:1523 +#: rc_option_editor.cc:1511 msgid "Denormals" msgstr "异常" -#: rc_option_editor.cc:1528 +#: rc_option_editor.cc:1516 msgid "Use DC bias to protect against denormals" msgstr "使用ååŽ‹ç›´æµæ”¾ç½®å¼‚常" -#: rc_option_editor.cc:1535 +#: rc_option_editor.cc:1523 msgid "Processor handling" msgstr "处ç†å™¨å¤„ç†" -#: rc_option_editor.cc:1540 +#: rc_option_editor.cc:1528 msgid "no processor handling" msgstr "无处ç†å™¨å¤„ç†" -#: rc_option_editor.cc:1545 +#: rc_option_editor.cc:1533 msgid "use FlushToZero" msgstr "" -#: rc_option_editor.cc:1549 +#: rc_option_editor.cc:1537 msgid "use DenormalsAreZero" msgstr "" -#: rc_option_editor.cc:1553 +#: rc_option_editor.cc:1541 msgid "use FlushToZero and DenormalsAreZero" msgstr "" -#: rc_option_editor.cc:1571 +#: rc_option_editor.cc:1551 +msgid "Silence plugins when the transport is stopped" +msgstr "" + +#: rc_option_editor.cc:1559 msgid "Make new plugins active" msgstr "å¯ç”¨æ–°æ’ä»¶" -#: rc_option_editor.cc:1579 +#: rc_option_editor.cc:1567 msgid "Enable automatic analysis of audio" msgstr "å¯ç”¨éŸ³é¢‘自动分æž" -#: rc_option_editor.cc:1587 +#: rc_option_editor.cc:1575 msgid "Replicate missing region channels" msgstr "å¤åˆ¶é—失的区域通é“" -#: rc_option_editor.cc:1594 rc_option_editor.cc:1609 rc_option_editor.cc:1621 -#: rc_option_editor.cc:1633 rc_option_editor.cc:1645 rc_option_editor.cc:1649 -#: rc_option_editor.cc:1657 rc_option_editor.cc:1665 rc_option_editor.cc:1673 -#: rc_option_editor.cc:1675 rc_option_editor.cc:1683 rc_option_editor.cc:1691 -#: rc_option_editor.cc:1699 +#: rc_option_editor.cc:1582 rc_option_editor.cc:1597 rc_option_editor.cc:1609 +#: rc_option_editor.cc:1621 rc_option_editor.cc:1633 rc_option_editor.cc:1637 +#: rc_option_editor.cc:1645 rc_option_editor.cc:1653 rc_option_editor.cc:1661 +#: rc_option_editor.cc:1663 rc_option_editor.cc:1671 rc_option_editor.cc:1679 +#: rc_option_editor.cc:1687 msgid "Solo / mute" msgstr "独å¥/é™éŸ³" -#: rc_option_editor.cc:1597 +#: rc_option_editor.cc:1585 msgid "Solo-in-place mute cut (dB)" msgstr "" -#: rc_option_editor.cc:1604 +#: rc_option_editor.cc:1592 msgid "Solo controls are Listen controls" msgstr "" -#: rc_option_editor.cc:1613 +#: rc_option_editor.cc:1601 msgid "Listen Position" msgstr "" -#: rc_option_editor.cc:1618 +#: rc_option_editor.cc:1606 msgid "after-fader (AFL)" msgstr "" -#: rc_option_editor.cc:1619 +#: rc_option_editor.cc:1607 msgid "pre-fader (PFL)" msgstr "" -#: rc_option_editor.cc:1625 +#: rc_option_editor.cc:1613 msgid "PFL signals come from" msgstr "" -#: rc_option_editor.cc:1630 +#: rc_option_editor.cc:1618 msgid "before pre-fader processors" msgstr "" -#: rc_option_editor.cc:1631 +#: rc_option_editor.cc:1619 msgid "pre-fader but after pre-fader processors" msgstr "" -#: rc_option_editor.cc:1637 +#: rc_option_editor.cc:1625 msgid "AFL signals come from" msgstr "" -#: rc_option_editor.cc:1642 +#: rc_option_editor.cc:1630 msgid "immediately post-fader" msgstr "" -#: rc_option_editor.cc:1643 +#: rc_option_editor.cc:1631 msgid "after post-fader processors (before pan)" msgstr "" -#: rc_option_editor.cc:1652 +#: rc_option_editor.cc:1640 msgid "Exclusive solo" msgstr "执行solo" -#: rc_option_editor.cc:1660 +#: rc_option_editor.cc:1648 msgid "Show solo muting" msgstr "" -#: rc_option_editor.cc:1668 +#: rc_option_editor.cc:1656 msgid "Soloing overrides muting" msgstr "" -#: rc_option_editor.cc:1673 +#: rc_option_editor.cc:1661 msgid "Default track / bus muting options" msgstr "默认 音轨/总线 é™éŸ³é€‰é¡¹" -#: rc_option_editor.cc:1678 +#: rc_option_editor.cc:1666 msgid "Mute affects pre-fader sends" msgstr "" -#: rc_option_editor.cc:1686 +#: rc_option_editor.cc:1674 msgid "Mute affects post-fader sends" msgstr "" -#: rc_option_editor.cc:1694 +#: rc_option_editor.cc:1682 msgid "Mute affects control outputs" msgstr "" -#: rc_option_editor.cc:1702 +#: rc_option_editor.cc:1690 msgid "Mute affects main outputs" msgstr " ovlivní hlavní výstupy" -#: rc_option_editor.cc:1718 +#: rc_option_editor.cc:1706 msgid "Send MIDI Time Code" msgstr "å‘é€MIDIæ—¶é—´ç " -#: rc_option_editor.cc:1726 +#: rc_option_editor.cc:1714 msgid "Percentage either side of normal transport speed to transmit MTC" msgstr "" -#: rc_option_editor.cc:1735 +#: rc_option_editor.cc:1723 msgid "Obey MIDI Machine Control commands" msgstr "éµå®ˆMIDI机器控制命令(MTC commands)" -#: rc_option_editor.cc:1743 +#: rc_option_editor.cc:1731 msgid "Send MIDI Machine Control commands" msgstr "å‘é€MIDI机器控制命令(MTC commands)" -#: rc_option_editor.cc:1751 +#: rc_option_editor.cc:1739 msgid "Send MIDI control feedback" msgstr "å‘é€MIDI控制å馈" -#: rc_option_editor.cc:1759 +#: rc_option_editor.cc:1747 msgid "Inbound MMC device ID" msgstr "å‘内的MMC设备ID" -#: rc_option_editor.cc:1768 +#: rc_option_editor.cc:1756 msgid "Outbound MMC device ID" msgstr "å‘外的MMC设备ID" -#: rc_option_editor.cc:1777 +#: rc_option_editor.cc:1765 msgid "Initial program change" msgstr "åˆå§‹ç¨‹åºæ”¹å˜" -#: rc_option_editor.cc:1786 +#: rc_option_editor.cc:1774 msgid "Display first MIDI bank/program as 0" msgstr "" -#: rc_option_editor.cc:1794 +#: rc_option_editor.cc:1782 msgid "Never display periodic MIDI messages (MTC, MIDI Clock)" msgstr "" -#: rc_option_editor.cc:1813 +#: rc_option_editor.cc:1790 +msgid "Sound MIDI notes as they are selected" +msgstr "" + +#: rc_option_editor.cc:1798 rc_option_editor.cc:1808 rc_option_editor.cc:1810 +msgid "User interaction" +msgstr "" + +#: rc_option_editor.cc:1801 msgid "" "Use translations of %1 messages\n" " (requires a restart of %1 to take effect)\n" " (if available for your language preferences)" msgstr "" -#: rc_option_editor.cc:1820 +#: rc_option_editor.cc:1808 msgid "Keyboard" msgstr "键盘" -#: rc_option_editor.cc:1830 +#: rc_option_editor.cc:1818 msgid "Control surface remote ID" msgstr "控制表é¢ç§»åŠ¨çš„ID" -#: rc_option_editor.cc:1835 +#: rc_option_editor.cc:1823 msgid "assigned by user" msgstr "由用户指定" -#: rc_option_editor.cc:1836 +#: rc_option_editor.cc:1824 msgid "follows order of mixer" msgstr "混音器的如下顺åº" -#: rc_option_editor.cc:1837 -msgid "follows order of editor" -msgstr "编辑器的如下顺åº" +#: rc_option_editor.cc:1833 rc_option_editor.cc:1841 rc_option_editor.cc:1851 +#: rc_option_editor.cc:1872 rc_option_editor.cc:1881 rc_option_editor.cc:1889 +#: rc_option_editor.cc:1903 rc_option_editor.cc:1922 rc_option_editor.cc:1938 +#: rc_option_editor.cc:1954 rc_option_editor.cc:1968 rc_option_editor.cc:1982 +#: rc_option_editor.cc:1984 +msgid "Preferences|GUI" +msgstr "" -#: rc_option_editor.cc:1849 +#: rc_option_editor.cc:1836 msgid "Graphically indicate mouse pointer hovering over various widgets" msgstr "" -#: rc_option_editor.cc:1857 +#: rc_option_editor.cc:1844 msgid "Show tooltips if mouse hovers over a control" msgstr "" -#: rc_option_editor.cc:1867 +#: rc_option_editor.cc:1854 msgid "GUI" msgstr "" -#: rc_option_editor.cc:1870 +#: rc_option_editor.cc:1857 msgid "update transport clock display every 40ms instead of every 100ms" msgstr "" -#: rc_option_editor.cc:1897 +#: rc_option_editor.cc:1874 +msgid "Mixer Strip" +msgstr "" + +#: rc_option_editor.cc:1884 msgid "Use narrow strips in the mixer by default" msgstr "" -#: rc_option_editor.cc:1912 +#: rc_option_editor.cc:1893 +msgid "Peak hold time" +msgstr "" + +#: rc_option_editor.cc:1899 msgid "short" msgstr "短" -#: rc_option_editor.cc:1913 +#: rc_option_editor.cc:1900 msgid "medium" msgstr "中" -#: rc_option_editor.cc:1914 +#: rc_option_editor.cc:1901 msgid "long" msgstr "é•¿" -#: rc_option_editor.cc:1926 +#: rc_option_editor.cc:1907 +msgid "DPM fall-off" +msgstr "" + +#: rc_option_editor.cc:1913 msgid "slowest [6.6dB/sec]" msgstr "" -#: rc_option_editor.cc:1927 +#: rc_option_editor.cc:1914 msgid "slow [8.6dB/sec] (BBC PPM, EBU PPM)" msgstr "" -#: rc_option_editor.cc:1928 +#: rc_option_editor.cc:1915 msgid "slowish [12.0dB/sec] (DIN)" msgstr "" -#: rc_option_editor.cc:1929 +#: rc_option_editor.cc:1916 msgid "moderate [13.3dB/sec] (EBU Digi PPM, IRT Digi PPM)" msgstr "" -#: rc_option_editor.cc:1930 +#: rc_option_editor.cc:1917 msgid "medium [20dB/sec]" msgstr "" -#: rc_option_editor.cc:1931 +#: rc_option_editor.cc:1918 msgid "fast [32dB/sec]" msgstr "" -#: rc_option_editor.cc:1932 +#: rc_option_editor.cc:1919 msgid "faster [46dB/sec]" msgstr "" -#: rc_option_editor.cc:1933 +#: rc_option_editor.cc:1920 msgid "fastest [70dB/sec]" msgstr "" -#: rc_option_editor.cc:1939 +#: rc_option_editor.cc:1926 msgid "Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1944 rc_option_editor.cc:1960 +#: rc_option_editor.cc:1931 rc_option_editor.cc:1947 msgid "-24dBFS (SMPTE US: 4dBu = -20dBFS)" msgstr "" -#: rc_option_editor.cc:1945 rc_option_editor.cc:1961 +#: rc_option_editor.cc:1932 rc_option_editor.cc:1948 msgid "-20dBFS (SMPTE RP.0155)" msgstr "" -#: rc_option_editor.cc:1946 rc_option_editor.cc:1962 +#: rc_option_editor.cc:1933 rc_option_editor.cc:1949 msgid "-18dBFS (EBU, BBC)" msgstr "" -#: rc_option_editor.cc:1947 rc_option_editor.cc:1963 +#: rc_option_editor.cc:1934 rc_option_editor.cc:1950 msgid "-15dBFS (DIN)" msgstr "" -#: rc_option_editor.cc:1949 +#: rc_option_editor.cc:1936 msgid "" "Configure meter-marks and color-knee point for dBFS scale DPM, set reference " "level for IEC1/Nordic, IEC2 PPM and VU meter." msgstr "" -#: rc_option_editor.cc:1955 +#: rc_option_editor.cc:1942 msgid "IEC1/DIN Meter line-up level; 0dBu" msgstr "" -#: rc_option_editor.cc:1965 +#: rc_option_editor.cc:1952 msgid "Reference level for IEC1/DIN meter." msgstr "" -#: rc_option_editor.cc:1971 +#: rc_option_editor.cc:1958 msgid "VU Meter standard" msgstr "" -#: rc_option_editor.cc:1976 +#: rc_option_editor.cc:1963 msgid "0VU = -2dBu (France)" msgstr "" -#: rc_option_editor.cc:1977 +#: rc_option_editor.cc:1964 msgid "0VU = 0dBu (North America, Australia)" msgstr "" -#: rc_option_editor.cc:1978 +#: rc_option_editor.cc:1965 msgid "0VU = +4dBu (standard)" msgstr "" -#: rc_option_editor.cc:1979 +#: rc_option_editor.cc:1966 msgid "0VU = +8dBu" msgstr "" -#: rc_option_editor.cc:1993 +#: rc_option_editor.cc:1972 +msgid "Peak threshold [dBFS]" +msgstr "" + +#: rc_option_editor.cc:1980 msgid "" "Specify the audio signal level in dbFS at and above which the meter-peak " "indicator will flash red." msgstr "" -#: rc_option_editor.cc:2000 +#: rc_option_editor.cc:1987 msgid "LED meter style" msgstr "" @@ -8319,6 +9403,12 @@ msgstr "毫秒数" msgid "secs" msgstr "ç§’æ•°" +#: region_view.cc:299 +msgid "%1 silent segment" +msgid_plural "%1 silent segments" +msgstr[0] "" +msgstr[1] "" + #: region_view.cc:301 msgid "shortest = %1 %2" msgstr "最短 = %1 %2" @@ -8335,6 +9425,14 @@ msgstr "" msgid "Return " msgstr "返回" +#: rhythm_ferret.cc:49 +msgid "Percussive Onset" +msgstr "" + +#: rhythm_ferret.cc:50 +msgid "Note Onset" +msgstr "" + #: rhythm_ferret.cc:55 msgid "Energy Based" msgstr "" @@ -8351,6 +9449,10 @@ msgstr "" msgid "Complex Domain" msgstr "" +#: rhythm_ferret.cc:59 +msgid "Phase Deviation" +msgstr "" + #: rhythm_ferret.cc:60 msgid "Kullback-Liebler" msgstr "" @@ -8359,6 +9461,18 @@ msgstr "" msgid "Modified Kullback-Liebler" msgstr "" +#: rhythm_ferret.cc:66 +msgid "Split region" +msgstr "" + +#: rhythm_ferret.cc:67 +msgid "Snap regions" +msgstr "" + +#: rhythm_ferret.cc:68 +msgid "Conform regions" +msgstr "" + #: rhythm_ferret.cc:73 msgid "Rhythm Ferret" msgstr "èŠ‚å¥æœç´¢" @@ -8423,10 +9537,18 @@ msgstr "å¯ç”¨å½•音" msgid "Selection" msgstr "" +#: route_group_dialog.cc:46 +msgid "Active state" +msgstr "" + #: route_group_dialog.cc:47 route_group_dialog.cc:76 theme_manager.cc:71 msgid "Color" msgstr "颜色" +#: route_group_dialog.cc:53 +msgid "RouteGroupDialog" +msgstr "" + #: route_group_dialog.cc:92 msgid "Sharing" msgstr "共享中" @@ -8493,6 +9615,10 @@ msgstr "录制" msgid "Route Group" msgstr "" +#: route_time_axis.cc:213 +msgid "MIDI Controllers and Automation" +msgstr "" + #: route_time_axis.cc:390 msgid "Show All Automation" msgstr "显示所有的自动化" @@ -8505,6 +9631,10 @@ msgstr "显示已有的自动化" msgid "Hide All Automation" msgstr "éšè—所有自动化" +#: route_time_axis.cc:405 +msgid "Processor automation" +msgstr "" + #: route_time_axis.cc:424 msgid "Color..." msgstr "颜色..." @@ -8825,24 +9955,33 @@ msgid "" "The remote control ID of %3 cannot be changed." msgstr "" -#: route_ui.cc:1818 -msgid "" -"The remote control ID of %6 is: %3\n" -"\n" -"\n" -"Remote Control IDs are currently determined by track/bus ordering in %1\n" -"\n" -"%4Use the User Interaction tab of the Preferences window if you want to " -"change this%5" +#: route_ui.cc:1816 +msgid "the master bus" msgstr "" -#: route_ui.cc:1876 +#: route_ui.cc:1816 +msgid "the monitor bus" +msgstr "" + +#: route_ui.cc:1818 +msgid "" +"The remote control ID of %5 is: %2\n" +"\n" +"\n" +"Remote Control IDs are currently determined by track/bus ordering in " +"Ardour.\n" +"\n" +"%3Use the User Interaction tab of the Preferences window if you want to " +"change this%4" +msgstr "" + +#: route_ui.cc:1875 msgid "" "Left-click to invert (phase reverse) channel %1 of this track. Right-click " "to show menu." msgstr "" -#: route_ui.cc:1878 +#: route_ui.cc:1877 msgid "Click to show a menu of channels for inversion (phase reverse)" msgstr "" @@ -8862,6 +10001,118 @@ msgstr "" msgid "Send " msgstr "å‘é€" +#: session_dialog.cc:66 +msgid "Session Setup" +msgstr "" + +#: session_dialog.cc:71 +msgid "Advanced options ..." +msgstr "" + +#: session_dialog.cc:267 +msgid "New Session" +msgstr "新会è¯" + +#: session_dialog.cc:305 +msgid "Check the website for more..." +msgstr "" + +#: session_dialog.cc:308 +msgid "Click to open the program website in your web browser" +msgstr "" + +#: session_dialog.cc:328 +msgid "Sample Rate" +msgstr "" + +#: session_dialog.cc:329 +msgid "Disk Format" +msgstr "" + +#: session_dialog.cc:347 +msgid "Select session file" +msgstr "é€‰æ‹©ä¼šè¯æ–‡ä»¶" + +#: session_dialog.cc:362 +msgid "Other Sessions" +msgstr "" + +#: session_dialog.cc:388 +msgid "Open" +msgstr "打开 " + +#: session_dialog.cc:455 +msgid "Session name:" +msgstr "会è¯åç§°:" + +#: session_dialog.cc:477 +msgid "Create session folder in:" +msgstr "åœ¨åˆ›å»ºä¼šè¯æ–‡ä»¶å¤¹:" + +#: session_dialog.cc:500 +msgid "Select folder for session" +msgstr "为会è¯é€‰æ‹©ä¸€ä¸ªæ–‡ä»¶å¤¹" + +#: session_dialog.cc:529 +msgid "Use this template" +msgstr "使用此模æ¿" + +#: session_dialog.cc:532 +msgid "no template" +msgstr "没有模æ¿" + +#: session_dialog.cc:664 session_dialog.cc:696 +msgid "32 bit float" +msgstr "" + +#: session_dialog.cc:667 session_dialog.cc:699 +msgid "24 bit" +msgstr "" + +#: session_dialog.cc:670 session_dialog.cc:702 +msgid "16 bit" +msgstr "" + +#: session_dialog.cc:741 session_dialog.cc:742 session_dialog.cc:743 +msgid "channels" +msgstr "声é“" + +#: session_dialog.cc:757 +msgid "Busses" +msgstr "总线" + +#: session_dialog.cc:758 +msgid "Inputs" +msgstr "输入" + +#: session_dialog.cc:759 +msgid "Outputs" +msgstr "输出" + +#: session_dialog.cc:767 +msgid "Create master bus" +msgstr "创建主控总线" + +#: session_dialog.cc:777 +msgid "Automatically connect to physical inputs" +msgstr "" + +#: session_dialog.cc:784 session_dialog.cc:843 +msgid "Use only" +msgstr "仅使用" + +#: session_dialog.cc:837 +msgid "Automatically connect outputs" +msgstr "自动连接到输出" + +#: session_dialog.cc:859 +msgid "... to master bus" +msgstr "... 到主控总线" + +#: session_dialog.cc:869 +msgid "... to physical outputs" +msgstr "... 到物ç†è¾“出" + #: session_import_dialog.cc:64 msgid "Import from Session" msgstr "从会è¯å¯¼å…¥" @@ -8894,6 +10145,10 @@ msgstr "" msgid "Values (current value on top)" msgstr "" +#: session_metadata_dialog.cc:520 +msgid "User" +msgstr "" + #: session_metadata_dialog.cc:528 msgid "Email" msgstr "" @@ -8902,6 +10157,14 @@ msgstr "" msgid "Web" msgstr "" +#: session_metadata_dialog.cc:534 +msgid "Organization" +msgstr "" + +#: session_metadata_dialog.cc:537 +msgid "Country" +msgstr "" + #: session_metadata_dialog.cc:551 msgid "Title" msgstr "标题" @@ -9006,6 +10269,10 @@ msgstr "" msgid "DJ Mixer" msgstr "" +#: session_metadata_dialog.cc:646 +msgid "Metadata|Mixer" +msgstr "" + #: session_metadata_dialog.cc:654 msgid "School" msgstr "" @@ -9064,6 +10331,10 @@ msgstr "23.976" msgid "24" msgstr "24" +#: session_option_editor.cc:52 +msgid "24.975" +msgstr "" + #: session_option_editor.cc:53 msgid "25" msgstr "25" @@ -9143,10 +10414,22 @@ msgid "" "Apply Pull-Up/Down to Video Timeline and Video Monitor (Unless in JACK-sync)." msgstr "" +#: session_option_editor.cc:96 +msgid "Ext Timecode Offsets" +msgstr "" + +#: session_option_editor.cc:100 +msgid "Slave Timecode offset" +msgstr "" + #: session_option_editor.cc:107 msgid "The specified offset is added to the received timecode (MTC or LTC)." msgstr "" +#: session_option_editor.cc:113 +msgid "Timecode Generator offset" +msgstr "" + #: session_option_editor.cc:120 msgid "" "Specify an offset which is added to the generated timecode (so far only LTC)." @@ -9161,6 +10444,10 @@ msgid "" "%1 is JACK Time Master (provides Bar|Beat|Tick and other information to JACK)" msgstr "" +#: session_option_editor.cc:137 +msgid "Default crossfade type" +msgstr "" + #: session_option_editor.cc:142 msgid "Constant power (-3dB) crossfade" msgstr "" @@ -9244,10 +10531,20 @@ msgid "" "Track Input Monitoring automatically follows transport state (\"auto-input\")" msgstr "" +#: session_option_editor.cc:227 +msgid "Use monitor section in this session" +msgstr "" + #: session_option_editor.cc:238 msgid "MIDI region copies are independent" msgstr "" +#: session_option_editor.cc:245 +msgid "" +"Policy for handling overlapping notes\n" +" on the same MIDI channel" +msgstr "" + #: session_option_editor.cc:250 msgid "never allow them" msgstr "从ä¸å…许" @@ -9284,18 +10581,54 @@ msgstr "" msgid "Glue new regions to bars and beats" msgstr "" +#: session_option_editor.cc:275 session_option_editor.cc:277 +#: session_option_editor.cc:284 session_option_editor.cc:291 +#: session_option_editor.cc:298 session_option_editor.cc:300 +#: session_option_editor.cc:307 session_option_editor.cc:314 +#: session_option_editor.cc:321 session_option_editor.cc:323 +msgid "Meterbridge" +msgstr "" + #: session_option_editor.cc:275 msgid "Route Display" msgstr "" +#: session_option_editor.cc:279 +msgid "Show Midi Tracks" +msgstr "" + +#: session_option_editor.cc:286 +msgid "Show Busses" +msgstr "" + +#: session_option_editor.cc:293 +msgid "Include Master Bus" +msgstr "" + #: session_option_editor.cc:298 msgid "Button Area" msgstr "" +#: session_option_editor.cc:302 +msgid "Rec-enable Button" +msgstr "" + +#: session_option_editor.cc:309 +msgid "Mute Button" +msgstr "" + +#: session_option_editor.cc:316 +msgid "Solo Button" +msgstr "" + #: session_option_editor.cc:321 msgid "Name Labels" msgstr "" +#: session_option_editor.cc:325 +msgid "Track Name" +msgstr "" + #: sfdb_ui.cc:86 sfdb_ui.cc:106 sfdb_ui.cc:115 msgid "as new tracks" msgstr "" @@ -9356,6 +10689,10 @@ msgstr "" msgid "Search" msgstr "æœç´¢" +#: sfdb_ui.cc:449 +msgid "Audio and MIDI files" +msgstr "" + #: sfdb_ui.cc:452 msgid "Audio files" msgstr "音频文件" @@ -9380,6 +10717,22 @@ msgstr "路径" msgid "Search Tags" msgstr "æœç´¢æ ‡ç­¾" +#: sfdb_ui.cc:531 +msgid "Sort:" +msgstr "" + +#: sfdb_ui.cc:539 +msgid "Longest" +msgstr "" + +#: sfdb_ui.cc:540 +msgid "Shortest" +msgstr "" + +#: sfdb_ui.cc:541 +msgid "Newest" +msgstr "" + #: sfdb_ui.cc:542 msgid "Oldest" msgstr "" @@ -9388,6 +10741,10 @@ msgstr "" msgid "Most downloaded" msgstr "" +#: sfdb_ui.cc:544 +msgid "Least downloaded" +msgstr "" + #: sfdb_ui.cc:545 msgid "Highest rated" msgstr "" @@ -9404,6 +10761,26 @@ msgstr "" msgid "Similar" msgstr "" +#: sfdb_ui.cc:567 +msgid "ID" +msgstr "" + +#: sfdb_ui.cc:568 add_video_dialog.cc:84 +msgid "Filename" +msgstr "" + +#: sfdb_ui.cc:570 +msgid "Duration" +msgstr "" + +#: sfdb_ui.cc:571 +msgid "Size" +msgstr "" + +#: sfdb_ui.cc:572 +msgid "Samplerate" +msgstr "" + #: sfdb_ui.cc:573 msgid "License" msgstr "" @@ -9518,6 +10895,18 @@ msgstr "开始会è¯" msgid "Add files as ..." msgstr "" +#: sfdb_ui.cc:1581 +msgid "Insert at" +msgstr "" + +#: sfdb_ui.cc:1594 +msgid "Mapping" +msgstr "" + +#: sfdb_ui.cc:1612 +msgid "Conversion quality" +msgstr "" + #: sfdb_ui.cc:1624 sfdb_ui.cc:1730 msgid "Best" msgstr "最佳质é‡" @@ -9592,15 +10981,17 @@ msgstr "èµ·åˆæ‰¬å£°å™¨" msgid "Azimuth:" msgstr "" -#: startup.cc:73 -msgid "Open an existing session" -msgstr "打开一个已存在的会è¯" +#: startup.cc:72 +msgid "" +"Use an external mixer or the hardware mixer of your audio interface.\n" +"%1 will play NO role in monitoring" +msgstr "" -#: startup.cc:79 -msgid "I'd like more options for this session" -msgstr "我想è¦å…³äºŽè¿™ä¸ªä¼šè¯çš„æ›´å¤šé€‰é¡¹" +#: startup.cc:74 +msgid "Ask %1 to play back material as it is being recorded" +msgstr "" -#: startup.cc:194 +#: startup.cc:143 msgid "" "Welcome to this BETA release of Ardour %1\n" "\n" @@ -9625,19 +11016,29 @@ msgid "" " http://ardour.org/support\n" msgstr "" -#: startup.cc:324 -msgid "Audio / MIDI Setup" -msgstr "音频/MIDI设置" +#: startup.cc:167 +msgid "This is a BETA RELEASE" +msgstr "" -#: startup.cc:362 +#: startup.cc:176 +msgid "" +"%1 is a digital audio workstation. You can use it to " +"record, edit and mix multi-track audio. You can produce your own CDs, mix " +"video soundtracks, or experiment with new ideas about music and sound. \n" +"\n" +"There are a few things that need to be configured before you start using the " +"program. " +msgstr "" + +#: startup.cc:202 msgid "Welcome to %1" msgstr "欢迎进入 %1" -#: startup.cc:385 +#: startup.cc:225 msgid "Default folder for %1 sessions" msgstr "ä¼šè¯ %1 的默认文件夹" -#: startup.cc:391 +#: startup.cc:231 msgid "" "Each project that you work on with %1 has its own folder.\n" "These can require a lot of disk space if you are recording audio.\n" @@ -9653,23 +11054,43 @@ msgstr "" "\n" "(ä½ å¯ä»¥æŠŠæ–°çš„会è¯å­˜æ”¾åœ¨ä»»ä½•ä½ç½®, è¿™åªæ˜¯é»˜è®¤çš„æ–‡ä»¶å¤¹)" -#: startup.cc:415 +#: startup.cc:254 msgid "Default folder for new sessions" msgstr "ä¼šè¯æ–‡ä»¶é»˜è®¤çš„æ–‡ä»¶å¤¹" -#: startup.cc:457 +#: startup.cc:275 +msgid "" +"While recording instruments or vocals, you probably want to listen to the\n" +"signal as well as record it. This is called \"monitoring\". There are\n" +"different ways to do this depending on the equipment you have and the\n" +"configuration of that equipment. The two most common are presented here.\n" +"Please choose whichever one is right for your setup.\n" +"\n" +"(You can change this preference at any time, via the Preferences dialog)\n" +"\n" +"If you do not understand what this is about, just accept the default." +msgstr "" + +#: startup.cc:296 msgid "Monitoring Choices" msgstr "检控选择" -#: startup.cc:480 +#: startup.cc:319 msgid "Use a Master bus directly" msgstr "直接用主控总线" -#: startup.cc:491 +#: startup.cc:321 +msgid "" +"Connect the Master bus directly to your hardware outputs. This is preferable " +"for simple usage." +msgstr "" + +#: startup.cc:330 msgid "Use an additional Monitor bus" msgstr "用一个é¢å¤–的主控总线" -#: startup.cc:494 +#: startup.cc:333 msgid "" "Use a Monitor bus between Master bus and hardware outputs for \n" "greater control in monitoring without affecting the mix." @@ -9677,7 +11098,7 @@ msgstr "" "用一个监控总线\n" "监控时有更好的控制, ä¸å½±å“混音" -#: startup.cc:516 +#: startup.cc:355 msgid "" "You can change this preference at any time via the Preferences dialog.\n" "You can also add or remove the monitor section to/from any session.\n" @@ -9685,106 +11106,10 @@ msgid "" "If you do not understand what this is about, just accept the default." msgstr "" -#: startup.cc:527 +#: startup.cc:366 msgid "Monitor Section" msgstr "监控部分" -#: startup.cc:573 -msgid "Check the website for more..." -msgstr "" - -#: startup.cc:576 -msgid "Click to open the program website in your web browser" -msgstr "" - -#: startup.cc:729 -msgid "Open" -msgstr "打开 " - -#: startup.cc:775 -msgid "Session name:" -msgstr "会è¯åç§°:" - -#: startup.cc:798 -msgid "Create session folder in:" -msgstr "åœ¨åˆ›å»ºä¼šè¯æ–‡ä»¶å¤¹:" - -#: startup.cc:821 -msgid "Select folder for session" -msgstr "为会è¯é€‰æ‹©ä¸€ä¸ªæ–‡ä»¶å¤¹" - -#: startup.cc:853 -msgid "Use this template" -msgstr "使用此模æ¿" - -#: startup.cc:856 -msgid "no template" -msgstr "没有模æ¿" - -#: startup.cc:884 -msgid "Use an existing session as a template:" -msgstr "使用一个存在的会è¯å½“作模æ¿" - -#: startup.cc:896 -msgid "Select template" -msgstr "选择模æ¿" - -#: startup.cc:922 -msgid "New Session" -msgstr "新会è¯" - -#: startup.cc:1077 -msgid "Select session file" -msgstr "é€‰æ‹©ä¼šè¯æ–‡ä»¶" - -#: startup.cc:1093 -msgid "Browse:" -msgstr "æµè§ˆ:" - -#: startup.cc:1102 -msgid "Select a session" -msgstr "选择一个会è¯" - -#: startup.cc:1129 startup.cc:1130 startup.cc:1131 -msgid "channels" -msgstr "声é“" - -#: startup.cc:1145 -msgid "Busses" -msgstr "总线" - -#: startup.cc:1146 -msgid "Inputs" -msgstr "输入" - -#: startup.cc:1147 -msgid "Outputs" -msgstr "输出" - -#: startup.cc:1155 -msgid "Create master bus" -msgstr "创建主控总线" - -#: startup.cc:1172 startup.cc:1231 -msgid "Use only" -msgstr "仅使用" - -#: startup.cc:1225 -msgid "Automatically connect outputs" -msgstr "自动连接到输出" - -#: startup.cc:1247 -msgid "... to master bus" -msgstr "... 到主控总线" - -#: startup.cc:1257 -msgid "... to physical outputs" -msgstr "... 到物ç†è¾“出" - -#: startup.cc:1307 -msgid "Advanced Session Options" -msgstr "高级会è¯é€‰é¡¹" - #: step_entry.cc:59 msgid "Step Entry: %1" msgstr "" @@ -10174,6 +11499,14 @@ msgstr "é€šè¿‡éŸ³ç¬¦é•¿åº¦ä¿æŒé€‰æ‹©éŸ³ç¬¦" msgid "L:%3d R:%3d Width:%d%%" msgstr "" +#: stereo_panner_editor.cc:35 +msgid "Stereo Panner" +msgstr "" + +#: stereo_panner_editor.cc:49 +msgid "Width" +msgstr "" + #: strip_silence_dialog.cc:48 msgid "Strip Silence" msgstr "剥去沉默" @@ -10194,6 +11527,49 @@ msgstr "å°èŠ‚:" msgid "beat:" msgstr "æ‹å­:" +#: tempo_dialog.cc:45 tempo_dialog.cc:60 +msgid "Pulse note" +msgstr "" + +#: tempo_dialog.cc:55 +msgid "Edit Tempo" +msgstr "" + +#: tempo_dialog.cc:76 tempo_dialog.cc:77 tempo_dialog.cc:282 +#: tempo_dialog.cc:283 +msgid "whole" +msgstr "" + +#: tempo_dialog.cc:78 tempo_dialog.cc:79 tempo_dialog.cc:284 +#: tempo_dialog.cc:285 +msgid "second" +msgstr "" + +#: tempo_dialog.cc:80 tempo_dialog.cc:81 tempo_dialog.cc:286 +#: tempo_dialog.cc:287 +msgid "third" +msgstr "" + +#: tempo_dialog.cc:82 tempo_dialog.cc:83 tempo_dialog.cc:288 +#: tempo_dialog.cc:289 +msgid "quarter" +msgstr "" + +#: tempo_dialog.cc:84 tempo_dialog.cc:85 tempo_dialog.cc:290 +#: tempo_dialog.cc:291 +msgid "eighth" +msgstr "" + +#: tempo_dialog.cc:86 tempo_dialog.cc:87 tempo_dialog.cc:292 +#: tempo_dialog.cc:293 +msgid "sixteenth" +msgstr "" + +#: tempo_dialog.cc:88 tempo_dialog.cc:89 tempo_dialog.cc:294 +#: tempo_dialog.cc:295 +msgid "thirty-second" +msgstr "" + #: tempo_dialog.cc:90 tempo_dialog.cc:91 tempo_dialog.cc:296 #: tempo_dialog.cc:297 msgid "sixty-fourth" @@ -10216,6 +11592,10 @@ msgstr "节å¥å¼€å§‹äºŽ" msgid "incomprehensible pulse note type (%1)" msgstr "" +#: tempo_dialog.cc:266 +msgid "Edit Meter" +msgstr "" + #: tempo_dialog.cc:314 msgid "Note value:" msgstr "音符值:" @@ -10252,6 +11632,10 @@ msgstr "" msgid "All floating windows are dialogs" msgstr "" +#: theme_manager.cc:62 +msgid "Draw waveforms with color gradient" +msgstr "" + #: theme_manager.cc:68 msgid "Object" msgstr "对象" @@ -10390,23 +11774,23 @@ msgstr "找ä¸åˆ°ä»»ä½•用户界é¢é…置文件, 画布看起æ¥ä¼šç ´ç ´çš„." msgid "Config file %1 not saved" msgstr "é…置文件 %1 还没ä¿å­˜" -#: utils.cc:110 utils.cc:153 +#: utils.cc:111 utils.cc:154 msgid "bad XPM header %1" msgstr "" -#: utils.cc:292 utils.cc:324 +#: utils.cc:293 utils.cc:325 msgid "missing RGBA style for \"%1\"" msgstr "" -#: utils.cc:591 +#: utils.cc:598 msgid "cannot find XPM file for %1" msgstr "" -#: utils.cc:617 +#: utils.cc:624 msgid "cannot find icon image for %1 using %2" msgstr "" -#: utils.cc:632 +#: utils.cc:639 msgid "Caught exception while loading icon named %1" msgstr "" @@ -10414,6 +11798,14 @@ msgstr "" msgid "VerboseCanvasCursor" msgstr "" +#: add_video_dialog.cc:55 +msgid "Set Video Track" +msgstr "" + +#: add_video_dialog.cc:63 +msgid "Launch External Video Monitor" +msgstr "" + #: add_video_dialog.cc:64 msgid "Adjust Session Framerate to Match Video Framerate" msgstr "" @@ -10426,6 +11818,22 @@ msgstr "" msgid "VideoServerIndex" msgstr "" +#: add_video_dialog.cc:129 +msgid "Video files" +msgstr "" + +#: add_video_dialog.cc:164 +msgid "Video Information" +msgstr "" + +#: add_video_dialog.cc:167 +msgid "Start:" +msgstr "" + +#: add_video_dialog.cc:173 +msgid "Frame rate:" +msgstr "" + #: add_video_dialog.cc:176 msgid "Aspect Ratio:" msgstr "" @@ -10471,6 +11879,10 @@ msgid "" "xjadeo's remote-control interface 'xjremote')." msgstr "" +#: video_monitor.cc:281 +msgid "Video Monitor: File Not Found." +msgstr "" + #: transcode_ffmpeg.cc:73 msgid "" "No ffprobe or ffmpeg executables could be found on this system.\n" @@ -10487,71 +11899,119 @@ msgid "" "ffprobe to ffprobe_harvid.\n" msgstr "" -#: transcode_video_dialog.cc:61 export_video_dialog.cc:73 +#: transcode_video_dialog.cc:55 +msgid "Transcode/Import Video File " +msgstr "" + +#: transcode_video_dialog.cc:57 +msgid "Output File:" +msgstr "" + +#: transcode_video_dialog.cc:60 export_video_dialog.cc:72 msgid "Abort" msgstr "" -#: transcode_video_dialog.cc:66 +#: transcode_video_dialog.cc:62 +msgid "Height = " +msgstr "" + +#: transcode_video_dialog.cc:65 msgid "Manual Override" msgstr "" -#: transcode_video_dialog.cc:70 export_video_dialog.cc:89 +#: transcode_video_dialog.cc:69 export_video_dialog.cc:88 msgid "Debug Mode: Print ffmpeg command and output to stdout." msgstr "" -#: transcode_video_dialog.cc:113 +#: transcode_video_dialog.cc:106 +msgid "File Information" +msgstr "" + +#: transcode_video_dialog.cc:112 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Import " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: transcode_video_dialog.cc:120 +#: transcode_video_dialog.cc:119 msgid "" "File-info can not be read. Most likely '%1' is not a valid video-file or an " "unsupported video codec or format." msgstr "" -#: transcode_video_dialog.cc:134 +#: transcode_video_dialog.cc:133 msgid "FPS:" msgstr "" -#: transcode_video_dialog.cc:138 +#: transcode_video_dialog.cc:135 +msgid "Duration:" +msgstr "" + +#: transcode_video_dialog.cc:137 msgid "Codec:" msgstr "" -#: transcode_video_dialog.cc:140 +#: transcode_video_dialog.cc:139 msgid "Geometry:" msgstr "" -#: transcode_video_dialog.cc:181 +#: transcode_video_dialog.cc:154 +msgid "??" +msgstr "" + +#: transcode_video_dialog.cc:175 +msgid "Import Settings" +msgstr "" + +#: transcode_video_dialog.cc:180 msgid "Do Not Import Video" msgstr "" -#: transcode_video_dialog.cc:182 +#: transcode_video_dialog.cc:181 msgid "Reference From Current Location" msgstr "" -#: transcode_video_dialog.cc:198 +#: transcode_video_dialog.cc:183 +msgid "Import/Transcode Video to Session" +msgstr "" + +#: transcode_video_dialog.cc:197 msgid "Scale Video: Width = " msgstr "" -#: transcode_video_dialog.cc:205 +#: transcode_video_dialog.cc:204 msgid "Original Width" msgstr "" -#: transcode_video_dialog.cc:220 +#: transcode_video_dialog.cc:219 msgid "Bitrate (KBit/s):" msgstr "" -#: transcode_video_dialog.cc:348 +#: transcode_video_dialog.cc:224 +msgid "Extract Audio:" +msgstr "" + +#: transcode_video_dialog.cc:344 +msgid "Extracting Audio.." +msgstr "" + +#: transcode_video_dialog.cc:347 msgid "Audio Extraction Failed." msgstr "" -#: transcode_video_dialog.cc:374 +#: transcode_video_dialog.cc:373 msgid "Transcoding Video.." msgstr "" +#: transcode_video_dialog.cc:407 +msgid "Transcoding Failed." +msgstr "" + +#: transcode_video_dialog.cc:490 +msgid "Save Transcoded Video File" +msgstr "" + #: video_server_dialog.cc:43 msgid "Launch Video Server" msgstr "" @@ -10560,6 +12020,10 @@ msgstr "" msgid "Server Executable:" msgstr "" +#: video_server_dialog.cc:46 +msgid "Server Docroot:" +msgstr "" + #: video_server_dialog.cc:52 msgid "Don't show this dialog again. (Reset in Edit->Preferences)." msgstr "" @@ -10579,11 +12043,15 @@ msgstr "" msgid "Listen Port:" msgstr "" +#: video_server_dialog.cc:130 +msgid "Cache Size:" +msgstr "" + #: video_server_dialog.cc:136 msgid "" -"%1 relies on an external Video Server for the videotimeline.\n" -"The server configured in Edit -> Prefereces -> Video is not reachable.\n" -"Do you want ardour to launch 'harvid' on this machine?" +"%1 relies on an external video server for the videotimeline.\n" +"The server configured in Edit -> Preferences -> Video is not reachable.\n" +"Do you want %1 to launch 'harvid' on this machine?" msgstr "" #: video_server_dialog.cc:176 @@ -10608,75 +12076,187 @@ msgstr "" msgid "Continue" msgstr "" -#: export_video_dialog.cc:74 +#: utils_videotl.cc:63 +msgid "Confirm Overwrite" +msgstr "" + +#: utils_videotl.cc:64 +msgid "A file with the same name already exists. Do you want to overwrite it?" +msgstr "" + +#: utils_videotl.cc:74 utils_videotl.cc:90 +msgid "Cannot create video folder \"%1\" (%2)" +msgstr "" + +#: export_video_dialog.cc:65 +msgid "Export Video File " +msgstr "" + +#: export_video_dialog.cc:69 +msgid "Video:" +msgstr "" + +#: export_video_dialog.cc:73 msgid "Scale Video (W x H):" msgstr "" -#: export_video_dialog.cc:79 +#: export_video_dialog.cc:78 msgid "Set Aspect Ratio:" msgstr "" -#: export_video_dialog.cc:81 +#: export_video_dialog.cc:79 +msgid "Normalize Audio" +msgstr "" + +#: export_video_dialog.cc:80 msgid "2 Pass Encoding" msgstr "" -#: export_video_dialog.cc:82 +#: export_video_dialog.cc:81 msgid "Codec Optimizations:" msgstr "" -#: export_video_dialog.cc:84 +#: export_video_dialog.cc:83 msgid "Deinterlace" msgstr "" -#: export_video_dialog.cc:85 +#: export_video_dialog.cc:84 msgid "Use [2] B-frames (MPEG 2 or 4 only)" msgstr "" -#: export_video_dialog.cc:86 +#: export_video_dialog.cc:85 msgid "Override FPS (Default is to retain FPS from the input video file):" msgstr "" -#: export_video_dialog.cc:107 +#: export_video_dialog.cc:86 +msgid "Include Session Metadata" +msgstr "" + +#: export_video_dialog.cc:106 msgid "" "No ffprobe or ffmpeg executables could be found on this system. Video Export " "is not possible until you install those tools. See the Log window for more " "information." msgstr "" -#: export_video_dialog.cc:145 +#: export_video_dialog.cc:116 +msgid "Output:" +msgstr "" + +#: export_video_dialog.cc:126 +msgid "Input:" +msgstr "" + +#: export_video_dialog.cc:137 +msgid "Audio:" +msgstr "" + +#: export_video_dialog.cc:139 +msgid "Master Bus" +msgstr "" + +#: export_video_dialog.cc:144 msgid "from the %1 session's start to the session's end" msgstr "" -#: export_video_dialog.cc:149 +#: export_video_dialog.cc:148 msgid "from 00:00:00:00 to the video's end" msgstr "" -#: export_video_dialog.cc:151 +#: export_video_dialog.cc:150 msgid "from the video's start to the video's end" msgstr "" -#: export_video_dialog.cc:494 +#: export_video_dialog.cc:153 +msgid "Selected range" +msgstr "" + +#: export_video_dialog.cc:193 +msgid "Settings:" +msgstr "" + +#: export_video_dialog.cc:201 +msgid "Range:" +msgstr "" + +#: export_video_dialog.cc:204 +msgid "Preset:" +msgstr "" + +#: export_video_dialog.cc:207 +msgid "Video Codec:" +msgstr "" + +#: export_video_dialog.cc:210 +msgid "Video KBit/s:" +msgstr "" + +#: export_video_dialog.cc:213 +msgid "Audio Codec:" +msgstr "" + +#: export_video_dialog.cc:216 +msgid "Audio KBit/s:" +msgstr "" + +#: export_video_dialog.cc:219 +msgid "Audio Samplerate:" +msgstr "" + +#: export_video_dialog.cc:395 +msgid "Normalizing audio" +msgstr "" + +#: export_video_dialog.cc:399 +msgid "Exporting audio" +msgstr "" + +#: export_video_dialog.cc:445 +msgid "Exporting Audio..." +msgstr "" + +#: export_video_dialog.cc:502 msgid "" "Export Video: Cannot query duration of video-file, using duration from " "timeline instead." msgstr "" -#: export_video_dialog.cc:523 +#: export_video_dialog.cc:532 +msgid "Export Video: export-range does not include video." +msgstr "" + +#: export_video_dialog.cc:544 msgid "Export Video: No Master Out Ports to Connect for Audio Export" msgstr "" -#: export_video_dialog.cc:581 +#: export_video_dialog.cc:583 +msgid "Encoding Video..." +msgstr "" + +#: export_video_dialog.cc:602 msgid "Export Video: Video input file cannot be read." msgstr "" -#: export_video_dialog.cc:679 +#: export_video_dialog.cc:695 msgid "Encoding Video.. Pass 1/2" msgstr "" -#: export_video_dialog.cc:691 +#: export_video_dialog.cc:707 msgid "Encoding Video.. Pass 2/2" msgstr "" +#: export_video_dialog.cc:814 +msgid "Transcoding failed." +msgstr "" + +#: export_video_dialog.cc:983 export_video_dialog.cc:1003 +msgid "Save Exported Video File" +msgstr "" + +#: export_video_infobox.cc:30 +msgid "Video Export Info" +msgstr "" + #: export_video_infobox.cc:31 msgid "Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)." msgstr "" @@ -10693,3 +12273,231 @@ msgid "" "\n" "Open Manual in Browser? " msgstr "" + +#~ msgid "Starting audio engine" +#~ msgstr "å¯åŠ¨éŸ³é¢‘å¼•æ“Ž" + +#~ msgid "disconnected" +#~ msgstr "å–æ¶ˆè¿žæŽ¥" + +#~ msgid "" +#~ "%1 is not connected to JACK\n" +#~ "You cannot open or close sessions in this condition" +#~ msgstr "" +#~ "%1 未连接到 JACK.\n" +#~ "冿­¤æƒ…况下,你无法打开或关闭会è¯" + +#~ msgid "" +#~ "The audio backend (JACK) was shutdown because:\n" +#~ "\n" +#~ "%1" +#~ msgstr "" +#~ "音频åŽå°(JACK)关闭了,原因如下:\n" +#~ "\n" +#~ "%1" + +#~ msgid "" +#~ "JACK has either been shutdown or it\n" +#~ "disconnected %1 because %1\n" +#~ "was not fast enough. Try to restart\n" +#~ "JACK, reconnect and save the session." +#~ msgstr "" +#~ "JACK 被关闭了,或与 %1 失去了连接\n" +#~ "原因是 %1 ä¸å¤Ÿå¿«.\n" +#~ "å°è¯•é‡å¯JACKï¼Œé‡æ–°è¿žæŽ¥å¹¶ä¸”ä¿å­˜ä¼šè¯." + +#~ msgid "Unable to start the session running" +#~ msgstr "无法å¯åŠ¨ä¼šè¯" + +#~ msgid "Click the Refresh button to try again." +#~ msgstr "å•击刷新按钮,å†å°è¯•一é" + +#~ msgid "Could not disconnect from JACK" +#~ msgstr "无法断开JACK的连接" + +#~ msgid "Could not reconnect to JACK" +#~ msgstr "æ— æ³•é‡æ–°è¿žæŽ¥åˆ°JACK" + +#~ msgid "JACK" +#~ msgstr "JACK" + +#~ msgid "Reconnect" +#~ msgstr "釿–°é“¾æŽ¥" + +#~ msgid "JACK Sampling Rate and Latency" +#~ msgstr "JACK采样率和延迟" + +#~ msgid "Realtime" +#~ msgstr "实时" + +#~ msgid "Do not lock memory" +#~ msgstr "ä¸é”内存" + +#~ msgid "Unlock memory" +#~ msgstr "è§£é”内存" + +#~ msgid "8000Hz" +#~ msgstr "8000 Hz" + +#~ msgid "22050Hz" +#~ msgstr "22050 Hz" + +#~ msgid "44100Hz" +#~ msgstr "44100 Hz" + +#~ msgid "48000Hz" +#~ msgstr "48000 Hz" + +#~ msgid "88200Hz" +#~ msgstr "88200 Hz" + +#~ msgid "96000Hz" +#~ msgstr "96000 Hz" + +#~ msgid "192000Hz" +#~ msgstr "192000 Hz" + +#~ msgid "Triangular" +#~ msgstr "三角形" + +#~ msgid "Rectangular" +#~ msgstr "矩形" + +#~ msgid "Shaped" +#~ msgstr "形状" + +#~ msgid "Playback/recording on 1 device" +#~ msgstr "在设备1 播放/录音" + +#~ msgid "Playback/recording on 2 devices" +#~ msgstr "在设备2 播放/录音" + +#~ msgid "Playback only" +#~ msgstr "仅播放" + +#~ msgid "Recording only" +#~ msgstr "仅录音" + +#~ msgid "Number of buffers:" +#~ msgstr "缓冲区数é‡:" + +#~ msgid "Approximate latency:" +#~ msgstr "大约延迟:" + +#~ msgid "Audio mode:" +#~ msgstr "音频模å¼:" + +#~ msgid "Ignore" +#~ msgstr "忽略" + +#~ msgid "Client timeout" +#~ msgstr "客户端超时" + +#~ msgid "Number of ports:" +#~ msgstr "ç«¯å£æ•°é‡:" + +#~ msgid "MIDI driver:" +#~ msgstr "MIDI驱动:" + +#~ msgid "" +#~ "No JACK server found anywhere on this system. Please install JACK and " +#~ "restart" +#~ msgstr "" +#~ "No JACK server found anywhere on this system. Please install JACK and " +#~ "restart" + +#~ msgid "Server:" +#~ msgstr "æœåС噍:" + +#~ msgid "Input device:" +#~ msgstr "输入设备:" + +#~ msgid "Output device:" +#~ msgstr "输出设备:" + +#~ msgid "Device" +#~ msgstr "设备" + +#~ msgid "Advanced" +#~ msgstr "高级" + +#~ msgid "cannot open JACK rc file %1 to store parameters" +#~ msgstr "无法打开JACKçš„rc文件%1æ¥å‚¨å­˜å‚æ•°" + +#~ msgid "No suitable audio devices" +#~ msgstr "没有åˆé€‚的音频设备" + +#~ msgid "JACK appears to be missing from the %1 bundle" +#~ msgstr "JACK%1" + +#~ msgid "You need to choose an audio device first." +#~ msgstr "你需è¦å…ˆé€‰æ‹©ä¸€ä¸ªéŸ³é¢‘设备" + +#~ msgid "Audio device \"%1\" not known on this computer." +#~ msgstr "电脑无法识别音频设备 %1" + +#~ msgid "%1 could not connect to JACK." +#~ msgstr "%1 无法连接到JACK" + +#~ msgid "JACK exited" +#~ msgstr "JACKå·²ç»é€€å‡º" + +#~ msgid "" +#~ "JACK exited unexpectedly, and without notifying %1.\n" +#~ "\n" +#~ "This could be due to misconfiguration or to an error inside JACK.\n" +#~ "\n" +#~ "Click OK to exit %1." +#~ msgstr "" +#~ "JACKå‡ºä¹Žæ„æ–™åœ°é€€å‡ºäº†, 没有任何报告 %1.\n" +#~ "\n" +#~ "è¿™å¯èƒ½æ˜¯å¾®é…置或JACK里é¢çš„错误.\n" +#~ "\n" +#~ "å•击OK退出 %1." + +#~ msgid "" +#~ "JACK exited unexpectedly, and without notifying %1.\n" +#~ "\n" +#~ "This is probably due to an error inside JACK. You should restart JACK\n" +#~ "and reconnect %1 to it, or exit %1 now. You cannot save your\n" +#~ "session at this time, because we would lose your connection information.\n" +#~ msgstr "" +#~ "JACKå‡ºä¹Žæ„æ–™åœ°é€€å‡ºäº†, 没有任何报告 %1.\n" +#~ "\n" +#~ "è¿™å¯èƒ½æ˜¯JACK里é¢çš„错误. 你最好é‡å¯JACK\n" +#~ "ç„¶åŽè¿žæŽ¥åˆ°%1, 或者现在退出%1.\n" +#~ "现在你没办法ä¿å­˜ä¼šè¯, 因为你的连接信æ¯å¯èƒ½ä¼šä¸¢å¤±.\n" + +#~ msgid "" +#~ " -c, --name Use a specific jack client name, default is " +#~ "ardour\n" +#~ msgstr "" +#~ " -c, --name 用一个特殊的JACK用户åç§°, 默认å称是: " +#~ "ardour\n" + +#~ msgid "follows order of editor" +#~ msgstr "编辑器的如下顺åº" + +#~ msgid "Open an existing session" +#~ msgstr "打开一个已存在的会è¯" + +#~ msgid "I'd like more options for this session" +#~ msgstr "我想è¦å…³äºŽè¿™ä¸ªä¼šè¯çš„æ›´å¤šé€‰é¡¹" + +#~ msgid "Audio / MIDI Setup" +#~ msgstr "音频/MIDI设置" + +#~ msgid "Use an existing session as a template:" +#~ msgstr "使用一个存在的会è¯å½“作模æ¿" + +#~ msgid "Select template" +#~ msgstr "选择模æ¿" + +#~ msgid "Browse:" +#~ msgstr "æµè§ˆ:" + +#~ msgid "Select a session" +#~ msgstr "选择一个会è¯" + +#~ msgid "Advanced Session Options" +#~ msgstr "高级会è¯é€‰é¡¹" diff --git a/libs/ardour/po/cs.po b/libs/ardour/po/cs.po index 63dc0b3263..9554921194 100644 --- a/libs/ardour/po/cs.po +++ b/libs/ardour/po/cs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-10-23 19:09+0200\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2013-06-13 22:47+0200\n" "Last-Translator: Pavel Fric \n" "Language-Team: Czech \n" @@ -134,7 +134,7 @@ msgstr "Seznamy zvukových skladeb (nepoužívané)" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 +#: rb_effect.cc:333 session.cc:2619 session.cc:2652 session.cc:3797 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "Chyba v programování: %1" @@ -203,6 +203,22 @@ msgstr "Nelze nahrát přídavný modul VAMP \"%1\"" msgid "VAMP Plugin \"%1\" could not be loaded" msgstr "Přídavný modul VAMP \"%1\" se nepodaÅ™ilo nahrát" +#: audioengine.cc:488 +msgid "looking for backends in %1\n" +msgstr "" + +#: audioengine.cc:511 +msgid "AudioEngine: cannot load module \"%1\" (%2)" +msgstr "" + +#: audioengine.cc:517 +msgid "AudioEngine: backend at \"%1\" has no descriptor function." +msgstr "" + +#: audioengine.cc:589 +msgid "Could not create backend for %1: %2" +msgstr "" + #: audioregion.cc:1643 msgid "" "You have requested an operation that requires audio analysis.\n" @@ -402,7 +418,7 @@ msgstr "Nelze nalézt takt CPU (MHz) v /proc/cpuinfo" msgid "audio" msgstr "Zvuk" -#: data_type.cc:28 session.cc:1790 session.cc:1793 +#: data_type.cc:28 session.cc:1791 session.cc:1794 msgid "MIDI" msgstr "MIDI" @@ -517,7 +533,7 @@ msgstr "Trojúhelníkový" msgid "Rectangular" msgstr "Obdélníkový" -#: export_formats.cc:52 session.cc:5008 session.cc:5024 +#: export_formats.cc:52 session.cc:5014 session.cc:5030 msgid "None" msgstr "Žádný" @@ -884,15 +900,15 @@ msgstr "%s vstup" msgid "%s out" msgstr "%s výstup" -#: io.cc:1535 session.cc:685 session.cc:714 +#: io.cc:1535 session.cc:686 session.cc:715 msgid "mono" msgstr "Mono" -#: io.cc:1537 session.cc:698 session.cc:728 +#: io.cc:1537 session.cc:699 session.cc:729 msgid "L" msgstr "L" -#: io.cc:1537 session.cc:700 session.cc:730 +#: io.cc:1537 session.cc:701 session.cc:731 msgid "R" msgstr "P" @@ -990,7 +1006,7 @@ msgstr "Locations: Pokus o použití neznámé polohy jako vybrané polohy" msgid "incorrect XML mode passed to Locations::set_state" msgstr "Nesprávný uzel XML pÅ™edán dál Locations::set_state" -#: location.cc:842 session.cc:4510 session_state.cc:1031 +#: location.cc:842 session.cc:4516 session_state.cc:1031 msgid "session" msgstr "Sezení" @@ -1404,6 +1420,12 @@ msgstr "" "Přípojka s názvem \"%1\" již existuje: Prověřte na zdvojené názvy stop/" "sbÄ›rnic" +#: port_manager.cc:272 +msgid "" +"No more ports are available. You will need to stop %1 and restart with more " +"ports if you need this many tracks." +msgstr "" + #: port_manager.cc:275 msgid "AudioEngine: cannot register port \"%1\": %2" msgstr "AudioEngine: Nelze zaregistrovat přípojku \"%1\": %2" @@ -1535,11 +1557,11 @@ msgstr "" msgid "You cannot subgroup MIDI tracks at this time" msgstr "Stopy MIDI nelze nyní sdružit do podskupin" -#: rb_effect.cc:233 rb_effect.cc:274 +#: rb_effect.cc:234 rb_effect.cc:275 msgid "tempoize: error reading data from %1 at %2 (wanted %3, got %4)" msgstr "tempoize: Chyba pÅ™i Ätení dat z %1 v %2 (žádáno %3, obdrženo %4)" -#: rb_effect.cc:303 rb_effect.cc:325 +#: rb_effect.cc:304 rb_effect.cc:326 msgid "error writing tempo-adjusted data to %1" msgstr "Chyba pÅ™i zápisu dat s upraveným tempem do %1" @@ -1555,80 +1577,80 @@ msgstr "Poslání (send) %1" msgid "programming error: send created using role %1" msgstr "Chyba v programování: Poslání vytvoÅ™eno pomocí role %1" -#: session.cc:343 +#: session.cc:344 msgid "Connect to engine" msgstr "Spojit se strojem" -#: session.cc:348 +#: session.cc:349 msgid "Session loading complete" msgstr "Nahrání sezení dokonÄeno" -#: session.cc:420 +#: session.cc:421 msgid "Set up LTC" msgstr "" -#: session.cc:422 +#: session.cc:423 msgid "Set up Click" msgstr "" -#: session.cc:424 +#: session.cc:425 msgid "Set up standard connections" msgstr "Nastavit standardní spojení" -#: session.cc:634 +#: session.cc:635 msgid "could not setup Click I/O" msgstr "NepodaÅ™ilo se nastavit vstup/výstup metronomu" -#: session.cc:682 +#: session.cc:683 #, c-format msgid "out %" msgstr "Výstup %" -#: session.cc:696 +#: session.cc:697 #, c-format msgid "out %+%" msgstr "Výstup %+%" -#: session.cc:711 +#: session.cc:712 #, c-format msgid "in %" msgstr "Vstup %" -#: session.cc:725 +#: session.cc:726 #, c-format msgid "in %+%" msgstr "Vstup %+%" -#: session.cc:789 +#: session.cc:790 msgid "cannot connect master output %1 to %2" msgstr "Nelze spojit hlavní výstup %1 s %2" -#: session.cc:848 +#: session.cc:849 msgid "monitor" msgstr "Sledování" -#: session.cc:893 +#: session.cc:894 msgid "cannot connect control input %1 to %2" msgstr "Nelze spojit vstup ovládání %1 s %2" -#: session.cc:913 +#: session.cc:914 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "UpÅ™ednostňovaný vstup/výstup pro sledovací sbÄ›rnici (%1) nelze najít" -#: session.cc:944 +#: session.cc:945 msgid "cannot connect control output %1 to %2" msgstr "Nelze spojit výstup ovládání %1 s %2" -#: session.cc:1008 +#: session.cc:1009 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "Nelze vytvoÅ™it poslechový systém: Žádný poslech oblastí není možný" -#: session.cc:1192 +#: session.cc:1193 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" "Sezení: Tuto polohu nelze pro automatický pÅ™epis použít (ZaÄátek <= Konec) " -#: session.cc:1232 +#: session.cc:1233 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" @@ -1636,15 +1658,15 @@ msgstr "" "Tuto polohu nelze pro automatickou smyÄku použít, protože nemá žádnou, nebo " "má zápornou délku" -#: session.cc:1546 +#: session.cc:1547 msgid "feedback loop setup between %1 and %2" msgstr "SmyÄka zpÄ›tné vazby rozpoznána mezi %1 a %2" -#: session.cc:1842 +#: session.cc:1843 msgid "Session: could not create new midi track." msgstr "Sezení: NepodaÅ™ilo se vytvoÅ™it novou stopu MIDI" -#: session.cc:1848 +#: session.cc:1849 msgid "" "No more JACK ports are available. You will need to stop %1 and restart JACK " "with more ports if you need this many tracks." @@ -1652,75 +1674,75 @@ msgstr "" "Nejsou dostupné další přípojky JACK. Pokud potÅ™ebujete tolik stop, musíte " "zastavit %1 a spustit JACK znovu s více přípojkami." -#: session.cc:2025 session.cc:2028 +#: session.cc:2026 session.cc:2029 msgid "Audio" msgstr "Zvuk" -#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 +#: session.cc:2053 session.cc:2061 session.cc:2138 session.cc:2146 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "Nelze nastavit %1 nastavení vstup/%2 výstup pro novou zvukovou stopu" -#: session.cc:2083 +#: session.cc:2084 msgid "Session: could not create new audio track." msgstr "Sezení: NepodaÅ™ilo se vytvoÅ™it novou zvukovou stopu" -#: session.cc:2115 session.cc:2118 +#: session.cc:2116 session.cc:2119 msgid "Bus" msgstr "SbÄ›rnice" -#: session.cc:2168 +#: session.cc:2169 msgid "Session: could not create new audio route." msgstr "Sezení: NepodaÅ™ilo se vytvoÅ™it novou zvukovou cestu" -#: session.cc:2227 session.cc:2237 +#: session.cc:2228 session.cc:2238 msgid "Session: UINT_MAX routes? impossible!" msgstr "Sezení: Cesty UINT_MAX? Nemožné!" -#: session.cc:2259 +#: session.cc:2260 msgid "Session: cannot create track/bus from template description" msgstr "Sezení: Nelze vytvoÅ™it stopu/sbÄ›rnici z popisu pÅ™edlohy" -#: session.cc:2285 +#: session.cc:2286 msgid "Session: could not create new route from template" msgstr "Sezení: NepodaÅ™ilo se vytvoÅ™it novou cestu z pÅ™edlohy" -#: session.cc:2314 +#: session.cc:2315 msgid "Adding new tracks/busses failed" msgstr "Chyba pÅ™i pÅ™idávání nové stopy/sbÄ›rnice" -#: session.cc:3413 +#: session.cc:3419 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "OSUDOVà CHYBA! NepodaÅ™ilo se najít vhodnou verzi %1 pro pÅ™ejmenování" -#: session.cc:3533 session.cc:3591 +#: session.cc:3539 session.cc:3597 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "Již je %1 nahrávek pro %2, což je příliÅ¡ mnoho." -#: session.cc:3981 +#: session.cc:3987 msgid "send ID %1 appears to be in use already" msgstr "Zdá se, že ID poslání (send) %1, se již používá" -#: session.cc:3993 +#: session.cc:3999 msgid "aux send ID %1 appears to be in use already" msgstr "Zdá se, že ID pomocného-poslání (aux-send) %1, se již používá" -#: session.cc:4005 +#: session.cc:4011 msgid "return ID %1 appears to be in use already" msgstr "Zdá se, že ID vrácení (return) %1, se již používá" -#: session.cc:4017 +#: session.cc:4023 msgid "insert ID %1 appears to be in use already" msgstr "Zdá se, že ID vložení (insert) %1, se již používá" -#: session.cc:4144 +#: session.cc:4150 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "Nelze zapsat oblast s Konec <= ZaÄátek (napÅ™. %1 <= %2)" -#: session.cc:4173 +#: session.cc:4179 msgid "too many bounced versions of playlist \"%1\"" msgstr "PříliÅ¡ mnoho odhozených verzí seznamu skladeb \"%1\"" -#: session.cc:4183 +#: session.cc:4189 msgid "cannot create new audio file \"%1\" for %2" msgstr "Nelze vytvoÅ™it nový zvukový soubor \"%1\" pro %2" diff --git a/libs/ardour/po/de.po b/libs/ardour/po/de.po index b49efa92a4..8cf15b4488 100644 --- a/libs/ardour/po/de.po +++ b/libs/ardour/po/de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-10-23 19:07+0200\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2013-09-26 16:32+0200\n" "Last-Translator: Edgar Aichinger \n" "Language-Team: German \n" @@ -137,7 +137,7 @@ msgstr "Audio-Wiedergabelisten (unbenutzt)" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 +#: rb_effect.cc:333 session.cc:2619 session.cc:2652 session.cc:3797 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "Programmierfehler: %1" @@ -423,7 +423,7 @@ msgstr "kann CPU-Takt in /proc/cpuinfo nicht finden" msgid "audio" msgstr "Audio" -#: data_type.cc:28 session.cc:1790 session.cc:1793 +#: data_type.cc:28 session.cc:1791 session.cc:1794 msgid "MIDI" msgstr "MIDI" @@ -538,7 +538,7 @@ msgstr "Dreieck" msgid "Rectangular" msgstr "Rechteck" -#: export_formats.cc:52 session.cc:5008 session.cc:5024 +#: export_formats.cc:52 session.cc:5014 session.cc:5030 msgid "None" msgstr "Kein" @@ -910,15 +910,15 @@ msgstr "%s in" msgid "%s out" msgstr "%s out" -#: io.cc:1535 session.cc:685 session.cc:714 +#: io.cc:1535 session.cc:686 session.cc:715 msgid "mono" msgstr "Mono" -#: io.cc:1537 session.cc:698 session.cc:728 +#: io.cc:1537 session.cc:699 session.cc:729 msgid "L" msgstr "L" -#: io.cc:1537 session.cc:700 session.cc:730 +#: io.cc:1537 session.cc:701 session.cc:731 msgid "R" msgstr "R" @@ -1019,7 +1019,7 @@ msgstr "" msgid "incorrect XML mode passed to Locations::set_state" msgstr "unkorrekter XML-Modus an Locations::set_state weitergereicht" -#: location.cc:842 session.cc:4510 session_state.cc:1031 +#: location.cc:842 session.cc:4516 session_state.cc:1031 msgid "session" msgstr "Projekt" @@ -1580,13 +1580,13 @@ msgstr "" msgid "You cannot subgroup MIDI tracks at this time" msgstr "MIDI-Spuren können zur Zeit nicht zu Subgruppen zusammengefasst werden" -#: rb_effect.cc:233 rb_effect.cc:274 +#: rb_effect.cc:234 rb_effect.cc:275 msgid "tempoize: error reading data from %1 at %2 (wanted %3, got %4)" msgstr "" "tempoize: Fehler beim Lesen der Daten von %1 an %2 (%3 erwünscht, %4 " "erhalten)" -#: rb_effect.cc:303 rb_effect.cc:325 +#: rb_effect.cc:304 rb_effect.cc:326 msgid "error writing tempo-adjusted data to %1" msgstr "Fehler beim Schreiben der tempo-angepassten Daten nach %1" @@ -1602,82 +1602,82 @@ msgstr "Send %1" msgid "programming error: send created using role %1" msgstr "Programmierfehler: Send erzeugt mittels Rolle %1" -#: session.cc:343 +#: session.cc:344 msgid "Connect to engine" msgstr "Verbinde zur Engine" -#: session.cc:348 +#: session.cc:349 msgid "Session loading complete" msgstr "Laden des Projektes abgeschlossen" -#: session.cc:420 +#: session.cc:421 msgid "Set up LTC" msgstr "LTC einrichten" -#: session.cc:422 +#: session.cc:423 msgid "Set up Click" msgstr "Klick einrichten" -#: session.cc:424 +#: session.cc:425 msgid "Set up standard connections" msgstr "Richte Standard-Verbindungen ein" -#: session.cc:634 +#: session.cc:635 msgid "could not setup Click I/O" msgstr "konnte Metronom-E/A nicht einrichten" -#: session.cc:682 +#: session.cc:683 #, c-format msgid "out %" msgstr "out %" -#: session.cc:696 +#: session.cc:697 #, c-format msgid "out %+%" msgstr "out %+%" -#: session.cc:711 +#: session.cc:712 #, c-format msgid "in %" msgstr "in %" -#: session.cc:725 +#: session.cc:726 #, c-format msgid "in %+%" msgstr "in %+%" -#: session.cc:789 +#: session.cc:790 msgid "cannot connect master output %1 to %2" msgstr "kann Master-Ausgang %1 nicht mit %2 verbinden" -#: session.cc:848 +#: session.cc:849 msgid "monitor" msgstr "Monitor" -#: session.cc:893 +#: session.cc:894 msgid "cannot connect control input %1 to %2" msgstr "kann Kontrolleingang %1 nicht mit %2 verbinden" -#: session.cc:913 +#: session.cc:914 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "Bevorzugte E/A für den Monitorbus (%1) kann nicht gefunden werden" -#: session.cc:944 +#: session.cc:945 msgid "cannot connect control output %1 to %2" msgstr "kann Kontrollausgang %1 nicht mit %2 verbinden" -#: session.cc:1008 +#: session.cc:1009 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "" "Kann das Vorhör-System nicht einrichten: kein Vorhören von Regionen möglich" -#: session.cc:1192 +#: session.cc:1193 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" "Session: Sie können diese Position nicht für Auto-Punch verwenden (Start <= " "Ende) " -#: session.cc:1232 +#: session.cc:1233 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" @@ -1685,15 +1685,15 @@ msgstr "" "Sie können diese Position nicht für \"automatische Schleife\" verwenden, da " "sie keine oder eine negative Länge hat" -#: session.cc:1546 +#: session.cc:1547 msgid "feedback loop setup between %1 and %2" msgstr "Feedbackschleife zwischen %1 und %2 erkannt" -#: session.cc:1842 +#: session.cc:1843 msgid "Session: could not create new midi track." msgstr "Session: konnte keine neue MIDI-Spur erzeugen." -#: session.cc:1848 +#: session.cc:1849 msgid "" "No more JACK ports are available. You will need to stop %1 and restart JACK " "with more ports if you need this many tracks." @@ -1701,76 +1701,76 @@ msgstr "" "Keine JACK-Ports mehr verfügbar. Wenn Sie so viele Spuren benötigen, müssen " "Sie %1 stoppen und JACK mit mehr Ports neu starten." -#: session.cc:2025 session.cc:2028 +#: session.cc:2026 session.cc:2029 msgid "Audio" msgstr "Audio" -#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 +#: session.cc:2053 session.cc:2061 session.cc:2138 session.cc:2146 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "kann %1 ein/%2 aus für neue Audiospur nicht konfigurieren" -#: session.cc:2083 +#: session.cc:2084 msgid "Session: could not create new audio track." msgstr "Session: konnte keine neue Audios.pur erzeugen" -#: session.cc:2115 session.cc:2118 +#: session.cc:2116 session.cc:2119 msgid "Bus" msgstr "Bus" -#: session.cc:2168 +#: session.cc:2169 msgid "Session: could not create new audio route." msgstr "Session: konnte keine neueAudio-Route erzeugen" -#: session.cc:2227 session.cc:2237 +#: session.cc:2228 session.cc:2238 msgid "Session: UINT_MAX routes? impossible!" msgstr "Session: UINT_MAX Routen? unmöglich!" -#: session.cc:2259 +#: session.cc:2260 msgid "Session: cannot create track/bus from template description" msgstr "Session: Kann die Route aus der Vorlagenbeschreibung nicht erzeugen" -#: session.cc:2285 +#: session.cc:2286 msgid "Session: could not create new route from template" msgstr "Session: konnte keine neue Route aus der Vorlage erzeugen." -#: session.cc:2314 +#: session.cc:2315 msgid "Adding new tracks/busses failed" msgstr "Fehler beim Hinzufügen neuer Spuren/Busse" -#: session.cc:3413 +#: session.cc:3419 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "" "FATALER FEHLER! Konnte keine passende Version von %1 zum Umbenennen finden" -#: session.cc:3533 session.cc:3591 +#: session.cc:3539 session.cc:3597 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "Es gibt bereits %1 Aufnahmen für %2, was ich als zu viele erachte." -#: session.cc:3981 +#: session.cc:3987 msgid "send ID %1 appears to be in use already" msgstr "Send ID %1 ist offenbar schon in Gebrauch" -#: session.cc:3993 +#: session.cc:3999 msgid "aux send ID %1 appears to be in use already" msgstr "Aux-Send ID %1 ist offenbar schon in Gebrauch" -#: session.cc:4005 +#: session.cc:4011 msgid "return ID %1 appears to be in use already" msgstr "Return ID %1 ist offenbar schon in Gebrauch" -#: session.cc:4017 +#: session.cc:4023 msgid "insert ID %1 appears to be in use already" msgstr "Insert ID %1 ist offenbar schon in Gebrauch" -#: session.cc:4144 +#: session.cc:4150 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "Kann einen Bereich mit Ende <= Start nicht schreiben (z.B. %1 <= %2)" -#: session.cc:4173 +#: session.cc:4179 msgid "too many bounced versions of playlist \"%1\"" msgstr "zu viele gebouncete Versionen der Wiedergabeliste \"%1\"" -#: session.cc:4183 +#: session.cc:4189 msgid "cannot create new audio file \"%1\" for %2" msgstr "kann keine neue Audiodatei \"%1\" für %2 erzeugen" diff --git a/libs/ardour/po/el.po b/libs/ardour/po/el.po index ad6f38be97..b7b350bdd9 100644 --- a/libs/ardour/po/el.po +++ b/libs/ardour/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libardour 0.664.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-10-23 19:09+0200\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2007-04-16 00:38+0200\n" "Last-Translator: Klearchos Gourgourinis \n" "Language-Team: Hellenic(Greek)\n" @@ -130,7 +130,7 @@ msgstr "" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 +#: rb_effect.cc:333 session.cc:2619 session.cc:2652 session.cc:3797 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "σφάλμα Ï€ÏογÏαμματισμοÏ: %1" @@ -199,6 +199,18 @@ msgstr "" msgid "looking for backends in %1\n" msgstr "" +#: audioengine.cc:511 +msgid "AudioEngine: cannot load module \"%1\" (%2)" +msgstr "" + +#: audioengine.cc:517 +msgid "AudioEngine: backend at \"%1\" has no descriptor function." +msgstr "" + +#: audioengine.cc:589 +msgid "Could not create backend for %1: %2" +msgstr "" + #: audioregion.cc:1643 msgid "" "You have requested an operation that requires audio analysis.\n" @@ -227,6 +239,14 @@ msgid "cannot read sample data for unscaled peak computation" msgstr "" "δεν μποÏÏŽ να διαβάσω δεδομένα δείγματος για υπολογισμό μη-κλιμακώτου peak" +#: audiosource.cc:387 +msgid "AudioSource: cannot open peakpath (a) \"%1\" (%2)" +msgstr "" + +#: audiosource.cc:463 +msgid "AudioSource: cannot open peakpath (b) \"%1\" (%2)" +msgstr "" + #: audiosource.cc:587 msgid "" "AudioSource[%1]: peak read - cannot read %2 samples at offset %3 of %4 (%5)" @@ -238,10 +258,18 @@ msgstr "" "%1: δεν μποÏεσα να γÏάψω ανεγνωσμένα raw δεδομένα για τον υπολογισμό του " "peak (%2)" +#: audiosource.cc:706 +msgid "AudioSource: cannot open peakpath (c) \"%1\" (%2)" +msgstr "" + #: audiosource.cc:773 audiosource.cc:886 msgid "%1: could not write peak file data (%2)" msgstr "%1: δεν μπόÏεσα να γÏάψω δεδομένα του αÏχείου peak (%2)" +#: audiosource.cc:924 +msgid "could not truncate peakfile %1 to %2 (error: %3)" +msgstr "" + #: auditioner.cc:87 msgid "no outputs available for auditioner - manual connection required" msgstr "" @@ -254,10 +282,22 @@ msgstr "" msgid "Cannot setup auditioner processing flow for %1 channels" msgstr "" +#: automatable.cc:81 +msgid "Automation node has no path property" +msgstr "" + #: automatable.cc:101 msgid "cannot open %2 to load automation data (%3)" msgstr "" +#: automatable.cc:129 +msgid "cannot load automation data from %2" +msgstr "" + +#: automation_list.cc:353 +msgid "automation list: cannot load coordinates from XML, all points ignored" +msgstr "" + #: automation_list.cc:399 msgid "" "automation list: no x-coordinate stored for control point (point ignored)" @@ -293,6 +333,10 @@ msgstr "ΣυνεδÏία: δεν μπόÏεσα να δημιουÏγήσω δέ msgid "poll on butler request pipe failed (%1)" msgstr "" +#: butler.cc:163 +msgid "Error on butler thread request pipe: fd=%1 err=%2" +msgstr "" + #: butler.cc:201 msgid "Error reading from butler request pipe" msgstr "Σφάλμα στην ανάγνωση από butler request pipe" @@ -353,7 +397,7 @@ msgstr "δεν ευÏέθη το cpu MHz στο /proc/cpuinfo" msgid "audio" msgstr "" -#: data_type.cc:28 session.cc:1790 session.cc:1793 +#: data_type.cc:28 session.cc:1791 session.cc:1794 msgid "MIDI" msgstr "" @@ -377,6 +421,10 @@ msgstr "Η Τοποθεσία \"%1\" δεν είναι ικανή για track l msgid "Could not get port for export channel \"%1\", dropping the channel" msgstr "" +#: export_failed.cc:32 +msgid "Export failed: %1" +msgstr "" + #: export_filename.cc:118 msgid "Existing export folder for this session (%1) does not exist - ignored" msgstr "" @@ -461,7 +509,7 @@ msgstr "" msgid "Rectangular" msgstr "" -#: export_formats.cc:52 session.cc:5008 session.cc:5024 +#: export_formats.cc:52 session.cc:5014 session.cc:5030 msgid "None" msgstr "" @@ -576,6 +624,10 @@ msgid "" "there are already 1000 files with names like %1; versioning discontinued" msgstr "ΥπάÏχουν ήδη 1000 αÏχεία με ονόματα όπως %1; μη-συνεχές versioning" +#: file_source.cc:207 +msgid "cannot rename file source from %1 to %2 (%3)" +msgstr "" + #: file_source.cc:250 file_source.cc:378 msgid "FileSource: search path not set" msgstr "FileSource: μονοπάτι αναζητήσεως δεν ετέθη" @@ -607,6 +659,10 @@ msgid "" "continue working, but please report this to the developers." msgstr "" +#: file_source.cc:540 +msgid "cannot rename file %1 to %2 (%3)" +msgstr "" + #: filesystem_paths.cc:73 msgid "Cannot create Configuration directory %1 - cannot run" msgstr "" @@ -673,6 +729,14 @@ msgstr "" msgid "Your system is configured to limit %1 to only %2 open files" msgstr "" +#: globals.cc:217 +msgid "Could not get system open files limit (%1)" +msgstr "" + +#: globals.cc:268 +msgid "Loading configuration" +msgstr "" + #: import.cc:207 msgid "Could not find a source for %1 even though we are updating this file!" msgstr "" @@ -701,6 +765,10 @@ msgstr "" msgid "Import: cannot open input sound file \"%1\"" msgstr "Εισαγωγή: δεν μποÏÏŽ να ανοίξω το εισαγμένο αÏχείο ήχου \"%1\"" +#: import.cc:510 +msgid "Import: error opening MIDI file" +msgstr "" + #: import.cc:549 msgid "Loading MIDI file %1" msgstr "" @@ -721,6 +789,10 @@ msgstr "" msgid "%1 - cannot find any track/bus with the ID %2 to connect to" msgstr "" +#: io.cc:208 +msgid "IO: cannot disconnect port %1 from %2" +msgstr "" + #: io.cc:343 io.cc:428 msgid "IO: cannot register input port %1" msgstr "IO: δεν μποÏεί να καταχώÏηθεί η θÏÏα εισόδου %1" @@ -796,15 +868,15 @@ msgstr "" msgid "%s out" msgstr "" -#: io.cc:1535 session.cc:685 session.cc:714 +#: io.cc:1535 session.cc:686 session.cc:715 msgid "mono" msgstr "" -#: io.cc:1537 session.cc:698 session.cc:728 +#: io.cc:1537 session.cc:699 session.cc:729 msgid "L" msgstr "" -#: io.cc:1537 session.cc:700 session.cc:730 +#: io.cc:1537 session.cc:701 session.cc:731 msgid "R" msgstr "" @@ -849,6 +921,10 @@ msgstr "LADSPA: κανένα δεδομένο θÏÏας ladspa" msgid "LADSPA: cannot load module from \"%1\"" msgstr "LADSPA: δεν μποÏÏŽ να φοÏτώσω module από \"%1\"" +#: ladspa_plugin.cc:827 +msgid "Could not locate HOME. Preset not removed." +msgstr "" + #: ladspa_plugin.cc:864 ladspa_plugin.cc:870 msgid "Could not create %1. Preset not saved. (%2)" msgstr "Δεν μπόÏεσα να δημιουÏγήσω το %1. ΠÏο-ÏÏθμιση δεν αποθηκεÏθηκε. (%2)" @@ -869,6 +945,10 @@ msgstr "" msgid "incorrect XML node passed to Location::set_state" msgstr "λανθασμένος κόμβος XML πέÏασε στην Τοποθεσία::set_state" +#: location.cc:455 +msgid "XML node for Location has no ID information" +msgstr "" + #: location.cc:459 msgid "XML node for Location has no name information" msgstr "Ο κόμβος XML για την Τοποθεσία δεν έχει πληÏοφοÏίες ονόματος" @@ -895,7 +975,7 @@ msgstr "" msgid "incorrect XML mode passed to Locations::set_state" msgstr "λανθασμένο XML mode πέÏασε στις Τοποθεσίες::set_state" -#: location.cc:842 session.cc:4510 session_state.cc:1031 +#: location.cc:842 session.cc:4516 session_state.cc:1031 msgid "session" msgstr "" @@ -959,6 +1039,34 @@ msgid "" "%1: I/O configuration change %4 requested to use %2, but channel setup is %3" msgstr "" +#: midi_diskstream.cc:219 +msgid "MidiDiskstream: Playlist \"%1\" isn't a midi playlist" +msgstr "" + +#: midi_diskstream.cc:270 +msgid "MidiDiskstream %1: there is no existing playlist to make a copy of!" +msgstr "" + +#: midi_diskstream.cc:699 +msgid "MidiDiskstream %1: cannot read %2 from playlist at frame %3" +msgstr "" + +#: midi_diskstream.cc:834 +msgid "MidiDiskstream %1: cannot write to disk" +msgstr "" + +#: midi_diskstream.cc:868 +msgid "MidiDiskstream \"%1\": cannot flush captured data to disk!" +msgstr "" + +#: midi_diskstream.cc:955 +msgid "%1: could not create region for complete midi file" +msgstr "" + +#: midi_diskstream.cc:992 +msgid "MidiDiskstream: could not create region for captured midi!" +msgstr "" + #: midi_model.cc:634 msgid "No NoteID found for note property change - ignored" msgstr "" @@ -995,6 +1103,18 @@ msgstr "" msgid "MIDI stretch created non-MIDI source" msgstr "" +#: monitor_processor.cc:53 +msgid "monitor dim" +msgstr "" + +#: monitor_processor.cc:54 +msgid "monitor cut" +msgstr "" + +#: monitor_processor.cc:55 +msgid "monitor mono" +msgstr "" + #: monitor_processor.cc:58 msgid "monitor dim level" msgstr "" @@ -1102,6 +1222,14 @@ msgstr "" msgid "Panner discovered: \"%1\" in %2" msgstr "" +#: panner_manager.cc:117 +msgid "PannerManager: cannot load module \"%1\" (%2)" +msgstr "" + +#: panner_manager.cc:124 +msgid "PannerManager: module \"%1\" has no descriptor function." +msgstr "" + #: panner_manager.cc:187 msgid "no panner discovered for in/out = %1/%2" msgstr "" @@ -1118,6 +1246,10 @@ msgstr "ο κόμβος για τα plugin του panner δεν έχει πλη msgid "region state node has no ID, ignored" msgstr "" +#: playlist.cc:2088 +msgid "Playlist: cannot create region from XML" +msgstr "" + #: playlist_source.cc:99 msgid "No playlist ID in PlaylistSource XML!" msgstr "" @@ -1170,6 +1302,10 @@ msgstr "PluginInsert: Auto: χωÏίς αÏιθμό θÏÏας ladspa" msgid "PluginInsert: Auto: port id out of range" msgstr "PluginInsert: Auto: το id θÏÏας είναι εκτός πεδίου" +#: plugin_insert.cc:1137 +msgid "PluginInsert: automatable control %1 not found - ignored" +msgstr "" + #: plugin_manager.cc:161 msgid "Discovering Plugins" msgstr "" @@ -1198,6 +1334,14 @@ msgid "" "in %2 at this time" msgstr "" +#: plugin_manager.cc:870 +msgid "unknown plugin status type \"%1\" - all entries ignored" +msgstr "" + +#: plugin_manager.cc:887 +msgid "unknown plugin type \"%1\" - ignored" +msgstr "" + #: port.cc:410 msgid "could not reregister %1" msgstr "αδÏνατη η επανακαταγÏαφή %1" @@ -1226,6 +1370,10 @@ msgid "" "ports if you need this many tracks." msgstr "" +#: port_manager.cc:275 +msgid "AudioEngine: cannot register port \"%1\": %2" +msgstr "" + #: port_manager.cc:314 msgid "unable to create port: %1" msgstr "" @@ -1250,6 +1398,10 @@ msgstr "" msgid "Loading system configuration file %1" msgstr "Ανάκληση αÏχείου Ïυθμίσεων συστήματος %1" +#: rc_configuration.cc:92 +msgid "%1: cannot read system configuration file \"%2\"" +msgstr "" + #: rc_configuration.cc:97 msgid "%1: system configuration file \"%2\" not loaded successfully." msgstr "" @@ -1264,6 +1416,10 @@ msgstr "" msgid "Loading user configuration file %1" msgstr "Ανάκληση αÏχείου Ïυθμίσεων χÏήστη %1" +#: rc_configuration.cc:120 +msgid "%1: cannot read configuration file \"%2\"" +msgstr "" + #: rc_configuration.cc:125 msgid "%1: user configuration file \"%2\" not loaded successfully." msgstr "" @@ -1314,6 +1470,10 @@ msgstr "" msgid "unknown Processor type \"%1\"; ignored" msgstr "" +#: route.cc:1087 +msgid "processor could not be created. Ignored." +msgstr "" + #: route.cc:1962 route.cc:2187 msgid "Bad node sent to Route::set_state() [%1]" msgstr "Κακός κόμβος εστάλη στο Route::set_state() [%1]" @@ -1336,11 +1496,11 @@ msgstr "" msgid "You cannot subgroup MIDI tracks at this time" msgstr "" -#: rb_effect.cc:233 rb_effect.cc:274 +#: rb_effect.cc:234 rb_effect.cc:275 msgid "tempoize: error reading data from %1 at %2 (wanted %3, got %4)" msgstr "" -#: rb_effect.cc:303 rb_effect.cc:325 +#: rb_effect.cc:304 rb_effect.cc:326 msgid "error writing tempo-adjusted data to %1" msgstr "σφάλμα στην εγγÏαφή χÏονο-Ïυθμισμένων δεδομένων στο %1" @@ -1352,141 +1512,173 @@ msgstr "" msgid "send %1" msgstr "" -#: session.cc:343 +#: send.cc:65 +msgid "programming error: send created using role %1" +msgstr "" + +#: session.cc:344 msgid "Connect to engine" msgstr "" -#: session.cc:348 +#: session.cc:349 msgid "Session loading complete" msgstr "" -#: session.cc:420 +#: session.cc:421 msgid "Set up LTC" msgstr "" -#: session.cc:422 +#: session.cc:423 msgid "Set up Click" msgstr "" -#: session.cc:424 +#: session.cc:425 msgid "Set up standard connections" msgstr "" -#: session.cc:634 +#: session.cc:635 msgid "could not setup Click I/O" msgstr "Δεν μπόÏεσα να διαμοÏφώσω το I/O του ΜετÏονόμου(click)" -#: session.cc:682 +#: session.cc:683 #, c-format msgid "out %" msgstr "" -#: session.cc:696 +#: session.cc:697 #, c-format msgid "out %+%" msgstr "" -#: session.cc:711 +#: session.cc:712 #, c-format msgid "in %" msgstr "" -#: session.cc:725 +#: session.cc:726 #, c-format msgid "in %+%" msgstr "" -#: session.cc:848 +#: session.cc:790 +msgid "cannot connect master output %1 to %2" +msgstr "" + +#: session.cc:849 msgid "monitor" msgstr "monitor" -#: session.cc:913 +#: session.cc:894 +msgid "cannot connect control input %1 to %2" +msgstr "" + +#: session.cc:914 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "" -#: session.cc:1008 +#: session.cc:945 +msgid "cannot connect control output %1 to %2" +msgstr "" + +#: session.cc:1009 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "δεν μποÏÏŽ να δημιουÏγήσω τον ΑκÏοατή: καμία ακÏόαση πεÏιοχών δυνατή" -#: session.cc:1192 +#: session.cc:1193 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" "ΣυνεδÏία: δεν μποÏείτε να χÏησιμοποιήσετε αυτήν την τοποθεσία για auto punch " "(αÏχή <= τέλος)" -#: session.cc:1232 +#: session.cc:1233 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" msgstr "" -#: session.cc:1546 +#: session.cc:1547 msgid "feedback loop setup between %1 and %2" msgstr "διαμόÏφωση feedback loop ανάμεσα σε %1 και %2" -#: session.cc:1848 +#: session.cc:1843 +msgid "Session: could not create new midi track." +msgstr "" + +#: session.cc:1849 msgid "" "No more JACK ports are available. You will need to stop %1 and restart JACK " "with more ports if you need this many tracks." msgstr "" -#: session.cc:2025 session.cc:2028 +#: session.cc:2026 session.cc:2029 msgid "Audio" msgstr "" -#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 +#: session.cc:2053 session.cc:2061 session.cc:2138 session.cc:2146 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "δεν μποÏÏŽ να διαμοÏφώσω %1 in/%2 out διάταξη για νέο κανάλι ήχου" -#: session.cc:2083 +#: session.cc:2084 msgid "Session: could not create new audio track." msgstr "ΣυνεδÏία: δεν μπόÏεσα να δημιουÏγήσω νέο κανάλι ήχου." -#: session.cc:2115 session.cc:2118 +#: session.cc:2116 session.cc:2119 msgid "Bus" msgstr "" -#: session.cc:2227 session.cc:2237 +#: session.cc:2169 +msgid "Session: could not create new audio route." +msgstr "" + +#: session.cc:2228 session.cc:2238 msgid "Session: UINT_MAX routes? impossible!" msgstr "" -#: session.cc:2314 +#: session.cc:2260 +msgid "Session: cannot create track/bus from template description" +msgstr "" + +#: session.cc:2286 +msgid "Session: could not create new route from template" +msgstr "" + +#: session.cc:2315 msgid "Adding new tracks/busses failed" msgstr "" -#: session.cc:3413 +#: session.cc:3419 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "" -#: session.cc:3533 session.cc:3591 +#: session.cc:3539 session.cc:3597 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "ΥπάÏχουν ήδη %1 εγγÏαφές για %2, τις οποίες θεωÏÏŽ πάÏα πολλές." -#: session.cc:3981 +#: session.cc:3987 msgid "send ID %1 appears to be in use already" msgstr "" -#: session.cc:3993 +#: session.cc:3999 msgid "aux send ID %1 appears to be in use already" msgstr "" -#: session.cc:4005 +#: session.cc:4011 msgid "return ID %1 appears to be in use already" msgstr "" -#: session.cc:4017 +#: session.cc:4023 msgid "insert ID %1 appears to be in use already" msgstr "" -#: session.cc:4144 +#: session.cc:4150 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "" -#: session.cc:4173 +#: session.cc:4179 msgid "too many bounced versions of playlist \"%1\"" msgstr "πάÏα πολλές bounced εκδόσεις της Playlist \"%1\"" -#: session.cc:4183 +#: session.cc:4189 msgid "cannot create new audio file \"%1\" for %2" msgstr "δεν μποÏÏŽ να δημιουÏγήσω νέο αÏχείο ήχου \"%1\" για %2" @@ -1513,6 +1705,10 @@ msgid "" "= %2" msgstr "" +#: session_directory.cc:59 +msgid "Cannot create Session directory at path %1 Error: %2" +msgstr "" + #: session_directory.cc:76 msgid "Session subdirectory does not exist at path %1" msgstr "" @@ -1554,6 +1750,10 @@ msgid "Programming error: illegal event type in process_event (%1)" msgstr "" "Σφάλμα Ï€ÏογÏαμματισμοÏ: παÏάνομος Ï„Ïπος συμβάντος στο process_event (%1)" +#: session_state.cc:140 +msgid "Could not use path %1 (%2)" +msgstr "" + #: session_state.cc:184 msgid "solo cut control (dB)" msgstr "" @@ -1562,14 +1762,50 @@ msgstr "" msgid "Set block size and sample rate" msgstr "" +#: session_state.cc:213 +msgid "Using configuration" +msgstr "" + #: session_state.cc:325 msgid "Reset Remote Controls" msgstr "" +#: session_state.cc:417 +msgid "Session: cannot create session peakfile folder \"%1\" (%2)" +msgstr "" + #: session_state.cc:424 msgid "Session: cannot create session sounds dir \"%1\" (%2)" msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω φάκελο ήχων συνεδÏίας \"%1\" (%2)" +#: session_state.cc:431 +msgid "Session: cannot create session midi dir \"%1\" (%2)" +msgstr "" + +#: session_state.cc:438 +msgid "Session: cannot create session dead sounds folder \"%1\" (%2)" +msgstr "" + +#: session_state.cc:445 +msgid "Session: cannot create session export folder \"%1\" (%2)" +msgstr "" + +#: session_state.cc:452 +msgid "Session: cannot create session analysis folder \"%1\" (%2)" +msgstr "" + +#: session_state.cc:459 +msgid "Session: cannot create session plugins folder \"%1\" (%2)" +msgstr "" + +#: session_state.cc:466 +msgid "Session: cannot create session externals folder \"%1\" (%2)" +msgstr "" + +#: session_state.cc:480 +msgid "Session: cannot create session folder \"%1\" (%2)" +msgstr "" + #: session_state.cc:514 msgid "Could not open %1 for writing session template" msgstr "" @@ -1582,6 +1818,18 @@ msgstr "" msgid "master" msgstr "master" +#: session_state.cc:600 +msgid "Could not remove pending capture state at path \"%1\" (%2)" +msgstr "" + +#: session_state.cc:624 +msgid "could not rename snapshot %1 to %2 (%3)" +msgstr "" + +#: session_state.cc:652 +msgid "Could not remove session file at path \"%1\" (%2)" +msgstr "" + #: session_state.cc:669 msgid "" "the %1 audio engine is not connected and state saving would lose all I/O " @@ -1592,10 +1840,26 @@ msgstr "" msgid "state could not be saved to %1" msgstr "η κατάσταση δεν μποÏοÏσε να σωθεί στο %1" +#: session_state.cc:722 session_state.cc:733 +msgid "Could not remove temporary session file at path \"%1\" (%2)" +msgstr "" + +#: session_state.cc:730 +msgid "could not rename temporary session file %1 to %2" +msgstr "" + #: session_state.cc:798 msgid "%1: session file \"%2\" doesn't exist!" msgstr "" +#: session_state.cc:810 +msgid "Could not understand session file %1" +msgstr "" + +#: session_state.cc:819 +msgid "Session file %1 is not a session" +msgstr "" + #: session_state.cc:1125 msgid "programming error: Session: incorrect XML node sent to set_state()" msgstr "" @@ -1606,6 +1870,10 @@ msgstr "" msgid "Session: XML state has no options section" msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα επιλογών(options)" +#: session_state.cc:1184 +msgid "Session: XML state has no metadata section" +msgstr "" + #: session_state.cc:1195 msgid "Session: XML state has no sources section" msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα πηγών" @@ -1626,6 +1894,10 @@ msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα msgid "Session: XML state has no playlists section" msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα playlists" +#: session_state.cc:1262 +msgid "Session: XML state has no bundles section" +msgstr "" + #: session_state.cc:1274 msgid "Session: XML state has no diskstreams section" msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα diskstreams" @@ -1634,6 +1906,10 @@ msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα d msgid "Session: XML state has no routes section" msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα διαδÏομών" +#: session_state.cc:1294 +msgid "Session: XML state has no route groups section" +msgstr "" + #: session_state.cc:1303 msgid "Session: XML state has no edit groups section" msgstr "ΣυνεδÏία: η XML κατάσταση δεν έχει τομέα επεξεÏ/σίας ομάδων" @@ -1654,10 +1930,18 @@ msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω Διαδ msgid "Loaded track/bus %1" msgstr "" +#: session_state.cc:1462 +msgid "Could not find diskstream for route" +msgstr "" + #: session_state.cc:1516 msgid "Session: cannot create Region from XML description." msgstr "ΣυνεδÏία: δεν μποÏÏŽ να δημιουÏγήσω ΠεÏιοχή από XML πεÏιγÏαφή." +#: session_state.cc:1520 +msgid "Can not load state for region '%1'" +msgstr "" + #: session_state.cc:1556 msgid "Regions in compound description not found (ID's %1 and %2): ignored" msgstr "" @@ -1666,6 +1950,10 @@ msgstr "" msgid "Nested source has no ID info in session file! (ignored)" msgstr "" +#: session_state.cc:1596 +msgid "Cannot reconstruct nested source for region %1" +msgstr "" + #: session_state.cc:1658 msgid "Session: XMLNode describing a AudioRegion is incomplete (no source)" msgstr "" @@ -1686,6 +1974,26 @@ msgstr "" "ΣυνεδÏία: Ο XMLNode που πεÏιγÏάφει AudioRegion αναφέÏει μη-ηχητική πηγή με " "id =%1" +#: session_state.cc:1736 +msgid "" +"Session: XMLNode describing an AudioRegion is missing some master sources; " +"ignored" +msgstr "" + +#: session_state.cc:1770 +msgid "Session: XMLNode describing a MidiRegion is incomplete (no source)" +msgstr "" + +#: session_state.cc:1778 +msgid "" +"Session: XMLNode describing a MidiRegion references an unknown source id =%1" +msgstr "" + +#: session_state.cc:1784 +msgid "" +"Session: XMLNode describing a MidiRegion references a non-midi source id =%1" +msgstr "" + #: session_state.cc:1852 msgid "" "cannot create new file from region name \"%1\" with ident = \"%2\": too many " @@ -1704,14 +2012,42 @@ msgstr "" msgid "Found a sound file that cannot be used by %1. Talk to the progammers." msgstr "" +#: session_state.cc:1949 +msgid "Could not create templates directory \"%1\" (%2)" +msgstr "" + #: session_state.cc:1962 msgid "Template \"%1\" already exists - new version not created" msgstr "Το Ï€Ïοσχέδιο \"%1\" ήδη υπάÏχει - νέα έκδοση δεν δημιουÏγήθηκε" +#: session_state.cc:1968 +msgid "Could not create directory for Session template\"%1\" (%2)" +msgstr "" + #: session_state.cc:1978 msgid "template not saved" msgstr "" +#: session_state.cc:1988 +msgid "Could not create directory for Session template plugin state\"%1\" (%2)" +msgstr "" + +#: session_state.cc:2183 +msgid "Unknown node \"%1\" found in Bundles list from session file" +msgstr "" + +#: session_state.cc:2725 session_state.cc:2731 +msgid "Cannot expand path %1 (%2)" +msgstr "" + +#: session_state.cc:2784 +msgid "Session: cannot create dead file folder \"%1\" (%2)" +msgstr "" + +#: session_state.cc:2823 +msgid "cannot rename unused file source from %1 to %2 (%3)" +msgstr "" + #: session_state.cc:2841 msgid "cannot remove peakfile %1 for %2 (%3)" msgstr "δεν μποÏÏŽ να απαλοίψω το peakfile %1 για %2 (%3)" @@ -1720,10 +2056,26 @@ msgstr "δεν μποÏÏŽ να απαλοίψω το peakfile %1 για %2 (%3)" msgid "could not backup old history file, current history not saved" msgstr "" +#: session_state.cc:3156 +msgid "history could not be saved to %1" +msgstr "" + +#: session_state.cc:3159 +msgid "Could not remove history file at path \"%1\" (%2)" +msgstr "" + +#: session_state.cc:3163 +msgid "could not restore history file from backup %1 (%2)" +msgstr "" + #: session_state.cc:3188 msgid "%1: no history file \"%2\" for this session." msgstr "" +#: session_state.cc:3194 +msgid "Could not understand session history file \"%1\"" +msgstr "" + #: session_state.cc:3236 msgid "Failed to downcast MidiSource for NoteDiffCommand" msgstr "" @@ -1740,6 +2092,10 @@ msgstr "" msgid "Couldn't figure out how to make a Command out of a %1 XMLNode." msgstr "" +#: session_state.cc:3502 +msgid "Session: unknown diskstream type in XML" +msgstr "" + #: session_state.cc:3507 msgid "Session: could not load diskstream via XML state" msgstr "ΣυνεδÏία: δεν μπόÏεσα να φοÏτώσω diskstream μέσω καταστάσεως XML" @@ -1780,6 +2136,10 @@ msgstr "" msgid "Skipping event with unordered time %1" msgstr "" +#: smf_source.cc:410 +msgid "cannot open MIDI file %1 for write" +msgstr "" + #: sndfile_helpers.cc:32 msgid "WAV" msgstr "WAV" @@ -1892,6 +2252,11 @@ msgstr "" msgid "SndFileSource: could not seek to frame %1 within %2 (%3)" msgstr "SndFileSource: δεν μποÏοÏσα να αναζητήσω στο frame %1 μέσα στο %2 (%3)" +#: sndfilesource.cc:347 +msgid "" +"SndFileSource: @ %1 could not read %2 within %3 (%4) (len = %5, ret was %6)" +msgstr "" + #: sndfilesource.cc:391 sndfilesource.cc:420 msgid "attempt to write a non-writable audio file source (%1)" msgstr "" @@ -1921,6 +2286,18 @@ msgstr "" msgid "attempt to set BWF info for an un-opened audio file source (%1)" msgstr "" +#: sndfilesource.cc:614 +msgid "%1: cannot seek to %2 (libsndfile error: %3)" +msgstr "" + +#: sndfilesource.cc:727 +msgid "SndFileSource: \"%1\" bad read retval: %2 of %5 (%3: %4)" +msgstr "" + +#: sndfilesource.cc:740 sndfilesource.cc:790 sndfilesource.cc:797 +msgid "SndFileSource: \"%1\" bad write (%2)" +msgstr "" + #: sndfilesource.cc:820 msgid "" "Filesource: start time is already set for existing file (%1): Cannot change " @@ -1959,10 +2336,18 @@ msgstr "Κόμβος του TempoSection XML δεν έχει \"κτÏπων-αν msgid "TempoSection XML node has an illegal \"beats_per_minute\" value" msgstr "Κόμβος του TempoSection XML έχει αθέμιτη \"κτÏπων_ανά_λεπτό\" αξία" +#: tempo.cc:108 +msgid "TempoSection XML node has an illegal \"note-type\" value" +msgstr "" + #: tempo.cc:114 msgid "TempoSection XML node has no \"movable\" property" msgstr "Κόμβος του TempoSection XML δεν έχει \"κινητή\" ιδιότητα" +#: tempo.cc:124 +msgid "TempoSection XML node has an illegal \"bar-offset\" value" +msgstr "" + #: tempo.cc:201 msgid "MeterSection XML node has no \"start\" property" msgstr "Κόμβος του MeterSection XML δεν έχει \"έναÏξη\" ιδιότητα" @@ -1971,6 +2356,18 @@ msgstr "Κόμβος του MeterSection XML δεν έχει \"έναÏξη\" ι msgid "MeterSection XML node has an illegal \"start\" value" msgstr "Κόμβος του MeterSection XML έχει αθέμιτη \"έναÏξη\" αξία" +#: tempo.cc:219 +msgid "" +"MeterSection XML node has no \"beats-per-bar\" or \"divisions-per-bar\" " +"property" +msgstr "" + +#: tempo.cc:225 +msgid "" +"MeterSection XML node has an illegal \"beats-per-bar\" or \"divisions-per-bar" +"\" value" +msgstr "" + #: tempo.cc:230 msgid "MeterSection XML node has no \"note-type\" property" msgstr "Κόμβος του MeterSection XML δεν έχει \"Ï„Ïπος-νότας\" ιδιότητα" @@ -2046,11 +2443,27 @@ msgid "" "Are you sure you want to do this?" msgstr "" +#: user_bundle.cc:47 +msgid "Node for Bundle has no \"name\" property" +msgstr "" + #: user_bundle.cc:59 user_bundle.cc:80 #, c-format msgid "Unknown node \"%s\" in Bundle" msgstr "" +#: user_bundle.cc:64 +msgid "Node for Channel has no \"name\" property" +msgstr "" + +#: user_bundle.cc:70 +msgid "Node for Channel has no \"type\" property" +msgstr "" + +#: user_bundle.cc:85 +msgid "Node for Port has no \"name\" property" +msgstr "" + #: utils.cc:358 utils.cc:382 msgid "Splice" msgstr "" @@ -2063,6 +2476,10 @@ msgstr "" msgid "Lock" msgstr "" +#: utils.cc:365 +msgid "programming error: unknown edit mode string \"%1\"" +msgstr "" + #: utils.cc:389 utils.cc:421 msgid "MIDI Timecode" msgstr "" @@ -2079,6 +2496,10 @@ msgstr "" msgid "JACK" msgstr "" +#: utils.cc:401 +msgid "programming error: unknown sync source string \"%1\"" +msgstr "" + #: utils.cc:426 msgid "M-Clock" msgstr "" @@ -2086,3 +2507,11 @@ msgstr "" #: utils.cc:432 msgid "LTC" msgstr "" + +#: utils.cc:602 +msgid "programming error: unknown native header format: %1" +msgstr "" + +#: utils.cc:617 +msgid "cannot open directory %1 (%2)" +msgstr "" diff --git a/libs/ardour/po/es.po b/libs/ardour/po/es.po index 842c5fc385..758dcd2bbb 100644 --- a/libs/ardour/po/es.po +++ b/libs/ardour/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libardour\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-10-23 19:09+0200\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: \n" "Last-Translator: Pablo Fernández \n" "Language-Team: Grupo de Traducción al Español \n" @@ -131,7 +131,7 @@ msgstr "" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 +#: rb_effect.cc:333 session.cc:2619 session.cc:2652 session.cc:3797 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "error de programación: %1" @@ -200,10 +200,22 @@ msgstr "no se puede cargar el plugin VAMP \"%1\"" msgid "VAMP Plugin \"%1\" could not be loaded" msgstr "el plugin VAMP \"%1\" no pudo ser cargado" +#: audioengine.cc:488 +msgid "looking for backends in %1\n" +msgstr "" + +#: audioengine.cc:511 +msgid "AudioEngine: cannot load module \"%1\" (%2)" +msgstr "" + #: audioengine.cc:517 msgid "AudioEngine: backend at \"%1\" has no descriptor function." msgstr "" +#: audioengine.cc:589 +msgid "Could not create backend for %1: %2" +msgstr "" + #: audioregion.cc:1643 msgid "" "You have requested an operation that requires audio analysis.\n" @@ -400,7 +412,7 @@ msgstr "" msgid "audio" msgstr "" -#: data_type.cc:28 session.cc:1790 session.cc:1793 +#: data_type.cc:28 session.cc:1791 session.cc:1794 msgid "MIDI" msgstr "" @@ -513,7 +525,7 @@ msgstr "" msgid "Rectangular" msgstr "" -#: export_formats.cc:52 session.cc:5008 session.cc:5024 +#: export_formats.cc:52 session.cc:5014 session.cc:5030 msgid "None" msgstr "" @@ -872,15 +884,15 @@ msgstr "" msgid "%s out" msgstr "" -#: io.cc:1535 session.cc:685 session.cc:714 +#: io.cc:1535 session.cc:686 session.cc:715 msgid "mono" msgstr "" -#: io.cc:1537 session.cc:698 session.cc:728 +#: io.cc:1537 session.cc:699 session.cc:729 msgid "L" msgstr "" -#: io.cc:1537 session.cc:700 session.cc:730 +#: io.cc:1537 session.cc:701 session.cc:731 msgid "R" msgstr "" @@ -975,7 +987,7 @@ msgstr "" msgid "incorrect XML mode passed to Locations::set_state" msgstr "" -#: location.cc:842 session.cc:4510 session_state.cc:1031 +#: location.cc:842 session.cc:4516 session_state.cc:1031 msgid "session" msgstr "sesión" @@ -1041,6 +1053,10 @@ msgid "" "%1: I/O configuration change %4 requested to use %2, but channel setup is %3" msgstr "" +#: midi_diskstream.cc:219 +msgid "MidiDiskstream: Playlist \"%1\" isn't a midi playlist" +msgstr "" + #: midi_diskstream.cc:270 msgid "MidiDiskstream %1: there is no existing playlist to make a copy of!" msgstr "" @@ -1363,6 +1379,12 @@ msgstr "" "ya existe un puerto con el nombre \"%1\": compruebe si hay nombres de pistas/" "buses duplicados" +#: port_manager.cc:272 +msgid "" +"No more ports are available. You will need to stop %1 and restart with more " +"ports if you need this many tracks." +msgstr "" + #: port_manager.cc:275 msgid "AudioEngine: cannot register port \"%1\": %2" msgstr "AudioEngine: no se puede registrar el puerto \"%1\": %2" @@ -1401,6 +1423,12 @@ msgstr "" "%1: El archivo de configuración del sistema \"%2\" no se ha cargado con " "éxito." +#: rc_configuration.cc:101 +msgid "" +"Your system %1 configuration file is empty. This probably means that there " +"was an error installing %1" +msgstr "" + #: rc_configuration.cc:116 msgid "Loading user configuration file %1" msgstr "Cargando el archivo de configuración de usuario %1" @@ -1485,11 +1513,11 @@ msgstr "" msgid "You cannot subgroup MIDI tracks at this time" msgstr "" -#: rb_effect.cc:233 rb_effect.cc:274 +#: rb_effect.cc:234 rb_effect.cc:275 msgid "tempoize: error reading data from %1 at %2 (wanted %3, got %4)" msgstr "" -#: rb_effect.cc:303 rb_effect.cc:325 +#: rb_effect.cc:304 rb_effect.cc:326 msgid "error writing tempo-adjusted data to %1" msgstr "" @@ -1505,93 +1533,93 @@ msgstr "send %1" msgid "programming error: send created using role %1" msgstr "" -#: session.cc:343 +#: session.cc:344 msgid "Connect to engine" msgstr "Conectar a motor" -#: session.cc:348 +#: session.cc:349 msgid "Session loading complete" msgstr "Carga de sesión completada" -#: session.cc:420 +#: session.cc:421 msgid "Set up LTC" msgstr "" -#: session.cc:422 +#: session.cc:423 msgid "Set up Click" msgstr "" -#: session.cc:424 +#: session.cc:425 msgid "Set up standard connections" msgstr "Configurar las conexiones estándar" -#: session.cc:634 +#: session.cc:635 msgid "could not setup Click I/O" msgstr "no se pudo configurar la E/S del click" -#: session.cc:682 +#: session.cc:683 #, c-format msgid "out %" msgstr "" -#: session.cc:696 +#: session.cc:697 #, c-format msgid "out %+%" msgstr "" -#: session.cc:711 +#: session.cc:712 #, c-format msgid "in %" msgstr "" -#: session.cc:725 +#: session.cc:726 #, c-format msgid "in %+%" msgstr "" -#: session.cc:789 +#: session.cc:790 msgid "cannot connect master output %1 to %2" msgstr "no se puede conectar salida master %1 a %2" -#: session.cc:848 +#: session.cc:849 msgid "monitor" msgstr "" -#: session.cc:893 +#: session.cc:894 msgid "cannot connect control input %1 to %2" msgstr "" -#: session.cc:913 +#: session.cc:914 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "" -#: session.cc:944 +#: session.cc:945 msgid "cannot connect control output %1 to %2" msgstr "" -#: session.cc:1008 +#: session.cc:1009 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "" -#: session.cc:1192 +#: session.cc:1193 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" -#: session.cc:1232 +#: session.cc:1233 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" msgstr "" -#: session.cc:1546 +#: session.cc:1547 msgid "feedback loop setup between %1 and %2" msgstr "" -#: session.cc:1842 +#: session.cc:1843 msgid "Session: could not create new midi track." msgstr "" -#: session.cc:1848 +#: session.cc:1849 msgid "" "No more JACK ports are available. You will need to stop %1 and restart JACK " "with more ports if you need this many tracks." @@ -1599,75 +1627,75 @@ msgstr "" "JACK no dispone de más puertos. Debes salir de %1 y reiniciar JACK con más " "puertos si necesitas tantas pistas." -#: session.cc:2025 session.cc:2028 +#: session.cc:2026 session.cc:2029 msgid "Audio" msgstr "" -#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 +#: session.cc:2053 session.cc:2061 session.cc:2138 session.cc:2146 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "" -#: session.cc:2083 +#: session.cc:2084 msgid "Session: could not create new audio track." msgstr "" -#: session.cc:2115 session.cc:2118 +#: session.cc:2116 session.cc:2119 msgid "Bus" msgstr "" -#: session.cc:2168 +#: session.cc:2169 msgid "Session: could not create new audio route." msgstr "Sesión: No se pudo crear la ruta del nuevo audio" -#: session.cc:2227 session.cc:2237 +#: session.cc:2228 session.cc:2238 msgid "Session: UINT_MAX routes? impossible!" msgstr "" -#: session.cc:2259 +#: session.cc:2260 msgid "Session: cannot create track/bus from template description" msgstr "" -#: session.cc:2285 +#: session.cc:2286 msgid "Session: could not create new route from template" msgstr "Sesión: No se pudo crear la nueva ruta desde plantilla" -#: session.cc:2314 +#: session.cc:2315 msgid "Adding new tracks/busses failed" msgstr "" -#: session.cc:3413 +#: session.cc:3419 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "" -#: session.cc:3533 session.cc:3591 +#: session.cc:3539 session.cc:3597 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "" -#: session.cc:3981 +#: session.cc:3987 msgid "send ID %1 appears to be in use already" msgstr "" -#: session.cc:3993 +#: session.cc:3999 msgid "aux send ID %1 appears to be in use already" msgstr "" -#: session.cc:4005 +#: session.cc:4011 msgid "return ID %1 appears to be in use already" msgstr "" -#: session.cc:4017 +#: session.cc:4023 msgid "insert ID %1 appears to be in use already" msgstr "" -#: session.cc:4144 +#: session.cc:4150 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "" -#: session.cc:4173 +#: session.cc:4179 msgid "too many bounced versions of playlist \"%1\"" msgstr "" -#: session.cc:4183 +#: session.cc:4189 msgid "cannot create new audio file \"%1\" for %2" msgstr "no se puede crear nuevo archivo de audio" @@ -1736,6 +1764,10 @@ msgstr "" msgid "Programming error: illegal event type in process_event (%1)" msgstr "" +#: session_state.cc:140 +msgid "Could not use path %1 (%2)" +msgstr "" + #: session_state.cc:184 msgid "solo cut control (dB)" msgstr "" @@ -1808,6 +1840,10 @@ msgstr "Could not remove pending capture state at path \"%1\" (%2)" msgid "could not rename snapshot %1 to %2 (%3)" msgstr "" +#: session_state.cc:652 +msgid "Could not remove session file at path \"%1\" (%2)" +msgstr "" + #: session_state.cc:669 msgid "" "the %1 audio engine is not connected and state saving would lose all I/O " @@ -1818,6 +1854,10 @@ msgstr "" msgid "state could not be saved to %1" msgstr "" +#: session_state.cc:722 session_state.cc:733 +msgid "Could not remove temporary session file at path \"%1\" (%2)" +msgstr "" + #: session_state.cc:730 msgid "could not rename temporary session file %1 to %2" msgstr "" @@ -1826,6 +1866,10 @@ msgstr "" msgid "%1: session file \"%2\" doesn't exist!" msgstr "" +#: session_state.cc:810 +msgid "Could not understand session file %1" +msgstr "" + #: session_state.cc:819 msgid "Session file %1 is not a session" msgstr "El archivo de sesión %1 no es una sesión" diff --git a/libs/ardour/po/it.po b/libs/ardour/po/it.po index 0c9799a5e3..9eaa00ee95 100644 --- a/libs/ardour/po/it.po +++ b/libs/ardour/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libardour 0.664.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-10-23 19:09+0200\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2003-05-21 12:50+0500\n" "Last-Translator: Filippo Pappalardo \n" "Language-Team: Italian\n" @@ -49,6 +49,14 @@ msgstr "" msgid "%1: could not create region for complete audio file" msgstr "%1: impossibile creare una regione per il file audio completo" +#: audio_diskstream.cc:1571 +msgid "AudioDiskstream: could not create region for captured audio!" +msgstr "" + +#: audio_diskstream.cc:1679 +msgid "programmer error: %1" +msgstr "" + #: audio_diskstream.cc:1905 msgid "AudioDiskstream: channel %1 out of range" msgstr "" @@ -57,6 +65,10 @@ msgstr "" msgid "%1:%2 new capture file not initialized correctly" msgstr "%1:%2 nuovo file di registrazione non è stato avviato correttamente" +#: audio_diskstream.cc:2200 +msgid "%1: cannot restore pending capture source file %2" +msgstr "" + #: audio_diskstream.cc:2222 msgid "%1: incorrect number of pending sources listed - ignoring them all" msgstr "" @@ -108,7 +120,7 @@ msgstr "" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 +#: rb_effect.cc:333 session.cc:2619 session.cc:2652 session.cc:3797 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "errore di programmazione: %1" @@ -177,6 +189,18 @@ msgstr "" msgid "looking for backends in %1\n" msgstr "" +#: audioengine.cc:511 +msgid "AudioEngine: cannot load module \"%1\" (%2)" +msgstr "" + +#: audioengine.cc:517 +msgid "AudioEngine: backend at \"%1\" has no descriptor function." +msgstr "" + +#: audioengine.cc:589 +msgid "Could not create backend for %1: %2" +msgstr "" + #: audioregion.cc:1643 msgid "" "You have requested an operation that requires audio analysis.\n" @@ -192,6 +216,10 @@ msgid "" "this and future transient-detection operations.\n" msgstr "" +#: audiosource.cc:199 +msgid "cannot rename peakfile for %1 from %2 to %3 (%4)" +msgstr "" + #: audiosource.cc:226 msgid "AudioSource: cannot stat peakfile \"%1\"" msgstr "" @@ -225,6 +253,10 @@ msgstr "" msgid "%1: could not write peak file data (%2)" msgstr "" +#: audiosource.cc:924 +msgid "could not truncate peakfile %1 to %2 (error: %3)" +msgstr "" + #: auditioner.cc:87 msgid "no outputs available for auditioner - manual connection required" msgstr "" @@ -245,6 +277,14 @@ msgstr "" msgid "cannot open %2 to load automation data (%3)" msgstr "" +#: automatable.cc:129 +msgid "cannot load automation data from %2" +msgstr "" + +#: automation_list.cc:353 +msgid "automation list: cannot load coordinates from XML, all points ignored" +msgstr "" + #: automation_list.cc:399 msgid "" "automation list: no x-coordinate stored for control point (point ignored)" @@ -320,6 +360,14 @@ msgstr "" msgid "Control surface protocol discovered: \"%1\"\n" msgstr "" +#: control_protocol_manager.cc:282 +msgid "ControlProtocolManager: cannot load module \"%1\" (%2)" +msgstr "" + +#: control_protocol_manager.cc:290 +msgid "ControlProtocolManager: module \"%1\" has no descriptor function." +msgstr "" + #: cycle_timer.cc:38 msgid "CycleTimer::get_mhz(): can't open /proc/cpuinfo" msgstr "CycleTimer::get_mhz(): impossibile accedere a /proc/cpuinfo" @@ -337,7 +385,7 @@ msgstr "impossibile localizzare \"cpu MHz\" in /proc/cpuinfo" msgid "audio" msgstr "" -#: data_type.cc:28 session.cc:1790 session.cc:1793 +#: data_type.cc:28 session.cc:1791 session.cc:1794 msgid "MIDI" msgstr "" @@ -449,7 +497,7 @@ msgstr "" msgid "Rectangular" msgstr "" -#: export_formats.cc:52 session.cc:5008 session.cc:5024 +#: export_formats.cc:52 session.cc:5014 session.cc:5030 msgid "None" msgstr "" @@ -565,10 +613,18 @@ msgid "" msgstr "" "ci sono gia' 1000 file con nomi come %1; tracciamento di versione interrotto" +#: file_source.cc:207 +msgid "cannot rename file source from %1 to %2 (%3)" +msgstr "" + #: file_source.cc:250 file_source.cc:378 msgid "FileSource: search path not set" msgstr "FileSource: percorso di ricerca non specificato" +#: file_source.cc:313 file_source.cc:448 +msgid "Filesource: cannot find required file (%1): while searching %2" +msgstr "" + #: file_source.cc:440 msgid "" "FileSource: \"%1\" is ambigous when searching %2\n" @@ -591,6 +647,10 @@ msgid "" "continue working, but please report this to the developers." msgstr "" +#: file_source.cc:540 +msgid "cannot rename file %1 to %2 (%3)" +msgstr "" + #: filesystem_paths.cc:73 msgid "Cannot create Configuration directory %1 - cannot run" msgstr "" @@ -621,6 +681,10 @@ msgstr "" msgid "filter: error creating new file %1 (%2)" msgstr "" +#: find_session.cc:51 +msgid "Could not resolve path: %1 (%2)" +msgstr "" + #: find_session.cc:63 msgid "cannot check session path %1 (%2)" msgstr "impossibile controllare il percorso %1 (%2)" @@ -689,6 +753,10 @@ msgstr "" msgid "Import: cannot open input sound file \"%1\"" msgstr "Import: impossibile aprire il file audio di input \"%1\"" +#: import.cc:510 +msgid "Import: error opening MIDI file" +msgstr "" + #: import.cc:549 msgid "Loading MIDI file %1" msgstr "" @@ -709,6 +777,10 @@ msgstr "" msgid "%1 - cannot find any track/bus with the ID %2 to connect to" msgstr "" +#: io.cc:208 +msgid "IO: cannot disconnect port %1 from %2" +msgstr "" + #: io.cc:343 io.cc:428 msgid "IO: cannot register input port %1" msgstr "IO: impossibile registrare la porta %1" @@ -784,15 +856,15 @@ msgstr "" msgid "%s out" msgstr "" -#: io.cc:1535 session.cc:685 session.cc:714 +#: io.cc:1535 session.cc:686 session.cc:715 msgid "mono" msgstr "" -#: io.cc:1537 session.cc:698 session.cc:728 +#: io.cc:1537 session.cc:699 session.cc:729 msgid "L" msgstr "" -#: io.cc:1537 session.cc:700 session.cc:730 +#: io.cc:1537 session.cc:701 session.cc:731 msgid "R" msgstr "" @@ -835,6 +907,10 @@ msgstr "" msgid "LADSPA: cannot load module from \"%1\"" msgstr "LADPSA: impossibile caricare il modulo da \"%1\"" +#: ladspa_plugin.cc:827 +msgid "Could not locate HOME. Preset not removed." +msgstr "" + #: ladspa_plugin.cc:864 ladspa_plugin.cc:870 msgid "Could not create %1. Preset not saved. (%2)" msgstr "Impossibile creare %1 . Preset non salvato. (%2)" @@ -855,6 +931,10 @@ msgstr "" msgid "incorrect XML node passed to Location::set_state" msgstr "" +#: location.cc:455 +msgid "XML node for Location has no ID information" +msgstr "" + #: location.cc:459 msgid "XML node for Location has no name information" msgstr "il nodo XML per la Location non ha informazioni sul nome" @@ -879,7 +959,7 @@ msgstr "" msgid "incorrect XML mode passed to Locations::set_state" msgstr "" -#: location.cc:842 session.cc:4510 session_state.cc:1031 +#: location.cc:842 session.cc:4516 session_state.cc:1031 msgid "session" msgstr "" @@ -963,6 +1043,14 @@ msgstr "" msgid "MidiDiskstream \"%1\": cannot flush captured data to disk!" msgstr "" +#: midi_diskstream.cc:955 +msgid "%1: could not create region for complete midi file" +msgstr "" + +#: midi_diskstream.cc:992 +msgid "MidiDiskstream: could not create region for captured midi!" +msgstr "" + #: midi_model.cc:634 msgid "No NoteID found for note property change - ignored" msgstr "" @@ -1117,6 +1205,14 @@ msgstr "" msgid "Panner discovered: \"%1\" in %2" msgstr "" +#: panner_manager.cc:117 +msgid "PannerManager: cannot load module \"%1\" (%2)" +msgstr "" + +#: panner_manager.cc:124 +msgid "PannerManager: module \"%1\" has no descriptor function." +msgstr "" + #: panner_manager.cc:187 msgid "no panner discovered for in/out = %1/%2" msgstr "" @@ -1125,10 +1221,18 @@ msgstr "" msgid "Unknown panner plugin \"%1\" found in pan state - ignored" msgstr "" +#: panner_shell.cc:185 +msgid "panner plugin node has no type information!" +msgstr "" + #: playlist.cc:2070 msgid "region state node has no ID, ignored" msgstr "" +#: playlist.cc:2088 +msgid "Playlist: cannot create region from XML" +msgstr "" + #: playlist_source.cc:99 msgid "No playlist ID in PlaylistSource XML!" msgstr "" @@ -1249,6 +1353,10 @@ msgid "" "ports if you need this many tracks." msgstr "" +#: port_manager.cc:275 +msgid "AudioEngine: cannot register port \"%1\": %2" +msgstr "" + #: port_manager.cc:314 msgid "unable to create port: %1" msgstr "" @@ -1273,6 +1381,10 @@ msgstr "" msgid "Loading system configuration file %1" msgstr "" +#: rc_configuration.cc:92 +msgid "%1: cannot read system configuration file \"%2\"" +msgstr "" + #: rc_configuration.cc:97 msgid "%1: system configuration file \"%2\" not loaded successfully." msgstr "" @@ -1287,6 +1399,10 @@ msgstr "" msgid "Loading user configuration file %1" msgstr "" +#: rc_configuration.cc:120 +msgid "%1: cannot read configuration file \"%2\"" +msgstr "" + #: rc_configuration.cc:125 msgid "%1: user configuration file \"%2\" not loaded successfully." msgstr "" @@ -1299,6 +1415,10 @@ msgstr "" msgid "Config file %1 not saved" msgstr "" +#: recent_sessions.cc:54 +msgid "cannot open recent session file %1 (%2)" +msgstr "" + #: region_factory.cc:67 region_factory.cc:109 region_factory.cc:150 #: region_factory.cc:192 msgid "" @@ -1333,6 +1453,10 @@ msgstr "" msgid "unknown Processor type \"%1\"; ignored" msgstr "" +#: route.cc:1087 +msgid "processor could not be created. Ignored." +msgstr "" + #: route.cc:1962 route.cc:2187 msgid "Bad node sent to Route::set_state() [%1]" msgstr "" @@ -1353,11 +1477,11 @@ msgstr "" msgid "You cannot subgroup MIDI tracks at this time" msgstr "" -#: rb_effect.cc:233 rb_effect.cc:274 +#: rb_effect.cc:234 rb_effect.cc:275 msgid "tempoize: error reading data from %1 at %2 (wanted %3, got %4)" msgstr "" -#: rb_effect.cc:303 rb_effect.cc:325 +#: rb_effect.cc:304 rb_effect.cc:326 msgid "error writing tempo-adjusted data to %1" msgstr "" @@ -1369,140 +1493,172 @@ msgstr "" msgid "send %1" msgstr "" -#: session.cc:343 +#: send.cc:65 +msgid "programming error: send created using role %1" +msgstr "" + +#: session.cc:344 msgid "Connect to engine" msgstr "" -#: session.cc:348 +#: session.cc:349 msgid "Session loading complete" msgstr "" -#: session.cc:420 +#: session.cc:421 msgid "Set up LTC" msgstr "" -#: session.cc:422 +#: session.cc:423 msgid "Set up Click" msgstr "" -#: session.cc:424 +#: session.cc:425 msgid "Set up standard connections" msgstr "" -#: session.cc:634 +#: session.cc:635 msgid "could not setup Click I/O" msgstr "impossibile impostare entrata/uscita del click" -#: session.cc:682 +#: session.cc:683 #, c-format msgid "out %" msgstr "" -#: session.cc:696 +#: session.cc:697 #, c-format msgid "out %+%" msgstr "" -#: session.cc:711 +#: session.cc:712 #, c-format msgid "in %" msgstr "" -#: session.cc:725 +#: session.cc:726 #, c-format msgid "in %+%" msgstr "" -#: session.cc:848 +#: session.cc:790 +msgid "cannot connect master output %1 to %2" +msgstr "" + +#: session.cc:849 msgid "monitor" msgstr "" -#: session.cc:913 +#: session.cc:894 +msgid "cannot connect control input %1 to %2" +msgstr "" + +#: session.cc:914 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "" -#: session.cc:1008 +#: session.cc:945 +msgid "cannot connect control output %1 to %2" +msgstr "" + +#: session.cc:1009 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "impossibile creare l'Auditioner" -#: session.cc:1192 +#: session.cc:1193 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" "Sessione: non si può usare quella location per l'auto punch (inizio <= fine)" -#: session.cc:1232 +#: session.cc:1233 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" msgstr "" -#: session.cc:1546 +#: session.cc:1547 msgid "feedback loop setup between %1 and %2" msgstr "" -#: session.cc:1848 +#: session.cc:1843 +msgid "Session: could not create new midi track." +msgstr "" + +#: session.cc:1849 msgid "" "No more JACK ports are available. You will need to stop %1 and restart JACK " "with more ports if you need this many tracks." msgstr "" -#: session.cc:2025 session.cc:2028 +#: session.cc:2026 session.cc:2029 msgid "Audio" msgstr "" -#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 +#: session.cc:2053 session.cc:2061 session.cc:2138 session.cc:2146 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "" -#: session.cc:2083 +#: session.cc:2084 msgid "Session: could not create new audio track." msgstr "Sessione: impossibile creare una nuova traccia audio" -#: session.cc:2115 session.cc:2118 +#: session.cc:2116 session.cc:2119 msgid "Bus" msgstr "" -#: session.cc:2227 session.cc:2237 +#: session.cc:2169 +msgid "Session: could not create new audio route." +msgstr "" + +#: session.cc:2228 session.cc:2238 msgid "Session: UINT_MAX routes? impossible!" msgstr "" -#: session.cc:2314 +#: session.cc:2260 +msgid "Session: cannot create track/bus from template description" +msgstr "" + +#: session.cc:2286 +msgid "Session: could not create new route from template" +msgstr "" + +#: session.cc:2315 msgid "Adding new tracks/busses failed" msgstr "" -#: session.cc:3413 +#: session.cc:3419 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "" -#: session.cc:3533 session.cc:3591 +#: session.cc:3539 session.cc:3597 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "Ci sono già %1 registrazioni per %2, che io considero troppe" -#: session.cc:3981 +#: session.cc:3987 msgid "send ID %1 appears to be in use already" msgstr "" -#: session.cc:3993 +#: session.cc:3999 msgid "aux send ID %1 appears to be in use already" msgstr "" -#: session.cc:4005 +#: session.cc:4011 msgid "return ID %1 appears to be in use already" msgstr "" -#: session.cc:4017 +#: session.cc:4023 msgid "insert ID %1 appears to be in use already" msgstr "" -#: session.cc:4144 +#: session.cc:4150 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "" -#: session.cc:4173 +#: session.cc:4179 msgid "too many bounced versions of playlist \"%1\"" msgstr "" -#: session.cc:4183 +#: session.cc:4189 msgid "cannot create new audio file \"%1\" for %2" msgstr "impossibile creare un nuovo file audio \"%1\" per %2" @@ -1529,6 +1685,10 @@ msgid "" "= %2" msgstr "" +#: session_directory.cc:59 +msgid "Cannot create Session directory at path %1 Error: %2" +msgstr "" + #: session_directory.cc:76 msgid "Session subdirectory does not exist at path %1" msgstr "" @@ -1567,6 +1727,10 @@ msgstr "" msgid "Programming error: illegal event type in process_event (%1)" msgstr "" +#: session_state.cc:140 +msgid "Could not use path %1 (%2)" +msgstr "" + #: session_state.cc:184 msgid "solo cut control (dB)" msgstr "" @@ -1583,11 +1747,43 @@ msgstr "" msgid "Reset Remote Controls" msgstr "" +#: session_state.cc:417 +msgid "Session: cannot create session peakfile folder \"%1\" (%2)" +msgstr "" + #: session_state.cc:424 msgid "Session: cannot create session sounds dir \"%1\" (%2)" msgstr "" "Sessione: impossibile creare la cartella sounds per la sessione \"%1\" (%2)" +#: session_state.cc:431 +msgid "Session: cannot create session midi dir \"%1\" (%2)" +msgstr "" + +#: session_state.cc:438 +msgid "Session: cannot create session dead sounds folder \"%1\" (%2)" +msgstr "" + +#: session_state.cc:445 +msgid "Session: cannot create session export folder \"%1\" (%2)" +msgstr "" + +#: session_state.cc:452 +msgid "Session: cannot create session analysis folder \"%1\" (%2)" +msgstr "" + +#: session_state.cc:459 +msgid "Session: cannot create session plugins folder \"%1\" (%2)" +msgstr "" + +#: session_state.cc:466 +msgid "Session: cannot create session externals folder \"%1\" (%2)" +msgstr "" + +#: session_state.cc:480 +msgid "Session: cannot create session folder \"%1\" (%2)" +msgstr "" + #: session_state.cc:514 msgid "Could not open %1 for writing session template" msgstr "" @@ -1604,6 +1800,14 @@ msgstr "" msgid "Could not remove pending capture state at path \"%1\" (%2)" msgstr "" +#: session_state.cc:624 +msgid "could not rename snapshot %1 to %2 (%3)" +msgstr "" + +#: session_state.cc:652 +msgid "Could not remove session file at path \"%1\" (%2)" +msgstr "" + #: session_state.cc:669 msgid "" "the %1 audio engine is not connected and state saving would lose all I/O " @@ -1618,6 +1822,10 @@ msgstr "" msgid "Could not remove temporary session file at path \"%1\" (%2)" msgstr "" +#: session_state.cc:730 +msgid "could not rename temporary session file %1 to %2" +msgstr "" + #: session_state.cc:798 msgid "%1: session file \"%2\" doesn't exist!" msgstr "" @@ -1626,6 +1834,10 @@ msgstr "" msgid "Could not understand session file %1" msgstr "" +#: session_state.cc:819 +msgid "Session file %1 is not a session" +msgstr "" + #: session_state.cc:1125 msgid "programming error: Session: incorrect XML node sent to set_state()" msgstr "" @@ -1634,6 +1846,10 @@ msgstr "" msgid "Session: XML state has no options section" msgstr "Sessione: il file di stato XML non ha alcuna sezione option" +#: session_state.cc:1184 +msgid "Session: XML state has no metadata section" +msgstr "" + #: session_state.cc:1195 msgid "Session: XML state has no sources section" msgstr "Sessione: il file di stato XML non ha alcuna sezione sources" @@ -1654,6 +1870,10 @@ msgstr "Sessione: il file di stato XML non ha alcuna sezione Regions" msgid "Session: XML state has no playlists section" msgstr "Sessione: il file di stato XML non ha alcuna sezione playlist" +#: session_state.cc:1262 +msgid "Session: XML state has no bundles section" +msgstr "" + #: session_state.cc:1274 msgid "Session: XML state has no diskstreams section" msgstr "Sessione: il file di stato XML non ha alcuna sezione diskstream" @@ -1662,6 +1882,10 @@ msgstr "Sessione: il file di stato XML non ha alcuna sezione diskstream" msgid "Session: XML state has no routes section" msgstr "Sessione: il file di stato XML non ha alcuna sezione routes" +#: session_state.cc:1294 +msgid "Session: XML state has no route groups section" +msgstr "" + #: session_state.cc:1303 msgid "Session: XML state has no edit groups section" msgstr "Sessione: il file di stato XML non ha alcuna sezione edit groups" @@ -1670,6 +1894,10 @@ msgstr "Sessione: il file di stato XML non ha alcuna sezione edit groups" msgid "Session: XML state has no mix groups section" msgstr "Sessione: il file di stato XML non ha alcuna sezione mix groups" +#: session_state.cc:1318 +msgid "Session: XML state has no click section" +msgstr "" + #: session_state.cc:1360 msgid "Session: cannot create Route from XML description." msgstr "Sessione: impossibile creare Route dalla descrizione XML" @@ -1686,6 +1914,10 @@ msgstr "" msgid "Session: cannot create Region from XML description." msgstr "Sessione: impossibile creare regione dalla descrizione XML" +#: session_state.cc:1520 +msgid "Can not load state for region '%1'" +msgstr "" + #: session_state.cc:1556 msgid "Regions in compound description not found (ID's %1 and %2): ignored" msgstr "" @@ -1694,6 +1926,10 @@ msgstr "" msgid "Nested source has no ID info in session file! (ignored)" msgstr "" +#: session_state.cc:1596 +msgid "Cannot reconstruct nested source for region %1" +msgstr "" + #: session_state.cc:1658 msgid "Session: XMLNode describing a AudioRegion is incomplete (no source)" msgstr "" @@ -1747,18 +1983,42 @@ msgstr "" msgid "Found a sound file that cannot be used by %1. Talk to the progammers." msgstr "" +#: session_state.cc:1949 +msgid "Could not create templates directory \"%1\" (%2)" +msgstr "" + #: session_state.cc:1962 msgid "Template \"%1\" already exists - new version not created" msgstr "Il modello \"%1\" esiste già - non è stata creata una nuova versione" +#: session_state.cc:1968 +msgid "Could not create directory for Session template\"%1\" (%2)" +msgstr "" + #: session_state.cc:1978 msgid "template not saved" msgstr "" +#: session_state.cc:1988 +msgid "Could not create directory for Session template plugin state\"%1\" (%2)" +msgstr "" + #: session_state.cc:2183 msgid "Unknown node \"%1\" found in Bundles list from session file" msgstr "" +#: session_state.cc:2725 session_state.cc:2731 +msgid "Cannot expand path %1 (%2)" +msgstr "" + +#: session_state.cc:2784 +msgid "Session: cannot create dead file folder \"%1\" (%2)" +msgstr "" + +#: session_state.cc:2823 +msgid "cannot rename unused file source from %1 to %2 (%3)" +msgstr "" + #: session_state.cc:2841 msgid "cannot remove peakfile %1 for %2 (%3)" msgstr "impossibile eliminare il peakfile %1 per %2 (%3)" @@ -1803,6 +2063,10 @@ msgstr "" msgid "Couldn't figure out how to make a Command out of a %1 XMLNode." msgstr "" +#: session_state.cc:3502 +msgid "Session: unknown diskstream type in XML" +msgstr "" + #: session_state.cc:3507 msgid "Session: could not load diskstream via XML state" msgstr "" @@ -1843,6 +2107,10 @@ msgstr "" msgid "Skipping event with unordered time %1" msgstr "" +#: smf_source.cc:410 +msgid "cannot open MIDI file %1 for write" +msgstr "" + #: sndfile_helpers.cc:32 msgid "WAV" msgstr "" @@ -1927,6 +2195,10 @@ msgstr "" msgid "Big-endian (PowerPC)" msgstr "" +#: sndfilesource.cc:201 +msgid "SndFileSource: cannot open file \"%1\" for %2 (%3)" +msgstr "" + #: sndfilesource.cc:209 msgid "" "SndFileSource: file only contains %1 channels; %2 is invalid as a channel " @@ -1958,6 +2230,10 @@ msgstr "" msgid "attempt to write a non-writable audio file source (%1)" msgstr "" +#: sndfilesource.cc:396 utils.cc:510 utils.cc:534 utils.cc:548 utils.cc:567 +msgid "programming error: %1 %2" +msgstr "" + #: sndfilesource.cc:523 msgid "attempt to flush a non-writable audio file source (%1)" msgstr "" @@ -1987,6 +2263,10 @@ msgstr "" msgid "SndFileSource: \"%1\" bad read retval: %2 of %5 (%3: %4)" msgstr "" +#: sndfilesource.cc:740 sndfilesource.cc:790 sndfilesource.cc:797 +msgid "SndFileSource: \"%1\" bad write (%2)" +msgstr "" + #: sndfilesource.cc:820 msgid "" "Filesource: start time is already set for existing file (%1): Cannot change " @@ -2131,15 +2411,27 @@ msgid "" "Are you sure you want to do this?" msgstr "" +#: user_bundle.cc:47 +msgid "Node for Bundle has no \"name\" property" +msgstr "" + #: user_bundle.cc:59 user_bundle.cc:80 #, c-format msgid "Unknown node \"%s\" in Bundle" msgstr "" +#: user_bundle.cc:64 +msgid "Node for Channel has no \"name\" property" +msgstr "" + #: user_bundle.cc:70 msgid "Node for Channel has no \"type\" property" msgstr "" +#: user_bundle.cc:85 +msgid "Node for Port has no \"name\" property" +msgstr "" + #: utils.cc:358 utils.cc:382 msgid "Splice" msgstr "" @@ -2152,6 +2444,10 @@ msgstr "" msgid "Lock" msgstr "" +#: utils.cc:365 +msgid "programming error: unknown edit mode string \"%1\"" +msgstr "" + #: utils.cc:389 utils.cc:421 msgid "MIDI Timecode" msgstr "" @@ -2183,3 +2479,7 @@ msgstr "" #: utils.cc:602 msgid "programming error: unknown native header format: %1" msgstr "" + +#: utils.cc:617 +msgid "cannot open directory %1 (%2)" +msgstr "" diff --git a/libs/ardour/po/nn.po b/libs/ardour/po/nn.po index 41cade21bc..2356a737f4 100644 --- a/libs/ardour/po/nn.po +++ b/libs/ardour/po/nn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libardour\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-10-23 19:09+0200\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2011-09-13 22:43+0100\n" "Last-Translator: Eivind ØdegÃ¥rd \n" "Language-Team: Nynorsk \n" @@ -126,7 +126,7 @@ msgstr "Lydspelelister (ubrukte)" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 +#: rb_effect.cc:333 session.cc:2619 session.cc:2652 session.cc:3797 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "Programmeringsfeil: %1" @@ -195,6 +195,22 @@ msgstr "greier ikkje lasta VAMP-innstikket \"%1\"" msgid "VAMP Plugin \"%1\" could not be loaded" msgstr "VAMP-innstikket \"%1\" vart ikkje lasta" +#: audioengine.cc:488 +msgid "looking for backends in %1\n" +msgstr "" + +#: audioengine.cc:511 +msgid "AudioEngine: cannot load module \"%1\" (%2)" +msgstr "" + +#: audioengine.cc:517 +msgid "AudioEngine: backend at \"%1\" has no descriptor function." +msgstr "" + +#: audioengine.cc:589 +msgid "Could not create backend for %1: %2" +msgstr "" + #: audioregion.cc:1643 msgid "" "You have requested an operation that requires audio analysis.\n" @@ -259,6 +275,10 @@ msgstr "Lydkjelde: kan ikkje opna toppstig (c) \"%1\" (%2)" msgid "%1: could not write peak file data (%2)" msgstr "%1: greidde ikkje skriva toppfildata (%2)" +#: audiosource.cc:924 +msgid "could not truncate peakfile %1 to %2 (error: %3)" +msgstr "" + #: auditioner.cc:87 msgid "no outputs available for auditioner - manual connection required" msgstr "ingen utgangar for lyttinga - du mÃ¥ kopla til manuelt" @@ -355,6 +375,10 @@ msgstr "kontrollprotokollnamnet \"%1\" greidde ikkje starta opp" msgid "Instantiating mandatory control protocol %1" msgstr "Lagar obligatorisk kontrollprotokolløkt %1" +#: control_protocol_manager.cc:222 +msgid "looking for control protocols in %1\n" +msgstr "" + #: control_protocol_manager.cc:247 msgid "Control protocol %1 not usable" msgstr "Kontrollprotokollen %1 er ikkje brukande" @@ -388,7 +412,7 @@ msgstr "finn ikkje prosessor-MHz i /proc/cpuinfo" msgid "audio" msgstr "lyd" -#: data_type.cc:28 session.cc:1790 session.cc:1793 +#: data_type.cc:28 session.cc:1791 session.cc:1794 msgid "MIDI" msgstr "MIDI" @@ -501,7 +525,7 @@ msgstr "Trekant" msgid "Rectangular" msgstr "Firkant" -#: export_formats.cc:52 session.cc:5008 session.cc:5024 +#: export_formats.cc:52 session.cc:5014 session.cc:5030 msgid "None" msgstr "Ingen" @@ -557,10 +581,30 @@ msgstr "" msgid "Searching for export formats in %1" msgstr "Leitar etter eksportformat i %1" +#: export_profile_manager.cc:99 +msgid "Unable to create export format directory %1: %2" +msgstr "" + +#: export_profile_manager.cc:257 +msgid "Unable to remove export preset %1: %2" +msgstr "" + #: export_profile_manager.cc:347 msgid "Selection" msgstr "Val" +#: export_profile_manager.cc:600 +msgid "Unable to rename export format %1 to %2: %3" +msgstr "" + +#: export_profile_manager.cc:632 +msgid "Unable to remove export profile %1: %2" +msgstr "" + +#: export_profile_manager.cc:649 +msgid "empty format" +msgstr "" + #: export_profile_manager.cc:818 msgid "No timespan has been selected!" msgstr "Du har ikkje valt noko tidsomfang!" @@ -638,6 +682,10 @@ msgstr "" msgid "cannot rename file %1 to %2 (%3)" msgstr "kan ikkje døypa om %1 til %2 (%3)" +#: filesystem_paths.cc:73 +msgid "Cannot create Configuration directory %1 - cannot run" +msgstr "" + #: filesystem_paths.cc:78 msgid "" "Configuration directory %1 already exists and is not a directory/folder - " @@ -749,6 +797,10 @@ msgstr "Lastar MIDI-fila %1" msgid "Failed to remove some files after failed/cancelled import operation" msgstr "" +#: instrument_info.cc:40 instrument_info.cc:61 +msgid "Unknown" +msgstr "" + #: instrument_info.cc:230 msgid "preset %1 (bank %2)" msgstr "" @@ -836,15 +888,15 @@ msgstr " %s inn" msgid "%s out" msgstr "%s ut" -#: io.cc:1535 session.cc:685 session.cc:714 +#: io.cc:1535 session.cc:686 session.cc:715 msgid "mono" msgstr "mono" -#: io.cc:1537 session.cc:698 session.cc:728 +#: io.cc:1537 session.cc:699 session.cc:729 msgid "L" msgstr "V" -#: io.cc:1537 session.cc:700 session.cc:730 +#: io.cc:1537 session.cc:701 session.cc:731 msgid "R" msgstr "H" @@ -940,7 +992,7 @@ msgstr "Stader: forsøk pÃ¥ Ã¥ bruka ukjend stad som vald stad" msgid "incorrect XML mode passed to Locations::set_state" msgstr "feil XML-modus send til Locations::set_state" -#: location.cc:842 session.cc:4510 session_state.cc:1031 +#: location.cc:842 session.cc:4516 session_state.cc:1031 msgid "session" msgstr "økt" @@ -1014,6 +1066,10 @@ msgid "" "%1: I/O configuration change %4 requested to use %2, but channel setup is %3" msgstr "%1: I/U-oppsettsendringa %4 ba om Ã¥ bruka %2, men kanaloppsettet er %3" +#: midi_diskstream.cc:219 +msgid "MidiDiskstream: Playlist \"%1\" isn't a midi playlist" +msgstr "" + #: midi_diskstream.cc:270 msgid "MidiDiskstream %1: there is no existing playlist to make a copy of!" msgstr "MIDI-diskstraum %1: det finst inga speleliste Ã¥ kopiera!" @@ -1149,6 +1205,10 @@ msgstr "set inn fil" msgid "insert region" msgstr "set inn bolk" +#: operations.cc:29 +msgid "drag region brush" +msgstr "" + #: operations.cc:30 msgid "region drag" msgstr "bolkdraging" @@ -1185,6 +1245,10 @@ msgstr "Panoreringa fekk XML-data for %1 - ignorert" msgid "looking for panners in %1" msgstr "ser etter panoreringar i %1" +#: panner_manager.cc:100 +msgid "Panner discovered: \"%1\" in %2" +msgstr "" + #: panner_manager.cc:117 msgid "PannerManager: cannot load module \"%1\" (%2)" msgstr "Panoreringsstyring: kan ikkje lasta modulen \"%1\" (%2)" @@ -1376,6 +1440,12 @@ msgstr "%1: greier ikkje lesa systemoppsettfila \"%2\"" msgid "%1: system configuration file \"%2\" not loaded successfully." msgstr "%1: greidde ikkje lasta systemoppsettfila \"%2\" skikkeleg." +#: rc_configuration.cc:101 +msgid "" +"Your system %1 configuration file is empty. This probably means that there " +"was an error installing %1" +msgstr "" + #: rc_configuration.cc:116 msgid "Loading user configuration file %1" msgstr "Lastar brukaroppsettfila %1" @@ -1460,12 +1530,12 @@ msgstr "" msgid "You cannot subgroup MIDI tracks at this time" msgstr "Du kan ikkje laga undergrupper for MIDI-spor no" -#: rb_effect.cc:233 rb_effect.cc:274 +#: rb_effect.cc:234 rb_effect.cc:275 msgid "tempoize: error reading data from %1 at %2 (wanted %3, got %4)" msgstr "" "lag tempo: greidde ikkje lesa data frÃ¥ %1 ved %2 (ville ha %3, fekk %4)" -#: rb_effect.cc:303 rb_effect.cc:325 +#: rb_effect.cc:304 rb_effect.cc:326 msgid "error writing tempo-adjusted data to %1" msgstr "greidde ikkje skriva tempo-justert fil til %1" @@ -1477,165 +1547,173 @@ msgstr "" msgid "send %1" msgstr "send %1" -#: session.cc:343 +#: send.cc:65 +msgid "programming error: send created using role %1" +msgstr "" + +#: session.cc:344 msgid "Connect to engine" msgstr "Kople til maskin" -#: session.cc:348 +#: session.cc:349 msgid "Session loading complete" msgstr "Ferdig Ã¥ lasta økta." -#: session.cc:420 +#: session.cc:421 msgid "Set up LTC" msgstr "" -#: session.cc:422 +#: session.cc:423 msgid "Set up Click" msgstr "" -#: session.cc:424 +#: session.cc:425 msgid "Set up standard connections" msgstr "Set opp standartilkoplingar" -#: session.cc:634 +#: session.cc:635 msgid "could not setup Click I/O" msgstr "greidde ikkje setja opp klikk-I/U" -#: session.cc:682 +#: session.cc:683 #, c-format msgid "out %" msgstr "ut %" -#: session.cc:696 +#: session.cc:697 #, c-format msgid "out %+%" msgstr "ut %+%" -#: session.cc:711 +#: session.cc:712 #, c-format msgid "in %" msgstr "inn %" -#: session.cc:725 +#: session.cc:726 #, c-format msgid "in %+%" msgstr "inn %+%" -#: session.cc:789 +#: session.cc:790 msgid "cannot connect master output %1 to %2" msgstr "greier ikkje kopla til hovudutgangane %1 til %2" -#: session.cc:848 +#: session.cc:849 msgid "monitor" msgstr "lytting" -#: session.cc:893 +#: session.cc:894 msgid "cannot connect control input %1 to %2" msgstr "greier ikkje kopla til kontrollinngangane %1 til %2" -#: session.cc:913 +#: session.cc:914 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "Greidde ikkje finna føretrekt I/U for lyttebussen (%1)" -#: session.cc:944 +#: session.cc:945 msgid "cannot connect control output %1 to %2" msgstr "greier ikkje kopla til kontrollutgangane %1 til %2" -#: session.cc:1008 +#: session.cc:1009 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "greier ikkje laga Lytting: det er ikkje rÃ¥d Ã¥ lytta pÃ¥ nokon bolkar." -#: session.cc:1192 +#: session.cc:1193 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "Økt: du kan ikkje bruka denne staden for autoinnslag (start<=slutt)" -#: session.cc:1232 +#: session.cc:1233 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" msgstr "" -#: session.cc:1546 +#: session.cc:1547 msgid "feedback loop setup between %1 and %2" msgstr "rundgang-lykkjeoppsett mellom %1 og %2" -#: session.cc:1842 +#: session.cc:1843 msgid "Session: could not create new midi track." msgstr "Økt: greidde ikkje laga nytt midispor." -#: session.cc:1848 +#: session.cc:1849 msgid "" "No more JACK ports are available. You will need to stop %1 and restart JACK " "with more ports if you need this many tracks." msgstr "" -#: session.cc:2025 session.cc:2028 +#: session.cc:2026 session.cc:2029 msgid "Audio" msgstr "Lyd" -#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 +#: session.cc:2053 session.cc:2061 session.cc:2138 session.cc:2146 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "" "greier ikkje stilla inn %1 inn/%2 ut-innstillingane for det nye lydsporet" -#: session.cc:2083 +#: session.cc:2084 msgid "Session: could not create new audio track." msgstr "Økt: greidde ikkje laga nytt lydspor." -#: session.cc:2115 session.cc:2118 +#: session.cc:2116 session.cc:2119 msgid "Bus" msgstr "Buss" -#: session.cc:2168 +#: session.cc:2169 msgid "Session: could not create new audio route." msgstr "Økt: greidde ikkje laga ny lydrute." -#: session.cc:2227 session.cc:2237 +#: session.cc:2228 session.cc:2238 msgid "Session: UINT_MAX routes? impossible!" msgstr "Økt: UINT_MAX-ruter? GÃ¥r ikkje an!" -#: session.cc:2259 +#: session.cc:2260 msgid "Session: cannot create track/bus from template description" msgstr "Økt: greier ikkje laga spor/buss frÃ¥ malskildringa" -#: session.cc:2285 +#: session.cc:2286 msgid "Session: could not create new route from template" msgstr "Økt: greidde ikkje laga ny lydrute frÃ¥ malen" -#: session.cc:2314 +#: session.cc:2315 msgid "Adding new tracks/busses failed" msgstr "" -#: session.cc:3413 +#: session.cc:3419 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "" "ALVORLEG FEIL! Greidde ikkje finna ei høveleg utgÃ¥ve av %1 for Ã¥ døypa om" -#: session.cc:3533 session.cc:3591 +#: session.cc:3539 session.cc:3597 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "Det er alt %1 opptak for %2, og eg synest det er for mange." -#: session.cc:3981 +#: session.cc:3987 msgid "send ID %1 appears to be in use already" msgstr "send-IDen %1 ser ut til Ã¥ vera i bruk frÃ¥ før" -#: session.cc:4005 +#: session.cc:3999 +msgid "aux send ID %1 appears to be in use already" +msgstr "" + +#: session.cc:4011 msgid "return ID %1 appears to be in use already" msgstr "retur-IDen %1 ser ut til Ã¥ vera i bruk frÃ¥ før" -#: session.cc:4017 +#: session.cc:4023 msgid "insert ID %1 appears to be in use already" msgstr "send-IDen %2 ser ut til Ã¥ vera i bruk frÃ¥ før" -#: session.cc:4144 +#: session.cc:4150 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "Kan ikkje skriva eit omrÃ¥de der slutten <= starten (td. %1 <= %2)" -#: session.cc:4173 +#: session.cc:4179 msgid "too many bounced versions of playlist \"%1\"" msgstr "for mange samanmiksa versjonar av spelelista \"%1\"" -#: session.cc:4183 +#: session.cc:4189 msgid "cannot create new audio file \"%1\" for %2" msgstr "greier ikkje laga ny lydfil \"%1\" for %2" @@ -1708,6 +1786,10 @@ msgstr "Økt: feil pÃ¥ ingen rull for %1" msgid "Programming error: illegal event type in process_event (%1)" msgstr "Programmeringsfeil: ulovleg handlingstype i process-event (%1)" +#: session_state.cc:140 +msgid "Could not use path %1 (%2)" +msgstr "" + #: session_state.cc:184 msgid "solo cut control (dB)" msgstr "solokutt-kontroll (dB)" @@ -1752,6 +1834,10 @@ msgstr "Økt: greidde ikkje laga mappa \"%1\" for øktanalyse (%2)" msgid "Session: cannot create session plugins folder \"%1\" (%2)" msgstr "Økt: greier ikkje laga utvidingmappa \"%1\" for økta (%2)" +#: session_state.cc:466 +msgid "Session: cannot create session externals folder \"%1\" (%2)" +msgstr "" + #: session_state.cc:480 msgid "Session: cannot create session folder \"%1\" (%2)" msgstr "Økt: greidde ikkje laga øktmappa \"%1\" (%2)" @@ -1760,14 +1846,26 @@ msgstr "Økt: greidde ikkje laga øktmappa \"%1\" (%2)" msgid "Could not open %1 for writing session template" msgstr "" +#: session_state.cc:520 +msgid "Could not open session template %1 for reading" +msgstr "" + #: session_state.cc:539 msgid "master" msgstr "master" +#: session_state.cc:600 +msgid "Could not remove pending capture state at path \"%1\" (%2)" +msgstr "" + #: session_state.cc:624 msgid "could not rename snapshot %1 to %2 (%3)" msgstr "greidde ikkje døypa om snøggbiletet %1 til %2 (%3)" +#: session_state.cc:652 +msgid "Could not remove session file at path \"%1\" (%2)" +msgstr "" + #: session_state.cc:669 msgid "" "the %1 audio engine is not connected and state saving would lose all I/O " @@ -1780,6 +1878,10 @@ msgstr "" msgid "state could not be saved to %1" msgstr "greidde ikkje lagra tilstanden til %1" +#: session_state.cc:722 session_state.cc:733 +msgid "Could not remove temporary session file at path \"%1\" (%2)" +msgstr "" + #: session_state.cc:730 msgid "could not rename temporary session file %1 to %2" msgstr "greidde ikkje døypa om mellombels øktfil %1 til %2" @@ -1788,6 +1890,10 @@ msgstr "greidde ikkje døypa om mellombels øktfil %1 til %2" msgid "%1: session file \"%2\" doesn't exist!" msgstr "" +#: session_state.cc:810 +msgid "Could not understand session file %1" +msgstr "" + #: session_state.cc:819 msgid "Session file %1 is not a session" msgstr "Øktfila %1 er ikkje ei økt" @@ -1877,6 +1983,10 @@ msgstr "Greier ikkje laga status for bolken '%1'" msgid "Regions in compound description not found (ID's %1 and %2): ignored" msgstr "Fann ikkje bolkar i samansetjingsstatus (IDar %1 og %2): ignorert" +#: session_state.cc:1584 +msgid "Nested source has no ID info in session file! (ignored)" +msgstr "" + #: session_state.cc:1596 msgid "Cannot reconstruct nested source for region %1" msgstr "Greier ikkje rekonstruera nøsta kjelde for bolken %1" @@ -1945,14 +2055,30 @@ msgstr "Det manglar ei lydfil. Ho vil bli erstatta med stille." msgid "Found a sound file that cannot be used by %1. Talk to the progammers." msgstr "Fann ei lydfil som %1 ikkje kan bruka. Prat med utviklarane." +#: session_state.cc:1949 +msgid "Could not create templates directory \"%1\" (%2)" +msgstr "" + #: session_state.cc:1962 msgid "Template \"%1\" already exists - new version not created" msgstr "Malen \"%1\" finst alt - laga ingen ny versjon" +#: session_state.cc:1968 +msgid "Could not create directory for Session template\"%1\" (%2)" +msgstr "" + #: session_state.cc:1978 msgid "template not saved" msgstr "malen vart ikkje lagra" +#: session_state.cc:1988 +msgid "Could not create directory for Session template plugin state\"%1\" (%2)" +msgstr "" + +#: session_state.cc:2183 +msgid "Unknown node \"%1\" found in Bundles list from session file" +msgstr "" + #: session_state.cc:2725 session_state.cc:2731 msgid "Cannot expand path %1 (%2)" msgstr "Greier ikkje utvida stigen %1 (%2)" @@ -1979,6 +2105,10 @@ msgstr "" msgid "history could not be saved to %1" msgstr "greidde ikkje lagra historia til %1" +#: session_state.cc:3159 +msgid "Could not remove history file at path \"%1\" (%2)" +msgstr "" + #: session_state.cc:3163 msgid "could not restore history file from backup %1 (%2)" msgstr "greidde ikkje henta fram att historiefila frÃ¥ tryggingskopien %1 (%2)" @@ -2170,6 +2300,11 @@ msgstr "greidde ikkje tildela fila %1 for Ã¥ lesa" msgid "SndFileSource: could not seek to frame %1 within %2 (%3)" msgstr "Lydfilkjelde: greier ikkje leita fram til ramma %1 innan %2 (%3)" +#: sndfilesource.cc:347 +msgid "" +"SndFileSource: @ %1 could not read %2 within %3 (%4) (len = %5, ret was %6)" +msgstr "" + #: sndfilesource.cc:391 sndfilesource.cc:420 msgid "attempt to write a non-writable audio file source (%1)" msgstr "prøvde Ã¥ skriva til ei ikkje-skrivbar lydkjeldefil (%1)" @@ -2200,6 +2335,10 @@ msgstr "" msgid "attempt to set BWF info for an un-opened audio file source (%1)" msgstr "prøvde Ã¥ laga BWF-info for ei uopna lydkjeldefil (%1)" +#: sndfilesource.cc:614 +msgid "%1: cannot seek to %2 (libsndfile error: %3)" +msgstr "" + #: sndfilesource.cc:727 msgid "SndFileSource: \"%1\" bad read retval: %2 of %5 (%3: %4)" msgstr "SndFileSource: \"%1\" feillesen returverdi: %2 av %5 (%3: %4)" @@ -2259,6 +2398,10 @@ msgstr "TempoSection-XML-punktet har ein ulovleg \"note-type\"-verdi" msgid "TempoSection XML node has no \"movable\" property" msgstr "TempoSection-XML-punktet har ingen \"flyttbar\"-eigenskap" +#: tempo.cc:124 +msgid "TempoSection XML node has an illegal \"bar-offset\" value" +msgstr "" + #: tempo.cc:201 msgid "MeterSection XML node has no \"start\" property" msgstr "MeterSection-XML-punktet har ingen \"start\"-eigenskap" @@ -2267,6 +2410,18 @@ msgstr "MeterSection-XML-punktet har ingen \"start\"-eigenskap" msgid "MeterSection XML node has an illegal \"start\" value" msgstr "MeterSection-XML-punktet har ein ulovleg \"start\"-verdi" +#: tempo.cc:219 +msgid "" +"MeterSection XML node has no \"beats-per-bar\" or \"divisions-per-bar\" " +"property" +msgstr "" + +#: tempo.cc:225 +msgid "" +"MeterSection XML node has an illegal \"beats-per-bar\" or \"divisions-per-bar" +"\" value" +msgstr "" + #: tempo.cc:230 msgid "MeterSection XML node has no \"note-type\" property" msgstr "MeterSection-XML-punktet har ingen \"notetype\"-eigenskap" @@ -2403,6 +2558,14 @@ msgstr "JACK" msgid "programming error: unknown sync source string \"%1\"" msgstr "programmeringsfeil: ukjend synkkjeldestreng \"%1\"" +#: utils.cc:426 +msgid "M-Clock" +msgstr "" + +#: utils.cc:432 +msgid "LTC" +msgstr "" + #: utils.cc:602 msgid "programming error: unknown native header format: %1" msgstr "programmeringsfeil: ukjent opphavleg hovudformat: \"%1\"" diff --git a/libs/ardour/po/pl.po b/libs/ardour/po/pl.po index 86b04669da..05dd5c642a 100644 --- a/libs/ardour/po/pl.po +++ b/libs/ardour/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libardour3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-10-23 19:09+0200\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2008-04-10 10:51+0100\n" "Last-Translator: Piotr Zaryk \n" "Language-Team: Polish \n" @@ -120,7 +120,7 @@ msgstr "" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 +#: rb_effect.cc:333 session.cc:2619 session.cc:2652 session.cc:3797 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "" @@ -380,7 +380,7 @@ msgstr "nie można zlokalizować taktowania CPU w /proc/cpuinfo" msgid "audio" msgstr "" -#: data_type.cc:28 session.cc:1790 session.cc:1793 +#: data_type.cc:28 session.cc:1791 session.cc:1794 msgid "MIDI" msgstr "" @@ -492,7 +492,7 @@ msgstr "" msgid "Rectangular" msgstr "" -#: export_formats.cc:52 session.cc:5008 session.cc:5024 +#: export_formats.cc:52 session.cc:5014 session.cc:5030 msgid "None" msgstr "" @@ -639,6 +639,10 @@ msgid "" "continue working, but please report this to the developers." msgstr "" +#: file_source.cc:540 +msgid "cannot rename file %1 to %2 (%3)" +msgstr "" + #: filesystem_paths.cc:73 msgid "Cannot create Configuration directory %1 - cannot run" msgstr "" @@ -844,15 +848,15 @@ msgstr "" msgid "%s out" msgstr "" -#: io.cc:1535 session.cc:685 session.cc:714 +#: io.cc:1535 session.cc:686 session.cc:715 msgid "mono" msgstr "" -#: io.cc:1537 session.cc:698 session.cc:728 +#: io.cc:1537 session.cc:699 session.cc:729 msgid "L" msgstr "" -#: io.cc:1537 session.cc:700 session.cc:730 +#: io.cc:1537 session.cc:701 session.cc:731 msgid "R" msgstr "" @@ -947,7 +951,7 @@ msgstr "" msgid "incorrect XML mode passed to Locations::set_state" msgstr "" -#: location.cc:842 session.cc:4510 session_state.cc:1031 +#: location.cc:842 session.cc:4516 session_state.cc:1031 msgid "session" msgstr "" @@ -1075,6 +1079,18 @@ msgstr "" msgid "MIDI stretch created non-MIDI source" msgstr "" +#: monitor_processor.cc:53 +msgid "monitor dim" +msgstr "" + +#: monitor_processor.cc:54 +msgid "monitor cut" +msgstr "" + +#: monitor_processor.cc:55 +msgid "monitor mono" +msgstr "" + #: monitor_processor.cc:58 msgid "monitor dim level" msgstr "" @@ -1121,6 +1137,10 @@ msgstr "" msgid "capture" msgstr "" +#: operations.cc:25 +msgid "paste" +msgstr "" + #: operations.cc:26 msgid "duplicate region" msgstr "" @@ -1447,11 +1467,11 @@ msgstr "" msgid "You cannot subgroup MIDI tracks at this time" msgstr "" -#: rb_effect.cc:233 rb_effect.cc:274 +#: rb_effect.cc:234 rb_effect.cc:275 msgid "tempoize: error reading data from %1 at %2 (wanted %3, got %4)" msgstr "" -#: rb_effect.cc:303 rb_effect.cc:325 +#: rb_effect.cc:304 rb_effect.cc:326 msgid "error writing tempo-adjusted data to %1" msgstr "" @@ -1467,167 +1487,167 @@ msgstr "" msgid "programming error: send created using role %1" msgstr "" -#: session.cc:343 +#: session.cc:344 msgid "Connect to engine" msgstr "" -#: session.cc:348 +#: session.cc:349 msgid "Session loading complete" msgstr "" -#: session.cc:420 +#: session.cc:421 msgid "Set up LTC" msgstr "" -#: session.cc:422 +#: session.cc:423 msgid "Set up Click" msgstr "" -#: session.cc:424 +#: session.cc:425 msgid "Set up standard connections" msgstr "" -#: session.cc:634 +#: session.cc:635 msgid "could not setup Click I/O" msgstr "nie można byÅ‚o ustawić I/O metronomu" -#: session.cc:682 +#: session.cc:683 #, c-format msgid "out %" msgstr "wyjÅ›cie %" -#: session.cc:696 +#: session.cc:697 #, c-format msgid "out %+%" msgstr "wyjÅ›cie %+%" -#: session.cc:711 +#: session.cc:712 #, c-format msgid "in %" msgstr "wejÅ›cie %" -#: session.cc:725 +#: session.cc:726 #, c-format msgid "in %+%" msgstr "wejÅ›cie %+%" -#: session.cc:789 +#: session.cc:790 msgid "cannot connect master output %1 to %2" msgstr "" -#: session.cc:848 +#: session.cc:849 msgid "monitor" msgstr "monitor" -#: session.cc:893 +#: session.cc:894 msgid "cannot connect control input %1 to %2" msgstr "" -#: session.cc:913 +#: session.cc:914 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "" -#: session.cc:944 +#: session.cc:945 msgid "cannot connect control output %1 to %2" msgstr "" -#: session.cc:1008 +#: session.cc:1009 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "" -#: session.cc:1192 +#: session.cc:1193 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" -#: session.cc:1232 +#: session.cc:1233 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" msgstr "" -#: session.cc:1546 +#: session.cc:1547 msgid "feedback loop setup between %1 and %2" msgstr "" -#: session.cc:1842 +#: session.cc:1843 msgid "Session: could not create new midi track." msgstr "" -#: session.cc:1848 +#: session.cc:1849 msgid "" "No more JACK ports are available. You will need to stop %1 and restart JACK " "with more ports if you need this many tracks." msgstr "" -#: session.cc:2025 session.cc:2028 +#: session.cc:2026 session.cc:2029 msgid "Audio" msgstr "" -#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 +#: session.cc:2053 session.cc:2061 session.cc:2138 session.cc:2146 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "" -#: session.cc:2083 +#: session.cc:2084 msgid "Session: could not create new audio track." msgstr "" -#: session.cc:2115 session.cc:2118 +#: session.cc:2116 session.cc:2119 msgid "Bus" msgstr "" -#: session.cc:2168 +#: session.cc:2169 msgid "Session: could not create new audio route." msgstr "" -#: session.cc:2227 session.cc:2237 +#: session.cc:2228 session.cc:2238 msgid "Session: UINT_MAX routes? impossible!" msgstr "" -#: session.cc:2259 +#: session.cc:2260 msgid "Session: cannot create track/bus from template description" msgstr "" -#: session.cc:2285 +#: session.cc:2286 msgid "Session: could not create new route from template" msgstr "" -#: session.cc:2314 +#: session.cc:2315 msgid "Adding new tracks/busses failed" msgstr "" -#: session.cc:3413 +#: session.cc:3419 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "" -#: session.cc:3533 session.cc:3591 +#: session.cc:3539 session.cc:3597 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "" -#: session.cc:3981 +#: session.cc:3987 msgid "send ID %1 appears to be in use already" msgstr "" -#: session.cc:3993 +#: session.cc:3999 msgid "aux send ID %1 appears to be in use already" msgstr "" -#: session.cc:4005 +#: session.cc:4011 msgid "return ID %1 appears to be in use already" msgstr "" -#: session.cc:4017 +#: session.cc:4023 msgid "insert ID %1 appears to be in use already" msgstr "" -#: session.cc:4144 +#: session.cc:4150 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "" -#: session.cc:4173 +#: session.cc:4179 msgid "too many bounced versions of playlist \"%1\"" msgstr "" -#: session.cc:4183 +#: session.cc:4189 msgid "cannot create new audio file \"%1\" for %2" msgstr "" @@ -1802,6 +1822,10 @@ msgstr "" msgid "Could not understand session file %1" msgstr "" +#: session_state.cc:819 +msgid "Session file %1 is not a session" +msgstr "" + #: session_state.cc:1125 msgid "programming error: Session: incorrect XML node sent to set_state()" msgstr "" @@ -1999,6 +2023,10 @@ msgstr "" msgid "Could not remove history file at path \"%1\" (%2)" msgstr "" +#: session_state.cc:3163 +msgid "could not restore history file from backup %1 (%2)" +msgstr "" + #: session_state.cc:3188 msgid "%1: no history file \"%2\" for this session." msgstr "" @@ -2067,6 +2095,10 @@ msgstr "" msgid "Skipping event with unordered time %1" msgstr "" +#: smf_source.cc:410 +msgid "cannot open MIDI file %1 for write" +msgstr "" + #: sndfile_helpers.cc:32 msgid "WAV" msgstr "WAV" @@ -2426,6 +2458,14 @@ msgstr "" msgid "M-Clock" msgstr "" +#: utils.cc:432 +msgid "LTC" +msgstr "" + #: utils.cc:602 msgid "programming error: unknown native header format: %1" msgstr "" + +#: utils.cc:617 +msgid "cannot open directory %1 (%2)" +msgstr "" diff --git a/libs/ardour/po/ru.po b/libs/ardour/po/ru.po index 2ef870835b..3748bfc18c 100644 --- a/libs/ardour/po/ru.po +++ b/libs/ardour/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libardour 3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-10-23 19:07+0200\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2013-10-15 21:40+0300\n" "Last-Translator: ÐлекÑандр Прокудин \n" "Language-Team: руÑÑкий <>\n" @@ -124,7 +124,7 @@ msgstr "" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 +#: rb_effect.cc:333 session.cc:2619 session.cc:2652 session.cc:3797 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "programming error: %1" @@ -391,7 +391,7 @@ msgstr "" msgid "audio" msgstr "" -#: data_type.cc:28 session.cc:1790 session.cc:1793 +#: data_type.cc:28 session.cc:1791 session.cc:1794 msgid "MIDI" msgstr "" @@ -503,7 +503,7 @@ msgstr "Треугольное" msgid "Rectangular" msgstr "ПрÑмоугольное" -#: export_formats.cc:52 session.cc:5008 session.cc:5024 +#: export_formats.cc:52 session.cc:5014 session.cc:5030 msgid "None" msgstr "Ðет" @@ -859,15 +859,15 @@ msgstr "" msgid "%s out" msgstr "" -#: io.cc:1535 session.cc:685 session.cc:714 +#: io.cc:1535 session.cc:686 session.cc:715 msgid "mono" msgstr "" -#: io.cc:1537 session.cc:698 session.cc:728 +#: io.cc:1537 session.cc:699 session.cc:729 msgid "L" msgstr "" -#: io.cc:1537 session.cc:700 session.cc:730 +#: io.cc:1537 session.cc:701 session.cc:731 msgid "R" msgstr "" @@ -962,7 +962,7 @@ msgstr "" msgid "incorrect XML mode passed to Locations::set_state" msgstr "" -#: location.cc:842 session.cc:4510 session_state.cc:1031 +#: location.cc:842 session.cc:4516 session_state.cc:1031 msgid "session" msgstr "" @@ -1482,11 +1482,11 @@ msgstr "" msgid "You cannot subgroup MIDI tracks at this time" msgstr "" -#: rb_effect.cc:233 rb_effect.cc:274 +#: rb_effect.cc:234 rb_effect.cc:275 msgid "tempoize: error reading data from %1 at %2 (wanted %3, got %4)" msgstr "" -#: rb_effect.cc:303 rb_effect.cc:325 +#: rb_effect.cc:304 rb_effect.cc:326 msgid "error writing tempo-adjusted data to %1" msgstr "" @@ -1502,167 +1502,167 @@ msgstr "" msgid "programming error: send created using role %1" msgstr "programming error: send created using role %1" -#: session.cc:343 +#: session.cc:344 msgid "Connect to engine" msgstr "Соединение Ñо звуковым движком" -#: session.cc:348 +#: session.cc:349 msgid "Session loading complete" msgstr "Загрузка ÑеанÑа завершена" -#: session.cc:420 +#: session.cc:421 msgid "Set up LTC" msgstr "" -#: session.cc:422 +#: session.cc:423 msgid "Set up Click" msgstr "" -#: session.cc:424 +#: session.cc:425 msgid "Set up standard connections" msgstr "ÐаÑтройка обычных Ñоединений" -#: session.cc:634 +#: session.cc:635 msgid "could not setup Click I/O" msgstr "" -#: session.cc:682 +#: session.cc:683 #, c-format msgid "out %" msgstr "" -#: session.cc:696 +#: session.cc:697 #, c-format msgid "out %+%" msgstr "" -#: session.cc:711 +#: session.cc:712 #, c-format msgid "in %" msgstr "" -#: session.cc:725 +#: session.cc:726 #, c-format msgid "in %+%" msgstr "" -#: session.cc:789 +#: session.cc:790 msgid "cannot connect master output %1 to %2" msgstr "" -#: session.cc:848 +#: session.cc:849 msgid "monitor" msgstr "" -#: session.cc:893 +#: session.cc:894 msgid "cannot connect control input %1 to %2" msgstr "" -#: session.cc:913 +#: session.cc:914 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "" -#: session.cc:944 +#: session.cc:945 msgid "cannot connect control output %1 to %2" msgstr "" -#: session.cc:1008 +#: session.cc:1009 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "" -#: session.cc:1192 +#: session.cc:1193 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" -#: session.cc:1232 +#: session.cc:1233 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" msgstr "" -#: session.cc:1546 +#: session.cc:1547 msgid "feedback loop setup between %1 and %2" msgstr "" -#: session.cc:1842 +#: session.cc:1843 msgid "Session: could not create new midi track." msgstr "" -#: session.cc:1848 +#: session.cc:1849 msgid "" "No more JACK ports are available. You will need to stop %1 and restart JACK " "with more ports if you need this many tracks." msgstr "" -#: session.cc:2025 session.cc:2028 +#: session.cc:2026 session.cc:2029 msgid "Audio" msgstr "" -#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 +#: session.cc:2053 session.cc:2061 session.cc:2138 session.cc:2146 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "" -#: session.cc:2083 +#: session.cc:2084 msgid "Session: could not create new audio track." msgstr "" -#: session.cc:2115 session.cc:2118 +#: session.cc:2116 session.cc:2119 msgid "Bus" msgstr "" -#: session.cc:2168 +#: session.cc:2169 msgid "Session: could not create new audio route." msgstr "" -#: session.cc:2227 session.cc:2237 +#: session.cc:2228 session.cc:2238 msgid "Session: UINT_MAX routes? impossible!" msgstr "" -#: session.cc:2259 +#: session.cc:2260 msgid "Session: cannot create track/bus from template description" msgstr "" -#: session.cc:2285 +#: session.cc:2286 msgid "Session: could not create new route from template" msgstr "" -#: session.cc:2314 +#: session.cc:2315 msgid "Adding new tracks/busses failed" msgstr "Ðе удалоÑÑŒ добавить новые дорожки/шины" -#: session.cc:3413 +#: session.cc:3419 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "" -#: session.cc:3533 session.cc:3591 +#: session.cc:3539 session.cc:3597 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "" -#: session.cc:3981 +#: session.cc:3987 msgid "send ID %1 appears to be in use already" msgstr "" -#: session.cc:3993 +#: session.cc:3999 msgid "aux send ID %1 appears to be in use already" msgstr "" -#: session.cc:4005 +#: session.cc:4011 msgid "return ID %1 appears to be in use already" msgstr "" -#: session.cc:4017 +#: session.cc:4023 msgid "insert ID %1 appears to be in use already" msgstr "" -#: session.cc:4144 +#: session.cc:4150 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "" -#: session.cc:4173 +#: session.cc:4179 msgid "too many bounced versions of playlist \"%1\"" msgstr "" -#: session.cc:4183 +#: session.cc:4189 msgid "cannot create new audio file \"%1\" for %2" msgstr "" diff --git a/libs/ardour/po/sv.po b/libs/ardour/po/sv.po index 899b6bfeab..5558fde391 100644 --- a/libs/ardour/po/sv.po +++ b/libs/ardour/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ardour\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-10-23 19:09+0200\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2006-10-03 01:09+GMT+1\n" "Last-Translator: Petter Sundlöf \n" "Language-Team: Swedish \n" @@ -120,7 +120,7 @@ msgstr "" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 +#: rb_effect.cc:333 session.cc:2619 session.cc:2652 session.cc:3797 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "" @@ -189,6 +189,10 @@ msgstr "" msgid "looking for backends in %1\n" msgstr "" +#: audioengine.cc:511 +msgid "AudioEngine: cannot load module \"%1\" (%2)" +msgstr "" + #: audioengine.cc:517 msgid "AudioEngine: backend at \"%1\" has no descriptor function." msgstr "" @@ -224,6 +228,14 @@ msgstr "" msgid "cannot read sample data for unscaled peak computation" msgstr "" +#: audiosource.cc:387 +msgid "AudioSource: cannot open peakpath (a) \"%1\" (%2)" +msgstr "" + +#: audiosource.cc:463 +msgid "AudioSource: cannot open peakpath (b) \"%1\" (%2)" +msgstr "" + #: audiosource.cc:587 msgid "" "AudioSource[%1]: peak read - cannot read %2 samples at offset %3 of %4 (%5)" @@ -233,6 +245,10 @@ msgstr "" msgid "%1: could not write read raw data for peak computation (%2)" msgstr "" +#: audiosource.cc:706 +msgid "AudioSource: cannot open peakpath (c) \"%1\" (%2)" +msgstr "" + #: audiosource.cc:773 audiosource.cc:886 msgid "%1: could not write peak file data (%2)" msgstr "" @@ -364,7 +380,7 @@ msgstr "" msgid "audio" msgstr "" -#: data_type.cc:28 session.cc:1790 session.cc:1793 +#: data_type.cc:28 session.cc:1791 session.cc:1794 msgid "MIDI" msgstr "" @@ -476,7 +492,7 @@ msgstr "" msgid "Rectangular" msgstr "" -#: export_formats.cc:52 session.cc:5008 session.cc:5024 +#: export_formats.cc:52 session.cc:5014 session.cc:5030 msgid "None" msgstr "" @@ -556,6 +572,10 @@ msgstr "" msgid "empty format" msgstr "" +#: export_profile_manager.cc:818 +msgid "No timespan has been selected!" +msgstr "" + #: export_profile_manager.cc:822 msgid "No channels have been selected!" msgstr "" @@ -769,6 +789,10 @@ msgstr "" msgid "in" msgstr "" +#: io.cc:706 +msgid "out" +msgstr "" + #: io.cc:707 msgid "input" msgstr "ingÃ¥ng" @@ -824,15 +848,15 @@ msgstr "" msgid "%s out" msgstr "" -#: io.cc:1535 session.cc:685 session.cc:714 +#: io.cc:1535 session.cc:686 session.cc:715 msgid "mono" msgstr "" -#: io.cc:1537 session.cc:698 session.cc:728 +#: io.cc:1537 session.cc:699 session.cc:729 msgid "L" msgstr "" -#: io.cc:1537 session.cc:700 session.cc:730 +#: io.cc:1537 session.cc:701 session.cc:731 msgid "R" msgstr "" @@ -927,7 +951,7 @@ msgstr "" msgid "incorrect XML mode passed to Locations::set_state" msgstr "" -#: location.cc:842 session.cc:4510 session_state.cc:1031 +#: location.cc:842 session.cc:4516 session_state.cc:1031 msgid "session" msgstr "" @@ -1319,6 +1343,10 @@ msgid "" "ports if you need this many tracks." msgstr "" +#: port_manager.cc:275 +msgid "AudioEngine: cannot register port \"%1\": %2" +msgstr "" + #: port_manager.cc:314 msgid "unable to create port: %1" msgstr "" @@ -1439,11 +1467,11 @@ msgstr "" msgid "You cannot subgroup MIDI tracks at this time" msgstr "" -#: rb_effect.cc:233 rb_effect.cc:274 +#: rb_effect.cc:234 rb_effect.cc:275 msgid "tempoize: error reading data from %1 at %2 (wanted %3, got %4)" msgstr "" -#: rb_effect.cc:303 rb_effect.cc:325 +#: rb_effect.cc:304 rb_effect.cc:326 msgid "error writing tempo-adjusted data to %1" msgstr "" @@ -1459,167 +1487,167 @@ msgstr "" msgid "programming error: send created using role %1" msgstr "" -#: session.cc:343 +#: session.cc:344 msgid "Connect to engine" msgstr "Ansluter till ljudmotorn" -#: session.cc:348 +#: session.cc:349 msgid "Session loading complete" msgstr "" -#: session.cc:420 +#: session.cc:421 msgid "Set up LTC" msgstr "" -#: session.cc:422 +#: session.cc:423 msgid "Set up Click" msgstr "" -#: session.cc:424 +#: session.cc:425 msgid "Set up standard connections" msgstr "" -#: session.cc:634 +#: session.cc:635 msgid "could not setup Click I/O" msgstr "" -#: session.cc:682 +#: session.cc:683 #, c-format msgid "out %" msgstr "" -#: session.cc:696 +#: session.cc:697 #, c-format msgid "out %+%" msgstr "" -#: session.cc:711 +#: session.cc:712 #, c-format msgid "in %" msgstr "" -#: session.cc:725 +#: session.cc:726 #, c-format msgid "in %+%" msgstr "" -#: session.cc:789 +#: session.cc:790 msgid "cannot connect master output %1 to %2" msgstr "" -#: session.cc:848 +#: session.cc:849 msgid "monitor" msgstr "" -#: session.cc:893 +#: session.cc:894 msgid "cannot connect control input %1 to %2" msgstr "" -#: session.cc:913 +#: session.cc:914 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "" -#: session.cc:944 +#: session.cc:945 msgid "cannot connect control output %1 to %2" msgstr "" -#: session.cc:1008 +#: session.cc:1009 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "" -#: session.cc:1192 +#: session.cc:1193 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" -#: session.cc:1232 +#: session.cc:1233 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" msgstr "" -#: session.cc:1546 +#: session.cc:1547 msgid "feedback loop setup between %1 and %2" msgstr "" -#: session.cc:1842 +#: session.cc:1843 msgid "Session: could not create new midi track." msgstr "" -#: session.cc:1848 +#: session.cc:1849 msgid "" "No more JACK ports are available. You will need to stop %1 and restart JACK " "with more ports if you need this many tracks." msgstr "" -#: session.cc:2025 session.cc:2028 +#: session.cc:2026 session.cc:2029 msgid "Audio" msgstr "" -#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 +#: session.cc:2053 session.cc:2061 session.cc:2138 session.cc:2146 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "" -#: session.cc:2083 +#: session.cc:2084 msgid "Session: could not create new audio track." msgstr "" -#: session.cc:2115 session.cc:2118 +#: session.cc:2116 session.cc:2119 msgid "Bus" msgstr "" -#: session.cc:2168 +#: session.cc:2169 msgid "Session: could not create new audio route." msgstr "" -#: session.cc:2227 session.cc:2237 +#: session.cc:2228 session.cc:2238 msgid "Session: UINT_MAX routes? impossible!" msgstr "" -#: session.cc:2259 +#: session.cc:2260 msgid "Session: cannot create track/bus from template description" msgstr "" -#: session.cc:2285 +#: session.cc:2286 msgid "Session: could not create new route from template" msgstr "" -#: session.cc:2314 +#: session.cc:2315 msgid "Adding new tracks/busses failed" msgstr "" -#: session.cc:3413 +#: session.cc:3419 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "" -#: session.cc:3533 session.cc:3591 +#: session.cc:3539 session.cc:3597 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "" -#: session.cc:3981 +#: session.cc:3987 msgid "send ID %1 appears to be in use already" msgstr "" -#: session.cc:3993 +#: session.cc:3999 msgid "aux send ID %1 appears to be in use already" msgstr "" -#: session.cc:4005 +#: session.cc:4011 msgid "return ID %1 appears to be in use already" msgstr "" -#: session.cc:4017 +#: session.cc:4023 msgid "insert ID %1 appears to be in use already" msgstr "" -#: session.cc:4144 +#: session.cc:4150 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "" -#: session.cc:4173 +#: session.cc:4179 msgid "too many bounced versions of playlist \"%1\"" msgstr "" -#: session.cc:4183 +#: session.cc:4189 msgid "cannot create new audio file \"%1\" for %2" msgstr "" diff --git a/libs/ardour/po/zh.po b/libs/ardour/po/zh.po index 3cab1e71d9..d39877d9f5 100644 --- a/libs/ardour/po/zh.po +++ b/libs/ardour/po/zh.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Ardour 3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-10-23 19:09+0200\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2012-08-26 13:43+0800\n" "Last-Translator: Rui-huai Zhang \n" "Language-Team: zrhzrh \n" @@ -121,7 +121,7 @@ msgstr "音频播放列表(未使用)" #: audio_playlist_source.cc:171 audiosource.cc:913 file_source.cc:529 #: midi_playlist_source.cc:144 midi_playlist_source.cc:152 #: midi_playlist_source.cc:159 midi_source.cc:371 plugin_insert.cc:643 -#: rb_effect.cc:332 session.cc:2613 session.cc:2646 session.cc:3791 +#: rb_effect.cc:333 session.cc:2619 session.cc:2652 session.cc:3797 #: session_handle.cc:87 sndfilesource.cc:121 msgid "programming error: %1" msgstr "程åºé”™è¯¯: %1" @@ -194,6 +194,18 @@ msgstr "无法载入VAMPæ’ä»¶ \"%1\"" msgid "looking for backends in %1\n" msgstr "" +#: audioengine.cc:511 +msgid "AudioEngine: cannot load module \"%1\" (%2)" +msgstr "" + +#: audioengine.cc:517 +msgid "AudioEngine: backend at \"%1\" has no descriptor function." +msgstr "" + +#: audioengine.cc:589 +msgid "Could not create backend for %1: %2" +msgstr "" + #: audioregion.cc:1643 msgid "" "You have requested an operation that requires audio analysis.\n" @@ -246,6 +258,10 @@ msgstr "" msgid "%1: could not write peak file data (%2)" msgstr "" +#: audiosource.cc:924 +msgid "could not truncate peakfile %1 to %2 (error: %3)" +msgstr "" + #: auditioner.cc:87 msgid "no outputs available for auditioner - manual connection required" msgstr "" @@ -333,6 +349,10 @@ msgstr "控制åè®®åç§° \"%1\" 无法åˆå§‹åŒ–" msgid "Instantiating mandatory control protocol %1" msgstr "实例强制性控制åè®® %1" +#: control_protocol_manager.cc:222 +msgid "looking for control protocols in %1\n" +msgstr "" + #: control_protocol_manager.cc:247 msgid "Control protocol %1 not usable" msgstr "" @@ -365,7 +385,7 @@ msgstr "" msgid "audio" msgstr "音频" -#: data_type.cc:28 session.cc:1790 session.cc:1793 +#: data_type.cc:28 session.cc:1791 session.cc:1794 msgid "MIDI" msgstr "MIDI" @@ -477,7 +497,7 @@ msgstr "三角形" msgid "Rectangular" msgstr "长方形" -#: export_formats.cc:52 session.cc:5008 session.cc:5024 +#: export_formats.cc:52 session.cc:5014 session.cc:5030 msgid "None" msgstr "" @@ -533,10 +553,30 @@ msgstr "" msgid "Searching for export formats in %1" msgstr "" +#: export_profile_manager.cc:99 +msgid "Unable to create export format directory %1: %2" +msgstr "" + +#: export_profile_manager.cc:257 +msgid "Unable to remove export preset %1: %2" +msgstr "" + #: export_profile_manager.cc:347 msgid "Selection" msgstr "选å–" +#: export_profile_manager.cc:600 +msgid "Unable to rename export format %1 to %2: %3" +msgstr "" + +#: export_profile_manager.cc:632 +msgid "Unable to remove export profile %1: %2" +msgstr "" + +#: export_profile_manager.cc:649 +msgid "empty format" +msgstr "" + #: export_profile_manager.cc:818 msgid "No timespan has been selected!" msgstr "" @@ -608,6 +648,10 @@ msgstr "" msgid "cannot rename file %1 to %2 (%3)" msgstr "无法é‡å‘½å文件 %1 到 %2 (%3)" +#: filesystem_paths.cc:73 +msgid "Cannot create Configuration directory %1 - cannot run" +msgstr "" + #: filesystem_paths.cc:78 msgid "" "Configuration directory %1 already exists and is not a directory/folder - " @@ -718,6 +762,10 @@ msgstr "载入MIDI文件 %1" msgid "Failed to remove some files after failed/cancelled import operation" msgstr "" +#: instrument_info.cc:40 instrument_info.cc:61 +msgid "Unknown" +msgstr "" + #: instrument_info.cc:230 msgid "preset %1 (bank %2)" msgstr "" @@ -805,15 +853,15 @@ msgstr "" msgid "%s out" msgstr "" -#: io.cc:1535 session.cc:685 session.cc:714 +#: io.cc:1535 session.cc:686 session.cc:715 msgid "mono" msgstr "å•声é“" -#: io.cc:1537 session.cc:698 session.cc:728 +#: io.cc:1537 session.cc:699 session.cc:729 msgid "L" msgstr "" -#: io.cc:1537 session.cc:700 session.cc:730 +#: io.cc:1537 session.cc:701 session.cc:731 msgid "R" msgstr "" @@ -908,7 +956,7 @@ msgstr "" msgid "incorrect XML mode passed to Locations::set_state" msgstr "" -#: location.cc:842 session.cc:4510 session_state.cc:1031 +#: location.cc:842 session.cc:4516 session_state.cc:1031 msgid "session" msgstr "会è¯" @@ -1424,11 +1472,11 @@ msgstr "" msgid "You cannot subgroup MIDI tracks at this time" msgstr "此时你无法å­åˆ†ç»„MIDI声é“" -#: rb_effect.cc:233 rb_effect.cc:274 +#: rb_effect.cc:234 rb_effect.cc:275 msgid "tempoize: error reading data from %1 at %2 (wanted %3, got %4)" msgstr "" -#: rb_effect.cc:303 rb_effect.cc:325 +#: rb_effect.cc:304 rb_effect.cc:326 msgid "error writing tempo-adjusted data to %1" msgstr "" @@ -1440,167 +1488,171 @@ msgstr "" msgid "send %1" msgstr "å‘é€ %1" -#: session.cc:343 +#: send.cc:65 +msgid "programming error: send created using role %1" +msgstr "" + +#: session.cc:344 msgid "Connect to engine" msgstr "连接到引擎" -#: session.cc:348 +#: session.cc:349 msgid "Session loading complete" msgstr "会è¯è½½å…¥å®Œæˆ" -#: session.cc:420 +#: session.cc:421 msgid "Set up LTC" msgstr "" -#: session.cc:422 +#: session.cc:423 msgid "Set up Click" msgstr "" -#: session.cc:424 +#: session.cc:425 msgid "Set up standard connections" msgstr "设置标准连接" -#: session.cc:634 +#: session.cc:635 msgid "could not setup Click I/O" msgstr "" -#: session.cc:682 +#: session.cc:683 #, c-format msgid "out %" msgstr "" -#: session.cc:696 +#: session.cc:697 #, c-format msgid "out %+%" msgstr "" -#: session.cc:711 +#: session.cc:712 #, c-format msgid "in %" msgstr "" -#: session.cc:725 +#: session.cc:726 #, c-format msgid "in %+%" msgstr "" -#: session.cc:789 +#: session.cc:790 msgid "cannot connect master output %1 to %2" msgstr "" -#: session.cc:848 +#: session.cc:849 msgid "monitor" msgstr "" -#: session.cc:893 +#: session.cc:894 msgid "cannot connect control input %1 to %2" msgstr "" -#: session.cc:913 +#: session.cc:914 msgid "The preferred I/O for the monitor bus (%1) cannot be found" msgstr "" -#: session.cc:944 +#: session.cc:945 msgid "cannot connect control output %1 to %2" msgstr "" -#: session.cc:1008 +#: session.cc:1009 msgid "cannot create Auditioner: no auditioning of regions possible" msgstr "" -#: session.cc:1192 +#: session.cc:1193 msgid "Session: you can't use that location for auto punch (start <= end)" msgstr "" -#: session.cc:1232 +#: session.cc:1233 msgid "" "You cannot use this location for auto-loop because it has zero or negative " "length" msgstr "" -#: session.cc:1546 +#: session.cc:1547 msgid "feedback loop setup between %1 and %2" msgstr "" -#: session.cc:1842 +#: session.cc:1843 msgid "Session: could not create new midi track." msgstr "" -#: session.cc:1848 +#: session.cc:1849 msgid "" "No more JACK ports are available. You will need to stop %1 and restart JACK " "with more ports if you need this many tracks." msgstr "" -#: session.cc:2025 session.cc:2028 +#: session.cc:2026 session.cc:2029 msgid "Audio" msgstr "音频" -#: session.cc:2052 session.cc:2060 session.cc:2137 session.cc:2145 +#: session.cc:2053 session.cc:2061 session.cc:2138 session.cc:2146 msgid "cannot configure %1 in/%2 out configuration for new audio track" msgstr "" -#: session.cc:2083 +#: session.cc:2084 msgid "Session: could not create new audio track." msgstr "" -#: session.cc:2115 session.cc:2118 +#: session.cc:2116 session.cc:2119 msgid "Bus" msgstr "总线" -#: session.cc:2168 +#: session.cc:2169 msgid "Session: could not create new audio route." msgstr "" -#: session.cc:2227 session.cc:2237 +#: session.cc:2228 session.cc:2238 msgid "Session: UINT_MAX routes? impossible!" msgstr "" -#: session.cc:2259 +#: session.cc:2260 msgid "Session: cannot create track/bus from template description" msgstr "" -#: session.cc:2285 +#: session.cc:2286 msgid "Session: could not create new route from template" msgstr "" -#: session.cc:2314 +#: session.cc:2315 msgid "Adding new tracks/busses failed" msgstr "" -#: session.cc:3413 +#: session.cc:3419 msgid "FATAL ERROR! Could not find a suitable version of %1 for a rename" msgstr "" -#: session.cc:3533 session.cc:3591 +#: session.cc:3539 session.cc:3597 msgid "There are already %1 recordings for %2, which I consider too many." msgstr "" -#: session.cc:3981 +#: session.cc:3987 msgid "send ID %1 appears to be in use already" msgstr "" -#: session.cc:3993 +#: session.cc:3999 msgid "aux send ID %1 appears to be in use already" msgstr "" -#: session.cc:4005 +#: session.cc:4011 msgid "return ID %1 appears to be in use already" msgstr "" -#: session.cc:4017 +#: session.cc:4023 msgid "insert ID %1 appears to be in use already" msgstr "" -#: session.cc:4144 +#: session.cc:4150 msgid "Cannot write a range where end <= start (e.g. %1 <= %2)" msgstr "" -#: session.cc:4173 +#: session.cc:4179 msgid "too many bounced versions of playlist \"%1\"" msgstr "" -#: session.cc:4183 +#: session.cc:4189 msgid "cannot create new audio file \"%1\" for %2" msgstr "" @@ -1669,6 +1721,10 @@ msgstr "" msgid "Programming error: illegal event type in process_event (%1)" msgstr "" +#: session_state.cc:140 +msgid "Could not use path %1 (%2)" +msgstr "" + #: session_state.cc:184 msgid "solo cut control (dB)" msgstr "" @@ -1713,6 +1769,10 @@ msgstr "会è¯: 无法创建会è¯åˆ†æžæ–‡ä»¶å¤¹ \"%1\" (%2)" msgid "Session: cannot create session plugins folder \"%1\" (%2)" msgstr "会è¯: æ— æ³•åˆ›å»ºä¼šè¯æ’件文件夹 \"%1\" (%2)" +#: session_state.cc:466 +msgid "Session: cannot create session externals folder \"%1\" (%2)" +msgstr "" + #: session_state.cc:480 msgid "Session: cannot create session folder \"%1\" (%2)" msgstr "会è¯: æ— æ³•åˆ›å»ºä¼šè¯æ–‡ä»¶å¤¹ \"%1\" (%2)" @@ -1721,14 +1781,26 @@ msgstr "会è¯: æ— æ³•åˆ›å»ºä¼šè¯æ–‡ä»¶å¤¹ \"%1\" (%2)" msgid "Could not open %1 for writing session template" msgstr "" +#: session_state.cc:520 +msgid "Could not open session template %1 for reading" +msgstr "" + #: session_state.cc:539 msgid "master" msgstr "主控" +#: session_state.cc:600 +msgid "Could not remove pending capture state at path \"%1\" (%2)" +msgstr "" + #: session_state.cc:624 msgid "could not rename snapshot %1 to %2 (%3)" msgstr "无法é‡å‘½åå¿«ç…§ %1 到 %2 (%3)" +#: session_state.cc:652 +msgid "Could not remove session file at path \"%1\" (%2)" +msgstr "" + #: session_state.cc:669 msgid "" "the %1 audio engine is not connected and state saving would lose all I/O " @@ -1739,6 +1811,10 @@ msgstr "" msgid "state could not be saved to %1" msgstr "" +#: session_state.cc:722 session_state.cc:733 +msgid "Could not remove temporary session file at path \"%1\" (%2)" +msgstr "" + #: session_state.cc:730 msgid "could not rename temporary session file %1 to %2" msgstr "" @@ -1747,6 +1823,10 @@ msgstr "" msgid "%1: session file \"%2\" doesn't exist!" msgstr "" +#: session_state.cc:810 +msgid "Could not understand session file %1" +msgstr "" + #: session_state.cc:819 msgid "Session file %1 is not a session" msgstr "ä¼šè¯æ–‡ä»¶ %1 䏿˜¯ä¸€ä¸ªä¼šè¯" @@ -1896,14 +1976,26 @@ msgstr "" msgid "Found a sound file that cannot be used by %1. Talk to the progammers." msgstr "" +#: session_state.cc:1949 +msgid "Could not create templates directory \"%1\" (%2)" +msgstr "" + #: session_state.cc:1962 msgid "Template \"%1\" already exists - new version not created" msgstr "" +#: session_state.cc:1968 +msgid "Could not create directory for Session template\"%1\" (%2)" +msgstr "" + #: session_state.cc:1978 msgid "template not saved" msgstr "æ¨¡æ¿æ²¡ä¿å­˜" +#: session_state.cc:1988 +msgid "Could not create directory for Session template plugin state\"%1\" (%2)" +msgstr "" + #: session_state.cc:2183 msgid "Unknown node \"%1\" found in Bundles list from session file" msgstr "" @@ -1932,6 +2024,10 @@ msgstr "" msgid "history could not be saved to %1" msgstr "åŽ†å²æ— æ³•被ä¿å­˜åˆ° %1" +#: session_state.cc:3159 +msgid "Could not remove history file at path \"%1\" (%2)" +msgstr "" + #: session_state.cc:3163 msgid "could not restore history file from backup %1 (%2)" msgstr "" @@ -2365,6 +2461,14 @@ msgstr "" msgid "programming error: unknown sync source string \"%1\"" msgstr "程åºé”™è¯¯: æ— æ³•è¯†åˆ«åŒæ­¥æºå­—符串 \"%1\"" +#: utils.cc:426 +msgid "M-Clock" +msgstr "" + +#: utils.cc:432 +msgid "LTC" +msgstr "" + #: utils.cc:602 msgid "programming error: unknown native header format: %1" msgstr "" diff --git a/libs/gtkmm2ext/po/cs.po b/libs/gtkmm2ext/po/cs.po index fa282e4ed5..1c99a821c5 100644 --- a/libs/gtkmm2ext/po/cs.po +++ b/libs/gtkmm2ext/po/cs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-08-15 15:09-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2013-06-13 22:33+0200\n" "Last-Translator: Pavel Fric \n" "Language-Team: Czech \n" @@ -33,7 +33,7 @@ msgstr "TlaÄítko nemůže sledovat stav neexistujícího ovladatelného cíle\ msgid "Log" msgstr "Zápis" -#: gtk_ui.cc:361 +#: gtk_ui.cc:363 msgid "" "\n" "\n" @@ -43,11 +43,11 @@ msgstr "" "\n" "Kurzbefehl: " -#: gtk_ui.cc:633 +#: gtk_ui.cc:635 msgid "Press To Exit" msgstr "Stisknout pro ukonÄení" -#: gtk_ui.cc:669 +#: gtk_ui.cc:671 msgid "I'm sorry %1, I can't do that" msgstr "Bohužel to nelze udÄ›lat, %1" @@ -75,11 +75,11 @@ msgstr "Alt" msgid "Meta" msgstr "Meta" -#: keyboard.cc:139 keyboard.cc:531 +#: keyboard.cc:139 keyboard.cc:535 msgid "Unknown" msgstr "Neznámý" -#: keyboard.cc:542 +#: keyboard.cc:546 msgid "key bindings file not found at \"%2\" or contains errors." msgstr "" "Soubor s pÅ™iÅ™azením kláves \"%2\"se nepodaÅ™ilo najít, nebo obsahuje chyby." diff --git a/libs/gtkmm2ext/po/de.po b/libs/gtkmm2ext/po/de.po index 4c032c8b15..673193333b 100644 --- a/libs/gtkmm2ext/po/de.po +++ b/libs/gtkmm2ext/po/de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-08-15 15:09-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2013-02-05 19:50+0100\n" "Last-Translator: Edgar Aichinger \n" "Language-Team: German \n" @@ -35,7 +35,7 @@ msgstr "" msgid "Log" msgstr "Log" -#: gtk_ui.cc:361 +#: gtk_ui.cc:363 msgid "" "\n" "\n" @@ -45,11 +45,11 @@ msgstr "" "\n" "Kurzbefehl: " -#: gtk_ui.cc:633 +#: gtk_ui.cc:635 msgid "Press To Exit" msgstr "Zum Beenden drücken" -#: gtk_ui.cc:669 +#: gtk_ui.cc:671 msgid "I'm sorry %1, I can't do that" msgstr "Leider kann ich das nicht tun, %1" @@ -77,11 +77,11 @@ msgstr "Alt" msgid "Meta" msgstr "Meta" -#: keyboard.cc:139 keyboard.cc:531 +#: keyboard.cc:139 keyboard.cc:535 msgid "Unknown" msgstr "Unbekannt" -#: keyboard.cc:542 +#: keyboard.cc:546 msgid "key bindings file not found at \"%2\" or contains errors." msgstr "" "Die Tastenkürzel-Datei \"%1\" konnte nicht gefunden werden oder enthält " diff --git a/libs/gtkmm2ext/po/el.po b/libs/gtkmm2ext/po/el.po index 37e152725d..65bef4ec02 100644 --- a/libs/gtkmm2ext/po/el.po +++ b/libs/gtkmm2ext/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.99beta23\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-08-15 15:09-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2005-01-11\n" "Last-Translator: Muadibas\n" "Language-Team: Hellenic(Greek) \n" @@ -20,6 +20,10 @@ msgstr "" msgid "Unknown action name: %1" msgstr "" +#: binding_proxy.cc:84 +msgid "operate controller now" +msgstr "" + #: bindable_button.cc:48 msgid "button cannot watch state of non-existing Controllable\n" msgstr "" @@ -28,18 +32,18 @@ msgstr "" msgid "Log" msgstr "" -#: gtk_ui.cc:361 +#: gtk_ui.cc:363 msgid "" "\n" "\n" "Shortcut: " msgstr "" -#: gtk_ui.cc:633 +#: gtk_ui.cc:635 msgid "Press To Exit" msgstr "" -#: gtk_ui.cc:669 +#: gtk_ui.cc:671 msgid "I'm sorry %1, I can't do that" msgstr "" @@ -67,11 +71,11 @@ msgstr "" msgid "Meta" msgstr "" -#: keyboard.cc:139 keyboard.cc:531 +#: keyboard.cc:139 keyboard.cc:535 msgid "Unknown" msgstr "" -#: keyboard.cc:542 +#: keyboard.cc:546 msgid "key bindings file not found at \"%2\" or contains errors." msgstr "" diff --git a/libs/gtkmm2ext/po/es.po b/libs/gtkmm2ext/po/es.po index b9f574e48b..6acaf755a4 100644 --- a/libs/gtkmm2ext/po/es.po +++ b/libs/gtkmm2ext/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gtkmm2ext\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-08-15 15:09-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2013-02-09 16:21+0100\n" "Last-Translator: Pablo Fernández \n" "Language-Team: Spanish\n" @@ -31,7 +31,7 @@ msgstr "" msgid "Log" msgstr "Log" -#: gtk_ui.cc:361 +#: gtk_ui.cc:363 msgid "" "\n" "\n" @@ -41,11 +41,11 @@ msgstr "" "\n" "Atajo: " -#: gtk_ui.cc:633 +#: gtk_ui.cc:635 msgid "Press To Exit" msgstr "Pulse para salir" -#: gtk_ui.cc:669 +#: gtk_ui.cc:671 msgid "I'm sorry %1, I can't do that" msgstr "Lo siento %1, no puedo hacer eso" @@ -73,11 +73,11 @@ msgstr "" msgid "Meta" msgstr "" -#: keyboard.cc:139 keyboard.cc:531 +#: keyboard.cc:139 keyboard.cc:535 msgid "Unknown" msgstr "" -#: keyboard.cc:542 +#: keyboard.cc:546 msgid "key bindings file not found at \"%2\" or contains errors." msgstr "" "El archivo de combinaciones de teclado no se encontró en \"%2\" o contiene " diff --git a/libs/gtkmm2ext/po/fr.po b/libs/gtkmm2ext/po/fr.po index 56808e9281..310e648c67 100644 --- a/libs/gtkmm2ext/po/fr.po +++ b/libs/gtkmm2ext/po/fr.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-08-15 15:09-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2011-06-13 00:30+0200\n" "Language-Team: American English \n" "Language: en_US\n" @@ -31,18 +31,18 @@ msgstr "Le bouton ne peut pas surveiller l'état d'un Controllable inexistant\n" msgid "Log" msgstr "Log" -#: gtk_ui.cc:361 +#: gtk_ui.cc:363 msgid "" "\n" "\n" "Shortcut: " msgstr "" -#: gtk_ui.cc:633 +#: gtk_ui.cc:635 msgid "Press To Exit" msgstr "Appuyer pour quitter" -#: gtk_ui.cc:669 +#: gtk_ui.cc:671 msgid "I'm sorry %1, I can't do that" msgstr "" @@ -54,6 +54,10 @@ msgstr "Commande" msgid "Control" msgstr "Ctrl" +#: keyboard.cc:70 keyboard.cc:73 keyboard.cc:87 keyboard.cc:90 +msgid "Key|Shift" +msgstr "" + #: keyboard.cc:71 msgid "Option" msgstr "Option" @@ -66,10 +70,14 @@ msgstr "Alt" msgid "Meta" msgstr "Meta" -#: keyboard.cc:139 keyboard.cc:531 +#: keyboard.cc:139 keyboard.cc:535 msgid "Unknown" msgstr "Inconnu" +#: keyboard.cc:546 +msgid "key bindings file not found at \"%2\" or contains errors." +msgstr "" + #: tearoff.cc:57 msgid "Click to tear this into its own window" msgstr "Cliquez pour afficher dans une fenêtre séparée" diff --git a/libs/gtkmm2ext/po/nn.po b/libs/gtkmm2ext/po/nn.po index fd2ec5bb05..4a410bee50 100644 --- a/libs/gtkmm2ext/po/nn.po +++ b/libs/gtkmm2ext/po/nn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libardour\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-08-15 15:09-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2013-01-01 20:30+0100\n" "Last-Translator: Eivind ØdegÃ¥rd \n" "Language-Team: Nynorsk \n" @@ -36,18 +36,18 @@ msgstr "" msgid "Log" msgstr "" -#: gtk_ui.cc:361 +#: gtk_ui.cc:363 msgid "" "\n" "\n" "Shortcut: " msgstr "" -#: gtk_ui.cc:633 +#: gtk_ui.cc:635 msgid "Press To Exit" msgstr "" -#: gtk_ui.cc:669 +#: gtk_ui.cc:671 msgid "I'm sorry %1, I can't do that" msgstr "" @@ -55,6 +55,10 @@ msgstr "" msgid "Command" msgstr "" +#: keyboard.cc:69 keyboard.cc:72 keyboard.cc:85 keyboard.cc:89 +msgid "Control" +msgstr "" + #: keyboard.cc:70 keyboard.cc:73 keyboard.cc:87 keyboard.cc:90 msgid "Key|Shift" msgstr "" @@ -71,11 +75,11 @@ msgstr "" msgid "Meta" msgstr "" -#: keyboard.cc:139 keyboard.cc:531 +#: keyboard.cc:139 keyboard.cc:535 msgid "Unknown" msgstr "Ukjend" -#: keyboard.cc:542 +#: keyboard.cc:546 msgid "key bindings file not found at \"%2\" or contains errors." msgstr "" diff --git a/libs/gtkmm2ext/po/pl.po b/libs/gtkmm2ext/po/pl.po index 166c1690b5..d3b3414041 100644 --- a/libs/gtkmm2ext/po/pl.po +++ b/libs/gtkmm2ext/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgtkmm2ext\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-08-15 15:09-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2008-04-10 10:54+0100\n" "Last-Translator: Piotr Zaryk \n" "Language-Team: Polish \n" @@ -32,18 +32,18 @@ msgstr "" msgid "Log" msgstr "Log" -#: gtk_ui.cc:361 +#: gtk_ui.cc:363 msgid "" "\n" "\n" "Shortcut: " msgstr "" -#: gtk_ui.cc:633 +#: gtk_ui.cc:635 msgid "Press To Exit" msgstr "WciÅ›nij by zakoÅ„czyć" -#: gtk_ui.cc:669 +#: gtk_ui.cc:671 msgid "I'm sorry %1, I can't do that" msgstr "" @@ -71,11 +71,11 @@ msgstr "" msgid "Meta" msgstr "" -#: keyboard.cc:139 keyboard.cc:531 +#: keyboard.cc:139 keyboard.cc:535 msgid "Unknown" msgstr "" -#: keyboard.cc:542 +#: keyboard.cc:546 msgid "key bindings file not found at \"%2\" or contains errors." msgstr "" diff --git a/libs/gtkmm2ext/po/pt.po b/libs/gtkmm2ext/po/pt.po index 1ad8ffdf32..9d8427193f 100644 --- a/libs/gtkmm2ext/po/pt.po +++ b/libs/gtkmm2ext/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gtkmm2ext\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-08-15 15:09-0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2004-05-17 20:36+0200\n" "Last-Translator: Chris Ross \n" "Language-Team: Portuguese\n" @@ -20,6 +20,10 @@ msgstr "" msgid "Unknown action name: %1" msgstr "" +#: binding_proxy.cc:84 +msgid "operate controller now" +msgstr "" + #: bindable_button.cc:48 msgid "button cannot watch state of non-existing Controllable\n" msgstr "" @@ -28,18 +32,18 @@ msgstr "" msgid "Log" msgstr "" -#: gtk_ui.cc:361 +#: gtk_ui.cc:363 msgid "" "\n" "\n" "Shortcut: " msgstr "" -#: gtk_ui.cc:633 +#: gtk_ui.cc:635 msgid "Press To Exit" msgstr "" -#: gtk_ui.cc:669 +#: gtk_ui.cc:671 msgid "I'm sorry %1, I can't do that" msgstr "" @@ -67,11 +71,11 @@ msgstr "" msgid "Meta" msgstr "" -#: keyboard.cc:139 keyboard.cc:531 +#: keyboard.cc:139 keyboard.cc:535 msgid "Unknown" msgstr "" -#: keyboard.cc:542 +#: keyboard.cc:546 msgid "key bindings file not found at \"%2\" or contains errors." msgstr "" diff --git a/libs/gtkmm2ext/po/ru.po b/libs/gtkmm2ext/po/ru.po index bda7b989a5..d702745ea4 100644 --- a/libs/gtkmm2ext/po/ru.po +++ b/libs/gtkmm2ext/po/ru.po @@ -7,10 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: gtkmm2ext\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-10-15 21:33+0400\n" +"POT-Creation-Date: 2013-11-05 11:11-0500\n" "PO-Revision-Date: 2013-10-15 21:54+0300\n" "Last-Translator: ÐлекÑандр Прокудин \n" "Language-Team: руÑÑкий <>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" From 486561a886fa791df3059972df5d50d473f6c0bc Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 5 Nov 2013 11:24:06 -0500 Subject: [PATCH 67/95] remove exportvis changes from autowaf.py --- tools/autowaf.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/tools/autowaf.py b/tools/autowaf.py index 87e19d5aea..46c563519f 100644 --- a/tools/autowaf.py +++ b/tools/autowaf.py @@ -526,7 +526,7 @@ def build_dox(bld, name, version, srcdir, blddir, outdir=''): excl='**/_*')) # Version code file generation -def build_version_files(header_path, source_path, domain, major, minor, micro, exportname, visheader): +def build_version_files(header_path, source_path, domain, major, minor, micro): header_path = os.path.abspath(header_path) source_path = os.path.abspath(source_path) text = "int " + domain + "_major_version = " + str(major) + ";\n" @@ -542,12 +542,10 @@ def build_version_files(header_path, source_path, domain, major, minor, micro, e text = "#ifndef __" + domain + "_version_h__\n" text += "#define __" + domain + "_version_h__\n" - if visheader != '': - text += "#include \"" + visheader + "\"\n" - text += exportname + " extern const char* " + domain + "_revision;\n" - text += exportname + " extern int " + domain + "_major_version;\n" - text += exportname + " extern int " + domain + "_minor_version;\n" - text += exportname + " extern int " + domain + "_micro_version;\n" + text += " extern const char* " + domain + "_revision;\n" + text += " extern int " + domain + "_major_version;\n" + text += " extern int " + domain + "_minor_version;\n" + text += " extern int " + domain + "_micro_version;\n" text += "#endif /* __" + domain + "_version_h__ */\n" try: o = open(header_path, 'w') From c78bc833e0f82650be438d9f1e5df1c67adf59ef Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 5 Nov 2013 11:24:25 -0500 Subject: [PATCH 68/95] revert to waf 1.6.11 for master branch, with current autowaf.py --- waf | Bin 97948 -> 94823 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/waf b/waf index 22d303e8bb4797de09c7c6796cff3f51835e44af..927b8ae126b192c0d8e9f1918122b5d590d6ca35 100755 GIT binary patch delta 91698 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≠^hvsewDPGuuZJ2xoughF0F2#g+}`ly_+@m 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�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 z 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ⅆX3OGd;`RO?9|MPqg&ZJCv97 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 N#vVw>3L`u{Jql1Q^MU{X delta 94847 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

CmsVt9YuY?OVOPo8kWq1e{Ai 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 From 0392e1c9a439cd4b1eeb97896dd437c17ae32c2a Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 5 Nov 2013 13:43:25 -0500 Subject: [PATCH 69/95] on OS X 10.7 at least, LANG is set by the system, so do not bail out of language stuff early just because it is set --- gtk2_ardour/cocoacarbon.mm | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/gtk2_ardour/cocoacarbon.mm b/gtk2_ardour/cocoacarbon.mm index 76b92cb91f..aa4dd3177a 100644 --- a/gtk2_ardour/cocoacarbon.mm +++ b/gtk2_ardour/cocoacarbon.mm @@ -75,10 +75,6 @@ set_language_preference () { gtk_disable_setlocale (); - if (g_getenv ("LANGUAGE") || g_getenv ("LC_ALL") || g_getenv ("LANG")) { - return; - } - if (g_getenv ("ARDOUR_EN")) { return; } @@ -126,6 +122,6 @@ set_language_preference () */ cout << "LANG set to " << [nslocale UTF8String] << endl; - setenv ("LANG", [nslocale UTF8String], 0); + setenv ("LANG", [nslocale UTF8String], 0); CFRelease (cflocale); } From 8c2cc85e8fd1ac55761c2f53aebbe98b8f22a40a Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 5 Nov 2013 14:20:03 -0500 Subject: [PATCH 70/95] really no reason to support ARDOUR_EN anymore ... we have a preference dialog item to enable/disable translation --- gtk2_ardour/cocoacarbon.mm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gtk2_ardour/cocoacarbon.mm b/gtk2_ardour/cocoacarbon.mm index aa4dd3177a..5795cf0de9 100644 --- a/gtk2_ardour/cocoacarbon.mm +++ b/gtk2_ardour/cocoacarbon.mm @@ -75,10 +75,6 @@ set_language_preference () { gtk_disable_setlocale (); - if (g_getenv ("ARDOUR_EN")) { - return; - } - /* the gettext manual is potentially misleading about the utility of LANGUAGE. It notes that if LANGUAGE is set to include a dialect/region-free language code, like "it", it will assume that you mean the main From 982c38dda1515b96b4b1aadfeff70fa2fad960a1 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 9 Nov 2013 13:16:08 +0100 Subject: [PATCH 71/95] allow to include In/Disk button on Meterbridge --- gtk2_ardour/meter_strip.cc | 28 +++++++++++++++++++ gtk2_ardour/meter_strip.h | 2 ++ gtk2_ardour/session_option_editor.cc | 7 +++++ .../ardour/session_configuration_vars.h | 1 + 4 files changed, 38 insertions(+) diff --git a/gtk2_ardour/meter_strip.cc b/gtk2_ardour/meter_strip.cc index 703870ecef..886374c61a 100644 --- a/gtk2_ardour/meter_strip.cc +++ b/gtk2_ardour/meter_strip.cc @@ -177,6 +177,11 @@ MeterStrip::MeterStrip (Session* sess, boost::shared_ptr rt) namebx.set_size_request(18, 52); namebx.pack_start(name_label, true, false, 3); + mon_in_box.pack_start(*monitor_input_button, true, false); + btnbox.pack_start(mon_in_box, false, false, 1); + mon_disk_box.pack_start(*monitor_disk_button, true, false); + btnbox.pack_start(mon_disk_box, false, false, 1); + recbox.pack_start(*rec_enable_button, true, false); btnbox.pack_start(recbox, false, false, 1); mutebox.pack_start(*mute_button, true, false); @@ -193,9 +198,17 @@ MeterStrip::MeterStrip (Session* sess, boost::shared_ptr rt) solo_button->set_corner_radius(2); solo_button->set_size_request(16, 16); + monitor_input_button->set_corner_radius(2); + monitor_input_button->set_size_request(16, 16); + + monitor_disk_button->set_corner_radius(2); + monitor_disk_button->set_size_request(16, 16); + mutebox.set_size_request(16, 16); solobox.set_size_request(16, 16); recbox.set_size_request(16, 16); + mon_in_box.set_size_request(16, 16); + mon_disk_box.set_size_request(16, 16); spacer.set_size_request(-1,0); update_button_box(); @@ -232,6 +245,8 @@ MeterStrip::MeterStrip (Session* sess, boost::shared_ptr rt) mtr_container.show(); mtr_hsep.show(); nfo_vbox.show(); + monitor_input_button->show(); + monitor_disk_button->show(); _route->shared_peak_meter()->ConfigurationChanged.connect ( route_connections, invalidator (*this), boost::bind (&MeterStrip::meter_configuration_changed, this, _1), gui_context() @@ -339,6 +354,8 @@ MeterStrip::set_button_names() } } + monitor_input_button->set_text (_("I")); + monitor_disk_button->set_text (_("D")); } void @@ -651,6 +668,14 @@ MeterStrip::update_button_box () } else { recbox.hide(); } + if (_session->config.get_show_monitor_on_meterbridge()) { + height += 18 + 18; + mon_in_box.show(); + mon_disk_box.show(); + } else { + mon_in_box.hide(); + mon_disk_box.hide(); + } btnbox.set_size_request(16, height); check_resize(); } @@ -684,6 +709,9 @@ MeterStrip::parameter_changed (std::string const & p) else if (p == "show-name-on-meterbridge") { update_name_box(); } + else if (p == "show-monitor-on-meterbridge") { + update_button_box(); + } else if (p == "meterbridge-label-height") { queue_resize(); } diff --git a/gtk2_ardour/meter_strip.h b/gtk2_ardour/meter_strip.h index e817f7d5c6..e1bae71326 100644 --- a/gtk2_ardour/meter_strip.h +++ b/gtk2_ardour/meter_strip.h @@ -108,6 +108,8 @@ class MeterStrip : public Gtk::VBox, public RouteUI Gtk::HBox mutebox; Gtk::HBox solobox; Gtk::HBox recbox; + Gtk::HBox mon_in_box; + Gtk::HBox mon_disk_box; Gtk::Alignment meter_align; Gtk::Alignment peak_align; diff --git a/gtk2_ardour/session_option_editor.cc b/gtk2_ardour/session_option_editor.cc index 60f575fb16..f243973013 100644 --- a/gtk2_ardour/session_option_editor.cc +++ b/gtk2_ardour/session_option_editor.cc @@ -318,6 +318,13 @@ SessionOptionEditor::SessionOptionEditor (Session* s) sigc::mem_fun (*_session_config, &SessionConfiguration::set_show_solo_on_meterbridge) )); + add_option (_("Meterbridge"), new BoolOption ( + "show-monitor-on-meterbridge", + _("Monitor Buttons"), + sigc::mem_fun (*_session_config, &SessionConfiguration::get_show_monitor_on_meterbridge), + sigc::mem_fun (*_session_config, &SessionConfiguration::set_show_monitor_on_meterbridge) + )); + add_option (_("Meterbridge"), new OptionEditorHeading (_("Name Labels"))); add_option (_("Meterbridge"), new BoolOption ( diff --git a/libs/ardour/ardour/session_configuration_vars.h b/libs/ardour/ardour/session_configuration_vars.h index 5e93c01b79..6349692e77 100644 --- a/libs/ardour/ardour/session_configuration_vars.h +++ b/libs/ardour/ardour/session_configuration_vars.h @@ -63,5 +63,6 @@ CONFIG_VARIABLE (bool, show_midi_on_meterbridge, "show-midi-on-meterbridge", tru CONFIG_VARIABLE (bool, show_rec_on_meterbridge, "show-rec-on-meterbridge", true) CONFIG_VARIABLE (bool, show_mute_on_meterbridge, "show-mute-on-meterbridge", false) CONFIG_VARIABLE (bool, show_solo_on_meterbridge, "show-solo-on-meterbridge", false) +CONFIG_VARIABLE (bool, show_monitor_on_meterbridge, "show-monitor-on-meterbridge", false) CONFIG_VARIABLE (bool, show_name_on_meterbridge, "show-name-on-meterbridge", true) CONFIG_VARIABLE (uint32_t, meterbridge_label_height, "meterbridge-label-height", 0) From 65a62bf514e8adfa133053eed134d28a85d28fbf Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 10 Nov 2013 17:44:15 -0500 Subject: [PATCH 72/95] correct information on waf updates --- doc/updating_waf.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/updating_waf.txt b/doc/updating_waf.txt index 4030d0706b..622a0f6b6a 100644 --- a/doc/updating_waf.txt +++ b/doc/updating_waf.txt @@ -1,5 +1,5 @@ Download waf (http://code.google.com/p/waf/) -Download autowaf (http://svn.drobilla.net/autowaf) +autowaf.py is present in the tools directory of the Ardour source code. From within the waf source tree, run: From 2da67fb99f1e03f203343a5b7d86bc89cdd95198 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 11 Nov 2013 02:33:57 +0100 Subject: [PATCH 73/95] fix audio-clock sample entry, handle empty entry as NOOP --- gtk2_ardour/audio_clock.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gtk2_ardour/audio_clock.cc b/gtk2_ardour/audio_clock.cc index 6680e95b15..b24d22f1b9 100644 --- a/gtk2_ardour/audio_clock.cc +++ b/gtk2_ardour/audio_clock.cc @@ -620,6 +620,9 @@ AudioClock::end_edit (bool modify) break; case Frames: + if (edit_string.length() < 1) { + edit_string = pre_edit_string; + } break; } From 2eb79acefdecb75c27c9b3e7ae15cbf5e96bc5e5 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 17 Nov 2013 00:33:32 +0100 Subject: [PATCH 74/95] lv2: increase scratch buffer size to request port minimum size --- libs/ardour/lv2_plugin.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libs/ardour/lv2_plugin.cc b/libs/ardour/lv2_plugin.cc index f5dcc26410..da514f92e4 100644 --- a/libs/ardour/lv2_plugin.cc +++ b/libs/ardour/lv2_plugin.cc @@ -1508,7 +1508,7 @@ LV2Plugin::allocate_atom_event_buffers() return; } - DEBUG_TRACE(DEBUG::LV2, string_compose("allocate %1 atom_ev_buffers\n", total_atom_buffers)); + DEBUG_TRACE(DEBUG::LV2, string_compose("allocate %1 atom_ev_buffers of %d bytes\n", total_atom_buffers, minimumSize)); _atom_ev_buffers = (LV2_Evbuf**) malloc((total_atom_buffers + 1) * sizeof(LV2_Evbuf*)); for (int i = 0; i < total_atom_buffers; ++i ) { _atom_ev_buffers[i] = lv2_evbuf_new(minimumSize, LV2_EVBUF_ATOM, @@ -1681,6 +1681,9 @@ LV2Plugin::connect_and_run(BufferSet& bufs, } } else if (!valid) { // Nothing we understand or care about, connect to scratch + // see note for midi-buffer size above + scratch_bufs.ensure_lv2_bufsize((flags & PORT_INPUT), + 0, _port_minimumSize[port_index]); _ev_buffers[port_index] = scratch_bufs.get_lv2_midi( (flags & PORT_INPUT), 0, (flags & PORT_EVENT)); } From c1e8da2e60be702d8f48bc9d7d4d5c9e2f9813c9 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 19 Nov 2013 15:51:27 +0100 Subject: [PATCH 75/95] Distinguish Save-as and Snapshot dialog window --- gtk2_ardour/ardour_ui.cc | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index 010f7d35e5..2b6111f58a 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -2190,8 +2190,13 @@ ARDOUR_UI::snapshot_session (bool switch_to_it) prompter.set_name ("Prompter"); prompter.add_button (Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT); - prompter.set_title (_("Take Snapshot")); - prompter.set_prompt (_("Name of new snapshot")); + if (switch_to_it) { + prompter.set_title (_("Save as...")); + prompter.set_prompt (_("New session name")); + } else { + prompter.set_title (_("Take Snapshot")); + prompter.set_prompt (_("Name of new snapshot")); + } if (!switch_to_it) { char timebuf[128]; From 9a50b569309212925b3f08d9ac0a148f828b1389 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 20 Nov 2013 18:54:34 +0100 Subject: [PATCH 76/95] reset time-axis peak when meter-point changes - fixes #5771 --- gtk2_ardour/gain_meter.h | 1 + gtk2_ardour/route_time_axis.cc | 2 ++ 2 files changed, 3 insertions(+) diff --git a/gtk2_ardour/gain_meter.h b/gtk2_ardour/gain_meter.h index 8286cbeb95..b71469b4c6 100644 --- a/gtk2_ardour/gain_meter.h +++ b/gtk2_ardour/gain_meter.h @@ -101,6 +101,7 @@ class GainMeterBase : virtual public sigc::trackable, ARDOUR::SessionHandlePtr friend class MixerStrip; friend class MeterStrip; + friend class RouteTimeAxisView; boost::shared_ptr _route; boost::shared_ptr _meter; boost::shared_ptr _amp; diff --git a/gtk2_ardour/route_time_axis.cc b/gtk2_ardour/route_time_axis.cc index b0fec293cf..b777c30af4 100644 --- a/gtk2_ardour/route_time_axis.cc +++ b/gtk2_ardour/route_time_axis.cc @@ -2266,6 +2266,8 @@ RouteTimeAxisView::meter_changed () if (_route && !no_redraw) { request_redraw (); } + // reset peak when meter point changes + gm.reset_peak_display(); } void From 5cbd4ce759474944ef138a47d3a889ac9902ae03 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 22 Nov 2013 18:22:55 +0100 Subject: [PATCH 77/95] fix crash @ session-restore of plugins windows The question is: why is _owner not set [yet], when the window is restored. This rather smells like a race condition. --- gtk2_ardour/processor_box.cc | 2 +- libs/ardour/processor.cc | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/processor_box.cc b/gtk2_ardour/processor_box.cc index a22e991752..b549fd15ac 100644 --- a/gtk2_ardour/processor_box.cc +++ b/gtk2_ardour/processor_box.cc @@ -2598,7 +2598,7 @@ ProcessorBox::generate_processor_title (boost::shared_ptr pi) if (owner) { return string_compose(_("%1: %2 (by %3)"), owner->name(), pi->name(), maker); } else { - return string_compose(_("%2 (by %3)"), pi->name(), maker); + return string_compose(_("%1 (by %2)"), pi->name(), maker); } } diff --git a/libs/ardour/processor.cc b/libs/ardour/processor.cc index f9590bee11..d571f55688 100644 --- a/libs/ardour/processor.cc +++ b/libs/ardour/processor.cc @@ -63,6 +63,7 @@ Processor::Processor(Session& session, const string& name) , _display_to_user (true) , _pre_fader (false) , _ui_pointer (0) + , _owner (0) { } From af9ac37b6007a72a07a5027a4c98a563f76d3640 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 23 Nov 2013 16:48:26 +0100 Subject: [PATCH 78/95] fix for toolbar master-meter w/o master bus and/or detached toolbar --- gtk2_ardour/ardour_ui_dialogs.cc | 15 +++++++++++---- gtk2_ardour/ardour_ui_options.cc | 8 +++++--- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/gtk2_ardour/ardour_ui_dialogs.cc b/gtk2_ardour/ardour_ui_dialogs.cc index 2ad4cd3c92..0dd61778ae 100644 --- a/gtk2_ardour/ardour_ui_dialogs.cc +++ b/gtk2_ardour/ardour_ui_dialogs.cc @@ -193,7 +193,9 @@ ARDOUR_UI::set_session (Session *s) editor_meter_peak_display.hide(); } - if (_session && _session->master_out()) { + if (_session + && _session->master_out() + && _session->master_out()->n_outputs().n(DataType::AUDIO) > 0) { editor_meter = new LevelMeterHBox(_session); editor_meter->set_meter (_session->master_out()->shared_peak_meter().get()); editor_meter->clear_meters(); @@ -216,12 +218,17 @@ ARDOUR_UI::set_session (Session *s) editor_meter_peak_display.signal_button_release_event().connect (sigc::mem_fun(*this, &ARDOUR_UI::editor_meter_peak_button_release), false); if (Config->get_show_editor_meter()) { + transport_tearoff_hbox.pack_start (meter_box, false, false); + transport_tearoff_hbox.pack_start (editor_meter_peak_display, false, false); meter_box.show(); editor_meter_peak_display.show(); - } else { - meter_box.hide(); - editor_meter_peak_display.hide(); + } else if (meter_box.get_parent()) { + transport_tearoff_hbox.remove (meter_box); + transport_tearoff_hbox.remove (editor_meter_peak_display); } + } else if (meter_box.get_parent()) { + transport_tearoff_hbox.remove (meter_box); + transport_tearoff_hbox.remove (editor_meter_peak_display); } } diff --git a/gtk2_ardour/ardour_ui_options.cc b/gtk2_ardour/ardour_ui_options.cc index 0e28900450..c531f006e2 100644 --- a/gtk2_ardour/ardour_ui_options.cc +++ b/gtk2_ardour/ardour_ui_options.cc @@ -402,11 +402,13 @@ ARDOUR_UI::parameter_changed (std::string p) } else if (p == "show-editor-meter") { bool show = Config->get_show_editor_meter(); if (editor_meter && show) { + transport_tearoff_hbox.pack_start (meter_box, false, false); + transport_tearoff_hbox.pack_start (editor_meter_peak_display, false, false); meter_box.show(); editor_meter_peak_display.show(); - } else if (editor_meter && !show) { - meter_box.hide(); - editor_meter_peak_display.hide(); + } else if (editor_meter && !show && meter_box.get_parent()) { + transport_tearoff_hbox.remove (meter_box); + transport_tearoff_hbox.remove (editor_meter_peak_display); } } } From 52309c0c4fc107cdde9a99f2340fe4d8cf4ff382 Mon Sep 17 00:00:00 2001 From: Sakari Bergen Date: Sat, 23 Nov 2013 18:42:14 +0200 Subject: [PATCH 79/95] Fix invalid assertions in AudioGrapher SampleFormatConverter This fixes an export crash with e.g. 8-bit export --- .../src/general/sample_format_converter.cc | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/libs/audiographer/src/general/sample_format_converter.cc b/libs/audiographer/src/general/sample_format_converter.cc index ea70dc6094..5fe9a1185b 100644 --- a/libs/audiographer/src/general/sample_format_converter.cc +++ b/libs/audiographer/src/general/sample_format_converter.cc @@ -52,25 +52,24 @@ SampleFormatConverter::init (framecnt_t max_frames, int /* type */, int d template <> void -SampleFormatConverter::init (framecnt_t max_frames, int /*type*/, int data_width) +SampleFormatConverter::init (framecnt_t max_frames, int type, int data_width) { - if(throw_level (ThrowObject) && data_width < 24) { - throw Exception (*this, "Trying to use SampleFormatConverter for data widths < 24"); + // GDither is broken with GDither32bit if the dither depth is bigger than 24 + if(throw_level (ThrowObject) && data_width > 24) { + throw Exception (*this, "Trying to use SampleFormatConverter a data width > 24"); } - init_common (max_frames); - - // GDither is broken with GDither32bit if the dither depth - // is bigger than 24, so lets just use that... - dither = gdither_new (GDitherNone, channels, GDither32bit, 24); + dither = gdither_new ((GDitherType) type, channels, GDither32bit, data_width); } template <> void SampleFormatConverter::init (framecnt_t max_frames, int type, int data_width) { - if (throw_level (ThrowObject) && data_width != 16) { - throw Exception (*this, "Unsupported data width"); + if (throw_level (ThrowObject) && data_width > 16) { + throw Exception (*this, boost::str(boost::format + ("Data width (%1) too large for int16_t") + % data_width)); } init_common (max_frames); dither = gdither_new ((GDitherType) type, channels, GDither16bit, data_width); @@ -80,8 +79,10 @@ template <> void SampleFormatConverter::init (framecnt_t max_frames, int type, int data_width) { - if (throw_level (ThrowObject) && data_width != 8) { - throw Exception (*this, "Unsupported data width"); + if (throw_level (ThrowObject) && data_width > 8) { + throw Exception (*this, boost::str(boost::format + ("Data width (%1) too large for uint8_t") + % data_width)); } init_common (max_frames); dither = gdither_new ((GDitherType) type, channels, GDither8bit, data_width); From f1db14923e5d14331d1bf869d32862a2cf3460bb Mon Sep 17 00:00:00 2001 From: Sakari Bergen Date: Sat, 23 Nov 2013 19:11:31 +0200 Subject: [PATCH 80/95] Hande export initialization exceptions gracefully --- gtk2_ardour/export_dialog.cc | 15 ++++++++++----- gtk2_ardour/export_dialog.h | 2 +- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/gtk2_ardour/export_dialog.cc b/gtk2_ardour/export_dialog.cc index a64acd1680..1458747786 100644 --- a/gtk2_ardour/export_dialog.cc +++ b/gtk2_ardour/export_dialog.cc @@ -215,9 +215,9 @@ ExportDialog::init_components () } void -ExportDialog::notify_errors () +ExportDialog::notify_errors (bool force) { - if (status->errors()) { + if (force || status->errors()) { std::string txt = _("Export has been aborted due to an error!\nSee the Log for details."); Gtk::MessageDialog msg (txt, false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true); msg.run(); @@ -303,9 +303,14 @@ ExportDialog::show_conflicting_files () void ExportDialog::do_export () { - profile_manager->prepare_for_export (); - handler->do_export (); - show_progress (); + try { + profile_manager->prepare_for_export (); + handler->do_export (); + show_progress (); + } catch(std::exception & e) { + error << string_compose (_("Export initialization failed: %1"), e.what()) << endmsg; + notify_errors(true); + } } void diff --git a/gtk2_ardour/export_dialog.h b/gtk2_ardour/export_dialog.h index 52c53660d8..756a3e7b53 100644 --- a/gtk2_ardour/export_dialog.h +++ b/gtk2_ardour/export_dialog.h @@ -95,7 +95,7 @@ class ExportDialog : public ArdourDialog { void expanded_changed(); - void notify_errors (); + void notify_errors (bool force = false); void close_dialog (); void sync_with_manager (); From ac4d691fe9d45c7606e865bba07405f6476a1565 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 27 Nov 2013 12:44:23 -0500 Subject: [PATCH 81/95] remove unintended linkage between libmidipp and jack --- libs/midi++2/midi++/ipmidi_port.h | 2 -- libs/midi++2/midi++/types.h | 5 ++--- libs/midi++2/port.cc | 3 --- libs/midi++2/wscript | 5 ++--- 4 files changed, 4 insertions(+), 11 deletions(-) diff --git a/libs/midi++2/midi++/ipmidi_port.h b/libs/midi++2/midi++/ipmidi_port.h index c077170026..8d5cecdf11 100644 --- a/libs/midi++2/midi++/ipmidi_port.h +++ b/libs/midi++2/midi++/ipmidi_port.h @@ -41,8 +41,6 @@ #include -#include - #include "pbd/xml++.h" #include "pbd/crossthread.h" #include "pbd/signals.h" diff --git a/libs/midi++2/midi++/types.h b/libs/midi++2/midi++/types.h index 185e1e6f3f..598bb8ab5a 100644 --- a/libs/midi++2/midi++/types.h +++ b/libs/midi++2/midi++/types.h @@ -20,7 +20,6 @@ #ifndef __midi_types_h__ #define __midi_types_h__ -#include #include namespace MIDI { @@ -32,8 +31,8 @@ namespace MIDI { typedef uint32_t timestamp_t; /** XXX: dupes from libardour */ - typedef int64_t framecnt_t; - typedef jack_nframes_t pframes_t; + typedef int64_t framecnt_t; + typedef uint32_t pframes_t; enum eventType { none = 0x0, diff --git a/libs/midi++2/port.cc b/libs/midi++2/port.cc index 1480202867..90ec260eae 100644 --- a/libs/midi++2/port.cc +++ b/libs/midi++2/port.cc @@ -22,9 +22,6 @@ #include #include -#include -#include - #include "pbd/xml++.h" #include "pbd/error.h" #include "pbd/failed_constructor.h" diff --git a/libs/midi++2/wscript b/libs/midi++2/wscript index 0abbab7d40..000cc39e5f 100644 --- a/libs/midi++2/wscript +++ b/libs/midi++2/wscript @@ -50,7 +50,6 @@ def configure(conf): 'midipp', MAJOR, MINOR, MICRO) autowaf.configure(conf) autowaf.check_pkg(conf, 'cppunit', uselib_store='CPPUNIT', atleast_version='1.12.0', mandatory=False) - autowaf.check_pkg(conf, 'jack', uselib_store='JACK', atleast_version='0.118.2') autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML') autowaf.check_pkg(conf, 'sigc++-2.0', uselib_store='SIGCPP', atleast_version='2.0') @@ -64,13 +63,13 @@ def build(bld): obj = bld.shlib(features = 'cxx cxxshlib', source=libmidi_sources) else: obj = bld.stlib(features = 'cxx cxxstlib', source=libmidi_sources) - obj.cxxflags = [ '-fPIC', '-DWITH_JACK_MIDI' ] + obj.cxxflags = [ '-fPIC' ] # everybody loves JACK obj.export_includes = ['.'] obj.includes = ['.', '../surfaces/control_protocol', '../ardour' ] obj.name = 'libmidipp' obj.target = 'midipp' - obj.uselib = 'GLIBMM SIGCPP XML JACK OSX' + obj.uselib = 'GLIBMM SIGCPP XML OSX' obj.use = 'libpbd libevoral libtimecode' obj.vnum = LIBMIDIPP_LIB_VERSION obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3') From 4a71e6f28fed69ce8f82e98430180fdbf2da1684 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 27 Nov 2013 13:53:58 -0500 Subject: [PATCH 82/95] add missing parts of previous commit re: libmidi++ and JACK (files not saved in emacs, sigh) --- libs/midi++2/ipmidi_port.cc | 3 --- libs/midi++2/midi++/mmc.h | 1 - libs/midi++2/midi++/port.h | 2 -- 3 files changed, 6 deletions(-) diff --git a/libs/midi++2/ipmidi_port.cc b/libs/midi++2/ipmidi_port.cc index c90a3dbe6f..c4544c237b 100644 --- a/libs/midi++2/ipmidi_port.cc +++ b/libs/midi++2/ipmidi_port.cc @@ -36,9 +36,6 @@ typedef int socklen_t; inline void closesocket(int s) { ::close(s); } #endif -#include -#include - #include "pbd/xml++.h" #include "pbd/error.h" #include "pbd/failed_constructor.h" diff --git a/libs/midi++2/midi++/mmc.h b/libs/midi++2/midi++/mmc.h index 01f8bf3b8a..0f2a69d5d7 100644 --- a/libs/midi++2/midi++/mmc.h +++ b/libs/midi++2/midi++/mmc.h @@ -20,7 +20,6 @@ #ifndef __midipp_mmc_h_h__ #define __midipp_mmc_h_h__ -#include #include "timecode/time.h" #include "pbd/signals.h" diff --git a/libs/midi++2/midi++/port.h b/libs/midi++2/midi++/port.h index 6d778beab2..4e63d41141 100644 --- a/libs/midi++2/midi++/port.h +++ b/libs/midi++2/midi++/port.h @@ -22,8 +22,6 @@ #include #include -#include - #include "pbd/xml++.h" #include "pbd/crossthread.h" #include "pbd/signals.h" From 4d0caa6ddd60e78bea19ed9e23031868d16d44f0 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 27 Nov 2013 14:08:22 -0500 Subject: [PATCH 83/95] add yet more missing parts of previous commit re: libmidi++ and JACK (files not saved in emacs, sigh) --- libs/midi++2/midi++/port.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/midi++2/midi++/port.h b/libs/midi++2/midi++/port.h index 4e63d41141..f16743337c 100644 --- a/libs/midi++2/midi++/port.h +++ b/libs/midi++2/midi++/port.h @@ -22,6 +22,10 @@ #include #include +#include /* XXX ... desirable to get rid of this but needed for + * now due to use of JackPortIsXXXX + */ + #include "pbd/xml++.h" #include "pbd/crossthread.h" #include "pbd/signals.h" From dc4a984cd63d6264ecbd24e414a097420367f684 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 27 Nov 2013 14:27:27 -0500 Subject: [PATCH 84/95] move AudioBackend::_start() into protected, and expand a bit on documenting ::start() vs ::_start() --- libs/ardour/ardour/audio_backend.h | 34 ++++++++++++++++---------- libs/backends/jack/jack_audiobackend.h | 4 ++- 2 files changed, 24 insertions(+), 14 deletions(-) diff --git a/libs/ardour/ardour/audio_backend.h b/libs/ardour/ardour/audio_backend.h index 26ced33885..17d7cd4010 100644 --- a/libs/ardour/ardour/audio_backend.h +++ b/libs/ardour/ardour/audio_backend.h @@ -282,17 +282,7 @@ class AudioBackend : public PortEngine { virtual std::string midi_option () const = 0; /* State Control */ - - /* non-virtual method to avoid possible overrides of default - * parameters. See Scott Meyers or other books on C++ to - * understand this pattern, or possibly just this: - * - * http://stackoverflow.com/questions/12139786/good-pratice-default-arguments-for-pure-virtual-method - */ - int start (bool for_latency_measurement=false) { - return _start (for_latency_measurement); - } - + /** Start using the device named in the most recent call * to set_device(), with the parameters set by various * the most recent calls to set_sample_rate() etc. etc. @@ -308,8 +298,24 @@ class AudioBackend : public PortEngine { * any existing systemic latency settings. * * Return zero if successful, negative values otherwise. - */ - virtual int _start (bool for_latency_measurement) = 0; + * + * + * + * + * Why is this non-virtual but ::_start() is virtual ? + * Virtual methods with default parameters create possible ambiguity + * because a derived class may implement the same method with a different + * type or value of default parameter. + * + * So we make this non-virtual method to avoid possible overrides of + * default parameters. See Scott Meyers or other books on C++ to understand + * this pattern, or possibly just this: + * + * http://stackoverflow.com/questions/12139786/good-pratice-default-arguments-for-pure-virtual-method + */ + int start (bool for_latency_measurement=false) { + return _start (for_latency_measurement); + } /** Stop using the device currently in use. * @@ -481,6 +487,8 @@ class AudioBackend : public PortEngine { protected: AudioEngine& engine; + + virtual int _start (bool for_latency_measurement) = 0; }; struct AudioBackendInfo { diff --git a/libs/backends/jack/jack_audiobackend.h b/libs/backends/jack/jack_audiobackend.h index 2c77e6112b..299bb1cefd 100644 --- a/libs/backends/jack/jack_audiobackend.h +++ b/libs/backends/jack/jack_audiobackend.h @@ -89,7 +89,6 @@ class JACKAudioBackend : public AudioBackend { std::string control_app_name () const; void launch_control_app (); - int _start (bool for_latency_measurement); int stop (); int freewheel (bool); @@ -272,6 +271,9 @@ class JACKAudioBackend : public AudioBackend { */ JACKSession* _session; + + protected: + int _start (bool for_latency_measurement); }; } // namespace From 56716a1f28b2341f7fd360b39b6eae66497bc512 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 27 Nov 2013 15:24:24 -0500 Subject: [PATCH 85/95] add error check to call to PortManager::reestablish_ports --- libs/backends/jack/jack_audiobackend.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libs/backends/jack/jack_audiobackend.cc b/libs/backends/jack/jack_audiobackend.cc index 86e5b9d54c..332b6eec85 100644 --- a/libs/backends/jack/jack_audiobackend.cc +++ b/libs/backends/jack/jack_audiobackend.cc @@ -547,8 +547,11 @@ JACKAudioBackend::_start (bool for_latency_measurement) /* Now that we have buffer size and sample rate established, the engine can go ahead and do its stuff */ - - engine.reestablish_ports (); + + if (engine.reestablish_ports ()) { + error << _("Could not re-establish ports after connecting to JACK") << endmsg; + return -1; + } if (!jack_port_type_get_buffer_size) { warning << _("This version of JACK is old - you should upgrade to a newer version that supports jack_port_type_get_buffer_size()") << endmsg; From 611d93830a55bd7938561601acdaaecf4e3a9169 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 27 Nov 2013 15:25:10 -0500 Subject: [PATCH 86/95] add 0.5 second sleep after closing JACK connection so that next startup/connect is likely to work (allowing JACK time to shutdown). Ugh --- libs/backends/jack/jack_connection.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libs/backends/jack/jack_connection.cc b/libs/backends/jack/jack_connection.cc index b3d7fcecc4..09e6c9d6e7 100644 --- a/libs/backends/jack/jack_connection.cc +++ b/libs/backends/jack/jack_connection.cc @@ -143,7 +143,12 @@ JackConnection::close () if (_priv_jack) { int ret = jack_client_close (_priv_jack); _jack = 0; + + /* If we started JACK, it will be closing down */ + usleep (500000); + Disconnected (""); /* EMIT SIGNAL */ + return ret; } From 4c0a274b43687e4513c8c24f92dd581b064c2c4c Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 27 Nov 2013 17:41:22 -0500 Subject: [PATCH 87/95] do not push new state to backend from audio/MIDI setup until OK or Apply are clicked (i.e. do not do this when device is changed) --- gtk2_ardour/engine_dialog.cc | 12 ------------ gtk2_ardour/engine_dialog.h | 1 - 2 files changed, 13 deletions(-) diff --git a/gtk2_ardour/engine_dialog.cc b/gtk2_ardour/engine_dialog.cc index 37c29f4187..d438ff8327 100644 --- a/gtk2_ardour/engine_dialog.cc +++ b/gtk2_ardour/engine_dialog.cc @@ -87,7 +87,6 @@ EngineControl::EngineControl () , midi_refresh_button (_("Refresh list")) , ignore_changes (0) , _desired_sample_rate (0) - , no_push (true) , started_at_least_once (false) { using namespace Notebook_Helpers; @@ -290,8 +289,6 @@ EngineControl::EngineControl () output_channels.signal_changed().connect (sigc::mem_fun (*this, &EngineControl::parameter_changed)); notebook.signal_switch_page().connect (sigc::mem_fun (*this, &EngineControl::on_switch_page)); - - no_push = false; } void @@ -874,10 +871,6 @@ EngineControl::EngineControl () /* pick up any saved state for this device */ maybe_display_saved_state (); - - /* and push it to the backend */ - - push_state_to_backend (false); } string @@ -1207,14 +1200,9 @@ EngineControl::EngineControl () } } - int EngineControl::push_state_to_backend (bool start) { - if (no_push) { - return 0; - } - boost::shared_ptr backend = ARDOUR::AudioEngine::instance()->current_backend(); if (!backend) { diff --git a/gtk2_ardour/engine_dialog.h b/gtk2_ardour/engine_dialog.h index 31648b6dbb..6d10eb76ac 100644 --- a/gtk2_ardour/engine_dialog.h +++ b/gtk2_ardour/engine_dialog.h @@ -114,7 +114,6 @@ class EngineControl : public ArdourDialog, public PBD::ScopedConnectionList { uint32_t ignore_changes; uint32_t _desired_sample_rate; - bool no_push; bool started_at_least_once; void driver_changed (); From 1190f1d0e008e8097b5ad86ea01ecba1a8c4832f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 27 Nov 2013 17:41:54 -0500 Subject: [PATCH 88/95] make JACK backend return the right set of values when asked for buffer sizes or sample rate of a device other than the one in use --- libs/backends/jack/jack_audiobackend.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/backends/jack/jack_audiobackend.cc b/libs/backends/jack/jack_audiobackend.cc index 332b6eec85..8df97a1e30 100644 --- a/libs/backends/jack/jack_audiobackend.cc +++ b/libs/backends/jack/jack_audiobackend.cc @@ -155,11 +155,11 @@ JACKAudioBackend::enumerate_devices () const } vector -JACKAudioBackend::available_sample_rates (const string& /*device*/) const +JACKAudioBackend::available_sample_rates (const string& device) const { vector f; - if (available()) { + if (device == _target_device && available()) { f.push_back (sample_rate()); return f; } @@ -183,11 +183,11 @@ JACKAudioBackend::available_sample_rates (const string& /*device*/) const } vector -JACKAudioBackend::available_buffer_sizes (const string& /*device*/) const +JACKAudioBackend::available_buffer_sizes (const string& device) const { vector s; - - if (available()) { + + if (device == _target_device && available()) { s.push_back (buffer_size()); return s; } From 074b0c4dca635227bb801f433189e66271b6abce Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 29 Nov 2013 22:24:37 -0500 Subject: [PATCH 89/95] add explicit linkage to libtimecode --- gtk2_ardour/wscript | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/gtk2_ardour/wscript b/gtk2_ardour/wscript index 3ca90744c7..b657e5fcd5 100644 --- a/gtk2_ardour/wscript +++ b/gtk2_ardour/wscript @@ -378,12 +378,13 @@ def build(bld): ../libs/fst/vstwin.c ../vst/winmain.c ''' - obj.uselib = 'ALSA' obj.use = [ 'libpbd', 'libmidipp', 'libtaglib', 'libardour', 'libardour_cp', + 'libtimecode', + 'libmidipp', 'libgtk2_ardour', 'libgtkmm2ext', 'libtaglib'] @@ -406,20 +407,22 @@ def build(bld): obj.source = gtk2_ardour_sources obj.target = 'ardour-' + bld.env['VERSION'] obj.includes = ['.'] + obj.use = [ 'libpbd', + 'libardour', + 'libardour_cp', + 'libtimecode', + 'libmidipp', + 'libgtk2_ardour', + 'libgtkmm2ext', + ] # continue with setup of obj, which could be a shared library # or an executable. obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3') - - obj.uselib = 'UUID FLAC FONTCONFIG GLIBMM GTHREAD GTK OGG ALSA CURL DL' + obj.uselib = 'UUID FLAC FONTCONFIG GLIBMM GTHREAD GTK OGG CURL DL' obj.uselib += ' GTKMM GNOMECANVASMM GNOMECANVAS FFTW3F' obj.uselib += ' AUDIOUNITS OSX GTKOSX LO ' - obj.use = [ 'libpbd', - 'libmidipp', - 'ardour', - 'libardour_cp', - 'libgtkmm2ext'] if bld.is_defined('USE_EXTERNAL_LIBS'): obj.uselib += ' TAGLIB' else: From 146734526cbffc461a546feb32662495453d2296 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 29 Nov 2013 22:24:59 -0500 Subject: [PATCH 90/95] fix indentation --- libs/ardour/ardour/audio_buffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/ardour/audio_buffer.h b/libs/ardour/ardour/audio_buffer.h index 42aba607f9..054a1f7b45 100644 --- a/libs/ardour/ardour/audio_buffer.h +++ b/libs/ardour/ardour/audio_buffer.h @@ -207,7 +207,7 @@ public: return _data + offset; } - bool check_silence (pframes_t, pframes_t&) const; + bool check_silence (pframes_t, pframes_t&) const; void prepare () { _written = false; _silent = false; } bool written() const { return _written; } From 0c4457fa8361d7678b09ec5911917750e7ade67e Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 29 Nov 2013 22:25:36 -0500 Subject: [PATCH 91/95] drop capacity argument from Buffer constructor, since the abstract class cannot (and should not) do anything with it --- libs/ardour/ardour/buffer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/ardour/buffer.h b/libs/ardour/ardour/buffer.h index cbb92e7c4a..4570a7a663 100644 --- a/libs/ardour/ardour/buffer.h +++ b/libs/ardour/ardour/buffer.h @@ -80,8 +80,8 @@ public: virtual void merge_from (const Buffer& src, framecnt_t len, framecnt_t dst_offset = 0, framecnt_t src_offset = 0) = 0; protected: - Buffer(DataType type, size_t capacity) - : _type(type), _capacity(capacity), _size(0), _silent(true) + Buffer(DataType type) + : _type(type), _capacity(0), _size(0), _silent (true) {} DataType _type; From d1cc7e5a50e2144d7aea01bc5eceed6657513c1b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 29 Nov 2013 22:26:33 -0500 Subject: [PATCH 92/95] fix up a bunch of confusion regarding the size/capacity/allocation of audio & midi buffers --- libs/ardour/audio_buffer.cc | 28 ++++++++++++++++++---------- libs/ardour/audio_port.cc | 9 +++------ libs/ardour/buffer_set.cc | 4 ++-- libs/ardour/midi_buffer.cc | 21 +++++++++++++-------- libs/ardour/thread_buffers.cc | 14 ++++++++------ 5 files changed, 44 insertions(+), 32 deletions(-) diff --git a/libs/ardour/audio_buffer.cc b/libs/ardour/audio_buffer.cc index 1fd0337dd1..a36ad81c2a 100644 --- a/libs/ardour/audio_buffer.cc +++ b/libs/ardour/audio_buffer.cc @@ -28,15 +28,15 @@ using namespace PBD; using namespace ARDOUR; AudioBuffer::AudioBuffer(size_t capacity) - : Buffer(DataType::AUDIO, capacity) + : Buffer (DataType::AUDIO) , _owns_data (false) , _data (0) { - if (_capacity > 0) { + if (capacity) { _owns_data = true; // prevent resize() from gagging - resize (_capacity); + resize (capacity); _silent = false; // force silence on the intial buffer state - silence (_capacity); + clear (); } } @@ -50,21 +50,29 @@ void AudioBuffer::resize (size_t size) { if (!_owns_data) { + /* XXX how the hell is this enforced? */ + _capacity = size; return; } - if (size < _capacity) { - _size = size; + if (_data && size < _capacity) { + /* buffer is already large enough */ + + if (size < _size) { + /* truncate */ + _size = size; + } + return; } free (_data); - _capacity = size; - _size = size; - _silent = false; + cache_aligned_malloc ((void**) &_data, sizeof (Sample) * size); - cache_aligned_malloc ((void**) &_data, sizeof (Sample) * _capacity); + _capacity = size; + _size = 0; + _silent = false; } bool diff --git a/libs/ardour/audio_port.cc b/libs/ardour/audio_port.cc index 6a86360b69..2fecbf9392 100644 --- a/libs/ardour/audio_port.cc +++ b/libs/ardour/audio_port.cc @@ -56,14 +56,11 @@ AudioPort::cycle_start (pframes_t nframes) } void -AudioPort::cycle_end (pframes_t) +AudioPort::cycle_end (pframes_t nframes) { if (sends_output() && !_buffer->written()) { - /* we can't use nframes here because the current buffer capacity may - be shorter than the full buffer size if we split the cycle. - */ - if (_buffer->capacity () > 0) { - _buffer->silence (_buffer->capacity()); + if (_buffer->capacity() >= nframes) { + _buffer->silence (nframes); } } } diff --git a/libs/ardour/buffer_set.cc b/libs/ardour/buffer_set.cc index e67aee6be7..227d7a1e95 100644 --- a/libs/ardour/buffer_set.cc +++ b/libs/ardour/buffer_set.cc @@ -167,7 +167,7 @@ BufferSet::ensure_buffers(DataType type, size_t num_buffers, size_t buffer_capac // If there's not enough or they're too small, just nuke the whole thing and // rebuild it (so I'm lazy..) if (bufs.size() < num_buffers - || (bufs.size() > 0 && bufs[0]->capacity() < buffer_capacity)) { + || (bufs.size() > 0 && bufs[0]->capacity() < buffer_capacity)) { // Nuke it for (BufferVec::iterator i = bufs.begin(); i != bufs.end(); ++i) { @@ -179,7 +179,7 @@ BufferSet::ensure_buffers(DataType type, size_t num_buffers, size_t buffer_capac for (size_t i = 0; i < num_buffers; ++i) { bufs.push_back(Buffer::create(type, buffer_capacity)); } - + _available.set(type, num_buffers); _count.set (type, num_buffers); } diff --git a/libs/ardour/midi_buffer.cc b/libs/ardour/midi_buffer.cc index d75b861ea1..1a6cb7fa26 100644 --- a/libs/ardour/midi_buffer.cc +++ b/libs/ardour/midi_buffer.cc @@ -33,12 +33,12 @@ using namespace PBD; // FIXME: mirroring for MIDI buffers? MidiBuffer::MidiBuffer(size_t capacity) - : Buffer(DataType::MIDI, capacity) - , _data(0) + : Buffer (DataType::MIDI) + , _data (0) { if (capacity) { - resize(_capacity); - silence(_capacity); + resize (capacity); + silence (capacity); } } @@ -50,17 +50,22 @@ MidiBuffer::~MidiBuffer() void MidiBuffer::resize(size_t size) { - assert(size > 0); + if (_data && size < _capacity) { + + if (_size < size) { + /* truncate */ + _size = size; + } - if (size < _capacity) { return; } - free(_data); + free (_data); + + cache_aligned_malloc ((void**) &_data, size); _size = 0; _capacity = size; - cache_aligned_malloc ((void**) &_data, _capacity); assert(_data); } diff --git a/libs/ardour/thread_buffers.cc b/libs/ardour/thread_buffers.cc index fd3160bb15..e469187ce9 100644 --- a/libs/ardour/thread_buffers.cc +++ b/libs/ardour/thread_buffers.cc @@ -60,7 +60,7 @@ ThreadBuffers::ensure_buffers (ChanCount howmany) for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) { size_t count = std::max (scratch_buffers->available().get(*t), howmany.get(*t)); - size_t size = _engine->raw_buffer_size (*t); + size_t size = _engine->raw_buffer_size (*t) / sizeof (Sample); scratch_buffers->ensure_buffers (*t, count, size); mix_buffers->ensure_buffers (*t, count, size); @@ -68,12 +68,14 @@ ThreadBuffers::ensure_buffers (ChanCount howmany) route_buffers->ensure_buffers (*t, count, size); } - delete [] gain_automation_buffer; - gain_automation_buffer = new gain_t[_engine->raw_buffer_size (DataType::AUDIO)]; - delete [] send_gain_automation_buffer; - send_gain_automation_buffer = new gain_t[_engine->raw_buffer_size (DataType::AUDIO)]; + size_t audio_buffer_size = _engine->raw_buffer_size (DataType::AUDIO) / sizeof (Sample); - allocate_pan_automation_buffers (_engine->raw_buffer_size (DataType::AUDIO), howmany.n_audio(), false); + delete [] gain_automation_buffer; + gain_automation_buffer = new gain_t[audio_buffer_size]; + delete [] send_gain_automation_buffer; + send_gain_automation_buffer = new gain_t[audio_buffer_size]; + + allocate_pan_automation_buffers (audio_buffer_size, howmany.n_audio(), false); } void From c19f9f8a479ee9d68f33b33a605ec64068ffe25f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 1 Dec 2013 12:18:57 -0500 Subject: [PATCH 93/95] fix continuous send of MIDI start/position/stop messages introduced by mistake --- libs/ardour/ticker.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/ticker.cc b/libs/ardour/ticker.cc index 9a29df2641..3cdebf4111 100644 --- a/libs/ardour/ticker.cc +++ b/libs/ardour/ticker.cc @@ -240,7 +240,7 @@ MidiClockTicker::tick (const framepos_t& /* transport_frame */, pframes_t nframe /* Varispeed not supported */ } - _send_pos = true; + _send_pos = false; } if (_send_state) { From 76ea055b857ba4e24641bbb641280776fdd68b4c Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 2 Dec 2013 23:33:33 -0500 Subject: [PATCH 94/95] don't run MIDI clock "tick" if session is silent (e.g. due to a locate) --- libs/ardour/session_process.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session_process.cc b/libs/ardour/session_process.cc index 3c46a2e0a6..18dfbf2f2e 100644 --- a/libs/ardour/session_process.cc +++ b/libs/ardour/session_process.cc @@ -83,7 +83,7 @@ Session::process (pframes_t nframes) */ try { - if (!_engine.freewheeling() && Config->get_send_midi_clock() && transport_speed() == 1.0f && midi_clock->has_midi_port()) { + if (!_silent && !_engine.freewheeling() && Config->get_send_midi_clock() && (transport_speed() == 1.0f || transport_speed() == 0.0f) && midi_clock->has_midi_port()) { midi_clock->tick (transport_at_start, nframes); } } catch (...) { From ae6b0b9f1ab02ab949eaf741b98e69bdab487e92 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 2 Dec 2013 23:34:12 -0500 Subject: [PATCH 95/95] minor tweaks to MIDI clock support, including delivery of position events/messages when stopped --- libs/ardour/ticker.cc | 144 ++++++++++++++++++++++-------------------- 1 file changed, 76 insertions(+), 68 deletions(-) diff --git a/libs/ardour/ticker.cc b/libs/ardour/ticker.cc index 3cdebf4111..9a2cff7b23 100644 --- a/libs/ardour/ticker.cc +++ b/libs/ardour/ticker.cc @@ -38,58 +38,66 @@ class MidiClockTicker::Position : public Timecode::BBT_Time { public: - Position() : speed(0.0f), frame(0) { } - ~Position() { } + Position() : speed(0.0f), frame(0) { } + ~Position() { } + + /** Sync timing information taken from the given Session + * @return True if timings differed + */ - /** Sync timing information taken from the given Session - @return True if timings differed */ - bool sync (Session* s) { + bool sync (Session* s) { - bool didit = false; + bool changed = false; + + double sp = s->transport_speed(); + framecnt_t fr = s->transport_frame(); + + if (speed != sp) { + speed = sp; + changed = true; + } - double sp = s->transport_speed(); - framecnt_t fr = s->transport_frame(); + if (frame != fr) { + frame = fr; + changed = true; + } - if (speed != sp) { - speed = sp; - didit = true; - } + /* Midi beats and clocks always gets updated for now */ - if (frame != fr) { - frame = fr; - didit = true; - } + s->bbt_time (this->frame, *this); - /* Midi beats and clocks always gets updated for now */ + const TempoMap& tempo = s->tempo_map(); - s->bbt_time (this->frame, *this); + const double divisions = tempo.meter_at(frame).divisions_per_bar(); + const double divisor = tempo.meter_at(frame).note_divisor(); + const double qnote_scale = divisor * 0.25f; + double mb; - const TempoMap& tempo = s->tempo_map(); + /** Midi Beats in terms of Song Position Pointer is equivalent to total + * sixteenth notes at 'time' + */ - const double divisions = tempo.meter_at(frame).divisions_per_bar(); - const double divisor = tempo.meter_at(frame).note_divisor(); - const double qnote_scale = divisor * 0.25f; + mb = (((bars - 1) * divisions) + beats - 1); + mb += (double)ticks / (double)Position::ticks_per_beat * qnote_scale; + mb *= 16.0f / divisor; - /** Midi Beats in terms of Song Position Pointer is equivalent to total - sixteenth notes at 'time' */ + if (mb != midi_beats) { + midi_beats = mb; + midi_clocks = midi_beats * 6.0f; + changed = true; + } - midi_beats = (((bars - 1) * divisions) + beats - 1); - midi_beats += (double)ticks / (double)Position::ticks_per_beat * qnote_scale; - midi_beats *= 16.0f / divisor; + return changed; + } - midi_clocks = midi_beats * 6.0f; - - return didit; - } - - double speed; - framecnt_t frame; - double midi_beats; - double midi_clocks; - - void print (std::ostream& s) { - s << "frames: " << frame << " midi beats: " << midi_beats << " speed: " << speed; - } + double speed; + framecnt_t frame; + double midi_beats; + double midi_clocks; + + void print (std::ostream& s) { + s << "frames: " << frame << " midi beats: " << midi_beats << " speed: " << speed; + } }; @@ -127,7 +135,7 @@ MidiClockTicker::session_located() { DEBUG_TRACE (DEBUG::MidiClock, string_compose ("Session Located: %1, speed: %2\n", _session->transport_frame(), _session->transport_speed())); - if (0 == _session || ! _pos->sync (_session)) { + if (!_session || !_pos->sync (_session)) { return; } @@ -212,30 +220,22 @@ MidiClockTicker::transport_looped() void MidiClockTicker::tick (const framepos_t& /* transport_frame */, pframes_t nframes) { - if (!Config->get_send_midi_clock() || _session == 0 || _session->transport_speed() != 1.0f || _midi_port == 0) { + if (!Config->get_send_midi_clock() || _session == 0 || _midi_port == 0) { return; } if (_send_pos) { if (_pos->speed == 0.0f) { - uint32_t where = llrint (_pos->midi_beats); - send_position_event (where, 0, nframes); + send_position_event (llrint (_pos->midi_beats), 0, nframes); } else if (_pos->speed == 1.0f) { -#if 1 - /* Experimental. To really do this and have accuracy, the - stop/locate/continue sequence would need queued to send immediately - before the next midi clock. */ - send_stop_event (0, nframes); if (_pos->frame == 0) { send_start_event (0, nframes); } else { - uint32_t where = llrint (_pos->midi_beats); - send_position_event (where, 0, nframes); + send_position_event (llrint (_pos->midi_beats), 0, nframes); send_continue_event (0, nframes); } -#endif } else { /* Varispeed not supported */ } @@ -243,6 +243,7 @@ MidiClockTicker::tick (const framepos_t& /* transport_frame */, pframes_t nframe _send_pos = false; } + if (_send_state) { if (_pos->speed == 1.0f) { if (_session->get_play_loop()) { @@ -270,6 +271,10 @@ MidiClockTicker::tick (const framepos_t& /* transport_frame */, pframes_t nframe _send_state = false; } + if (_session->transport_speed() != 1.0f) { + /* no varispeed support and nothing to do after this if stopped */ + return; + } const framepos_t end = _pos->frame + nframes; double iter = _last_tick; @@ -317,11 +322,12 @@ MidiClockTicker::send_midi_clock_event (pframes_t offset, pframes_t nframes) return; } - DEBUG_TRACE (DEBUG::MidiClock, string_compose ("Tick with offset %1\n", offset)); + static uint8_t msg = MIDI_CMD_COMMON_CLOCK; - static uint8_t tick_byte = { MIDI_CMD_COMMON_CLOCK }; MidiBuffer& mb (_midi_port->get_midi_buffer (nframes)); - mb.push_back (offset, 1, &tick_byte); + mb.push_back (offset, 1, &msg); + + DEBUG_TRACE (DEBUG::MidiClock, string_compose ("Tick with offset %1\n", offset)); } void @@ -331,11 +337,11 @@ MidiClockTicker::send_start_event (pframes_t offset, pframes_t nframes) return; } - DEBUG_TRACE (DEBUG::MidiClock, string_compose ("Start %1\n", _last_tick)); - - static uint8_t tick_byte = { MIDI_CMD_COMMON_START }; + static uint8_t msg = { MIDI_CMD_COMMON_START }; MidiBuffer& mb (_midi_port->get_midi_buffer (nframes)); - mb.push_back (offset, 1, &tick_byte); + mb.push_back (offset, 1, &msg); + + DEBUG_TRACE (DEBUG::MidiClock, string_compose ("Start %1\n", _last_tick)); } void @@ -345,11 +351,11 @@ MidiClockTicker::send_continue_event (pframes_t offset, pframes_t nframes) return; } - DEBUG_TRACE (DEBUG::MidiClock, string_compose ("Continue %1\n", _last_tick)); - - static uint8_t tick_byte = { MIDI_CMD_COMMON_CONTINUE }; + static uint8_t msg = { MIDI_CMD_COMMON_CONTINUE }; MidiBuffer& mb (_midi_port->get_midi_buffer (nframes)); - mb.push_back (offset, 1, &tick_byte); + mb.push_back (offset, 1, &msg); + + DEBUG_TRACE (DEBUG::MidiClock, string_compose ("Continue %1\n", _last_tick)); } void @@ -359,11 +365,11 @@ MidiClockTicker::send_stop_event (pframes_t offset, pframes_t nframes) return; } - DEBUG_TRACE (DEBUG::MidiClock, string_compose ("Stop %1\n", _last_tick)); - - static uint8_t tick_byte = { MIDI_CMD_COMMON_STOP }; + static uint8_t msg = MIDI_CMD_COMMON_STOP; MidiBuffer& mb (_midi_port->get_midi_buffer (nframes)); - mb.push_back (offset, 1, &tick_byte); + mb.push_back (offset, 1, &msg); + + DEBUG_TRACE (DEBUG::MidiClock, string_compose ("Stop %1\n", _last_tick)); } void @@ -387,5 +393,7 @@ MidiClockTicker::send_position_event (uint32_t midi_beats, pframes_t offset, pfr MidiBuffer& mb (_midi_port->get_midi_buffer (nframes)); mb.push_back (offset, 3, &msg[0]); - DEBUG_TRACE (DEBUG::MidiClock, string_compose ("Song Position Sent: %1\n", midi_beats)); + DEBUG_TRACE (DEBUG::MidiClock, string_compose ("Song Position Sent: %1 to %2 (events now %3, buf = %4)\n", midi_beats, _midi_port->name(), + mb.size(), &mb)); + }