Translatable strings.

This commit is contained in:
Jeff Young 2023-02-16 17:28:06 +00:00
parent d5e50b70bb
commit 407cdd63fb
1 changed files with 3 additions and 5 deletions

View File

@ -884,9 +884,8 @@ DRC_CONSTRAINT DRC_ENGINE::EvalRules( DRC_CONSTRAINT_T aConstraintType, const BO
if( c->constraint.GetValue().Min() < 0 )
{
// JEY TODO: translate for 8.0....
REPORT( implicit ? wxS( "Negative clearance specified; constraint ignored." )
: wxS( "Negative clearance specified; rule ignored." ) )
REPORT( implicit ? _( "Negative clearance specified; constraint ignored." )
: _( "Negative clearance specified; rule ignored." ) )
return true;
}
@ -1177,8 +1176,7 @@ DRC_CONSTRAINT DRC_ENGINE::EvalRules( DRC_CONSTRAINT_T aConstraintType, const BO
{
if( implicit )
{
// JEY TODO: translate for 8.0....
REPORT( wxS( "Constraint layer not matched." ) )
REPORT( _( "Constraint layer not matched." ) )
}
else if( c->parentRule )
{