From c43de506375534dd7c49efdff699fa56f2d93316 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Fri, 20 Oct 2006 19:24:38 +0000 Subject: [PATCH] Unduplicate TTL strings --- modules/access_output/udp.c | 8 +++++--- src/libvlc.h | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/modules/access_output/udp.c b/modules/access_output/udp.c index 16a8957a71..9e3cdcce3c 100644 --- a/modules/access_output/udp.c +++ b/modules/access_output/udp.c @@ -77,9 +77,11 @@ static void Close( vlc_object_t * ); "Default caching value for outbound UDP streams. This " \ "value should be set in milliseconds." ) -#define TTL_TEXT N_("Time-To-Live (TTL)") -#define TTL_LONGTEXT N_("Time-To-Live of the " \ - "outgoing stream.") +#define TTL_TEXT N_("Hop limit (TTL)") +#define TTL_LONGTEXT N_( \ + "This is the hop limit (also known as \"Time-To-Live\" or TTL) of " \ + "the multicast packets sent by the stream output (0 = use operating " \ + "system built-in default).") #define GROUP_TEXT N_("Group packets") #define GROUP_LONGTEXT N_("Packets can be sent one by one at the right time " \ diff --git a/src/libvlc.h b/src/libvlc.h index 5a9ae2eb8a..359d516a05 100644 --- a/src/libvlc.h +++ b/src/libvlc.h @@ -434,7 +434,7 @@ static char *ppsz_clock_descriptions[] = #define TTL_TEXT N_("Hop limit (TTL)") #define TTL_LONGTEXT N_( \ "This is the hop limit (also known as \"Time-To-Live\" or TTL) of " \ - "the multicast packets sent by the stream output (0 = use operating "\ + "the multicast packets sent by the stream output (0 = use operating " \ "system built-in default).") #define MIFACE_TEXT N_("Multicast output interface") -- 2.39.5