gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-335-g371d1df
Date: Mon, 09 May 2011 18:04:12 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  371d1df5f3401899c314b9c05b850481e026da31 (commit)
      from  cfcf7adb100b4839c61eb364e1b14bfda8d6c0f5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=371d1df5f3401899c314b9c05b850481e026da31


commit 371d1df5f3401899c314b9c05b850481e026da31
Author: Sandro Santilli <address@hidden>
Date:   Mon May 9 20:03:53 2011 +0200

    Fix typos reported in bug #33264

diff --git a/gui/fb/fb.cpp b/gui/fb/fb.cpp
index 75f31ff..04adef9 100644
--- a/gui/fb/fb.cpp
+++ b/gui/fb/fb.cpp
@@ -178,7 +178,7 @@ FBGui::~FBGui()
 
 #ifdef ENABLE_DOUBLE_BUFFERING
     if (buffer) {
-        log_debug(_("Free'ing offscreen buffer"));
+        log_debug(_("Freeing offscreen buffer"));
         free(buffer);
     }
 #endif
diff --git a/libcore/MovieClip.cpp b/libcore/MovieClip.cpp
index 5c9da2d..930bbee 100644
--- a/libcore/MovieClip.cpp
+++ b/libcore/MovieClip.cpp
@@ -1025,7 +1025,7 @@ MovieClip::goto_frame(size_t target_frame_number)
         target_frame_number = _def->get_frame_count() - 1;
 
         if (!_def->ensure_frame_loaded(target_frame_number + 1)) {
-            log_error(_("Target frame of a gotoFrame(%d) was never loaded,"
+            log_error(_("Target frame of a gotoFrame(%d) was never loaded, "
                         "although frame count in header (%d) said we "
                         "should have found it"),
                         target_frame_number+1, _def->get_frame_count());
@@ -1058,7 +1058,7 @@ MovieClip::goto_frame(size_t target_frame_number)
     if (target_frame_number >= loaded_frames) {
         IF_VERBOSE_ASCODING_ERRORS(
             log_aserror(_("GotoFrame(%d) targets a yet "
-            "to be loaded frame (%d) loaded). "
+            "to be loaded frame (%d). "
             "We'll wait for it but a more correct form "
             "is explicitly using WaitForFrame instead"),
             target_frame_number+1,
diff --git a/libcore/asobj/MovieClip_as.cpp b/libcore/asobj/MovieClip_as.cpp
index e2e2c35..6e8112b 100644
--- a/libcore/asobj/MovieClip_as.cpp
+++ b/libcore/asobj/MovieClip_as.cpp
@@ -1779,7 +1779,7 @@ movieclip_beginGradientFill(const fn_call& fn)
     // this limit.
     if (stops > 15) {
         std::stringstream ss; fn.dump_args(ss);
-        log_debug(_("%s.beginGradientFill(%s) : too many array elements"
+        log_debug(_("%s.beginGradientFill(%s): too many array elements"
             " for colors and ratios (%d), will trim to 8"), 
             movieclip->getTarget(), ss.str(), stops); 
         stops = 15;
diff --git a/libcore/asobj/Sound_as.cpp b/libcore/asobj/Sound_as.cpp
index 99760b5..13dab69 100644
--- a/libcore/asobj/Sound_as.cpp
+++ b/libcore/asobj/Sound_as.cpp
@@ -1011,7 +1011,7 @@ sound_stop(const fn_call& fn)
         sound_sample* ss = def->get_sound_sample(id);
         if (!ss) {
             IF_VERBOSE_MALFORMED_SWF(
-                log_swferror(_("Export '%s'is not a sound"), name);
+                log_swferror(_("Export '%s' is not a sound"), name);
                 );
             return as_value();
         }
diff --git a/libcore/swf/DefineButtonTag.cpp b/libcore/swf/DefineButtonTag.cpp
index fdf6430..53a73a6 100644
--- a/libcore/swf/DefineButtonTag.cpp
+++ b/libcore/swf/DefineButtonTag.cpp
@@ -82,7 +82,7 @@ DefineButtonTag::loader(SWFStream& in, TagType tag, 
movie_definition& m,
     const boost::uint16_t id = in.read_u16();
 
     IF_VERBOSE_PARSE(
-        log_parse(_("  DefineButton loader: chararacter id = %d"), id);
+        log_parse(_("  DefineButton loader: character id = %d"), id);
     );
 
     std::auto_ptr<DefineButtonTag> bt(new DefineButtonTag(in, m, tag, id));
diff --git a/libcore/swf/tag_loaders.cpp b/libcore/swf/tag_loaders.cpp
index 13a7eed..1a0cd90 100644
--- a/libcore/swf/tag_loaders.cpp
+++ b/libcore/swf/tag_loaders.cpp
@@ -166,7 +166,7 @@ define_sound_loader(SWFStream& in, TagType tag, 
movie_definition& m,
     if (sample_rate_in >= arraySize(samplerates)) {
         IF_VERBOSE_MALFORMED_SWF(
             log_swferror(_("DEFINESOUNDLOADER: sound sample rate %d (expected "
-                    "0 to %u"), +sample_rate_in, arraySize(samplerates));
+                    "0 to %u)"), +sample_rate_in, arraySize(samplerates));
         );
         sample_rate_in = 0;
     }

-----------------------------------------------------------------------

Summary of changes:
 gui/fb/fb.cpp                   |    2 +-
 libcore/MovieClip.cpp           |    4 ++--
 libcore/asobj/MovieClip_as.cpp  |    2 +-
 libcore/asobj/Sound_as.cpp      |    2 +-
 libcore/swf/DefineButtonTag.cpp |    2 +-
 libcore/swf/tag_loaders.cpp     |    2 +-
 6 files changed, 7 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]