diff -Nru libmatemixer-1.12.1/backends/alsa/alsa-backend.c libmatemixer-1.18.0/backends/alsa/alsa-backend.c --- libmatemixer-1.12.1/backends/alsa/alsa-backend.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/alsa/alsa-backend.c 2017-03-12 15:31:59.000000000 +0000 @@ -314,14 +314,16 @@ const gchar *id; gint ret; - /* The device may be already known, remove it if it's known and fails - * to be read, this happens for example when PulseAudio is killed */ + /* + * The device may be already known. + * + * Make sure it is removed from the list of devices if it fails to be + * read. This commonly happens with the "default" device, which is not + * reassigned by ALSA when the sound card is removed or the sound mixer + * quits. + */ ret = snd_ctl_open (&ctl, card, 0); if (ret < 0) { - g_warning ("Failed to open ALSA control for %s: %s", - card, - snd_strerror (ret)); - remove_device_by_name (alsa, card); return FALSE; } @@ -433,17 +435,23 @@ device = ALSA_DEVICE (item->data); - g_signal_handlers_disconnect_by_data (G_OBJECT (device), alsa); + g_signal_handlers_disconnect_by_func (G_OBJECT (device), + G_CALLBACK (remove_device), + alsa); + /* May emit removed signals */ if (alsa_device_is_open (device) == TRUE) alsa_device_close (device); + g_signal_handlers_disconnect_by_data (G_OBJECT (device), + alsa); + alsa->priv->devices = g_list_delete_link (alsa->priv->devices, item); g_hash_table_remove (alsa->priv->devices_ids, ALSA_DEVICE_GET_ID (device)); - /* The list may and may not have been invalidate by device signals */ + /* The list may have been invalidated by device signals */ free_stream_list (alsa); g_signal_emit_by_name (G_OBJECT (alsa), diff -Nru libmatemixer-1.12.1/backends/alsa/alsa-stream.c libmatemixer-1.18.0/backends/alsa/alsa-stream.c --- libmatemixer-1.12.1/backends/alsa/alsa-stream.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/alsa/alsa-stream.c 2017-03-12 15:31:59.000000000 +0000 @@ -20,6 +20,7 @@ #include #include +#include "alsa-device.h" #include "alsa-element.h" #include "alsa-stream.h" #include "alsa-stream-control.h" @@ -94,7 +95,12 @@ MateMixerDevice *device, MateMixerDirection direction) { - const gchar *label = mate_mixer_device_get_label (device); + const gchar *label; + + g_return_val_if_fail (name != NULL, NULL); + g_return_val_if_fail (ALSA_IS_DEVICE (device), NULL); + + label = mate_mixer_device_get_label (device); return g_object_new (ALSA_TYPE_STREAM, "name", name, diff -Nru libmatemixer-1.12.1/backends/alsa/alsa-stream-control.c libmatemixer-1.18.0/backends/alsa/alsa-stream-control.c --- libmatemixer-1.12.1/backends/alsa/alsa-stream-control.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/alsa/alsa-stream-control.c 2017-03-12 15:31:59.000000000 +0000 @@ -649,24 +649,32 @@ static guint alsa_stream_control_get_min_volume (MateMixerStreamControl *mmsc) { + g_return_val_if_fail (ALSA_IS_STREAM_CONTROL (mmsc), 0); + return ALSA_STREAM_CONTROL (mmsc)->priv->data.min; } static guint alsa_stream_control_get_max_volume (MateMixerStreamControl *mmsc) { + g_return_val_if_fail (ALSA_IS_STREAM_CONTROL (mmsc), 0); + return ALSA_STREAM_CONTROL (mmsc)->priv->data.max; } static guint alsa_stream_control_get_normal_volume (MateMixerStreamControl *mmsc) { + g_return_val_if_fail (ALSA_IS_STREAM_CONTROL (mmsc), 0); + return ALSA_STREAM_CONTROL (mmsc)->priv->data.max; } static guint alsa_stream_control_get_base_volume (MateMixerStreamControl *mmsc) { + g_return_val_if_fail (ALSA_IS_STREAM_CONTROL (mmsc), 0); + return ALSA_STREAM_CONTROL (mmsc)->priv->data.max; } diff -Nru libmatemixer-1.12.1/backends/alsa/alsa-stream-input-control.c libmatemixer-1.18.0/backends/alsa/alsa-stream-input-control.c --- libmatemixer-1.12.1/backends/alsa/alsa-stream-input-control.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/alsa/alsa-stream-input-control.c 2017-03-12 15:31:59.000000000 +0000 @@ -25,6 +25,7 @@ #include "alsa-compat.h" #include "alsa-constants.h" #include "alsa-element.h" +#include "alsa-stream.h" #include "alsa-stream-control.h" #include "alsa-stream-input-control.h" @@ -82,6 +83,11 @@ MateMixerStreamControlRole role, AlsaStream *stream) { + + g_return_val_if_fail (name != NULL, NULL); + g_return_val_if_fail (label != NULL, NULL); + g_return_val_if_fail (ALSA_IS_STREAM (stream), NULL); + return g_object_new (ALSA_TYPE_STREAM_INPUT_CONTROL, "name", name, "label", label, @@ -133,7 +139,7 @@ snd_mixer_elem_t *el; gint ret; - g_return_val_if_fail (ALSA_IS_STREAM_CONTROL (control), FALSE); + g_return_val_if_fail (ALSA_IS_STREAM_INPUT_CONTROL (control), FALSE); el = alsa_element_get_snd_element (ALSA_ELEMENT (control)); if G_UNLIKELY (el == NULL) @@ -154,7 +160,7 @@ snd_mixer_elem_t *el; gint ret; - g_return_val_if_fail (ALSA_IS_STREAM_CONTROL (control), FALSE); + g_return_val_if_fail (ALSA_IS_STREAM_INPUT_CONTROL (control), FALSE); el = alsa_element_get_snd_element (ALSA_ELEMENT (control)); if G_UNLIKELY (el == NULL) @@ -177,7 +183,7 @@ snd_mixer_elem_t *el; gint ret; - g_return_val_if_fail (ALSA_IS_STREAM_CONTROL (control), FALSE); + g_return_val_if_fail (ALSA_IS_STREAM_INPUT_CONTROL (control), FALSE); el = alsa_element_get_snd_element (ALSA_ELEMENT (control)); if G_UNLIKELY (el == NULL) @@ -202,7 +208,7 @@ glong value; gint ret; - g_return_val_if_fail (ALSA_IS_STREAM_CONTROL (control), FALSE); + g_return_val_if_fail (ALSA_IS_STREAM_INPUT_CONTROL (control), FALSE); el = alsa_element_get_snd_element (ALSA_ELEMENT (control)); if G_UNLIKELY (el == NULL) @@ -231,7 +237,7 @@ glong value; gint ret; - g_return_val_if_fail (ALSA_IS_STREAM_CONTROL (control), FALSE); + g_return_val_if_fail (ALSA_IS_STREAM_INPUT_CONTROL (control), FALSE); el = alsa_element_get_snd_element (ALSA_ELEMENT (control)); if G_UNLIKELY (el == NULL) diff -Nru libmatemixer-1.12.1/backends/alsa/alsa-stream-output-control.c libmatemixer-1.18.0/backends/alsa/alsa-stream-output-control.c --- libmatemixer-1.12.1/backends/alsa/alsa-stream-output-control.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/alsa/alsa-stream-output-control.c 2017-03-12 15:31:59.000000000 +0000 @@ -25,6 +25,7 @@ #include "alsa-compat.h" #include "alsa-constants.h" #include "alsa-element.h" +#include "alsa-stream.h" #include "alsa-stream-control.h" #include "alsa-stream-output-control.h" @@ -82,6 +83,10 @@ MateMixerStreamControlRole role, AlsaStream *stream) { + g_return_val_if_fail (name != NULL, NULL); + g_return_val_if_fail (label != NULL, NULL); + g_return_val_if_fail (ALSA_IS_STREAM (stream), NULL); + return g_object_new (ALSA_TYPE_STREAM_OUTPUT_CONTROL, "name", name, "label", label, @@ -133,7 +138,7 @@ snd_mixer_elem_t *el; gint ret; - g_return_val_if_fail (ALSA_IS_STREAM_CONTROL (control), FALSE); + g_return_val_if_fail (ALSA_IS_STREAM_OUTPUT_CONTROL (control), FALSE); el = alsa_element_get_snd_element (ALSA_ELEMENT (control)); if G_UNLIKELY (el == NULL) @@ -154,7 +159,7 @@ snd_mixer_elem_t *el; gint ret; - g_return_val_if_fail (ALSA_IS_STREAM_CONTROL (control), FALSE); + g_return_val_if_fail (ALSA_IS_STREAM_OUTPUT_CONTROL (control), FALSE); el = alsa_element_get_snd_element (ALSA_ELEMENT (control)); if G_UNLIKELY (el == NULL) @@ -177,7 +182,7 @@ snd_mixer_elem_t *el; gint ret; - g_return_val_if_fail (ALSA_IS_STREAM_CONTROL (control), FALSE); + g_return_val_if_fail (ALSA_IS_STREAM_OUTPUT_CONTROL (control), FALSE); el = alsa_element_get_snd_element (ALSA_ELEMENT (control)); if G_UNLIKELY (el == NULL) @@ -202,7 +207,7 @@ glong value; gint ret; - g_return_val_if_fail (ALSA_IS_STREAM_CONTROL (control), FALSE); + g_return_val_if_fail (ALSA_IS_STREAM_OUTPUT_CONTROL (control), FALSE); el = alsa_element_get_snd_element (ALSA_ELEMENT (control)); if G_UNLIKELY (el == NULL) @@ -231,7 +236,7 @@ glong value; gint ret; - g_return_val_if_fail (ALSA_IS_STREAM_CONTROL (control), FALSE); + g_return_val_if_fail (ALSA_IS_STREAM_OUTPUT_CONTROL (control), FALSE); el = alsa_element_get_snd_element (ALSA_ELEMENT (control)); if G_UNLIKELY (el == NULL) diff -Nru libmatemixer-1.12.1/backends/alsa/alsa-switch-option.c libmatemixer-1.18.0/backends/alsa/alsa-switch-option.c --- libmatemixer-1.12.1/backends/alsa/alsa-switch-option.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/alsa/alsa-switch-option.c 2017-03-12 15:31:59.000000000 +0000 @@ -54,6 +54,9 @@ { AlsaSwitchOption *option; + g_return_val_if_fail (name != NULL, NULL); + g_return_val_if_fail (label != NULL, NULL); + option = g_object_new (ALSA_TYPE_SWITCH_OPTION, "name", name, "label", label, diff -Nru libmatemixer-1.12.1/backends/alsa/alsa-toggle.c libmatemixer-1.18.0/backends/alsa/alsa-toggle.c --- libmatemixer-1.12.1/backends/alsa/alsa-toggle.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/alsa/alsa-toggle.c 2017-03-12 15:31:59.000000000 +0000 @@ -89,6 +89,12 @@ { AlsaToggle *toggle; + g_return_val_if_fail (ALSA_IS_STREAM (stream), NULL); + g_return_val_if_fail (name != NULL, NULL); + g_return_val_if_fail (label != NULL, NULL); + g_return_val_if_fail (ALSA_IS_SWITCH_OPTION (on), NULL); + g_return_val_if_fail (ALSA_IS_SWITCH_OPTION (off), NULL); + toggle = g_object_new (ALSA_TYPE_TOGGLE, "name", name, "label", label, @@ -166,6 +172,8 @@ gint ret; snd_mixer_selem_channel_id_t c; + g_return_val_if_fail (ALSA_IS_TOGGLE (element), FALSE); + toggle = ALSA_TOGGLE (element); if G_UNLIKELY (toggle->priv->element == NULL) diff -Nru libmatemixer-1.12.1/backends/alsa/Makefile.am libmatemixer-1.18.0/backends/alsa/Makefile.am --- libmatemixer-1.12.1/backends/alsa/Makefile.am 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/alsa/Makefile.am 2017-03-12 15:31:59.000000000 +0000 @@ -3,48 +3,48 @@ backend_LTLIBRARIES = libmatemixer-alsa.la AM_CPPFLAGS = \ - -Wno-unknown-pragmas \ - -I$(top_srcdir) \ - -DG_LOG_DOMAIN=\"libmatemixer-alsa\" + -Wno-unknown-pragmas \ + -I$(top_srcdir) \ + -DG_LOG_DOMAIN=\"libmatemixer-alsa\" libmatemixer_alsa_la_CFLAGS = \ - $(GLIB_CFLAGS) \ - $(ALSA_CFLAGS) + $(GLIB_CFLAGS) \ + $(ALSA_CFLAGS) libmatemixer_alsa_la_SOURCES = \ - alsa-backend.c \ - alsa-backend.h \ - alsa-compat.h \ - alsa-constants.c \ - alsa-constants.h \ - alsa-device.c \ - alsa-device.h \ - alsa-element.c \ - alsa-element.h \ - alsa-stream.c \ - alsa-stream.h \ - alsa-stream-control.c \ - alsa-stream-control.h \ - alsa-stream-input-control.c \ - alsa-stream-input-control.h \ - alsa-stream-output-control.c \ - alsa-stream-output-control.h \ - alsa-switch.c \ - alsa-switch.h \ - alsa-switch-option.c \ - alsa-switch-option.h \ - alsa-toggle.c \ - alsa-toggle.h \ - alsa-types.h + alsa-backend.c \ + alsa-backend.h \ + alsa-compat.h \ + alsa-constants.c \ + alsa-constants.h \ + alsa-device.c \ + alsa-device.h \ + alsa-element.c \ + alsa-element.h \ + alsa-stream.c \ + alsa-stream.h \ + alsa-stream-control.c \ + alsa-stream-control.h \ + alsa-stream-input-control.c \ + alsa-stream-input-control.h \ + alsa-stream-output-control.c \ + alsa-stream-output-control.h \ + alsa-switch.c \ + alsa-switch.h \ + alsa-switch-option.c \ + alsa-switch-option.h \ + alsa-toggle.c \ + alsa-toggle.h \ + alsa-types.h libmatemixer_alsa_la_LIBADD = \ - $(GLIB_LIBS) \ - $(ALSA_LIBS) + $(GLIB_LIBS) \ + $(ALSA_LIBS) libmatemixer_alsa_la_LDFLAGS = \ - -avoid-version \ - -no-undefined \ - -export-dynamic \ - -module + -avoid-version \ + -no-undefined \ + -export-dynamic \ + -module -include $(top_srcdir)/git.mk diff -Nru libmatemixer-1.12.1/backends/null/Makefile.am libmatemixer-1.18.0/backends/null/Makefile.am --- libmatemixer-1.12.1/backends/null/Makefile.am 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/null/Makefile.am 2017-03-12 15:31:59.000000000 +0000 @@ -3,22 +3,22 @@ backend_LTLIBRARIES = libmatemixer-null.la AM_CPPFLAGS = \ - -Wno-unknown-pragmas \ - -I$(top_srcdir) \ - -DG_LOG_DOMAIN=\"libmatemixer-null\" + -Wno-unknown-pragmas \ + -I$(top_srcdir) \ + -DG_LOG_DOMAIN=\"libmatemixer-null\" libmatemixer_null_la_CFLAGS = $(GLIB_CFLAGS) libmatemixer_null_la_SOURCES = \ - null-backend.c \ - null-backend.h + null-backend.c \ + null-backend.h libmatemixer_null_la_LIBADD = $(GLIB_LIBS) libmatemixer_null_la_LDFLAGS = \ - -avoid-version \ - -no-undefined \ - -export-dynamic \ - -module + -avoid-version \ + -no-undefined \ + -export-dynamic \ + -module -include $(top_srcdir)/git.mk diff -Nru libmatemixer-1.12.1/backends/oss/Makefile.am libmatemixer-1.18.0/backends/oss/Makefile.am --- libmatemixer-1.12.1/backends/oss/Makefile.am 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/oss/Makefile.am 2017-03-12 15:31:59.000000000 +0000 @@ -3,38 +3,38 @@ backend_LTLIBRARIES = libmatemixer-oss.la AM_CPPFLAGS = \ - -Wno-unknown-pragmas \ - -I$(top_srcdir) \ - -DG_LOG_DOMAIN=\"libmatemixer-oss\" + -Wno-unknown-pragmas \ + -I$(top_srcdir) \ + -DG_LOG_DOMAIN=\"libmatemixer-oss\" libmatemixer_oss_la_CFLAGS = \ - $(GLIB_CFLAGS) \ - $(OSS_CFLAGS) + $(GLIB_CFLAGS) \ + $(OSS_CFLAGS) libmatemixer_oss_la_SOURCES = \ - oss-common.h \ - oss-backend.c \ - oss-backend.h \ - oss-device.c \ - oss-device.h \ - oss-stream.c \ - oss-stream.h \ - oss-stream-control.c \ - oss-stream-control.h \ - oss-switch.c \ - oss-switch.h \ - oss-switch-option.c \ - oss-switch-option.h \ - oss-types.h + oss-common.h \ + oss-backend.c \ + oss-backend.h \ + oss-device.c \ + oss-device.h \ + oss-stream.c \ + oss-stream.h \ + oss-stream-control.c \ + oss-stream-control.h \ + oss-switch.c \ + oss-switch.h \ + oss-switch-option.c \ + oss-switch-option.h \ + oss-types.h libmatemixer_oss_la_LIBADD = \ - $(GLIB_LIBS) \ - $(OSS_LIBS) + $(GLIB_LIBS) \ + $(OSS_LIBS) libmatemixer_oss_la_LDFLAGS = \ - -avoid-version \ - -no-undefined \ - -export-dynamic \ - -module + -avoid-version \ + -no-undefined \ + -export-dynamic \ + -module -include $(top_srcdir)/git.mk diff -Nru libmatemixer-1.12.1/backends/oss/oss-backend.c libmatemixer-1.18.0/backends/oss/oss-backend.c --- libmatemixer-1.12.1/backends/oss/oss-backend.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/oss/oss-backend.c 2017-03-12 15:31:59.000000000 +0000 @@ -298,7 +298,7 @@ for (i = 0; i < OSS_MAX_DEVICES; i++) { gchar *path; - gboolean added_current = FALSE; + gboolean added_current; path = g_strdup_printf ("/dev/mixer%i", i); @@ -333,6 +333,8 @@ gchar *bname; gchar *label; + *added = FALSE; + fd = g_open (path, O_RDWR, 0); if (fd == -1) { if (errno != ENOENT && errno != ENXIO) @@ -360,11 +362,13 @@ close (fd); - if ((*added = oss_device_open (device)) == TRUE) - add_device (oss, device); - else - g_object_unref (device); - + if G_LIKELY (device != NULL) { + *added = oss_device_open (device); + if (*added == TRUE) + add_device (oss, device); + else + g_object_unref (device); + } return *added; } @@ -537,11 +541,11 @@ G_CALLBACK (remove_device), oss); + /* May emit removed signals */ if (oss_device_is_open (device) == TRUE) oss_device_close (device); - g_signal_handlers_disconnect_by_func (G_OBJECT (device), - G_CALLBACK (remove_stream), + g_signal_handlers_disconnect_by_data (G_OBJECT (device), oss); oss->priv->devices = g_list_delete_link (oss->priv->devices, item); @@ -554,7 +558,7 @@ oss->priv->default_device = NULL; } - /* The list may and may not have been invalidate by device signals */ + /* The list may have been invalidated by device signals */ free_stream_list (oss); g_signal_emit_by_name (G_OBJECT (oss), diff -Nru libmatemixer-1.12.1/backends/oss/oss-device.c libmatemixer-1.18.0/backends/oss/oss-device.c --- libmatemixer-1.12.1/backends/oss/oss-device.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/oss/oss-device.c 2017-03-12 15:31:59.000000000 +0000 @@ -274,18 +274,26 @@ gint fd) { OssDevice *device; + gint newfd; g_return_val_if_fail (name != NULL, NULL); g_return_val_if_fail (label != NULL, NULL); g_return_val_if_fail (path != NULL, NULL); + newfd = dup (fd); + if (newfd == -1) { + g_warning ("Failed to duplicate file descriptor: %s", + g_strerror (errno)); + return NULL; + } + device = g_object_new (OSS_TYPE_DEVICE, "name", name, "label", label, "icon", OSS_DEVICE_ICON, NULL); - device->priv->fd = dup (fd); + device->priv->fd = newfd; device->priv->path = g_strdup (path); return device; @@ -584,6 +592,8 @@ device->priv->fd, i, stereo); + if G_UNLIKELY (control == NULL) + continue; if (oss_stream_has_controls (stream) == FALSE) { const gchar *name = diff -Nru libmatemixer-1.12.1/backends/oss/oss-stream.c libmatemixer-1.18.0/backends/oss/oss-stream.c --- libmatemixer-1.12.1/backends/oss/oss-stream.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/oss/oss-stream.c 2017-03-12 15:31:59.000000000 +0000 @@ -21,6 +21,7 @@ #include #include +#include "oss-device.h" #include "oss-stream.h" #include "oss-stream-control.h" #include "oss-switch.h" @@ -93,7 +94,12 @@ MateMixerDevice *device, MateMixerDirection direction) { - const gchar *label = mate_mixer_device_get_label (device); + const gchar *label; + + g_return_val_if_fail (name != NULL, NULL); + g_return_val_if_fail (OSS_IS_DEVICE (device), NULL); + + label = mate_mixer_device_get_label (device); return g_object_new (OSS_TYPE_STREAM, "name", name, @@ -208,6 +214,8 @@ _("Connector"), fd, options); + if G_UNLIKELY (stream->priv->swtch == NULL) + return; /* Read the active selection */ oss_switch_load (stream->priv->swtch); diff -Nru libmatemixer-1.12.1/backends/oss/oss-stream-control.c libmatemixer-1.18.0/backends/oss/oss-stream-control.c --- libmatemixer-1.12.1/backends/oss/oss-stream-control.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/oss/oss-stream-control.c 2017-03-12 15:31:59.000000000 +0000 @@ -24,12 +24,17 @@ #include #include "oss-common.h" +#include "oss-stream.h" #include "oss-stream-control.h" +#define LEFT_CHANNEL 0 +#define RIGHT_CHANNEL 1 + #define OSS_VOLUME_JOIN(left,right) (((left) & 0xFF) | (((right) & 0xFF) << 8)) #define OSS_VOLUME_JOIN_SAME(volume) (OSS_VOLUME_JOIN ((volume), (volume))) -#define OSS_VOLUME_JOIN_ARRAY(volume) (OSS_VOLUME_JOIN ((volume[0]), (volume[1]))) +#define OSS_VOLUME_JOIN_ARRAY(volume) (OSS_VOLUME_JOIN ((volume[LEFT_CHANNEL]), \ + (volume[RIGHT_CHANNEL]))) #define OSS_VOLUME_TAKE_LEFT(volume) ((volume) & 0xFF) #define OSS_VOLUME_TAKE_RIGHT(volume) (((volume) >> 8) & 0xFF) @@ -74,9 +79,12 @@ static guint oss_stream_control_get_normal_volume (MateMixerStreamControl *mmsc); static guint oss_stream_control_get_base_volume (MateMixerStreamControl *mmsc); -static void read_balance (OssStreamControl *control); +static void store_volume (OssStreamControl *control, + gint volume); + +static void update_balance (OssStreamControl *control); -static gboolean write_and_set_volume (OssStreamControl *control, +static gboolean write_and_store_volume (OssStreamControl *control, gint volume); static void @@ -136,10 +144,19 @@ gboolean stereo) { OssStreamControl *control; + gint newfd; MateMixerStreamControlFlags flags; g_return_val_if_fail (name != NULL, NULL); g_return_val_if_fail (label != NULL, NULL); + g_return_val_if_fail (OSS_IS_STREAM (stream), NULL); + + newfd = dup (fd); + if (newfd == -1) { + g_warning ("Failed to duplicate file descriptor: %s", + g_strerror (errno)); + return NULL; + } flags = MATE_MIXER_STREAM_CONTROL_VOLUME_READABLE | MATE_MIXER_STREAM_CONTROL_VOLUME_WRITABLE; @@ -154,7 +171,7 @@ "stream", stream, NULL); - control->priv->fd = fd; + control->priv->fd = newfd; control->priv->devnum = devnum; control->priv->stereo = stereo; return control; @@ -182,16 +199,7 @@ if (ret == -1) return; - if (v != OSS_VOLUME_JOIN_ARRAY (control->priv->volume)) { - control->priv->volume[0] = OSS_VOLUME_TAKE_LEFT (v); - if (control->priv->stereo == TRUE) - control->priv->volume[1] = OSS_VOLUME_TAKE_RIGHT (v); - - g_object_notify (G_OBJECT (control), "volume"); - } - - if (control->priv->stereo == TRUE) - read_balance (control); + store_volume (control, v); } void @@ -224,9 +232,10 @@ control = OSS_STREAM_CONTROL (mmsc); if (control->priv->stereo == TRUE) - return MAX (control->priv->volume[0], control->priv->volume[1]); + return MAX (control->priv->volume[LEFT_CHANNEL], + control->priv->volume[RIGHT_CHANNEL]); else - return control->priv->volume[0]; + return control->priv->volume[LEFT_CHANNEL]; } static gboolean @@ -241,7 +250,7 @@ if G_UNLIKELY (control->priv->fd == -1) return FALSE; - return write_and_set_volume (control, OSS_VOLUME_JOIN_SAME (CLAMP (volume, 0, 100))); + return write_and_store_volume (control, OSS_VOLUME_JOIN_SAME (CLAMP (volume, 0, 100))); } static guint @@ -254,11 +263,11 @@ control = OSS_STREAM_CONTROL (mmsc); if (control->priv->stereo == TRUE) { - if (channel == 0 || channel == 1) + if (channel == LEFT_CHANNEL || channel == RIGHT_CHANNEL) return control->priv->volume[channel]; } else { - if (channel == 0) - return control->priv->volume[0]; + if (channel == LEFT_CHANNEL) + return control->priv->volume[LEFT_CHANNEL]; } return 0; } @@ -277,23 +286,18 @@ if G_UNLIKELY (control->priv->fd == -1) return FALSE; - if (channel > 1 || (control->priv->stereo == FALSE && channel > 0)) + + if (channel != LEFT_CHANNEL && + (control->priv->stereo == FALSE || channel != RIGHT_CHANNEL)) return FALSE; volume = CLAMP (volume, 0, 100); + if (channel == LEFT_CHANNEL) + v = OSS_VOLUME_JOIN (volume, control->priv->volume[RIGHT_CHANNEL]); + else + v = OSS_VOLUME_JOIN (control->priv->volume[LEFT_CHANNEL], volume); - if (control->priv->stereo == TRUE) { - /* Stereo channel volume - left channel is in the lower 8 bits and - * right channel is in the higher 8 bits */ - if (channel == 0) - v = OSS_VOLUME_JOIN (volume, control->priv->volume[1]); - else - v = OSS_VOLUME_JOIN (control->priv->volume[0], volume); - } else { - /* Single channel volume - only lower 8 bits are used */ - v = volume; - } - return write_and_set_volume (control, v); + return write_and_store_volume (control, v); } static MateMixerChannelPosition @@ -306,12 +310,12 @@ control = OSS_STREAM_CONTROL (mmsc); if (control->priv->stereo == TRUE) { - if (channel == 0) + if (channel == LEFT_CHANNEL) return MATE_MIXER_CHANNEL_FRONT_LEFT; - else if (channel == 1) + else if (channel == RIGHT_CHANNEL) return MATE_MIXER_CHANNEL_FRONT_RIGHT; } else { - if (channel == 0) + if (channel == LEFT_CHANNEL) return MATE_MIXER_CHANNEL_MONO; } return MATE_MIXER_CHANNEL_UNKNOWN; @@ -347,15 +351,16 @@ if G_UNLIKELY (control->priv->fd == -1) return FALSE; - max = MAX (control->priv->volume[0], control->priv->volume[1]); + max = MAX (control->priv->volume[LEFT_CHANNEL], + control->priv->volume[RIGHT_CHANNEL]); if (balance <= 0) { - volume[1] = (balance + 1.0f) * max; - volume[0] = max; + volume[RIGHT_CHANNEL] = (balance + 1.0f) * max; + volume[LEFT_CHANNEL] = max; } else { - volume[0] = (1.0f - balance) * max; - volume[1] = max; + volume[LEFT_CHANNEL] = (1.0f - balance) * max; + volume[RIGHT_CHANNEL] = max; } - return write_and_set_volume (control, OSS_VOLUME_JOIN_ARRAY (volume)); + return write_and_store_volume (control, OSS_VOLUME_JOIN_ARRAY (volume)); } static guint @@ -367,27 +372,65 @@ static guint oss_stream_control_get_max_volume (MateMixerStreamControl *mmsc) { + g_return_val_if_fail (OSS_IS_STREAM_CONTROL (mmsc), 0); + return 100; } static guint oss_stream_control_get_normal_volume (MateMixerStreamControl *mmsc) { + g_return_val_if_fail (OSS_IS_STREAM_CONTROL (mmsc), 0); + return 100; } static guint oss_stream_control_get_base_volume (MateMixerStreamControl *mmsc) { + g_return_val_if_fail (OSS_IS_STREAM_CONTROL (mmsc), 0); + return 100; } static void -read_balance (OssStreamControl *control) +store_volume (OssStreamControl *control, gint volume) +{ + if (control->priv->stereo == TRUE) { + if (volume == OSS_VOLUME_JOIN_ARRAY (control->priv->volume)) + return; + + control->priv->volume[LEFT_CHANNEL] = OSS_VOLUME_TAKE_LEFT (volume); + control->priv->volume[RIGHT_CHANNEL] = OSS_VOLUME_TAKE_RIGHT (volume); + + g_object_freeze_notify (G_OBJECT (control)); + + g_object_notify (G_OBJECT (control), "volume"); + + /* Emits signal if balance has changed */ + update_balance (control); + + g_object_thaw_notify (G_OBJECT (control)); + } else { + volume = OSS_VOLUME_TAKE_LEFT (volume); + if (volume == control->priv->volume[LEFT_CHANNEL]) + return; + + control->priv->volume[LEFT_CHANNEL] = volume; + + g_object_notify (G_OBJECT (control), "volume"); + } +} + +static void +update_balance (OssStreamControl *control) { gfloat balance; - guint left = control->priv->volume[0]; - guint right = control->priv->volume[1]; + guint left; + guint right; + + left = control->priv->volume[LEFT_CHANNEL]; + right = control->priv->volume[RIGHT_CHANNEL]; if (left == right) balance = 0.0f; @@ -401,7 +444,7 @@ } static gboolean -write_and_set_volume (OssStreamControl *control, gint volume) +write_and_store_volume (OssStreamControl *control, gint volume) { gint ret; @@ -409,18 +452,11 @@ if (volume == OSS_VOLUME_JOIN_ARRAY (control->priv->volume)) return TRUE; + /* The ioctl might also change the passed volume */ ret = ioctl (control->priv->fd, MIXER_WRITE (control->priv->devnum), &volume); if (ret == -1) return FALSE; - oss_stream_control_load (control); - return TRUE; - - /* The ioctl may make adjustments to the passed volume, so make sure we have - * the correct value saved */ - control->priv->volume[0] = OSS_VOLUME_TAKE_LEFT (volume); - control->priv->volume[1] = OSS_VOLUME_TAKE_RIGHT (volume); - - g_object_notify (G_OBJECT (control), "volume"); + store_volume (control, volume & 0xFFFF); return TRUE; } diff -Nru libmatemixer-1.12.1/backends/oss/oss-switch.c libmatemixer-1.18.0/backends/oss/oss-switch.c --- libmatemixer-1.12.1/backends/oss/oss-switch.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/oss/oss-switch.c 2017-03-12 15:31:59.000000000 +0000 @@ -107,13 +107,20 @@ GList *options) { OssSwitch *swtch; + gint newfd; g_return_val_if_fail (OSS_IS_STREAM (stream), NULL); g_return_val_if_fail (name != NULL, NULL); g_return_val_if_fail (label != NULL, NULL); - g_return_val_if_fail (fd != -1, NULL); g_return_val_if_fail (options != NULL, NULL); + newfd = dup (fd); + if (newfd == -1) { + g_warning ("Failed to duplicate file descriptor: %s", + g_strerror (errno)); + return NULL; + } + swtch = g_object_new (OSS_TYPE_SWITCH, "name", name, "label", label, @@ -122,7 +129,7 @@ NULL); /* Takes ownership of options */ - swtch->priv->fd = dup (fd); + swtch->priv->fd = newfd; swtch->priv->options = options; return swtch; diff -Nru libmatemixer-1.12.1/backends/oss/oss-switch-option.c libmatemixer-1.18.0/backends/oss/oss-switch-option.c --- libmatemixer-1.12.1/backends/oss/oss-switch-option.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/oss/oss-switch-option.c 2017-03-12 15:31:59.000000000 +0000 @@ -53,6 +53,9 @@ { OssSwitchOption *option; + g_return_val_if_fail (name != NULL, NULL); + g_return_val_if_fail (label != NULL, NULL); + option = g_object_new (OSS_TYPE_SWITCH_OPTION, "name", name, "label", label, diff -Nru libmatemixer-1.12.1/backends/pulse/Makefile.am libmatemixer-1.18.0/backends/pulse/Makefile.am --- libmatemixer-1.12.1/backends/pulse/Makefile.am 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/Makefile.am 2017-03-12 15:31:59.000000000 +0000 @@ -3,68 +3,68 @@ backend_LTLIBRARIES = libmatemixer-pulse.la AM_CPPFLAGS = \ - -Wno-unknown-pragmas \ - -I$(top_srcdir) \ - -DG_LOG_DOMAIN=\"libmatemixer-pulse\" + -Wno-unknown-pragmas \ + -I$(top_srcdir) \ + -DG_LOG_DOMAIN=\"libmatemixer-pulse\" libmatemixer_pulse_la_CFLAGS = \ - $(GLIB_CFLAGS) \ - $(PULSEAUDIO_CFLAGS) + $(GLIB_CFLAGS) \ + $(PULSEAUDIO_CFLAGS) libmatemixer_pulse_la_SOURCES = \ - pulse-backend.c \ - pulse-backend.h \ - pulse-connection.c \ - pulse-connection.h \ - pulse-device.c \ - pulse-device.h \ - pulse-device-profile.c \ - pulse-device-profile.h \ - pulse-device-switch.c \ - pulse-device-switch.h \ - pulse-enums.h \ - pulse-enum-types.c \ - pulse-enum-types.h \ - pulse-ext-stream.c \ - pulse-ext-stream.h \ - pulse-helpers.c \ - pulse-helpers.h \ - pulse-monitor.c \ - pulse-monitor.h \ - pulse-port.c \ - pulse-port.h \ - pulse-port-switch.c \ - pulse-port-switch.h \ - pulse-stream.c \ - pulse-stream.h \ - pulse-stream-control.c \ - pulse-stream-control.h \ - pulse-sink.c \ - pulse-sink.h \ - pulse-sink-control.c \ - pulse-sink-control.h \ - pulse-sink-input.c \ - pulse-sink-input.h \ - pulse-sink-switch.c \ - pulse-sink-switch.h \ - pulse-source.c \ - pulse-source.h \ - pulse-source-control.c \ - pulse-source-control.h \ - pulse-source-output.c \ - pulse-source-output.h \ - pulse-source-switch.c \ - pulse-source-switch.h \ - pulse-types.h + pulse-backend.c \ + pulse-backend.h \ + pulse-connection.c \ + pulse-connection.h \ + pulse-device.c \ + pulse-device.h \ + pulse-device-profile.c \ + pulse-device-profile.h \ + pulse-device-switch.c \ + pulse-device-switch.h \ + pulse-enums.h \ + pulse-enum-types.c \ + pulse-enum-types.h \ + pulse-ext-stream.c \ + pulse-ext-stream.h \ + pulse-helpers.c \ + pulse-helpers.h \ + pulse-monitor.c \ + pulse-monitor.h \ + pulse-port.c \ + pulse-port.h \ + pulse-port-switch.c \ + pulse-port-switch.h \ + pulse-stream.c \ + pulse-stream.h \ + pulse-stream-control.c \ + pulse-stream-control.h \ + pulse-sink.c \ + pulse-sink.h \ + pulse-sink-control.c \ + pulse-sink-control.h \ + pulse-sink-input.c \ + pulse-sink-input.h \ + pulse-sink-switch.c \ + pulse-sink-switch.h \ + pulse-source.c \ + pulse-source.h \ + pulse-source-control.c \ + pulse-source-control.h \ + pulse-source-output.c \ + pulse-source-output.h \ + pulse-source-switch.c \ + pulse-source-switch.h \ + pulse-types.h libmatemixer_pulse_la_LIBADD = \ - $(GLIB_LIBS) \ - $(PULSEAUDIO_LIBS) + $(GLIB_LIBS) \ + $(PULSEAUDIO_LIBS) libmatemixer_pulse_la_LDFLAGS = \ - -avoid-version \ - -no-undefined \ - -export-dynamic \ - -module + -avoid-version \ + -no-undefined \ + -export-dynamic \ + -module -include $(top_srcdir)/git.mk diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-backend.c libmatemixer-1.18.0/backends/pulse/pulse-backend.c --- libmatemixer-1.12.1/backends/pulse/pulse-backend.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-backend.c 2017-03-12 15:31:59.000000000 +0000 @@ -692,11 +692,13 @@ compare_stream_names, (gpointer) info->default_source_name); - /* It is possible that we are unaware of the default stream, either - * because the stream details have not arrived yet, or because we chose - * to ignore the stream. - * When this happens, remember the name of the stream and wait for the - * stream info callback. */ + /* + * It is possible that we are unaware of the default stream as + * the stream details might not have arrived yet. + * + * When this happens, remember the name of the stream and wait for + * the stream info callback. + */ if (stream != NULL) { PULSE_SET_DEFAULT_SOURCE (pulse, stream); PULSE_SET_PENDING_SOURCE_NULL (pulse); @@ -705,12 +707,10 @@ info->default_source_name); PULSE_SET_PENDING_SOURCE (pulse, info->default_source_name); - PULSE_SET_DEFAULT_SOURCE (pulse, NULL); /* In most cases (for example changing profile) the stream info - * arrives by itself, but do not rely on it and request it explicitely. - * In the meantime, keep the default stream set to NULL, which is - * important as we cannot guarantee that the info arrives and we use it. */ + * arrives by itself, but do not rely on it and request it + * explicitly */ pulse_connection_load_source_info_name (pulse->priv->connection, info->default_source_name); } @@ -728,11 +728,13 @@ compare_stream_names, (gpointer) info->default_sink_name); - /* It is possible that we are unaware of the default stream, either - * because the stream details have not arrived yet, or because we chose - * to ignore the stream. - * When this happens, remember the name of the stream and wait for the - * stream info callback. */ + /* + * It is possible that we are unaware of the default stream as + * the stream details might not have arrived yet. + * + * When this happens, remember the name of the stream and wait for + * the stream info callback. + */ if (stream != NULL) { PULSE_SET_DEFAULT_SINK (pulse, stream); PULSE_SET_PENDING_SINK_NULL (pulse); @@ -741,12 +743,10 @@ info->default_sink_name); PULSE_SET_PENDING_SINK (pulse, info->default_sink_name); - PULSE_SET_DEFAULT_SINK (pulse, NULL); /* In most cases (for example changing profile) the stream info - * arrives by itself, but do not rely on it and request it explicitely. - * In the meantime, keep the default stream set to NULL, which is - * important as we cannot guarantee that the info arrives and we use it. */ + * arrives by itself, but do not rely on it and request it + * explicitly */ pulse_connection_load_sink_info_name (pulse->priv->connection, info->default_sink_name); } diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-connection.c libmatemixer-1.18.0/backends/pulse/pulse-connection.c --- libmatemixer-1.12.1/backends/pulse/pulse-connection.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-connection.c 2017-03-12 15:31:59.000000000 +0000 @@ -786,6 +786,7 @@ pa_operation *op; g_return_val_if_fail (PULSE_IS_CONNECTION (connection), FALSE); + g_return_val_if_fail (name != NULL, FALSE); if (connection->priv->state != PULSE_CONNECTION_CONNECTED) return FALSE; @@ -804,6 +805,7 @@ pa_operation *op; g_return_val_if_fail (PULSE_IS_CONNECTION (connection), FALSE); + g_return_val_if_fail (name != NULL, FALSE); if (connection->priv->state != PULSE_CONNECTION_CONNECTED) return FALSE; @@ -823,6 +825,8 @@ pa_operation *op; g_return_val_if_fail (PULSE_IS_CONNECTION (connection), FALSE); + g_return_val_if_fail (card != NULL, FALSE); + g_return_val_if_fail (profile != NULL, FALSE); if (connection->priv->state != PULSE_CONNECTION_CONNECTED) return FALSE; @@ -863,6 +867,7 @@ pa_operation *op; g_return_val_if_fail (PULSE_IS_CONNECTION (connection), FALSE); + g_return_val_if_fail (volume != NULL, FALSE); if (connection->priv->state != PULSE_CONNECTION_CONNECTED) return FALSE; @@ -883,6 +888,7 @@ pa_operation *op; g_return_val_if_fail (PULSE_IS_CONNECTION (connection), FALSE); + g_return_val_if_fail (port != NULL, FALSE); if (connection->priv->state != PULSE_CONNECTION_CONNECTED) return FALSE; @@ -923,6 +929,7 @@ pa_operation *op; g_return_val_if_fail (PULSE_IS_CONNECTION (connection), FALSE); + g_return_val_if_fail (volume != NULL, FALSE); if (connection->priv->state != PULSE_CONNECTION_CONNECTED) return FALSE; @@ -963,6 +970,7 @@ pa_operation *op; g_return_val_if_fail (PULSE_IS_CONNECTION (connection), FALSE); + g_return_val_if_fail (volume != NULL, FALSE); if (connection->priv->state != PULSE_CONNECTION_CONNECTED) return FALSE; @@ -983,6 +991,7 @@ pa_operation *op; g_return_val_if_fail (PULSE_IS_CONNECTION (connection), FALSE); + g_return_val_if_fail (port != NULL, FALSE); if (connection->priv->state != PULSE_CONNECTION_CONNECTED) return FALSE; @@ -1000,7 +1009,6 @@ guint32 index, gboolean mute) { -#if PA_CHECK_VERSION(1, 0, 0) pa_operation *op; g_return_val_if_fail (PULSE_IS_CONNECTION (connection), FALSE); @@ -1014,9 +1022,6 @@ NULL, NULL); return process_pulse_operation (connection, op); -#else - return FALSE; -#endif } gboolean @@ -1024,10 +1029,10 @@ guint32 index, const pa_cvolume *volume) { -#if PA_CHECK_VERSION(1, 0, 0) pa_operation *op; g_return_val_if_fail (PULSE_IS_CONNECTION (connection), FALSE); + g_return_val_if_fail (volume != NULL, FALSE); if (connection->priv->state != PULSE_CONNECTION_CONNECTED) return FALSE; @@ -1038,9 +1043,6 @@ NULL, NULL); return process_pulse_operation (connection, op); -#else - return FALSE; -#endif } gboolean @@ -1166,6 +1168,7 @@ pa_operation *op; g_return_val_if_fail (PULSE_IS_CONNECTION (connection), FALSE); + g_return_val_if_fail (info != NULL, FALSE); if (connection->priv->state != PULSE_CONNECTION_CONNECTED) return FALSE; @@ -1187,6 +1190,7 @@ gchar **names; g_return_val_if_fail (PULSE_IS_CONNECTION (connection), FALSE); + g_return_val_if_fail (name != NULL, FALSE); if (connection->priv->state != PULSE_CONNECTION_CONNECTED) return FALSE; diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-device.c libmatemixer-1.18.0/backends/pulse/pulse-device.c --- libmatemixer-1.12.1/backends/pulse/pulse-device.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-device.c 2017-03-12 15:31:59.000000000 +0000 @@ -330,6 +330,7 @@ pulse_device_get_port (PulseDevice *device, const gchar *name) { g_return_val_if_fail (PULSE_IS_DEVICE (device), NULL); + g_return_val_if_fail (name != NULL, NULL); return g_hash_table_lookup (device->priv->ports, name); } @@ -373,7 +374,6 @@ { guint i; -#if PA_CHECK_VERSION (2, 0, 0) for (i = 0; i < info->n_ports; i++) { PulsePort *port; const gchar *name; @@ -391,7 +391,6 @@ g_strdup (name), port); } -#endif /* Create the device profile switch */ if (info->n_profiles > 0) { diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-device-switch.c libmatemixer-1.18.0/backends/pulse/pulse-device-switch.c --- libmatemixer-1.12.1/backends/pulse/pulse-device-switch.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-device-switch.c 2017-03-12 15:31:59.000000000 +0000 @@ -89,6 +89,10 @@ PulseDeviceSwitch * pulse_device_switch_new (const gchar *name, const gchar *label, PulseDevice *device) { + g_return_val_if_fail (name != NULL, NULL); + g_return_val_if_fail (label != NULL, NULL); + g_return_val_if_fail (PULSE_IS_DEVICE (device), NULL); + return g_object_new (PULSE_TYPE_DEVICE_SWITCH, "name", name, "label", label, diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-ext-stream.c libmatemixer-1.18.0/backends/pulse/pulse-ext-stream.c --- libmatemixer-1.12.1/backends/pulse/pulse-ext-stream.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-ext-stream.c 2017-03-12 15:31:59.000000000 +0000 @@ -393,8 +393,12 @@ _mate_mixer_stream_control_set_flags (MATE_MIXER_STREAM_CONTROL (ext), flags); /* Also set initially, but may change at any time */ - _mate_mixer_stream_control_set_stream (MATE_MIXER_STREAM_CONTROL (ext), - MATE_MIXER_STREAM (parent)); + if (parent != NULL) + _mate_mixer_stream_control_set_stream (MATE_MIXER_STREAM_CONTROL (ext), + MATE_MIXER_STREAM (parent)); + else + _mate_mixer_stream_control_set_stream (MATE_MIXER_STREAM_CONTROL (ext), + NULL); g_object_thaw_notify (G_OBJECT (ext)); } @@ -599,7 +603,7 @@ { g_return_val_if_fail (PULSE_IS_EXT_STREAM (mmsc), (guint) PA_VOLUME_MUTED); - return (guint) PA_VOLUME_UI_MAX; + return (guint) PA_VOLUME_NORM; } static guint diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-helpers.c libmatemixer-1.18.0/backends/pulse/pulse-helpers.c --- libmatemixer-1.12.1/backends/pulse/pulse-helpers.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-helpers.c 2017-03-12 15:31:59.000000000 +0000 @@ -73,6 +73,8 @@ MateMixerStreamControlMediaRole pulse_convert_media_role_name (const gchar *name) { + g_return_val_if_fail (name != NULL, MATE_MIXER_STREAM_CONTROL_MEDIA_ROLE_UNKNOWN); + if (!strcmp (name, "video")) { return MATE_MIXER_STREAM_CONTROL_MEDIA_ROLE_VIDEO; } diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-sink.c libmatemixer-1.18.0/backends/pulse/pulse-sink.c --- libmatemixer-1.12.1/backends/pulse/pulse-sink.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-sink.c 2017-03-12 15:31:59.000000000 +0000 @@ -130,6 +130,7 @@ g_return_val_if_fail (PULSE_IS_CONNECTION (connection), NULL); g_return_val_if_fail (info != NULL, NULL); + g_return_val_if_fail (device == NULL || PULSE_IS_DEVICE (device), NULL); sink = g_object_new (PULSE_TYPE_SINK, "name", info->name, @@ -140,7 +141,7 @@ "index", info->index, NULL); - sink->priv->control = pulse_sink_control_new (sink, info); + sink->priv->control = pulse_sink_control_new (connection, info, sink); if (info->n_ports > 0) { pa_sink_port_info **ports = info->ports; @@ -189,12 +190,20 @@ { PulseSinkInput *input; + g_return_val_if_fail (PULSE_IS_SINK (sink), FALSE); + g_return_val_if_fail (info != NULL, FALSE); + /* This function is used for both creating and refreshing sink inputs */ input = g_hash_table_lookup (sink->priv->inputs, GUINT_TO_POINTER (info->index)); if (input == NULL) { const gchar *name; + PulseConnection *connection; + + connection = pulse_stream_get_connection (PULSE_STREAM (sink)); + input = pulse_sink_input_new (connection, + info, + sink); - input = pulse_sink_input_new (sink, info); g_hash_table_insert (sink->priv->inputs, GUINT_TO_POINTER (info->index), input); @@ -218,6 +227,8 @@ PulseSinkInput *input; gchar *name; + g_return_if_fail (PULSE_IS_SINK (sink)); + input = g_hash_table_lookup (sink->priv->inputs, GUINT_TO_POINTER (index)); if G_UNLIKELY (input == NULL) return; diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-sink-control.c libmatemixer-1.18.0/backends/pulse/pulse-sink-control.c --- libmatemixer-1.12.1/backends/pulse/pulse-sink-control.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-sink-control.c 2017-03-12 15:31:59.000000000 +0000 @@ -56,8 +56,9 @@ } PulseSinkControl * -pulse_sink_control_new (PulseSink *sink, - const pa_sink_info *info) +pulse_sink_control_new (PulseConnection *connection, + const pa_sink_info *info, + PulseSink *parent) { PulseSinkControl *control; MateMixerStreamControlFlags flags = MATE_MIXER_STREAM_CONTROL_MUTE_READABLE | @@ -67,8 +68,9 @@ MateMixerStreamControlRole role; guint32 index; - g_return_val_if_fail (PULSE_IS_SINK (sink), NULL); + g_return_val_if_fail (PULSE_IS_CONNECTION (connection), NULL); g_return_val_if_fail (info != NULL, NULL); + g_return_val_if_fail (PULSE_IS_SINK (parent), NULL); if (info->active_port != NULL) role = MATE_MIXER_STREAM_CONTROL_ROLE_PORT; @@ -79,7 +81,7 @@ if (info->flags & PA_SINK_DECIBEL_VOLUME) flags |= MATE_MIXER_STREAM_CONTROL_HAS_DECIBEL; - index = pulse_sink_get_index_monitor (sink); + index = pulse_sink_get_index_monitor (parent); if (index != PA_INVALID_INDEX) flags |= MATE_MIXER_STREAM_CONTROL_HAS_MONITOR; @@ -88,7 +90,8 @@ "label", info->description, "flags", flags, "role", role, - "stream", sink, + "stream", parent, + "connection", connection, NULL); pulse_sink_control_update (control, info); @@ -122,8 +125,8 @@ { g_return_val_if_fail (PULSE_IS_SINK_CONTROL (psc), FALSE); - return pulse_connection_set_sink_mute (PULSE_STREAM_CONTROL_GET_CONNECTION (psc), - PULSE_STREAM_CONTROL_GET_STREAM_INDEX (psc), + return pulse_connection_set_sink_mute (pulse_stream_control_get_connection (psc), + pulse_stream_control_get_stream_index (psc), mute); } @@ -133,8 +136,8 @@ g_return_val_if_fail (PULSE_IS_SINK_CONTROL (psc), FALSE); g_return_val_if_fail (cvolume != NULL, FALSE); - return pulse_connection_set_sink_volume (PULSE_STREAM_CONTROL_GET_CONNECTION (psc), - PULSE_STREAM_CONTROL_GET_STREAM_INDEX (psc), + return pulse_connection_set_sink_volume (pulse_stream_control_get_connection (psc), + pulse_stream_control_get_stream_index (psc), cvolume); } @@ -155,7 +158,7 @@ return NULL; } - return pulse_connection_create_monitor (PULSE_STREAM_CONTROL_GET_CONNECTION (psc), + return pulse_connection_create_monitor (pulse_stream_control_get_connection (psc), index, PA_INVALID_INDEX); } diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-sink-control.h libmatemixer-1.18.0/backends/pulse/pulse-sink-control.h --- libmatemixer-1.12.1/backends/pulse/pulse-sink-control.h 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-sink-control.h 2017-03-12 15:31:59.000000000 +0000 @@ -56,8 +56,9 @@ GType pulse_sink_control_get_type (void) G_GNUC_CONST; -PulseSinkControl *pulse_sink_control_new (PulseSink *sink, - const pa_sink_info *info); +PulseSinkControl *pulse_sink_control_new (PulseConnection *connection, + const pa_sink_info *info, + PulseSink *sink); void pulse_sink_control_update (PulseSinkControl *control, const pa_sink_info *info); diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-sink-input.c libmatemixer-1.18.0/backends/pulse/pulse-sink-input.c --- libmatemixer-1.12.1/backends/pulse/pulse-sink-input.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-sink-input.c 2017-03-12 15:31:59.000000000 +0000 @@ -35,16 +35,22 @@ G_DEFINE_TYPE (PulseSinkInput, pulse_sink_input, PULSE_TYPE_STREAM_CONTROL); -static gboolean pulse_sink_input_set_mute (PulseStreamControl *psc, - gboolean mute); -static gboolean pulse_sink_input_set_volume (PulseStreamControl *psc, - pa_cvolume *cvolume); -static PulseMonitor *pulse_sink_input_create_monitor (PulseStreamControl *psc); +static guint pulse_sink_input_get_max_volume (MateMixerStreamControl *mmsc); + +static gboolean pulse_sink_input_set_mute (PulseStreamControl *psc, + gboolean mute); +static gboolean pulse_sink_input_set_volume (PulseStreamControl *psc, + pa_cvolume *cvolume); +static PulseMonitor *pulse_sink_input_create_monitor (PulseStreamControl *psc); static void pulse_sink_input_class_init (PulseSinkInputClass *klass) { - PulseStreamControlClass *control_class; + MateMixerStreamControlClass *mmsc_class; + PulseStreamControlClass *control_class; + + mmsc_class = MATE_MIXER_STREAM_CONTROL_CLASS (klass); + mmsc_class->get_max_volume = pulse_sink_input_get_max_volume; control_class = PULSE_STREAM_CONTROL_CLASS (klass); control_class->set_mute = pulse_sink_input_set_mute; @@ -58,7 +64,9 @@ } PulseSinkInput * -pulse_sink_input_new (PulseSink *sink, const pa_sink_input_info *info) +pulse_sink_input_new (PulseConnection *connection, + const pa_sink_input_info *info, + PulseSink *parent) { PulseSinkInput *input; gchar *name; @@ -73,8 +81,9 @@ MateMixerStreamControlMediaRole media_role = MATE_MIXER_STREAM_CONTROL_MEDIA_ROLE_UNKNOWN; - g_return_val_if_fail (PULSE_IS_SINK (sink), NULL); + g_return_val_if_fail (PULSE_IS_CONNECTION (connection), NULL); g_return_val_if_fail (info != NULL, NULL); + g_return_val_if_fail (PULSE_IS_SINK (parent), NULL); /* Many mixer applications query the Pulse client list and use the client * name here, but we use the name only as an identifier, so let's avoid @@ -82,7 +91,6 @@ * Also make sure to make the name unique by including the PulseAudio index. */ name = g_strdup_printf ("pulse-output-control-%lu", (gulong) info->index); -#if PA_CHECK_VERSION(1, 0, 0) if (info->has_volume) { flags |= MATE_MIXER_STREAM_CONTROL_VOLUME_READABLE | @@ -91,14 +99,6 @@ if (info->volume_writable) flags |= MATE_MIXER_STREAM_CONTROL_VOLUME_WRITABLE; } -#else - /* Pre-1.0 PulseAudio does not include the has_volume and volume_writable - * fields, but does include the volume info, so let's give it a try */ - flags |= - MATE_MIXER_STREAM_CONTROL_VOLUME_READABLE | - MATE_MIXER_STREAM_CONTROL_VOLUME_WRITABLE | - MATE_MIXER_STREAM_CONTROL_HAS_DECIBEL; -#endif if (info->client != PA_INVALID_INDEX) { app_info = _mate_mixer_app_info_new (); @@ -144,13 +144,18 @@ "flags", flags, "role", role, "media-role", media_role, + "stream", parent, + "connection", connection, "index", info->index, - "stream", sink, NULL); g_free (name); - if (app_info != NULL) - pulse_stream_control_set_app_info (PULSE_STREAM_CONTROL (input), app_info); + if (app_info != NULL) { + /* Takes ownership of app_info */ + pulse_stream_control_set_app_info (PULSE_STREAM_CONTROL (input), + app_info, + TRUE); + } pulse_sink_input_update (input, info); return input; @@ -168,27 +173,35 @@ _mate_mixer_stream_control_set_mute (MATE_MIXER_STREAM_CONTROL (input), info->mute ? TRUE : FALSE); -#if PA_CHECK_VERSION(1, 0, 0) - pulse_stream_control_set_channel_map (PULSE_STREAM_CONTROL (input), &info->channel_map); - + pulse_stream_control_set_channel_map (PULSE_STREAM_CONTROL (input), + &info->channel_map); if (info->has_volume) - pulse_stream_control_set_cvolume (PULSE_STREAM_CONTROL (input), &info->volume, 0); + pulse_stream_control_set_cvolume (PULSE_STREAM_CONTROL (input), + &info->volume, + 0); else - pulse_stream_control_set_cvolume (PULSE_STREAM_CONTROL (input), NULL, 0); -#else - pulse_stream_control_set_channel_map (PULSE_STREAM_CONTROL (input), &info->channel_map); - pulse_stream_control_set_volume (PULSE_STREAM_CONTROL (input), &info->volume, 0); -#endif + pulse_stream_control_set_cvolume (PULSE_STREAM_CONTROL (input), + NULL, + 0); g_object_thaw_notify (G_OBJECT (input)); } +static guint +pulse_sink_input_get_max_volume (MateMixerStreamControl *mmsc) +{ + g_return_val_if_fail (PULSE_IS_SINK_INPUT (mmsc), (guint) PA_VOLUME_MUTED); + + /* Do not extend the volume to PA_VOLUME_UI_MAX as PulseStreamControl does */ + return (guint) PA_VOLUME_NORM; +} + static gboolean pulse_sink_input_set_mute (PulseStreamControl *psc, gboolean mute) { g_return_val_if_fail (PULSE_IS_SINK_INPUT (psc), FALSE); - return pulse_connection_set_sink_input_mute (PULSE_STREAM_CONTROL_GET_CONNECTION (psc), + return pulse_connection_set_sink_input_mute (pulse_stream_control_get_connection (psc), pulse_stream_control_get_index (psc), mute); } @@ -199,7 +212,7 @@ g_return_val_if_fail (PULSE_IS_SINK_INPUT (psc), FALSE); g_return_val_if_fail (cvolume != NULL, FALSE); - return pulse_connection_set_sink_input_volume (PULSE_STREAM_CONTROL_GET_CONNECTION (psc), + return pulse_connection_set_sink_input_volume (pulse_stream_control_get_connection (psc), pulse_stream_control_get_index (psc), cvolume); } @@ -221,7 +234,7 @@ return NULL; } - return pulse_connection_create_monitor (PULSE_STREAM_CONTROL_GET_CONNECTION (psc), + return pulse_connection_create_monitor (pulse_stream_control_get_connection (psc), index, pulse_stream_control_get_index (psc)); } diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-sink-input.h libmatemixer-1.18.0/backends/pulse/pulse-sink-input.h --- libmatemixer-1.12.1/backends/pulse/pulse-sink-input.h 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-sink-input.h 2017-03-12 15:31:59.000000000 +0000 @@ -55,8 +55,9 @@ GType pulse_sink_input_get_type (void) G_GNUC_CONST; -PulseSinkInput *pulse_sink_input_new (PulseSink *sink, - const pa_sink_input_info *info); +PulseSinkInput *pulse_sink_input_new (PulseConnection *connection, + const pa_sink_input_info *info, + PulseSink *sink); void pulse_sink_input_update (PulseSinkInput *input, const pa_sink_input_info *info); diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-sink-switch.c libmatemixer-1.18.0/backends/pulse/pulse-sink-switch.c --- libmatemixer-1.12.1/backends/pulse/pulse-sink-switch.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-sink-switch.c 2017-03-12 15:31:59.000000000 +0000 @@ -24,6 +24,7 @@ #include "pulse-connection.h" #include "pulse-port.h" #include "pulse-port-switch.h" +#include "pulse-sink.h" #include "pulse-sink-switch.h" #include "pulse-stream.h" @@ -52,6 +53,10 @@ PulsePortSwitch * pulse_sink_switch_new (const gchar *name, const gchar *label, PulseSink *sink) { + g_return_val_if_fail (name != NULL, NULL); + g_return_val_if_fail (label != NULL, NULL); + g_return_val_if_fail (PULSE_IS_SINK (sink), NULL); + return g_object_new (PULSE_TYPE_SINK_SWITCH, "name", name, "label", label, diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-source.c libmatemixer-1.18.0/backends/pulse/pulse-source.c --- libmatemixer-1.12.1/backends/pulse/pulse-source.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-source.c 2017-03-12 15:31:59.000000000 +0000 @@ -127,6 +127,7 @@ g_return_val_if_fail (PULSE_IS_CONNECTION (connection), NULL); g_return_val_if_fail (info != NULL, NULL); + g_return_val_if_fail (device == NULL || PULSE_IS_DEVICE (device), NULL); source = g_object_new (PULSE_TYPE_SOURCE, "name", info->name, @@ -137,7 +138,7 @@ "index", info->index, NULL); - source->priv->control = pulse_source_control_new (source, info); + source->priv->control = pulse_source_control_new (connection, info, source); if (info->n_ports > 0) { pa_source_port_info **ports = info->ports; @@ -186,12 +187,19 @@ { PulseSourceOutput *output; + g_return_val_if_fail (PULSE_IS_SOURCE (source), FALSE); + g_return_val_if_fail (info != NULL, FALSE); + /* This function is used for both creating and refreshing source outputs */ output = g_hash_table_lookup (source->priv->outputs, GUINT_TO_POINTER (info->index)); if (output == NULL) { const gchar *name; + PulseConnection *connection; - output = pulse_source_output_new (source, info); + connection = pulse_stream_get_connection (PULSE_STREAM (source)); + output = pulse_source_output_new (connection, + info, + source); g_hash_table_insert (source->priv->outputs, GUINT_TO_POINTER (info->index), output); @@ -215,6 +223,8 @@ PulseSourceOutput *output; gchar *name; + g_return_if_fail (PULSE_IS_SOURCE (source)); + output = g_hash_table_lookup (source->priv->outputs, GUINT_TO_POINTER (index)); if G_UNLIKELY (output == NULL) return; diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-source-control.c libmatemixer-1.18.0/backends/pulse/pulse-source-control.c --- libmatemixer-1.12.1/backends/pulse/pulse-source-control.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-source-control.c 2017-03-12 15:31:59.000000000 +0000 @@ -56,8 +56,9 @@ } PulseSourceControl * -pulse_source_control_new (PulseSource *source, - const pa_source_info *info) +pulse_source_control_new (PulseConnection *connection, + const pa_source_info *info, + PulseSource *parent) { PulseSourceControl *control; MateMixerStreamControlFlags flags = MATE_MIXER_STREAM_CONTROL_MUTE_READABLE | @@ -67,8 +68,9 @@ MATE_MIXER_STREAM_CONTROL_HAS_MONITOR; MateMixerStreamControlRole role; - g_return_val_if_fail (PULSE_IS_SOURCE (source), NULL); + g_return_val_if_fail (PULSE_IS_CONNECTION (connection), NULL); g_return_val_if_fail (info != NULL, NULL); + g_return_val_if_fail (PULSE_IS_SOURCE (parent), NULL); if (info->active_port != NULL) role = MATE_MIXER_STREAM_CONTROL_ROLE_PORT; @@ -84,7 +86,8 @@ "label", info->description, "flags", flags, "role", role, - "stream", source, + "stream", parent, + "connection", connection, NULL); pulse_source_control_update (control, info); @@ -118,8 +121,8 @@ { g_return_val_if_fail (PULSE_IS_SOURCE_CONTROL (psc), FALSE); - return pulse_connection_set_source_mute (PULSE_STREAM_CONTROL_GET_CONNECTION (psc), - PULSE_STREAM_CONTROL_GET_STREAM_INDEX (psc), + return pulse_connection_set_source_mute (pulse_stream_control_get_connection (psc), + pulse_stream_control_get_stream_index (psc), mute); } @@ -129,8 +132,8 @@ g_return_val_if_fail (PULSE_IS_SOURCE_CONTROL (psc), FALSE); g_return_val_if_fail (cvolume != NULL, FALSE); - return pulse_connection_set_source_volume (PULSE_STREAM_CONTROL_GET_CONNECTION (psc), - PULSE_STREAM_CONTROL_GET_STREAM_INDEX (psc), + return pulse_connection_set_source_volume (pulse_stream_control_get_connection (psc), + pulse_stream_control_get_stream_index (psc), cvolume); } @@ -141,14 +144,14 @@ g_return_val_if_fail (PULSE_IS_SOURCE_CONTROL (psc), NULL); - index = PULSE_STREAM_CONTROL_GET_STREAM_INDEX (psc); + index = pulse_stream_control_get_stream_index (psc); if G_UNLIKELY (index == PA_INVALID_INDEX) { g_debug ("Monitor of stream control %s is not available", mate_mixer_stream_control_get_name (MATE_MIXER_STREAM_CONTROL (psc))); return NULL; } - return pulse_connection_create_monitor (PULSE_STREAM_CONTROL_GET_CONNECTION (psc), + return pulse_connection_create_monitor (pulse_stream_control_get_connection (psc), index, PA_INVALID_INDEX); } diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-source-control.h libmatemixer-1.18.0/backends/pulse/pulse-source-control.h --- libmatemixer-1.12.1/backends/pulse/pulse-source-control.h 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-source-control.h 2017-03-12 15:31:59.000000000 +0000 @@ -56,8 +56,9 @@ GType pulse_source_control_get_type (void) G_GNUC_CONST; -PulseSourceControl *pulse_source_control_new (PulseSource *source, - const pa_source_info *info); +PulseSourceControl *pulse_source_control_new (PulseConnection *connection, + const pa_source_info *info, + PulseSource *source); void pulse_source_control_update (PulseSourceControl *control, const pa_source_info *info); diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-source-output.c libmatemixer-1.18.0/backends/pulse/pulse-source-output.c --- libmatemixer-1.12.1/backends/pulse/pulse-source-output.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-source-output.c 2017-03-12 15:31:59.000000000 +0000 @@ -35,16 +35,22 @@ G_DEFINE_TYPE (PulseSourceOutput, pulse_source_output, PULSE_TYPE_STREAM_CONTROL); -static gboolean pulse_source_output_set_mute (PulseStreamControl *psc, - gboolean mute); -static gboolean pulse_source_output_set_volume (PulseStreamControl *psc, - pa_cvolume *cvolume); -static PulseMonitor *pulse_source_output_create_monitor (PulseStreamControl *psc); +static guint pulse_source_output_get_max_volume (MateMixerStreamControl *mmsc); + +static gboolean pulse_source_output_set_mute (PulseStreamControl *psc, + gboolean mute); +static gboolean pulse_source_output_set_volume (PulseStreamControl *psc, + pa_cvolume *cvolume); +static PulseMonitor *pulse_source_output_create_monitor (PulseStreamControl *psc); static void pulse_source_output_class_init (PulseSourceOutputClass *klass) { - PulseStreamControlClass *control_class; + MateMixerStreamControlClass *mmsc_class; + PulseStreamControlClass *control_class; + + mmsc_class = MATE_MIXER_STREAM_CONTROL_CLASS (klass); + mmsc_class->get_max_volume = pulse_source_output_get_max_volume; control_class = PULSE_STREAM_CONTROL_CLASS (klass); control_class->set_mute = pulse_source_output_set_mute; @@ -58,8 +64,9 @@ } PulseSourceOutput * -pulse_source_output_new (PulseSource *source, - const pa_source_output_info *info) +pulse_source_output_new (PulseConnection *connection, + const pa_source_output_info *info, + PulseSource *parent) { PulseSourceOutput *output; gchar *name; @@ -73,8 +80,9 @@ MateMixerStreamControlMediaRole media_role = MATE_MIXER_STREAM_CONTROL_MEDIA_ROLE_UNKNOWN; - g_return_val_if_fail (PULSE_IS_SOURCE (source), NULL); + g_return_val_if_fail (PULSE_IS_CONNECTION (connection), NULL); g_return_val_if_fail (info != NULL, NULL); + g_return_val_if_fail (PULSE_IS_SOURCE (parent), NULL); /* Many mixer applications query the Pulse client list and use the client * name here, but we use the name only as an identifier, so let's avoid @@ -82,7 +90,6 @@ * Also make sure to make the name unique by including the PulseAudio index. */ name = g_strdup_printf ("pulse-input-control-%lu", (gulong) info->index); -#if PA_CHECK_VERSION(1, 0, 0) if (info->has_volume) { flags |= MATE_MIXER_STREAM_CONTROL_VOLUME_READABLE | @@ -91,14 +98,6 @@ if (info->volume_writable) flags |= MATE_MIXER_STREAM_CONTROL_VOLUME_WRITABLE; } -#else - /* Pre-1.0 PulseAudio does not include the has_volume and volume_writable - * fields, but does include the volume info, so let's give it a try */ - flags |= - MATE_MIXER_STREAM_CONTROL_VOLUME_READABLE | - MATE_MIXER_STREAM_CONTROL_VOLUME_WRITABLE | - MATE_MIXER_STREAM_CONTROL_HAS_DECIBEL; -#endif if (info->client != PA_INVALID_INDEX) { app_info = _mate_mixer_app_info_new (); @@ -132,13 +131,18 @@ "flags", flags, "role", role, "media-role", media_role, + "stream", parent, + "connection", connection, "index", info->index, - "stream", source, NULL); g_free (name); - if (app_info != NULL) - pulse_stream_control_set_app_info (PULSE_STREAM_CONTROL (output), app_info); + if (app_info != NULL) { + /* Takes ownership of app_info */ + pulse_stream_control_set_app_info (PULSE_STREAM_CONTROL (output), + app_info, + TRUE); + } pulse_source_output_update (output, info); return output; @@ -157,10 +161,8 @@ _mate_mixer_stream_control_set_mute (MATE_MIXER_STREAM_CONTROL (output), info->mute ? TRUE : FALSE); -#if PA_CHECK_VERSION(1, 0, 0) pulse_stream_control_set_channel_map (PULSE_STREAM_CONTROL (output), &info->channel_map); - if (info->has_volume) pulse_stream_control_set_cvolume (PULSE_STREAM_CONTROL (output), &info->volume, @@ -169,24 +171,25 @@ pulse_stream_control_set_cvolume (PULSE_STREAM_CONTROL (output), NULL, 0); -#else - pulse_stream_control_set_channel_map (PULSE_STREAM_CONTROL (output), - &info->channel_map); - - pulse_stream_control_set_volume (PULSE_STREAM_CONTROL (output), - &info->volume, - 0); -#endif g_object_thaw_notify (G_OBJECT (output)); } +static guint +pulse_source_output_get_max_volume (MateMixerStreamControl *mmsc) +{ + g_return_val_if_fail (PULSE_IS_SOURCE_OUTPUT (mmsc), (guint) PA_VOLUME_MUTED); + + /* Do not extend the volume to PA_VOLUME_UI_MAX as PulseStreamControl does */ + return (guint) PA_VOLUME_NORM; +} + static gboolean pulse_source_output_set_mute (PulseStreamControl *psc, gboolean mute) { g_return_val_if_fail (PULSE_IS_SOURCE_OUTPUT (psc), FALSE); - return pulse_connection_set_source_output_mute (PULSE_STREAM_CONTROL_GET_CONNECTION (psc), + return pulse_connection_set_source_output_mute (pulse_stream_control_get_connection (psc), pulse_stream_control_get_index (psc), mute); } @@ -197,7 +200,7 @@ g_return_val_if_fail (PULSE_IS_SOURCE_OUTPUT (psc), FALSE); g_return_val_if_fail (cvolume != NULL, FALSE); - return pulse_connection_set_source_output_volume (PULSE_STREAM_CONTROL_GET_CONNECTION (psc), + return pulse_connection_set_source_output_volume (pulse_stream_control_get_connection (psc), pulse_stream_control_get_index (psc), cvolume); } @@ -207,7 +210,7 @@ { g_return_val_if_fail (PULSE_IS_SOURCE_OUTPUT (psc), NULL); - return pulse_connection_create_monitor (PULSE_STREAM_CONTROL_GET_CONNECTION (psc), - PULSE_STREAM_CONTROL_GET_STREAM_INDEX (psc), + return pulse_connection_create_monitor (pulse_stream_control_get_connection (psc), + pulse_stream_control_get_stream_index (psc), PA_INVALID_INDEX); } diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-source-output.h libmatemixer-1.18.0/backends/pulse/pulse-source-output.h --- libmatemixer-1.12.1/backends/pulse/pulse-source-output.h 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-source-output.h 2017-03-12 15:31:59.000000000 +0000 @@ -55,8 +55,9 @@ GType pulse_source_output_get_type (void) G_GNUC_CONST; -PulseSourceOutput *pulse_source_output_new (PulseSource *source, - const pa_source_output_info *info); +PulseSourceOutput *pulse_source_output_new (PulseConnection *connection, + const pa_source_output_info *info, + PulseSource *source); void pulse_source_output_update (PulseSourceOutput *output, const pa_source_output_info *info); diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-source-switch.c libmatemixer-1.18.0/backends/pulse/pulse-source-switch.c --- libmatemixer-1.12.1/backends/pulse/pulse-source-switch.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-source-switch.c 2017-03-12 15:31:59.000000000 +0000 @@ -24,6 +24,7 @@ #include "pulse-connection.h" #include "pulse-port.h" #include "pulse-port-switch.h" +#include "pulse-source.h" #include "pulse-source-switch.h" #include "pulse-stream.h" @@ -52,6 +53,10 @@ PulsePortSwitch * pulse_source_switch_new (const gchar *name, const gchar *label, PulseSource *source) { + g_return_val_if_fail (name != NULL, NULL); + g_return_val_if_fail (label != NULL, NULL); + g_return_val_if_fail (PULSE_IS_SOURCE (source), NULL); + return g_object_new (PULSE_TYPE_SOURCE_SWITCH, "name", name, "label", label, diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-stream.c libmatemixer-1.18.0/backends/pulse/pulse-stream.c --- libmatemixer-1.12.1/backends/pulse/pulse-stream.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-stream.c 2017-03-12 15:31:59.000000000 +0000 @@ -164,7 +164,7 @@ guint32 pulse_stream_get_index (PulseStream *stream) { - g_return_val_if_fail (PULSE_IS_STREAM (stream), 0); + g_return_val_if_fail (PULSE_IS_STREAM (stream), PA_INVALID_INDEX); return stream->priv->index; } diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-stream-control.c libmatemixer-1.18.0/backends/pulse/pulse-stream-control.c --- libmatemixer-1.12.1/backends/pulse/pulse-stream-control.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-stream-control.c 2017-03-12 15:31:59.000000000 +0000 @@ -25,6 +25,7 @@ #include "pulse-connection.h" #include "pulse-helpers.h" #include "pulse-monitor.h" +#include "pulse-stream.h" #include "pulse-stream-control.h" struct _PulseStreamControlPrivate @@ -270,11 +271,25 @@ guint32 pulse_stream_control_get_index (PulseStreamControl *control) { - g_return_val_if_fail (PULSE_IS_STREAM_CONTROL (control), 0); + g_return_val_if_fail (PULSE_IS_STREAM_CONTROL (control), PA_INVALID_INDEX); return control->priv->index; } +guint32 +pulse_stream_control_get_stream_index (PulseStreamControl *control) +{ + MateMixerStream *stream; + + g_return_val_if_fail (PULSE_IS_STREAM_CONTROL (control), PA_INVALID_INDEX); + + stream = mate_mixer_stream_control_get_stream (MATE_MIXER_STREAM_CONTROL (control)); + if G_UNLIKELY (stream == NULL) + return PA_INVALID_INDEX; + + return pulse_stream_get_index (PULSE_STREAM (stream)); +} + PulseConnection * pulse_stream_control_get_connection (PulseStreamControl *control) { @@ -308,14 +323,19 @@ } void -pulse_stream_control_set_app_info (PulseStreamControl *control, MateMixerAppInfo *info) +pulse_stream_control_set_app_info (PulseStreamControl *control, + MateMixerAppInfo *info, + gboolean take) { g_return_if_fail (PULSE_IS_STREAM_CONTROL (control)); - if G_UNLIKELY (control->priv->app_info) + if G_UNLIKELY (control->priv->app_info != NULL) _mate_mixer_app_info_free (control->priv->app_info); - control->priv->app_info = info; + if (take == TRUE) + control->priv->app_info = info; + else + control->priv->app_info = _mate_mixer_app_info_copy (info); } void @@ -324,11 +344,10 @@ MateMixerStreamControlFlags flags; g_return_if_fail (PULSE_IS_STREAM_CONTROL (control)); - g_return_if_fail (map != NULL); flags = mate_mixer_stream_control_get_flags (MATE_MIXER_STREAM_CONTROL (control)); - if (pa_channel_map_valid (map)) { + if (map != NULL && pa_channel_map_valid (map)) { if (pa_channel_map_can_balance (map)) flags |= MATE_MIXER_STREAM_CONTROL_CAN_BALANCE; else @@ -665,9 +684,24 @@ static guint pulse_stream_control_get_max_volume (MateMixerStreamControl *mmsc) { + MateMixerStreamControlFlags flags; + g_return_val_if_fail (PULSE_IS_STREAM_CONTROL (mmsc), (guint) PA_VOLUME_MUTED); - return (guint) PA_VOLUME_UI_MAX; + flags = mate_mixer_stream_control_get_flags (mmsc); + + /* + * From PulseAudio wiki: + * For all volumes that are > PA_VOLUME_NORM (i.e. beyond the maximum volume + * setting of the hw) PA will do digital amplification. This works only for + * devices that have PA_SINK_DECIBEL_VOLUME/PA_SOURCE_DECIBEL_VOLUME set. For + * devices that lack this flag do not extend the volume slider like this, it + * will not have any effect. + */ + if (flags & MATE_MIXER_STREAM_CONTROL_HAS_DECIBEL) + return (guint) PA_VOLUME_UI_MAX; + else + return (guint) PA_VOLUME_NORM; } static guint @@ -688,7 +722,7 @@ control = PULSE_STREAM_CONTROL (mmsc); if (control->priv->base_volume > 0) - return control->priv->base_volume; + return (guint) control->priv->base_volume; else return (guint) PA_VOLUME_NORM; } diff -Nru libmatemixer-1.12.1/backends/pulse/pulse-stream-control.h libmatemixer-1.18.0/backends/pulse/pulse-stream-control.h --- libmatemixer-1.12.1/backends/pulse/pulse-stream-control.h 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/backends/pulse/pulse-stream-control.h 2017-03-12 15:31:59.000000000 +0000 @@ -41,11 +41,6 @@ #define PULSE_STREAM_CONTROL_GET_CLASS(o) \ (G_TYPE_INSTANCE_GET_CLASS ((o), PULSE_TYPE_STREAM_CONTROL, PulseStreamControlClass)) -#define PULSE_STREAM_CONTROL_GET_CONNECTION(psc) \ - (pulse_stream_get_connection (PULSE_STREAM (mate_mixer_stream_control_get_stream (MATE_MIXER_STREAM_CONTROL (psc))))) -#define PULSE_STREAM_CONTROL_GET_STREAM_INDEX(psc) \ - (pulse_stream_get_index (PULSE_STREAM (mate_mixer_stream_control_get_stream (MATE_MIXER_STREAM_CONTROL (psc))))) - typedef struct _PulseStreamControlClass PulseStreamControlClass; typedef struct _PulseStreamControlPrivate PulseStreamControlPrivate; @@ -70,24 +65,26 @@ PulseMonitor *(*create_monitor) (PulseStreamControl *control); }; -GType pulse_stream_control_get_type (void) G_GNUC_CONST; - -guint32 pulse_stream_control_get_index (PulseStreamControl *control); - -PulseConnection * pulse_stream_control_get_connection (PulseStreamControl *control); -PulseMonitor * pulse_stream_control_get_monitor (PulseStreamControl *control); +GType pulse_stream_control_get_type (void) G_GNUC_CONST; -const pa_cvolume * pulse_stream_control_get_cvolume (PulseStreamControl *control); -const pa_channel_map *pulse_stream_control_get_channel_map (PulseStreamControl *control); +guint32 pulse_stream_control_get_index (PulseStreamControl *control); +guint32 pulse_stream_control_get_stream_index (PulseStreamControl *control); -void pulse_stream_control_set_app_info (PulseStreamControl *stream, - MateMixerAppInfo *info); +PulseConnection * pulse_stream_control_get_connection (PulseStreamControl *control); +PulseMonitor * pulse_stream_control_get_monitor (PulseStreamControl *control); -void pulse_stream_control_set_channel_map (PulseStreamControl *control, - const pa_channel_map *map); -void pulse_stream_control_set_cvolume (PulseStreamControl *control, - const pa_cvolume *cvolume, - pa_volume_t base_volume); +const pa_cvolume * pulse_stream_control_get_cvolume (PulseStreamControl *control); +const pa_channel_map *pulse_stream_control_get_channel_map (PulseStreamControl *control); + +void pulse_stream_control_set_app_info (PulseStreamControl *stream, + MateMixerAppInfo *info, + gboolean take); + +void pulse_stream_control_set_channel_map (PulseStreamControl *control, + const pa_channel_map *map); +void pulse_stream_control_set_cvolume (PulseStreamControl *control, + const pa_cvolume *cvolume, + pa_volume_t base_volume); G_END_DECLS diff -Nru libmatemixer-1.12.1/ChangeLog libmatemixer-1.18.0/ChangeLog --- libmatemixer-1.12.1/ChangeLog 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/ChangeLog 2017-03-12 15:31:59.000000000 +0000 @@ -0,0 +1,2 @@ +The ChangeLog is auto-generated when releasing. If you are seeing this, use +'git log' for a detailed list of changes. diff -Nru libmatemixer-1.12.1/configure.ac libmatemixer-1.18.0/configure.ac --- libmatemixer-1.12.1/configure.ac 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/configure.ac 2017-03-12 15:31:59.000000000 +0000 @@ -2,10 +2,13 @@ AC_PREREQ([2.60]) +# ======================================================================= +# Versioning +# ======================================================================= + m4_define(libmatemixer_major_version, 1) -m4_define(libmatemixer_minor_version, 12) -m4_define(libmatemixer_micro_version, 1) -m4_define(libmatemixer_interface_age, 0) +m4_define(libmatemixer_minor_version, 18) +m4_define(libmatemixer_micro_version, 0) m4_define(libmatemixer_version, [libmatemixer_major_version.libmatemixer_minor_version.libmatemixer_micro_version]) @@ -13,6 +16,16 @@ [libmatemixer_version], [http://www.mate-desktop.org]) +# Before making a release, the LT_VERSION string should be modified. +# The string is of the form C:R:A. +# - If interfaces have been changed or added, but binary compatibility has +# been preserved, change to C+1:0:A+1 +# - If binary compatibility has been broken (eg removed or changed interfaces) +# change to C+1:0:0 +# - If the interface is the same as the previous version, change to C:R+1:A + +LT_VERSION=0:0:0 + AC_DEFINE(LIBMATEMIXER_MAJOR_VERSION, libmatemixer_major_version, [Libmatemixer major version]) AC_DEFINE(LIBMATEMIXER_MINOR_VERSION, libmatemixer_minor_version, [Libmatemixer minor version]) AC_DEFINE(LIBMATEMIXER_MICRO_VERSION, libmatemixer_micro_version, [Libmatemixer micro version]) @@ -22,6 +35,8 @@ AC_SUBST(LIBMATEMIXER_MICRO_VERSION, libmatemixer_micro_version) AC_SUBST(LIBMATEMIXER_VERSION, libmatemixer_version) +AC_SUBST(LT_VERSION) + AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux]) @@ -30,6 +45,8 @@ AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-xz foreign tar-ustar check-news]) # Use pretty build output with automake >= 1.11 +# Disable by either passing --disable-silent-rules to configure or passing +# V=1 to make m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])], [AM_DEFAULT_VERBOSITY=1 AC_SUBST(AM_DEFAULT_VERBOSITY)]) @@ -39,19 +56,9 @@ AM_PROG_CC_C_O AC_PROG_INSTALL -# Checks for header files. -AC_HEADER_STDC -AC_CHECK_HEADERS([string.h math.h sys/types.h unistd.h libintl.h locale.h]) - # ======================================================================= # Libtool # ======================================================================= -LT_CURRENT=0 -LT_REVISION=0 -LT_AGE=0 -AC_SUBST(LT_CURRENT) -AC_SUBST(LT_REVISION) -AC_SUBST(LT_AGE) LT_PREREQ([2.2]) LT_INIT @@ -91,13 +98,13 @@ AC_ARG_ENABLE([null], AS_HELP_STRING([--enable-null], [Enable Null backend module @<:@default=yes@:>@]), - enable_null=$enableval, enable_null=yes) + enable_null=$enableval, + enable_null=yes) +have_null=no if test "x$enable_null" != "xno" ; then AC_DEFINE(HAVE_NULL, [], [Define if we have Null module]) have_null=yes -else - have_null=no fi AM_CONDITIONAL(HAVE_NULL, test "x$have_null" = "xyes") @@ -106,29 +113,32 @@ # ----------------------------------------------------------------------- # PulseAudio # ----------------------------------------------------------------------- -PA_REQUIRED_VERSION=0.9.23 +PA_REQUIRED_VERSION=2.0.0 AC_ARG_ENABLE([pulseaudio], AS_HELP_STRING([--enable-pulseaudio], [Enable PulseAudio backend module @<:@default=auto@:>@]), - enable_pulseaudio=$enableval, enable_pulseaudio=auto) + enable_pulseaudio=$enableval, + enable_pulseaudio=auto) +have_pulseaudio=no if test "x$enable_pulseaudio" != "xno"; then - PKG_CHECK_MODULES(PULSEAUDIO, + PKG_CHECK_MODULES(PULSEAUDIO, [ libpulse >= $PA_REQUIRED_VERSION - libpulse-mainloop-glib >= $PA_REQUIRED_VERSION, + libpulse-mainloop-glib >= $PA_REQUIRED_VERSION + ], have_pulseaudio=yes, have_pulseaudio=no) - if test "x$enable_pulseaudio" = "xyes" -a "x$have_pulseaudio" = "xno"; then - AC_MSG_ERROR([PulseAudio support explicitly requested but dependencies not found]) - fi - - if test "x$have_pulseaudio" = "xyes" ; then + if test "x$have_pulseaudio" = "xyes"; then AC_DEFINE(HAVE_PULSEAUDIO, [], [Define if we have PulseAudio support]) + else + if test "x$enable_pulseaudio" = "xyes"; then + AC_MSG_ERROR([PulseAudio support explicitly requested but dependencies not found]) + else + AC_MSG_NOTICE([PulseAudio dependencies not found, the module will not be built]) + fi fi -else - have_pulseaudio=no fi AM_CONDITIONAL(HAVE_PULSEAUDIO, test "x$have_pulseaudio" = "xyes") @@ -146,25 +156,27 @@ AC_ARG_ENABLE([alsa], AS_HELP_STRING([--enable-alsa], [Enable ALSA backend module @<:@default=auto@:>@]), - enable_alsa=$enableval, enable_alsa=auto) + enable_alsa=$enableval, + enable_alsa=auto) +have_alsa=no if test "x$enable_alsa" != "xno"; then PKG_CHECK_MODULES(ALSA, [ - alsa >= $ALSA_REQUIRED_VERSION - gthread-2.0 >= $GLIB_REQUIRED_VERSION - ], - have_alsa=yes, - have_alsa=no) + alsa >= $ALSA_REQUIRED_VERSION + gthread-2.0 >= $GLIB_REQUIRED_VERSION + ], + have_alsa=yes, + have_alsa=no) - if test "x$enable_alsa" = "xyes" -a "x$have_alsa" = "xno"; then - AC_MSG_ERROR([ALSA support explicitly requested but dependencies not found]) - fi - - if test "x$have_alsa" = "xyes" ; then + if test "x$have_alsa" = "xyes"; then AC_DEFINE(HAVE_ALSA, [], [Define if we have ALSA support]) + else + if test "x$enable_alsa" = "xyes"; then + AC_MSG_ERROR([ALSA support explicitly requested but dependencies not found]) + else + AC_MSG_NOTICE([ALSA dependencies not found, the module will not be built]) + fi fi -else - have_alsa=no fi AM_CONDITIONAL(HAVE_ALSA, test "x$have_alsa" = "xyes") @@ -179,28 +191,35 @@ AC_ARG_ENABLE([oss], AS_HELP_STRING([--enable-oss], [Enable OSS backend module @<:@default=no@:>@]), - enable_oss=$enableval, enable_oss=no) + enable_oss=$enableval, + enable_oss=no) +have_oss=no if test "x$enable_oss" != "xno"; then AC_CHECK_HEADERS([soundcard.h sys/soundcard.h machine/soundcard.h]) if test "x$ac_cv_header_soundcard_h" = "xyes" -o \ "x$ac_cv_header_sys_soundcard_h" = "xyes" -o \ "x$ac_cv_header_machine_soundcard_h" = "xyes"; then - AC_CHECK_LIB([ossaudio], [_oss_ioctl], [OSS_LIBS="-lossaudio"]) have_oss=yes - else - have_oss=no + AC_CHECK_HEADERS([sys/ioctl.h sys/stat.h sys/types.h errno.h fcntl.h],, [ + have_oss=no + break + ]) fi - if test "x$enable_oss" = "xyes" -a "x$have_oss" = "xno"; then - AC_MSG_ERROR([OSS support explicitly requested but dependencies not found]) - fi + if test "x$have_oss" = "xyes"; then + # NetBSD/OpenBSD require -lossaudio, other OSS implementations do not have + # this library + AC_CHECK_LIB([ossaudio], [_oss_ioctl], [OSS_LIBS="-lossaudio"]) - if test "x$have_oss" = "xyes" ; then AC_DEFINE(HAVE_OSS, [], [Define if we have OSS support]) + else + if test "x$enable_oss" = "xyes"; then + AC_MSG_ERROR([OSS support explicitly requested but dependencies not found]) + else + AC_MSG_NOTICE([OSS dependencies not found, the module will not be built]) + fi fi -else - have_oss=no fi AM_CONDITIONAL(HAVE_OSS, test "x$have_oss" = "xyes") @@ -289,5 +308,4 @@ Build PulseAudio module: $have_pulseaudio Build ALSA module: $have_alsa Build OSS module: $have_oss - " diff -Nru libmatemixer-1.12.1/data/libmatemixer.pc.in libmatemixer-1.18.0/data/libmatemixer.pc.in --- libmatemixer-1.12.1/data/libmatemixer.pc.in 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/data/libmatemixer.pc.in 2017-03-12 15:31:59.000000000 +0000 @@ -4,7 +4,7 @@ includedir=@includedir@ Name: libmatemixer -Description: +Description: Mixer library for MATE Desktop Version: @VERSION@ Requires: glib-2.0 gobject-2.0 gmodule-2.0 Libs: -L${libdir} -lmatemixer diff -Nru libmatemixer-1.12.1/debian/changelog libmatemixer-1.18.0/debian/changelog --- libmatemixer-1.12.1/debian/changelog 2015-12-20 14:45:44.000000000 +0000 +++ libmatemixer-1.18.0/debian/changelog 2017-08-03 13:13:06.000000000 +0000 @@ -1,3 +1,97 @@ +libmatemixer (1.18.0-1~16.04.york0) xenial; urgency=medium + + * No-change backport to xenial + + -- Jonathon Fernyhough Thu, 03 Aug 2017 14:13:06 +0100 + +libmatemixer (1.18.0-1) unstable; urgency=medium + + [ Aron Xu ] + * New upstream release. + + [ Martin Wimpress ] + * debian/control: Dependencies updated for MATE 1.17. + * debian/control: Dependencies updated for MATE 1.18. + + [ Vangelis Mouhtsis ] + * New upstream release. + * debian/compat: + + Update compat version. + * debian/control: + + Bump debhelper version to (>= 10). + * debian/rules: + + Add new block for override_dh_missing. + + [ Mike Gabriel ] + * debian/control: + + Bump Standards-Version: to 4.0.0. No changes needed. + * debian/rules: + + Disable autoreconf, handled by autogen.sh. + + -- Mike Gabriel Sat, 08 Jul 2017 23:51:51 +0200 + +libmatemixer (1.16.0-2) unstable; urgency=medium + + * debian/changelog: + + Fix missing changelog item in 1.16.0-1 stanza. + * debian/watch: + + Update version matching again to _not_ support development releases. + + -- Mike Gabriel Mon, 09 Jan 2017 16:30:12 +0100 + +libmatemixer (1.16.0-1) unstable; urgency=medium + + [ Martin Wimpress ] + * New upstream release. + + [ Mike Gabriel ] + * debian/changelog: + + Add various missing changelog items to 1.15.0-0ubuntu1. + * debian/control: + + Dependencies updated for MATE 1.16. + + Bump Standards: to 3.9.8. No changes needed. + * debian/watch: + + Update version matching again to _not_ support development releases. + * debian/libmatemixer0.symbols: + + Update one new symbol in list of symbols. + * lintian: Drop unused-shlib-entry-in-control-file override. Not required + anymore. + + -- Mike Gabriel Thu, 29 Sep 2016 15:34:59 +0200 + +libmatemixer (1.15.0-0ubuntu1) yakkety; urgency=medium + + [ Martin Wimpress ] + * New upstream development release. + * debian/control: + + Dependencies updated for MATE 1.15. + * debian/watch: + + Update version matching to support development releases. + + [ Vangelis Mouhtsis ] + * debian/{control,rules}: + + dbgsym: Don't build dbg:packages anymore. + See https://wiki.debian.org/AutomaticDebugPackages. + + -- Martin Wimpress Fri, 09 Sep 2016 13:04:46 +0100 + +libmatemixer (1.14.0-1) unstable; urgency=medium + + [ Vangelis Mouhtsis ] + * debian/control: + + Versioned B-D on dpkg-dev (>= 1.16.1.1). + + Use encrypted URLs for Vcs-*: field. + * debian/rules: + + Enable all hardening flags. + + [ Martin Wimpress ] + * New upstream release. + * debian/control: + + Bump Standards: to 3.9.7. No changes needed. + + Versioned B-D: mate-common (>= 1.14) + + -- Mike Gabriel Tue, 10 May 2016 15:48:38 +0200 + libmatemixer (1.12.1-1) unstable; urgency=medium [ Martin Wimpress ] diff -Nru libmatemixer-1.12.1/debian/compat libmatemixer-1.18.0/debian/compat --- libmatemixer-1.12.1/debian/compat 2015-06-15 02:29:48.000000000 +0000 +++ libmatemixer-1.18.0/debian/compat 2017-07-07 22:32:49.000000000 +0000 @@ -1 +1 @@ -9 +10 diff -Nru libmatemixer-1.12.1/debian/control libmatemixer-1.18.0/debian/control --- libmatemixer-1.12.1/debian/control 2015-12-20 14:45:32.000000000 +0000 +++ libmatemixer-1.18.0/debian/control 2017-07-08 21:42:11.000000000 +0000 @@ -7,15 +7,16 @@ Mike Gabriel , Vangelis Mouhtsis , Martin Wimpress , -Build-Depends: debhelper (>= 9), +Build-Depends: debhelper (>= 10.3~), + dpkg-dev (>= 1.16.1.1), libasound2-dev, libglib2.0-dev, libpulse-dev, - mate-common (>= 1.12), -Standards-Version: 3.9.6 + mate-common (>= 1.18), +Standards-Version: 4.0.0 Homepage: http://www.mate-desktop.org/ -Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-mate/libmatemixer.git;a=summary -Vcs-Git: git://anonscm.debian.org/pkg-mate/libmatemixer.git +Vcs-Browser: https://anonscm.debian.org/git/pkg-mate/libmatemixer.git +Vcs-Git: https://anonscm.debian.org/git/pkg-mate/libmatemixer.git Package: libmatemixer0 Architecture: any @@ -68,19 +69,3 @@ . This package contains the development files. -Package: libmatemixer0-dbg -Section: debug -Priority: extra -Architecture: any -Multi-Arch: same -Depends: libmatemixer0 (= ${binary:Version}), - ${misc:Depends}, -Description: Mixer library for MATE Desktop (debug files) - Mixer library for MATE Desktop. It provides an abstract API allowing - access to mixer functionality available in the PulseAudio, ALSA and OSS - sound systems. - . - This package contains debugging symbols for the library. - . - The debugging symbols are installed in /usr/lib/debug and will - automatically be used by gdb. diff -Nru libmatemixer-1.12.1/debian/libmatemixer0.lintian-overrides libmatemixer-1.18.0/debian/libmatemixer0.lintian-overrides --- libmatemixer-1.12.1/debian/libmatemixer0.lintian-overrides 2015-06-15 06:24:33.000000000 +0000 +++ libmatemixer-1.18.0/debian/libmatemixer0.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1,4 +0,0 @@ -# libmatemixer backend plugin -libmatemixer0: unused-shlib-entry-in-control-file libmatemixer pulse -libmatemixer0: unused-shlib-entry-in-control-file libmatemixer alsa -libmatemixer0: unused-shlib-entry-in-control-file libmatemixer null diff -Nru libmatemixer-1.12.1/debian/libmatemixer0.symbols libmatemixer-1.18.0/debian/libmatemixer0.symbols --- libmatemixer-1.12.1/debian/libmatemixer0.symbols 2015-06-15 04:07:49.000000000 +0000 +++ libmatemixer-1.18.0/debian/libmatemixer0.symbols 2016-09-30 06:57:44.000000000 +0000 @@ -162,6 +162,7 @@ pulse_stream_control_get_cvolume@Base 1.10.0 pulse_stream_control_get_index@Base 1.10.0 pulse_stream_control_get_monitor@Base 1.10.0 + pulse_stream_control_get_stream_index@Base 1.16.0 pulse_stream_control_get_type@Base 1.10.0 pulse_stream_control_set_app_info@Base 1.10.0 pulse_stream_control_set_channel_map@Base 1.10.0 diff -Nru libmatemixer-1.12.1/debian/rules libmatemixer-1.18.0/debian/rules --- libmatemixer-1.12.1/debian/rules 2015-06-16 07:08:50.000000000 +0000 +++ libmatemixer-1.18.0/debian/rules 2017-07-08 21:51:51.000000000 +0000 @@ -4,13 +4,20 @@ DHFLAGS=--parallel +export DEB_BUILD_MAINT_OPTIONS = hardening=+all +DPKG_EXPORT_BUILDFLAGS = 1 +include /usr/share/dpkg/buildflags.mk + %: - dh $@ $(DHFLAGS) + dh $@ $(DHFLAGS) --without autoreconf + +override_dh_missing: + dh_missing --fail-missing override_dh_install: rm -rfv debian/tmp/usr/lib/*/*.la rm -rfv debian/tmp/usr/lib/*/*/*.la - dh_install --fail-missing + dh_install override_dh_auto_configure: NOCONFIGURE=1 ./autogen.sh @@ -24,7 +31,7 @@ dh_installchangelogs NEWS override_dh_strip: - dh_strip -plibmatemixer0 --dbg-package=libmatemixer0-dbg + dh_strip -plibmatemixer0 --dbgsym-migration='libmatemixer0-dbg (<< 1.14.0-2~)' get-orig-source: uscan --noconf --force-download --rename --download-current-version --destdir=.. diff -Nru libmatemixer-1.12.1/docs/reference/Makefile.am libmatemixer-1.18.0/docs/reference/Makefile.am --- libmatemixer-1.12.1/docs/reference/Makefile.am 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/docs/reference/Makefile.am 2017-03-12 15:31:59.000000000 +0000 @@ -53,15 +53,15 @@ # Header files or dirs to ignore when scanning. Use base file/dir names # e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h private_code IGNORE_HFILES= \ - matemixer-app-info-private.h \ - matemixer-backend.h \ - matemixer-backend-module.h \ - matemixer-enum-types.h \ - matemixer-stream-control-private.h \ - matemixer-stream-private.h \ - matemixer-switch-option-private.h \ - matemixer-switch-private.h \ - matemixer-private.h + matemixer-app-info-private.h \ + matemixer-backend.h \ + matemixer-backend-module.h \ + matemixer-enum-types.h \ + matemixer-stream-control-private.h \ + matemixer-stream-private.h \ + matemixer-switch-option-private.h \ + matemixer-switch-private.h \ + matemixer-private.h # Images to copy into HTML directory. # e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png @@ -82,13 +82,13 @@ # e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS) # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib) GTKDOC_CFLAGS= \ - -I$(top_srcdir) \ - -I$(top_builddir) \ - $(GLIB_CFLAGS) + -I$(top_srcdir) \ + -I$(top_builddir) \ + $(GLIB_CFLAGS) GTKDOC_LIBS= \ - $(top_builddir)/libmatemixer/libmatemixer.la \ - $(GLIB_LIBS) + $(top_builddir)/libmatemixer/libmatemixer.la \ + $(GLIB_LIBS) # This includes the standard gtk-doc make rules, copied by gtkdocize. include $(top_srcdir)/gtk-doc.make @@ -100,14 +100,14 @@ # Files not to distribute # for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types # for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt -#DISTCLEANFILES += +DISTCLEANFILES = $(DOC_MODULE).types # Comment this out if you want 'make check' to test you doc status # and run some sanity checks if ENABLE_GTK_DOC TESTS_ENVIRONMENT = \ - DOC_MODULE=$(DOC_MODULE) DOC_MAIN_SGML_FILE=$(DOC_MAIN_SGML_FILE) \ - SRCDIR=$(abs_srcdir) BUILDDIR=$(abs_builddir) + DOC_MODULE=$(DOC_MODULE) DOC_MAIN_SGML_FILE=$(DOC_MAIN_SGML_FILE) \ + SRCDIR=$(abs_srcdir) BUILDDIR=$(abs_builddir) #TESTS = $(GTKDOC_CHECK) endif diff -Nru libmatemixer-1.12.1/examples/Makefile.am libmatemixer-1.18.0/examples/Makefile.am --- libmatemixer-1.12.1/examples/Makefile.am 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/examples/Makefile.am 2017-03-12 15:31:59.000000000 +0000 @@ -1,14 +1,14 @@ AM_CPPFLAGS = \ - -I$(top_srcdir) \ - $(GLIB_CFLAGS) + -I$(top_srcdir) \ + $(GLIB_CFLAGS) noinst_PROGRAMS = matemixer-monitor matemixer_monitor_SOURCES = monitor.c matemixer_monitor_LDADD = \ - $(GLIB_LIBS) \ - $(top_builddir)/libmatemixer/libmatemixer.la + $(GLIB_LIBS) \ + $(top_builddir)/libmatemixer/libmatemixer.la EXTRA_DIST = monitor.c diff -Nru libmatemixer-1.12.1/libmatemixer/Makefile.am libmatemixer-1.18.0/libmatemixer/Makefile.am --- libmatemixer-1.12.1/libmatemixer/Makefile.am 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/libmatemixer/Makefile.am 2017-03-12 15:31:59.000000000 +0000 @@ -1,63 +1,63 @@ lib_LTLIBRARIES = libmatemixer.la AM_CPPFLAGS = \ - -I$(top_srcdir) \ - -I$(top_srcdir)/libmatemixer \ - -DG_LOG_DOMAIN=\"libmatemixer\" \ - -DLIBMATEMIXER_BACKEND_DIR=\"$(libdir)/libmatemixer\" + -I$(top_srcdir) \ + -I$(top_srcdir)/libmatemixer \ + -DG_LOG_DOMAIN=\"libmatemixer\" \ + -DLIBMATEMIXER_BACKEND_DIR=\"$(libdir)/libmatemixer\" libmatemixer_includedir = $(includedir)/mate-mixer/libmatemixer libmatemixer_include_HEADERS = \ - matemixer.h \ - matemixer-app-info.h \ - matemixer-context.h \ - matemixer-device.h \ - matemixer-device-switch.h \ - matemixer-enums.h \ - matemixer-enum-types.h \ - matemixer-stored-control.h \ - matemixer-stream.h \ - matemixer-stream-control.h \ - matemixer-stream-switch.h \ - matemixer-stream-toggle.h \ - matemixer-switch.h \ - matemixer-switch-option.h \ - matemixer-types.h \ - matemixer-version.h + matemixer.h \ + matemixer-app-info.h \ + matemixer-context.h \ + matemixer-device.h \ + matemixer-device-switch.h \ + matemixer-enums.h \ + matemixer-enum-types.h \ + matemixer-stored-control.h \ + matemixer-stream.h \ + matemixer-stream-control.h \ + matemixer-stream-switch.h \ + matemixer-stream-toggle.h \ + matemixer-switch.h \ + matemixer-switch-option.h \ + matemixer-types.h \ + matemixer-version.h libmatemixer_la_CFLAGS = $(GLIB_CFLAGS) libmatemixer_la_SOURCES = \ - matemixer.c \ - matemixer-private.h \ - matemixer-app-info.c \ - matemixer-app-info-private.h \ - matemixer-backend.c \ - matemixer-backend.h \ - matemixer-backend-module.c \ - matemixer-backend-module.h \ - matemixer-context.c \ - matemixer-device.c \ - matemixer-device-switch.c \ - matemixer-enum-types.c \ - matemixer-stored-control.c \ - matemixer-stream.c \ - matemixer-stream-private.h \ - matemixer-stream-control.c \ - matemixer-stream-control-private.h \ - matemixer-stream-switch.c \ - matemixer-stream-toggle.c \ - matemixer-switch.c \ - matemixer-switch-private.h \ - matemixer-switch-option.c \ - matemixer-switch-option-private.h + matemixer.c \ + matemixer-private.h \ + matemixer-app-info.c \ + matemixer-app-info-private.h \ + matemixer-backend.c \ + matemixer-backend.h \ + matemixer-backend-module.c \ + matemixer-backend-module.h \ + matemixer-context.c \ + matemixer-device.c \ + matemixer-device-switch.c \ + matemixer-enum-types.c \ + matemixer-stored-control.c \ + matemixer-stream.c \ + matemixer-stream-private.h \ + matemixer-stream-control.c \ + matemixer-stream-control-private.h \ + matemixer-stream-switch.c \ + matemixer-stream-toggle.c \ + matemixer-switch.c \ + matemixer-switch-private.h \ + matemixer-switch-option.c \ + matemixer-switch-option-private.h libmatemixer_la_LIBADD = $(GLIB_LIBS) libmatemixer_la_LDFLAGS = \ - -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ - -no-undefined \ - -export-dynamic + -version-info $(LT_VERSION) \ + -no-undefined \ + -export-dynamic -include $(top_srcdir)/git.mk diff -Nru libmatemixer-1.12.1/libmatemixer/matemixer-backend.c libmatemixer-1.18.0/libmatemixer/matemixer-backend.c --- libmatemixer-1.12.1/libmatemixer/matemixer-backend.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/libmatemixer/matemixer-backend.c 2017-03-12 15:31:59.000000000 +0000 @@ -618,6 +618,7 @@ MateMixerStream *stream) { g_return_if_fail (MATE_MIXER_IS_BACKEND (backend)); + g_return_if_fail (stream == NULL || MATE_MIXER_IS_STREAM (stream)); if (backend->priv->default_input == stream) return; @@ -642,6 +643,7 @@ MateMixerStream *stream) { g_return_if_fail (MATE_MIXER_IS_BACKEND (backend)); + g_return_if_fail (stream == NULL || MATE_MIXER_IS_STREAM (stream)); if (backend->priv->default_output == stream) return; diff -Nru libmatemixer-1.12.1/libmatemixer/matemixer-device.c libmatemixer-1.18.0/libmatemixer/matemixer-device.c --- libmatemixer-1.12.1/libmatemixer/matemixer-device.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/libmatemixer/matemixer-device.c 2017-03-12 15:31:59.000000000 +0000 @@ -382,6 +382,9 @@ MateMixerStream * mate_mixer_device_get_stream (MateMixerDevice *device, const gchar *name) { + g_return_val_if_fail (MATE_MIXER_IS_DEVICE (device), NULL); + g_return_val_if_fail (name != NULL, NULL); + return MATE_MIXER_DEVICE_GET_CLASS (device)->get_stream (device, name); } @@ -404,6 +407,9 @@ MateMixerDeviceSwitch * mate_mixer_device_get_switch (MateMixerDevice *device, const gchar *name) { + g_return_val_if_fail (MATE_MIXER_IS_DEVICE (device), NULL); + g_return_val_if_fail (name != NULL, NULL); + return MATE_MIXER_DEVICE_GET_CLASS (device)->get_switch (device, name); } diff -Nru libmatemixer-1.12.1/libmatemixer/matemixer-stream.c libmatemixer-1.18.0/libmatemixer/matemixer-stream.c --- libmatemixer-1.12.1/libmatemixer/matemixer-stream.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/libmatemixer/matemixer-stream.c 2017-03-12 15:31:59.000000000 +0000 @@ -393,9 +393,19 @@ MateMixerStreamControl * mate_mixer_stream_get_default_control (MateMixerStream *stream) { + const GList *list; + g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), NULL); - return stream->priv->control; + if (stream->priv->control != NULL) + return stream->priv->control; + + /* If the stream does not have a default control, just return the first one */ + list = mate_mixer_stream_list_controls (stream); + if (list != NULL) + return MATE_MIXER_STREAM_CONTROL (list->data); + + return NULL; } /** diff -Nru libmatemixer-1.12.1/libmatemixer/matemixer-stream-control.c libmatemixer-1.18.0/libmatemixer/matemixer-stream-control.c --- libmatemixer-1.12.1/libmatemixer/matemixer-stream-control.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/libmatemixer/matemixer-stream-control.c 2017-03-12 15:31:59.000000000 +0000 @@ -405,6 +405,7 @@ MateMixerStream *stream) { g_return_val_if_fail (MATE_MIXER_IS_STREAM_CONTROL (control), FALSE); + g_return_val_if_fail (stream == NULL || MATE_MIXER_IS_STREAM (stream), FALSE); if ((control->priv->flags & MATE_MIXER_STREAM_CONTROL_MOVABLE) == 0) return FALSE; @@ -882,6 +883,7 @@ MateMixerStream *stream) { g_return_if_fail (MATE_MIXER_IS_STREAM_CONTROL (control)); + g_return_if_fail (stream == NULL || MATE_MIXER_IS_STREAM (stream)); if (control->priv->stream == stream) return; diff -Nru libmatemixer-1.12.1/libmatemixer/matemixer-switch.c libmatemixer-1.18.0/libmatemixer/matemixer-switch.c --- libmatemixer-1.12.1/libmatemixer/matemixer-switch.c 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/libmatemixer/matemixer-switch.c 2017-03-12 15:31:59.000000000 +0000 @@ -253,6 +253,7 @@ mate_mixer_switch_get_option (MateMixerSwitch *swtch, const gchar *name) { g_return_val_if_fail (MATE_MIXER_IS_SWITCH (swtch), NULL); + g_return_val_if_fail (name != NULL, NULL); return MATE_MIXER_SWITCH_GET_CLASS (swtch)->get_option (swtch, name); } diff -Nru libmatemixer-1.12.1/Makefile.am libmatemixer-1.18.0/Makefile.am --- libmatemixer-1.12.1/Makefile.am 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/Makefile.am 2017-03-12 15:31:59.000000000 +0000 @@ -1,31 +1,41 @@ ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} SUBDIRS = \ - libmatemixer \ - backends \ - data \ - docs \ - examples \ - po + libmatemixer \ + backends \ + data \ + docs \ + examples \ + po EXTRA_DIST = autogen.sh -MAINTAINERCLEANFILES = \ - $(srcdir)/aclocal.m4 \ - $(srcdir)/config.h.in \ - $(srcdir)/build-aux/compile \ - $(srcdir)/build-aux/config.guess \ - $(srcdir)/build-aux/config.sub \ - $(srcdir)/build-aux/depcomp \ - $(srcdir)/build-aux/install-sh \ - $(srcdir)/build-aux/ltmain.sh \ - $(srcdir)/build-aux/missing \ - $(srcdir)/build-aux/mkinstalldirs \ - $(srcdir)/m4/libtool.m4 \ - $(srcdir)/m4/lt~obsolete.m4 \ - $(srcdir)/m4/ltoptions.m4 \ - $(srcdir)/m4/ltsugar.m4 \ - $(srcdir)/m4/ltversion.m4 \ - $(srcdir)/m4/gtk-doc.m4 +MAINTAINERCLEANFILES = \ + $(srcdir)/aclocal.m4 \ + $(srcdir)/config.h.in \ + $(srcdir)/build-aux/compile \ + $(srcdir)/build-aux/config.guess \ + $(srcdir)/build-aux/config.sub \ + $(srcdir)/build-aux/depcomp \ + $(srcdir)/build-aux/install-sh \ + $(srcdir)/build-aux/ltmain.sh \ + $(srcdir)/build-aux/missing \ + $(srcdir)/build-aux/mkinstalldirs \ + $(srcdir)/m4/libtool.m4 \ + $(srcdir)/m4/lt~obsolete.m4 \ + $(srcdir)/m4/ltoptions.m4 \ + $(srcdir)/m4/ltsugar.m4 \ + $(srcdir)/m4/ltversion.m4 \ + $(srcdir)/m4/gtk-doc.m4 + +# Build ChangeLog from GIT history +ChangeLog: + $(AM_V_GEN) if test -d $(top_srcdir)/.git; then \ + GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \ + fi + +dist: ChangeLog + +.PHONY: ChangeLog -include $(top_srcdir)/git.mk diff -Nru libmatemixer-1.12.1/NEWS libmatemixer-1.18.0/NEWS --- libmatemixer-1.12.1/NEWS 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/NEWS 2017-03-12 15:31:59.000000000 +0000 @@ -1,32 +1,43 @@ -============== -Version 1.12.1 -============== +### libmatemixer 1.18.0 -- Translations update + * NEWS: use consistent, project wide, markdown-like formatting + to make generating release announcements easier + * Translations update -============== -Version 1.12.0 -============== +### libmatemixer 1.16.0 -- oss: Only use modify counter for polling on Linux, it is broken on BSDs -- alsa: Fix FTBFS with old versions of ALSA -- alsa: Fix fade -- Translations update + * Translations update -============== -Version 1.10.0 -============== +### libmatemixer 1.14.0 -- First stable release + * Require PulseAudio 2.0 or newer + * Improve error checking in many places + * Fix PulseAudio volume limits + * Some other PulseAudio fixes + * Some fixes and improvements in alsa and oss backends + * Some more fixes and cleanups + * Translations update + * Create Changelog from git -============== -Version 1.9.90 -============== +### libmatemixer 1.12.1 -- New APIs: MateMixerDeviceSwitch, MateMixerStreamSwitch + * Translations update -============= -Version 1.9.0 -============= +### libmatemixer 1.12.0 -- Initial release + * oss: Only use modify counter for polling on Linux, it is broken on BSDs + * alsa: Fix FTBFS with old versions of ALSA + * alsa: Fix fade + * Translations update + +### libmatemixer 1.10.0 + + * First stable release + +### libmatemixer 1.9.90 + + * New APIs: MateMixerDeviceSwitch, MateMixerStreamSwitch + +### libmatemixer 1.9.0 + + * Initial release diff -Nru libmatemixer-1.12.1/po/am.po libmatemixer-1.18.0/po/am.po --- libmatemixer-1.12.1/po/am.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/am.po 2017-03-12 15:31:59.000000000 +0000 @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# samson , 2014-2015 +# samson , 2014-2015,2017 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-09-09 10:54+0000\n" -"Last-Translator: infirit \n" +"PO-Revision-Date: 2017-03-03 22:51+0000\n" +"Last-Translator: samson \n" "Language-Team: Amharic (http://www.transifex.com/mate/MATE/language/am/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,11 +25,11 @@ #: ../backends/alsa/alsa-constants.c:41 msgid "Hardware Master" -msgstr "" +msgstr "ዋናው ጠንካራ አካል" #: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 msgid "PCM" -msgstr "" +msgstr "PCM" #. OSS manual says this should be the beeper, but Linux OSS seems to assign it #. to @@ -70,7 +70,7 @@ #: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 msgid "CLFE Speaker" -msgstr "" +msgstr "CLFE ስፒከር" #: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 msgid "Digital" @@ -78,11 +78,11 @@ #: ../backends/alsa/alsa-constants.c:60 msgid "Master Mono" -msgstr "" +msgstr "ዋናው ነጠላ" #: ../backends/alsa/alsa-constants.c:61 msgid "Master Digital" -msgstr "" +msgstr "ዋናው ዲጂታል" #: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 msgid "Side Speaker" @@ -116,58 +116,58 @@ #: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 msgid "LFE Speaker" -msgstr "" +msgstr "LFE ስፒከር" #: ../backends/alsa/alsa-constants.c:72 msgid "Bass Speaker" -msgstr "" +msgstr "ባስ ስፒከር" #: ../backends/alsa/alsa-constants.c:73 msgid "PC Speaker" -msgstr "" +msgstr "የ ፒሲ ስፒከር" #: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 msgid "Synth" -msgstr "" +msgstr "Synth" #: ../backends/alsa/alsa-constants.c:75 msgid "MIDI" -msgstr "" +msgstr "MIDI" #: ../backends/alsa/alsa-constants.c:76 msgid "Synth/MIDI" -msgstr "" +msgstr "Synth/MIDI" #: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 msgid "Bass" -msgstr "" +msgstr "ባስ" #: ../backends/alsa/alsa-constants.c:78 ../backends/oss/oss-device.c:90 msgid "Treble" -msgstr "" +msgstr "ቴረብል" #. Input controls #: ../backends/alsa/alsa-constants.c:81 msgid "Capture" -msgstr "" +msgstr "መያዣ" #. Microphone options #: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 #: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 #: ../backends/oss/oss-device.c:97 msgid "Microphone" -msgstr "" +msgstr "ማይክሮፎን" #: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 msgid "Microphone/Line In" -msgstr "" +msgstr "ማይክሮፎን/መስመር ማስገቢያ" #: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 #: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 #: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 #: ../backends/alsa/alsa-constants.c:173 msgid "Internal Microphone" -msgstr "" +msgstr "የውስጥ ማይክሮፎን" #: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 #: ../backends/alsa/alsa-constants.c:164 @@ -181,19 +181,19 @@ #: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 msgid "Dock Microphone" -msgstr "" +msgstr "ማይክሮፎን ማሳረፊያ" #: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 msgid "Headphone Microphone" -msgstr "" +msgstr "በ ጆሮ ማድመጫ ማይክሮፎን" #: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 msgid "Headset Microphone" -msgstr "" +msgstr "በ ጆሮ ማድመጫ ማይክሮፎን" #: ../backends/alsa/alsa-constants.c:91 msgid "Inverted Internal Microphone" -msgstr "" +msgstr "የ ተገለበጠ የውስጥ ማይክሮፎን" #: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 #: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 @@ -201,12 +201,12 @@ #: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 #: ../backends/oss/oss-device.c:96 msgid "Line In" -msgstr "" +msgstr "መስመር ማስገቢያ" #: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 #: ../backends/alsa/alsa-constants.c:206 msgid "Auxiliary" -msgstr "" +msgstr "ተጨማሪ" #: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 #: ../backends/oss/oss-device.c:115 @@ -215,7 +215,7 @@ #: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 msgid "TV Tuner" -msgstr "" +msgstr "ቲቪ ማስተካከያ" #: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 msgid "FM" @@ -223,129 +223,129 @@ #: ../backends/alsa/alsa-constants.c:100 msgid "Microphone Boost" -msgstr "" +msgstr "ማይክሮፎን መጨመሪያ" #: ../backends/alsa/alsa-constants.c:101 msgid "Microphone Boost (+20dB)" -msgstr "" +msgstr "ማይክሮፎን መጨመሪያ (+20dB)" #: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 msgid "Internal Microphone Boost" -msgstr "" +msgstr "የ ውስጥ ማይክሮፎን መጨመሪያ" #: ../backends/alsa/alsa-constants.c:104 msgid "Front Microphone Boost" -msgstr "" +msgstr "የ ፊት ለፊት ማይክሮፎን መጨመሪያ" #: ../backends/alsa/alsa-constants.c:105 msgid "Rear Microphone Boost" -msgstr "" +msgstr "የ ኋላ ማይክሮፎን መጨመሪያ" #: ../backends/alsa/alsa-constants.c:106 msgid "Dock Microphone Boost" -msgstr "" +msgstr "ማሳረፊያ የ ማይክሮፎን መጨመሪያ" #: ../backends/alsa/alsa-constants.c:107 msgid "Headphone Microphone Boost" -msgstr "" +msgstr "በ ጆሮ ማድመጫ ማይክሮፎን መጨመሪያ" #: ../backends/alsa/alsa-constants.c:108 msgid "Headset Microphone Boost" -msgstr "" +msgstr "በ ጆሮ ማድመጫ ማይክሮፎን መጨመሪያ " #: ../backends/alsa/alsa-constants.c:109 msgid "Line In Boost" -msgstr "" +msgstr "መስመር ወደ ውስጥ መጨመሪያ" #. Switches #: ../backends/alsa/alsa-constants.c:116 msgid "Analog Output" -msgstr "" +msgstr "የ አናሎግ ውጤት" #: ../backends/alsa/alsa-constants.c:117 msgid "Analog Source" -msgstr "" +msgstr "የ አናሎግ ምንጭ" #: ../backends/alsa/alsa-constants.c:118 msgid "Capture Source" -msgstr "" +msgstr "ምንጩን መያዣ" #: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 msgid "Input Source" -msgstr "" +msgstr "የ ማስገቢያ ምንጭ" #: ../backends/alsa/alsa-constants.c:121 msgid "Digital Input Source" -msgstr "" +msgstr "ዲጂታል ማስገቢያ ምንጭ" #: ../backends/alsa/alsa-constants.c:122 msgid "PCM Capture Source" -msgstr "" +msgstr "PCM ምንጩን መያዣ" #: ../backends/alsa/alsa-constants.c:123 msgid "Digital Playback Source" -msgstr "" +msgstr "ዲጂታል መልሶ ማጨወቻ ምንጭ" #: ../backends/alsa/alsa-constants.c:124 msgid "Mono Output" -msgstr "" +msgstr "ነጠላ ውጤት" #: ../backends/alsa/alsa-constants.c:125 msgid "Shared Microphone/Line In" -msgstr "" +msgstr "የሚካፈሉት ማይክሮፎን/መስመር ወደ ውስጥ" #: ../backends/alsa/alsa-constants.c:127 msgid "Microphone Jack Mode" -msgstr "" +msgstr "ማይክሮፎን Jack Mode" #: ../backends/alsa/alsa-constants.c:128 msgid "Surround Jack Mode" -msgstr "" +msgstr "የ ተከበበ Jack Mode" #: ../backends/alsa/alsa-constants.c:129 msgid "Auto-Mute Mode" -msgstr "" +msgstr "በራሱ-መቀነሻ ዘዴ" #. Toggles #: ../backends/alsa/alsa-constants.c:132 msgid "External Amplifier" -msgstr "" +msgstr "የ ውስጥ ማጉሊያ" #: ../backends/alsa/alsa-constants.c:133 msgid "Bass Boost" -msgstr "" +msgstr "ባስ መጨመሪያ" #: ../backends/alsa/alsa-constants.c:134 msgid "Capture Boost" -msgstr "" +msgstr "መጨመሪያ መያዣ" #: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 msgid "Digital In" -msgstr "" +msgstr "ዲጂታል ማስገቢያ" #: ../backends/alsa/alsa-constants.c:137 msgid "Digital Default PCM" -msgstr "" +msgstr "ዲጂታል ነባር PCM" #: ../backends/alsa/alsa-constants.c:138 msgid "Optical" -msgstr "" +msgstr "ሲዲ" #: ../backends/alsa/alsa-constants.c:139 msgid "Auto Gain Control" -msgstr "" +msgstr "በራሱ መቆጣጠሪያ ማግኛ" #: ../backends/alsa/alsa-constants.c:140 msgid "Mix" -msgstr "" +msgstr "መቀላቀያ" #: ../backends/alsa/alsa-constants.c:141 msgid "Mix Mono" -msgstr "" +msgstr "ነጠላ መቀላቀያ" #: ../backends/alsa/alsa-constants.c:142 msgid "Microphone Capture" -msgstr "" +msgstr "ማይክሮፎን መጨመሪያ" #: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 msgid "Input 1" @@ -366,7 +366,7 @@ #: ../backends/alsa/alsa-constants.c:153 msgid "Front Panel Headphones" -msgstr "" +msgstr "የ ፊት በኩል ማይክሮፎን " #: ../backends/alsa/alsa-constants.c:158 msgid "Microphone 1" @@ -379,15 +379,15 @@ #: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 #: ../backends/alsa/alsa-constants.c:162 msgid "Microphone In" -msgstr "" +msgstr "ማይክሮፎን ማስገቢያ" #: ../backends/alsa/alsa-constants.c:170 msgid "Internal Microphone 1" -msgstr "" +msgstr "የውስጥ ማይክሮፎን 1 " #: ../backends/alsa/alsa-constants.c:174 msgid "Internal Digital Microphone" -msgstr "" +msgstr "የውስጥ ዲጂታል ማይክሮፎን" #: ../backends/alsa/alsa-constants.c:175 ../backends/alsa/alsa-constants.c:178 msgid "Digital Microphone" @@ -404,57 +404,57 @@ #: ../backends/alsa/alsa-constants.c:179 ../backends/alsa/alsa-constants.c:180 #: ../backends/alsa/alsa-constants.c:181 ../backends/alsa/alsa-constants.c:182 msgid "External Microphone" -msgstr "" +msgstr "የውጪ ማይክሮፎን" #: ../backends/alsa/alsa-constants.c:185 msgid "Camera Microphone" -msgstr "" +msgstr "የ ካሜራ ማይክሮፎን" #. Other options #: ../backends/alsa/alsa-constants.c:188 msgid "Analog" -msgstr "" +msgstr "አናሎግ " #: ../backends/alsa/alsa-constants.c:189 msgid "Analog In" -msgstr "" +msgstr "አናሎግ ማስገቢያ" #: ../backends/alsa/alsa-constants.c:190 msgid "Analog Inputs" -msgstr "" +msgstr "አናሎግ ማስገቢያ " #: ../backends/alsa/alsa-constants.c:195 msgid "Line In/Microphone" -msgstr "" +msgstr "የ ማይክሮፎን/መስመር ማስገቢያ" #: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 msgid "Auxiliary In" -msgstr "" +msgstr "ተጨማሪ ማስገቢያ" #: ../backends/alsa/alsa-constants.c:207 msgid "Auxiliary 0" -msgstr "" +msgstr "ተጨማሪ 0" #: ../backends/alsa/alsa-constants.c:208 msgid "Auxiliary 1" -msgstr "" +msgstr "ተጨማሪ 1" #: ../backends/alsa/alsa-constants.c:209 msgid "Auxiliary 2" -msgstr "" +msgstr "ተጨማሪ 2" #: ../backends/alsa/alsa-constants.c:210 msgid "Auxiliary 3" -msgstr "" +msgstr "ተጨማሪ 3" #: ../backends/alsa/alsa-constants.c:211 msgid "Docking Station" -msgstr "" +msgstr "ማሳረፊያ ጣቢያ" #. Recording monitor #: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 msgid "Mixer" -msgstr "" +msgstr "መቀላቀያ" #: ../backends/alsa/alsa-constants.c:216 msgid "Unknown 1" @@ -483,7 +483,7 @@ #: ../backends/oss/oss-backend.c:403 #, c-format msgid "OSS Mixer %d" -msgstr "" +msgstr "OSS Mixer %d" #: ../backends/oss/oss-device.c:88 msgid "Volume" @@ -491,32 +491,32 @@ #: ../backends/oss/oss-device.c:101 msgid "PCM 2" -msgstr "" +msgstr "PCM 2" #. Recording level (master input) #: ../backends/oss/oss-device.c:103 msgid "Record" -msgstr "" +msgstr "መቅረጫ" #: ../backends/oss/oss-device.c:104 msgid "Input Gain" -msgstr "" +msgstr "ማስገቢያ ማግኛ" #: ../backends/oss/oss-device.c:105 msgid "Output Gain" -msgstr "" +msgstr "ማውጫ ማግኛ" #: ../backends/oss/oss-device.c:106 msgid "Line In 1" -msgstr "" +msgstr "መስመር ማስገቢያ 1" #: ../backends/oss/oss-device.c:107 msgid "Line In 2" -msgstr "" +msgstr "መስመር ማስገቢያ 2 " #: ../backends/oss/oss-device.c:108 msgid "Line In 3" -msgstr "" +msgstr "መስመር ማስገቢያ 3 " #. These 3 can be attached to either digital input or output #: ../backends/oss/oss-device.c:110 @@ -533,11 +533,11 @@ #: ../backends/oss/oss-device.c:113 msgid "Phone In" -msgstr "" +msgstr "ስልክ ማስገቢያ" #: ../backends/oss/oss-device.c:114 msgid "Phone Out" -msgstr "" +msgstr "ስልክ ማውጫ" #: ../backends/oss/oss-device.c:116 msgid "Radio" @@ -547,7 +547,7 @@ #: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 #: ../backends/pulse/pulse-source.c:146 msgid "Connector" -msgstr "" +msgstr "አገናኝ" #: ../backends/pulse/pulse-device.c:399 msgid "Profile" @@ -555,4 +555,4 @@ #: ../backends/pulse/pulse-monitor.c:282 msgid "Peak detect" -msgstr "" +msgstr "ከፍታ ተገኝቷል" diff -Nru libmatemixer-1.12.1/po/ar.po libmatemixer-1.18.0/po/ar.po --- libmatemixer-1.12.1/po/ar.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/ar.po 2017-03-12 15:31:59.000000000 +0000 @@ -4,14 +4,15 @@ # # Translators: # alibacha19 , 2015 +# Saif Husam , 2016 # مهدي السطيفي , 2015 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-09-09 10:54+0000\n" -"Last-Translator: infirit \n" +"PO-Revision-Date: 2016-09-13 11:55+0000\n" +"Last-Translator: Saif Husam \n" "Language-Team: Arabic (http://www.transifex.com/mate/MATE/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,7 +64,7 @@ #: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 #: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 msgid "Surround Speaker" -msgstr "" +msgstr "محيط السماعة" #: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 msgid "Center Speaker" diff -Nru libmatemixer-1.12.1/po/be.po libmatemixer-1.18.0/po/be.po --- libmatemixer-1.12.1/po/be.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/be.po 2017-03-12 15:31:59.000000000 +0000 @@ -9,8 +9,8 @@ "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-09-09 10:54+0000\n" -"Last-Translator: infirit \n" +"PO-Revision-Date: 2015-11-10 09:19+0000\n" +"Last-Translator: Mihail Varantsou \n" "Language-Team: Belarusian (http://www.transifex.com/mate/MATE/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -288,11 +288,11 @@ #: ../backends/alsa/alsa-constants.c:124 msgid "Mono Output" -msgstr "" +msgstr "Мона-выхад" #: ../backends/alsa/alsa-constants.c:125 msgid "Shared Microphone/Line In" -msgstr "" +msgstr "Агульны мікрафон/Лінейны ўваход" #: ../backends/alsa/alsa-constants.c:127 msgid "Microphone Jack Mode" @@ -345,7 +345,7 @@ #: ../backends/alsa/alsa-constants.c:142 msgid "Microphone Capture" -msgstr "" +msgstr "Захоп з мікрафона" #: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 msgid "Input 1" @@ -547,7 +547,7 @@ #: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 #: ../backends/pulse/pulse-source.c:146 msgid "Connector" -msgstr "" +msgstr "Раздым" #: ../backends/pulse/pulse-device.c:399 msgid "Profile" diff -Nru libmatemixer-1.12.1/po/bg.po libmatemixer-1.18.0/po/bg.po --- libmatemixer-1.12.1/po/bg.po 1970-01-01 00:00:00.000000000 +0000 +++ libmatemixer-1.18.0/po/bg.po 2017-03-12 15:31:59.000000000 +0000 @@ -0,0 +1,558 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Замфир Йончев , 2016 +msgid "" +msgstr "" +"Project-Id-Version: MATE Desktop Environment\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-09 12:55+0200\n" +"PO-Revision-Date: 2016-04-07 15:15+0000\n" +"Last-Translator: Замфир Йончев \n" +"Language-Team: Bulgarian (http://www.transifex.com/mate/MATE/language/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Output controls +#: ../backends/alsa/alsa-constants.c:40 +msgid "Master" +msgstr "Главен" + +#: ../backends/alsa/alsa-constants.c:41 +msgid "Hardware Master" +msgstr "Главно устройство" + +#: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 +msgid "PCM" +msgstr "PCM" + +#. OSS manual says this should be the beeper, but Linux OSS seems to assign it +#. to +#. * regular volume control +#: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 +msgid "Speaker" +msgstr "Високоговорител" + +#: ../backends/alsa/alsa-constants.c:44 +msgid "Desktop Speaker" +msgstr "Високоговорител на компютъра" + +#: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 +#: ../backends/alsa/alsa-constants.c:47 +msgid "Front Speaker" +msgstr "Преден високоговорител" + +#: ../backends/alsa/alsa-constants.c:48 +msgid "Headphone" +msgstr "Слушалка" + +#: ../backends/alsa/alsa-constants.c:49 +msgid "Headphone 2" +msgstr "Слушалка 2" + +#: ../backends/alsa/alsa-constants.c:50 +msgid "Headset" +msgstr "Слушалки" + +#: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 +#: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 +msgid "Surround Speaker" +msgstr "Обгражадащ високоговорител" + +#: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 +msgid "Center Speaker" +msgstr "Централен високоговорител" + +#: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 +msgid "CLFE Speaker" +msgstr "CLFE високоговорител" + +#: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 +msgid "Digital" +msgstr "Цифров" + +#: ../backends/alsa/alsa-constants.c:60 +msgid "Master Mono" +msgstr "Главен моно" + +#: ../backends/alsa/alsa-constants.c:61 +msgid "Master Digital" +msgstr "Главен цифров" + +#: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 +msgid "Side Speaker" +msgstr "Страничен високоговорител" + +#: ../backends/alsa/alsa-constants.c:64 +msgid "Rear Speaker" +msgstr "Заден вискоговорител" + +#: ../backends/alsa/alsa-constants.c:65 +msgid "Wave" +msgstr "Вълна" + +#: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 +#: ../backends/alsa/alsa-constants.c:215 +msgid "Phone" +msgstr "Телефон" + +#: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 +#: ../backends/oss/oss-device.c:98 +msgid "CD" +msgstr "Компактдиск" + +#: ../backends/alsa/alsa-constants.c:68 +msgid "Music" +msgstr "Музика" + +#: ../backends/alsa/alsa-constants.c:69 +msgid "AC97" +msgstr "AC97" + +#: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 +msgid "LFE Speaker" +msgstr "LFE високоговорител" + +#: ../backends/alsa/alsa-constants.c:72 +msgid "Bass Speaker" +msgstr "Нискочестотен високоговорител" + +#: ../backends/alsa/alsa-constants.c:73 +msgid "PC Speaker" +msgstr "Компютърен високоговорител" + +#: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 +msgid "Synth" +msgstr "Синтезиран" + +#: ../backends/alsa/alsa-constants.c:75 +msgid "MIDI" +msgstr "MIDI" + +#: ../backends/alsa/alsa-constants.c:76 +msgid "Synth/MIDI" +msgstr "Синтезиран/MIDI" + +#: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 +msgid "Bass" +msgstr "Ниски честоти" + +#: ../backends/alsa/alsa-constants.c:78 ../backends/oss/oss-device.c:90 +msgid "Treble" +msgstr "Високи честоти" + +#. Input controls +#: ../backends/alsa/alsa-constants.c:81 +msgid "Capture" +msgstr "Улавяне" + +#. Microphone options +#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 +#: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 +#: ../backends/oss/oss-device.c:97 +msgid "Microphone" +msgstr "Микрофон" + +#: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 +msgid "Microphone/Line In" +msgstr "Микрофон/Входен канал" + +#: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 +#: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 +#: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 +#: ../backends/alsa/alsa-constants.c:173 +msgid "Internal Microphone" +msgstr "Вътрешен микрофон" + +#: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 +#: ../backends/alsa/alsa-constants.c:164 +msgid "Front Microphone" +msgstr "Преден микрофон" + +#: ../backends/alsa/alsa-constants.c:87 ../backends/alsa/alsa-constants.c:183 +#: ../backends/alsa/alsa-constants.c:184 +msgid "Rear Microphone" +msgstr "Заден микрофон" + +#: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 +msgid "Dock Microphone" +msgstr "Външен микрофон" + +#: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 +msgid "Headphone Microphone" +msgstr "Микрофон на слушалка" + +#: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 +msgid "Headset Microphone" +msgstr "Микфорон на слушалки" + +#: ../backends/alsa/alsa-constants.c:91 +msgid "Inverted Internal Microphone" +msgstr "Обърнат вътрешен микрофон" + +#: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 +#: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 +#: ../backends/alsa/alsa-constants.c:192 ../backends/alsa/alsa-constants.c:193 +#: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 +#: ../backends/oss/oss-device.c:96 +msgid "Line In" +msgstr "Входен канал" + +#: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 +#: ../backends/alsa/alsa-constants.c:206 +msgid "Auxiliary" +msgstr "Aux порт" + +#: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 +#: ../backends/oss/oss-device.c:115 +msgid "Video" +msgstr "Видео" + +#: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 +msgid "TV Tuner" +msgstr "ТВ тунер" + +#: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 +msgid "FM" +msgstr "FM" + +#: ../backends/alsa/alsa-constants.c:100 +msgid "Microphone Boost" +msgstr "Усилване на микрофона" + +#: ../backends/alsa/alsa-constants.c:101 +msgid "Microphone Boost (+20dB)" +msgstr "Усилване на микрофона (+20dB)" + +#: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 +msgid "Internal Microphone Boost" +msgstr "Усилване на вътрешния микрофон" + +#: ../backends/alsa/alsa-constants.c:104 +msgid "Front Microphone Boost" +msgstr "Усилване на преден микрофон" + +#: ../backends/alsa/alsa-constants.c:105 +msgid "Rear Microphone Boost" +msgstr "Усилване на заден микрофон" + +#: ../backends/alsa/alsa-constants.c:106 +msgid "Dock Microphone Boost" +msgstr "Усилване на външен микрофон" + +#: ../backends/alsa/alsa-constants.c:107 +msgid "Headphone Microphone Boost" +msgstr "Усилване на микрофона на слушалката" + +#: ../backends/alsa/alsa-constants.c:108 +msgid "Headset Microphone Boost" +msgstr "Усилване на микорофона на слушалките" + +#: ../backends/alsa/alsa-constants.c:109 +msgid "Line In Boost" +msgstr "Усилване на входния канал" + +#. Switches +#: ../backends/alsa/alsa-constants.c:116 +msgid "Analog Output" +msgstr "Аналогов изход" + +#: ../backends/alsa/alsa-constants.c:117 +msgid "Analog Source" +msgstr "Аналогов вход" + +#: ../backends/alsa/alsa-constants.c:118 +msgid "Capture Source" +msgstr "Улавяне на входния сигнал" + +#: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 +msgid "Input Source" +msgstr "Входен източник" + +#: ../backends/alsa/alsa-constants.c:121 +msgid "Digital Input Source" +msgstr "Цифров входен източник" + +#: ../backends/alsa/alsa-constants.c:122 +msgid "PCM Capture Source" +msgstr "PCM улавяне на входния сигнал" + +#: ../backends/alsa/alsa-constants.c:123 +msgid "Digital Playback Source" +msgstr "Цифров източник на възпроизвеждане" + +#: ../backends/alsa/alsa-constants.c:124 +msgid "Mono Output" +msgstr "Моно изход" + +#: ../backends/alsa/alsa-constants.c:125 +msgid "Shared Microphone/Line In" +msgstr "Споденел Микрофон/Входен канал" + +#: ../backends/alsa/alsa-constants.c:127 +msgid "Microphone Jack Mode" +msgstr "Режим на жака на микрофона" + +#: ../backends/alsa/alsa-constants.c:128 +msgid "Surround Jack Mode" +msgstr "Режим на жака на обграждащия звук" + +#: ../backends/alsa/alsa-constants.c:129 +msgid "Auto-Mute Mode" +msgstr "Режим на автоматичо изключване на звука" + +#. Toggles +#: ../backends/alsa/alsa-constants.c:132 +msgid "External Amplifier" +msgstr "Външен усилвател" + +#: ../backends/alsa/alsa-constants.c:133 +msgid "Bass Boost" +msgstr "Усилване на ниските честоти" + +#: ../backends/alsa/alsa-constants.c:134 +msgid "Capture Boost" +msgstr "Усилване на улавянето" + +#: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 +msgid "Digital In" +msgstr "Цифров вход" + +#: ../backends/alsa/alsa-constants.c:137 +msgid "Digital Default PCM" +msgstr "Цифров PCM по подразбиране" + +#: ../backends/alsa/alsa-constants.c:138 +msgid "Optical" +msgstr "Оптичен" + +#: ../backends/alsa/alsa-constants.c:139 +msgid "Auto Gain Control" +msgstr "Контрол на автоматичното усилване" + +#: ../backends/alsa/alsa-constants.c:140 +msgid "Mix" +msgstr "Смесване" + +#: ../backends/alsa/alsa-constants.c:141 +msgid "Mix Mono" +msgstr "Смесване на моно" + +#: ../backends/alsa/alsa-constants.c:142 +msgid "Microphone Capture" +msgstr "Улавяне от микрофона" + +#: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 +msgid "Input 1" +msgstr "Вход 1" + +#: ../backends/alsa/alsa-constants.c:144 ../backends/alsa/alsa-constants.c:199 +msgid "Input 2" +msgstr "Вход 2" + +#. Output options +#: ../backends/alsa/alsa-constants.c:151 +msgid "Speakers" +msgstr "Високоговорители" + +#: ../backends/alsa/alsa-constants.c:152 +msgid "Headphones" +msgstr "Слушалки" + +#: ../backends/alsa/alsa-constants.c:153 +msgid "Front Panel Headphones" +msgstr "Слушалки на предния панел" + +#: ../backends/alsa/alsa-constants.c:158 +msgid "Microphone 1" +msgstr "Микрофон 1" + +#: ../backends/alsa/alsa-constants.c:159 +msgid "Microphone 2" +msgstr "Микрофон 2" + +#: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 +#: ../backends/alsa/alsa-constants.c:162 +msgid "Microphone In" +msgstr "Входен микрофон " + +#: ../backends/alsa/alsa-constants.c:170 +msgid "Internal Microphone 1" +msgstr "Вътрешен микрофон 1" + +#: ../backends/alsa/alsa-constants.c:174 +msgid "Internal Digital Microphone" +msgstr "Вътрешен цифров микрофон" + +#: ../backends/alsa/alsa-constants.c:175 ../backends/alsa/alsa-constants.c:178 +msgid "Digital Microphone" +msgstr "Цифров микрофон" + +#: ../backends/alsa/alsa-constants.c:176 +msgid "Digital Microphone 1" +msgstr "Цифров микрофон 1" + +#: ../backends/alsa/alsa-constants.c:177 +msgid "Digital Microphone 2" +msgstr "Цифров микрофон 2" + +#: ../backends/alsa/alsa-constants.c:179 ../backends/alsa/alsa-constants.c:180 +#: ../backends/alsa/alsa-constants.c:181 ../backends/alsa/alsa-constants.c:182 +msgid "External Microphone" +msgstr "Външен микрофон" + +#: ../backends/alsa/alsa-constants.c:185 +msgid "Camera Microphone" +msgstr "Микрофон на камера" + +#. Other options +#: ../backends/alsa/alsa-constants.c:188 +msgid "Analog" +msgstr "Аналогов" + +#: ../backends/alsa/alsa-constants.c:189 +msgid "Analog In" +msgstr "Аналогов вход" + +#: ../backends/alsa/alsa-constants.c:190 +msgid "Analog Inputs" +msgstr "Аналогови входове" + +#: ../backends/alsa/alsa-constants.c:195 +msgid "Line In/Microphone" +msgstr "Входен канал/Микрофон" + +#: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 +msgid "Auxiliary In" +msgstr "Допълнителен вход" + +#: ../backends/alsa/alsa-constants.c:207 +msgid "Auxiliary 0" +msgstr "Допълнителен 0" + +#: ../backends/alsa/alsa-constants.c:208 +msgid "Auxiliary 1" +msgstr "Допълнителен 1" + +#: ../backends/alsa/alsa-constants.c:209 +msgid "Auxiliary 2" +msgstr "Допълнителен 2" + +#: ../backends/alsa/alsa-constants.c:210 +msgid "Auxiliary 3" +msgstr "Допълнителен 3" + +#: ../backends/alsa/alsa-constants.c:211 +msgid "Docking Station" +msgstr "Станция за включване" + +#. Recording monitor +#: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 +msgid "Mixer" +msgstr "Миксер" + +#: ../backends/alsa/alsa-constants.c:216 +msgid "Unknown 1" +msgstr "Непознат 1" + +#: ../backends/alsa/alsa-constants.c:217 +msgid "Unknown 2" +msgstr "Непознат 2" + +#: ../backends/alsa/alsa-constants.c:218 +msgid "Enabled" +msgstr "Разрешено" + +#: ../backends/alsa/alsa-constants.c:219 +msgid "Disabled" +msgstr "Забранено" + +#: ../backends/alsa/alsa-device.c:635 +msgid "On" +msgstr "Включено" + +#: ../backends/alsa/alsa-device.c:636 +msgid "Off" +msgstr "Изключено" + +#: ../backends/oss/oss-backend.c:403 +#, c-format +msgid "OSS Mixer %d" +msgstr "OSS миксер %d" + +#: ../backends/oss/oss-device.c:88 +msgid "Volume" +msgstr "Сила на звука" + +#: ../backends/oss/oss-device.c:101 +msgid "PCM 2" +msgstr "PCM 2" + +#. Recording level (master input) +#: ../backends/oss/oss-device.c:103 +msgid "Record" +msgstr "Запис" + +#: ../backends/oss/oss-device.c:104 +msgid "Input Gain" +msgstr "Усилване на входа" + +#: ../backends/oss/oss-device.c:105 +msgid "Output Gain" +msgstr "Усилване на изхода" + +#: ../backends/oss/oss-device.c:106 +msgid "Line In 1" +msgstr "Входен канал 1" + +#: ../backends/oss/oss-device.c:107 +msgid "Line In 2" +msgstr "Входен канал 2" + +#: ../backends/oss/oss-device.c:108 +msgid "Line In 3" +msgstr "Входен канал 3" + +#. These 3 can be attached to either digital input or output +#: ../backends/oss/oss-device.c:110 +msgid "Digital 1" +msgstr "Цифров 1" + +#: ../backends/oss/oss-device.c:111 +msgid "Digital 2" +msgstr "Цифров 2" + +#: ../backends/oss/oss-device.c:112 +msgid "Digital 3" +msgstr "Цифров 3" + +#: ../backends/oss/oss-device.c:113 +msgid "Phone In" +msgstr "Телефон-вход" + +#: ../backends/oss/oss-device.c:114 +msgid "Phone Out" +msgstr "Телефон-изход" + +#: ../backends/oss/oss-device.c:116 +msgid "Radio" +msgstr "Радио" + +#. Create the port switch +#: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 +#: ../backends/pulse/pulse-source.c:146 +msgid "Connector" +msgstr "Връзка" + +#: ../backends/pulse/pulse-device.c:399 +msgid "Profile" +msgstr "Профил" + +#: ../backends/pulse/pulse-monitor.c:282 +msgid "Peak detect" +msgstr "Засичане на максимумите" diff -Nru libmatemixer-1.12.1/po/bs.po libmatemixer-1.18.0/po/bs.po --- libmatemixer-1.12.1/po/bs.po 1970-01-01 00:00:00.000000000 +0000 +++ libmatemixer-1.18.0/po/bs.po 2017-03-12 15:31:59.000000000 +0000 @@ -0,0 +1,558 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Sky Lion , 2016 +msgid "" +msgstr "" +"Project-Id-Version: MATE Desktop Environment\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-09 12:55+0200\n" +"PO-Revision-Date: 2016-09-05 14:57+0000\n" +"Last-Translator: Sky Lion \n" +"Language-Team: Bosnian (http://www.transifex.com/mate/MATE/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Output controls +#: ../backends/alsa/alsa-constants.c:40 +msgid "Master" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:41 +msgid "Hardware Master" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 +msgid "PCM" +msgstr "" + +#. OSS manual says this should be the beeper, but Linux OSS seems to assign it +#. to +#. * regular volume control +#: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 +msgid "Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:44 +msgid "Desktop Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 +#: ../backends/alsa/alsa-constants.c:47 +msgid "Front Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:48 +msgid "Headphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:49 +msgid "Headphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:50 +msgid "Headset" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 +#: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 +msgid "Surround Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 +msgid "Center Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 +msgid "CLFE Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 +msgid "Digital" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:60 +msgid "Master Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:61 +msgid "Master Digital" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 +msgid "Side Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:64 +msgid "Rear Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:65 +msgid "Wave" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 +#: ../backends/alsa/alsa-constants.c:215 +msgid "Phone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 +#: ../backends/oss/oss-device.c:98 +msgid "CD" +msgstr "CD" + +#: ../backends/alsa/alsa-constants.c:68 +msgid "Music" +msgstr "Muzika" + +#: ../backends/alsa/alsa-constants.c:69 +msgid "AC97" +msgstr "AC97" + +#: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 +msgid "LFE Speaker" +msgstr "LFE Zvučnik" + +#: ../backends/alsa/alsa-constants.c:72 +msgid "Bass Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:73 +msgid "PC Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 +msgid "Synth" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:75 +msgid "MIDI" +msgstr "MIDI" + +#: ../backends/alsa/alsa-constants.c:76 +msgid "Synth/MIDI" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 +msgid "Bass" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:78 ../backends/oss/oss-device.c:90 +msgid "Treble" +msgstr "" + +#. Input controls +#: ../backends/alsa/alsa-constants.c:81 +msgid "Capture" +msgstr "" + +#. Microphone options +#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 +#: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 +#: ../backends/oss/oss-device.c:97 +msgid "Microphone" +msgstr "Mikrofon" + +#: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 +msgid "Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 +#: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 +#: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 +#: ../backends/alsa/alsa-constants.c:173 +msgid "Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 +#: ../backends/alsa/alsa-constants.c:164 +msgid "Front Microphone" +msgstr "Prednji Mikrofon" + +#: ../backends/alsa/alsa-constants.c:87 ../backends/alsa/alsa-constants.c:183 +#: ../backends/alsa/alsa-constants.c:184 +msgid "Rear Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 +msgid "Dock Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 +msgid "Headphone Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 +msgid "Headset Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:91 +msgid "Inverted Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 +#: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 +#: ../backends/alsa/alsa-constants.c:192 ../backends/alsa/alsa-constants.c:193 +#: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 +#: ../backends/oss/oss-device.c:96 +msgid "Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 +#: ../backends/alsa/alsa-constants.c:206 +msgid "Auxiliary" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 +#: ../backends/oss/oss-device.c:115 +msgid "Video" +msgstr "Video" + +#: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 +msgid "TV Tuner" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 +msgid "FM" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:100 +msgid "Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:101 +msgid "Microphone Boost (+20dB)" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 +msgid "Internal Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:104 +msgid "Front Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:105 +msgid "Rear Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:106 +msgid "Dock Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:107 +msgid "Headphone Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:108 +msgid "Headset Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:109 +msgid "Line In Boost" +msgstr "" + +#. Switches +#: ../backends/alsa/alsa-constants.c:116 +msgid "Analog Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:117 +msgid "Analog Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:118 +msgid "Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 +msgid "Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:121 +msgid "Digital Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:122 +msgid "PCM Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:123 +msgid "Digital Playback Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:124 +msgid "Mono Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:125 +msgid "Shared Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:127 +msgid "Microphone Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:128 +msgid "Surround Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:129 +msgid "Auto-Mute Mode" +msgstr "" + +#. Toggles +#: ../backends/alsa/alsa-constants.c:132 +msgid "External Amplifier" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:133 +msgid "Bass Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:134 +msgid "Capture Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 +msgid "Digital In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:137 +msgid "Digital Default PCM" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:138 +msgid "Optical" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:139 +msgid "Auto Gain Control" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:140 +msgid "Mix" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:141 +msgid "Mix Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:142 +msgid "Microphone Capture" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 +msgid "Input 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:144 ../backends/alsa/alsa-constants.c:199 +msgid "Input 2" +msgstr "" + +#. Output options +#: ../backends/alsa/alsa-constants.c:151 +msgid "Speakers" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:152 +msgid "Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:153 +msgid "Front Panel Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:158 +msgid "Microphone 1" +msgstr "Mikrofon 1" + +#: ../backends/alsa/alsa-constants.c:159 +msgid "Microphone 2" +msgstr "Mikrofon 2" + +#: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 +#: ../backends/alsa/alsa-constants.c:162 +msgid "Microphone In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:170 +msgid "Internal Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:174 +msgid "Internal Digital Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:175 ../backends/alsa/alsa-constants.c:178 +msgid "Digital Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:176 +msgid "Digital Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:177 +msgid "Digital Microphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:179 ../backends/alsa/alsa-constants.c:180 +#: ../backends/alsa/alsa-constants.c:181 ../backends/alsa/alsa-constants.c:182 +msgid "External Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:185 +msgid "Camera Microphone" +msgstr "" + +#. Other options +#: ../backends/alsa/alsa-constants.c:188 +msgid "Analog" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:189 +msgid "Analog In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:190 +msgid "Analog Inputs" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:195 +msgid "Line In/Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 +msgid "Auxiliary In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:207 +msgid "Auxiliary 0" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:208 +msgid "Auxiliary 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:209 +msgid "Auxiliary 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:210 +msgid "Auxiliary 3" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:211 +msgid "Docking Station" +msgstr "" + +#. Recording monitor +#: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 +msgid "Mixer" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:216 +msgid "Unknown 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:217 +msgid "Unknown 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:218 +msgid "Enabled" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:219 +msgid "Disabled" +msgstr "" + +#: ../backends/alsa/alsa-device.c:635 +msgid "On" +msgstr "Uključen" + +#: ../backends/alsa/alsa-device.c:636 +msgid "Off" +msgstr "Isključen" + +#: ../backends/oss/oss-backend.c:403 +#, c-format +msgid "OSS Mixer %d" +msgstr "" + +#: ../backends/oss/oss-device.c:88 +msgid "Volume" +msgstr "" + +#: ../backends/oss/oss-device.c:101 +msgid "PCM 2" +msgstr "" + +#. Recording level (master input) +#: ../backends/oss/oss-device.c:103 +msgid "Record" +msgstr "" + +#: ../backends/oss/oss-device.c:104 +msgid "Input Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:105 +msgid "Output Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:106 +msgid "Line In 1" +msgstr "" + +#: ../backends/oss/oss-device.c:107 +msgid "Line In 2" +msgstr "" + +#: ../backends/oss/oss-device.c:108 +msgid "Line In 3" +msgstr "" + +#. These 3 can be attached to either digital input or output +#: ../backends/oss/oss-device.c:110 +msgid "Digital 1" +msgstr "" + +#: ../backends/oss/oss-device.c:111 +msgid "Digital 2" +msgstr "" + +#: ../backends/oss/oss-device.c:112 +msgid "Digital 3" +msgstr "" + +#: ../backends/oss/oss-device.c:113 +msgid "Phone In" +msgstr "" + +#: ../backends/oss/oss-device.c:114 +msgid "Phone Out" +msgstr "" + +#: ../backends/oss/oss-device.c:116 +msgid "Radio" +msgstr "Radio" + +#. Create the port switch +#: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 +#: ../backends/pulse/pulse-source.c:146 +msgid "Connector" +msgstr "" + +#: ../backends/pulse/pulse-device.c:399 +msgid "Profile" +msgstr "" + +#: ../backends/pulse/pulse-monitor.c:282 +msgid "Peak detect" +msgstr "" diff -Nru libmatemixer-1.12.1/po/ca.po libmatemixer-1.18.0/po/ca.po --- libmatemixer-1.12.1/po/ca.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/ca.po 2017-03-12 15:31:59.000000000 +0000 @@ -3,14 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Francesc , 2015 +# Francesc Famadas , 2015 +# Robert Antoni Buj Gelonch , 2016 +# Robert Antoni Buj Gelonch , 2015-2016 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-09-09 10:54+0000\n" -"Last-Translator: infirit \n" +"PO-Revision-Date: 2016-08-17 02:47+0000\n" +"Last-Translator: Robert Antoni Buj Gelonch \n" "Language-Team: Catalan (http://www.transifex.com/mate/MATE/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,179 +23,179 @@ #. Output controls #: ../backends/alsa/alsa-constants.c:40 msgid "Master" -msgstr "Master" +msgstr "Màster" #: ../backends/alsa/alsa-constants.c:41 msgid "Hardware Master" -msgstr "" +msgstr "Màster del maquinari" #: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 msgid "PCM" -msgstr "" +msgstr "PCM" #. OSS manual says this should be the beeper, but Linux OSS seems to assign it #. to #. * regular volume control #: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 msgid "Speaker" -msgstr "" +msgstr "Altaveu" #: ../backends/alsa/alsa-constants.c:44 msgid "Desktop Speaker" -msgstr "" +msgstr "Altaveu d'escriptori" #: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 #: ../backends/alsa/alsa-constants.c:47 msgid "Front Speaker" -msgstr "" +msgstr "Altaveu frontal" #: ../backends/alsa/alsa-constants.c:48 msgid "Headphone" -msgstr "" +msgstr "Auriculars" #: ../backends/alsa/alsa-constants.c:49 msgid "Headphone 2" -msgstr "" +msgstr "Auriculars 2" #: ../backends/alsa/alsa-constants.c:50 msgid "Headset" -msgstr "" +msgstr "Auricular" #: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 #: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 msgid "Surround Speaker" -msgstr "" +msgstr "Altaveu envoltant" #: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 msgid "Center Speaker" -msgstr "" +msgstr "Altaveu central" #: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 msgid "CLFE Speaker" -msgstr "" +msgstr "Altaveu CLFE" #: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 msgid "Digital" -msgstr "" +msgstr "Digital" #: ../backends/alsa/alsa-constants.c:60 msgid "Master Mono" -msgstr "" +msgstr "Mono del màster" #: ../backends/alsa/alsa-constants.c:61 msgid "Master Digital" -msgstr "" +msgstr "Digital del màster" #: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 msgid "Side Speaker" -msgstr "" +msgstr "Altaveu lateral" #: ../backends/alsa/alsa-constants.c:64 msgid "Rear Speaker" -msgstr "" +msgstr "Altaveu del darrere" #: ../backends/alsa/alsa-constants.c:65 msgid "Wave" -msgstr "" +msgstr "Ona" #: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 #: ../backends/alsa/alsa-constants.c:215 msgid "Phone" -msgstr "" +msgstr "Telèfon" #: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 #: ../backends/oss/oss-device.c:98 msgid "CD" -msgstr "" +msgstr "CD" #: ../backends/alsa/alsa-constants.c:68 msgid "Music" -msgstr "" +msgstr "Música" #: ../backends/alsa/alsa-constants.c:69 msgid "AC97" -msgstr "" +msgstr "AC97" #: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 msgid "LFE Speaker" -msgstr "" +msgstr "Altaveu LFE" #: ../backends/alsa/alsa-constants.c:72 msgid "Bass Speaker" -msgstr "" +msgstr "Altaveu de greus" #: ../backends/alsa/alsa-constants.c:73 msgid "PC Speaker" -msgstr "" +msgstr "Altaveu d'ordinador personal" #: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 msgid "Synth" -msgstr "" +msgstr "Sintetitzador" #: ../backends/alsa/alsa-constants.c:75 msgid "MIDI" -msgstr "" +msgstr "MIDI" #: ../backends/alsa/alsa-constants.c:76 msgid "Synth/MIDI" -msgstr "" +msgstr "Sintetitzador o MIDI" #: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 msgid "Bass" -msgstr "" +msgstr "Greus" #: ../backends/alsa/alsa-constants.c:78 ../backends/oss/oss-device.c:90 msgid "Treble" -msgstr "" +msgstr "Aguts" #. Input controls #: ../backends/alsa/alsa-constants.c:81 msgid "Capture" -msgstr "captura" +msgstr "Captura" #. Microphone options #: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 #: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 #: ../backends/oss/oss-device.c:97 msgid "Microphone" -msgstr "" +msgstr "Micròfon" #: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 msgid "Microphone/Line In" -msgstr "" +msgstr "Micròfon o entrada de línia" #: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 #: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 #: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 #: ../backends/alsa/alsa-constants.c:173 msgid "Internal Microphone" -msgstr "" +msgstr "Micròfon intern" #: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 #: ../backends/alsa/alsa-constants.c:164 msgid "Front Microphone" -msgstr "" +msgstr "Micròfon frontal" #: ../backends/alsa/alsa-constants.c:87 ../backends/alsa/alsa-constants.c:183 #: ../backends/alsa/alsa-constants.c:184 msgid "Rear Microphone" -msgstr "" +msgstr "Micròfon del darrere" #: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 msgid "Dock Microphone" -msgstr "" +msgstr "Micròfon de l'acoblador" #: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 msgid "Headphone Microphone" -msgstr "" +msgstr "Micròfon dels auriculars" #: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 msgid "Headset Microphone" -msgstr "" +msgstr "Micròfon de l'auricular" #: ../backends/alsa/alsa-constants.c:91 msgid "Inverted Internal Microphone" -msgstr "" +msgstr "Micròfon intern amb inversió" #: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 #: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 @@ -201,358 +203,358 @@ #: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 #: ../backends/oss/oss-device.c:96 msgid "Line In" -msgstr "" +msgstr "Entrada de línia" #: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 #: ../backends/alsa/alsa-constants.c:206 msgid "Auxiliary" -msgstr "" +msgstr "Auxiliar" #: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 #: ../backends/oss/oss-device.c:115 msgid "Video" -msgstr "" +msgstr "Vídeo" #: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 msgid "TV Tuner" -msgstr "" +msgstr "Sintonitzador de TV" #: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 msgid "FM" -msgstr "" +msgstr "FM" #: ../backends/alsa/alsa-constants.c:100 msgid "Microphone Boost" -msgstr "" +msgstr "Accentuació del micròfon" #: ../backends/alsa/alsa-constants.c:101 msgid "Microphone Boost (+20dB)" -msgstr "" +msgstr "Accentuació del micròfon (+20 dB)" #: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 msgid "Internal Microphone Boost" -msgstr "" +msgstr "Accentuació del micròfon intern" #: ../backends/alsa/alsa-constants.c:104 msgid "Front Microphone Boost" -msgstr "" +msgstr "Accentuació del micròfon del davant" #: ../backends/alsa/alsa-constants.c:105 msgid "Rear Microphone Boost" -msgstr "" +msgstr "Accentuació del micròfon del darrere" #: ../backends/alsa/alsa-constants.c:106 msgid "Dock Microphone Boost" -msgstr "" +msgstr "Accentuació del micròfon de l'acoblador" #: ../backends/alsa/alsa-constants.c:107 msgid "Headphone Microphone Boost" -msgstr "" +msgstr "Accentuació del micròfon dels auriculars" #: ../backends/alsa/alsa-constants.c:108 msgid "Headset Microphone Boost" -msgstr "" +msgstr "Accentuació del micròfon de l'auricular" #: ../backends/alsa/alsa-constants.c:109 msgid "Line In Boost" -msgstr "" +msgstr "Accentuació de l'entrada de línia" #. Switches #: ../backends/alsa/alsa-constants.c:116 msgid "Analog Output" -msgstr "" +msgstr "Sortida analògica" #: ../backends/alsa/alsa-constants.c:117 msgid "Analog Source" -msgstr "" +msgstr "Origen analògic" #: ../backends/alsa/alsa-constants.c:118 msgid "Capture Source" -msgstr "" +msgstr "Origen de la captura" #: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 msgid "Input Source" -msgstr "" +msgstr "Origen de l'entrada" #: ../backends/alsa/alsa-constants.c:121 msgid "Digital Input Source" -msgstr "" +msgstr "Origen de l'entrada digital" #: ../backends/alsa/alsa-constants.c:122 msgid "PCM Capture Source" -msgstr "" +msgstr "Origen de la captura PCM" #: ../backends/alsa/alsa-constants.c:123 msgid "Digital Playback Source" -msgstr "" +msgstr "Origen de la reproducció digital" #: ../backends/alsa/alsa-constants.c:124 msgid "Mono Output" -msgstr "" +msgstr "Sortida mono" #: ../backends/alsa/alsa-constants.c:125 msgid "Shared Microphone/Line In" -msgstr "" +msgstr "Micròfon compartit o entrada de línia compartida" #: ../backends/alsa/alsa-constants.c:127 msgid "Microphone Jack Mode" -msgstr "" +msgstr "Mode de connector de micròfon" #: ../backends/alsa/alsa-constants.c:128 msgid "Surround Jack Mode" -msgstr "" +msgstr "Mode de connector envoltant" #: ../backends/alsa/alsa-constants.c:129 msgid "Auto-Mute Mode" -msgstr "" +msgstr "Mode de silenci automàtic" #. Toggles #: ../backends/alsa/alsa-constants.c:132 msgid "External Amplifier" -msgstr "" +msgstr "Amplificador extern" #: ../backends/alsa/alsa-constants.c:133 msgid "Bass Boost" -msgstr "" +msgstr "Accentuació dels baixos" #: ../backends/alsa/alsa-constants.c:134 msgid "Capture Boost" -msgstr "" +msgstr "Accentuació de la captura" #: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 msgid "Digital In" -msgstr "" +msgstr "Entrada digital" #: ../backends/alsa/alsa-constants.c:137 msgid "Digital Default PCM" -msgstr "" +msgstr "PCM digital per defecte" #: ../backends/alsa/alsa-constants.c:138 msgid "Optical" -msgstr "" +msgstr "Òptic" #: ../backends/alsa/alsa-constants.c:139 msgid "Auto Gain Control" -msgstr "" +msgstr "Control automàtic de guany" #: ../backends/alsa/alsa-constants.c:140 msgid "Mix" -msgstr "" +msgstr "Mesclador" #: ../backends/alsa/alsa-constants.c:141 msgid "Mix Mono" -msgstr "" +msgstr "Mesclador mono" #: ../backends/alsa/alsa-constants.c:142 msgid "Microphone Capture" -msgstr "" +msgstr "Captura del micròfon" #: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 msgid "Input 1" -msgstr "" +msgstr "Entrada 1" #: ../backends/alsa/alsa-constants.c:144 ../backends/alsa/alsa-constants.c:199 msgid "Input 2" -msgstr "" +msgstr "Entrada 2" #. Output options #: ../backends/alsa/alsa-constants.c:151 msgid "Speakers" -msgstr "" +msgstr "Altaveus" #: ../backends/alsa/alsa-constants.c:152 msgid "Headphones" -msgstr "" +msgstr "Auriculars" #: ../backends/alsa/alsa-constants.c:153 msgid "Front Panel Headphones" -msgstr "" +msgstr "Auriculars del tauler frontal" #: ../backends/alsa/alsa-constants.c:158 msgid "Microphone 1" -msgstr "" +msgstr "Micròfon 1" #: ../backends/alsa/alsa-constants.c:159 msgid "Microphone 2" -msgstr "" +msgstr "Micròfon 2" #: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 #: ../backends/alsa/alsa-constants.c:162 msgid "Microphone In" -msgstr "" +msgstr "Entrada del micròfon" #: ../backends/alsa/alsa-constants.c:170 msgid "Internal Microphone 1" -msgstr "" +msgstr "Micròfon intern 1" #: ../backends/alsa/alsa-constants.c:174 msgid "Internal Digital Microphone" -msgstr "" +msgstr "Micròfon digital intern" #: ../backends/alsa/alsa-constants.c:175 ../backends/alsa/alsa-constants.c:178 msgid "Digital Microphone" -msgstr "" +msgstr "Micròfon digital" #: ../backends/alsa/alsa-constants.c:176 msgid "Digital Microphone 1" -msgstr "" +msgstr "Micròfon digital 1" #: ../backends/alsa/alsa-constants.c:177 msgid "Digital Microphone 2" -msgstr "" +msgstr "Micròfon digital 2" #: ../backends/alsa/alsa-constants.c:179 ../backends/alsa/alsa-constants.c:180 #: ../backends/alsa/alsa-constants.c:181 ../backends/alsa/alsa-constants.c:182 msgid "External Microphone" -msgstr "" +msgstr "Micròfon extern" #: ../backends/alsa/alsa-constants.c:185 msgid "Camera Microphone" -msgstr "" +msgstr "Micròfon de la càmera" #. Other options #: ../backends/alsa/alsa-constants.c:188 msgid "Analog" -msgstr "" +msgstr "Analògic" #: ../backends/alsa/alsa-constants.c:189 msgid "Analog In" -msgstr "" +msgstr "Entrada analògica" #: ../backends/alsa/alsa-constants.c:190 msgid "Analog Inputs" -msgstr "" +msgstr "Entrades analògiques" #: ../backends/alsa/alsa-constants.c:195 msgid "Line In/Microphone" -msgstr "" +msgstr "Entrada de línia o micròfon" #: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 msgid "Auxiliary In" -msgstr "" +msgstr "Entrada auxiliar" #: ../backends/alsa/alsa-constants.c:207 msgid "Auxiliary 0" -msgstr "" +msgstr "Auxiliar 0" #: ../backends/alsa/alsa-constants.c:208 msgid "Auxiliary 1" -msgstr "" +msgstr "Auxiliar 1" #: ../backends/alsa/alsa-constants.c:209 msgid "Auxiliary 2" -msgstr "" +msgstr "Auxiliar 2" #: ../backends/alsa/alsa-constants.c:210 msgid "Auxiliary 3" -msgstr "" +msgstr "Auxiliar 3" #: ../backends/alsa/alsa-constants.c:211 msgid "Docking Station" -msgstr "" +msgstr "Estació d'acoblament" #. Recording monitor #: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 msgid "Mixer" -msgstr "" +msgstr "Mesclador" #: ../backends/alsa/alsa-constants.c:216 msgid "Unknown 1" -msgstr "" +msgstr "Desconegut 1" #: ../backends/alsa/alsa-constants.c:217 msgid "Unknown 2" -msgstr "" +msgstr "Desconegut 2" #: ../backends/alsa/alsa-constants.c:218 msgid "Enabled" -msgstr "" +msgstr "Habilitat" #: ../backends/alsa/alsa-constants.c:219 msgid "Disabled" -msgstr "" +msgstr "Inhabilitat" #: ../backends/alsa/alsa-device.c:635 msgid "On" -msgstr "" +msgstr "Encès" #: ../backends/alsa/alsa-device.c:636 msgid "Off" -msgstr "" +msgstr "Apagat" #: ../backends/oss/oss-backend.c:403 #, c-format msgid "OSS Mixer %d" -msgstr "" +msgstr "Mesclador OSS %d" #: ../backends/oss/oss-device.c:88 msgid "Volume" -msgstr "" +msgstr "Volum" #: ../backends/oss/oss-device.c:101 msgid "PCM 2" -msgstr "" +msgstr "PCM 2" #. Recording level (master input) #: ../backends/oss/oss-device.c:103 msgid "Record" -msgstr "" +msgstr "Registra" #: ../backends/oss/oss-device.c:104 msgid "Input Gain" -msgstr "" +msgstr "Guany de l'entrada" #: ../backends/oss/oss-device.c:105 msgid "Output Gain" -msgstr "" +msgstr "Guany de la sortida" #: ../backends/oss/oss-device.c:106 msgid "Line In 1" -msgstr "" +msgstr "Entrada de línia 1" #: ../backends/oss/oss-device.c:107 msgid "Line In 2" -msgstr "" +msgstr "Entrada de línia 2" #: ../backends/oss/oss-device.c:108 msgid "Line In 3" -msgstr "" +msgstr "Entrada de línia 3" #. These 3 can be attached to either digital input or output #: ../backends/oss/oss-device.c:110 msgid "Digital 1" -msgstr "" +msgstr "Digital 1" #: ../backends/oss/oss-device.c:111 msgid "Digital 2" -msgstr "" +msgstr "Digital 2" #: ../backends/oss/oss-device.c:112 msgid "Digital 3" -msgstr "" +msgstr "Digital 3" #: ../backends/oss/oss-device.c:113 msgid "Phone In" -msgstr "" +msgstr "Entrada del telèfon" #: ../backends/oss/oss-device.c:114 msgid "Phone Out" -msgstr "" +msgstr "Sortida del telèfon" #: ../backends/oss/oss-device.c:116 msgid "Radio" -msgstr "" +msgstr "Ràdio" #. Create the port switch #: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 #: ../backends/pulse/pulse-source.c:146 msgid "Connector" -msgstr "" +msgstr "Connector" #: ../backends/pulse/pulse-device.c:399 msgid "Profile" -msgstr "" +msgstr "Perfil" #: ../backends/pulse/pulse-monitor.c:282 msgid "Peak detect" -msgstr "" +msgstr "Detecció de pics" diff -Nru libmatemixer-1.12.1/po/ca@valencia.po libmatemixer-1.18.0/po/ca@valencia.po --- libmatemixer-1.12.1/po/ca@valencia.po 1970-01-01 00:00:00.000000000 +0000 +++ libmatemixer-1.18.0/po/ca@valencia.po 2017-03-12 15:31:59.000000000 +0000 @@ -0,0 +1,558 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Pilar Embid Giner , 2016 +msgid "" +msgstr "" +"Project-Id-Version: MATE Desktop Environment\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-09 12:55+0200\n" +"PO-Revision-Date: 2016-09-15 12:29+0000\n" +"Last-Translator: Jose Alfredo Murcia Andrés \n" +"Language-Team: Catalan (Valencian) (http://www.transifex.com/mate/MATE/language/ca@valencia/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca@valencia\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Output controls +#: ../backends/alsa/alsa-constants.c:40 +msgid "Master" +msgstr "Màster" + +#: ../backends/alsa/alsa-constants.c:41 +msgid "Hardware Master" +msgstr "Màster del maquinari" + +#: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 +msgid "PCM" +msgstr "PCM" + +#. OSS manual says this should be the beeper, but Linux OSS seems to assign it +#. to +#. * regular volume control +#: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 +msgid "Speaker" +msgstr "Altaveu" + +#: ../backends/alsa/alsa-constants.c:44 +msgid "Desktop Speaker" +msgstr "Altaveu d'escriptori" + +#: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 +#: ../backends/alsa/alsa-constants.c:47 +msgid "Front Speaker" +msgstr "Altaveu frontal" + +#: ../backends/alsa/alsa-constants.c:48 +msgid "Headphone" +msgstr "Auriculars" + +#: ../backends/alsa/alsa-constants.c:49 +msgid "Headphone 2" +msgstr "Auriculars 2" + +#: ../backends/alsa/alsa-constants.c:50 +msgid "Headset" +msgstr "Auricular" + +#: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 +#: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 +msgid "Surround Speaker" +msgstr "Altaveu envoltant" + +#: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 +msgid "Center Speaker" +msgstr "Altaveu central" + +#: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 +msgid "CLFE Speaker" +msgstr "Altaveu CLFE" + +#: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 +msgid "Digital" +msgstr "Digital" + +#: ../backends/alsa/alsa-constants.c:60 +msgid "Master Mono" +msgstr "Mono del màster" + +#: ../backends/alsa/alsa-constants.c:61 +msgid "Master Digital" +msgstr "Digital del màster" + +#: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 +msgid "Side Speaker" +msgstr "Altaveu lateral" + +#: ../backends/alsa/alsa-constants.c:64 +msgid "Rear Speaker" +msgstr "Altaveu de darrere" + +#: ../backends/alsa/alsa-constants.c:65 +msgid "Wave" +msgstr "Ona" + +#: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 +#: ../backends/alsa/alsa-constants.c:215 +msgid "Phone" +msgstr "Telèfon" + +#: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 +#: ../backends/oss/oss-device.c:98 +msgid "CD" +msgstr "CD" + +#: ../backends/alsa/alsa-constants.c:68 +msgid "Music" +msgstr "Música" + +#: ../backends/alsa/alsa-constants.c:69 +msgid "AC97" +msgstr "AC97" + +#: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 +msgid "LFE Speaker" +msgstr "Altaveu LFE" + +#: ../backends/alsa/alsa-constants.c:72 +msgid "Bass Speaker" +msgstr "Altaveu de greus" + +#: ../backends/alsa/alsa-constants.c:73 +msgid "PC Speaker" +msgstr "Altaveu d'ordinador personal" + +#: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 +msgid "Synth" +msgstr "Sintetitzador" + +#: ../backends/alsa/alsa-constants.c:75 +msgid "MIDI" +msgstr "MIDI" + +#: ../backends/alsa/alsa-constants.c:76 +msgid "Synth/MIDI" +msgstr "Sintetitzador o MIDI" + +#: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 +msgid "Bass" +msgstr "Greus" + +#: ../backends/alsa/alsa-constants.c:78 ../backends/oss/oss-device.c:90 +msgid "Treble" +msgstr "Aguts" + +#. Input controls +#: ../backends/alsa/alsa-constants.c:81 +msgid "Capture" +msgstr "Captura" + +#. Microphone options +#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 +#: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 +#: ../backends/oss/oss-device.c:97 +msgid "Microphone" +msgstr "Micròfon" + +#: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 +msgid "Microphone/Line In" +msgstr "Micròfon o entrada de línia" + +#: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 +#: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 +#: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 +#: ../backends/alsa/alsa-constants.c:173 +msgid "Internal Microphone" +msgstr "Micròfon intern" + +#: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 +#: ../backends/alsa/alsa-constants.c:164 +msgid "Front Microphone" +msgstr "Micròfon frontal" + +#: ../backends/alsa/alsa-constants.c:87 ../backends/alsa/alsa-constants.c:183 +#: ../backends/alsa/alsa-constants.c:184 +msgid "Rear Microphone" +msgstr "Micròfon de darrere" + +#: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 +msgid "Dock Microphone" +msgstr "Micròfon de l'acoblador" + +#: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 +msgid "Headphone Microphone" +msgstr "Micròfon dels auriculars" + +#: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 +msgid "Headset Microphone" +msgstr "Micròfon de l'auricular" + +#: ../backends/alsa/alsa-constants.c:91 +msgid "Inverted Internal Microphone" +msgstr "Micròfon intern amb inversió" + +#: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 +#: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 +#: ../backends/alsa/alsa-constants.c:192 ../backends/alsa/alsa-constants.c:193 +#: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 +#: ../backends/oss/oss-device.c:96 +msgid "Line In" +msgstr "Entrada de línia" + +#: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 +#: ../backends/alsa/alsa-constants.c:206 +msgid "Auxiliary" +msgstr "Auxiliar" + +#: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 +#: ../backends/oss/oss-device.c:115 +msgid "Video" +msgstr "Vídeo" + +#: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 +msgid "TV Tuner" +msgstr "Sintonitzador de TV" + +#: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 +msgid "FM" +msgstr "FM" + +#: ../backends/alsa/alsa-constants.c:100 +msgid "Microphone Boost" +msgstr "Accentuació del micròfon" + +#: ../backends/alsa/alsa-constants.c:101 +msgid "Microphone Boost (+20dB)" +msgstr "Accentuació del micròfon (+20 dB)" + +#: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 +msgid "Internal Microphone Boost" +msgstr "Accentuació del micròfon intern" + +#: ../backends/alsa/alsa-constants.c:104 +msgid "Front Microphone Boost" +msgstr "Accentuació del micròfon frontal" + +#: ../backends/alsa/alsa-constants.c:105 +msgid "Rear Microphone Boost" +msgstr "Accentuació del micròfon de darrere" + +#: ../backends/alsa/alsa-constants.c:106 +msgid "Dock Microphone Boost" +msgstr "Accentuació del micròfon de l'acoblador" + +#: ../backends/alsa/alsa-constants.c:107 +msgid "Headphone Microphone Boost" +msgstr "Accentuació del micròfon dels auriculars" + +#: ../backends/alsa/alsa-constants.c:108 +msgid "Headset Microphone Boost" +msgstr "Accentuació del micròfon de l'auricular" + +#: ../backends/alsa/alsa-constants.c:109 +msgid "Line In Boost" +msgstr "Accentuació de l'entrada de línia" + +#. Switches +#: ../backends/alsa/alsa-constants.c:116 +msgid "Analog Output" +msgstr "Eixida analògica" + +#: ../backends/alsa/alsa-constants.c:117 +msgid "Analog Source" +msgstr "Origen analògic" + +#: ../backends/alsa/alsa-constants.c:118 +msgid "Capture Source" +msgstr "Origen de la captura" + +#: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 +msgid "Input Source" +msgstr "Origen de l'entrada" + +#: ../backends/alsa/alsa-constants.c:121 +msgid "Digital Input Source" +msgstr "Origen de l'entrada digital" + +#: ../backends/alsa/alsa-constants.c:122 +msgid "PCM Capture Source" +msgstr "Origen de la captura PCM" + +#: ../backends/alsa/alsa-constants.c:123 +msgid "Digital Playback Source" +msgstr "Origen de la reproducció digital" + +#: ../backends/alsa/alsa-constants.c:124 +msgid "Mono Output" +msgstr "Eixida mono" + +#: ../backends/alsa/alsa-constants.c:125 +msgid "Shared Microphone/Line In" +msgstr "Micròfon compartit o entrada de línia compartida" + +#: ../backends/alsa/alsa-constants.c:127 +msgid "Microphone Jack Mode" +msgstr "Mode de connector de micròfon" + +#: ../backends/alsa/alsa-constants.c:128 +msgid "Surround Jack Mode" +msgstr "Mode de connector envoltant" + +#: ../backends/alsa/alsa-constants.c:129 +msgid "Auto-Mute Mode" +msgstr "Mode de silenci automàtic" + +#. Toggles +#: ../backends/alsa/alsa-constants.c:132 +msgid "External Amplifier" +msgstr "Amplificador extern" + +#: ../backends/alsa/alsa-constants.c:133 +msgid "Bass Boost" +msgstr "Accentuació dels baixos" + +#: ../backends/alsa/alsa-constants.c:134 +msgid "Capture Boost" +msgstr "Accentuació de la captura" + +#: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 +msgid "Digital In" +msgstr "Entrada digital" + +#: ../backends/alsa/alsa-constants.c:137 +msgid "Digital Default PCM" +msgstr "PCM digital per defecte" + +#: ../backends/alsa/alsa-constants.c:138 +msgid "Optical" +msgstr "Òptic" + +#: ../backends/alsa/alsa-constants.c:139 +msgid "Auto Gain Control" +msgstr "Control automàtic de guany" + +#: ../backends/alsa/alsa-constants.c:140 +msgid "Mix" +msgstr "Mesclador" + +#: ../backends/alsa/alsa-constants.c:141 +msgid "Mix Mono" +msgstr "Mesclador mono" + +#: ../backends/alsa/alsa-constants.c:142 +msgid "Microphone Capture" +msgstr "Captura del micròfon" + +#: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 +msgid "Input 1" +msgstr "Entrada 1" + +#: ../backends/alsa/alsa-constants.c:144 ../backends/alsa/alsa-constants.c:199 +msgid "Input 2" +msgstr "Entrada 2" + +#. Output options +#: ../backends/alsa/alsa-constants.c:151 +msgid "Speakers" +msgstr "Altaveus" + +#: ../backends/alsa/alsa-constants.c:152 +msgid "Headphones" +msgstr "Auriculars" + +#: ../backends/alsa/alsa-constants.c:153 +msgid "Front Panel Headphones" +msgstr "Auriculars del tauler frontal" + +#: ../backends/alsa/alsa-constants.c:158 +msgid "Microphone 1" +msgstr "Micròfon 1" + +#: ../backends/alsa/alsa-constants.c:159 +msgid "Microphone 2" +msgstr "Micròfon 2" + +#: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 +#: ../backends/alsa/alsa-constants.c:162 +msgid "Microphone In" +msgstr "Entrada del micròfon" + +#: ../backends/alsa/alsa-constants.c:170 +msgid "Internal Microphone 1" +msgstr "Micròfon intern 1" + +#: ../backends/alsa/alsa-constants.c:174 +msgid "Internal Digital Microphone" +msgstr "Micròfon digital intern" + +#: ../backends/alsa/alsa-constants.c:175 ../backends/alsa/alsa-constants.c:178 +msgid "Digital Microphone" +msgstr "Micròfon digital" + +#: ../backends/alsa/alsa-constants.c:176 +msgid "Digital Microphone 1" +msgstr "Micròfon digital 1" + +#: ../backends/alsa/alsa-constants.c:177 +msgid "Digital Microphone 2" +msgstr "Micròfon digital 2" + +#: ../backends/alsa/alsa-constants.c:179 ../backends/alsa/alsa-constants.c:180 +#: ../backends/alsa/alsa-constants.c:181 ../backends/alsa/alsa-constants.c:182 +msgid "External Microphone" +msgstr "Micròfon extern" + +#: ../backends/alsa/alsa-constants.c:185 +msgid "Camera Microphone" +msgstr "Micròfon de la càmera" + +#. Other options +#: ../backends/alsa/alsa-constants.c:188 +msgid "Analog" +msgstr "Analògic" + +#: ../backends/alsa/alsa-constants.c:189 +msgid "Analog In" +msgstr "Entrada analògica" + +#: ../backends/alsa/alsa-constants.c:190 +msgid "Analog Inputs" +msgstr "Entrades analògiques" + +#: ../backends/alsa/alsa-constants.c:195 +msgid "Line In/Microphone" +msgstr "Entrada de línia o micròfon" + +#: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 +msgid "Auxiliary In" +msgstr "Entrada auxiliar" + +#: ../backends/alsa/alsa-constants.c:207 +msgid "Auxiliary 0" +msgstr "Auxiliar 0" + +#: ../backends/alsa/alsa-constants.c:208 +msgid "Auxiliary 1" +msgstr "Auxiliar 1" + +#: ../backends/alsa/alsa-constants.c:209 +msgid "Auxiliary 2" +msgstr "Auxiliar 2" + +#: ../backends/alsa/alsa-constants.c:210 +msgid "Auxiliary 3" +msgstr "Auxiliar 3" + +#: ../backends/alsa/alsa-constants.c:211 +msgid "Docking Station" +msgstr "Estació d'acoblament" + +#. Recording monitor +#: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 +msgid "Mixer" +msgstr "Mesclador" + +#: ../backends/alsa/alsa-constants.c:216 +msgid "Unknown 1" +msgstr "Desconegut 1" + +#: ../backends/alsa/alsa-constants.c:217 +msgid "Unknown 2" +msgstr "Desconegut 2" + +#: ../backends/alsa/alsa-constants.c:218 +msgid "Enabled" +msgstr "Habilitat" + +#: ../backends/alsa/alsa-constants.c:219 +msgid "Disabled" +msgstr "Inhabilitat" + +#: ../backends/alsa/alsa-device.c:635 +msgid "On" +msgstr "Encés" + +#: ../backends/alsa/alsa-device.c:636 +msgid "Off" +msgstr "Apagat" + +#: ../backends/oss/oss-backend.c:403 +#, c-format +msgid "OSS Mixer %d" +msgstr "Mesclador OSS %d" + +#: ../backends/oss/oss-device.c:88 +msgid "Volume" +msgstr "Volum" + +#: ../backends/oss/oss-device.c:101 +msgid "PCM 2" +msgstr "PCM 2" + +#. Recording level (master input) +#: ../backends/oss/oss-device.c:103 +msgid "Record" +msgstr "Registra" + +#: ../backends/oss/oss-device.c:104 +msgid "Input Gain" +msgstr "Guany de l'entrada" + +#: ../backends/oss/oss-device.c:105 +msgid "Output Gain" +msgstr "Guany de l'eixida" + +#: ../backends/oss/oss-device.c:106 +msgid "Line In 1" +msgstr "Entrada de línia 1" + +#: ../backends/oss/oss-device.c:107 +msgid "Line In 2" +msgstr "Entrada de línia 2" + +#: ../backends/oss/oss-device.c:108 +msgid "Line In 3" +msgstr "Entrada de línia 3" + +#. These 3 can be attached to either digital input or output +#: ../backends/oss/oss-device.c:110 +msgid "Digital 1" +msgstr "Digital 1" + +#: ../backends/oss/oss-device.c:111 +msgid "Digital 2" +msgstr "Digital 2" + +#: ../backends/oss/oss-device.c:112 +msgid "Digital 3" +msgstr "Digital 3" + +#: ../backends/oss/oss-device.c:113 +msgid "Phone In" +msgstr "Entrada del telèfon" + +#: ../backends/oss/oss-device.c:114 +msgid "Phone Out" +msgstr "Eixida del telèfon" + +#: ../backends/oss/oss-device.c:116 +msgid "Radio" +msgstr "Ràdio" + +#. Create the port switch +#: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 +#: ../backends/pulse/pulse-source.c:146 +msgid "Connector" +msgstr "Connector" + +#: ../backends/pulse/pulse-device.c:399 +msgid "Profile" +msgstr "Perfil" + +#: ../backends/pulse/pulse-monitor.c:282 +msgid "Peak detect" +msgstr "Detecció de pics" diff -Nru libmatemixer-1.12.1/po/cs.po libmatemixer-1.18.0/po/cs.po --- libmatemixer-1.12.1/po/cs.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/cs.po 2017-03-12 15:31:59.000000000 +0000 @@ -4,14 +4,14 @@ # # Translators: # Michal , 2014 -# Stanislav Kučera , 2015 +# Stanislav Kučera , 2015 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" "PO-Revision-Date: 2015-10-21 13:08+0000\n" -"Last-Translator: Stanislav Kučera \n" +"Last-Translator: Stanislav Kučera \n" "Language-Team: Czech (http://www.transifex.com/mate/MATE/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff -Nru libmatemixer-1.12.1/po/cy.po libmatemixer-1.18.0/po/cy.po --- libmatemixer-1.12.1/po/cy.po 1970-01-01 00:00:00.000000000 +0000 +++ libmatemixer-1.18.0/po/cy.po 2017-03-12 15:31:59.000000000 +0000 @@ -0,0 +1,557 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: MATE Desktop Environment\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-09 12:55+0200\n" +"PO-Revision-Date: 2015-12-22 23:50+0000\n" +"Last-Translator: infirit \n" +"Language-Team: Welsh (http://www.transifex.com/mate/MATE/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#. Output controls +#: ../backends/alsa/alsa-constants.c:40 +msgid "Master" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:41 +msgid "Hardware Master" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 +msgid "PCM" +msgstr "" + +#. OSS manual says this should be the beeper, but Linux OSS seems to assign it +#. to +#. * regular volume control +#: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 +msgid "Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:44 +msgid "Desktop Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 +#: ../backends/alsa/alsa-constants.c:47 +msgid "Front Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:48 +msgid "Headphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:49 +msgid "Headphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:50 +msgid "Headset" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 +#: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 +msgid "Surround Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 +msgid "Center Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 +msgid "CLFE Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 +msgid "Digital" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:60 +msgid "Master Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:61 +msgid "Master Digital" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 +msgid "Side Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:64 +msgid "Rear Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:65 +msgid "Wave" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 +#: ../backends/alsa/alsa-constants.c:215 +msgid "Phone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 +#: ../backends/oss/oss-device.c:98 +msgid "CD" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:68 +msgid "Music" +msgstr "Cerddoriaeth" + +#: ../backends/alsa/alsa-constants.c:69 +msgid "AC97" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 +msgid "LFE Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:72 +msgid "Bass Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:73 +msgid "PC Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 +msgid "Synth" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:75 +msgid "MIDI" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:76 +msgid "Synth/MIDI" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 +msgid "Bass" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:78 ../backends/oss/oss-device.c:90 +msgid "Treble" +msgstr "" + +#. Input controls +#: ../backends/alsa/alsa-constants.c:81 +msgid "Capture" +msgstr "" + +#. Microphone options +#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 +#: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 +#: ../backends/oss/oss-device.c:97 +msgid "Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 +msgid "Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 +#: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 +#: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 +#: ../backends/alsa/alsa-constants.c:173 +msgid "Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 +#: ../backends/alsa/alsa-constants.c:164 +msgid "Front Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:87 ../backends/alsa/alsa-constants.c:183 +#: ../backends/alsa/alsa-constants.c:184 +msgid "Rear Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 +msgid "Dock Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 +msgid "Headphone Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 +msgid "Headset Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:91 +msgid "Inverted Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 +#: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 +#: ../backends/alsa/alsa-constants.c:192 ../backends/alsa/alsa-constants.c:193 +#: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 +#: ../backends/oss/oss-device.c:96 +msgid "Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 +#: ../backends/alsa/alsa-constants.c:206 +msgid "Auxiliary" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 +#: ../backends/oss/oss-device.c:115 +msgid "Video" +msgstr "Fideo" + +#: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 +msgid "TV Tuner" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 +msgid "FM" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:100 +msgid "Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:101 +msgid "Microphone Boost (+20dB)" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 +msgid "Internal Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:104 +msgid "Front Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:105 +msgid "Rear Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:106 +msgid "Dock Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:107 +msgid "Headphone Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:108 +msgid "Headset Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:109 +msgid "Line In Boost" +msgstr "" + +#. Switches +#: ../backends/alsa/alsa-constants.c:116 +msgid "Analog Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:117 +msgid "Analog Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:118 +msgid "Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 +msgid "Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:121 +msgid "Digital Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:122 +msgid "PCM Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:123 +msgid "Digital Playback Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:124 +msgid "Mono Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:125 +msgid "Shared Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:127 +msgid "Microphone Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:128 +msgid "Surround Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:129 +msgid "Auto-Mute Mode" +msgstr "" + +#. Toggles +#: ../backends/alsa/alsa-constants.c:132 +msgid "External Amplifier" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:133 +msgid "Bass Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:134 +msgid "Capture Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 +msgid "Digital In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:137 +msgid "Digital Default PCM" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:138 +msgid "Optical" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:139 +msgid "Auto Gain Control" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:140 +msgid "Mix" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:141 +msgid "Mix Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:142 +msgid "Microphone Capture" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 +msgid "Input 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:144 ../backends/alsa/alsa-constants.c:199 +msgid "Input 2" +msgstr "" + +#. Output options +#: ../backends/alsa/alsa-constants.c:151 +msgid "Speakers" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:152 +msgid "Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:153 +msgid "Front Panel Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:158 +msgid "Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:159 +msgid "Microphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 +#: ../backends/alsa/alsa-constants.c:162 +msgid "Microphone In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:170 +msgid "Internal Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:174 +msgid "Internal Digital Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:175 ../backends/alsa/alsa-constants.c:178 +msgid "Digital Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:176 +msgid "Digital Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:177 +msgid "Digital Microphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:179 ../backends/alsa/alsa-constants.c:180 +#: ../backends/alsa/alsa-constants.c:181 ../backends/alsa/alsa-constants.c:182 +msgid "External Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:185 +msgid "Camera Microphone" +msgstr "" + +#. Other options +#: ../backends/alsa/alsa-constants.c:188 +msgid "Analog" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:189 +msgid "Analog In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:190 +msgid "Analog Inputs" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:195 +msgid "Line In/Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 +msgid "Auxiliary In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:207 +msgid "Auxiliary 0" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:208 +msgid "Auxiliary 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:209 +msgid "Auxiliary 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:210 +msgid "Auxiliary 3" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:211 +msgid "Docking Station" +msgstr "" + +#. Recording monitor +#: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 +msgid "Mixer" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:216 +msgid "Unknown 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:217 +msgid "Unknown 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:218 +msgid "Enabled" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:219 +msgid "Disabled" +msgstr "Analluogwyd" + +#: ../backends/alsa/alsa-device.c:635 +msgid "On" +msgstr "Ymlaen" + +#: ../backends/alsa/alsa-device.c:636 +msgid "Off" +msgstr "I ffwrdd" + +#: ../backends/oss/oss-backend.c:403 +#, c-format +msgid "OSS Mixer %d" +msgstr "" + +#: ../backends/oss/oss-device.c:88 +msgid "Volume" +msgstr "" + +#: ../backends/oss/oss-device.c:101 +msgid "PCM 2" +msgstr "" + +#. Recording level (master input) +#: ../backends/oss/oss-device.c:103 +msgid "Record" +msgstr "" + +#: ../backends/oss/oss-device.c:104 +msgid "Input Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:105 +msgid "Output Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:106 +msgid "Line In 1" +msgstr "" + +#: ../backends/oss/oss-device.c:107 +msgid "Line In 2" +msgstr "" + +#: ../backends/oss/oss-device.c:108 +msgid "Line In 3" +msgstr "" + +#. These 3 can be attached to either digital input or output +#: ../backends/oss/oss-device.c:110 +msgid "Digital 1" +msgstr "" + +#: ../backends/oss/oss-device.c:111 +msgid "Digital 2" +msgstr "" + +#: ../backends/oss/oss-device.c:112 +msgid "Digital 3" +msgstr "" + +#: ../backends/oss/oss-device.c:113 +msgid "Phone In" +msgstr "" + +#: ../backends/oss/oss-device.c:114 +msgid "Phone Out" +msgstr "" + +#: ../backends/oss/oss-device.c:116 +msgid "Radio" +msgstr "" + +#. Create the port switch +#: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 +#: ../backends/pulse/pulse-source.c:146 +msgid "Connector" +msgstr "" + +#: ../backends/pulse/pulse-device.c:399 +msgid "Profile" +msgstr "" + +#: ../backends/pulse/pulse-monitor.c:282 +msgid "Peak detect" +msgstr "" diff -Nru libmatemixer-1.12.1/po/el.po libmatemixer-1.18.0/po/el.po --- libmatemixer-1.12.1/po/el.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/el.po 2017-03-12 15:31:59.000000000 +0000 @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Angelos Chraniotis , 2016 # Efstathios Iosifidis , 2014-2015 # Panos Panagiotopoulos , 2014 msgid "" @@ -10,8 +11,8 @@ "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-09-09 10:54+0000\n" -"Last-Translator: infirit \n" +"PO-Revision-Date: 2017-02-07 20:15+0000\n" +"Last-Translator: Αλέξανδρος Καπετάνιος \n" "Language-Team: Greek (http://www.transifex.com/mate/MATE/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,11 +23,11 @@ #. Output controls #: ../backends/alsa/alsa-constants.c:40 msgid "Master" -msgstr "Master" +msgstr "Κύρια έξοδος" #: ../backends/alsa/alsa-constants.c:41 msgid "Hardware Master" -msgstr "Master Υλικού" +msgstr "Κύρια έξοδος Υλικού" #: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 msgid "PCM" @@ -58,7 +59,7 @@ #: ../backends/alsa/alsa-constants.c:50 msgid "Headset" -msgstr "Σετ Ακουστικών - Μικροφώνου" +msgstr "Ακουστικά με μικρόφωνο" #: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 #: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 @@ -79,11 +80,11 @@ #: ../backends/alsa/alsa-constants.c:60 msgid "Master Mono" -msgstr "Master Μονοφωνικού" +msgstr "Κύρια έξοδος Μονοφωνικού" #: ../backends/alsa/alsa-constants.c:61 msgid "Master Digital" -msgstr "Master Ψηφιακού" +msgstr "Κύρια έξοδος Ψηφιακού" #: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 msgid "Side Speaker" @@ -117,7 +118,7 @@ #: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 msgid "LFE Speaker" -msgstr "Ηχείο LFE" +msgstr "Ηχείο χαμηλών συχνοτήτων" #: ../backends/alsa/alsa-constants.c:72 msgid "Bass Speaker" @@ -190,7 +191,7 @@ #: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 msgid "Headset Microphone" -msgstr "Μικρόφωνο Σετ Ακουστικών - Μικροφώνου" +msgstr "Μικρόφωνο Ακουστικών με μικρόφωνο" #: ../backends/alsa/alsa-constants.c:91 msgid "Inverted Internal Microphone" @@ -252,7 +253,7 @@ #: ../backends/alsa/alsa-constants.c:108 msgid "Headset Microphone Boost" -msgstr "Ενίσχυση Μικροφώνου Σετ Ακουστικών-Μικροφώνου" +msgstr "Ενίσχυση Μικροφώνου Ακουστικών με μικρόφωνο" #: ../backends/alsa/alsa-constants.c:109 msgid "Line In Boost" @@ -269,15 +270,15 @@ #: ../backends/alsa/alsa-constants.c:118 msgid "Capture Source" -msgstr "Πηγή σύλληψης" +msgstr "Πηγή Ηχογράφησης" #: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 msgid "Input Source" -msgstr "Πηγή εισαγωγής" +msgstr "Πηγή Εισόδου" #: ../backends/alsa/alsa-constants.c:121 msgid "Digital Input Source" -msgstr "Ψηφιακή πηγή εισαγωγής" +msgstr "Πηγή Ψηφιακής Εισόδου" #: ../backends/alsa/alsa-constants.c:122 msgid "PCM Capture Source" @@ -289,11 +290,11 @@ #: ../backends/alsa/alsa-constants.c:124 msgid "Mono Output" -msgstr "" +msgstr "Μονοφωνική Έξοδος" #: ../backends/alsa/alsa-constants.c:125 msgid "Shared Microphone/Line In" -msgstr "" +msgstr "Διπλή λειτουργία Μικρόφωνο/Είσοδος" #: ../backends/alsa/alsa-constants.c:127 msgid "Microphone Jack Mode" @@ -326,7 +327,7 @@ #: ../backends/alsa/alsa-constants.c:137 msgid "Digital Default PCM" -msgstr "" +msgstr "Προεπιλεγμένο Ψηφιακό PCM" #: ../backends/alsa/alsa-constants.c:138 msgid "Optical" @@ -334,7 +335,7 @@ #: ../backends/alsa/alsa-constants.c:139 msgid "Auto Gain Control" -msgstr "Αυτόματος Έλεγχος Κέρδους" +msgstr "Αυτόματος Έλεγχος Προσαύξησης Έντασης" #: ../backends/alsa/alsa-constants.c:140 msgid "Mix" @@ -346,7 +347,7 @@ #: ../backends/alsa/alsa-constants.c:142 msgid "Microphone Capture" -msgstr "" +msgstr "Ηχογράφηση Μικροφώνου" #: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 msgid "Input 1" @@ -475,11 +476,11 @@ #: ../backends/alsa/alsa-device.c:635 msgid "On" -msgstr "On" +msgstr "Ανοικτό" #: ../backends/alsa/alsa-device.c:636 msgid "Off" -msgstr "Off" +msgstr "Κλειστό" #: ../backends/oss/oss-backend.c:403 #, c-format @@ -548,7 +549,7 @@ #: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 #: ../backends/pulse/pulse-source.c:146 msgid "Connector" -msgstr "" +msgstr "Βύσμα" #: ../backends/pulse/pulse-device.c:399 msgid "Profile" diff -Nru libmatemixer-1.12.1/po/en_AU.po libmatemixer-1.18.0/po/en_AU.po --- libmatemixer-1.12.1/po/en_AU.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/en_AU.po 2017-03-12 15:31:59.000000000 +0000 @@ -9,7 +9,7 @@ "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-09-13 20:31+0000\n" +"PO-Revision-Date: 2016-06-21 03:30+0000\n" "Last-Translator: Michael Findlay \n" "Language-Team: English (Australia) (http://www.transifex.com/mate/MATE/language/en_AU/)\n" "MIME-Version: 1.0\n" diff -Nru libmatemixer-1.12.1/po/es_CO.po libmatemixer-1.18.0/po/es_CO.po --- libmatemixer-1.12.1/po/es_CO.po 1970-01-01 00:00:00.000000000 +0000 +++ libmatemixer-1.18.0/po/es_CO.po 2017-03-12 15:31:59.000000000 +0000 @@ -0,0 +1,558 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Jose Barakat , 2016 +msgid "" +msgstr "" +"Project-Id-Version: MATE Desktop Environment\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-09 12:55+0200\n" +"PO-Revision-Date: 2016-06-26 06:45+0000\n" +"Last-Translator: Jose Barakat \n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/mate/MATE/language/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Output controls +#: ../backends/alsa/alsa-constants.c:40 +msgid "Master" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:41 +msgid "Hardware Master" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 +msgid "PCM" +msgstr "" + +#. OSS manual says this should be the beeper, but Linux OSS seems to assign it +#. to +#. * regular volume control +#: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 +msgid "Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:44 +msgid "Desktop Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 +#: ../backends/alsa/alsa-constants.c:47 +msgid "Front Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:48 +msgid "Headphone" +msgstr "Audífonos" + +#: ../backends/alsa/alsa-constants.c:49 +msgid "Headphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:50 +msgid "Headset" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 +#: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 +msgid "Surround Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 +msgid "Center Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 +msgid "CLFE Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 +msgid "Digital" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:60 +msgid "Master Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:61 +msgid "Master Digital" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 +msgid "Side Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:64 +msgid "Rear Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:65 +msgid "Wave" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 +#: ../backends/alsa/alsa-constants.c:215 +msgid "Phone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 +#: ../backends/oss/oss-device.c:98 +msgid "CD" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:68 +msgid "Music" +msgstr "Música" + +#: ../backends/alsa/alsa-constants.c:69 +msgid "AC97" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 +msgid "LFE Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:72 +msgid "Bass Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:73 +msgid "PC Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 +msgid "Synth" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:75 +msgid "MIDI" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:76 +msgid "Synth/MIDI" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 +msgid "Bass" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:78 ../backends/oss/oss-device.c:90 +msgid "Treble" +msgstr "" + +#. Input controls +#: ../backends/alsa/alsa-constants.c:81 +msgid "Capture" +msgstr "" + +#. Microphone options +#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 +#: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 +#: ../backends/oss/oss-device.c:97 +msgid "Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 +msgid "Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 +#: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 +#: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 +#: ../backends/alsa/alsa-constants.c:173 +msgid "Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 +#: ../backends/alsa/alsa-constants.c:164 +msgid "Front Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:87 ../backends/alsa/alsa-constants.c:183 +#: ../backends/alsa/alsa-constants.c:184 +msgid "Rear Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 +msgid "Dock Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 +msgid "Headphone Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 +msgid "Headset Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:91 +msgid "Inverted Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 +#: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 +#: ../backends/alsa/alsa-constants.c:192 ../backends/alsa/alsa-constants.c:193 +#: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 +#: ../backends/oss/oss-device.c:96 +msgid "Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 +#: ../backends/alsa/alsa-constants.c:206 +msgid "Auxiliary" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 +#: ../backends/oss/oss-device.c:115 +msgid "Video" +msgstr "Vídeo" + +#: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 +msgid "TV Tuner" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 +msgid "FM" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:100 +msgid "Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:101 +msgid "Microphone Boost (+20dB)" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 +msgid "Internal Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:104 +msgid "Front Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:105 +msgid "Rear Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:106 +msgid "Dock Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:107 +msgid "Headphone Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:108 +msgid "Headset Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:109 +msgid "Line In Boost" +msgstr "" + +#. Switches +#: ../backends/alsa/alsa-constants.c:116 +msgid "Analog Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:117 +msgid "Analog Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:118 +msgid "Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 +msgid "Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:121 +msgid "Digital Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:122 +msgid "PCM Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:123 +msgid "Digital Playback Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:124 +msgid "Mono Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:125 +msgid "Shared Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:127 +msgid "Microphone Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:128 +msgid "Surround Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:129 +msgid "Auto-Mute Mode" +msgstr "" + +#. Toggles +#: ../backends/alsa/alsa-constants.c:132 +msgid "External Amplifier" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:133 +msgid "Bass Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:134 +msgid "Capture Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 +msgid "Digital In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:137 +msgid "Digital Default PCM" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:138 +msgid "Optical" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:139 +msgid "Auto Gain Control" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:140 +msgid "Mix" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:141 +msgid "Mix Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:142 +msgid "Microphone Capture" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 +msgid "Input 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:144 ../backends/alsa/alsa-constants.c:199 +msgid "Input 2" +msgstr "" + +#. Output options +#: ../backends/alsa/alsa-constants.c:151 +msgid "Speakers" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:152 +msgid "Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:153 +msgid "Front Panel Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:158 +msgid "Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:159 +msgid "Microphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 +#: ../backends/alsa/alsa-constants.c:162 +msgid "Microphone In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:170 +msgid "Internal Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:174 +msgid "Internal Digital Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:175 ../backends/alsa/alsa-constants.c:178 +msgid "Digital Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:176 +msgid "Digital Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:177 +msgid "Digital Microphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:179 ../backends/alsa/alsa-constants.c:180 +#: ../backends/alsa/alsa-constants.c:181 ../backends/alsa/alsa-constants.c:182 +msgid "External Microphone" +msgstr "Micrófono Externo" + +#: ../backends/alsa/alsa-constants.c:185 +msgid "Camera Microphone" +msgstr "" + +#. Other options +#: ../backends/alsa/alsa-constants.c:188 +msgid "Analog" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:189 +msgid "Analog In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:190 +msgid "Analog Inputs" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:195 +msgid "Line In/Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 +msgid "Auxiliary In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:207 +msgid "Auxiliary 0" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:208 +msgid "Auxiliary 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:209 +msgid "Auxiliary 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:210 +msgid "Auxiliary 3" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:211 +msgid "Docking Station" +msgstr "" + +#. Recording monitor +#: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 +msgid "Mixer" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:216 +msgid "Unknown 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:217 +msgid "Unknown 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:218 +msgid "Enabled" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:219 +msgid "Disabled" +msgstr "" + +#: ../backends/alsa/alsa-device.c:635 +msgid "On" +msgstr "" + +#: ../backends/alsa/alsa-device.c:636 +msgid "Off" +msgstr "" + +#: ../backends/oss/oss-backend.c:403 +#, c-format +msgid "OSS Mixer %d" +msgstr "" + +#: ../backends/oss/oss-device.c:88 +msgid "Volume" +msgstr "" + +#: ../backends/oss/oss-device.c:101 +msgid "PCM 2" +msgstr "" + +#. Recording level (master input) +#: ../backends/oss/oss-device.c:103 +msgid "Record" +msgstr "" + +#: ../backends/oss/oss-device.c:104 +msgid "Input Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:105 +msgid "Output Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:106 +msgid "Line In 1" +msgstr "" + +#: ../backends/oss/oss-device.c:107 +msgid "Line In 2" +msgstr "" + +#: ../backends/oss/oss-device.c:108 +msgid "Line In 3" +msgstr "" + +#. These 3 can be attached to either digital input or output +#: ../backends/oss/oss-device.c:110 +msgid "Digital 1" +msgstr "" + +#: ../backends/oss/oss-device.c:111 +msgid "Digital 2" +msgstr "" + +#: ../backends/oss/oss-device.c:112 +msgid "Digital 3" +msgstr "" + +#: ../backends/oss/oss-device.c:113 +msgid "Phone In" +msgstr "" + +#: ../backends/oss/oss-device.c:114 +msgid "Phone Out" +msgstr "" + +#: ../backends/oss/oss-device.c:116 +msgid "Radio" +msgstr "" + +#. Create the port switch +#: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 +#: ../backends/pulse/pulse-source.c:146 +msgid "Connector" +msgstr "" + +#: ../backends/pulse/pulse-device.c:399 +msgid "Profile" +msgstr "" + +#: ../backends/pulse/pulse-monitor.c:282 +msgid "Peak detect" +msgstr "" diff -Nru libmatemixer-1.12.1/po/es_MX.po libmatemixer-1.18.0/po/es_MX.po --- libmatemixer-1.12.1/po/es_MX.po 1970-01-01 00:00:00.000000000 +0000 +++ libmatemixer-1.18.0/po/es_MX.po 2017-03-12 15:31:59.000000000 +0000 @@ -0,0 +1,557 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: MATE Desktop Environment\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-09 12:55+0200\n" +"PO-Revision-Date: 2016-02-10 22:40+0000\n" +"Last-Translator: infirit \n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/mate/MATE/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Output controls +#: ../backends/alsa/alsa-constants.c:40 +msgid "Master" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:41 +msgid "Hardware Master" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 +msgid "PCM" +msgstr "" + +#. OSS manual says this should be the beeper, but Linux OSS seems to assign it +#. to +#. * regular volume control +#: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 +msgid "Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:44 +msgid "Desktop Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 +#: ../backends/alsa/alsa-constants.c:47 +msgid "Front Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:48 +msgid "Headphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:49 +msgid "Headphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:50 +msgid "Headset" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 +#: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 +msgid "Surround Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 +msgid "Center Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 +msgid "CLFE Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 +msgid "Digital" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:60 +msgid "Master Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:61 +msgid "Master Digital" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 +msgid "Side Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:64 +msgid "Rear Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:65 +msgid "Wave" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 +#: ../backends/alsa/alsa-constants.c:215 +msgid "Phone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 +#: ../backends/oss/oss-device.c:98 +msgid "CD" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:68 +msgid "Music" +msgstr "Música" + +#: ../backends/alsa/alsa-constants.c:69 +msgid "AC97" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 +msgid "LFE Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:72 +msgid "Bass Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:73 +msgid "PC Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 +msgid "Synth" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:75 +msgid "MIDI" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:76 +msgid "Synth/MIDI" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 +msgid "Bass" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:78 ../backends/oss/oss-device.c:90 +msgid "Treble" +msgstr "" + +#. Input controls +#: ../backends/alsa/alsa-constants.c:81 +msgid "Capture" +msgstr "" + +#. Microphone options +#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 +#: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 +#: ../backends/oss/oss-device.c:97 +msgid "Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 +msgid "Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 +#: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 +#: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 +#: ../backends/alsa/alsa-constants.c:173 +msgid "Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 +#: ../backends/alsa/alsa-constants.c:164 +msgid "Front Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:87 ../backends/alsa/alsa-constants.c:183 +#: ../backends/alsa/alsa-constants.c:184 +msgid "Rear Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 +msgid "Dock Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 +msgid "Headphone Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 +msgid "Headset Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:91 +msgid "Inverted Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 +#: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 +#: ../backends/alsa/alsa-constants.c:192 ../backends/alsa/alsa-constants.c:193 +#: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 +#: ../backends/oss/oss-device.c:96 +msgid "Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 +#: ../backends/alsa/alsa-constants.c:206 +msgid "Auxiliary" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 +#: ../backends/oss/oss-device.c:115 +msgid "Video" +msgstr "Video" + +#: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 +msgid "TV Tuner" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 +msgid "FM" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:100 +msgid "Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:101 +msgid "Microphone Boost (+20dB)" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 +msgid "Internal Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:104 +msgid "Front Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:105 +msgid "Rear Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:106 +msgid "Dock Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:107 +msgid "Headphone Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:108 +msgid "Headset Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:109 +msgid "Line In Boost" +msgstr "" + +#. Switches +#: ../backends/alsa/alsa-constants.c:116 +msgid "Analog Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:117 +msgid "Analog Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:118 +msgid "Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 +msgid "Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:121 +msgid "Digital Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:122 +msgid "PCM Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:123 +msgid "Digital Playback Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:124 +msgid "Mono Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:125 +msgid "Shared Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:127 +msgid "Microphone Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:128 +msgid "Surround Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:129 +msgid "Auto-Mute Mode" +msgstr "" + +#. Toggles +#: ../backends/alsa/alsa-constants.c:132 +msgid "External Amplifier" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:133 +msgid "Bass Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:134 +msgid "Capture Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 +msgid "Digital In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:137 +msgid "Digital Default PCM" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:138 +msgid "Optical" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:139 +msgid "Auto Gain Control" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:140 +msgid "Mix" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:141 +msgid "Mix Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:142 +msgid "Microphone Capture" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 +msgid "Input 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:144 ../backends/alsa/alsa-constants.c:199 +msgid "Input 2" +msgstr "" + +#. Output options +#: ../backends/alsa/alsa-constants.c:151 +msgid "Speakers" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:152 +msgid "Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:153 +msgid "Front Panel Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:158 +msgid "Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:159 +msgid "Microphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 +#: ../backends/alsa/alsa-constants.c:162 +msgid "Microphone In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:170 +msgid "Internal Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:174 +msgid "Internal Digital Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:175 ../backends/alsa/alsa-constants.c:178 +msgid "Digital Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:176 +msgid "Digital Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:177 +msgid "Digital Microphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:179 ../backends/alsa/alsa-constants.c:180 +#: ../backends/alsa/alsa-constants.c:181 ../backends/alsa/alsa-constants.c:182 +msgid "External Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:185 +msgid "Camera Microphone" +msgstr "" + +#. Other options +#: ../backends/alsa/alsa-constants.c:188 +msgid "Analog" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:189 +msgid "Analog In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:190 +msgid "Analog Inputs" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:195 +msgid "Line In/Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 +msgid "Auxiliary In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:207 +msgid "Auxiliary 0" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:208 +msgid "Auxiliary 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:209 +msgid "Auxiliary 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:210 +msgid "Auxiliary 3" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:211 +msgid "Docking Station" +msgstr "" + +#. Recording monitor +#: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 +msgid "Mixer" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:216 +msgid "Unknown 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:217 +msgid "Unknown 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:218 +msgid "Enabled" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:219 +msgid "Disabled" +msgstr "" + +#: ../backends/alsa/alsa-device.c:635 +msgid "On" +msgstr "" + +#: ../backends/alsa/alsa-device.c:636 +msgid "Off" +msgstr "" + +#: ../backends/oss/oss-backend.c:403 +#, c-format +msgid "OSS Mixer %d" +msgstr "" + +#: ../backends/oss/oss-device.c:88 +msgid "Volume" +msgstr "" + +#: ../backends/oss/oss-device.c:101 +msgid "PCM 2" +msgstr "" + +#. Recording level (master input) +#: ../backends/oss/oss-device.c:103 +msgid "Record" +msgstr "" + +#: ../backends/oss/oss-device.c:104 +msgid "Input Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:105 +msgid "Output Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:106 +msgid "Line In 1" +msgstr "" + +#: ../backends/oss/oss-device.c:107 +msgid "Line In 2" +msgstr "" + +#: ../backends/oss/oss-device.c:108 +msgid "Line In 3" +msgstr "" + +#. These 3 can be attached to either digital input or output +#: ../backends/oss/oss-device.c:110 +msgid "Digital 1" +msgstr "" + +#: ../backends/oss/oss-device.c:111 +msgid "Digital 2" +msgstr "" + +#: ../backends/oss/oss-device.c:112 +msgid "Digital 3" +msgstr "" + +#: ../backends/oss/oss-device.c:113 +msgid "Phone In" +msgstr "" + +#: ../backends/oss/oss-device.c:114 +msgid "Phone Out" +msgstr "" + +#: ../backends/oss/oss-device.c:116 +msgid "Radio" +msgstr "" + +#. Create the port switch +#: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 +#: ../backends/pulse/pulse-source.c:146 +msgid "Connector" +msgstr "" + +#: ../backends/pulse/pulse-device.c:399 +msgid "Profile" +msgstr "" + +#: ../backends/pulse/pulse-monitor.c:282 +msgid "Peak detect" +msgstr "" diff -Nru libmatemixer-1.12.1/po/et.po libmatemixer-1.18.0/po/et.po --- libmatemixer-1.12.1/po/et.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/et.po 2017-03-12 15:31:59.000000000 +0000 @@ -4,13 +4,14 @@ # # Translators: # Ivar Smolin , 2014-2015 +# Mattias Põldaru , 2015 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-09-10 19:18+0000\n" -"Last-Translator: Ivar Smolin \n" +"PO-Revision-Date: 2015-12-31 02:25+0000\n" +"Last-Translator: Mattias Põldaru \n" "Language-Team: Estonian (http://www.transifex.com/mate/MATE/language/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,15 +22,15 @@ #. Output controls #: ../backends/alsa/alsa-constants.c:40 msgid "Master" -msgstr "" +msgstr "Valjus" #: ../backends/alsa/alsa-constants.c:41 msgid "Hardware Master" -msgstr "" +msgstr "Riistvara valjus" #: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 msgid "PCM" -msgstr "" +msgstr "PCM" #. OSS manual says this should be the beeper, but Linux OSS seems to assign it #. to @@ -78,11 +79,11 @@ #: ../backends/alsa/alsa-constants.c:60 msgid "Master Mono" -msgstr "" +msgstr "Mono valjus" #: ../backends/alsa/alsa-constants.c:61 msgid "Master Digital" -msgstr "" +msgstr "Digitaalse valjus" #: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 msgid "Side Speaker" @@ -94,7 +95,7 @@ #: ../backends/alsa/alsa-constants.c:65 msgid "Wave" -msgstr "" +msgstr "Heli" #: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 #: ../backends/alsa/alsa-constants.c:215 @@ -128,7 +129,7 @@ #: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 msgid "Synth" -msgstr "" +msgstr "Sünt" #: ../backends/alsa/alsa-constants.c:75 msgid "MIDI" @@ -136,7 +137,7 @@ #: ../backends/alsa/alsa-constants.c:76 msgid "Synth/MIDI" -msgstr "" +msgstr "Sünt/MIDI" #: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 msgid "Bass" @@ -144,12 +145,12 @@ #: ../backends/alsa/alsa-constants.c:78 ../backends/oss/oss-device.c:90 msgid "Treble" -msgstr "" +msgstr "Kõrged" #. Input controls #: ../backends/alsa/alsa-constants.c:81 msgid "Capture" -msgstr "" +msgstr "Lindistus" #. Microphone options #: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 @@ -160,7 +161,7 @@ #: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 msgid "Microphone/Line In" -msgstr "" +msgstr "Mikrofon/liin sisse" #: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 #: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 @@ -193,7 +194,7 @@ #: ../backends/alsa/alsa-constants.c:91 msgid "Inverted Internal Microphone" -msgstr "" +msgstr "Sisemikrofoni faas pööratud" #: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 #: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 @@ -201,12 +202,12 @@ #: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 #: ../backends/oss/oss-device.c:96 msgid "Line In" -msgstr "" +msgstr "Liin sisse" #: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 #: ../backends/alsa/alsa-constants.c:206 msgid "Auxiliary" -msgstr "" +msgstr "Väline" #: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 #: ../backends/oss/oss-device.c:115 @@ -215,7 +216,7 @@ #: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 msgid "TV Tuner" -msgstr "" +msgstr "TV tüüner" #: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 msgid "FM" @@ -223,39 +224,39 @@ #: ../backends/alsa/alsa-constants.c:100 msgid "Microphone Boost" -msgstr "" +msgstr "Mikrofoni võimendus" #: ../backends/alsa/alsa-constants.c:101 msgid "Microphone Boost (+20dB)" -msgstr "" +msgstr "Mikrofoni võimendus (+20dB)" #: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 msgid "Internal Microphone Boost" -msgstr "" +msgstr "Sisemikrofoni võimendus" #: ../backends/alsa/alsa-constants.c:104 msgid "Front Microphone Boost" -msgstr "" +msgstr "Esimikrofoni võimendus" #: ../backends/alsa/alsa-constants.c:105 msgid "Rear Microphone Boost" -msgstr "" +msgstr "Tagamikrofoni võimendus" #: ../backends/alsa/alsa-constants.c:106 msgid "Dock Microphone Boost" -msgstr "" +msgstr "Dokimikrofoni võimendus" #: ../backends/alsa/alsa-constants.c:107 msgid "Headphone Microphone Boost" -msgstr "" +msgstr "Peamikrofoni võimendus" #: ../backends/alsa/alsa-constants.c:108 msgid "Headset Microphone Boost" -msgstr "" +msgstr "Peakomplekti mikrofoni võimendus" #: ../backends/alsa/alsa-constants.c:109 msgid "Line In Boost" -msgstr "" +msgstr "Liinisisendi võimendus" #. Switches #: ../backends/alsa/alsa-constants.c:116 @@ -264,11 +265,11 @@ #: ../backends/alsa/alsa-constants.c:117 msgid "Analog Source" -msgstr "" +msgstr "Analoogsisend" #: ../backends/alsa/alsa-constants.c:118 msgid "Capture Source" -msgstr "" +msgstr "Lindistuse sisend" #: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 msgid "Input Source" @@ -280,11 +281,11 @@ #: ../backends/alsa/alsa-constants.c:122 msgid "PCM Capture Source" -msgstr "" +msgstr "PCM lindistuse sisend" #: ../backends/alsa/alsa-constants.c:123 msgid "Digital Playback Source" -msgstr "" +msgstr "Digitaalse taasesituse sisend" #: ../backends/alsa/alsa-constants.c:124 msgid "Mono Output" @@ -292,19 +293,19 @@ #: ../backends/alsa/alsa-constants.c:125 msgid "Shared Microphone/Line In" -msgstr "" +msgstr "Ühine mikrofon/liin sisse" #: ../backends/alsa/alsa-constants.c:127 msgid "Microphone Jack Mode" -msgstr "" +msgstr "Mikrofoni pistiku režiim" #: ../backends/alsa/alsa-constants.c:128 msgid "Surround Jack Mode" -msgstr "" +msgstr "Laiheli pistiku režiim" #: ../backends/alsa/alsa-constants.c:129 msgid "Auto-Mute Mode" -msgstr "" +msgstr "Automaatselt tummaks režiim" #. Toggles #: ../backends/alsa/alsa-constants.c:132 @@ -313,19 +314,19 @@ #: ../backends/alsa/alsa-constants.c:133 msgid "Bass Boost" -msgstr "" +msgstr "Madalate võimendus" #: ../backends/alsa/alsa-constants.c:134 msgid "Capture Boost" -msgstr "" +msgstr "Lindistuse võimendus" #: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 msgid "Digital In" -msgstr "" +msgstr "Digitaalne sisse" #: ../backends/alsa/alsa-constants.c:137 msgid "Digital Default PCM" -msgstr "" +msgstr "Digitaalne vaikimisi PCM" #: ../backends/alsa/alsa-constants.c:138 msgid "Optical" @@ -333,19 +334,19 @@ #: ../backends/alsa/alsa-constants.c:139 msgid "Auto Gain Control" -msgstr "" +msgstr "Automaatne valjus" #: ../backends/alsa/alsa-constants.c:140 msgid "Mix" -msgstr "" +msgstr "Miks" #: ../backends/alsa/alsa-constants.c:141 msgid "Mix Mono" -msgstr "" +msgstr "Mono miks" #: ../backends/alsa/alsa-constants.c:142 msgid "Microphone Capture" -msgstr "" +msgstr "Mikrofoni lindistus" #: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 msgid "Input 1" @@ -379,7 +380,7 @@ #: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 #: ../backends/alsa/alsa-constants.c:162 msgid "Microphone In" -msgstr "" +msgstr "Mikrofon sisse" #: ../backends/alsa/alsa-constants.c:170 msgid "Internal Microphone 1" @@ -425,27 +426,27 @@ #: ../backends/alsa/alsa-constants.c:195 msgid "Line In/Microphone" -msgstr "" +msgstr "Liin sisse/mikrofon" #: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 msgid "Auxiliary In" -msgstr "" +msgstr "Väline sisse" #: ../backends/alsa/alsa-constants.c:207 msgid "Auxiliary 0" -msgstr "" +msgstr "Väline 0" #: ../backends/alsa/alsa-constants.c:208 msgid "Auxiliary 1" -msgstr "" +msgstr "Väline 1" #: ../backends/alsa/alsa-constants.c:209 msgid "Auxiliary 2" -msgstr "" +msgstr "Väline 2" #: ../backends/alsa/alsa-constants.c:210 msgid "Auxiliary 3" -msgstr "" +msgstr "Väline 3" #: ../backends/alsa/alsa-constants.c:211 msgid "Docking Station" @@ -474,11 +475,11 @@ #: ../backends/alsa/alsa-device.c:635 msgid "On" -msgstr "" +msgstr "Sees" #: ../backends/alsa/alsa-device.c:636 msgid "Off" -msgstr "" +msgstr "Väljas" #: ../backends/oss/oss-backend.c:403 #, c-format @@ -491,7 +492,7 @@ #: ../backends/oss/oss-device.c:101 msgid "PCM 2" -msgstr "" +msgstr "PCM 2" #. Recording level (master input) #: ../backends/oss/oss-device.c:103 @@ -500,23 +501,23 @@ #: ../backends/oss/oss-device.c:104 msgid "Input Gain" -msgstr "" +msgstr "Sisendi võimendus" #: ../backends/oss/oss-device.c:105 msgid "Output Gain" -msgstr "" +msgstr "Väljundi võimendus" #: ../backends/oss/oss-device.c:106 msgid "Line In 1" -msgstr "" +msgstr "Liin 1" #: ../backends/oss/oss-device.c:107 msgid "Line In 2" -msgstr "" +msgstr "Liin 2" #: ../backends/oss/oss-device.c:108 msgid "Line In 3" -msgstr "" +msgstr "Liin 3" #. These 3 can be attached to either digital input or output #: ../backends/oss/oss-device.c:110 @@ -547,7 +548,7 @@ #: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 #: ../backends/pulse/pulse-source.c:146 msgid "Connector" -msgstr "" +msgstr "Pistik" #: ../backends/pulse/pulse-device.c:399 msgid "Profile" @@ -555,4 +556,4 @@ #: ../backends/pulse/pulse-monitor.c:282 msgid "Peak detect" -msgstr "" +msgstr "Tipu tuvastus" diff -Nru libmatemixer-1.12.1/po/fa.po libmatemixer-1.18.0/po/fa.po --- libmatemixer-1.12.1/po/fa.po 1970-01-01 00:00:00.000000000 +0000 +++ libmatemixer-1.18.0/po/fa.po 2017-03-12 15:31:59.000000000 +0000 @@ -0,0 +1,558 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Mohammadreza Abdollahzadeh , 2016 +msgid "" +msgstr "" +"Project-Id-Version: MATE Desktop Environment\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-09 12:55+0200\n" +"PO-Revision-Date: 2016-03-09 18:28+0000\n" +"Last-Translator: Mohammadreza Abdollahzadeh \n" +"Language-Team: Persian (http://www.transifex.com/mate/MATE/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. Output controls +#: ../backends/alsa/alsa-constants.c:40 +msgid "Master" +msgstr "اصلی" + +#: ../backends/alsa/alsa-constants.c:41 +msgid "Hardware Master" +msgstr "اصلی سخت افزار" + +#: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 +msgid "PCM" +msgstr "PCM" + +#. OSS manual says this should be the beeper, but Linux OSS seems to assign it +#. to +#. * regular volume control +#: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 +msgid "Speaker" +msgstr "بلندگو" + +#: ../backends/alsa/alsa-constants.c:44 +msgid "Desktop Speaker" +msgstr "بلندگوی میز کاری" + +#: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 +#: ../backends/alsa/alsa-constants.c:47 +msgid "Front Speaker" +msgstr "بلندگوی جلو" + +#: ../backends/alsa/alsa-constants.c:48 +msgid "Headphone" +msgstr "هدفون" + +#: ../backends/alsa/alsa-constants.c:49 +msgid "Headphone 2" +msgstr "هدفون 2" + +#: ../backends/alsa/alsa-constants.c:50 +msgid "Headset" +msgstr "هدست" + +#: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 +#: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 +msgid "Surround Speaker" +msgstr "بلندگوی فراگیر" + +#: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 +msgid "Center Speaker" +msgstr "بلندگوی مرکزی" + +#: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 +msgid "CLFE Speaker" +msgstr "بلندگوی CLFE" + +#: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 +msgid "Digital" +msgstr "دیجیتال" + +#: ../backends/alsa/alsa-constants.c:60 +msgid "Master Mono" +msgstr "تکی اصلی" + +#: ../backends/alsa/alsa-constants.c:61 +msgid "Master Digital" +msgstr "دیجیتال اصلی" + +#: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 +msgid "Side Speaker" +msgstr "بلندگوی کناری" + +#: ../backends/alsa/alsa-constants.c:64 +msgid "Rear Speaker" +msgstr "بلندگوی عقب" + +#: ../backends/alsa/alsa-constants.c:65 +msgid "Wave" +msgstr "موج" + +#: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 +#: ../backends/alsa/alsa-constants.c:215 +msgid "Phone" +msgstr "تلفن" + +#: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 +#: ../backends/oss/oss-device.c:98 +msgid "CD" +msgstr "لوح فشرده" + +#: ../backends/alsa/alsa-constants.c:68 +msgid "Music" +msgstr "موزیک" + +#: ../backends/alsa/alsa-constants.c:69 +msgid "AC97" +msgstr "AC97" + +#: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 +msgid "LFE Speaker" +msgstr "بلندگوی LFE" + +#: ../backends/alsa/alsa-constants.c:72 +msgid "Bass Speaker" +msgstr "بلندگوی باس" + +#: ../backends/alsa/alsa-constants.c:73 +msgid "PC Speaker" +msgstr "بلندگوی PC" + +#: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 +msgid "Synth" +msgstr "ترکيب کننده" + +#: ../backends/alsa/alsa-constants.c:75 +msgid "MIDI" +msgstr "MIDI" + +#: ../backends/alsa/alsa-constants.c:76 +msgid "Synth/MIDI" +msgstr "ترکيب کننده/MIDI" + +#: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 +msgid "Bass" +msgstr "باس" + +#: ../backends/alsa/alsa-constants.c:78 ../backends/oss/oss-device.c:90 +msgid "Treble" +msgstr "صداى زير" + +#. Input controls +#: ../backends/alsa/alsa-constants.c:81 +msgid "Capture" +msgstr "ضبط" + +#. Microphone options +#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 +#: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 +#: ../backends/oss/oss-device.c:97 +msgid "Microphone" +msgstr "میکروفون" + +#: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 +msgid "Microphone/Line In" +msgstr "میکروفون/ورودی خط" + +#: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 +#: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 +#: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 +#: ../backends/alsa/alsa-constants.c:173 +msgid "Internal Microphone" +msgstr "میکروفون داخلی" + +#: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 +#: ../backends/alsa/alsa-constants.c:164 +msgid "Front Microphone" +msgstr "میکروفون جلو" + +#: ../backends/alsa/alsa-constants.c:87 ../backends/alsa/alsa-constants.c:183 +#: ../backends/alsa/alsa-constants.c:184 +msgid "Rear Microphone" +msgstr "میکروفون عقب" + +#: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 +msgid "Dock Microphone" +msgstr "میکروفون داک" + +#: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 +msgid "Headphone Microphone" +msgstr "میکروفون هدفون" + +#: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 +msgid "Headset Microphone" +msgstr "میکروفون هدست" + +#: ../backends/alsa/alsa-constants.c:91 +msgid "Inverted Internal Microphone" +msgstr "میکروفون داخلی معکوس" + +#: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 +#: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 +#: ../backends/alsa/alsa-constants.c:192 ../backends/alsa/alsa-constants.c:193 +#: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 +#: ../backends/oss/oss-device.c:96 +msgid "Line In" +msgstr "ورودی خط" + +#: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 +#: ../backends/alsa/alsa-constants.c:206 +msgid "Auxiliary" +msgstr "کمکی" + +#: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 +#: ../backends/oss/oss-device.c:115 +msgid "Video" +msgstr "ویدیو" + +#: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 +msgid "TV Tuner" +msgstr "تنظیم کننده‌ی تلویزیون" + +#: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 +msgid "FM" +msgstr "FM" + +#: ../backends/alsa/alsa-constants.c:100 +msgid "Microphone Boost" +msgstr "تقویت میکروفون" + +#: ../backends/alsa/alsa-constants.c:101 +msgid "Microphone Boost (+20dB)" +msgstr "تقویت میکروفون (+20 دسی بل)" + +#: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 +msgid "Internal Microphone Boost" +msgstr "تقویت میکروفون داخلی" + +#: ../backends/alsa/alsa-constants.c:104 +msgid "Front Microphone Boost" +msgstr "تقویت میکروفون جلویی" + +#: ../backends/alsa/alsa-constants.c:105 +msgid "Rear Microphone Boost" +msgstr "تقویت میکروفون عقبی" + +#: ../backends/alsa/alsa-constants.c:106 +msgid "Dock Microphone Boost" +msgstr "تقویت میکروفون داک" + +#: ../backends/alsa/alsa-constants.c:107 +msgid "Headphone Microphone Boost" +msgstr "تقویت میکروفون هدفون" + +#: ../backends/alsa/alsa-constants.c:108 +msgid "Headset Microphone Boost" +msgstr "تقویت میکروفون هدست" + +#: ../backends/alsa/alsa-constants.c:109 +msgid "Line In Boost" +msgstr "تقویت ورودی خط" + +#. Switches +#: ../backends/alsa/alsa-constants.c:116 +msgid "Analog Output" +msgstr "خروجی آنالوگ" + +#: ../backends/alsa/alsa-constants.c:117 +msgid "Analog Source" +msgstr "مبدأ آنالوگ" + +#: ../backends/alsa/alsa-constants.c:118 +msgid "Capture Source" +msgstr "مبدأ ضبط" + +#: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 +msgid "Input Source" +msgstr "مبدأ ورودی" + +#: ../backends/alsa/alsa-constants.c:121 +msgid "Digital Input Source" +msgstr "مبدأ ورودی دیجیتال" + +#: ../backends/alsa/alsa-constants.c:122 +msgid "PCM Capture Source" +msgstr "مبدأ ضبط PCM" + +#: ../backends/alsa/alsa-constants.c:123 +msgid "Digital Playback Source" +msgstr "مبدأ بازپخش دیجیتال" + +#: ../backends/alsa/alsa-constants.c:124 +msgid "Mono Output" +msgstr "خروجی تکی" + +#: ../backends/alsa/alsa-constants.c:125 +msgid "Shared Microphone/Line In" +msgstr "میکروفون مشترک/ورودی خط" + +#: ../backends/alsa/alsa-constants.c:127 +msgid "Microphone Jack Mode" +msgstr "مد جک میکروفون" + +#: ../backends/alsa/alsa-constants.c:128 +msgid "Surround Jack Mode" +msgstr "مد جک فراگیر" + +#: ../backends/alsa/alsa-constants.c:129 +msgid "Auto-Mute Mode" +msgstr "مد صامت خودکار" + +#. Toggles +#: ../backends/alsa/alsa-constants.c:132 +msgid "External Amplifier" +msgstr "تقویت کننده خارجی" + +#: ../backends/alsa/alsa-constants.c:133 +msgid "Bass Boost" +msgstr "تقویت باس" + +#: ../backends/alsa/alsa-constants.c:134 +msgid "Capture Boost" +msgstr "تقویت ضبط" + +#: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 +msgid "Digital In" +msgstr "ورودی دیجیتال" + +#: ../backends/alsa/alsa-constants.c:137 +msgid "Digital Default PCM" +msgstr "PCM پیش فرض دیجیتال" + +#: ../backends/alsa/alsa-constants.c:138 +msgid "Optical" +msgstr "نوری" + +#: ../backends/alsa/alsa-constants.c:139 +msgid "Auto Gain Control" +msgstr "کنترل تقویت خودکار" + +#: ../backends/alsa/alsa-constants.c:140 +msgid "Mix" +msgstr "ترکیب" + +#: ../backends/alsa/alsa-constants.c:141 +msgid "Mix Mono" +msgstr "ترکیب تکی" + +#: ../backends/alsa/alsa-constants.c:142 +msgid "Microphone Capture" +msgstr "ضبط میکروفون" + +#: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 +msgid "Input 1" +msgstr "ورودی 1" + +#: ../backends/alsa/alsa-constants.c:144 ../backends/alsa/alsa-constants.c:199 +msgid "Input 2" +msgstr "ورودی 2" + +#. Output options +#: ../backends/alsa/alsa-constants.c:151 +msgid "Speakers" +msgstr "بلندگوها" + +#: ../backends/alsa/alsa-constants.c:152 +msgid "Headphones" +msgstr "هدفونها" + +#: ../backends/alsa/alsa-constants.c:153 +msgid "Front Panel Headphones" +msgstr "هدفونهای پانل جلویی" + +#: ../backends/alsa/alsa-constants.c:158 +msgid "Microphone 1" +msgstr "میکروفون 1" + +#: ../backends/alsa/alsa-constants.c:159 +msgid "Microphone 2" +msgstr "میکروفون 2" + +#: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 +#: ../backends/alsa/alsa-constants.c:162 +msgid "Microphone In" +msgstr "ورودی میکروفون" + +#: ../backends/alsa/alsa-constants.c:170 +msgid "Internal Microphone 1" +msgstr "میکروفون داخلی 1" + +#: ../backends/alsa/alsa-constants.c:174 +msgid "Internal Digital Microphone" +msgstr "میکروفون دیجیتال داخلی " + +#: ../backends/alsa/alsa-constants.c:175 ../backends/alsa/alsa-constants.c:178 +msgid "Digital Microphone" +msgstr "میکروفون دیجیتال" + +#: ../backends/alsa/alsa-constants.c:176 +msgid "Digital Microphone 1" +msgstr "میکروفون دیجیتال 1" + +#: ../backends/alsa/alsa-constants.c:177 +msgid "Digital Microphone 2" +msgstr "میکروفون دیجیتال 2" + +#: ../backends/alsa/alsa-constants.c:179 ../backends/alsa/alsa-constants.c:180 +#: ../backends/alsa/alsa-constants.c:181 ../backends/alsa/alsa-constants.c:182 +msgid "External Microphone" +msgstr "میکروفون خارجی" + +#: ../backends/alsa/alsa-constants.c:185 +msgid "Camera Microphone" +msgstr "میکروفون دوربین" + +#. Other options +#: ../backends/alsa/alsa-constants.c:188 +msgid "Analog" +msgstr "آنالوگ" + +#: ../backends/alsa/alsa-constants.c:189 +msgid "Analog In" +msgstr "ورودی آنالوگ" + +#: ../backends/alsa/alsa-constants.c:190 +msgid "Analog Inputs" +msgstr "ورودی‌های آنالوگ" + +#: ../backends/alsa/alsa-constants.c:195 +msgid "Line In/Microphone" +msgstr "ورودی خط/میکروفون" + +#: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 +msgid "Auxiliary In" +msgstr "ورودی کمکی" + +#: ../backends/alsa/alsa-constants.c:207 +msgid "Auxiliary 0" +msgstr "کمکی 0" + +#: ../backends/alsa/alsa-constants.c:208 +msgid "Auxiliary 1" +msgstr "کمکی 1" + +#: ../backends/alsa/alsa-constants.c:209 +msgid "Auxiliary 2" +msgstr "کمکی 2" + +#: ../backends/alsa/alsa-constants.c:210 +msgid "Auxiliary 3" +msgstr "کمکی 3" + +#: ../backends/alsa/alsa-constants.c:211 +msgid "Docking Station" +msgstr "ایستگاه داکینگ" + +#. Recording monitor +#: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 +msgid "Mixer" +msgstr "ترکیب کننده" + +#: ../backends/alsa/alsa-constants.c:216 +msgid "Unknown 1" +msgstr "ناشناخته 1" + +#: ../backends/alsa/alsa-constants.c:217 +msgid "Unknown 2" +msgstr "ناشناخته 2" + +#: ../backends/alsa/alsa-constants.c:218 +msgid "Enabled" +msgstr "فعال شده" + +#: ../backends/alsa/alsa-constants.c:219 +msgid "Disabled" +msgstr "غیر فعال شده" + +#: ../backends/alsa/alsa-device.c:635 +msgid "On" +msgstr "روشن" + +#: ../backends/alsa/alsa-device.c:636 +msgid "Off" +msgstr "خاموش" + +#: ../backends/oss/oss-backend.c:403 +#, c-format +msgid "OSS Mixer %d" +msgstr "ترکیب کننده OSS %d" + +#: ../backends/oss/oss-device.c:88 +msgid "Volume" +msgstr "بلندی صدا" + +#: ../backends/oss/oss-device.c:101 +msgid "PCM 2" +msgstr "PCM 2" + +#. Recording level (master input) +#: ../backends/oss/oss-device.c:103 +msgid "Record" +msgstr "ضبط" + +#: ../backends/oss/oss-device.c:104 +msgid "Input Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:105 +msgid "Output Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:106 +msgid "Line In 1" +msgstr "ورودی خط 1" + +#: ../backends/oss/oss-device.c:107 +msgid "Line In 2" +msgstr "ورودی خط 2" + +#: ../backends/oss/oss-device.c:108 +msgid "Line In 3" +msgstr "ورودی خط 3" + +#. These 3 can be attached to either digital input or output +#: ../backends/oss/oss-device.c:110 +msgid "Digital 1" +msgstr "" + +#: ../backends/oss/oss-device.c:111 +msgid "Digital 2" +msgstr "" + +#: ../backends/oss/oss-device.c:112 +msgid "Digital 3" +msgstr "" + +#: ../backends/oss/oss-device.c:113 +msgid "Phone In" +msgstr "" + +#: ../backends/oss/oss-device.c:114 +msgid "Phone Out" +msgstr "" + +#: ../backends/oss/oss-device.c:116 +msgid "Radio" +msgstr "رادیو" + +#. Create the port switch +#: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 +#: ../backends/pulse/pulse-source.c:146 +msgid "Connector" +msgstr "" + +#: ../backends/pulse/pulse-device.c:399 +msgid "Profile" +msgstr "" + +#: ../backends/pulse/pulse-monitor.c:282 +msgid "Peak detect" +msgstr "" diff -Nru libmatemixer-1.12.1/po/frp.po libmatemixer-1.18.0/po/frp.po --- libmatemixer-1.12.1/po/frp.po 1970-01-01 00:00:00.000000000 +0000 +++ libmatemixer-1.18.0/po/frp.po 2017-03-12 15:31:59.000000000 +0000 @@ -0,0 +1,558 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Alexandre Raymond, 2016 +msgid "" +msgstr "" +"Project-Id-Version: MATE Desktop Environment\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-09 12:55+0200\n" +"PO-Revision-Date: 2016-05-09 15:32+0000\n" +"Last-Translator: Alexandre Raymond\n" +"Language-Team: Franco-Provençal (Arpitan) (http://www.transifex.com/mate/MATE/language/frp/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: frp\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. Output controls +#: ../backends/alsa/alsa-constants.c:40 +msgid "Master" +msgstr "Mêtro" + +#: ../backends/alsa/alsa-constants.c:41 +msgid "Hardware Master" +msgstr "Mêtro de la quincalye" + +#: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 +msgid "PCM" +msgstr "PCM" + +#. OSS manual says this should be the beeper, but Linux OSS seems to assign it +#. to +#. * regular volume control +#: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 +msgid "Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:44 +msgid "Desktop Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 +#: ../backends/alsa/alsa-constants.c:47 +msgid "Front Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:48 +msgid "Headphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:49 +msgid "Headphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:50 +msgid "Headset" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 +#: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 +msgid "Surround Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 +msgid "Center Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 +msgid "CLFE Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 +msgid "Digital" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:60 +msgid "Master Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:61 +msgid "Master Digital" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 +msgid "Side Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:64 +msgid "Rear Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:65 +msgid "Wave" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 +#: ../backends/alsa/alsa-constants.c:215 +msgid "Phone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 +#: ../backends/oss/oss-device.c:98 +msgid "CD" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:68 +msgid "Music" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:69 +msgid "AC97" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 +msgid "LFE Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:72 +msgid "Bass Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:73 +msgid "PC Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 +msgid "Synth" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:75 +msgid "MIDI" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:76 +msgid "Synth/MIDI" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 +msgid "Bass" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:78 ../backends/oss/oss-device.c:90 +msgid "Treble" +msgstr "" + +#. Input controls +#: ../backends/alsa/alsa-constants.c:81 +msgid "Capture" +msgstr "" + +#. Microphone options +#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 +#: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 +#: ../backends/oss/oss-device.c:97 +msgid "Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 +msgid "Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 +#: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 +#: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 +#: ../backends/alsa/alsa-constants.c:173 +msgid "Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 +#: ../backends/alsa/alsa-constants.c:164 +msgid "Front Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:87 ../backends/alsa/alsa-constants.c:183 +#: ../backends/alsa/alsa-constants.c:184 +msgid "Rear Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 +msgid "Dock Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 +msgid "Headphone Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 +msgid "Headset Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:91 +msgid "Inverted Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 +#: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 +#: ../backends/alsa/alsa-constants.c:192 ../backends/alsa/alsa-constants.c:193 +#: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 +#: ../backends/oss/oss-device.c:96 +msgid "Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 +#: ../backends/alsa/alsa-constants.c:206 +msgid "Auxiliary" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 +#: ../backends/oss/oss-device.c:115 +msgid "Video" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 +msgid "TV Tuner" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 +msgid "FM" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:100 +msgid "Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:101 +msgid "Microphone Boost (+20dB)" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 +msgid "Internal Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:104 +msgid "Front Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:105 +msgid "Rear Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:106 +msgid "Dock Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:107 +msgid "Headphone Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:108 +msgid "Headset Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:109 +msgid "Line In Boost" +msgstr "" + +#. Switches +#: ../backends/alsa/alsa-constants.c:116 +msgid "Analog Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:117 +msgid "Analog Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:118 +msgid "Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 +msgid "Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:121 +msgid "Digital Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:122 +msgid "PCM Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:123 +msgid "Digital Playback Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:124 +msgid "Mono Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:125 +msgid "Shared Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:127 +msgid "Microphone Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:128 +msgid "Surround Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:129 +msgid "Auto-Mute Mode" +msgstr "" + +#. Toggles +#: ../backends/alsa/alsa-constants.c:132 +msgid "External Amplifier" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:133 +msgid "Bass Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:134 +msgid "Capture Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 +msgid "Digital In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:137 +msgid "Digital Default PCM" +msgstr "PCM numèrico prèdèfini" + +#: ../backends/alsa/alsa-constants.c:138 +msgid "Optical" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:139 +msgid "Auto Gain Control" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:140 +msgid "Mix" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:141 +msgid "Mix Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:142 +msgid "Microphone Capture" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 +msgid "Input 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:144 ../backends/alsa/alsa-constants.c:199 +msgid "Input 2" +msgstr "" + +#. Output options +#: ../backends/alsa/alsa-constants.c:151 +msgid "Speakers" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:152 +msgid "Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:153 +msgid "Front Panel Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:158 +msgid "Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:159 +msgid "Microphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 +#: ../backends/alsa/alsa-constants.c:162 +msgid "Microphone In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:170 +msgid "Internal Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:174 +msgid "Internal Digital Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:175 ../backends/alsa/alsa-constants.c:178 +msgid "Digital Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:176 +msgid "Digital Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:177 +msgid "Digital Microphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:179 ../backends/alsa/alsa-constants.c:180 +#: ../backends/alsa/alsa-constants.c:181 ../backends/alsa/alsa-constants.c:182 +msgid "External Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:185 +msgid "Camera Microphone" +msgstr "" + +#. Other options +#: ../backends/alsa/alsa-constants.c:188 +msgid "Analog" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:189 +msgid "Analog In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:190 +msgid "Analog Inputs" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:195 +msgid "Line In/Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 +msgid "Auxiliary In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:207 +msgid "Auxiliary 0" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:208 +msgid "Auxiliary 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:209 +msgid "Auxiliary 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:210 +msgid "Auxiliary 3" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:211 +msgid "Docking Station" +msgstr "" + +#. Recording monitor +#: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 +msgid "Mixer" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:216 +msgid "Unknown 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:217 +msgid "Unknown 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:218 +msgid "Enabled" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:219 +msgid "Disabled" +msgstr "" + +#: ../backends/alsa/alsa-device.c:635 +msgid "On" +msgstr "" + +#: ../backends/alsa/alsa-device.c:636 +msgid "Off" +msgstr "" + +#: ../backends/oss/oss-backend.c:403 +#, c-format +msgid "OSS Mixer %d" +msgstr "" + +#: ../backends/oss/oss-device.c:88 +msgid "Volume" +msgstr "" + +#: ../backends/oss/oss-device.c:101 +msgid "PCM 2" +msgstr "" + +#. Recording level (master input) +#: ../backends/oss/oss-device.c:103 +msgid "Record" +msgstr "" + +#: ../backends/oss/oss-device.c:104 +msgid "Input Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:105 +msgid "Output Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:106 +msgid "Line In 1" +msgstr "" + +#: ../backends/oss/oss-device.c:107 +msgid "Line In 2" +msgstr "" + +#: ../backends/oss/oss-device.c:108 +msgid "Line In 3" +msgstr "" + +#. These 3 can be attached to either digital input or output +#: ../backends/oss/oss-device.c:110 +msgid "Digital 1" +msgstr "" + +#: ../backends/oss/oss-device.c:111 +msgid "Digital 2" +msgstr "" + +#: ../backends/oss/oss-device.c:112 +msgid "Digital 3" +msgstr "" + +#: ../backends/oss/oss-device.c:113 +msgid "Phone In" +msgstr "" + +#: ../backends/oss/oss-device.c:114 +msgid "Phone Out" +msgstr "" + +#: ../backends/oss/oss-device.c:116 +msgid "Radio" +msgstr "" + +#. Create the port switch +#: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 +#: ../backends/pulse/pulse-source.c:146 +msgid "Connector" +msgstr "" + +#: ../backends/pulse/pulse-device.c:399 +msgid "Profile" +msgstr "" + +#: ../backends/pulse/pulse-monitor.c:282 +msgid "Peak detect" +msgstr "" diff -Nru libmatemixer-1.12.1/po/hr.po libmatemixer-1.18.0/po/hr.po --- libmatemixer-1.12.1/po/hr.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/hr.po 2017-03-12 15:31:59.000000000 +0000 @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ivica Kolić , 2014 +# Ivica Kolić , 2014,2016-2017 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-09-09 10:54+0000\n" -"Last-Translator: infirit \n" +"PO-Revision-Date: 2017-01-26 19:00+0000\n" +"Last-Translator: Ivica Kolić \n" "Language-Team: Croatian (http://www.transifex.com/mate/MATE/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,7 +40,7 @@ #: ../backends/alsa/alsa-constants.c:44 msgid "Desktop Speaker" -msgstr "" +msgstr "Zvučnik radne površine" #: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 #: ../backends/alsa/alsa-constants.c:47 @@ -57,20 +57,20 @@ #: ../backends/alsa/alsa-constants.c:50 msgid "Headset" -msgstr "" +msgstr "Slušalice" #: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 #: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 msgid "Surround Speaker" -msgstr "" +msgstr "Surround zučnik" #: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 msgid "Center Speaker" -msgstr "" +msgstr "Središnji zvučnik" #: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 msgid "CLFE Speaker" -msgstr "" +msgstr "CLFE zvučnik" #: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 msgid "Digital" @@ -167,7 +167,7 @@ #: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 #: ../backends/alsa/alsa-constants.c:173 msgid "Internal Microphone" -msgstr "" +msgstr "Interni mikrofon" #: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 #: ../backends/alsa/alsa-constants.c:164 @@ -309,7 +309,7 @@ #. Toggles #: ../backends/alsa/alsa-constants.c:132 msgid "External Amplifier" -msgstr "" +msgstr "Vanjsko pojačalo" #: ../backends/alsa/alsa-constants.c:133 msgid "Bass Boost" @@ -362,7 +362,7 @@ #: ../backends/alsa/alsa-constants.c:152 msgid "Headphones" -msgstr "" +msgstr "Slušalice" #: ../backends/alsa/alsa-constants.c:153 msgid "Front Panel Headphones" @@ -383,11 +383,11 @@ #: ../backends/alsa/alsa-constants.c:170 msgid "Internal Microphone 1" -msgstr "" +msgstr "Interni mikrofon 1" #: ../backends/alsa/alsa-constants.c:174 msgid "Internal Digital Microphone" -msgstr "" +msgstr "Interni digitalni mikrofon" #: ../backends/alsa/alsa-constants.c:175 ../backends/alsa/alsa-constants.c:178 msgid "Digital Microphone" diff -Nru libmatemixer-1.12.1/po/hu.po libmatemixer-1.18.0/po/hu.po --- libmatemixer-1.12.1/po/hu.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/hu.po 2017-03-12 15:31:59.000000000 +0000 @@ -5,6 +5,8 @@ # Translators: # Egy Játékos , 2015 # Falu.Me, 2015 +# Falu , 2015 +# kami911 , 2015 # Rezső Páder , 2014-2015 # Takler Tamás , 2015 msgid "" @@ -12,8 +14,8 @@ "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-11-01 00:14+0000\n" -"Last-Translator: Rezső Páder \n" +"PO-Revision-Date: 2015-11-30 00:18+0000\n" +"Last-Translator: kami911 \n" "Language-Team: Hungarian (http://www.transifex.com/mate/MATE/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -348,7 +350,7 @@ #: ../backends/alsa/alsa-constants.c:142 msgid "Microphone Capture" -msgstr "" +msgstr "Mikrofonról felvétel" #: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 msgid "Input 1" @@ -550,7 +552,7 @@ #: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 #: ../backends/pulse/pulse-source.c:146 msgid "Connector" -msgstr "" +msgstr "Csatlakozó" #: ../backends/pulse/pulse-device.c:399 msgid "Profile" diff -Nru libmatemixer-1.12.1/po/hy.po libmatemixer-1.18.0/po/hy.po --- libmatemixer-1.12.1/po/hy.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/hy.po 2017-03-12 15:31:59.000000000 +0000 @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Siranush , 2015 +# Siranush , 2015-2016 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-09-24 17:48+0000\n" +"PO-Revision-Date: 2016-01-18 12:52+0000\n" "Last-Translator: Siranush \n" "Language-Team: Armenian (http://www.transifex.com/mate/MATE/language/hy/)\n" "MIME-Version: 1.0\n" @@ -36,16 +36,16 @@ #. * regular volume control #: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 msgid "Speaker" -msgstr "" +msgstr "Խոսնակ" #: ../backends/alsa/alsa-constants.c:44 msgid "Desktop Speaker" -msgstr "" +msgstr "Աշխատանքային սեղանի Խոսնակ" #: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 #: ../backends/alsa/alsa-constants.c:47 msgid "Front Speaker" -msgstr "" +msgstr "Առջևի Խոսող" #: ../backends/alsa/alsa-constants.c:48 msgid "Headphone" @@ -62,15 +62,15 @@ #: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 #: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 msgid "Surround Speaker" -msgstr "" +msgstr "Շրջապատի խոսնակ" #: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 msgid "Center Speaker" -msgstr "" +msgstr "Կենտրոնի խոսնակ" #: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 msgid "CLFE Speaker" -msgstr "" +msgstr "CLFE Խոսնակ" #: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 msgid "Digital" @@ -78,19 +78,19 @@ #: ../backends/alsa/alsa-constants.c:60 msgid "Master Mono" -msgstr "" +msgstr "Գլխավոր Մոնո" #: ../backends/alsa/alsa-constants.c:61 msgid "Master Digital" -msgstr "" +msgstr "Թվային Մագիստր" #: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 msgid "Side Speaker" -msgstr "" +msgstr "Կողմնակի խոսնակ" #: ../backends/alsa/alsa-constants.c:64 msgid "Rear Speaker" -msgstr "" +msgstr "Հետևի խոսնակ" #: ../backends/alsa/alsa-constants.c:65 msgid "Wave" @@ -116,19 +116,19 @@ #: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 msgid "LFE Speaker" -msgstr "" +msgstr "LFE Խոսնակ" #: ../backends/alsa/alsa-constants.c:72 msgid "Bass Speaker" -msgstr "" +msgstr "Բասի խոսնակ" #: ../backends/alsa/alsa-constants.c:73 msgid "PC Speaker" -msgstr "" +msgstr "PC Խոսնակ" #: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 msgid "Synth" -msgstr "" +msgstr "Synth" #: ../backends/alsa/alsa-constants.c:75 msgid "MIDI" @@ -136,7 +136,7 @@ #: ../backends/alsa/alsa-constants.c:76 msgid "Synth/MIDI" -msgstr "" +msgstr "Synth/MIDI" #: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 msgid "Bass" @@ -160,7 +160,7 @@ #: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 msgid "Microphone/Line In" -msgstr "" +msgstr "Խոսափող/Տող" #: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 #: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 @@ -181,7 +181,7 @@ #: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 msgid "Dock Microphone" -msgstr "" +msgstr "Dock Խոսափող" #: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 msgid "Headphone Microphone" @@ -189,7 +189,7 @@ #: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 msgid "Headset Microphone" -msgstr "" +msgstr "Ականջակալ խոսափող" #: ../backends/alsa/alsa-constants.c:91 msgid "Inverted Internal Microphone" @@ -201,7 +201,7 @@ #: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 #: ../backends/oss/oss-device.c:96 msgid "Line In" -msgstr "" +msgstr "Տող" #: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 #: ../backends/alsa/alsa-constants.c:206 @@ -215,7 +215,7 @@ #: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 msgid "TV Tuner" -msgstr "" +msgstr "TV Տյուներ" #: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 msgid "FM" @@ -223,39 +223,39 @@ #: ../backends/alsa/alsa-constants.c:100 msgid "Microphone Boost" -msgstr "" +msgstr "Խոսափողի Աջակցություն" #: ../backends/alsa/alsa-constants.c:101 msgid "Microphone Boost (+20dB)" -msgstr "" +msgstr "Խոսափողի Աջակցություն (+20dB)" #: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 msgid "Internal Microphone Boost" -msgstr "" +msgstr "Ներքին Միկրոֆոնի Աջակցություն" #: ../backends/alsa/alsa-constants.c:104 msgid "Front Microphone Boost" -msgstr "" +msgstr "Ճակատի Միկրոֆոնի Աջակցություն" #: ../backends/alsa/alsa-constants.c:105 msgid "Rear Microphone Boost" -msgstr "" +msgstr "Հետևի Միկրոֆոնի Աջակցություն" #: ../backends/alsa/alsa-constants.c:106 msgid "Dock Microphone Boost" -msgstr "" +msgstr "Dock Միկրոֆոնի Աջակցություն" #: ../backends/alsa/alsa-constants.c:107 msgid "Headphone Microphone Boost" -msgstr "" +msgstr "Բարձրախոս Միկրոֆոն Աջակցություն" #: ../backends/alsa/alsa-constants.c:108 msgid "Headset Microphone Boost" -msgstr "" +msgstr "Ականջակալ Միկրոֆոն Աջակցություն" #: ../backends/alsa/alsa-constants.c:109 msgid "Line In Boost" -msgstr "" +msgstr "Գծային Աջակցություն" #. Switches #: ../backends/alsa/alsa-constants.c:116 @@ -268,11 +268,11 @@ #: ../backends/alsa/alsa-constants.c:118 msgid "Capture Source" -msgstr "" +msgstr "Լուսանկարի Աղբյուր" #: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 msgid "Input Source" -msgstr "" +msgstr "Մուտքային Աղբյուր" #: ../backends/alsa/alsa-constants.c:121 msgid "Digital Input Source" @@ -280,60 +280,60 @@ #: ../backends/alsa/alsa-constants.c:122 msgid "PCM Capture Source" -msgstr "" +msgstr "PCM Լուսանկարի Աղբյուր" #: ../backends/alsa/alsa-constants.c:123 msgid "Digital Playback Source" -msgstr "" +msgstr "Թվային Վերարտադրման Աղբյուր" #: ../backends/alsa/alsa-constants.c:124 msgid "Mono Output" -msgstr "" +msgstr "Մոնո Ելք" #: ../backends/alsa/alsa-constants.c:125 msgid "Shared Microphone/Line In" -msgstr "" +msgstr "Համօգտագործվող Միկրոֆոն /Գիծ" #: ../backends/alsa/alsa-constants.c:127 msgid "Microphone Jack Mode" -msgstr "" +msgstr "Միկրոֆոն Ջեկ Ռեժիմ" #: ../backends/alsa/alsa-constants.c:128 msgid "Surround Jack Mode" -msgstr "" +msgstr "Շրջապատում Ջեկ Ռեժիմ" #: ../backends/alsa/alsa-constants.c:129 msgid "Auto-Mute Mode" -msgstr "" +msgstr "Ինքնաանխոս Ռեժիմ" #. Toggles #: ../backends/alsa/alsa-constants.c:132 msgid "External Amplifier" -msgstr "" +msgstr "Արտաքին Ուժեղացուցիչ" #: ../backends/alsa/alsa-constants.c:133 msgid "Bass Boost" -msgstr "" +msgstr "Բասս Աջակցություն" #: ../backends/alsa/alsa-constants.c:134 msgid "Capture Boost" -msgstr "" +msgstr "Լուսանկարելու Աջակցություն" #: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 msgid "Digital In" -msgstr "" +msgstr "Թվային Մուտք" #: ../backends/alsa/alsa-constants.c:137 msgid "Digital Default PCM" -msgstr "" +msgstr "Թվային Հիմնական PCM" #: ../backends/alsa/alsa-constants.c:138 msgid "Optical" -msgstr "" +msgstr "Տեսողական" #: ../backends/alsa/alsa-constants.c:139 msgid "Auto Gain Control" -msgstr "" +msgstr "Ինքնաուժեղացման Կենտրոն" #: ../backends/alsa/alsa-constants.c:140 msgid "Mix" @@ -341,11 +341,11 @@ #: ../backends/alsa/alsa-constants.c:141 msgid "Mix Mono" -msgstr "" +msgstr "Միքս Մոնո" #: ../backends/alsa/alsa-constants.c:142 msgid "Microphone Capture" -msgstr "" +msgstr "Խոսափողի Լուսանկար" #: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 msgid "Input 1" @@ -358,7 +358,7 @@ #. Output options #: ../backends/alsa/alsa-constants.c:151 msgid "Speakers" -msgstr "" +msgstr "Խոսնակներ" #: ../backends/alsa/alsa-constants.c:152 msgid "Headphones" @@ -366,7 +366,7 @@ #: ../backends/alsa/alsa-constants.c:153 msgid "Front Panel Headphones" -msgstr "" +msgstr "Առջևի Վահանակի Ականջակալներ" #: ../backends/alsa/alsa-constants.c:158 msgid "Microphone 1" @@ -417,7 +417,7 @@ #: ../backends/alsa/alsa-constants.c:189 msgid "Analog In" -msgstr "" +msgstr "Անալոգային" #: ../backends/alsa/alsa-constants.c:190 msgid "Analog Inputs" @@ -425,11 +425,11 @@ #: ../backends/alsa/alsa-constants.c:195 msgid "Line In/Microphone" -msgstr "" +msgstr "Տող/Միկրոֆոն" #: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 msgid "Auxiliary In" -msgstr "" +msgstr "Օժանդակ" #: ../backends/alsa/alsa-constants.c:207 msgid "Auxiliary 0" @@ -449,7 +449,7 @@ #: ../backends/alsa/alsa-constants.c:211 msgid "Docking Station" -msgstr "" +msgstr "Հարակցման կայան" #. Recording monitor #: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 @@ -483,7 +483,7 @@ #: ../backends/oss/oss-backend.c:403 #, c-format msgid "OSS Mixer %d" -msgstr "" +msgstr "OSS խառնիչ %d" #: ../backends/oss/oss-device.c:88 msgid "Volume" @@ -491,7 +491,7 @@ #: ../backends/oss/oss-device.c:101 msgid "PCM 2" -msgstr "" +msgstr "PCM 2" #. Recording level (master input) #: ../backends/oss/oss-device.c:103 @@ -500,23 +500,23 @@ #: ../backends/oss/oss-device.c:104 msgid "Input Gain" -msgstr "" +msgstr "Մուտքային Ուժեղացման գործակից" #: ../backends/oss/oss-device.c:105 msgid "Output Gain" -msgstr "" +msgstr " Ելքային Ուժեղացման գործակից" #: ../backends/oss/oss-device.c:106 msgid "Line In 1" -msgstr "" +msgstr "Տող 1" #: ../backends/oss/oss-device.c:107 msgid "Line In 2" -msgstr "" +msgstr "Տող 2" #: ../backends/oss/oss-device.c:108 msgid "Line In 3" -msgstr "" +msgstr "Տող 3" #. These 3 can be attached to either digital input or output #: ../backends/oss/oss-device.c:110 @@ -555,4 +555,4 @@ #: ../backends/pulse/pulse-monitor.c:282 msgid "Peak detect" -msgstr "" +msgstr "Հայտնաբերել Պիկ" diff -Nru libmatemixer-1.12.1/po/is.po libmatemixer-1.18.0/po/is.po --- libmatemixer-1.12.1/po/is.po 1970-01-01 00:00:00.000000000 +0000 +++ libmatemixer-1.18.0/po/is.po 2017-03-12 15:31:59.000000000 +0000 @@ -0,0 +1,557 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: MATE Desktop Environment\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-09 12:55+0200\n" +"PO-Revision-Date: 2016-02-10 11:56+0000\n" +"Last-Translator: infirit \n" +"Language-Team: Icelandic (http://www.transifex.com/mate/MATE/language/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. Output controls +#: ../backends/alsa/alsa-constants.c:40 +msgid "Master" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:41 +msgid "Hardware Master" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 +msgid "PCM" +msgstr "" + +#. OSS manual says this should be the beeper, but Linux OSS seems to assign it +#. to +#. * regular volume control +#: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 +msgid "Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:44 +msgid "Desktop Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 +#: ../backends/alsa/alsa-constants.c:47 +msgid "Front Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:48 +msgid "Headphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:49 +msgid "Headphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:50 +msgid "Headset" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 +#: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 +msgid "Surround Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 +msgid "Center Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 +msgid "CLFE Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 +msgid "Digital" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:60 +msgid "Master Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:61 +msgid "Master Digital" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 +msgid "Side Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:64 +msgid "Rear Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:65 +msgid "Wave" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 +#: ../backends/alsa/alsa-constants.c:215 +msgid "Phone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 +#: ../backends/oss/oss-device.c:98 +msgid "CD" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:68 +msgid "Music" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:69 +msgid "AC97" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 +msgid "LFE Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:72 +msgid "Bass Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:73 +msgid "PC Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 +msgid "Synth" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:75 +msgid "MIDI" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:76 +msgid "Synth/MIDI" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 +msgid "Bass" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:78 ../backends/oss/oss-device.c:90 +msgid "Treble" +msgstr "" + +#. Input controls +#: ../backends/alsa/alsa-constants.c:81 +msgid "Capture" +msgstr "" + +#. Microphone options +#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 +#: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 +#: ../backends/oss/oss-device.c:97 +msgid "Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 +msgid "Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 +#: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 +#: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 +#: ../backends/alsa/alsa-constants.c:173 +msgid "Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 +#: ../backends/alsa/alsa-constants.c:164 +msgid "Front Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:87 ../backends/alsa/alsa-constants.c:183 +#: ../backends/alsa/alsa-constants.c:184 +msgid "Rear Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 +msgid "Dock Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 +msgid "Headphone Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 +msgid "Headset Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:91 +msgid "Inverted Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 +#: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 +#: ../backends/alsa/alsa-constants.c:192 ../backends/alsa/alsa-constants.c:193 +#: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 +#: ../backends/oss/oss-device.c:96 +msgid "Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 +#: ../backends/alsa/alsa-constants.c:206 +msgid "Auxiliary" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 +#: ../backends/oss/oss-device.c:115 +msgid "Video" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 +msgid "TV Tuner" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 +msgid "FM" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:100 +msgid "Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:101 +msgid "Microphone Boost (+20dB)" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 +msgid "Internal Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:104 +msgid "Front Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:105 +msgid "Rear Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:106 +msgid "Dock Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:107 +msgid "Headphone Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:108 +msgid "Headset Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:109 +msgid "Line In Boost" +msgstr "" + +#. Switches +#: ../backends/alsa/alsa-constants.c:116 +msgid "Analog Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:117 +msgid "Analog Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:118 +msgid "Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 +msgid "Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:121 +msgid "Digital Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:122 +msgid "PCM Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:123 +msgid "Digital Playback Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:124 +msgid "Mono Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:125 +msgid "Shared Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:127 +msgid "Microphone Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:128 +msgid "Surround Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:129 +msgid "Auto-Mute Mode" +msgstr "" + +#. Toggles +#: ../backends/alsa/alsa-constants.c:132 +msgid "External Amplifier" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:133 +msgid "Bass Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:134 +msgid "Capture Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 +msgid "Digital In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:137 +msgid "Digital Default PCM" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:138 +msgid "Optical" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:139 +msgid "Auto Gain Control" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:140 +msgid "Mix" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:141 +msgid "Mix Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:142 +msgid "Microphone Capture" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 +msgid "Input 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:144 ../backends/alsa/alsa-constants.c:199 +msgid "Input 2" +msgstr "" + +#. Output options +#: ../backends/alsa/alsa-constants.c:151 +msgid "Speakers" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:152 +msgid "Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:153 +msgid "Front Panel Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:158 +msgid "Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:159 +msgid "Microphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 +#: ../backends/alsa/alsa-constants.c:162 +msgid "Microphone In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:170 +msgid "Internal Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:174 +msgid "Internal Digital Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:175 ../backends/alsa/alsa-constants.c:178 +msgid "Digital Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:176 +msgid "Digital Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:177 +msgid "Digital Microphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:179 ../backends/alsa/alsa-constants.c:180 +#: ../backends/alsa/alsa-constants.c:181 ../backends/alsa/alsa-constants.c:182 +msgid "External Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:185 +msgid "Camera Microphone" +msgstr "" + +#. Other options +#: ../backends/alsa/alsa-constants.c:188 +msgid "Analog" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:189 +msgid "Analog In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:190 +msgid "Analog Inputs" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:195 +msgid "Line In/Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 +msgid "Auxiliary In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:207 +msgid "Auxiliary 0" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:208 +msgid "Auxiliary 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:209 +msgid "Auxiliary 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:210 +msgid "Auxiliary 3" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:211 +msgid "Docking Station" +msgstr "" + +#. Recording monitor +#: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 +msgid "Mixer" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:216 +msgid "Unknown 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:217 +msgid "Unknown 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:218 +msgid "Enabled" +msgstr "Virkjað" + +#: ../backends/alsa/alsa-constants.c:219 +msgid "Disabled" +msgstr "Óvirkt" + +#: ../backends/alsa/alsa-device.c:635 +msgid "On" +msgstr "Nota" + +#: ../backends/alsa/alsa-device.c:636 +msgid "Off" +msgstr "Nota ekki" + +#: ../backends/oss/oss-backend.c:403 +#, c-format +msgid "OSS Mixer %d" +msgstr "" + +#: ../backends/oss/oss-device.c:88 +msgid "Volume" +msgstr "" + +#: ../backends/oss/oss-device.c:101 +msgid "PCM 2" +msgstr "" + +#. Recording level (master input) +#: ../backends/oss/oss-device.c:103 +msgid "Record" +msgstr "" + +#: ../backends/oss/oss-device.c:104 +msgid "Input Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:105 +msgid "Output Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:106 +msgid "Line In 1" +msgstr "" + +#: ../backends/oss/oss-device.c:107 +msgid "Line In 2" +msgstr "" + +#: ../backends/oss/oss-device.c:108 +msgid "Line In 3" +msgstr "" + +#. These 3 can be attached to either digital input or output +#: ../backends/oss/oss-device.c:110 +msgid "Digital 1" +msgstr "" + +#: ../backends/oss/oss-device.c:111 +msgid "Digital 2" +msgstr "" + +#: ../backends/oss/oss-device.c:112 +msgid "Digital 3" +msgstr "" + +#: ../backends/oss/oss-device.c:113 +msgid "Phone In" +msgstr "" + +#: ../backends/oss/oss-device.c:114 +msgid "Phone Out" +msgstr "" + +#: ../backends/oss/oss-device.c:116 +msgid "Radio" +msgstr "" + +#. Create the port switch +#: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 +#: ../backends/pulse/pulse-source.c:146 +msgid "Connector" +msgstr "" + +#: ../backends/pulse/pulse-device.c:399 +msgid "Profile" +msgstr "" + +#: ../backends/pulse/pulse-monitor.c:282 +msgid "Peak detect" +msgstr "" diff -Nru libmatemixer-1.12.1/po/it.po libmatemixer-1.18.0/po/it.po --- libmatemixer-1.12.1/po/it.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/it.po 2017-03-12 15:31:59.000000000 +0000 @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# dardin88 , 2014 +# Dario Di Nucci , 2014 +# Marco Bartolucci , 2016 # Stefano Karapetsas , 2014 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-09-09 10:54+0000\n" -"Last-Translator: infirit \n" +"PO-Revision-Date: 2016-01-25 18:11+0000\n" +"Last-Translator: Marco Bartolucci \n" "Language-Team: Italian (http://www.transifex.com/mate/MATE/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -182,7 +183,7 @@ #: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 msgid "Dock Microphone" -msgstr "Dock Microphone" +msgstr "Dock Microfono" #: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 msgid "Headphone Microphone" @@ -289,11 +290,11 @@ #: ../backends/alsa/alsa-constants.c:124 msgid "Mono Output" -msgstr "" +msgstr "Uscita Mono" #: ../backends/alsa/alsa-constants.c:125 msgid "Shared Microphone/Line In" -msgstr "" +msgstr "Microfono Condiviso/Ingresso" #: ../backends/alsa/alsa-constants.c:127 msgid "Microphone Jack Mode" @@ -346,7 +347,7 @@ #: ../backends/alsa/alsa-constants.c:142 msgid "Microphone Capture" -msgstr "" +msgstr "Cattura Microfono" #: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 msgid "Input 1" @@ -548,7 +549,7 @@ #: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 #: ../backends/pulse/pulse-source.c:146 msgid "Connector" -msgstr "" +msgstr "Connettore" #: ../backends/pulse/pulse-device.c:399 msgid "Profile" diff -Nru libmatemixer-1.12.1/po/ja.po libmatemixer-1.18.0/po/ja.po --- libmatemixer-1.12.1/po/ja.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/ja.po 2017-03-12 15:31:59.000000000 +0000 @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# ABE Tsunehiko, 2015 -# BALLOON a.k.a. Fu-sen., 2014 -# Mika Kobayashi, 2015 +# ABE Tsunehiko, 2015,2017 +# ふうせん Fu-sen. | BALLOON a.k.a. Fu-sen., 2014 +# Mika Kobayashi, 2015,2017 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-09-09 10:54+0000\n" -"Last-Translator: infirit \n" +"PO-Revision-Date: 2017-02-23 14:25+0000\n" +"Last-Translator: ABE Tsunehiko\n" "Language-Team: Japanese (http://www.transifex.com/mate/MATE/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,7 @@ #: ../backends/alsa/alsa-constants.c:49 msgid "Headphone 2" -msgstr "ヘッドフォン2" +msgstr "ヘッドフォン 2" #: ../backends/alsa/alsa-constants.c:50 msgid "Headset" @@ -96,12 +96,12 @@ #: ../backends/alsa/alsa-constants.c:65 msgid "Wave" -msgstr "WAVE" +msgstr "Wave" #: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 #: ../backends/alsa/alsa-constants.c:215 msgid "Phone" -msgstr "Phone" +msgstr "電話" #: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 #: ../backends/oss/oss-device.c:98 @@ -169,7 +169,7 @@ #: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 #: ../backends/alsa/alsa-constants.c:173 msgid "Internal Microphone" -msgstr "インターナルマイク" +msgstr "内部マイク" #: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 #: ../backends/alsa/alsa-constants.c:164 @@ -217,7 +217,7 @@ #: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 msgid "TV Tuner" -msgstr "TVチューナー" +msgstr "TV チューナー" #: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 msgid "FM" @@ -266,35 +266,35 @@ #: ../backends/alsa/alsa-constants.c:117 msgid "Analog Source" -msgstr "アナログ元" +msgstr "アナログソース" #: ../backends/alsa/alsa-constants.c:118 msgid "Capture Source" -msgstr "キャプチャ元" +msgstr "キャプチャーソース" #: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 msgid "Input Source" -msgstr "入力元" +msgstr "入力ソース" #: ../backends/alsa/alsa-constants.c:121 msgid "Digital Input Source" -msgstr "デジタル入力元" +msgstr "デジタル入力ソース" #: ../backends/alsa/alsa-constants.c:122 msgid "PCM Capture Source" -msgstr "PCMキャプチャー元" +msgstr "PCM キャプチャーソース" #: ../backends/alsa/alsa-constants.c:123 msgid "Digital Playback Source" -msgstr "デジタルプレイバック元" +msgstr "デジタルプレイバックソース" #: ../backends/alsa/alsa-constants.c:124 msgid "Mono Output" -msgstr "" +msgstr "モノラル出力" #: ../backends/alsa/alsa-constants.c:125 msgid "Shared Microphone/Line In" -msgstr "" +msgstr "マイク・外部入力共用端子" #: ../backends/alsa/alsa-constants.c:127 msgid "Microphone Jack Mode" @@ -347,15 +347,15 @@ #: ../backends/alsa/alsa-constants.c:142 msgid "Microphone Capture" -msgstr "" +msgstr "マイクのキャプチャ" #: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 msgid "Input 1" -msgstr "入力1" +msgstr "入力 1" #: ../backends/alsa/alsa-constants.c:144 ../backends/alsa/alsa-constants.c:199 msgid "Input 2" -msgstr "入力2" +msgstr "入力 2" #. Output options #: ../backends/alsa/alsa-constants.c:151 @@ -372,11 +372,11 @@ #: ../backends/alsa/alsa-constants.c:158 msgid "Microphone 1" -msgstr "マイク1" +msgstr "マイク 1" #: ../backends/alsa/alsa-constants.c:159 msgid "Microphone 2" -msgstr "マイク2" +msgstr "マイク 2" #: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 #: ../backends/alsa/alsa-constants.c:162 @@ -397,11 +397,11 @@ #: ../backends/alsa/alsa-constants.c:176 msgid "Digital Microphone 1" -msgstr "デジタルマイク1" +msgstr "デジタルマイク 1" #: ../backends/alsa/alsa-constants.c:177 msgid "Digital Microphone 2" -msgstr "デジタルマイク2" +msgstr "デジタルマイク 2" #: ../backends/alsa/alsa-constants.c:179 ../backends/alsa/alsa-constants.c:180 #: ../backends/alsa/alsa-constants.c:181 ../backends/alsa/alsa-constants.c:182 @@ -435,19 +435,19 @@ #: ../backends/alsa/alsa-constants.c:207 msgid "Auxiliary 0" -msgstr "AUX0" +msgstr "AUX 0" #: ../backends/alsa/alsa-constants.c:208 msgid "Auxiliary 1" -msgstr "AUX1" +msgstr "AUX 1" #: ../backends/alsa/alsa-constants.c:209 msgid "Auxiliary 2" -msgstr "AUX2" +msgstr "AUX 2" #: ../backends/alsa/alsa-constants.c:210 msgid "Auxiliary 3" -msgstr "AUX3" +msgstr "AUX 3" #: ../backends/alsa/alsa-constants.c:211 msgid "Docking Station" @@ -476,16 +476,16 @@ #: ../backends/alsa/alsa-device.c:635 msgid "On" -msgstr "ON" +msgstr "オン" #: ../backends/alsa/alsa-device.c:636 msgid "Off" -msgstr "OFF" +msgstr "オフ" #: ../backends/oss/oss-backend.c:403 #, c-format msgid "OSS Mixer %d" -msgstr "OSSミキサー %d" +msgstr "OSS ミキサー %d" #: ../backends/oss/oss-device.c:88 msgid "Volume" @@ -502,36 +502,36 @@ #: ../backends/oss/oss-device.c:104 msgid "Input Gain" -msgstr "入力Gain" +msgstr "入力ゲイン" #: ../backends/oss/oss-device.c:105 msgid "Output Gain" -msgstr "出力Gain" +msgstr "出力ゲイン" #: ../backends/oss/oss-device.c:106 msgid "Line In 1" -msgstr "ライン入力1" +msgstr "ライン入力 1" #: ../backends/oss/oss-device.c:107 msgid "Line In 2" -msgstr "ライン入力2" +msgstr "ライン入力 2" #: ../backends/oss/oss-device.c:108 msgid "Line In 3" -msgstr "ライン入力3" +msgstr "ライン入力 3" #. These 3 can be attached to either digital input or output #: ../backends/oss/oss-device.c:110 msgid "Digital 1" -msgstr "デジタル1" +msgstr "デジタル 1" #: ../backends/oss/oss-device.c:111 msgid "Digital 2" -msgstr "デジタル2" +msgstr "デジタル 2" #: ../backends/oss/oss-device.c:112 msgid "Digital 3" -msgstr "デジタル3" +msgstr "デジタル 3" #: ../backends/oss/oss-device.c:113 msgid "Phone In" @@ -549,7 +549,7 @@ #: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 #: ../backends/pulse/pulse-source.c:146 msgid "Connector" -msgstr "" +msgstr "コネクタ" #: ../backends/pulse/pulse-device.c:399 msgid "Profile" diff -Nru libmatemixer-1.12.1/po/ko.po libmatemixer-1.18.0/po/ko.po --- libmatemixer-1.12.1/po/ko.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/ko.po 2017-03-12 15:31:59.000000000 +0000 @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# 박정규(Jung Kyu Park) , 2014 +# 박정규(Jung-Kyu Park) , 2014 # Seong-ho Cho , 2014-2015 msgid "" msgstr "" diff -Nru libmatemixer-1.12.1/po/ku_IQ.po libmatemixer-1.18.0/po/ku_IQ.po --- libmatemixer-1.12.1/po/ku_IQ.po 1970-01-01 00:00:00.000000000 +0000 +++ libmatemixer-1.18.0/po/ku_IQ.po 2017-03-12 15:31:59.000000000 +0000 @@ -0,0 +1,558 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Rasti K5 , 2016 +msgid "" +msgstr "" +"Project-Id-Version: MATE Desktop Environment\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-09 12:55+0200\n" +"PO-Revision-Date: 2016-09-25 15:16+0000\n" +"Last-Translator: Rasti K5 \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/mate/MATE/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Output controls +#: ../backends/alsa/alsa-constants.c:40 +msgid "Master" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:41 +msgid "Hardware Master" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 +msgid "PCM" +msgstr "" + +#. OSS manual says this should be the beeper, but Linux OSS seems to assign it +#. to +#. * regular volume control +#: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 +msgid "Speaker" +msgstr "بڵندگۆ" + +#: ../backends/alsa/alsa-constants.c:44 +msgid "Desktop Speaker" +msgstr "بڵنفگۆیی ڕوومێز" + +#: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 +#: ../backends/alsa/alsa-constants.c:47 +msgid "Front Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:48 +msgid "Headphone" +msgstr "بیستۆک" + +#: ../backends/alsa/alsa-constants.c:49 +msgid "Headphone 2" +msgstr "بیستۆکی 2" + +#: ../backends/alsa/alsa-constants.c:50 +msgid "Headset" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 +#: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 +msgid "Surround Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 +msgid "Center Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 +msgid "CLFE Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 +msgid "Digital" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:60 +msgid "Master Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:61 +msgid "Master Digital" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 +msgid "Side Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:64 +msgid "Rear Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:65 +msgid "Wave" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 +#: ../backends/alsa/alsa-constants.c:215 +msgid "Phone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 +#: ../backends/oss/oss-device.c:98 +msgid "CD" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:68 +msgid "Music" +msgstr "مۆسیقا" + +#: ../backends/alsa/alsa-constants.c:69 +msgid "AC97" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 +msgid "LFE Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:72 +msgid "Bass Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:73 +msgid "PC Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 +msgid "Synth" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:75 +msgid "MIDI" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:76 +msgid "Synth/MIDI" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 +msgid "Bass" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:78 ../backends/oss/oss-device.c:90 +msgid "Treble" +msgstr "" + +#. Input controls +#: ../backends/alsa/alsa-constants.c:81 +msgid "Capture" +msgstr "" + +#. Microphone options +#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 +#: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 +#: ../backends/oss/oss-device.c:97 +msgid "Microphone" +msgstr "مایکرۆفۆن" + +#: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 +msgid "Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 +#: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 +#: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 +#: ../backends/alsa/alsa-constants.c:173 +msgid "Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 +#: ../backends/alsa/alsa-constants.c:164 +msgid "Front Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:87 ../backends/alsa/alsa-constants.c:183 +#: ../backends/alsa/alsa-constants.c:184 +msgid "Rear Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 +msgid "Dock Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 +msgid "Headphone Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 +msgid "Headset Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:91 +msgid "Inverted Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 +#: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 +#: ../backends/alsa/alsa-constants.c:192 ../backends/alsa/alsa-constants.c:193 +#: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 +#: ../backends/oss/oss-device.c:96 +msgid "Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 +#: ../backends/alsa/alsa-constants.c:206 +msgid "Auxiliary" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 +#: ../backends/oss/oss-device.c:115 +msgid "Video" +msgstr "ڤیدیۆ" + +#: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 +msgid "TV Tuner" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 +msgid "FM" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:100 +msgid "Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:101 +msgid "Microphone Boost (+20dB)" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 +msgid "Internal Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:104 +msgid "Front Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:105 +msgid "Rear Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:106 +msgid "Dock Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:107 +msgid "Headphone Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:108 +msgid "Headset Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:109 +msgid "Line In Boost" +msgstr "" + +#. Switches +#: ../backends/alsa/alsa-constants.c:116 +msgid "Analog Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:117 +msgid "Analog Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:118 +msgid "Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 +msgid "Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:121 +msgid "Digital Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:122 +msgid "PCM Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:123 +msgid "Digital Playback Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:124 +msgid "Mono Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:125 +msgid "Shared Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:127 +msgid "Microphone Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:128 +msgid "Surround Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:129 +msgid "Auto-Mute Mode" +msgstr "" + +#. Toggles +#: ../backends/alsa/alsa-constants.c:132 +msgid "External Amplifier" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:133 +msgid "Bass Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:134 +msgid "Capture Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 +msgid "Digital In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:137 +msgid "Digital Default PCM" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:138 +msgid "Optical" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:139 +msgid "Auto Gain Control" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:140 +msgid "Mix" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:141 +msgid "Mix Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:142 +msgid "Microphone Capture" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 +msgid "Input 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:144 ../backends/alsa/alsa-constants.c:199 +msgid "Input 2" +msgstr "" + +#. Output options +#: ../backends/alsa/alsa-constants.c:151 +msgid "Speakers" +msgstr "بڵندگۆکان" + +#: ../backends/alsa/alsa-constants.c:152 +msgid "Headphones" +msgstr "بیستۆکەکان" + +#: ../backends/alsa/alsa-constants.c:153 +msgid "Front Panel Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:158 +msgid "Microphone 1" +msgstr "مایکرۆفۆنی 1" + +#: ../backends/alsa/alsa-constants.c:159 +msgid "Microphone 2" +msgstr "مایکرۆفۆنی 2" + +#: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 +#: ../backends/alsa/alsa-constants.c:162 +msgid "Microphone In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:170 +msgid "Internal Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:174 +msgid "Internal Digital Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:175 ../backends/alsa/alsa-constants.c:178 +msgid "Digital Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:176 +msgid "Digital Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:177 +msgid "Digital Microphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:179 ../backends/alsa/alsa-constants.c:180 +#: ../backends/alsa/alsa-constants.c:181 ../backends/alsa/alsa-constants.c:182 +msgid "External Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:185 +msgid "Camera Microphone" +msgstr "مایکرۆفۆنی کامێرا" + +#. Other options +#: ../backends/alsa/alsa-constants.c:188 +msgid "Analog" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:189 +msgid "Analog In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:190 +msgid "Analog Inputs" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:195 +msgid "Line In/Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 +msgid "Auxiliary In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:207 +msgid "Auxiliary 0" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:208 +msgid "Auxiliary 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:209 +msgid "Auxiliary 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:210 +msgid "Auxiliary 3" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:211 +msgid "Docking Station" +msgstr "" + +#. Recording monitor +#: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 +msgid "Mixer" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:216 +msgid "Unknown 1" +msgstr "نەناسراوی 1" + +#: ../backends/alsa/alsa-constants.c:217 +msgid "Unknown 2" +msgstr "نەناسراوی 2" + +#: ../backends/alsa/alsa-constants.c:218 +msgid "Enabled" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:219 +msgid "Disabled" +msgstr "" + +#: ../backends/alsa/alsa-device.c:635 +msgid "On" +msgstr "کارا" + +#: ../backends/alsa/alsa-device.c:636 +msgid "Off" +msgstr "ناکارا" + +#: ../backends/oss/oss-backend.c:403 +#, c-format +msgid "OSS Mixer %d" +msgstr "" + +#: ../backends/oss/oss-device.c:88 +msgid "Volume" +msgstr "" + +#: ../backends/oss/oss-device.c:101 +msgid "PCM 2" +msgstr "" + +#. Recording level (master input) +#: ../backends/oss/oss-device.c:103 +msgid "Record" +msgstr "تۆمارکردن" + +#: ../backends/oss/oss-device.c:104 +msgid "Input Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:105 +msgid "Output Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:106 +msgid "Line In 1" +msgstr "" + +#: ../backends/oss/oss-device.c:107 +msgid "Line In 2" +msgstr "" + +#: ../backends/oss/oss-device.c:108 +msgid "Line In 3" +msgstr "" + +#. These 3 can be attached to either digital input or output +#: ../backends/oss/oss-device.c:110 +msgid "Digital 1" +msgstr "" + +#: ../backends/oss/oss-device.c:111 +msgid "Digital 2" +msgstr "" + +#: ../backends/oss/oss-device.c:112 +msgid "Digital 3" +msgstr "" + +#: ../backends/oss/oss-device.c:113 +msgid "Phone In" +msgstr "" + +#: ../backends/oss/oss-device.c:114 +msgid "Phone Out" +msgstr "" + +#: ../backends/oss/oss-device.c:116 +msgid "Radio" +msgstr "ڕادیۆ" + +#. Create the port switch +#: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 +#: ../backends/pulse/pulse-source.c:146 +msgid "Connector" +msgstr "" + +#: ../backends/pulse/pulse-device.c:399 +msgid "Profile" +msgstr "" + +#: ../backends/pulse/pulse-monitor.c:282 +msgid "Peak detect" +msgstr "" diff -Nru libmatemixer-1.12.1/po/LINGUAS libmatemixer-1.18.0/po/LINGUAS --- libmatemixer-1.12.1/po/LINGUAS 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/LINGUAS 2017-03-12 15:31:59.000000000 +0000 @@ -3,27 +3,43 @@ am ar be +bg +bs +ca +ca@valencia cs +cy da de el en_AU en_GB es +es_CO +es_MX et eu +fa fr +fr_CA +frp hr hu hy id +is it ja +jv ko +ku_IQ lt ms +nb nl +oc pl +pms pt pt_BR ro @@ -34,5 +50,6 @@ sv tr uk +uz zh_CN zh_TW diff -Nru libmatemixer-1.12.1/po/lt.po libmatemixer-1.18.0/po/lt.po --- libmatemixer-1.12.1/po/lt.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/lt.po 2017-03-12 15:31:59.000000000 +0000 @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Audrius Meskauskas , 2015 +# Audrius Meskauskas, 2015 # Mantas Kriaučiūnas , 2014 -# Moo, 2014-2015 +# Moo, 2014-2016 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-10-21 17:27+0000\n" -"Last-Translator: Audrius Meskauskas \n" +"PO-Revision-Date: 2016-03-07 20:10+0000\n" +"Last-Translator: Moo\n" "Language-Team: Lithuanian (http://www.transifex.com/mate/MATE/language/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ #: ../backends/alsa/alsa-constants.c:41 msgid "Hardware Master" -msgstr "Aparatinės Įrangos Pagrindinis" +msgstr "Aparatinės įrangos pagrindinis" #: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 msgid "PCM" @@ -42,12 +42,12 @@ #: ../backends/alsa/alsa-constants.c:44 msgid "Desktop Speaker" -msgstr "Darbalaukio Garsiakalbis" +msgstr "Darbalaukio garsiakalbis" #: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 #: ../backends/alsa/alsa-constants.c:47 msgid "Front Speaker" -msgstr "Priekinis Garsiakalbis" +msgstr "Priekinis garsiakalbis" #: ../backends/alsa/alsa-constants.c:48 msgid "Headphone" @@ -64,15 +64,15 @@ #: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 #: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 msgid "Surround Speaker" -msgstr "Surround Garsiakalbis" +msgstr "Surround garsiakalbis" #: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 msgid "Center Speaker" -msgstr "Centrinis Garsiakalbis" +msgstr "Centrinis garsiakalbis" #: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 msgid "CLFE Speaker" -msgstr "CLFE Garsiakalbis" +msgstr "CLFE garsiakalbis" #: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 msgid "Digital" @@ -80,19 +80,19 @@ #: ../backends/alsa/alsa-constants.c:60 msgid "Master Mono" -msgstr "Pagrindinis Mono" +msgstr "Pagrindinis mono" #: ../backends/alsa/alsa-constants.c:61 msgid "Master Digital" -msgstr "Pagrindinis Skaitmeninis" +msgstr "Pagrindinis skaitmeninis" #: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 msgid "Side Speaker" -msgstr "Šoninis Garsiakalbis" +msgstr "Šoninis garsiakalbis" #: ../backends/alsa/alsa-constants.c:64 msgid "Rear Speaker" -msgstr "Galinis Garsiakalbis" +msgstr "Galinis garsiakalbis" #: ../backends/alsa/alsa-constants.c:65 msgid "Wave" @@ -118,7 +118,7 @@ #: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 msgid "LFE Speaker" -msgstr "LFE Garsiakalbis" +msgstr "LFE garsiakalbis" #: ../backends/alsa/alsa-constants.c:72 msgid "Bass Speaker" @@ -126,7 +126,7 @@ #: ../backends/alsa/alsa-constants.c:73 msgid "PC Speaker" -msgstr "PC Garsiakalbis" +msgstr "PC garsiakalbis" #: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 msgid "Synth" @@ -266,7 +266,7 @@ #: ../backends/alsa/alsa-constants.c:117 msgid "Analog Source" -msgstr "Analoginis Šaltinis" +msgstr "Analoginis šaltinis" #: ../backends/alsa/alsa-constants.c:118 msgid "Capture Source" @@ -278,7 +278,7 @@ #: ../backends/alsa/alsa-constants.c:121 msgid "Digital Input Source" -msgstr "Skaitmeninis Įvesties Šaltinis" +msgstr "Skaitmeninis įvesties šaltinis" #: ../backends/alsa/alsa-constants.c:122 msgid "PCM Capture Source" @@ -286,7 +286,7 @@ #: ../backends/alsa/alsa-constants.c:123 msgid "Digital Playback Source" -msgstr "Skaitmeninio Grojimo Šaltinis" +msgstr "Skaitmeninio grojimo šaltinis" #: ../backends/alsa/alsa-constants.c:124 msgid "Mono Output" @@ -306,7 +306,7 @@ #: ../backends/alsa/alsa-constants.c:129 msgid "Auto-Mute Mode" -msgstr "Automatinio Nutildinimo Veiksena" +msgstr "Automatinio nutildinimo veiksena" #. Toggles #: ../backends/alsa/alsa-constants.c:132 @@ -485,11 +485,11 @@ #: ../backends/oss/oss-backend.c:403 #, c-format msgid "OSS Mixer %d" -msgstr "OSS Maišiklis %d" +msgstr "OSS maišiklis %d" #: ../backends/oss/oss-device.c:88 msgid "Volume" -msgstr "Garsumas" +msgstr "Garsis" #: ../backends/oss/oss-device.c:101 msgid "PCM 2" diff -Nru libmatemixer-1.12.1/po/nb.po libmatemixer-1.18.0/po/nb.po --- libmatemixer-1.12.1/po/nb.po 1970-01-01 00:00:00.000000000 +0000 +++ libmatemixer-1.18.0/po/nb.po 2017-03-12 15:31:59.000000000 +0000 @@ -0,0 +1,559 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Allan Nordhøy , 2016 +# Kenneth Jenssen , 2016 +msgid "" +msgstr "" +"Project-Id-Version: MATE Desktop Environment\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-09 12:55+0200\n" +"PO-Revision-Date: 2016-11-19 14:45+0000\n" +"Last-Translator: Allan Nordhøy \n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/mate/MATE/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Output controls +#: ../backends/alsa/alsa-constants.c:40 +msgid "Master" +msgstr "Hovedinnstilling" + +#: ../backends/alsa/alsa-constants.c:41 +msgid "Hardware Master" +msgstr "Hovedinnstilling maskinvare" + +#: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 +msgid "PCM" +msgstr "PCM" + +#. OSS manual says this should be the beeper, but Linux OSS seems to assign it +#. to +#. * regular volume control +#: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 +msgid "Speaker" +msgstr "Høyttaler" + +#: ../backends/alsa/alsa-constants.c:44 +msgid "Desktop Speaker" +msgstr "Skrivebordshøytaler" + +#: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 +#: ../backends/alsa/alsa-constants.c:47 +msgid "Front Speaker" +msgstr "Fronthøytaler" + +#: ../backends/alsa/alsa-constants.c:48 +msgid "Headphone" +msgstr "Hodetelefon" + +#: ../backends/alsa/alsa-constants.c:49 +msgid "Headphone 2" +msgstr "Hodetelefon 2" + +#: ../backends/alsa/alsa-constants.c:50 +msgid "Headset" +msgstr "Hodetelefon" + +#: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 +#: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 +msgid "Surround Speaker" +msgstr "Kringlyd-høytaler" + +#: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 +msgid "Center Speaker" +msgstr "Senter-høytaler" + +#: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 +msgid "CLFE Speaker" +msgstr "CLFE-høytaler" + +#: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 +msgid "Digital" +msgstr "Digital" + +#: ../backends/alsa/alsa-constants.c:60 +msgid "Master Mono" +msgstr "Hovedinnstilling mono" + +#: ../backends/alsa/alsa-constants.c:61 +msgid "Master Digital" +msgstr "Hovedinnstilling digital" + +#: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 +msgid "Side Speaker" +msgstr "Sidehøytaler" + +#: ../backends/alsa/alsa-constants.c:64 +msgid "Rear Speaker" +msgstr "Bak høyttaler" + +#: ../backends/alsa/alsa-constants.c:65 +msgid "Wave" +msgstr "Bølge" + +#: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 +#: ../backends/alsa/alsa-constants.c:215 +msgid "Phone" +msgstr "Telefon" + +#: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 +#: ../backends/oss/oss-device.c:98 +msgid "CD" +msgstr "CD" + +#: ../backends/alsa/alsa-constants.c:68 +msgid "Music" +msgstr "Musikk" + +#: ../backends/alsa/alsa-constants.c:69 +msgid "AC97" +msgstr "AC97" + +#: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 +msgid "LFE Speaker" +msgstr "LFE-høytaler" + +#: ../backends/alsa/alsa-constants.c:72 +msgid "Bass Speaker" +msgstr "Bass-høytaler" + +#: ../backends/alsa/alsa-constants.c:73 +msgid "PC Speaker" +msgstr "PC høyttaler" + +#: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 +msgid "Synth" +msgstr "Synth" + +#: ../backends/alsa/alsa-constants.c:75 +msgid "MIDI" +msgstr "MIDI" + +#: ../backends/alsa/alsa-constants.c:76 +msgid "Synth/MIDI" +msgstr "Synth/MIDI" + +#: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 +msgid "Bass" +msgstr "Bass" + +#: ../backends/alsa/alsa-constants.c:78 ../backends/oss/oss-device.c:90 +msgid "Treble" +msgstr "Diskant" + +#. Input controls +#: ../backends/alsa/alsa-constants.c:81 +msgid "Capture" +msgstr "Ta opp" + +#. Microphone options +#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 +#: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 +#: ../backends/oss/oss-device.c:97 +msgid "Microphone" +msgstr "Mikrofon" + +#: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 +msgid "Microphone/Line In" +msgstr "Mikrofon/Linje inn" + +#: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 +#: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 +#: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 +#: ../backends/alsa/alsa-constants.c:173 +msgid "Internal Microphone" +msgstr "Intern mikrofon" + +#: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 +#: ../backends/alsa/alsa-constants.c:164 +msgid "Front Microphone" +msgstr "Front mikrofon" + +#: ../backends/alsa/alsa-constants.c:87 ../backends/alsa/alsa-constants.c:183 +#: ../backends/alsa/alsa-constants.c:184 +msgid "Rear Microphone" +msgstr "Bakmikrofon" + +#: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 +msgid "Dock Microphone" +msgstr "Dokk-mikrofon" + +#: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 +msgid "Headphone Microphone" +msgstr "Hodesett-mikrofon:" + +#: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 +msgid "Headset Microphone" +msgstr "Hodesettmikrofon" + +#: ../backends/alsa/alsa-constants.c:91 +msgid "Inverted Internal Microphone" +msgstr "Invertert internmikrofon" + +#: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 +#: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 +#: ../backends/alsa/alsa-constants.c:192 ../backends/alsa/alsa-constants.c:193 +#: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 +#: ../backends/oss/oss-device.c:96 +msgid "Line In" +msgstr "Linje inn" + +#: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 +#: ../backends/alsa/alsa-constants.c:206 +msgid "Auxiliary" +msgstr "Frittstående" + +#: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 +#: ../backends/oss/oss-device.c:115 +msgid "Video" +msgstr "Video" + +#: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 +msgid "TV Tuner" +msgstr "TV-tuner" + +#: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 +msgid "FM" +msgstr "FM" + +#: ../backends/alsa/alsa-constants.c:100 +msgid "Microphone Boost" +msgstr "Boost for mikrofon" + +#: ../backends/alsa/alsa-constants.c:101 +msgid "Microphone Boost (+20dB)" +msgstr "Boost for mikrofon (+20dB)" + +#: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 +msgid "Internal Microphone Boost" +msgstr "Intern boost for mikrofon" + +#: ../backends/alsa/alsa-constants.c:104 +msgid "Front Microphone Boost" +msgstr "Boost for frontmikrofon" + +#: ../backends/alsa/alsa-constants.c:105 +msgid "Rear Microphone Boost" +msgstr "Boost for bakmikrofon" + +#: ../backends/alsa/alsa-constants.c:106 +msgid "Dock Microphone Boost" +msgstr "Boost for dokkmikrofon" + +#: ../backends/alsa/alsa-constants.c:107 +msgid "Headphone Microphone Boost" +msgstr "Boost for hovedhodesettmikrofon" + +#: ../backends/alsa/alsa-constants.c:108 +msgid "Headset Microphone Boost" +msgstr "Boost for hodesettmikrofon" + +#: ../backends/alsa/alsa-constants.c:109 +msgid "Line In Boost" +msgstr "Boost for linje inn" + +#. Switches +#: ../backends/alsa/alsa-constants.c:116 +msgid "Analog Output" +msgstr "Analog utgang" + +#: ../backends/alsa/alsa-constants.c:117 +msgid "Analog Source" +msgstr "Analog kilde" + +#: ../backends/alsa/alsa-constants.c:118 +msgid "Capture Source" +msgstr "Opptakskilde" + +#: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 +msgid "Input Source" +msgstr "Inngangskilde" + +#: ../backends/alsa/alsa-constants.c:121 +msgid "Digital Input Source" +msgstr "Inngang for digital kilde" + +#: ../backends/alsa/alsa-constants.c:122 +msgid "PCM Capture Source" +msgstr "Kilde for PCM-opptak" + +#: ../backends/alsa/alsa-constants.c:123 +msgid "Digital Playback Source" +msgstr "Kilde for digital avspilling " + +#: ../backends/alsa/alsa-constants.c:124 +msgid "Mono Output" +msgstr "Mono-utgang" + +#: ../backends/alsa/alsa-constants.c:125 +msgid "Shared Microphone/Line In" +msgstr "Delt mikrofon/Linje inn" + +#: ../backends/alsa/alsa-constants.c:127 +msgid "Microphone Jack Mode" +msgstr "Mikrofonens jack-tilstand" + +#: ../backends/alsa/alsa-constants.c:128 +msgid "Surround Jack Mode" +msgstr "Jack-tilstand for kringlyd" + +#: ../backends/alsa/alsa-constants.c:129 +msgid "Auto-Mute Mode" +msgstr "Automatisk-lyddempnings-modus" + +#. Toggles +#: ../backends/alsa/alsa-constants.c:132 +msgid "External Amplifier" +msgstr "Ekstern forsterker" + +#: ../backends/alsa/alsa-constants.c:133 +msgid "Bass Boost" +msgstr "Bassboost" + +#: ../backends/alsa/alsa-constants.c:134 +msgid "Capture Boost" +msgstr "Opptaks-boost" + +#: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 +msgid "Digital In" +msgstr "Digital inn" + +#: ../backends/alsa/alsa-constants.c:137 +msgid "Digital Default PCM" +msgstr "Digitalt forvalgs-PCM" + +#: ../backends/alsa/alsa-constants.c:138 +msgid "Optical" +msgstr "Optisk" + +#: ../backends/alsa/alsa-constants.c:139 +msgid "Auto Gain Control" +msgstr "Automatisk nivåkontroll på forsterkning" + +#: ../backends/alsa/alsa-constants.c:140 +msgid "Mix" +msgstr "Miks" + +#: ../backends/alsa/alsa-constants.c:141 +msgid "Mix Mono" +msgstr "Miks mono" + +#: ../backends/alsa/alsa-constants.c:142 +msgid "Microphone Capture" +msgstr "Mikrofonopptak" + +#: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 +msgid "Input 1" +msgstr "Inngang 1" + +#: ../backends/alsa/alsa-constants.c:144 ../backends/alsa/alsa-constants.c:199 +msgid "Input 2" +msgstr "Inngang 2" + +#. Output options +#: ../backends/alsa/alsa-constants.c:151 +msgid "Speakers" +msgstr "Høyttalere" + +#: ../backends/alsa/alsa-constants.c:152 +msgid "Headphones" +msgstr "Hodetelefoner" + +#: ../backends/alsa/alsa-constants.c:153 +msgid "Front Panel Headphones" +msgstr "Frontpanel for hodetelefoner" + +#: ../backends/alsa/alsa-constants.c:158 +msgid "Microphone 1" +msgstr "Mikrofon 1" + +#: ../backends/alsa/alsa-constants.c:159 +msgid "Microphone 2" +msgstr "Mikrofon 2" + +#: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 +#: ../backends/alsa/alsa-constants.c:162 +msgid "Microphone In" +msgstr "Mikrofon inn" + +#: ../backends/alsa/alsa-constants.c:170 +msgid "Internal Microphone 1" +msgstr "Intern mikrofon 1" + +#: ../backends/alsa/alsa-constants.c:174 +msgid "Internal Digital Microphone" +msgstr "Intern digital mikrofon" + +#: ../backends/alsa/alsa-constants.c:175 ../backends/alsa/alsa-constants.c:178 +msgid "Digital Microphone" +msgstr "Digital mikrofon" + +#: ../backends/alsa/alsa-constants.c:176 +msgid "Digital Microphone 1" +msgstr "Digital mikrofon 1" + +#: ../backends/alsa/alsa-constants.c:177 +msgid "Digital Microphone 2" +msgstr "Digital mikrofon 2" + +#: ../backends/alsa/alsa-constants.c:179 ../backends/alsa/alsa-constants.c:180 +#: ../backends/alsa/alsa-constants.c:181 ../backends/alsa/alsa-constants.c:182 +msgid "External Microphone" +msgstr "Ekstern mikrofon" + +#: ../backends/alsa/alsa-constants.c:185 +msgid "Camera Microphone" +msgstr "Kamera mikrofon" + +#. Other options +#: ../backends/alsa/alsa-constants.c:188 +msgid "Analog" +msgstr "Analog" + +#: ../backends/alsa/alsa-constants.c:189 +msgid "Analog In" +msgstr "Analog inn" + +#: ../backends/alsa/alsa-constants.c:190 +msgid "Analog Inputs" +msgstr "Analoge innganger" + +#: ../backends/alsa/alsa-constants.c:195 +msgid "Line In/Microphone" +msgstr "Linje inn/mikrofon" + +#: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 +msgid "Auxiliary In" +msgstr "Frittstående inn" + +#: ../backends/alsa/alsa-constants.c:207 +msgid "Auxiliary 0" +msgstr "Frittstående 0" + +#: ../backends/alsa/alsa-constants.c:208 +msgid "Auxiliary 1" +msgstr "Frittstående 1" + +#: ../backends/alsa/alsa-constants.c:209 +msgid "Auxiliary 2" +msgstr "Frittstående 2" + +#: ../backends/alsa/alsa-constants.c:210 +msgid "Auxiliary 3" +msgstr "Frittstående 3" + +#: ../backends/alsa/alsa-constants.c:211 +msgid "Docking Station" +msgstr "Dokkingsstasjon" + +#. Recording monitor +#: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 +msgid "Mixer" +msgstr "Mikser" + +#: ../backends/alsa/alsa-constants.c:216 +msgid "Unknown 1" +msgstr "Ukjent 1" + +#: ../backends/alsa/alsa-constants.c:217 +msgid "Unknown 2" +msgstr "Ukjent 2" + +#: ../backends/alsa/alsa-constants.c:218 +msgid "Enabled" +msgstr "Påslått" + +#: ../backends/alsa/alsa-constants.c:219 +msgid "Disabled" +msgstr "Avskrudd" + +#: ../backends/alsa/alsa-device.c:635 +msgid "On" +msgstr "På" + +#: ../backends/alsa/alsa-device.c:636 +msgid "Off" +msgstr "Av" + +#: ../backends/oss/oss-backend.c:403 +#, c-format +msgid "OSS Mixer %d" +msgstr "OSS-mikser %d" + +#: ../backends/oss/oss-device.c:88 +msgid "Volume" +msgstr "Volum" + +#: ../backends/oss/oss-device.c:101 +msgid "PCM 2" +msgstr "PCM 2" + +#. Recording level (master input) +#: ../backends/oss/oss-device.c:103 +msgid "Record" +msgstr "Ta opp" + +#: ../backends/oss/oss-device.c:104 +msgid "Input Gain" +msgstr "Nivåforsterkning for inngang" + +#: ../backends/oss/oss-device.c:105 +msgid "Output Gain" +msgstr "Nivåforsterkning for utgang" + +#: ../backends/oss/oss-device.c:106 +msgid "Line In 1" +msgstr "Linje inn 1" + +#: ../backends/oss/oss-device.c:107 +msgid "Line In 2" +msgstr "Linje inn 2" + +#: ../backends/oss/oss-device.c:108 +msgid "Line In 3" +msgstr "Linje inn 3" + +#. These 3 can be attached to either digital input or output +#: ../backends/oss/oss-device.c:110 +msgid "Digital 1" +msgstr "Digital 1" + +#: ../backends/oss/oss-device.c:111 +msgid "Digital 2" +msgstr "Digital 2" + +#: ../backends/oss/oss-device.c:112 +msgid "Digital 3" +msgstr "Digital 3" + +#: ../backends/oss/oss-device.c:113 +msgid "Phone In" +msgstr "Telefon inn" + +#: ../backends/oss/oss-device.c:114 +msgid "Phone Out" +msgstr "Telefon ut" + +#: ../backends/oss/oss-device.c:116 +msgid "Radio" +msgstr "Radio" + +#. Create the port switch +#: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 +#: ../backends/pulse/pulse-source.c:146 +msgid "Connector" +msgstr "Konnektor" + +#: ../backends/pulse/pulse-device.c:399 +msgid "Profile" +msgstr "Profil" + +#: ../backends/pulse/pulse-monitor.c:282 +msgid "Peak detect" +msgstr "Vis toppnivå" diff -Nru libmatemixer-1.12.1/po/nl.po libmatemixer-1.18.0/po/nl.po --- libmatemixer-1.12.1/po/nl.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/nl.po 2017-03-12 15:31:59.000000000 +0000 @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Falco Langeveld , 2014 +# Falco Langeveld, 2014 # infirit , 2014-2015 msgid "" msgstr "" diff -Nru libmatemixer-1.12.1/po/oc.po libmatemixer-1.18.0/po/oc.po --- libmatemixer-1.12.1/po/oc.po 1970-01-01 00:00:00.000000000 +0000 +++ libmatemixer-1.18.0/po/oc.po 2017-03-12 15:31:59.000000000 +0000 @@ -0,0 +1,558 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Cédric Valmary , 2015-2016 +msgid "" +msgstr "" +"Project-Id-Version: MATE Desktop Environment\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-09 12:55+0200\n" +"PO-Revision-Date: 2016-11-26 14:23+0000\n" +"Last-Translator: Cédric Valmary \n" +"Language-Team: Occitan (post 1500) (http://www.transifex.com/mate/MATE/language/oc/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: oc\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. Output controls +#: ../backends/alsa/alsa-constants.c:40 +msgid "Master" +msgstr "Mèstre" + +#: ../backends/alsa/alsa-constants.c:41 +msgid "Hardware Master" +msgstr "Mèstre material" + +#: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 +msgid "PCM" +msgstr "PCM" + +#. OSS manual says this should be the beeper, but Linux OSS seems to assign it +#. to +#. * regular volume control +#: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 +msgid "Speaker" +msgstr "Nautparlaire" + +#: ../backends/alsa/alsa-constants.c:44 +msgid "Desktop Speaker" +msgstr "Nautparlaire de burèu" + +#: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 +#: ../backends/alsa/alsa-constants.c:47 +msgid "Front Speaker" +msgstr "Nautparlaire de fàcia" + +#: ../backends/alsa/alsa-constants.c:48 +msgid "Headphone" +msgstr "Escotador" + +#: ../backends/alsa/alsa-constants.c:49 +msgid "Headphone 2" +msgstr "Escotador 2" + +#: ../backends/alsa/alsa-constants.c:50 +msgid "Headset" +msgstr "Casc" + +#: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 +#: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 +msgid "Surround Speaker" +msgstr "Nautparlaire d'ambiança" + +#: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 +msgid "Center Speaker" +msgstr "Nautparlaire del centre" + +#: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 +msgid "CLFE Speaker" +msgstr "Nautparlaire d'ambiança CLFE" + +#: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 +msgid "Digital" +msgstr "Digital" + +#: ../backends/alsa/alsa-constants.c:60 +msgid "Master Mono" +msgstr "Mèstre mono" + +#: ../backends/alsa/alsa-constants.c:61 +msgid "Master Digital" +msgstr "Mèstre numeric" + +#: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 +msgid "Side Speaker" +msgstr "Nautparlaire lateral" + +#: ../backends/alsa/alsa-constants.c:64 +msgid "Rear Speaker" +msgstr "Nautparlaire arrièr" + +#: ../backends/alsa/alsa-constants.c:65 +msgid "Wave" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 +#: ../backends/alsa/alsa-constants.c:215 +msgid "Phone" +msgstr "Telefòn" + +#: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 +#: ../backends/oss/oss-device.c:98 +msgid "CD" +msgstr "CD" + +#: ../backends/alsa/alsa-constants.c:68 +msgid "Music" +msgstr "Musica" + +#: ../backends/alsa/alsa-constants.c:69 +msgid "AC97" +msgstr "AC97" + +#: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 +msgid "LFE Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:72 +msgid "Bass Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:73 +msgid "PC Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 +msgid "Synth" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:75 +msgid "MIDI" +msgstr "MIDI" + +#: ../backends/alsa/alsa-constants.c:76 +msgid "Synth/MIDI" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 +msgid "Bass" +msgstr "Bassas" + +#: ../backends/alsa/alsa-constants.c:78 ../backends/oss/oss-device.c:90 +msgid "Treble" +msgstr "Aguts" + +#. Input controls +#: ../backends/alsa/alsa-constants.c:81 +msgid "Capture" +msgstr "Captura" + +#. Microphone options +#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 +#: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 +#: ../backends/oss/oss-device.c:97 +msgid "Microphone" +msgstr "Microfòn" + +#: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 +msgid "Microphone/Line In" +msgstr "Microfòn/Entrada Linha" + +#: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 +#: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 +#: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 +#: ../backends/alsa/alsa-constants.c:173 +msgid "Internal Microphone" +msgstr "Microfòn intèrne" + +#: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 +#: ../backends/alsa/alsa-constants.c:164 +msgid "Front Microphone" +msgstr "Microfòn avant" + +#: ../backends/alsa/alsa-constants.c:87 ../backends/alsa/alsa-constants.c:183 +#: ../backends/alsa/alsa-constants.c:184 +msgid "Rear Microphone" +msgstr "Microfòn arrièr" + +#: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 +msgid "Dock Microphone" +msgstr "Microfòn dock" + +#: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 +msgid "Headphone Microphone" +msgstr "Microfòn d'escotador" + +#: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 +msgid "Headset Microphone" +msgstr "Microfòn de casc" + +#: ../backends/alsa/alsa-constants.c:91 +msgid "Inverted Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 +#: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 +#: ../backends/alsa/alsa-constants.c:192 ../backends/alsa/alsa-constants.c:193 +#: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 +#: ../backends/oss/oss-device.c:96 +msgid "Line In" +msgstr "Entrada Linha" + +#: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 +#: ../backends/alsa/alsa-constants.c:206 +msgid "Auxiliary" +msgstr "Auxiliar" + +#: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 +#: ../backends/oss/oss-device.c:115 +msgid "Video" +msgstr "Vidèo" + +#: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 +msgid "TV Tuner" +msgstr "Tuner TV" + +#: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 +msgid "FM" +msgstr "FM" + +#: ../backends/alsa/alsa-constants.c:100 +msgid "Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:101 +msgid "Microphone Boost (+20dB)" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 +msgid "Internal Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:104 +msgid "Front Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:105 +msgid "Rear Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:106 +msgid "Dock Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:107 +msgid "Headphone Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:108 +msgid "Headset Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:109 +msgid "Line In Boost" +msgstr "" + +#. Switches +#: ../backends/alsa/alsa-constants.c:116 +msgid "Analog Output" +msgstr "Sortida analòga" + +#: ../backends/alsa/alsa-constants.c:117 +msgid "Analog Source" +msgstr "Font analòga" + +#: ../backends/alsa/alsa-constants.c:118 +msgid "Capture Source" +msgstr "Font de captura" + +#: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 +msgid "Input Source" +msgstr "Font d'entrada" + +#: ../backends/alsa/alsa-constants.c:121 +msgid "Digital Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:122 +msgid "PCM Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:123 +msgid "Digital Playback Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:124 +msgid "Mono Output" +msgstr "Sortida Mono" + +#: ../backends/alsa/alsa-constants.c:125 +msgid "Shared Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:127 +msgid "Microphone Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:128 +msgid "Surround Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:129 +msgid "Auto-Mute Mode" +msgstr "" + +#. Toggles +#: ../backends/alsa/alsa-constants.c:132 +msgid "External Amplifier" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:133 +msgid "Bass Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:134 +msgid "Capture Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 +msgid "Digital In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:137 +msgid "Digital Default PCM" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:138 +msgid "Optical" +msgstr "Optica" + +#: ../backends/alsa/alsa-constants.c:139 +msgid "Auto Gain Control" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:140 +msgid "Mix" +msgstr "Mix" + +#: ../backends/alsa/alsa-constants.c:141 +msgid "Mix Mono" +msgstr "Mix Mono" + +#: ../backends/alsa/alsa-constants.c:142 +msgid "Microphone Capture" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 +msgid "Input 1" +msgstr "Entrada 1" + +#: ../backends/alsa/alsa-constants.c:144 ../backends/alsa/alsa-constants.c:199 +msgid "Input 2" +msgstr "Entrada 2" + +#. Output options +#: ../backends/alsa/alsa-constants.c:151 +msgid "Speakers" +msgstr "Nautparlaires" + +#: ../backends/alsa/alsa-constants.c:152 +msgid "Headphones" +msgstr "Escotadors" + +#: ../backends/alsa/alsa-constants.c:153 +msgid "Front Panel Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:158 +msgid "Microphone 1" +msgstr "Microfòn 1" + +#: ../backends/alsa/alsa-constants.c:159 +msgid "Microphone 2" +msgstr "Microfòn 2" + +#: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 +#: ../backends/alsa/alsa-constants.c:162 +msgid "Microphone In" +msgstr "Entrada microfòn" + +#: ../backends/alsa/alsa-constants.c:170 +msgid "Internal Microphone 1" +msgstr "Microfòn intèrne 1" + +#: ../backends/alsa/alsa-constants.c:174 +msgid "Internal Digital Microphone" +msgstr "Microfòn intèrne numeric" + +#: ../backends/alsa/alsa-constants.c:175 ../backends/alsa/alsa-constants.c:178 +msgid "Digital Microphone" +msgstr "Microfòn numeric" + +#: ../backends/alsa/alsa-constants.c:176 +msgid "Digital Microphone 1" +msgstr "Microfòn numeric 1" + +#: ../backends/alsa/alsa-constants.c:177 +msgid "Digital Microphone 2" +msgstr "Microfòn numeric 2" + +#: ../backends/alsa/alsa-constants.c:179 ../backends/alsa/alsa-constants.c:180 +#: ../backends/alsa/alsa-constants.c:181 ../backends/alsa/alsa-constants.c:182 +msgid "External Microphone" +msgstr "Microfòn extèrne" + +#: ../backends/alsa/alsa-constants.c:185 +msgid "Camera Microphone" +msgstr "Microfòn de camèra" + +#. Other options +#: ../backends/alsa/alsa-constants.c:188 +msgid "Analog" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:189 +msgid "Analog In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:190 +msgid "Analog Inputs" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:195 +msgid "Line In/Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 +msgid "Auxiliary In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:207 +msgid "Auxiliary 0" +msgstr "Auxiliar 0" + +#: ../backends/alsa/alsa-constants.c:208 +msgid "Auxiliary 1" +msgstr "Auxiliar 1" + +#: ../backends/alsa/alsa-constants.c:209 +msgid "Auxiliary 2" +msgstr "Auxiliar 2" + +#: ../backends/alsa/alsa-constants.c:210 +msgid "Auxiliary 3" +msgstr "Auxiliar 3" + +#: ../backends/alsa/alsa-constants.c:211 +msgid "Docking Station" +msgstr "" + +#. Recording monitor +#: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 +msgid "Mixer" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:216 +msgid "Unknown 1" +msgstr "Desconegut 1" + +#: ../backends/alsa/alsa-constants.c:217 +msgid "Unknown 2" +msgstr "Desconegut 2" + +#: ../backends/alsa/alsa-constants.c:218 +msgid "Enabled" +msgstr "Activat" + +#: ../backends/alsa/alsa-constants.c:219 +msgid "Disabled" +msgstr "Desactivat" + +#: ../backends/alsa/alsa-device.c:635 +msgid "On" +msgstr "Alucat" + +#: ../backends/alsa/alsa-device.c:636 +msgid "Off" +msgstr "Atudat" + +#: ../backends/oss/oss-backend.c:403 +#, c-format +msgid "OSS Mixer %d" +msgstr "" + +#: ../backends/oss/oss-device.c:88 +msgid "Volume" +msgstr "Volum" + +#: ../backends/oss/oss-device.c:101 +msgid "PCM 2" +msgstr "PCM 2" + +#. Recording level (master input) +#: ../backends/oss/oss-device.c:103 +msgid "Record" +msgstr "" + +#: ../backends/oss/oss-device.c:104 +msgid "Input Gain" +msgstr "Ganh d'entrada" + +#: ../backends/oss/oss-device.c:105 +msgid "Output Gain" +msgstr "Ganh de sortida" + +#: ../backends/oss/oss-device.c:106 +msgid "Line In 1" +msgstr "Entrada Linha 1" + +#: ../backends/oss/oss-device.c:107 +msgid "Line In 2" +msgstr "Entrada Linha 2" + +#: ../backends/oss/oss-device.c:108 +msgid "Line In 3" +msgstr "Entrada Linha 3" + +#. These 3 can be attached to either digital input or output +#: ../backends/oss/oss-device.c:110 +msgid "Digital 1" +msgstr "Numeric 1" + +#: ../backends/oss/oss-device.c:111 +msgid "Digital 2" +msgstr "Numeric 2" + +#: ../backends/oss/oss-device.c:112 +msgid "Digital 3" +msgstr "Numeric 3" + +#: ../backends/oss/oss-device.c:113 +msgid "Phone In" +msgstr "" + +#: ../backends/oss/oss-device.c:114 +msgid "Phone Out" +msgstr "" + +#: ../backends/oss/oss-device.c:116 +msgid "Radio" +msgstr "Ràdio" + +#. Create the port switch +#: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 +#: ../backends/pulse/pulse-source.c:146 +msgid "Connector" +msgstr "Connectador" + +#: ../backends/pulse/pulse-device.c:399 +msgid "Profile" +msgstr "Perfil" + +#: ../backends/pulse/pulse-monitor.c:282 +msgid "Peak detect" +msgstr "" diff -Nru libmatemixer-1.12.1/po/pl.po libmatemixer-1.18.0/po/pl.po --- libmatemixer-1.12.1/po/pl.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/pl.po 2017-03-12 15:31:59.000000000 +0000 @@ -5,19 +5,20 @@ # Translators: # Beniamin Pawlus , 2015 # Marcin Kralka , 2014 +# Piotr Strębski , 2017 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-10-08 23:12+0000\n" -"Last-Translator: Beniamin Pawlus \n" +"PO-Revision-Date: 2017-02-10 10:25+0000\n" +"Last-Translator: Piotr Strębski \n" "Language-Team: Polish (http://www.transifex.com/mate/MATE/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #. Output controls #: ../backends/alsa/alsa-constants.c:40 @@ -289,11 +290,11 @@ #: ../backends/alsa/alsa-constants.c:124 msgid "Mono Output" -msgstr "Źródło Wyjścia Mono" +msgstr "Wyjście mono" #: ../backends/alsa/alsa-constants.c:125 msgid "Shared Microphone/Line In" -msgstr "Wspólny Mikrofon/Wejście Liniowe" +msgstr "Współdzielony mikrofon/wejście liniowe" #: ../backends/alsa/alsa-constants.c:127 msgid "Microphone Jack Mode" @@ -346,7 +347,7 @@ #: ../backends/alsa/alsa-constants.c:142 msgid "Microphone Capture" -msgstr "Przechwytywanie Mikrofonu" +msgstr "Przechwytywanie mikrofonu" #: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 msgid "Input 1" diff -Nru libmatemixer-1.12.1/po/pms.po libmatemixer-1.18.0/po/pms.po --- libmatemixer-1.12.1/po/pms.po 1970-01-01 00:00:00.000000000 +0000 +++ libmatemixer-1.18.0/po/pms.po 2017-03-12 15:31:59.000000000 +0000 @@ -0,0 +1,558 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Randy Ichinose , 2016 +msgid "" +msgstr "" +"Project-Id-Version: MATE Desktop Environment\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-09 12:55+0200\n" +"PO-Revision-Date: 2016-05-05 07:21+0000\n" +"Last-Translator: Randy Ichinose \n" +"Language-Team: Piemontese (http://www.transifex.com/mate/MATE/language/pms/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pms\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Output controls +#: ../backends/alsa/alsa-constants.c:40 +msgid "Master" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:41 +msgid "Hardware Master" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 +msgid "PCM" +msgstr "" + +#. OSS manual says this should be the beeper, but Linux OSS seems to assign it +#. to +#. * regular volume control +#: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 +msgid "Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:44 +msgid "Desktop Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 +#: ../backends/alsa/alsa-constants.c:47 +msgid "Front Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:48 +msgid "Headphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:49 +msgid "Headphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:50 +msgid "Headset" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 +#: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 +msgid "Surround Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 +msgid "Center Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 +msgid "CLFE Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 +msgid "Digital" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:60 +msgid "Master Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:61 +msgid "Master Digital" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 +msgid "Side Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:64 +msgid "Rear Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:65 +msgid "Wave" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 +#: ../backends/alsa/alsa-constants.c:215 +msgid "Phone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 +#: ../backends/oss/oss-device.c:98 +msgid "CD" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:68 +msgid "Music" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:69 +msgid "AC97" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 +msgid "LFE Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:72 +msgid "Bass Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:73 +msgid "PC Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 +msgid "Synth" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:75 +msgid "MIDI" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:76 +msgid "Synth/MIDI" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 +msgid "Bass" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:78 ../backends/oss/oss-device.c:90 +msgid "Treble" +msgstr "" + +#. Input controls +#: ../backends/alsa/alsa-constants.c:81 +msgid "Capture" +msgstr "" + +#. Microphone options +#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 +#: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 +#: ../backends/oss/oss-device.c:97 +msgid "Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 +msgid "Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 +#: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 +#: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 +#: ../backends/alsa/alsa-constants.c:173 +msgid "Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 +#: ../backends/alsa/alsa-constants.c:164 +msgid "Front Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:87 ../backends/alsa/alsa-constants.c:183 +#: ../backends/alsa/alsa-constants.c:184 +msgid "Rear Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 +msgid "Dock Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 +msgid "Headphone Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 +msgid "Headset Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:91 +msgid "Inverted Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 +#: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 +#: ../backends/alsa/alsa-constants.c:192 ../backends/alsa/alsa-constants.c:193 +#: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 +#: ../backends/oss/oss-device.c:96 +msgid "Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 +#: ../backends/alsa/alsa-constants.c:206 +msgid "Auxiliary" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 +#: ../backends/oss/oss-device.c:115 +msgid "Video" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 +msgid "TV Tuner" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 +msgid "FM" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:100 +msgid "Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:101 +msgid "Microphone Boost (+20dB)" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 +msgid "Internal Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:104 +msgid "Front Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:105 +msgid "Rear Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:106 +msgid "Dock Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:107 +msgid "Headphone Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:108 +msgid "Headset Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:109 +msgid "Line In Boost" +msgstr "" + +#. Switches +#: ../backends/alsa/alsa-constants.c:116 +msgid "Analog Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:117 +msgid "Analog Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:118 +msgid "Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 +msgid "Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:121 +msgid "Digital Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:122 +msgid "PCM Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:123 +msgid "Digital Playback Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:124 +msgid "Mono Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:125 +msgid "Shared Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:127 +msgid "Microphone Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:128 +msgid "Surround Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:129 +msgid "Auto-Mute Mode" +msgstr "" + +#. Toggles +#: ../backends/alsa/alsa-constants.c:132 +msgid "External Amplifier" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:133 +msgid "Bass Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:134 +msgid "Capture Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 +msgid "Digital In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:137 +msgid "Digital Default PCM" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:138 +msgid "Optical" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:139 +msgid "Auto Gain Control" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:140 +msgid "Mix" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:141 +msgid "Mix Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:142 +msgid "Microphone Capture" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 +msgid "Input 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:144 ../backends/alsa/alsa-constants.c:199 +msgid "Input 2" +msgstr "" + +#. Output options +#: ../backends/alsa/alsa-constants.c:151 +msgid "Speakers" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:152 +msgid "Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:153 +msgid "Front Panel Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:158 +msgid "Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:159 +msgid "Microphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 +#: ../backends/alsa/alsa-constants.c:162 +msgid "Microphone In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:170 +msgid "Internal Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:174 +msgid "Internal Digital Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:175 ../backends/alsa/alsa-constants.c:178 +msgid "Digital Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:176 +msgid "Digital Microphone 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:177 +msgid "Digital Microphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:179 ../backends/alsa/alsa-constants.c:180 +#: ../backends/alsa/alsa-constants.c:181 ../backends/alsa/alsa-constants.c:182 +msgid "External Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:185 +msgid "Camera Microphone" +msgstr "" + +#. Other options +#: ../backends/alsa/alsa-constants.c:188 +msgid "Analog" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:189 +msgid "Analog In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:190 +msgid "Analog Inputs" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:195 +msgid "Line In/Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 +msgid "Auxiliary In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:207 +msgid "Auxiliary 0" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:208 +msgid "Auxiliary 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:209 +msgid "Auxiliary 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:210 +msgid "Auxiliary 3" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:211 +msgid "Docking Station" +msgstr "" + +#. Recording monitor +#: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 +msgid "Mixer" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:216 +msgid "Unknown 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:217 +msgid "Unknown 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:218 +msgid "Enabled" +msgstr "Abilità" + +#: ../backends/alsa/alsa-constants.c:219 +msgid "Disabled" +msgstr "Dësabilità" + +#: ../backends/alsa/alsa-device.c:635 +msgid "On" +msgstr "" + +#: ../backends/alsa/alsa-device.c:636 +msgid "Off" +msgstr "" + +#: ../backends/oss/oss-backend.c:403 +#, c-format +msgid "OSS Mixer %d" +msgstr "" + +#: ../backends/oss/oss-device.c:88 +msgid "Volume" +msgstr "" + +#: ../backends/oss/oss-device.c:101 +msgid "PCM 2" +msgstr "" + +#. Recording level (master input) +#: ../backends/oss/oss-device.c:103 +msgid "Record" +msgstr "" + +#: ../backends/oss/oss-device.c:104 +msgid "Input Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:105 +msgid "Output Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:106 +msgid "Line In 1" +msgstr "" + +#: ../backends/oss/oss-device.c:107 +msgid "Line In 2" +msgstr "" + +#: ../backends/oss/oss-device.c:108 +msgid "Line In 3" +msgstr "" + +#. These 3 can be attached to either digital input or output +#: ../backends/oss/oss-device.c:110 +msgid "Digital 1" +msgstr "" + +#: ../backends/oss/oss-device.c:111 +msgid "Digital 2" +msgstr "" + +#: ../backends/oss/oss-device.c:112 +msgid "Digital 3" +msgstr "" + +#: ../backends/oss/oss-device.c:113 +msgid "Phone In" +msgstr "" + +#: ../backends/oss/oss-device.c:114 +msgid "Phone Out" +msgstr "" + +#: ../backends/oss/oss-device.c:116 +msgid "Radio" +msgstr "" + +#. Create the port switch +#: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 +#: ../backends/pulse/pulse-source.c:146 +msgid "Connector" +msgstr "" + +#: ../backends/pulse/pulse-device.c:399 +msgid "Profile" +msgstr "" + +#: ../backends/pulse/pulse-monitor.c:282 +msgid "Peak detect" +msgstr "" diff -Nru libmatemixer-1.12.1/po/pt_BR.po libmatemixer-1.18.0/po/pt_BR.po --- libmatemixer-1.12.1/po/pt_BR.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/pt_BR.po 2017-03-12 15:31:59.000000000 +0000 @@ -4,16 +4,20 @@ # # Translators: # Acácio da Rosa Florentino , 2015 +# Cleber Teixeira, 2015 +# Leandro “Lê Corſetti van Utrecht” Guimarães Faria Corcete DUTRA , 2015 # Marcelo Ghelman , 2014 +# Victor Gonçalves , 2015 +# Victor Maximiliano , 2015 # Willian Nunes de Oliveira , 2014 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-28 09:27+0100\n" -"PO-Revision-Date: 2015-06-05 17:26+0000\n" -"Last-Translator: Acácio da Rosa Florentino \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/MATE/language/pt_BR/)\n" +"POT-Creation-Date: 2015-09-09 12:55+0200\n" +"PO-Revision-Date: 2015-12-28 23:01+0000\n" +"Last-Translator: Victor Maximiliano \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/mate/MATE/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,27 +27,27 @@ #. Output controls #: ../backends/alsa/alsa-constants.c:40 msgid "Master" -msgstr "" +msgstr "Principal" #: ../backends/alsa/alsa-constants.c:41 msgid "Hardware Master" -msgstr "" +msgstr "Mestre de equipamento" #: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 msgid "PCM" msgstr "PCM" -#: ../backends/alsa/alsa-constants.c:43 -msgid "Desktop Speaker" -msgstr "Alto-falante de mesa" - #. OSS manual says this should be the beeper, but Linux OSS seems to assign it #. to #. * regular volume control -#: ../backends/alsa/alsa-constants.c:44 ../backends/oss/oss-device.c:95 +#: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 msgid "Speaker" msgstr "Alto-falante" +#: ../backends/alsa/alsa-constants.c:44 +msgid "Desktop Speaker" +msgstr "Alto-falante de mesa" + #: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 #: ../backends/alsa/alsa-constants.c:47 msgid "Front Speaker" @@ -64,7 +68,7 @@ #: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 #: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 msgid "Surround Speaker" -msgstr "" +msgstr "Alto-falante multilateral" #: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 msgid "Center Speaker" @@ -72,19 +76,19 @@ #: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 msgid "CLFE Speaker" -msgstr "" +msgstr "Alto-falante CLFE" -#: ../backends/alsa/alsa-constants.c:59 -msgid "Master Mono" -msgstr "" +#: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 +msgid "Digital" +msgstr "Digital" #: ../backends/alsa/alsa-constants.c:60 -msgid "Master Digital" -msgstr "" +msgid "Master Mono" +msgstr "Mestre monoaural" -#: ../backends/alsa/alsa-constants.c:61 ../backends/alsa/alsa-constants.c:135 -msgid "Digital" -msgstr "Digital" +#: ../backends/alsa/alsa-constants.c:61 +msgid "Master Digital" +msgstr "Mestre digital" #: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 msgid "Side Speaker" @@ -96,14 +100,15 @@ #: ../backends/alsa/alsa-constants.c:65 msgid "Wave" -msgstr "" +msgstr "Onda" #: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 -#: ../backends/alsa/alsa-constants.c:213 +#: ../backends/alsa/alsa-constants.c:215 msgid "Phone" msgstr "Telefone" -#: ../backends/alsa/alsa-constants.c:67 ../backends/oss/oss-device.c:98 +#: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 +#: ../backends/oss/oss-device.c:98 msgid "CD" msgstr "CD" @@ -117,11 +122,11 @@ #: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 msgid "LFE Speaker" -msgstr "LFE Speaker" +msgstr "Alto-falante LFE" #: ../backends/alsa/alsa-constants.c:72 msgid "Bass Speaker" -msgstr "Bass Speaker" +msgstr "Alto-falante para baixo" #: ../backends/alsa/alsa-constants.c:73 msgid "PC Speaker" @@ -153,14 +158,15 @@ msgstr "Captura" #. Microphone options -#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:156 -#: ../backends/alsa/alsa-constants.c:157 ../backends/oss/oss-device.c:97 +#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 +#: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 +#: ../backends/oss/oss-device.c:97 msgid "Microphone" msgstr "Microfone" #: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 msgid "Microphone/Line In" -msgstr "" +msgstr "Microfone/Entrada de Linha" #: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 #: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 @@ -181,15 +187,15 @@ #: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 msgid "Dock Microphone" -msgstr "" +msgstr "Microfone Fixo" #: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 msgid "Headphone Microphone" -msgstr "" +msgstr "Microfone do fone de ouvido" #: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 msgid "Headset Microphone" -msgstr "" +msgstr "Microfone integrado ao Fone de Ouvido" #: ../backends/alsa/alsa-constants.c:91 msgid "Inverted Internal Microphone" @@ -201,14 +207,15 @@ #: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 #: ../backends/oss/oss-device.c:96 msgid "Line In" -msgstr "" +msgstr "Entrada de Linha" #: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 #: ../backends/alsa/alsa-constants.c:206 msgid "Auxiliary" msgstr "Auxiliar" -#: ../backends/alsa/alsa-constants.c:96 ../backends/oss/oss-device.c:115 +#: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 +#: ../backends/oss/oss-device.c:115 msgid "Video" msgstr "Vídeo" @@ -222,40 +229,41 @@ #: ../backends/alsa/alsa-constants.c:100 msgid "Microphone Boost" -msgstr "" +msgstr "Ampliação do Microfone" #: ../backends/alsa/alsa-constants.c:101 msgid "Microphone Boost (+20dB)" -msgstr "" +msgstr "Ampliação do Microfone(+20dB)" #: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 msgid "Internal Microphone Boost" -msgstr "" +msgstr "Ampliação do Microfone Interno" #: ../backends/alsa/alsa-constants.c:104 msgid "Front Microphone Boost" -msgstr "" +msgstr "Ampliação do Microfone Frontal" #: ../backends/alsa/alsa-constants.c:105 msgid "Rear Microphone Boost" -msgstr "" +msgstr "Ampliação do Microfone Traseiro" #: ../backends/alsa/alsa-constants.c:106 msgid "Dock Microphone Boost" -msgstr "" +msgstr "Ampliação do Microfone Fixo" #: ../backends/alsa/alsa-constants.c:107 msgid "Headphone Microphone Boost" -msgstr "" +msgstr "Ampliação do Microfone integrado ao Fone de Ouvido" #: ../backends/alsa/alsa-constants.c:108 msgid "Headset Microphone Boost" -msgstr "" +msgstr "Ampliação do Microfone integrado ao Fone de Ouvido" #: ../backends/alsa/alsa-constants.c:109 msgid "Line In Boost" -msgstr "" +msgstr "Ampliação da Entrada de Linha" +#. Switches #: ../backends/alsa/alsa-constants.c:116 msgid "Analog Output" msgstr "Saída analógica" @@ -264,18 +272,14 @@ msgid "Analog Source" msgstr "Fonte analógica" -#: ../backends/alsa/alsa-constants.c:118 ../backends/oss/oss-stream.c:207 +#: ../backends/alsa/alsa-constants.c:118 msgid "Capture Source" msgstr "Fonte de captura" -#: ../backends/alsa/alsa-constants.c:119 +#: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 msgid "Input Source" msgstr "Fonte de entrada" -#: ../backends/alsa/alsa-constants.c:120 -msgid "Input Source Select" -msgstr "" - #: ../backends/alsa/alsa-constants.c:121 msgid "Digital Input Source" msgstr "Fonte de entrada digital" @@ -286,44 +290,40 @@ #: ../backends/alsa/alsa-constants.c:123 msgid "Digital Playback Source" -msgstr "" +msgstr "Origem da Reprodução Digital" #: ../backends/alsa/alsa-constants.c:124 -msgid "Mono Output Select" -msgstr "" +msgid "Mono Output" +msgstr "Saída Mono" #: ../backends/alsa/alsa-constants.c:125 -msgid "Shared Mic/Line In" -msgstr "" - -#: ../backends/alsa/alsa-constants.c:126 -msgid "Microphone Select" -msgstr "" +msgid "Shared Microphone/Line In" +msgstr "Microfone/Entrada de Linha Compartilhada" #: ../backends/alsa/alsa-constants.c:127 msgid "Microphone Jack Mode" -msgstr "" +msgstr "Modo de Entrada do Microfone" #: ../backends/alsa/alsa-constants.c:128 msgid "Surround Jack Mode" -msgstr "" +msgstr "Modo de Entrada Multilateral" #: ../backends/alsa/alsa-constants.c:129 msgid "Auto-Mute Mode" -msgstr "" +msgstr "Modo de Mudo Automático" -#. (Probably) toggles +#. Toggles #: ../backends/alsa/alsa-constants.c:132 msgid "External Amplifier" msgstr "Amplificador externo" #: ../backends/alsa/alsa-constants.c:133 msgid "Bass Boost" -msgstr "" +msgstr "Ampliação do Grave" #: ../backends/alsa/alsa-constants.c:134 msgid "Capture Boost" -msgstr "" +msgstr "Ampliação da Captura" #: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 msgid "Digital In" @@ -331,7 +331,7 @@ #: ../backends/alsa/alsa-constants.c:137 msgid "Digital Default PCM" -msgstr "" +msgstr "PCM Digital Padrão" #: ../backends/alsa/alsa-constants.c:138 msgid "Optical" @@ -343,15 +343,15 @@ #: ../backends/alsa/alsa-constants.c:140 msgid "Mix" -msgstr "" +msgstr "Mixagem" #: ../backends/alsa/alsa-constants.c:141 msgid "Mix Mono" -msgstr "" +msgstr "Mistura Mono" #: ../backends/alsa/alsa-constants.c:142 -msgid "Mic Capture" -msgstr "Captura de microfone" +msgid "Microphone Capture" +msgstr "Captura do Microfone" #: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 msgid "Input 1" @@ -431,7 +431,7 @@ #: ../backends/alsa/alsa-constants.c:195 msgid "Line In/Microphone" -msgstr "" +msgstr "Entrada de Linha/Microfone" #: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 msgid "Auxiliary In" @@ -455,41 +455,41 @@ #: ../backends/alsa/alsa-constants.c:211 msgid "Docking Station" -msgstr "" +msgstr "Estação Fixa" #. Recording monitor #: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 msgid "Mixer" -msgstr "" +msgstr "Mixador" -#: ../backends/alsa/alsa-constants.c:214 +#: ../backends/alsa/alsa-constants.c:216 msgid "Unknown 1" msgstr "Desconhecido 1" -#: ../backends/alsa/alsa-constants.c:215 +#: ../backends/alsa/alsa-constants.c:217 msgid "Unknown 2" msgstr "Desconhecido 2" -#: ../backends/alsa/alsa-constants.c:216 +#: ../backends/alsa/alsa-constants.c:218 msgid "Enabled" msgstr "Habilitado" -#: ../backends/alsa/alsa-constants.c:217 +#: ../backends/alsa/alsa-constants.c:219 msgid "Disabled" msgstr "Desabilitado" -#: ../backends/alsa/alsa-device.c:610 +#: ../backends/alsa/alsa-device.c:635 msgid "On" msgstr "Ligado" -#: ../backends/alsa/alsa-device.c:611 +#: ../backends/alsa/alsa-device.c:636 msgid "Off" msgstr "Desligado" #: ../backends/oss/oss-backend.c:403 #, c-format msgid "OSS Mixer %d" -msgstr "" +msgstr "Mixador OSS %d" #: ../backends/oss/oss-device.c:88 msgid "Volume" @@ -514,15 +514,15 @@ #: ../backends/oss/oss-device.c:106 msgid "Line In 1" -msgstr "" +msgstr "Entrada de Linha 1" #: ../backends/oss/oss-device.c:107 msgid "Line In 2" -msgstr "" +msgstr "Entrada de Linha 2" #: ../backends/oss/oss-device.c:108 msgid "Line In 3" -msgstr "" +msgstr "Entrada de Linha 3" #. These 3 can be attached to either digital input or output #: ../backends/oss/oss-device.c:110 @@ -539,25 +539,26 @@ #: ../backends/oss/oss-device.c:113 msgid "Phone In" -msgstr "" +msgstr "Entrada de Fone" #: ../backends/oss/oss-device.c:114 msgid "Phone Out" -msgstr "" +msgstr "Saída de Fone" #: ../backends/oss/oss-device.c:116 msgid "Radio" msgstr "Rádio" +#. Create the port switch +#: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 +#: ../backends/pulse/pulse-source.c:146 +msgid "Connector" +msgstr "Conector" + #: ../backends/pulse/pulse-device.c:399 msgid "Profile" msgstr "Perfil" #: ../backends/pulse/pulse-monitor.c:282 msgid "Peak detect" -msgstr "" - -#. Create the port switch -#: ../backends/pulse/pulse-sink.c:149 ../backends/pulse/pulse-source.c:146 -msgid "Port" -msgstr "Porta" +msgstr "Detecção de Pico" diff -Nru libmatemixer-1.12.1/po/pt.po libmatemixer-1.18.0/po/pt.po --- libmatemixer-1.12.1/po/pt.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/pt.po 2017-03-12 15:31:59.000000000 +0000 @@ -4,6 +4,7 @@ # # Translators: # crolidge, 2014-2015 +# crolidge, 2015 # Diogo Oliveira , 2015 # Hugo Carvalho , 2014 # alfalb_mansil, 2015 @@ -12,8 +13,8 @@ "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-09-09 10:54+0000\n" -"Last-Translator: infirit \n" +"PO-Revision-Date: 2015-11-18 23:26+0000\n" +"Last-Translator: crolidge\n" "Language-Team: Portuguese (http://www.transifex.com/mate/MATE/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -291,11 +292,11 @@ #: ../backends/alsa/alsa-constants.c:124 msgid "Mono Output" -msgstr "" +msgstr "Saída Mono" #: ../backends/alsa/alsa-constants.c:125 msgid "Shared Microphone/Line In" -msgstr "" +msgstr "Entrada Line/Microfone partilhado" #: ../backends/alsa/alsa-constants.c:127 msgid "Microphone Jack Mode" @@ -348,7 +349,7 @@ #: ../backends/alsa/alsa-constants.c:142 msgid "Microphone Capture" -msgstr "" +msgstr "Captura do microfone" #: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 msgid "Input 1" @@ -550,7 +551,7 @@ #: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 #: ../backends/pulse/pulse-source.c:146 msgid "Connector" -msgstr "" +msgstr "Conetor" #: ../backends/pulse/pulse-device.c:399 msgid "Profile" diff -Nru libmatemixer-1.12.1/po/ro.po libmatemixer-1.18.0/po/ro.po --- libmatemixer-1.12.1/po/ro.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/ro.po 2017-03-12 15:31:59.000000000 +0000 @@ -4,14 +4,15 @@ # # Translators: # corneliu.e , 2014 -# Daniel , 2015 +# Daniel , 2015 +# Polihron Alexandru (APoliTech) , 2016 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-11-01 05:52+0000\n" -"Last-Translator: Daniel \n" +"PO-Revision-Date: 2016-05-29 10:47+0000\n" +"Last-Translator: Polihron Alexandru (APoliTech) \n" "Language-Team: Romanian (http://www.transifex.com/mate/MATE/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,11 +23,11 @@ #. Output controls #: ../backends/alsa/alsa-constants.c:40 msgid "Master" -msgstr "" +msgstr "Principal" #: ../backends/alsa/alsa-constants.c:41 msgid "Hardware Master" -msgstr "" +msgstr "Componenta principala" #: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 msgid "PCM" @@ -58,7 +59,7 @@ #: ../backends/alsa/alsa-constants.c:50 msgid "Headset" -msgstr "" +msgstr "Casti" #: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 #: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 @@ -79,11 +80,11 @@ #: ../backends/alsa/alsa-constants.c:60 msgid "Master Mono" -msgstr "" +msgstr "Principalul Mono" #: ../backends/alsa/alsa-constants.c:61 msgid "Master Digital" -msgstr "" +msgstr "Digitalul principal" #: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 msgid "Side Speaker" @@ -129,7 +130,7 @@ #: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 msgid "Synth" -msgstr "" +msgstr "Sintetizator" #: ../backends/alsa/alsa-constants.c:75 msgid "MIDI" @@ -137,7 +138,7 @@ #: ../backends/alsa/alsa-constants.c:76 msgid "Synth/MIDI" -msgstr "" +msgstr "Sintetizator/MIDI" #: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 msgid "Bass" @@ -252,7 +253,7 @@ #: ../backends/alsa/alsa-constants.c:108 msgid "Headset Microphone Boost" -msgstr "" +msgstr "Amplificare microfon cască" #: ../backends/alsa/alsa-constants.c:109 msgid "Line In Boost" @@ -334,7 +335,7 @@ #: ../backends/alsa/alsa-constants.c:139 msgid "Auto Gain Control" -msgstr "" +msgstr "Control câștig automat" #: ../backends/alsa/alsa-constants.c:140 msgid "Mix" @@ -534,11 +535,11 @@ #: ../backends/oss/oss-device.c:113 msgid "Phone In" -msgstr "" +msgstr "Intrare telefon" #: ../backends/oss/oss-device.c:114 msgid "Phone Out" -msgstr "" +msgstr "Ieșire telefon" #: ../backends/oss/oss-device.c:116 msgid "Radio" diff -Nru libmatemixer-1.12.1/po/ru.po libmatemixer-1.18.0/po/ru.po --- libmatemixer-1.12.1/po/ru.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/ru.po 2017-03-12 15:31:59.000000000 +0000 @@ -5,18 +5,20 @@ # Translators: # Alexei Sorokin , 2014 # AlexL , 2015 -# bizdelnick , 2015 +# Дмитрий Михирев , 2015 # Evolve32 , 2014 -# Ilyas B Arinov , 2015 +# Ilyas B Arinov , 2015 # Sergey Kolosov , 2014 -# Виктор Кукшиев , 2015 +# theirix , 2016 +# Андрей Болконский , 2015 +# павел назаров , 2015 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-09-23 16:47+0000\n" -"Last-Translator: bizdelnick \n" +"PO-Revision-Date: 2016-02-10 16:59+0000\n" +"Last-Translator: theirix \n" "Language-Team: Russian (http://www.transifex.com/mate/MATE/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +29,7 @@ #. Output controls #: ../backends/alsa/alsa-constants.c:40 msgid "Master" -msgstr "Главный" +msgstr "Основной" #: ../backends/alsa/alsa-constants.c:41 msgid "Hardware Master" @@ -84,11 +86,11 @@ #: ../backends/alsa/alsa-constants.c:60 msgid "Master Mono" -msgstr "Главный Моно" +msgstr "Основной моно" #: ../backends/alsa/alsa-constants.c:61 msgid "Master Digital" -msgstr "Главный Цифровой" +msgstr "Основной цифровой" #: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 msgid "Side Speaker" diff -Nru libmatemixer-1.12.1/po/sk.po libmatemixer-1.18.0/po/sk.po --- libmatemixer-1.12.1/po/sk.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/sk.po 2017-03-12 15:31:59.000000000 +0000 @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dušan Kazik , 2015 # Tibor Kaputa , 2014 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-09-09 10:54+0000\n" -"Last-Translator: infirit \n" +"PO-Revision-Date: 2015-12-09 19:50+0000\n" +"Last-Translator: Dušan Kazik \n" "Language-Team: Slovak (http://www.transifex.com/mate/MATE/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -288,11 +289,11 @@ #: ../backends/alsa/alsa-constants.c:124 msgid "Mono Output" -msgstr "" +msgstr "Mono výstup" #: ../backends/alsa/alsa-constants.c:125 msgid "Shared Microphone/Line In" -msgstr "" +msgstr "Zdieľaný mikrofón alebo vstupná linka" #: ../backends/alsa/alsa-constants.c:127 msgid "Microphone Jack Mode" @@ -345,7 +346,7 @@ #: ../backends/alsa/alsa-constants.c:142 msgid "Microphone Capture" -msgstr "" +msgstr "Zachytávanie mikrofónu" #: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 msgid "Input 1" @@ -547,7 +548,7 @@ #: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 #: ../backends/pulse/pulse-source.c:146 msgid "Connector" -msgstr "" +msgstr "Konektor" #: ../backends/pulse/pulse-device.c:399 msgid "Profile" diff -Nru libmatemixer-1.12.1/po/sv.po libmatemixer-1.18.0/po/sv.po --- libmatemixer-1.12.1/po/sv.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/sv.po 2017-03-12 15:31:59.000000000 +0000 @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Erik, 2015 +# Erik, 2015-2016 +# Henrik Mattsson-Mårn , 2016 # Kristoffer Grundström , 2015 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-28 09:27+0100\n" -"PO-Revision-Date: 2015-05-29 15:56+0000\n" -"Last-Translator: Kristoffer Grundström \n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/MATE/language/sv/)\n" +"POT-Creation-Date: 2015-09-09 12:55+0200\n" +"PO-Revision-Date: 2016-10-04 13:15+0000\n" +"Last-Translator: Erik\n" +"Language-Team: Swedish (http://www.transifex.com/mate/MATE/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -32,17 +33,17 @@ msgid "PCM" msgstr "PCM" -#: ../backends/alsa/alsa-constants.c:43 -msgid "Desktop Speaker" -msgstr "Skrivbordshögtalare" - #. OSS manual says this should be the beeper, but Linux OSS seems to assign it #. to #. * regular volume control -#: ../backends/alsa/alsa-constants.c:44 ../backends/oss/oss-device.c:95 +#: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 msgid "Speaker" msgstr "Högtalare" +#: ../backends/alsa/alsa-constants.c:44 +msgid "Desktop Speaker" +msgstr "Skrivbordshögtalare" + #: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 #: ../backends/alsa/alsa-constants.c:47 msgid "Front Speaker" @@ -73,18 +74,18 @@ msgid "CLFE Speaker" msgstr "CLFE-högtalare" -#: ../backends/alsa/alsa-constants.c:59 +#: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 +msgid "Digital" +msgstr "Digital" + +#: ../backends/alsa/alsa-constants.c:60 msgid "Master Mono" msgstr "Master mono" -#: ../backends/alsa/alsa-constants.c:60 +#: ../backends/alsa/alsa-constants.c:61 msgid "Master Digital" msgstr "Master digital" -#: ../backends/alsa/alsa-constants.c:61 ../backends/alsa/alsa-constants.c:135 -msgid "Digital" -msgstr "Digital" - #: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 msgid "Side Speaker" msgstr "Sidohögtalare" @@ -98,11 +99,12 @@ msgstr "Våg" #: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 -#: ../backends/alsa/alsa-constants.c:213 +#: ../backends/alsa/alsa-constants.c:215 msgid "Phone" msgstr "Telefon" -#: ../backends/alsa/alsa-constants.c:67 ../backends/oss/oss-device.c:98 +#: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 +#: ../backends/oss/oss-device.c:98 msgid "CD" msgstr "CD" @@ -152,8 +154,9 @@ msgstr "Spela in" #. Microphone options -#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:156 -#: ../backends/alsa/alsa-constants.c:157 ../backends/oss/oss-device.c:97 +#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 +#: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 +#: ../backends/oss/oss-device.c:97 msgid "Microphone" msgstr "Mikrofon" @@ -207,7 +210,8 @@ msgid "Auxiliary" msgstr "Yttre enhet" -#: ../backends/alsa/alsa-constants.c:96 ../backends/oss/oss-device.c:115 +#: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 +#: ../backends/oss/oss-device.c:115 msgid "Video" msgstr "Video" @@ -255,6 +259,7 @@ msgid "Line In Boost" msgstr "Förstärkning ljudingång" +#. Switches #: ../backends/alsa/alsa-constants.c:116 msgid "Analog Output" msgstr "Analogutgång" @@ -263,18 +268,14 @@ msgid "Analog Source" msgstr "Analogkälla" -#: ../backends/alsa/alsa-constants.c:118 ../backends/oss/oss-stream.c:207 +#: ../backends/alsa/alsa-constants.c:118 msgid "Capture Source" msgstr "Källa för inspelning" -#: ../backends/alsa/alsa-constants.c:119 +#: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 msgid "Input Source" msgstr "Inmatningskälla" -#: ../backends/alsa/alsa-constants.c:120 -msgid "Input Source Select" -msgstr "Val av inmatningskälla" - #: ../backends/alsa/alsa-constants.c:121 msgid "Digital Input Source" msgstr "Källa för digital inmatning" @@ -288,20 +289,16 @@ msgstr "Källa för digital uppspelning" #: ../backends/alsa/alsa-constants.c:124 -msgid "Mono Output Select" -msgstr "Val av mono-utmatning" +msgid "Mono Output" +msgstr "Utmatning i mono" #: ../backends/alsa/alsa-constants.c:125 -msgid "Shared Mic/Line In" +msgid "Shared Microphone/Line In" msgstr "Delad mikrofon/ljudingång" -#: ../backends/alsa/alsa-constants.c:126 -msgid "Microphone Select" -msgstr "Val av mikrofon" - #: ../backends/alsa/alsa-constants.c:127 msgid "Microphone Jack Mode" -msgstr "" +msgstr "Läge för mikrofoningång" #: ../backends/alsa/alsa-constants.c:128 msgid "Surround Jack Mode" @@ -311,7 +308,7 @@ msgid "Auto-Mute Mode" msgstr "Automatiskt tyst läge" -#. (Probably) toggles +#. Toggles #: ../backends/alsa/alsa-constants.c:132 msgid "External Amplifier" msgstr "Extern förstärkare" @@ -338,7 +335,7 @@ #: ../backends/alsa/alsa-constants.c:139 msgid "Auto Gain Control" -msgstr "" +msgstr "Automatisk förstärkningsreglering" #: ../backends/alsa/alsa-constants.c:140 msgid "Mix" @@ -349,7 +346,7 @@ msgstr "" #: ../backends/alsa/alsa-constants.c:142 -msgid "Mic Capture" +msgid "Microphone Capture" msgstr "" #: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 @@ -459,36 +456,36 @@ #. Recording monitor #: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 msgid "Mixer" -msgstr "" +msgstr "Mixer" -#: ../backends/alsa/alsa-constants.c:214 +#: ../backends/alsa/alsa-constants.c:216 msgid "Unknown 1" msgstr "Okänd 1" -#: ../backends/alsa/alsa-constants.c:215 +#: ../backends/alsa/alsa-constants.c:217 msgid "Unknown 2" msgstr "Okänd 2" -#: ../backends/alsa/alsa-constants.c:216 +#: ../backends/alsa/alsa-constants.c:218 msgid "Enabled" msgstr "Aktiverad" -#: ../backends/alsa/alsa-constants.c:217 +#: ../backends/alsa/alsa-constants.c:219 msgid "Disabled" msgstr "Inaktiverad" -#: ../backends/alsa/alsa-device.c:610 +#: ../backends/alsa/alsa-device.c:635 msgid "On" msgstr "På" -#: ../backends/alsa/alsa-device.c:611 +#: ../backends/alsa/alsa-device.c:636 msgid "Off" msgstr "Av" #: ../backends/oss/oss-backend.c:403 #, c-format msgid "OSS Mixer %d" -msgstr "" +msgstr "OSS mixer %d" #: ../backends/oss/oss-device.c:88 msgid "Volume" @@ -505,11 +502,11 @@ #: ../backends/oss/oss-device.c:104 msgid "Input Gain" -msgstr "" +msgstr "Förstärkning ingång" #: ../backends/oss/oss-device.c:105 msgid "Output Gain" -msgstr "" +msgstr "Förstärkning utgång" #: ../backends/oss/oss-device.c:106 msgid "Line In 1" @@ -548,6 +545,12 @@ msgid "Radio" msgstr "Radio" +#. Create the port switch +#: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 +#: ../backends/pulse/pulse-source.c:146 +msgid "Connector" +msgstr "Kontakt" + #: ../backends/pulse/pulse-device.c:399 msgid "Profile" msgstr "Profil" @@ -555,8 +558,3 @@ #: ../backends/pulse/pulse-monitor.c:282 msgid "Peak detect" msgstr "" - -#. Create the port switch -#: ../backends/pulse/pulse-sink.c:149 ../backends/pulse/pulse-source.c:146 -msgid "Port" -msgstr "Port" diff -Nru libmatemixer-1.12.1/po/tr.po libmatemixer-1.18.0/po/tr.po --- libmatemixer-1.12.1/po/tr.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/tr.po 2017-03-12 15:31:59.000000000 +0000 @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Atilla Öntaş , 2014 -# Kudret Emre , 2014 +# tarakbumba , 2014,2016 +# Butterfly , 2015 +# Kudret , 2014 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" -"PO-Revision-Date: 2015-09-09 10:54+0000\n" -"Last-Translator: infirit \n" +"PO-Revision-Date: 2016-04-19 06:57+0000\n" +"Last-Translator: tarakbumba \n" "Language-Team: Turkish (http://www.transifex.com/mate/MATE/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -289,11 +290,11 @@ #: ../backends/alsa/alsa-constants.c:124 msgid "Mono Output" -msgstr "" +msgstr "Mono Çıktı" #: ../backends/alsa/alsa-constants.c:125 msgid "Shared Microphone/Line In" -msgstr "" +msgstr "Paylaşılan Mikrofon/Hat Girişi" #: ../backends/alsa/alsa-constants.c:127 msgid "Microphone Jack Mode" @@ -346,7 +347,7 @@ #: ../backends/alsa/alsa-constants.c:142 msgid "Microphone Capture" -msgstr "" +msgstr "Mikrofon Yakalama" #: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 msgid "Input 1" @@ -488,7 +489,7 @@ #: ../backends/oss/oss-device.c:88 msgid "Volume" -msgstr "Ses Hacmi" +msgstr "Ses Düzeyi" #: ../backends/oss/oss-device.c:101 msgid "PCM 2" @@ -548,7 +549,7 @@ #: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 #: ../backends/pulse/pulse-source.c:146 msgid "Connector" -msgstr "" +msgstr "Bağlantı" #: ../backends/pulse/pulse-device.c:399 msgid "Profile" diff -Nru libmatemixer-1.12.1/po/uk.po libmatemixer-1.18.0/po/uk.po --- libmatemixer-1.12.1/po/uk.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/uk.po 2017-03-12 15:31:59.000000000 +0000 @@ -3,17 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Oleh , 2014 +# Oleh, 2014 # Shahor , 2015 -# Микола Ткач , 2014-2015 +# Микола Ткач , 2014-2016 +# Микола Ткач , 2017 +# Шаповалов Анатолій Романович , 2015 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-28 09:27+0100\n" -"PO-Revision-Date: 2015-05-09 07:21+0000\n" -"Last-Translator: Микола Ткач \n" -"Language-Team: Ukrainian (http://www.transifex.com/projects/p/MATE/language/uk/)\n" +"POT-Creation-Date: 2015-09-09 12:55+0200\n" +"PO-Revision-Date: 2017-02-23 07:35+0000\n" +"Last-Translator: Микола Ткач \n" +"Language-Team: Ukrainian (http://www.transifex.com/mate/MATE/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -33,17 +35,17 @@ msgid "PCM" msgstr "ІКМ" -#: ../backends/alsa/alsa-constants.c:43 -msgid "Desktop Speaker" -msgstr "Настільний Гучномовець" - #. OSS manual says this should be the beeper, but Linux OSS seems to assign it #. to #. * regular volume control -#: ../backends/alsa/alsa-constants.c:44 ../backends/oss/oss-device.c:95 +#: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 msgid "Speaker" msgstr "Гучномовець" +#: ../backends/alsa/alsa-constants.c:44 +msgid "Desktop Speaker" +msgstr "Настільний Гучномовець" + #: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 #: ../backends/alsa/alsa-constants.c:47 msgid "Front Speaker" @@ -51,11 +53,11 @@ #: ../backends/alsa/alsa-constants.c:48 msgid "Headphone" -msgstr "Навушники" +msgstr "Слухальця" #: ../backends/alsa/alsa-constants.c:49 msgid "Headphone 2" -msgstr "Навушники 2" +msgstr "Слухальця 2" #: ../backends/alsa/alsa-constants.c:50 msgid "Headset" @@ -74,18 +76,18 @@ msgid "CLFE Speaker" msgstr "Гучномовець CLFE" -#: ../backends/alsa/alsa-constants.c:59 +#: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 +msgid "Digital" +msgstr "Цифровий" + +#: ../backends/alsa/alsa-constants.c:60 msgid "Master Mono" msgstr "Загальний Моно" -#: ../backends/alsa/alsa-constants.c:60 +#: ../backends/alsa/alsa-constants.c:61 msgid "Master Digital" msgstr "Загальний Цифровий" -#: ../backends/alsa/alsa-constants.c:61 ../backends/alsa/alsa-constants.c:135 -msgid "Digital" -msgstr "Цифровий" - #: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 msgid "Side Speaker" msgstr "Бічний Гучномовець" @@ -99,11 +101,12 @@ msgstr "Хвиля" #: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 -#: ../backends/alsa/alsa-constants.c:213 +#: ../backends/alsa/alsa-constants.c:215 msgid "Phone" msgstr "Телефон" -#: ../backends/alsa/alsa-constants.c:67 ../backends/oss/oss-device.c:98 +#: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 +#: ../backends/oss/oss-device.c:98 msgid "CD" msgstr "CD" @@ -153,8 +156,9 @@ msgstr "Захоплення" #. Microphone options -#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:156 -#: ../backends/alsa/alsa-constants.c:157 ../backends/oss/oss-device.c:97 +#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 +#: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 +#: ../backends/oss/oss-device.c:97 msgid "Microphone" msgstr "Мікрофон" @@ -185,7 +189,7 @@ #: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 msgid "Headphone Microphone" -msgstr "Мікрофон Навушників" +msgstr "Мікрофон Слухалець" #: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 msgid "Headset Microphone" @@ -193,7 +197,7 @@ #: ../backends/alsa/alsa-constants.c:91 msgid "Inverted Internal Microphone" -msgstr "Інвертований Вбудований Мікрофон" +msgstr "Спротилежнений Вбудований Мікрофон" #: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 #: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 @@ -208,7 +212,8 @@ msgid "Auxiliary" msgstr "Підсилення" -#: ../backends/alsa/alsa-constants.c:96 ../backends/oss/oss-device.c:115 +#: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 +#: ../backends/oss/oss-device.c:115 msgid "Video" msgstr "Видиво" @@ -246,7 +251,7 @@ #: ../backends/alsa/alsa-constants.c:107 msgid "Headphone Microphone Boost" -msgstr "Підсилення Мікрофону Навушників" +msgstr "Підсилення Мікрофону Слухалець" #: ../backends/alsa/alsa-constants.c:108 msgid "Headset Microphone Boost" @@ -256,6 +261,7 @@ msgid "Line In Boost" msgstr "Підсилення Лінійного Входу" +#. Switches #: ../backends/alsa/alsa-constants.c:116 msgid "Analog Output" msgstr "Аналоговий Вихід" @@ -264,18 +270,14 @@ msgid "Analog Source" msgstr "Джерело Звуку" -#: ../backends/alsa/alsa-constants.c:118 ../backends/oss/oss-stream.c:207 +#: ../backends/alsa/alsa-constants.c:118 msgid "Capture Source" msgstr "Джерело Захоплення" -#: ../backends/alsa/alsa-constants.c:119 +#: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 msgid "Input Source" msgstr "Джерело Вхідного Сигналу" -#: ../backends/alsa/alsa-constants.c:120 -msgid "Input Source Select" -msgstr "Вибір Джерела Вхідного Сигналу" - #: ../backends/alsa/alsa-constants.c:121 msgid "Digital Input Source" msgstr "Цифрове Джерело Вхідного Сигналу" @@ -289,17 +291,13 @@ msgstr "Джерело цифрового відтворення" #: ../backends/alsa/alsa-constants.c:124 -msgid "Mono Output Select" -msgstr "Вибір Моно Виходу" +msgid "Mono Output" +msgstr "Моно Вихід" #: ../backends/alsa/alsa-constants.c:125 -msgid "Shared Mic/Line In" +msgid "Shared Microphone/Line In" msgstr "Спільний Мікрофон/Лінійний Вхід" -#: ../backends/alsa/alsa-constants.c:126 -msgid "Microphone Select" -msgstr "Вибір Мікрофону" - #: ../backends/alsa/alsa-constants.c:127 msgid "Microphone Jack Mode" msgstr "Режим мікрофонного роз’єму" @@ -310,9 +308,9 @@ #: ../backends/alsa/alsa-constants.c:129 msgid "Auto-Mute Mode" -msgstr "Режим Автозаглушування" +msgstr "Режим Самозаглушування" -#. (Probably) toggles +#. Toggles #: ../backends/alsa/alsa-constants.c:132 msgid "External Amplifier" msgstr "Зовнішній Підсилювач" @@ -331,7 +329,7 @@ #: ../backends/alsa/alsa-constants.c:137 msgid "Digital Default PCM" -msgstr "Стандартний цифровий РСМ" +msgstr "Стандартний цифровий ІКМ" #: ../backends/alsa/alsa-constants.c:138 msgid "Optical" @@ -339,7 +337,7 @@ #: ../backends/alsa/alsa-constants.c:139 msgid "Auto Gain Control" -msgstr "Автоматичне Регулювання Підсилення" +msgstr "Самочинне Регулювання Підсилення" #: ../backends/alsa/alsa-constants.c:140 msgid "Mix" @@ -350,7 +348,7 @@ msgstr "Моно-змішування" #: ../backends/alsa/alsa-constants.c:142 -msgid "Mic Capture" +msgid "Microphone Capture" msgstr "Захоплення Мікрофону" #: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 @@ -368,11 +366,11 @@ #: ../backends/alsa/alsa-constants.c:152 msgid "Headphones" -msgstr "Навушники" +msgstr "Слухальця" #: ../backends/alsa/alsa-constants.c:153 msgid "Front Panel Headphones" -msgstr "Навушники Передньої Панелі" +msgstr "Слухальця Передньої Панелі" #: ../backends/alsa/alsa-constants.c:158 msgid "Microphone 1" @@ -462,27 +460,27 @@ msgid "Mixer" msgstr "Мікшер" -#: ../backends/alsa/alsa-constants.c:214 +#: ../backends/alsa/alsa-constants.c:216 msgid "Unknown 1" msgstr "Невідомий 1" -#: ../backends/alsa/alsa-constants.c:215 +#: ../backends/alsa/alsa-constants.c:217 msgid "Unknown 2" msgstr "Невідомий 2" -#: ../backends/alsa/alsa-constants.c:216 +#: ../backends/alsa/alsa-constants.c:218 msgid "Enabled" msgstr "Увімк." -#: ../backends/alsa/alsa-constants.c:217 +#: ../backends/alsa/alsa-constants.c:219 msgid "Disabled" msgstr "Вимк." -#: ../backends/alsa/alsa-device.c:610 +#: ../backends/alsa/alsa-device.c:635 msgid "On" msgstr "Увімк." -#: ../backends/alsa/alsa-device.c:611 +#: ../backends/alsa/alsa-device.c:636 msgid "Off" msgstr "Вимк." @@ -549,15 +547,16 @@ msgid "Radio" msgstr "Радіо" +#. Create the port switch +#: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 +#: ../backends/pulse/pulse-source.c:146 +msgid "Connector" +msgstr "З'єднувач" + #: ../backends/pulse/pulse-device.c:399 msgid "Profile" msgstr "Профіль" #: ../backends/pulse/pulse-monitor.c:282 msgid "Peak detect" -msgstr "Визначення максимальної гучності" - -#. Create the port switch -#: ../backends/pulse/pulse-sink.c:149 ../backends/pulse/pulse-source.c:146 -msgid "Port" -msgstr "Порт" +msgstr "Визначення максимальної гучности" diff -Nru libmatemixer-1.12.1/po/uz.po libmatemixer-1.18.0/po/uz.po --- libmatemixer-1.12.1/po/uz.po 1970-01-01 00:00:00.000000000 +0000 +++ libmatemixer-1.18.0/po/uz.po 2017-03-12 15:31:59.000000000 +0000 @@ -0,0 +1,558 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# muzaffar habibullayev , 2016 +msgid "" +msgstr "" +"Project-Id-Version: MATE Desktop Environment\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-09 12:55+0200\n" +"PO-Revision-Date: 2016-05-13 01:05+0000\n" +"Last-Translator: muzaffar habibullayev \n" +"Language-Team: Uzbek (http://www.transifex.com/mate/MATE/language/uz/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. Output controls +#: ../backends/alsa/alsa-constants.c:40 +msgid "Master" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:41 +msgid "Hardware Master" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:42 ../backends/oss/oss-device.c:92 +msgid "PCM" +msgstr "" + +#. OSS manual says this should be the beeper, but Linux OSS seems to assign it +#. to +#. * regular volume control +#: ../backends/alsa/alsa-constants.c:43 ../backends/oss/oss-device.c:95 +msgid "Speaker" +msgstr "Spiker" + +#: ../backends/alsa/alsa-constants.c:44 +msgid "Desktop Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:45 ../backends/alsa/alsa-constants.c:46 +#: ../backends/alsa/alsa-constants.c:47 +msgid "Front Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:48 +msgid "Headphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:49 +msgid "Headphone 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:50 +msgid "Headset" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:51 ../backends/alsa/alsa-constants.c:52 +#: ../backends/alsa/alsa-constants.c:53 ../backends/alsa/alsa-constants.c:54 +msgid "Surround Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:55 ../backends/alsa/alsa-constants.c:56 +msgid "Center Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:57 ../backends/alsa/alsa-constants.c:58 +msgid "CLFE Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:59 ../backends/alsa/alsa-constants.c:135 +msgid "Digital" +msgstr "Raqamli" + +#: ../backends/alsa/alsa-constants.c:60 +msgid "Master Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:61 +msgid "Master Digital" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:62 ../backends/alsa/alsa-constants.c:63 +msgid "Side Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:64 +msgid "Rear Speaker" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:65 +msgid "Wave" +msgstr "To'lqin" + +#: ../backends/alsa/alsa-constants.c:66 ../backends/alsa/alsa-constants.c:99 +#: ../backends/alsa/alsa-constants.c:215 +msgid "Phone" +msgstr "Telefon" + +#: ../backends/alsa/alsa-constants.c:67 ../backends/alsa/alsa-constants.c:213 +#: ../backends/oss/oss-device.c:98 +msgid "CD" +msgstr "CD" + +#: ../backends/alsa/alsa-constants.c:68 +msgid "Music" +msgstr "Musiqa" + +#: ../backends/alsa/alsa-constants.c:69 +msgid "AC97" +msgstr "AC97" + +#: ../backends/alsa/alsa-constants.c:70 ../backends/alsa/alsa-constants.c:71 +msgid "LFE Speaker" +msgstr "LFE Spiker" + +#: ../backends/alsa/alsa-constants.c:72 +msgid "Bass Speaker" +msgstr "Bass Spiker" + +#: ../backends/alsa/alsa-constants.c:73 +msgid "PC Speaker" +msgstr "PC Spiker" + +#: ../backends/alsa/alsa-constants.c:74 ../backends/oss/oss-device.c:91 +msgid "Synth" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:75 +msgid "MIDI" +msgstr "MIDI" + +#: ../backends/alsa/alsa-constants.c:76 +msgid "Synth/MIDI" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:77 ../backends/oss/oss-device.c:89 +msgid "Bass" +msgstr "Bass" + +#: ../backends/alsa/alsa-constants.c:78 ../backends/oss/oss-device.c:90 +msgid "Treble" +msgstr "" + +#. Input controls +#: ../backends/alsa/alsa-constants.c:81 +msgid "Capture" +msgstr "" + +#. Microphone options +#: ../backends/alsa/alsa-constants.c:82 ../backends/alsa/alsa-constants.c:126 +#: ../backends/alsa/alsa-constants.c:156 ../backends/alsa/alsa-constants.c:157 +#: ../backends/oss/oss-device.c:97 +msgid "Microphone" +msgstr "Mikrofon" + +#: ../backends/alsa/alsa-constants.c:83 ../backends/alsa/alsa-constants.c:194 +msgid "Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:84 ../backends/alsa/alsa-constants.c:85 +#: ../backends/alsa/alsa-constants.c:168 ../backends/alsa/alsa-constants.c:169 +#: ../backends/alsa/alsa-constants.c:171 ../backends/alsa/alsa-constants.c:172 +#: ../backends/alsa/alsa-constants.c:173 +msgid "Internal Microphone" +msgstr "Ichki Mikrofon" + +#: ../backends/alsa/alsa-constants.c:86 ../backends/alsa/alsa-constants.c:163 +#: ../backends/alsa/alsa-constants.c:164 +msgid "Front Microphone" +msgstr "Oldi Mikrofon" + +#: ../backends/alsa/alsa-constants.c:87 ../backends/alsa/alsa-constants.c:183 +#: ../backends/alsa/alsa-constants.c:184 +msgid "Rear Microphone" +msgstr "Orqa Mikrofon" + +#: ../backends/alsa/alsa-constants.c:88 ../backends/alsa/alsa-constants.c:167 +msgid "Dock Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:89 ../backends/alsa/alsa-constants.c:165 +msgid "Headphone Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:90 ../backends/alsa/alsa-constants.c:166 +msgid "Headset Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:91 +msgid "Inverted Internal Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:92 ../backends/alsa/alsa-constants.c:93 +#: ../backends/alsa/alsa-constants.c:94 ../backends/alsa/alsa-constants.c:191 +#: ../backends/alsa/alsa-constants.c:192 ../backends/alsa/alsa-constants.c:193 +#: ../backends/alsa/alsa-constants.c:196 ../backends/alsa/alsa-constants.c:197 +#: ../backends/oss/oss-device.c:96 +msgid "Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:95 ../backends/alsa/alsa-constants.c:203 +#: ../backends/alsa/alsa-constants.c:206 +msgid "Auxiliary" +msgstr "Qo'shimcha" + +#: ../backends/alsa/alsa-constants.c:96 ../backends/alsa/alsa-constants.c:214 +#: ../backends/oss/oss-device.c:115 +msgid "Video" +msgstr "Video" + +#: ../backends/alsa/alsa-constants.c:97 ../backends/alsa/alsa-constants.c:201 +msgid "TV Tuner" +msgstr "TV Tuner" + +#: ../backends/alsa/alsa-constants.c:98 ../backends/alsa/alsa-constants.c:202 +msgid "FM" +msgstr "FM" + +#: ../backends/alsa/alsa-constants.c:100 +msgid "Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:101 +msgid "Microphone Boost (+20dB)" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:102 ../backends/alsa/alsa-constants.c:103 +msgid "Internal Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:104 +msgid "Front Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:105 +msgid "Rear Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:106 +msgid "Dock Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:107 +msgid "Headphone Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:108 +msgid "Headset Microphone Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:109 +msgid "Line In Boost" +msgstr "" + +#. Switches +#: ../backends/alsa/alsa-constants.c:116 +msgid "Analog Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:117 +msgid "Analog Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:118 +msgid "Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:119 ../backends/alsa/alsa-constants.c:120 +msgid "Input Source" +msgstr "Kiritish Manbasi" + +#: ../backends/alsa/alsa-constants.c:121 +msgid "Digital Input Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:122 +msgid "PCM Capture Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:123 +msgid "Digital Playback Source" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:124 +msgid "Mono Output" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:125 +msgid "Shared Microphone/Line In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:127 +msgid "Microphone Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:128 +msgid "Surround Jack Mode" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:129 +msgid "Auto-Mute Mode" +msgstr "" + +#. Toggles +#: ../backends/alsa/alsa-constants.c:132 +msgid "External Amplifier" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:133 +msgid "Bass Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:134 +msgid "Capture Boost" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:136 ../backends/alsa/alsa-constants.c:200 +msgid "Digital In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:137 +msgid "Digital Default PCM" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:138 +msgid "Optical" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:139 +msgid "Auto Gain Control" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:140 +msgid "Mix" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:141 +msgid "Mix Mono" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:142 +msgid "Microphone Capture" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:143 ../backends/alsa/alsa-constants.c:198 +msgid "Input 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:144 ../backends/alsa/alsa-constants.c:199 +msgid "Input 2" +msgstr "" + +#. Output options +#: ../backends/alsa/alsa-constants.c:151 +msgid "Speakers" +msgstr "Spikerlar" + +#: ../backends/alsa/alsa-constants.c:152 +msgid "Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:153 +msgid "Front Panel Headphones" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:158 +msgid "Microphone 1" +msgstr "Mikrofon 1" + +#: ../backends/alsa/alsa-constants.c:159 +msgid "Microphone 2" +msgstr "Mikrofon 2" + +#: ../backends/alsa/alsa-constants.c:160 ../backends/alsa/alsa-constants.c:161 +#: ../backends/alsa/alsa-constants.c:162 +msgid "Microphone In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:170 +msgid "Internal Microphone 1" +msgstr "Ichki Mikrofon 1" + +#: ../backends/alsa/alsa-constants.c:174 +msgid "Internal Digital Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:175 ../backends/alsa/alsa-constants.c:178 +msgid "Digital Microphone" +msgstr "Raqamli Mikrofon" + +#: ../backends/alsa/alsa-constants.c:176 +msgid "Digital Microphone 1" +msgstr "Raqamli Mikrofon 1" + +#: ../backends/alsa/alsa-constants.c:177 +msgid "Digital Microphone 2" +msgstr "Raqamli Mikrofon 2" + +#: ../backends/alsa/alsa-constants.c:179 ../backends/alsa/alsa-constants.c:180 +#: ../backends/alsa/alsa-constants.c:181 ../backends/alsa/alsa-constants.c:182 +msgid "External Microphone" +msgstr "Tashqi Mikrofon" + +#: ../backends/alsa/alsa-constants.c:185 +msgid "Camera Microphone" +msgstr "Kamera Mikrofoni" + +#. Other options +#: ../backends/alsa/alsa-constants.c:188 +msgid "Analog" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:189 +msgid "Analog In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:190 +msgid "Analog Inputs" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:195 +msgid "Line In/Microphone" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:204 ../backends/alsa/alsa-constants.c:205 +msgid "Auxiliary In" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:207 +msgid "Auxiliary 0" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:208 +msgid "Auxiliary 1" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:209 +msgid "Auxiliary 2" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:210 +msgid "Auxiliary 3" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:211 +msgid "Docking Station" +msgstr "" + +#. Recording monitor +#: ../backends/alsa/alsa-constants.c:212 ../backends/oss/oss-device.c:100 +msgid "Mixer" +msgstr "" + +#: ../backends/alsa/alsa-constants.c:216 +msgid "Unknown 1" +msgstr "Nomaʼlum 1" + +#: ../backends/alsa/alsa-constants.c:217 +msgid "Unknown 2" +msgstr "Nomaʼlum 2" + +#: ../backends/alsa/alsa-constants.c:218 +msgid "Enabled" +msgstr "Yoqilgan" + +#: ../backends/alsa/alsa-constants.c:219 +msgid "Disabled" +msgstr "Oʻchirilgan" + +#: ../backends/alsa/alsa-device.c:635 +msgid "On" +msgstr "Yoqish" + +#: ../backends/alsa/alsa-device.c:636 +msgid "Off" +msgstr "O'chirish" + +#: ../backends/oss/oss-backend.c:403 +#, c-format +msgid "OSS Mixer %d" +msgstr "" + +#: ../backends/oss/oss-device.c:88 +msgid "Volume" +msgstr "Ovoz" + +#: ../backends/oss/oss-device.c:101 +msgid "PCM 2" +msgstr "PCM 2" + +#. Recording level (master input) +#: ../backends/oss/oss-device.c:103 +msgid "Record" +msgstr "Yozib olish" + +#: ../backends/oss/oss-device.c:104 +msgid "Input Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:105 +msgid "Output Gain" +msgstr "" + +#: ../backends/oss/oss-device.c:106 +msgid "Line In 1" +msgstr "" + +#: ../backends/oss/oss-device.c:107 +msgid "Line In 2" +msgstr "" + +#: ../backends/oss/oss-device.c:108 +msgid "Line In 3" +msgstr "" + +#. These 3 can be attached to either digital input or output +#: ../backends/oss/oss-device.c:110 +msgid "Digital 1" +msgstr "" + +#: ../backends/oss/oss-device.c:111 +msgid "Digital 2" +msgstr "" + +#: ../backends/oss/oss-device.c:112 +msgid "Digital 3" +msgstr "" + +#: ../backends/oss/oss-device.c:113 +msgid "Phone In" +msgstr "" + +#: ../backends/oss/oss-device.c:114 +msgid "Phone Out" +msgstr "" + +#: ../backends/oss/oss-device.c:116 +msgid "Radio" +msgstr "Radio" + +#. Create the port switch +#: ../backends/oss/oss-stream.c:208 ../backends/pulse/pulse-sink.c:149 +#: ../backends/pulse/pulse-source.c:146 +msgid "Connector" +msgstr "" + +#: ../backends/pulse/pulse-device.c:399 +msgid "Profile" +msgstr "Profil" + +#: ../backends/pulse/pulse-monitor.c:282 +msgid "Peak detect" +msgstr "" diff -Nru libmatemixer-1.12.1/po/zh_CN.po libmatemixer-1.18.0/po/zh_CN.po --- libmatemixer-1.12.1/po/zh_CN.po 2015-11-29 18:19:24.000000000 +0000 +++ libmatemixer-1.18.0/po/zh_CN.po 2017-03-12 15:31:59.000000000 +0000 @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# 白铭骢 , 2014 -# liushuyu011 , 2014 -# 白铭骢 , 2015 +# Mingcong Bai , 2014 +# liushuyu011 , 2014 +# Mingcong Bai , 2015 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-09-09 12:55+0200\n" "PO-Revision-Date: 2015-10-23 20:12+0000\n" -"Last-Translator: 白铭骢 \n" +"Last-Translator: Mingcong Bai \n" "Language-Team: Chinese (China) (http://www.transifex.com/mate/MATE/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n"