Merge branch 'master' of ssh://git.freedesktop.org/git/gstreamer/gstreamer

This commit is contained in:
Christian Schaller 2010-01-07 13:48:24 +00:00
commit 9f13193674
39 changed files with 1683 additions and 55 deletions

View file

@ -1964,8 +1964,6 @@ gst_registry_add_path
gst_registry_scan_path
gst_registry_binary_read_cache
gst_registry_binary_write_cache
gst_registry_xml_read_cache
gst_registry_xml_write_cache
gst_registry_lookup
gst_registry_remove_feature
gst_registry_add_feature
@ -1994,6 +1992,8 @@ GST_MAGIC_BINARY_VERSION_STR
GST_MAGIC_BINARY_VERSION_LEN
gst_registry_get_type
GstRegistryPrivate
gst_registry_xml_read_cache
gst_registry_xml_write_cache
</SECTION>

View file

@ -115,9 +115,13 @@ GstPluginFeature* gst_registry_find_feature (GstRegistry *registry, const gchar
GstPlugin * gst_registry_lookup (GstRegistry *registry, const char *filename);
GstPluginFeature * gst_registry_lookup_feature (GstRegistry *registry, const char *name);
/* FIXME 0.11: do we really want to export these? (If yes, we should add a GError argument) */
/* These are only here because at some point they were in a public header
* (even though they should have been private) and we can't really remove
* them now (FIXME: 0.11). They don't do anything other than return FALSE. */
#ifndef GST_DISABLE_DEPRECATED
gboolean gst_registry_xml_read_cache (GstRegistry * registry, const char *location);
gboolean gst_registry_xml_write_cache (GstRegistry * registry, const char *location);
#endif
/* convinience defines for the default registry */

View file

@ -608,6 +608,7 @@ Error:
return res;
}
#ifndef GST_REMOVE_DEPRECATED
/* FIXME 0.11: these symbols are here for backwards compatibility and should
* be removed or made private */
gboolean
@ -621,3 +622,4 @@ gst_registry_xml_write_cache (GstRegistry * registry, const char *location)
{
return FALSE;
}
#endif /* GST_REMOVE_DEPRECATED */

View file

@ -286,29 +286,29 @@ _gst_tag_initialize (void)
("geo elevation of where the media has been recorded or produced in meters according to WGS84 (zero is average sea level)"),
NULL);
gst_tag_register (GST_TAG_SHOW_NAME, GST_TAG_FLAG_META, G_TYPE_STRING,
_("Name of the show"),
_("show name"),
_("Name of the tv/podcast/series show the media is from"),
gst_tag_merge_strings_with_comma);
gst_tag_register (GST_TAG_SHOW_SORTNAME, GST_TAG_FLAG_META, G_TYPE_STRING,
_("Name of the show for sorting purposes"),
_("show sortname"),
_("Name of the tv/podcast/series show the media is from, for sorting "
"purposes"), NULL);
gst_tag_register (GST_TAG_SHOW_EPISODE_NUMBER, GST_TAG_FLAG_META, G_TYPE_UINT,
_("Episode's number"),
_("The episode's number in the season the media is part of"),
_("episode number"),
_("The episode number in the season the media is part of"),
gst_tag_merge_use_first);
gst_tag_register (GST_TAG_SHOW_SEASON_NUMBER, GST_TAG_FLAG_META, G_TYPE_UINT,
_("Season's number"),
_("The season's number of the show the media is part of"),
_("season number"),
_("The season number of the show the media is part of"),
gst_tag_merge_use_first);
gst_tag_register (GST_TAG_LYRICS, GST_TAG_FLAG_META, G_TYPE_STRING,
_("Lyrics"), _("The lyrics of the media, commonly used for songs"),
_("lyrics"), _("The lyrics of the media, commonly used for songs"),
gst_tag_merge_strings_with_comma);
gst_tag_register (GST_TAG_COMPOSER_SORTNAME, GST_TAG_FLAG_META, G_TYPE_STRING,
_("composer, for sorting purposes"),
_("composer sortname"),
_("person(s) who composed the recording, for sorting purposes"), NULL);
gst_tag_register (GST_TAG_GROUPING, GST_TAG_FLAG_META, G_TYPE_STRING,
_("Groups related media"),
_("grouping"),
_("Groups related media that spans multiple tracks, like the different "
"pieces of a concerto. It is a higher level than a track, "
"but lower than an album"), NULL);

View file

