Commit c43de506 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Unduplicate TTL strings

parent 495353bb
...@@ -77,9 +77,11 @@ static void Close( vlc_object_t * ); ...@@ -77,9 +77,11 @@ static void Close( vlc_object_t * );
"Default caching value for outbound UDP streams. This " \ "Default caching value for outbound UDP streams. This " \
"value should be set in milliseconds." ) "value should be set in milliseconds." )
#define TTL_TEXT N_("Time-To-Live (TTL)") #define TTL_TEXT N_("Hop limit (TTL)")
#define TTL_LONGTEXT N_("Time-To-Live of the " \ #define TTL_LONGTEXT N_( \
"outgoing stream.") "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_TEXT N_("Group packets")
#define GROUP_LONGTEXT N_("Packets can be sent one by one at the right time " \ #define GROUP_LONGTEXT N_("Packets can be sent one by one at the right time " \
......
...@@ -434,7 +434,7 @@ static char *ppsz_clock_descriptions[] = ...@@ -434,7 +434,7 @@ static char *ppsz_clock_descriptions[] =
#define TTL_TEXT N_("Hop limit (TTL)") #define TTL_TEXT N_("Hop limit (TTL)")
#define TTL_LONGTEXT N_( \ #define TTL_LONGTEXT N_( \
"This is the hop limit (also known as \"Time-To-Live\" or TTL) of " \ "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).") "system built-in default).")
#define MIFACE_TEXT N_("Multicast output interface") #define MIFACE_TEXT N_("Multicast output interface")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment