mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
fix some marked strings
Original commit message from CVS: fix some marked strings
This commit is contained in:
parent
cedd4e8f80
commit
eb278d959d
3 changed files with 12 additions and 6 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2004-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* gst/gsttag.c: fix some strings marked for translation
|
||||||
|
|
||||||
2004-01-13 Iain <iain@prettypeople.org>
|
2004-01-13 Iain <iain@prettypeople.org>
|
||||||
|
|
||||||
* gst/schedulers/gstoptimalscheduler.c (add_to_group): Reference the
|
* gst/schedulers/gstoptimalscheduler.c (add_to_group): Reference the
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "gst_private.h"
|
#include "gst_private.h"
|
||||||
|
#include "gst-i18n-lib.h"
|
||||||
#include "gsttag.h"
|
#include "gsttag.h"
|
||||||
#include "gstinfo.h"
|
#include "gstinfo.h"
|
||||||
#include "gstvalue.h"
|
#include "gstvalue.h"
|
||||||
|
@ -63,7 +64,7 @@ _gst_tag_initialize (void)
|
||||||
gst_tag_register (GST_TAG_ARTIST,
|
gst_tag_register (GST_TAG_ARTIST,
|
||||||
G_TYPE_STRING,
|
G_TYPE_STRING,
|
||||||
_("artist"),
|
_("artist"),
|
||||||
_("person(s) resposible for the recording"),
|
_("person(s) responsible for the recording"),
|
||||||
gst_tag_merge_strings_with_comma);
|
gst_tag_merge_strings_with_comma);
|
||||||
gst_tag_register (GST_TAG_ALBUM,
|
gst_tag_register (GST_TAG_ALBUM,
|
||||||
G_TYPE_STRING,
|
G_TYPE_STRING,
|
||||||
|
@ -73,7 +74,7 @@ _gst_tag_initialize (void)
|
||||||
gst_tag_register (GST_TAG_DATE,
|
gst_tag_register (GST_TAG_DATE,
|
||||||
G_TYPE_UINT, /* FIXME: own data type for dates? */
|
G_TYPE_UINT, /* FIXME: own data type for dates? */
|
||||||
_("date"),
|
_("date"),
|
||||||
_("date the data was created in julien days"),
|
_("date the data was created (in Julian calendar days)"),
|
||||||
NULL);
|
NULL);
|
||||||
gst_tag_register (GST_TAG_GENRE,
|
gst_tag_register (GST_TAG_GENRE,
|
||||||
G_TYPE_STRING,
|
G_TYPE_STRING,
|
||||||
|
@ -97,7 +98,7 @@ _gst_tag_initialize (void)
|
||||||
gst_tag_merge_use_first);
|
gst_tag_merge_use_first);
|
||||||
gst_tag_register (GST_TAG_LOCATION,
|
gst_tag_register (GST_TAG_LOCATION,
|
||||||
G_TYPE_STRING,
|
G_TYPE_STRING,
|
||||||
_("loccation"),
|
_("location"),
|
||||||
_("original location of file as a URI"),
|
_("original location of file as a URI"),
|
||||||
gst_tag_merge_strings_with_comma);
|
gst_tag_merge_strings_with_comma);
|
||||||
gst_tag_register (GST_TAG_DESCRIPTION,
|
gst_tag_register (GST_TAG_DESCRIPTION,
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "gst_private.h"
|
#include "gst_private.h"
|
||||||
|
#include "gst-i18n-lib.h"
|
||||||
#include "gsttag.h"
|
#include "gsttag.h"
|
||||||
#include "gstinfo.h"
|
#include "gstinfo.h"
|
||||||
#include "gstvalue.h"
|
#include "gstvalue.h"
|
||||||
|
@ -63,7 +64,7 @@ _gst_tag_initialize (void)
|
||||||
gst_tag_register (GST_TAG_ARTIST,
|
gst_tag_register (GST_TAG_ARTIST,
|
||||||
G_TYPE_STRING,
|
G_TYPE_STRING,
|
||||||
_("artist"),
|
_("artist"),
|
||||||
_("person(s) resposible for the recording"),
|
_("person(s) responsible for the recording"),
|
||||||
gst_tag_merge_strings_with_comma);
|
gst_tag_merge_strings_with_comma);
|
||||||
gst_tag_register (GST_TAG_ALBUM,
|
gst_tag_register (GST_TAG_ALBUM,
|
||||||
G_TYPE_STRING,
|
G_TYPE_STRING,
|
||||||
|
@ -73,7 +74,7 @@ _gst_tag_initialize (void)
|
||||||
gst_tag_register (GST_TAG_DATE,
|
gst_tag_register (GST_TAG_DATE,
|
||||||
G_TYPE_UINT, /* FIXME: own data type for dates? */
|
G_TYPE_UINT, /* FIXME: own data type for dates? */
|
||||||
_("date"),
|
_("date"),
|
||||||
_("date the data was created in julien days"),
|
_("date the data was created (in Julian calendar days)"),
|
||||||
NULL);
|
NULL);
|
||||||
gst_tag_register (GST_TAG_GENRE,
|
gst_tag_register (GST_TAG_GENRE,
|
||||||
G_TYPE_STRING,
|
G_TYPE_STRING,
|
||||||
|
@ -97,7 +98,7 @@ _gst_tag_initialize (void)
|
||||||
gst_tag_merge_use_first);
|
gst_tag_merge_use_first);
|
||||||
gst_tag_register (GST_TAG_LOCATION,
|
gst_tag_register (GST_TAG_LOCATION,
|
||||||
G_TYPE_STRING,
|
G_TYPE_STRING,
|
||||||
_("loccation"),
|
_("location"),
|
||||||
_("original location of file as a URI"),
|
_("original location of file as a URI"),
|
||||||
gst_tag_merge_strings_with_comma);
|
gst_tag_merge_strings_with_comma);
|
||||||
gst_tag_register (GST_TAG_DESCRIPTION,
|
gst_tag_register (GST_TAG_DESCRIPTION,
|
||||||
|
|
Loading…
Reference in a new issue