From: pabs Date: Tue, 13 Mar 2007 10:10:41 +0000 (+0000) Subject: Correct the case of Synfig Studio throughout the code X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=22a64c6070122f43a0a5cbd7f7328a758137e76b;p=synfig.git Correct the case of Synfig Studio throughout the code git-svn-id: http://svn.voria.com/code@306 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-studio/trunk/images/sif_icon.sif b/synfig-studio/trunk/images/sif_icon.sif index 592adc8..68875fe 100644 --- a/synfig-studio/trunk/images/sif_icon.sif +++ b/synfig-studio/trunk/images/sif_icon.sif @@ -1149,7 +1149,7 @@ - + diff --git a/synfig-studio/trunk/src/gtkmm/about.cpp b/synfig-studio/trunk/src/gtkmm/about.cpp index 7534469..97babba 100644 --- a/synfig-studio/trunk/src/gtkmm/about.cpp +++ b/synfig-studio/trunk/src/gtkmm/about.cpp @@ -203,7 +203,7 @@ About::About(): // Set the version label to contain the correct information string ver; ver+="Version "VERSION" ("__DATE__" "__TIME__")\n"; - ver+="Using SYNFIG "; + ver+="Using Synfig "; ver+=synfig::get_version(); #ifdef __GNUC__ ver+=strprintf(" and GNU G++ %d.%d.%d",__GNUC__,__GNUC_MINOR__,__GNUC_PATCHLEVEL__); diff --git a/synfig-studio/trunk/src/gtkmm/app.cpp b/synfig-studio/trunk/src/gtkmm/app.cpp index 205a0bd..77298fb 100644 --- a/synfig-studio/trunk/src/gtkmm/app.cpp +++ b/synfig-studio/trunk/src/gtkmm/app.cpp @@ -1078,11 +1078,11 @@ App::App(int *argc, char ***argv): if(!SYNFIG_CHECK_VERSION()) { cerr<<"FATAL: Synfig Version Mismatch"<yes_no( "Auto Recovery", - "SYNFIG Studio seems to have crashed\n" + "Synfig Studio seems to have crashed\n" "before you could save all your files.\n" "Would you like to re-open those files\n" "and recover your unsaved changes?" @@ -1268,7 +1268,7 @@ App::App(int *argc, char ***argv): } else get_ui_interface()->error( - _("SYNFIG Studio has attempted to recover\n" + _("Synfig Studio has attempted to recover\n" "from a previous crash. The files that it has\n" "recovered are NOT YET SAVED. It would be a good\n" "idea to review them and save them now.") diff --git a/synfig-studio/trunk/src/gtkmm/dialog_setup.cpp b/synfig-studio/trunk/src/gtkmm/dialog_setup.cpp index 7a8a6f0..525bc7c 100644 --- a/synfig-studio/trunk/src/gtkmm/dialog_setup.cpp +++ b/synfig-studio/trunk/src/gtkmm/dialog_setup.cpp @@ -58,7 +58,7 @@ using namespace studio; /* === M E T H O D S ======================================================= */ Dialog_Setup::Dialog_Setup(): - Dialog(_("SYNFIG Studio Setup"),false,true), + Dialog(_("Synfig Studio Setup"),false,true), adj_gamma_r(2.2,0.1,3.0,0.025,0.025,0.025), adj_gamma_g(2.2,0.1,3.0,0.025,0.025,0.025), adj_gamma_b(2.2,0.1,3.0,0.025,0.025,0.025), diff --git a/synfig-studio/trunk/src/gtkmm/instance.cpp b/synfig-studio/trunk/src/gtkmm/instance.cpp index 3c10dae..e067af9 100644 --- a/synfig-studio/trunk/src/gtkmm/instance.cpp +++ b/synfig-studio/trunk/src/gtkmm/instance.cpp @@ -574,7 +574,7 @@ Instance::_revert(Instance *instance) if(canvas->count()!=1) { one_moment.hide(); - App::dialog_error_blocking(_("Error: Revert Failed"),_("The revert operation has failed. This can be due to it being\nreferenced by another composition that is already open, or\nbecause of an internal error in SYNFIG Studio. Try closing any\ncompositions that might reference this composition and try\nagain, or restart SYNFIG studio.")); + App::dialog_error_blocking(_("Error: Revert Failed"),_("The revert operation has failed. This can be due to it being\nreferenced by another composition that is already open, or\nbecause of an internal error in Synfig Studio. Try closing any\ncompositions that might reference this composition and try\nagain, or restart Synfig Studio.")); one_moment.show(); } canvas=0;