[pulseaudio-commits] [SCM] PulseAudio Sound Server branch, master-tx, updated. v0.9.17
Lennart Poettering
gitmailer-noreply at 0pointer.de
Thu Sep 10 19:18:34 PDT 2009
This is an automated email from the git hooks/post-receive script. It was
generated because of a push to the "PulseAudio Sound Server" repository.
The master-tx branch has been updated
from 64e8eb791e1a9ec45c0d186b8f9e6742525aae88 (commit)
- Log -----------------------------------------------------------------
180ef1e position-event-sounds: apply volume factor after, not before resampling
a015d56 core: add an additional volume factor that is applied after resampling took place
6fa2445 position-event-sounds: honour window position if set, position both vertically and horizontally
5919337 proplist: define properties for storing window position
42b795b doxygen: don't confuse doxygen with spurious ..
4e3f7d5 doxygen: add rtclock.h to documentation
297f318 doxygen: drop references to pacat.c and paplay.c as examples since tehy are not useful as such and in the case of paplay not even existant anymore
7e43371 build-sys: increase library version
a7ab04f i18n: run make update-po
2f11884 i18n: add ja to LINGUAS
67bed86 Merge remote branch 'origin/master-tx'
80b4457 alsa: properly report suspension error codes
bb36bb4 alsa: properly convert sample buffer sizes
5460967 libpulse: add new error code PA_ERR_BUSY
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 2 +-
doxygen/doxygen.conf.in | 2 +-
po/LINGUAS | 1 +
po/as.po | 198 ++++++++++++----------------
po/bn_IN.po | 32 ++++--
po/ca.po | 10 ++-
po/cs.po | 10 ++-
po/de.po | 10 ++-
po/de_CH.po | 10 ++-
po/el.po | 10 ++-
po/es.po | 10 ++-
po/fi.po | 10 ++-
po/fr.po | 10 ++-
po/gu.po | 29 +++-
po/hi.po | 29 +++-
po/it.po | 10 ++-
po/ja.po | 10 ++-
po/kn.po | 10 ++-
po/ml.po | 32 ++++--
po/mr.po | 26 +++-
po/nl.po | 10 ++-
po/or.po | 10 ++-
po/pa.po | 20 ++-
po/pl.po | 10 ++-
po/pt.po | 10 ++-
po/pt_BR.po | 10 ++-
po/sr.po | 10 ++-
po/sr at latin.po | 10 ++-
po/sv.po | 10 ++-
po/ta.po | 35 ++++--
po/te.po | 26 +++-
po/uk.po | 10 ++-
po/zh_CN.po | 10 ++-
src/modules/alsa/alsa-sink.c | 23 ++--
src/modules/alsa/alsa-source.c | 22 ++--
src/modules/alsa/alsa-util.c | 6 +-
src/modules/module-position-event-sounds.c | 57 +++++++--
src/pulse/context.h | 6 -
src/pulse/def.h | 1 +
src/pulse/error.c | 4 +-
src/pulse/proplist.h | 20 +++-
src/pulse/pulseaudio.h | 16 ++-
src/pulsecore/sink-input.c | 59 +++++++-
src/pulsecore/sink-input.h | 7 +-
44 files changed, 607 insertions(+), 256 deletions(-)
-----------------------------------------------------------------------
commit 54609675e5bf50eaf405c8259129d074135de20a
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Sep 11 01:20:45 2009 +0200
libpulse: add new error code PA_ERR_BUSY
diff --git a/src/pulse/def.h b/src/pulse/def.h
index 08399ca..1a7da97 100644
--- a/src/pulse/def.h
+++ b/src/pulse/def.h
@@ -394,6 +394,7 @@ enum {
PA_ERR_NOTIMPLEMENTED, /**< Missing implementation. \since 0.9.15 */
PA_ERR_FORKED, /**< The caller forked without calling execve() and tried to reuse the context. \since 0.9.15 */
PA_ERR_IO, /**< An IO error happened. \since 0.9.16 */
+ PA_ERR_BUSY, /**< Device or resource busy. \since 0.9.17 */
PA_ERR_MAX /**< Not really an error but the first invalid error code */
};
diff --git a/src/pulse/error.c b/src/pulse/error.c
index 93a13fc..e827699 100644
--- a/src/pulse/error.c
+++ b/src/pulse/error.c
@@ -64,7 +64,9 @@ const char*pa_strerror(int error) {
[PA_ERR_NOEXTENSION] = N_("No such extension"),
[PA_ERR_OBSOLETE] = N_("Obsolete functionality"),
[PA_ERR_NOTIMPLEMENTED] = N_("Missing implementation"),
- [PA_ERR_FORKED] = N_("Client forked")
+ [PA_ERR_FORKED] = N_("Client forked"),
+ [PA_ERR_IO] = N_("Input/Output error"),
+ [PA_ERR_BUSY] = N_("Device or resource busy")
};
pa_init_i18n();
commit bb36bb4bbe1ee01fb95debdca79d9769851a06da
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Sep 11 01:21:46 2009 +0200
alsa: properly convert sample buffer sizes
diff --git a/src/modules/alsa/alsa-util.c b/src/modules/alsa/alsa-util.c
index f934285..56d60df 100644
--- a/src/modules/alsa/alsa-util.c
+++ b/src/modules/alsa/alsa-util.c
@@ -275,11 +275,11 @@ int pa_alsa_set_hw_params(
}
if (_use_tsched && tsched_size > 0) {
- _buffer_size = pa_convert_size(tsched_size, ss, &_ss);
+ _buffer_size = (snd_pcm_uframes_t) (((uint64_t) tsched_size * _ss.rate) / ss->rate);
_period_size = _buffer_size;
} else {
- _period_size = pa_convert_size(_period_size, ss, &_ss);
- _buffer_size = pa_convert_size(_buffer_size, ss, &_ss);
+ _period_size = (snd_pcm_uframes_t) (((uint64_t) _period_size * _ss.rate) / ss->rate);
+ _buffer_size = (snd_pcm_uframes_t) (((uint64_t) _buffer_size * _ss.rate) / ss->rate);
}
if (_buffer_size > 0 || _period_size > 0) {
commit 80b44574765738532bc688e5d6fa5b40dc61402b
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Sep 11 01:22:10 2009 +0200
alsa: properly report suspension error codes
diff --git a/src/modules/alsa/alsa-sink.c b/src/modules/alsa/alsa-sink.c
index 76cbe46..22e88b4 100644
--- a/src/modules/alsa/alsa-sink.c
+++ b/src/modules/alsa/alsa-sink.c
@@ -1011,7 +1011,7 @@ fail:
u->pcm_handle = NULL;
}
- return -1;
+ return -PA_ERR_IO;
}
/* Called from IO context */
@@ -1035,28 +1035,33 @@ static int sink_process_msg(pa_msgobject *o, int code, void *data, int64_t offse
switch ((pa_sink_state_t) PA_PTR_TO_UINT(data)) {
- case PA_SINK_SUSPENDED:
+ case PA_SINK_SUSPENDED: {
+ int r;
+
pa_assert(PA_SINK_IS_OPENED(u->sink->thread_info.state));
- if (suspend(u) < 0)
- return -1;
+ if ((r = suspend(u)) < 0)
+ return r;
break;
+ }
case PA_SINK_IDLE:
- case PA_SINK_RUNNING:
+ case PA_SINK_RUNNING: {
+ int r;
if (u->sink->thread_info.state == PA_SINK_INIT) {
if (build_pollfd(u) < 0)
- return -1;
+ return -PA_ERR_IO;
}
if (u->sink->thread_info.state == PA_SINK_SUSPENDED) {
- if (unsuspend(u) < 0)
- return -1;
+ if ((r = unsuspend(u)) < 0)
+ return r;
}
break;
+ }
case PA_SINK_UNLINKED:
case PA_SINK_INIT:
@@ -1084,7 +1089,7 @@ static int sink_set_state_cb(pa_sink *s, pa_sink_state_t new_state) {
reserve_done(u);
else if (old_state == PA_SINK_SUSPENDED && PA_SINK_IS_OPENED(new_state))
if (reserve_init(u, u->device_name) < 0)
- return -1;
+ return -PA_ERR_BUSY;
return 0;
}
diff --git a/src/modules/alsa/alsa-source.c b/src/modules/alsa/alsa-source.c
index 88f2d8a..fa3ac0a 100644
--- a/src/modules/alsa/alsa-source.c
+++ b/src/modules/alsa/alsa-source.c
@@ -959,7 +959,7 @@ fail:
u->pcm_handle = NULL;
}
- return -1;
+ return -PA_ERR_IO;
}
static int source_process_msg(pa_msgobject *o, int code, void *data, int64_t offset, pa_memchunk *chunk) {
@@ -982,30 +982,34 @@ static int source_process_msg(pa_msgobject *o, int code, void *data, int64_t off
switch ((pa_source_state_t) PA_PTR_TO_UINT(data)) {
- case PA_SOURCE_SUSPENDED:
+ case PA_SOURCE_SUSPENDED: {
+ int r;
pa_assert(PA_SOURCE_IS_OPENED(u->source->thread_info.state));
- if (suspend(u) < 0)
- return -1;
+ if ((r = suspend(u)) < 0)
+ return r;
break;
+ }
case PA_SOURCE_IDLE:
- case PA_SOURCE_RUNNING:
+ case PA_SOURCE_RUNNING: {
+ int r;
if (u->source->thread_info.state == PA_SOURCE_INIT) {
if (build_pollfd(u) < 0)
- return -1;
+ return -PA_ERR_IO;
snd_pcm_start(u->pcm_handle);
}
if (u->source->thread_info.state == PA_SOURCE_SUSPENDED) {
- if (unsuspend(u) < 0)
- return -1;
+ if ((r = unsuspend(u)) < 0)
+ return r;
}
break;
+ }
case PA_SOURCE_UNLINKED:
case PA_SOURCE_INIT:
@@ -1033,7 +1037,7 @@ static int source_set_state_cb(pa_source *s, pa_source_state_t new_state) {
reserve_done(u);
else if (old_state == PA_SINK_SUSPENDED && PA_SINK_IS_OPENED(new_state))
if (reserve_init(u, u->device_name) < 0)
- return -1;
+ return -PA_ERR_BUSY;
return 0;
}
commit 67bed868f6c88577a6e8a5513f51113e80955d4a
Merge: 80b4457 64e8eb7
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Sep 11 01:24:36 2009 +0200
Merge remote branch 'origin/master-tx'
commit 2f11884611ae5d917bd31f7327a8b9d670d8c318
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Sep 11 01:25:22 2009 +0200
i18n: add ja to LINGUAS
diff --git a/po/LINGUAS b/po/LINGUAS
index 72a770f..14414f4 100644
--- a/po/LINGUAS
+++ b/po/LINGUAS
@@ -11,6 +11,7 @@ fr
gu
hi
it
+ja
kn
ml
mr
commit a7ab04fd7c8bcec554188dffb9a522e995efab99
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Sep 11 01:27:18 2009 +0200
i18n: run make update-po
diff --git a/po/as.po b/po/as.po
index 4e2a9e4..a7aa34e 100644
--- a/po/as.po
+++ b/po/as.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio.master-tx.as\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-06 08:42+0000\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-08 21:04+0530\n"
"Last-Translator: Amitakhya Phukan <aphukan at fedoraproject.org>\n"
"Language-Team: Assamese\n"
@@ -17,13 +17,12 @@ msgstr ""
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-#: ../src/modules/alsa/alsa-util.c:775 ../src/pulsecore/sink.c:2629
+#: ../src/modules/alsa/alsa-util.c:858 ../src/pulsecore/sink.c:2629
#, c-format
-
msgid "%s %s"
msgstr "%s %s"
-#: ../src/modules/alsa/alsa-util.c:1023
+#: ../src/modules/alsa/alsa-util.c:1106
#, c-format
msgid ""
"snd_pcm_avail() returned a value that is exceptionally large: %lu bytes (%lu "
@@ -35,7 +34,7 @@ msgstr ""
"à¦
তি সমà§à¦à§± à¦à¦à¦à§ ALSA à¦à¦¾à¦²à¦ '%s' ৰ à¦à¦à¦¾ বাঠ। à¦
নà§à¦à§à§°à¦¹ à¦à§°à¦¿ à¦à¦ সমসà§à¦¯à¦¾ ALSA বিà¦à¦¾à¦¶à¦à¦ "
"à¦à¦¨à¦¾à¦à¦ ।"
-#: ../src/modules/alsa/alsa-util.c:1064
+#: ../src/modules/alsa/alsa-util.c:1147
#, c-format
msgid ""
"snd_pcm_delay() returned a value that is exceptionally large: %li bytes (%s%"
@@ -47,7 +46,7 @@ msgstr ""
"à¦
তি সমà§à¦à§± à¦à¦à¦à§ ALSA à¦à¦¾à¦²à¦ '%s' ৰ à¦à¦à¦¾ বাঠ। à¦
নà§à¦à§à§°à¦¹ à¦à§°à¦¿ à¦à¦ সমসà§à¦¯à¦¾ ALSA বিà¦à¦¾à¦¶à¦à¦ "
"à¦à¦¨à¦¾à¦à¦ ।"
-#: ../src/modules/alsa/alsa-util.c:1111
+#: ../src/modules/alsa/alsa-util.c:1194
#, c-format
msgid ""
"snd_pcm_mmap_begin() returned a value that is exceptionally large: %lu bytes "
@@ -59,13 +58,19 @@ msgstr ""
"à¦
তি সমà§à¦à§± à¦à¦à¦à§ ALSA à¦à¦¾à¦²à¦ '%s' ৰ à¦à¦à¦¾ বাঠ। à¦
নà§à¦à§à§°à¦¹ à¦à§°à¦¿ à¦à¦ সমসà§à¦¯à¦¾ ALSA বিà¦à¦¾à¦¶à¦à¦ "
"à¦à¦¨à¦¾à¦à¦ ।"
-#: ../src/modules/module-ladspa-sink.c:49
+#: ../src/modules/module-always-sink.c:39
+msgid "Always keeps at least one sink loaded even if it's a null one"
+msgstr ""
+
+#: ../src/modules/module-always-sink.c:83
+msgid "Dummy Output"
+msgstr ""
+#: ../src/modules/module-ladspa-sink.c:49
msgid "Virtual LADSPA sink"
msgstr "à¦à¦¾à¦°à§à¦à§à§à¦¾à¦² LADSPA sink"
#: ../src/modules/module-ladspa-sink.c:53
-
msgid ""
"sink_name=<name for the sink> sink_properties=<properties for the sink> "
"master=<name of sink to filter> format=<sample format> rate=<sample rate> "
@@ -79,6 +84,14 @@ msgstr ""
"plugin name> label=<ladspa plugin label> control=<comma seperated list of "
"input control values>"
+#: ../src/modules/module-null-sink.c:55
+msgid "Clocked NULL sink"
+msgstr ""
+
+#: ../src/modules/module-null-sink.c:291
+msgid "Null Output"
+msgstr ""
+
#: ../src/pulsecore/sink.c:2613
msgid "Internal Audio"
msgstr "à¦à¦à§à¦¯à¦¨à§à¦¤à§°à§à¦£ à¦
'ডিà¦
'"
@@ -188,7 +201,8 @@ msgstr "ডà§à¦®à¦¨ kill à¦à§°à¦¿à¦¬à¦²à§ বà§à¦¯à§°à§à¦¥: %s"
msgid ""
"This program is not intended to be run as root (unless --system is "
"specified)."
-msgstr "root পৰিà¦à§à§ à¦à¦ পà§à§°à§à¦à§à§°à¦¾à¦® সà¦à§à¦à¦¾à¦²à¦¿à¦¤ হà§à§±à¦¾ à¦à¦à¦¿à¦¤ নহৠ(ন'হ'লৠ--system à¦à¦²à§à¦²à¦¿à¦à¦¿à¦¤ হà§) ।"
+msgstr ""
+"root পৰিà¦à§à§ à¦à¦ পà§à§°à§à¦à§à§°à¦¾à¦® সà¦à§à¦à¦¾à¦²à¦¿à¦¤ হà§à§±à¦¾ à¦à¦à¦¿à¦¤ নহৠ(ন'হ'লৠ--system à¦à¦²à§à¦²à¦¿à¦à¦¿à¦¤ হà§) ।"
#: ../src/daemon/main.c:568
msgid "Root privileges required."
@@ -212,7 +226,8 @@ msgstr "পà§à§°à¦£à¦¾à¦²à§ মà§à¦¡à¦¤ à¦à¦²à¦¿à¦à§, SHM মà§à¦¡ বল
#: ../src/daemon/main.c:589
msgid "Running in system mode, forcibly disabling exit idle time!"
-msgstr "পà§à§°à¦£à¦¾à¦²à§ মà§à¦¡à¦¤ à¦à¦²à¦¿à¦à§, à¦à¦¾à¦® নà¦à§°à¦¾ সমà§à§° পৰা পà§à§°à¦¸à§à¦¥à¦¾à¦¨ à¦à§°à¦¾ বলপà§à§°à§à¦¬à¦ নিষà§à¦à§à§°à¦¿à§ à¦à§°à¦¾ হà§à¦à§!"
+msgstr ""
+"পà§à§°à¦£à¦¾à¦²à§ মà§à¦¡à¦¤ à¦à¦²à¦¿à¦à§, à¦à¦¾à¦® নà¦à§°à¦¾ সমà§à§° পৰা পà§à§°à¦¸à§à¦¥à¦¾à¦¨ à¦à§°à¦¾ বলপà§à§°à§à¦¬à¦ নিষà§à¦à§à§°à¦¿à§ à¦à§°à¦¾ হà§à¦à§!"
#: ../src/daemon/main.c:616
msgid "Failed to acquire stdio."
@@ -228,7 +243,7 @@ msgstr "pipe বিফল: %s"
msgid "fork() failed: %s"
msgstr "fork() বিফল: %s"
-#: ../src/daemon/main.c:641 ../src/utils/pacat.c:505
+#: ../src/daemon/main.c:641 ../src/utils/pacat.c:504
#, c-format
msgid "read() failed: %s"
msgstr "read() বিফল: %s"
@@ -339,7 +354,6 @@ msgid "Running in system mode: %s"
msgstr "পà§à§°à¦£à¦¾à¦²à§ মà§à¦¡à¦¤ à¦à¦²à¦¿à¦à§: %s"
#: ../src/daemon/main.c:787
-
msgid ""
"OK, so you are running PA in system mode. Please note that you most likely "
"shouldn't be doing that.\n"
@@ -379,7 +393,8 @@ msgstr "ডà§à¦®à¦¨ à¦à§°à¦®à§à¦ à¦à§°à¦¿à¦¬à¦²à§ বà§à¦¯à§°à§à¦¥ ।"
#: ../src/daemon/main.c:904
msgid "Daemon startup without any loaded modules, refusing to work."
-msgstr "তà§à¦²à¦¿ লà§à§±à¦¾ মডিà¦à¦² নà§à¦¹à§à§±à¦¾à¦à§ ডà§à¦®à¦¨ à¦à§°à¦®à§à¦ à¦à§°à¦¾ হà§à¦à§, à¦à§à¦¨à§ à¦à¦¾à¦® সà¦à§à¦à¦¾à¦²à¦¨ à¦à§°à¦¾ সমà§à¦à§± নহৠ।"
+msgstr ""
+"তà§à¦²à¦¿ লà§à§±à¦¾ মডিà¦à¦² নà§à¦¹à§à§±à¦¾à¦à§ ডà§à¦®à¦¨ à¦à§°à¦®à§à¦ à¦à§°à¦¾ হà§à¦à§, à¦à§à¦¨à§ à¦à¦¾à¦® সà¦à§à¦à¦¾à¦²à¦¨ à¦à§°à¦¾ সমà§à¦à§± নহৠ।"
#: ../src/daemon/main.c:921
msgid "Daemon startup complete."
@@ -638,7 +653,6 @@ msgstr "à¦à¦¬à¦¾à§° তà§à¦²à¦¿ লà§à§±à¦¾ হ'ব: %s\n"
#: ../src/daemon/dumpmodules.c:75
#, c-format
-
msgid "DEPRECATION WARNING: %s\n"
msgstr "à¦
বà¦à¦¿à¦¤ à¦à¦°à¦¾à¦° সতরà§à¦à¦¬à¦¾à¦°à§à¦¤à¦¾: %s\n"
@@ -726,7 +740,6 @@ msgid "### Read from configuration file: %s ###\n"
msgstr "### à¦à¦¿à¦¹à§à¦¨à¦¿à¦¤ বিনà§à¦¯à¦¾à¦¸ নথিপতà§à§°à§° পৰা পà§à¦¾ হ'ব: %s ###\n"
#: ../src/daemon/caps.c:62
-
msgid "Cleaning up privileges."
msgstr "à¦
ধিà¦à¦¾à¦° বরà§à¦à¦¨ à¦à¦°à¦¾ হà¦à§à¦à§à¥¤"
@@ -943,8 +956,8 @@ msgid "Top Rear Right"
msgstr "à¦à¦ªà§°à¦¤ পিà¦à¦¤ সà§à¦à¦«à¦¾à¦²à§"
#: ../src/pulse/channelmap.c:484 ../src/pulse/sample.c:170
-#: ../src/pulse/volume.c:285 ../src/pulse/volume.c:311
-#: ../src/pulse/volume.c:331 ../src/pulse/volume.c:361
+#: ../src/pulse/volume.c:295 ../src/pulse/volume.c:321
+#: ../src/pulse/volume.c:341 ../src/pulse/volume.c:371
msgid "(invalid)"
msgstr "(à¦
বà§à¦§)"
@@ -1072,6 +1085,14 @@ msgstr "à¦
নà§à¦ªà¦¸à§à¦¥à¦¿à¦¤ বাসà§à¦¤à¦¬à¦¾à§à¦¨"
msgid "Client forked"
msgstr "à¦à§à§°à¦¾à¦¹à¦ ফৰà§à¦ à¦à§°à¦¾ হà§à¦à§"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
@@ -1135,12 +1156,10 @@ msgid "Failed to drain stream: %s"
msgstr "সà§à¦à§à¦°à¦¿à¦® ডà§à¦°à§à¦à¦¨ (à¦
রà§à¦¥à¦¾à§ ফাà¦à¦à¦¾) à¦à¦°à¦¤à§ বà§à¦¯à¦°à§à¦¥: %s"
#: ../src/utils/pacat.c:113
-
msgid "Playback stream drained."
msgstr "পà§à¦²à§-বà§à¦¯à¦¾à¦ সà§à¦à§à¦°à¦¿à¦® ফাà¦à¦à¦¾ à¦à¦°à¦¾ হà§à§à¦à§à¥¤"
#: ../src/utils/pacat.c:123
-
msgid "Draining connection to server."
msgstr "সারà§à¦à¦¾à¦°à§à¦° সাথৠসà§à¦¥à¦¾à¦ªà¦¿à¦¤ সà¦à¦¯à§à¦ ফাà¦à¦à¦¾ à¦à¦°à¦¾ হà¦à§à¦à§à¥¤"
@@ -1165,7 +1184,6 @@ msgid "pa_stream_peek() failed: %s"
msgstr "pa_stream_peek() বà§à¦¯à¦°à§à¦¥: %s"
#: ../src/utils/pacat.c:307
-
msgid "Stream successfully created."
msgstr "সাফলà§à¦¯à§à¦° সাথৠসà§à¦à§à¦°à¦¿à¦® নিরà§à¦®à¦¿à¦¤ হà§à§à¦à§à¥¤"
@@ -1238,54 +1256,52 @@ msgstr "not "
msgid "Stream buffer attributes changed.%s"
msgstr "সà§à¦à§à¦°à¦¿à¦® বাফারà§à¦° à¦
à§à¦¯à¦¾à¦à§à¦°à¦¿à¦¬à¦¿à¦à¦ পরিবরà§à¦¤à¦¿à¦¤ হà§à§à¦à§à¥¤ %s"
-#: ../src/utils/pacat.c:416
+#: ../src/utils/pacat.c:415
#, c-format
msgid "Connection established.%s"
msgstr "সà¦à¦¯à§à¦ সà§à¦¥à¦¾à¦ªà¦¿à¦¤ হà§à§à¦à§à¥¤%s"
-#: ../src/utils/pacat.c:419
+#: ../src/utils/pacat.c:418
#, c-format
msgid "pa_stream_new() failed: %s"
msgstr "pa_stream_new() বà§à¦¯à¦°à§à¦¥: %s"
-#: ../src/utils/pacat.c:447
+#: ../src/utils/pacat.c:446
#, c-format
msgid "pa_stream_connect_playback() failed: %s"
msgstr "pa_stream_connect_playback() বà§à¦¯à¦°à§à¦¥: %s"
-#: ../src/utils/pacat.c:453
+#: ../src/utils/pacat.c:452
#, c-format
msgid "pa_stream_connect_record() failed: %s"
msgstr "pa_stream_connect_record() বà§à¦¯à¦°à§à¦¥: %s"
-#: ../src/utils/pacat.c:467 ../src/utils/pactl.c:857
+#: ../src/utils/pacat.c:466 ../src/utils/pactl.c:857
#, c-format
msgid "Connection failure: %s"
msgstr "সà¦à¦¯à§à¦ বিফল: %s"
-#: ../src/utils/pacat.c:500
-
+#: ../src/utils/pacat.c:499
msgid "Got EOF."
msgstr "ফাà¦à¦²à§à¦° সমাপà§à¦¤à¦¿ সনাà¦à§à¦¤ হà§à§à¦à§à¥¤"
-#: ../src/utils/pacat.c:537
+#: ../src/utils/pacat.c:536
#, c-format
msgid "write() failed: %s"
msgstr "write() বà§à¦¯à¦°à§à¦¥: %s"
-#: ../src/utils/pacat.c:558
-
+#: ../src/utils/pacat.c:557
msgid "Got signal, exiting."
msgstr "সিà¦à¦¨à§à¦¯à¦¾à¦² পà§à¦°à¦¾à¦ªà§à¦¤ হà§à§à¦à§, পà§à¦°à¦¸à§à¦¥à¦¾à¦¨ à¦à¦°à¦¾ হবà§à¥¤"
-#: ../src/utils/pacat.c:572
+#: ../src/utils/pacat.c:571
#, c-format
msgid "Failed to get latency: %s"
msgstr "লà§à¦à§à¦¨à§à¦¸à¦¿à¦° পরিমাণ পà§à¦°à¦¾à¦ªà§à¦¤ à¦à¦°à¦¤à§ বà§à¦¯à¦°à§à¦¥: %s"
-#: ../src/utils/pacat.c:577
-#, c-format
-msgid "Time: %0.3f sec; Latency: %0.0f usec. \r"
+#: ../src/utils/pacat.c:576
+#, fuzzy, c-format
+msgid "Time: %0.3f sec; Latency: %0.0f usec."
msgstr "সমà§: %0.3f sec; Latency: %0.0f usec. \r"
#: ../src/utils/pacat.c:595
@@ -1424,69 +1440,63 @@ msgstr ""
msgid "Invalid client name '%s'"
msgstr "à¦à§à¦²à¦¾à§à§à¦¨à§à¦à§à¦° নাম '%s' বà§à¦§ নà§"
-#: ../src/utils/pacat.c:776
+#: ../src/utils/pacat.c:775
#, c-format
msgid "Invalid stream name '%s'"
msgstr "সà§à¦à§à¦°à¦¿à¦®à§à¦° নাম '%s' বà§à¦§ নà§à¥¤"
-#: ../src/utils/pacat.c:813
+#: ../src/utils/pacat.c:812
#, c-format
msgid "Invalid channel map '%s'"
msgstr "à¦à§à¦¯à¦¾à¦¨à§à¦² মà§à¦¯à¦¾à¦ª '%s' বà§à¦§ নà§"
-#: ../src/utils/pacat.c:842
+#: ../src/utils/pacat.c:841
#, c-format
msgid "Invalid latency specification '%s'"
msgstr "লà§à¦à§à¦¨à§à¦¸à¦¿à¦° à¦à¦¨à§à¦¯ নিরà§à¦§à¦¾à¦°à¦¿à¦¤ বà§à¦¶à¦¿à¦·à§à¦à§à¦¯ '%s' বà§à¦§ নà§"
-#: ../src/utils/pacat.c:849
+#: ../src/utils/pacat.c:848
#, c-format
msgid "Invalid process time specification '%s'"
msgstr "পà§à¦°à¦¸à§à¦¸à§à¦° সমà§à§à¦° বà§à¦¶à¦¿à¦·à§à¦à§à¦¯ '%s' বà§à¦§ নà§"
-#: ../src/utils/pacat.c:861
+#: ../src/utils/pacat.c:860
#, c-format
msgid "Invalid property '%s'"
msgstr "বà§à¦¶à¦¿à¦·à§à¦à§à¦¯ '%s' বà§à¦§ নà§à¥¤"
-#: ../src/utils/pacat.c:878
+#: ../src/utils/pacat.c:877
#, c-format
-
msgid "Unknown file format %s."
msgstr "ফাà¦à¦²à§à¦° à¦
à¦à¦¾à¦¨à¦¾ বিনà§à¦¯à¦¾à¦¸ %s।"
-#: ../src/utils/pacat.c:897
-
+#: ../src/utils/pacat.c:896
msgid "Invalid sample specification"
msgstr "à¦
বà§à¦§ সà§à¦¯à¦¾à¦®à§à¦ªà§à¦² নিরà§à¦§à¦¾à¦°à¦¿à¦¤"
-#: ../src/utils/pacat.c:907
+#: ../src/utils/pacat.c:906
#, c-format
msgid "open(): %s"
msgstr "open(): %s"
-#: ../src/utils/pacat.c:912
+#: ../src/utils/pacat.c:911
#, c-format
msgid "dup2(): %s"
msgstr "dup2(): %s"
-#: ../src/utils/pacat.c:919
-
+#: ../src/utils/pacat.c:918
msgid "Too many arguments."
msgstr "à¦
তà§à¦¯à¦¾à¦§à¦¿à¦ à¦à¦°à§à¦à§à¦®à§à¦¨à§à¦à¥¤"
-#: ../src/utils/pacat.c:930
-
+#: ../src/utils/pacat.c:929
msgid "Failed to generate sample specification for file."
msgstr "সà§à¦¯à¦¾à¦®à§à¦ªà§à¦²à§à¦° মান নিরà§à¦§à¦¾à¦°à¦£à§à¦° ফাà¦à¦² নিরà§à¦®à¦¾à¦£ à¦à¦°à¦¤à§ বà§à¦¯à¦°à§à¦¥"
-#: ../src/utils/pacat.c:950
-
+#: ../src/utils/pacat.c:949
msgid "Failed to open audio file."
msgstr "শবà§à¦¦à§à¦° ফাà¦à¦² à¦à§à¦²à¦¤à§ বà§à¦¯à¦°à§à¦¥à¥¤"
-#: ../src/utils/pacat.c:956
-
+#: ../src/utils/pacat.c:955
msgid ""
"Warning: specified sample specification will be overwritten with "
"specification from file."
@@ -1494,68 +1504,60 @@ msgstr ""
"সতরà§à¦à¦¬à¦¾à¦°à§à¦¤à¦¾: à¦à¦¿à¦¹à§à¦¨à¦¿à¦¤ সà§à¦¯à¦¾à¦®à§à¦ªà§à¦² নিরà§à¦§à¦¾à¦°à¦£à§à¦° ফাà¦à¦²à¦à¦¿à¦° তথà§à¦¯, à¦à¦ ফাà¦à¦²à§à¦° থà§à¦à§ à¦à¦ªà¦²à¦¬à§à¦§ তথà§à¦¯ "
"দà§à¦¬à¦¾à¦°à¦¾ পà§à¦°à¦¤à¦¿à¦¸à§à¦¥à¦¾à¦ªà¦¿à¦¤ হবà§à¥¤"
-#: ../src/utils/pacat.c:959 ../src/utils/pactl.c:997
-
+#: ../src/utils/pacat.c:958 ../src/utils/pactl.c:997
msgid "Failed to determine sample specification from file."
msgstr "ফাà¦à¦² থà§à¦à§ সà§à¦¯à¦¾à¦®à§à¦ªà§à¦² সà¦à¦à§à¦°à¦¾à¦¨à§à¦¤ তথà§à¦¯ পà§à¦°à¦¾à¦ªà§à¦¤ à¦à¦°à¦¤à§ বà§à¦¯à¦°à§à¦¥à¥¤"
-#: ../src/utils/pacat.c:968
-
+#: ../src/utils/pacat.c:967
msgid "Warning: Failed to determine channel map from file."
msgstr "সতরà§à¦à¦¬à¦¾à¦°à§à¦¤à¦¾: ফাà¦à¦² থà§à¦à§ à¦à§à¦¯à¦¾à¦¨à§à¦²à§à¦° মà§à¦¯à¦¾à¦ª নিরà§à¦§à¦¾à¦°à¦£ à¦à¦°à¦¤à§ বà§à¦¯à¦°à§à¦¥à¥¤"
-#: ../src/utils/pacat.c:979
-
+#: ../src/utils/pacat.c:978
msgid "Channel map doesn't match sample specification"
msgstr "à¦à§à¦¯à¦¾à¦¨à§à¦²à§à¦° মà§à¦¯à¦¾à¦ª ঠসà§à¦¯à¦¾à¦®à§à¦ªà§à¦²à§à¦° নিরà§à¦§à¦¾à¦°à¦¿à¦¤ মানৠà¦à¦°à¦®à¦¿à¦²"
-#: ../src/utils/pacat.c:990
-
+#: ../src/utils/pacat.c:989
msgid "Warning: failed to write channel map to file."
msgstr "সতরà§à¦à¦¬à¦¾à¦°à§à¦¤à¦¾: ফাà¦à¦²à§à¦° মধà§à¦¯à§ à¦à§à¦¯à¦¾à¦¨à§à¦²à§à¦° মà§à¦¯à¦¾à¦ª লিà¦à¦¤à§ বà§à¦¯à¦°à§à¦¥à¥¤"
-#: ../src/utils/pacat.c:1005
+#: ../src/utils/pacat.c:1004
#, c-format
-msgid "Opening a %s stream with sample specification '%s' and channel map '%s'."
+msgid ""
+"Opening a %s stream with sample specification '%s' and channel map '%s'."
msgstr ""
"à¦à¦à¦à¦¿ %s সà§à¦à§à¦°à¦¿à¦® à¦à§à¦²à¦¾ হà¦à§à¦à§à¥¤ à¦à¦à¦¿à¦° à¦à¦¨à§à¦¯ '%s'-র সà§à¦¯à¦¾à¦®à§à¦ªà§à¦²à§à¦° নিরà§à¦§à¦¾à¦°à¦¿à¦¤ মান ঠ'%s' "
"à¦à§à¦¯à¦¾à¦¨à§à¦²à§à¦° মà§à¦¯à¦¾à¦ª পà§à¦°à§à§à¦ à¦à¦°à¦¾ হবà§à¥¤"
-#: ../src/utils/pacat.c:1006
+#: ../src/utils/pacat.c:1005
msgid "recording"
msgstr "ৰà§à¦à§°à§à¦¡ à¦à§°à¦¾ হà§à¦à§"
-#: ../src/utils/pacat.c:1006
+#: ../src/utils/pacat.c:1005
msgid "playback"
msgstr "পà§à¦²à§-বà§à¦"
-#: ../src/utils/pacat.c:1032 ../src/utils/pactl.c:1267
-
+#: ../src/utils/pacat.c:1031 ../src/utils/pactl.c:1267
msgid "pa_mainloop_new() failed."
msgstr "pa_mainloop_new() বà§à¦¯à¦°à§à¦¥à¥¤"
-#: ../src/utils/pacat.c:1051
-
+#: ../src/utils/pacat.c:1050
msgid "io_new() failed."
msgstr "io_new() বà§à¦¯à¦°à§à¦¥à¥¤"
-#: ../src/utils/pacat.c:1058 ../src/utils/pactl.c:1279
-
+#: ../src/utils/pacat.c:1057 ../src/utils/pactl.c:1279
msgid "pa_context_new() failed."
msgstr "pa_context_new() বà§à¦¯à¦°à§à¦¥à¥¤"
-#: ../src/utils/pacat.c:1066 ../src/utils/pactl.c:1285
+#: ../src/utils/pacat.c:1065 ../src/utils/pactl.c:1285
#, c-format
msgid "pa_context_connect() failed: %s"
msgstr "pa_context_connect() বà§à¦¯à§°à§à¦¥: %s"
-#: ../src/utils/pacat.c:1072
-
+#: ../src/utils/pacat.c:1071
msgid "pa_context_rttime_new() failed."
msgstr "pa_context_rttime_new() বà§à¦¯à¦°à§à¦¥à¥¤"
-#: ../src/utils/pacat.c:1079 ../src/utils/pactl.c:1290
-
+#: ../src/utils/pacat.c:1078 ../src/utils/pactl.c:1290
msgid "pa_mainloop_run() failed."
msgstr "pa_mainloop_run() বà§à¦¯à¦°à§à¦¥à¥¤"
@@ -1995,12 +1997,10 @@ msgid "Failed to upload sample: %s"
msgstr "সà§à¦¯à¦¾à¦®à§à¦ªà§à¦² à¦à¦ªà¦²à§à¦¡ à¦à¦°à¦¤à§ বà§à¦¯à¦°à§à¦¥: %s"
#: ../src/utils/pactl.c:704
-
msgid "Premature end of file"
msgstr "সমà§à¦ªà§à¦°à§à¦£ হà¦à§à¦¾à¦° পà§à¦°à§à¦¬à§ ফাà¦à¦² সমাপà§à¦¤ হà§à§à¦à§"
#: ../src/utils/pactl.c:863
-
msgid "Got SIGINT, exiting."
msgstr "SIGINT পà§à¦°à¦¾à¦ªà§à¦¤ হà§à§à¦à§, পà§à¦°à¦¸à§à¦¥à¦¾à¦¨ à¦à¦°à¦¾ হà§à§à¦à§à¥¤"
@@ -2079,126 +2079,103 @@ msgstr ""
"libpulse-ৰ সà§à¦¤à§ যà§à¦à§à¦¤ %s\n"
#: ../src/utils/pactl.c:979
-
msgid "Please specify a sample file to load"
msgstr "লà§à¦¡ à¦à¦°à¦¾à¦° à¦à¦¦à§à¦¦à§à¦¶à§à¦¯à§ à¦
নà§à¦à§à¦°à¦¹ à¦à¦°à§ à¦à¦à¦à¦¿ সà§à¦¯à¦¾à¦®à§à¦ªà§à¦² ফাà¦à¦² à¦à¦²à§à¦²à§à¦ à¦à¦°à§à¦¨"
#: ../src/utils/pactl.c:992
-
msgid "Failed to open sound file."
msgstr "শবà§à¦¦à§à¦° ফাà¦à¦² à¦à§à¦²à¦¤à§ বà§à¦¯à¦°à§à¦¥à¥¤"
#: ../src/utils/pactl.c:1004
-
msgid "Warning: Failed to determine sample specification from file."
msgstr "সতরà§à¦à¦¬à¦¾à¦°à§à¦¤à¦¾: ফাà¦à¦² থà§à¦à§ সà§à¦¯à¦¾à¦®à§à¦ªà§à¦²à§à¦° নিরà§à¦§à¦¾à¦°à¦¿à¦¤ মাপ নিরà§à¦®à¦¾à¦£ à¦à¦°à¦¤à§ বà§à¦¯à¦°à§à¦¥à¥¤"
#: ../src/utils/pactl.c:1014
-
msgid "You have to specify a sample name to play"
msgstr "বাà¦à¦¾à¦¨à§à¦° à¦à¦¦à§à¦¦à§à¦¶à§à¦¯à§ à¦à¦à¦à¦¿ সà§à¦¯à¦¾à¦®à§à¦ªà§à¦² ফাà¦à¦² à¦à¦²à§à¦²à§à¦ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦"
#: ../src/utils/pactl.c:1026
-
msgid "You have to specify a sample name to remove"
msgstr "à¦
পসারণà§à¦° à¦à¦¦à§à¦¦à§à¦¶à§à¦¯à§ à¦à¦à¦à¦¿ সà§à¦¯à¦¾à¦®à§à¦ªà§à¦² ফাà¦à¦² à¦à¦²à§à¦²à§à¦ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦"
#: ../src/utils/pactl.c:1035
-
msgid "You have to specify a sink input index and a sink"
msgstr "সিà¦à¦ à¦à¦¨à¦ªà§à¦ à¦à¦¨à§à¦¡à§à¦à§à¦¸ ঠà¦à¦à¦à¦¿ সিà¦à¦ নিরà§à¦§à¦¾à¦°à¦£ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦"
#: ../src/utils/pactl.c:1045
-
msgid "You have to specify a source output index and a source"
msgstr "সà§à¦°à§à¦¸ à¦à¦à¦à¦ªà§à¦ à¦à¦¨à§à¦¡à§à¦à§à¦¸ ঠà¦à¦à¦à¦¿ সà§à¦°à§à¦¸ নিরà§à¦§à¦¾à¦°à¦£ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦"
#: ../src/utils/pactl.c:1060
-
msgid "You have to specify a module name and arguments."
msgstr "মডিà¦à¦²à§à¦° নাম ঠà¦à¦°à§à¦à§à¦®à§à¦¨à§à¦ নিরà§à¦§à¦¾à¦°à¦£ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦à¥¤"
#: ../src/utils/pactl.c:1080
-
msgid "You have to specify a module index"
msgstr "মডিà¦à¦² à¦à¦¨à§à¦¡à§à¦à§à¦¸ নিরà§à¦§à¦¾à¦°à¦£ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦"
#: ../src/utils/pactl.c:1090
-
-msgid "You may not specify more than one sink. You have to specify a boolean value."
+msgid ""
+"You may not specify more than one sink. You have to specify a boolean value."
msgstr "à¦à¦à¦¾à¦§à¦¿à¦ সিà¦à¦ নিরà§à¦§à¦¾à¦°à¦£ à¦à¦°à¦¾ যাবৠনা। বà§à¦²à¦¿à§à§à¦¨ মান নিরà§à¦§à¦¾à¦°à¦£ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦à¥¤"
#: ../src/utils/pactl.c:1103
-
msgid ""
"You may not specify more than one source. You have to specify a boolean "
"value."
msgstr "à¦à¦à¦¾à¦§à¦¿à¦ সà§à¦°à§à¦¸ নিরà§à¦§à¦¾à¦°à¦£ à¦à¦°à¦¾ যাবৠনা। বà§à¦²à¦¿à§à§à¦¨ মান নিরà§à¦§à¦¾à¦°à¦£ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦à¥¤"
#: ../src/utils/pactl.c:1115
-
msgid "You have to specify a card name/index and a profile name"
msgstr "à¦à¦¾à¦°à§à¦¡à§à¦° নাম/à¦à¦¨à§à¦¡à§à¦à§à¦¸ ঠà¦à¦à¦à¦¿ পà§à¦°à§à¦«à¦¾à¦à¦²à§à¦° নাম à¦à¦²à§à¦²à§à¦ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦"
#: ../src/utils/pactl.c:1126
-
msgid "You have to specify a sink name/index and a port name"
msgstr "sink-র নাম/à¦à¦¨à§à¦¡à§à¦à§à¦¸ ঠà¦à¦à¦à¦¿ পà§à¦°à§à¦à§à¦° নাম à¦à¦²à§à¦²à§à¦ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦"
#: ../src/utils/pactl.c:1137
-
msgid "You have to specify a source name/index and a port name"
msgstr "à¦à§à¦¸à§à¦° নাম/à¦à¦¨à§à¦¡à§à¦à§à¦¸ ঠà¦à¦à¦à¦¿ পà§à¦°à§à¦à§ নাম à¦à¦²à§à¦²à§à¦ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦"
#: ../src/utils/pactl.c:1149
-
msgid "You have to specify a sink name/index and a volume"
msgstr "sink-র নাম/à¦à¦¨à§à¦¡à§à¦à§à¦¸ ঠà¦à¦à¦à¦¿ পà§à¦°à§à¦à§à¦° নাম à¦à¦²à§à¦²à§à¦ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦"
#: ../src/utils/pactl.c:1154 ../src/utils/pactl.c:1171
#: ../src/utils/pactl.c:1193 ../src/utils/pactl.c:1209
#: ../src/utils/pactl.c:1226 ../src/utils/pactl.c:1248
-
msgid "Invalid volume specification"
msgstr "à¦
বà§à¦§ শবà§à¦¦à§à¦° মাতà§à¦°à¦¾ নিরà§à¦§à¦¾à¦°à¦¿à¦¤"
#: ../src/utils/pactl.c:1166
-
msgid "You have to specify a source name/index and a volume"
msgstr "à¦à§à¦¸à§à¦° নাম/à¦à¦¨à§à¦¡à§à¦à§à¦¸ ঠà¦à¦à¦à¦¿ শবà§à¦¦à§à¦° মাতà§à¦°à¦¾ à¦à¦²à§à¦²à§à¦ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦"
#: ../src/utils/pactl.c:1183
-
msgid "You have to specify a sink input index and a volume"
msgstr "সিà¦à¦ à¦à¦¨à¦ªà§à¦ à¦à¦¨à§à¦¡à§à¦à§à¦¸ ঠশবà§à¦¦à§à¦° মাতà§à¦°à¦¾ নিরà§à¦§à¦¾à¦°à¦£ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦"
#: ../src/utils/pactl.c:1188
-
msgid "Invalid sink input index"
msgstr "সিà¦à¦ à¦à¦¨à¦ªà§à¦ à¦à¦¨à§à¦¡à§à¦à§à¦¸ বà§à¦§ নà§"
#: ../src/utils/pactl.c:1204
-
msgid "You have to specify a sink name/index and a mute boolean"
msgstr "sink-র নাম/à¦à¦¨à§à¦¡à§à¦à§à¦¸ ঠà¦à¦à¦à¦¿ নিà¦à¦¶à¦¬à§à¦¦à¦¤à¦¾à¦° বà§à¦²à¦¿à§à¦¾à¦¨ à¦à¦²à§à¦²à§à¦ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦"
#: ../src/utils/pactl.c:1221
-
msgid "You have to specify a source name/index and a mute boolean"
msgstr "à¦à§à¦¸à§à¦° নাম/à¦à¦¨à§à¦¡à§à¦à§à¦¸ ঠনিà¦à¦¶à¦¬à§à¦¦à¦¤à¦¾à¦° বà§à¦²à¦¿à§à¦¾à¦¨ à¦à¦²à§à¦²à§à¦ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦"
#: ../src/utils/pactl.c:1238
-
msgid "You have to specify a sink input index and a mute boolean"
msgstr "সিà¦à¦ à¦à¦¨à¦ªà§à¦ à¦à¦¨à§à¦¡à§à¦à§à¦¸ ঠনিà¦à¦¶à¦¬à§à¦¦à¦¤à¦¾à¦° বà§à¦²à¦¿à§à¦¾à¦¨ নিরà§à¦§à¦¾à¦°à¦£ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦"
#: ../src/utils/pactl.c:1243
-
msgid "Invalid sink input index specification"
msgstr "à¦
বà§à¦§ সিà¦à¦ à¦à¦¨à¦ªà§à¦ à¦à¦¨à§à¦¡à§à¦à§à¦¸ নিরà§à¦§à¦¾à¦°à¦¿à¦¤"
#: ../src/utils/pactl.c:1262
-
msgid "No valid command specified."
msgstr "à¦à§à¦¨à§ বà§à¦§ à¦à¦®à¦¾à¦¨à§à¦¡ নিরà§à¦§à¦¾à¦°à¦¿à¦¤ হà§à¦¨à¦¿à¥¤"
@@ -2282,7 +2259,6 @@ msgid "Not yet implemented.\n"
msgstr "à¦à¦¤à¦¿à§à¦¾à¦ বাসà§à¦¤à¦¬à¦¾à§à¦¿à¦¤ নহৠ।\n"
#: ../src/utils/pacmd.c:69
-
msgid "No PulseAudio daemon running, or not running as session daemon."
msgstr "PulseAudio ডà§à¦®à¦¨ à¦à¦²à¦à§ না à¦
থবা সà§à¦¶à¦¾à¦¨à§à¦° ডà§à¦®à¦¨ রà§à¦ªà§ à¦à¦²à¦à§ না।"
@@ -2323,7 +2299,7 @@ msgstr "write(): %s"
msgid "Cannot access autospawn lock."
msgstr "autospawn লঠপà§à§°à§à§à¦ à¦à§°à¦¿à¦¬à¦²à§ বà§à¦¯à§°à§à¦¥ ।"
-#: ../src/modules/alsa/alsa-sink.c:531 ../src/modules/alsa/alsa-sink.c:689
+#: ../src/modules/alsa/alsa-sink.c:530 ../src/modules/alsa/alsa-sink.c:689
#, c-format
msgid ""
"ALSA woke us up to write new data to the device, but there was actually "
@@ -2339,7 +2315,7 @@ msgstr ""
"POLLOUT নিৰà§à¦§à¦¾à§°à¦¿à¦¤ হà§à§±à¦¾à§°à¦¿ পিà¦à¦¤à§ à¦à¦®à¦¿ à¦à¦¥à¦¿à¦²à§ -- à¦à¦¿à¦¨à§à¦¤à§ তাৰ পিà¦à§° snd_pcm_avail() ঠ০ "
"দিলৠবা à¦
নà§à¦¯ à¦à¦à¦¾ মান < min_avail."
-#: ../src/modules/alsa/alsa-source.c:508 ../src/modules/alsa/alsa-source.c:658
+#: ../src/modules/alsa/alsa-source.c:506 ../src/modules/alsa/alsa-source.c:656
#, c-format
msgid ""
"ALSA woke us up to read new data from the device, but there was actually "
@@ -2356,24 +2332,22 @@ msgstr ""
"দিলৠবা à¦
নà§à¦¯ à¦à¦à¦¾ মান < min_avail."
#: ../src/modules/alsa/module-alsa-card.c:152
-#: ../src/modules/bluetooth/module-bluetooth-device.c:2225
+#: ../src/modules/bluetooth/module-bluetooth-device.c:2228
msgid "Off"
msgstr "বনà§à¦§"
-#: ../src/modules/bluetooth/module-bluetooth-device.c:2181
+#: ../src/modules/bluetooth/module-bluetooth-device.c:2184
msgid "High Fidelity Playback (A2DP)"
msgstr "High Fidelity Playback (A2DP)"
-#: ../src/modules/bluetooth/module-bluetooth-device.c:2195
-
+#: ../src/modules/bluetooth/module-bluetooth-device.c:2198
msgid "High Fidelity Capture (A2DP)"
msgstr "হাà¦-ফিডà§à¦²à¦¿à¦à¦¿ à¦à§à¦¯à¦¾à¦ªà¦à¦¾à¦° (A2DP)"
-#: ../src/modules/bluetooth/module-bluetooth-device.c:2210
+#: ../src/modules/bluetooth/module-bluetooth-device.c:2213
msgid "Telephony Duplex (HSP/HFP)"
msgstr "Telephony Duplex (HSP/HFP)"
#: ../src/modules/reserve-wrap.c:151
msgid "PulseAudio Sound Server"
msgstr "PulseAudio ধà§à¦¬à¦¨à¦¿ সà§à§±à¦"
-
diff --git a/po/bn_IN.po b/po/bn_IN.po
index e0a17cd..5a63415 100644
--- a/po/bn_IN.po
+++ b/po/bn_IN.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio.master-tx.bn_IN\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 08:40+0000\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-10 17:08+0530\n"
"Last-Translator: Runa Bhattacharjee <runab at redhat.com>\n"
"Language-Team: Bengali INDIA <anubad at lists.ankur.org.in>\n"
@@ -61,7 +61,8 @@ msgstr ""
#: ../src/modules/module-always-sink.c:39
msgid "Always keeps at least one sink loaded even if it's a null one"
-msgstr "সরà§à¦¬à¦¦à¦¾ à¦
নà§à¦¤à¦¤ à¦à¦à¦à¦¿ sink লà§à¦¡ à¦à¦°à§ রাà¦à¦¾ হবà§, পà§à¦°à§à§à¦à¦¨à§ null sink বà§à¦¯à¦¬à¦¹à¦¾à¦° à¦à¦°à¦¾ হবà§"
+msgstr ""
+"সরà§à¦¬à¦¦à¦¾ à¦
নà§à¦¤à¦¤ à¦à¦à¦à¦¿ sink লà§à¦¡ à¦à¦°à§ রাà¦à¦¾ হবà§, পà§à¦°à§à§à¦à¦¨à§ null sink বà§à¦¯à¦¬à¦¹à¦¾à¦° à¦à¦°à¦¾ হবà§"
#: ../src/modules/module-always-sink.c:83
msgid "Dummy Output"
@@ -145,7 +146,8 @@ msgstr "'%s' বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦à¦¾à¦°à§à¦° ঠ'%s' দলà§à¦° GID-র
#: ../src/daemon/main.c:205
#, c-format
msgid "Home directory of user '%s' is not '%s', ignoring."
-msgstr "'%s' বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦à¦¾à¦°à§ বà§à¦¯à¦à§à¦¤à¦¿à¦à¦¤ ডিরà§à¦à§à¦à¦°à¦¿ রà§à¦ªà§ '%s' ধারà§à¦¯ à¦à¦°à¦¾ হà§à¦¨à¦¿, à¦
à¦à§à¦°à¦¾à¦¹à§à¦¯ à¦à¦°à¦¾ হবà§à¥¤"
+msgstr ""
+"'%s' বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦à¦¾à¦°à§ বà§à¦¯à¦à§à¦¤à¦¿à¦à¦¤ ডিরà§à¦à§à¦à¦°à¦¿ রà§à¦ªà§ '%s' ধারà§à¦¯ à¦à¦°à¦¾ হà§à¦¨à¦¿, à¦
à¦à§à¦°à¦¾à¦¹à§à¦¯ à¦à¦°à¦¾ হবà§à¥¤"
#: ../src/daemon/main.c:208 ../src/daemon/main.c:213
#, c-format
@@ -202,7 +204,8 @@ msgstr "ডà§à¦®à¦¨ kill à¦à¦°à¦¤à§ বà§à¦¯à¦°à§à¦¥: %s"
msgid ""
"This program is not intended to be run as root (unless --system is "
"specified)."
-msgstr "root পরিà¦à§à§ à¦à¦ পà§à¦°à§à¦à§à¦°à¦¾à¦®à¦à¦¿ সà¦à§à¦à¦¾à¦²à¦¿à¦¤ হà¦à§à¦¾ à¦à¦à¦¿à¦¤ নৠ(যদি না --system à¦à¦²à§à¦²à¦¿à¦à¦¿à¦¤ হà§)।"
+msgstr ""
+"root পরিà¦à§à§ à¦à¦ পà§à¦°à§à¦à§à¦°à¦¾à¦®à¦à¦¿ সà¦à§à¦à¦¾à¦²à¦¿à¦¤ হà¦à§à¦¾ à¦à¦à¦¿à¦¤ নৠ(যদি না --system à¦à¦²à§à¦²à¦¿à¦à¦¿à¦¤ হà§)।"
#: ../src/daemon/main.c:568
msgid "Root privileges required."
@@ -393,7 +396,8 @@ msgstr "ডà§à¦®à¦¨ à¦à¦°à¦®à§à¦ à¦à¦°à¦¤à§ বà§à¦¯à¦°à§à¦¥à¥¤"
#: ../src/daemon/main.c:904
msgid "Daemon startup without any loaded modules, refusing to work."
-msgstr "লà§à¦¡ à¦à¦°à¦¾ মডিà¦à¦² বিনা ডà§à¦®à¦¨ à¦à¦°à¦®à§à¦ à¦à¦°à¦¾ হà§à§à¦à§ à¦à¦¬à¦ à¦à§à¦¨à§ à¦à¦°à§à¦® সà¦à§à¦à¦¾à¦²à¦¨ à¦à¦°à¦¾ সমà§à¦à¦¬ নà§à¥¤"
+msgstr ""
+"লà§à¦¡ à¦à¦°à¦¾ মডিà¦à¦² বিনা ডà§à¦®à¦¨ à¦à¦°à¦®à§à¦ à¦à¦°à¦¾ হà§à§à¦à§ à¦à¦¬à¦ à¦à§à¦¨à§ à¦à¦°à§à¦® সà¦à§à¦à¦¾à¦²à¦¨ à¦à¦°à¦¾ সমà§à¦à¦¬ নà§à¥¤"
#: ../src/daemon/main.c:921
msgid "Daemon startup complete."
@@ -1093,6 +1097,14 @@ msgstr "à¦
নà§à¦ªà¦¸à§à¦¥à¦¿à¦¤ বাসà§à¦¤à¦¬à¦¾à§à¦¨"
msgid "Client forked"
msgstr "à¦à§à¦²à¦¾à§à§à¦¨à§à¦ ফরà§à¦ à¦à¦°à¦¾ হà§à§à¦à§"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
@@ -1527,7 +1539,8 @@ msgstr "সতরà§à¦à¦¬à¦¾à¦°à§à¦¤à¦¾: ফাà¦à¦²à§à¦° মধà§à¦¯à§
#: ../src/utils/pacat.c:1004
#, c-format
-msgid "Opening a %s stream with sample specification '%s' and channel map '%s'."
+msgid ""
+"Opening a %s stream with sample specification '%s' and channel map '%s'."
msgstr ""
"à¦à¦à¦à¦¿ %s সà§à¦à§à¦°à¦¿à¦® à¦à§à¦²à¦¾ হà¦à§à¦à§à¥¤ à¦à¦à¦¿à¦° à¦à¦¨à§à¦¯ '%s'-র সà§à¦¯à¦¾à¦®à§à¦ªà§à¦²à§à¦° নিরà§à¦§à¦¾à¦°à¦¿à¦¤ মান ঠ'%s' "
"à¦à§à¦¯à¦¾à¦¨à§à¦²à§à¦° মà§à¦¯à¦¾à¦ª পà§à¦°à§à§à¦ à¦à¦°à¦¾ হবà§à¥¤"
@@ -1663,7 +1676,8 @@ msgstr "বরà§à¦¤à¦®à¦¾à¦¨à§ বà§à¦¯à¦¬à¦¹à§à¦¤: %u বà§à¦²à¦à§à¦°
#: ../src/utils/pactl.c:144
#, c-format
msgid "Allocated during whole lifetime: %u blocks containing %s bytes total.\n"
-msgstr "সমà§à¦ªà§à¦°à§à¦£ à¦à¦°à§à¦®à¦à¦¾à¦²à§à¦° à¦à¦¨à§à¦¯ বরাদà§à¦¦ à¦à¦°à¦¾ হà§à§à¦à§: %u বà§à¦²à¦à§à¦° মধà§à¦¯à§ à¦à¦ªà¦¸à§à¦¥à¦¿à¦¤ সরà§à¦¬à¦®à§à¦ %s বাà¦à¦à¥¤\n"
+msgstr ""
+"সমà§à¦ªà§à¦°à§à¦£ à¦à¦°à§à¦®à¦à¦¾à¦²à§à¦° à¦à¦¨à§à¦¯ বরাদà§à¦¦ à¦à¦°à¦¾ হà§à§à¦à§: %u বà§à¦²à¦à§à¦° মধà§à¦¯à§ à¦à¦ªà¦¸à§à¦¥à¦¿à¦¤ সরà§à¦¬à¦®à§à¦ %s বাà¦à¦à¥¤\n"
#: ../src/utils/pactl.c:147
#, c-format
@@ -2121,7 +2135,8 @@ msgid "You have to specify a module index"
msgstr "মডিà¦à¦² à¦à¦¨à§à¦¡à§à¦à§à¦¸ নিরà§à¦§à¦¾à¦°à¦£ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦"
#: ../src/utils/pactl.c:1090
-msgid "You may not specify more than one sink. You have to specify a boolean value."
+msgid ""
+"You may not specify more than one sink. You have to specify a boolean value."
msgstr "à¦à¦à¦¾à¦§à¦¿à¦ সিà¦à¦ নিরà§à¦§à¦¾à¦°à¦£ à¦à¦°à¦¾ যাবৠনা। বà§à¦²à¦¿à§à§à¦¨ মান নিরà§à¦§à¦¾à¦°à¦£ à¦à¦°à¦¾ à¦à¦¬à¦¶à§à¦¯à¦à¥¤"
#: ../src/utils/pactl.c:1103
@@ -2358,4 +2373,3 @@ msgstr "à¦à§à¦²à¦¿à¦«à§à¦¨à¦¿ ডà§à¦ªà§à¦²à§ (HSP/HFP)"
#: ../src/modules/reserve-wrap.c:151
msgid "PulseAudio Sound Server"
msgstr "PulseAudio শবà§à¦¦à§à¦° সারà§à¦à¦¾à¦°"
-
diff --git a/po/ca.po b/po/ca.po
index 4ca7239..ff8113c 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -24,7 +24,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-05 11:40+0100\n"
"Last-Translator: Tomàs Bigordà <t0mynoker at gmail.com>\n"
"Language-Team: Catalan <fedora at softcatala.net>\n"
@@ -1126,6 +1126,14 @@ msgstr "Manca la implementació"
msgid "Client forked"
msgstr "Client bifurcat"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/cs.po b/po/cs.po
index 9b063af..8aa4dd9 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio.master-tx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-09 02:43+0100\n"
"Last-Translator: Petr Kovar <pknbe at volny.cz>\n"
"Language-Team: Czech <translation-team-cs at lists.sourceforge.net>\n"
@@ -1093,6 +1093,14 @@ msgstr "ScházejÃcà implementace"
msgid "Client forked"
msgstr "Klient rozvÄtven"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/de.po b/po/de.po
index 81b69c8..97f7163 100644
--- a/po/de.po
+++ b/po/de.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-04-18 12:43+0100\n"
"Last-Translator: Fabian Affolter <fab at fedoraproject.org>\n"
"Language-Team: German <fedora-trans-de at redhat.com>\n"
@@ -1077,6 +1077,14 @@ msgstr "Fehlende Implementation"
msgid "Client forked"
msgstr "Client geteilt"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/de_CH.po b/po/de_CH.po
index 7af3f1f..662176e 100644
--- a/po/de_CH.po
+++ b/po/de_CH.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-04-18 12:55+0100\n"
"Last-Translator: Fabian Affolter <fab at fedoraproject.org>\n"
"Language-Team: German <fedora-trans-de at redhat.com>\n"
@@ -1081,6 +1081,14 @@ msgstr "Fehlende Implementation"
msgid "Client forked"
msgstr "Client geforket"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/el.po b/po/el.po
index c115035..2db0db5 100644
--- a/po/el.po
+++ b/po/el.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: el\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2008-08-22 19:40+0300\n"
"Last-Translator: Dimitris Glezos <dimitris at glezos.com>\n"
"Language-Team: Greek <fedora-trans-el at redhat.com>\n"
@@ -990,6 +990,14 @@ msgstr ""
msgid "Client forked"
msgstr ""
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/es.po b/po/es.po
index 7ea2871..b6a0e1f 100644
--- a/po/es.po
+++ b/po/es.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PulseAudio\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-03 09:52-0300\n"
"Last-Translator: Domingo Becker <domingobecker at gmail.com>\n"
"Language-Team: Fedora Spanish <fedora-trans-es at redhat.com>\n"
@@ -1112,6 +1112,14 @@ msgstr "Falta implementación"
msgid "Client forked"
msgstr "Cliente iniciado"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/fi.po b/po/fi.po
index f423095..5798b95 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: git trunk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-04 23:29+0300\n"
"Last-Translator: Ville-Pekka Vainio <vpivaini at cs.helsinki.fi>\n"
"Language-Team: Finnish <laatu at lokalisointi.org>\n"
@@ -1109,6 +1109,14 @@ msgstr "Puuttuva toteutus"
msgid "Client forked"
msgstr "Asiakasohjelma haarautui"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/fr.po b/po/fr.po
index d7b07b2..359769c 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio trunk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-04-26 17:22+0200\n"
"Last-Translator: Corentin Perard <corentin.perard at gmail.com>\n"
"Language-Team: French <fedora-trans-fr at redhat.com>\n"
@@ -1110,6 +1110,14 @@ msgstr "Implantation manquante"
msgid "Client forked"
msgstr "Le client s'est divisé (Client forked)"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/gu.po b/po/gu.po
index 34e4c8f..3feb552 100644
--- a/po/gu.po
+++ b/po/gu.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulaudio\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 08:40+0000\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-10 15:26+0530\n"
"Last-Translator: Sweta Kothari <swkothar at redhat.com>\n"
"Language-Team: Gujarati\n"
@@ -203,7 +203,8 @@ msgstr "ડિમનનૠમારવાનà«àª નિષà«àª«àª³: %s"
msgid ""
"This program is not intended to be run as root (unless --system is "
"specified)."
-msgstr "ઠપà«àª°àªà«àª°àª¿àª¯àª¾àª¨à« રà«àª તરà«àªà« àªàª²àª¾àªµàªµàª¾ માàªà« વિàªàª¾àª° થયà«àª² નથૠ(નહિઠતૠ--system ઠસà«àªªàª·à«àª થયà«àª² àªà«)."
+msgstr ""
+"ઠપà«àª°àªà«àª°àª¿àª¯àª¾àª¨à« રà«àª તરà«àªà« àªàª²àª¾àªµàªµàª¾ માàªà« વિàªàª¾àª° થયà«àª² નથૠ(નહિઠતૠ--system ઠસà«àªªàª·à«àª થયà«àª² àªà«)."
#: ../src/daemon/main.c:568
msgid "Root privileges required."
@@ -731,7 +732,8 @@ msgstr "રà«àªªàª°à«àªàª¾àªàªàª¨ ફાàªàª²àª¨à« àªà«àª²àªµàª¾àª¨à«
msgid ""
"The specified default channel map has a different number of channels than "
"the specified default number of channels."
-msgstr "સà«àªªàª·à«àª થયà«àª² મà«àª³àªà«àª¤ àªà«àª¨àª² મà«àªª પાસૠસà«àªªàª·à«àª થયà«àª² àªà«àª¨àª²à«àª¨à« મà«àª³àªà«àª¤ સàªàªà«àª¯àª¾ àªàª°àª¤àª¾ વિવિધ àªà«àª¨àª²à«àª¨à« સàªàªà«àª¯àª¾ àªà«."
+msgstr ""
+"સà«àªªàª·à«àª થયà«àª² મà«àª³àªà«àª¤ àªà«àª¨àª² મà«àªª પાસૠસà«àªªàª·à«àª થયà«àª² àªà«àª¨àª²à«àª¨à« મà«àª³àªà«àª¤ સàªàªà«àª¯àª¾ àªàª°àª¤àª¾ વિવિધ àªà«àª¨àª²à«àª¨à« સàªàªà«àª¯àª¾ àªà«."
#: ../src/daemon/daemon-conf.c:638
#, c-format
@@ -1084,6 +1086,14 @@ msgstr "àªà«àª® થયà«àª² àª
મલà«àªàª°àª£"
msgid "Client forked"
msgstr "àªà«àª²àª¾àªàª¨à«àªàª®àª¾àª ફાàªàª¾ પડà«àª² àªà«"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
@@ -1501,7 +1511,8 @@ msgstr "àªà«àª¤àª£à«: ફાàªàª²àª®àª¾àª àªà«àª¨àª² મà«àªªàª¨à« લ
#: ../src/utils/pacat.c:1004
#, c-format
-msgid "Opening a %s stream with sample specification '%s' and channel map '%s'."
+msgid ""
+"Opening a %s stream with sample specification '%s' and channel map '%s'."
msgstr "નમà«àª¨àª¾ સà«àªªàª·à«àªà«àªàª°àª£ '%s' àª
નૠàªà«àª¨àª² નàªà«àª·àª¾ '%s' સાથૠ%s સà«àªà«àª°à«àª®àª¨à« àªà«àª²à« રહà«àª¯àª¾ àªà«."
#: ../src/utils/pacat.c:1005
@@ -2090,14 +2101,17 @@ msgid "You have to specify a module index"
msgstr "તમારૠમà«àª¡à«àª¯à«àª² àª
નà«àªà«àª°àª®àª£àª¿àªàª¾àª¨à« સà«àªªàª·à«àª àªàª°àªµà« ઠપડશà«"
#: ../src/utils/pactl.c:1090
-msgid "You may not specify more than one sink. You have to specify a boolean value."
-msgstr "તમૠàªàª સિàªàª àªàª°àª¤àª¾ વધારૠસà«àªªàª·à«àª àªàª°à« શàªàª¶à« નહિàª. તમારૠબà«àª²àª¿àª¯àª¨ àªàª¿àªàª®àª¤àª¨à« સà«àªªàª·à«àª àªàª°àªµà« ઠપડશà«."
+msgid ""
+"You may not specify more than one sink. You have to specify a boolean value."
+msgstr ""
+"તમૠàªàª સિàªàª àªàª°àª¤àª¾ વધારૠસà«àªªàª·à«àª àªàª°à« શàªàª¶à« નહિàª. તમારૠબà«àª²àª¿àª¯àª¨ àªàª¿àªàª®àª¤àª¨à« સà«àªªàª·à«àª àªàª°àªµà« ઠપડશà«."
#: ../src/utils/pactl.c:1103
msgid ""
"You may not specify more than one source. You have to specify a boolean "
"value."
-msgstr "તમૠàªàª સà«àª¤à«àª°à«àª¤ àªàª°àª¤àª¾ વધારૠસà«àªªàª·à«àª àªàª°à« શàªàª¶à« નહિàª. તમારૠબà«àª²àª¿àª¯àª¨ àªàª¿àªàª®àª¤àª¨à« સà«àªªàª·à«àª àªàª°àªµà« ઠપડશà«."
+msgstr ""
+"તમૠàªàª સà«àª¤à«àª°à«àª¤ àªàª°àª¤àª¾ વધારૠસà«àªªàª·à«àª àªàª°à« શàªàª¶à« નહિàª. તમારૠબà«àª²àª¿àª¯àª¨ àªàª¿àªàª®àª¤àª¨à« સà«àªªàª·à«àª àªàª°àªµà« ઠપડશà«."
#: ../src/utils/pactl.c:1115
msgid "You have to specify a card name/index and a profile name"
@@ -2327,4 +2341,3 @@ msgstr "Telephony Duplex (HSP/HFP)"
#: ../src/modules/reserve-wrap.c:151
msgid "PulseAudio Sound Server"
msgstr "PulseAudio સાàªàª¨à«àª¡ સરà«àªµàª°"
-
diff --git a/po/hi.po b/po/hi.po
index 3c06e0e..f60ae70 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio.master-tx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 08:40+0000\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-10 17:01+0530\n"
"Last-Translator: Rajesh Ranjan <rajesh672 at gmail.com>\n"
"Language-Team: Hindi <hindi.sf.net>\n"
@@ -15,7 +15,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=2; plural=(n!=1);\n\n"
+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+"\n"
"\n"
"\n"
"\n"
@@ -206,7 +207,8 @@ msgstr "डà¥à¤®à¥à¤¨ हà¤à¤¾à¤¨à¥ मà¥à¤ विफल: %s"
msgid ""
"This program is not intended to be run as root (unless --system is "
"specified)."
-msgstr "यह पà¥à¤°à¥à¤à¥à¤°à¤¾à¤® बतà¥à¤° रà¥à¤ à¤à¤²à¤¾à¤¨à¥ à¤à¥ लिठà¤à¤à¥à¤à¤¿à¤¤ नहà¥à¤ हॠ(unless --system is specified)."
+msgstr ""
+"यह पà¥à¤°à¥à¤à¥à¤°à¤¾à¤® बतà¥à¤° रà¥à¤ à¤à¤²à¤¾à¤¨à¥ à¤à¥ लिठà¤à¤à¥à¤à¤¿à¤¤ नहà¥à¤ हॠ(unless --system is specified)."
#: ../src/daemon/main.c:568
msgid "Root privileges required."
@@ -382,7 +384,8 @@ msgstr "ताà¤à¤¼à¤¾ à¤à¤à¥à¤ विà¤à¥à¤¦à¤¨ à¤à¤¾à¤à¤®à¤° à¤à¤ª
msgid ""
"Dude, your kernel stinks! The chef's recommendation today is Linux with high-"
"resolution timers enabled!"
-msgstr "à¤à¤ªà¤à¤¾ à¤à¤°à¥à¤¨à¥à¤² बà¥à¤°à¥ सà¥à¤¥à¤¿à¤¤à¤¿ मà¥à¤ हà¥! सलाह हॠà¤à¤¿ à¤à¤à¥à¤ विà¤à¥à¤¦à¤¨ यà¥à¤à¥à¤¤ लिनà¤à¥à¤¸ सà¤à¥à¤°à¤¿à¤¯ à¤à¤¿à¤¯à¤¾ à¤à¤¾à¤¨à¤¾ à¤à¤¾à¤¹à¤¿à¤!"
+msgstr ""
+"à¤à¤ªà¤à¤¾ à¤à¤°à¥à¤¨à¥à¤² बà¥à¤°à¥ सà¥à¤¥à¤¿à¤¤à¤¿ मà¥à¤ हà¥! सलाह हॠà¤à¤¿ à¤à¤à¥à¤ विà¤à¥à¤¦à¤¨ यà¥à¤à¥à¤¤ लिनà¤à¥à¤¸ सà¤à¥à¤°à¤¿à¤¯ à¤à¤¿à¤¯à¤¾ à¤à¤¾à¤¨à¤¾ à¤à¤¾à¤¹à¤¿à¤!"
#: ../src/daemon/main.c:839
msgid "pa_core_new() failed."
@@ -1085,6 +1088,14 @@ msgstr "à¤
नà¥à¤ªà¤¸à¥à¤¥à¤¿à¤¤ à¤à¤¾à¤°à¥à¤¯à¤¾à¤¨à¥à¤µà¤¯à¤¨"
msgid "Client forked"
msgstr "à¤à¥à¤²à¤¾à¤à¤à¤ विà¤à¤¾à¤à¤¿à¤¤"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
@@ -1512,7 +1523,8 @@ msgstr "à¤à¥à¤¤à¤¾à¤µà¤¨à¥: फ़ाà¤à¤² मà¥à¤ à¤à¥à¤¨à¤² मà¥à¤ª
#: ../src/utils/pacat.c:1004
#, c-format
-msgid "Opening a %s stream with sample specification '%s' and channel map '%s'."
+msgid ""
+"Opening a %s stream with sample specification '%s' and channel map '%s'."
msgstr "à¤à¤¿à¤¸à¥ %s सà¥à¤à¥à¤°à¥à¤® à¤à¥ à¤à¤¿à¤¸à¥ नमà¥à¤¨à¤¾ विनिरà¥à¤¦à¤¿à¤·à¥à¤¤à¤¾ '%s' à¤à¤° à¤à¥à¤¨à¤² मà¥à¤ª '%s' सॠà¤à¥à¤² रहा हà¥."
#: ../src/utils/pacat.c:1005
@@ -2102,8 +2114,10 @@ msgid "You have to specify a module index"
msgstr "à¤à¤ªà¤à¥ à¤à¤¿à¤¸à¥ मà¥à¤¡à¥à¤¯à¥à¤² सà¥à¤à¥ à¤à¥ निरà¥à¤¦à¤¿à¤·à¥à¤ à¤à¤°à¤¨à¤¾ हà¥"
#: ../src/utils/pactl.c:1090
-msgid "You may not specify more than one sink. You have to specify a boolean value."
-msgstr "à¤à¤ª à¤à¤ सिà¤à¤ सॠà¤
धिठनिरà¥à¤¦à¤¿à¤·à¥à¤ नहà¥à¤ à¤à¤° सà¤à¤¤à¥ हà¥à¤. à¤à¤ªà¤à¥ à¤à¤¿à¤¸à¥ बà¥à¤²à¤¿à¤¯à¤¨ मान à¤à¥ निरà¥à¤¦à¤¿à¤·à¥à¤ à¤à¤°à¤¨à¤¾ हà¥."
+msgid ""
+"You may not specify more than one sink. You have to specify a boolean value."
+msgstr ""
+"à¤à¤ª à¤à¤ सिà¤à¤ सॠà¤
धिठनिरà¥à¤¦à¤¿à¤·à¥à¤ नहà¥à¤ à¤à¤° सà¤à¤¤à¥ हà¥à¤. à¤à¤ªà¤à¥ à¤à¤¿à¤¸à¥ बà¥à¤²à¤¿à¤¯à¤¨ मान à¤à¥ निरà¥à¤¦à¤¿à¤·à¥à¤ à¤à¤°à¤¨à¤¾ हà¥."
#: ../src/utils/pactl.c:1103
msgid ""
@@ -2341,4 +2355,3 @@ msgstr "à¤à¥à¤²à¤¿à¤«à¥à¤¨à¥ डà¥à¤¯à¥à¤ªà¥à¤²à¥à¤à¥à¤¸ (HSP/HFP)"
#: ../src/modules/reserve-wrap.c:151
msgid "PulseAudio Sound Server"
msgstr "पलà¥à¤¸à¤à¤¡à¤¿à¤¯à¥ धà¥à¤µà¤¨à¤¿ सरà¥à¤µà¤°"
-
diff --git a/po/it.po b/po/it.po
index 6002d19..0edc5d8 100644
--- a/po/it.po
+++ b/po/it.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-08-26 21:46+0200\n"
"Last-Translator: Milo Casagrande <milo at ubuntu.com>\n"
"Language-Team: Italian <tp at lists.linux.it>\n"
@@ -1137,6 +1137,14 @@ msgstr "Implementazione mancante"
msgid "Client forked"
msgstr "Fork del client"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/ja.po b/po/ja.po
index b0e8d10..c166f47 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 1.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 08:40+0000\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-10 21:05+0900\n"
"Last-Translator: Hyu_gabaru Ryu_ichi <hyu_gabaru at yahoo.co.jp>\n"
"Language-Team: Japanese <fedora-trans-ja at redhat.com>\n"
@@ -987,6 +987,14 @@ msgstr ""
msgid "Client forked"
msgstr ""
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/kn.po b/po/kn.po
index 76caf55..1977041 100644
--- a/po/kn.po
+++ b/po/kn.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio.master-tx.kn\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-08 13:49+0530\n"
"Last-Translator: Shankar Prasad <svenkate at redhat.com>\n"
"Language-Team: Kannada <en at li.org>\n"
@@ -1099,6 +1099,14 @@ msgstr "à²
ನà³à²µà²¯à²¿à²¸à³à²µà²¿à²à³à²¯à³ à²à²¾à²£à²¿à²¸à³à²¤à³à²¤
msgid "Client forked"
msgstr "à²à³à²²à³à²à²à³ à²
ನà³à²¨à³ ಫà³à²°à³à²à³ ಮಾಡಲಾà²à²¿à²¦à³"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/ml.po b/po/ml.po
index 7b2e297..461ec14 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio.master-tx.ml\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 04:42+0000\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-10 11:19+0530\n"
"Last-Translator: \n"
"Language-Team: <en at li.org>\n"
@@ -216,7 +216,8 @@ msgstr "സിസàµà´±àµà´±à´ à´®àµà´¡à´¿à´²àµâ à´ªàµà´°à´µà´°àµâà´¤
#: ../src/daemon/main.c:581
msgid "Running in system mode, but --disallow-module-loading not set!"
-msgstr "സിസàµà´±àµà´±à´ à´®àµà´¡à´¿à´²àµâ à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¿à´àµà´àµà´¨àµà´¨àµ, à´ªà´àµà´·àµ --disallow-module-loading à´¸à´àµà´à´®à´¾à´àµà´à´¿à´¯à´¿à´àµà´à´¿à´²àµà´²!"
+msgstr ""
+"സിസàµà´±àµà´±à´ à´®àµà´¡à´¿à´²àµâ à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¿à´àµà´àµà´¨àµà´¨àµ, à´ªà´àµà´·àµ --disallow-module-loading à´¸à´àµà´à´®à´¾à´àµà´à´¿à´¯à´¿à´àµà´à´¿à´²àµà´²!"
#: ../src/daemon/main.c:584
msgid "Running in system mode, forcibly disabling SHM mode!"
@@ -224,7 +225,8 @@ msgstr "സിസàµà´±àµà´±à´ à´®àµà´¡à´¿à´²àµâ à´ªàµà´°à´µà´°àµâà´¤
#: ../src/daemon/main.c:589
msgid "Running in system mode, forcibly disabling exit idle time!"
-msgstr "സിസàµà´±àµà´±à´ à´®àµà´¡à´¿à´²àµâ à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¿à´àµà´àµà´¨àµà´¨àµ, നിരàµâബനàµà´§à´®à´¾à´¯àµà´ à´à´àµà´¸à´¿à´±àµà´±àµ à´à´¡à´¿à´²àµâ സമയഠപàµà´°à´µà´°àµâà´¤àµà´¤ രഹിതമാà´àµà´àµà´¨àµà´¨àµ!"
+msgstr ""
+"സിസàµà´±àµà´±à´ à´®àµà´¡à´¿à´²àµâ à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¿à´àµà´àµà´¨àµà´¨àµ, നിരàµâബനàµà´§à´®à´¾à´¯àµà´ à´à´àµà´¸à´¿à´±àµà´±àµ à´à´¡à´¿à´²àµâ സമയഠപàµà´°à´µà´°àµâà´¤àµà´¤ രഹിതമാà´àµà´àµà´¨àµà´¨àµ!"
#: ../src/daemon/main.c:616
msgid "Failed to acquire stdio."
@@ -1081,6 +1083,14 @@ msgstr "à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¨à´ à´²à´àµà´¯à´®à´²àµà´²"
msgid "Client forked"
msgstr "à´àµà´²àµà´¨àµà´±àµ à´«àµà´°àµâà´àµà´àµ à´àµà´¯àµà´¤à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
@@ -1488,7 +1498,8 @@ msgstr "à´âഡിയൠഫയലàµâ à´¤àµà´±à´àµà´àµà´¨àµà´¨à´¤à´¿
msgid ""
"Warning: specified sample specification will be overwritten with "
"specification from file."
-msgstr "à´®àµà´¨àµà´¨à´±à´¿à´¯à´¿à´ªàµà´ªàµàµ: ഫയലിലàµâ നിനàµà´¨àµà´³àµà´³ വിവരണഠവàµà´¯à´àµà´¤à´®à´¾à´àµà´à´¿à´¯à´¿à´°à´¿à´àµà´àµà´¨àµà´¨ സാà´à´ªà´¿à´³àµâ വിവരണഠമാറàµà´±à´¿à´¯àµà´´àµà´¤àµà´¨àµà´¨àµ."
+msgstr ""
+"à´®àµà´¨àµà´¨à´±à´¿à´¯à´¿à´ªàµà´ªàµàµ: ഫയലിലàµâ നിനàµà´¨àµà´³àµà´³ വിവരണഠവàµà´¯à´àµà´¤à´®à´¾à´àµà´à´¿à´¯à´¿à´°à´¿à´àµà´àµà´¨àµà´¨ സാà´à´ªà´¿à´³àµâ വിവരണഠമാറàµà´±à´¿à´¯àµà´´àµà´¤àµà´¨àµà´¨àµ."
#: ../src/utils/pacat.c:958 ../src/utils/pactl.c:997
msgid "Failed to determine sample specification from file."
@@ -1508,7 +1519,8 @@ msgstr "à´®àµà´¨àµà´¨à´±à´¿à´¯à´¿à´ªàµà´ªàµàµ: ഫയലിലàµà´àµà´
#: ../src/utils/pacat.c:1004
#, c-format
-msgid "Opening a %s stream with sample specification '%s' and channel map '%s'."
+msgid ""
+"Opening a %s stream with sample specification '%s' and channel map '%s'."
msgstr "%s à´¸àµà´àµà´°àµà´ à´¤àµà´±à´àµà´àµà´¨àµà´¨àµ. à´à´¤à´¿à´¨àµà´±àµ സാà´à´ªà´¿à´³àµâ വിവരണഠ'%s'-à´à´ à´à´¾à´¨à´²àµâ മാപàµà´ªàµ '%s'-à´à´ à´à´£àµàµ."
#: ../src/utils/pacat.c:1005
@@ -2098,14 +2110,17 @@ msgid "You have to specify a module index"
msgstr "à´à´°àµ à´®àµà´¡àµà´¯àµà´³àµâ à´à´¨àµâà´¡à´àµà´¸àµ നലàµâà´àµà´£àµà´à´¤àµà´£àµà´àµàµ"
#: ../src/utils/pactl.c:1090
-msgid "You may not specify more than one sink. You have to specify a boolean value."
-msgstr "à´à´°àµ സിà´àµà´à´¿à´²àµâ à´àµà´àµà´¤à´²àµâ നിà´àµà´à´³àµâ നലàµâà´àµà´£àµà´à´¤à´¿à´²àµà´². à´àµà´à´¾à´¤àµ, à´à´°àµ à´¬àµà´³à´¿à´¯à´¨àµâ à´®àµà´²àµà´²àµà´¯à´µàµà´ നിà´àµà´à´³àµâ നലàµâà´àµà´£àµà´à´¤à´¾à´£àµàµ."
+msgid ""
+"You may not specify more than one sink. You have to specify a boolean value."
+msgstr ""
+"à´à´°àµ സിà´àµà´à´¿à´²àµâ à´àµà´àµà´¤à´²àµâ നിà´àµà´à´³àµâ നലàµâà´àµà´£àµà´à´¤à´¿à´²àµà´². à´àµà´à´¾à´¤àµ, à´à´°àµ à´¬àµà´³à´¿à´¯à´¨àµâ à´®àµà´²àµà´²àµà´¯à´µàµà´ നിà´àµà´à´³àµâ നലàµâà´àµà´£àµà´à´¤à´¾à´£àµàµ."
#: ../src/utils/pactl.c:1103
msgid ""
"You may not specify more than one source. You have to specify a boolean "
"value."
-msgstr "à´à´°àµ à´¸àµà´´àµà´¸à´¿à´²àµâ à´àµà´àµà´¤à´²àµâ നിà´àµà´à´³àµâ നലàµâà´àµà´£àµà´à´¤à´¿à´²àµà´². à´àµà´à´¾à´¤àµ, à´à´°àµ à´¬àµà´³à´¿à´¯à´¨àµâ à´®àµà´²àµà´²àµà´¯à´µàµà´ നിà´àµà´à´³àµâ നലàµâà´àµà´£àµà´à´¤à´¾à´£àµàµ."
+msgstr ""
+"à´à´°àµ à´¸àµà´´àµà´¸à´¿à´²àµâ à´àµà´àµà´¤à´²àµâ നിà´àµà´à´³àµâ നലàµâà´àµà´£àµà´à´¤à´¿à´²àµà´². à´àµà´à´¾à´¤àµ, à´à´°àµ à´¬àµà´³à´¿à´¯à´¨àµâ à´®àµà´²àµà´²àµà´¯à´µàµà´ നിà´àµà´à´³àµâ നലàµâà´àµà´£àµà´à´¤à´¾à´£àµàµ."
#: ../src/utils/pactl.c:1115
msgid "You have to specify a card name/index and a profile name"
@@ -2333,4 +2348,3 @@ msgstr "à´àµà´²à´¿à´«àµà´£à´¿ à´¡àµà´¯àµà´ªàµà´²àµà´àµà´¸àµ (HSP/HFP)"
#: ../src/modules/reserve-wrap.c:151
msgid "PulseAudio Sound Server"
msgstr "പളàµâà´¸àµà´à´¡à´¿à´¯àµ à´¸àµà´£àµà´àµ സരàµâവരàµâ"
-
diff --git a/po/mr.po b/po/mr.po
index 56bcf98..0e7eda9 100644
--- a/po/mr.po
+++ b/po/mr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio.master-tx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 08:40+0000\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-10 15:34+0530\n"
"Last-Translator: Sandeep Shedmake <sshedmak at redhat.com>\n"
"Language-Team: Marathi <fedora-trans-mr at redhat.com>\n"
@@ -218,7 +218,8 @@ msgstr "पà¥à¤°à¤£à¤¾à¤²à¥ पदà¥à¤§à¤¤à¥ à¤
à¤à¤¤à¤°à¥à¤à¤¤ à¤à¤¾à¤°
#: ../src/daemon/main.c:581
msgid "Running in system mode, but --disallow-module-loading not set!"
-msgstr "पà¥à¤°à¤£à¤¾à¤²à¥ पदà¥à¤§à¤¤à¥ à¤
à¤à¤¤à¤°à¥à¤à¤¤ à¤à¤¾à¤°à¥à¤¯à¤°à¤¤, परà¤à¤¤à¥ --disallow-module-loading निशà¥à¤à¤¿à¤¤ à¤à¥à¤²à¥ नाहà¥!"
+msgstr ""
+"पà¥à¤°à¤£à¤¾à¤²à¥ पदà¥à¤§à¤¤à¥ à¤
à¤à¤¤à¤°à¥à¤à¤¤ à¤à¤¾à¤°à¥à¤¯à¤°à¤¤, परà¤à¤¤à¥ --disallow-module-loading निशà¥à¤à¤¿à¤¤ à¤à¥à¤²à¥ नाहà¥!"
#: ../src/daemon/main.c:584
msgid "Running in system mode, forcibly disabling SHM mode!"
@@ -1085,6 +1086,14 @@ msgstr "लाà¤à¥ à¤à¥à¤²à¥ à¤à¤¹à¥ à¤
सॠà¤à¤¢à¤³à¤²à¥ नाह
msgid "Client forked"
msgstr "à¤à¥à¤²à¤¾à¤à¤à¤ विà¤à¤¾à¤à¥à¤¤ à¤à¥à¤²à¥"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
@@ -1512,7 +1521,8 @@ msgstr "सावधानता: वाहिनॠनà¤à¤¾à¤¶à¤¾ फाà¤
#: ../src/utils/pacat.c:1004
#, c-format
-msgid "Opening a %s stream with sample specification '%s' and channel map '%s'."
+msgid ""
+"Opening a %s stream with sample specification '%s' and channel map '%s'."
msgstr "%s सà¥à¤à¥à¤°à¥à¤® à¤à¤¾à¤à¤£à¥ सà¤à¤¯à¥à¤à¤¨à¤¾ '%s' व वाहिनॠनà¤à¤¾à¤¶à¤¾ '%s' सह à¤à¤à¤¡à¤¤ à¤à¤¹à¥."
#: ../src/utils/pacat.c:1005
@@ -2102,14 +2112,17 @@ msgid "You have to specify a module index"
msgstr "तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ विà¤à¤¾à¤ à¤à¤à¤¡à¥à¤à¥à¤¸à¥ निशà¥à¤à¤¿à¤¤ à¤à¤°à¤¾à¤µà¥ लाà¤à¥à¤²"
#: ../src/utils/pactl.c:1090
-msgid "You may not specify more than one sink. You have to specify a boolean value."
-msgstr "तà¥à¤®à¥à¤¹à¥ à¤à¤à¤¾à¤ªà¥à¤à¥à¤·à¤¾ à¤à¤¾à¤¸à¥à¤¤ सà¥à¤à¤ निशà¥à¤à¤¿à¤¤ à¤à¤°à¥ शà¤à¤¤ नाहà¥. तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ बà¥à¤²à¥à¤¯à¤¨ मà¥à¤²à¥à¤¯ निशà¥à¤à¤¿à¤¤ à¤à¤°à¤¾à¤µà¥ लाà¤à¥à¤²."
+msgid ""
+"You may not specify more than one sink. You have to specify a boolean value."
+msgstr ""
+"तà¥à¤®à¥à¤¹à¥ à¤à¤à¤¾à¤ªà¥à¤à¥à¤·à¤¾ à¤à¤¾à¤¸à¥à¤¤ सà¥à¤à¤ निशà¥à¤à¤¿à¤¤ à¤à¤°à¥ शà¤à¤¤ नाहà¥. तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ बà¥à¤²à¥à¤¯à¤¨ मà¥à¤²à¥à¤¯ निशà¥à¤à¤¿à¤¤ à¤à¤°à¤¾à¤µà¥ लाà¤à¥à¤²."
#: ../src/utils/pactl.c:1103
msgid ""
"You may not specify more than one source. You have to specify a boolean "
"value."
-msgstr "तà¥à¤®à¥à¤¹à¥ à¤à¤à¤¾à¤ªà¥à¤à¥à¤·à¤¾ à¤à¤¾à¤¸à¥à¤¤ सà¥à¤°à¥à¤¤ निशà¥à¤à¤¿à¤¤ à¤à¤°à¥ शà¤à¤¤ नाहà¥. तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ बà¥à¤²à¥à¤¯à¤¨ मà¥à¤²à¥à¤¯ निशà¥à¤à¤¿à¤¤ à¤à¤°à¤¾à¤µà¥ लाà¤à¥à¤²."
+msgstr ""
+"तà¥à¤®à¥à¤¹à¥ à¤à¤à¤¾à¤ªà¥à¤à¥à¤·à¤¾ à¤à¤¾à¤¸à¥à¤¤ सà¥à¤°à¥à¤¤ निशà¥à¤à¤¿à¤¤ à¤à¤°à¥ शà¤à¤¤ नाहà¥. तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ बà¥à¤²à¥à¤¯à¤¨ मà¥à¤²à¥à¤¯ निशà¥à¤à¤¿à¤¤ à¤à¤°à¤¾à¤µà¥ लाà¤à¥à¤²."
#: ../src/utils/pactl.c:1115
msgid "You have to specify a card name/index and a profile name"
@@ -2335,4 +2348,3 @@ msgstr "à¤à¥à¤²à¤¿à¤«à¥à¤¨à¥ डà¥à¤¯à¥à¤ªà¥à¤²à¥à¤à¥à¤¸à¥ (HSP/HFP)"
#: ../src/modules/reserve-wrap.c:151
msgid "PulseAudio Sound Server"
msgstr "PulseAudio à¤à¤µà¤¾à¤ सरà¥à¤µà¤°"
-
diff --git a/po/nl.po b/po/nl.po
index 6943e77..073423c 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio.master-tx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 08:40+0000\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-10 16:03+0200\n"
"Last-Translator: Geert Warrink <geert.warrink at onsnet.nu>\n"
"Language-Team: nl <nl at li.org>\n"
@@ -1100,6 +1100,14 @@ msgstr "Implementatie ontbreekt"
msgid "Client forked"
msgstr "Client afgesplitst"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/or.po b/po/or.po
index e625a03..6f1e2d9 100644
--- a/po/or.po
+++ b/po/or.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio.master-tx.or\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-09 21:03+0530\n"
"Last-Translator: Manoj Kumar Giri <mgiri at redhat.com>\n"
"Language-Team: Oriya <oriya-it at googlegroups.com>\n"
@@ -1099,6 +1099,14 @@ msgstr "à¬
ନàପସàଥିତ ପàରààà¬"
msgid "Client forked"
msgstr "à¬àରାହଠଶାà¬à¬¾à¬¯àà¬àତ ହàà¬à¬à¬¿"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/pa.po b/po/pa.po
index 9d22dd0..2f0097a 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio.master-tx.pa\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 04:42+0000\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-10 11:19+0530\n"
"Last-Translator: Jaswinder Singh <jsingh at redhat.com>\n"
"Language-Team: Punjabi <Punjabi-users at lists.sourceforge.net>\n"
@@ -377,7 +377,8 @@ msgstr "ਤਾà©à© ਹਾà¨-ਰà©à©à©à¨²à©à¨¶à¨¨ à¨à¨¾à¨à¨®à¨° à¨à¨ª
msgid ""
"Dude, your kernel stinks! The chef's recommendation today is Linux with high-"
"resolution timers enabled!"
-msgstr "ਮਿੱਤਰਾ, ਤà©à¨°à¨¾ à¨à¨°à¨¨à¨² ਪà©à¨°à¨¾à¨£à¨¾ ਹà©! à¨à©à¨« ਦ੠à¨
ੱਠਦ੠ਸਿਫਾਰਸ਼ ਹਾà¨-ਰà©à©à©à¨²à©à¨¶à¨¨ à¨à¨¾à¨à¨®à¨° ਯà©à¨ ਨਾਲ ਲà©à¨¨à¨à¨¸ ਹà©!"
+msgstr ""
+"ਮਿੱਤਰਾ, ਤà©à¨°à¨¾ à¨à¨°à¨¨à¨² ਪà©à¨°à¨¾à¨£à¨¾ ਹà©! à¨à©à¨« ਦ੠à¨
ੱਠਦ੠ਸਿਫਾਰਸ਼ ਹਾà¨-ਰà©à©à©à¨²à©à¨¶à¨¨ à¨à¨¾à¨à¨®à¨° ਯà©à¨ ਨਾਲ ਲà©à¨¨à¨à¨¸ ਹà©!"
#: ../src/daemon/main.c:839
msgid "pa_core_new() failed."
@@ -1078,6 +1079,14 @@ msgstr "à¨à©à¨°-ਮà©à¨à©à¨¦ ਨਿਰਧਾਰਨ"
msgid "Client forked"
msgstr "à¨à¨²à¨¾à¨à¨ à¨
ੱਡ à¨à©à¨¤à¨¾"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
@@ -1505,7 +1514,8 @@ msgstr "à¨à©±à¨ %s ਸà¨à¨°à©à¨® ਨà©à©° ਸà©à¨à¨ªà¨² ਹਦਾà¨à¨¤ '
#: ../src/utils/pacat.c:1004
#, c-format
-msgid "Opening a %s stream with sample specification '%s' and channel map '%s'."
+msgid ""
+"Opening a %s stream with sample specification '%s' and channel map '%s'."
msgstr "à¨à©±à¨ %s ਸà¨à¨°à©à¨® ਨà©à©° ਸà©à¨à¨ªà¨² ਹਦਾà¨à¨¤ '%s' à¨
ਤ੠à¨à©à¨¨à¨² ਮà©à¨ª '%s' ਨਾਲ à¨à©à¨²à©à¨¹à¨¿à¨ à¨à¨¾ ਰਿਹਾ ਹà©à¥¤"
#: ../src/utils/pacat.c:1005
@@ -2095,7 +2105,8 @@ msgid "You have to specify a module index"
msgstr "ਤà©à¨¹à¨¾à¨¨à©à©° à¨à©±à¨ ਮà©à¨¡à©à¨à¨² ਲਿਸਠਦà©à¨£à© ਪਵà©à¨à©"
#: ../src/utils/pactl.c:1090
-msgid "You may not specify more than one sink. You have to specify a boolean value."
+msgid ""
+"You may not specify more than one sink. You have to specify a boolean value."
msgstr "ਤà©à¨¸à©à¨ à¨à©±à¨ ਤà©à¨ ਵੱਧ ਸਿੰਠਨਹà©à¨ ਦ੠ਸà¨à¨¦à©à¥¤ ਤà©à¨¹à¨¾à¨¨à©à©° à¨à©±à¨ ਬà©à¨²à©à¨
ਨ ਮà©à©±à¨² ਦà©à¨£à¨¾ ਪਵà©à¨à¨¾à¥¤"
#: ../src/utils/pactl.c:1103
@@ -2332,4 +2343,3 @@ msgstr "à¨à©à¨²à©à¨«à©à¨¨à© ਡà©à¨ªà¨²à©à¨à¨¸ (HSP/HFP)"
#: ../src/modules/reserve-wrap.c:151
msgid "PulseAudio Sound Server"
msgstr "ਪਲਸà¨à¨¡à©à¨ ਸਾà¨à¨à¨¡ ਡਰਾà¨à¨µà¨°"
-
diff --git a/po/pl.po b/po/pl.po
index e3d27ee..6b0141b 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-03 12:25+0200\n"
"Last-Translator: Piotr DrÄ
g <piotrdrag at gmail.com>\n"
"Language-Team: Polish <pl at li.org>\n"
@@ -1097,6 +1097,14 @@ msgstr "Brak implementacji"
msgid "Client forked"
msgstr "Rozdzielono klienta"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/pt.po b/po/pt.po
index 4e8ffee..070a8bc 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: Rui Gouveia <rui.gouveia at globaltek.pt>\n"
"Language-Team: pt <fedora-trans-pt at redhat.com>\n"
@@ -1093,6 +1093,14 @@ msgstr "Implementação em falta"
msgid "Client forked"
msgstr "Cliente efectuou um fork"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 56690df..1340f74 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-08-24 19:26-0300\n"
"Last-Translator: Igor Pires Soares <igor at projetofedora.org>\n"
"Language-Team: Brazilian-Portuguese <fedora-trans-pt_br at redhat.com>\n"
@@ -1106,6 +1106,14 @@ msgstr "Implementação faltando"
msgid "Client forked"
msgstr "Cliente bifurcado"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/sr.po b/po/sr.po
index 754639c..37a23dc 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-09 21:33+0100\n"
"Last-Translator: MiloÅ¡ KomarÄeviÄ <kmilos at gmail.com>\n"
"Language-Team: Serbian (sr) <fedora-trans-sr at redhat.com>\n"
@@ -1102,6 +1102,14 @@ msgstr "ÐиÑе одÑаÑено"
msgid "Client forked"
msgstr "ÐлиÑÐµÐ½Ñ Ñе изÑаÑван"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/sr at latin.po b/po/sr at latin.po
index 86032f7..d64f749 100644
--- a/po/sr at latin.po
+++ b/po/sr at latin.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-09 21:33+0100\n"
"Last-Translator: MiloÅ¡ KomarÄeviÄ <kmilos at gmail.com>\n"
"Language-Team: Serbian (sr) <fedora-trans-sr at redhat.com>\n"
@@ -1103,6 +1103,14 @@ msgstr "Nije odraÄeno"
msgid "Client forked"
msgstr "Klijent je izraÄvan"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/sv.po b/po/sv.po
index 3788b41..89a4fc3 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2008-09-05 18:24+0100\n"
"Last-Translator: Daniel Nylander <po at danielnylander.se>\n"
"Language-Team: Swedish <tp-sv at listor.tp-sv.se>\n"
@@ -997,6 +997,14 @@ msgstr ""
msgid "Client forked"
msgstr ""
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/ta.po b/po/ta.po
index 2f3d68b..dc1a861 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio.master-tx.ta\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 08:40+0000\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-10 15:57+0530\n"
"Last-Translator: I. Felix <ifelix at redhat.com>\n"
"Language-Team: Tamil <fedora-trans-ta at redhat.com>\n"
@@ -240,7 +240,8 @@ msgstr "à®à®£à®¿à®©à®¿ à®®à¯à®±à¯à®®à¯à®¯à®¿à®²à¯ à®à®¯à®à¯à®à¯à®à®¿
#: ../src/daemon/main.c:581
msgid "Running in system mode, but --disallow-module-loading not set!"
-msgstr "à®à®£à®¿à®©à®¿ à®®à¯à®±à¯à®®à¯à®¯à®¿à®²à¯ à®à®¯à®à¯à®à¯à®à®¿à®±à®¤à¯, à®à®©à®¾à®²à¯ --disallow-module-loading à®
à®®à¯à®à¯à®à®ªà¯à®ªà®à®µà®¿à®²à¯à®²à¯!"
+msgstr ""
+"à®à®£à®¿à®©à®¿ à®®à¯à®±à¯à®®à¯à®¯à®¿à®²à¯ à®à®¯à®à¯à®à¯à®à®¿à®±à®¤à¯, à®à®©à®¾à®²à¯ --disallow-module-loading à®
à®®à¯à®à¯à®à®ªà¯à®ªà®à®µà®¿à®²à¯à®²à¯!"
#: ../src/daemon/main.c:584
msgid "Running in system mode, forcibly disabling SHM mode!"
@@ -1107,6 +1108,14 @@ msgstr "விà®à¯à®ªà®à¯à® à®à¯à®¯à®²à¯à®ªà®¾à®à¯"
msgid "Client forked"
msgstr "à®à®¿à®³à¯à®¯à®©à¯ நà¯à®à¯à®à®ªà¯à®ªà®à¯à®à®¤à¯"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
@@ -1514,7 +1523,8 @@ msgstr "à®à®²à®¿ à®à¯à®ªà¯à®ªà®¿à®©à¯ திறà®à¯à® à®®à¯à®à®¿à®¯à®µ
msgid ""
"Warning: specified sample specification will be overwritten with "
"specification from file."
-msgstr "à®à®à¯à®à®°à®¿à®à¯à®à¯: à®à¯à®ªà¯à®ªà®¿à®²à®¿à®°à¯à®¨à¯à®¤à¯ à®à¯à®±à®¿à®ªà¯à®ªà¯à®à¯à®à¯à®à®©à¯ à®à¯à®±à®¿à®à¯à®à®¿à®à¯à® மாதிரி à®à¯à®±à®¿à®ªà¯à®ªà¯à®à¯ à®®à¯à®²à¯à®´à¯à®¤à®ªà¯à®ªà®à®²à®¾à®®à¯."
+msgstr ""
+"à®à®à¯à®à®°à®¿à®à¯à®à¯: à®à¯à®ªà¯à®ªà®¿à®²à®¿à®°à¯à®¨à¯à®¤à¯ à®à¯à®±à®¿à®ªà¯à®ªà¯à®à¯à®à¯à®à®©à¯ à®à¯à®±à®¿à®à¯à®à®¿à®à¯à® மாதிரி à®à¯à®±à®¿à®ªà¯à®ªà¯à®à¯ à®®à¯à®²à¯à®´à¯à®¤à®ªà¯à®ªà®à®²à®¾à®®à¯."
#: ../src/utils/pacat.c:958 ../src/utils/pactl.c:997
msgid "Failed to determine sample specification from file."
@@ -1534,8 +1544,10 @@ msgstr "à®à®à¯à®à®°à®¿à®à¯à®à¯: à®à¯à®ªà¯à®ªà¯à®à¯à®à¯ à®à¯à®©
#: ../src/utils/pacat.c:1004
#, c-format
-msgid "Opening a %s stream with sample specification '%s' and channel map '%s'."
-msgstr "à®à®°à¯ %s ஸà¯à®à¯à®°à®®à¯ மாதிரி à®à¯à®±à®¿à®ªà¯à®ªà¯à®à¯à®à¯ '%s' மறà¯à®±à¯à®®à¯ à®à¯à®©à®²à¯ வரà¯à®ªà®à¯à®à®®à¯ '%s' à®à®à®©à¯ திறà®à¯à®à®¿à®±à®¤à¯."
+msgid ""
+"Opening a %s stream with sample specification '%s' and channel map '%s'."
+msgstr ""
+"à®à®°à¯ %s ஸà¯à®à¯à®°à®®à¯ மாதிரி à®à¯à®±à®¿à®ªà¯à®ªà¯à®à¯à®à¯ '%s' மறà¯à®±à¯à®®à¯ à®à¯à®©à®²à¯ வரà¯à®ªà®à¯à®à®®à¯ '%s' à®à®à®©à¯ திறà®à¯à®à®¿à®±à®¤à¯."
#: ../src/utils/pacat.c:1005
msgid "recording"
@@ -1667,7 +1679,8 @@ msgstr "தறà¯à®ªà¯à®¤à¯ பயனிலà¯à®³à¯à®³à®¤à¯: %u தà¯à®à¯
#: ../src/utils/pactl.c:144
#, c-format
msgid "Allocated during whole lifetime: %u blocks containing %s bytes total.\n"
-msgstr "வாழà¯à®à¯à®à¯ à®®à¯à®´à¯à®µà®¤à¯à®®à¯ à®à®¤à¯à®à¯à®à®ªà¯à®ªà®à¯à®à®¤à¯: %u தà¯à®à¯à®¤à®¿à®à®³à¯ %s பà¯à®à¯à®à®³à¯ à®®à¯à®¤à¯à®¤à®®à®¾à® à®à¯à®£à¯à®à¯à®³à¯à®³à®¤à¯.\n"
+msgstr ""
+"வாழà¯à®à¯à®à¯ à®®à¯à®´à¯à®µà®¤à¯à®®à¯ à®à®¤à¯à®à¯à®à®ªà¯à®ªà®à¯à®à®¤à¯: %u தà¯à®à¯à®¤à®¿à®à®³à¯ %s பà¯à®à¯à®à®³à¯ à®®à¯à®¤à¯à®¤à®®à®¾à® à®à¯à®£à¯à®à¯à®³à¯à®³à®¤à¯.\n"
#: ../src/utils/pactl.c:147
#, c-format
@@ -2123,14 +2136,17 @@ msgid "You have to specify a module index"
msgstr "தà¯à®à¯à®¤à®¿ à®
à®à¯à®à®µà®£à¯à®¯à¯ நà¯à®à¯à®à®³à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à® வà¯à®£à¯à®à¯à®®à¯"
#: ../src/utils/pactl.c:1090
-msgid "You may not specify more than one sink. You have to specify a boolean value."
-msgstr "à®à®°à¯ à®à®¿à®à¯à®à®¿à®±à¯à®à¯ à®®à¯à®²à¯ நà¯à®à¯à®à®³à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à®à®à¯ à®à¯à®à®¾à®¤à¯. பà¯à®²à®¿à®¯à®©à¯ மதிபà¯à®ªà¯ நà¯à®à¯à®à®³à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à® வà¯à®£à¯à®à¯à®®à¯."
+msgid ""
+"You may not specify more than one sink. You have to specify a boolean value."
+msgstr ""
+"à®à®°à¯ à®à®¿à®à¯à®à®¿à®±à¯à®à¯ à®®à¯à®²à¯ நà¯à®à¯à®à®³à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à®à®à¯ à®à¯à®à®¾à®¤à¯. பà¯à®²à®¿à®¯à®©à¯ மதிபà¯à®ªà¯ நà¯à®à¯à®à®³à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à® வà¯à®£à¯à®à¯à®®à¯."
#: ../src/utils/pactl.c:1103
msgid ""
"You may not specify more than one source. You have to specify a boolean "
"value."
-msgstr "à®à®°à¯ à®®à¯à®²à®¤à¯à®¤à®¿à®±à¯à®à¯ à®®à¯à®²à¯ நà¯à®à¯à®à®³à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à®à®à¯ à®à¯à®à®¾à®¤à¯. பà¯à®²à®¿à®¯à®©à¯ மதிபà¯à®ªà¯ நà¯à®à¯à®à®³à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à® வà¯à®£à¯à®à¯à®®à¯."
+msgstr ""
+"à®à®°à¯ à®®à¯à®²à®¤à¯à®¤à®¿à®±à¯à®à¯ à®®à¯à®²à¯ நà¯à®à¯à®à®³à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à®à®à¯ à®à¯à®à®¾à®¤à¯. பà¯à®²à®¿à®¯à®©à¯ மதிபà¯à®ªà¯ நà¯à®à¯à®à®³à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à® வà¯à®£à¯à®à¯à®®à¯."
#: ../src/utils/pactl.c:1115
msgid "You have to specify a card name/index and a profile name"
@@ -2360,4 +2376,3 @@ msgstr "Telephony Duplex (HSP/HFP)"
#: ../src/modules/reserve-wrap.c:151
msgid "PulseAudio Sound Server"
msgstr "PulseAudio à®à®²à®¿ à®à¯à®µà¯à®¯à®à®®à¯"
-
diff --git a/po/te.po b/po/te.po
index 4c5ad9b..778c283 100644
--- a/po/te.po
+++ b/po/te.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio.master-tx.te\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 08:40+0000\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-10 16:54+0530\n"
"Last-Translator: Krishna Babu K <kkrothap at redhat.com>\n"
"Language-Team: Telugu <en at li.org>\n"
@@ -15,7 +15,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=2; plural=(n!=1);\n\n"
+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+"\n"
"\n"
"\n"
"\n"
@@ -1083,6 +1084,14 @@ msgstr "తపà±à°ªà°¿à°ªà±à°¯à°¿à°¨ యిà°à°ªà±à°²à°¿à°®à±à°à°à±à°·
msgid "Client forked"
msgstr "à°à°à±à°·à°¿à°¦à°¾à°°à°¿ à°ªà±à°°à±à°à± à°à±à°¸à°¿à°¨"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
@@ -1510,7 +1519,8 @@ msgstr "à°¹à±à°à±à°à°°à°¿à°: à°ªà±à°°à°¸à°¾à°°à°®à°¾à°°à±à° మాపà±
#: ../src/utils/pacat.c:1004
#, c-format
-msgid "Opening a %s stream with sample specification '%s' and channel map '%s'."
+msgid ""
+"Opening a %s stream with sample specification '%s' and channel map '%s'."
msgstr "%s à°¸à±à°à±à°°à±à°®à±âనౠమాదిరి విశదà±à°à°°à°£ '%s' మరియౠపà±à°°à°¸à°¾à°°à°®à°¾à°°à±à° మాపౠ'%s'తౠతà±à°°à±à°à±à°à±à°¨à±à°¨à°¦à°¿."
#: ../src/utils/pacat.c:1005
@@ -2100,14 +2110,17 @@ msgid "You have to specify a module index"
msgstr "à°®à±à°°à± మాడà±à°¯à±à°²à± విషయసà±à°à°¿à° à°¤à±à°²à±à°ªà°µà°²à°¸à°¿ à°µà±à°à°¦à°¿"
#: ../src/utils/pactl.c:1090
-msgid "You may not specify more than one sink. You have to specify a boolean value."
-msgstr "à°®à±à°°à± à°µà±à° సిà°à°à± à°à°¨à±à°¨à°¾ à°¯à±à°à±à°à±à°µ à°¤à±à°²à±à°ªà°µà°²à°¸à°¿ à°µà±à°à°¡à°à°ªà±à°µà°à±à°à±. à°®à±à°°à± à°¬à±à°²à°¿à°¯à°¨à± విలà±à°µà°¨à± à°¤à±à°²à±à°ªà°µà°²à°¸à°¿ à°µà±à°à°¦à°¿."
+msgid ""
+"You may not specify more than one sink. You have to specify a boolean value."
+msgstr ""
+"à°®à±à°°à± à°µà±à° సిà°à°à± à°à°¨à±à°¨à°¾ à°¯à±à°à±à°à±à°µ à°¤à±à°²à±à°ªà°µà°²à°¸à°¿ à°µà±à°à°¡à°à°ªà±à°µà°à±à°à±. à°®à±à°°à± à°¬à±à°²à°¿à°¯à°¨à± విలà±à°µà°¨à± à°¤à±à°²à±à°ªà°µà°²à°¸à°¿ à°µà±à°à°¦à°¿."
#: ../src/utils/pactl.c:1103
msgid ""
"You may not specify more than one source. You have to specify a boolean "
"value."
-msgstr "à°®à±à°°à± à°µà±à° à°®à±à°²à°®à± à°à°¨à±à°¨à°¾ à°¯à±à°à±à°à±à°µ à°¤à±à°²à±à°ªà°µà°²à°¸à°¿ à°µà±à°à°¡à°à°ªà±à°µà°à±à°à±. à°®à±à°°à± à°¬à±à°²à°¿à°¯à°¨à± విలà±à°µà°¨à± à°¤à±à°²à±à°ªà°µà°²à°¸à°¿ à°µà±à°à°¦à°¿."
+msgstr ""
+"à°®à±à°°à± à°µà±à° à°®à±à°²à°®à± à°à°¨à±à°¨à°¾ à°¯à±à°à±à°à±à°µ à°¤à±à°²à±à°ªà°µà°²à°¸à°¿ à°µà±à°à°¡à°à°ªà±à°µà°à±à°à±. à°®à±à°°à± à°¬à±à°²à°¿à°¯à°¨à± విలà±à°µà°¨à± à°¤à±à°²à±à°ªà°µà°²à°¸à°¿ à°µà±à°à°¦à°¿."
#: ../src/utils/pactl.c:1115
msgid "You have to specify a card name/index and a profile name"
@@ -2335,4 +2348,3 @@ msgstr "à°à±à°²à°¿à°«à±à°¨à± à°¡à±à°ªà±à°²à±à°à±à°¸à± (HSP/HFP)"
#: ../src/modules/reserve-wrap.c:151
msgid "PulseAudio Sound Server"
msgstr "పలà±à°¸à± à°à°¡à°¿à°¯à± à°¸à±à°à°¡à± à°¸à±à°µà°¿à°"
-
diff --git a/po/uk.po b/po/uk.po
index 7d9487d..b2315bd 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio.master-tx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-09-05 16:47+0300\n"
"Last-Translator: Yuri Chornoivan <yurchor at ukr.net>\n"
"Language-Team: Ukrainian <translation at linux.org.ua>\n"
@@ -1118,6 +1118,14 @@ msgstr "ÐÑдÑÑÑÐ½Ñ ÑеалÑзаÑÑÑ"
msgid "Client forked"
msgstr "ÐлÑÑÐ½Ñ ÑозгалÑжено"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 63d423c..0d0c98e 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pulseaudio.master-tx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-10 01:54+0200\n"
+"POT-Creation-Date: 2009-09-11 01:26+0200\n"
"PO-Revision-Date: 2009-04-06 10:26+1000\n"
"Last-Translator: Leah Liu <lliu at redhat.com>\n"
"Language-Team: Simplified Chinese <zh at li.org>\n"
@@ -1055,6 +1055,14 @@ msgstr "缺å°é¨ç½²"
msgid "Client forked"
msgstr "客æ·ç«¯åæ¯"
+#: ../src/pulse/error.c:68
+msgid "Input/Output error"
+msgstr ""
+
+#: ../src/pulse/error.c:69
+msgid "Device or resource busy"
+msgstr ""
+
#: ../src/pulse/sample.c:172
#, c-format
msgid "%s %uch %uHz"
commit 7e43371c1741e99a2bd11fc831c488d970661bc7
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Sep 11 01:28:03 2009 +0200
build-sys: increase library version
diff --git a/configure.ac b/configure.ac
index 40455e1..adf5d90 100644
--- a/configure.ac
+++ b/configure.ac
@@ -45,7 +45,7 @@ AC_SUBST(PA_PROTOCOL_VERSION, 16)
# The stable ABI for client applications, for the version info x:y:z
# always will hold y=z
-AC_SUBST(LIBPULSE_VERSION_INFO, [9:0:9])
+AC_SUBST(LIBPULSE_VERSION_INFO, [10:0:10])
# A simplified, synchronous, ABI-stable interface for client
# applications, for the version info x:y:z always will hold y=z
commit 297f31820617a22091764485f4dec2eabf3c74c5
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Sep 11 01:49:16 2009 +0200
doxygen: drop references to pacat.c and paplay.c as examples since tehy are not useful as such and in the case of paplay not even existant anymore
diff --git a/src/pulse/context.h b/src/pulse/context.h
index 670b23e..ecff58d 100644
--- a/src/pulse/context.h
+++ b/src/pulse/context.h
@@ -147,12 +147,6 @@
* server. A pa_context object wraps a connection to a PulseAudio
* server using its native protocol. */
-/** \example pacat.c
- * A playback and recording tool using the asynchronous API */
-
-/** \example paplay.c
- * A sound file playback tool using the asynchronous API, based on libsndfile */
-
PA_C_DECL_BEGIN
/** An opaque connection context to a daemon */
commit 4e3f7d5577577729d95d249ba05a931a05487583
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Sep 11 01:49:39 2009 +0200
doxygen: add rtclock.h to documentation
diff --git a/doxygen/doxygen.conf.in b/doxygen/doxygen.conf.in
index 6c2021c..7dc0f8b 100644
--- a/doxygen/doxygen.conf.in
+++ b/doxygen/doxygen.conf.in
@@ -417,7 +417,7 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
-INPUT = ../src/pulse/context.h ../src/pulse/stream.h ../src/pulse/pulseaudio.h ../src/pulse/sample.h ../src/pulse/def.h ../src/pulse/subscribe.h ../src/pulse/introspect.h ../src/pulse/scache.h ../src/pulse/mainloop-api.h ../src/pulse/glib-mainloop.h ../src/pulse/mainloop.h ../src/pulse/mainloop-signal.h ../src/pulse/error.h ../src/pulse/operation.h ../src/pulse/simple.h ../src/pulse/version.h ../src/pulse/volume.h ../src/pulse/channelmap.h ../src/pulse/thread-mainloop.h ../src/pulse/xmalloc.h ../src/pulse/utf8.h ../src/pulse/util.h ../src/pulse/timeval.h ../src/pulse/proplist.h ../src/pulse/gccmacro.h ../src/pulse/ext-stream-restore.h
+INPUT = ../src/pulse/context.h ../src/pulse/stream.h ../src/pulse/pulseaudio.h ../src/pulse/sample.h ../src/pulse/def.h ../src/pulse/subscribe.h ../src/pulse/introspect.h ../src/pulse/scache.h ../src/pulse/mainloop-api.h ../src/pulse/glib-mainloop.h ../src/pulse/mainloop.h ../src/pulse/mainloop-signal.h ../src/pulse/error.h ../src/pulse/operation.h ../src/pulse/simple.h ../src/pulse/version.h ../src/pulse/volume.h ../src/pulse/channelmap.h ../src/pulse/thread-mainloop.h ../src/pulse/xmalloc.h ../src/pulse/utf8.h ../src/pulse/util.h ../src/pulse/timeval.h ../src/pulse/proplist.h ../src/pulse/gccmacro.h ../src/pulse/ext-stream-restore.h ../src/pulse/rtclock.h
# If the value of the INPUT tag contains directories, you can use the
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
diff --git a/src/pulse/pulseaudio.h b/src/pulse/pulseaudio.h
index aa369e6..793ba9b 100644
--- a/src/pulse/pulseaudio.h
+++ b/src/pulse/pulseaudio.h
@@ -44,15 +44,17 @@
#include <pulse/util.h>
#include <pulse/timeval.h>
#include <pulse/proplist.h>
+#include <pulse/rtclock.h>
/** \file
- * Include all libpulse header files at once. The following
- * files are included: \ref mainloop-api.h, \ref sample.h, \ref def.h,
- * \ref context.h, \ref stream.h, \ref introspect.h, \ref subscribe.h,
- * \ref scache.h, \ref version.h, \ref error.h, \ref channelmap.h,
- * \ref operation.h,\ref volume.h, \ref xmalloc.h, \ref utf8.h, \ref
- * thread-mainloop.h, \ref mainloop.h, \ref util.h, \ref proplist.h, \ref timeval.h and
- * \ref mainloop-signal.h at once */
+ * Include all libpulse header files at once. The following files are
+ * included: \ref mainloop-api.h, \ref sample.h, \ref def.h, \ref
+ * context.h, \ref stream.h, \ref introspect.h, \ref subscribe.h, \ref
+ * scache.h, \ref version.h, \ref error.h, \ref channelmap.h, \ref
+ * operation.h,\ref volume.h, \ref xmalloc.h, \ref utf8.h, \ref
+ * thread-mainloop.h, \ref mainloop.h, \ref util.h, \ref proplist.h,
+ * \ref timeval.h, \ref rtclock.h and \ref mainloop-signal.h at
+ * once */
/** \mainpage
*
commit 42b795b408925b13c9cc9db362b3f2d48d498449
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Sep 11 01:49:55 2009 +0200
doxygen: don't confuse doxygen with spurious ..
diff --git a/src/pulse/proplist.h b/src/pulse/proplist.h
index bc4dbd8..260c26c 100644
--- a/src/pulse/proplist.h
+++ b/src/pulse/proplist.h
@@ -197,7 +197,7 @@ PA_C_DECL_BEGIN
/** For filter devices: master device id if applicable. */
#define PA_PROP_DEVICE_MASTER_DEVICE "device.master_device"
-/** For devices: buffer size in bytes, integer formatted as string.. */
+/** For devices: buffer size in bytes, integer formatted as string. */
#define PA_PROP_DEVICE_BUFFERING_BUFFER_SIZE "device.buffering.buffer_size"
/** For devices: fragment size in bytes, integer formatted as string. */
commit 5919337433e97c36be904c4f7839f22045aa7947
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Sep 11 02:16:17 2009 +0200
proplist: define properties for storing window position
diff --git a/src/pulse/proplist.h b/src/pulse/proplist.h
index 260c26c..8bf9c48 100644
--- a/src/pulse/proplist.h
+++ b/src/pulse/proplist.h
@@ -97,6 +97,24 @@ PA_C_DECL_BEGIN
/** For streams that belong to a window on the screen: an XDG icon name for the window. e.g. "totem" */
#define PA_PROP_WINDOW_ICON_NAME "window.icon_name"
+/** For streams that belong to a window on the screen: absolute horizontal window position on the screen, integer formatted as text string. e.g. "865". \since 0.9.17 */
+#define PA_PROP_WINDOW_X "window.x"
+
+/** For streams that belong to a window on the screen: absolute vertical window position on the screen, integer formatted as text string. e.g. "343". \since 0.9.17 */
+#define PA_PROP_WINDOW_Y "window.y"
+
+/** For streams that belong to a window on the screen: window width on the screen, integer formatted as text string. e.g. "365". \since 0.9.17 */
+#define PA_PROP_WINDOW_WIDTH "window.width"
+
+/** For streams that belong to a window on the screen: window height on the screen, integer formatted as text string. e.g. "643". \since 0.9.17 */
+#define PA_PROP_WINDOW_HEIGHT "window.height"
+
+/** For streams that belong to a window on the screen: relative position of the window center on the screen, float formatted as text string, ranging from 0.0 (left side of the screen) to 1.0 (right side of the screen). e.g. "0.65". \since 0.9.17 */
+#define PA_PROP_WINDOW_HPOS "window.hpos"
+
+/** For streams that belong to a window on the screen: relative position of the window center on the screen, float formatted as text string, ranging from 0.0 (top of the screen) to 1.0 (bottom of the screen). e.g. "0.43". \since 0.9.17 */
+#define PA_PROP_WINDOW_VPOS "window.vpos"
+
/** For streams that belong to an X11 window on the screen: the X11 display string. e.g. ":0.0" */
#define PA_PROP_WINDOW_X11_DISPLAY "window.x11.display"
commit 6fa2445e1131c9c42b685451fd47d79ae2884871
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Sep 11 02:32:21 2009 +0200
position-event-sounds: honour window position if set, position both vertically and horizontally
diff --git a/src/modules/module-position-event-sounds.c b/src/modules/module-position-event-sounds.c
index e191ec3..c3329f8 100644
--- a/src/modules/module-position-event-sounds.c
+++ b/src/modules/module-position-event-sounds.c
@@ -57,34 +57,67 @@ struct userdata {
pa_hook_slot *sink_input_fixate_hook_slot;
};
+static int parse_pos(const char *pos, double *f) {
+
+ if (pa_atod(pos, f) < 0) {
+ pa_log_warn("Failed to parse hpos/vpos property '%s'.", pos);
+ return -1;
+ }
+
+ if (*f < 0.0 || *f > 1.0) {
+ pa_log_warn("Property hpos/vpos out of range %0.2f", *f);
+ return -1;
+ }
+
+ return 0;
+}
+
static pa_hook_result_t sink_input_fixate_hook_callback(pa_core *core, pa_sink_input_new_data *data, struct userdata *u) {
- const char *hpos;
+ const char *hpos, *vpos, *role;
double f;
char t[PA_CVOLUME_SNPRINT_MAX];
pa_cvolume v;
pa_assert(data);
- if (!(hpos = pa_proplist_gets(data->proplist, PA_PROP_EVENT_MOUSE_HPOS)))
+ if (!(role = pa_proplist_gets(data->proplist, PA_PROP_MEDIA_ROLE)))
return PA_HOOK_OK;
- if (pa_atod(hpos, &f) < 0) {
- pa_log_warn("Failed to parse "PA_PROP_EVENT_MOUSE_HPOS" property '%s'.", hpos);
+ if (!pa_streq(role, "event"))
return PA_HOOK_OK;
- }
- if (f < 0.0 || f > 1.0) {
- pa_log_warn("Property "PA_PROP_EVENT_MOUSE_HPOS" out of range %0.2f", f);
+ if (!(hpos = pa_proplist_gets(data->proplist, PA_PROP_EVENT_MOUSE_HPOS)))
+ hpos = pa_proplist_gets(data->proplist, PA_PROP_WINDOW_HPOS);
+
+ if (!(vpos = pa_proplist_gets(data->proplist, PA_PROP_EVENT_MOUSE_VPOS)))
+ vpos = pa_proplist_gets(data->proplist, PA_PROP_WINDOW_VPOS);
+
+ if (!hpos && !vpos)
return PA_HOOK_OK;
+
+ pa_cvolume_reset(&v, data->sample_spec.channels);
+
+ if (hpos) {
+ if (parse_pos(hpos, &f) < 0)
+ return PA_HOOK_OK;
+
+ if (pa_channel_map_can_balance(&data->channel_map)) {
+ pa_log_debug("Positioning event sound '%s' horizontally at %0.2f.", pa_strnull(pa_proplist_gets(data->proplist, PA_PROP_EVENT_ID)), f);
+ pa_cvolume_set_balance(&v, &data->channel_map, f*2.0-1.0);
+ }
}
- pa_log_debug("Positioning event sound '%s' at %0.2f.", pa_strnull(pa_proplist_gets(data->proplist, PA_PROP_EVENT_ID)), f);
+ if (vpos) {
+ if (parse_pos(vpos, &f) < 0)
+ return PA_HOOK_OK;
- pa_cvolume_reset(&v, data->sample_spec.channels);
- pa_cvolume_set_balance(&v, &data->channel_map, f*2.0-1.0);
+ if (pa_channel_map_can_fade(&data->channel_map)) {
+ pa_log_debug("Positioning event sound '%s' vertically at %0.2f.", pa_strnull(pa_proplist_gets(data->proplist, PA_PROP_EVENT_ID)), f);
+ pa_cvolume_set_fade(&v, &data->channel_map, f*2.0-1.0);
+ }
+ }
pa_log_debug("Final volume factor %s.", pa_cvolume_snprint(t, sizeof(t), &v));
-
pa_sink_input_new_data_apply_volume_factor(data, &v);
return PA_HOOK_OK;
commit a015d56fac4a9af5296afe69825168cd1ce486b7
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Sep 11 03:26:25 2009 +0200
core: add an additional volume factor that is applied after resampling took place
diff --git a/src/pulsecore/sink-input.c b/src/pulsecore/sink-input.c
index 5f79ab1..744c47f 100644
--- a/src/pulsecore/sink-input.c
+++ b/src/pulsecore/sink-input.c
@@ -92,6 +92,18 @@ void pa_sink_input_new_data_apply_volume_factor(pa_sink_input_new_data *data, co
}
}
+void pa_sink_input_new_data_apply_volume_factor_sink(pa_sink_input_new_data *data, const pa_cvolume *volume_factor) {
+ pa_assert(data);
+ pa_assert(volume_factor);
+
+ if (data->volume_factor_sink_is_set)
+ pa_sw_cvolume_multiply(&data->volume_factor_sink, &data->volume_factor_sink, volume_factor);
+ else {
+ data->volume_factor_sink_is_set = TRUE;
+ data->volume_factor_sink = *volume_factor;
+ }
+}
+
void pa_sink_input_new_data_set_muted(pa_sink_input_new_data *data, pa_bool_t mute) {
pa_assert(data);
@@ -176,7 +188,6 @@ int pa_sink_input_new(
pa_channel_map_init_extend(&data->channel_map, data->sample_spec.channels, PA_CHANNEL_MAP_DEFAULT);
}
- pa_return_val_if_fail(pa_channel_map_valid(&data->channel_map), -PA_ERR_INVALID);
pa_return_val_if_fail(pa_channel_map_compatible(&data->channel_map, &data->sample_spec), -PA_ERR_INVALID);
if (!data->volume_is_set) {
@@ -185,15 +196,18 @@ int pa_sink_input_new(
data->save_volume = FALSE;
}
- pa_return_val_if_fail(pa_cvolume_valid(&data->volume), -PA_ERR_INVALID);
pa_return_val_if_fail(pa_cvolume_compatible(&data->volume, &data->sample_spec), -PA_ERR_INVALID);
if (!data->volume_factor_is_set)
pa_cvolume_reset(&data->volume_factor, data->sample_spec.channels);
- pa_return_val_if_fail(pa_cvolume_valid(&data->volume_factor), -PA_ERR_INVALID);
pa_return_val_if_fail(pa_cvolume_compatible(&data->volume_factor, &data->sample_spec), -PA_ERR_INVALID);
+ if (!data->volume_factor_sink_is_set)
+ pa_cvolume_reset(&data->volume_factor_sink, data->sink->sample_spec.channels);
+
+ pa_return_val_if_fail(pa_cvolume_compatible(&data->volume_factor_sink, &data->sink->sample_spec), -PA_ERR_INVALID);
+
if (!data->muted_is_set)
data->muted = FALSE;
@@ -283,6 +297,7 @@ int pa_sink_input_new(
i->volume = data->volume;
i->volume_factor = data->volume_factor;
+ i->volume_factor_sink = data->volume_factor_sink;
i->real_ratio = i->reference_ratio = data->volume;
pa_cvolume_reset(&i->soft_volume, i->sample_spec.channels);
pa_cvolume_reset(&i->real_ratio, i->sample_spec.channels);
@@ -576,7 +591,7 @@ pa_usec_t pa_sink_input_get_latency(pa_sink_input *i, pa_usec_t *sink_latency) {
/* Called from thread context */
void pa_sink_input_peek(pa_sink_input *i, size_t slength /* in sink frames */, pa_memchunk *chunk, pa_cvolume *volume) {
- pa_bool_t do_volume_adj_here;
+ pa_bool_t do_volume_adj_here, need_volume_factor_sink;
pa_bool_t volume_is_norm;
size_t block_size_max_sink, block_size_max_sink_input;
size_t ilength;
@@ -624,6 +639,7 @@ void pa_sink_input_peek(pa_sink_input *i, size_t slength /* in sink frames */, p
do_volume_adj_here = !pa_channel_map_equal(&i->channel_map, &i->sink->channel_map);
volume_is_norm = pa_cvolume_is_norm(&i->thread_info.soft_volume) && !i->thread_info.muted;
+ need_volume_factor_sink = !pa_cvolume_is_norm(&i->volume_factor_sink);
while (!pa_memblockq_is_readable(i->thread_info.render_memblockq)) {
pa_memchunk tchunk;
@@ -655,6 +671,7 @@ void pa_sink_input_peek(pa_sink_input *i, size_t slength /* in sink frames */, p
while (tchunk.length > 0) {
pa_memchunk wchunk;
+ pa_bool_t nvfs = need_volume_factor_sink;
wchunk = tchunk;
pa_memblock_ref(wchunk.memblock);
@@ -666,18 +683,41 @@ void pa_sink_input_peek(pa_sink_input *i, size_t slength /* in sink frames */, p
if (do_volume_adj_here && !volume_is_norm) {
pa_memchunk_make_writable(&wchunk, 0);
- if (i->thread_info.muted)
+ if (i->thread_info.muted) {
pa_silence_memchunk(&wchunk, &i->thread_info.sample_spec);
- else
+ nvfs = FALSE;
+
+ } else if (!i->thread_info.resampler && nvfs) {
+ pa_cvolume v;
+
+ /* If we don't need a resampler we can merge the
+ * post and the pre volume adjustment into one */
+
+ pa_sw_cvolume_multiply(&v, &i->thread_info.soft_volume, &i->volume_factor_sink);
+ pa_volume_memchunk(&wchunk, &i->thread_info.sample_spec, &v);
+ nvfs = FALSE;
+
+ } else
pa_volume_memchunk(&wchunk, &i->thread_info.sample_spec, &i->thread_info.soft_volume);
}
- if (!i->thread_info.resampler)
+ if (!i->thread_info.resampler) {
+
+ if (nvfs) {
+ pa_memchunk_make_writable(&wchunk, 0);
+ pa_volume_memchunk(&wchunk, &i->sink->sample_spec, &i->volume_factor_sink);
+ }
+
pa_memblockq_push_align(i->thread_info.render_memblockq, &wchunk);
- else {
+ } else {
pa_memchunk rchunk;
pa_resampler_run(i->thread_info.resampler, &wchunk, &rchunk);
+ if (nvfs) {
+ pa_memchunk_make_writable(&rchunk, 0);
+ pa_volume_memchunk(&rchunk, &i->sink->sample_spec, &i->volume_factor_sink);
+ }
+
/* pa_log_debug("pushing %lu", (unsigned long) rchunk.length); */
if (rchunk.memblock) {
@@ -1186,6 +1226,7 @@ int pa_sink_input_start_move(pa_sink_input *i) {
pa_assert_se(pa_asyncmsgq_send(i->sink->asyncmsgq, PA_MSGOBJECT(i->sink), PA_SINK_MESSAGE_START_MOVE, i, 0, NULL) == 0);
pa_sink_update_status(i->sink);
+ pa_cvolume_remap(&i->volume_factor_sink, &i->sink->channel_map, &i->channel_map);
i->sink = NULL;
pa_sink_input_unref(i);
@@ -1240,6 +1281,8 @@ int pa_sink_input_finish_move(pa_sink_input *i, pa_sink *dest, pa_bool_t save) {
i->save_sink = save;
pa_idxset_put(dest->inputs, pa_sink_input_ref(i), NULL);
+ pa_cvolume_remap(&i->volume_factor_sink, &i->channel_map, &i->sink->channel_map);
+
if (pa_sink_input_get_state(i) == PA_SINK_INPUT_CORKED)
i->sink->n_corked++;
diff --git a/src/pulsecore/sink-input.h b/src/pulsecore/sink-input.h
index 59eabe3..415a801 100644
--- a/src/pulsecore/sink-input.h
+++ b/src/pulsecore/sink-input.h
@@ -100,6 +100,8 @@ struct pa_sink_input {
pa_cvolume volume_factor; /* An internally used volume factor that can be used by modules to apply effects and suchlike without having that visible to the outside */
pa_cvolume soft_volume; /* The internal software volume we apply to all PCM data while it passes through. Usually calculated as real_ratio * volume_factor */
+ pa_cvolume volume_factor_sink; /* A second volume factor in format of the sink this stream is connected to */
+
pa_bool_t muted:1;
/* if TRUE then the source we are connected to and/or the volume
@@ -273,13 +275,13 @@ typedef struct pa_sink_input_new_data {
pa_sample_spec sample_spec;
pa_channel_map channel_map;
- pa_cvolume volume, volume_factor;
+ pa_cvolume volume, volume_factor, volume_factor_sink;
pa_bool_t muted:1;
pa_bool_t sample_spec_is_set:1;
pa_bool_t channel_map_is_set:1;
- pa_bool_t volume_is_set:1, volume_factor_is_set:1;
+ pa_bool_t volume_is_set:1, volume_factor_is_set:1, volume_factor_sink_is_set:1;
pa_bool_t muted_is_set:1;
pa_bool_t volume_is_absolute:1;
@@ -292,6 +294,7 @@ void pa_sink_input_new_data_set_sample_spec(pa_sink_input_new_data *data, const
void pa_sink_input_new_data_set_channel_map(pa_sink_input_new_data *data, const pa_channel_map *map);
void pa_sink_input_new_data_set_volume(pa_sink_input_new_data *data, const pa_cvolume *volume);
void pa_sink_input_new_data_apply_volume_factor(pa_sink_input_new_data *data, const pa_cvolume *volume_factor);
+void pa_sink_input_new_data_apply_volume_factor_sink(pa_sink_input_new_data *data, const pa_cvolume *volume_factor);
void pa_sink_input_new_data_set_muted(pa_sink_input_new_data *data, pa_bool_t mute);
void pa_sink_input_new_data_done(pa_sink_input_new_data *data);
commit 180ef1eebdfbdf0220af1fb5e4bf43e348207cde
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Sep 11 03:27:38 2009 +0200
position-event-sounds: apply volume factor after, not before resampling
diff --git a/src/modules/module-position-event-sounds.c b/src/modules/module-position-event-sounds.c
index c3329f8..fa8f73d 100644
--- a/src/modules/module-position-event-sounds.c
+++ b/src/modules/module-position-event-sounds.c
@@ -95,15 +95,15 @@ static pa_hook_result_t sink_input_fixate_hook_callback(pa_core *core, pa_sink_i
if (!hpos && !vpos)
return PA_HOOK_OK;
- pa_cvolume_reset(&v, data->sample_spec.channels);
+ pa_cvolume_reset(&v, data->sink->sample_spec.channels);
if (hpos) {
if (parse_pos(hpos, &f) < 0)
return PA_HOOK_OK;
- if (pa_channel_map_can_balance(&data->channel_map)) {
+ if (pa_channel_map_can_balance(&data->sink->channel_map)) {
pa_log_debug("Positioning event sound '%s' horizontally at %0.2f.", pa_strnull(pa_proplist_gets(data->proplist, PA_PROP_EVENT_ID)), f);
- pa_cvolume_set_balance(&v, &data->channel_map, f*2.0-1.0);
+ pa_cvolume_set_balance(&v, &data->sink->channel_map, f*2.0-1.0);
}
}
@@ -111,14 +111,14 @@ static pa_hook_result_t sink_input_fixate_hook_callback(pa_core *core, pa_sink_i
if (parse_pos(vpos, &f) < 0)
return PA_HOOK_OK;
- if (pa_channel_map_can_fade(&data->channel_map)) {
+ if (pa_channel_map_can_fade(&data->sink->channel_map)) {
pa_log_debug("Positioning event sound '%s' vertically at %0.2f.", pa_strnull(pa_proplist_gets(data->proplist, PA_PROP_EVENT_ID)), f);
- pa_cvolume_set_fade(&v, &data->channel_map, f*2.0-1.0);
+ pa_cvolume_set_fade(&v, &data->sink->channel_map, f*2.0-1.0);
}
}
pa_log_debug("Final volume factor %s.", pa_cvolume_snprint(t, sizeof(t), &v));
- pa_sink_input_new_data_apply_volume_factor(data, &v);
+ pa_sink_input_new_data_apply_volume_factor_sink(data, &v);
return PA_HOOK_OK;
}
--
hooks/post-receive
PulseAudio Sound Server
More information about the pulseaudio-commits
mailing list