thomasvs - in flumotion/trunk: . flumotion/component
flumotion-commit at lists.fluendo.com
flumotion-commit at lists.fluendo.com
Fri Jul 13 00:02:18 CEST 2007
Author: thomasvs
Date: Fri Jul 13 00:02:10 2007
New Revision: 5321
Modified:
flumotion/trunk/ChangeLog
flumotion/trunk/flumotion/component/feedcomponent010.py
Log:
* flumotion/component/feedcomponent010.py:
Break up a translatable string so we reuse an existing one.
Modified: flumotion/trunk/ChangeLog
==============================================================================
--- flumotion/trunk/ChangeLog (original)
+++ flumotion/trunk/ChangeLog Fri Jul 13 00:02:10 2007
@@ -1,5 +1,10 @@
2007-07-12 Thomas Vander Stichele <thomas at apestaart dot org>
+ * flumotion/component/feedcomponent010.py:
+ Break up a translatable string so we reuse an existing one.
+
+2007-07-12 Thomas Vander Stichele <thomas at apestaart dot org>
+
* po/POTFILES.in:
Add feedcomponent010.py which contains translatable strings.
Modified: flumotion/trunk/flumotion/component/feedcomponent010.py
==============================================================================
--- flumotion/trunk/flumotion/component/feedcomponent010.py (original)
+++ flumotion/trunk/flumotion/component/feedcomponent010.py Fri Jul 13 00:02:10 2007
@@ -824,11 +824,14 @@
self.warning("Feeder statistics unavailable, your "
"gst-plugins-base is too old")
self.addMessage(
- messages.Warning(T_(N_(
- "Your gst-plugins-base is too old (older than 0.10.11), so "
- "feeder statistics will be unavailable. Please upgrade to "
- "the most recent gst-plugins-base release.")),
+ m = messages.Warning(T_(N_(
+ "Your gst-plugins-base is too old, so "
+ "feeder statistics will be unavailable.")),
id='multifdsink'))
+ m.add(T_(N_(
+ "Please upgrade '%s' to version %s."), 'gst-plugins-base',
+ '0.10.11'))
+ self.addMessage(m)
def pipeline_stop(self):
if not self.pipeline:
More information about the flumotion-commit
mailing list