mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2026-06-12 08:48:20 +02:00
Fix typos
Signed-off-by: Diego Viola <diego.viola@gmail.com>
This commit is contained in:
parent
48c7a1aa18
commit
5ce13f8874
59 changed files with 78 additions and 78 deletions
8
NEWS.rst
8
NEWS.rst
|
|
@ -521,7 +521,7 @@ Additions:
|
|||
configuration files are found in the system. (#611)
|
||||
|
||||
- The "policy-dsp" script, used in Asahi Linux to provide a software DSP
|
||||
for Apple Sillicon devices, has now been ported to 0.5 properly and
|
||||
for Apple Silicon devices, has now been ported to 0.5 properly and
|
||||
documented (#619, !627)
|
||||
|
||||
WirePlumber 0.5.0
|
||||
|
|
@ -638,7 +638,7 @@ Other changes:
|
|||
- Fixed multiple issues related to restoring the Route parameter of devices,
|
||||
which includes volume state (#551)
|
||||
|
||||
- Smart filters can now be targetted by specific streams directly when
|
||||
- Smart filters can now be targeted by specific streams directly when
|
||||
the ``filter.smart.targetable`` property is set (#554)
|
||||
|
||||
- Ported the mechanism to override device profile priorities in the
|
||||
|
|
@ -1723,7 +1723,7 @@ Changes since 0.2.95:
|
|||
- Fixed an issue where links between the si-convert audioconvert nodes and
|
||||
the actual device nodes would stay active forever; they are now declared
|
||||
as "passive" links, which allows the nodes to suspend. This requires
|
||||
changes to PipeWire that were commited after 0.3.6; when using WirePlumber
|
||||
changes to PipeWire that were committed after 0.3.6; when using WirePlumber
|
||||
with 0.3.5 or 0.3.6, it is recommended to disable streams on audio sinks
|
||||
by commenting out the ``streams = "audio-sink.streams"`` lines in the
|
||||
.endpoint configuration files
|
||||
|
|
@ -1752,7 +1752,7 @@ adds a couple of features that ``pipewire-media-session`` lacks, such as:
|
|||
- It is configurable:
|
||||
|
||||
- It supports configuration of endpoints, so that their properties
|
||||
(such as their name) can be overriden
|
||||
(such as their name) can be overridden
|
||||
|
||||
- It also supports declaring priorities on endpoints, so that there
|
||||
are sane defaults on the first start
|
||||
|
|
|
|||
|
|
@ -463,7 +463,7 @@ LOOKUP_CACHE_SIZE = 0
|
|||
# than 0 to get more control over the balance between CPU load and processing
|
||||
# speed. At this moment only the input processing can be done using multiple
|
||||
# threads. Since this is still an experimental feature the default is set to 1,
|
||||
# which efficively disables parallel processing. Please report any issues you
|
||||
# which effectively disables parallel processing. Please report any issues you
|
||||
# encounter. Generating dot graphs in parallel is controlled by the
|
||||
# DOT_NUM_THREADS setting.
|
||||
# Minimum value: 0, maximum value: 32, default value: 1.
|
||||
|
|
|
|||
|
|
@ -286,7 +286,7 @@ static const struct {
|
|||
|
||||
/* map glib's log levels, which are flags in the range (1<<2) to (1<<8),
|
||||
to the 1-7 range; first calculate the integer part of log2(log_level)
|
||||
to bring it down to 2-8 and substract 1 */
|
||||
to bring it down to 2-8 and subtract 1 */
|
||||
static G_GNUC_CONST inline gint
|
||||
level_index_from_flags (GLogLevelFlags log_level)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ object_manager_destroyed (gpointer data, GObject * om)
|
|||
g_ptr_array_remove_fast (self->object_managers, om);
|
||||
}
|
||||
|
||||
/* find the subclass of WpPipewireGloabl that can handle
|
||||
/* find the subclass of WpPipewireGlobal that can handle
|
||||
the given pipewire interface type of the given version */
|
||||
static inline GType
|
||||
find_proxy_instance_type (const char * type, guint32 version)
|
||||
|
|
|
|||
|
|
@ -26,8 +26,8 @@ struct _WpRegistry
|
|||
struct pw_registry *pw_registry;
|
||||
struct spa_hook listener;
|
||||
|
||||
GPtrArray *globals; // elementy-type: WpGlobal*
|
||||
GPtrArray *tmp_globals; // elementy-type: WpGlobal*
|
||||
GPtrArray *globals; // element-type: WpGlobal*
|
||||
GPtrArray *tmp_globals; // element-type: WpGlobal*
|
||||
GPtrArray *objects; // element-type: GObject*
|
||||
GPtrArray *object_managers; // element-type: WpObjectManager*
|
||||
GPtrArray *features; // element-type: gchar*
|
||||
|
|
|
|||
|
|
@ -630,7 +630,7 @@ on_metadata_added (WpObjectManager *om, WpMetadata *m, gpointer d)
|
|||
g_weak_ref_set (&self->metadata_schema, m);
|
||||
}
|
||||
|
||||
/* presistent-sm-settings */
|
||||
/* persistent-sm-settings */
|
||||
else if (g_str_equal (metadata_name, self->metadata_persistent_name)) {
|
||||
g_autoptr (WpIterator) it = NULL;
|
||||
g_auto (GValue) item = G_VALUE_INIT;
|
||||
|
|
|
|||
|
|
@ -1276,7 +1276,7 @@ wp_spa_pod_get_fraction (WpSpaPod *self, guint32 *num, guint32 *denom)
|
|||
* \ingroup wpspapod
|
||||
* \param self the spa pod object
|
||||
* \param value the boolean value
|
||||
* \returns TRUE if the value could be set, FALSE othewrise.
|
||||
* \returns TRUE if the value could be set, FALSE otherwise.
|
||||
*/
|
||||
gboolean
|
||||
wp_spa_pod_set_boolean (WpSpaPod *self, gboolean value)
|
||||
|
|
@ -1293,7 +1293,7 @@ wp_spa_pod_set_boolean (WpSpaPod *self, gboolean value)
|
|||
* \ingroup wpspapod
|
||||
* \param self the spa pod object
|
||||
* \param value the Id value
|
||||
* \returns TRUE if the value could be set, FALSE othewrise.
|
||||
* \returns TRUE if the value could be set, FALSE otherwise.
|
||||
*/
|
||||
gboolean
|
||||
wp_spa_pod_set_id (WpSpaPod *self, guint32 value)
|
||||
|
|
@ -1310,7 +1310,7 @@ wp_spa_pod_set_id (WpSpaPod *self, guint32 value)
|
|||
* \ingroup wpspapod
|
||||
* \param self the spa pod object
|
||||
* \param value the int value
|
||||
* \returns TRUE if the value could be set, FALSE othewrise.
|
||||
* \returns TRUE if the value could be set, FALSE otherwise.
|
||||
*/
|
||||
gboolean
|
||||
wp_spa_pod_set_int (WpSpaPod *self, gint32 value)
|
||||
|
|
@ -1327,7 +1327,7 @@ wp_spa_pod_set_int (WpSpaPod *self, gint32 value)
|
|||
* \ingroup wpspapod
|
||||
* \param self the spa pod object
|
||||
* \param value the long value
|
||||
* \returns TRUE if the value could be set, FALSE othewrise.
|
||||
* \returns TRUE if the value could be set, FALSE otherwise.
|
||||
*/
|
||||
gboolean
|
||||
wp_spa_pod_set_long (WpSpaPod *self, gint64 value)
|
||||
|
|
@ -1344,7 +1344,7 @@ wp_spa_pod_set_long (WpSpaPod *self, gint64 value)
|
|||
* \ingroup wpspapod
|
||||
* \param self the spa pod object
|
||||
* \param value the float value
|
||||
* \returns TRUE if the value could be set, FALSE othewrise.
|
||||
* \returns TRUE if the value could be set, FALSE otherwise.
|
||||
*/
|
||||
gboolean
|
||||
wp_spa_pod_set_float (WpSpaPod *self, float value)
|
||||
|
|
@ -1361,7 +1361,7 @@ wp_spa_pod_set_float (WpSpaPod *self, float value)
|
|||
* \ingroup wpspapod
|
||||
* \param self the spa pod object
|
||||
* \param value the double value
|
||||
* \returns TRUE if the value could be set, FALSE othewrise.
|
||||
* \returns TRUE if the value could be set, FALSE otherwise.
|
||||
*/
|
||||
gboolean
|
||||
wp_spa_pod_set_double (WpSpaPod *self, double value)
|
||||
|
|
@ -1379,7 +1379,7 @@ wp_spa_pod_set_double (WpSpaPod *self, double value)
|
|||
* \param self the spa pod object
|
||||
* \param type_name the name of the type of the pointer
|
||||
* \param value the pointer value
|
||||
* \returns TRUE if the value could be set, FALSE othewrise.
|
||||
* \returns TRUE if the value could be set, FALSE otherwise.
|
||||
*/
|
||||
gboolean
|
||||
wp_spa_pod_set_pointer (WpSpaPod *self, const char *type_name,
|
||||
|
|
@ -1402,7 +1402,7 @@ wp_spa_pod_set_pointer (WpSpaPod *self, const char *type_name,
|
|||
* \ingroup wpspapod
|
||||
* \param self the spa pod object
|
||||
* \param value the Fd value
|
||||
* \returns TRUE if the value could be set, FALSE othewrise.
|
||||
* \returns TRUE if the value could be set, FALSE otherwise.
|
||||
*/
|
||||
gboolean
|
||||
wp_spa_pod_set_fd (WpSpaPod *self, gint64 value)
|
||||
|
|
@ -1420,7 +1420,7 @@ wp_spa_pod_set_fd (WpSpaPod *self, gint64 value)
|
|||
* \param self the spa pod object
|
||||
* \param width the width value of the rectangle
|
||||
* \param height the height value of the rectangle
|
||||
* \returns TRUE if the value could be set, FALSE othewrise.
|
||||
* \returns TRUE if the value could be set, FALSE otherwise.
|
||||
*/
|
||||
gboolean
|
||||
wp_spa_pod_set_rectangle (WpSpaPod *self, guint32 width, guint32 height)
|
||||
|
|
@ -1440,7 +1440,7 @@ wp_spa_pod_set_rectangle (WpSpaPod *self, guint32 width, guint32 height)
|
|||
* \param self the spa pod object
|
||||
* \param num the numerator value of the fraction
|
||||
* \param denom the denominator value of the fraction
|
||||
* \returns TRUE if the value could be set, FALSE othewrise.
|
||||
* \returns TRUE if the value could be set, FALSE otherwise.
|
||||
*/
|
||||
gboolean
|
||||
wp_spa_pod_set_fraction (WpSpaPod *self, guint32 num, guint32 denom)
|
||||
|
|
@ -1459,7 +1459,7 @@ wp_spa_pod_set_fraction (WpSpaPod *self, guint32 num, guint32 denom)
|
|||
* \ingroup wpspapod
|
||||
* \param self the spa pod object
|
||||
* \param pod the pod with the value to be set
|
||||
* \returns TRUE if the value could be set, FALSE othewrise.
|
||||
* \returns TRUE if the value could be set, FALSE otherwise.
|
||||
*/
|
||||
gboolean
|
||||
wp_spa_pod_set_pod (WpSpaPod *self, WpSpaPod *pod)
|
||||
|
|
@ -1538,7 +1538,7 @@ wp_spa_pod_set_pod (WpSpaPod *self, WpSpaPod *pod)
|
|||
* \ingroup wpspapod
|
||||
* \param self the spa pod object
|
||||
* \param pod the pod with the value to be compared with
|
||||
* \returns TRUE if both spa pod objects have the same values, FALSE othewrise.
|
||||
* \returns TRUE if both spa pod objects have the same values, FALSE otherwise.
|
||||
*/
|
||||
gboolean
|
||||
wp_spa_pod_equal (WpSpaPod *self, WpSpaPod *pod)
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ wp_lua_script_cleanup (WpLuaScript * self)
|
|||
lua_rawsetp (L, LUA_REGISTRYINDEX, self);
|
||||
}
|
||||
|
||||
/* Relase the strong reference of the Lua state so that the script's global
|
||||
/* Release the strong reference of the Lua state so that the script's global
|
||||
* variables are released when deactivating the script */
|
||||
g_clear_object (&self->lua_state);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ _wplua_pushgvalue_userdata (lua_State * L, GType type)
|
|||
if (table_name == NULL)
|
||||
g_error ("type passed to %s not boxed or object", __func__);
|
||||
|
||||
/* auxillary library can use 4 stack slots, plus 1 for userdata */
|
||||
/* auxiliary library can use 4 stack slots, plus 1 for userdata */
|
||||
if (!lua_checkstack (L, 5))
|
||||
g_error ("cannot grow Lua stack in %s", __func__);
|
||||
v = lua_newuserdata (L, sizeof (GValue));
|
||||
|
|
@ -47,7 +47,7 @@ _wplua_togvalue_userdata_named (lua_State *L, int idx, GType type,
|
|||
{
|
||||
GValue *v;
|
||||
|
||||
/* auxillary library can use 4 stack slots */
|
||||
/* auxiliary library can use 4 stack slots */
|
||||
if (!lua_checkstack (L, 4))
|
||||
g_error ("cannot grow Lua stack in %s", __func__);
|
||||
if (!(v = luaL_testudata (L, idx, table_name)))
|
||||
|
|
|
|||
2
po/af.po
2
po/af.po
|
|
@ -29,7 +29,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/as.po
2
po/as.po
|
|
@ -31,7 +31,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
4
po/be.po
4
po/be.po
|
|
@ -1,4 +1,4 @@
|
|||
# Belarusian tanslation of PipeWire
|
||||
# Belarusian translation of PipeWire
|
||||
# Copyright (C) 2016 PipeWire's COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PipeWire package.
|
||||
# Viktar Vaŭčkievič <victorenator@gmail.com>, 2016-2023.
|
||||
|
|
@ -33,7 +33,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/ca.po
2
po/ca.po
|
|
@ -48,7 +48,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/cs.po
2
po/cs.po
|
|
@ -34,7 +34,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/da.po
2
po/da.po
|
|
@ -29,7 +29,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/de.po
2
po/de.po
|
|
@ -39,7 +39,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/el.po
2
po/el.po
|
|
@ -31,7 +31,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/eo.po
2
po/eo.po
|
|
@ -32,7 +32,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/es.po
2
po/es.po
|
|
@ -38,7 +38,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/fa.po
2
po/fa.po
|
|
@ -31,7 +31,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/fr.po
2
po/fr.po
|
|
@ -40,7 +40,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/gl.po
2
po/gl.po
|
|
@ -34,7 +34,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/gu.po
2
po/gu.po
|
|
@ -31,7 +31,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/he.po
2
po/he.po
|
|
@ -31,7 +31,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/hr.po
2
po/hr.po
|
|
@ -34,7 +34,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/hu.po
2
po/hu.po
|
|
@ -38,7 +38,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/id.po
2
po/id.po
|
|
@ -28,7 +28,7 @@ msgstr ""
|
|||
#. unique device/node name tables
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/it.po
2
po/it.po
|
|
@ -34,7 +34,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/ja.po
2
po/ja.po
|
|
@ -36,7 +36,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/ka.po
2
po/ka.po
|
|
@ -31,7 +31,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/kn.po
2
po/kn.po
|
|
@ -31,7 +31,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/ko.po
2
po/ko.po
|
|
@ -29,7 +29,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/lt.po
2
po/lt.po
|
|
@ -32,7 +32,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/ml.po
2
po/ml.po
|
|
@ -28,7 +28,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/mr.po
2
po/mr.po
|
|
@ -31,7 +31,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/my.po
2
po/my.po
|
|
@ -31,7 +31,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/nl.po
2
po/nl.po
|
|
@ -33,7 +33,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/nn.po
2
po/nn.po
|
|
@ -32,7 +32,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
4
po/oc.po
4
po/oc.po
|
|
@ -30,7 +30,7 @@ msgstr ""
|
|||
#. unique device/node name tables
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
@ -124,4 +124,4 @@ msgstr "Camèra avant integrada"
|
|||
|
||||
#: src/scripts/monitors/libcamera/name-node.lua:63
|
||||
msgid "Built-in Back Camera"
|
||||
msgstr "Camèra arrièra integrada"
|
||||
msgstr "Camèra arrièra integrada"
|
||||
|
|
|
|||
2
po/or.po
2
po/or.po
|
|
@ -47,7 +47,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/pa.po
2
po/pa.po
|
|
@ -34,7 +34,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/pl.po
2
po/pl.po
|
|
@ -28,7 +28,7 @@ msgstr ""
|
|||
#. unique device/node name tables
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/pt.po
2
po/pt.po
|
|
@ -35,7 +35,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ msgstr ""
|
|||
#. unique device/node name tables
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/ro.po
2
po/ro.po
|
|
@ -31,7 +31,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/ru.po
2
po/ru.po
|
|
@ -35,7 +35,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/si.po
2
po/si.po
|
|
@ -30,7 +30,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/sk.po
2
po/sk.po
|
|
@ -33,7 +33,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/ta.po
2
po/ta.po
|
|
@ -53,7 +53,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/te.po
2
po/te.po
|
|
@ -39,7 +39,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
2
po/uk.po
2
po/uk.po
|
|
@ -32,7 +32,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ msgstr ""
|
|||
#. applies properties from config.rules when asked to
|
||||
#. set the device id and spa factory name; REQUIRED, do not change
|
||||
#. set the default pause-on-idle setting
|
||||
#. try to negotiate the max ammount of channels
|
||||
#. try to negotiate the max amount of channels
|
||||
#. set priority
|
||||
#. ensure the node has a media class
|
||||
#. ensure the node has a name
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ node.filter-graph.rules = [
|
|||
# ## Multiple filter graphs can be defined here.
|
||||
# ## The syntax is the same as the pipewire filter-chain conf files.
|
||||
#
|
||||
# ## This is an example of a bultin passthrough filter
|
||||
# ## This is an example of a builtin passthrough filter
|
||||
# {
|
||||
# nodes = [
|
||||
# {
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ wireplumber.settings = {
|
|||
|
||||
wireplumber.components.rules = [
|
||||
# This encodes common arguments and dependencies of the role loopbacks so that
|
||||
# we don't have to repeateadly write them on all instances below
|
||||
# we don't have to repeatedly write them on all instances below
|
||||
{
|
||||
matches = [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ AsyncEventHook {
|
|||
effective_access))
|
||||
end
|
||||
|
||||
-- Set defaut permissions if any, otherwise check permission manager
|
||||
-- Set default permissions if any, otherwise check permission manager
|
||||
if default_permissions ~= nil then
|
||||
client:update_permissions { ["any"] = default_permissions }
|
||||
log:info (client, string.format (
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ SimpleEventHook {
|
|||
local device = event:get_subject ()
|
||||
local device_name = device.properties["device.name"] or ""
|
||||
|
||||
-- Use device priority rules if any. Otherwise, get the prefered quality or
|
||||
-- Use device priority rules if any. Otherwise, get the preferred quality or
|
||||
-- latency priorities if BT device.
|
||||
local priorities = getRulesProfilePriorities (device)
|
||||
if priorities == nil then
|
||||
|
|
@ -77,7 +77,7 @@ SimpleEventHook {
|
|||
return
|
||||
end
|
||||
|
||||
-- Find the prefered profile
|
||||
-- Find the preferred profile
|
||||
for _, priority_profile in ipairs(priorities) do
|
||||
for p in device:iterate_params("EnumProfile") do
|
||||
local device_profile = cutils.parseParam(p, "EnumProfile")
|
||||
|
|
|
|||
|
|
@ -477,7 +477,7 @@ function checkProfiles (dev)
|
|||
if has_headset_profile then
|
||||
-- Always create the source loopback device if autoswitch is enabled.
|
||||
-- Otherwise, only create the source loopback device if the current profile
|
||||
-- is headset, and destroy the source loopback deivce if the current profile
|
||||
-- is headset, and destroy the source loopback device if the current profile
|
||||
-- is A2DP.
|
||||
if Settings.get_boolean ("bluetooth.autoswitch-to-headset-profile") then
|
||||
-- Create source loopback
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue