Author: Carlos Lopez <[email protected]>
Date:   Sun Feb 17 10:31:15 2013 +0100

Replace BLine by Spline in more places. Make "NewSpline" translatable.

---

 synfig-core/src/modules/lyr_std/curvewarp.cpp      |    2 +-
 .../src/synfig/valuenode_blinecalctangent.cpp      |    6 +++---
 .../src/synfig/valuenode_blinecalcvertex.cpp       |    4 ++--
 synfig-core/src/synfig/valuenode_composite.cpp     |    8 ++++----
 synfig-studio/src/gui/states/state_bline.cpp       |    6 +++---
 .../src/synfigapp/actions/valuedescblinelink.cpp   |    2 +-
 6 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/synfig-core/src/modules/lyr_std/curvewarp.cpp 
b/synfig-core/src/modules/lyr_std/curvewarp.cpp
index 3df5b39..135f0a9 100644
--- a/synfig-core/src/modules/lyr_std/curvewarp.cpp
+++ b/synfig-core/src/modules/lyr_std/curvewarp.cpp
@@ -407,7 +407,7 @@ CurveWarp::get_param_vocab()const
                                  .set_local_name(_("Vertices"))
                                  .set_origin("origin")
                                  .set_hint("width")
-                                 .set_description(_("List of BLine Points 
where the source line is curved to"))
+                                 .set_description(_("List of Spline Points 
where the source line is curved to"))
        );
        ret.push_back(ParamDesc("fast")
                                  .set_local_name(_("Fast"))
diff --git a/synfig-core/src/synfig/valuenode_blinecalctangent.cpp 
b/synfig-core/src/synfig/valuenode_blinecalctangent.cpp
index 4ede70e..706cc66 100644
--- a/synfig-core/src/synfig/valuenode_blinecalctangent.cpp
+++ b/synfig-core/src/synfig/valuenode_blinecalctangent.cpp
@@ -239,7 +239,7 @@ ValueNode_BLineCalcTangent::get_children_vocab_vfunc()const
 
        ret.push_back(ParamDesc(ValueBase(),"bline")
                .set_local_name(_("Spline"))
-               .set_description(_("The BLine where the tangent is linked to"))
+               .set_description(_("The Spline where the tangent is linked to"))
        );
 
        ret.push_back(ParamDesc(ValueBase(),"loop")
@@ -249,7 +249,7 @@ ValueNode_BLineCalcTangent::get_children_vocab_vfunc()const
 
        ret.push_back(ParamDesc(ValueBase(),"amount")
                .set_local_name(_("Amount"))
-               .set_description(_("The position of the linked tangent on the 
BLine (0,1]"))
+               .set_description(_("The position of the linked tangent on the 
Spline (0,1]"))
        );
 
        ret.push_back(ParamDesc(ValueBase(),"offset")
@@ -269,7 +269,7 @@ ValueNode_BLineCalcTangent::get_children_vocab_vfunc()const
 
        ret.push_back(ParamDesc(ValueBase(),"homogeneous")
                .set_local_name(_("Homogeneous"))
-               .set_description(_("When checked, the tangent is BLine length 
based"))
+               .set_description(_("When checked, the tangent is Spline length 
based"))
        );
        return ret;
 }
diff --git a/synfig-core/src/synfig/valuenode_blinecalcvertex.cpp 
b/synfig-core/src/synfig/valuenode_blinecalcvertex.cpp
index 2698d8d..7ec8b75 100644
--- a/synfig-core/src/synfig/valuenode_blinecalcvertex.cpp
+++ b/synfig-core/src/synfig/valuenode_blinecalcvertex.cpp
@@ -209,12 +209,12 @@ ValueNode_BLineCalcVertex::get_children_vocab_vfunc()const
 
        ret.push_back(ParamDesc(ValueBase(),"amount")
                .set_local_name(_("Amount"))
-               .set_description(_("The position of the linked vertex on the 
BLine (0,1]"))
+               .set_description(_("The position of the linked vertex on the 
Spline (0,1]"))
        );
 
        ret.push_back(ParamDesc(ValueBase(),"homogeneous")
                .set_local_name(_("Homogeneous"))
-               .set_description(_("When checked, the position is BLine length 
based"))
+               .set_description(_("When checked, the position is Spline length 
based"))
        );
        return ret;
 }
diff --git a/synfig-core/src/synfig/valuenode_composite.cpp 
b/synfig-core/src/synfig/valuenode_composite.cpp
index 06668f8..e207f9b 100644
--- a/synfig-core/src/synfig/valuenode_composite.cpp
+++ b/synfig-core/src/synfig/valuenode_composite.cpp
@@ -508,11 +508,11 @@ ValueNode_Composite::get_children_vocab_vfunc()const
        case ValueBase::TYPE_BLINEPOINT:
                ret.push_back(ParamDesc(ValueBase(),"point")
                        .set_local_name(_("Vertex"))
-                       .set_description(_("The vertex of the BLine Point"))
+                       .set_description(_("The vertex of the Spline Point"))
                );
                ret.push_back(ParamDesc(ValueBase(),"width")
                        .set_local_name(_("Width"))
-                       .set_description(_("The width of the BLine Point"))
+                       .set_description(_("The width of the Spline Point"))
                );
                ret.push_back(ParamDesc(ValueBase(),"origin")
                        .set_local_name(_("Origin"))
@@ -524,11 +524,11 @@ ValueNode_Composite::get_children_vocab_vfunc()const
                );
                ret.push_back(ParamDesc(ValueBase(),"t1")
                        .set_local_name(_("Tangent 1"))
-                       .set_description(_("The first tangent of the BLine 
Point"))
+                       .set_description(_("The first tangent of the Spline 
Point"))
                );
                ret.push_back(ParamDesc(ValueBase(),"t2")
                        .set_local_name(_("Tangent 2"))
-                       .set_description(_("The second tangent of the BLine 
Point"))
+                       .set_description(_("The second tangent of the Spline 
Point"))
                );
                return ret;
        case ValueBase::TYPE_WIDTHPOINT:
diff --git a/synfig-studio/src/gui/states/state_bline.cpp 
b/synfig-studio/src/gui/states/state_bline.cpp
index 9c44f07..97b8de9 100644
--- a/synfig-studio/src/gui/states/state_bline.cpp
+++ b/synfig-studio/src/gui/states/state_bline.cpp
@@ -284,7 +284,7 @@ StateBLine_Context::load_settings()
                if(settings.get_value("bline.id",value))
                        set_id(value);
                else
-                       set_id("NewSpline");
+                       set_id(_("NewSpline"));
 
                if(settings.get_value("bline.feather",value))
                {
@@ -295,7 +295,7 @@ StateBLine_Context::load_settings()
        }
        catch(...)
        {
-               synfig::warning("State BLine: Caught exception when attempting 
to load settings.");
+               synfig::warning("State Spline: Caught exception when attempting 
to load settings.");
        }
 }
 
@@ -318,7 +318,7 @@ StateBLine_Context::save_settings()
        }
        catch(...)
        {
-               synfig::warning("State BLine : Caught exception when attempting 
to save settings.");
+               synfig::warning("State Spline : Caught exception when 
attempting to save settings.");
        }
 }
 
diff --git a/synfig-studio/src/synfigapp/actions/valuedescblinelink.cpp 
b/synfig-studio/src/synfigapp/actions/valuedescblinelink.cpp
index 24273cd..46e1476 100644
--- a/synfig-studio/src/synfigapp/actions/valuedescblinelink.cpp
+++ b/synfig-studio/src/synfigapp/actions/valuedescblinelink.cpp
@@ -84,7 +84,7 @@ Action::ValueDescBLineLink::get_param_vocab()
                .set_supports_multiple()
        );
        ret.push_back(ParamDesc("value_desc",Param::TYPE_VALUEDESC)
-               .set_local_name(_("ValueDesc on BLine to link to"))
+               .set_local_name(_("ValueDesc on Spline to link to"))
        );
        ret.push_back(ParamDesc("time",Param::TYPE_TIME)
                .set_local_name(_("Time"))


------------------------------------------------------------------------------
The Go Parallel Website, sponsored by Intel - in partnership with Geeknet, 
is your hub for all things parallel software development, from weekly thought 
leadership blogs to news, videos, case studies, tutorials, tech docs, 
whitepapers, evaluation guides, and opinion stories. Check out the most 
recent posts - join the conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Synfig-devl mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/synfig-devl

Reply via email to