Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package alsa-utils for openSUSE:Factory checked in at 2026-01-03 17:26:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/alsa-utils (Old) and /work/SRC/openSUSE:Factory/.alsa-utils.new.1928 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "alsa-utils" Sat Jan 3 17:26:08 2026 rev:152 rq:1325112 version:1.2.15.1 Changes: -------- --- /work/SRC/openSUSE:Factory/alsa-utils/alsa-utils.changes 2025-12-09 12:47:59.093936006 +0100 +++ /work/SRC/openSUSE:Factory/.alsa-utils.new.1928/alsa-utils.changes 2026-01-03 17:26:15.340876037 +0100 @@ -1,0 +2,16 @@ +Fri Jan 2 11:41:53 UTC 2026 - Takashi Iwai <[email protected]> + +- Update to alsa-utils 1.2.15.1: + * alsactl: fix build when in subdirectory + * aplay: add missing break before the default case +- Backport upstream fixes for alsactl regression: + 0001-alsactl-add-missing-call-to-clean-card-specific-conf.patch + 0002-alsactl-fix-sequence-to-clean-card-specific-config-f.patch + +------------------------------------------------------------------- +Tue Dec 16 14:25:01 UTC 2025 - Takashi Iwai <[email protected]> + +- Create /var/lib/alsa via tmpfiles.d for Immutable Mode + (jsc#PED-14848) + +------------------------------------------------------------------- Old: ---- alsa-utils-1.2.15.tar.bz2 alsa-utils-1.2.15.tar.bz2.sig New: ---- 0001-alsactl-add-missing-call-to-clean-card-specific-conf.patch 0002-alsactl-fix-sequence-to-clean-card-specific-config-f.patch alsa-utils-1.2.15.1.tar.bz2 alsa-utils-1.2.15.1.tar.bz2.sig ----------(New B)---------- New:- Backport upstream fixes for alsactl regression: 0001-alsactl-add-missing-call-to-clean-card-specific-conf.patch 0002-alsactl-fix-sequence-to-clean-card-specific-config-f.patch New: 0001-alsactl-add-missing-call-to-clean-card-specific-conf.patch 0002-alsactl-fix-sequence-to-clean-card-specific-config-f.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ alsa-utils.spec ++++++ --- /var/tmp/diff_new_pack.qisW6k/_old 2026-01-03 17:26:17.000944109 +0100 +++ /var/tmp/diff_new_pack.qisW6k/_new 2026-01-03 17:26:17.004944273 +0100 @@ -1,7 +1,7 @@ # # spec file for package alsa-utils # -# Copyright (c) 2025 SUSE LLC and contributors +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -26,7 +26,7 @@ %endif Name: alsa-utils -Version: 1.2.15 +Version: 1.2.15.1 Release: 0 Summary: Advanced Linux Sound Architecture Utilities License: GPL-2.0-or-later @@ -44,6 +44,8 @@ # from https://www.alsa-project.org/files/pub/gpg-release-key-v1.txt Source6: alsa-utils.keyring # upstream fixes +Patch1: 0001-alsactl-add-missing-call-to-clean-card-specific-conf.patch +Patch2: 0002-alsactl-fix-sequence-to-clean-card-specific-config-f.patch # downstream fixes Patch100: alsa-info-no-update-for-distro-script.patch Patch101: alsa-utils-configure-version-revert.patch @@ -90,6 +92,8 @@ %prep %setup -q +%patch -P 1 -p1 +%patch -P 2 -p1 %patch -P 100 -p1 %if 0%{?do_autoreconf} || 0%{?build_from_git} %patch -P 101 -p1 @@ -135,23 +139,21 @@ rmdir --ignore-fail-on-non-empty -p %{buildroot}%{_mandir}/*/man* %{buildroot}%{_mandir}/man* %find_lang %{name} --all-name ln -s alsa-restore.service %{buildroot}%{_unitdir}/alsasound.service -mkdir -p %{buildroot}%{_localstatedir}/lib/alsa # systemd unit files install -c -m 0644 %{SOURCE3} %{buildroot}%{_unitdir} ln -s ../sound-extra.service %{buildroot}%{_unitdir}/sound.target.wants mkdir -p %{buildroot}%{_prefix}/lib/systemd/scripts install -c -m 0755 %{SOURCE5} %{buildroot}%{_prefix}/lib/systemd/scripts +# install tmpfiles.d for /var/lib/alsa directory creation +mkdir -p %{buildroot}%{_prefix}/lib/tmpfiles.d +echo 'd /var/lib/alsa 0755 - - -' > %{buildroot}%{_prefix}/lib/tmpfiles.d/alsa-utils.conf %pre %service_add_pre sound-extra.service %post %service_add_post sound-extra.service -# migrate the old asound.state -if [ ! -f %{_localstatedir}/lib/alsa/asound.state ]; then - test -f /etc/asound.state && \ - cp -a /etc/asound.state %{_localstatedir}/lib/alsa/asound.state -fi +%tmpfiles_create alsa-utils.conf exit 0 %preun @@ -180,7 +182,7 @@ %{_unitdir}/*.service %{_unitdir}/sound.target.wants %{_prefix}/lib/systemd/scripts -%{_localstatedir}/lib/alsa +%{_prefix}/lib/tmpfiles.d/alsa-utils.conf %files -n alsabat %license COPYING ++++++ 0001-alsactl-add-missing-call-to-clean-card-specific-conf.patch ++++++ >From 120568fbb5b2ea5d4359c8e37f6d47d712e14698 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela <[email protected]> Date: Thu, 1 Jan 2026 17:51:25 +0100 Subject: [PATCH 1/2] alsactl: add missing call to clean card specific config files The card specific configuration files created at runtime must be removed before UCM fixed boot sequence in the standard restore operation. Fixes: https://github.com/alsa-project/alsa-lib/issues/492 Signed-off-by: Jaroslav Kysela <[email protected]> --- alsactl/state.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/alsactl/state.c b/alsactl/state.c index 2942f3ffd741..7c6e6d1facb9 100644 --- a/alsactl/state.c +++ b/alsactl/state.c @@ -1790,6 +1790,12 @@ int load_state(const char *cfgdir, const char *file, finalerr = lock_fd; continue; } + err = snd_card_clean_cfgdir(cfgdir, iter.card); + if (err < 0) { + initfailed(iter.card, "cfgdir", err); + finalerr = err; + continue; + } /* error is ignored */ err = init_ucm(initflags | FLAG_UCM_FBOOT, iter.card); /* return code 1 and 2 -> postpone initialization */ -- 2.52.0 ++++++ 0002-alsactl-fix-sequence-to-clean-card-specific-config-f.patch ++++++ >From 254528c42706524ff82378cf740d07b472cba2cc Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela <[email protected]> Date: Thu, 1 Jan 2026 18:39:38 +0100 Subject: [PATCH 2/2] alsactl: fix sequence to clean card specific config files for UCM For UCM, card-specific config files should be removed only when the fixed boot flag is set or if the card is not the primary card in a given card group. Signed-off-by: Jaroslav Kysela <[email protected]> --- alsactl/alsactl.h | 2 +- alsactl/init_parse.c | 2 +- alsactl/init_ucm.c | 25 ++++++++++++++++++++----- alsactl/state.c | 16 +++++++++------- 4 files changed, 31 insertions(+), 14 deletions(-) diff --git a/alsactl/alsactl.h b/alsactl/alsactl.h index 2aefb899c30b..9f1728458883 100644 --- a/alsactl/alsactl.h +++ b/alsactl/alsactl.h @@ -68,7 +68,7 @@ int snd_card_iterator_error(struct snd_card_iterator *iter); int load_configuration(const char *file, snd_config_t **top, int *open_failed); int init(const char *cfgdir, const char *file, int flags, const char *cardname); -int init_ucm(int flags, int cardno); +int init_ucm(const char *cfgdir, int flags, int cardno); bool validate_boot_time(long long boot_time, long long current_time, long long synctime); int read_boot_params(snd_ctl_t *handle, long long *boot_time, long long *sync_time, long long *restore_time, long long *primary_card); int write_boot_params(snd_ctl_t *handle, long long boot_time, long long sync_time, long long restore_time, long long primary_card); diff --git a/alsactl/init_parse.c b/alsactl/init_parse.c index a34cb0e3f9c8..a437392b6061 100644 --- a/alsactl/init_parse.c +++ b/alsactl/init_parse.c @@ -1761,7 +1761,7 @@ int init(const char *cfgdir, const char *filename, int flags, const char *cardna lasterr = err; continue; } - err = init_ucm(flags, iter.card); + err = init_ucm(cfgdir, flags, iter.card); if (err == 0 || card_state_is_okay(err)) continue; err = init_space(&space, iter.card); diff --git a/alsactl/init_ucm.c b/alsactl/init_ucm.c index 60967c407be1..c16842739e17 100644 --- a/alsactl/init_ucm.c +++ b/alsactl/init_ucm.c @@ -137,11 +137,17 @@ static int reopen_ucm_manager(snd_use_case_mgr_t **uc_mgr, int cardno, int flags * Helper: Execute boot sequences * Returns: 0 on success, negative on error */ -static int execute_boot_sequences(snd_use_case_mgr_t *uc_mgr, int flags, bool fixed_boot) +static int execute_boot_sequences(const char *cfgdir, snd_use_case_mgr_t *uc_mgr, + int cardno, int flags, bool fixed_boot) { int err = 0; if (fixed_boot) { + err = snd_card_clean_cfgdir(cfgdir, cardno); + if (err < 0) { + dbg("ucm clean cfgdir: %d", err); + return err; + } err = snd_use_case_set(uc_mgr, "_fboot", NULL); dbg("ucm _fboot: %d", err); if (err == -ENOENT && (flags & FLAG_UCM_BOOT) != 0) { @@ -170,7 +176,7 @@ static int execute_boot_sequences(snd_use_case_mgr_t *uc_mgr, int flags, bool fi * Handle also card groups. * Returns: 0 = success, 1 = skip this card (e.g. linked or in-sync), negative on error */ -int init_ucm(int flags, int cardno) +int init_ucm(const char *cfgdir, int flags, int cardno) { snd_use_case_mgr_t *uc_mgr; char id[64]; @@ -268,7 +274,7 @@ int init_ucm(int flags, int cardno) } _execute_boot: - if (flags & FLAG_UCM_FBOOT) + if (fixed_boot) restored = true; if (boot_card_group) { @@ -277,7 +283,7 @@ _execute_boot: goto _error; } - err = execute_boot_sequences(uc_mgr, flags, fixed_boot); + err = execute_boot_sequences(cfgdir, uc_mgr, cardno, flags, fixed_boot); if (err < 0) goto _error; @@ -286,6 +292,15 @@ _execute_boot: _error: snd_use_case_mgr_close(uc_mgr); _fin: + if (fixed_boot && primary_card >= 0 && primary_card != cardno) { + /* remove card specific configuration files for other cards in group */ + int clean_err = snd_card_clean_cfgdir(cfgdir, cardno); + if (clean_err < 0) { + dbg("ucm clean cfgdir: %d", clean_err); + if (err >= 0) + err = clean_err; + } + } if (lock_fd >= 0) group_state_unlock(lock_fd, groupfile); if (ctl) @@ -298,7 +313,7 @@ _fin: #else -int init_ucm(int flags, int cardno) +int init_ucm(const char *cfgdir, int flags, int cardno) { return -ENXIO; } diff --git a/alsactl/state.c b/alsactl/state.c index 7c6e6d1facb9..79bd309987e7 100644 --- a/alsactl/state.c +++ b/alsactl/state.c @@ -1790,18 +1790,20 @@ int load_state(const char *cfgdir, const char *file, finalerr = lock_fd; continue; } - err = snd_card_clean_cfgdir(cfgdir, iter.card); - if (err < 0) { - initfailed(iter.card, "cfgdir", err); - finalerr = err; - continue; - } /* error is ignored */ - err = init_ucm(initflags | FLAG_UCM_FBOOT, iter.card); + err = init_ucm(cfgdir, initflags | FLAG_UCM_FBOOT, iter.card); /* return code 1 and 2 -> postpone initialization */ if (card_state_is_okay(err)) { export_card_state_set(iter.card, err); goto unlock_card; + } else if (err < 0) { + /* no UCM - remove card specific configuration */ + err = snd_card_clean_cfgdir(cfgdir, iter.card); + if (err < 0) { + initfailed(iter.card, "cfgdir", err); + finalerr = err; + continue; + } } /* do a check if controls matches state file */ if (do_init && set_controls(iter.card, config, 0)) { -- 2.52.0 ++++++ alsa-utils-1.2.15.tar.bz2 -> alsa-utils-1.2.15.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alsa-utils-1.2.15/alsactl/Makefile.am new/alsa-utils-1.2.15.1/alsactl/Makefile.am --- old/alsa-utils-1.2.15/alsactl/Makefile.am 2025-12-07 20:42:00.000000000 +0100 +++ new/alsa-utils-1.2.15.1/alsactl/Makefile.am 2025-12-19 11:32:02.000000000 +0100 @@ -47,6 +47,7 @@ edit = \ extratest=$$(echo ' $(ALSACTL_UDEV_EXTRATEST)' | sed -e 's/__/ /g' -e 's/^ $$//'); \ args=$$(echo ' $(ALSACTL_UDEV_ARGS)' | sed -e 's/__/ /g' -e 's/^ $$//'); \ + mkdir -p conf; \ $(SED) -r -e 's,@sbindir\@,$(sbindir),g' \ -e 's,@mydatadir\@,$(mydatadir),g' \ -e 's,@daemonswitch\@,$(ALSACTL_DAEMONSWITCH),g' \ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alsa-utils-1.2.15/alsactl/Makefile.in new/alsa-utils-1.2.15.1/alsactl/Makefile.in --- old/alsa-utils-1.2.15/alsactl/Makefile.in 2025-12-07 22:03:35.000000000 +0100 +++ new/alsa-utils-1.2.15.1/alsactl/Makefile.in 2025-12-19 11:34:43.000000000 +0100 @@ -484,6 +484,7 @@ edit = \ extratest=$$(echo ' $(ALSACTL_UDEV_EXTRATEST)' | sed -e 's/__/ /g' -e 's/^ $$//'); \ args=$$(echo ' $(ALSACTL_UDEV_ARGS)' | sed -e 's/__/ /g' -e 's/^ $$//'); \ + mkdir -p conf; \ $(SED) -r -e 's,@sbindir\@,$(sbindir),g' \ -e 's,@mydatadir\@,$(mydatadir),g' \ -e 's,@daemonswitch\@,$(ALSACTL_DAEMONSWITCH),g' \ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alsa-utils-1.2.15/aplay/aplay.c new/alsa-utils-1.2.15.1/aplay/aplay.c --- old/alsa-utils-1.2.15/aplay/aplay.c 2025-12-07 20:42:00.000000000 +0100 +++ new/alsa-utils-1.2.15.1/aplay/aplay.c 2025-12-19 11:32:02.000000000 +0100 @@ -2731,6 +2731,7 @@ case SND_PCM_FORMAT_S32_LE: case SND_PCM_FORMAT_FLOAT_LE: case SND_PCM_FORMAT_S24_3LE: + break; default: _format: error(_("Wave doesn't support %s format..."), snd_pcm_format_name(hwparams.format)); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alsa-utils-1.2.15/configure new/alsa-utils-1.2.15.1/configure --- old/alsa-utils-1.2.15/configure 2025-12-07 22:03:38.000000000 +0100 +++ new/alsa-utils-1.2.15.1/configure 2025-12-19 11:34:46.000000000 +0100 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.72 for alsa-utils 1.2.15. +# Generated by GNU Autoconf 2.72 for alsa-utils 1.2.15.1. # # # Copyright (C) 1992-1996, 1998-2017, 2020-2023 Free Software Foundation, @@ -611,8 +611,8 @@ # Identity of this package. PACKAGE_NAME='alsa-utils' PACKAGE_TARNAME='alsa-utils' -PACKAGE_VERSION='1.2.15' -PACKAGE_STRING='alsa-utils 1.2.15' +PACKAGE_VERSION='1.2.15.1' +PACKAGE_STRING='alsa-utils 1.2.15.1' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1482,7 +1482,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -'configure' configures alsa-utils 1.2.15 to adapt to many kinds of systems. +'configure' configures alsa-utils 1.2.15.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1553,7 +1553,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of alsa-utils 1.2.15:";; + short | recursive ) echo "Configuration of alsa-utils 1.2.15.1:";; esac cat <<\_ACEOF @@ -1728,7 +1728,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -alsa-utils configure 1.2.15 +alsa-utils configure 1.2.15.1 generated by GNU Autoconf 2.72 Copyright (C) 2023 Free Software Foundation, Inc. @@ -2035,7 +2035,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by alsa-utils $as_me 1.2.15, which was +It was created by alsa-utils $as_me 1.2.15.1, which was generated by GNU Autoconf 2.72. Invocation command line was $ $0$ac_configure_args_raw @@ -3331,7 +3331,7 @@ # Define the identity of the package. PACKAGE='alsa-utils' - VERSION='1.2.15' + VERSION='1.2.15.1' printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h @@ -20684,7 +20684,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by alsa-utils $as_me 1.2.15, which was +This file was extended by alsa-utils $as_me 1.2.15.1, which was generated by GNU Autoconf 2.72. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -20752,7 +20752,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ -alsa-utils config.status 1.2.15 +alsa-utils config.status 1.2.15.1 configured by $0, generated by GNU Autoconf 2.72, with options \\"\$ac_cs_config\\" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alsa-utils-1.2.15/configure.ac new/alsa-utils-1.2.15.1/configure.ac --- old/alsa-utils-1.2.15/configure.ac 2025-12-07 22:03:30.000000000 +0100 +++ new/alsa-utils-1.2.15.1/configure.ac 2025-12-19 11:34:38.000000000 +0100 @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT(alsa-utils, 1.2.15) +AC_INIT(alsa-utils, 1.2.15.1) AC_CONFIG_SRCDIR([aplay/aplay.c]) AC_PREFIX_DEFAULT(/usr) AM_INIT_AUTOMAKE([subdir-objects]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alsa-utils-1.2.15/include/version.h new/alsa-utils-1.2.15.1/include/version.h --- old/alsa-utils-1.2.15/include/version.h 2025-12-07 22:03:54.000000000 +0100 +++ new/alsa-utils-1.2.15.1/include/version.h 2025-12-19 11:35:04.000000000 +0100 @@ -8,5 +8,5 @@ #define SND_UTIL_VERSION ((SND_UTIL_MAJOR<<16)|\ (SND_UTIL_MINOR<<8)|\ SND_UTIL_SUBMINOR) -#define SND_UTIL_VERSION_STR "1.2.15" +#define SND_UTIL_VERSION_STR "1.2.15.1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alsa-utils-1.2.15/po/alsa-utils.pot new/alsa-utils-1.2.15.1/po/alsa-utils.pot --- old/alsa-utils-1.2.15/po/alsa-utils.pot 2025-12-07 22:04:05.000000000 +0100 +++ new/alsa-utils-1.2.15.1/po/alsa-utils.pot 2025-12-19 11:35:15.000000000 +0100 @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: alsa-utils 1.2.15\n" +"Project-Id-Version: alsa-utils 1.2.15.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-07 22:04+0100\n" +"POT-Creation-Date: 2025-12-19 11:35+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <[email protected]>\n" @@ -695,7 +695,7 @@ msgid "Warning: format is changed to S16_BE\n" msgstr "" -#: aplay/aplay.c:1258 aplay/aplay.c:2434 aplay/aplay.c:2441 aplay/aplay.c:2963 +#: aplay/aplay.c:1258 aplay/aplay.c:2434 aplay/aplay.c:2441 aplay/aplay.c:2964 msgid "read error" msgstr "" @@ -948,7 +948,7 @@ #: aplay/aplay.c:2384 aplay/aplay.c:2613 aplay/aplay.c:2618 aplay/aplay.c:2670 #: aplay/aplay.c:2679 aplay/aplay.c:2686 aplay/aplay.c:2696 aplay/aplay.c:2702 -#: aplay/aplay.c:2766 aplay/aplay.c:2796 aplay/aplay.c:2810 +#: aplay/aplay.c:2767 aplay/aplay.c:2797 aplay/aplay.c:2811 msgid "write error" msgstr "" @@ -984,50 +984,50 @@ msgid "unknown blocktype %d. terminate." msgstr "" -#: aplay/aplay.c:2736 +#: aplay/aplay.c:2737 #, c-format msgid "Wave doesn't support %s format..." msgstr "" -#: aplay/aplay.c:2790 +#: aplay/aplay.c:2791 #, c-format msgid "Sparc Audio doesn't support %s format..." msgstr "" -#: aplay/aplay.c:2865 +#: aplay/aplay.c:2866 msgid "Playing" msgstr "" -#: aplay/aplay.c:2865 +#: aplay/aplay.c:2866 msgid "Recording" msgstr "" -#: aplay/aplay.c:2869 +#: aplay/aplay.c:2870 #, c-format msgid "Rate %d Hz, " msgstr "" -#: aplay/aplay.c:2871 +#: aplay/aplay.c:2872 #, c-format msgid "Mono" msgstr "" -#: aplay/aplay.c:2873 +#: aplay/aplay.c:2874 #, c-format msgid "Stereo" msgstr "" -#: aplay/aplay.c:2875 +#: aplay/aplay.c:2876 #, c-format msgid "Channels %i" msgstr "" -#: aplay/aplay.c:3482 +#: aplay/aplay.c:3483 #, c-format msgid "You need to specify %u files" msgstr "" -#: aplay/aplay.c:3535 +#: aplay/aplay.c:3536 #, c-format msgid "You need to specify %d files" msgstr "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alsa-utils-1.2.15/po/de.po new/alsa-utils-1.2.15.1/po/de.po --- old/alsa-utils-1.2.15/po/de.po 2025-12-07 22:04:05.000000000 +0100 +++ new/alsa-utils-1.2.15.1/po/de.po 2025-12-19 11:35:15.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: alsa-utils 1.0.23\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-07 22:04+0100\n" +"POT-Creation-Date: 2025-12-19 11:35+0100\n" "PO-Revision-Date: 2010-11-09 21:12+0100\n" "Last-Translator: Clemens Ladisch <[email protected]>\n" "Language-Team: German\n" @@ -757,7 +757,7 @@ msgid "Warning: format is changed to S16_BE\n" msgstr "Warnung: benutztes Format ist S16_BE\n" -#: aplay/aplay.c:1258 aplay/aplay.c:2434 aplay/aplay.c:2441 aplay/aplay.c:2963 +#: aplay/aplay.c:1258 aplay/aplay.c:2434 aplay/aplay.c:2441 aplay/aplay.c:2964 msgid "read error" msgstr "Lesefehler" @@ -1034,7 +1034,7 @@ #: aplay/aplay.c:2384 aplay/aplay.c:2613 aplay/aplay.c:2618 aplay/aplay.c:2670 #: aplay/aplay.c:2679 aplay/aplay.c:2686 aplay/aplay.c:2696 aplay/aplay.c:2702 -#: aplay/aplay.c:2766 aplay/aplay.c:2796 aplay/aplay.c:2810 +#: aplay/aplay.c:2767 aplay/aplay.c:2797 aplay/aplay.c:2811 msgid "write error" msgstr "Schreibfehler" @@ -1071,51 +1071,51 @@ msgid "unknown blocktype %d. terminate." msgstr "Unbekannter Block-Typ %d. Abbruch." -#: aplay/aplay.c:2736 +#: aplay/aplay.c:2737 #, c-format msgid "Wave doesn't support %s format..." msgstr "Format %s wird in WAVE nicht unterstützt ..." -#: aplay/aplay.c:2790 +#: aplay/aplay.c:2791 #, c-format msgid "Sparc Audio doesn't support %s format..." msgstr "Format %s wird in Sparc-Audio nicht unterstützt ..." -#: aplay/aplay.c:2865 +#: aplay/aplay.c:2866 msgid "Playing" msgstr "Wiedergabe:" -#: aplay/aplay.c:2865 +#: aplay/aplay.c:2866 msgid "Recording" msgstr "Aufnahme:" -#: aplay/aplay.c:2869 +#: aplay/aplay.c:2870 #, c-format msgid "Rate %d Hz, " msgstr "Rate: %d Hz, " -#: aplay/aplay.c:2871 +#: aplay/aplay.c:2872 #, c-format msgid "Mono" msgstr "mono" -#: aplay/aplay.c:2873 +#: aplay/aplay.c:2874 #, c-format msgid "Stereo" msgstr "stereo" -#: aplay/aplay.c:2875 +#: aplay/aplay.c:2876 #, c-format msgid "Channels %i" msgstr "%i Kanäle" -#: aplay/aplay.c:3482 +#: aplay/aplay.c:3483 #, fuzzy, c-format #| msgid "You need to specify %d files" msgid "You need to specify %u files" msgstr "Es werden %d Dateien benötigt." -#: aplay/aplay.c:3535 +#: aplay/aplay.c:3536 #, c-format msgid "You need to specify %d files" msgstr "Es werden %d Dateien benötigt." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alsa-utils-1.2.15/po/eu.po new/alsa-utils-1.2.15.1/po/eu.po --- old/alsa-utils-1.2.15/po/eu.po 2025-12-07 22:04:05.000000000 +0100 +++ new/alsa-utils-1.2.15.1/po/eu.po 2025-12-19 11:35:15.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: alsa-utils 1.0.23\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-07 22:04+0100\n" +"POT-Creation-Date: 2025-12-19 11:35+0100\n" "PO-Revision-Date: 2020-07-26 12:01+0200\n" "Last-Translator: Porrumentzio <[email protected]>\n" "Language-Team: Librezale <[email protected]>\n" @@ -826,7 +826,7 @@ msgid "Warning: format is changed to S16_BE\n" msgstr "Abisua: formatua S16_BE-ra aldatu da\n" -#: aplay/aplay.c:1258 aplay/aplay.c:2434 aplay/aplay.c:2441 aplay/aplay.c:2963 +#: aplay/aplay.c:1258 aplay/aplay.c:2434 aplay/aplay.c:2441 aplay/aplay.c:2964 msgid "read error" msgstr "irakurtze errorea" @@ -1104,7 +1104,7 @@ #: aplay/aplay.c:2384 aplay/aplay.c:2613 aplay/aplay.c:2618 aplay/aplay.c:2670 #: aplay/aplay.c:2679 aplay/aplay.c:2686 aplay/aplay.c:2696 aplay/aplay.c:2702 -#: aplay/aplay.c:2766 aplay/aplay.c:2796 aplay/aplay.c:2810 +#: aplay/aplay.c:2767 aplay/aplay.c:2797 aplay/aplay.c:2811 msgid "write error" msgstr "idazte errorea" @@ -1140,51 +1140,51 @@ msgid "unknown blocktype %d. terminate." msgstr "%d bloke-mota ezezaguna. Amaitu." -#: aplay/aplay.c:2736 +#: aplay/aplay.c:2737 #, c-format msgid "Wave doesn't support %s format..." msgstr "Wave-ek ez du %s formatua onartzen..." -#: aplay/aplay.c:2790 +#: aplay/aplay.c:2791 #, c-format msgid "Sparc Audio doesn't support %s format..." msgstr "Sparc Audio-k ez du %s formatua onartzen..." -#: aplay/aplay.c:2865 +#: aplay/aplay.c:2866 msgid "Playing" msgstr "Erreproduzitzen" -#: aplay/aplay.c:2865 +#: aplay/aplay.c:2866 msgid "Recording" msgstr "Grabatzen" -#: aplay/aplay.c:2869 +#: aplay/aplay.c:2870 #, c-format msgid "Rate %d Hz, " msgstr "Tasa %d Hz, " -#: aplay/aplay.c:2871 +#: aplay/aplay.c:2872 #, c-format msgid "Mono" msgstr "Mono" -#: aplay/aplay.c:2873 +#: aplay/aplay.c:2874 #, c-format msgid "Stereo" msgstr "Estereo" -#: aplay/aplay.c:2875 +#: aplay/aplay.c:2876 #, c-format msgid "Channels %i" msgstr "Kanalak %i" -#: aplay/aplay.c:3482 +#: aplay/aplay.c:3483 #, fuzzy, c-format #| msgid "You need to specify %d files" msgid "You need to specify %u files" msgstr "%d fitxategiak zehaztu behar dituzu" -#: aplay/aplay.c:3535 +#: aplay/aplay.c:3536 #, c-format msgid "You need to specify %d files" msgstr "%d fitxategiak zehaztu behar dituzu" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alsa-utils-1.2.15/po/fr.po new/alsa-utils-1.2.15.1/po/fr.po --- old/alsa-utils-1.2.15/po/fr.po 2025-12-07 22:04:06.000000000 +0100 +++ new/alsa-utils-1.2.15.1/po/fr.po 2025-12-19 11:35:15.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: alsa-utils 1.0.23\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-07 22:04+0100\n" +"POT-Creation-Date: 2025-12-19 11:35+0100\n" "PO-Revision-Date: 2020-07-08 16:05+0100\n" "Last-Translator: Olivier Humbert <[email protected]>\n" "Language-Team: French <[email protected]>\n" @@ -828,7 +828,7 @@ msgid "Warning: format is changed to S16_BE\n" msgstr "Avertissement : le format est changé en S16_BE\n" -#: aplay/aplay.c:1258 aplay/aplay.c:2434 aplay/aplay.c:2441 aplay/aplay.c:2963 +#: aplay/aplay.c:1258 aplay/aplay.c:2434 aplay/aplay.c:2441 aplay/aplay.c:2964 msgid "read error" msgstr "erreur de lecture" @@ -1109,7 +1109,7 @@ #: aplay/aplay.c:2384 aplay/aplay.c:2613 aplay/aplay.c:2618 aplay/aplay.c:2670 #: aplay/aplay.c:2679 aplay/aplay.c:2686 aplay/aplay.c:2696 aplay/aplay.c:2702 -#: aplay/aplay.c:2766 aplay/aplay.c:2796 aplay/aplay.c:2810 +#: aplay/aplay.c:2767 aplay/aplay.c:2797 aplay/aplay.c:2811 msgid "write error" msgstr "erreur en écriture" @@ -1145,51 +1145,51 @@ msgid "unknown blocktype %d. terminate." msgstr "type de bloc %d inconnu. fin." -#: aplay/aplay.c:2736 +#: aplay/aplay.c:2737 #, c-format msgid "Wave doesn't support %s format..." msgstr "Le format wave %s n'est pas supporté..." -#: aplay/aplay.c:2790 +#: aplay/aplay.c:2791 #, c-format msgid "Sparc Audio doesn't support %s format..." msgstr "Le format %s Sparc Audio n'est pas supporté..." -#: aplay/aplay.c:2865 +#: aplay/aplay.c:2866 msgid "Playing" msgstr "Lecture" -#: aplay/aplay.c:2865 +#: aplay/aplay.c:2866 msgid "Recording" msgstr "Capture" -#: aplay/aplay.c:2869 +#: aplay/aplay.c:2870 #, c-format msgid "Rate %d Hz, " msgstr "Fréquence %d Hz, " -#: aplay/aplay.c:2871 +#: aplay/aplay.c:2872 #, c-format msgid "Mono" msgstr "" -#: aplay/aplay.c:2873 +#: aplay/aplay.c:2874 #, c-format msgid "Stereo" msgstr "Stéréo" -#: aplay/aplay.c:2875 +#: aplay/aplay.c:2876 #, c-format msgid "Channels %i" msgstr "%i Canaux" -#: aplay/aplay.c:3482 +#: aplay/aplay.c:3483 #, fuzzy, c-format #| msgid "You need to specify %d files" msgid "You need to specify %u files" msgstr "Vous devez spécifier %d fichiers" -#: aplay/aplay.c:3535 +#: aplay/aplay.c:3536 #, c-format msgid "You need to specify %d files" msgstr "Vous devez spécifier %d fichiers" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alsa-utils-1.2.15/po/ja.po new/alsa-utils-1.2.15.1/po/ja.po --- old/alsa-utils-1.2.15/po/ja.po 2025-12-07 22:04:07.000000000 +0100 +++ new/alsa-utils-1.2.15.1/po/ja.po 2025-12-19 11:35:15.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: alsa-utils 1.0.9a\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-07 22:04+0100\n" +"POT-Creation-Date: 2025-12-19 11:35+0100\n" "PO-Revision-Date: 2009-05-27 15:08+0200\n" "Last-Translator: Takashi Iwai <[email protected]>\n" "Language-Team: Japanese\n" @@ -751,7 +751,7 @@ msgid "Warning: format is changed to S16_BE\n" msgstr "警告: フォーマットは S16_BE に変更されます\n" -#: aplay/aplay.c:1258 aplay/aplay.c:2434 aplay/aplay.c:2441 aplay/aplay.c:2963 +#: aplay/aplay.c:1258 aplay/aplay.c:2434 aplay/aplay.c:2441 aplay/aplay.c:2964 msgid "read error" msgstr "リードエラー" @@ -1008,7 +1008,7 @@ #: aplay/aplay.c:2384 aplay/aplay.c:2613 aplay/aplay.c:2618 aplay/aplay.c:2670 #: aplay/aplay.c:2679 aplay/aplay.c:2686 aplay/aplay.c:2696 aplay/aplay.c:2702 -#: aplay/aplay.c:2766 aplay/aplay.c:2796 aplay/aplay.c:2810 +#: aplay/aplay.c:2767 aplay/aplay.c:2797 aplay/aplay.c:2811 msgid "write error" msgstr "書込エラー" @@ -1044,51 +1044,51 @@ msgid "unknown blocktype %d. terminate." msgstr "未知のブロックタイプ %d: 終了します。" -#: aplay/aplay.c:2736 +#: aplay/aplay.c:2737 #, c-format msgid "Wave doesn't support %s format..." msgstr "WAVE は %s フォーマットをサポートしません..." -#: aplay/aplay.c:2790 +#: aplay/aplay.c:2791 #, c-format msgid "Sparc Audio doesn't support %s format..." msgstr "Sparc オーディオは %s フォーマットをサポートしません..." -#: aplay/aplay.c:2865 +#: aplay/aplay.c:2866 msgid "Playing" msgstr "再生中" -#: aplay/aplay.c:2865 +#: aplay/aplay.c:2866 msgid "Recording" msgstr "録音中" -#: aplay/aplay.c:2869 +#: aplay/aplay.c:2870 #, c-format msgid "Rate %d Hz, " msgstr "レート %d Hz, " -#: aplay/aplay.c:2871 +#: aplay/aplay.c:2872 #, c-format msgid "Mono" msgstr "モノラル" -#: aplay/aplay.c:2873 +#: aplay/aplay.c:2874 #, c-format msgid "Stereo" msgstr "ステレオ" -#: aplay/aplay.c:2875 +#: aplay/aplay.c:2876 #, c-format msgid "Channels %i" msgstr "チャネル数 %i" -#: aplay/aplay.c:3482 +#: aplay/aplay.c:3483 #, fuzzy, c-format #| msgid "You need to specify %d files" msgid "You need to specify %u files" msgstr "%d 個のファイルを指定してください" -#: aplay/aplay.c:3535 +#: aplay/aplay.c:3536 #, c-format msgid "You need to specify %d files" msgstr "%d 個のファイルを指定してください" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alsa-utils-1.2.15/po/ka.po new/alsa-utils-1.2.15.1/po/ka.po --- old/alsa-utils-1.2.15/po/ka.po 2025-12-07 22:04:07.000000000 +0100 +++ new/alsa-utils-1.2.15.1/po/ka.po 2025-12-19 11:35:16.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: alsa-utils 1.2.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-07 22:04+0100\n" +"POT-Creation-Date: 2025-12-19 11:35+0100\n" "PO-Revision-Date: 2022-09-09 10:28+0200\n" "Last-Translator: Temuri Doghonadze <[email protected]>\n" "Language-Team: Georgian <(nothing)>\n" @@ -825,7 +825,7 @@ msgid "Warning: format is changed to S16_BE\n" msgstr "გაფრთხილება: ფორმატი S16_BE-ზე შეიცვალა\n" -#: aplay/aplay.c:1258 aplay/aplay.c:2434 aplay/aplay.c:2441 aplay/aplay.c:2963 +#: aplay/aplay.c:1258 aplay/aplay.c:2434 aplay/aplay.c:2441 aplay/aplay.c:2964 msgid "read error" msgstr "წაკითხვის შეცდომა" @@ -1091,7 +1091,7 @@ #: aplay/aplay.c:2384 aplay/aplay.c:2613 aplay/aplay.c:2618 aplay/aplay.c:2670 #: aplay/aplay.c:2679 aplay/aplay.c:2686 aplay/aplay.c:2696 aplay/aplay.c:2702 -#: aplay/aplay.c:2766 aplay/aplay.c:2796 aplay/aplay.c:2810 +#: aplay/aplay.c:2767 aplay/aplay.c:2797 aplay/aplay.c:2811 msgid "write error" msgstr "ჩაწერის შეცდომა" @@ -1127,50 +1127,50 @@ msgid "unknown blocktype %d. terminate." msgstr "ბლოკის უცნობი ტიპი %d. მუშაობის დასასრული." -#: aplay/aplay.c:2736 +#: aplay/aplay.c:2737 #, c-format msgid "Wave doesn't support %s format..." msgstr "Waved-ს %s ფორმატის მხარდაჭერა არ გააჩნია..." -#: aplay/aplay.c:2790 +#: aplay/aplay.c:2791 #, c-format msgid "Sparc Audio doesn't support %s format..." msgstr "Sparc-ის აუდიოს %s ფორმატის მხარდაჭერა არ გააჩნია..." -#: aplay/aplay.c:2865 +#: aplay/aplay.c:2866 msgid "Playing" msgstr "მიმდინარეობს დაკვრა" -#: aplay/aplay.c:2865 +#: aplay/aplay.c:2866 msgid "Recording" msgstr "ჩაწერა" -#: aplay/aplay.c:2869 +#: aplay/aplay.c:2870 #, c-format msgid "Rate %d Hz, " msgstr "სიხშირე %d ჰც, " -#: aplay/aplay.c:2871 +#: aplay/aplay.c:2872 #, c-format msgid "Mono" msgstr "მონო" -#: aplay/aplay.c:2873 +#: aplay/aplay.c:2874 #, c-format msgid "Stereo" msgstr "სტერეო" -#: aplay/aplay.c:2875 +#: aplay/aplay.c:2876 #, c-format msgid "Channels %i" msgstr "არხები %i" -#: aplay/aplay.c:3482 +#: aplay/aplay.c:3483 #, c-format msgid "You need to specify %u files" msgstr "საჭიროა %u ფაილის მითითება" -#: aplay/aplay.c:3535 +#: aplay/aplay.c:3536 #, c-format msgid "You need to specify %d files" msgstr "საჭიროა %d ფაილის მითითება" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alsa-utils-1.2.15/po/ko.po new/alsa-utils-1.2.15.1/po/ko.po --- old/alsa-utils-1.2.15/po/ko.po 2025-12-07 22:04:07.000000000 +0100 +++ new/alsa-utils-1.2.15.1/po/ko.po 2025-12-19 11:35:16.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: alsa-utils 1.0.23\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-07 22:04+0100\n" +"POT-Creation-Date: 2025-12-19 11:35+0100\n" "PO-Revision-Date: 2023-05-25 17:58+0900\n" "Last-Translator: Yi Yunseok <[email protected]>\n" "Language-Team: Librezale <[email protected]>\n" @@ -809,7 +809,7 @@ msgid "Warning: format is changed to S16_BE\n" msgstr "주의: 포맷이 S16_BE로 변경됨\n" -#: aplay/aplay.c:1258 aplay/aplay.c:2434 aplay/aplay.c:2441 aplay/aplay.c:2963 +#: aplay/aplay.c:1258 aplay/aplay.c:2434 aplay/aplay.c:2441 aplay/aplay.c:2964 msgid "read error" msgstr "읽기 오류" @@ -1078,7 +1078,7 @@ #: aplay/aplay.c:2384 aplay/aplay.c:2613 aplay/aplay.c:2618 aplay/aplay.c:2670 #: aplay/aplay.c:2679 aplay/aplay.c:2686 aplay/aplay.c:2696 aplay/aplay.c:2702 -#: aplay/aplay.c:2766 aplay/aplay.c:2796 aplay/aplay.c:2810 +#: aplay/aplay.c:2767 aplay/aplay.c:2797 aplay/aplay.c:2811 msgid "write error" msgstr "쓰기 오류" @@ -1114,51 +1114,51 @@ msgid "unknown blocktype %d. terminate." msgstr "알 수 없는 블록 유형 %d. 끝냅니다." -#: aplay/aplay.c:2736 +#: aplay/aplay.c:2737 #, c-format msgid "Wave doesn't support %s format..." msgstr "Wave는 %s 형식을 지원하지 않습니다..." -#: aplay/aplay.c:2790 +#: aplay/aplay.c:2791 #, c-format msgid "Sparc Audio doesn't support %s format..." msgstr "스파크 오디오는 %s 형식을 지원하지 않습니다..." -#: aplay/aplay.c:2865 +#: aplay/aplay.c:2866 msgid "Playing" msgstr "재생 중" -#: aplay/aplay.c:2865 +#: aplay/aplay.c:2866 msgid "Recording" msgstr "녹음 중" -#: aplay/aplay.c:2869 +#: aplay/aplay.c:2870 #, c-format msgid "Rate %d Hz, " msgstr "%d Hz 속도, " -#: aplay/aplay.c:2871 +#: aplay/aplay.c:2872 #, c-format msgid "Mono" msgstr "모노" -#: aplay/aplay.c:2873 +#: aplay/aplay.c:2874 #, c-format msgid "Stereo" msgstr "스테레오" -#: aplay/aplay.c:2875 +#: aplay/aplay.c:2876 #, c-format msgid "Channels %i" msgstr "채널 %i" -#: aplay/aplay.c:3482 +#: aplay/aplay.c:3483 #, fuzzy, c-format #| msgid "You need to specify %d files" msgid "You need to specify %u files" msgstr "%d 파일을 지정해야 함" -#: aplay/aplay.c:3535 +#: aplay/aplay.c:3536 #, c-format msgid "You need to specify %d files" msgstr "%d 파일을 지정해야 함" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alsa-utils-1.2.15/po/sk.po new/alsa-utils-1.2.15.1/po/sk.po --- old/alsa-utils-1.2.15/po/sk.po 2025-12-07 22:04:07.000000000 +0100 +++ new/alsa-utils-1.2.15.1/po/sk.po 2025-12-19 11:35:16.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: alsa-utils 1.0.23\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-07 22:04+0100\n" +"POT-Creation-Date: 2025-12-19 11:35+0100\n" "PO-Revision-Date: 2020-10-18 15:13+0200\n" "Last-Translator: Jose Riha <[email protected]>\n" "Language-Team: Slovak\n" @@ -829,7 +829,7 @@ msgid "Warning: format is changed to S16_BE\n" msgstr "Varovanie: formát bol zmenený na S16_BE\n" -#: aplay/aplay.c:1258 aplay/aplay.c:2434 aplay/aplay.c:2441 aplay/aplay.c:2963 +#: aplay/aplay.c:1258 aplay/aplay.c:2434 aplay/aplay.c:2441 aplay/aplay.c:2964 msgid "read error" msgstr "chyba pri čítaní" @@ -1106,7 +1106,7 @@ #: aplay/aplay.c:2384 aplay/aplay.c:2613 aplay/aplay.c:2618 aplay/aplay.c:2670 #: aplay/aplay.c:2679 aplay/aplay.c:2686 aplay/aplay.c:2696 aplay/aplay.c:2702 -#: aplay/aplay.c:2766 aplay/aplay.c:2796 aplay/aplay.c:2810 +#: aplay/aplay.c:2767 aplay/aplay.c:2797 aplay/aplay.c:2811 msgid "write error" msgstr "Chyba pri zápise" @@ -1142,50 +1142,50 @@ msgid "unknown blocktype %d. terminate." msgstr "Neznámy typ bloku %d. Končím." -#: aplay/aplay.c:2736 +#: aplay/aplay.c:2737 #, c-format msgid "Wave doesn't support %s format..." msgstr "Wave nepodporuje formát %s..." -#: aplay/aplay.c:2790 +#: aplay/aplay.c:2791 #, c-format msgid "Sparc Audio doesn't support %s format..." msgstr "Sparc audio nepodporuje formát %s..." -#: aplay/aplay.c:2865 +#: aplay/aplay.c:2866 msgid "Playing" msgstr "Prehrávam" -#: aplay/aplay.c:2865 +#: aplay/aplay.c:2866 msgid "Recording" msgstr "Nahrávam" -#: aplay/aplay.c:2869 +#: aplay/aplay.c:2870 #, c-format msgid "Rate %d Hz, " msgstr "Frekvencia: %d Hz, " -#: aplay/aplay.c:2871 +#: aplay/aplay.c:2872 #, c-format msgid "Mono" msgstr "Mono" -#: aplay/aplay.c:2873 +#: aplay/aplay.c:2874 #, c-format msgid "Stereo" msgstr "Stereo" -#: aplay/aplay.c:2875 +#: aplay/aplay.c:2876 #, c-format msgid "Channels %i" msgstr "%i Kanály" -#: aplay/aplay.c:3482 +#: aplay/aplay.c:3483 #, c-format msgid "You need to specify %u files" msgstr "Musíte zadať %u súborov" -#: aplay/aplay.c:3535 +#: aplay/aplay.c:3536 #, c-format msgid "You need to specify %d files" msgstr "Musíte zadať %d súborov."
