mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 22:59:07 +02:00
MG: applied localization from Vasily
git-svn-id: trunk@2785 -
This commit is contained in:
parent
ba9b7722bd
commit
77e1d3cb1d
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -702,6 +702,7 @@ lcl/templates/template.pp svneol=native#text/pascal
|
|||||||
lcl/toolwin.pp svneol=native#text/pascal
|
lcl/toolwin.pp svneol=native#text/pascal
|
||||||
lcl/utrace.pp svneol=native#text/pascal
|
lcl/utrace.pp svneol=native#text/pascal
|
||||||
lcl/vclglobals.pp svneol=native#text/pascal
|
lcl/vclglobals.pp svneol=native#text/pascal
|
||||||
|
/localize.sh -text svneol=native#application/x-sh
|
||||||
packager/addfiletoapackagedlg.pas svneol=native#text/pascal
|
packager/addfiletoapackagedlg.pas svneol=native#text/pascal
|
||||||
packager/brokendependenciesdlg.pas svneol=native#text/pascal
|
packager/brokendependenciesdlg.pas svneol=native#text/pascal
|
||||||
packager/lazaruspackageintf.pas svneol=native#text/pascal
|
packager/lazaruspackageintf.pas svneol=native#text/pascal
|
||||||
|
@ -3946,9 +3946,9 @@ Begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
if OnlyForms then
|
if OnlyForms then
|
||||||
DlgCaption:='View project forms'
|
DlgCaption:=dlgMainViewForms
|
||||||
else
|
else
|
||||||
DlgCaption:='View project units';
|
DlgCaption:=dlgMainViewUnits ;
|
||||||
if ShowViewUnitsDlg(UnitList,true,DlgCaption)=mrOk then begin
|
if ShowViewUnitsDlg(UnitList,true,DlgCaption)=mrOk then begin
|
||||||
AnUnitInfo:=nil;
|
AnUnitInfo:=nil;
|
||||||
for i:=0 to UnitList.Count-1 do begin
|
for i:=0 to UnitList.Count-1 do begin
|
||||||
@ -7183,6 +7183,9 @@ end.
|
|||||||
|
|
||||||
{ =============================================================================
|
{ =============================================================================
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.390 2002/09/20 07:26:34 lazarus
|
||||||
|
MG: applied localization from Vasily
|
||||||
|
|
||||||
Revision 1.389 2002/09/19 14:54:53 lazarus
|
Revision 1.389 2002/09/19 14:54:53 lazarus
|
||||||
MG: history jumps now works without double jumps
|
MG: history jumps now works without double jumps
|
||||||
|
|
||||||
|
@ -37,7 +37,8 @@ unit ViewUnit_Dlg;
|
|||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
SysUtils, Classes, Controls, Forms, Dialogs, LResources, Buttons, StdCtrls;
|
SysUtils, Classes, Controls, Forms, Dialogs, LResources, Buttons, StdCtrls,
|
||||||
|
LazarusIdeStrConsts;
|
||||||
|
|
||||||
type
|
type
|
||||||
TViewUnitsEntry = class
|
TViewUnitsEntry = class
|
||||||
@ -147,7 +148,7 @@ begin
|
|||||||
Top := btnOK.Top + btnOK.Height + pad;
|
Top := btnOK.Top + btnOK.Height + pad;
|
||||||
Width := 75;
|
Width := 75;
|
||||||
Height := 25;
|
Height := 25;
|
||||||
Caption := 'Cancel';
|
Caption := dlgCancel;
|
||||||
Visible := True;
|
Visible := True;
|
||||||
Name := 'btnCancel';
|
Name := 'btnCancel';
|
||||||
OnClick := @btnCancelClick;
|
OnClick := @btnCancelClick;
|
||||||
@ -173,7 +174,7 @@ begin
|
|||||||
Top:=btnCancel.Top+btnCancel.Height+2*pad;
|
Top:=btnCancel.Top+btnCancel.Height+2*pad;
|
||||||
Width:=btnOk.Width;
|
Width:=btnOk.Width;
|
||||||
Height:=25;
|
Height:=25;
|
||||||
Caption:='Multi';
|
Caption:=dlgMulti;
|
||||||
Checked:=false;
|
Checked:=false;
|
||||||
OnClick:=@MultiselectCheckBoxClick;
|
OnClick:=@MultiselectCheckBoxClick;
|
||||||
Visible:=true;
|
Visible:=true;
|
||||||
@ -240,6 +241,9 @@ initialization
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.12 2002/09/20 07:26:37 lazarus
|
||||||
|
MG: applied localization from Vasily
|
||||||
|
|
||||||
Revision 1.11 2002/05/10 06:57:47 lazarus
|
Revision 1.11 2002/05/10 06:57:47 lazarus
|
||||||
MG: updated licenses
|
MG: updated licenses
|
||||||
|
|
||||||
|
11
localize.sh
Normal file
11
localize.sh
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# This script may be used to compile all language.
|
||||||
|
# This script is too small and simple to be licensed.
|
||||||
|
# Let's decide, that it is public property.
|
||||||
|
# If it can't be public property anywhere (or anywhy), it also can be of GPL 2.
|
||||||
|
|
||||||
|
msgfmt languages/lazaruside.de.po -o languages/lazaruside.de.mo
|
||||||
|
msgfmt languages/lazaruside.ru.po -o languages/lazaruside.ru.mo
|
||||||
|
msgfmt components/codetools/languages/codetools.ru.po -o components/codetools/languages/codetools.ru.mo
|
||||||
|
msgfmt lcl/languages/lcl.de.po -o lcl/languages/lcl.de.mo
|
||||||
|
msgfmt lcl/languages/lcl.ru.po -o lcl/languages/lcl.ru.mo
|
Loading…
Reference in New Issue
Block a user