Commit b66c00b4 authored by plyatov's avatar plyatov

Russian translation update.

parent 41a643c1
...@@ -87,7 +87,7 @@ EDA_LibComponentStruct *LibEntry = NULL; ...@@ -87,7 +87,7 @@ EDA_LibComponentStruct *LibEntry = NULL;
if( ScreenLib->IsModify() ) 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(); if(CurrentLib == NULL) SelectActiveLibrary();
...@@ -110,7 +110,7 @@ EDA_LibComponentStruct *LibEntry = NULL; ...@@ -110,7 +110,7 @@ EDA_LibComponentStruct *LibEntry = NULL;
if( LibEntry == NULL) if( LibEntry == NULL)
{ {
msg = _("Component "); msg << CmpName << _(" not found"); msg = _("Component \""); msg << CmpName << _("\" not found.");
DisplayError(this, msg, 20); DisplayError(this, msg, 20);
return FALSE; return FALSE;
} }
...@@ -145,14 +145,14 @@ const wxChar * CmpName, *RootName = NULL; ...@@ -145,14 +145,14 @@ const wxChar * CmpName, *RootName = NULL;
RootName = ((EDA_LibCmpAliasStruct*)LibEntry)->m_RootName.GetData() ; RootName = ((EDA_LibCmpAliasStruct*)LibEntry)->m_RootName.GetData() ;
if( !noMsg ) 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); LibEntry = FindLibPart(RootName,Library->m_Name,FIND_ROOT);
if( LibEntry == NULL) 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); DisplayError(this, msg, 20);
return(1); return(1);
} }
...@@ -232,7 +232,7 @@ int err; ...@@ -232,7 +232,7 @@ int err;
Name = MakeFileName(g_RealLibDirBuffer, CurrentLib->m_Name, g_LibExtBuffer); Name = MakeFileName(g_RealLibDirBuffer, CurrentLib->m_Name, g_LibExtBuffer);
msg = _("Modify Library File \"") + Name + _("\" ?"); msg = _("Modify Library File \"") + Name + _("\"?");
if( ! IsOK(this, msg) ) return; if( ! IsOK(this, msg) ) return;
err = SaveOneLibrary(this, Name, CurrentLib); err = SaveOneLibrary(this, Name, CurrentLib);
...@@ -241,7 +241,7 @@ int err; ...@@ -241,7 +241,7 @@ int err;
if ( 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); Affiche_1_Parametre(this, 1, wxT(" *** ERROR : **"), msg,BLUE);
DisplayError(this, msg); DisplayError(this, msg);
} }
......
...@@ -341,7 +341,7 @@ void WinEDA_LibeditFrame::Process_Special_Functions( wxCommandEvent& event ) ...@@ -341,7 +341,7 @@ void WinEDA_LibeditFrame::Process_Special_Functions( wxCommandEvent& event )
case ID_LIBEDIT_SAVE_CURRENT_LIB: case ID_LIBEDIT_SAVE_CURRENT_LIB:
if( m_CurrentScreen->IsModify() ) if( m_CurrentScreen->IsModify() )
{ {
if( IsOK( this, _( "Include last component changes" ) ) ) if( IsOK( this, _( "Include last component changes?" ) ) )
SaveOnePartInMemory(); SaveOnePartInMemory();
} }
SaveActiveLibrary(); SaveActiveLibrary();
......
...@@ -186,7 +186,7 @@ bool status; ...@@ -186,7 +186,7 @@ bool status;
if ( ask_for_pin ) if ( ask_for_pin )
{ {
DrawPanel->m_IgnoreMouseEvents = TRUE; DrawPanel->m_IgnoreMouseEvents = TRUE;
status = IsOK(this, _("Occupied by other pin, Continue ?")); status = IsOK(this, _("Occupied by other pin. Continue?"));
DrawPanel->MouseToCursorSchema(); DrawPanel->MouseToCursorSchema();
DrawPanel->m_IgnoreMouseEvents = FALSE; DrawPanel->m_IgnoreMouseEvents = FALSE;
if( ! status ) if( ! status )
...@@ -876,7 +876,7 @@ wxString msg; ...@@ -876,7 +876,7 @@ wxString msg;
Pin->m_PinName.GetData(), Pin->m_Pos.x, -Pin->m_Pos.y); Pin->m_PinName.GetData(), Pin->m_Pos.x, -Pin->m_Pos.y);
if ( CurrentLibEntry->m_UnitCount > 1 ) 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; msg += aux_msg;
} }
if ( g_AsDeMorgan ) 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