mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
tags: wrap long string constants
And fix indenting issue
This commit is contained in:
parent
88f80996b8
commit
d82700f0c9
1 changed files with 16 additions and 20 deletions
|
@ -160,15 +160,13 @@ _gst_tag_initialize (void)
|
||||||
gst_tag_merge_use_first);
|
gst_tag_merge_use_first);
|
||||||
gst_tag_register (GST_TAG_LOCATION, GST_TAG_FLAG_META,
|
gst_tag_register (GST_TAG_LOCATION, GST_TAG_FLAG_META,
|
||||||
G_TYPE_STRING,
|
G_TYPE_STRING,
|
||||||
_("location"),
|
_("location"), _("Origin of media as a URI (location, where the "
|
||||||
_
|
"original of the file or stream is hosted)"),
|
||||||
("Origin of media as a URI (location, where the original of the file or stream is hosted)"),
|
|
||||||
gst_tag_merge_strings_with_comma);
|
gst_tag_merge_strings_with_comma);
|
||||||
gst_tag_register (GST_TAG_HOMEPAGE, GST_TAG_FLAG_META,
|
gst_tag_register (GST_TAG_HOMEPAGE, GST_TAG_FLAG_META,
|
||||||
G_TYPE_STRING,
|
G_TYPE_STRING,
|
||||||
_("homepage"),
|
_("homepage"),
|
||||||
_
|
_("Homepage for this media (i.e. artist or movie homepage)"),
|
||||||
("Homepage for this media (i.e. artist or movie homepage)"),
|
|
||||||
gst_tag_merge_strings_with_comma);
|
gst_tag_merge_strings_with_comma);
|
||||||
gst_tag_register (GST_TAG_DESCRIPTION, GST_TAG_FLAG_META, G_TYPE_STRING,
|
gst_tag_register (GST_TAG_DESCRIPTION, GST_TAG_FLAG_META, G_TYPE_STRING,
|
||||||
_("description"), _("short text describing the content of the data"),
|
_("description"), _("short text describing the content of the data"),
|
||||||
|
@ -179,8 +177,9 @@ _gst_tag_initialize (void)
|
||||||
_
|
_
|
||||||
("International Standard Recording Code - see http://www.ifpi.org/isrc/"),
|
("International Standard Recording Code - see http://www.ifpi.org/isrc/"),
|
||||||
NULL);
|
NULL);
|
||||||
gst_tag_register (GST_TAG_ORGANIZATION, GST_TAG_FLAG_META, G_TYPE_STRING, _("organization"), _("organization"), /* FIXME */
|
/* FIXME: organization (fix what? tpm) */
|
||||||
gst_tag_merge_strings_with_comma);
|
gst_tag_register (GST_TAG_ORGANIZATION, GST_TAG_FLAG_META, G_TYPE_STRING,
|
||||||
|
_("organization"), _("organization"), gst_tag_merge_strings_with_comma);
|
||||||
gst_tag_register (GST_TAG_COPYRIGHT, GST_TAG_FLAG_META,
|
gst_tag_register (GST_TAG_COPYRIGHT, GST_TAG_FLAG_META,
|
||||||
G_TYPE_STRING, _("copyright"), _("copyright notice of the data"), NULL);
|
G_TYPE_STRING, _("copyright"), _("copyright notice of the data"), NULL);
|
||||||
gst_tag_register (GST_TAG_COPYRIGHT_URI, GST_TAG_FLAG_META,
|
gst_tag_register (GST_TAG_COPYRIGHT_URI, GST_TAG_FLAG_META,
|
||||||
|
@ -267,25 +266,22 @@ _gst_tag_initialize (void)
|
||||||
_("keywords"), _("comma separated keywords describing the content"),
|
_("keywords"), _("comma separated keywords describing the content"),
|
||||||
gst_tag_merge_strings_with_comma);
|
gst_tag_merge_strings_with_comma);
|
||||||
gst_tag_register (GST_TAG_GEO_LOCATION_NAME, GST_TAG_FLAG_META, G_TYPE_STRING,
|
gst_tag_register (GST_TAG_GEO_LOCATION_NAME, GST_TAG_FLAG_META, G_TYPE_STRING,
|
||||||
_("geo location name"),
|
_("geo location name"), _("human readable descriptive location of where "
|
||||||
_
|
"the media has been recorded or produced"), NULL);
|
||||||
("human readable descriptive location of where the media has been recorded or produced"),
|
|
||||||
NULL);
|
|
||||||
gst_tag_register (GST_TAG_GEO_LOCATION_LATITUDE, GST_TAG_FLAG_META,
|
gst_tag_register (GST_TAG_GEO_LOCATION_LATITUDE, GST_TAG_FLAG_META,
|
||||||
G_TYPE_DOUBLE, _("geo location latitude"),
|
G_TYPE_DOUBLE, _("geo location latitude"),
|
||||||
_
|
_("geo latitude location of where the media has been recorded or "
|
||||||
("geo latitude location of where the media has been recorded or produced in degrees according to WGS84 (zero at the equator, negative values for southern latitudes)"),
|
"produced in degrees according to WGS84 (zero at the equator, "
|
||||||
NULL);
|
"negative values for southern latitudes)"), NULL);
|
||||||
gst_tag_register (GST_TAG_GEO_LOCATION_LONGITUDE, GST_TAG_FLAG_META,
|
gst_tag_register (GST_TAG_GEO_LOCATION_LONGITUDE, GST_TAG_FLAG_META,
|
||||||
G_TYPE_DOUBLE, _("geo location longitude"),
|
G_TYPE_DOUBLE, _("geo location longitude"),
|
||||||
_
|
_("geo longitude location of where the media has been recorded or "
|
||||||
("geo longitude location of where the media has been recorded or produced in degrees according to WGS84 (zero at the prime meridian in Greenwich/UK, negative values for western longitudes)"),
|
"produced in degrees according to WGS84 (zero at the prime meridian "
|
||||||
NULL);
|
"in Greenwich/UK, negative values for western longitudes)"), NULL);
|
||||||
gst_tag_register (GST_TAG_GEO_LOCATION_ELEVATION, GST_TAG_FLAG_META,
|
gst_tag_register (GST_TAG_GEO_LOCATION_ELEVATION, GST_TAG_FLAG_META,
|
||||||
G_TYPE_DOUBLE, _("geo location elevation"),
|
G_TYPE_DOUBLE, _("geo location elevation"),
|
||||||
_
|
_("geo elevation of where the media has been recorded or produced in "
|
||||||
("geo elevation of where the media has been recorded or produced in meters according to WGS84 (zero is average sea level)"),
|
"meters according to WGS84 (zero is average sea level)"), NULL);
|
||||||
NULL);
|
|
||||||
gst_tag_register (GST_TAG_SHOW_NAME, GST_TAG_FLAG_META, G_TYPE_STRING,
|
gst_tag_register (GST_TAG_SHOW_NAME, GST_TAG_FLAG_META, G_TYPE_STRING,
|
||||||
/* TRANSLATORS: 'show name' is a compound noun here, not verb+noun */
|
/* TRANSLATORS: 'show name' is a compound noun here, not verb+noun */
|
||||||
_("show name"),
|
_("show name"),
|
||||||
|
|
Loading…
Reference in a new issue