Delete double spaces in some strings (#406)

This commit is contained in:
Alexander Lebedev
2017-10-18 01:30:33 +03:00
committed by Florian Rival
parent 16713e4668
commit 793a242e00
6 changed files with 8 additions and 8 deletions

View File

@@ -37,7 +37,7 @@ void GD_CORE_API BuiltinExtensionsImplementer::ImplementsCameraExtension(gd::Pla
extension.AddCondition("CameraY",
_("Camera center Y position"),
_("Compare the Y position of the center of a camera."),
_("The Y position of camera _PARAM4_ is _PARAM1__PARAM2_ (layer: _PARAM3_)"),
_("The Y position of camera _PARAM4_ is _PARAM1__PARAM2_ (layer: _PARAM3_)"),
_("Layers and cameras"),
"res/conditions/camera24.png",
"res/conditions/camera.png")

View File

@@ -64,8 +64,8 @@ void DeclarePrimitiveDrawingExtension(gd::PlatformExtension & extension)
obj.AddAction("Line",
_("Line"),
_("Draw a line on screen"),
_("Draw from _PARAM1_;_PARAM2_ to _PARAM3_;_PARAM4_ a line (thickness : _PARAM5_) with _PARAM0_"),
_("Draw a line on screen"),
_("Draw from _PARAM1_;_PARAM2_ to _PARAM3_;_PARAM4_ a line (thickness : _PARAM5_) with _PARAM0_"),
_("Drawing"),
"res/actions/line24.png",
"res/actions/line.png")

View File

@@ -119,7 +119,7 @@ void TimedEvent::Render(wxDC & dc, int x, int y, unsigned int width, gd::EventsE
dc.SetFont( renderingHelper->GetNiceFont().Bold() );
dc.SetTextForeground(wxColour(0,0,0));
gd::String nameTxt;
if ( !name.empty() ) nameTxt = _(" (Name: ")+name + ")";
if ( !name.empty() ) nameTxt = _(" (Name: ")+name + ")";
dc.DrawText( _("Delayed execution after ")+timeout.GetPlainString()+_(" seconds.")+" "+nameTxt, x + 4, y + 3 );
//Draw conditions rectangle

View File

@@ -347,7 +347,7 @@ void LayersEditorPanel::OnLayerDownClicked(wxCommandEvent& event)
return;
}
}
gd::LogWarning(_("Can't find the layer to move !"));
gd::LogWarning(_("Can't find the layer to move !"));
}
void LayersEditorPanel::OnLayerUpClicked(wxCommandEvent& event)
@@ -373,7 +373,7 @@ void LayersEditorPanel::OnLayerUpClicked(wxCommandEvent& event)
return;
}
}
gd::LogWarning(_("Can't find the layer to move !"));
gd::LogWarning(_("Can't find the layer to move !"));
}
void LayersEditorPanel::OnRefreshClicked(wxCommandEvent& event)

View File

@@ -252,7 +252,7 @@ void MAJ::OndownloadAndInstallBtClick(wxCommandEvent& event)
}
else
{
gd::LogWarning( _( "Unable to connect to the server so as to check for updates.\nCheck :\n-Your internet connection\n-Your firewall-If you can manually access our site.\n\nYou can disable Check for updates in the preferences of GDevelop." ) );
gd::LogWarning( _( "Unable to connect to the server so as to check for updates.\nCheck :\n-Your internet connection\n-Your firewall-If you can manually access our site.\n\nYou can disable Check for updates in the preferences of GDevelop." ) );
return;
}

View File

@@ -145,7 +145,7 @@ void mp3ogg::OnEncoderBtClick(wxCommandEvent& event)
filename.SetExt("ogg");
wxRenameFile(originalFile+".ogg", filename.GetFullPath());
gd::LogMessage(_("The encoding is finished. The OGG file is located in the same directory as the MP3 file."));
gd::LogMessage(_("The encoding is finished. The OGG file is located in the same directory as the MP3 file."));
}