From 2bfbff104eb3c8b6b6a5fc213d96aa158290c689 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Fri, 6 Apr 2018 20:12:33 +0200 Subject: [PATCH] Very minor fix: remove a trailing space in string. Mainly to help translations. --- pcbnew/dialogs/dialog_plot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/dialogs/dialog_plot.cpp b/pcbnew/dialogs/dialog_plot.cpp index 18f5333168..6deec2d169 100644 --- a/pcbnew/dialogs/dialog_plot.cpp +++ b/pcbnew/dialogs/dialog_plot.cpp @@ -681,7 +681,7 @@ void DIALOG_PLOT::applyPlotSettings() m_PSFineAdjustWidthOpt->SetValue( msg ); msg.Printf( _( "Width correction constrained. " "The reasonable width correction value must be in a range of " - " [%+f; %+f] (%s) for current design rules. " ), + " [%+f; %+f] (%s) for current design rules." ), To_User_Unit( g_UserUnit, m_widthAdjustMinValue ), To_User_Unit( g_UserUnit, m_widthAdjustMaxValue ), ( g_UserUnit == INCHES ) ? wxT( "\"" ) : wxT( "mm" ) );