gimp r27992 - in trunk: . app/actions
- From: neo svn gnome org
- To: svn-commits-list gnome org
- Subject: gimp r27992 - in trunk: . app/actions
- Date: Fri, 6 Feb 2009 10:12:20 +0000 (UTC)
Author: neo
Date: Fri Feb 6 10:12:20 2009
New Revision: 27992
URL: http://svn.gnome.org/viewvc/gimp?rev=27992&view=rev
Log:
2009-02-06 Sven Neumann <sven gimp org>
* app/actions/actions.c (action_select_property): mark strings
for
translation and add translator comments for them.
Modified:
trunk/ChangeLog
trunk/app/actions/actions.c
Modified: trunk/app/actions/actions.c
==============================================================================
--- trunk/app/actions/actions.c (original)
+++ trunk/app/actions/actions.c Fri Feb 6 10:12:20 2009
@@ -511,7 +511,10 @@
const gchar *blurb = g_param_spec_get_blurb (pspec);
if (blurb)
- action_message (display, object, "%s: %.2f", blurb, value);
+ {
+ /* value description and new value shown in the status bar */
+ action_message (display, object, _("%s: %.2f"), blurb, value);
+ }
}
}
else if (G_IS_PARAM_SPEC_INT (pspec))
@@ -534,7 +537,10 @@
const gchar *blurb = g_param_spec_get_blurb (pspec);
if (blurb)
- action_message (display, object, "%s: %d", blurb, value);
+ {
+ /* value description and new value shown in the status bar */
+ action_message (display, object, _("%s: %d"), blurb, value);
+ }
}
}
else
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]