From dba664d4f00955b12a6cbdc2cc2aba86ead231fd Mon Sep 17 00:00:00 2001 From: waker Date: Sun, 7 Oct 2012 13:57:31 +0200 Subject: use abstract socket name by default, to fix bug #562; --disable-abstract-socket restores the old behavior, which is useful for debugging --- configure.ac | 13 ++++++++++--- main.c | 10 +++------- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/configure.ac b/configure.ac index f880c5e6..890a6a80 100644 --- a/configure.ac +++ b/configure.ac @@ -111,12 +111,18 @@ AC_ARG_ENABLE(psf, [AS_HELP_STRING([--enable-psf ], [build AOSDK-based AC_ARG_ENABLE(mono2stereo, [AS_HELP_STRING([--enable-mono2stereo ], [build mono2stereo DSP plugin (default: auto)])], [enable_mono2stereo=$enableval], [enable_mono2stereo=yes]) AC_ARG_ENABLE(shellexecui, [AS_HELP_STRING([--enable-shellexecui ], [build shellexec GTK UI plugin (default: auto)])], [enable_shellexecui=$enableval], [enable_shellexecui=yes]) AC_ARG_ENABLE(alac, [AS_HELP_STRING([--enable-alac ], [build ALAC plugin (default: auto)])], [enable_alac=$enableval], [enable_alac=yes]) +AC_ARG_ENABLE(abstract_socket, [AS_HELP_STRING([--enable-abstract-socket ], [use abstract socket (default: enabled)])], [enable_alac=$enableval], [enable_abstract_socket=yes]) if test "x$enable_staticlink" != "xno" ; then AC_DEFINE_UNQUOTED([STATICLINK], [1], [Define if building static version]) STATICLINK=yes fi +if test "x$enable_abstract_socket" != "xno" ; then + AC_DEFINE_UNQUOTED([USE_ABSTRACT_SOCKET_NAME], [1], [Define to use abstract socket name, without file]) + USE_ABSTRACT_SOCKET_NAME=yes +fi + dnl check for yasm AC_CHECK_PROG(HAVE_YASM, yasm, yes, no) @@ -629,9 +635,6 @@ AM_CONDITIONAL(HAVE_TTA, test "x$HAVE_TTA" = "xyes") AM_CONDITIONAL(HAVE_DCA, test "x$HAVE_DCA" = "xyes") AM_CONDITIONAL(HAVE_AAC, test "x$HAVE_AAC" = "xyes") AM_CONDITIONAL(HAVE_MMS, test "x$HAVE_MMS" = "xyes") -AM_CONDITIONAL(STATICLINK, test "x$STATICLINK" = "xyes") -AM_CONDITIONAL(PORTABLE, test "x$PORTABLE" = "xyes") -AM_CONDITIONAL(PORTABLE_FULL, test "x$PORTABLE_FULL" = "xyes") AM_CONDITIONAL(HAVE_DSP_SRC, test "x$HAVE_DSP_SRC" = "xyes") AM_CONDITIONAL(HAVE_M3U, test "x$HAVE_M3U" = "xyes") AM_CONDITIONAL(HAVE_VFS_ZIP, test "x$HAVE_VFS_ZIP" = "xyes") @@ -648,6 +651,10 @@ AM_CONDITIONAL(HAVE_SHELLEXECUI, test "x$HAVE_SHELLEXECUI" = "xyes") AM_CONDITIONAL(HAVE_SM, test "x$HAVE_SM" = "xyes") AM_CONDITIONAL(HAVE_ICE, test "x$HAVE_ICE" = "xyes") AM_CONDITIONAL(HAVE_ALAC, test "x$HAVE_ALAC" = "xyes") +AM_CONDITIONAL(STATICLINK, test "x$STATICLINK" = "xyes") +AM_CONDITIONAL(PORTABLE, test "x$PORTABLE" = "xyes") +AM_CONDITIONAL(PORTABLE_FULL, test "x$PORTABLE_FULL" = "xyes") +AM_CONDITIONAL(USE_ABSTRACT_SOCKET_NAME, test "x$USE_ABSTRACT_SOCKET_NAME" = "xyes") AC_SUBST(PLUGINS_DIRS) diff --git a/main.c b/main.c index 466126df..51ef1914 100644 --- a/main.c +++ b/main.c @@ -61,10 +61,6 @@ #error PREFIX must be defined #endif -#ifdef __linux__ -#define USE_ABSTRACT_NAME 0 -#endif - //#define trace(...) { fprintf(stderr, __VA_ARGS__); } #define trace(fmt,...) @@ -342,7 +338,7 @@ static struct sockaddr_un srv_local; static struct sockaddr_un srv_remote; static unsigned srv_socket; -#if USE_ABSTRACT_NAME +#if USE_ABSTRACT_SOCKET_NAME static char server_id[] = "\0deadbeefplayer"; #endif @@ -363,7 +359,7 @@ server_start (void) { memset (&srv_local, 0, sizeof (srv_local)); srv_local.sun_family = AF_UNIX; -#if USE_ABSTRACT_NAME +#if USE_ABSTRACT_SOCKET_NAME memcpy (srv_local.sun_path, server_id, sizeof (server_id)); int len = offsetof(struct sockaddr_un, sun_path) + sizeof (server_id)-1; #else @@ -859,7 +855,7 @@ main (int argc, char *argv[]) { memset (&remote, 0, sizeof (remote)); remote.sun_family = AF_UNIX; -#if USE_ABSTRACT_NAME +#if USE_ABSTRACT_SOCKET_NAME memcpy (remote.sun_path, server_id, sizeof (server_id)); len = offsetof(struct sockaddr_un, sun_path) + sizeof (server_id)-1; #else -- cgit v1.2.3 From 857b5d6aa589203770ff42e049288e982d8664a9 Mon Sep 17 00:00:00 2001 From: waker Date: Sun, 7 Oct 2012 14:24:55 +0200 Subject: fixed updating streamer playlist after moving current playing track to another playlist --- playlist.c | 11 +++++++++++ streamer.c | 11 +++++++++++ streamer.h | 3 +++ 3 files changed, 25 insertions(+) diff --git a/playlist.c b/playlist.c index d998ca8a..fc000992 100644 --- a/playlist.c +++ b/playlist.c @@ -3473,9 +3473,14 @@ plt_move_items (playlist_t *to, int iter, playlist_t *from, playItem_t *drop_bef drop_after = to->tail[iter]; } + playItem_t *playing = streamer_get_playing_track (); + for (playItem_t *it = from->head[iter]; it && processed < count; it = next, idx++) { next = it->next[iter]; if (idx == indexes[processed]) { + if (it == playing && to != from) { + streamer_set_streamer_playlist (to); + } pl_item_ref (it); if (drop_after == it) { drop_after = it->prev[PL_MAIN]; @@ -3487,6 +3492,12 @@ plt_move_items (playlist_t *to, int iter, playlist_t *from, playItem_t *drop_bef processed++; } } + + if (playing) { + pl_item_unref (playing); + } + + no_remove_notify = 0; UNLOCK; } diff --git a/streamer.c b/streamer.c index f52ae450..2f1d819a 100644 --- a/streamer.c +++ b/streamer.c @@ -2299,3 +2299,14 @@ streamer_notify_order_changed (int prev_order, int new_order) { streamer_unlock (); } } + +void +streamer_set_streamer_playlist (playlist_t *plt) { + if (streamer_playlist) { + plt_unref (streamer_playlist); + } + streamer_playlist = plt; + if (streamer_playlist) { + plt_ref (streamer_playlist); + } +} diff --git a/streamer.h b/streamer.h index 6b77f382..53c9c870 100644 --- a/streamer.h +++ b/streamer.h @@ -130,4 +130,7 @@ streamer_dsp_chain_save (void); void streamer_notify_order_changed (int prev_order, int new_order); +void +streamer_set_streamer_playlist (playlist_t *plt); + #endif // __STREAMER_H -- cgit v1.2.3 From 961135a83d63b56055e8c2c71d16c175bdf78520 Mon Sep 17 00:00:00 2001 From: waker Date: Mon, 8 Oct 2012 22:12:58 +0200 Subject: mms: improved aborting, increased timeout length --- plugins/mms/libmms/mms.c | 10 +++++++--- plugins/mms/libmms/mms.h | 2 +- plugins/mms/libmms/mmsh.c | 3 ++- plugins/mms/libmms/mmsh.h | 2 +- plugins/mms/libmms/mmsx.c | 6 +++--- plugins/mms/mmsplug.c | 47 +++++++++++++++++++++++++++++++++++++++++------ 6 files changed, 55 insertions(+), 15 deletions(-) diff --git a/plugins/mms/libmms/mms.c b/plugins/mms/libmms/mms.c index ad63e6f8..e8cfae80 100644 --- a/plugins/mms/libmms/mms.c +++ b/plugins/mms/libmms/mms.c @@ -161,8 +161,9 @@ static off_t fallback_io_read(void *data, int socket, char *buf, off_t num, int off_t len = 0, ret; /* lprintf("%d\n", fallback_io_select(data, socket, MMS_IO_READ_READY, 1000)); */ errno = 0; - int nretry = 200; - while (len < num && nretry > 0) + int nretry = 600; + lprintf ("mms: fallback_io_read: need_abort ptr = %p\n", need_abort); + while (len < num && nretry > 0 && (!need_abort || !(*need_abort))) { ret = (off_t)read(socket, buf + len, num - len); if(ret == 0) @@ -499,6 +500,7 @@ static int string_utf16(iconv_t url_conv, char *dest, char *src, int dest_len) static int get_packet_header (mms_io_t *io, mms_t *this, mms_packet_header_t *header) { size_t len; int packet_type; + lprintf ("mms: get_packet_header: need_abort ptr = %p\n", this->need_abort); header->packet_len = 0; header->packet_seq = 0; @@ -576,6 +578,7 @@ static int get_answer (mms_io_t *io, mms_t *this) { int command = 0; mms_packet_header_t header; + lprintf ("mms: get_answer: need_abort ptr = %p\n", this->need_abort); switch (get_packet_header (io, this, &header)) { case MMS_PACKET_ERR: break; @@ -1039,7 +1042,7 @@ int static mms_choose_best_streams(mms_io_t *io, mms_t *this) { * network timing request */ /* FIXME: got somewhat broken during xine_stream_t->(void*) conversion */ -mms_t *mms_connect (mms_io_t *io, void *data, const char *url, int bandwidth) { +mms_t *mms_connect (mms_io_t *io, void *data, const char *url, int bandwidth, int *need_abort) { iconv_t url_conv = (iconv_t)-1; mms_t *this; int res; @@ -1070,6 +1073,7 @@ mms_t *mms_connect (mms_io_t *io, void *data, const char *url, int bandwidth) { this->bandwidth = bandwidth; this->current_pos = 0; this->eos = 0; + this->need_abort = need_abort; this->guri = gnet_uri_new(this->url); if(!this->guri) { diff --git a/plugins/mms/libmms/mms.h b/plugins/mms/libmms/mms.h index be329eef..e5eb3bb8 100644 --- a/plugins/mms/libmms/mms.h +++ b/plugins/mms/libmms/mms.h @@ -37,7 +37,7 @@ extern "C" { typedef struct mms_s mms_t; -mms_t* mms_connect (mms_io_t *io, void *data, const char *url, int bandwidth); +mms_t* mms_connect (mms_io_t *io, void *data, const char *url, int bandwidth, int *need_abort); int mms_read (mms_io_t *io, mms_t *instance, char *data, int len, int *need_abort); int mms_request_time_seek (mms_io_t *io, mms_t *instance, double time_sec); diff --git a/plugins/mms/libmms/mmsh.c b/plugins/mms/libmms/mmsh.c index a0552f6c..fe3d12ce 100644 --- a/plugins/mms/libmms/mmsh.c +++ b/plugins/mms/libmms/mmsh.c @@ -1017,7 +1017,7 @@ fail: return 0; } -mmsh_t *mmsh_connect (mms_io_t *io, void *data, const char *url, int bandwidth) { +mmsh_t *mmsh_connect (mms_io_t *io, void *data, const char *url, int bandwidth, int *need_abort) { mmsh_t *this; GURI *uri = NULL; GURI *proxy_uri = NULL; @@ -1041,6 +1041,7 @@ mmsh_t *mmsh_connect (mms_io_t *io, void *data, const char *url, int bandwidth) this->host_user = NULL; this->host_password = NULL; this->uri = NULL; + this->need_abort = need_abort; this->url = strdup(url); if ((proxy_env = getenv("http_proxy")) != NULL) diff --git a/plugins/mms/libmms/mmsh.h b/plugins/mms/libmms/mmsh.h index 744eefc0..898894bb 100644 --- a/plugins/mms/libmms/mmsh.h +++ b/plugins/mms/libmms/mmsh.h @@ -37,7 +37,7 @@ extern "C" { typedef struct mmsh_s mmsh_t; char* mmsh_connect_common(int *s ,int *port, char *url, char **host, char **path, char **file); -mmsh_t* mmsh_connect (mms_io_t *io, void *data, const char *url_, int bandwidth); +mmsh_t* mmsh_connect (mms_io_t *io, void *data, const char *url_, int bandwidth, int *need_abort); int mmsh_read (mms_io_t *io, mmsh_t *instance, char *data, int len, int *need_abort); int mmsh_time_seek (mms_io_t *io, mmsh_t *instance, double time_sec); diff --git a/plugins/mms/libmms/mmsx.c b/plugins/mms/libmms/mmsx.c index e2c3fd9b..8d206b8f 100644 --- a/plugins/mms/libmms/mmsx.c +++ b/plugins/mms/libmms/mmsx.c @@ -53,17 +53,17 @@ mmsx_t *mmsx_connect(mms_io_t *io, void *data, const char *url, int bandwidth, i handle it. The LIBMMS_TRY_MMS_FIRST environment variable is there for testing the mms code against servers which accept both mmsh and mms. */ if (try_mms_first, 1) { - mmsx->connection = mms_connect(io, data, url, bandwidth); + mmsx->connection = mms_connect(io, data, url, bandwidth, need_abort); if (mmsx->connection) return mmsx; } - mmsx->connection_h = mmsh_connect(io, data, url, bandwidth); + mmsx->connection_h = mmsh_connect(io, data, url, bandwidth, need_abort); if (mmsx->connection_h) return mmsx; if (!try_mms_first, 0) { - mmsx->connection = mms_connect(io, data, url, bandwidth); + mmsx->connection = mms_connect(io, data, url, bandwidth, need_abort); if (mmsx->connection) return mmsx; } diff --git a/plugins/mms/mmsplug.c b/plugins/mms/mmsplug.c index 3d2e3faf..928a527d 100644 --- a/plugins/mms/mmsplug.c +++ b/plugins/mms/mmsplug.c @@ -26,6 +26,7 @@ static DB_functions_t *deadbeef; typedef struct { DB_vfs_t *vfs; + char *fname; mmsx_t *stream; const mms_io_t *io; int need_abort; @@ -49,35 +50,61 @@ const char * mms_bandwidth_strs[]={"14.4 Kbps (Modem)", "19.2 Kbps (Modem)", static DB_FILE * mms_open (const char *fname) { MMS_FILE *fp = malloc (sizeof (MMS_FILE)); + memset (fp, 0, sizeof (MMS_FILE)); fp->io = mms_get_default_io_impl(); - fp->stream = mmsx_connect ((mms_io_t *)fp->io, fp, fname, 1544000, &fp->need_abort); - if (!fp->stream) { - free (fp); - return NULL; - } + fp->fname = strdup (fname); fp->vfs = &plugin; return (DB_FILE*)fp; } static void mms_close (DB_FILE *stream) { +// fprintf (stderr, "\033[0;32mmms_close was called\033[37;0m\n"); assert (stream); - mmsx_close (((MMS_FILE *)stream)->stream); + MMS_FILE *fp = (MMS_FILE *)stream; + if (fp->stream) { + mmsx_close (fp->stream); + } + if (fp->fname) { + free (fp->fname); + } free (stream); } +static int +mms_ensure_connected (MMS_FILE *fp) { + if (!fp->stream) { + fp->stream = mmsx_connect ((mms_io_t *)fp->io, fp, fp->fname, 1544000, &fp->need_abort); + if (!fp->stream) { + return -1; + } + } + return 0; +} + static size_t mms_read (void *ptr, size_t size, size_t nmemb, DB_FILE *stream) { assert (stream); assert (ptr); + int connect_err = mms_ensure_connected ((MMS_FILE *)stream); + if (connect_err < 0) { + return connect_err; + } MMS_FILE *fp = (MMS_FILE *)stream; int res = mmsx_read ((mms_io_t *)fp->io, fp->stream, ptr, size * nmemb); + if (fp->need_abort) { + return -1; + } return res; } static int mms_seek (DB_FILE *stream, int64_t offset, int whence) { assert (stream); + int connect_err = mms_ensure_connected ((MMS_FILE *)stream); + if (connect_err < 0) { + return connect_err; + } MMS_FILE *fp = (MMS_FILE *)stream; return mmsx_seek ((mms_io_t *)fp->io, fp->stream, offset, whence); } @@ -85,6 +112,10 @@ mms_seek (DB_FILE *stream, int64_t offset, int whence) { static int64_t mms_tell (DB_FILE *stream) { assert (stream); + int connect_err = mms_ensure_connected ((MMS_FILE *)stream); + if (connect_err < 0) { + return connect_err; + } return mmsx_get_current_pos (((MMS_FILE *)stream)->stream); } @@ -98,6 +129,10 @@ mms_rewind (DB_FILE *stream) { static int64_t mms_getlength (DB_FILE *stream) { assert (stream); + int connect_err = mms_ensure_connected ((MMS_FILE *)stream); + if (connect_err < 0) { + return connect_err; + } MMS_FILE *f = (MMS_FILE *)stream; return mmsx_get_length (f->stream); } -- cgit v1.2.3 From 4224404f39f6e570790d469fb5455fd8f2784014 Mon Sep 17 00:00:00 2001 From: waker Date: Mon, 8 Oct 2012 22:22:54 +0200 Subject: mms: more abortion improvements --- plugins/mms/libmms/mms.c | 6 +++--- plugins/mms/libmms/mmsh.c | 4 ++-- plugins/mms/libmms/mmsio.h | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/mms/libmms/mms.c b/plugins/mms/libmms/mms.c index e8cfae80..15c9cca9 100644 --- a/plugins/mms/libmms/mms.c +++ b/plugins/mms/libmms/mms.c @@ -192,7 +192,7 @@ static off_t fallback_io_write(void *data, int socket, char *buf, off_t num) return (off_t)write(socket, buf, num); } -static int fallback_io_tcp_connect(void *data, const char *host, int port) +static int fallback_io_tcp_connect(void *data, const char *host, int port, int *need_abort) { struct hostent *h; @@ -226,7 +226,7 @@ static int fallback_io_tcp_connect(void *data, const char *host, int port) time_t t = time (NULL); int error = 0; - for (;;) { + while (!need_abort || !(*need_abort)) { int res = connect(s, (struct sockaddr *)&sin, sizeof(sin)); if (res == -1 && (errno == EINPROGRESS || errno == EALREADY)) { if (time (NULL) - t > 3) { @@ -882,7 +882,7 @@ static int mms_tcp_connect(mms_io_t *io, mms_t *this) { * try to connect */ lprintf("mms: trying to connect to %s on port %d\n", this->host, this->port); - this->s = io_connect(io, this->host, this->port); + this->s = io_connect(io, this->host, this->port, this->need_abort); if (this->s == -1) { lprintf("mms: failed to connect to %s\n", this->host); return 1; diff --git a/plugins/mms/libmms/mmsh.c b/plugins/mms/libmms/mmsh.c index fe3d12ce..0606ac53 100644 --- a/plugins/mms/libmms/mmsh.c +++ b/plugins/mms/libmms/mmsh.c @@ -248,7 +248,7 @@ static off_t fallback_io_write(void *data, int socket, char *buf, off_t num) return (off_t)write(socket, buf, num); } -static int fallback_io_tcp_connect(void *data, const char *host, int port) +static int fallback_io_tcp_connect(void *data, const char *host, int port, int *need_abort) { struct hostent *h; @@ -822,7 +822,7 @@ static int mmsh_tcp_connect(mms_io_t *io, mmsh_t *this) { */ lprintf("mmsh: try to connect to %s on port %d \n", this->connect_host, this->connect_port); - this->s = io_connect (io, this->connect_host, this->connect_port); + this->s = io_connect (io, this->connect_host, this->connect_port, this->need_abort); if (this->s == -1) { lprintf("mmsh: failed to connect '%s'\n", this->connect_host); diff --git a/plugins/mms/libmms/mmsio.h b/plugins/mms/libmms/mmsio.h index a1cb93bb..376e6736 100644 --- a/plugins/mms/libmms/mmsio.h +++ b/plugins/mms/libmms/mmsio.h @@ -66,7 +66,7 @@ typedef int (*mms_io_select_func)(void *data, int fd, int state, int timeout_mse * * returns a socket descriptor or -1 if an error occured */ -typedef int (*mms_io_tcp_connect_func)(void *data, const char *host, int port); +typedef int (*mms_io_tcp_connect_func)(void *data, const char *host, int port, int *need_abort); typedef struct { -- cgit v1.2.3 From b07ade8fa94036aeb1ffa6db4ca1ef182237ccc5 Mon Sep 17 00:00:00 2001 From: waker Date: Mon, 8 Oct 2012 22:30:50 +0200 Subject: gtkui: playlist popup menu positioning WIP --- plugins/gtkui/ddblistview.h | 3 +++ plugins/gtkui/plcommon.c | 34 +++++++++++++++++++++++++++++++++- 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/plugins/gtkui/ddblistview.h b/plugins/gtkui/ddblistview.h index 143ef28c..f2ead8ce 100644 --- a/plugins/gtkui/ddblistview.h +++ b/plugins/gtkui/ddblistview.h @@ -266,6 +266,9 @@ ddb_listview_clear_sort (DdbListview *listview); void ddb_listview_lock_columns (DdbListview *lv, gboolean lock); +int +ddb_listview_get_row_pos (DdbListview *listview, int row_idx); + G_END_DECLS #endif // __DDBLISTVIEW_H diff --git a/plugins/gtkui/plcommon.c b/plugins/gtkui/plcommon.c index c633cb60..aa1b0f8b 100644 --- a/plugins/gtkui/plcommon.c +++ b/plugins/gtkui/plcommon.c @@ -438,6 +438,38 @@ find_popup (GtkWidget *widget, return found_widget; } +#if 0 +// experimental code to position the popup at the item +static void +popup_menu_position_func (GtkMenu *menu, gint *x, gint *y, gboolean *push_in, gpointer user_data) { + // find 1st selected item + DdbListview *lv = user_data; + int winx, winy; + gdk_window_get_position (gtk_widget_get_window (GTK_WIDGET (lv->list)), &winx, &winy); + DdbListviewIter it = lv->binding->head (); + int idx = 0; + while (it) { + if (lv->binding->is_selected (it)) { + break; + } + DdbListviewIter next = lv->binding->next (it); + lv->binding->unref (it); + it = next; + idx++; + } + if (it) { + // get Y position + *y = ddb_listview_get_row_pos (lv, idx) + winy; + lv->binding->unref (it); + } + else { + *y = winy; // mouse_y + } + *x = winx; // mouse_x + *push_in = TRUE; +} +#endif + void list_context_menu (DdbListview *listview, DdbListviewIter it, int idx) { clicked_idx = deadbeef->pl_get_idx_of (it); @@ -652,7 +684,7 @@ list_context_menu (DdbListview *listview, DdbListviewIter it, int idx) { g_signal_connect ((gpointer) properties1, "activate", G_CALLBACK (main_properties_activate), NULL); - gtk_menu_popup (GTK_MENU (playlist_menu), NULL, NULL, NULL, listview, 0, gtk_get_current_event_time()); + gtk_menu_popup (GTK_MENU (playlist_menu), NULL, NULL, NULL/*popup_menu_position_func*/, listview, 0, gtk_get_current_event_time()); } void -- cgit v1.2.3 From 0b7dbebd8acf3091196a3e375b91a8e517df14f1 Mon Sep 17 00:00:00 2001 From: waker Date: Mon, 8 Oct 2012 22:31:33 +0200 Subject: mms: debug printfs --- plugins/mms/mmsplug.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/mms/mmsplug.c b/plugins/mms/mmsplug.c index 928a527d..cb339a96 100644 --- a/plugins/mms/mmsplug.c +++ b/plugins/mms/mmsplug.c @@ -59,7 +59,7 @@ mms_open (const char *fname) { static void mms_close (DB_FILE *stream) { -// fprintf (stderr, "\033[0;32mmms_close was called\033[37;0m\n"); + //fprintf (stderr, "\033[0;32mmms_close was called\033[37;0m\n"); assert (stream); MMS_FILE *fp = (MMS_FILE *)stream; if (fp->stream) { @@ -156,6 +156,7 @@ mms_is_streaming (void) { static void mms_abort (DB_FILE *fp) { + //fprintf (stderr, "\033[0;35mabort called\033[37;0m\n"); ((MMS_FILE *)fp)->need_abort = 1; } -- cgit v1.2.3 From c55f92966ea08512570fa7e381ffecad16cc2486 Mon Sep 17 00:00:00 2001 From: waker Date: Tue, 9 Oct 2012 19:52:41 +0200 Subject: vorbis: update waveformat if changes dynamically in the stream --- plugins/vorbis/vorbis.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/vorbis/vorbis.c b/plugins/vorbis/vorbis.c index a121695a..6036d215 100644 --- a/plugins/vorbis/vorbis.c +++ b/plugins/vorbis/vorbis.c @@ -316,6 +316,9 @@ cvorbis_read (DB_fileinfo_t *_info, char *bytes, int size) { ogg_info_t *info = (ogg_info_t *)_info; // trace ("cvorbis_read %d bytes\n", size); + _info->fmt.channels = info->vi->channels; + _info->fmt.samplerate = info->vi->rate; + int samplesize = _info->fmt.channels * _info->fmt.bps / 8; if (!info->info.file->vfs->is_streaming ()) { -- cgit v1.2.3 From 279d9bc28a429aaaed9bab0683736bbd89de3ecc Mon Sep 17 00:00:00 2001 From: waker Date: Tue, 9 Oct 2012 19:56:43 +0200 Subject: disabled some debug output in streamer --- streamer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/streamer.c b/streamer.c index 2f1d819a..789770fc 100644 --- a/streamer.c +++ b/streamer.c @@ -1139,7 +1139,7 @@ streamer_start_new_song (void) { if (fileinfo && memcmp (&orig_output_format, &fileinfo->fmt, sizeof (ddb_waveformat_t))) { memcpy (&output_format, &fileinfo->fmt, sizeof (ddb_waveformat_t)); memcpy (&orig_output_format, &fileinfo->fmt, sizeof (ddb_waveformat_t)); - fprintf (stderr, "streamer_set_output_format %dbit %s %dch %dHz channelmask=%X\n", output_format.bps, output_format.is_float ? "float" : "int", output_format.channels, output_format.samplerate, output_format.channelmask); +// fprintf (stderr, "streamer_set_output_format %dbit %s %dch %dHz channelmask=%X\n", output_format.bps, output_format.is_float ? "float" : "int", output_format.channels, output_format.samplerate, output_format.channelmask); streamer_set_output_format (); } if (0 != output->play ()) { @@ -1816,7 +1816,7 @@ streamer_set_output_format (void) { DB_output_t *output = plug_get_output (); int playing = (output->state () == OUTPUT_STATE_PLAYING); - fprintf (stderr, "streamer_set_output_format %dbit %s %dch %dHz channelmask=%X, bufferfill: %d\n", output_format.bps, output_format.is_float ? "float" : "int", output_format.channels, output_format.samplerate, output_format.channelmask, streamer_ringbuf.remaining); +// fprintf (stderr, "streamer_set_output_format %dbit %s %dch %dHz channelmask=%X, bufferfill: %d\n", output_format.bps, output_format.is_float ? "float" : "int", output_format.channels, output_format.samplerate, output_format.channelmask, streamer_ringbuf.remaining); ddb_waveformat_t fmt; memcpy (&fmt, &output_format, sizeof (ddb_waveformat_t)); if (autoconv_8_to_16) { -- cgit v1.2.3 From aa6117ca31c934e443b60c5070107b15eaf358e1 Mon Sep 17 00:00:00 2001 From: waker Date: Tue, 9 Oct 2012 20:12:51 +0200 Subject: mp3: fixed trk properties samplerate --- plugins/mpgmad/mpgmad.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/mpgmad/mpgmad.c b/plugins/mpgmad/mpgmad.c index 132adebc..c8a696ad 100644 --- a/plugins/mpgmad/mpgmad.c +++ b/plugins/mpgmad/mpgmad.c @@ -579,8 +579,6 @@ cmp3_scan_stream (buffer_t *buffer, int sample) { } } if (sample == 0) { - trace ("cmp3_scan_stream: trying to figure out duration from file size\n"); - buffer->samplerate = samplerate; if (buffer->file->vfs->is_streaming ()) { // only suitable for cbr files, used if streaming int sz = deadbeef->fgetlength (buffer->file); -- cgit v1.2.3 From c82ab50a979fa328b4f59fbcdace66a4a708ff46 Mon Sep 17 00:00:00 2001 From: waker Date: Tue, 9 Oct 2012 21:49:33 +0200 Subject: fixed gtk2/3 configure options -- now there's no --disable/enable-gtkui, only --disable/enable-gtk2 and -gtk3. --- configure.ac | 8 ++------ plugins/gtkui/Makefile.am | 2 -- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/configure.ac b/configure.ac index 890a6a80..acefaac5 100644 --- a/configure.ac +++ b/configure.ac @@ -70,7 +70,6 @@ AC_ARG_ENABLE(nullout, [AS_HELP_STRING([--disable-nullout ], [disable NULL outp AC_ARG_ENABLE(alsa, [AS_HELP_STRING([--disable-alsa ], [disable ALSA output plugin (default: enabled)])], [enable_alsa=$enableval], [enable_alsa=yes]) AC_ARG_ENABLE(oss, [AS_HELP_STRING([--disable-oss ], [disable Open Sound System output plugin (default: enabled)])], [enable_oss=$enableval], [enable_oss=yes]) AC_ARG_ENABLE(pulse, [AS_HELP_STRING([--disable-pulse ], [disable PulseAudio output plugin (default: enabled)])], [enable_pulse=$enableval], [enable_pulse=yes]) -AC_ARG_ENABLE(gtkui, [AS_HELP_STRING([--disable-gtkui ], [disable standard GTK+ user interface plugin (default: enabled)])], [enable_gtkui=$enableval], [enable_gtkui=yes]) AC_ARG_ENABLE(gtk3, [AS_HELP_STRING([--enable-gtk3 ], [build GTK3 version of gtkui plugin (default: enabled)])], [enable_gtk3=$enableval], [enable_gtk3=yes]) AC_ARG_ENABLE(gtk2, [AS_HELP_STRING([--disable-gtk2 ], [build GTK2 version of gtkui plugin (default: enabled)])], [enable_gtk2=$enableval], [enable_gtk2=yes]) AC_ARG_ENABLE(vfs_curl, [AS_HELP_STRING([--disable-vfs-curl], [disable HTTP streaming vfs plugin (default: enabled)])], [enable_vfs_curl=$enableval], [enable_vfs_curl=yes]) @@ -357,10 +356,8 @@ fi fi dnl gtkui plugin -if test "x$enable_gtkui" != "xno" ; then - if test "x$HAVE_GTK2" == "xyes" || test "x$HAVE_GTK3" == "xyes" ; then - HAVE_GTKUI=yes - fi +if test "x$HAVE_GTK2" == "xyes" || test "x$HAVE_GTK3" == "xyes" ; then + HAVE_GTKUI=yes fi if test "x$enable_alsa" != "xno" ; then @@ -608,7 +605,6 @@ AM_CONDITIONAL(HAVE_FLAC, test "x$HAVE_FLACPLUGIN" = "xyes") AM_CONDITIONAL(HAVE_WAVPACK, test "x$HAVE_WAVPACKPLUGIN" = "xyes") AM_CONDITIONAL(HAVE_SNDFILE, test "x$HAVE_SNDFILEPLUGIN" = "xyes") AM_CONDITIONAL(HAVE_CDDA, test "x$HAVE_CDDAPLUGIN" = "xyes") -AM_CONDITIONAL(HAVE_GTKUI, test "x$HAVE_GTKUI" = "xyes") AM_CONDITIONAL(HAVE_GTK2, test "x$HAVE_GTK2" = "xyes") AM_CONDITIONAL(HAVE_GTK3, test "x$HAVE_GTK3" = "xyes") AM_CONDITIONAL(HAVE_ALSA, test "x$HAVE_ALSAPLUGIN" = "xyes") diff --git a/plugins/gtkui/Makefile.am b/plugins/gtkui/Makefile.am index bb3bfca5..2ec703d8 100644 --- a/plugins/gtkui/Makefile.am +++ b/plugins/gtkui/Makefile.am @@ -1,4 +1,3 @@ -if HAVE_GTKUI gtkuidir = $(libdir)/$(PACKAGE) if HAVE_SM @@ -101,4 +100,3 @@ ddb_gui_GTK2_fallback_la_CFLAGS = -std=c99 -I $(GTK_ROOT)/include -I $(GTK_ROOT) endif -endif -- cgit v1.2.3 From 1b0ea4a6bf2484567e2c2d9f947727f975c3fba2 Mon Sep 17 00:00:00 2001 From: waker Date: Wed, 10 Oct 2012 22:28:16 +0200 Subject: updated about.txt --- about.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/about.txt b/about.txt index 93b4ec7b..99353116 100644 --- a/about.txt +++ b/about.txt @@ -31,7 +31,7 @@ Contributors: Sofias Icon - starws + starws The best QA dude in the world Stas Akimushkin -- cgit v1.2.3 From 6931db2917c095fbeab43cc439f51a400c810dd1 Mon Sep 17 00:00:00 2001 From: waker Date: Wed, 10 Oct 2012 22:28:39 +0200 Subject: aac: fixed makefile --- plugins/aac/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/aac/Makefile.am b/plugins/aac/Makefile.am index deab8c8f..5a532d8f 100644 --- a/plugins/aac/Makefile.am +++ b/plugins/aac/Makefile.am @@ -1,4 +1,5 @@ if HAVE_AAC +aacpath=@top_srcdir@/plugins/aac aacdir = $(libdir)/$(PACKAGE) pkglib_LTLIBRARIES = aac.la aac_la_SOURCES = aac.c aac_parser.c aac_parser.h\ @@ -15,6 +16,6 @@ aac_la_SOURCES = aac.c aac_parser.c aac_parser.h\ aac_la_LDFLAGS = -module aac_la_LIBADD = $(LDADD) $(FAAD2_LIBS) -AM_CFLAGS = $(CFLAGS) -std=c99 -DUSE_MP4FF -DUSE_TAGGING -I../libmp4ff +AM_CFLAGS = $(CFLAGS) -std=c99 -DUSE_MP4FF -DUSE_TAGGING -I$(aacpath)/../libmp4ff endif -- cgit v1.2.3 From 406a77d1bd10e09e448a2ef80b88e59669794b11 Mon Sep 17 00:00:00 2001 From: waker Date: Wed, 10 Oct 2012 22:28:54 +0200 Subject: converter: fixed file-exists check --- plugins/converter/convgui.c | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/plugins/converter/convgui.c b/plugins/converter/convgui.c index e225c74d..89a341f1 100644 --- a/plugins/converter/convgui.c +++ b/plugins/converter/convgui.c @@ -181,8 +181,22 @@ converter_worker (void *ctx) { converter_plugin->get_output_path (conv->convert_items[n], conv->outfolder, conv->outfile, conv->encoder_preset, conv->preserve_folder_structure, root, conv->write_to_source_folder, outpath, sizeof (outpath)); int skip = 0; + + // need to unescape path before passing to stat + char unesc_path[2000]; + char invalid[] = "$\"`\\"; + const char *p = outpath; + char *o = unesc_path; + while (*p) { + if (*p == '\\') { + p++; + } + *o++ = *p++; + } + *o = 0; + struct stat st; - int res = stat(outpath, &st); + int res = stat(unesc_path, &st); if (res == 0) { if (conv->overwrite_action > 1 || conv->overwrite_action < 0) { conv->overwrite_action = 0; @@ -192,7 +206,7 @@ converter_worker (void *ctx) { struct overwrite_prompt_ctx ctl; ctl.mutex = deadbeef->mutex_create (); ctl.cond = deadbeef->cond_create (); - ctl.fname = outpath; + ctl.fname = unesc_path; ctl.result = 0; gdk_threads_add_idle (overwrite_prompt_cb, &ctl); deadbeef->cond_wait (ctl.cond, ctl.mutex); -- cgit v1.2.3 From 1dd551a8a3c918ff97664e445d98b1d10a6f6c42 Mon Sep 17 00:00:00 2001 From: waker Date: Wed, 10 Oct 2012 22:43:49 +0200 Subject: help.txt update --- help.txt | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/help.txt b/help.txt index 1816d8e1..116b2a96 100644 --- a/help.txt +++ b/help.txt @@ -56,9 +56,14 @@ help file for deadbeef player * KNOWN ISSUES - global hotkeys configuration is buggy when using GTK3, this is a GTK3 bug: + GLOBAL HOTKEYS + + configuration is buggy when using GTK3, this is a GTK3 bug: https://bugzilla.gnome.org/show_bug.cgi?id=682826 + there's a work-around: if the key combination field doesn't work, change to a different tab in the preferences dialog, and then back -- it should start working again. + + FFMPEG - ffmpeg devs have been breaking their APIs way too frequently, so i decided to wait until they stop. - currently, if you need WMA playback, please use statically-built ffmpeg plugin. - you should be able to find it in one of the static builds on the official deadbeef website. + the ffmpeg developers have been breaking their APIs many times before, and we were fixing the plugin again ang again, but this time (ffmpeg-0.11) they broke it in a way which makes it impossible to use together with deadbeef libmms plugin. + currently, if you need MMS+WMA playback (or any other functionality that requires ffmpeg), you can compile deadbeef manually with --enable-ffmpeg, if you have ffmpeg<=0.10 installed. + or you can use the statically-linked ffmpeg plugin, which can be found in any of the static builds provided on the official deadbeef website. -- cgit v1.2.3 From a67ded6a23c08127b119d4559c1e524ab6668620 Mon Sep 17 00:00:00 2001 From: waker Date: Thu, 11 Oct 2012 20:57:29 +0200 Subject: fixed --enable-abstract-socket typo --- configure.ac | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index acefaac5..424555df 100644 --- a/configure.ac +++ b/configure.ac @@ -110,7 +110,7 @@ AC_ARG_ENABLE(psf, [AS_HELP_STRING([--enable-psf ], [build AOSDK-based AC_ARG_ENABLE(mono2stereo, [AS_HELP_STRING([--enable-mono2stereo ], [build mono2stereo DSP plugin (default: auto)])], [enable_mono2stereo=$enableval], [enable_mono2stereo=yes]) AC_ARG_ENABLE(shellexecui, [AS_HELP_STRING([--enable-shellexecui ], [build shellexec GTK UI plugin (default: auto)])], [enable_shellexecui=$enableval], [enable_shellexecui=yes]) AC_ARG_ENABLE(alac, [AS_HELP_STRING([--enable-alac ], [build ALAC plugin (default: auto)])], [enable_alac=$enableval], [enable_alac=yes]) -AC_ARG_ENABLE(abstract_socket, [AS_HELP_STRING([--enable-abstract-socket ], [use abstract socket (default: enabled)])], [enable_alac=$enableval], [enable_abstract_socket=yes]) +AC_ARG_ENABLE(abstract_socket, [AS_HELP_STRING([--enable-abstract-socket ], [use abstract socket (default: enabled)])], [enable_abstract_socket=$enableval], [enable_abstract_socket=yes]) if test "x$enable_staticlink" != "xno" ; then AC_DEFINE_UNQUOTED([STATICLINK], [1], [Define if building static version]) @@ -197,7 +197,6 @@ fi if test "x$enable_ffmpeg" != "xno" ; then if test "x$enable_staticlink" != "xno" ; then - echo "static ffmpeg" FFMPEG_DEPS_CFLAGS="-I../../$LIB/include" FFMPEG_DEPS_LIBS="../../$LIB/lib/libavcodec.a -lpthread ../../$LIB/lib/libavformat.a ../../$LIB/lib/libavcodec.a ../../$LIB/lib/libavutil.a ../../$LIB/lib/libavcore.a -lm ../../$LIB/lib/libz.a" AC_SUBST(FFMPEG_DEPS_CFLAGS) -- cgit v1.2.3 From 1ab32a2802e79ae39226f25fe81150fe80858757 Mon Sep 17 00:00:00 2001 From: waker Date: Thu, 11 Oct 2012 21:10:46 +0200 Subject: aac: fail adts parser if encountered many failed frames in a row --- plugins/aac/aac.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/plugins/aac/aac.c b/plugins/aac/aac.c index a7abece0..156e86f8 100644 --- a/plugins/aac/aac.c +++ b/plugins/aac/aac.c @@ -142,6 +142,9 @@ parse_aac_stream(DB_FILE *fp, int *psamplerate, int *pchannels, float *pduration int frame = 0; int scanframes = 1000; + + int nfail = 0; + if (fp->vfs->is_streaming ()) { scanframes = 1; } @@ -160,6 +163,11 @@ parse_aac_stream(DB_FILE *fp, int *psamplerate, int *pchannels, float *pduration memmove (buf, buf+1, sizeof (buf)-1); bufsize--; // trace ("aac_sync fail, framepos: %d\n", framepos); + nfail++; + if (nfail > 100) { + trace ("aac: many failed sync attemps, aborted\n"); + return -1; + } if (deadbeef->ftell (fp) - initfpos > 2000) { // how many is enough to make sure? break; } @@ -168,6 +176,7 @@ parse_aac_stream(DB_FILE *fp, int *psamplerate, int *pchannels, float *pduration } else { // trace ("aac: frame #%d sync: %dch %d %d %d %d\n", frame, channels, samplerate, bitrate, samples, size); + nfail = 0; frame++; nsamples += samples; if (!stream_sr) { -- cgit v1.2.3 From eb005708fb6bb46f19ca31ca6141cb94f8bad614 Mon Sep 17 00:00:00 2001 From: waker Date: Sun, 14 Oct 2012 12:02:27 +0200 Subject: aac: don't attempt raw aac detection on mp4 files --- plugins/aac/aac.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/aac/aac.c b/plugins/aac/aac.c index 156e86f8..acef86d9 100644 --- a/plugins/aac/aac.c +++ b/plugins/aac/aac.c @@ -1196,6 +1196,10 @@ aac_insert (ddb_playlist_t *plt, DB_playItem_t *after, const char *fname) { if (i < ntracks) { return after; } + if (ntracks > 0) { + // mp4 container found, but no valid aac tracks in it + return NULL; + } } } trace ("aac: mp4 container failed, trying raw aac\n"); -- cgit v1.2.3 From 939c053d0e57ca5f5cad5e586071650a3a683ec3 Mon Sep 17 00:00:00 2001 From: waker Date: Sun, 14 Oct 2012 20:33:23 +0200 Subject: gtk3 support in static build --- configure.ac | 9 ++------- plugins/converter/Makefile.am | 21 +++++++++++++-------- plugins/gtkui/Makefile.am | 20 ++++++++++++++++++++ plugins/shellexecui/Makefile.am | 21 +++++++++++++-------- scripts/portable_package_static.sh | 2 ++ scripts/portable_postbuild.sh | 8 +++++++- scripts/static_build.sh | 2 +- 7 files changed, 58 insertions(+), 25 deletions(-) diff --git a/configure.ac b/configure.ac index 424555df..dbb870a9 100644 --- a/configure.ac +++ b/configure.ac @@ -354,11 +354,6 @@ else fi fi -dnl gtkui plugin -if test "x$HAVE_GTK2" == "xyes" || test "x$HAVE_GTK3" == "xyes" ; then - HAVE_GTKUI=yes -fi - if test "x$enable_alsa" != "xno" ; then if test "x$HAVE_ALSA" = "xyes" ; then HAVE_ALSAPLUGIN=yes @@ -691,8 +686,8 @@ PRINT_PLUGIN_INFO([vtx],[vtx file player (ay8910/12 emulation)],[test "x$HAVE_VT PRINT_PLUGIN_INFO([adplug],[adplug player (OPL2/OPL3 emulation)],[test "x$HAVE_ADPLUG" = "xyes"]) PRINT_PLUGIN_INFO([vfs_curl],[http/ftp streaming support],[test "x$HAVE_VFS_CURL" = "xyes"]) PRINT_PLUGIN_INFO([cdda],[cd audio player],[test "x$HAVE_CDDAPLUGIN" = "xyes"]) -PRINT_PLUGIN_INFO([gtkui],[GTK2 user interface],[test "x$HAVE_GTK2" = "xyes" && test "x$HAVE_GTKUI" = "xyes"]) -PRINT_PLUGIN_INFO([gtkui3],[GTK3 user interface],[test "x$HAVE_GTK3" = "xyes" && test "x$HAVE_GTKUI" = "xyes"]) +PRINT_PLUGIN_INFO([gtkui],[GTK2 user interface],[test "x$HAVE_GTK2" = "xyes"]) +PRINT_PLUGIN_INFO([gtkui3],[GTK3 user interface],[test "x$HAVE_GTK3" = "xyes"]) PRINT_PLUGIN_INFO([hotkeys],[Global hotkeys support],[test "x$HAVE_HOTKEYS" = "xyes"]) PRINT_PLUGIN_INFO([ffmpeg],[ffmpeg codecs],[test "x$HAVE_FFMPEGPLUGIN" = "xyes"]) PRINT_PLUGIN_INFO([oss],[oss output plugin],[test "x$HAVE_OSS" = "xyes"]) diff --git a/plugins/converter/Makefile.am b/plugins/converter/Makefile.am index e9b5b964..d14d3f40 100644 --- a/plugins/converter/Makefile.am +++ b/plugins/converter/Makefile.am @@ -30,15 +30,10 @@ AM_CFLAGS = $(CFLAGS) -std=c99 -fPIC converter_la_SOURCES = converter.c converter.h converter_la_LDFLAGS = -module + if HAVE_GTK2 converter_gtk2_la_SOURCES = convgui.c interface.c support.c callbacks.h converter.h interface.h support.h converter_gtk2_la_LDFLAGS = -module -endif -if HAVE_GTK3 -converter_gtk3_la_SOURCES = convgui.c interface.c support.c callbacks.h converter.h interface.h support.h -converter_gtk3_la_LDFLAGS = -module -endif - if STATICLINK GTK_ROOT=@top_srcdir@/$(LIB)/gtk-2.12.12/usr @@ -46,15 +41,25 @@ converter_gtk2_la_LIBADD = $(LDADD) -L$(GTK_ROOT)/lib $(GTK_ROOT)/lib/libgtk-x11 converter_gtk2_la_CFLAGS = -std=c99 -I $(GTK_ROOT)/include -I $(GTK_ROOT)/lib/gtk-2.0/include -I $(GTK_ROOT)/include/glib-2.0 -I $(GTK_ROOT)/include/gtk-2.0 -I $(GTK_ROOT)/include/cairo -I $(GTK_ROOT)/lib/glib-2.0/include/ -I $(GTK_ROOT)/include/pango-1.0 -I $(GTK_ROOT)/include/atk-1.0 -DULTRA_COMPATIBLE=1 else -if HAVE_GTK2 converter_gtk2_la_LIBADD = $(LDADD) $(GTK2_DEPS_LIBS) converter_gtk2_la_CFLAGS = -std=c99 $(GTK2_DEPS_CFLAGS) endif +endif + if HAVE_GTK3 +converter_gtk3_la_SOURCES = convgui.c interface.c support.c callbacks.h converter.h interface.h support.h +converter_gtk3_la_LDFLAGS = -module +if STATICLINK +GTK_ROOT_300=@top_srcdir@/$(LIB)/gtk-3.0.0 + +converter_gtk3_la_LIBADD = $(LDADD) -L$(GTK_ROOT_300)/lib -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0 -lfreetype -lfontconfig $(SM_LIBADD) + +converter_gtk3_la_CFLAGS = -std=c99 -I$(GTK_ROOT_300)/include/gtk-3.0 -I$(GTK_ROOT_300)/include/pango-1.0 -I$(GTK_ROOT_300)/include/gio-unix-2.0/ -I$(GTK_ROOT_300)/include/atk-1.0 -I$(GTK_ROOT_300)/include/cairo -I$(GTK_ROOT_300)/include/gdk-pixbuf-2.0 -I$(GTK_ROOT_300)/include/freetype2 -I$(GTK_ROOT_300)/include/glib-2.0 -I$(GTK_ROOT_300)/lib/glib-2.0/include $(SM_CFLAGS) + +else converter_gtk3_la_LIBADD = $(LDADD) $(GTK3_DEPS_LIBS) converter_gtk3_la_CFLAGS = -std=c99 $(GTK3_DEPS_CFLAGS) endif - endif endif diff --git a/plugins/gtkui/Makefile.am b/plugins/gtkui/Makefile.am index 2ec703d8..2aebf0f5 100644 --- a/plugins/gtkui/Makefile.am +++ b/plugins/gtkui/Makefile.am @@ -47,7 +47,17 @@ sdk_HEADERS = gtkui_api.h EXTRA_DIST = deadbeef.glade if STATICLINK +if HAVE_GTK2 +if HAVE_GTK3 +pkglib_LTLIBRARIES = ddb_gui_GTK2.la ddb_gui_GTK2.fallback.la ddb_gui_GTK3.la +else pkglib_LTLIBRARIES = ddb_gui_GTK2.la ddb_gui_GTK2.fallback.la +endif +else +if HAVE_GTK3 +pkglib_LTLIBRARIES = ddb_gui_GTK3.la +endif +endif else if HAVE_GTK2 if HAVE_GTK3 @@ -80,12 +90,22 @@ ddb_gui_GTK2_la_CFLAGS = -std=c99 $(GTK2_DEPS_CFLAGS) $(SM_CFLAGS) endif endif + if HAVE_GTK3 ddb_gui_GTK3_la_SOURCES = $(GTKUI_SOURCES) ddb_gui_GTK3_la_LDFLAGS = -module +if STATICLINK +GTK_ROOT_300=@top_srcdir@/$(LIB)/gtk-3.0.0 + +ddb_gui_GTK3_la_LIBADD = $(LDADD) -L$(GTK_ROOT_300)/lib -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0 -lfreetype -lfontconfig $(SM_LIBADD) + +ddb_gui_GTK3_la_CFLAGS = -std=c99 -I$(GTK_ROOT_300)/include/gtk-3.0 -I$(GTK_ROOT_300)/include/pango-1.0 -I$(GTK_ROOT_300)/include/gio-unix-2.0/ -I$(GTK_ROOT_300)/include/atk-1.0 -I$(GTK_ROOT_300)/include/cairo -I$(GTK_ROOT_300)/include/gdk-pixbuf-2.0 -I$(GTK_ROOT_300)/include/freetype2 -I$(GTK_ROOT_300)/include/glib-2.0 -I$(GTK_ROOT_300)/lib/glib-2.0/include $(SM_CFLAGS) + +else ddb_gui_GTK3_la_LIBADD = $(LDADD) $(GTK3_DEPS_LIBS) $(SM_LIBADD) ddb_gui_GTK3_la_CFLAGS = -std=c99 $(GTK3_DEPS_CFLAGS) $(SM_CFLAGS) endif +endif # fallback lib if STATICLINK diff --git a/plugins/shellexecui/Makefile.am b/plugins/shellexecui/Makefile.am index 688d271f..e8945130 100644 --- a/plugins/shellexecui/Makefile.am +++ b/plugins/shellexecui/Makefile.am @@ -19,12 +19,6 @@ AM_CFLAGS = $(CFLAGS) -std=c99 -fPIC if HAVE_GTK2 shellexecui_gtk2_la_SOURCES = shellexecui.c interface.c support.c callbacks.c interface.h support.h callbacks.h shellexecui_gtk2_la_LDFLAGS = -module -endif -if HAVE_GTK3 -shellexecui_gtk3_la_SOURCES = shellexecui.c interface.c support.c callbacks.c interface.h support.h callbacks.h -shellexecui_gtk3_la_LDFLAGS = -module -endif - if STATICLINK GTK_ROOT=@top_srcdir@/$(LIB)/gtk-2.12.12/usr @@ -32,15 +26,26 @@ shellexecui_gtk2_la_LIBADD = $(LDADD) -L$(GTK_ROOT)/lib $(GTK_ROOT)/lib/libgtk-x shellexecui_gtk2_la_CFLAGS = -std=c99 -I $(GTK_ROOT)/include -I $(GTK_ROOT)/lib/gtk-2.0/include -I $(GTK_ROOT)/include/glib-2.0 -I $(GTK_ROOT)/include/gtk-2.0 -I $(GTK_ROOT)/include/cairo -I $(GTK_ROOT)/lib/glib-2.0/include/ -I $(GTK_ROOT)/include/pango-1.0 -I $(GTK_ROOT)/include/atk-1.0 -DULTRA_COMPATIBLE=1 else -if HAVE_GTK2 shellexecui_gtk2_la_LIBADD = $(LDADD) $(GTK2_DEPS_LIBS) shellexecui_gtk2_la_CFLAGS = -std=c99 $(GTK2_DEPS_CFLAGS) endif +endif + if HAVE_GTK3 +shellexecui_gtk3_la_SOURCES = shellexecui.c interface.c support.c callbacks.c interface.h support.h callbacks.h +shellexecui_gtk3_la_LDFLAGS = -module +if STATICLINK +GTK_ROOT_300=@top_srcdir@/$(LIB)/gtk-3.0.0 + +shellexecui_gtk3_la_LIBADD = $(LDADD) -L$(GTK_ROOT_300)/lib -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0 -lfreetype -lfontconfig $(SM_LIBADD) + +shellexecui_gtk3_la_CFLAGS = -std=c99 -I$(GTK_ROOT_300)/include/gtk-3.0 -I$(GTK_ROOT_300)/include/pango-1.0 -I$(GTK_ROOT_300)/include/gio-unix-2.0/ -I$(GTK_ROOT_300)/include/atk-1.0 -I$(GTK_ROOT_300)/include/cairo -I$(GTK_ROOT_300)/include/gdk-pixbuf-2.0 -I$(GTK_ROOT_300)/include/freetype2 -I$(GTK_ROOT_300)/include/glib-2.0 -I$(GTK_ROOT_300)/lib/glib-2.0/include $(SM_CFLAGS) + +else shellexecui_gtk3_la_LIBADD = $(LDADD) $(GTK3_DEPS_LIBS) shellexecui_gtk3_la_CFLAGS = -std=c99 $(GTK3_DEPS_CFLAGS) endif - endif + endif diff --git a/scripts/portable_package_static.sh b/scripts/portable_package_static.sh index 1ad0c076..6db7cc3c 100755 --- a/scripts/portable_package_static.sh +++ b/scripts/portable_package_static.sh @@ -32,6 +32,7 @@ tar jcvf ../../portable_out/build/$OUTNAME\ $PLUGDIR/dca.so\ $PLUGDIR/ddb_gui_GTK2.fallback.so\ $PLUGDIR/ddb_gui_GTK2.so\ + $PLUGDIR/ddb_gui_GTK3.so\ $PLUGDIR/ffap.so\ $PLUGDIR/ffmpeg.so\ $PLUGDIR/flac.so\ @@ -66,6 +67,7 @@ tar jcvf ../../portable_out/build/$OUTNAME\ $PLUGDIR/pulse.so\ $PLUGDIR/dsp_libsrc.so\ $PLUGDIR/ddb_mono2stereo.so\ + $PLUGDIR/alac.so\ $PIXMAPDIR\ $SRCDIR/locale cd ../.. diff --git a/scripts/portable_postbuild.sh b/scripts/portable_postbuild.sh index 45db6740..c1de99c7 100755 --- a/scripts/portable_postbuild.sh +++ b/scripts/portable_postbuild.sh @@ -18,7 +18,7 @@ cp ./deadbeef $OUTDIR for i in nullout cdda flac alsa mpgmad hotkeys vtx \ ffap ffmpeg wavpack vorbis oss vfs_curl \ - lastfm sid adplug sndfile artwork \ + lastfm sid adplug sndfile artwork alac \ supereq gme dumb notify musepack wildmidi \ tta dca aac mms shn ao shellexec shellexecui vfs_zip \ m3u converter pulse dsp_libsrc mono2stereo ; do @@ -53,6 +53,12 @@ if [ -f ./plugins/gtkui/.libs/ddb_gui_GTK2.fallback.so ]; then cp ./plugins/gtkui/.libs/ddb_gui_GTK2.fallback.so $PLUGDIR/ fi +if [ -f ./plugins/gtkui/.libs/ddb_gui_GTK3.so ]; then + cp ./plugins/gtkui/.libs/ddb_gui_GTK3.so $PLUGDIR/ +else + echo ./plugins/gtkui/.libs/ddb_gui_GTK3.so not found +fi + #pixmaps for i in pause_16.png play_16.png noartwork.png buffering_16.png; do diff --git a/scripts/static_build.sh b/scripts/static_build.sh index 250b29e8..46e82e9a 100755 --- a/scripts/static_build.sh +++ b/scripts/static_build.sh @@ -11,7 +11,7 @@ cd ../../ ./autogen.sh export APBUILD_STATIC_LIBGCC=1 -CC=$AP/apgcc CXX=$AP/apgcc ./configure --enable-staticlink --disable-artwork-imlib2 --prefix=/opt/deadbeef +CC=$AP/apgcc CXX=$AP/apgcc ./configure --enable-staticlink --disable-artwork-imlib2 --enable-ffmpeg --prefix=/opt/deadbeef sed -i 's/-lstdc++ -lm -lgcc_s -lc -lgcc_s/-lm -lc/g' libtool make clean make DESTDIR=`pwd`/static/$ARCH/deadbeef-$VERSION -j8 install -- cgit v1.2.3 From a08b1544bc5f767ccb6263313806af742ea6a6a1 Mon Sep 17 00:00:00 2001 From: waker Date: Sun, 14 Oct 2012 21:41:19 +0200 Subject: staticbuild: tell libtool to not hardcode library paths --- scripts/static_build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/static_build.sh b/scripts/static_build.sh index 46e82e9a..f46ec8aa 100755 --- a/scripts/static_build.sh +++ b/scripts/static_build.sh @@ -13,6 +13,7 @@ cd ../../ export APBUILD_STATIC_LIBGCC=1 CC=$AP/apgcc CXX=$AP/apgcc ./configure --enable-staticlink --disable-artwork-imlib2 --enable-ffmpeg --prefix=/opt/deadbeef sed -i 's/-lstdc++ -lm -lgcc_s -lc -lgcc_s/-lm -lc/g' libtool +sed -i 's/hardcode_into_libs=yes/hardcode_into_libs=no/g' libtool make clean make DESTDIR=`pwd`/static/$ARCH/deadbeef-$VERSION -j8 install -- cgit v1.2.3 From 2484c1e2bd0fd602c66955db9e1fca2c76d3be35 Mon Sep 17 00:00:00 2001 From: waker Date: Mon, 15 Oct 2012 21:19:50 +0200 Subject: gtkui: fixed gtk2 plugin static linking --- plugins/gtkui/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/gtkui/Makefile.am b/plugins/gtkui/Makefile.am index 2aebf0f5..f7844820 100644 --- a/plugins/gtkui/Makefile.am +++ b/plugins/gtkui/Makefile.am @@ -81,7 +81,7 @@ ddb_gui_GTK2_la_LDFLAGS = -module if STATICLINK GTK_ROOT_216=@top_srcdir@/$(LIB)/gtk-2.16.0 -ddb_gui_GTK2_la_LIBADD = $(LDADD) -L$(GTK_ROOT_216)/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 $(SM_LIBADD) +ddb_gui_GTK2_la_LIBADD = $(LDADD) -L$(GTK_ROOT_216)/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 $(SM_LIBADD) ddb_gui_GTK2_la_CFLAGS = -std=c99 -I$(GTK_ROOT_216)/include/gtk-2.0 -I$(GTK_ROOT_216)/lib/gtk-2.0/include -I$(GTK_ROOT_216)/include/atk-1.0 -I$(GTK_ROOT_216)/include/cairo -I$(GTK_ROOT_216)/include/pango-1.0 -I$(GTK_ROOT_216)/include -I$(GTK_ROOT_216)/include/glib-2.0 -I$(GTK_ROOT_216)/lib/glib-2.0/include $(SM_CFLAGS) else -- cgit v1.2.3 From f8ecadcb8726532bbc21931920c074167dac429a Mon Sep 17 00:00:00 2001 From: waker Date: Mon, 15 Oct 2012 21:20:42 +0200 Subject: added missing plugins to static build output --- PORTABLE_VERSION | 2 +- scripts/portable_package_static.sh | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/PORTABLE_VERSION b/PORTABLE_VERSION index 94ee4293..da86bf1d 100644 --- a/PORTABLE_VERSION +++ b/PORTABLE_VERSION @@ -1 +1 @@ -0.5.6-test1 +0.5.6-test2 diff --git a/scripts/portable_package_static.sh b/scripts/portable_package_static.sh index 6db7cc3c..bbac7f1a 100755 --- a/scripts/portable_package_static.sh +++ b/scripts/portable_package_static.sh @@ -48,6 +48,7 @@ tar jcvf ../../portable_out/build/$OUTNAME\ $PLUGDIR/oss.so\ $PLUGDIR/shellexec.so\ $PLUGDIR/shellexecui_gtk2.so\ + $PLUGDIR/shellexecui_gtk3.so\ $PLUGDIR/sid.so\ $PLUGDIR/sndfile.so\ $PLUGDIR/supereq.so\ @@ -63,6 +64,7 @@ tar jcvf ../../portable_out/build/$OUTNAME\ $PLUGDIR/ddb_dumb.so\ $PLUGDIR/converter.so\ $PLUGDIR/converter_gtk2.so\ + $PLUGDIR/converter_gtk3.so\ $PLUGDIR/convpresets\ $PLUGDIR/pulse.so\ $PLUGDIR/dsp_libsrc.so\ -- cgit v1.2.3 From 00e02427f1460a40a385fb73836c1085e0b48b76 Mon Sep 17 00:00:00 2001 From: waker Date: Mon, 15 Oct 2012 21:28:01 +0200 Subject: updated translations --- po/be.po | 146 ++++++++++++++++++++++++++++---------------------------- po/bg.po | 146 ++++++++++++++++++++++++++++---------------------------- po/bn.po | 146 ++++++++++++++++++++++++++++---------------------------- po/ca.po | 146 ++++++++++++++++++++++++++++---------------------------- po/cs.po | 146 ++++++++++++++++++++++++++++---------------------------- po/da.po | 146 ++++++++++++++++++++++++++++---------------------------- po/de.po | 146 ++++++++++++++++++++++++++++---------------------------- po/deadbeef.pot | 146 ++++++++++++++++++++++++++++---------------------------- po/el.po | 146 ++++++++++++++++++++++++++++---------------------------- po/en_GB.po | 146 ++++++++++++++++++++++++++++---------------------------- po/eo.po | 146 ++++++++++++++++++++++++++++---------------------------- po/es.po | 146 ++++++++++++++++++++++++++++---------------------------- po/et.po | 146 ++++++++++++++++++++++++++++---------------------------- po/fa.po | 146 ++++++++++++++++++++++++++++---------------------------- po/fi.po | 146 ++++++++++++++++++++++++++++---------------------------- po/fr.po | 146 ++++++++++++++++++++++++++++---------------------------- po/gl.po | 146 ++++++++++++++++++++++++++++---------------------------- po/he.po | 146 ++++++++++++++++++++++++++++---------------------------- po/hr.po | 146 ++++++++++++++++++++++++++++---------------------------- po/hu.po | 146 ++++++++++++++++++++++++++++---------------------------- po/id.po | 146 ++++++++++++++++++++++++++++---------------------------- po/it.po | 146 ++++++++++++++++++++++++++++---------------------------- po/ja.po | 146 ++++++++++++++++++++++++++++---------------------------- po/kk.po | 146 ++++++++++++++++++++++++++++---------------------------- po/km.po | 146 ++++++++++++++++++++++++++++---------------------------- po/lg.po | 146 ++++++++++++++++++++++++++++---------------------------- po/lt.po | 146 ++++++++++++++++++++++++++++---------------------------- po/nb.po | 146 ++++++++++++++++++++++++++++---------------------------- po/nl.po | 146 ++++++++++++++++++++++++++++---------------------------- po/pl.po | 146 ++++++++++++++++++++++++++++---------------------------- po/pt.po | 146 ++++++++++++++++++++++++++++---------------------------- po/pt_BR.po | 146 ++++++++++++++++++++++++++++---------------------------- po/ro.po | 146 ++++++++++++++++++++++++++++---------------------------- po/ru.po | 146 ++++++++++++++++++++++++++++---------------------------- po/si.po | 146 ++++++++++++++++++++++++++++---------------------------- po/sk.po | 146 ++++++++++++++++++++++++++++---------------------------- po/sl.po | 146 ++++++++++++++++++++++++++++---------------------------- po/sr.po | 146 ++++++++++++++++++++++++++++---------------------------- po/sr@latin.po | 146 ++++++++++++++++++++++++++++---------------------------- po/sv.po | 146 ++++++++++++++++++++++++++++---------------------------- po/te.po | 146 ++++++++++++++++++++++++++++---------------------------- po/tr.po | 146 ++++++++++++++++++++++++++++---------------------------- po/ug.po | 146 ++++++++++++++++++++++++++++---------------------------- po/uk.po | 146 ++++++++++++++++++++++++++++---------------------------- po/vi.po | 146 ++++++++++++++++++++++++++++---------------------------- po/zh_CN.po | 146 ++++++++++++++++++++++++++++---------------------------- po/zh_TW.po | 146 ++++++++++++++++++++++++++++---------------------------- 47 files changed, 3431 insertions(+), 3431 deletions(-) diff --git a/po/be.po b/po/be.po index 70ffe07f..c6c00118 100644 --- a/po/be.po +++ b/po/be.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.4.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2011-12-15 20:32+0200\n" "Last-Translator: Мікалай \n" "Language-Team: Belarusian <>\n" @@ -57,8 +57,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Даведка" @@ -174,11 +174,11 @@ msgstr "%d дзён %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Стоп | %d трэкаў | %s агульны час" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Мона" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Стэрэа" @@ -288,7 +288,7 @@ msgstr "Інвертаваць вылучэнне" msgid "Selection" msgstr "Вылучэнне" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -313,7 +313,7 @@ msgstr "Парадкаваць па" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -332,7 +332,7 @@ msgstr "Альбом" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Выканаўца" @@ -348,7 +348,7 @@ msgid "Random" msgstr "Выпадкова" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Карыстальніцкі" @@ -515,7 +515,7 @@ msgstr "_Замкнуць" msgid "Metadata" msgstr "Метаданыя" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Уласцівасці" @@ -883,7 +883,7 @@ msgid "Select DSP Plugin" msgstr "Вылучце плагін DSP" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Плагін" @@ -962,47 +962,47 @@ msgstr "" "(Гэты дыялог можы быць адключаны ў настаўленнях плагіна GTKUI)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Увага" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Дадаць у чаргу" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Выдаліць з чаргі" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Аднавіць метададзеныя" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Выдаліць з жорсткага дыска" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Дадаць слупок" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Рэдагаваць слупок" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Прыбраць слупок" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Групаваць па" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Няма" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Выканаўца/Дата/Альбом" @@ -1056,97 +1056,97 @@ msgid "Really close the window?" msgstr "Закрыць акно?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Некалькі велічынь] " -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Ключ" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Значэнне" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Запісанне тэгаў..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Назва:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Назвы палёў не могуць пачынацца з : ці _" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Немагчыма дадаць поле" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Поле з такой назвай ужо ёсць, паспрабуйце назваць інакш." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Дадаць поле" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Сцерці поле" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Ужыванне: deadbeef [опцыі] [файл(ы)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Опцыі:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help ці -h Адлюстраваць даведку (гэты тэкст) і выйсці\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Выйсці з плэера\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr "" " --version Адлюстраваць інфармацыю аб версіі праграмы і выйсці\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Пачаць граць\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Спыніць прайграванне\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Прыпыніць прайграванне\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Пераключыць паўзу\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" @@ -1154,38 +1154,38 @@ msgstr "" " --play-pause Пачаць прайграванне, калі спынена, іначай пераключыць " "паўзу\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Настуная песня ў плэйлісце\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Папярэдняя песня ў плэйлісце\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Выпадковая песня ў плэлісце\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Дадаць файл(ы) у існуючы плэйліст\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Адлюстраваць адфарматыраваную назву трэка\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1198,7 +1198,7 @@ msgstr "" "каментарый,\n" " %%r-аўтарскія правы, %%e-пройдзены час\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1207,7 +1207,7 @@ msgstr "" " Напрыклад: --nowplaying \"%%a - %%t\" павінна вывесці " "на экран \"artist - title\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1216,15 +1216,15 @@ msgstr "" " за падрабязнымі звесткамі, гл. http://sourceforge.net/" "apps/mediawiki/deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Прадвызначана" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Так" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Не" @@ -1629,27 +1629,27 @@ msgstr "Файл ужо існуе. Перапісаць?" msgid "Converter warning" msgstr "Папярэджанне канвертара" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Выберыце кадавальнік" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Памылка кадавальніка" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Пераўтварэнне..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Вылучыць каталог..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Не ўдалося запісаць профіль кадавальніка" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1657,51 +1657,51 @@ msgstr "" "Праверце правы доступу каталога, паспрабуйце іншую назву, ці высвабадзіце " "месца на дыску" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "Профіль з такой назвай ужо існуе. Паспрабуйце іншую назву." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Памылка" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Дадаць кадавальнік" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Рэдагаваць кадавальнік" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Сцерці профіль" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "Гэта дзеянне выдаліць вылучаны профіль. Упэўнены?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Кадавальнікі" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Дадаць плагін у ланцуг DSP" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "Не ўдалося запісаць профіль DSP" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Новы профіль DSP" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "Рэдагаваць профіль DSP" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "Профілі DSP" diff --git a/po/bg.po b/po/bg.po index 6b19006a..c960f3fa 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-04-08 23:49+0200\n" "Last-Translator: Радослав \n" "Language-Team: LANGUAGE \n" @@ -55,8 +55,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Помощ" @@ -172,11 +172,11 @@ msgstr "%d дена %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Спрян | %d песни | %s времетраене" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Моно" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Стерео" @@ -285,7 +285,7 @@ msgstr "Обръщане на избора" msgid "Selection" msgstr "Подбиране" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -310,7 +310,7 @@ msgstr "Сортиране по" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -329,7 +329,7 @@ msgstr "Албум" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Изпълнител" @@ -345,7 +345,7 @@ msgid "Random" msgstr "Произволно" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Предпочитани" @@ -512,7 +512,7 @@ msgstr "_Затваряне" msgid "Metadata" msgstr "Метаданни" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Свойства" @@ -881,7 +881,7 @@ msgid "Select DSP Plugin" msgstr "Избор на приставка за DSP (разпределение на цифровите сигнали)" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Приставка" @@ -961,47 +961,47 @@ msgstr "" "на приставката за Графичния вид)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Предупреждение" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Добави в опашката за изпълнение" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Премахни от опашката за изпълнение" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Презареди метаданните" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Прехани от носителя" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Добавяне на Колона" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Редактиране на Колона" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Премахване на Колона" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Групиране по" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Нищо" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Изпълнител/Дата/Албум" @@ -1055,96 +1055,96 @@ msgid "Really close the window?" msgstr "Да се затвори ли прозореца?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Множество стойности]" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Ключ" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Стойност" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Записване на етикетите..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Име:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Имената на полетата не могат да започват с \":\" или \"_\"" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Не може да бъде добавено поле" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Вече съществува поле със същото име, моля пробвайте с друго!" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Добавяне на поле" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Премахване на поле" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Употреба: deadbeef [опции] [файл(ове)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Опции:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr "--help или -h Изписва помощ (това съобщение) и излиза\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr "--quit Изход от Плейъра\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr "--version Изписва информация за версията и излиза\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr "--play Възпроизвеждане\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr "--stop Спиране\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr "--pause Паузиране\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "--toggle-pause Превключване в\\от режим на пауза\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" @@ -1152,38 +1152,38 @@ msgstr "" "--play-pause Започване на възпроизвеждане, ако е спряно или излизане от " "режим на пауза\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr "--next Следващата песен в листа\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr "--prev Предишната песен в листа\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr "--random Произволна песен от листа\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "--queue Прибавяне на файл(ове) в съществуващия лист\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "--nowplaying \"Формат\" Изписва Форматирано име\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1194,14 +1194,14 @@ msgstr "" "[b]-Албум, [l]-Времетраене, [n]-Номер на песента,\n" "[y]-Година, [c]-Коментар, [r]-Авторски права, [e]-Изминали\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " "- title\"\n" msgstr "пр.: --nowplaying \"%%a - %%t\" ще изведе \"изпълнител - песен\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1210,15 +1210,15 @@ msgstr "" "За повече информация: http://sourceforge.net/apps/mediawiki/deadbeef/index." "php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "По подразбиране" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Да" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Не" @@ -1625,27 +1625,27 @@ msgstr "Файлът вече съществува. Презипасване?" msgid "Converter warning" msgstr "Внимание при превръщане" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Моля изберете кодиране" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Грешка при превръщане" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Превръщане..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Избор на директория..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Неуспех при записване за избраното кодиране" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1653,51 +1653,51 @@ msgstr "" "Проверете правата за избраната папка, пробвайте да изберете друго име на " "файла или освободете място на диска." -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "Дублират се имената. Пробвайте да изберете друго име." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Грешка" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Добави ново кодиране" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Редактиране на кодирането" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Премахни зададеното" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "Това ще премахне зададения профил. Сигурни ли сте?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Планове за кодиране" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Слагане на добавка в DSP канала" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "Неуспех при запаметяване на DSP профила" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Нов DSP профил" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "Редактирай DSP профила" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "DSP профили" diff --git a/po/bn.po b/po/bn.po index 0311ba07..21506e23 100644 --- a/po/bn.po +++ b/po/bn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: bn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2010-06-15 12:31+0600\n" "Last-Translator: Israt Jahan \n" "Language-Team: LBengali \n" @@ -56,8 +56,8 @@ msgid "help.txt" msgstr "" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "সহায়তা" @@ -174,11 +174,11 @@ msgstr "%d দিন %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "বন্ধ | %d ট্র্যাকসমুহ | %s সর্বমোট যতটুকু সময় চালানো হয়েছে" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "মোনো" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "স্টেরিও" @@ -289,7 +289,7 @@ msgstr "বিপরীতমুখী নির্বাচন" msgid "Selection" msgstr "নির্বাচন" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -313,7 +313,7 @@ msgstr "" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -333,7 +333,7 @@ msgstr "অ্যালবাম" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "শিল্পী" @@ -349,7 +349,7 @@ msgid "Random" msgstr "এলোমেলো" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "স্বনির্ধারিত" @@ -518,7 +518,7 @@ msgstr "বন্ধ করুন (_C)" msgid "Metadata" msgstr "মেটাডাটা" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "বৈশিষ্ট্যাবলী" @@ -888,7 +888,7 @@ msgid "Select DSP Plugin" msgstr "নির্বাচন" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 #, fuzzy msgid "Plugin" @@ -969,47 +969,47 @@ msgstr "" "(GTKUI প্লাগইন সেটিং এ এই ডায়ালগটি বন্ধ করা যেতে পারে)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "সতর্কবানী" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "প্লেব্যাকের সারিতে যোগ করুন" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "প্লেব্যাক সারি থেকে অপসারণ করুন" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "মেটাডাটা পুনরায় লোড করুন" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "ডিস্ক থেকে অপসারণ করুন" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "কলাম যোগ করুন" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "কলাম সম্পাদনা করুন" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "কলাম অপসারণ করুন" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "যা অনুসারে গ্রুপ হবে" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "কোনটি না" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "শিল্পী/তারিখ/অ্যালবাম" @@ -1063,135 +1063,135 @@ msgid "Really close the window?" msgstr "সত্যিই উইন্ডোটি বন্ধ করতে চান?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "কী" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "মান" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 #, fuzzy msgid "Add field" msgstr "ফাইল যোগ করুন" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 #, fuzzy msgid "Remove field" msgstr "অপসারণ" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "ব্যবহারের নিয়ম: deadbeef [অপশন] [ফাইল]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "অপশন:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --সহায়তা অথবা -h সহায়তা মুদ্রণ করুন (এই বার্তা) এবং প্রস্থান করুন\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --বন্ধ করুন প্লেয়ার বন্ধ করুন\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --সংস্করণ সংস্করণের তথ্য মুদ্রণ করে বন্ধ করুন\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --চালান প্লেব্যাক শুরু করুন\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --বন্ধ করুন প্লেব্যাক বন্ধ করুন\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --বিরতি প্লেব্যাক বিরত রাখুন\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --পরবর্তী প্লেলিস্টে পরবর্তী গান\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --পূর্ববর্তী প্লেলিস্টে পূর্ববর্তী গান\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --এলোমেলো প্লেলিস্টে এলোমেলো গান\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --সারি বিদ্যমান প্লেলিস্টে সবশেষে যোগ করা ফাইল\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --FMT এখন চলছে স্ট্যান্ডআউটে বিন্যাসিত ট্র্যাক নাম মুদ্রণ করুন\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1202,7 +1202,7 @@ msgstr "" " [l]ength, track[n]umber, [y]ear, [c]omment,\n" " copy[r]ight, [e]lapsed\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1211,22 +1211,22 @@ msgstr "" " e.g.: --এখন চলছে \"%%a - %%t\" মুদ্রণ হবে \"শিল্পী - " "শিরোনাম\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "পূর্বনির্ধারিত" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "হ্যাঁ" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "না" @@ -1636,82 +1636,82 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 #, fuzzy msgid "Select folder..." msgstr "সব নির্বাচন করুন" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 #, fuzzy msgid "Edit encoder" msgstr "কলাম সম্পাদনা করুন" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 #, fuzzy msgid "Remove preset" msgstr "পূর্বনির্ধারিত অংশ সংরক্ষণ করুন" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 #, fuzzy msgid "New DSP Preset" msgstr "পূর্বনির্ধারিত অংশ সংরক্ষণ করুন" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 #, fuzzy msgid "Edit DSP Preset" msgstr "পূর্বনির্ধারিত অংশ সংরক্ষণ করুন" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 #, fuzzy msgid "DSP Presets" msgstr "পূর্বনির্ধারিত অংশ সংরক্ষণ করুন" diff --git a/po/ca.po b/po/ca.po index 0e6cc85d..11f760c3 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2010-09-01 00:39+0200\n" "Last-Translator: sisco \n" "Language-Team: LANGUAGE \n" @@ -57,8 +57,8 @@ msgid "help.txt" msgstr "" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Ajuda" @@ -184,11 +184,11 @@ msgstr "%d dies %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Aturat | %d temes | %s temps total" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 #, fuzzy msgid "Stereo" msgstr "Estèreo" @@ -298,7 +298,7 @@ msgstr "Inverteix la selecció" msgid "Selection" msgstr "Selecció" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -323,7 +323,7 @@ msgstr "" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -343,7 +343,7 @@ msgstr "Àlbum" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Artista" @@ -359,7 +359,7 @@ msgid "Random" msgstr "Aleatori" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Personalització" @@ -537,7 +537,7 @@ msgstr "_Tanca" msgid "Metadata" msgstr "Metadada" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Propietats" @@ -908,7 +908,7 @@ msgid "Select DSP Plugin" msgstr "Selecció" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "" @@ -985,47 +985,47 @@ msgid "" msgstr "" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "" @@ -1079,135 +1079,135 @@ msgid "Really close the window?" msgstr "" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 #, fuzzy msgid "Add field" msgstr "Afegeix fitxer(s)" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 #, fuzzy msgid "Remove field" msgstr "Elimina" -#: ../main.c:84 +#: ../main.c:89 #, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr "" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr "" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr "" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr "" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr "" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr "" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr "" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr "" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr "" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1215,29 +1215,29 @@ msgid "" " copy[r]ight, [e]lapsed\n" msgstr "" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " "- title\"\n" msgstr "" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "" @@ -1620,81 +1620,81 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 #, fuzzy msgid "Select folder..." msgstr "Selecciona-ho tot" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 #, fuzzy msgid "Remove preset" msgstr "Desa els preajustaments" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 #, fuzzy msgid "New DSP Preset" msgstr "Desa els preajustaments" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 #, fuzzy msgid "Edit DSP Preset" msgstr "Desa els preajustaments" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 #, fuzzy msgid "DSP Presets" msgstr "Desa els preajustaments" diff --git a/po/cs.po b/po/cs.po index dc141d4c..23b0749f 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: DeaDBeeF\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-08-14 13:25+0200\n" "Last-Translator: ALIUM \n" "Language-Team: čeština <>\n" @@ -58,8 +58,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Nápověda" @@ -175,11 +175,11 @@ msgstr "%d dní %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Zastaveno | %d stop | %s celkový čas přehrávání" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -290,7 +290,7 @@ msgstr "Invertovat výběr" msgid "Selection" msgstr "Výběr" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -315,7 +315,7 @@ msgstr "Třídit dle" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -334,7 +334,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Umělec" @@ -350,7 +350,7 @@ msgid "Random" msgstr "Náhodně" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Vlastní" @@ -517,7 +517,7 @@ msgstr "_Zavřít" msgid "Metadata" msgstr "Metadata" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Vlastnosti" @@ -884,7 +884,7 @@ msgid "Select DSP Plugin" msgstr "Vybrat zásuvný modul DSP" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Zásuvný modul" @@ -963,47 +963,47 @@ msgstr "" "(Tento dialog lze vypnout v nastavení zásuvného modulu GTKUI)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Upozornění" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Přidat do fronty přehrávání" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Odstranit z fronty přehrávání" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Znovu načíst metadata" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Odstranit z disku" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Přidat sloupec" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Upravit sloupec" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Odstranit sloupec" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Seskupit dle" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Žádné" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Umělec/Datum/Album" @@ -1057,96 +1057,96 @@ msgid "Really close the window?" msgstr "Opravdu zavřít okno?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Vícenásobné hodnoty] " -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Klávesa" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Hodnota" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Zapisují se tagy..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Jméno:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Název pole nesmí začínat : nebo _" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Nelze přidat pole" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Pole s tímto názvem již existuje, prosím, zvolte jiný název." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Přidat pole" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Odstranit pole" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Použití: deadbeef [volby] [soubor(y)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Volby:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help or -h Zobrazit nápovědu (tuto zprávu) a ukončit\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Zavřít přehrávač\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Zobrazit verzi a ukončit\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Zahájit přehrávání\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Zastavit přehrávání\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Pauza přehrávání\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Přepnout pauzu\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" @@ -1154,38 +1154,38 @@ msgstr "" " --play-pause Spustit přehrávání, pokud je zastaveno, jinak přepnout " "pauzu\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Další skladba z playlistu\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Předchozí skladba z playlistu\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Náhodná skladba z playlistu\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Připojit soubor(y) do existujícího playlistu\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Zapsat zformátovaný název stopy do stdout\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1196,7 +1196,7 @@ msgstr "" " [l]ength, track[n]umber, [y]ear, [c]omment,\n" " copy[r]ight, [e]lapsed\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1205,7 +1205,7 @@ msgstr "" " např.: --nowplaying \"%%a - %%t\" zapíše \"umělec - " "název\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1214,15 +1214,15 @@ msgstr "" " pro další informace navštivte http://sourceforge.net/" "apps/mediawiki/deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Výchozí" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Ano" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Ne" @@ -1628,27 +1628,27 @@ msgstr "Soubor již existuje. Přepsat?" msgid "Converter warning" msgstr "Varování konvertoru" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Vyberte enkodér" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Chyba konvertoru" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Převádí se..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Vybrat adresář..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Selhalo ukládání předvolby enkodéru" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1656,51 +1656,51 @@ msgstr "" "Ověřte oprávnění k adresáři předvolby, zvolte jiný název nebo uvolněte místo " "na disku" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "Předvolba stejného jména již existuje. Zkuste zvolit jiný název." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Chyba" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Přidat nový enkodér" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Upravit enkodér" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Odstranit předvolbu" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "Tato akce odstraní vybranou předvolbu. Pokračovat?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Enkodéry" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Přidat zásuvný modul do řetězce DSP" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "Selhalo ukládání předvolby DSP" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Nová předvolba DSP" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "Upravit předvolbu DSP" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "Předvolby DSP" diff --git a/po/da.po b/po/da.po index a4818968..431c85e6 100644 --- a/po/da.po +++ b/po/da.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: deadbeef\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2011-12-27 13:40+0200\n" "Last-Translator: mjjzf \n" "Language-Team: \n" @@ -65,8 +65,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Hjælp" @@ -189,11 +189,11 @@ msgstr "%d dage %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Stoppet | %d numre | %s samlet afspilningstid" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -304,7 +304,7 @@ msgstr "Inverter markering" msgid "Selection" msgstr "Markering" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -329,7 +329,7 @@ msgstr "Sorter efter" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -348,7 +348,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Kunstner" @@ -364,7 +364,7 @@ msgid "Random" msgstr "Tilfældig" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Tilpasset" @@ -537,7 +537,7 @@ msgstr "_Luk" msgid "Metadata" msgstr "Metadata" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Egenskaber" @@ -924,7 +924,7 @@ msgid "Select DSP Plugin" msgstr "Markering" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 #, fuzzy msgid "Plugin" @@ -1005,47 +1005,47 @@ msgstr "" "(Denne dialog kan fjernes i opsætningen for GTKUI-udvidelsesmodulet)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Advarsel" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Tilføj til afspilningskø" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Fjern fra afspilningskø" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Genindlæs metadata" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Fjern fra disk" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Tilføj kolonne" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Rediger kolonne" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Fjern kolonne" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Grupper efter" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Ingen" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Kunster/dato/album" @@ -1099,135 +1099,135 @@ msgid "Really close the window?" msgstr "Luk vinduet?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Tast" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Værdi" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 #, fuzzy msgid "Add field" msgstr "Tilføj filer" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 #, fuzzy msgid "Remove field" msgstr "Fjern" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Brug: deadbeef [tilvalg] [filer]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Tilvalg:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help eller -h Vis hjælp (denne besked) og afslut\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Afslut afspiller\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Vis versionsinfo og afslut\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Start afspilning\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Stop afspilning\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Pause afspilning\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Næste sang i afspilningsliste\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Forrige sang i afspilningsliste\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Tilfældig sang i afspilningsliste\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Tilføj filer til eksisterende afspilningsliste\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Vis formateret nummernavn til stdout\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1238,7 +1238,7 @@ msgstr "" " [l] længde, [n] nummer, [y] år, [c] bemærkning,\n" " [r] ophavsret, [e] forløbet\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1247,22 +1247,22 @@ msgstr "" " f.eks.: --nowplaying \"%%a - %%t\" skal vise »kunstner " "- titel«\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Standard" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Ja" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Nej" @@ -1675,82 +1675,82 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 #, fuzzy msgid "Select folder..." msgstr "Vælg alle" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 #, fuzzy msgid "Edit encoder" msgstr "Rediger kolonne" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 #, fuzzy msgid "Remove preset" msgstr "Gem forhåndsindstilling" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 #, fuzzy msgid "New DSP Preset" msgstr "Gem forhåndsindstilling" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 #, fuzzy msgid "Edit DSP Preset" msgstr "Gem forhåndsindstilling" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 #, fuzzy msgid "DSP Presets" msgstr "Gem forhåndsindstilling" diff --git a/po/de.po b/po/de.po index 3aa6fff6..5b4f4cf3 100644 --- a/po/de.po +++ b/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: DeaDBeeF\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-07-09 21:31+0200\n" "Last-Translator: Daniel \n" "Language-Team: \n" @@ -57,8 +57,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Hilfe" @@ -174,11 +174,11 @@ msgstr "%d Tage %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Angehalten | %d Titel | %s gesamte Spielzeit" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -288,7 +288,7 @@ msgstr "Auswahl umkehren" msgid "Selection" msgstr "Auswahl" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -313,7 +313,7 @@ msgstr "Sortieren nach" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -332,7 +332,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Künstler" @@ -348,7 +348,7 @@ msgid "Random" msgstr "Zufällig" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Benutzerdefiniert" @@ -515,7 +515,7 @@ msgstr "S_chließen" msgid "Metadata" msgstr "Metadaten" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Eigenschaften" @@ -884,7 +884,7 @@ msgid "Select DSP Plugin" msgstr "Auswahl des DSP-Plugins" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Erweiterung" @@ -963,47 +963,47 @@ msgstr "" "(Diese Abfrage kann in den Einstellungen des GTK-Plugin abgeschaltet werden)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Warnung" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Zur Warteschlange hinzufügen" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Von Warteschlange entfernen" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Metadaten neu laden" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Vom Datenträger entfernen" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Spalte hinzufügen" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Spalte bearbeiten" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Spalte entfernen" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Gruppieren nach" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Nichts" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Künstler/Datum/Album" @@ -1058,137 +1058,137 @@ msgid "Really close the window?" msgstr "Möchten Sie das Fenster wirklich schließen?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Mehrere Werte] " -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Schlüssel" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Wert" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Speichere Tags..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Name:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Feldnamen dürfen nicht mit : oder _ beginnen" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Kann Feld nicht hinzufügen" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" "Ein Feld mit diesem Namen existiert bereits, bitte einen anderen Name wählen." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Feld hinzufügen" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Feld entfernen" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Benutzung: deadbeef [Optionen] [Datei(en)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Optionen:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help oder -h Hilfe (diese Meldung) anzeigen und beenden\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Player beenden\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Versionsinformationen anzeigen und beenden\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Wiedergabe starten\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Wiedergabe beenden\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Wiedergabe pausieren\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Wiedergabe umschalten (Play/Pause)\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" " --play-pause Wiedergabe starten falls angehalten, sonst pausieren\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Nächster Titel in der Wiedergabeliste\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Vorheriger Titel in der Wiedergabeliste\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Zufälliger Titel in der Wiedergabeliste\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "" " --queue Datei(en) an bestehende Wiedergabeliste anhängen\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" " --nowplaying FMT Formatierten Tracknamen auf Standardausgabe schreiben\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1199,7 +1199,7 @@ msgstr "" " [l]änge, Titel[n]ummer, [y]Jahr, [c]Kommentar,\n" " copy[r]ight, [e]verstrichen\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1208,7 +1208,7 @@ msgstr "" " z.B.: --nowplaying \"%%a - %%t\" sollte \"Artist - " "Titel\" ausgeben\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1217,15 +1217,15 @@ msgstr "" "für mehr Informationen siehe http://sourceforge.net/apps/mediawiki/deadbeef/" "index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Standard" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Ja" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Nein" @@ -1631,27 +1631,27 @@ msgstr "Die Datei existiert bereits. Überschreiben?" msgid "Converter warning" msgstr "Converter: Warnung" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Bitte einen Encoder auswählen" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Converter: Fehler" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Konvertiere..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Verzeichnis wählen..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Fehler beim Speichern des Encoder-Profil" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1659,53 +1659,53 @@ msgstr "" "Bitte Zugriffsrechte auf das Verzeichnis prüfen, einen anderen Titel wählen " "oder freien Platz auf der Festplatte schaffen" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" "Ein Profil mit diesem Namen existiert bereits. Bitte einen anderen Titel " "wählen." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Fehler" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Neuen Encoder hinzufügen" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Encoder bearbeiten" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Profil entfernen" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "Diese Aktion wird das gewählte Profil löschen. Sind Sie sicher?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Encoder" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Plugin in DSP-Kette einfügen" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "Fehler beim Speichern des DSP-Profils" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Neues DSP-Profil" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "DSP-Profil bearbeiten" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "DSP-Profile" diff --git a/po/deadbeef.pot b/po/deadbeef.pot index 129768f5..a4b260d9 100644 --- a/po/deadbeef.pot +++ b/po/deadbeef.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -54,8 +54,8 @@ msgid "help.txt" msgstr "" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "" @@ -171,11 +171,11 @@ msgstr "" msgid "Stopped | %d tracks | %s total playtime" msgstr "" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "" @@ -284,7 +284,7 @@ msgstr "" msgid "Selection" msgstr "" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -308,7 +308,7 @@ msgstr "" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -327,7 +327,7 @@ msgstr "" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "" @@ -343,7 +343,7 @@ msgid "Random" msgstr "" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "" @@ -507,7 +507,7 @@ msgstr "" msgid "Metadata" msgstr "" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "" @@ -869,7 +869,7 @@ msgid "Select DSP Plugin" msgstr "" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "" @@ -946,47 +946,47 @@ msgid "" msgstr "" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "" @@ -1039,133 +1039,133 @@ msgid "Really close the window?" msgstr "" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "" -#: ../main.c:84 +#: ../main.c:89 #, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr "" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr "" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr "" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr "" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr "" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr "" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr "" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr "" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr "" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1173,29 +1173,29 @@ msgid "" " copy[r]ight, [e]lapsed\n" msgstr "" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " "- title\"\n" msgstr "" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "" @@ -1574,77 +1574,77 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "" diff --git a/po/el.po b/po/el.po index 379b5ebd..c937cfb3 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-05-20 22:09+0200\n" "Last-Translator: George \n" "Language-Team: Greek\n" @@ -57,8 +57,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Βοήθεια" @@ -174,11 +174,11 @@ msgstr "%d μέρες %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Διακοπή | %d κομμάτια | %s συνολικός χρόνος αναπαραγωγής" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Μονοφωνικό" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Στερεοφωνικό" @@ -289,7 +289,7 @@ msgstr "Αναστροφή επιλογής" msgid "Selection" msgstr "Επιλεγμένο" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -314,7 +314,7 @@ msgstr "Ταξινόμηση κατά" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -333,7 +333,7 @@ msgstr "Άλμπουμ" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Καλλιτέχνης" @@ -349,7 +349,7 @@ msgid "Random" msgstr "Τυχαία" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Αυτοσχέδιο" @@ -516,7 +516,7 @@ msgstr "_Κλείσιμο" msgid "Metadata" msgstr "Μεταδεδομένα" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Ιδιότητες" @@ -885,7 +885,7 @@ msgid "Select DSP Plugin" msgstr "Επιλέξτε πρόσθετο DSP" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Πρόσθετο" @@ -965,47 +965,47 @@ msgstr "" "GTKUI)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Προειδοποίηση" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Προσθήκη στην ουρά αναπαραγωγής" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Αφαίρεση από την ουρά αναπαραγωγής" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Επαναφόρτωση μεταδεδομένων" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Αφαίρεση από τον δίσκο" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Προσθήκη στήλης" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Επεξεργασία στήλη" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Αφαίρεση στήλης" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Ομαδοποίηση κατά" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Κανένα" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Καλλιτέχνης/Ημερομηνία/Άλμπουμ" @@ -1059,98 +1059,98 @@ msgid "Really close the window?" msgstr "Είστε σίγουροι πως θέλετε να κλείσετε το παράθυρο;" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[πολλαπλές τιμές]" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Πλήκτρο" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Τιμή" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Εγγραφή ετικετών..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Όνομα:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Τα πεδία ονόματος δεν πρέπει να ξεκινούν με : ή _" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Αποτυχία προσθήκης πεδίου" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" "Υπάρχει ήδη πεδίο με αυτό το όνομα, παρακαλώ προσπαθήστε με ένα διαφορετικό " "όνομα." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Προσθήκη πεδίου" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Αφαίρεση πεδίου" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Χρήση: deadbeef [επιλογές] [αρχεία]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Επιλογές:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help ή -h Εμφάνιση κειμένου βοήθειας και έξοδος\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr "--quit Έξοδος\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr "--version Εμφάνιση πληροφοριών έκδοσης και έξοδος\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr "--play Εκκίνηση αναπαραγωγής\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr "--stop Διακοπή αναπαραγωγής\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr "--pause Παύση αναπαραγωγής\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "--toggle-pause Εναλλαγή παύσης\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" @@ -1158,38 +1158,38 @@ msgstr "" "--play-pause Εκκίνηση αναπαραγωγής αν είναι σταματημένο, αλλιώς εναλλαγή " "παύσης\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr "--next Επόμενο κομμάτι στη λίστα αναπαραγωγής\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr "--prev Προηγούμενο κομμάτι στη λίστα αναπαραγωγής\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr "--random Τυχαίο κομμάτι στη λίστα αναπαραγωγής\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "--queue Προσάρτηση αρχείου στην υπάρχουσα λίστα αναπαραγωγής\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "--nowplaying FMT Εμφάνιση μορφοποιημένου ονόματος κομματιού\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1200,14 +1200,14 @@ msgstr "" " [l]ength, track[n]umber, [y]ear, [c]omment,\n" " copy[r]ight, [e]lapsed\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " "- title\"\n" msgstr "π.χ.: --nowplaying \"%%a - %%t\" θα εμφανίσει \"artist - title\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1216,15 +1216,15 @@ msgstr "" "για περισσότερες πληροφορίες, δείτε το http://sourceforge.net/apps/mediawiki/" "deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Προεπιλογή" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Ναί" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Όχι" @@ -1630,27 +1630,27 @@ msgstr "Το αρχείο υπάρχει ήδη. Να αντικατασταθε msgid "Converter warning" msgstr "Προειδοποίηση μετατροπής" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Παρακαλώ επιλέξτε κωδικοποιητή " -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Σφάλμα μετατροπέα" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Μετατροπή..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Επιλογή φακέλου" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Αποτυχία αποθήκευσης προρύθμισης κωδικοποιητή " -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1658,54 +1658,54 @@ msgstr "" "Ελέγξτε τα δικαιώματα του φακέλου προρυθμίσεων, δοκιμάστε με ένα διαφορετικό " "όνομα, ή ελευθερώστε χώρο στο σκληρό δίσκο" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" "Υπάρχει ήδη μια προρύθμιση με αυτό το όνομα. Δοκιμάστε να διαλέξετε ένα " "διαφορετικό όνομα." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Σφάλμα" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Προσθήκη κωδικοποιητή" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Επεξεργασία κωδικοποιητή" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Αφαίρεση προρύθμισης" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" "Αυτή η ενέργεια θα διαγράψει την επιλεγμένη προρύθμιση. Είστε σίγουρος;" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Κωδικοποιητές" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Προσθήκη πρόσθετου στην αλυσίδα DSP" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "Αποτυχία αποθήκευσης προρύθμισης DSP" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Νέα DSP προρύθμιση" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "Επεξεργασία DSP προρύθμισης" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "Προρυθμίσεις DSP" diff --git a/po/en_GB.po b/po/en_GB.po index 9c11cd5f..69140b95 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: 0xDeadBeef\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-01-25 00:29+0200\n" "Last-Translator: Steve \n" "Language-Team: English (United Kingdom) \n" @@ -54,8 +54,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Help" @@ -171,11 +171,11 @@ msgstr "%d days %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Stopped | %d tracks | %s total playtime" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -285,7 +285,7 @@ msgstr "Invert selection" msgid "Selection" msgstr "Selection" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -310,7 +310,7 @@ msgstr "Sort By" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -329,7 +329,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Artist" @@ -345,7 +345,7 @@ msgid "Random" msgstr "Random" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Custom" @@ -512,7 +512,7 @@ msgstr "_Close" msgid "Metadata" msgstr "Metadata" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Properties" @@ -877,7 +877,7 @@ msgid "Select DSP Plugin" msgstr "Select DSP Plugin" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Plugin" @@ -956,47 +956,47 @@ msgstr "" "(This dialog can be turned off in GTKUI plugin settings)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Warning" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Add to playback queue" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Remove from playback queue" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Reload metadata" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Remove from disk" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Add column" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Edit column" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Remove column" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Group by" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "None" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Artist/Date/Album" @@ -1050,134 +1050,134 @@ msgid "Really close the window?" msgstr "Really close the window?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Multiple values] " -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Key short-cuts" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Value" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Writing tags..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Name:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Field names must not start with : or _" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Cannot add field" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Field with such name already exists, please try different name." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Add field" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Remove field" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Usage: deadbeef [options] [file(s)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Options:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help or -h Print help (this message) and exit\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Quit player\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Print version info and exit\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Start playback\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Stop playback\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Pause playback\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Toggle pause\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" " --play-pause Start playback if stopped, toggle pause otherwise\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Next song in playlist\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Previous song in playlist\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Random song in playlist\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Append file(s) to existing playlist\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Print formatted track name to stdout\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1188,7 +1188,7 @@ msgstr "" " [l]ength, track[n]umber, [y]ear, [c]omment,\n" " copy[r]ight, [e]lapsed\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1197,7 +1197,7 @@ msgstr "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " "- title\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1206,15 +1206,15 @@ msgstr "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Default" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Yes" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "No" @@ -1611,27 +1611,27 @@ msgstr "The file already exists. Overwrite?" msgid "Converter warning" msgstr "Converter warning" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Please select encoder" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Converter error" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Converting..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Select folder..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Failed to save encoder preset" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1639,51 +1639,51 @@ msgstr "" "Check preset folder permissions, try to pick a different title, or free up " "some disk space" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "Preset with the same name already exists. Pick another title." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Error" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Add new encoder" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Edit encoder" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Remove preset" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "This action will delete the selected preset. Are you sure?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Encoders" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Add plugin to DSP chain" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "Failed to save DSP preset" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "New DSP Preset" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "Edit DSP Preset" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "DSP Presets" diff --git a/po/eo.po b/po/eo.po index 88da1f2b..399eee78 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2011-09-25 17:37+0200\n" "Last-Translator: Kristjan \n" "Language-Team: LANGUAGE \n" @@ -57,8 +57,8 @@ msgid "help.txt" msgstr "helpo.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Helpo" @@ -174,11 +174,11 @@ msgstr "" msgid "Stopped | %d tracks | %s total playtime" msgstr "" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "" @@ -287,7 +287,7 @@ msgstr "" msgid "Selection" msgstr "" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -311,7 +311,7 @@ msgstr "" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -330,7 +330,7 @@ msgstr "" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "" @@ -346,7 +346,7 @@ msgid "Random" msgstr "" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "" @@ -510,7 +510,7 @@ msgstr "" msgid "Metadata" msgstr "" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "" @@ -872,7 +872,7 @@ msgid "Select DSP Plugin" msgstr "" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "" @@ -949,47 +949,47 @@ msgid "" msgstr "" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "" @@ -1042,133 +1042,133 @@ msgid "Really close the window?" msgstr "" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "" -#: ../main.c:84 +#: ../main.c:89 #, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr "" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr "" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr "" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr "" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr "" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr "" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr "" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr "" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr "" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1176,29 +1176,29 @@ msgid "" " copy[r]ight, [e]lapsed\n" msgstr "" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " "- title\"\n" msgstr "" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "" @@ -1577,77 +1577,77 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "" diff --git a/po/es.po b/po/es.po index 4d1fda3f..db460ac7 100644 --- a/po/es.po +++ b/po/es.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: DeaDBeef\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-01-09 03:04+0200\n" "Last-Translator: Hugo \n" "Language-Team: Spanish\n" @@ -58,8 +58,8 @@ msgid "help.txt" msgstr "ayuda.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Ayuda" @@ -175,11 +175,11 @@ msgstr "%d días y %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Detenido | %d pistas | Tiempo total: %s" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Estéreo" @@ -289,7 +289,7 @@ msgstr "Invertir selección" msgid "Selection" msgstr "Selección" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -314,7 +314,7 @@ msgstr "Ordenar por" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -333,7 +333,7 @@ msgstr "Álbum" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Artista" @@ -349,7 +349,7 @@ msgid "Random" msgstr "Aleatorio" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Personalizado" @@ -516,7 +516,7 @@ msgstr "_Cerrar" msgid "Metadata" msgstr "Metadatos" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Propiedades" @@ -883,7 +883,7 @@ msgid "Select DSP Plugin" msgstr "Seleccionar complemente DSP" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Complemento" @@ -962,47 +962,47 @@ msgstr "" "(Éste aviso puede desactivarse en las opciones del plugin GTKUI)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Aviso" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Añadir a cola de reproducción" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Quitar de cola de reproducción" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Recargar metadatos" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Eliminar archivo del disco" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Añadir columna" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Editar columna" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Quitar columna" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Agrupar por" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Nada" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Artista/Fecha/Álbum" @@ -1056,96 +1056,96 @@ msgid "Really close the window?" msgstr "¿Realmente desea cerrar la ventana?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Múltiples valores]" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Clave" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Valor" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Escribiendo etiquetas..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Nombre:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Los nombres de campos no deben comenzar con : o _" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Imposible añadir campo" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Ya existe un campo con ese nombre, por favor utilice otro diferente." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Añadir campo" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Quitar campo" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Uso: deadbeef [opciones] [archivo(s)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Opciones:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help o -h Mostrar la ayuda (éste mensaje) y salir\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Cerrar reproductor\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Mostar la versión y salir\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Iniciar reproducción\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Parar reproducción\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Pausar reproducción\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Alternar pausa\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" @@ -1153,40 +1153,40 @@ msgstr "" " --play-pause Iniciar la reproducción si está detenida, pausar en " "caso contrario\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Siguiente pista de la lista de reproducción\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Pista anterior de la lista de reproducción \n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Canción aleatoria de la lista de reproducción\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Añadir archivo(s) a la lista de reproducción\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" " --nowplaying FMT Mostrar nombre de la pista formateado a través de " "stdout\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1197,7 +1197,7 @@ msgstr "" " l: Duración, n: Pista, y: Año, c: Comentario,\n" " r: Copyright, e: Tiempo restante\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1206,7 +1206,7 @@ msgstr "" " ej.: --nowplaying \"%%a - %%t\" mostraría \"artista - " "título\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1215,15 +1215,15 @@ msgstr "" " para más información, vea http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Por defecto" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Sí" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "No" @@ -1631,27 +1631,27 @@ msgstr "El archivo ya existe. ¿Sobreescribir?" msgid "Converter warning" msgstr "Alerta del convertidor" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Por favor, seleccione el codificador" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Error del convertidor" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Convirtiendo..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Seleccionar carpeta..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Fallo al guardar preajuste del codificador" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1659,52 +1659,52 @@ msgstr "" "Verifique los permisos de la carpeta de preajustes, intente escoger otro " "título, o libere algo de espacio en disco" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" "Ya existe un preajuste con el mismo nombre. Intente escoger otro título." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Error" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Añadir nuevo codificador" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Modificar codificador" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Quitar preajuste" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "Esta acción eliminará el preajuste seleccionado. ¿Está seguro?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Codificadores" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Añadir complemento a la cadena DSP" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "Fallo al guardar preajuste DSP" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Nuevo preajuste DSP" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "Modificar preajuste DSP" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "Preajustes DSP" diff --git a/po/et.po b/po/et.po index 46148e1a..93dbe51a 100644 --- a/po/et.po +++ b/po/et.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-01-22 18:43+0200\n" "Last-Translator: Anari \n" "Language-Team: LANGUAGE \n" @@ -55,8 +55,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Abi" @@ -172,11 +172,11 @@ msgstr "%d päeva %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Peatatud | %d lugu | %s kokku mängitud" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -286,7 +286,7 @@ msgstr "Pööra valik" msgid "Selection" msgstr "Valik" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -311,7 +311,7 @@ msgstr "Sorteeri" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -330,7 +330,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Artist" @@ -346,7 +346,7 @@ msgid "Random" msgstr "Juhuslik" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Muu" @@ -513,7 +513,7 @@ msgstr "_Sulge" msgid "Metadata" msgstr "Metaandmed" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Omadused" @@ -878,7 +878,7 @@ msgid "Select DSP Plugin" msgstr "Vali DSP plugin" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Plugin" @@ -957,47 +957,47 @@ msgstr "" "(Selle teate saab keelata GTKUI plugina seadetes)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Hoiatus" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Lisa esitusnimekirja" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Eemalda esitusnimekirjast" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Uuestilae metaandmed" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Eemalda kettalt" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Lisa veerg" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Muuda veergu" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Eemalda veerg" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Rühmitamise alus" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Mitte ükski" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Esitaja/Aeg/Album" @@ -1051,96 +1051,96 @@ msgid "Really close the window?" msgstr "Kas soovid akna sulgeda?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Mitu väärtust] " -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Võti" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Väärtus" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Siltide kirjutamine..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Nimi:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Väljanimi ei tohi alata sümboliga : või _" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Ei õnnestu välja lisada" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Sellise nimega väli on juba olemas, proovi teist ​​nime." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Lisa väli" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Eemalda väli" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Kasutamine: deadbeef [valikud] [fail(id)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Valikud:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help või -h Prindib abi (praeguse sõnumi) ja väljub\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Mängijast väljumine\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Väljastab versiooniteabe ja väljub\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Alustab taasesitlust\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Peatab taasesitluse\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Taasesituse paus\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Pausi lülitamine\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" @@ -1148,38 +1148,38 @@ msgstr "" " --play-pause Kui peatatud siis alustab taasesitlust, muidu lülitab " "pausi ümber\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Järgmine lugu esitlusloendist\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Eelmine lugu esitlusloendist\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Juhuslik lugu esitlusloendist\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Lisab faili(e) esitlusloendisse\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Prindib loo andmed etteantud formaadis\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1190,7 +1190,7 @@ msgstr "" " [l]ength, track[n]umber, [y]ear, [c]omment,\n" " copy[r]ight, [e]lapsed\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1199,7 +1199,7 @@ msgstr "" " näide.: --nowplaying \"%%a - %%t\" peaks väljastama " "\"artist - loo nimi\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1208,15 +1208,15 @@ msgstr "" " lisainfot leiab lehelt http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Vaikimisi" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Jah" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Ei" @@ -1622,27 +1622,27 @@ msgstr "Fail on juba olemas. Kas kirjutada see üle?" msgid "Converter warning" msgstr "Konverteri hoiatus" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Palun vali kodeerija" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Konverteerimise viga" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Konvertimine..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Kausta valimine..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Kodeerija eelseadistuse salvestamine ebaõnnestus" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1650,52 +1650,52 @@ msgstr "" "Kontrolli seadistuste kausta õiguseid, proovi valida teistsugune nimi või " "vabasta kettapinda" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" "Sama nimega seadistus juba eksisteerib. Vali seadistusele teistsugune nimi." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Viga" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Lisa uus kodeerija" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Muuda kodeerijat" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Eemalda eelseadistus" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "See kustutab valitud seadistuse. Oled sa kindel?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Kodeerijad" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Lisa DSP plugin" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "DSP seadistuse salvestamine ebaõnnestus" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Uus DSP seadistus" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "DSP seadistuse muutmine" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "DSP seadistused" diff --git a/po/fa.po b/po/fa.po index f0918e10..c285b345 100644 --- a/po/fa.po +++ b/po/fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2010-10-18 07:33+0200\n" "Last-Translator: Ali \n" "Language-Team: LANGUAGE \n" @@ -56,8 +56,8 @@ msgid "help.txt" msgstr "" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "کمک" @@ -174,11 +174,11 @@ msgstr "%d روز %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "متوقف| %d آهنگ| %s کل زمان پخش" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "تک کاناله" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "استریو" @@ -288,7 +288,7 @@ msgstr "انتخاب معکوس" msgid "Selection" msgstr "انتخاب" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -312,7 +312,7 @@ msgstr "" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -332,7 +332,7 @@ msgstr "آلبوم" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "هنرمند" @@ -348,7 +348,7 @@ msgid "Random" msgstr "اتفاقی" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "شخصی" @@ -517,7 +517,7 @@ msgstr "ـ بستن" msgid "Metadata" msgstr "فرا داده" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "ویژگی‌ها" @@ -886,7 +886,7 @@ msgid "Select DSP Plugin" msgstr "انتخاب" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 #, fuzzy msgid "Plugin" @@ -967,47 +967,47 @@ msgstr "" "(این کادر محاوره‌ای می‌تواند در تنظیمات افزونه GTKUI خاموش شود)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "هشدار" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "افزودن به صف پخش" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "حذف از صف پخش" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "بارگذاری مجدد ابرداده" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "حذف از دیسک" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "افزودن ستون" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "ویرایش ستون" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "حذف ستون" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "گروه با" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "هیچ" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "هنرمند/تاریخ/آلبوم" @@ -1061,135 +1061,135 @@ msgid "Really close the window?" msgstr "واقعا می‌خواهید پنجره را ببندید؟" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "کلید" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "مقدار" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 #, fuzzy msgid "Add field" msgstr "افزودن پرونده(ها)" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 #, fuzzy msgid "Remove field" msgstr "حذف" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "استفاده: deadbeef [گزینه‌ها] [پرونده(ها)] \n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "گزینه‌ها: \n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr "--help یا -h کمک(این پیام) را نشان می‌دهد و خارج می‌شود \n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr "--quit از پخش کننده خارج می‌شود \n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr "--version اطلاعات نسخه را نمایش می‌دهد و خارج می‌شود \n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr "--play پخش را آغاز می‌کند\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr "--stop پخش را متوقف می‌کند\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr "--pause پخش را مکث می‌دهد\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr "--next آهنگ بعدی در فهرست پخش\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr "--prev آهنگ قبلی در فهرست پخش\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr "--random آهنگ اتفاقی در فهرست پخش\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "--queue پیوست کردن پرونده(ها) به فهرست پخش موجود\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "--nowplaying FMT چاپ نام آهنگ قالب‌بندی شده در خروجی استاندارد\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1200,29 +1200,29 @@ msgstr "" " [م]دت زمان، شم[ا]ره آهنگ، [س]ال،[ن]ظر،\n" " حق[ن]شر،[س]پری شده\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " "- title\"\n" msgstr "مثال: \"%%a - %%t\" باید \"هنرمند-عنوان\" را چاپ کند\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "پیش‌فرض" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "بله" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "خیر" @@ -1635,82 +1635,82 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 #, fuzzy msgid "Select folder..." msgstr "انتخاب همگی" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 #, fuzzy msgid "Edit encoder" msgstr "ویرایش ستون" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 #, fuzzy msgid "Remove preset" msgstr "ذخیره از پیش تنظیم شده" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 #, fuzzy msgid "New DSP Preset" msgstr "ذخیره از پیش تنظیم شده" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 #, fuzzy msgid "Edit DSP Preset" msgstr "ذخیره از پیش تنظیم شده" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 #, fuzzy msgid "DSP Presets" msgstr "ذخیره از پیش تنظیم شده" diff --git a/po/fi.po b/po/fi.po index 593d549f..ae423e84 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-06-06 16:50+0200\n" "Last-Translator: Juhani \n" "Language-Team: LANGUAGE \n" @@ -55,8 +55,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Ohje" @@ -173,11 +173,11 @@ msgstr "%d päivää %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Pysäytetty | %d raitaa | kokonaiskesto %s" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -287,7 +287,7 @@ msgstr "Käännä valinta" msgid "Selection" msgstr "Valinta" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -312,7 +312,7 @@ msgstr "Lajittele" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -331,7 +331,7 @@ msgstr "Albumi" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Artisti" @@ -347,7 +347,7 @@ msgid "Random" msgstr "Satunnainen" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Mukautettu" @@ -514,7 +514,7 @@ msgstr "_Sulje" msgid "Metadata" msgstr "Metatiedot" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Ominaisuudet" @@ -884,7 +884,7 @@ msgid "Select DSP Plugin" msgstr "Valitse DSP-liitännäinen" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Liitännäinen" @@ -964,47 +964,47 @@ msgstr "" "asetuksissa)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Varoitus" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Lisää toistojonoon" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Poista toistojonosta" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Lataa metatiedot uudelleen" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Poista levyltä" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Lisää sarake" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Muokkaa saraketta" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Poista sarake" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Ryhmittele" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Ei mitään" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Artisti/Pvm/Albumi" @@ -1058,96 +1058,96 @@ msgid "Really close the window?" msgstr "Haluatko varmasti sulkea tämän ikkunan?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Useita arvoja] " -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Avain" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Arvo" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Kirjoitetaan tageja..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Nimi:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Tiedostonimet eivät voi alkaa merkeillä : tai _" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Kenttää ei voi lisätä" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Samanniminen kenttä on jo olemassa, yritä toista nimeä." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Lisää kenttä" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Poista kentät" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Käyttö: deadbeef [valinnat] [tiedosto(t)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Valitsimet:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help tai -h Näytä ohje (tämä viesti) ja poistu\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Sulje soitin\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Näytä versiotiedot ja poistu\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Aloita toisto\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Pysäytä toisto\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Keskeytä toisto\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Vaihda keskeytyksen ja toiston välillä\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" @@ -1155,39 +1155,39 @@ msgstr "" " --play-pause Aloita toisto, jos pysäytetty, muuten vaihda " "keskeytyksen ja toiston välillä\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Seuraava kappale soittolistalla\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Edellinen kappale soittolistalla\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Satunnainen kappale soittolistalla\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "" " --queue Lisää tiedosto(t) olemassa olevaan soittolistaan\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Tulosta muotoiltu raidan nimi stdoutiin\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1198,7 +1198,7 @@ msgstr "" " [l]ength, track[n]umber, [y]ear, [c]omment,\n" " copy[r]ight, [e]lapsed\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1207,7 +1207,7 @@ msgstr "" " esim.: --nowplaying \"%%a - %%t\" tulostaa \"artisti - " "otsikko\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1216,15 +1216,15 @@ msgstr "" " lisätietoja osoitteessa http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Oletus" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Kyllä" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Ei" @@ -1630,77 +1630,77 @@ msgstr "Tiedosto on jo olemassa. Ylikirjoita?" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Valitse koodekki" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Muunnetaan..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Valitse kansio..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Virhe" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Poista esiasetus" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Uusi DSP-esiasetus" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "Muokkaa DSP-esiasetusta" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "DSP-esiasetukset" diff --git a/po/fr.po b/po/fr.po index a111de01..61d221a5 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: deadbeef devel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-01-05 13:38+0200\n" "Last-Translator: Cilyan \n" "Language-Team: French\n" @@ -57,8 +57,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Aide" @@ -177,11 +177,11 @@ msgstr "%d jours %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Arrêté | %d pistes | %s de temps d'écoute total" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stéréo" @@ -294,7 +294,7 @@ msgstr "Inverser la sélection" msgid "Selection" msgstr "Sélection" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -318,7 +318,7 @@ msgstr "" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -338,7 +338,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Artiste" @@ -354,7 +354,7 @@ msgid "Random" msgstr "Aléatoire" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Personnalisé" @@ -523,7 +523,7 @@ msgstr "_Fermer" msgid "Metadata" msgstr "Métadonnée" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Propriétés" @@ -894,7 +894,7 @@ msgid "Select DSP Plugin" msgstr "Sélection" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 #, fuzzy msgid "Plugin" @@ -976,47 +976,47 @@ msgstr "" "greffon GTKUI)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Avertissement" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Ajouter à la file d'attente de lecture" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Enlever de la file d'attente de lecture" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Recharger les métadonnées" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Supprimer du disque" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Ajouter une colonne" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Éditer la colonne" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Enlever la colonne" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Grouper par" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Aucun" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Artiste/Date/Album" @@ -1070,136 +1070,136 @@ msgid "Really close the window?" msgstr "Fermer réellement la fenêtre ?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Clé" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Valeur" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 #, fuzzy msgid "Add field" msgstr "Ajouter un (des) fichier(s)" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 #, fuzzy msgid "Remove field" msgstr "Enlever" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Usage : deadbeef [options] [fichier(s)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Options :\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help ou -h Affiche l'aide (ce message) et quitte\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Fermer le lecteur\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Affiche les informations de version et quitte\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Démarre la lecture\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Arrête la lecture\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Suspend la lecture\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Musique suivante dans la liste de lecture\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Musique précédente dans la liste de lecture\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Musique aléatoire dans la liste de lecture\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "" " --queue Ajoute le(s) fichier(s) dans la liste existante\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Envoi le nom de la piste format dans stdout\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1211,7 +1211,7 @@ msgstr "" "ommentaire,\n" " copy[r]ight, [e]coulé\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1220,22 +1220,22 @@ msgstr "" " ex : --nowplaying \"%%a - %%t\" affiche \"artiste - " "titre\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Défaut" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Oui" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Non" @@ -1649,82 +1649,82 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 #, fuzzy msgid "Select folder..." msgstr "Tout sélectionner" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 #, fuzzy msgid "Edit encoder" msgstr "Éditer la colonne" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 #, fuzzy msgid "Remove preset" msgstr "Enregistrer" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 #, fuzzy msgid "New DSP Preset" msgstr "Enregistrer" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 #, fuzzy msgid "Edit DSP Preset" msgstr "Enregistrer" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 #, fuzzy msgid "DSP Presets" msgstr "Enregistrer" diff --git a/po/gl.po b/po/gl.po index 87e84fb4..729d6c95 100644 --- a/po/gl.po +++ b/po/gl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxde.deadbeef\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2011-12-24 13:48+0200\n" "Last-Translator: mbouzada \n" "Language-Team: Galician \n" @@ -56,8 +56,8 @@ msgid "help.txt" msgstr "axuda.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Axuda" @@ -173,11 +173,11 @@ msgstr "%d días %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Detido | %d pistas | Tempo total: %s" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Estéreo" @@ -287,7 +287,7 @@ msgstr "Inverter a selección" msgid "Selection" msgstr "Selección" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -312,7 +312,7 @@ msgstr "Ordenar por" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -331,7 +331,7 @@ msgstr "Álbum" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Interprete" @@ -347,7 +347,7 @@ msgid "Random" msgstr "Ao chou" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Personalizado" @@ -514,7 +514,7 @@ msgstr "_Pechar" msgid "Metadata" msgstr "Metadatos" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Propiedades" @@ -882,7 +882,7 @@ msgid "Select DSP Plugin" msgstr "Escolla o engadido DSP" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Engadido" @@ -961,47 +961,47 @@ msgstr "" "(Este aviso pode desactivarse nas opcións do engadido GTKUI)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Aviso" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Engadir na cola de reprodución" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Retirar da cola de reprodución" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Recargar os metadatos" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Retirar do disco" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Engadir columna" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Editar columna" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Retirar columna" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Agrupar por" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Ningún" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Interprete/Data/Álbum" @@ -1055,96 +1055,96 @@ msgid "Really close the window?" msgstr "Ten certeza de que quere pechas esta xanela?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Valores múltiples] " -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Tecla" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Valor" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Escribindo etiquetas" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Nome:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Os nomes dos campos non deben comezar con «:» ou «_»" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Non é posíbel engadir o campo" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Xa existe un campo con este nome, tente con outro diferente." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Engadir campo" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Retirar campo" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Uso: deadbeef [opcións] [ficheiro(s)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Opcións:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help ou -h Amosar a axuda (esta mensaxe) e saír\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Pechar o reprodutor\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Amosar a versión e saír\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Iniciar a reprodución\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Deter a reprodución\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Pausar a reprodución\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Inverter a pausa\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" @@ -1152,39 +1152,39 @@ msgstr "" " --play-pause Iniciar a reprodución se se detén, ou pola contra " "inverter a pausa\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Seguinte canción da lista de reprodución\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Canción anterior da lista de reprodución\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Canción ao chou da lista de reprodución\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "" " --queue Engadir ficheiro(s) á lista de reprodución existente\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Amosar o nome da pista formatado por stdout\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1195,7 +1195,7 @@ msgstr "" " l: Duración, n: Pista, y: Ano, c: Comentario,\n" " r: Copyright, e: Tempo restante\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1204,7 +1204,7 @@ msgstr "" " e.g.: --nowplaying «%%a - %%t» amosaría: «interprete - " "título»\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1213,15 +1213,15 @@ msgstr "" " para obter máis información, vexa http://sourceforge." "net/apps/mediawiki/deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Predeterminado" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Si" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Non" @@ -1628,27 +1628,27 @@ msgstr "Este ficheiro xa existe. Quere sobrescribilo?" msgid "Converter warning" msgstr "Aviso do convertedor" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Escolla o codificador" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Produciuse un erro no convertedor" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Convertendo" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Seleccionar cartafol" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Produciuse un fallo ao gardar os axustes do codificador" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1656,51 +1656,51 @@ msgstr "" "Comprobe os permisos predeterminados do cartafol, tente escoller outro " "título, ou liberar algo de espazo no disco" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "Xa existe un axuste con este título. Tente escoller outro título." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Erro" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Engadir un novo codificador" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Editar o codificador" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Retirar o axuste" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "Esta acción elimina o axuste seleccionado. Está vostede seguro?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Codificadores" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Engadir un «engadido» á cadea DSP" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "Non foi posíbel gardar o axuste DSP" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Novo axuste DSP" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "Editar o axuste DSP" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "Axustes DSP" diff --git a/po/he.po b/po/he.po index 93a382cf..a0cc6319 100644 --- a/po/he.po +++ b/po/he.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: DeaDBeeF\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2011-12-16 12:49+0200\n" "Last-Translator: Yaron \n" "Language-Team: Gezer \n" @@ -58,8 +58,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "עזרה" @@ -175,11 +175,11 @@ msgstr "%d ימים %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "נעצר | %d רצועות | %s סך כל זמן הנגינה" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "מונו" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "סטריאו" @@ -290,7 +290,7 @@ msgstr "הפיכת הבחירה" msgid "Selection" msgstr "בחירה" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -315,7 +315,7 @@ msgstr "סידור לפי" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -334,7 +334,7 @@ msgstr "אלבום" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "אומן" @@ -350,7 +350,7 @@ msgid "Random" msgstr "אקראי" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "מותאם אישית" @@ -517,7 +517,7 @@ msgstr "_סגירה" msgid "Metadata" msgstr "נתוני על" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "מאפיינים" @@ -882,7 +882,7 @@ msgid "Select DSP Plugin" msgstr "בחירת תוסף DSP" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "תוסף" @@ -961,47 +961,47 @@ msgstr "" "(ניתן לכבות תיבת דו־שיח זו בהגדרות התוסף GTKUI)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "אזהרה" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "הוספה לתור ההשמעה" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "הסרה מתור ההשמעה" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "טעינת נתוני העל מחדש" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "הסרה מהכונן" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "הוספת עמודה" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "עריכת עמודה" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "הסרת עמודה" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "קיבוץ לפי" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "ללא" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "אומן/תאריך/אלבום" @@ -1055,134 +1055,134 @@ msgid "Really close the window?" msgstr "האם באמת לסגור את החלון?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[ערכים מרובים]" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "מפתח" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "ערך" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "התגיות נכתבות..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "שם:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "שמות השדות לא יכולים להתחיל בתווים : או _" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "לא ניתן להוסיף שדה" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "שדה בשם זה כבר קיים, נא לנסות שם אחר." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "הוספת שדה" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "הסרת שדה" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Usage: deadbeef [options] [file(s)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Options:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help or -h Print help (this message) and exit\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Quit player\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Print version info and exit\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Start playback\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Stop playback\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Pause playback\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Toggle pause\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" " --play-pause Start playback if stopped, toggle pause otherwise\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Next song in playlist\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Previous song in playlist\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Random song in playlist\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Append file(s) to existing playlist\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Print formatted track name to stdout\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1193,7 +1193,7 @@ msgstr "" " [l]ength, track[n]umber, [y]ear, [c]omment,\n" " copy[r]ight, [e]lapsed\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1202,7 +1202,7 @@ msgstr "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " "- title\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1211,15 +1211,15 @@ msgstr "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "בררת מחדל" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "כן" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "לא" @@ -1625,27 +1625,27 @@ msgstr "הקובץ כבר קיים. האם לשכתב?" msgid "Converter warning" msgstr "אזהרה מהממיר" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "נא לבחור מצפין" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "שגיאת ממיר" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "בהמרה..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "בחירת תיקייה..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "אירע כשל בשמירת ערכת ההצפנה" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1653,51 +1653,51 @@ msgstr "" "נא לבדוק את הרשאות תיקיית התצורות, יש לנסות לבחור בכותרת אחרת או לפנות קצת " "מקום בכונן" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "תצורה באותו השם כבר קיימת. נא לנסות לבחור בשם אחר." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "שגיאה" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "הוספת מצפין חדש" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "עריכת מצפין" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "הסרת תצורה" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "הפעולה תמחק את התצורה הנבחרת. האם לעשות זאת?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "מצפינים" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "הוספת התוסף לשרשרת ה־DSP" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "שמירת תצורת ה־DSP נכשלה" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "תצורת DSP חדשה" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "עריכת תצורת DSP" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "תצורות DSP" diff --git a/po/hr.po b/po/hr.po index 51e5eff8..ea505641 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: deadbeef\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-05-06 11:45+0200\n" "Last-Translator: zvacet \n" "Language-Team: Croatian <>\n" @@ -56,8 +56,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Pomoć" @@ -173,11 +173,11 @@ msgstr "%d dana %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Zustavljeno | %d zapisi| %s ukupno vrijeme sviranja" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -288,7 +288,7 @@ msgstr "Obrnuti odabir" msgid "Selection" msgstr "Odabir" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -313,7 +313,7 @@ msgstr "Posloži po" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -332,7 +332,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Umjetnik" @@ -348,7 +348,7 @@ msgid "Random" msgstr "Nasumično" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Prolagođeno" @@ -512,7 +512,7 @@ msgstr "_Zatvori" msgid "Metadata" msgstr "" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Svojstva" @@ -879,7 +879,7 @@ msgid "Select DSP Plugin" msgstr "Odaberi DSP priključak" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Priključak" @@ -958,47 +958,47 @@ msgstr "" "(Ovaj dijalog može biti iskjlučen u GTKUI postavkama prikjlučaka)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Upozorenje" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Ukloni sa diska" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Dodaj stupac" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Uredi stupac" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Ukloni stupac" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Grupiraj po" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Ništa" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Umjetnik/datum/album" @@ -1052,133 +1052,133 @@ msgid "Really close the window?" msgstr "Stvarno zatvoriti prozor?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Vrijednost" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Ime:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Imena polja ne smiju započinjati sa : ili _" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Ne mogu dodati polje" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Polje sa tim imenom već postoji,molim pokušajte s drugim imenom." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Dodaj polje" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Ukloni polje" -#: ../main.c:84 +#: ../main.c:89 #, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Opcije:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help or -h Ispisuje pomoć (ova poruka) i izlazi\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Isključi svirač\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Ispis info verzije i izlaz\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Početak reprodukcije\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Zaustavlja reprodukciju\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Zaustavlja reprodukciju\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Slijedaća pjesma na listi izvođenja\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Prethodna pjesma na listi izvođenja\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random nasumična pjesma na listi izvođenja\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1186,7 +1186,7 @@ msgid "" " copy[r]ight, [e]lapsed\n" msgstr "" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1195,22 +1195,22 @@ msgstr "" " e.g.: sada svira \"%%a - %%t\" treba ispisati " "\"umjetnik - naslov\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Zadano" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Da" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Ne" @@ -1605,77 +1605,77 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Odaberi mapu..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Greška" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Ukloni unaprijed postavljeno" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "DSP unaprijed postavljeno" diff --git a/po/hu.po b/po/hu.po index 5fb237c4..461b5be4 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: deadbeef 0.4.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-09-02 15:58+0200\n" "Last-Translator: Bendegúz \n" "Language-Team: ned \n" @@ -57,8 +57,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Súgó" @@ -175,11 +175,11 @@ msgstr "%d nap %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Megállítva | %d sáv | %s teljes lejátszási idő" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Monó" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Sztereó" @@ -290,7 +290,7 @@ msgstr "Kiválasztás megfordítása" msgid "Selection" msgstr "Választás" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -315,7 +315,7 @@ msgstr "Rendezés" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -334,7 +334,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Előadó" @@ -350,7 +350,7 @@ msgid "Random" msgstr "Véletlenszerű" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Egyéb" @@ -517,7 +517,7 @@ msgstr "_Bezár" msgid "Metadata" msgstr "Metaadat" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Tulajdonságok" @@ -885,7 +885,7 @@ msgid "Select DSP Plugin" msgstr "DSP beépülő kiválasztása" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Beépülő" @@ -964,47 +964,47 @@ msgstr "" "(Ez a párbeszédablak kikapcsolható a GTKUI bővítmény beállításaiban)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Figyelemeztetés" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Hozzáadás a lejátszási sorhoz" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Törlés a lejátszási sorból" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Metaadat újratöltése" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Törlés a lemezről" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Oszlop hozzáadása" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Oszlop szerkesztése" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Öszlop törlése" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Csoport" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Nincs" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Előadó/Dátum/Album" @@ -1058,135 +1058,135 @@ msgid "Really close the window?" msgstr "Valóban bezárja az ablakot?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Billentyű" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Érték" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Címkék írása..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Név:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "A szövegmezők tartalma nem kezdődhet kettősponttal vagy aláhúzásjellel" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Mező hozzáadása sikertelen" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" "Egy azonos névvel rendelkező mező már létezik, adj meg egy másik nevet." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Mező hozzáadása" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Mező eltávolítása" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Használat: deadbeef [opciók] [fájl(ok)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Opciók:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help vagy -h Súgó megjelenítése (ez az üzenet) és kilépt\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Kilépés a lejátszóból\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Verzió információ megjelenítése és kilépés\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Lejátszás indítása\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Lejátszás megállítása\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Lejátszás szüneteltetése\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Lejátszás/Szüneteltetés\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" " --play-pause Lejátszás indítása, lejátszás közben szüneteltetés\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Ugrás a következő számra a lejátszólistában\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Ugrás az előző számra a lejátszólistában\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Véletlenszerű szám a lejátszólistáról\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Fájl(ok) hozzáadása a létező lejátszólistához\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Szám nevének formázott kiírása az stdout-ra\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1197,7 +1197,7 @@ msgstr "" " [l]hossz, [n]sávszáma, [y]év, [c]megjegyzés,\n" " copy[r]ight, [e]ltelt idő\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1206,7 +1206,7 @@ msgstr "" " pl.: --nowplaying \"%%a - %%t\" kiírása kerül \"előadó " "- cím\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1215,15 +1215,15 @@ msgstr "" " további információ: http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Alapértelmezett" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Igen" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Nem" @@ -1632,79 +1632,79 @@ msgstr "Azonos nevű fájl már létezik. Felülírjam?" msgid "Converter warning" msgstr "Konvertálási figyelmeztetés" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Kérlek, válassz egy enkódert" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Konvertálási hiba" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Konvertálás..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Mappa kiválasztása..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Hiba" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Új enkóder hozzáadása" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Enkóder szerkesztése" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Mentett hangszín törlése" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 #, fuzzy msgid "New DSP Preset" msgstr "Hangszín mentés" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 #, fuzzy msgid "Edit DSP Preset" msgstr "Hangszín mentés" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 #, fuzzy msgid "DSP Presets" msgstr "Hangszín mentés" diff --git a/po/id.po b/po/id.po index 98adbb4f..c9c5ee24 100644 --- a/po/id.po +++ b/po/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: deadbeef master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-04-09 20:54+0200\n" "Last-Translator: andika \n" "Language-Team: Indonesian Translation Team \n" @@ -55,8 +55,8 @@ msgid "help.txt" msgstr "" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Bantuan" @@ -173,11 +173,11 @@ msgstr "%d hari %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Berhenti | %d trek | %s waktu putar total" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -287,7 +287,7 @@ msgstr "Balik pilihan" msgid "Selection" msgstr "Pilihan" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -312,7 +312,7 @@ msgstr "Urut Berdasarkan" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -331,7 +331,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Artis" @@ -347,7 +347,7 @@ msgid "Random" msgstr "Acak" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Ubahan" @@ -514,7 +514,7 @@ msgstr "_Tutup" msgid "Metadata" msgstr "Metadata" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Properti" @@ -886,7 +886,7 @@ msgid "Select DSP Plugin" msgstr "Pilihan" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 #, fuzzy msgid "Plugin" @@ -964,47 +964,47 @@ msgid "" msgstr "" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Peringatan" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Tambahkan ke antrian daftar putar" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Hapus dari antrian putar" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Muat ulang metadata" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Hapus dari disk" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Tambah kolom" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Sunting kolom" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Hapus kolom" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Kelompokkan berdasarkan" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Tak ada" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Artis/Tanggal/Album" @@ -1059,136 +1059,136 @@ msgid "Really close the window?" msgstr "" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Kunci" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Nilai" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 #, fuzzy msgid "Add field" msgstr "Tambah berkas" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 #, fuzzy msgid "Remove field" msgstr "Buang" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Cara pakai: deadbeef [opsi] [berkas]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Opsi:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help or -h Cetak bantuan (pesan ini) dan keluar\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Keluar dari pemutar\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Cetak info versi dan keluar\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Mulai memutar\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Berhenti memutar\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Jeda memutar\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Lagu selanjutnya di daftar putar\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Lagu sebelumnya di daftar putar\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Acak lagu di daftar main\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "" " --queue Tambahkan berkas ke daftar putar yang telah ada\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1196,29 +1196,29 @@ msgid "" " copy[r]ight, [e]lapsed\n" msgstr "" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " "- title\"\n" msgstr "" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Bawaan" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Ya" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Tidak" @@ -1611,82 +1611,82 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 #, fuzzy msgid "Select folder..." msgstr "Pilih semua" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 #, fuzzy msgid "Edit encoder" msgstr "Sunting kolom" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 #, fuzzy msgid "Remove preset" msgstr "Simpan Preset" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 #, fuzzy msgid "New DSP Preset" msgstr "Simpan Preset" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 #, fuzzy msgid "Edit DSP Preset" msgstr "Simpan Preset" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 #, fuzzy msgid "DSP Presets" msgstr "Simpan Preset" diff --git a/po/it.po b/po/it.po index abb8e567..a7e018e7 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: DeadBeef\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2011-03-09 17:43+0200\n" "Last-Translator: Alessandro \n" "Language-Team: Italian\n" @@ -58,8 +58,8 @@ msgid "help.txt" msgstr "" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Aiuto" @@ -176,11 +176,11 @@ msgstr "%d giorni %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Stop | %d tracce | %s tempo totale" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -290,7 +290,7 @@ msgstr "Inverti selezione" msgid "Selection" msgstr "Selezione" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -314,7 +314,7 @@ msgstr "" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -334,7 +334,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Artista" @@ -350,7 +350,7 @@ msgid "Random" msgstr "Casuale" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Personalizza" @@ -519,7 +519,7 @@ msgstr "_Chiudi" msgid "Metadata" msgstr "Metadata" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Proprietà" @@ -888,7 +888,7 @@ msgid "Select DSP Plugin" msgstr "Selezione" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 #, fuzzy msgid "Plugin" @@ -969,47 +969,47 @@ msgstr "" " (Questo dialogo può essere spento in Opzioni plugin --> GTKUI" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Attenzione" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Aggiungi alla coda di riproduzione" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Rimuovi dalla coda di riproduzione" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Ricarica metadati" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Rimuovi dal disco" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Aggiungi colonna" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Modifica colonna" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Rimuovi colonna" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Raggruppamento" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Nessuno" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Artista/Data/Album" @@ -1063,136 +1063,136 @@ msgid "Really close the window?" msgstr "Vuoi davvero chiudere la finestra?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Tasti" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Valore" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 #, fuzzy msgid "Add field" msgstr "Aggiungi file" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 #, fuzzy msgid "Remove field" msgstr "Rimuovi" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Uso: deadbeef [opzioni] [file(s)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Opzioni:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help or -h Stampa l'aiuto ed esce\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Esce dal player\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Stampa la versione ed esce\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Inizia la riproduzione\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Ferma la riproduzione\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Pausa nella riproduzione\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Canzone successiva nella playlist\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Canzone precedente nella playlist\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Canzone casuale nella playlist\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Aggiunge file(s) ad una playlist esistente\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" " --nowplaying FMT Stampa il nome della traccia formattato in stdout\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1203,7 +1203,7 @@ msgstr "" " [l]unghezza, traccia[n]umero, [y]anno, [c]ommento,\n" " copy[r]ight, [e]trascorso\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1212,22 +1212,22 @@ msgstr "" " es: --nowplaying \"%%a - %%t\" dovrebbe stampare " "\"artista - titolo\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Predefinito" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Sì" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "No" @@ -1641,82 +1641,82 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 #, fuzzy msgid "Select folder..." msgstr "Seleziona tutto" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 #, fuzzy msgid "Edit encoder" msgstr "Modifica colonna" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 #, fuzzy msgid "Remove preset" msgstr "Salva preset" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 #, fuzzy msgid "New DSP Preset" msgstr "Salva preset" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 #, fuzzy msgid "Edit DSP Preset" msgstr "Salva preset" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 #, fuzzy msgid "DSP Presets" msgstr "Salva preset" diff --git a/po/ja.po b/po/ja.po index 348f47a1..539ec823 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: deadbeef devel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2010-06-29 17:37+0900\n" "Last-Translator: Hironao Komatsu \n" "Language-Team: Japanese \n" @@ -55,8 +55,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "ヘルプ" @@ -172,11 +172,11 @@ msgstr "%d 日 %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "停止 | %d トラック | %s 合計演奏時間" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -286,7 +286,7 @@ msgstr "選択の反転" msgid "Selection" msgstr "選択" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -311,7 +311,7 @@ msgstr "ソートする:" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -330,7 +330,7 @@ msgstr "アルバム" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "アーティスト" @@ -346,7 +346,7 @@ msgid "Random" msgstr "ランダム" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "カスタム" @@ -513,7 +513,7 @@ msgstr "閉じる(_C)" msgid "Metadata" msgstr "メタデータ" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "プロパティ" @@ -880,7 +880,7 @@ msgid "Select DSP Plugin" msgstr "DSP プラグインの選択" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "プラグイン" @@ -959,47 +959,47 @@ msgstr "" "(このダイアログは GTKUI プラグインの設定で無効にできます)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "警告" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "再生キューへ追加" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "再生キューから削除" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "メタデータを再読み込み" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "ディスクから削除" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "カラムの追加" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "カラムの編集" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "カラムの削除" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "グループ化" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "なし" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "アーティスト/日付/アルバム" @@ -1053,122 +1053,122 @@ msgid "Really close the window?" msgstr "本当にウィンドウを閉じますか?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[複数の値] " -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "キー" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "値" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "タグの書き出し中..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "名前:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "フィールドは : や _ で始まることができません" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "フィールドを追加できません" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "同じ名前のフィールドがあります。別の名前で試してください。" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "フィールドを追加" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "フィールドを削除" -#: ../main.c:84 +#: ../main.c:89 #, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "使い方: deadbeef [オプション] [--] [ファイル...]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "オプション:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help or -h ヘルプ (このメッセージ) を表示して終了\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit プレイヤを終了する\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version バージョン情報を表示して終了\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play 再生を開始する\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop 再生を停止する\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause ポーズする\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause ポーズのトグル\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr " --play-pause 停止中なら再生開始し、でなければポーズします\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next プレイリストの次の曲へ\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev プレイリストの前の曲へ\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random プレイリストからランダムに選んだ曲へ\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue ファイルを既存のプレイリストに追加する\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" @@ -1176,12 +1176,12 @@ msgstr "" " --gui PLUGIN 使用する GUI プラグインを指定します。デフォルトは " "\"GTK2\"\n" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying 書式 書式化されたトラック名を stdout に書き出します\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1193,7 +1193,7 @@ msgstr "" " 長さ[l], トラック番号[n], 年[y], コメント[c],\n" " 著作権[r], 経過時間[e]\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1202,7 +1202,7 @@ msgstr "" " 例: --nowplaying \"%%a - %%t\" は \"アーティスト - タイ" "トル\" と表示します\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1211,15 +1211,15 @@ msgstr "" " 詳しくはこちら: http://sourceforge.net/apps/mediawiki/" "deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "デフォルト" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "はい" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "いいえ" @@ -1626,78 +1626,78 @@ msgstr "そのファイルは既に存在します。上書きしますか?" msgid "Converter warning" msgstr "コンバータの警告" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "エンコーダを選択してください" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "変換エラー" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "変換中..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "フォルダの選択..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "エンコーダのプリセットの保存に失敗しました" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" "フォルダのパーミッション、名前の重複、ディスクの空き容量を確認してください" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "同じ名前のプリセットが既にあります。別の名前で試してください。" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "エラー" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "新規エンコーダの追加" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "エンコーダの編集" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "プリセットの削除" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "選択中のプリセットを削除します。続けますか?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "エンコーダ" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "プラグインを DSP チェインに追加" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "DSP プリセットの保存に失敗しました" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "新規の DSP プリセット" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "DSP プリセットの編集" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "DSP プリセット" diff --git a/po/kk.po b/po/kk.po index 45915cc3..7c6de8ff 100644 --- a/po/kk.po +++ b/po/kk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2011-12-26 12:59+0200\n" "Last-Translator: sotrud_nik \n" "Language-Team: Kazakh \n" @@ -55,8 +55,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Көмек" @@ -172,11 +172,11 @@ msgstr "%d күн %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Тоқтатылған | %d трек | %s жалпы уақыты" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Моно" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Стерео" @@ -285,7 +285,7 @@ msgstr "Таңдауды терістеу" msgid "Selection" msgstr "Таңдалған" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -310,7 +310,7 @@ msgstr "Қалайша сұрыптау" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -329,7 +329,7 @@ msgstr "Альбом" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Әртіс" @@ -345,7 +345,7 @@ msgid "Random" msgstr "Кездейсоқ" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Таңдауыңызша" @@ -512,7 +512,7 @@ msgstr "_Жабу" msgid "Metadata" msgstr "Метаақпарат" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Қасиеттері" @@ -879,7 +879,7 @@ msgid "Select DSP Plugin" msgstr "DSP плагинін таңдау" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Плагин" @@ -958,47 +958,47 @@ msgstr "" "(Бұл сұхбат терезесін GTKUI плагин баптауларында сөндіруге болады)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Ескерту" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Ойнату кезегіне қосу" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Ойнату кезегінен өшіру" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Метаақпаратты қайта жүктеп алу" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Дискіден өшіру" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Бағанды қосу" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Бағанды түзету" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Бағанды өшіру" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Қалайша топтау" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Ешнәрсе" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Әртіс/Күні/Альбом" @@ -1052,134 +1052,134 @@ msgid "Really close the window?" msgstr "Терезені шынымен жабу керек пе?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Бірнеше мәндер] " -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Кілт" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Мәні" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Тегтерді жазу..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Аты:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Өріс атауы : не _ таңбаларынан басталмауы тиіс" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Өрісті қосу мүмкін емес" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Ондай атымен өріс бар болып тұр, басқа атауын көрсетіңіз." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Өрісті қосу" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Өрісті өшіру" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Қолданылуы: deadbeef [опциялар] [файл(дар)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Опциялары:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help не -h Көмек ақпаратын (осы) шығару мен шығу\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Плеерді жабу\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Нұсқа ақпаратын шығару мен шығу\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Ойнатуды бастау\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Ойнатуды тоқтату\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Ойнатуды аялдату\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Паузаны ауыстыру\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" " --play-pause Тоқтатылған болса, ойнату, болмаса, паузаны ауыстыру\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Ойнату тізіміндегі келесі трек\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Ойнату тізіміндегі алдыңғы трек\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Ойнату тізіміндегі кездейсоқ трек\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Файл(дар)ды бар ойнату тізіміне қосу\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying ПШМ Шығысқа пішімделген трек атын шығару\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1190,7 +1190,7 @@ msgstr "" " [l]ength, track[n]umber, [y]ear, [c]omment,\n" " copy[r]ight, [e]lapsed\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1199,7 +1199,7 @@ msgstr "" " мыс.: --nowplaying \"%%a - %%t\" экранға \"artist - " "title\" шығаруы тиіс\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1208,15 +1208,15 @@ msgstr "" " көбірек білу үшін, http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting қараңыз\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Бастапқы" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Иә" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Жоқ" @@ -1622,27 +1622,27 @@ msgstr "Файл бар болып тұр. Оны үстінен жазу кер msgid "Converter warning" msgstr "Түрлендіруші ескертуі" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Кодтауышты таңдаңыз" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Түрлендіруші қатесі" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Түрлендіру..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Буманы тандаңыз..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Кодтауыштың баптауын сақтау сәтсіз" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1650,51 +1650,51 @@ msgstr "" "Баптау сақталатын бума рұқсаттарын тексеріңіз, басқа атауды таңдаңыз не " "біршама диск кеңістігін босатыңыз." -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "Ондай атымен баптау бар болып тұр. Басқа атын көрсетіңіз." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Қате" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Жаңа кодтауышты қосу" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Кодтауышты түзету" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Баптауды өшіру" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "Бұл әрекет нәтижесінде таңдалған баптау өшіріледі. Осыны қалайсыз ба?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Кодтауыштар" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Плагинді DSP тізбегіне қосу" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "DSP баптауын сақтау сәтсіз" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Жаңа DSP баптауы" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "DSP баптауын түзету" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "DSP баптаулары" diff --git a/po/km.po b/po/km.po index ad12e269..49b78114 100644 --- a/po/km.po +++ b/po/km.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2010-09-03 07:11+0200\n" "Last-Translator: SatyaN \n" "Language-Team: LANGUAGE \n" @@ -56,8 +56,8 @@ msgid "help.txt" msgstr "" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "ជំនួយ" @@ -174,11 +174,11 @@ msgstr "" msgid "Stopped | %d tracks | %s total playtime" msgstr "" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "ម៉ូណូ" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "ស្តេរេអូ" @@ -287,7 +287,7 @@ msgstr "ដាក់បញ្ច្រាសជម្រើស" msgid "Selection" msgstr "ជម្រើស" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -311,7 +311,7 @@ msgstr "" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -331,7 +331,7 @@ msgstr "អ៉ាល់បុ៑ម" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "អ្នកនិពន្ធ" @@ -347,7 +347,7 @@ msgid "Random" msgstr "ចៃដន្យ" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "ផ្ទាល់ខ្លួន" @@ -514,7 +514,7 @@ msgstr "បិទ" msgid "Metadata" msgstr "មេតាទិន្នន៍យ" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "លក្ខណះសម្បត្តិ" @@ -881,7 +881,7 @@ msgid "Select DSP Plugin" msgstr "ជម្រើស" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "" @@ -958,47 +958,47 @@ msgid "" msgstr "" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "" @@ -1052,135 +1052,135 @@ msgid "Really close the window?" msgstr "" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 #, fuzzy msgid "Add field" msgstr "បញ្ចួលទិន្នន៍យ" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 #, fuzzy msgid "Remove field" msgstr "យកចេញ" -#: ../main.c:84 +#: ../main.c:89 #, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr "" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr "" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr "" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr "" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr "" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr "" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr "" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr "" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr "" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1188,29 +1188,29 @@ msgid "" " copy[r]ight, [e]lapsed\n" msgstr "" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " "- title\"\n" msgstr "" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "" @@ -1594,81 +1594,81 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 #, fuzzy msgid "Select folder..." msgstr "ជ្រើសទាំងអស់" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 #, fuzzy msgid "Remove preset" msgstr "រក្សាទុកកំណត់ជាមុន" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 #, fuzzy msgid "New DSP Preset" msgstr "រក្សាទុកកំណត់ជាមុន" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 #, fuzzy msgid "Edit DSP Preset" msgstr "រក្សាទុកកំណត់ជាមុន" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 #, fuzzy msgid "DSP Presets" msgstr "រក្សាទុកកំណត់ជាមុន" diff --git a/po/lg.po b/po/lg.po index 5c08b23e..3fbc1a01 100644 --- a/po/lg.po +++ b/po/lg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.4.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-03-01 15:04+0200\n" "Last-Translator: kizito \n" "Language-Team: LANGUAGE \n" @@ -55,8 +55,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Nyamba" @@ -179,11 +179,11 @@ msgstr "Nnaku %d %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Eyimirizidwa | Ntambi %d | Awamu zimala %s" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Siteriyo" @@ -293,7 +293,7 @@ msgstr "Vuunika okulonda" msgid "Selection" msgstr "Ebirondedwa" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -318,7 +318,7 @@ msgstr "Sengekera ku" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -337,7 +337,7 @@ msgstr "Alubamu" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Muluyimba" @@ -353,7 +353,7 @@ msgid "Random" msgstr "Muwawa" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Bye weteekateekedde" @@ -520,7 +520,7 @@ msgstr "_Ggala" msgid "Metadata" msgstr "Ebinyonyola" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Ebirufaako" @@ -891,7 +891,7 @@ msgid "Select DSP Plugin" msgstr "" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Puloguramu enyambi" @@ -970,47 +970,47 @@ msgstr "" "(Akaboozi kano osobola okukasirisiza mu nteekateeka z'omu GTKUI)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Kulabula" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Lwongere ku lukalala lw'ebinaawulirizibwa" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Lugye mu lukalala lw'ebinaawulirizibwa" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Ddamu okusoma ebinnyonyola" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Luggire ddala ku sisitemu" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Yongerako oukumbo" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Kyusa mu lukumbo" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Gyawo olukumbo" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Sengekera ku" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Tosengeka" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Muyimbi/Amafuluma/Alubamu" @@ -1064,149 +1064,149 @@ msgid "Really close the window?" msgstr "Eddirisa lino ddala liggalibwewo?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Ppeesa" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Ekikongojje" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 #, fuzzy msgid "Add field" msgstr "Teekako fayiro" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 #, fuzzy msgid "Remove field" msgstr "Bigyewo" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Enkozesa entuufu eri: deadbeef [buwayiro][fayiro]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Obuwayiro:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr "" " --help oba -h Bw'ossawo kamu ku buno, okoma ku kufuna bino " "by'osoma\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Kano kaleetera puloguramu okumala\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr "" " --version Kano kaleetera puloguramu okukoma ku kukulaga " "olwandika lwa yo\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Kano kaleetera pulguramu okutandika enyimba\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Kano kaleetera pulguramu okukomya oluyimba\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr "" " --pause Kano kaleetera puloguramu okuyimirizamu oluyimba\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr "" " --next Kano kaleetera puloguramu okutandika oluyimba oluddako " "mu lukalala\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr "" " --prev Kano kaleetera puloguramu okutandika olukulembera " "lw'ebadde ko mu lukalala\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr "" " --random Kano kaleetera puloguramu okuyita mu nyimba muwawa\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "" " --queue Kano kaleetera puloguramu okwongera nyimba ku " "lukalala\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" " --nowplaying FMT Kano kaleetera puloguramu okuwandikawo erinnya " "ly'olutambi\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1220,7 +1220,7 @@ msgstr "" " r: Ebikugizo by'obwa nannyini, e: Ekitundu ky'oluyimba " "ekiwulirizidwako\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1229,22 +1229,22 @@ msgstr "" " okugeza.: --nowplaying \"%%a - %%t\" kisuubirwa " "okuvaamu \"muyibi - linnya lya luyimba\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Olukwatakifo" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Ye" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Nedda" @@ -1657,82 +1657,82 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 #, fuzzy msgid "Select folder..." msgstr "Londa byonna" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 #, fuzzy msgid "Edit encoder" msgstr "Kyusa mu lukumbo" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 #, fuzzy msgid "Remove preset" msgstr "Tereka koppi y'ebiteekateekedwa" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 #, fuzzy msgid "New DSP Preset" msgstr "Tereka koppi y'ebiteekateekedwa" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 #, fuzzy msgid "Edit DSP Preset" msgstr "Tereka koppi y'ebiteekateekedwa" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 #, fuzzy msgid "DSP Presets" msgstr "Tereka koppi y'ebiteekateekedwa" diff --git a/po/lt.po b/po/lt.po index a8048e27..2af49355 100644 --- a/po/lt.po +++ b/po/lt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: deadbeef\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-09-04 07:44+0300\n" "Last-Translator: Algimantas Margevičius \n" "Language-Team: Lietuvių <>\n" @@ -57,8 +57,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Žinynas" @@ -174,11 +174,11 @@ msgstr "%d dienos %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Sustabdyta | %d takeliai | %s bendras grojimo laikas" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -289,7 +289,7 @@ msgstr "Atvirkštinis pasirinkimas" msgid "Selection" msgstr "Pasirinkimas" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -313,7 +313,7 @@ msgstr "Rikiuoti pagal" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -332,7 +332,7 @@ msgstr "Albumas" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Atlikėjas" @@ -348,7 +348,7 @@ msgid "Random" msgstr "Atsitiktine tvarka" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Pasirinkta" @@ -512,7 +512,7 @@ msgstr "_Užverti" msgid "Metadata" msgstr "Metaduomenys" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Savybės" @@ -879,7 +879,7 @@ msgid "Select DSP Plugin" msgstr "Pasirinkti DSP įskeipį" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Įskiepis" @@ -958,47 +958,47 @@ msgstr "" "(Šis dialogas gali būti išjungtas GTKUI įskiepio nustatymuose)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Įspėjimas" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Pridėti į atkūrimo eilę" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Pašalinti iš atkūrimo eilės" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Iš naujo įkelti meta duomenis" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Pašalinti iš disko" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Pridėti stulpelį" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Keisti stulpelį" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Pašalinti stulpelį" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Grupuoti pagal" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Nieką" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Atlikėjas/Data/Albumas" @@ -1051,122 +1051,122 @@ msgid "Really close the window?" msgstr "Tikrai užverti šį langą?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Keletas reikšmių]" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Raktas" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Reikšmė" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Rašomos žymės..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Pavadinimas:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Laukelių vardai negali prasidėti: tarpu ar _" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Pridėti laukelio nepavyko" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Laukelis su tokiu vardu jau yra, pabandykite kitą vardą." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Pridėti lauką" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Pašalinti lauką" -#: ../main.c:84 +#: ../main.c:89 #, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Naudojimas: deadbeef [parinktys][failai]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Parinktys:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help ar -h Parodo pagalbos langą (šį) ir išeina\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Užverti grotuvą\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Parodyti versijos informaciją ir išeiti\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Atkūrti\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Sustabdyti\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Pristabdyti\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Perjungti sustabdymą\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr " --play-pause Jei sustabdyta atkurti, jei grojama sustabdyti\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Sekanti grojaraščio daina\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Ankstesnė grojaraščio daina\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Atsitiktinė daina grojaraštyje\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Pridėti failą(-us) į esamą grojaraštį\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" @@ -1174,12 +1174,12 @@ msgstr "" " --gui ĮSKIEPIS Nurodo kurį GUI įskiepį naudoti, numatytasis yra " "„GTK2“\n" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Nusiųsti formatuotą takelių sąrašą į stdout\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1190,7 +1190,7 @@ msgstr "" " [l]ength, track[n]umber, [y]ear, [c]omment,\n" " copy[r]ight, [e]lapsed\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1199,7 +1199,7 @@ msgstr "" " pvz.: --nowplaying \"%%a - %%t\" turėtų atvaizduoti " "„atlikėjas - pavadinimas“\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1208,15 +1208,15 @@ msgstr "" " plačiau http://sourceforge.net/apps/mediawiki/deadbeef/" "index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Numatyta" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Taip" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Ne" @@ -1617,27 +1617,27 @@ msgstr "Failas jau egzistuoja. Perrašyti?" msgid "Converter warning" msgstr "Konverterio įspėjimas" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Prašome pasirinkti koduotoją" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Konverterio klaida" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Konvertuojama..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Pasirinkite aplanką..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Koduotojo nustatymų rinkinio išsaugoti nepavyko" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1645,51 +1645,51 @@ msgstr "" "Patikrinkite nustatymų rinkinio leidimus, pabandykite kitą pavadinimą ar " "atlaisvinkite diske vietos" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "Nustatymų rinkinys su tokiu vardu jau yra. Pasirinkite kitą vardą." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Klaida" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Pridėti naują koduotoją" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Keisti koduotoją" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Pašalinti nustatymų rinkinį" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "Bus pašalintas pasirinktas nustatymų rinkinys. Ar jūs įsitikinę?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Koduotojai" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Į DSP grandinę pridėti įskiepį" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "Naujo DSP nustatymų rinkinio išsaugoti nepavyko" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Naujas DSP nustatymų rinkinys" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "Keisti DSP nustatymų rinkinį" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "DSP nustatymų rinkiniai" diff --git a/po/nb.po b/po/nb.po index 1ba55af4..bec00c11 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2010-12-10 14:09+0200\n" "Last-Translator: Sam \n" "Language-Team: LANGUAGE \n" @@ -56,8 +56,8 @@ msgid "help.txt" msgstr "" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Hjelp" @@ -175,11 +175,11 @@ msgstr "" msgid "Stopped | %d tracks | %s total playtime" msgstr "" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "" @@ -288,7 +288,7 @@ msgstr "" msgid "Selection" msgstr "" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -312,7 +312,7 @@ msgstr "" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -331,7 +331,7 @@ msgstr "" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "" @@ -347,7 +347,7 @@ msgid "Random" msgstr "" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "" @@ -511,7 +511,7 @@ msgstr "" msgid "Metadata" msgstr "" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "" @@ -873,7 +873,7 @@ msgid "Select DSP Plugin" msgstr "" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "" @@ -950,47 +950,47 @@ msgid "" msgstr "" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "" @@ -1043,133 +1043,133 @@ msgid "Really close the window?" msgstr "" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "" -#: ../main.c:84 +#: ../main.c:89 #, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr "" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr "" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr "" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr "" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr "" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr "" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr "" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr "" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr "" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1177,29 +1177,29 @@ msgid "" " copy[r]ight, [e]lapsed\n" msgstr "" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " "- title\"\n" msgstr "" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "" @@ -1578,78 +1578,78 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 #, fuzzy msgid "Remove preset" msgstr "Fjern spillelista" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "" diff --git a/po/nl.po b/po/nl.po index dd404053..97b95cf4 100644 --- a/po/nl.po +++ b/po/nl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: deadbeef\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2011-09-08 22:41+0200\n" "Last-Translator: Pjotr\n" "Language-Team: Dutch\n" @@ -56,8 +56,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Hulp" @@ -175,11 +175,11 @@ msgstr "%d dagen %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Gestopt | %d sporen | %s totale speeltijd" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -289,7 +289,7 @@ msgstr "Selectie omkeren" msgid "Selection" msgstr "Selectie" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -314,7 +314,7 @@ msgstr "Sorteren op" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -333,7 +333,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Artiest" @@ -349,7 +349,7 @@ msgid "Random" msgstr "Willekeurig" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Aangepast" @@ -516,7 +516,7 @@ msgstr "_Sluiten" msgid "Metadata" msgstr "Bijkomende gegevens" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Eigenschappen" @@ -885,7 +885,7 @@ msgid "Select DSP Plugin" msgstr "Selecteer DSP-plugin" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Plugin" @@ -964,47 +964,47 @@ msgstr "" "(Dit venster kunt u uitschakelen in de GTKUI plugin-instellingen)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Waarschuwing" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Aan de speelwachtrij toevoegen" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Uit speelwachtrij verwijderen" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Herlaad bijkomende gegevens" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Verwijder van schijf" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Kolom toevoegen" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Kolom bewerken" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Kolom verwijderen" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Groeperen op" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Geen" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Artiest/Datum/Album" @@ -1058,134 +1058,134 @@ msgid "Really close the window?" msgstr "Dit venster echt sluiten?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Meerdere waarden] " -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Toets" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Waarde" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Etiketten aan het schrijven..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Naam:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Veldnamen moeten niet beginnen met : of _" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Kan veld niet toevoegen" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Veld met deze naam bestaat reeds, probeer a.u.b. andere naam." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Voeg veld toe" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Verwijder veld" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Gebruik: deadbeef [opties] [bestand(en)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Opties:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help or -h Drukt hulp af (dit bericht) en sluit af\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Speler afsluiten\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Versie-informatie afdrukken en sluiten\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Afspelen beginnen\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Afspelen stoppen\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Afspelen pauzeren\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Pauze schakelen\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" " --play-pause Begin afspelen indien gestopt, anders pauze schakelen\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Volgend nummer in speellijst\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Vorig nummer in speellijst\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Willekeurig nummer in speellijst\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Bestand(en) toevoegen aan speellijst\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Afdrukken geformatteerde spoornaam naar stdout\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1196,7 +1196,7 @@ msgstr "" " [l]ength, track[n]umber, [y]ear, [c]omment,\n" " copy[r]ight, [e]lapsed\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1205,7 +1205,7 @@ msgstr "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " "- title\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1214,15 +1214,15 @@ msgstr "" " voor meer infor, zie http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Standaard" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Ja" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Nee" @@ -1629,27 +1629,27 @@ msgstr "Het bestand bestaat al. Overschrijven?" msgid "Converter warning" msgstr "Waarschuwing van omzetter" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Kies a.u.b. een codeerder" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Fout van omzetter" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Bezig met omzetten..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Selecteer map..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Kon codeerder-voorinstelling niet opslaan" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1657,53 +1657,53 @@ msgstr "" "Controleer de maprechten voor voorinstelling, probeer een andere titel te " "kiezen, of maak wat schijfruimte vrij" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" "Voorinstelling met dezelfde naam bestaat al. Probeer een andere titel te " "kiezen." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Fout" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Voeg nieuwe codeerder toe" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Codeerder bewerken" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Verwijder voorinstelling" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "Dit zal de geselecteerde voorinstelling verwijderen. Weet u het zeker?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Codeerders" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Voeg plugin toe aan DSP-ketting" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "Kon DSP-voorinstelling niet opslaan" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Nieuwe DSP-voorinstelling" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "DSP-voorinstelling bewerken" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "DSP-voorinstellingen" diff --git a/po/pl.po b/po/pl.po index 8cbe701f..1057815c 100644 --- a/po/pl.po +++ b/po/pl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: DeaDBeef\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2011-12-30 01:21+0200\n" "Last-Translator: Sam \n" "Language-Team: Polish Translation Team <>\n" @@ -58,8 +58,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Pomoc" @@ -177,11 +177,11 @@ msgstr "" "Zatrzymano odtwarzanie | %d ścieżek | całkowity czas trwania listy " "odtwarzania: %s" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -292,7 +292,7 @@ msgstr "Odwróć zaznaczenie" msgid "Selection" msgstr "Zaznaczenie" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -316,7 +316,7 @@ msgstr "" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -335,7 +335,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Wykonawca" @@ -351,7 +351,7 @@ msgid "Random" msgstr "Losowo" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Własny" @@ -520,7 +520,7 @@ msgstr "Zamknij" msgid "Metadata" msgstr "Metadane" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Właściwości" @@ -889,7 +889,7 @@ msgid "Select DSP Plugin" msgstr "Wybieraj wtyczkę DSP" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Wtyczki" @@ -969,47 +969,47 @@ msgstr "" "(To ostrzeżenie może zostać wyłączone w ustawieniach GTKUI)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Ostrzeżenie" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Dodaj do kolejki" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Usuń z kolejki" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Wczytaj ponownie metadane" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Usuń z dysku" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Dodaj kolumnę" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Edytuj kolumnę" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Usuń kolumnę" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Grupowanie" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Brak" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Artysta/Data/Album" @@ -1063,140 +1063,140 @@ msgid "Really close the window?" msgstr "Zamknąć okno?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 #, fuzzy msgid "[Multiple values] " msgstr "[różne opcji]" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Klawisz" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Wartość" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 #, fuzzy msgid "Writing tags..." msgstr "Pisanie etykiety..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Imię:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 #, fuzzy msgid "Field names must not start with : or _" msgstr "Nie wolno zacząć z : albo _" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 #, fuzzy msgid "Cannot add field" msgstr "Nie można dodać teren" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 #, fuzzy msgid "Field with such name already exists, please try different name." msgstr "Teren o takim imieniu już istnieje, prosimy spróbować inną" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Dodaj..." -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Usuń" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Użycie: deadbeef [OPCJA...] [PLIK...]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Opcje:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr "" " --help lub -h Wyświetla pomoc (ten tekst) i wychodzi z programu\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Wychodzi z programu\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Wyświetla wersję programie i wychodzi\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Zaczyna odtwarzanie\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Zatrzymuje odtwarzanie\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Wstrzymuje odtwarzanie\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Następny utwór na liście odtwarzania\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Poprzedni utwór na liście odtwarzania\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Losowy utwór na liście odtwarzania\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "" " --queue Dodaje plik(i) do istniejącej listy odtwarzania\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Wysyła sformatowaną nazwę utworu do stdout\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1207,7 +1207,7 @@ msgstr "" " [d]ługość, [n]umer utworu, [r]ok, [k]omentarz,\n" " prawa auto[r]skie, [e]pozostało\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1216,7 +1216,7 @@ msgstr "" " np.: --nowplaying \"%%a - %%t\" powinno wyświetlić " "\"artysta - tytuł\"\n" -#: ../main.c:104 +#: ../main.c:109 #, fuzzy, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1225,15 +1225,15 @@ msgstr "" "aby czytać dalej, otwórz http://sourceforge.net/apps/mediawiki/deadbeef/" "index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Domyślne" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Tak" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Nie" @@ -1643,82 +1643,82 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 #, fuzzy msgid "Select folder..." msgstr "Zaznacz wszystkie" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 #, fuzzy msgid "Edit encoder" msgstr "Edytuj kolumnę" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 #, fuzzy msgid "Remove preset" msgstr "Zapisz ustawienia..." -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 #, fuzzy msgid "New DSP Preset" msgstr "Zapisz ustawienia..." -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 #, fuzzy msgid "Edit DSP Preset" msgstr "Zapisz ustawienia..." -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 #, fuzzy msgid "DSP Presets" msgstr "Zapisz ustawienia..." diff --git a/po/pt.po b/po/pt.po index 69de37e3..ec7a8efc 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: deadbeef\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-09-10 11:48+0200\n" "Last-Translator: Sérgio \n" "Language-Team: \n" @@ -57,8 +57,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Ajuda" @@ -174,11 +174,11 @@ msgstr "%d dias %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Parado | %d faixas | %s reproduções" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Estéreo" @@ -288,7 +288,7 @@ msgstr "Inverter seleção" msgid "Selection" msgstr "Seleção" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -313,7 +313,7 @@ msgstr "Ordenar por" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -332,7 +332,7 @@ msgstr "Álbum" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Artista" @@ -348,7 +348,7 @@ msgid "Random" msgstr "Aleatório" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Personalizar" @@ -515,7 +515,7 @@ msgstr "Fe_char" msgid "Metadata" msgstr "Detalhes" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Propriedades" @@ -882,7 +882,7 @@ msgid "Select DSP Plugin" msgstr "Selecione o plugin DSP" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Plugin" @@ -961,47 +961,47 @@ msgstr "" "(Esta janela pode ser desligada nas definições da GTKUI)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Aviso" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Adicionar à fila de reprodução" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Remover da fila de reprodução" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Recarregar detalhes" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Remover do disco" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Adicionar coluna" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Editar coluna" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Remover coluna" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Agrupar por" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Nada" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Artista/Data/Álbum" @@ -1055,96 +1055,96 @@ msgid "Really close the window?" msgstr "Fechar esta janela?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Valores múltiplos]" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Tecla" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Valor" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "A escrever detalhes..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Nome:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Os nomes não podem iniciar com : ou _" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Incapaz de adicionar o campo" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Já existe um campo com este nome. Tente um nome diferente." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Adicionar campo" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Remover campo" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Utilização: deadbeef [opções] [ficheiros]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Opções:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help ou -h Mostra a ajuda (esta mensagem) e sai\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Sai do DeadBeeF\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Mostra as informações da versão e sai\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Inicia a reprodução\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Para a reprodução\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Pausa a reprodução\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Retomar/Pausar\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" @@ -1152,38 +1152,38 @@ msgstr "" " --play-pause Inicia reprodução se parado, caso contrário coloca em " "pausa\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Avança uma música\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Recua uma música\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Música aleatória na lista\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Junta os ficheiros à lista existente\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Grava o nome da faixa para stdout\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1194,7 +1194,7 @@ msgstr "" " [l]duração, [n]úmerodafaixa, [y]ano, [c]omentário,\n" " di[r]eitosdeautor, d[e]corrido\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1203,7 +1203,7 @@ msgstr "" " ex: --nowplaying \"%%a - %%t\" deve gravar \"artista - " "título\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1212,15 +1212,15 @@ msgstr "" " para mais informações, consulte http://sourceforge.net/" "apps/mediawiki/deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Pré-definida" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Sim" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Não" @@ -1626,78 +1626,78 @@ msgstr "O ficheiro já existe. Substituir?" msgid "Converter warning" msgstr "Aviso de conversão" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Por favor escolha o codificador" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Erro de conversão" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "A converter..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Selecione a pasta..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Falha ao gravar as definições do codificador" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" "Verifique as permissões, escolha um nome diferente ou liberte espaço em disco" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "Já existe um pré-ajuste com este nome. Escolha outro nome." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Erro" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Adicionar novo codificador" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Editar codificador" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Remover pré-ajuste" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "Esta ação eliminará o pré-ajuste selecionado. Tem a certeza?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Codificadores" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Adicionar plugin à cadeia DSP" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "Falha ao gravar as definições DSP" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Novo pré-ajuste DSP" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "Editar pré-ajuste DSP" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "Pré-ajustes DSP" diff --git a/po/pt_BR.po b/po/pt_BR.po index 629095a5..a4b47095 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: deadbeef\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-01-06 01:53+0200\n" "Last-Translator: Henrique P. \n" "Language-Team: Brazilian Portuguese \n" @@ -58,8 +58,8 @@ msgid "help.txt" msgstr "help.pt_BR.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Ajuda" @@ -175,11 +175,11 @@ msgstr "%d dias %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Parado | %d faixas | %s tempo total de reprodução" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Estéreo" @@ -290,7 +290,7 @@ msgstr "Inverter seleção" msgid "Selection" msgstr "Seleção" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -315,7 +315,7 @@ msgstr "Ordenar por" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -334,7 +334,7 @@ msgstr "Álbum" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Artista" @@ -350,7 +350,7 @@ msgid "Random" msgstr "Aleatória" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Personalizar" @@ -517,7 +517,7 @@ msgstr "_Fechar" msgid "Metadata" msgstr "Metadados" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Propriedades" @@ -885,7 +885,7 @@ msgid "Select DSP Plugin" msgstr "Selecionar plugin do DSP" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Plugin" @@ -964,47 +964,47 @@ msgstr "" "(Este diálogo pode ser desligado nas configurações do plugin GTKUI)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Alerta" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Colocar na fila da lista de reprodução" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Remover da fila da lista de reprodução" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Recarregar metadados" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Remover do disco" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Adicionar coluna" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Editar coluna" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Remover coluna" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Agrupar por" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Nenhum" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Artista/Data/Álbum" @@ -1058,136 +1058,136 @@ msgid "Really close the window?" msgstr "Deseja realmente fechar esta janela?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Valores múltiplos]" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Chave" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Valor" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Escrevendo etiquetas..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Nome:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Os nomes dos campos não devem começar com : ou _" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Incapaz de adicionar campo" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Um campo com esse nome já existe. Por favor, tente outro nome." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Adicionar campo" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Remover campo" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Uso: deadbeef [opções] [arquivo(s)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Opções:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help ou -h Imprime a ajuda (esta mensagem) e sai\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Fecha o DeaDBeeF\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Imprime informações da versão e sai\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Inicia a reprodução\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Para a reprodução\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Pausa a reprodução\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Pausa/reinicia\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" " --play-pause Inicia a reprodução se parado, senão pausa/reinicia\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Próxima música na lista de reprodução\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Música anterior na lista de reprodução\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Música aleatória na lista de reprodução\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "" " --queue Acrescenta arquivos(s) à lista de reprodução " "existente\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Imprime o nome da faixa para a saída padrão\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1198,7 +1198,7 @@ msgstr "" " [l]duração, [n]úmero da faixa, [y]ano, [c]omentário,\n" " di[r]eitos autorais, tempo d[e]corrido\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1207,7 +1207,7 @@ msgstr "" " ex.: --nowplaying \"%%a - %%t\" deve imprimir\n" " \"artista - título\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1217,15 +1217,15 @@ msgstr "" "http://sourceforge.net/apps/mediawiki/deadbeef/index.php?" "title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Padrão" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Sim" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Não" @@ -1631,27 +1631,27 @@ msgstr "O arquivo já existe. Sobrescrever?" msgid "Converter warning" msgstr "Alerta do conversor" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Selecione o codificador, por favor" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Erro do conversor" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Convertendo..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Selecionar pasta..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Falha ao salvar predefinição do codificador" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1659,52 +1659,52 @@ msgstr "" "Verifique as permissões da pasta de predefinições, tente com um título " "diferente ou libere algum espaço no disco" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" "Uma predefinição com o mesmo nome já existe. Tente um título diferente." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Erro" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Adicionar novo codificador" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Editar codificador" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Remover predefinição" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "Esta ação irá excluir a predefinição selecionada. Tem certeza?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Codificadores" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Adicionar plugin à corrente do DSP" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "Falha ao salvar predefinição do DSP" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Nova predefinição do DSP" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "Editar predefinição do DSP" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "Predefinições do DSP" diff --git a/po/ro.po b/po/ro.po index 2059cb4c..f4f5dc7b 100644 --- a/po/ro.po +++ b/po/ro.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: DeaDBeeF 0.5.3-rc1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-06-04 14:24+0300\n" "Last-Translator: Mișu Moldovan \n" "Language-Team: Romanian \n" @@ -55,8 +55,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Ajutor" @@ -172,11 +172,11 @@ msgstr "%d zile %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Oprit | %d piese | %s durată totală" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -286,7 +286,7 @@ msgstr "Inversare a selecției" msgid "Selection" msgstr "Selecție" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -310,7 +310,7 @@ msgstr "Sortare după" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -329,7 +329,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Artist" @@ -345,7 +345,7 @@ msgid "Random" msgstr "Aleatoare" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Personalizare..." @@ -509,7 +509,7 @@ msgstr "În_chide" msgid "Metadata" msgstr "Metadate" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Proprietăți" @@ -874,7 +874,7 @@ msgid "Select DSP Plugin" msgstr "Selectare modul DSP" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Modul" @@ -953,47 +953,47 @@ msgstr "" "(Această interogare poate fi dezactivată în opțiunile modulului GTKUI)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Avertizare" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Adăugare în coada de redare" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Ștergere din coada de redare" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Reîncarcare metadate" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Ștergere de pe disc" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Adăugare coloană" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Editare coloană" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Ștergere coloană" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Grupează după" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Fără" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Artist/Dată/Album" @@ -1046,96 +1046,96 @@ msgid "Really close the window?" msgstr "Sigur doriți să închideți fereastra?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Valori multiple]" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Cheie" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Valoare" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Se scriu etichetele..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Nume:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Numele câmpurilor nu pot începe cu : sau _" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Nu s-a putut adăuga câmpul" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Un câmp cu acest nume există deja, încercați să-l redenumiți." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Adăugare câmp" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Ștergere câmp" -#: ../main.c:84 +#: ../main.c:89 #, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Utilizare: deadbeef [opțiuni] [--] [fișier(e)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Opțiuni:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help sau -h Arată acest mesaj de ajutor și ieși\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Ieșire din player\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Arată detaliile versiunii și ieși\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Pornește redarea\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Oprește redarea\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Pune pauză redării\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Comută starea de pauză\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" @@ -1143,27 +1143,27 @@ msgstr "" " --play-pause Pornește redarea dacă e cazul sau comută starea de " "pauză\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Piesa următoare în lista de redare\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Piesa precedentă în lista de redare\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Piesă aleatoare din lista de redare\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Adaugă fișiere la lista de redare curentă\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" @@ -1171,13 +1171,13 @@ msgstr "" " --gui MODUL Precizează ce modul GUI să fie utilizat, implicit " "\"GTK2\"\n" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" " --nowplaying FMT Arată în ieșirea standard numele formatat al piesei\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1190,7 +1190,7 @@ msgstr "" "omentariu,\n" " d[r]epturi de autor, durată r[e]dată\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1199,7 +1199,7 @@ msgstr "" " de ex.: --nowplaying \"%%a - %%t\" va rezulta în " "\"artist - titlu\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1208,15 +1208,15 @@ msgstr "" " pentru mai multe detalii vedeți http://sourceforge.net/" "apps/mediawiki/deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Implicit" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Da" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Nu" @@ -1619,27 +1619,27 @@ msgstr "Fișierul există deja. Doriți să îl suprascrieți?" msgid "Converter warning" msgstr "Avertizare de la convertor" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Selectați un codor" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Eroare de convertire" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "În convertire..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Selectați un director..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Nu s-au putut salva presetările codorului" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1647,51 +1647,51 @@ msgstr "" "Verificați drepturile pentru directorul cu presetări, alegeți un alt titlu " "sau eliberați mai mult spațiu pe disc" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "Există deja o presetare cu acest nume. Alegeți un alt titlu." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Eroare" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Adăugare codor nou" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Editare codor" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Ștergere codor" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "Această acțiune va șterge predefiniția selectată. Sigur doriți asta?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Codoare" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Adaugare modul în lanțul DSP" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "Nu s-a putut salva predefiniția DSP" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Nouă presetare DSP" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "Editare presetare DSP" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "Presetări DSP" diff --git a/po/ru.po b/po/ru.po index a5092c21..6792fac7 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.4.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2011-12-15 15:34+0200\n" "Last-Translator: Max \n" "Language-Team: ru \n" @@ -56,8 +56,8 @@ msgid "help.txt" msgstr "help.ru.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Справка" @@ -173,11 +173,11 @@ msgstr "%d дней %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Стоп | %d дорожек | %s общее время" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Моно" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Стерео" @@ -287,7 +287,7 @@ msgstr "Обратить выделение" msgid "Selection" msgstr "Выделенное" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -312,7 +312,7 @@ msgstr "Сортировать по" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -331,7 +331,7 @@ msgstr "Альбом" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Исполнитель" @@ -347,7 +347,7 @@ msgid "Random" msgstr "Случайно" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Пользовательский" @@ -514,7 +514,7 @@ msgstr "_Закрыть" msgid "Metadata" msgstr "Метаданные" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Свойства" @@ -891,7 +891,7 @@ msgid "Select DSP Plugin" msgstr "Выберите расширение DSP" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Расширение" @@ -970,47 +970,47 @@ msgstr "" "(Этот диалог может быть отключён в настройках расширения GTKUI)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Предупреждение" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Добавить в очередь" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Удалить из очереди" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Обновить метаданные" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Удалить с жёсткого диска" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Добавить столбец" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Редактировать столбец" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Удалить столбец" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Группировать по" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Отсутствует" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Исполнитель/Дата/Альбом" @@ -1064,99 +1064,99 @@ msgid "Really close the window?" msgstr "Закрыть окно?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Несколько значений] " -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Ключ" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Значение" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Запись тегов..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Название:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Имена полей не должны начинаться с \":\" или \"_\"" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Не удаётся добавить поле" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Поле с таким же именем уже сущестует, пожалуйста, выберите другое имя." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Добавить поле" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Удалить поле" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Использование: deadbeef [опции] [файл(ы)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Опции:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr "" " --help или -h Вывести на экран справку (это сообщение) и выйти\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Выйти из плеера\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr "" " --version Вывести на экран информацию о версии программы и " "выйти\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Начать воспроизведение\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Остановить воспроизведение\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Приостановить воспроизведение\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Приостановить воспроизведение\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" @@ -1164,39 +1164,39 @@ msgstr "" " --play-pause Начать воспроизведение если остановлено, в противном " "случае - приостановить\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Следующая дорожка в плейлисте\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Предыдущая дорожка в плейлисте\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Воспроизведение случайной дорожки в плейлисте\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Добавить файл(ы) в существующий плейлист\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" " --nowplaying FMT Вывести на экран форматированное название дорожки\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1209,7 +1209,7 @@ msgstr "" "комментарий,\n" " %%r-авторские права, %%e-время, которое прошло \n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1218,7 +1218,7 @@ msgstr "" " Например: --nowplaying \"%%a - %%t\" должна вывести " "на экран \"artist - title\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1227,15 +1227,15 @@ msgstr "" " для дополнительной информации, смотрите http://" "sourceforge.net/apps/mediawiki/deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Плейлист" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Да" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Нет" @@ -1642,27 +1642,27 @@ msgstr "Файл уже существует. Перезаписать?" msgid "Converter warning" msgstr "Converter предупреждение" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Пожалуйста, выберите кодировщик" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Converter ошибка" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Конвертирование..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Выберите каталог..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Не удалось сохранить предустановку кодировщика" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1670,51 +1670,51 @@ msgstr "" "Проверьте права доступа на папку, в которой находится предустановка, " "выберите другое имя или освободите место на диске" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "Предустановка с таким же именем уже существует. Выберите другое имя." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Ошибка" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Добавить кодировщик" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Редактировать кодировщик" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Удалить предустановку" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "Это действие приведёт к удалению выбранной предустановки. Вы уверены? " -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Кодировщики" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Добавить расширение в цепочку DSP" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "Не удалось сохранить предустановку DSP" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Новая предустановка DSP" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "Редактировать предустановку DSP " -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "Предустановки DSP" diff --git a/po/si.po b/po/si.po index 0a2efc24..63e50a9e 100644 --- a/po/si.po +++ b/po/si.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2010-11-29 17:35+0200\n" "Last-Translator: danishka \n" "Language-Team: LANGUAGE \n" @@ -55,8 +55,8 @@ msgid "help.txt" msgstr "" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "උදව්" @@ -172,11 +172,11 @@ msgstr "" msgid "Stopped | %d tracks | %s total playtime" msgstr "" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "" @@ -285,7 +285,7 @@ msgstr "" msgid "Selection" msgstr "" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -309,7 +309,7 @@ msgstr "" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -328,7 +328,7 @@ msgstr "" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "" @@ -344,7 +344,7 @@ msgid "Random" msgstr "" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "" @@ -508,7 +508,7 @@ msgstr "" msgid "Metadata" msgstr "" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "" @@ -870,7 +870,7 @@ msgid "Select DSP Plugin" msgstr "" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "" @@ -947,47 +947,47 @@ msgid "" msgstr "" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "" @@ -1040,133 +1040,133 @@ msgid "Really close the window?" msgstr "" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "" -#: ../main.c:84 +#: ../main.c:89 #, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr "" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr "" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr "" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr "" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr "" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr "" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr "" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr "" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr "" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr "" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1174,29 +1174,29 @@ msgid "" " copy[r]ight, [e]lapsed\n" msgstr "" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " "- title\"\n" msgstr "" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "" @@ -1575,77 +1575,77 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "" diff --git a/po/sk.po b/po/sk.po index 9ec18b00..ab40f21c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: deadbeef\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2010-07-08 10:21+0100\n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" @@ -55,8 +55,8 @@ msgid "help.txt" msgstr "" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Pomocník" @@ -173,11 +173,11 @@ msgstr "%d dní %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Zastavené | %d stôp | %s celkový čas" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -286,7 +286,7 @@ msgstr "Invertovať výber" msgid "Selection" msgstr "Výber" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -310,7 +310,7 @@ msgstr "" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -330,7 +330,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Interpret" @@ -346,7 +346,7 @@ msgid "Random" msgstr "Náhodné" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Vlastné" @@ -515,7 +515,7 @@ msgstr "_Zatvoriť" msgid "Metadata" msgstr "Metadáta" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Vlastnosti" @@ -887,7 +887,7 @@ msgid "Select DSP Plugin" msgstr "Výber" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 #, fuzzy msgid "Plugin" @@ -968,47 +968,47 @@ msgstr "" "(Tento dialóg môžete vypnúť v nastaveniach zásuvných modulov GTKUI)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Upozornenie" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Pridať do frontu prehrávaných" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Odstrániť z frontu prehrávaných" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Znovu načítať metadáta" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Odstrániť z disku" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Pridať stĺpec" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Upraviť stĺpec" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Odstrániť stĺpec" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Zoskupiť podľa" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Žiadne" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Interpret/dátum/album" @@ -1062,136 +1062,136 @@ msgid "Really close the window?" msgstr "Naozaj zatvoriť toto okno?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Kľúč" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Hodnota" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 #, fuzzy msgid "Add field" msgstr "Pridať súbor(y)" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 #, fuzzy msgid "Remove field" msgstr "Odstrániť" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Použitie: deadbeef [možnosti] [súbor(y)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Možnosti:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help alebo -h Vypíše túto správu Pomocníka a skončí\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Ukončí prehrávač\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Vypíše informácie o verzii a skončí\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Začne prehrávanie\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Zastaví prehrávanie\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Pozastaví prehrávanie\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Ďalšia stopa v zozname\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Predošlá stopa v zozname\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Náhodná stopa v zozname\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Pridá súbory do existujúceho zoznamu stôp\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" " --nowplaying FMT Vypíše formátovaný názov stopy na štand. výstup\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1202,7 +1202,7 @@ msgstr "" " [l] dĺžka, [n] č. stopy, [y] rok, [c] komentár,\n" " [r] autorské práva, [e] uplynulo\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1211,22 +1211,22 @@ msgstr "" " napr.: --nowplaying „%%a - %%t“ by malo vypísať " "„interpret - názov“\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Predvolené" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Áno" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Nie" @@ -1636,82 +1636,82 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 #, fuzzy msgid "Select folder..." msgstr "Vybrať všetky" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 #, fuzzy msgid "Edit encoder" msgstr "Upraviť stĺpec" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 #, fuzzy msgid "Remove preset" msgstr "Uložiť predvoľby" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 #, fuzzy msgid "New DSP Preset" msgstr "Uložiť predvoľby" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 #, fuzzy msgid "Edit DSP Preset" msgstr "Uložiť predvoľby" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 #, fuzzy msgid "DSP Presets" msgstr "Uložiť predvoľby" diff --git a/po/sl.po b/po/sl.po index 81a28a71..90035879 100644 --- a/po/sl.po +++ b/po/sl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: deadbeef\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-01-22 22:12+0200\n" "Last-Translator: Klemen \n" "Language-Team: Slovenian \n" @@ -56,8 +56,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Pomoč" @@ -173,11 +173,11 @@ msgstr "%d dni %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Zaustavljeno | %d skladb | Skupni čas predvajanja: %s" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -288,7 +288,7 @@ msgstr "Obrni izbor" msgid "Selection" msgstr "Izbor" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -313,7 +313,7 @@ msgstr "Razvrsti po" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -332,7 +332,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Izvajalec" @@ -348,7 +348,7 @@ msgid "Random" msgstr "Naključno" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Po meri" @@ -515,7 +515,7 @@ msgstr "_Zapri" msgid "Metadata" msgstr "Metapodatki" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Lastnosti" @@ -880,7 +880,7 @@ msgid "Select DSP Plugin" msgstr "Izberite vstavek DSP" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Vstavek" @@ -957,47 +957,47 @@ msgid "" msgstr "Ali ste prepričani, da želite izbrisati datoteke iz diska?" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Opozorilo" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Dodaj na seznam predvajanja" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Odstrani s seznama predvajanja" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Ponovno naloži metapodatke" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Odstrani z diska" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Dodaj stolpec" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Uredi stolpec" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Odstrani stolpec" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Združi po" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Ne združi" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Izvajalec/Datum/Album" @@ -1051,96 +1051,96 @@ msgid "Really close the window?" msgstr "Ali res želite zapreti to okno?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Več vrednosti] " -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Ključ" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Vrednost" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Zapisovanje oznak ..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Ime:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Imena polj se ne smejo začeti z »:« ali »_«" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Polja ni mogoče dodati" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Polje s tem imenom že obstaja." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Dodaj polje" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Odstrani polje" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Uporaba: deadbeef [možnosti] [datoteka]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Možnosti:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help ali -h Izpiše pomoč (to sporočilo).\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Konča predvajalnik.\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Izpiše podatke o različici.\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Začne predvajanje.\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Zaustavi predvajanje.\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Prekine predvajanje.\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Začne/prekine predvajanje\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" @@ -1148,39 +1148,39 @@ msgstr "" " --play-pause Začne predvajanje, če je zaustavljeno, v nasprotnem " "primeru ga prekine.\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Naslednja skladba s seznama predvajanja.\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Predhodna skladba s seznama predvajanja.\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Naključna skladba s seznama predvajanja.\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Pripne datoteko na seznam predvajanja.\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" " --nowplaying OBLIKA Izpiše oblikovano ime trenutno predvajane skladbe.\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1192,7 +1192,7 @@ msgstr "" " [l] - trajanje, [n] - številka skladbe, [y] - leto,\n" " [c] - opomba, avto[r]ske pravice, pr[e]tečen čas\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1201,7 +1201,7 @@ msgstr "" " npr.: --nowplaying »%%a - %%t« izpiše »izvajalec - " "naslov«\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1210,15 +1210,15 @@ msgstr "" " Za več podatkov si oglejte http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Privzeto" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Da" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Ne" @@ -1624,27 +1624,27 @@ msgstr "Datoteka že obstaja. Ali jo želite prepisati?" msgid "Converter warning" msgstr "Opozorilo pretvornika" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Prosimo, izberite kodirnik" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Napaka pretvornika" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Pretvarjanje ..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Izberite mapo ..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Predloge nastavitev kodirnika ni mogoče shraniti" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1652,51 +1652,51 @@ msgstr "" "Preverite dovoljenja mape predloge nastavitev, izberite drugo ime ali " "sprostite nekaj prostora na disku." -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "Predloga nastavitev s tem imenom že obstaja." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Napaka" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Dodaj nov kodirnik" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Uredi kodirnik" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Odstrani predlogo nastavitev" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "Ali ste prepričani, da želite izbrisati izbrano predlogo nastavitev?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Kodirniki" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Dodaj vstavek v verigo DSP" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "Predloge nastavitev DSP ni mogoče shraniti." -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Nova predloga nastavitev DSP" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "Uredi predlogo nastavitev DSP" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "Predloge nastavitev DSP" diff --git a/po/sr.po b/po/sr.po index 52fa91ac..d9da9274 100644 --- a/po/sr.po +++ b/po/sr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: DeaDBeeF 0.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-08-30 14:27+0100\n" "Last-Translator: Jay A.Fleming \n" "Language-Team: \n" @@ -56,8 +56,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Помоћ" @@ -173,11 +173,11 @@ msgstr "%d дана %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Заустављено | %d песама | %s укупно време свирања" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Моно" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Стерео" @@ -288,7 +288,7 @@ msgstr "Обрни избор" msgid "Selection" msgstr "Избор" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -313,7 +313,7 @@ msgstr "Сложи по" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -332,7 +332,7 @@ msgstr "Албум" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Извођач" @@ -348,7 +348,7 @@ msgid "Random" msgstr "Случајно" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Прилагођено" @@ -515,7 +515,7 @@ msgstr "_Затвори" msgid "Metadata" msgstr "Подаци о песми" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Особине" @@ -884,7 +884,7 @@ msgid "Select DSP Plugin" msgstr "Избор додатка за дигиталну обраду" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Додатак" @@ -963,47 +963,47 @@ msgstr "" "(Овај дијалог може да се искључи у подешавањима додатка GTKUI)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Упозорење" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Додај у заказано" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Уклони из заказаног" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Поново учитај податке о песми" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Уклони са диска" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Додај колону" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Уреди колону" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Уклони колону" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Групиши по" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Поништи груписање" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Извођач/Датум/Албум" @@ -1057,134 +1057,134 @@ msgid "Really close the window?" msgstr "Желите ли заиста да затворите овај прозор?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Вишеструке вредности] " -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Кључ" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Вредност" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Уписујем ознаке..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Име:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Имена поља не могу почињати знацима : или _" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Не могу да додам поље" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Поље са истим именом већ постоји. Дајте пољу друго име." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Додај поље" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Уклони поље" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Употреба: deadbeef [опције] [датотека(е)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Опције:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help или -h Прикажи ову помоћ и изађи\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Напусти плејер\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Прикажи инфо о верзији и изађи\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Репродукуј\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Заустави репродукцију\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Паузирај репродукцију\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Паузирај\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" " --play-pause Започни репродукцију ако је заустављена, и обратно\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Наредна песма из листе\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Претходна песма из листе\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Насумично песма из листе\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Додај датотеку(е) у постојећу листу\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Испиши уређено име песме на стд. излаз\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1195,7 +1195,7 @@ msgstr "" " [l]-трајање, [n]-бр.песме, [y]-година, [c]-примедба,\n" " [r]-ауторска права, [e]преостало време\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1204,7 +1204,7 @@ msgstr "" " Н.пр.: --nowplaying \"%%a - %%t\" ће исписати " "\"Извођач - Наслов\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1213,15 +1213,15 @@ msgstr "" " додатне информације на http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Подразумевано" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Да" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Не" @@ -1630,27 +1630,27 @@ msgstr "Датотека са истим именом већ постоји. Д msgid "Converter warning" msgstr "Упозорење прекодера" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Одаберите кодер" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Грешка прекодера" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Прекодирам..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Одаберите директоријум..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Није успело чување поставки кодера" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1658,51 +1658,51 @@ msgstr "" "Проверите дозволе директоријума за чување поставки или дајте поставки друго " "име или проверите да ли имате довољно слободног простора на диску" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "Поставка са истим именом већ постоји. Дајте поставци друго име." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Грешка" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Додај нови кодер" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Уреди кодер" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Уклони поставку" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "Овом радњом ћете обрисати одабрану поставку. Да ли то заиста желите?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Кодери" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "Није успело чување поставки за дигиталну обраду" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Нова поставка за дигиталну обраду" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "Уреди поставку за дигиталну обраду" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "Поставке за дигиталну обраду" diff --git a/po/sr@latin.po b/po/sr@latin.po index 9b3cba20..bcc35b9d 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: DeaDBeeF 0.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2010-11-18 14:52+0100\n" "Last-Translator: Jay A. Fleming \n" "Language-Team: \n" @@ -57,8 +57,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Pomoć" @@ -175,11 +175,11 @@ msgstr "%d dana %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Zaustavljeno | %d pesama | %s ukupno vreme sviranja" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -290,7 +290,7 @@ msgstr "Obrni izbor" msgid "Selection" msgstr "Izbor" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -314,7 +314,7 @@ msgstr "" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -334,7 +334,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Izvođač" @@ -350,7 +350,7 @@ msgid "Random" msgstr "Slučajno" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Prilagođeno" @@ -519,7 +519,7 @@ msgstr "_Zatvori" msgid "Metadata" msgstr "Podaci o pesmi" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Osobine" @@ -891,7 +891,7 @@ msgid "Select DSP Plugin" msgstr "Izbor" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 #, fuzzy msgid "Plugin" @@ -972,47 +972,47 @@ msgstr "" "(Ovaj dijalog može da se isključi u podešavanjima dodatka GTKUI)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Upozorenje" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Dodaj u zakazano" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Ukloni iz zakazanog" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Ponovo učitaj podatke o pesmi" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Ukloni sa diska" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Dodaj kolonu" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Uredi kolonu" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Ukloni kolonu" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Grupiši po" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Poništi grupisanje" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Izvođač/Datum/Album" @@ -1066,135 +1066,135 @@ msgid "Really close the window?" msgstr "Želite li zaista da zatvorite ovaj prozor?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Ključ" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Vrednost" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 #, fuzzy msgid "Add field" msgstr "Dodaj datoteku(e)" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 #, fuzzy msgid "Remove field" msgstr "Ukloni" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Upotreba: deadbeef [opcije] [datoteka(e)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Opcije:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help ili -h Prikaži ovu pomoć i izađi\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Napusti plejer\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Prikaži info o verziji i izađi\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Reprodukuj\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Zaustavi reprodukciju\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Pauziraj reprodukciju\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Naredna pesma iz liste\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Prethodna pesma iz liste\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Nasumično pesma iz liste\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Dodaj datoteku(e) u postojeću listu\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Ispiši uređeno ime pesme na std. izlaz\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1205,7 +1205,7 @@ msgstr "" " [l]-trajanje, [n]-br.pesme, [y]-godina, [c]-primedba,\n" " [r]-autorska prava, [e]preostalo vreme\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1214,22 +1214,22 @@ msgstr "" " N.pr.: --nowplaying \"%%a - %%t\" će ispisati " "\"Izvođač - Naslov\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Podrazumevano" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Da" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Ne" @@ -1639,82 +1639,82 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 #, fuzzy msgid "Select folder..." msgstr "Izaberi sve" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 #, fuzzy msgid "Edit encoder" msgstr "Uredi kolonu" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 #, fuzzy msgid "Remove preset" msgstr "Sačuvaj podešavanja" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 #, fuzzy msgid "New DSP Preset" msgstr "Sačuvaj podešavanja" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 #, fuzzy msgid "Edit DSP Preset" msgstr "Sačuvaj podešavanja" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 #, fuzzy msgid "DSP Presets" msgstr "Sačuvaj podešavanja" diff --git a/po/sv.po b/po/sv.po index 88f082f3..6bb55aba 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-03-07 14:11+0200\n" "Last-Translator: Martin \n" "Language-Team: LANGUAGE \n" @@ -55,8 +55,8 @@ msgid "help.txt" msgstr "" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Hjälp" @@ -172,11 +172,11 @@ msgstr "%d dagar %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Stoppad | %d spår | %s total speltid" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -286,7 +286,7 @@ msgstr "Invertera markering" msgid "Selection" msgstr "Markering" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -310,7 +310,7 @@ msgstr "" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -329,7 +329,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Artist" @@ -345,7 +345,7 @@ msgid "Random" msgstr "Slumpa" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Anpassad" @@ -514,7 +514,7 @@ msgstr "_Stäng" msgid "Metadata" msgstr "Metadata" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Egenskaper" @@ -882,7 +882,7 @@ msgid "Select DSP Plugin" msgstr "Välj DSP-instick" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Instick" @@ -961,47 +961,47 @@ msgstr "" "(Denna dialogruta kan stängas av i inställningarna för GTKUI-instick)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Varning" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Lägg till i uppspelningskön" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Ta bort från uppspelningskön" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Ladda om metadata" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Ta bort från disk" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Lägg till kolumn" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Redigera kolumn" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Ta bort kolumn" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Gruppera efter" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Ingen" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Artist/Datum/Album" @@ -1055,135 +1055,135 @@ msgid "Really close the window?" msgstr "Ska fönstret verkligen stängas?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Nyckel" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Värde" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Lägg till fält" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Ta bort fält" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Användning: deadbeef [flaggor] [fil(er)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Flaggor:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help eller -h Visa hjälp (detta meddelande) och avsluta\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Stäng spelare\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Skriv ut versionsinformation och avsluta\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Påbörja uppspelning\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Stoppa uppspelning\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Pausa uppspelning\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Nästa spår i spellista\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Föregående spår i spellista\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Slumpa spår i spellista\n" # existing => nuvarande? jag utgår ifrån att man avser listan som är aktiv i spelaren för tillfället. -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Lägg till fil(er) i nuvarande spellista\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Skriv formaterat spårnamn till standard ut\n" # jag hatar dessa! -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1194,7 +1194,7 @@ msgstr "" " längd (l), spårnummer (n), år (y), kommentar (c),\n" " utgiven av (r), förfluten tid (e)\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1203,22 +1203,22 @@ msgstr "" " e.x.: --nowplaying \"%%a - %%t\" bör visa \"artist - " "titel\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Standard" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Ja" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Nej" @@ -1624,81 +1624,81 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Välj katalog..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 #, fuzzy msgid "Edit encoder" msgstr "Redigera kolumn" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 #, fuzzy msgid "Remove preset" msgstr "Spara inställningar" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 #, fuzzy msgid "New DSP Preset" msgstr "Spara inställningar" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 #, fuzzy msgid "Edit DSP Preset" msgstr "Spara inställningar" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 #, fuzzy msgid "DSP Presets" msgstr "Spara inställningar" diff --git a/po/te.po b/po/te.po index b7c77923..e7210fa6 100644 --- a/po/te.po +++ b/po/te.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-04-11 04:21+0200\n" "Last-Translator: PraveenIlla \n" "Language-Team: LANGUAGE \n" @@ -55,8 +55,8 @@ msgid "help.txt" msgstr "సహాయం.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "సహాయం" @@ -172,11 +172,11 @@ msgstr "%d రోజులు %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "ఆపివేయబడింది | %d ట్రాక్‌లు | %s మొత్తం ప్లేటైమ్" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "మోనో" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "స్టీరియో" @@ -285,7 +285,7 @@ msgstr "ఎంపికను తారుమారుచేయి" msgid "Selection" msgstr "ఎంపిక" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -310,7 +310,7 @@ msgstr "ఇలా క్రమబద్దీకరించు" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -329,7 +329,7 @@ msgstr "ఆల్బమ్" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "కళాకారుడు" @@ -345,7 +345,7 @@ msgid "Random" msgstr "యాదృచ్ఛికం" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "అనురూపితం" @@ -512,7 +512,7 @@ msgstr "మూసివేయి (_C)" msgid "Metadata" msgstr "మెటాడేటా" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "గుణములు" @@ -878,7 +878,7 @@ msgid "Select DSP Plugin" msgstr "ఎంపిక" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 #, fuzzy msgid "Plugin" @@ -959,47 +959,47 @@ msgstr "" "(ఈ డైలాగును GTKUI ప్లగిన్ అమరికలలోకి వెళ్ళి ఆపివేయవచ్చు)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "హెచ్చరిక" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "ప్లేబాక్ వరుసకు జతచేయి" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "ప్లేబాక్ వరుస నుండి తొలగించు" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "మెటాడేటాను మళ్ళీ నింపు" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "డిస్కు నుండి తొలగించు" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "నిలువువరుసను జతచేయి" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "నిలువువరుసను సవరించు" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "నిలువువరుసను తొలగించు" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "ఏదీకాదు" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "కళాకారుడు/తేదీ/ఆల్బమ్" @@ -1053,135 +1053,135 @@ msgid "Really close the window?" msgstr "నిజంగానే విండో మూసివేయాలా?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "కీ" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "విలువ" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 #, fuzzy msgid "Add field" msgstr "ఫైళ్ళ(ను) జతచేయి" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 #, fuzzy msgid "Remove field" msgstr "తొలగించు" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "వాడుక: deadbeef [options] [file(s)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "ఐచ్ఛికాలు:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help or -h సహాయాన్ని ముద్రించు (ఈ సందేశమును) మరియు నిష్క్రమించు\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit ప్లేయర్ నుండి నిష్క్రమిస్తుంది\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version వర్షన్ సమాచారాన్ని ముద్రించి, నిష్క్రమించు\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play ప్లేబాక్ ప్రారంభించు\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop ప్లేబాక్ ఆపుము\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause ప్లేబాక్ నిలిపివేయి\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next పాటలజాబితాలో తదుపరి పాట\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev పాటలజాబితాలో మునుపటి పాట\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random పాటల జాబితాలో యాదృచ్ఛిక పాట\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue ఉన్నటువంటి పాటలజాబితాకు ఫైళ్ళను జతచేయి\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1189,29 +1189,29 @@ msgid "" " copy[r]ight, [e]lapsed\n" msgstr "" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " "- title\"\n" msgstr "" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "అప్రమేయం" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "అవును" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "కాదు" @@ -1620,82 +1620,82 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 #, fuzzy msgid "Select folder..." msgstr "అన్నీ ఎంచుకో" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 #, fuzzy msgid "Edit encoder" msgstr "నిలువువరుసను సవరించు" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 #, fuzzy msgid "Remove preset" msgstr "ప్రిసెట్ భద్రపరుచు" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 #, fuzzy msgid "New DSP Preset" msgstr "ప్రిసెట్ భద్రపరుచు" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 #, fuzzy msgid "Edit DSP Preset" msgstr "ప్రిసెట్ భద్రపరుచు" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 #, fuzzy msgid "DSP Presets" msgstr "ప్రిసెట్ భద్రపరుచు" diff --git a/po/tr.po b/po/tr.po index 6ce14154..e1bded34 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: LXDE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-05-06 15:22+0200\n" "Last-Translator: Necdet \n" "Language-Team: Turkish \n" @@ -55,8 +55,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Yardım" @@ -172,11 +172,11 @@ msgstr "%d gün %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Durduruldu | %d parça |toplam çalma zamanı: %s" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -287,7 +287,7 @@ msgstr "Seçimi ters çevir" msgid "Selection" msgstr "Seçim" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -312,7 +312,7 @@ msgstr "Sıralama Kriteri" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -331,7 +331,7 @@ msgstr "Albüm" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Sanatçı" @@ -347,7 +347,7 @@ msgid "Random" msgstr "Rastgele" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Özel" @@ -514,7 +514,7 @@ msgstr "_Kapat" msgid "Metadata" msgstr "Üstveri" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Özellikler" @@ -881,7 +881,7 @@ msgid "Select DSP Plugin" msgstr "DSP Eklentisini Seçin" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Eklenti" @@ -960,47 +960,47 @@ msgstr "" "(Bu diyalog GTKUI eklenti ayarlarından kapatılabilir)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Uyarı" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Çalma kuyruğuna ekle" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Çalma kuyruğundan kaldır" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Üstveriyi tekrar yükle" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Diskten sil" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Sütun ekle" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Sütunu düzenle" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Sütunu kaldır" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Gruplandırma ölçütü" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Hiçbiri" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Sanatçı/Tarih/Albüm" @@ -1054,135 +1054,135 @@ msgid "Really close the window?" msgstr "Pencere gerçekten kapatılsın mı?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[çoklu değerler]" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Tuş" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Değer" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Etiketler yazılıyor..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "İsim:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Alan isimleri : veya _ ile başlayamaz" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Alan eklenemez" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Bu isimde bir alan mevcut, lütfen başka bir isimle tekrar deneyin." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Alan ekle" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Alan sil" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Kullanım: deadbeef [seçenekler] [dosya(lar)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Seçenekler:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help veya -h Yardımı yazdır (bu mesajı) ve çık\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Oynatıcıyı kapat\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Sürüm bilgilerini yazdır ve çık\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Oynatımı başlat\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Oynatımı durdur\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Oynatımı duraklat\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause Duraklamayı geç\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "--play-pause Durdurulmuşsa çal, değilse duraklamayı geç\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Çalma listesinde sonraki parça\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Çalma listesinde önceki parça\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Çalma listesinde rastgele parça\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Çalma listesine parça(lar) ekle\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" " --nowplaying FMT Değiştirilmiş dosya adını standard çıktıya (stdout) " "yazdır\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1193,7 +1193,7 @@ msgstr "" " [u]zunluk, parça[n]umarası, [y]ıl, y[o]rum,\n" " teli[f]hakkı, [g]eçmiş\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1202,7 +1202,7 @@ msgstr "" " e.g.: --şimdi çalıyor \"%%a - %%t\" yazdırır \"sanatçı " "- başlık\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1211,15 +1211,15 @@ msgstr "" "daha fazla bilgi için http://sourceforge.net/apps/mediawiki/deadbeef/index." "php?title=Title_Formatting adresine bakabilirsiniz\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Varsayılan" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Evet" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Hayır" @@ -1625,27 +1625,27 @@ msgstr "Dosya mevcut. Üzerine yazılsın mı?" msgid "Converter warning" msgstr "Dönüştürücü uyarısı" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Lütfen bir kodlayıcı seçin" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Dönüştürücü hatası" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Dönüştürülüyor..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Dizin seçin..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Kodlayıcı önayarları kaydedilemedi" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1653,51 +1653,51 @@ msgstr "" "Dizinin erişim izinlerini kontrol edin, başka bir isim deneyin veya yeterli " "disk alanını boşaltın" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "Bu isimle bir önayar mevcut. Başka bir isim seçin." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Hata" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Yeni kodlayıcı ekle" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Kodlayıcıyı düzenle" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Önayarı kaldır" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "Seçtiğiniz önayar silinecek. Bunu yapmak istediğinizden emin misiniz?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Kodlayıcılar" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "DSP zincirine eklenti ekle" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "DSP önayarı kaydedilemedi" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Yeni DSP Önayarı" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "DSP Önayarını Düzenle" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "DSP Önayarları" diff --git a/po/ug.po b/po/ug.po index dc165edd..a1013ece 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: deadbeef\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-04-18 01:46+0200\n" "Last-Translator: Gheyret \n" "Language-Team: Uyghur Computer Science Association \n" @@ -55,8 +55,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "ياردەم" @@ -172,11 +172,11 @@ msgstr "%d كۈن %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "توختىغان | %d نەغمە | %s جەمئىي قويۇش ۋاقتى" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "يەككە يوللۇق ئاۋاز" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "ستېرېئو" @@ -287,7 +287,7 @@ msgstr "تاللاشنى ئۆرۈ" msgid "Selection" msgstr "تاللانما" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -312,7 +312,7 @@ msgstr "تەرتىپى" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -331,7 +331,7 @@ msgstr "ئالبوم" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "ئورۇنلىغۇچى" @@ -347,7 +347,7 @@ msgid "Random" msgstr "قالايمىقان" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "ئىختىيارى" @@ -514,7 +514,7 @@ msgstr "ياپ(_C)" msgid "Metadata" msgstr "مېتا سانلىق-مەلۇماتى" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "خاسلىق" @@ -883,7 +883,7 @@ msgid "Select DSP Plugin" msgstr "DSP قىستۇرمىسىنى تاللاش" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "قىستۇرما" @@ -962,47 +962,47 @@ msgstr "" "(بۇ سۆزلەشكۈ GTKUI قىستۇرما تەڭشىكىدە ئۆچمەيدۇ)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "ئاگاھلاندۇرۇش" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "قويۇش قاتارىغا قوشۇش" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "قويۇش قاتارىدىن چىقىرىۋېتىش" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "مېتا سانلىق-مەلۇماتنى قايتا ئوقۇش" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "دىسكىدىن چىقىرىۋېتىش" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "ئىستون قوشۇش" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "ئىستون تەھرىرلەش" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "ئىستوننى ئۆچۈر" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "گۇرۇپپىلاش" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "يوق" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "ئورۇنلىغۇچى/چېسلا/ئالبوم" @@ -1056,96 +1056,96 @@ msgid "Really close the window?" msgstr "كۆزنەكنى راستلا ياپامسىز؟" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[بىر قانچە قىممەت] " -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "ئاچقۇچ" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "قىممەت" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "خەتكۈچلەرنى يېزىۋاتىدۇ…" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "ئاتى:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "سوز بۆلىكى ئاتى : ياكى _ بىلەن باشلانماسلىقى كېرەك" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "سوز بۆلىكى قوشقىلى بولمىدى" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "بۇنداق ئاتى بار سوز بۆلىكى مەۋجۇت، باشقا ئاتنى سىناپ كۆرۈڭ." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "سوز بۆلىكى قوشۇش" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "سوز بۆلىكىنى چىقىرىۋېتىش" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "ئىشلىتىش ئۇسۇلى: deadbeef [options] [file(s)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "تاللانمىلار:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help ياكى -h مۇشۇ ياردەمنى كۆرسىتىپ ئاخىرلىشىدۇ\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit قويغۇنى ئاخىرلاشتۇرىدۇ\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version نەشر ئۇچۇرىنى بېسىپ چىقىرىپ ئاخىرلىشىدۇ\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play قويۇشنى باشلايدۇ\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop قويۇشنى توختىتىدۇ\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause قويۇشنى ۋاقىتلىق توختىتىدۇ\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause ۋاقىتلىق توختىتىشنى ئالماشتۇرىدۇ\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" @@ -1153,40 +1153,40 @@ msgstr "" " --play-pause قويۇۋاتقان بولسا ۋاقىتلىق توختىتىدۇ، باشقا ھالەتنىمۇ " "ۋاقىتلىق توختىتىدۇ\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next قويۇش تىزىمىدىكى كېيىنكى ناخشا\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev قويۇش تىزىمىدىكى ئالدىنقى ناخشا\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random قويۇش تىزىمىدىكى ناخشىنى تەرتىپسىز قويىدۇ\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue ھۆججەت(لەر) نى قويۇش تىزىمىغا قوشىدۇ\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr "" " --nowplaying FMT پىچىلغان نەغمە ئاتىنى ئۆلچەملىك چىقىرىش ئۈسكۈنىسى" "(stdout) غا چىقىرىدۇ\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1197,7 +1197,7 @@ msgstr "" " [l]ength, track[n]umber, [y]ear, [c]omment,\n" " copy[r]ight, [e]lapsed\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1206,7 +1206,7 @@ msgstr "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " "- title\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1215,15 +1215,15 @@ msgstr "" " تېخىمۇ كوپ ئۇچۇرلار ئۈچۈن http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting گە قاراڭ\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "كۆڭۈلدىكى" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "ھەئە" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "ياق" @@ -1628,27 +1628,27 @@ msgstr "مەزكۇر ھۆججەت مەۋجۇت. قاپلامسىز؟" msgid "Converter warning" msgstr "ئايلاندۇرغۇچ ئاگاھلاندۇرۇشى" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "كودلىغۇچ تاللاڭ" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "ئايلاندۇرغۇچ خاتالىقى" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "ئايلاندۇرۇۋاتىدۇ…" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "قىسقۇچ تاللاش…" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "كودلىغۇچ ئالدىن تەڭشىشىنى ساقلاش مەغلۇپ بولدى" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1656,51 +1656,51 @@ msgstr "" "ئالدىن تەڭشەش قىسقۇچىنىڭ ئىمتىيازلىرىنى تەكشۈرۈڭ، باشقا ماۋزۇ تاللاڭ ياكى " "دىسكىنى ئازراق بىكارلاڭ" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "ئوخشاش ئاتلىق ئالدىن تەڭشەش مەۋجۇت. باشقا بىرنى تاللاڭ." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "خاتالىق" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "يېڭى كودلىغۇچ قوشۇش" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "كودلىغۇچ تەھرىرلەش" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "ئالدىن تەڭشەشنى چىقىرىۋېتىش" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "بۇ مەشغۇلاتتا تاللانغان ئالدىن تەڭشەش ئۆچۈرۈلىدۇ. راستلا ئۆچۈرەمسىز؟" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "كودلىغۇچ" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "يېڭى قىستۇرمىنى DSP زەنجىرىگە قوشۇش" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "DSP ئالدىن تەڭشىشىنى ساقلاش مەغلۇپ بولدى" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "يېڭى DSP ئالدىن تەڭشىشى" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "DSP ئالدىن تەڭشىشىنى تەھرىرلەش" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "DSP ئالدىن تەڭشەشلىرى" diff --git a/po/uk.po b/po/uk.po index b53f4425..d8326038 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: deadbeef\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2011-11-23 18:50+0200\n" "Last-Translator: Y P \n" "Language-Team: UKRAINIAN \n" @@ -59,8 +59,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Допомога" @@ -176,11 +176,11 @@ msgstr "%d дні %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Зупинено | %d треків | %s повна тривалість програвання" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Моно" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Стерео" @@ -291,7 +291,7 @@ msgstr "Інвертувати виділення" msgid "Selection" msgstr "Вибір" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -316,7 +316,7 @@ msgstr "Сортувати за" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -335,7 +335,7 @@ msgstr "Альбом" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Виконавець" @@ -351,7 +351,7 @@ msgid "Random" msgstr "Випадково" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Користувацьке" @@ -518,7 +518,7 @@ msgstr "З_акрити" msgid "Metadata" msgstr "Метадані" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Властивості" @@ -886,7 +886,7 @@ msgid "Select DSP Plugin" msgstr "Вибрати додаток DSP" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "Додаток" @@ -965,47 +965,47 @@ msgstr "" "(Цей діалог можна виключити в налаштуваннях плагіна GTKUI)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Попередження" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "Додати до черги програвання" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "Вилучити з черги програвання" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "Перезавантажити метадані" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Вилучити з диску" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Додати колонку" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Редагувати колонку" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Вилучити колонку" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Групувати по" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Нічого" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Виконавець/Дата/Альбом" @@ -1059,97 +1059,97 @@ msgid "Really close the window?" msgstr "Дійсно закрити вікно?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[Різні значення] " -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Клавіша" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Значення" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "Записую мітки..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "Назва:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "Назви полів не повинні починатися з : або _" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "Неможливо додати поле" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "Поле з такою назвою вже існує, введіть іншу назву." -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "Додати поле" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "Вилучити поле" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Використання: deadbeef [опції] [файл(и)]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "Опції:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr "" " --help або -h Показати цю допомогу (це повідомлення) і вийти\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit Вийти з програвача\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version Показати інформацію про версію і вийти\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play Почати програвання\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop Зупинити програвання\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause Призупинити програвання\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause перемикання паузи\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" @@ -1157,38 +1157,38 @@ msgstr "" " --play-pause Почати програвання якщо зупинено, включити паузу в " "протилежному випадку\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next Наступна пісня в списку програвання\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Попередня пісня в списку програвання\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random Випадкова пісня в списку програвання\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Додати файл(и) до існуючого списку програвання\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Показати форматовану назву треку до виводу\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1199,7 +1199,7 @@ msgstr "" " [l]тривалість, [n]номер треку, [y]рік, [c]коментар,\n" " [r]копірайт, [e]час що пройшов\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1208,7 +1208,7 @@ msgstr "" " наприклад: --nowplaying \"%%a - %%t\" повинно показати " "\"виконавець - назва\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1217,15 +1217,15 @@ msgstr "" " для більшої інформації дивитися http://sourceforge.net/" "apps/mediawiki/deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Типово" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Так" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Ні" @@ -1632,27 +1632,27 @@ msgstr "Файл вже існує. Перезаписати?" msgid "Converter warning" msgstr "Попередження конвертора" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "Будь ласка, виберіть інший енкодер" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "Помилка конвертора" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "Конвертування..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "Вибрати теку..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "Не можна зберегти типові параметри енкодера" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" @@ -1660,53 +1660,53 @@ msgstr "" "Перевірте типові права доступу теки, спробуйте вибрати іншу назву, або " "звільніть трохи дискового простору" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" "Типові параметри з тою самою назвою вже існують. Спробуйте вибрати іншу " "назву." -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "Помилка" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "Додати новий енкодер" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "Редагувати енкодер" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "Вилучити типові значення" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "Ця дія вилучить вибрані типові значення. Ви впевнені?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "Енкодери" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "Додати додаток до ланцюжка DSP" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "Не можу зберегти типові значення DSP" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "Нові типові значення DSP" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "Редагувати типові значення DSP" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "Типові значення DSP" diff --git a/po/vi.po b/po/vi.po index 895af919..b1569fa8 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0xDeadBeef\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-07-18 16:14+0200\n" "Last-Translator: Duy Hung \n" "Language-Team: English (United Kingdom) \n" @@ -59,8 +59,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "Trợ giúp" @@ -176,11 +176,11 @@ msgstr "%d ngày %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "Dừng phát | %d bài | Tất cả %s" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "Mono" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "Stereo" @@ -289,7 +289,7 @@ msgstr "Đảo lựa chọn" msgid "Selection" msgstr "Lựa chọn" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -314,7 +314,7 @@ msgstr "Sắp Xếp Theo" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -333,7 +333,7 @@ msgstr "Album" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "Nghệ sĩ" @@ -349,7 +349,7 @@ msgid "Random" msgstr "Ngẫu nhiên" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "Tùy chọn" @@ -516,7 +516,7 @@ msgstr "Đó_ng" msgid "Metadata" msgstr "Metadata" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "Thuộc tính" @@ -894,7 +894,7 @@ msgid "Select DSP Plugin" msgstr "Lựa chọn" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 #, fuzzy msgid "Plugin" @@ -986,50 +986,50 @@ msgstr "" "(Hộp thoại này có thể được tắt trong những thiết lập GTKUI plugin)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "Cảnh báo" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 #, fuzzy msgid "Add to playback queue" msgstr "Thêm vào hàng đợi playback" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 #, fuzzy msgid "Remove from playback queue" msgstr "Xóa khỏi hàng đợi playback" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 #, fuzzy msgid "Reload metadata" msgstr "Reload metadata" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "Xóa khỏi đĩa" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "Thêm cột" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "Sửa cột" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "Xóa cột" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "Nhóm bởi" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "Không" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "Nghệ sĩ/Ngày/Album" @@ -1083,135 +1083,135 @@ msgid "Really close the window?" msgstr "Bạn thật sự muốn đóng cửa sổ này?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "" -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "Phím tắt" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "Giá trị" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "" -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 #, fuzzy msgid "Add field" msgstr "Thêm tập tin" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 #, fuzzy msgid "Remove field" msgstr "Xóa" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "Usage: deadbeef [options] [file(s)]\n" -#: ../main.c:85 +#: ../main.c:90 #, fuzzy, c-format msgid "Options:\n" msgstr "Options:\n" -#: ../main.c:86 +#: ../main.c:91 #, fuzzy, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help or -h Print help (this message) and exit\n" -#: ../main.c:87 +#: ../main.c:92 #, fuzzy, c-format msgid " --quit Quit player\n" msgstr " --quit Quit player\n" -#: ../main.c:88 +#: ../main.c:93 #, fuzzy, c-format msgid " --version Print version info and exit\n" msgstr " --version Print version info and exit\n" -#: ../main.c:89 +#: ../main.c:94 #, fuzzy, c-format msgid " --play Start playback\n" msgstr " --play Start playback\n" -#: ../main.c:90 +#: ../main.c:95 #, fuzzy, c-format msgid " --stop Stop playback\n" msgstr " --stop Stop playback\n" -#: ../main.c:91 +#: ../main.c:96 #, fuzzy, c-format msgid " --pause Pause playback\n" msgstr " --pause Pause playback\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr "" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr "" -#: ../main.c:94 +#: ../main.c:99 #, fuzzy, c-format msgid " --next Next song in playlist\n" msgstr " --next Next song in playlist\n" -#: ../main.c:95 +#: ../main.c:100 #, fuzzy, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev Previous song in playlist\n" -#: ../main.c:96 +#: ../main.c:101 #, fuzzy, c-format msgid " --random Random song in playlist\n" msgstr " --random Random song in playlist\n" -#: ../main.c:97 +#: ../main.c:102 #, fuzzy, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue Append file(s) to existing playlist\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, fuzzy, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT Print formatted track name to stdout\n" -#: ../main.c:100 +#: ../main.c:105 #, fuzzy, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1222,7 +1222,7 @@ msgstr "" " [l]ength, track[n]umber, [y]ear, [c]omment,\n" " copy[r]ight, [e]lapsed\n" -#: ../main.c:103 +#: ../main.c:108 #, fuzzy, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1231,22 +1231,22 @@ msgstr "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " "- title\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" "mediawiki/deadbeef/index.php?title=Title_Formatting\n" msgstr "" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "Mặc định" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "Có" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "Không" @@ -1659,82 +1659,82 @@ msgstr "" msgid "Converter warning" msgstr "" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "" -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 #, fuzzy msgid "Select folder..." msgstr "Chọn tất cả" -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 #, fuzzy msgid "Edit encoder" msgstr "Sửa cột" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 #, fuzzy msgid "Remove preset" msgstr "Save Preset" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 #, fuzzy msgid "New DSP Preset" msgstr "Save Preset" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 #, fuzzy msgid "Edit DSP Preset" msgstr "Save Preset" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 #, fuzzy msgid "DSP Presets" msgstr "Save Preset" diff --git a/po/zh_CN.po b/po/zh_CN.po index 6f44b194..576d1b9c 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2011-11-24 05:01+0200\n" "Last-Translator: Yinghua_Wang \n" "Language-Team: Chinese (simplified) \n" @@ -55,8 +55,8 @@ msgid "help.txt" msgstr "帮助.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "帮助" @@ -172,11 +172,11 @@ msgstr "%d 天 %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "已停止 | 音轨数 %d | 播放总时长 %s" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "单声道" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "立体声" @@ -285,7 +285,7 @@ msgstr "反转选择" msgid "Selection" msgstr "选择" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -310,7 +310,7 @@ msgstr "排序依据" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -329,7 +329,7 @@ msgstr "专辑" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "艺人" @@ -345,7 +345,7 @@ msgid "Random" msgstr "随机" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "自定义" @@ -512,7 +512,7 @@ msgstr "关闭(_C)" msgid "Metadata" msgstr "元数据" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "属性" @@ -877,7 +877,7 @@ msgid "Select DSP Plugin" msgstr "选择 DSP 插件" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "插件" @@ -956,47 +956,47 @@ msgstr "" "(可以在 GTKUI 插件设置中禁用此对话框)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "警告" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "添加到播放列表" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "从播放队列中移除" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "重新载入元数据" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "从磁盘中删除" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "添加列" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "编辑列" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "移除列" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "分组依据" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "无" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "艺人/日期/专辑" @@ -1050,133 +1050,133 @@ msgid "Really close the window?" msgstr "真的关闭该窗口吗?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[多个值] " -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "键" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "值" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "正在写入标签..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "名称:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "字段名称不能以 : 或 _ 开头" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "无法添加字段" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "同名的字段已经存在,请尝试其他名称。" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "添加字段" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "移除字段" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "用法:deadbeef [选项] [文件]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "选项:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help 或 -h 打印帮助(这条消息)并退出\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit 退出播放器\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version 打印版本信息并退出\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play 开始播放\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop 停止播放\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause 暂停播放\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause 切换暂停状态\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr " --play-pause 若停止则开始播放,否则切换暂停状态\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next 播放列表中的下一首歌曲\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev 播放列表中的上一首歌曲\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random 播放列表中的任一首歌曲\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue 向现有的播放列表中追加文件\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT 向标准输出打印格式化的音轨名称\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1187,7 +1187,7 @@ msgstr "" " [l]时长, [n]音轨号, [y]年代, [c]注释,\n" " [r]版权, [e]已播放时间\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1195,7 +1195,7 @@ msgid "" msgstr "" " 例:--nowplaying \"%%a - %%t\" 将打印“艺人 - 标题”\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1204,15 +1204,15 @@ msgstr "" " 更多信息请参阅 http://sourceforge.net/apps/mediawiki/" "deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "默认" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "是" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "否" @@ -1617,77 +1617,77 @@ msgstr "文件已存在。覆盖吗?" msgid "Converter warning" msgstr "转换器警告" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "请选择编码器" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "转换器错误" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "正在转换..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "选择文件夹..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "保存编码器预设置失败" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "请检查预设置文件夹权限,选择其他标题或清理出一些磁盘空间" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "同名的预设置已经存在。请另选一个标题。" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "错误" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "添加新编码器" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "编辑编码器" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "移除预设置" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "此操作将删除所选的预设置。您确定吗?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "编码器" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "向 DSP 链上添加插件" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "保存 DSP 预设置失败" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "新建 DSP 预设置" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "编辑 DSP 预设置" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "DSP 预设置" diff --git a/po/zh_TW.po b/po/zh_TW.po index 1eabdc4f..7e9491c8 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-10 20:26+0200\n" +"POT-Creation-Date: 2012-10-15 21:27+0200\n" "PO-Revision-Date: 2012-04-16 06:39+0200\n" "Last-Translator: Walter \n" "Language-Team: zh_TW \n" @@ -57,8 +57,8 @@ msgid "help.txt" msgstr "help.txt" #: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1362 -#: ../plugins/converter/convgui.c:1370 +#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 +#: ../plugins/converter/convgui.c:1384 msgid "Help" msgstr "說明" @@ -174,11 +174,11 @@ msgstr "%d 天 %d:%02d:%02d" msgid "Stopped | %d tracks | %s total playtime" msgstr "停止 | 第 %d 軌 | 總播放時間:%s" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Mono" msgstr "單聲道" -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3036 +#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 msgid "Stereo" msgstr "立體聲" @@ -288,7 +288,7 @@ msgstr "反向選取" msgid "Selection" msgstr "選取" -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:480 +#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 #: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 #: ../plugins/converter/interface.c:628 #: ../plugins/converter/converter.glade.h:46 @@ -313,7 +313,7 @@ msgstr "排序根據:" #: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 #: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 #: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:834 ../plugins/converter/convgui.c:1333 +#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 #: ../plugins/converter/interface.c:605 #: ../plugins/converter/converter.glade.h:43 #: ../plugins/shellexecui/shellexecui.c:327 @@ -332,7 +332,7 @@ msgstr "專輯" #. Track properties dialog #: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1028 ../plugins/gtkui/deadbeef.glade.h:23 +#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 #: ../translation/extra.c:69 msgid "Artist" msgstr "藝人" @@ -348,7 +348,7 @@ msgid "Random" msgstr "隨機" #: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1032 ../plugins/gtkui/deadbeef.glade.h:26 +#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 msgid "Custom" msgstr "自訂" @@ -515,7 +515,7 @@ msgstr "關閉(_C)" msgid "Metadata" msgstr "元數據" -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:630 +#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 #: ../plugins/gtkui/deadbeef.glade.h:67 msgid "Properties" msgstr "屬性" @@ -880,7 +880,7 @@ msgid "Select DSP Plugin" msgstr "選取 DSP 外掛程式" #: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1135 ../plugins/converter/interface.c:749 +#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 #: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 msgid "Plugin" msgstr "外掛程式" @@ -959,47 +959,47 @@ msgstr "" "(本對話框可以 GTKUI 外掛程式設定關閉)" #: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:803 ../plugins/converter/convgui.c:1258 +#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 msgid "Warning" msgstr "警告" -#: ../plugins/gtkui/plcommon.c:456 +#: ../plugins/gtkui/plcommon.c:488 msgid "Add to playback queue" msgstr "加入至播放佇列" -#: ../plugins/gtkui/plcommon.c:461 +#: ../plugins/gtkui/plcommon.c:493 msgid "Remove from playback queue" msgstr "自播放佇列移除" -#: ../plugins/gtkui/plcommon.c:469 +#: ../plugins/gtkui/plcommon.c:501 msgid "Reload metadata" msgstr "重讀元數據" -#: ../plugins/gtkui/plcommon.c:488 +#: ../plugins/gtkui/plcommon.c:520 msgid "Remove from disk" msgstr "自磁碟移除" -#: ../plugins/gtkui/plcommon.c:869 ../plugins/gtkui/plcommon.c:995 +#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 msgid "Add column" msgstr "加入欄位" -#: ../plugins/gtkui/plcommon.c:899 ../plugins/gtkui/plcommon.c:999 +#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 msgid "Edit column" msgstr "編輯欄位" -#: ../plugins/gtkui/plcommon.c:1003 +#: ../plugins/gtkui/plcommon.c:1035 msgid "Remove column" msgstr "移除欄位" -#: ../plugins/gtkui/plcommon.c:1013 +#: ../plugins/gtkui/plcommon.c:1045 msgid "Group by" msgstr "分組根據:" -#: ../plugins/gtkui/plcommon.c:1020 +#: ../plugins/gtkui/plcommon.c:1052 msgid "None" msgstr "無" -#: ../plugins/gtkui/plcommon.c:1024 +#: ../plugins/gtkui/plcommon.c:1056 msgid "Artist/Date/Album" msgstr "藝人/日期/專輯" @@ -1053,133 +1053,133 @@ msgid "Really close the window?" msgstr "真要關閉視窗?" #. get value to edit -#: ../plugins/gtkui/trkproperties.c:272 +#: ../plugins/gtkui/trkproperties.c:279 msgid "[Multiple values] " msgstr "[多重值] " -#: ../plugins/gtkui/trkproperties.c:425 ../plugins/gtkui/trkproperties.c:437 +#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 msgid "Key" msgstr "按鍵" -#: ../plugins/gtkui/trkproperties.c:426 ../plugins/gtkui/trkproperties.c:438 +#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 msgid "Value" msgstr "值" -#: ../plugins/gtkui/trkproperties.c:623 +#: ../plugins/gtkui/trkproperties.c:630 msgid "Writing tags..." msgstr "正在寫入標記..." -#: ../plugins/gtkui/trkproperties.c:651 +#: ../plugins/gtkui/trkproperties.c:659 msgid "Field name" msgstr "" -#: ../plugins/gtkui/trkproperties.c:654 +#: ../plugins/gtkui/trkproperties.c:662 msgid "Name:" msgstr "名稱:" -#: ../plugins/gtkui/trkproperties.c:666 +#: ../plugins/gtkui/trkproperties.c:674 msgid "Field names must not start with : or _" msgstr "欄位名稱不能以 : 或 _ 開首" -#: ../plugins/gtkui/trkproperties.c:667 ../plugins/gtkui/trkproperties.c:706 +#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 msgid "Cannot add field" msgstr "無法加入欄位" -#: ../plugins/gtkui/trkproperties.c:705 +#: ../plugins/gtkui/trkproperties.c:713 msgid "Field with such name already exists, please try different name." msgstr "已有此名稱欄位,請選別個。" -#: ../plugins/gtkui/trkproperties.c:767 +#: ../plugins/gtkui/trkproperties.c:776 msgid "Add field" msgstr "加入欄位" -#: ../plugins/gtkui/trkproperties.c:770 +#: ../plugins/gtkui/trkproperties.c:779 msgid "Remove field" msgstr "移除欄位" -#: ../main.c:84 +#: ../main.c:89 #, fuzzy, c-format msgid "Usage: deadbeef [options] [--] [file(s)]\n" msgstr "用法: deadbeef [選項] [檔案]\n" -#: ../main.c:85 +#: ../main.c:90 #, c-format msgid "Options:\n" msgstr "選項:\n" -#: ../main.c:86 +#: ../main.c:91 #, c-format msgid " --help or -h Print help (this message) and exit\n" msgstr " --help 或 -h 顯示說明 (本訊息) 並結束\n" -#: ../main.c:87 +#: ../main.c:92 #, c-format msgid " --quit Quit player\n" msgstr " --quit 結束播放器\n" -#: ../main.c:88 +#: ../main.c:93 #, c-format msgid " --version Print version info and exit\n" msgstr " --version 顯示版本資料並結束\n" -#: ../main.c:89 +#: ../main.c:94 #, c-format msgid " --play Start playback\n" msgstr " --play 開始播放\n" -#: ../main.c:90 +#: ../main.c:95 #, c-format msgid " --stop Stop playback\n" msgstr " --stop 停止播放\n" -#: ../main.c:91 +#: ../main.c:96 #, c-format msgid " --pause Pause playback\n" msgstr " --pause 暫停播放\n" -#: ../main.c:92 +#: ../main.c:97 #, c-format msgid " --toggle-pause Toggle pause\n" msgstr " --toggle-pause 切換暫停狀態\n" -#: ../main.c:93 +#: ../main.c:98 #, c-format msgid "" " --play-pause Start playback if stopped, toggle pause otherwise\n" msgstr " --play-pause 如停止則開始播放,否則切換暫停狀態\n" -#: ../main.c:94 +#: ../main.c:99 #, c-format msgid " --next Next song in playlist\n" msgstr " --next 播放清單下一首歌\n" -#: ../main.c:95 +#: ../main.c:100 #, c-format msgid " --prev Previous song in playlist\n" msgstr " --prev 播放清單上一首歌\n" -#: ../main.c:96 +#: ../main.c:101 #, c-format msgid " --random Random song in playlist\n" msgstr " --random 播放清單隨機歌曲\n" -#: ../main.c:97 +#: ../main.c:102 #, c-format msgid " --queue Append file(s) to existing playlist\n" msgstr " --queue 將檔案附加至播放清單\n" -#: ../main.c:98 +#: ../main.c:103 #, c-format msgid "" " --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" msgstr "" -#: ../main.c:99 +#: ../main.c:104 #, c-format msgid " --nowplaying FMT Print formatted track name to stdout\n" msgstr " --nowplaying FMT 將格式化的歌曲名輸出至 stdout\n" -#: ../main.c:100 +#: ../main.c:105 #, c-format msgid "" " FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" @@ -1190,7 +1190,7 @@ msgstr "" " [l]長度, [n]歌曲編號, [y]年份, [c]評語,\n" " [r]版權, [e]已過時間\n" -#: ../main.c:103 +#: ../main.c:108 #, c-format msgid "" " e.g.: --nowplaying \"%%a - %%t\" should print \"artist " @@ -1199,7 +1199,7 @@ msgstr "" " 例如: --nowplaying \"%%a - %%t\" 會顯示 \"藝人 - 歌名" "\"\n" -#: ../main.c:104 +#: ../main.c:109 #, c-format msgid "" " for more info, see http://sourceforge.net/apps/" @@ -1208,15 +1208,15 @@ msgstr "" " 更多資料請見 http://sourceforge.net/apps/mediawiki/" "deadbeef/index.php?title=Title_Formatting\n" -#: ../playlist.c:454 ../playlist.c:2418 +#: ../playlist.c:463 ../playlist.c:2428 msgid "Default" msgstr "預設" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "Yes" msgstr "是" -#: ../playlist.c:3793 +#: ../playlist.c:3814 msgid "No" msgstr "否" @@ -1611,77 +1611,77 @@ msgstr "已有該檔案。是否覆寫?" msgid "Converter warning" msgstr "轉換器警告" -#: ../plugins/converter/convgui.c:271 +#: ../plugins/converter/convgui.c:285 msgid "Please select encoder" msgstr "請選取編碼器" -#: ../plugins/converter/convgui.c:273 +#: ../plugins/converter/convgui.c:287 msgid "Converter error" msgstr "轉換器出錯" -#: ../plugins/converter/convgui.c:297 +#: ../plugins/converter/convgui.c:311 msgid "Converting..." msgstr "正在轉換..." -#: ../plugins/converter/convgui.c:459 +#: ../plugins/converter/convgui.c:473 msgid "Select folder..." msgstr "選取資料夾..." -#: ../plugins/converter/convgui.c:681 +#: ../plugins/converter/convgui.c:695 msgid "Failed to save encoder preset" msgstr "未能儲存編碼器預設值" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "" "Check preset folder permissions, try to pick different title, or free up " "some disk space" msgstr "檢查預設值資料夾權限、嘗試揀選另一個歌名,又或空出一些磁碟空間" -#: ../plugins/converter/convgui.c:683 ../plugins/converter/convgui.c:1157 +#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 msgid "Preset with the same name already exists. Try to pick another title." msgstr "已有同名預設值。請揀選另一個。" -#: ../plugins/converter/convgui.c:684 ../plugins/converter/convgui.c:1158 +#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 msgid "Error" msgstr "錯誤" -#: ../plugins/converter/convgui.c:738 +#: ../plugins/converter/convgui.c:752 msgid "Add new encoder" msgstr "加入新編碼器" -#: ../plugins/converter/convgui.c:768 +#: ../plugins/converter/convgui.c:782 msgid "Edit encoder" msgstr "編輯編碼器" -#: ../plugins/converter/convgui.c:800 ../plugins/converter/convgui.c:1255 +#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 msgid "Remove preset" msgstr "移除預設值" -#: ../plugins/converter/convgui.c:802 ../plugins/converter/convgui.c:1257 +#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 msgid "This action will delete the selected preset. Are you sure?" msgstr "此舉會刪除所選預設值。確定嗎?" -#: ../plugins/converter/convgui.c:826 +#: ../plugins/converter/convgui.c:840 msgid "Encoders" msgstr "編碼器" -#: ../plugins/converter/convgui.c:897 ../plugins/gtkui/dspconfig.c:186 +#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 msgid "Add plugin to DSP chain" msgstr "將外掛程式加入至 DSP 連鎖" -#: ../plugins/converter/convgui.c:1156 +#: ../plugins/converter/convgui.c:1170 msgid "Failed to save DSP preset" msgstr "未能儲存 DSP 預設值" -#: ../plugins/converter/convgui.c:1220 +#: ../plugins/converter/convgui.c:1234 msgid "New DSP Preset" msgstr "新增 DSP 預設值" -#: ../plugins/converter/convgui.c:1305 +#: ../plugins/converter/convgui.c:1319 msgid "Edit DSP Preset" msgstr "編輯 DSP 預設值" -#: ../plugins/converter/convgui.c:1325 +#: ../plugins/converter/convgui.c:1339 msgid "DSP Presets" msgstr "DSP 預設值" -- cgit v1.2.3 From 262d240ce3f1ea2a7e18f1d9472338b530ce95f1 Mon Sep 17 00:00:00 2001 From: waker Date: Mon, 15 Oct 2012 21:28:48 +0200 Subject: changed license to ZLIB on all core files --- common.h | 33 +++++++++++++++++---------- conf.c | 31 +++++++++++++++---------- conf.h | 33 +++++++++++++++++---------- dsppreset.c | 40 ++++++++++++++++++++------------- dsppreset.h | 40 ++++++++++++++++++++------------- junklib.c | 5 ++++- main.c | 33 +++++++++++++++++---------- messagepump.c | 33 +++++++++++++++++---------- messagepump.h | 33 +++++++++++++++++---------- metacache.c | 40 ++++++++++++++++++++------------- metacache.h | 40 ++++++++++++++++++++------------- optmath.h | 65 ++++++++++++++++++++++++++++++++++++----------------- playlist.c | 33 +++++++++++++++++---------- playlist.h | 34 ++++++++++++++++++---------- plmeta.c | 40 ++++++++++++++++++++------------- pltmeta.c | 38 ++++++++++++++++++------------- pltmeta.h | 40 ++++++++++++++++++++------------- plugins.c | 40 ++++++++++++++++++++------------- plugins.h | 40 ++++++++++++++++++++------------- premix.c | 40 ++++++++++++++++++++------------- premix.h | 40 ++++++++++++++++++++------------- replaygain.c | 39 +++++++++++++++++++------------- replaygain.h | 40 ++++++++++++++++++++------------- ringbuf.c | 38 ++++++++++++++++++------------- ringbuf.h | 40 ++++++++++++++++++++------------- streamer.c | 33 +++++++++++++++++---------- streamer.h | 33 +++++++++++++++++---------- threading.h | 33 +++++++++++++++++---------- threading_pthread.c | 33 +++++++++++++++++---------- utf8.c | 37 +++++++++++++++++++----------- utf8.h | 38 ++++++++++++++++++++----------- vfs.c | 40 ++++++++++++++++++++------------- vfs.h | 40 ++++++++++++++++++++------------- vfs_stdio.c | 40 ++++++++++++++++++++------------- volume.c | 38 ++++++++++++++++++------------- volume.h | 40 ++++++++++++++++++++------------- 36 files changed, 825 insertions(+), 508 deletions(-) diff --git a/common.h b/common.h index 0b8fe998..29d44515 100644 --- a/common.h +++ b/common.h @@ -1,19 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + utility routines and global variables - 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. + Copyright (C) 2009-2012 Alexey Yakovenko - You should have received a copy of the GNU General Public License - along with this program. If not, see . + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #ifndef __COMMON_H #define __COMMON_H diff --git a/conf.c b/conf.c index 9b2a75da..737dabef 100644 --- a/conf.c +++ b/conf.c @@ -1,19 +1,26 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + deadbeef config file manager + http://deadbeef.sourceforge.net - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + Copyright (C) 2009-2012 Alexey Yakovenko - 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. + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. - You should have received a copy of the GNU General Public License - along with this program. If not, see . + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #ifdef HAVE_CONFIG_H # include "config.h" diff --git a/conf.h b/conf.h index d767f691..79d156cb 100644 --- a/conf.h +++ b/conf.h @@ -1,19 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + config file manager - 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. + Copyright (C) 2009-2012 Alexey Yakovenko - You should have received a copy of the GNU General Public License - along with this program. If not, see . + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #ifndef __CONF_H #define __CONF_H diff --git a/dsppreset.c b/dsppreset.c index 821f97ea..0cd782f6 100644 --- a/dsppreset.c +++ b/dsppreset.c @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net + + dsp preset manager + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #include #include diff --git a/dsppreset.h b/dsppreset.h index 343dcf37..736ea4e7 100644 --- a/dsppreset.h +++ b/dsppreset.h @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net + + dsp preset manager + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #ifndef __DSPPRESET_H #define __DSPPRESET_H diff --git a/junklib.c b/junklib.c index b3c72034..4e55e749 100644 --- a/junklib.c +++ b/junklib.c @@ -1,6 +1,9 @@ -/* junklib -- library for reading tags from various audio files for deadbeef player +/* + This file is part of Deadbeef Player source code http://deadbeef.sourceforge.net + library for reading tags from various audio files + Copyright (C) 2009-2012 Alexey Yakovenko This software is provided 'as-is', without any express or implied diff --git a/main.c b/main.c index 51ef1914..5bf653cd 100644 --- a/main.c +++ b/main.c @@ -1,19 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + application launcher, compatible with GNU/Linux and most other POSIX systems - 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. + Copyright (C) 2009-2012 Alexey Yakovenko - You should have received a copy of the GNU General Public License - along with this program. If not, see . + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #ifdef HAVE_CONFIG_H # include diff --git a/messagepump.c b/messagepump.c index c7290f88..b28ab5d5 100644 --- a/messagepump.c +++ b/messagepump.c @@ -1,19 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + message pump implementation - 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. + Copyright (C) 2009-2012 Alexey Yakovenko - You should have received a copy of the GNU General Public License - along with this program. If not, see . + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #include #include diff --git a/messagepump.h b/messagepump.h index 8a7abeee..622645cd 100644 --- a/messagepump.h +++ b/messagepump.h @@ -1,19 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + message pump implementation - 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. + Copyright (C) 2009-2012 Alexey Yakovenko - You should have received a copy of the GNU General Public License - along with this program. If not, see . + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #ifndef __MESSAGEPUMP_H #define __MESSAGEPUMP_H diff --git a/metacache.c b/metacache.c index e5ba608a..6c4e2d56 100644 --- a/metacache.c +++ b/metacache.c @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net + + metadata string cache/database + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #include #include diff --git a/metacache.h b/metacache.h index 79432ddd..14998124 100644 --- a/metacache.h +++ b/metacache.h @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net + + metadata string cache/database + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #ifndef __METACACHE_H #define __METACACHE_H diff --git a/optmath.h b/optmath.h index 358629ca..1dcafd48 100644 --- a/optmath.h +++ b/optmath.h @@ -1,21 +1,48 @@ -/* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -*/ +// most of the code below was taken from libvorbis/vorbis/lib/os.h +// under the conditions below +/******************************************************************** + * * + * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * + * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * + * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * + * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * + * * + * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2009 * + * by the Xiph.Org Foundation http://www.xiph.org/ * + * * + ******************************************************************** + +contents of the libvorbis COPYING: + +Copyright (c) 2002-2008 Xiph.org Foundation + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +- Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +- Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +- Neither the name of the Xiph.org Foundation nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION +OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ #ifndef __OPTMATH_H #define __OPTMATH_H @@ -24,8 +51,6 @@ #ifdef __SSE2__ // that comes from -msse2 #define __FORCE_SSE2__ #endif -// some maths -// taken from vorbis/lib/os.h, (C) 1994-2007 Xiph.Org Foundation http://www.xiph.org/ /* Special i386 GCC implementation */ #if defined(__i386__) && defined(__GNUC__) && !defined(__BEOS__) && !defined(__FORCE_SSE2__) diff --git a/playlist.c b/playlist.c index fc000992..3ad352dc 100644 --- a/playlist.c +++ b/playlist.c @@ -1,19 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + playlist management - 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. + Copyright (C) 2009-2012 Alexey Yakovenko - You should have received a copy of the GNU General Public License - along with this program. If not, see . + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #ifdef HAVE_CONFIG_H # include "config.h" diff --git a/playlist.h b/playlist.h index 06966bde..8fe90c25 100644 --- a/playlist.h +++ b/playlist.h @@ -1,20 +1,30 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + playlist management - 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. + Copyright (C) 2009-2012 Alexey Yakovenko - You should have received a copy of the GNU General Public License - along with this program. If not, see . + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ + #ifndef __PLAYLIST_H #define __PLAYLIST_H diff --git a/plmeta.c b/plmeta.c index 9e00d1f9..d14ed6d0 100644 --- a/plmeta.c +++ b/plmeta.c @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net + + track metadata management + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #include diff --git a/pltmeta.c b/pltmeta.c index fac97b37..e60fd927 100644 --- a/pltmeta.c +++ b/pltmeta.c @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + playlist metadata management + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #include diff --git a/pltmeta.h b/pltmeta.h index e34a2a56..d23a83f4 100644 --- a/pltmeta.h +++ b/pltmeta.h @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net + + playlist metadata management + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #ifndef __PLMETA_H #define __PLMETA_H diff --git a/plugins.c b/plugins.c index 1cdb5111..b4df5fa6 100644 --- a/plugins.c +++ b/plugins.c @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net + + plugin management + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #include #include diff --git a/plugins.h b/plugins.h index eb979c61..1fdb6b82 100644 --- a/plugins.h +++ b/plugins.h @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net + + plugin management + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #ifndef __PLUGINS_H #define __PLUGINS_H diff --git a/premix.c b/premix.c index e012df3f..6dee9117 100644 --- a/premix.c +++ b/premix.c @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net + + routines for converting between wave formats and channel configurations + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #include diff --git a/premix.h b/premix.h index 7d0d1422..ee0f2c37 100644 --- a/premix.h +++ b/premix.h @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net + + routines for converting between wave formats and channel configurations + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #ifndef __PREMIX_H diff --git a/replaygain.c b/replaygain.c index ba8d5e37..58240a68 100644 --- a/replaygain.c +++ b/replaygain.c @@ -1,21 +1,28 @@ - /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net + + replaygain support + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + Alexey Yakovenko waker@users.sourceforge.net */ #include "playlist.h" #include "volume.h" diff --git a/replaygain.h b/replaygain.h index 00ab3493..4f868be5 100644 --- a/replaygain.h +++ b/replaygain.h @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net + + replaygain support + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #ifndef __REPLAYGAIN_H #define __REPLAYGAIN_H diff --git a/ringbuf.c b/ringbuf.c index b06da6c0..f5f1125b 100644 --- a/ringbuf.c +++ b/ringbuf.c @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + basic ring buffer implementation + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #include diff --git a/ringbuf.h b/ringbuf.h index 2c349d13..dfb81e4c 100644 --- a/ringbuf.h +++ b/ringbuf.h @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net + + basic ring buffer implementation + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #ifndef __RINGBUF_H #define __RINGBUF_H diff --git a/streamer.c b/streamer.c index 789770fc..c492b1c8 100644 --- a/streamer.c +++ b/streamer.c @@ -1,19 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + streamer implementation - 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. + Copyright (C) 2009-2012 Alexey Yakovenko - You should have received a copy of the GNU General Public License - along with this program. If not, see . + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #include #include diff --git a/streamer.h b/streamer.h index 53c9c870..28b47cc3 100644 --- a/streamer.h +++ b/streamer.h @@ -1,19 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + streamer implementation - 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. + Copyright (C) 2009-2012 Alexey Yakovenko - You should have received a copy of the GNU General Public License - along with this program. If not, see . + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #ifndef __STREAMER_H #define __STREAMER_H diff --git a/threading.h b/threading.h index 00dd6e0c..a1cbc899 100644 --- a/threading.h +++ b/threading.h @@ -1,19 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + threading functions wrapper - 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. + Copyright (C) 2009-2012 Alexey Yakovenko - You should have received a copy of the GNU General Public License - along with this program. If not, see . + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #ifndef __THREADING_H #define __THREADING_H diff --git a/threading_pthread.c b/threading_pthread.c index d5fcc9e7..f10da9d0 100644 --- a/threading_pthread.c +++ b/threading_pthread.c @@ -1,19 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + pthread wrapper - 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. + Copyright (C) 2009-2012 Alexey Yakovenko - You should have received a copy of the GNU General Public License - along with this program. If not, see . + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #include #include diff --git a/utf8.c b/utf8.c index bcbfa4a1..b4e6080a 100644 --- a/utf8.c +++ b/utf8.c @@ -1,21 +1,32 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + utf8 string manipulation - 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. + Copyright (C) 2009-2012 Alexey Yakovenko - You should have received a copy of the GNU General Public License - along with this program. If not, see . + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. - utf8 code is based on Basic UTF-8 manipulation routines + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net +*/ + +/* + based on Basic UTF-8 manipulation routines by Jeff Bezanson placed in the public domain Fall 2005 */ diff --git a/utf8.h b/utf8.h index fab4ac1e..ce431f56 100644 --- a/utf8.h +++ b/utf8.h @@ -1,24 +1,36 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + utf8 string manipulation - 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. + Copyright (C) 2009-2012 Alexey Yakovenko - You should have received a copy of the GNU General Public License - along with this program. If not, see . + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. - utf8 code is based on Basic UTF-8 manipulation routines + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net +*/ + +/* + based on Basic UTF-8 manipulation routines by Jeff Bezanson placed in the public domain Fall 2005 */ + #ifndef __UTF8_H #define __UTF8_H diff --git a/vfs.c b/vfs.c index 7c8a39f2..544a7cbd 100644 --- a/vfs.c +++ b/vfs.c @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net + + high-level vfs access interface + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #include #include diff --git a/vfs.h b/vfs.h index 8c0981c9..7f65fefa 100644 --- a/vfs.h +++ b/vfs.h @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net + + high-level vfs access interface + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #ifndef __VFS_H diff --git a/vfs_stdio.c b/vfs_stdio.c index 46ea47f8..64576193 100644 --- a/vfs_stdio.c +++ b/vfs_stdio.c @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net + + standard file vfs implementation + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #include "deadbeef.h" #include diff --git a/volume.c b/volume.c index acd84cf3..c4db8545 100644 --- a/volume.c +++ b/volume.c @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + pcm volume manipulation routines + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #include #include diff --git a/volume.h b/volume.h index 7670f5fc..fe6b03c5 100644 --- a/volume.h +++ b/volume.h @@ -1,20 +1,28 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2012 Alexey Yakovenko - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + This file is part of Deadbeef Player source code + http://deadbeef.sourceforge.net + + pcm volume manipulation routines + + Copyright (C) 2009-2012 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Alexey Yakovenko waker@users.sourceforge.net */ #ifndef __VOLUME_H #define __VOLUME_H -- cgit v1.2.3 From ce69332665ceb57a40822002daa2ef1ae7eaa496 Mon Sep 17 00:00:00 2001 From: waker Date: Mon, 15 Oct 2012 21:57:33 +0200 Subject: changelog for 0.5.6 --- ChangeLog | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/ChangeLog b/ChangeLog index 4fcc1cf9..151642c7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,33 @@ +version 0.5.6 + wavpack: fixed reload_metadata not clearing old data + sndfile: fixed big/little endian byte swap buffer overrun + gme: fixed loopcount bugs + alsa: fixed race condition bug leading to freezes + alac: added new ALAC plugin with proper gapless playback support, audiobook chapters, and other goods + aac: lots of bugfixes and improvements, as usual, including half/double duration bugfix, and custom metadata fields support, and audiobook chapters + cue and m3u parsers can now skip utf8 BOM + automatically fill new/edited column title from the selected column type + removed the frame widget around playlist to make scroll bar more accessible in maximized windows + restored old GDK drawing in GTK2 plugin, because cairo produces weird shit on older GTK2 versions -- that means, tabs and playlist now look correct again with gtk2.20 and below + gtk3 compiling is now enabled by default, if gtk3 sdk is installed + --enable/disable-gtkui configure option is removed, now there are only --enable/disable-gtk2 and --enable/disable-gtk3 + added Menu key support + always auto-name playlist by folder name when empty, even if the playlist title is non-default + insert/delete key support in track properties (Ruslan Khusnullin) + fixed Enter and Esc keys in track properties + fixed playlist column auto-resizing in maximized window + added user-agent configuration for last.fm, vfs_curl, etc + added cp936 charset detection support. it breaks cp1251 detection, so it's done as an option -- look in the preferences (Joey Zheng) + show blank instead of "?" when a metadata field is absent + fixed local album cover files search order, it's alphabetical now + alsa: added a hack/work-around to prevent releasing sound device when a user switches between tracks + m3u: improved handling of relative file pathes + converter: fixed handling "/" in filenames; fixed tag-writing to files which have special characters + fixed resuming last session in shuffle albums mode + fixed several libmms freeze/hang/crash bugs + vorbis: update waveformat dynamically, so now it's possible to listen the radious which switch between mono and stereo dynamically + mp3: fixed samplerate shown in the track properties + version 0.5.5 fixed converter GUI plugin crash if the converter plugin not found fixed compiling on FreeBSD -- cgit v1.2.3 From 4eff4b79711b8bece921eba99538323c95ff78c5 Mon Sep 17 00:00:00 2001 From: waker Date: Mon, 15 Oct 2012 22:14:51 +0200 Subject: 0.5.6-rc1 --- PORTABLE_VERSION | 2 +- configure.ac | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/PORTABLE_VERSION b/PORTABLE_VERSION index da86bf1d..9686a8ef 100644 --- a/PORTABLE_VERSION +++ b/PORTABLE_VERSION @@ -1 +1 @@ -0.5.6-test2 +0.5.6-rc1 diff --git a/configure.ac b/configure.ac index dbb870a9..84194cbd 100644 --- a/configure.ac +++ b/configure.ac @@ -1,10 +1,10 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([deadbeef], [devel]) +AC_INIT([deadbeef], [0.5.6-rc1]) AC_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE([1.11 dist-bzip2]) -dnl AM_SILENT_RULES([yes]) +AM_SILENT_RULES([yes]) AM_MAINTAINER_MODE() AC_USE_SYSTEM_EXTENSIONS -- cgit v1.2.3 From f2595b983e7cb3678504bf79dcf7e20c9568da7f Mon Sep 17 00:00:00 2001 From: waker Date: Mon, 15 Oct 2012 22:51:41 +0200 Subject: fixed alac changelog --- ChangeLog | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 151642c7..b57ae215 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,7 +3,7 @@ version 0.5.6 sndfile: fixed big/little endian byte swap buffer overrun gme: fixed loopcount bugs alsa: fixed race condition bug leading to freezes - alac: added new ALAC plugin with proper gapless playback support, audiobook chapters, and other goods + alac: added new ALAC plugin with proper gapless playback support and other goods aac: lots of bugfixes and improvements, as usual, including half/double duration bugfix, and custom metadata fields support, and audiobook chapters cue and m3u parsers can now skip utf8 BOM automatically fill new/edited column title from the selected column type diff --git a/configure.ac b/configure.ac index 84194cbd..0a14837b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([deadbeef], [0.5.6-rc1]) +AC_INIT([deadbeef], [devel]) AC_CONFIG_HEADER(config.h) -- cgit v1.2.3 From 1c03f44725ad06f12829ea142001bd47a30fc717 Mon Sep 17 00:00:00 2001 From: waker Date: Tue, 16 Oct 2012 20:29:01 +0200 Subject: aac: fixed filehandle leak --- plugins/aac/aac.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/aac/aac.c b/plugins/aac/aac.c index acef86d9..1083f94f 100644 --- a/plugins/aac/aac.c +++ b/plugins/aac/aac.c @@ -1194,10 +1194,12 @@ aac_insert (ddb_playlist_t *plt, DB_playItem_t *after, const char *fname) { } mp4ff_close (mp4); if (i < ntracks) { + deadbeef->fclose (fp); return after; } if (ntracks > 0) { // mp4 container found, but no valid aac tracks in it + deadbeef->fclose (fp); return NULL; } } -- cgit v1.2.3 From 45e1b3ccd5660f65a05fcd9f4b25db092a11228a Mon Sep 17 00:00:00 2001 From: waker Date: Tue, 16 Oct 2012 20:55:43 +0200 Subject: fixed redrawing playlist after files have been added --- playlist.c | 1 + 1 file changed, 1 insertion(+) diff --git a/playlist.c b/playlist.c index 3ad352dc..90b3286d 100644 --- a/playlist.c +++ b/playlist.c @@ -1498,6 +1498,7 @@ pl_add_files_end (void) { } addfiles_playlist = NULL; pl_unlock (); + messagepump_push (DB_EV_PLAYLISTCHANGED, 0, 0, 0); } int -- cgit v1.2.3 From f2b4b35cf168081ecc91ab49b61ff978d175f441 Mon Sep 17 00:00:00 2001 From: waker Date: Tue, 16 Oct 2012 23:20:21 +0200 Subject: 0.5.6-rc2 --- ChangeLog | 2 +- PORTABLE_VERSION | 2 +- configure.ac | 14 +++++++++++--- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index b57ae215..5ec3cc09 100644 --- a/ChangeLog +++ b/ChangeLog @@ -25,7 +25,7 @@ version 0.5.6 converter: fixed handling "/" in filenames; fixed tag-writing to files which have special characters fixed resuming last session in shuffle albums mode fixed several libmms freeze/hang/crash bugs - vorbis: update waveformat dynamically, so now it's possible to listen the radious which switch between mono and stereo dynamically + vorbis: update waveformat dynamically, so now it's possible to listen the radios which switch between mono and stereo dynamically mp3: fixed samplerate shown in the track properties version 0.5.5 diff --git a/PORTABLE_VERSION b/PORTABLE_VERSION index 9686a8ef..8b80fc2e 100644 --- a/PORTABLE_VERSION +++ b/PORTABLE_VERSION @@ -1 +1 @@ -0.5.6-rc1 +0.5.6-rc2 diff --git a/configure.ac b/configure.ac index 0a14837b..d0bd12e2 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([deadbeef], [devel]) +AC_INIT([deadbeef], [0.5.6-rc2]) AC_CONFIG_HEADER(config.h) @@ -176,7 +176,11 @@ fi AC_SUBST(ZIP_LIBS) if test "x$enable_gtk3" == "xyes" ; then - PKG_CHECK_MODULES(GTK3_DEPS, gtk+-3.0 >= 3.0 gthread-2.0 glib-2.0, HAVE_GTK3=yes, HAVE_GTK3=no) + if test "x$enable_staticlink" != "xno" ; then + HAVE_GTK3=yes + else + PKG_CHECK_MODULES(GTK3_DEPS, gtk+-3.0 >= 3.0 gthread-2.0 glib-2.0, HAVE_GTK3=yes, HAVE_GTK3=no) + fi AC_CHECK_LIB([SM], [main], [HAVE_SM=yes;SM_LIBS="-lSM";AC_SUBST(SM_LIBS)]) AC_CHECK_LIB([ICE], [main], [HAVE_ICE=yes;ICE_LIBS="-lICE";AC_SUBST(ICE_LIBS)]) else @@ -184,7 +188,11 @@ else fi if test "x$enable_gtk2" == "xyes" ; then - PKG_CHECK_MODULES(GTK2_DEPS, gtk+-2.0 >= 2.12 gthread-2.0 glib-2.0, HAVE_GTK2=yes, HAVE_GTK2=no) + if test "x$enable_staticlink" != "xno" ; then + HAVE_GTK2=yes + else + PKG_CHECK_MODULES(GTK2_DEPS, gtk+-2.0 >= 2.12 gthread-2.0 glib-2.0, HAVE_GTK2=yes, HAVE_GTK2=no) + fi AC_CHECK_LIB([SM], [main], [HAVE_SM=yes;SM_LIBS="-lSM";AC_SUBST(SM_LIBS)]) AC_CHECK_LIB([ICE], [main], [HAVE_ICE=yes;ICE_LIBS="-lICE";AC_SUBST(ICE_LIBS)]) else -- cgit v1.2.3 From 5c48e32c20267eb92e691ee0dd543dd7b695c655 Mon Sep 17 00:00:00 2001 From: waker Date: Wed, 17 Oct 2012 17:47:42 +0200 Subject: fixed apev2 parser bug which replaces all 0s with \n in binary fields; added workaround for "cover art" fields, apparently some taggers mark them as text --- junklib.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/junklib.c b/junklib.c index 4e55e749..4e749eaf 100644 --- a/junklib.c +++ b/junklib.c @@ -1363,13 +1363,15 @@ junk_apev2_read_full (playItem_t *it, DB_apev2_tag_t *tag_store, DB_FILE *fp) { } value[itemsize] = 0; - // replace 0s with \n - uint8_t *p = value; - while (p < value + itemsize - 1) { - if (*p == 0) { - *p = '\n'; + if ((flags&6) == 0 && strncasecmp (key, "cover art ", 10)) { + // replace 0s with \n + uint8_t *p = value; + while (p < value + itemsize - 1) { + if (*p == 0) { + *p = '\n'; + } + p++; } - p++; } junk_apev2_add_frame (it, tag_store, &tail, itemsize, itemflags, key, value); -- cgit v1.2.3 From a465ab861a2df522d55698a894f20ab6c7b144bd Mon Sep 17 00:00:00 2001 From: waker Date: Wed, 17 Oct 2012 17:48:37 +0200 Subject: gtk3 static-build fix --- configure.ac | 2 +- plugins/gtkui/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index d0bd12e2..884b0171 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([deadbeef], [0.5.6-rc2]) +AC_INIT([deadbeef], [devel]) AC_CONFIG_HEADER(config.h) diff --git a/plugins/gtkui/Makefile.am b/plugins/gtkui/Makefile.am index f7844820..279b555b 100644 --- a/plugins/gtkui/Makefile.am +++ b/plugins/gtkui/Makefile.am @@ -97,7 +97,7 @@ ddb_gui_GTK3_la_LDFLAGS = -module if STATICLINK GTK_ROOT_300=@top_srcdir@/$(LIB)/gtk-3.0.0 -ddb_gui_GTK3_la_LIBADD = $(LDADD) -L$(GTK_ROOT_300)/lib -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0 -lfreetype -lfontconfig $(SM_LIBADD) +ddb_gui_GTK3_la_LIBADD = $(LDADD) -L$(GTK_ROOT_300)/lib -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lgthread-2.0 -lglib-2.0 -lfreetype -lfontconfig $(SM_LIBADD) ddb_gui_GTK3_la_CFLAGS = -std=c99 -I$(GTK_ROOT_300)/include/gtk-3.0 -I$(GTK_ROOT_300)/include/pango-1.0 -I$(GTK_ROOT_300)/include/gio-unix-2.0/ -I$(GTK_ROOT_300)/include/atk-1.0 -I$(GTK_ROOT_300)/include/cairo -I$(GTK_ROOT_300)/include/gdk-pixbuf-2.0 -I$(GTK_ROOT_300)/include/freetype2 -I$(GTK_ROOT_300)/include/glib-2.0 -I$(GTK_ROOT_300)/lib/glib-2.0/include $(SM_CFLAGS) -- cgit v1.2.3 From 18855db9d72965996f5bb5479012f854d2b30692 Mon Sep 17 00:00:00 2001 From: waker Date: Wed, 17 Oct 2012 20:00:52 +0200 Subject: Revert "aac: fail adts parser if encountered many failed frames in a row" This reverts commit 1ab32a2802e79ae39226f25fe81150fe80858757. --- plugins/aac/aac.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/plugins/aac/aac.c b/plugins/aac/aac.c index 1083f94f..ca0f391e 100644 --- a/plugins/aac/aac.c +++ b/plugins/aac/aac.c @@ -142,9 +142,6 @@ parse_aac_stream(DB_FILE *fp, int *psamplerate, int *pchannels, float *pduration int frame = 0; int scanframes = 1000; - - int nfail = 0; - if (fp->vfs->is_streaming ()) { scanframes = 1; } @@ -163,11 +160,6 @@ parse_aac_stream(DB_FILE *fp, int *psamplerate, int *pchannels, float *pduration memmove (buf, buf+1, sizeof (buf)-1); bufsize--; // trace ("aac_sync fail, framepos: %d\n", framepos); - nfail++; - if (nfail > 100) { - trace ("aac: many failed sync attemps, aborted\n"); - return -1; - } if (deadbeef->ftell (fp) - initfpos > 2000) { // how many is enough to make sure? break; } @@ -176,7 +168,6 @@ parse_aac_stream(DB_FILE *fp, int *psamplerate, int *pchannels, float *pduration } else { // trace ("aac: frame #%d sync: %dch %d %d %d %d\n", frame, channels, samplerate, bitrate, samples, size); - nfail = 0; frame++; nsamples += samples; if (!stream_sr) { -- cgit v1.2.3 From 650d0407cdf1b4a93ac1521c38ec6e035878b268 Mon Sep 17 00:00:00 2001 From: waker Date: Wed, 17 Oct 2012 20:06:40 +0200 Subject: 0.5.6-rc3: fixed artwork libpng and libjpeg static linkage --- PORTABLE_VERSION | 2 +- configure.ac | 6 +++++- plugins/artwork/Makefile.am | 1 + 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/PORTABLE_VERSION b/PORTABLE_VERSION index 8b80fc2e..1ccaca80 100644 --- a/PORTABLE_VERSION +++ b/PORTABLE_VERSION @@ -1 +1 @@ -0.5.6-rc2 +0.5.6-rc3 diff --git a/configure.ac b/configure.ac index 884b0171..30c811c7 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([deadbeef], [devel]) +AC_INIT([deadbeef], [0.5.6-rc3]) AC_CONFIG_HEADER(config.h) @@ -450,9 +450,13 @@ if test "x$enable_artwork" != "xno" ; then if test "x$enable_staticlink" != "xno" ; then HAVE_JPEG=yes JPEG_DEPS_LIBS="../../$LIB/lib/libjpeg.a" + JPEG_DEPS_CFLAGS="-I../../$LIB/include" + AC_SUBST(JPEG_DEPS_CFLAGS) AC_SUBST(JPEG_DEPS_LIBS) HAVE_PNG=yes + PNG_DEPS_CFLAGS="-I../../$LIB/include/libpng15" PNG_DEPS_LIBS="../../$LIB/lib/libpng.a ../../$LIB/lib/libz.a" + AC_SUBST(PNG_DEPS_CFLAGS) AC_SUBST(PNG_DEPS_LIBS) HAVE_IMLIB2=no else diff --git a/plugins/artwork/Makefile.am b/plugins/artwork/Makefile.am index 74155a1c..dc46f7d9 100644 --- a/plugins/artwork/Makefile.am +++ b/plugins/artwork/Makefile.am @@ -10,6 +10,7 @@ ARTWORK_DEPS=$(IMLIB2_DEPS_LIBS) ARTWORK_CFLAGS=-DUSE_IMLIB2 else ARTWORK_DEPS=$(JPEG_DEPS_LIBS) $(PNG_DEPS_LIBS) +ARTWORK_CFLAGS=$(JPEG_DEPS_CFLAGS) $(PNG_DEPS_CFLAGS) endif if HAVE_FLAC -- cgit v1.2.3 From f85e5f94695403201ad09bd095c5315d6121df3d Mon Sep 17 00:00:00 2001 From: waker Date: Thu, 18 Oct 2012 21:21:50 +0200 Subject: deleted po/deadbeef.pot: it's automatically deleted by make clean, and built using make update-po --- po/deadbeef.pot | 2062 ------------------------------------------------------- 1 file changed, 2062 deletions(-) delete mode 100644 po/deadbeef.pot diff --git a/po/deadbeef.pot b/po/deadbeef.pot deleted file mode 100644 index a4b260d9..00000000 --- a/po/deadbeef.pot +++ /dev/null @@ -1,2062 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-15 21:27+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../plugins/gtkui/callbacks.c:123 -msgid "Supported sound formats" -msgstr "" - -#: ../plugins/gtkui/callbacks.c:134 -msgid "All files (*)" -msgstr "" - -#: ../plugins/gtkui/callbacks.c:144 -msgid "Open file(s)..." -msgstr "" - -#: ../plugins/gtkui/callbacks.c:179 -msgid "Add file(s) to playlist..." -msgstr "" - -#: ../plugins/gtkui/callbacks.c:220 -msgid "Add folder(s) to playlist..." -msgstr "" - -#: ../plugins/gtkui/callbacks.c:225 -msgid "Follow symlinks" -msgstr "" - -#: ../plugins/gtkui/callbacks.c:711 -msgid "Failed while reading help file" -msgstr "" - -#: ../plugins/gtkui/callbacks.c:721 -msgid "Failed to load help file" -msgstr "" - -#: ../plugins/gtkui/callbacks.c:736 -msgid "help.txt" -msgstr "" - -#: ../plugins/gtkui/callbacks.c:737 ../plugins/gtkui/interface.c:1158 -#: ../plugins/gtkui/deadbeef.glade.h:61 ../plugins/converter/convgui.c:1376 -#: ../plugins/converter/convgui.c:1384 -msgid "Help" -msgstr "" - -#: ../plugins/gtkui/callbacks.c:747 -#, c-format -msgid "About DeaDBeeF %s" -msgstr "" - -#: ../plugins/gtkui/callbacks.c:760 -#, c-format -msgid "DeaDBeeF %s ChangeLog" -msgstr "" - -#: ../plugins/gtkui/callbacks.c:1134 -#, c-format -msgid "DeaDBeeF Translators" -msgstr "" - -#: ../plugins/gtkui/ddbtabstrip.c:842 -msgid "Edit playlist" -msgstr "" - -#: ../plugins/gtkui/ddbtabstrip.c:845 ../plugins/gtkui/interface.c:1489 -#: ../plugins/gtkui/interface.c:2983 ../plugins/gtkui/deadbeef.glade.h:70 -#: ../plugins/converter/interface.c:378 -#: ../plugins/converter/converter.glade.h:22 -#: ../plugins/shellexecui/interface.c:159 -#: ../plugins/shellexecui/shellexec.glade.h:7 -msgid "Title:" -msgstr "" - -#: ../plugins/gtkui/ddbtabstrip.c:1034 -msgid "Rename Playlist" -msgstr "" - -#: ../plugins/gtkui/ddbtabstrip.c:1041 -msgid "Remove Playlist" -msgstr "" - -#: ../plugins/gtkui/ddbtabstrip.c:1048 -msgid "Add New Playlist" -msgstr "" - -#: ../plugins/gtkui/eq.c:141 -msgid "Save DeaDBeeF EQ Preset" -msgstr "" - -#: ../plugins/gtkui/eq.c:148 -msgid "DeaDBeeF EQ preset files (*.ddbeq)" -msgstr "" - -#: ../plugins/gtkui/eq.c:187 -msgid "Load DeaDBeeF EQ Preset..." -msgstr "" - -#: ../plugins/gtkui/eq.c:191 -msgid "DeaDBeeF EQ presets (*.ddbeq)" -msgstr "" - -#: ../plugins/gtkui/eq.c:252 -msgid "Import Foobar2000 EQ Preset..." -msgstr "" - -#: ../plugins/gtkui/eq.c:256 -msgid "Foobar2000 EQ presets (*.feq)" -msgstr "" - -#: ../plugins/gtkui/eq.c:321 -msgid "Save Preset" -msgstr "" - -#: ../plugins/gtkui/eq.c:329 -msgid "Load Preset" -msgstr "" - -#: ../plugins/gtkui/eq.c:337 -msgid "Import Foobar2000 Preset" -msgstr "" - -#: ../plugins/gtkui/eq.c:362 -msgid "Enable" -msgstr "" - -#: ../plugins/gtkui/eq.c:371 -msgid "Zero All" -msgstr "" - -#: ../plugins/gtkui/eq.c:378 -msgid "Zero Preamp" -msgstr "" - -#: ../plugins/gtkui/eq.c:385 -msgid "Zero Bands" -msgstr "" - -#: ../plugins/gtkui/eq.c:392 ../plugins/converter/interface.c:803 -#: ../plugins/converter/converter.glade.h:50 -msgid "Presets" -msgstr "" - -#: ../plugins/gtkui/gtkui.c:140 -#, c-format -msgid "1 day %d:%02d:%02d" -msgstr "" - -#: ../plugins/gtkui/gtkui.c:143 -#, c-format -msgid "%d days %d:%02d:%02d" -msgstr "" - -#: ../plugins/gtkui/gtkui.c:152 -#, c-format -msgid "Stopped | %d tracks | %s total playtime" -msgstr "" - -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 -msgid "Mono" -msgstr "" - -#: ../plugins/gtkui/gtkui.c:165 ../playlist.c:3046 -msgid "Stereo" -msgstr "" - -#: ../plugins/gtkui/gtkui.c:190 -#, c-format -msgid "| %4d kbps " -msgstr "" - -#: ../plugins/gtkui/gtkui.c:196 -msgid "Paused | " -msgstr "" - -#: ../plugins/gtkui/gtkui.c:201 -#, c-format -msgid "" -"%s%s %s| %dHz | %d bit | %s | %d:%02d / %s | %d tracks | %s total playtime" -msgstr "" - -#: ../plugins/gtkui/gtkui.c:647 -msgid "Save Playlist As" -msgstr "" - -#: ../plugins/gtkui/gtkui.c:658 -msgid "DeaDBeeF playlist files (*.dbpl)" -msgstr "" - -#: ../plugins/gtkui/gtkui.c:776 -msgid "Load Playlist" -msgstr "" - -#: ../plugins/gtkui/gtkui.c:791 -msgid "Other files (*)" -msgstr "" - -#: ../plugins/gtkui/gtkui.c:929 ../plugins/gtkui/fileman.c:41 -msgid "New Playlist" -msgstr "" - -#: ../plugins/gtkui/gtkui.c:932 -#, c-format -msgid "New Playlist (%d)" -msgstr "" - -#: ../plugins/gtkui/gtkui.c:1085 -msgid "- Test logout functionality" -msgstr "" - -#: ../plugins/gtkui/interface.c:150 ../plugins/gtkui/deadbeef.glade.h:1 -msgid "_File" -msgstr "" - -#: ../plugins/gtkui/interface.c:157 ../plugins/gtkui/deadbeef.glade.h:2 -msgid "_Open file(s)" -msgstr "" - -#: ../plugins/gtkui/interface.c:173 ../plugins/gtkui/deadbeef.glade.h:3 -msgid "Add file(s)" -msgstr "" - -#: ../plugins/gtkui/interface.c:181 ../plugins/gtkui/deadbeef.glade.h:4 -msgid "Add folder(s)" -msgstr "" - -#: ../plugins/gtkui/interface.c:189 ../plugins/gtkui/interface.c:3083 -#: ../plugins/gtkui/deadbeef.glade.h:5 -msgid "Add location" -msgstr "" - -#: ../plugins/gtkui/interface.c:198 ../plugins/gtkui/deadbeef.glade.h:6 -msgid "New playlist" -msgstr "" - -#: ../plugins/gtkui/interface.c:205 ../plugins/gtkui/deadbeef.glade.h:7 -msgid "Load playlist" -msgstr "" - -#: ../plugins/gtkui/interface.c:209 ../plugins/gtkui/deadbeef.glade.h:8 -msgid "Save playlist" -msgstr "" - -#: ../plugins/gtkui/interface.c:218 ../plugins/gtkui/deadbeef.glade.h:9 -msgid "_Quit" -msgstr "" - -#: ../plugins/gtkui/interface.c:229 ../plugins/gtkui/deadbeef.glade.h:10 -msgid "_Edit" -msgstr "" - -#: ../plugins/gtkui/interface.c:236 ../plugins/gtkui/deadbeef.glade.h:11 -msgid "_Clear" -msgstr "" - -#: ../plugins/gtkui/interface.c:244 ../plugins/gtkui/deadbeef.glade.h:12 -msgid "Select all" -msgstr "" - -#: ../plugins/gtkui/interface.c:251 ../plugins/gtkui/deadbeef.glade.h:13 -msgid "Deselect all" -msgstr "" - -#: ../plugins/gtkui/interface.c:258 ../plugins/gtkui/deadbeef.glade.h:14 -msgid "Invert selection" -msgstr "" - -#: ../plugins/gtkui/interface.c:262 ../plugins/gtkui/deadbeef.glade.h:15 -msgid "Selection" -msgstr "" - -#: ../plugins/gtkui/interface.c:269 ../plugins/gtkui/plcommon.c:512 -#: ../plugins/gtkui/prefwin.c:353 ../plugins/gtkui/deadbeef.glade.h:16 -#: ../plugins/converter/interface.c:628 -#: ../plugins/converter/converter.glade.h:46 -#: ../plugins/shellexecui/interface.c:65 -#: ../plugins/shellexecui/shellexec.glade.h:4 -msgid "Remove" -msgstr "" - -#: ../plugins/gtkui/interface.c:277 ../plugins/gtkui/deadbeef.glade.h:17 -msgid "Crop" -msgstr "" - -#: ../plugins/gtkui/interface.c:281 ../plugins/gtkui/deadbeef.glade.h:18 -msgid "_Find" -msgstr "" - -#: ../plugins/gtkui/interface.c:288 ../plugins/gtkui/deadbeef.glade.h:19 -msgid "Sort by" -msgstr "" - -#: ../plugins/gtkui/interface.c:295 ../plugins/gtkui/interface.c:1519 -#: ../plugins/gtkui/mainplaylist.c:320 ../plugins/gtkui/prefwin.c:667 -#: ../plugins/gtkui/search.c:415 ../plugins/gtkui/deadbeef.glade.h:20 -#: ../plugins/converter/convgui.c:848 ../plugins/converter/convgui.c:1347 -#: ../plugins/converter/interface.c:605 -#: ../plugins/converter/converter.glade.h:43 -#: ../plugins/shellexecui/shellexecui.c:327 -msgid "Title" -msgstr "" - -#: ../plugins/gtkui/interface.c:299 ../plugins/gtkui/deadbeef.glade.h:21 -msgid "Track number" -msgstr "" - -#: ../plugins/gtkui/interface.c:303 ../plugins/gtkui/interface.c:1518 -#: ../plugins/gtkui/interface.c:1888 ../plugins/gtkui/deadbeef.glade.h:22 -#: ../translation/extra.c:73 -msgid "Album" -msgstr "" - -#. Track properties dialog -#: ../plugins/gtkui/interface.c:307 ../plugins/gtkui/interface.c:1517 -#: ../plugins/gtkui/plcommon.c:1060 ../plugins/gtkui/deadbeef.glade.h:23 -#: ../translation/extra.c:69 -msgid "Artist" -msgstr "" - -#: ../plugins/gtkui/interface.c:311 ../plugins/gtkui/deadbeef.glade.h:24 -#: ../translation/extra.c:74 -msgid "Date" -msgstr "" - -#: ../plugins/gtkui/interface.c:315 ../plugins/gtkui/interface.c:387 -#: ../plugins/gtkui/deadbeef.glade.h:25 -msgid "Random" -msgstr "" - -#: ../plugins/gtkui/interface.c:319 ../plugins/gtkui/interface.c:1523 -#: ../plugins/gtkui/plcommon.c:1064 ../plugins/gtkui/deadbeef.glade.h:26 -msgid "Custom" -msgstr "" - -#: ../plugins/gtkui/interface.c:328 ../plugins/gtkui/interface.c:1817 -#: ../plugins/gtkui/deadbeef.glade.h:27 -msgid "Preferences" -msgstr "" - -#: ../plugins/gtkui/interface.c:332 ../plugins/gtkui/deadbeef.glade.h:28 -msgid "_View" -msgstr "" - -#: ../plugins/gtkui/interface.c:339 ../plugins/gtkui/deadbeef.glade.h:29 -msgid "Status bar" -msgstr "" - -#: ../plugins/gtkui/interface.c:343 ../plugins/gtkui/deadbeef.glade.h:30 -msgid "Column headers" -msgstr "" - -#: ../plugins/gtkui/interface.c:347 ../plugins/gtkui/deadbeef.glade.h:31 -msgid "Tabs" -msgstr "" - -#: ../plugins/gtkui/interface.c:351 ../plugins/gtkui/deadbeef.glade.h:32 -msgid "Equalizer" -msgstr "" - -#: ../plugins/gtkui/interface.c:355 ../plugins/gtkui/deadbeef.glade.h:33 -msgid "_Playback" -msgstr "" - -#: ../plugins/gtkui/interface.c:362 ../plugins/gtkui/interface.c:3359 -#: ../plugins/gtkui/deadbeef.glade.h:34 -msgid "Order" -msgstr "" - -#: ../plugins/gtkui/interface.c:369 ../plugins/gtkui/deadbeef.glade.h:35 -msgid "Linear" -msgstr "" - -#: ../plugins/gtkui/interface.c:375 ../plugins/gtkui/deadbeef.glade.h:36 -msgid "Shuffle tracks" -msgstr "" - -#: ../plugins/gtkui/interface.c:381 ../plugins/gtkui/deadbeef.glade.h:37 -msgid "Shuffle albums" -msgstr "" - -#: ../plugins/gtkui/interface.c:393 ../plugins/gtkui/deadbeef.glade.h:38 -msgid "Looping" -msgstr "" - -#: ../plugins/gtkui/interface.c:400 ../plugins/gtkui/deadbeef.glade.h:39 -msgid "Loop all" -msgstr "" - -#: ../plugins/gtkui/interface.c:406 ../plugins/gtkui/deadbeef.glade.h:40 -msgid "Loop single song" -msgstr "" - -#: ../plugins/gtkui/interface.c:412 ../plugins/gtkui/deadbeef.glade.h:41 -msgid "Don't loop" -msgstr "" - -#: ../plugins/gtkui/interface.c:418 ../plugins/gtkui/deadbeef.glade.h:42 -msgid "Scroll follows playback" -msgstr "" - -#: ../plugins/gtkui/interface.c:423 ../plugins/gtkui/deadbeef.glade.h:43 -msgid "Cursor follows playback" -msgstr "" - -#: ../plugins/gtkui/interface.c:427 ../plugins/gtkui/deadbeef.glade.h:44 -msgid "Stop after current" -msgstr "" - -#: ../plugins/gtkui/interface.c:439 ../plugins/gtkui/deadbeef.glade.h:45 -msgid "Jump to current track" -msgstr "" - -#: ../plugins/gtkui/interface.c:446 ../plugins/gtkui/interface.c:453 -#: ../plugins/gtkui/deadbeef.glade.h:46 -msgid "_Help" -msgstr "" - -#: ../plugins/gtkui/interface.c:461 ../plugins/gtkui/deadbeef.glade.h:47 -msgid "_ChangeLog" -msgstr "" - -#: ../plugins/gtkui/interface.c:470 ../plugins/gtkui/deadbeef.glade.h:48 -msgid "_GPLv2" -msgstr "" - -#: ../plugins/gtkui/interface.c:474 ../plugins/gtkui/deadbeef.glade.h:49 -msgid "_LGPLv2.1" -msgstr "" - -#: ../plugins/gtkui/interface.c:483 ../plugins/gtkui/deadbeef.glade.h:50 -msgid "_About" -msgstr "" - -#: ../plugins/gtkui/interface.c:491 ../plugins/gtkui/deadbeef.glade.h:51 -msgid "_Translators" -msgstr "" - -#: ../plugins/gtkui/interface.c:907 ../plugins/gtkui/deadbeef.glade.h:52 -msgid "Search" -msgstr "" - -#: ../plugins/gtkui/interface.c:976 ../plugins/gtkui/deadbeef.glade.h:53 -msgid "Stop" -msgstr "" - -#: ../plugins/gtkui/interface.c:984 ../plugins/gtkui/deadbeef.glade.h:54 -msgid "Play" -msgstr "" - -#: ../plugins/gtkui/interface.c:992 ../plugins/gtkui/deadbeef.glade.h:55 -msgid "Pause" -msgstr "" - -#: ../plugins/gtkui/interface.c:1000 ../plugins/gtkui/deadbeef.glade.h:56 -msgid "Previous" -msgstr "" - -#: ../plugins/gtkui/interface.c:1008 ../plugins/gtkui/deadbeef.glade.h:57 -msgid "Next" -msgstr "" - -#: ../plugins/gtkui/interface.c:1016 ../plugins/gtkui/deadbeef.glade.h:58 -msgid "Play Random" -msgstr "" - -#: ../plugins/gtkui/interface.c:1025 ../plugins/gtkui/deadbeef.glade.h:59 -msgid "About" -msgstr "" - -#: ../plugins/gtkui/interface.c:1038 ../plugins/gtkui/deadbeef.glade.h:60 -msgid "Quit" -msgstr "" - -#: ../plugins/gtkui/interface.c:1228 ../plugins/gtkui/deadbeef.glade.h:62 -msgid "Track Properties" -msgstr "" - -#: ../plugins/gtkui/interface.c:1273 ../plugins/gtkui/deadbeef.glade.h:63 -msgid "Settings" -msgstr "" - -#: ../plugins/gtkui/interface.c:1299 ../plugins/gtkui/deadbeef.glade.h:64 -msgid "_Apply" -msgstr "" - -#: ../plugins/gtkui/interface.c:1320 ../plugins/gtkui/interface.c:1366 -#: ../plugins/gtkui/deadbeef.glade.h:65 -msgid "_Close" -msgstr "" - -#: ../plugins/gtkui/interface.c:1324 ../plugins/gtkui/deadbeef.glade.h:66 -msgid "Metadata" -msgstr "" - -#: ../plugins/gtkui/interface.c:1370 ../plugins/gtkui/plcommon.c:662 -#: ../plugins/gtkui/deadbeef.glade.h:67 -msgid "Properties" -msgstr "" - -#: ../plugins/gtkui/interface.c:1497 ../plugins/gtkui/deadbeef.glade.h:71 -msgid "Enter new column title here" -msgstr "" - -#: ../plugins/gtkui/interface.c:1505 ../plugins/gtkui/deadbeef.glade.h:72 -msgid "Type:" -msgstr "" - -#: ../plugins/gtkui/interface.c:1513 -msgid "Item Index" -msgstr "" - -#. create default set of columns -#: ../plugins/gtkui/interface.c:1514 ../plugins/gtkui/mainplaylist.c:317 -msgid "Playing" -msgstr "" - -#: ../plugins/gtkui/interface.c:1515 -msgid "Album Art" -msgstr "" - -#: ../plugins/gtkui/interface.c:1516 -msgid "Artist - Album" -msgstr "" - -#: ../plugins/gtkui/interface.c:1520 ../plugins/gtkui/mainplaylist.c:321 -#: ../plugins/gtkui/search.c:416 -msgid "Duration" -msgstr "" - -#: ../plugins/gtkui/interface.c:1521 ../translation/extra.c:75 -msgid "Track Number" -msgstr "" - -#: ../plugins/gtkui/interface.c:1522 ../translation/extra.c:72 -msgid "Band / Album Artist" -msgstr "" - -#: ../plugins/gtkui/interface.c:1529 ../plugins/gtkui/interface.c:3211 -#: ../plugins/gtkui/deadbeef.glade.h:84 -msgid "Format:" -msgstr "" - -#: ../plugins/gtkui/interface.c:1554 ../plugins/gtkui/deadbeef.glade.h:85 -msgid "Alignment:" -msgstr "" - -#: ../plugins/gtkui/interface.c:1562 -msgid "Left" -msgstr "" - -#: ../plugins/gtkui/interface.c:1563 -msgid "Right" -msgstr "" - -#: ../plugins/gtkui/interface.c:1586 ../plugins/gtkui/interface.c:3014 -#: ../plugins/gtkui/interface.c:3126 ../plugins/gtkui/interface.c:3252 -#: ../plugins/gtkui/deadbeef.glade.h:68 -msgid "_Cancel" -msgstr "" - -#: ../plugins/gtkui/interface.c:1607 ../plugins/gtkui/interface.c:3035 -#: ../plugins/gtkui/interface.c:3147 ../plugins/gtkui/interface.c:3273 -#: ../plugins/gtkui/deadbeef.glade.h:69 -msgid "_OK" -msgstr "" - -#: ../plugins/gtkui/interface.c:1838 ../plugins/gtkui/deadbeef.glade.h:88 -msgid "Output plugin:" -msgstr "" - -#: ../plugins/gtkui/interface.c:1851 ../plugins/gtkui/deadbeef.glade.h:89 -msgid "Output device:" -msgstr "" - -#: ../plugins/gtkui/interface.c:1860 ../plugins/gtkui/deadbeef.glade.h:90 -msgid "Always convert 8 bit audio to 16 bit" -msgstr "" - -#: ../plugins/gtkui/interface.c:1864 ../plugins/gtkui/deadbeef.glade.h:91 -msgid "Sound" -msgstr "" - -#: ../plugins/gtkui/interface.c:1877 ../plugins/gtkui/deadbeef.glade.h:92 -msgid "Replaygain mode:" -msgstr "" - -#: ../plugins/gtkui/interface.c:1886 -msgid "Disable" -msgstr "" - -#: ../plugins/gtkui/interface.c:1887 -msgid "Track" -msgstr "" - -#: ../plugins/gtkui/interface.c:1890 ../plugins/gtkui/deadbeef.glade.h:96 -msgid "Replaygain peak scale" -msgstr "" - -#: ../plugins/gtkui/interface.c:1905 ../plugins/gtkui/interface.c:1939 -#: ../plugins/gtkui/deadbeef.glade.h:97 -msgid "-12 dB" -msgstr "" - -#: ../plugins/gtkui/interface.c:1915 ../plugins/gtkui/interface.c:1949 -#: ../plugins/gtkui/deadbeef.glade.h:98 -msgid "+12 dB" -msgstr "" - -#: ../plugins/gtkui/interface.c:1919 ../plugins/gtkui/deadbeef.glade.h:99 -msgid "Replaygain preamp:" -msgstr "" - -#: ../plugins/gtkui/interface.c:1926 ../plugins/gtkui/deadbeef.glade.h:100 -msgid "Global preamp:" -msgstr "" - -#: ../plugins/gtkui/interface.c:1957 ../plugins/gtkui/deadbeef.glade.h:101 -msgid "Add files from command line (or file manager) to this playlist:" -msgstr "" - -#: ../plugins/gtkui/interface.c:1966 ../plugins/gtkui/deadbeef.glade.h:102 -msgid "Resume previous session on startup" -msgstr "" - -#: ../plugins/gtkui/interface.c:1970 ../plugins/gtkui/deadbeef.glade.h:103 -msgid "Don't add from archives when adding folders" -msgstr "" - -#: ../plugins/gtkui/interface.c:1974 ../plugins/gtkui/deadbeef.glade.h:104 -msgid "Auto-reset \"Stop after current\"" -msgstr "" - -#: ../plugins/gtkui/interface.c:1978 ../plugins/gtkui/deadbeef.glade.h:105 -msgid "Playback" -msgstr "" - -#: ../plugins/gtkui/interface.c:1999 ../plugins/gtkui/interface.c:2556 -#: ../plugins/gtkui/deadbeef.glade.h:106 ../plugins/converter/interface.c:632 -#: ../plugins/converter/converter.glade.h:47 -msgid "Configure" -msgstr "" - -#: ../plugins/gtkui/interface.c:2034 ../plugins/gtkui/deadbeef.glade.h:107 -msgid "DSP Chain Preset" -msgstr "" - -#: ../plugins/gtkui/interface.c:2046 ../plugins/gtkui/deadbeef.glade.h:108 -msgid "_Load" -msgstr "" - -#: ../plugins/gtkui/interface.c:2050 ../plugins/gtkui/deadbeef.glade.h:109 -msgid "DSP" -msgstr "" - -#: ../plugins/gtkui/interface.c:2059 ../plugins/gtkui/deadbeef.glade.h:110 -msgid "Close minimizes to tray" -msgstr "" - -#: ../plugins/gtkui/interface.c:2063 ../plugins/gtkui/deadbeef.glade.h:111 -msgid "Middle mouse button closes playlist" -msgstr "" - -#: ../plugins/gtkui/interface.c:2067 ../plugins/gtkui/deadbeef.glade.h:112 -msgid "Hide system tray icon" -msgstr "" - -#: ../plugins/gtkui/interface.c:2071 ../plugins/gtkui/deadbeef.glade.h:113 -msgid "Use bold font for currently playing track" -msgstr "" - -#: ../plugins/gtkui/interface.c:2075 ../plugins/gtkui/deadbeef.glade.h:114 -msgid "Hide \"Delete from disk\" context menu item" -msgstr "" - -#: ../plugins/gtkui/interface.c:2079 ../plugins/gtkui/deadbeef.glade.h:115 -msgid "Auto-name playlists when adding a single folder" -msgstr "" - -#: ../plugins/gtkui/interface.c:2083 ../plugins/gtkui/deadbeef.glade.h:116 -msgid "Enable Russian CP1251 detection and recoding" -msgstr "" - -#: ../plugins/gtkui/interface.c:2087 ../plugins/gtkui/deadbeef.glade.h:117 -msgid "Enable Chinese CP936 detection and recoding" -msgstr "" - -#: ../plugins/gtkui/interface.c:2095 ../plugins/gtkui/deadbeef.glade.h:118 -msgid "Interface refresh rate (times per second):" -msgstr "" - -#: ../plugins/gtkui/interface.c:2109 ../plugins/gtkui/deadbeef.glade.h:119 -msgid "Titlebar text while playing:" -msgstr "" - -#: ../plugins/gtkui/interface.c:2123 ../plugins/gtkui/deadbeef.glade.h:120 -msgid "Titlebar text while stopped:" -msgstr "" - -#: ../plugins/gtkui/interface.c:2137 ../plugins/gtkui/deadbeef.glade.h:121 -msgid "GUI Plugin (changing requires restart):" -msgstr "" - -#: ../plugins/gtkui/interface.c:2145 ../plugins/gtkui/deadbeef.glade.h:122 -msgid "GUI/Misc" -msgstr "" - -#: ../plugins/gtkui/interface.c:2160 ../plugins/gtkui/interface.c:2204 -#: ../plugins/gtkui/deadbeef.glade.h:123 -msgid "Override" -msgstr "" - -#: ../plugins/gtkui/interface.c:2169 ../plugins/gtkui/deadbeef.glade.h:124 -msgid "Foreground" -msgstr "" - -#: ../plugins/gtkui/interface.c:2176 ../plugins/gtkui/deadbeef.glade.h:125 -msgid "Background" -msgstr "" - -#: ../plugins/gtkui/interface.c:2195 ../plugins/gtkui/deadbeef.glade.h:126 -msgid "Seekbar/Volumebar colors" -msgstr "" - -#: ../plugins/gtkui/interface.c:2213 ../plugins/gtkui/deadbeef.glade.h:127 -msgid "Middle" -msgstr "" - -#: ../plugins/gtkui/interface.c:2220 ../plugins/gtkui/deadbeef.glade.h:128 -msgid "Light" -msgstr "" - -#: ../plugins/gtkui/interface.c:2227 ../plugins/gtkui/deadbeef.glade.h:129 -msgid "Dark" -msgstr "" - -#: ../plugins/gtkui/interface.c:2258 ../plugins/gtkui/deadbeef.glade.h:130 -msgid "Base" -msgstr "" - -#: ../plugins/gtkui/interface.c:2265 ../plugins/gtkui/interface.c:2322 -#: ../plugins/gtkui/deadbeef.glade.h:131 -msgid "Text" -msgstr "" - -#: ../plugins/gtkui/interface.c:2278 ../plugins/gtkui/deadbeef.glade.h:132 -msgid "Tab strip colors" -msgstr "" - -#: ../plugins/gtkui/interface.c:2287 ../plugins/gtkui/deadbeef.glade.h:133 -msgid "Override (looses GTK treeview theming, but speeds up rendering)" -msgstr "" - -#: ../plugins/gtkui/interface.c:2296 ../plugins/gtkui/deadbeef.glade.h:134 -msgid "Even row" -msgstr "" - -#: ../plugins/gtkui/interface.c:2303 ../plugins/gtkui/deadbeef.glade.h:135 -msgid "Odd row" -msgstr "" - -#: ../plugins/gtkui/interface.c:2329 ../plugins/gtkui/deadbeef.glade.h:136 -msgid "Selected row" -msgstr "" - -#: ../plugins/gtkui/interface.c:2348 ../plugins/gtkui/deadbeef.glade.h:137 -msgid "Selected text" -msgstr "" - -#: ../plugins/gtkui/interface.c:2361 ../plugins/gtkui/deadbeef.glade.h:138 -msgid "Cursor" -msgstr "" - -#: ../plugins/gtkui/interface.c:2374 ../plugins/gtkui/deadbeef.glade.h:139 -msgid "Playlist colors" -msgstr "" - -#: ../plugins/gtkui/interface.c:2378 ../plugins/gtkui/deadbeef.glade.h:140 -msgid "Colors" -msgstr "" - -#: ../plugins/gtkui/interface.c:2387 ../plugins/gtkui/deadbeef.glade.h:141 -msgid "Enable Proxy Server" -msgstr "" - -#: ../plugins/gtkui/interface.c:2395 ../plugins/gtkui/deadbeef.glade.h:142 -msgid "Proxy Server Address:" -msgstr "" - -#: ../plugins/gtkui/interface.c:2409 ../plugins/gtkui/deadbeef.glade.h:143 -msgid "Proxy Server Port:" -msgstr "" - -#: ../plugins/gtkui/interface.c:2423 ../plugins/gtkui/deadbeef.glade.h:144 -msgid "Proxy Type:" -msgstr "" - -#: ../plugins/gtkui/interface.c:2442 ../plugins/gtkui/deadbeef.glade.h:145 -msgid "Proxy Username:" -msgstr "" - -#: ../plugins/gtkui/interface.c:2455 ../plugins/gtkui/deadbeef.glade.h:146 -msgid "Proxy Password:" -msgstr "" - -#: ../plugins/gtkui/interface.c:2473 ../plugins/gtkui/deadbeef.glade.h:147 -msgid "HTTP User Agent:" -msgstr "" - -#: ../plugins/gtkui/interface.c:2482 ../plugins/gtkui/deadbeef.glade.h:148 -msgid "Network" -msgstr "" - -#: ../plugins/gtkui/interface.c:2513 ../plugins/gtkui/deadbeef.glade.h:149 -msgid "Version: " -msgstr "" - -#: ../plugins/gtkui/interface.c:2577 ../plugins/gtkui/deadbeef.glade.h:150 -#: ../translation/extra.c:82 -msgid "Copyright" -msgstr "" - -#: ../plugins/gtkui/interface.c:2587 ../plugins/gtkui/deadbeef.glade.h:151 -msgid "Plugins" -msgstr "" - -#: ../plugins/gtkui/interface.c:3094 ../plugins/gtkui/deadbeef.glade.h:152 -msgid "URL:" -msgstr "" - -#: ../plugins/gtkui/interface.c:3196 ../plugins/gtkui/deadbeef.glade.h:153 -msgid "Group By ..." -msgstr "" - -#: ../plugins/gtkui/interface.c:3320 ../plugins/gtkui/deadbeef.glade.h:154 -msgid "Sort by ..." -msgstr "" - -#: ../plugins/gtkui/interface.c:3336 ../plugins/gtkui/deadbeef.glade.h:155 -msgid "Format" -msgstr "" - -#: ../plugins/gtkui/interface.c:3366 -msgid "Ascending" -msgstr "" - -#: ../plugins/gtkui/interface.c:3367 -msgid "Descending" -msgstr "" - -#: ../plugins/gtkui/interface.c:3420 ../plugins/gtkui/deadbeef.glade.h:158 -#: ../plugins/converter/interface.c:733 -#: ../plugins/converter/converter.glade.h:48 -msgid "Select DSP Plugin" -msgstr "" - -#: ../plugins/gtkui/interface.c:3436 ../plugins/gtkui/deadbeef.glade.h:159 -#: ../plugins/converter/convgui.c:1149 ../plugins/converter/interface.c:749 -#: ../plugins/gtkui/dspconfig.c:139 ../plugins/converter/converter.glade.h:49 -msgid "Plugin" -msgstr "" - -#: ../plugins/gtkui/interface.c:3522 ../plugins/gtkui/deadbeef.glade.h:160 -msgid "Tag Writer Settings" -msgstr "" - -#: ../plugins/gtkui/interface.c:3553 ../plugins/gtkui/deadbeef.glade.h:161 -msgid "Write ID3v2" -msgstr "" - -#: ../plugins/gtkui/interface.c:3557 ../plugins/gtkui/interface.c:3684 -#: ../plugins/gtkui/deadbeef.glade.h:162 -msgid "Write ID3v1" -msgstr "" - -#: ../plugins/gtkui/interface.c:3561 ../plugins/gtkui/interface.c:3640 -#: ../plugins/gtkui/interface.c:3680 ../plugins/gtkui/deadbeef.glade.h:163 -msgid "Write APEv2" -msgstr "" - -#: ../plugins/gtkui/interface.c:3569 ../plugins/gtkui/interface.c:3648 -#: ../plugins/gtkui/deadbeef.glade.h:164 -msgid "Strip ID3v2" -msgstr "" - -#: ../plugins/gtkui/interface.c:3573 ../plugins/gtkui/interface.c:3696 -#: ../plugins/gtkui/deadbeef.glade.h:165 -msgid "Strip ID3v1" -msgstr "" - -#: ../plugins/gtkui/interface.c:3577 ../plugins/gtkui/interface.c:3652 -#: ../plugins/gtkui/interface.c:3692 ../plugins/gtkui/deadbeef.glade.h:166 -msgid "Strip APEv2" -msgstr "" - -#: ../plugins/gtkui/interface.c:3585 ../plugins/gtkui/deadbeef.glade.h:167 -msgid "ID3v2 version" -msgstr "" - -#: ../plugins/gtkui/interface.c:3592 -msgid "2.3 (Recommended)" -msgstr "" - -#: ../plugins/gtkui/interface.c:3593 -msgid "2.4" -msgstr "" - -#: ../plugins/gtkui/interface.c:3599 ../plugins/gtkui/deadbeef.glade.h:170 -msgid "ID3v1 character encoding (default is iso8859-1)" -msgstr "" - -#: ../plugins/gtkui/interface.c:3636 ../plugins/gtkui/deadbeef.glade.h:171 -msgid "Write ID3v2.4" -msgstr "" - -#: ../plugins/gtkui/mainplaylist.c:318 ../plugins/gtkui/search.c:413 -msgid "Artist / Album" -msgstr "" - -#: ../plugins/gtkui/mainplaylist.c:319 ../plugins/gtkui/search.c:414 -msgid "Track No" -msgstr "" - -#: ../plugins/gtkui/plcommon.c:349 -msgid "Delete files from disk" -msgstr "" - -#: ../plugins/gtkui/plcommon.c:350 -msgid "" -"Files will be lost. Proceed?\n" -"(This dialog can be turned off in GTKUI plugin settings)" -msgstr "" - -#: ../plugins/gtkui/plcommon.c:351 ../plugins/gtkui/trkproperties.c:164 -#: ../plugins/converter/convgui.c:817 ../plugins/converter/convgui.c:1272 -msgid "Warning" -msgstr "" - -#: ../plugins/gtkui/plcommon.c:488 -msgid "Add to playback queue" -msgstr "" - -#: ../plugins/gtkui/plcommon.c:493 -msgid "Remove from playback queue" -msgstr "" - -#: ../plugins/gtkui/plcommon.c:501 -msgid "Reload metadata" -msgstr "" - -#: ../plugins/gtkui/plcommon.c:520 -msgid "Remove from disk" -msgstr "" - -#: ../plugins/gtkui/plcommon.c:901 ../plugins/gtkui/plcommon.c:1027 -msgid "Add column" -msgstr "" - -#: ../plugins/gtkui/plcommon.c:931 ../plugins/gtkui/plcommon.c:1031 -msgid "Edit column" -msgstr "" - -#: ../plugins/gtkui/plcommon.c:1035 -msgid "Remove column" -msgstr "" - -#: ../plugins/gtkui/plcommon.c:1045 -msgid "Group by" -msgstr "" - -#: ../plugins/gtkui/plcommon.c:1052 -msgid "None" -msgstr "" - -#: ../plugins/gtkui/plcommon.c:1056 -msgid "Artist/Date/Album" -msgstr "" - -#: ../plugins/gtkui/pluginconf.c:42 -msgid "Open file..." -msgstr "" - -#: ../plugins/gtkui/pluginconf.c:220 -#, c-format -msgid "Configure %s" -msgstr "" - -#: ../plugins/gtkui/prefwin.c:82 -msgid "Default Audio Device" -msgstr "" - -#: ../plugins/gtkui/prefwin.c:348 ../plugins/converter/interface.c:624 -#: ../plugins/converter/converter.glade.h:45 -#: ../plugins/shellexecui/interface.c:61 -#: ../plugins/shellexecui/shellexec.glade.h:3 -msgid "Add" -msgstr "" - -#: ../plugins/gtkui/prefwin.c:358 -msgid "Global Hotkeys" -msgstr "" - -#: ../plugins/gtkui/prefwin.c:416 -msgid "Action" -msgstr "" - -#: ../plugins/gtkui/prefwin.c:417 -msgid "Key combination" -msgstr "" - -#: ../plugins/gtkui/progress.c:56 -msgid "Adding files..." -msgstr "" - -#: ../plugins/gtkui/progress.c:90 -msgid "Initializing..." -msgstr "" - -#: ../plugins/gtkui/trkproperties.c:161 -msgid "You've modified data for this track." -msgstr "" - -#: ../plugins/gtkui/trkproperties.c:163 -msgid "Really close the window?" -msgstr "" - -#. get value to edit -#: ../plugins/gtkui/trkproperties.c:279 -msgid "[Multiple values] " -msgstr "" - -#: ../plugins/gtkui/trkproperties.c:432 ../plugins/gtkui/trkproperties.c:444 -msgid "Key" -msgstr "" - -#: ../plugins/gtkui/trkproperties.c:433 ../plugins/gtkui/trkproperties.c:445 -msgid "Value" -msgstr "" - -#: ../plugins/gtkui/trkproperties.c:630 -msgid "Writing tags..." -msgstr "" - -#: ../plugins/gtkui/trkproperties.c:659 -msgid "Field name" -msgstr "" - -#: ../plugins/gtkui/trkproperties.c:662 -msgid "Name:" -msgstr "" - -#: ../plugins/gtkui/trkproperties.c:674 -msgid "Field names must not start with : or _" -msgstr "" - -#: ../plugins/gtkui/trkproperties.c:675 ../plugins/gtkui/trkproperties.c:714 -msgid "Cannot add field" -msgstr "" - -#: ../plugins/gtkui/trkproperties.c:713 -msgid "Field with such name already exists, please try different name." -msgstr "" - -#: ../plugins/gtkui/trkproperties.c:776 -msgid "Add field" -msgstr "" - -#: ../plugins/gtkui/trkproperties.c:779 -msgid "Remove field" -msgstr "" - -#: ../main.c:89 -#, c-format -msgid "Usage: deadbeef [options] [--] [file(s)]\n" -msgstr "" - -#: ../main.c:90 -#, c-format -msgid "Options:\n" -msgstr "" - -#: ../main.c:91 -#, c-format -msgid " --help or -h Print help (this message) and exit\n" -msgstr "" - -#: ../main.c:92 -#, c-format -msgid " --quit Quit player\n" -msgstr "" - -#: ../main.c:93 -#, c-format -msgid " --version Print version info and exit\n" -msgstr "" - -#: ../main.c:94 -#, c-format -msgid " --play Start playback\n" -msgstr "" - -#: ../main.c:95 -#, c-format -msgid " --stop Stop playback\n" -msgstr "" - -#: ../main.c:96 -#, c-format -msgid " --pause Pause playback\n" -msgstr "" - -#: ../main.c:97 -#, c-format -msgid " --toggle-pause Toggle pause\n" -msgstr "" - -#: ../main.c:98 -#, c-format -msgid "" -" --play-pause Start playback if stopped, toggle pause otherwise\n" -msgstr "" - -#: ../main.c:99 -#, c-format -msgid " --next Next song in playlist\n" -msgstr "" - -#: ../main.c:100 -#, c-format -msgid " --prev Previous song in playlist\n" -msgstr "" - -#: ../main.c:101 -#, c-format -msgid " --random Random song in playlist\n" -msgstr "" - -#: ../main.c:102 -#, c-format -msgid " --queue Append file(s) to existing playlist\n" -msgstr "" - -#: ../main.c:103 -#, c-format -msgid "" -" --gui PLUGIN Tells which GUI plugin to use, default is \"GTK2\"\n" -msgstr "" - -#: ../main.c:104 -#, c-format -msgid " --nowplaying FMT Print formatted track name to stdout\n" -msgstr "" - -#: ../main.c:105 -#, c-format -msgid "" -" FMT %%-syntax: [a]rtist, [t]itle, al[b]um,\n" -" [l]ength, track[n]umber, [y]ear, [c]omment,\n" -" copy[r]ight, [e]lapsed\n" -msgstr "" - -#: ../main.c:108 -#, c-format -msgid "" -" e.g.: --nowplaying \"%%a - %%t\" should print \"artist " -"- title\"\n" -msgstr "" - -#: ../main.c:109 -#, c-format -msgid "" -" for more info, see http://sourceforge.net/apps/" -"mediawiki/deadbeef/index.php?title=Title_Formatting\n" -msgstr "" - -#: ../playlist.c:463 ../playlist.c:2428 -msgid "Default" -msgstr "" - -#: ../playlist.c:3814 -msgid "Yes" -msgstr "" - -#: ../playlist.c:3814 -msgid "No" -msgstr "" - -#: ../plugins/gtkui/deadbeef.glade.h:73 -msgid "" -"Item Index\n" -"Playing\n" -"Album Art\n" -"Artist - Album\n" -"Artist\n" -"Album\n" -"Title\n" -"Duration\n" -"Track Number\n" -"Band / Album Artist\n" -"Custom" -msgstr "" - -#: ../plugins/gtkui/deadbeef.glade.h:86 -msgid "" -"Left\n" -"Right" -msgstr "" - -#: ../plugins/gtkui/deadbeef.glade.h:93 -msgid "" -"Disable\n" -"Track\n" -"Album" -msgstr "" - -#: ../plugins/gtkui/deadbeef.glade.h:156 -msgid "" -"Ascending\n" -"Descending" -msgstr "" - -#: ../plugins/gtkui/deadbeef.glade.h:168 -msgid "" -"2.3 (Recommended)\n" -"2.4" -msgstr "" - -#: ../plugins/gtkui/support.c:90 ../plugins/gtkui/support.c:114 -#: ../plugins/converter/support.c:90 ../plugins/converter/support.c:114 -#: ../plugins/shellexecui/support.c:90 ../plugins/shellexecui/support.c:114 -#, c-format -msgid "Couldn't find pixmap file: %s" -msgstr "" - -#: ../plugins/wildmidi/wildmidiplug.c:164 -#, c-format -msgid "" -"wildmidi: freepats config file not found. Please install timidity-freepats " -"package, or specify path to freepats.cfg in the plugin settings." -msgstr "" - -#. this file should list extra translatable strings that are not referenced -#. directly in source code, e.g. scripted plugin configuration strings -#: ../translation/extra.c:3 -msgid "Add audio CD" -msgstr "" - -#: ../translation/extra.c:4 -msgid "Lookup on Last.fm" -msgstr "" - -#. ALSA output plugin -#: ../translation/extra.c:6 -msgid "Use ALSA resampling" -msgstr "" - -#: ../translation/extra.c:7 -msgid "Release device while stopped" -msgstr "" - -#: ../translation/extra.c:8 ../translation/extra.c:55 -msgid "Preferred buffer size" -msgstr "" - -#: ../translation/extra.c:9 -msgid "Preferred period size" -msgstr "" - -#. Last.fm plugin -#: ../translation/extra.c:11 -msgid "Enable scrobbler" -msgstr "" - -#: ../translation/extra.c:12 -msgid "Disable nowplaying" -msgstr "" - -#: ../translation/extra.c:13 -msgid "Username" -msgstr "" - -#: ../translation/extra.c:14 -msgid "Password" -msgstr "" - -#: ../translation/extra.c:15 -msgid "Scrobble URL" -msgstr "" - -#: ../translation/extra.c:16 -msgid "Prefer Album Artist over Artist field" -msgstr "" - -#. OSS output plugin -#: ../translation/extra.c:18 -msgid "Device file" -msgstr "" - -#: ../translation/extra.c:19 -msgid "OSS4 samplerate bug workaround" -msgstr "" - -#. Album Artwork plugin -#: ../translation/extra.c:21 -msgid "Cache update period (hr)" -msgstr "" - -#: ../translation/extra.c:22 -msgid "Fetch from embedded tags" -msgstr "" - -#: ../translation/extra.c:23 -msgid "Fetch from local folder" -msgstr "" - -#: ../translation/extra.c:24 -msgid "Local cover file mask" -msgstr "" - -#: ../translation/extra.c:25 -msgid "Fetch from last.fm" -msgstr "" - -#: ../translation/extra.c:26 -msgid "Fetch from albumart.org" -msgstr "" - -#: ../translation/extra.c:27 -msgid "Scale artwork towards longer side" -msgstr "" - -#. Audio CD player -#: ../translation/extra.c:29 -msgid "Use CDDB/FreeDB" -msgstr "" - -#: ../translation/extra.c:30 -msgid "Prefer CD-Text over CDDB" -msgstr "" - -#: ../translation/extra.c:31 -msgid "CDDB url (e.g. 'freedb.org')" -msgstr "" - -#: ../translation/extra.c:32 -msgid "CDDB port number (e.g. '888')" -msgstr "" - -#: ../translation/extra.c:33 -msgid "Prefer CDDB protocol over HTTP" -msgstr "" - -#: ../translation/extra.c:34 -msgid "Enable NRG image support" -msgstr "" - -#. DUMB module player plugin -#: ../translation/extra.c:36 -msgid "Resampling quality (0..2, higher is better)" -msgstr "" - -#: ../translation/extra.c:37 -msgid "8-bit output (default is 16)" -msgstr "" - -#. Game_Music_Emu decoder plugin -#: ../translation/extra.c:39 -msgid "Max song length (in minutes)" -msgstr "" - -#: ../translation/extra.c:40 -msgid "Fadeout length (seconds)" -msgstr "" - -#: ../translation/extra.c:41 -msgid "Play loops nr. of times (if available)" -msgstr "" - -#. Standard GTK2 user interface plugin -#: ../translation/extra.c:43 -msgid "Ask confirmation to delete files from disk" -msgstr "" - -#: ../translation/extra.c:44 -msgid "Status icon volume control sensitivity" -msgstr "" - -#: ../translation/extra.c:45 -msgid "Custom status icon" -msgstr "" - -#: ../translation/extra.c:46 -msgid "Run gtk_init with --sync (debug mode)" -msgstr "" - -#: ../translation/extra.c:47 -msgid "Add separators between plugin context menu items" -msgstr "" - -#. OSD Notify plugin -#: ../translation/extra.c:49 -msgid "Notification title format" -msgstr "" - -#: ../translation/extra.c:50 -msgid "Notification content format" -msgstr "" - -#: ../translation/extra.c:51 -msgid "Show album art" -msgstr "" - -#: ../translation/extra.c:52 -msgid "Album art size (px)" -msgstr "" - -#. PulseAudio output plugin -#: ../translation/extra.c:54 -msgid "PulseAudio server" -msgstr "" - -#: ../translation/extra.c:56 -msgid "Samplerate" -msgstr "" - -#. SHN player plugin -#: ../translation/extra.c:58 -msgid "Relative seek table path" -msgstr "" - -#: ../translation/extra.c:59 -msgid "Absolute seek table path" -msgstr "" - -#: ../translation/extra.c:60 -msgid "Swap audio bytes (toggle if all you hear is static)" -msgstr "" - -#. SID decoder plugin -#: ../translation/extra.c:62 -msgid "Enable HVSC Songlength DB" -msgstr "" - -#: ../translation/extra.c:63 -msgid "Songlengths.txt (from HVSC)" -msgstr "" - -#: ../translation/extra.c:64 -msgid "Bits per sample (8 or 16)" -msgstr "" - -#: ../translation/extra.c:65 -msgid "Default song length (sec)" -msgstr "" - -#. WildMidi player plugin -#: ../translation/extra.c:67 -msgid "Timidity++ bank configuration file" -msgstr "" - -#: ../translation/extra.c:70 -msgid "Track Title" -msgstr "" - -#: ../translation/extra.c:71 -msgid "Performer" -msgstr "" - -#: ../translation/extra.c:76 -msgid "Total Tracks" -msgstr "" - -#: ../translation/extra.c:77 -msgid "Genre" -msgstr "" - -#: ../translation/extra.c:78 -msgid "Composer" -msgstr "" - -#: ../translation/extra.c:79 -msgid "Disc Number" -msgstr "" - -#: ../translation/extra.c:80 -msgid "Comment" -msgstr "" - -#: ../translation/extra.c:81 -msgid "Encoder / Vendor" -msgstr "" - -#: ../translation/extra.c:83 -msgid "Location" -msgstr "" - -#: ../translation/extra.c:84 -msgid "Subtrack Index" -msgstr "" - -#: ../translation/extra.c:85 -msgid "Tag Type(s)" -msgstr "" - -#: ../translation/extra.c:86 -msgid "Embedded Cuesheet" -msgstr "" - -#: ../translation/extra.c:87 -msgid "Codec" -msgstr "" - -#. FFmpeg deocder plugin -#: ../translation/extra.c:89 -msgid "File Extensions (separate with ';')" -msgstr "" - -#. Converter GUI -#: ../translation/extra.c:91 -msgid "Convert" -msgstr "" - -#. Resampler (Secret Rabbit Code) -#: ../translation/extra.c:93 -msgid "Target Samplerate" -msgstr "" - -#: ../translation/extra.c:94 -msgid "Quality / Algorithm" -msgstr "" - -#: ../translation/extra.c:95 -msgid "Automatic Samplerate (overrides Target Samplerate)" -msgstr "" - -#. shellexecui -#: ../translation/extra.c:97 -msgid "Configure custom shell commands" -msgstr "" - -#. mpgmad -#: ../translation/extra.c:99 -msgid "Disable gapless playback (faster scanning)" -msgstr "" - -#. adplug -#: ../translation/extra.c:101 -msgid "Prefer Ken emu over Satoh (surround won't work)" -msgstr "" - -#: ../translation/extra.c:102 -msgid "Enable surround" -msgstr "" - -#: ../plugins/converter/convgui.c:117 -msgid "The file already exists. Overwrite?" -msgstr "" - -#: ../plugins/converter/convgui.c:119 -msgid "Converter warning" -msgstr "" - -#: ../plugins/converter/convgui.c:285 -msgid "Please select encoder" -msgstr "" - -#: ../plugins/converter/convgui.c:287 -msgid "Converter error" -msgstr "" - -#: ../plugins/converter/convgui.c:311 -msgid "Converting..." -msgstr "" - -#: ../plugins/converter/convgui.c:473 -msgid "Select folder..." -msgstr "" - -#: ../plugins/converter/convgui.c:695 -msgid "Failed to save encoder preset" -msgstr "" - -#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 -msgid "" -"Check preset folder permissions, try to pick different title, or free up " -"some disk space" -msgstr "" - -#: ../plugins/converter/convgui.c:697 ../plugins/converter/convgui.c:1171 -msgid "Preset with the same name already exists. Try to pick another title." -msgstr "" - -#: ../plugins/converter/convgui.c:698 ../plugins/converter/convgui.c:1172 -msgid "Error" -msgstr "" - -#: ../plugins/converter/convgui.c:752 -msgid "Add new encoder" -msgstr "" - -#: ../plugins/converter/convgui.c:782 -msgid "Edit encoder" -msgstr "" - -#: ../plugins/converter/convgui.c:814 ../plugins/converter/convgui.c:1269 -msgid "Remove preset" -msgstr "" - -#: ../plugins/converter/convgui.c:816 ../plugins/converter/convgui.c:1271 -msgid "This action will delete the selected preset. Are you sure?" -msgstr "" - -#: ../plugins/converter/convgui.c:840 -msgid "Encoders" -msgstr "" - -#: ../plugins/converter/convgui.c:911 ../plugins/gtkui/dspconfig.c:186 -msgid "Add plugin to DSP chain" -msgstr "" - -#: ../plugins/converter/convgui.c:1170 -msgid "Failed to save DSP preset" -msgstr "" - -#: ../plugins/converter/convgui.c:1234 -msgid "New DSP Preset" -msgstr "" - -#: ../plugins/converter/convgui.c:1319 -msgid "Edit DSP Preset" -msgstr "" - -#: ../plugins/converter/convgui.c:1339 -msgid "DSP Presets" -msgstr "" - -#: ../plugins/converter/interface.c:92 -#: ../plugins/converter/converter.glade.h:1 -msgid "Output folder:" -msgstr "" - -#: ../plugins/converter/interface.c:109 -#: ../plugins/converter/converter.glade.h:2 -msgid "Write to source track folder" -msgstr "" - -#: ../plugins/converter/interface.c:113 -#: ../plugins/converter/converter.glade.h:3 -msgid "Preserve folder structure" -msgstr "" - -#: ../plugins/converter/interface.c:121 -#: ../plugins/converter/converter.glade.h:4 -msgid "Output file name:" -msgstr "" - -#: ../plugins/converter/interface.c:132 -#: ../plugins/converter/converter.glade.h:6 -#, no-c-format -msgid "" -"Extension (e.g. .mp3) will be appended automatically.\n" -"Leave the field empty for default (%a - %t)." -msgstr "" - -#: ../plugins/converter/interface.c:145 -#: ../plugins/converter/converter.glade.h:8 -msgid "Encoder:" -msgstr "" - -#: ../plugins/converter/interface.c:169 -#: ../plugins/converter/converter.glade.h:9 -msgid "DSP preset:" -msgstr "" - -#: ../plugins/converter/interface.c:192 -#: ../plugins/converter/converter.glade.h:10 -msgid "Number of threads:" -msgstr "" - -#: ../plugins/converter/interface.c:205 -#: ../plugins/converter/converter.glade.h:11 -msgid "Output sample format:" -msgstr "" - -#: ../plugins/converter/interface.c:212 -msgid "Keep source format" -msgstr "" - -#: ../plugins/converter/interface.c:213 -msgid "8 bit signed int" -msgstr "" - -#: ../plugins/converter/interface.c:214 -msgid "16 bit signed int" -msgstr "" - -#: ../plugins/converter/interface.c:215 -msgid "24 bit signed int" -msgstr "" - -#: ../plugins/converter/interface.c:216 -msgid "32 bit signed int" -msgstr "" - -#: ../plugins/converter/interface.c:217 -msgid "32 bit float" -msgstr "" - -#: ../plugins/converter/interface.c:223 -#: ../plugins/converter/converter.glade.h:18 -msgid "When file exists:" -msgstr "" - -#: ../plugins/converter/interface.c:230 -msgid "Prompt" -msgstr "" - -#: ../plugins/converter/interface.c:231 -msgid "Overwrite" -msgstr "" - -#: ../plugins/converter/interface.c:362 -#: ../plugins/converter/converter.glade.h:21 -msgid "Edit Encoder Preset" -msgstr "" - -#: ../plugins/converter/interface.c:385 -#: ../plugins/converter/converter.glade.h:23 -msgid "Untitled Encoder" -msgstr "" - -#: ../plugins/converter/interface.c:393 -#: ../plugins/converter/converter.glade.h:24 -msgid "Output file extension:" -msgstr "" - -#: ../plugins/converter/interface.c:400 -#: ../plugins/converter/converter.glade.h:25 -msgid "E.g. mp3" -msgstr "" - -#: ../plugins/converter/interface.c:408 -#: ../plugins/converter/converter.glade.h:26 -msgid "Command line:" -msgstr "" - -#: ../plugins/converter/interface.c:419 -#: ../plugins/converter/converter.glade.h:28 -#, no-c-format -msgid "" -"Example: lame - %o\n" -"%i for input file, %o for output file, - for stdin" -msgstr "" - -#: ../plugins/converter/interface.c:429 -#: ../plugins/converter/converter.glade.h:31 -#, no-c-format -msgid "" -"%o - output file name\n" -"%i - temporary input file name" -msgstr "" - -#: ../plugins/converter/interface.c:438 -#: ../plugins/converter/converter.glade.h:33 -msgid "Method:" -msgstr "" - -#: ../plugins/converter/interface.c:445 -msgid "Pipe" -msgstr "" - -#: ../plugins/converter/interface.c:446 -msgid "Temporary file" -msgstr "" - -#: ../plugins/converter/interface.c:463 -#: ../plugins/converter/converter.glade.h:36 -msgid "APEv2" -msgstr "" - -#: ../plugins/converter/interface.c:469 -#: ../plugins/converter/converter.glade.h:37 -msgid "ID3v1" -msgstr "" - -#: ../plugins/converter/interface.c:475 -#: ../plugins/converter/converter.glade.h:38 -msgid "OggVorbis" -msgstr "" - -#: ../plugins/converter/interface.c:481 -#: ../plugins/converter/converter.glade.h:39 -msgid "FLAC" -msgstr "" - -#: ../plugins/converter/interface.c:493 -#: ../plugins/converter/converter.glade.h:40 -msgid "ID3v2" -msgstr "" - -#: ../plugins/converter/interface.c:503 -#: ../plugins/converter/converter.glade.h:41 -msgid "Tag writer" -msgstr "" - -#: ../plugins/converter/interface.c:589 -#: ../plugins/converter/converter.glade.h:42 -msgid "DSP Preset Editor" -msgstr "" - -#: ../plugins/converter/interface.c:612 -#: ../plugins/converter/converter.glade.h:44 -msgid "Untitled DSP Preset" -msgstr "" - -#: ../plugins/converter/converter.glade.h:12 -msgid "" -"Keep source format\n" -"8 bit signed int\n" -"16 bit signed int\n" -"24 bit signed int\n" -"32 bit signed int\n" -"32 bit float" -msgstr "" - -#: ../plugins/converter/converter.glade.h:19 -msgid "" -"Prompt\n" -"Overwrite" -msgstr "" - -#: ../plugins/converter/converter.glade.h:34 -msgid "" -"Pipe\n" -"Temporary file" -msgstr "" - -#: ../plugins/shellexecui/interface.c:46 -#: ../plugins/shellexecui/shellexec.glade.h:1 -msgid "Custom Shell Commands" -msgstr "" - -#: ../plugins/shellexecui/interface.c:69 -#: ../plugins/shellexecui/shellexec.glade.h:5 -msgid "Edit" -msgstr "" - -#: ../plugins/shellexecui/interface.c:87 -#: ../plugins/shellexecui/shellexec.glade.h:2 -msgid "Close" -msgstr "" - -#: ../plugins/shellexecui/interface.c:145 -#: ../plugins/shellexecui/shellexec.glade.h:6 -msgid "Edit Command" -msgstr "" - -#: ../plugins/shellexecui/interface.c:166 -#: ../plugins/shellexecui/shellexec.glade.h:8 -msgid "Command:" -msgstr "" - -#: ../plugins/shellexecui/interface.c:178 -#: ../plugins/shellexecui/shellexec.glade.h:10 -#, no-c-format -msgid "" -"Arbitrary shell command. Will be executed in the shell context which the " -"main application was started from. Title formatting can be used. Example: " -"xdg-open %D" -msgstr "" - -#: ../plugins/shellexecui/interface.c:181 -#: ../plugins/shellexecui/shellexec.glade.h:11 -msgid "ID:" -msgstr "" - -#: ../plugins/shellexecui/interface.c:193 -#: ../plugins/shellexecui/shellexec.glade.h:12 -msgid "Free-form name, for example \"My Shell Command\"" -msgstr "" - -#: ../plugins/shellexecui/interface.c:201 -#: ../plugins/shellexecui/shellexec.glade.h:13 -msgid "" -"Command ID, normally it should be something short, for example \"youtube_open" -"\". It must be unique." -msgstr "" - -#: ../plugins/shellexecui/interface.c:204 -#: ../plugins/shellexecui/shellexec.glade.h:15 -msgid "Single Tracks" -msgstr "" - -#: ../plugins/shellexecui/interface.c:207 -#: ../plugins/shellexecui/shellexec.glade.h:14 -msgid "Works on single track." -msgstr "" - -#: ../plugins/shellexecui/interface.c:209 -#: ../plugins/shellexecui/shellexec.glade.h:17 -msgid "Multiple Tracks" -msgstr "" - -#: ../plugins/shellexecui/interface.c:212 -#: ../plugins/shellexecui/shellexec.glade.h:16 -msgid "Works on multiple tracks." -msgstr "" - -#: ../plugins/shellexecui/interface.c:214 -#: ../plugins/shellexecui/shellexec.glade.h:19 -msgid "Local" -msgstr "" - -#: ../plugins/shellexecui/interface.c:217 -#: ../plugins/shellexecui/shellexec.glade.h:18 -msgid "Works on local files." -msgstr "" - -#: ../plugins/shellexecui/interface.c:219 -#: ../plugins/shellexecui/shellexec.glade.h:21 -msgid "Remote" -msgstr "" - -#: ../plugins/shellexecui/interface.c:222 -#: ../plugins/shellexecui/shellexec.glade.h:20 -msgid "Works on remote files (e.g. http:// streams)" -msgstr "" - -#: ../plugins/shellexecui/interface.c:224 -#: ../plugins/shellexecui/shellexec.glade.h:23 -msgid "Playlist" -msgstr "" - -#: ../plugins/shellexecui/interface.c:227 -#: ../plugins/shellexecui/shellexec.glade.h:22 -msgid "Item should appear on the playlist tab context menu" -msgstr "" - -#: ../plugins/shellexecui/interface.c:229 -#: ../plugins/shellexecui/shellexec.glade.h:25 -msgid "Common" -msgstr "" - -#: ../plugins/shellexecui/interface.c:232 -#: ../plugins/shellexecui/shellexec.glade.h:24 -msgid "Item should appear in the main menu" -msgstr "" - -#: ../plugins/shellexecui/shellexecui.c:94 -msgid "Add Command" -msgstr "" - -#: ../plugins/shellexecui/shellexecui.c:137 -msgid "Delete" -msgstr "" - -#: ../plugins/shellexecui/shellexecui.c:139 -msgid "This action will delete the selected shell command. Are you sure?" -msgstr "" - -#: ../plugins/shellexecui/shellexecui.c:141 -msgid "Confirm Remove" -msgstr "" - -#: ../plugins/shellexecui/shellexecui.c:230 -msgid "ID must be non-empty and unique.\n" -msgstr "" - -#: ../plugins/shellexecui/shellexecui.c:236 -msgid "Title must be non-empty.\n" -msgstr "" - -#: ../plugins/shellexecui/shellexecui.c:242 -msgid "Shell Command must be non-empty.\n" -msgstr "" - -#: ../plugins/shellexecui/shellexecui.c:249 -#: ../plugins/shellexecui/shellexecui.c:253 -msgid "Invalid Values" -msgstr "" - -#: ../plugins/gtkui/smclient/eggdesktopfile.c:165 -#, c-format -msgid "File is not a valid .desktop file" -msgstr "" - -#. translators: 'Version' is from a desktop file, and -#. * should not be translated. '%s' would probably be a -#. * version number. -#: ../plugins/gtkui/smclient/eggdesktopfile.c:191 -#, c-format -msgid "Unrecognized desktop file Version '%s'" -msgstr "" - -#: ../plugins/gtkui/smclient/eggdesktopfile.c:974 -#, c-format -msgid "Starting %s" -msgstr "" - -#: ../plugins/gtkui/smclient/eggdesktopfile.c:1116 -#, c-format -msgid "Application does not accept documents on command line" -msgstr "" - -#: ../plugins/gtkui/smclient/eggdesktopfile.c:1184 -#, c-format -msgid "Unrecognized launch option: %d" -msgstr "" - -#. translators: The 'Type=Link' string is found in a -#. * desktop file, and should not be translated. -#: ../plugins/gtkui/smclient/eggdesktopfile.c:1391 -#, c-format -msgid "Can't pass document URIs to a 'Type=Link' desktop entry" -msgstr "" - -#: ../plugins/gtkui/smclient/eggdesktopfile.c:1412 -#, c-format -msgid "Not a launchable item" -msgstr "" - -#: ../plugins/gtkui/smclient/eggsmclient.c:226 -msgid "Disable connection to session manager" -msgstr "" - -#: ../plugins/gtkui/smclient/eggsmclient.c:229 -msgid "Specify file containing saved configuration" -msgstr "" - -#: ../plugins/gtkui/smclient/eggsmclient.c:229 -msgid "FILE" -msgstr "" - -#: ../plugins/gtkui/smclient/eggsmclient.c:232 -msgid "Specify session management ID" -msgstr "" - -#: ../plugins/gtkui/smclient/eggsmclient.c:232 -msgid "ID" -msgstr "" - -#: ../plugins/gtkui/smclient/eggsmclient.c:253 -msgid "Session management options:" -msgstr "" - -#: ../plugins/gtkui/smclient/eggsmclient.c:254 -msgid "Show session management options" -msgstr "" -- cgit v1.2.3 From cf99fd6ea3cd728fa643e7d34e6edbf026f0feb5 Mon Sep 17 00:00:00 2001 From: waker Date: Thu, 18 Oct 2012 22:27:37 +0200 Subject: wavpack: don't use channelmask from file, because of broken pcm format conversion --- plugins/wavpack/wavpack.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/plugins/wavpack/wavpack.c b/plugins/wavpack/wavpack.c index 7e81f5e9..c28478c9 100644 --- a/plugins/wavpack/wavpack.c +++ b/plugins/wavpack/wavpack.c @@ -162,7 +162,15 @@ wv_init (DB_fileinfo_t *_info, DB_playItem_t *it) { _info->fmt.channels = WavpackGetNumChannels (info->ctx); _info->fmt.samplerate = WavpackGetSampleRate (info->ctx); _info->fmt.is_float = (WavpackGetMode (info->ctx) & MODE_FLOAT) ? 1 : 0; - _info->fmt.channelmask = WavpackGetChannelMask (info->ctx); + + // FIXME: streamer and maybe output plugins need to be fixed to support + // arbitrary channelmask + + // _info->fmt.channelmask = WavpackGetChannelMask (info->ctx); + + for (int i = 0; i < _info->fmt.channels; i++) { + _info->fmt.channelmask |= 1 << i; + } _info->readpos = 0; if (it->endsample > 0) { info->startsample = it->startsample; -- cgit v1.2.3