diff --git a/InnoSetup/codelite64_mingw.iss.in b/InnoSetup/codelite64_mingw.iss.in
index 5d1a8b1fc3..471deabf2e 100644
--- a/InnoSetup/codelite64_mingw.iss.in
+++ b/InnoSetup/codelite64_mingw.iss.in
@@ -1,37 +1,57 @@
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
+#define AppName "CodeLite"
+#define AppAuthor "Eran Ifrah"
+#define CurrentYear GetDateTimeString('yyyy','','')
+#define SupportURL "https://codelite.org"
+
+; external file with language and custom message definitions
+#include "@CL_SRC_ROOT@/InnoSetup/codelite64_mingw.localization.iss.in"
+
[Setup]
-WizardStyle=modern
-AppName=CodeLite
-AppVerName=CodeLite
-AppPublisher=Eran Ifrah
+AppName={#AppName}
AppVersion=@CODELITE_VERSION@
-AppPublisherURL=http://codelite.org
-AppSupportURL=http://codelite.org
-AppUpdatesURL=http://codelite.org
-DefaultDirName={commonpf64}\CodeLite
-DefaultGroupName=CodeLite
-LicenseFile=@CL_SRC_ROOT@/LICENSE
+AppVerName={#AppName} @CODELITE_VERSION@
+
+AppPublisherURL={#SupportURL}
+AppSupportURL={#SupportURL}
+AppUpdatesURL={#SupportURL}
+
+VersionInfoDescription={#AppName} installer
+VersionInfoProductName={#AppName}
+VersionInfoVersion=@CODELITE_VERSION@
+AppCopyright={#CurrentYear} {#AppAuthor}
+
+UninstallDisplayName={#AppName}
+UninstallDisplayIcon={app}\bin\codelite.exe,0
+AppPublisher={#AppAuthor}
+
+SetupIconFile=@CL_SRC_ROOT@/InnoSetup/box_software.ico
+
+DefaultDirName={commonpf64}\{#AppName}
+DefaultGroupName={#AppName}
+LicenseFile=@CL_SRC_ROOT@/LICENSE.rtf
OutputDir=@BUILD_DIRECTORY@/installer
OutputBaseFilename=codelite-@CODELITE_ARCH@-@CODELITE_VERSION@
ChangesEnvironment=yes
FlatComponentsList=yes
-SetupIconFile=@CL_SRC_ROOT@/InnoSetup/box_software.ico
Compression=lzma/ultra
SolidCompression=true
InternalCompressLevel=ultra
PrivilegesRequired=none
-UninstallDisplayIcon={app}\bin\codelite.exe,0
+
+WizardStyle=modern
+
+ShowLanguageDialog=yes
+UsePreviousLanguage=no
+LanguageDetectionMethod=uilanguage
;;==================================
;; 64 bit setup
;;==================================
#define INSTALL_DIR "@CMAKE_INSTALL_PREFIX@"
-[Languages]
-Name: "eng"; MessagesFile: "compiler:Default.isl"
-
[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
@@ -41,7 +61,7 @@ Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescrip
Source: "{#INSTALL_DIR}\*"; Excludes: "*.a"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs;
[Icons]
-Name: "{group}\CodeLite "; Filename: "{app}\bin\codelite.exe"; WorkingDir: "{app}"
+Name: "{group}\{#AppName} "; Filename: "{app}\bin\codelite.exe"; WorkingDir: "{app}"
Name: "{group}\{cm:UninstallProgram, CodeLite}"; Filename: "{uninstallexe}"
Name: "{userdesktop}\CodeLite "; Filename: "{app}\bin\codelite.exe"; WorkingDir: "{app}" ;Tasks: desktopicon
Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\CodeLite"; WorkingDir: "{app}"; Filename: "{app}\bin\codelite.exe"; Tasks: quicklaunchicon
@@ -83,7 +103,7 @@ begin
RegDeleteKeyIncludingSubkeys(HKCR, '*\shell\Open With CodeLite');
if IsSilentInstall() = False then begin
// Prompt the user to delete all his settings, default to "No"
- if MsgBox('Would you like to keep your user settings?', mbConfirmation, MB_YESNO or MB_DEFBUTTON1) = IDNO
+ if MsgBox(ExpandConstant('{cm:KeepUserSettings}'), mbConfirmation, MB_YESNO or MB_DEFBUTTON1) = IDNO
then begin
DelTree(ExpandConstant('{userappdata}') + '\codelite', True, True, True);
end;
@@ -178,7 +198,7 @@ begin
DelTree(sCodeLitePath + '\*.dat', False, True, False)
if IsSilentInstall() = False then
- if MsgBox('Would you like to keep your local settings?', mbConfirmation, MB_YESNO or MB_DEFBUTTON1) = IDNO
+ if MsgBox(ExpandConstant('{cm:KeepLocalSettings}'), mbConfirmation, MB_YESNO or MB_DEFBUTTON1) = IDNO
then
BEGIN
DelTree(ExpandConstant('{userappdata}') + '\codelite', True, True, True)
diff --git a/InnoSetup/codelite64_mingw.localization.iss.in b/InnoSetup/codelite64_mingw.localization.iss.in
new file mode 100644
index 0000000000..ba01d82672
--- /dev/null
+++ b/InnoSetup/codelite64_mingw.localization.iss.in
@@ -0,0 +1,18 @@
+[Languages]
+Name: "eng"; MessagesFile: "compiler:Default.isl"
+Name: "cze"; MessagesFile: "compiler:Languages\Czech.isl"
+Name: "fre"; MessagesFile: "compiler:Languages\French.isl"
+Name: "ita"; MessagesFile: "compiler:Languages\Italian.isl"
+Name: "jpn"; MessagesFile: "compiler:Languages\Japanese.isl"
+Name: "rus"; MessagesFile: "compiler:Languages\Russian.isl"
+
+
+[CustomMessages]
+eng.KeepUserSettings=Would you like to keep your user settings?
+eng.KeepLocalSettings=Would you like to keep your local settings?
+
+fre.KeepUserSettings=Souhaitez-vous conserver vos paramètres utilisateur?
+fre.KeepLocalSettings=Souhaitez-vous conserver vos paramètres locaux?
+
+ita.KeepUserSettings=Vuoi mantenere le impostazioni utente?
+ita.KeepLocalSettings=Vuoi mantenere le impostazioni locali?
diff --git a/LICENSE.rtf b/LICENSE.rtf
new file mode 100644
index 0000000000..0d88e36d44
--- /dev/null
+++ b/LICENSE.rtf
@@ -0,0 +1,213 @@
+{\rtf1\ansi\deff3\adeflang1025
+{\fonttbl{\f0\froman\fprq2\fcharset0 Times New Roman;}{\f1\froman\fprq2\fcharset2 Symbol;}{\f2\fswiss\fprq2\fcharset0 Arial;}{\f3\froman\fprq2\fcharset0 Liberation Serif{\*\falt Times New Roman};}{\f4\fswiss\fprq2\fcharset0 Liberation Sans{\*\falt Arial};}{\f5\froman\fprq0\fcharset128 Helvetica{\*\falt Arial};}{\f6\froman\fprq0\fcharset128 Courier{\*\falt Courier New};}{\f7\fnil\fprq2\fcharset0 Droid Sans Fallback;}{\f8\fnil\fprq2\fcharset0 FreeSans;}{\f9\fswiss\fprq0\fcharset128 FreeSans;}}
+{\colortbl;\red0\green0\blue0;\red0\green0\blue128;\red128\green128\blue128;}
+{\stylesheet{\s0\snext0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033 Normal;}
+{\*\cs15\snext15\cf2\ul\ulc0\langfe255\alang255\lang255 Internet Link;}
+{\s16\sbasedon0\snext17\sb240\sa120\keepn\dbch\af7\dbch\af8\afs28\loch\f4\fs28 Heading;}
+{\s17\sbasedon0\snext17\sl288\slmult1\sb0\sa140 Text Body;}
+{\s18\sbasedon17\snext18\sl288\slmult1\sb0\sa140\dbch\af9 List;}
+{\s19\sbasedon0\snext19\sb120\sa120\noline\i\dbch\af9\afs24\ai\fs24 Caption;}
+{\s20\sbasedon0\snext20\noline\dbch\af9 Index;}
+}{\info{\creatim\yr0\mo0\dy0\hr0\min0}{\revtim\yr0\mo0\dy0\hr0\min0}{\printim\yr0\mo0\dy0\hr0\min0}{\comment LibreOffice}{\vern67241986}}\deftab720
+\viewscale100
+{\*\pgdsctbl
+{\pgdsc0\pgdscuse451\pgwsxn12240\pghsxn15840\marglsxn1800\margrsxn1800\margtsxn1440\margbsxn1440\pgdscnxt0 Default Style;}}
+\formshade{\*\pgdscno0}\paperh15840\paperw12240\margl1800\margr1800\margt1440\margb1440\sectd\sbknone\sectunlocked1\pgndec\pgwsxn12240\pghsxn15840\marglsxn1800\margrsxn1800\margtsxn1440\margbsxn1440\ftnbj\ftnstart1\ftnrstcont\ftnnar\aenddoc\aftnrstcont\aftnstart1\aftnnrlc
+\pgndec\pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\ul\ulc0\b\rtlch \ltrch\loch\fs28\loch\f5
+GNU GENERAL PUBLIC LICENSE}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+Version 2, June 1991}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f6
+Copyright (C) 1989, 1991 Free Software Foundation, Inc. }{\rtlch \ltrch\loch
+\line }{\rtlch \ltrch\loch\loch\f6
+}{\rtlch \ltrch\loch
+\line \line }{\rtlch \ltrch\loch\loch\f6
+Everyone is permitted to copy and distribute verbatim copies}{\rtlch \ltrch\loch
+\line }{\rtlch \ltrch\loch\loch\f6
+of this license document, but changing it is not allowed.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\ul\ulc0\b\rtlch \ltrch\loch\fs28\loch\f5
+Preamble}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+The precise terms and conditions for copying, distribution and modification follow.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\ul\ulc0\b\rtlch \ltrch\loch\fs28\loch\f5
+TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180\rtlch \ltrch\loch
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\b\rtlch \ltrch\loch\loch\f5
+0.}{\rtlch \ltrch\loch\loch\f5
+ This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you".}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180\rtlch \ltrch\loch
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\b\rtlch \ltrch\loch\loch\f5
+1.}{\rtlch \ltrch\loch\loch\f5
+ You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180\rtlch \ltrch\loch
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\b\rtlch \ltrch\loch\loch\f5
+2.}{\rtlch \ltrch\loch\loch\f5
+ You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa0\rtlch \ltrch\loch\loch\f5
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi0\sb0\sa0{\b\rtlch \ltrch\loch\loch\f5
+a)}{\rtlch \ltrch\loch\loch\f5
+ You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa0\rtlch \ltrch\loch\loch\f5
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi0\sb0\sa0{\b\rtlch \ltrch\loch\loch\f5
+b)}{\rtlch \ltrch\loch\loch\f5
+ You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa0\rtlch \ltrch\loch\loch\f5
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi0\sb0\sa0{\b\rtlch \ltrch\loch\loch\f5
+c)}{\rtlch \ltrch\loch\loch\f5
+ If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.)}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180\rtlch \ltrch\loch
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\b\rtlch \ltrch\loch\loch\f5
+3.}{\rtlch \ltrch\loch\loch\f5
+ You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following:}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa0\rtlch \ltrch\loch\loch\f5
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi0\sb0\sa0{\b\rtlch \ltrch\loch\loch\f5
+a)}{\rtlch \ltrch\loch\loch\f5
+ Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa0\rtlch \ltrch\loch\loch\f5
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi0\sb0\sa0{\b\rtlch \ltrch\loch\loch\f5
+b)}{\rtlch \ltrch\loch\loch\f5
+ Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa0\rtlch \ltrch\loch\loch\f5
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li360\ri0\lin360\rin0\fi0\sb0\sa0{\b\rtlch \ltrch\loch\loch\f5
+c)}{\rtlch \ltrch\loch\loch\f5
+ Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.)}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180\rtlch \ltrch\loch
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\b\rtlch \ltrch\loch\loch\f5
+4.}{\rtlch \ltrch\loch\loch\f5
+ You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180\rtlch \ltrch\loch
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\b\rtlch \ltrch\loch\loch\f5
+5.}{\rtlch \ltrch\loch\loch\f5
+ You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180\rtlch \ltrch\loch
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\b\rtlch \ltrch\loch\loch\f5
+6.}{\rtlch \ltrch\loch\loch\f5
+ Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180\rtlch \ltrch\loch
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\b\rtlch \ltrch\loch\loch\f5
+7.}{\rtlch \ltrch\loch\loch\f5
+ If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180\rtlch \ltrch\loch
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\b\rtlch \ltrch\loch\loch\f5
+8.}{\rtlch \ltrch\loch\loch\f5
+ If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180\rtlch \ltrch\loch
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\b\rtlch \ltrch\loch\loch\f5
+9.}{\rtlch \ltrch\loch\loch\f5
+ The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180\rtlch \ltrch\loch
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\b\rtlch \ltrch\loch\loch\f5
+10.}{\rtlch \ltrch\loch\loch\f5
+ If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180\rtlch \ltrch\loch
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\b\rtlch \ltrch\loch\loch\f5
+NO WARRANTY}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\b\rtlch \ltrch\loch\loch\f5
+11.}{\rtlch \ltrch\loch\loch\f5
+ BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180\rtlch \ltrch\loch
+
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\b\rtlch \ltrch\loch\loch\f5
+12.}{\rtlch \ltrch\loch\loch\f5
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\b\rtlch \ltrch\loch\fs28\loch\f5
+END OF TERMS AND CONDITIONS}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\ul\ulc0\b\rtlch \ltrch\loch\fs28\loch\f5
+How to Apply These Terms to Your New Programs}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f6
+one line to give the program's name and an idea of what it does.}{\rtlch \ltrch\loch
+\line }{\rtlch \ltrch\loch\loch\f6
+Copyright (C) yyyy name of author}{\rtlch \ltrch\loch
+\line \line }{\rtlch \ltrch\loch\loch\f6
+This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.}{\rtlch \ltrch\loch
+\line \line }{\rtlch \ltrch\loch\loch\f6
+This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.}{\rtlch \ltrch\loch
+\line \line }{\rtlch \ltrch\loch\loch\f6
+You should have received a copy of the GNU General Public License along with this program; if not, see .}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+Also add information on how to contact you by electronic and paper mail.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+If the program is interactive, make it output a short notice like this when it starts in an interactive mode:}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f6
+Gnomovision version 69, Copyright (C) year name of author}{\rtlch \ltrch\loch
+\line }{\rtlch \ltrch\loch\loch\f6
+Gnomovision comes with ABSOLUTELY NO WARRANTY; for details}{\rtlch \ltrch\loch
+\line }{\rtlch \ltrch\loch\loch\f6
+type `show w'. This is free software, and you are welcome}{\rtlch \ltrch\loch
+\line }{\rtlch \ltrch\loch\loch\f6
+to redistribute it under certain conditions; type `show c' }{\rtlch \ltrch\loch
+\line }{\rtlch \ltrch\loch\loch\f6
+for details.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program.}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names:}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f6
+Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker.}{\rtlch \ltrch\loch
+\line \line }{\rtlch \ltrch\loch\loch\f6
+signature of Moe Ghoul, 1 April 1989}{\rtlch \ltrch\loch
+\line }{\rtlch \ltrch\loch\loch\f6
+Moe Ghoul, President of Vice}
+\par \pard\plain \s0\nowidctlpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\dbch\af7\langfe2052\dbch\af8\afs24\alang1081\loch\f3\fs24\lang1033\ql\li0\ri0\lin0\rin0\fi0\sb0\sa180{\rtlch \ltrch\loch\loch\f5
+This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the }{{\field{\*\fldinst HYPERLINK "https://www.gnu.org/licenses/lgpl.html" }{\fldrslt {\cf2\ul\ulc0\langfe255\alang255\lang255\ul\ulc0\rtlch \ltrch\loch\loch\f5
+GNU Lesser General Public License}{}}}\rtlch \ltrch\loch\loch\f5
+ instead of this License.}
+\par }
diff --git a/translations/CMakeLists.txt b/translations/CMakeLists.txt
index ac87622bf5..8a16d3a6e0 100644
--- a/translations/CMakeLists.txt
+++ b/translations/CMakeLists.txt
@@ -51,6 +51,7 @@ endfunction()
GETTEXT_PROCESS_PO_FILES_FIXED(cs ALL INSTALL_DESTINATION ${INSTALL_LANG_DIR} PO_FILES cs/codelite.po)
GETTEXT_PROCESS_PO_FILES_FIXED(fr ALL INSTALL_DESTINATION ${INSTALL_LANG_DIR} PO_FILES fr/codelite.po)
+ GETTEXT_PROCESS_PO_FILES_FIXED(it ALL INSTALL_DESTINATION ${INSTALL_LANG_DIR} PO_FILES it/codelite.po)
GETTEXT_PROCESS_PO_FILES_FIXED(ja_JP ALL INSTALL_DESTINATION ${INSTALL_LANG_DIR} PO_FILES ja_JP/codelite.po)
GETTEXT_PROCESS_PO_FILES_FIXED(ru_RU ALL INSTALL_DESTINATION ${INSTALL_LANG_DIR} PO_FILES ru_RU/codelite.po)
GETTEXT_PROCESS_PO_FILES_FIXED(zh_CN ALL INSTALL_DESTINATION ${INSTALL_LANG_DIR} PO_FILES zh_CN/codelite.po)
diff --git a/translations/it/codelite.po b/translations/it/codelite.po
new file mode 100644
index 0000000000..21cb289c86
--- /dev/null
+++ b/translations/it/codelite.po
@@ -0,0 +1,22360 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr "Project-Id-Version: PACKAGE VERSION\n"
+ "Report-Msgid-Bugs-To: \n"
+ "POT-Creation-Date: 2026-03-17 11:50+0100\n"
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+ "Last-Translator: FULL NAME \n"
+ "Language-Team: LANGUAGE \n"
+ "Language: \n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+ "Content-Transfer-Encoding: 8bit\n"
+
+#: AutoSave/AutoSaveUI.cpp:36
+msgid "Enable Auto Save"
+msgstr "Abilita salvataggio automatico"
+
+#: AutoSave/AutoSaveUI.cpp:43
+msgid "Save interval:"
+msgstr "Intervallo salvataggio:"
+
+#: AutoSave/AutoSaveUI.cpp:44 AutoSave/AutoSaveUI.cpp:49
+msgid "Check and save modified files interval (in seconds)"
+msgstr "Controlla e salva file modificati - intervallo (in secondi)"
+
+#: AutoSave/AutoSaveUI.h:80
+msgid "Auto Save Settings"
+msgstr "Impostazioni salvataggio automatico"
+
+#: AutoSave/autosave.cpp:21 AutoSave/autosave.cpp:32
+msgid "Automatically save modified source files"
+msgstr "Salva automaticamente i file sorgente modificati"
+
+#: AutoSave/autosave.cpp:44 CMakePlugin/CMakePlugin.cpp:195 CallGraph/callgraph.cpp:129 CallGraph/uisettings.h:99 Copyright/copyright.cpp:89 Copyright/copyright.cpp:111 Docker/clDockerWorkspaceView.cpp:90 Docker/clDockerWorkspaceView.cpp:136 EditorConfigPlugin/editorconfigplugin.cpp:49 HelpPlugin/helpplugin.cpp:45 LiteEditor/fileview.cpp:2598
+#: Plugin/FileSystemWorkspace/clFileSystemWorkspaceView.cpp:125 QmakePlugin/qmakeplugin.cpp:114 SFTP/sftp.cpp:166 SmartCompletion/smartcompletion.cpp:50 SnipWiz/snipwiz.cpp:161 SpellChecker/spellcheck.cpp:186 SpellChecker/spellcheck.cpp:244 WebTools/webtools.cpp:112 abbreviation/abbreviation.cpp:91 codelite_vim/codelite_vim.cpp:50 wxcrafter/src/gui.cpp:155 wxcrafter/src/wxcrafter_plugin.cpp:443
+#: wxformbuilder/wxformbuilder.cpp:105
+msgid "Settings..."
+msgstr "Impostazioni..."
+
+#: AutoSave/autosave.cpp:45
+msgid "Auto Save"
+msgstr "Salvataggio automatico"
+
+#: CMakePlugin/CMakeGenerator.cpp:104
+msgid " exists.\n"
+ "Would you like to overwrite it?\n"
+msgstr " esiste.\n"
+ "Vuoi sovrascriverlo?\n"
+
+#: CMakePlugin/CMakeGenerator.cpp:104
+msgid "A custom "
+msgstr "Una consuetudine "
+
+#: CMakePlugin/CMakeGenerator.cpp:107
+msgid "Don't Overwrite"
+msgstr "Non sovrascrivere"
+
+#: CMakePlugin/CMakeGenerator.cpp:107
+msgid "Overwrite"
+msgstr "Sovrascrivi"
+
+#: CMakePlugin/CMakeGenerator.cpp:108 LiteEditor/frame.cpp:2612
+msgid "Remember my answer and don't annoy me again"
+msgstr "Ricorda la mia risposta e non disturbarmi più"
+
+#: CMakePlugin/CMakeHelpTab.cpp:166
+msgid "CMake application path is invalid!"
+msgstr "Il percorso dell'applicazione CMake non è valido!"
+
+#: CMakePlugin/CMakePlugin.cpp:93 HelpPlugin/HelpPluginUI.cpp:113
+msgid "CMake"
+msgstr "CMake"
+
+#: CMakePlugin/CMakePlugin.cpp:121
+msgid "CMake integration for CodeLite"
+msgstr "Integrazione CMake per CodeLite"
+
+#: CMakePlugin/CMakePlugin.cpp:145
+msgid "CMake integration with CodeLite"
+msgstr "Integrazione CMake con CodeLite"
+
+#: CMakePlugin/CMakePlugin.cpp:288 CMakePlugin/CMakePlugin.cpp:398
+msgid "Open CMakeLists.txt"
+msgstr "Apri CMakeLists.txt"
+
+#: CMakePlugin/CMakePlugin.cpp:293
+msgid "Run CMake"
+msgstr "Esegui CMake"
+
+#: CMakePlugin/CMakePlugin.cpp:295 CMakePlugin/CMakePlugin.cpp:402
+msgid "Export CMakeLists.txt"
+msgstr "Esporta CMakeLists.txt"
+
+#: CMakePlugin/CMakePlugin.cpp:493
+msgid "Failed to execute:\n"
+msgstr "Impossibile eseguire:\n"
+
+#: CMakePlugin/CMakePlugin.cpp:499 Docker/UI.cpp:205 LiteEditor/fileview.cpp:2509 LiteEditor/fileview.cpp:2549 LiteEditor/frame.cpp:1035 LiteEditor/frame.cpp:5251 LiteEditor/project_settings_base_dlg.cpp:178 Plugin/FileSystemWorkspace/clFileSystemWorkspaceDlgBase.cpp:383 Plugin/clStrings.h:5 Plugin/editor_config.cpp:369 Plugin/editor_config.cpp:407 QmakePlugin/qmakeplugin.cpp:545
+#: Remoty/RemotyWorkspaceView.cpp:97 Runtime/rc/menu.xrc:997
+msgid "Build"
+msgstr "Complia"
+
+#: CMakePlugin/CMakePlugin.cpp:511
+msgid "This folder already contains a CMakeLists.txt file"
+msgstr "Questa cartella contiene già un file CMakeLists.txt"
+
+#: CMakePlugin/CMakePlugin.cpp:537
+msgid "Executable name:"
+msgstr "Nome dell'eseguibile:"
+
+#: CMakePlugin/CMakePlugin.cpp:541 CMakePlugin/CMakePlugin.cpp:545
+msgid "Library name:"
+msgstr "Nome della biblioteca:"
+
+#: CMakePlugin/CMakePluginUi.cpp:48
+msgid "CMake program:"
+msgstr "Programma CMake:"
+
+#: CMakePlugin/CMakePluginUi.cpp:53 DatabaseExplorer/GUI.cpp:196 Docker/UI.cpp:122 Docker/UI.cpp:134 LiteEditor/CompilerMainPage.cpp:196 LiteEditor/wxcrafter.cpp:145 MemCheck/memcheckui.cpp:654 MemCheck/memcheckui.cpp:712 PHPLint/phplintdlgbase.cpp:76 PHPLint/phplintdlgbase.cpp:98 PHPLint/phplintdlgbase.cpp:107 PHPLint/phplintdlgbase.cpp:129 PHPRefactoring/phprefactoringdlgbase.cpp:40
+#: QmakePlugin/qmakesettingsbasedlg.cpp:133 SFTP/UI.cpp:329 Subversion2/subversion2_ui.cpp:1273 WebTools/WebToolsBase.cpp:73 WebTools/WebToolsBase.cpp:91 WebTools/WebToolsBase.cpp:223 WebTools/WebToolsBase.cpp:236 codelitephp/php-plugin/php_ui.cpp:364 codelitephp/php-plugin/php_ui.cpp:658 codelitephp/php-plugin/php_ui.cpp:672 codelitephp/php-plugin/php_ui.cpp:683
+#: codelitephp/php-plugin/php_ui.cpp:1775 cscope/CscopeTabBase.cpp:196 git/gitui.cpp:68 git/gitui.cpp:84 git/gitui.cpp:1529 wxcrafter/controls/file_picker_ctrl_wrapper.cpp:16
+msgid "Select a file"
+msgstr "Seleziona un file"
+
+#: CMakePlugin/CMakePluginUi.cpp:55
+msgid "Path to cmake executable."
+msgstr "Percorso dell'eseguibile cmake."
+
+#: CMakePlugin/CMakePluginUi.cpp:60
+msgid "Default Generator:"
+msgstr "Generatore predefinito:"
+
+#: CMakePlugin/CMakePluginUi.cpp:70
+msgid "You can specify default generator for all projects (if is not overridden by project settings). If generator is not selected the CMake uses platform's default."
+msgstr "È possibile specificare il generatore predefinito per tutti i progetti (se non viene sovrascritto dalle impostazioni del progetto).Se il generatore non è selezionato, CMake usa l'impostazione predefinita della piattaforma."
+
+#: CMakePlugin/CMakePluginUi.cpp:128 Gizmos/newwxprojectbasedlg.cpp:162 Plugin/clAboutDialogBase.cpp:97 wxcrafter/src/wxcrafter.cpp:1209
+msgid "Version:"
+msgstr "Versione:"
+
+#: CMakePlugin/CMakePluginUi.cpp:133 DebugAdapterClient/UI.cpp:249 LiteEditor/importfilesdialog_new.cpp:61 LiteEditor/rename_symbool_dlg.cpp:60 Plugin/ToolBarUI.cpp:33 Subversion2/subversion2_ui.cpp:59 codelitephp/php-plugin/php_ui.cpp:2089 git/gitui.cpp:1625
+msgid "?"
+msgstr "?"
+
+#: CMakePlugin/CMakePluginUi.cpp:143
+msgid "Select Topic:"
+msgstr "Seleziona argomento:"
+
+#: CMakePlugin/CMakePluginUi.cpp:148 DebugAdapterClient/DAPOutputPane.cpp:17
+msgid "Modules"
+msgstr "Moduli"
+
+#: CMakePlugin/CMakePluginUi.cpp:149
+msgid "Commands"
+msgstr "Comandi"
+
+#: CMakePlugin/CMakePluginUi.cpp:150 wxcrafter/src/gui.cpp:620
+msgid "Properties"
+msgstr "Proprietà"
+
+#: CMakePlugin/CMakePluginUi.cpp:151 DebugAdapterClient/DAPVariableListCtrl.cpp:25
+msgid "Variables"
+msgstr "Variabili"
+
+#: CMakePlugin/CMakePluginUi.cpp:159 Remoty/RemotyWorkspace.cpp:1062 Runtime/rc/menu.xrc:813 wxcrafter/src/wxcrafter.cpp:1028
+msgid "Reload"
+msgstr "Ricaricare"
+
+#: CMakePlugin/CMakePluginUi.cpp:160
+msgid "Reloads Help from CMake"
+msgstr "Ricarica la Guida da CMake"
+
+#: CMakePlugin/CMakePluginUi.cpp:186
+msgid "Double click to insert in the current editor."
+msgstr "Fai doppio clic per inserire nell'editor attuale."
+
+#: CallGraph/callgraph.cpp:77 CallGraph/callgraph.cpp:90
+msgid "Create application call graph from profiling information provided by gprof tool."
+msgstr "Crea un grafico delle chiamate dell'applicazione dalle informazioni di profilazione fornite dallo strumento gprof."
+
+#: CallGraph/callgraph.cpp:125 CallGraph/callgraph.cpp:144
+msgid "Show call graph"
+msgstr "Visualizza grafico delle chiamate"
+
+#: CallGraph/callgraph.cpp:126
+msgid "Show call graph for selected/active project"
+msgstr "Visualizza grafico delle chiamate per il progetto selezionato/attivo"
+
+#: CallGraph/callgraph.cpp:131 DatabaseExplorer/databaseexplorer.cpp:152 LiteEditor/frame.cpp:1130 wxcrafter/src/wxcrafter_plugin.cpp:441
+msgid "About..."
+msgstr "Di..."
+
+#: CallGraph/callgraph.cpp:134 CallGraph/callgraph.cpp:165 CallGraph/callgraph.cpp:194
+msgid "Call Graph"
+msgstr "Grafico delle chiamate"
+
+#: CallGraph/callgraph.cpp:145
+msgid "Show call graph for selected project"
+msgstr "Visualizza grafico chiamate del progetto selezionato"
+
+#: CallGraph/callgraph.cpp:188
+msgid "Create application call graph from profiling information provided by gprof tool. \n"
+ "\n"
+msgstr "Crea un grafico delle chiamate dell'applicazione dalle informazioni di profilazione fornite dallo strumento gprof.\n"
+
+#: CallGraph/callgraph.cpp:280 CallGraph/callgraph.cpp:296
+msgid "Unable to get opened workspace."
+msgstr "Impossibile aprire l'area di lavoro."
+
+#: CallGraph/callgraph.cpp:291
+msgid "Unable to get current build matrix."
+msgstr "Impossibile ottenere matrice compilazione attuale."
+
+#: CallGraph/callgraph.cpp:312
+msgid "Please select the binary to analyze"
+msgstr "Seleziona il binario da analizzare"
+
+#: CallGraph/callgraph.cpp:313
+msgid "selected binary was canceled"
+msgstr "il binario selezionato è stato annullato"
+
+#: CallGraph/callgraph.cpp:317
+msgid "bin/exe isn't executable"
+msgstr "bin/exe non è eseguibile"
+
+#: CallGraph/callgraph.cpp:325
+msgid "Please select the gprof file"
+msgstr "Seleziona il file gprof"
+
+#: CallGraph/callgraph.cpp:326
+msgid "selected gprof was canceled"
+msgstr "il gprof selezionato è stato annullato"
+
+#: CallGraph/callgraph.cpp:349
+msgid "wxProcess::GetInputStream() can't be opened, aborting"
+msgstr "wxProcess::GetInputStream() non può essere aperto, interruzione"
+
+#: CallGraph/callgraph.cpp:379
+#, c-format
+msgid "The CallGraph plugin has suggested node threshold %d to speed-up the call graph creation. You can alter it on the call graph panel."
+msgstr "Il plugin CallGraph ha suggerito la soglia del nodo %d per velocizzare la creazione del grafico delle chiamate.Puoi modificarlo nel pannello del grafico delle chiamate."
+
+#: CallGraph/callgraph.cpp:413
+msgid "Failed to open file CallGraph.png. Please check the project settings, rebuild the project and try again."
+msgstr "Impossibile aprire il file CallGraph.png.Controlla le impostazioni del progetto, ricostruisci il progetto e riprova."
+
+#: CallGraph/dotwriter.cpp:195
+#, c-format
+msgid "\"The call-graph is empty; the node threshold ceiling is %d !\""
+msgstr "\"Il grafico delle chiamate è vuoto; il limite massimo della soglia del nodo è %d!\""
+
+#: CallGraph/uicallgraph.cpp:46
+msgid "Node threshold [%] :"
+msgstr "Soglia nodo [%] :"
+
+#: CallGraph/uicallgraph.cpp:53
+msgid "Edge threshold [%] :"
+msgstr "Soglia bordo [%] :"
+
+#: CallGraph/uicallgraph.cpp:60 CallGraph/uisettings.cpp:133
+msgid "Hide parameters"
+msgstr "Nascondi parametri"
+
+#: CallGraph/uicallgraph.cpp:63 CallGraph/uisettings.cpp:153
+msgid "Hide namespaces"
+msgstr "Nascondi spazi dei nomi"
+
+#: CallGraph/uicallgraph.cpp:69 Docker/DockerOutputPane.cpp:47 Docker/DockerOutputPane.cpp:60 ExternalTools/external_tools.cpp:160 LiteEditor/simpletablebase.cpp:50 Plugin/Diff/DiffFoldersFrame.cpp:27 Plugin/Diff/DiffSideBySidePanel.cpp:111 Plugin/FileSystemWorkspace/clFileSystemWorkspace.cpp:540 Plugin/clRemoteDirCtrl.cpp:296 Plugin/clTreeCtrlPanel.cpp:115 Runtime/rc/menu.xrc:1132
+#: git/GitConsole.cpp:226
+msgid "Refresh"
+msgstr "Aggiorna"
+
+#: CallGraph/uicallgraph.cpp:92
+msgid "Save call graph to..."
+msgstr "Salva il grafico delle chiamate in..."
+
+#: CallGraph/uicallgraph.cpp:96
+msgid "Close call graph"
+msgstr "Chiudi il grafico delle chiamate"
+
+#: CallGraph/uicallgraph.cpp:102
+msgid "Zoom in"
+msgstr "Ingrandisci"
+
+#: CallGraph/uicallgraph.cpp:106
+msgid "Zoom out"
+msgstr "Rimpicciolisci"
+
+#: CallGraph/uicallgraph.cpp:110
+msgid "Zoom 100%"
+msgstr "Zoom 100%"
+
+#: CallGraph/uicallgraph.cpp:114
+msgid "Zoom 1:1"
+msgstr "Zoom 1:1"
+
+#: CallGraph/uicallgraph.cpp:146
+msgid " Function name "
+msgstr " Nome funzione "
+
+#: CallGraph/uicallgraph.cpp:147
+msgid " Total time [%] "
+msgstr " Tempo totale [%] "
+
+#: CallGraph/uicallgraph.cpp:148
+msgid " Self time [s]"
+msgstr " Tempo personale [s]"
+
+#: CallGraph/uicallgraph.cpp:149
+msgid " Called "
+msgstr " Chiamato "
+
+#: CallGraph/uicallgraphpanel.cpp:86
+msgid "Save call graph..."
+msgstr "Salva grafico delle chiamate..."
+
+#: CallGraph/uicallgraphpanel.cpp:166
+msgid "CallGraph failed to save file with DOT language, please build the project again."
+msgstr "CallGraph non è riuscito a salvare il file con il linguaggio DOT, crea nuovamente il progetto."
+
+#: CallGraph/uisettings.cpp:50
+msgid "Select path for Gprof:"
+msgstr "Seleziona il percorso per Gprof:"
+
+#: CallGraph/uisettings.cpp:57 CallGraph/uisettings.cpp:67
+msgid "Select..."
+msgstr "Seleziona..."
+
+#: CallGraph/uisettings.cpp:60
+msgid "Select path for Dot:"
+msgstr "Seleziona il percorso per il punto:"
+
+#: CallGraph/uisettings.cpp:83
+msgid "Settings for CALL graph"
+msgstr "Impostazioni per il grafico CALL"
+
+#: CallGraph/uisettings.cpp:85
+msgid "Resolutions:"
+msgstr "Risoluzioni:"
+
+#: CallGraph/uisettings.cpp:97
+msgid "Node threshold (0 - 100) [%]:"
+msgstr "Soglia nodo (0 - 100) [%]:"
+
+#: CallGraph/uisettings.cpp:104
+msgid "Edge threshold (0 - 100) [%]:"
+msgstr "Soglia fronte (0 - 100) [%]:"
+
+#: CallGraph/uisettings.cpp:120 LiteEditor/findinfiles_dlg.cpp:171 codelitephp/php-plugin/new_class.cpp:119 git/gitui.cpp:463
+msgid "Options:"
+msgstr "Opzioni:"
+
+#: CallGraph/uisettings.cpp:136
+msgid "Number of node load level colors (max 10):"
+msgstr "Numero di colori del livello di carico del nodo (max 10):"
+
+#: CallGraph/uisettings.cpp:143
+msgid "Strip parameters "
+msgstr "Parametri striscia "
+
+#: CallGraph/uisettings.cpp:146
+msgid "Number of edge load level colors (max 10):"
+msgstr "Numero di colori del livello di carico del bordo (max 10):"
+
+#: CallGraph/uisettings.cpp:165 LiteEditor/manageperspectivesbasedlg.cpp:69 LiteEditor/tabgroupbasedlgs.cpp:63 LiteEditor/tabgroupbasedlgs.cpp:175 LiteEditor/tagsparsersearchpathsbasedlg.cpp:67 LiteEditor/workspacesettingsbase.cpp:105 Plugin/renamefilebasedlg.cpp:115
+msgid "&Ok"
+msgstr "&OK"
+
+#: CallGraph/uisettings.cpp:169 Copyright/copyrights_options_base_dlg.cpp:104 Copyright/copyrights_proj_sel_base_dlg.cpp:80 DatabaseExplorer/GUI.cpp:389 Gizmos/newwxprojectbasedlg.cpp:201 LiteEditor/DbgCommandBaseDlg.cpp:86 LiteEditor/attachdbgprocbasedlg.cpp:83 LiteEditor/debuggersettingsbasedlg.cpp:284 LiteEditor/free_text_dialog.cpp:65 LiteEditor/manageperspectivesbasedlg.cpp:73
+#: LiteEditor/manageperspectivesbasedlg.cpp:125 LiteEditor/new_virtual_folder.cpp:68 LiteEditor/newquickwatch.cpp:58 LiteEditor/rename_symbool_dlg.cpp:133 LiteEditor/rename_symbool_dlg.cpp:222 LiteEditor/symbols_dialog_base.cpp:67 LiteEditor/tabgroupbasedlgs.cpp:68 LiteEditor/tabgroupbasedlgs.cpp:180 LiteEditor/tagsparsersearchpathsbasedlg.cpp:71 LiteEditor/workspacesettingsbase.cpp:111
+#: LiteEditor/wxcrafter.cpp:163 Plugin/renamefilebasedlg.cpp:119 Plugin/sftp_ui.cpp:86 Plugin/sftp_ui.cpp:296 Plugin/sftp_ui.cpp:435 Plugin/wxcrafter_plugin.cpp:91 QmakePlugin/NewQtProj.cpp:97 QmakePlugin/qmakesettingsbasedlg.cpp:57 Subversion2/subversion2_ui.cpp:602 Subversion2/subversion2_ui.cpp:978 Subversion2/subversion2_ui.cpp:1065 Subversion2/wxcrafter.cpp:320
+#: UnitTestCPP/newunittestbasedlg.cpp:98 codelitephp/php-plugin/new_class.cpp:163 codelitephp/php-plugin/php_ui.cpp:553 codelitephp/php-plugin/php_ui.cpp:924 cppchecker/cppchecksettingsdlgbase.cpp:175 wxcrafter/src/gui.cpp:873 wxcrafter/src/gui.cpp:974 wxcrafter/src/wxcrafter.cpp:1386 wxcrafter/src/wxcrafter.cpp:1547 wxcrafter/src/wxcrafter.cpp:1749
+msgid "&Cancel"
+msgstr "&Cancellare"
+
+#: CallGraph/uisettingsdlg.cpp:61
+msgid "Select gprof..."
+msgstr "Seleziona gprof..."
+
+#: CallGraph/uisettingsdlg.cpp:76
+msgid "Select dot..."
+msgstr "Seleziona punto..."
+
+#: CallGraph/uisettingsdlg.cpp:108
+msgid "Please check the external tools' paths settings."
+msgstr "Controlla le impostazioni dei percorsi degli strumenti esterni."
+
+#: CodeFormatter/FormatterPage.cpp:46
+msgid "Format on save?"
+msgstr "Vuoi formattare al salvataggio?"
+
+#: CodeFormatter/FormatterPage.cpp:47
+msgid "Inplace edit"
+msgstr "Modifica sul posto"
+
+#: CodeFormatter/FormatterPage.cpp:48
+msgid "Working directory"
+msgstr "Cartella di lavoro"
+
+#: CodeFormatter/FormatterPage.cpp:49
+msgid "Supported languages"
+msgstr "Lingue supportate"
+
+#: CodeFormatter/FormatterPage.cpp:50 DebugAdapterClient/DapSettingsPage.cpp:33 Docker/UI.cpp:434 ExternalTools/external_tools.cpp:144 LanguageServer/UI.cpp:187 LiteEditor/project_settings_base_dlg.cpp:1173 Plugin/FileSystemWorkspace/clFileSystemWorkspaceDlgBase.cpp:415
+msgid "Command"
+msgstr "Comando"
+
+#: CodeFormatter/GenericFormatter.cpp:252
+msgid " format error. Process exit code: "
+msgstr " errore di formato. Codice di uscita processo: "
+
+#: CodeFormatter/codeformatter.cpp:116
+msgid "Source Code Formatter (Supports C/C++/Obj-C/JavaScript/PHP files)"
+msgstr "Formattatore del codice sorgente (supporta file C/C++/Obj-C/JavaScript/PHP)"
+
+#: CodeFormatter/codeformatter.cpp:129 CodeFormatter/codeformatter.cpp:130 CodeFormatter/codeformatter.cpp:147 CodeFormatter/codeformatter.cpp:178 CodeFormatter/codeformatter.cpp:312 CodeFormatter/codeformatter.cpp:323 CodeFormatter/codeformatter.cpp:428
+msgid "Source Code Formatter"
+msgstr "Formattatore del codice sorgente"
+
+#: CodeFormatter/codeformatter.cpp:148 CodeFormatter/codeformatter.cpp:173
+msgid "Format Current Source"
+msgstr "Formatta la sorgente attuale"
+
+#: CodeFormatter/codeformatter.cpp:148 CodeFormatter/codeformatter.cpp:176 PHPLint/phplint.cpp:64 PHPRefactoring/phprefactoring.cpp:57 Subversion2/subversion2.cpp:207
+msgid "Options..."
+msgstr "Opzioni..."
+
+#: CodeFormatter/codeformatter.cpp:155
+msgid "Format Source"
+msgstr "Formato origine"
+
+#: CodeFormatter/codeformatter.cpp:155
+msgid "Format Source Code"
+msgstr "Formato codice sorgente"
+
+#: CodeFormatter/codeformatter.cpp:157
+msgid "Format Options"
+msgstr "Opzioni di formato"
+
+#: CodeFormatter/codeformatter.cpp:157
+msgid "Source Code Formatter Options..."
+msgstr "Opzioni formattatore codice sorgente..."
+
+#: CodeFormatter/codeformatter.cpp:371
+msgid "Code Formatter: scanning for files..."
+msgstr "Formattatore di codice: scansione dei file..."
+
+#: CodeFormatter/codeformatter.cpp:420
+msgid "Project contains no supported files"
+msgstr "Il progetto non contiene file supportati"
+
+#: CodeFormatter/codeformatter.cpp:427
+msgid " files\n"
+ "Continue?"
+msgstr " file\n"
+ "Vuoi continuare?"
+
+#: CodeFormatter/codeformatter.cpp:427
+msgid "You are about to beautify "
+msgstr "Stai per abbellire "
+
+#: CodeFormatter/codeformatter.cpp:444 Remoty/RemotyWorkspace.cpp:931
+msgid " files"
+msgstr " file"
+
+#: CodeFormatter/codeformatter.cpp:444
+msgid "Successfully formatted "
+msgstr "Formattato correttamente "
+
+#: CodeFormatter/codeformatter.cpp:549 PHPRefactoring/phprefactoring.cpp:274 cscope/cscopedbbuilderthread.cpp:58
+msgid "Done"
+msgstr "Fatto"
+
+#: CodeFormatter/codeformatterdlg.cpp:94
+msgid "Lose all your modifications and restore default settings?"
+msgstr "Perdere tutte le modifiche e ripristinare le impostazioni predefinite?"
+
+#: CodeFormatter/codeformatterdlg.cpp:109
+msgid "Enter the new formatter name:"
+msgstr "Inserisci il nuovo nome del formattatore:"
+
+#: CodeFormatter/codeformatterdlg.cpp:109
+msgid "New formatter"
+msgstr "Nuovo formattatore"
+
+#: CodeFormatter/codeformatterdlg.cpp:117
+msgid "Formatter with similar name already exists"
+msgstr "Esiste già un formattatore con nome simile"
+
+#: CodeFormatter/codeformatterdlg.cpp:131
+msgid "Delete formatter '"
+msgstr "Elimina formattatore '"
+
+#: CodeFormatter/codeformatterdlg.cpp:132
+msgid "Delete formatter"
+msgstr "Elimina formattatore"
+
+#: CodeFormatter/codeformatterdlgbase.cpp:61
+msgid "name"
+msgstr "nome"
+
+#: CodeFormatter/codeformatterdlgbase.cpp:75 LiteEditor/breakpointdlgbase.cpp:50 LiteEditor/debuggersettingsbasedlg.cpp:180 LiteEditor/debuggersettingsbasedlg.cpp:717 LiteEditor/edit_configuration.cpp:83 LiteEditor/edit_workspace_conf_dlg.cpp:68 LiteEditor/manageperspectivesbasedlg.cpp:53 LiteEditor/reconcileprojectbase.cpp:221 Plugin/sftp_ui.cpp:67
+msgid "&Delete"
+msgstr "&Eliminare"
+
+#: CodeFormatter/codeformatterdlgbase.cpp:85
+msgid "Defaults"
+msgstr "Predefiniti"
+
+#: CodeFormatter/codeformatterdlgbase.cpp:87
+msgid "Revert all changes and load factory defaults"
+msgstr "Annulla tutte le modifiche e carica le impostazioni di fabbrica"
+
+#: CodeFormatter/codeformatterdlgbase.cpp:96 DatabaseExplorer/GUI.cpp:393 Gizmos/newwxprojectbasedlg.cpp:197 LiteEditor/DbgCommandBaseDlg.cpp:80 LiteEditor/breakpointdlgbase.cpp:362 LiteEditor/compiler_pages.cpp:82 LiteEditor/debuggersettingsbasedlg.cpp:279 LiteEditor/free_text_dialog.cpp:62 LiteEditor/manageperspectivesbasedlg.cpp:121 LiteEditor/new_configuration_dlg.cpp:106
+#: LiteEditor/new_virtual_folder.cpp:72 LiteEditor/newquickwatch.cpp:53 LiteEditor/options_base_dlg2.cpp:52 LiteEditor/rename_symbool_dlg.cpp:217 LiteEditor/symbols_dialog_base.cpp:63 LiteEditor/wxcrafter.cpp:158 Plugin/EnvironmentVariablesDlgBase.cpp:129 Plugin/sftp_ui.cpp:81 Plugin/sftp_ui.cpp:291 Plugin/sftp_ui.cpp:429 Plugin/wxcrafter_plugin.cpp:86 QmakePlugin/NewQtProj.cpp:101
+#: QmakePlugin/qmakesettingsbasedlg.cpp:61 Subversion2/subversion2_ui.cpp:251 Subversion2/subversion2_ui.cpp:597 Subversion2/subversion2_ui.cpp:973 Subversion2/subversion2_ui.cpp:1060 Subversion2/wxcrafter.cpp:205 Subversion2/wxcrafter.cpp:315 UnitTestCPP/newunittestbasedlg.cpp:94 codelitephp/php-plugin/new_class.cpp:158 codelitephp/php-plugin/php_ui.cpp:223 codelitephp/php-plugin/php_ui.cpp:548
+#: codelitephp/php-plugin/php_ui.cpp:919 cppchecker/cppchecksettingsdlgbase.cpp:169 git/gitui.cpp:489 wxcrafter/src/gui.cpp:868 wxcrafter/src/gui.cpp:969 wxcrafter/src/wxcrafter.cpp:156 wxcrafter/src/wxcrafter.cpp:1293 wxcrafter/src/wxcrafter.cpp:1381 wxcrafter/src/wxcrafter.cpp:1542 wxcrafter/src/wxcrafter.cpp:1743 wxformbuilder/formbuildsettingsbasedlg.cpp:84
+msgid "&OK"
+msgstr "&OK"
+
+#: CodeFormatter/codeformatterdlgbase.cpp:101 DatabaseExplorer/GUI.cpp:625 ExternalTools/external_tools.cpp:166 LanguageServer/LanguageServerCluster.cpp:1307 LanguageServer/languageserver.cpp:109 LiteEditor/breakpointdlgbase.cpp:367 LiteEditor/compiler_pages.cpp:88 LiteEditor/debugcoredumpbase.cpp:112 LiteEditor/fileview.cpp:904 LiteEditor/frame.cpp:2861 LiteEditor/new_configuration_dlg.cpp:109
+#: LiteEditor/options_base_dlg2.cpp:58 LiteEditor/tags_options_base_dlg.cpp:135 MacBundler/macbundler.cpp:148 Plugin/EnvironmentVariablesDlgBase.cpp:125 Plugin/VirtualDirectorySelectorBase.cpp:61 Plugin/globals.h:273 Plugin/sftp_ui.cpp:636 Remoty/RemotyWorkspace.cpp:1064 SpellChecker/wxcrafter.cpp:235 Subversion2/subversion2_ui.cpp:256 Subversion2/subversion2_ui.cpp:338
+#: Subversion2/subversion2_ui.cpp:879 Subversion2/wxcrafter.cpp:210 codelitephp/php-plugin/php_ui.cpp:228 git/gitui.cpp:495 wxcrafter/src/wxcrafter.cpp:161 wxcrafter/src/wxcrafter.cpp:784 wxformbuilder/formbuildsettingsbasedlg.cpp:88 wxformbuilder/wxfbitembasedlg.cpp:95
+msgid "Cancel"
+msgstr "Cancellare"
+
+#: CodeFormatter/codeformatterdlgbase.h:72
+msgid "Source Code Formatter Options"
+msgstr "Opzioni di formattazione del codice sorgente"
+
+#: CodeFormatter/fmtBlack.cpp:9
+msgid "The uncompromising python code formatter"
+msgstr "Il formattatore di codice Python senza compromessi"
+
+#: CodeFormatter/fmtBlack.cpp:10
+msgid "black - a python formatter"
+msgstr "black: un formattatore Python"
+
+#: CodeFormatter/fmtCMakeFormat.cpp:9
+msgid "Parse cmake listfiles and format them nicely"
+msgstr "Analizza i file list di cmake e formattali bene"
+
+#: CodeFormatter/fmtCMakeFormat.cpp:10
+msgid "cmake-format - a CMake formatter"
+msgstr "cmake-format: un formattatore CMake"
+
+#: CodeFormatter/fmtClangFormat.cpp:10
+msgid "A tool to format C/C++/Java/JavaScript/JSON/Objective-C/Protobuf/C# code"
+msgstr "Uno strumento per formattare il codice C/C++/Java/JavaScript/JSON/Objective-C/Protobuf/C#"
+
+#: CodeFormatter/fmtClangFormat.cpp:11
+msgid "clang-format - a C/C++ formatter"
+msgstr "clang-format - un formattatore C/C++"
+
+#: CodeFormatter/fmtJQ.cpp:14
+msgid "commandline JSON processor"
+msgstr "processore JSON della riga di comando"
+
+#: CodeFormatter/fmtJQ.cpp:15
+msgid "jq - a json formatter"
+msgstr "jq: un formattatore json"
+
+#: CodeFormatter/fmtPHPCBF.cpp:9
+msgid "PHP Code Beautifier and Fixer"
+msgstr "Abbellitore e riparatore del codice PHP"
+
+#: CodeFormatter/fmtPHPCBF.cpp:10 CodeFormatter/fmtPHPCSFixer.cpp:10
+msgid "PHP formatter"
+msgstr "Formattatore PHP"
+
+#: CodeFormatter/fmtPHPCSFixer.cpp:9
+msgid "The PHP Coding Standards Fixer"
+msgstr "Il correttore di standard di codifica PHP"
+
+#: CodeFormatter/fmtRustfmt.cpp:9
+msgid "Format Rust code"
+msgstr "Formato codice Rust"
+
+#: CodeFormatter/fmtRustfmt.cpp:10
+msgid "Rust formatter"
+msgstr "Formattatore di ruggine"
+
+#: CodeFormatter/fmtShfmtFormat.cpp:9 CodeFormatter/fmtShfmtFormat.cpp:10
+msgid "shfmt formats shell programs"
+msgstr "shfmt formatta i programmi shell"
+
+#: CodeFormatter/fmtXmlLint.cpp:9
+msgid "xmllint - command line XML tool"
+msgstr "xmllint: strumento XML da riga di comando"
+
+#: CodeFormatter/fmtXmlLint.cpp:10
+msgid "Xml formatter"
+msgstr "Formattatore XML"
+
+#: CodeFormatter/fmtYQ.cpp:14
+msgid "commandline YAML processor"
+msgstr "processore YAML da riga di comando"
+
+#: CodeFormatter/fmtYQ.cpp:15
+msgid "Yaml formatter"
+msgstr "Formattatore Yaml"
+
+#: CodeLite/AsyncProcess/TerminalEmulatorUIBase.cpp:84
+msgid "Send command to the process"
+msgstr "Invia il comando al processo"
+
+#: CodeLite/AsyncProcess/TerminalEmulatorUIBase.h:62 LiteEditor/frame.cpp:4661 LiteEditor/frame.cpp:4669 LiteEditor/options_dlg2.cpp:93 Plugin/clStrings.h:12
+msgid "Terminal"
+msgstr "Terminale"
+
+#: CodeLite/AsyncProcess/UnixProcess.cpp:27
+msgid "Failed to start child process"
+msgstr "Impossibile avviare il processo figlio"
+
+#: CodeLite/AsyncProcess/clCommandProcessor.cpp:22 LiteEditor/manager.cpp:1620
+msgid "Executing: "
+msgstr "In esecuzione: "
+
+#: CodeLite/AsyncProcess/clCommandProcessor.cpp:32
+#, c-format
+msgid "Failed to execute command: %s"
+msgstr "Impossibile eseguire il comando: %s"
+
+#: CodeLite/LSP/RenameRequest.cpp:51
+#, c-format
+msgid "Rename symbol error:\n"
+ "%s"
+msgstr "Errore di rinomina del simbolo:\n"
+ "%s"
+
+#: CodeLite/PHP/PHPLookupTable.h:375
+msgid "PHP: parsed "
+msgstr "PHP: analizzato "
+
+#: CodeLite/clprogressdlgbase.cpp:44
+msgid "MyLabel"
+msgstr "La mia etichetta"
+
+#: CodeLite/macros.h:86
+msgid ""
+msgstr ""
+
+#: CodeLite/macros.h:87
+msgid ""
+msgstr ""
+
+#: CodeLite/macros.h:90
+msgid "==========Build Started==========\n"
+msgstr "==========Compilazione avviata==========\n"
+
+#: CodeLite/macros.h:91
+msgid "==========Build Ended==========\n"
+msgstr "==========Compilazione completata==========\n"
+
+#: CodeLite/macros.h:92
+msgid "==========Building project:[ "
+msgstr "==========Compilazione progetto:[ "
+
+#: CodeLite/macros.h:93
+msgid " ]=========="
+msgstr " ]=========="
+
+#: CodeLite/macros.h:94
+msgid "==========Cleaning project:[ "
+msgstr "==========Pulizia progetto:[ "
+
+#: CodeLite/macros.h:97
+msgid ""
+msgstr ""
+
+#: CodeLite/macros.h:98
+msgid ""
+msgstr ""
+
+#: CodeLite/macros.h:99
+msgid ""
+msgstr ""
+
+#: CodeLite/macros.h:100
+msgid ""
+msgstr ""
+
+#: CodeLite/macros.h:101
+msgid ""
+msgstr ""
+
+#: CodeLite/macros.h:102
+msgid ""
+msgstr ""
+
+#: CodeLite/macros.h:103 CodeLite/macros.h:104
+msgid "