Make some strings more easily translatable
DIALOG_BOARD_STATISTICS: fix some minor issues.
This commit is contained in:
parent
01e78b04c6
commit
7bfbcef942
|
@ -171,7 +171,7 @@ void LIB_EDIT_FRAME::ExportPart()
|
|||
}
|
||||
catch( const IO_ERROR& ioe )
|
||||
{
|
||||
msg = _( "Failed to create symbol library file " ) + fn.GetFullPath();
|
||||
msg.Printf( _( "Failed to create symbol library file \"%s\"" ), fn.GetFullPath() );
|
||||
DisplayErrorMessage( this, msg, ioe.What() );
|
||||
msg.Printf( _( "Error creating symbol library \"%s\"" ), fn.GetFullName() );
|
||||
SetStatusText( msg );
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
|
||||
|
||||
#include "dialog_board_statistics.h"
|
||||
#include <wildcards_and_files_ext.h>
|
||||
|
||||
#define COL_LABEL 0
|
||||
#define COL_AMOUNT 1
|
||||
|
@ -56,9 +57,11 @@ struct DIALOG_BOARD_STATISTICS_SAVED_STATE
|
|||
bool subtractHoles;
|
||||
|
||||
// Variables to save last report file name and folder
|
||||
bool saveReportInitialized;
|
||||
wxString saveReportFolder;
|
||||
wxString saveReportName;
|
||||
bool saveReportInitialized; // true after the 3 next string are initialized
|
||||
wxString saveReportFolder; // last report folder
|
||||
wxString saveReportName; // last report filename
|
||||
wxString m_project; // name of the project used to create the last report
|
||||
// used to reinit last state after a project change
|
||||
};
|
||||
|
||||
static DIALOG_BOARD_STATISTICS_SAVED_STATE s_savedDialogState;
|
||||
|
@ -76,7 +79,7 @@ DIALOG_BOARD_STATISTICS::DIALOG_BOARD_STATISTICS( PCB_EDIT_FRAME* aParentFrame )
|
|||
headingFont.SetSymbolicSize( wxFONTSIZE_SMALL );
|
||||
m_gridComponents->SetCellValue( ROW_LABEL, COL_FRONT_SIDE, _( "Front Side" ) );
|
||||
m_gridComponents->SetCellFont( ROW_LABEL, COL_FRONT_SIDE, headingFont );
|
||||
m_gridComponents->SetCellValue( ROW_LABEL, COL_BOTTOM_SIDE, _( "Bottom Side" ) );
|
||||
m_gridComponents->SetCellValue( ROW_LABEL, COL_BOTTOM_SIDE, _( "Back Side" ) );
|
||||
m_gridComponents->SetCellFont( ROW_LABEL, COL_BOTTOM_SIDE, headingFont );
|
||||
m_gridComponents->SetCellValue( ROW_LABEL, COL_TOTAL, _( "Total" ) );
|
||||
m_gridComponents->SetCellFont( ROW_LABEL, COL_TOTAL, headingFont );
|
||||
|
@ -100,14 +103,22 @@ DIALOG_BOARD_STATISTICS::DIALOG_BOARD_STATISTICS( PCB_EDIT_FRAME* aParentFrame )
|
|||
}
|
||||
|
||||
wxFileName fn = m_parentFrame->GetBoard()->GetFileName();
|
||||
if( !s_savedDialogState.saveReportInitialized )
|
||||
|
||||
if( !s_savedDialogState.saveReportInitialized ||
|
||||
s_savedDialogState.m_project != Prj().GetProjectFullName()
|
||||
)
|
||||
{
|
||||
fn.SetName( fn.GetName() + "_report" );
|
||||
fn.SetExt( "txt" );
|
||||
s_savedDialogState.saveReportName = fn.GetFullName();
|
||||
s_savedDialogState.saveReportFolder = wxPathOnly( Prj().GetProjectFullName() );
|
||||
s_savedDialogState.m_project = Prj().GetProjectFullName();
|
||||
s_savedDialogState.saveReportInitialized = true;
|
||||
}
|
||||
|
||||
// The wxStdDialogButtonSizer wxID_CANCLE button is in fact a close button
|
||||
// Nothing to cancel:
|
||||
m_sdbControlSizerCancel->SetLabel( _( "Close" ) );
|
||||
}
|
||||
|
||||
void DIALOG_BOARD_STATISTICS::refreshItemsTypes()
|
||||
|
@ -129,7 +140,7 @@ void DIALOG_BOARD_STATISTICS::refreshItemsTypes()
|
|||
m_viasTypes.clear();
|
||||
m_viasTypes.push_back( viasType_t( VIA_THROUGH, _( "Through vias:" ) ) );
|
||||
m_viasTypes.push_back( viasType_t( VIA_BLIND_BURIED, _( "Blind/buried:" ) ) );
|
||||
m_viasTypes.push_back( viasType_t( VIA_MICROVIA, _( "Micro via:" ) ) );
|
||||
m_viasTypes.push_back( viasType_t( VIA_MICROVIA, _( "Micro vias:" ) ) );
|
||||
|
||||
// If there not enough rows in grids, append some
|
||||
int appendRows = m_componentsTypes.size() + 2 - m_gridComponents->GetNumberRows();
|
||||
|
@ -292,7 +303,7 @@ void DIALOG_BOARD_STATISTICS::updateWidets()
|
|||
currentRow++;
|
||||
}
|
||||
m_gridPads->SetCellValue( currentRow, COL_LABEL, _( "Total:" ) );
|
||||
m_gridPads->SetCellValue( currentRow, COL_AMOUNT, wxString::Format( wxT( "%i " ), totalPads ) );
|
||||
m_gridPads->SetCellValue( currentRow, COL_AMOUNT, wxString::Format( "%i ", totalPads ) );
|
||||
|
||||
int totalVias = 0;
|
||||
currentRow = 0;
|
||||
|
@ -300,12 +311,12 @@ void DIALOG_BOARD_STATISTICS::updateWidets()
|
|||
{
|
||||
m_gridVias->SetCellValue( currentRow, COL_LABEL, type.title );
|
||||
m_gridVias->SetCellValue(
|
||||
currentRow, COL_AMOUNT, wxString::Format( wxT( "%i " ), type.qty ) );
|
||||
currentRow, COL_AMOUNT, wxString::Format( "%i ", type.qty ) );
|
||||
totalVias += type.qty;
|
||||
currentRow++;
|
||||
}
|
||||
m_gridVias->SetCellValue( currentRow, COL_LABEL, _( "Total:" ) );
|
||||
m_gridVias->SetCellValue( currentRow, COL_AMOUNT, wxString::Format( wxT( "%i " ), totalVias ) );
|
||||
m_gridVias->SetCellValue( currentRow, COL_AMOUNT, wxString::Format( "%i ", totalVias ) );
|
||||
|
||||
|
||||
int totalFront = 0;
|
||||
|
@ -317,9 +328,9 @@ void DIALOG_BOARD_STATISTICS::updateWidets()
|
|||
{
|
||||
m_gridComponents->SetCellValue( currentRow, COL_LABEL, type.title );
|
||||
m_gridComponents->SetCellValue(
|
||||
currentRow, COL_FRONT_SIDE, wxString::Format( wxT( "%i " ), type.frontSideQty ) );
|
||||
currentRow, COL_FRONT_SIDE, wxString::Format( "%i ", type.frontSideQty ) );
|
||||
m_gridComponents->SetCellValue(
|
||||
currentRow, COL_BOTTOM_SIDE, wxString::Format( wxT( "%i " ), type.backSideQty ) );
|
||||
currentRow, COL_BOTTOM_SIDE, wxString::Format( "%i ", type.backSideQty ) );
|
||||
m_gridComponents->SetCellValue( currentRow, 3,
|
||||
wxString::Format( wxT( "%i " ), type.frontSideQty + type.backSideQty ) );
|
||||
totalFront += type.frontSideQty;
|
||||
|
@ -328,10 +339,11 @@ void DIALOG_BOARD_STATISTICS::updateWidets()
|
|||
}
|
||||
m_gridComponents->SetCellValue( currentRow, COL_LABEL, _( "Total:" ) );
|
||||
m_gridComponents->SetCellValue( currentRow, COL_FRONT_SIDE,
|
||||
wxString::Format( wxT( "%i " ), totalFront ) );
|
||||
m_gridComponents->SetCellValue( currentRow, COL_BOTTOM_SIDE, wxString::Format( wxT( "%i " ), totalBack ) );
|
||||
wxString::Format( "%i ", totalFront ) );
|
||||
m_gridComponents->SetCellValue( currentRow, COL_BOTTOM_SIDE,
|
||||
wxString::Format( "%i ", totalBack ) );
|
||||
m_gridComponents->SetCellValue(
|
||||
currentRow, COL_TOTAL, wxString::Format( wxT( "%i " ), totalFront + totalBack ) );
|
||||
currentRow, COL_TOTAL, wxString::Format( "%i ", totalFront + totalBack ) );
|
||||
|
||||
if( m_hasOutline )
|
||||
{
|
||||
|
@ -377,7 +389,7 @@ void DIALOG_BOARD_STATISTICS::saveReportClicked( wxCommandEvent& event )
|
|||
wxFileName fn = m_parentFrame->GetBoard()->GetFileName();
|
||||
boardName = fn.GetName();
|
||||
wxFileDialog saveFileDialog( this, _( "Save Report File" ), s_savedDialogState.saveReportFolder,
|
||||
s_savedDialogState.saveReportName, _( "text files (*.txt)|*.txt" ),
|
||||
s_savedDialogState.saveReportName, TextFileWildcard(),
|
||||
wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
|
||||
|
||||
if( saveFileDialog.ShowModal() == wxID_CANCEL )
|
||||
|
@ -386,15 +398,15 @@ void DIALOG_BOARD_STATISTICS::saveReportClicked( wxCommandEvent& event )
|
|||
s_savedDialogState.saveReportFolder = wxPathOnly( saveFileDialog.GetPath() );
|
||||
s_savedDialogState.saveReportName = saveFileDialog.GetFilename();
|
||||
|
||||
outFile = wxFopen( saveFileDialog.GetPath(), wxT( "wt" ) );
|
||||
outFile = wxFopen( saveFileDialog.GetPath(), "wt" );
|
||||
|
||||
if( outFile == NULL )
|
||||
{
|
||||
msg.Printf( _( "Unable to create file \"%s\"" ), GetChars( saveFileDialog.GetPath() ) );
|
||||
msg.Printf( _( "Unable to create file \"%s\"" ), saveFileDialog.GetPath() );
|
||||
DisplayErrorMessage( this, msg );
|
||||
return;
|
||||
}
|
||||
msg << _( "PCB statistics report\n" );
|
||||
msg << _( "PCB statistics report" ) << "\n";
|
||||
msg << _( "Date: " ) << wxDateTime::Now().Format() << "\n";
|
||||
msg << _( "Project: " ) << Prj().GetProjectName() << "\n";
|
||||
msg << _( "Board name: " ) << boardName << "\n";
|
||||
|
@ -459,15 +471,16 @@ void DIALOG_BOARD_STATISTICS::saveReportClicked( wxCommandEvent& event )
|
|||
|
||||
//Write components amount to file
|
||||
msg << "\n";
|
||||
msg << _( "Components\n" );
|
||||
tmp.Printf( "%-*s | %*s | %*s | %*s |\n", colsWidth[0], columns[0], colsWidth[1], columns[1],
|
||||
colsWidth[2], columns[2], colsWidth[3], columns[3] );
|
||||
msg << _( "Components" ) << "\n";
|
||||
tmp.Printf( "%-*s | %*s | %*s | %*s |\n",
|
||||
colsWidth[0], columns[0], colsWidth[1], columns[1],
|
||||
colsWidth[2], columns[2], colsWidth[3], columns[3] );
|
||||
msg += tmp;
|
||||
for( auto& type : m_componentsTypes )
|
||||
{
|
||||
tmp.Printf( "%-*s | %*d | %*d | %*d |\n", colsWidth[0], type.title, colsWidth[1],
|
||||
type.frontSideQty, colsWidth[2], type.backSideQty, colsWidth[3],
|
||||
type.backSideQty + type.frontSideQty );
|
||||
type.frontSideQty, colsWidth[2], type.backSideQty, colsWidth[3],
|
||||
type.backSideQty + type.frontSideQty );
|
||||
msg += tmp;
|
||||
}
|
||||
tmp.Printf( "%-*s | %*d | %*d | %*d |\n", colsWidth[0], _( "Total:" ), colsWidth[1], frontTotal,
|
||||
|
@ -477,7 +490,7 @@ void DIALOG_BOARD_STATISTICS::saveReportClicked( wxCommandEvent& event )
|
|||
int success = fprintf( outFile, "%s", TO_UTF8( msg ) );
|
||||
if( success < 0 )
|
||||
{
|
||||
msg.Printf( _( "Error writing to file \"%s\"" ), GetChars( saveFileDialog.GetPath() ) );
|
||||
msg.Printf( _( "Error writing to file \"%s\"" ), saveFileDialog.GetPath() );
|
||||
DisplayErrorMessage( this, msg );
|
||||
}
|
||||
fclose( outFile );
|
||||
|
|
|
@ -211,12 +211,12 @@ DIALOG_BOARD_STATISTICS_BASE::DIALOG_BOARD_STATISTICS_BASE( wxWindow* parent, wx
|
|||
|
||||
bSizerBottom->Add( 0, 0, 1, wxEXPAND, 5 );
|
||||
|
||||
m_buttonSaveReport = new wxButton( this, wxID_ANY, _("Save report"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
m_buttonSaveReport = new wxButton( this, wxID_ANY, _("Generate Report File"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
bSizerBottom->Add( m_buttonSaveReport, 0, wxALL, 5 );
|
||||
|
||||
m_sdbControlSizer = new wxStdDialogButtonSizer();
|
||||
m_sdbControlSizerOK = new wxButton( this, wxID_OK );
|
||||
m_sdbControlSizer->AddButton( m_sdbControlSizerOK );
|
||||
m_sdbControlSizerCancel = new wxButton( this, wxID_CANCEL );
|
||||
m_sdbControlSizer->AddButton( m_sdbControlSizerCancel );
|
||||
m_sdbControlSizer->Realize();
|
||||
|
||||
bSizerBottom->Add( m_sdbControlSizer, 0, wxBOTTOM|wxLEFT|wxRIGHT|wxTOP, 5 );
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
<property name="name">DIALOG_BOARD_STATISTICS_BASE</property>
|
||||
<property name="pos"></property>
|
||||
<property name="size"></property>
|
||||
<property name="style">wxDEFAULT_DIALOG_STYLE</property>
|
||||
<property name="style">wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER</property>
|
||||
<property name="subclass">DIALOG_SHIM; dialog_shim.h; forward_declare</property>
|
||||
<property name="title">Board Statistics</property>
|
||||
<property name="tooltip"></property>
|
||||
|
@ -1034,7 +1034,7 @@
|
|||
<property name="gripper">0</property>
|
||||
<property name="hidden">0</property>
|
||||
<property name="id">wxID_ANY</property>
|
||||
<property name="label">Save report</property>
|
||||
<property name="label">Generate Report File</property>
|
||||
<property name="margins"></property>
|
||||
<property name="markup">0</property>
|
||||
<property name="max_size"></property>
|
||||
|
@ -1076,11 +1076,11 @@
|
|||
<property name="proportion">0</property>
|
||||
<object class="wxStdDialogButtonSizer" expanded="1">
|
||||
<property name="Apply">0</property>
|
||||
<property name="Cancel">0</property>
|
||||
<property name="Cancel">1</property>
|
||||
<property name="ContextHelp">0</property>
|
||||
<property name="Help">0</property>
|
||||
<property name="No">0</property>
|
||||
<property name="OK">1</property>
|
||||
<property name="OK">0</property>
|
||||
<property name="Save">0</property>
|
||||
<property name="Yes">0</property>
|
||||
<property name="minimum_size"></property>
|
||||
|
|
|
@ -49,7 +49,7 @@ class DIALOG_BOARD_STATISTICS_BASE : public DIALOG_SHIM
|
|||
wxStaticLine* m_staticline2;
|
||||
wxButton* m_buttonSaveReport;
|
||||
wxStdDialogButtonSizer* m_sdbControlSizer;
|
||||
wxButton* m_sdbControlSizerOK;
|
||||
wxButton* m_sdbControlSizerCancel;
|
||||
|
||||
// Virtual event handlers, overide them in your derived class
|
||||
virtual void checkboxClicked( wxCommandEvent& event ) { event.Skip(); }
|
||||
|
@ -58,7 +58,7 @@ class DIALOG_BOARD_STATISTICS_BASE : public DIALOG_SHIM
|
|||
|
||||
public:
|
||||
|
||||
DIALOG_BOARD_STATISTICS_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Board Statistics"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE );
|
||||
DIALOG_BOARD_STATISTICS_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Board Statistics"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER );
|
||||
~DIALOG_BOARD_STATISTICS_BASE();
|
||||
|
||||
};
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
///////////////////////////////////////////////////////////////////////////
|
||||
// C++ code generated with wxFormBuilder (version Dec 30 2017)
|
||||
// C++ code generated with wxFormBuilder (version Jul 10 2019)
|
||||
// http://www.wxformbuilder.org/
|
||||
//
|
||||
// PLEASE DO *NOT* EDIT THIS FILE!
|
||||
|
@ -105,7 +105,7 @@ DIALOG_COPPER_ZONE_BASE::DIALOG_COPPER_ZONE_BASE( wxWindow* parent, wxWindowID i
|
|||
gbSizer1->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
|
||||
|
||||
m_constrainOutline = new wxCheckBox( m_ExportableSetupSizer->GetStaticBox(), wxID_ANY, _("Constrain outline to H, V and 45 degrees"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
gbSizer1->Add( m_constrainOutline, wxGBPosition( 0, 0 ), wxGBSpan( 1, 3 ), wxBOTTOM|wxRIGHT, 5 );
|
||||
gbSizer1->Add( m_constrainOutline, wxGBPosition( 0, 0 ), wxGBSpan( 1, 3 ), wxTOP|wxBOTTOM|wxRIGHT, 5 );
|
||||
|
||||
m_staticTextPriorityLevel = new wxStaticText( m_ExportableSetupSizer->GetStaticBox(), wxID_ANY, _("Zone priority level:"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
m_staticTextPriorityLevel->Wrap( -1 );
|
||||
|
@ -159,7 +159,7 @@ DIALOG_COPPER_ZONE_BASE::DIALOG_COPPER_ZONE_BASE( wxWindow* parent, wxWindowID i
|
|||
bSizerMiddle->Add( m_ExportableSetupSizer, 0, wxEXPAND|wxTOP|wxRIGHT|wxLEFT, 10 );
|
||||
|
||||
wxStaticBoxSizer* sbSizer5;
|
||||
sbSizer5 = new wxStaticBoxSizer( new wxStaticBox( this, wxID_ANY, _("Electrical") ), wxVERTICAL );
|
||||
sbSizer5 = new wxStaticBoxSizer( new wxStaticBox( this, wxID_ANY, _("Electrical Properties") ), wxVERTICAL );
|
||||
|
||||
wxGridBagSizer* gbSizerSettings;
|
||||
gbSizerSettings = new wxGridBagSizer( 0, 0 );
|
||||
|
@ -310,6 +310,7 @@ DIALOG_COPPER_ZONE_BASE::DIALOG_COPPER_ZONE_BASE( wxWindow* parent, wxWindowID i
|
|||
fgSizerZoneStyle->Add( m_staticTextGridSmootingVal, 0, wxRIGHT|wxLEFT|wxALIGN_CENTER_VERTICAL, 5 );
|
||||
|
||||
m_spinCtrlSmoothValue = new wxSpinCtrlDouble( sbSizerZoneStyle->GetStaticBox(), wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 0, 1, 0.100000, 0.1 );
|
||||
m_spinCtrlSmoothValue->SetDigits( 0 );
|
||||
fgSizerZoneStyle->Add( m_spinCtrlSmoothValue, 0, wxBOTTOM|wxRIGHT|wxLEFT|wxEXPAND, 5 );
|
||||
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,12 +1,11 @@
|
|||
///////////////////////////////////////////////////////////////////////////
|
||||
// C++ code generated with wxFormBuilder (version Dec 30 2017)
|
||||
// C++ code generated with wxFormBuilder (version Jul 10 2019)
|
||||
// http://www.wxformbuilder.org/
|
||||
//
|
||||
// PLEASE DO *NOT* EDIT THIS FILE!
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef __DIALOG_COPPER_ZONES_BASE_H__
|
||||
#define __DIALOG_COPPER_ZONES_BASE_H__
|
||||
#pragma once
|
||||
|
||||
#include <wx/artprov.h>
|
||||
#include <wx/xrc/xmlres.h>
|
||||
|
@ -23,11 +22,11 @@
|
|||
#include <wx/listbox.h>
|
||||
#include <wx/stattext.h>
|
||||
#include <wx/textctrl.h>
|
||||
#include <wx/button.h>
|
||||
#include <wx/checkbox.h>
|
||||
#include <wx/bitmap.h>
|
||||
#include <wx/image.h>
|
||||
#include <wx/icon.h>
|
||||
#include <wx/button.h>
|
||||
#include <wx/checkbox.h>
|
||||
#include <wx/statbmp.h>
|
||||
#include <wx/spinctrl.h>
|
||||
#include <wx/choice.h>
|
||||
|
@ -137,4 +136,3 @@ class DIALOG_COPPER_ZONE_BASE : public DIALOG_SHIM
|
|||
|
||||
};
|
||||
|
||||
#endif //__DIALOG_COPPER_ZONES_BASE_H__
|
||||
|
|
|
@ -450,7 +450,7 @@ void FOOTPRINT_EDIT_FRAME::OnCloseWindow( wxCloseEvent& Event )
|
|||
if( GetScreen()->IsModify() && GetBoard()->GetFirstModule() )
|
||||
{
|
||||
wxString footprintName = GetBoard()->GetFirstModule()->GetFPID().GetLibItemName();
|
||||
wxString msg = _( "Save changes to \"%s\" before closing? " );
|
||||
wxString msg = _( "Save changes to \"%s\" before closing?" );
|
||||
|
||||
if( !HandleUnsavedChanges( this, wxString::Format( msg, footprintName ),
|
||||
[&]() -> bool { return SaveFootprint( GetBoard()->GetFirstModule() ); } ) )
|
||||
|
|
Loading…
Reference in New Issue