@ -791,33 +791,33 @@ gboolean gst_tag_list_get_buffer_index (const GstTagList * list,
*/
#define GST_TAG_GEO_LOCATION_ELEVATION "geo-location-elevation"
/**
* GST_TAG_TV_SHOW
* GST_TAG_SHOW_NAME
*
* Name of the show of the media, used for displaying
* Name of the show, used for displaying (string)
*
* Since: 0.10.26
*/
#define GST_TAG_SHOW_NAME "show-name"
/**
* GST_TAG_TV_SHOW_SORTNAME
* GST_TAG_SHOW_SORTNAME
*
* Name of the show of the media, used for sorting
* Name of the show, used for sorting (string)
*
* Since: 0.10.26
*/
#define GST_TAG_SHOW_SORTNAME "show-sortname"
/**
* GST_TAG_EPISODE_NUMBER
* GST_TAG_SHOW_EPISODE_NUMBER
*
* Number of the episode within a season/show
* Number of the episode within a season/show (unsigned integer)
*
* Since: 0.10.26
*/
#define GST_TAG_SHOW_EPISODE_NUMBER "show-episode-number"
/**
* GST_TAG_SEASON_NUMBER
* GST_TAG_SHOW_SEASON_NUMBER
*
* Number of the season of a show/series
* Number of the season of a show/series (unsigned integer)
*
* Since: 0.10.26
*/
@ -825,7 +825,7 @@ gboolean gst_tag_list_get_buffer_index (const GstTagList * list,
/**
* GST_TAG_LYRICS
*
* The lyrics of the media
* The lyrics of the media (string)
*
* Since: 0.10.26
*/
@ -833,7 +833,7 @@ gboolean gst_tag_list_get_buffer_index (const GstTagList * list,
/**
* GST_TAG_COMPOSER_SORTNAME
*
* The composer's name, used for sorting
* The composer's name, used for sorting (string)
*
* Since: 0.10.26
*/
@ -842,11 +842,12 @@ gboolean gst_tag_list_get_buffer_index (const GstTagList * list,
* GST_TAG_GROUPING
*
* Groups together media that are related and spans multiple tracks. An
* example are multiple pieces of a concerto.
* example are multiple pieces of a concerto. (string)
*
* Since: 0.10.26
*/
#define GST_TAG_GROUPING "grouping"
G_END_DECLS
#endif /* __GST_TAGLIST_H__ */

View file

@ -156,6 +156,8 @@ gst_task_pool_finalize (GObject * object)
* GThreadPool for threads.
*
* Returns: a new #GstTaskPool. gst_object_unref() after usage.
*
* Since: 0.10.24
*/
GstTaskPool *
gst_task_pool_new (void)
@ -175,6 +177,8 @@ gst_task_pool_new (void)
* Prepare the taskpool for accepting gst_task_pool_push() operations.
*
* MT safe.
*
* Since: 0.10.24
*/
void
gst_task_pool_prepare (GstTaskPool * pool, GError ** error)
@ -197,6 +201,8 @@ gst_task_pool_prepare (GstTaskPool * pool, GError ** error)
* to ensure proper cleanup of internal data structures in test suites.
*
* MT safe.
*
* Since: 0.10.24
*/
void
gst_task_pool_cleanup (GstTaskPool * pool)
@ -223,6 +229,8 @@ gst_task_pool_cleanup (GstTaskPool * pool)
* Returns: a pointer that should be used for the gst_task_pool_join
* function. This pointer can be NULL, you must check @error to detect
* errors.
*
* Since: 0.10.24
*/
gpointer
gst_task_pool_push (GstTaskPool * pool, GstTaskPoolFunction func,
@ -254,6 +262,8 @@ not_supported:
*
* Join a task and/or return it to the pool. @id is the id obtained from
* gst_task_pool_push().
*
* Since: 0.10.24
*/
void
gst_task_pool_join (GstTaskPool * pool, gpointer id)

View file

@ -38,6 +38,14 @@ G_BEGIN_DECLS
typedef struct _GstTaskPool GstTaskPool;
typedef struct _GstTaskPoolClass GstTaskPoolClass;
/**
* GstTaskPoolFunction:
* @data: user data for the task function
*
* Task function, see gst_task_pool_push().
*
* Since: 0.10.24
*/
typedef void (*GstTaskPoolFunction) (void *data);
/**

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.9.7\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2005-12-05 11:45+0200\n"
"Last-Translator: Petri Jooste <rkwjpj@puk.ac.za>\n"
"Language-Team: Afrikaans <i18n@af.org.za>\n"
@ -625,6 +625,55 @@ msgid ""
"according to WGS84 (zero is average sea level)"
msgstr ""
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
msgid "show sortname"
msgstr ""
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "skyfnommer"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "skyfnommer"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "lisensie"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
msgid "composer sortname"
msgstr ""
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "persoon(e) verantwoordelik vir die opname"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer-0.8.0\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2004-03-19 18:40+0200\n"
"Last-Translator: Metin Amiroff <metin@karegen.com>\n"
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
@ -597,6 +597,53 @@ msgid ""
"according to WGS84 (zero is average sea level)"
msgstr ""
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
msgid "show sortname"
msgstr ""
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
msgid "episode number"
msgstr ""
msgid "The episode number in the season the media is part of"
msgstr ""
msgid "season number"
msgstr ""
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "lisenziya"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
msgid "composer sortname"
msgstr ""
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "ifa edən şəxs(lər)"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.9.7\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2006-01-18 22:26+0200\n"
"Last-Translator: Ales Nyakhaychyk <nab@mail.by>\n"
"Language-Team: Belarusian <i18n@mova.org>\n"
@ -602,6 +602,54 @@ msgid ""
"according to WGS84 (zero is average sea level)"
msgstr ""
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
msgid "show sortname"
msgstr ""
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "нумар дыска"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "нумар дыска"
msgid "The season number of the show the media is part of"
msgstr ""
msgid "lyrics"
msgstr ""
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
msgid "composer sortname"
msgstr ""
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "асоба(ы) адказныя за запіс"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ""

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.24.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2009-09-19 12:04+0300\n"
"Last-Translator: Alexander Shopov <ash@contact.bg>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
@ -623,6 +623,57 @@ msgstr ""
"географска височина на мястото на запис или създаване на медията в градуси "
"според WGS84 (0 при средното морско равнище)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "име на изпълнител, ползва се при подреждане"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "номер на диска"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "номер на диска"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "лиценз"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "заглавие, ползва се при подреждане"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "отговорник/ци за записа, ползва се при подреждане"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.9.7\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2005-12-02 17:43+0100\n"
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
"Language-Team: Catalan <ca@dodds.net>\n"
@ -629,6 +629,55 @@ msgid ""
"according to WGS84 (zero is average sea level)"
msgstr ""
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
msgid "show sortname"
msgstr ""
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "número de disc"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "número de disc"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "llicència"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
msgid "composer sortname"
msgstr ""
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "persones responsables de la gravació"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.20.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2008-10-12 12:12+0200\n"
"Last-Translator: Miloslav Trmac <mitr@volny.cz>\n"
"Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n"
@ -622,6 +622,57 @@ msgstr ""
"zeměpisná výška místa, kde bylo médium nahráno nebo vytvořeno, v metrech "
"podle WGS84 (nula je průměrná hladina moře)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "umělec pro řazení"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "číslo disku"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "číslo disku"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "licence"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "název pro řazení"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "osoby odpovědné za nahrávku pro řazení"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.12\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2007-03-28 00:09+0200\n"
"Last-Translator: Mogens Jaeger <mogens@jaeger.tf>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
@ -623,6 +623,55 @@ msgid ""
"according to WGS84 (zero is average sea level)"
msgstr ""
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
msgid "show sortname"
msgstr ""
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "skivenummer"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "skivenummer"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "licens"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
msgid "composer sortname"
msgstr ""
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "personer ansvarlige for optagelsen"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.24.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2009-09-19 11:43+0200\n"
"Last-Translator: Christian Kirbach <christian.kirbach@googlemail.com>\n"
"Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
@ -639,6 +639,57 @@ msgstr ""
"geografische Höhe des Ortes in Metern nach WGS84 (Höhe Null entspricht dem "
"Meeresspiegel)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "Sortiername des Interpreten"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "Nummer der Platte"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "Nummer der Platte"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "Lizenz"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "Sortiername des Titels"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "Für die Aufnahme verantwortliche Person(en) zu Sortierzwecken"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.8.1\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2004-04-26 10:36-0400\n"
"Last-Translator: Gareth Owen <gowen72@yahoo.com>\n"
"Language-Team: English (British) <en_gb@li.org>\n"
@ -633,6 +633,55 @@ msgid ""
"according to WGS84 (zero is average sea level)"
msgstr ""
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
msgid "show sortname"
msgstr ""
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "disc number"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "disc number"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "licence"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
msgid "composer sortname"
msgstr ""
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "person(s) responsible for the recording"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.24.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2009-09-29 20:32+0200\n"
"Last-Translator: Jorge González González <aloriel@gmail.com>\n"
"Language-Team: Spanish <es@li.org>\n"
@ -629,6 +629,58 @@ msgstr ""
"elevación geográfica donde se ha grabado o producido el medio, en metros de "
"acuerdo con WGS84 (cero es el nivel medio del mar)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "nombre de ordenación del artista"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "número de disco"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "número de disco"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "licencia"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "nombre de ordenación del título"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr ""
"persona(s) responsable(s) de la grabación para propósitos de ordenamiento"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer-0.10.22.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2009-08-29 12:04+0200\n"
"Last-Translator: Mikel Olasagasti Uranga <hey_neken@mundurat.net>\n"
"Language-Team: Basque <translation-team-eu@lists.sourceforge.net>\n"
@ -630,6 +630,57 @@ msgstr ""
"multimedia grabatu edo ekoiztu den lekuaren geolokalizazioaren altitudea "
"metrotan WGS84 estandarraren arabera (zero batez besteko itsasoaren maila da)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "artistarekiko ordenatu"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "disko-zenbakia"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "disko-zenbakia"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "lizentzia"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "tituluarekiko ordenatu"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "grabazioaren arduradunekiko ordenatzea"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.24.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2009-09-17 10:58+0300\n"
"Last-Translator: Tommi Vainikainen <Tommi.Vainikainen@iki.fi>\n"
"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
@ -628,6 +628,57 @@ msgstr ""
"maantietellinen korkeustaso, jossa media on nauhoitettu tai tuotettu "
"metreinä WGS84-koordinaateista (nolla on keskimääräinen merenpinta)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "esittäjä lajitteluun"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "levynumero"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "levynumero"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "lisenssi"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "nimi lajitteluun"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "nauhoituksesta vastuussa oleva(t) henkilö(t) lajittelua varten"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.24.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2009-09-22 18:23+0200\n"
"Last-Translator: Claude Paroz <claude@2xlibre.net>\n"
"Language-Team: French <traduc@traduc.org>\n"
@ -625,6 +625,57 @@ msgstr ""
"altitude de l'endroit géographique où le média a été enregistré ou produit, "
"en mètres, conformément à WGS84 (zéro au niveau moyen de la mer)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "nom d'artiste pour le tri"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "numéro de disque"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "numéro de disque"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "licence"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "titre pour le tri"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "personne(s) responsable(s) de l'enregistrement, dans un but de tri"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.24.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2009-09-17 23:54+0200\n"
"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n"
@ -623,6 +623,57 @@ msgstr ""
"azon hely földrajzi magassága, ahol a média felvételre vagy előállításra "
"került méterben, a WGS84-nek megfelelően (nulla az átlagos tengerszinten)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "előadó rendezési neve"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "lemezszám"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "lemezszám"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "licenc"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "cím rendezési neve"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "a felvételért felelős személyek, rendezési céllal"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.24.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2009-09-17 12:26-0400\n"
"Last-Translator: Andhika Padmawan <andhika.padmawan@gmail.com>\n"
"Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\n"
@ -623,6 +623,58 @@ msgstr ""
"ketinggian geografis tempat media direkam atau dihasilkan dalam meter "
"menurut WGS84 (nol adalah permukaan laut rata-rata)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "nama singkat artis"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "nomor cakram"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "nomor cakram"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "lisensi"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "nama singkat judul"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr ""
"orang yang bertanggungjawab terhadap rekaman untuk kepentingan pengurutan"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -108,7 +108,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.24.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2009-09-17 23:20+0200\n"
"Last-Translator: Luca Ferretti <elle.uca@infinito.it>\n"
"Language-Team: Italian <tp@lists.linux.it>\n"
@ -758,6 +758,58 @@ msgstr ""
"stato registrato o prodotto, in metri secondo lo standard WGS84 (zero è il "
"livello medio del mare)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "nome ordinamento artista"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "numero del disco"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "numero del disco"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "licenza"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "nome ordinamento titolo"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr ""
"la o le persone responsabili della registrazione a scopo di ordinamento"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.20.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2008-10-16 19:57+0900\n"
"Last-Translator: Makoto Kato <makoto.kt@gmail.com>\n"
"Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
@ -603,6 +603,56 @@ msgid ""
"according to WGS84 (zero is average sea level)"
msgstr ""
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "アーティストのソート名"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "ディスク番号"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "ディスク番号"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "ライセンス"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "タイトルのソート名"
msgid "person(s) who composed the recording, for sorting purposes"
msgstr ""
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.14\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2007-11-02 15:43+0100\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian Bokmaal <i18n-nb@lister.ping.uio.no>\n"
@ -610,6 +610,55 @@ msgid ""
"according to WGS84 (zero is average sea level)"
msgstr ""
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
msgid "show sortname"
msgstr ""
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "platenummer"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "platenummer"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "lisens"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
msgid "composer sortname"
msgstr ""
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "person(er) som er ansvarlige for opptaket"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.22.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2009-05-04 13:12+0200\n"
"Last-Translator: Freek de Kruijf <f.de.kruijf@hetnet.nl>\n"
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
@ -629,6 +629,57 @@ msgstr ""
"hoogte van de geografische locatie van waar het medium is opgenomen of "
"geproduceerd in meters volgens WGS84 (nul op gemiddeld zeeniveau)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "naam artiest voor sorteren"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "schijfnummer"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "schijfnummer"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "licentie"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "titel voor het sorteren"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "perso(o)n(en) die de opname gemaakt hebben gebruikt voor sorteren"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.24.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2009-09-17 18:34+0200\n"
"Last-Translator: Jakub Bogusz <qboosh@pld-linux.org>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
@ -623,6 +623,57 @@ msgstr ""
"wysokość miejsca, gdzie utwór został nagrany lub wyprodukowany wyrażona w "
"metrach zgodnie z WSG84 (0 to średni poziom morza)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "artysta do sortowania"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "numer płyty"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "numer płyty"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "licencja"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "tytuł do sortowania"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "osoba lub osoby odpowiedzialne za nagranie - na potrzeby sortowania"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer-0.10.22.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2009-04-16 21:51-0300\n"
"Last-Translator: Fabrício Godoy <skarllot@gmail.com>\n"
"Language-Team: Brazilian Portuguese <ldp-br@bazar.conectiva.com.br>\n"
@ -641,6 +641,57 @@ msgstr ""
"elevação geográfica de onde a mídia foi gravada ou produzida em metros de "
"acordo com WGS84 (zero é a média do nível do mar)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "artista para ordenação"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "número do disco"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "número do disco"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "licença"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "título para ordenação"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "pessoa(s) responsável(is) pela gravação, para ordenação"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.21.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2009-02-12 14:17+0200\n"
"Last-Translator: Pavel Maryanov <acid_jack@ukr.net>\n"
"Language-Team: Russian <gnu@mx.ru>\n"
@ -629,6 +629,57 @@ msgstr ""
"производство данных, в метрах согласно системе координат WGS84 (0 на среднем "
"уровне моря)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "исполнитель (для сортировки)"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "номер диска"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "номер диска"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "лицензия"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "название (для сортировки)"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "лицо/лица, ответственные за запись (для сортировки)"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.8.8\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2005-04-04 10:55-0700\n"
"Last-Translator: Steven Michael Murphy <murf@e-tools.com>\n"
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
@ -786,6 +786,54 @@ msgid ""
"according to WGS84 (zero is average sea level)"
msgstr ""
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
msgid "show sortname"
msgstr ""
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "DISIKI Umubare"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "DISIKI Umubare"
msgid "The season number of the show the media is part of"
msgstr ""
msgid "lyrics"
msgstr ""
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
msgid "composer sortname"
msgstr ""
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "S Nshingwabikorwa kugirango i"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.24.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2009-09-21 10:11+0100\n"
"Last-Translator: Peter Tuhársky <tuharsky@misbb.sk>\n"
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
@ -638,6 +638,57 @@ msgstr ""
"zemepisná nadmorská výška miesta, kde boli tieto médiá nahraté alebo "
"produkované, v metroch podľa WGS84 (0 je priemerná hladina mora)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "umelec/triedenie"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "číslo disku"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "číslo disku"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "licencia"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "názov/triedenie"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "osoby zodpovedné za nahrávku, na účely triedenia"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.8.4\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2004-08-07 23:46+0200\n"
"Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n"
"Language-Team: Albanian <begraj@hotmail.com>\n"
@ -639,6 +639,55 @@ msgid ""
"according to WGS84 (zero is average sea level)"
msgstr ""
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
msgid "show sortname"
msgstr ""
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "numri i diskut"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "numri i diskut"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "liçenca"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
msgid "composer sortname"
msgstr ""
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "personi(at) përgjegjës për regjistrimin"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.8.8\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2005-01-27 16:58+0100\n"
"Last-Translator: Danilo Segan <dsegan@gmx.net>\n"
"Language-Team: Serbian <gnu@prevod.org>\n"
@ -648,6 +648,55 @@ msgid ""
"according to WGS84 (zero is average sea level)"
msgstr ""
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
msgid "show sortname"
msgstr ""
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "број диска"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "број диска"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "дозвола"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
msgid "composer sortname"
msgstr ""
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "особе одговорне за снимак"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.24.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2009-09-18 17:34+0100\n"
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
@ -632,6 +632,57 @@ msgstr ""
"höjd i meter för geografisk plats där mediet har spelats in eller "
"producerats enligt WGS84 (noll för genomsnittlig havsnivå)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "sorteringsnamn för artist"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "skivnummer"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "skivnummer"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "licens"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "sorteringsnamn för titel"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "person(er) som ansvarar för inspelningen för sorteringsändamål"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.8.0\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2004-04-03 03:14+0300\n"
"Last-Translator: Baris Cicek <baris@teamforce.name.tr>\n"
"Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
@ -639,6 +639,55 @@ msgid ""
"according to WGS84 (zero is average sea level)"
msgstr ""
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
msgid "show sortname"
msgstr ""
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "disk numarası"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "disk numarası"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "lisans"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
msgid "composer sortname"
msgstr ""
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "kayıttan sorumlu olan kişi ya da kişiler"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.14\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2007-09-07 11:16+0300\n"
"Last-Translator: Maxim V. Dziumanenko <dziumanenko@gmail.com>\n"
"Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
@ -618,6 +618,55 @@ msgid ""
"according to WGS84 (zero is average sea level)"
msgstr ""
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
msgid "show sortname"
msgstr ""
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "номер диску"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "номер диску"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "ліцензія"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
msgid "composer sortname"
msgstr ""
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "особа, що відповідальна за запис"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.24.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2009-09-18 16:57+0930\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
@ -617,6 +617,57 @@ msgstr ""
"độ cao định vị địa lý ở đó nhạc/phím đã được thu hay tạo, theo mét tùy theo "
"WSG84 (mặt biển trung bình là số không)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "tên sắp nghệ sĩ"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "số đĩa"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "số đĩa"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "giấy phép"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "tên sắp tựa"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "(các) người chịu trách nhiệm về bản thu, cho mục đích sắp xếp"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.10.22.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2009-05-01 11:53中国标准时间\n"
"Last-Translator: Ji ZhengYu <zhengyuji@gmail.com>\n"
"Language-Team: Chinese (simplified) <translation-team-zh-cn@lists."
@ -607,6 +607,57 @@ msgstr ""
"根据 WGS84平均海平面为 0 米)标准确定的地理海拔高度(有关此媒体在哪里录制或"
"产生的)"
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
#, fuzzy
msgid "show sortname"
msgstr "排序后的艺术家"
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "碟片编号"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "碟片编号"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "许可证"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
#, fuzzy
msgid "composer sortname"
msgstr "排序后的标题名"
#, fuzzy
msgid "person(s) who composed the recording, for sorting purposes"
msgstr "用于排序的负责录制的个人"
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ", "

View file

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gstreamer 0.8.8\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-12-01 14:34+0000\n"
"POT-Creation-Date: 2010-01-06 20:08+0000\n"
"PO-Revision-Date: 2005-04-27 14:55+0800\n"
"Last-Translator: Abel Cheung <abelcheung@gmail.com>\n"
"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
@ -626,6 +626,54 @@ msgid ""
"according to WGS84 (zero is average sea level)"
msgstr ""
msgid "show name"
msgstr ""
msgid "Name of the tv/podcast/series show the media is from"
msgstr ""
msgid "show sortname"
msgstr ""
msgid ""
"Name of the tv/podcast/series show the media is from, for sorting purposes"
msgstr ""
#, fuzzy
msgid "episode number"
msgstr "碟片編號"
msgid "The episode number in the season the media is part of"
msgstr ""
#, fuzzy
msgid "season number"
msgstr "碟片編號"
msgid "The season number of the show the media is part of"
msgstr ""
#, fuzzy
msgid "lyrics"
msgstr "條款"
msgid "The lyrics of the media, commonly used for songs"
msgstr ""
msgid "composer sortname"
msgstr ""
msgid "person(s) who composed the recording, for sorting purposes"
msgstr ""
msgid "grouping"
msgstr ""
msgid ""
"Groups related media that spans multiple tracks, like the different pieces "
"of a concerto. It is a higher level than a track, but lower than an album"
msgstr ""
msgid ", "
msgstr ""