From: Emmanuel Rodriguez Date: Tue, 24 Mar 2009 18:59:43 +0000 (+0100) Subject: Translate 'cercle' to english X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24b7b8fab58b027cbc5c5145df8c61e40d34b4b0;p=libchamplain Translate 'cercle' to english --- diff --git a/demos/animated-marker.c b/demos/animated-marker.c index f8fec3a..801d295 100644 --- a/demos/animated-marker.c +++ b/demos/animated-marker.c @@ -40,7 +40,7 @@ create_marker () /* Create the marker */ marker = champlain_marker_new (); - /* Static filled cercle ----------------------------------------------- */ + /* Static filled circle ----------------------------------------------- */ bg = clutter_cairo_new (MARKER_SIZE, MARKER_SIZE); cr = clutter_cairo_create (CLUTTER_CAIRO (bg)); @@ -60,7 +60,7 @@ create_marker () clutter_actor_set_anchor_point_from_gravity (bg, CLUTTER_GRAVITY_CENTER); clutter_actor_set_position (bg, 0, 0); - /* Echo cercle -------------------------------------------------------- */ + /* Echo circle -------------------------------------------------------- */ bg = clutter_cairo_new (2 * MARKER_SIZE, 2 * MARKER_SIZE); cr = clutter_cairo_create (CLUTTER_CAIRO (bg)); @@ -82,7 +82,7 @@ create_marker () clutter_actor_set_position (bg, 0, 0); clutter_actor_set_anchor_point_from_gravity (bg, CLUTTER_GRAVITY_CENTER); - /* Animate the echo cercle */ + /* Animate the echo circle */ timeline = clutter_timeline_new_for_duration (1000); clutter_timeline_set_loop (timeline, TRUE); alpha = clutter_alpha_new_full (timeline, CLUTTER_ALPHA_SINE_INC, NULL, g_object_unref);