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: Rob Savoye
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1364-gd014c1e
Date: Sat, 31 Dec 2011 16:40:08 +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  d014c1e28f641ef96dcd1b9104b1ea2196144ce9 (commit)
       via  12eb8d9f4a84a37868319cc293734f80712f4c2d (commit)
      from  db903670bf710686a2ab93e08ff1b1d7274356f4 (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=d014c1e28f641ef96dcd1b9104b1ea2196144ce9


commit d014c1e28f641ef96dcd1b9104b1ea2196144ce9
Author: Rob Savoye <address@hidden>
Date:   Sat Dec 31 09:40:06 2011 -0700

    updated with new strings

diff --git a/po/gnash.pot b/po/gnash.pot
index c414d51..f39372d 100644
--- a/po/gnash.pot
+++ b/po/gnash.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-12-31 09:29-0700\n"
+"POT-Creation-Date: 2011-12-31 09:40-0700\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <address@hidden>\n"
 "Language-Team: LANGUAGE <address@hidden>\n"
@@ -994,7 +994,6 @@ msgstr ""
 #: librender/opengl/Renderer_ogl.cpp:1142
 #: librender/openvg/OpenVGRenderer.cpp:569
 #: librender/opengles1/Renderer_gles1.cpp:230
-#: librender/cairo/Renderer_cairo.cpp:764
 msgid "set_antialiased"
 msgstr ""
 
@@ -1257,40 +1256,12 @@ msgstr ""
 msgid "Can't render this type of frame"
 msgstr ""
 
-#: librender/agg/Renderer_agg.cpp:929
-msgid "Warning: rendering ended while drawing a mask"
-msgstr ""
-
-#: librender/agg/Renderer_agg.cpp:933
-msgid "Warning: rendering ended while masks were still active"
-msgstr ""
-
-#: librender/agg/Renderer_agg.cpp:1077
-msgid ""
-"Warning: select_clipbounds encountered a character definition with null "
-"bounds"
-msgstr ""
-
-#: librender/agg/Renderer_agg.cpp:1179
-msgid "Warning: AGG renderer skipping a whole character"
-msgstr ""
-
 #: librender/agg/Renderer_agg.cpp:1764
 msgid ""
 "Unidirectionally scaled strokes in AGG renderer (we'll scale by the scalable "
 "one)"
 msgstr ""
 
-#: librender/agg/Renderer_agg.cpp:2105
-#, c-format
-msgid "Framebuffer pixel format is %s (little-endian host)"
-msgstr ""
-
-#: librender/agg/Renderer_agg.cpp:2107
-#, c-format
-msgid "Framebuffer pixel format is %s (big-endian host)"
-msgstr ""
-
 #: librender/agg/Renderer_agg.cpp:2151
 #, c-format
 msgid "Unknown pixelformat: %s\n"

http://git.savannah.gnu.org/cgit//commit/?id=12eb8d9f4a84a37868319cc293734f80712f4c2d


commit 12eb8d9f4a84a37868319cc293734f80712f4c2d
Author: Rob Savoye <address@hidden>
Date:   Sat Dec 31 09:39:58 2011 -0700

    print messages cleaned up for translations

diff --git a/librender/agg/Renderer_agg.cpp b/librender/agg/Renderer_agg.cpp
index 62c3bda..e313b79 100644
--- a/librender/agg/Renderer_agg.cpp
+++ b/librender/agg/Renderer_agg.cpp
@@ -926,12 +926,12 @@ public:
     void end_display()
     {
         if (m_drawing_mask) {
-            log_debug(_("Warning: rendering ended while drawing a mask"));
+            log_debug("Warning: rendering ended while drawing a mask");
         }
 
         while (! _alphaMasks.empty()) {
-            log_debug(_("Warning: rendering ended while masks "
-                        "were still active"));
+            log_debug("Warning: rendering ended while masks "
+                        "were still active");
             disable_mask();      
         }
     }
@@ -1074,8 +1074,8 @@ public:
     _clipbounds_selected.reserve(_clipbounds.size());
 
     if (objectBounds.is_null()) {
-      log_debug(_("Warning: select_clipbounds encountered a character "
-                  "definition with null bounds"));
+      log_debug("Warning: select_clipbounds encountered a character "
+                  "definition with null bounds");
       return;
     }   
 
@@ -1176,7 +1176,7 @@ public:
 
         if (_clipbounds_selected.empty()) {
 #ifdef GNASH_WARN_WHOLE_CHARACTER_SKIP
-            log_debug(_("Warning: AGG renderer skipping a whole character"));
+            log_debug("Warning: AGG renderer skipping a whole character");
 #endif
             return; 
         }
@@ -2102,9 +2102,9 @@ DSOEXPORT Renderer_agg_base*  create_Renderer_agg(const 
char *pixelformat)
   if (!pixelformat) return NULL;
 
   if (is_little_endian_host())
-    log_debug(_("Framebuffer pixel format is %s (little-endian host)"), 
pixelformat);
+    log_debug("Framebuffer pixel format is %s (little-endian host)", 
pixelformat);
   else
-    log_debug(_("Framebuffer pixel format is %s (big-endian host)"), 
pixelformat);
+    log_debug("Framebuffer pixel format is %s (big-endian host)", pixelformat);
   
 #ifdef PIXELFORMAT_RGB555  
   if (!strcmp(pixelformat, "RGB555"))
diff --git a/librender/cairo/Renderer_cairo.cpp 
b/librender/cairo/Renderer_cairo.cpp
index 7282f9c..407ea04 100644
--- a/librender/cairo/Renderer_cairo.cpp
+++ b/librender/cairo/Renderer_cairo.cpp
@@ -761,7 +761,7 @@ Renderer_cairo::draw_poly(const std::vector<point>& corners,
 void
 Renderer_cairo::set_antialiased(bool /*enable*/)
 {
-    log_unimpl(_("set_antialiased"));
+    LOG_ONCE(log_unimpl(__FUNCTION__));
 }
     
 void
@@ -861,12 +861,12 @@ Renderer_cairo::apply_line_style(const LineStyle& style, 
const SWFCxForm& cx,
         case JOIN_MITER:
             break;
         default:
-            log_unimpl(_("join style"));
+            LOG_ONCE(log_unimpl(_("join style")));
     }
     cairo_set_line_join(_cr, join_style);
 
     if (style.startCapStyle() != style.endCapStyle()) {
-        log_unimpl(_("differing start and end cap styles"));
+        LOG_ONCE(log_unimpl(_("differing start and end cap styles")));
     }
 
     cairo_line_cap_t cap_style = CAIRO_LINE_CAP_ROUND;
@@ -880,7 +880,7 @@ Renderer_cairo::apply_line_style(const LineStyle& style, 
const SWFCxForm& cx,
             cap_style = CAIRO_LINE_CAP_SQUARE;
             break;
         default:
-            log_unimpl(_("cap style"));
+            LOG_ONCE(log_unimpl(_("cap style")));
     }
 
     cairo_set_line_cap(_cr, cap_style);

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

Summary of changes:
 librender/agg/Renderer_agg.cpp     |   16 ++++++++--------
 librender/cairo/Renderer_cairo.cpp |    8 ++++----
 po/gnash.pot                       |   31 +------------------------------
 3 files changed, 13 insertions(+), 42 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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