[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: gaf.git: branch: master updated (1.7.1-20110619-317-g0bf1983)



The branch, master has been updated
       via  0bf198375db72ec4ec2ba2b288993fd054e059fb (commit)
       via  eb13877a8e1f5d270d70dbb68739f506a7fd8873 (commit)
      from  0f2b06d2aa2693de9baf79a7bb6ac0bc5110bbcf (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.


=========
 Summary
=========

 gschem/include/i_vars.h    |    1 -
 gschem/include/prototype.h |    1 -
 gschem/po/nl.po            |    2 +-
 gschem/src/g_rc.c          |   21 ---------------------
 gschem/src/g_register.c    |    1 -
 gschem/src/x_dialog.c      |   10 ++++++----
 6 files changed, 7 insertions(+), 29 deletions(-)


=================
 Commit Messages
=================

commit 0bf198375db72ec4ec2ba2b288993fd054e059fb
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>

    gschem: Add some guidance comments for translators.
    
    Make it clear that "ChangeLog" is a filename and shouldn't be
    translated.  Also untranslate it in the Dutch translation.

:100644 100644 3e8db40... d974fa1... M	gschem/po/nl.po
:100644 100644 c596174... f91d19f... M	gschem/src/x_dialog.c

commit eb13877a8e1f5d270d70dbb68739f506a7fd8873
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>

    gschem: Remove postscript-font-scale option.
    
    Since 1.6.0, this has emitted a warning that it will be removed in
    1.8.0.  So remove it.

:100644 100644 3dbc8f4... e4af618... M	gschem/include/i_vars.h
:100644 100644 4eaf435... 45175f9... M	gschem/include/prototype.h
:100644 100644 7177a7e... 089f069... M	gschem/src/g_rc.c
:100644 100644 fb01771... b938ac5... M	gschem/src/g_register.c

=========
 Changes
=========

commit 0bf198375db72ec4ec2ba2b288993fd054e059fb
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>

    gschem: Add some guidance comments for translators.
    
    Make it clear that "ChangeLog" is a filename and shouldn't be
    translated.  Also untranslate it in the Dutch translation.

diff --git a/gschem/po/nl.po b/gschem/po/nl.po
index 3e8db40..d974fa1 100644
--- a/gschem/po/nl.po
+++ b/gschem/po/nl.po
@@ -1368,7 +1368,7 @@ msgid ""
 "Copyright © 1998-2011 gEDA Contributors (see ChangeLog for details)"
 msgstr ""
 "Copyright © 1998-2011 Ales Hvezda <ahvezda@xxxxxxxxxxxxx>\n"
-"Copyright © 1998-2011 gEDA Contributors (zie het WijzigingsLogboek voor details)"
+"Copyright © 1998-2011 gEDA Contributors (zie het ChangeLog voor details)"
 
 #: gschem/src/x_dialog.c:2204
 msgid "Coords"
diff --git a/gschem/src/x_dialog.c b/gschem/src/x_dialog.c
index c596174..f91d19f 100644
--- a/gschem/src/x_dialog.c
+++ b/gschem/src/x_dialog.c
@@ -2142,10 +2142,12 @@ void about_dialog (GSCHEM_TOPLEVEL *w_current)
       "logo",           logo,
       "title",          _("About gschem"),
       "comments",       _("gEDA: GPL Electronic Design Automation"),
-      "copyright",      _("Copyright © 1998-2011 Ales Hvezda"
-                            " <ahvezda@xxxxxxxxxxxxx>\n"
-                          "Copyright © 1998-2011 gEDA Contributors"
-                            " (see ChangeLog for details)"),
+      "copyright",
+      /* TRANSLATORS: "ChangeLog" is a literal filename; please don't translate it. */
+      _("Copyright © 1998-2011 Ales Hvezda"
+        " <ahvezda@xxxxxxxxxxxxx>\n"
+        "Copyright © 1998-2011 gEDA Contributors"
+        " (see ChangeLog for details)"),
       "website",        "http://www.gpleda.org/";,
       NULL);
 

commit eb13877a8e1f5d270d70dbb68739f506a7fd8873
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>

    gschem: Remove postscript-font-scale option.
    
    Since 1.6.0, this has emitted a warning that it will be removed in
    1.8.0.  So remove it.

diff --git a/gschem/include/i_vars.h b/gschem/include/i_vars.h
index 3dbc8f4..e4af618 100644
--- a/gschem/include/i_vars.h
+++ b/gschem/include/i_vars.h
@@ -1,7 +1,6 @@
 
 extern int default_text_size;
 extern int default_text_caps;
-extern float default_postscript_font_scale;
 extern gchar *default_print_command;
 extern int default_override_net_color;
 extern int default_override_bus_color;
diff --git a/gschem/include/prototype.h b/gschem/include/prototype.h
index 4eaf435..45175f9 100644
--- a/gschem/include/prototype.h
+++ b/gschem/include/prototype.h
@@ -206,7 +206,6 @@ SCM g_rc_embed_components(SCM mode);
 SCM g_rc_component_dialog_attributes(SCM stringlist);
 SCM g_rc_text_size(SCM size);
 SCM g_rc_text_caps_style(SCM mode);
-SCM g_rc_postscript_font_scale(SCM scale);
 SCM g_rc_snap_size(SCM size);
 SCM g_rc_logging_destination(SCM mode);
 SCM g_rc_attribute_name(SCM path);
diff --git a/gschem/src/g_rc.c b/gschem/src/g_rc.c
index 7177a7e..089f069 100644
--- a/gschem/src/g_rc.c
+++ b/gschem/src/g_rc.c
@@ -448,27 +448,6 @@ SCM g_rc_text_size(SCM size)
   return SCM_BOOL_T;
 }
 
-/*! \brief Catch deprecated option to set the output font scaling factor
- *
- *  \par This setting used to change the scale of the output PS font
- *  characters. Since gEDA 1.6.0, this is fixed to match the on-screen
- *  font size.
- *
- *  \return SCM_BOOL_T always.
- */
-
-SCM g_rc_postscript_font_scale(SCM scale)
-{
-  g_warning (_("\n"
-               "The config option postscript-font-scale is "
-               "deprecated and will be removed in gEDA 1.8.0.\n"
-               "Printed text is fixed to match on-screen sizes. "
-               "Please remove this option from your config files.\n"
-               "\n"));
-
-  return SCM_BOOL_T;
-}
-
 /*! \todo Finish function documentation!!!
  *  \brief
  *  \par Function Description
diff --git a/gschem/src/g_register.c b/gschem/src/g_register.c
index fb01771..b938ac5 100644
--- a/gschem/src/g_register.c
+++ b/gschem/src/g_register.c
@@ -81,7 +81,6 @@ static struct gsubr_t gschem_funcs[] = {
   { "attribute-name",            1, 0, 0, g_rc_attribute_name },
   { "paper-size",                2, 0, 0, g_rc_paper_size },
   { "paper-sizes",               3, 0, 0, g_rc_paper_sizes },
-  { "postscript-font-scale",     1, 0, 0, g_rc_postscript_font_scale },
 
   { "output-type",               1, 0, 0, g_rc_output_type },
   { "output-orientation",        1, 0, 0, g_rc_output_orientation },



_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs