Commit b66c00b4 authored by plyatov's avatar plyatov

Russian translation update.

parent 41a643c1
......@@ -87,7 +87,7 @@ EDA_LibComponentStruct *LibEntry = NULL;
if( ScreenLib->IsModify() )
{
if( ! IsOK(this, _("Current Part not saved, continue ?") ) ) return FALSE;
if( ! IsOK(this, _("Current Part not saved.\nContinue?") ) ) return FALSE;
}
if(CurrentLib == NULL) SelectActiveLibrary();
......@@ -110,7 +110,7 @@ EDA_LibComponentStruct *LibEntry = NULL;
if( LibEntry == NULL)
{
msg = _("Component "); msg << CmpName << _(" not found");
msg = _("Component \""); msg << CmpName << _("\" not found.");
DisplayError(this, msg, 20);
return FALSE;
}
......@@ -145,14 +145,14 @@ const wxChar * CmpName, *RootName = NULL;
RootName = ((EDA_LibCmpAliasStruct*)LibEntry)->m_RootName.GetData() ;
if( !noMsg )
{
msg.Printf( wxT("<%s> is Alias of <%s>"), CmpName, RootName);
msg.Printf( wxT("\"<%s>\" is Alias of \"<%s>\""), CmpName, RootName);
}
LibEntry = FindLibPart(RootName,Library->m_Name,FIND_ROOT);
if( LibEntry == NULL)
{
msg.Printf( wxT("Root Part <%s> not found"), RootName);
msg.Printf( wxT("Root Part \"<%s>\" not found."), RootName);
DisplayError(this, msg, 20);
return(1);
}
......@@ -232,7 +232,7 @@ int err;
Name = MakeFileName(g_RealLibDirBuffer, CurrentLib->m_Name, g_LibExtBuffer);
msg = _("Modify Library File \"") + Name + _("\" ?");
msg = _("Modify Library File \"") + Name + _("\"?");
if( ! IsOK(this, msg) ) return;
err = SaveOneLibrary(this, Name, CurrentLib);
......@@ -241,7 +241,7 @@ int err;
if ( err )
{
msg = _("Error while saving Library File \"") + Name + _("\"");
msg = _("Error while saving Library File \"") + Name + _("\".");
Affiche_1_Parametre(this, 1, wxT(" *** ERROR : **"), msg,BLUE);
DisplayError(this, msg);
}
......
......@@ -341,7 +341,7 @@ void WinEDA_LibeditFrame::Process_Special_Functions( wxCommandEvent& event )
case ID_LIBEDIT_SAVE_CURRENT_LIB:
if( m_CurrentScreen->IsModify() )
{
if( IsOK( this, _( "Include last component changes" ) ) )
if( IsOK( this, _( "Include last component changes?" ) ) )
SaveOnePartInMemory();
}
SaveActiveLibrary();
......
......@@ -186,7 +186,7 @@ bool status;
if ( ask_for_pin )
{
DrawPanel->m_IgnoreMouseEvents = TRUE;
status = IsOK(this, _("Occupied by other pin, Continue ?"));
status = IsOK(this, _("Occupied by other pin. Continue?"));
DrawPanel->MouseToCursorSchema();
DrawPanel->m_IgnoreMouseEvents = FALSE;
if( ! status )
......@@ -876,7 +876,7 @@ wxString msg;
Pin->m_PinName.GetData(), Pin->m_Pos.x, -Pin->m_Pos.y);
if ( CurrentLibEntry->m_UnitCount > 1 )
{
aux_msg.Printf( _(" Unit %d"), curr_pin->m_Unit);
aux_msg.Printf( _(" Part %d"), curr_pin->m_Unit);
msg += aux_msg;
}
if ( g_AsDeMorgan )
......
No preview for this file type
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment