- fix: Installer should install the app in "program files", not "program files (x86)"

- fix: symbol completion for '/*' not work
 - fix: javadoc-style docstring indents calculation
This commit is contained in:
royqh1979@gmail.com 2021-11-07 10:48:09 +08:00
parent 4d48cca3de
commit c98e169fa3
12 changed files with 80 additions and 712 deletions

View File

@ -12,6 +12,9 @@ Version 0.8.1 For Dev-C++ 7 Beta
- fix: one line 'while' statement dosen't correctly indents
- fix: line start with '{' that follow an un-ended 'if'/'for' statement is not correctly un-indented
- fix: multi-line comments indents calculation
- fix: Installer should install the app in "program files", not "program files (x86)"
- fix: symbol completion for '/*' not work
- fix: javadoc-style docstring indents calculation
Version 0.8 For Dev-C++ 7 Beta
- fix: find in the current file is not correcly saved in the search history

View File

@ -583,7 +583,7 @@ void Editor::keyPressEvent(QKeyEvent *event)
insertString.append(" * ");
insertString.append(QString(" * @return ")+USER_CODE_IN_INSERT_POS);
}
insertString.append(" **/");
insertString.append(" */");
// } else if (caretY()==1) { /* file header */
// insertString.append(QString(" * @file %1<SOURCEPATH>%2")
// .arg(USER_CODE_IN_REPL_POS_BEGIN)
@ -597,7 +597,7 @@ void Editor::keyPressEvent(QKeyEvent *event)
// insertString.append(" **/");
} else {
insertString.append(QString(" * ")+USER_CODE_IN_INSERT_POS);
insertString.append(" **/");
insertString.append(" */");
}
insertCodeSnippet(LinesToText(insertString));
} else if (highlighter()
@ -1664,7 +1664,9 @@ bool Editor::handleSymbolCompletion(QChar key)
}
return false;
case '*':
qDebug()<<"???";
status = getQuoteStatus();
qDebug()<<(int)status;
if (pSettings->editor().completeComment() && (status == QuoteStatus::NotQuote)) {
return handleMultilineCommentCompletion();
}
@ -1769,7 +1771,8 @@ bool Editor::handleBracketSkip()
bool Editor::handleMultilineCommentCompletion()
{
if (((caretX() > 1) && (caretX()-1 < lineText().length())) && (lineText()[caretX() - 1] == '/')) {
qDebug()<<caretX()-1<<" "<<lineText().length();
if ((caretX()-2 < lineText().length()) && (lineText()[caretX() - 2] == '/')) {
beginUpdate();
commandProcessor(SynEditorCommand::ecChar,'*');
BufferCoord oldCaret = caretXY();

View File

@ -487,5 +487,7 @@
<file>images/classparser/var_protected.ico</file>
<file>images/classparser/var_public.ico</file>
<file>images/editor/bookmark.png</file>
<file>images/newlook24/091-openproblemanswer.png</file>
<file>images/newlook24/092-runallproblemcases.png</file>
</qresource>
</RCC>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 893 B

View File

@ -1233,7 +1233,7 @@
</property>
<property name="icon">
<iconset resource="icons.qrc">
<normaloff>:/icons/images/newlook24/047-makefl.png</normaloff>:/icons/images/newlook24/047-makefl.png</iconset>
<normaloff>:/icons/images/newlook24/091-openproblemanswer.png</normaloff>:/icons/images/newlook24/091-openproblemanswer.png</iconset>
</property>
</widget>
</item>
@ -1254,7 +1254,7 @@
</property>
<property name="icon">
<iconset resource="icons.qrc">
<normaloff>:/icons/images/newlook24/069-run.png</normaloff>:/icons/images/newlook24/069-run.png</iconset>
<normaloff>:/icons/images/newlook24/092-runallproblemcases.png</normaloff>:/icons/images/newlook24/092-runallproblemcases.png</iconset>
</property>
</widget>
</item>

View File

@ -1419,7 +1419,9 @@ int SynEdit::calcIndentSpaces(int line, const QString& lineText, bool addIndent)
SynRangeState rangePreceeding = mLines->ranges(startLine-1);
mHighlighter->setState(rangePreceeding);
if (addIndent) {
mHighlighter->setLine(lineText.trimmed(),line-1);
QString trimmedS = s.trimmed();
QString trimmedLineText = lineText.trimmed();
mHighlighter->setLine(trimmedLineText,line-1);
SynRangeState rangeAfterFirstToken = mHighlighter->getRangeState();
QString firstToken = mHighlighter->getToken();
PSynHighlighterAttribute attr = mHighlighter->getTokenAttribute();
@ -1436,7 +1438,7 @@ int SynEdit::calcIndentSpaces(int line, const QString& lineText, bool addIndent)
attr = mHighlighter->getTokenAttribute();
}
bool dontAddIndent = false;
bool addOwnIndent = false;
int additionIndent = 0;
QVector<int> matchingIndents;
int l;
if (attr == mHighlighter->symbolAttribute()
@ -1446,12 +1448,12 @@ int SynEdit::calcIndentSpaces(int line, const QString& lineText, bool addIndent)
dontAddIndent = true;
l = startLine;
} else if (mHighlighter->isLastLineCommentNotFinished(rangePreceeding.state)
&& (lineText.startsWith(' ')
|| lineText.startsWith('\t'))
&& (trimmedLineText.startsWith("*"))
) {
// last line is a not finished comment, and this line start with indents
// we should use indents of the line comment beginning, plus this line's indents
addOwnIndent=true;
// last line is a not finished comment, and this line start with "*"
// it means this line is a docstring, should indents according to
// the line the comment beginning , and add 1 additional space
additionIndent = 1;
int commentStartLine = startLine-1;
SynRangeState range;
while (commentStartLine>=1) {
@ -1472,33 +1474,9 @@ int SynEdit::calcIndentSpaces(int line, const QString& lineText, bool addIndent)
matchingIndents = range.matchingIndents;
dontAddIndent = true;
l = commentStartLine;
} else if (mHighlighter->isLastLineStringNotFinished(rangePreceeding.state)
&& (lineText.startsWith(' ')
|| lineText.startsWith('\t'))
) {
// last line is a not finished string, and this line start with indents
// we should use indents of the line string beginning, plus this line's indents
addOwnIndent=true;
int commentStartLine = startLine-1;
SynRangeState range;
while (commentStartLine>=1) {
range = mLines->ranges(commentStartLine-1);
if (!mHighlighter->isLastLineStringNotFinished(range.state)){
commentStartLine++;
break;
}
if (!range.matchingIndents.isEmpty()
|| range.firstIndentThisLine<range.indents.length())
break;
commentStartLine--;
}
if (commentStartLine<1)
commentStartLine = 1;
indentSpaces = leftSpaces(mLines->getString(commentStartLine-1));
range = mLines->ranges(commentStartLine-1);
matchingIndents = range.matchingIndents;
dontAddIndent = true;
l = commentStartLine;
} else if (trimmedS.startsWith("*")) {
// fix indents for line like " */"
indentSpaces--;
} else {
// we just use infos till preceeding line's end to calc indents
matchingIndents = rangePreceeding.matchingIndents;
@ -1564,9 +1542,7 @@ int SynEdit::calcIndentSpaces(int line, const QString& lineText, bool addIndent)
dontAddIndent = true;
}
}
if (addOwnIndent) {
indentSpaces += leftSpaces(lineText);
}
indentSpaces += additionIndent;
}
}
return std::max(0,indentSpaces);

View File

@ -213,7 +213,6 @@ bool SynRangeState::operator==(const SynRangeState &s2)
{
// indents contains the information of brace/parenthesis/brackets embedded levels
return (state == s2.state)
&& (spaceState == s2.spaceState)
&& (indents == s2.indents)
;
}

View File

@ -19,7 +19,6 @@ enum SynIndentType {
struct SynRangeState {
int state; // current syntax parsing state
int spaceState; // the last syntax parsing state before meeting space
int braceLevel; // current braces embedding level (needed by rainbow color)
int bracketLevel; // current brackets embedding level (needed by rainbow color)
int parenthesisLevel; // current parenthesis embedding level (needed by rainbow color)

View File

@ -282,11 +282,6 @@ void SynEditCppHighlighter::ansiCppProc()
}
}
while (mLine[mRun]!=0) {
if ( isSpaceChar(mLine[mRun]) ) {
mRange.spaceState = mRange.state;
mRange.state = RangeState::rsSpace;
return;
}
mRun+=1;
}
mRange.state = RangeState::rsCppCommentEnded;
@ -321,12 +316,6 @@ void SynEditCppHighlighter::ansiCProc()
} else
mRun+=1;
break;
case 9:
case 32:
mRange.spaceState = mRange.state;
mRange.state = RangeState::rsSpace;
finishProcess = true;
break;
default:
mRun+=1;
}
@ -339,11 +328,6 @@ void SynEditCppHighlighter::asciiCharProc()
{
mTokenId = TokenKind::Char;
do {
if (isSpaceChar(mLine[mRun])) {
mRange.spaceState = RangeState::rsChar;
mRange.state = RangeState::rsSpace;
return;
}
if (mLine[mRun] == '\\') {
if (mLine[mRun+1] == '\'' || mLine[mRun+1] == '\\') {
mRun+=1;
@ -436,11 +420,6 @@ void SynEditCppHighlighter::directiveProc()
}
mTokenId = TokenKind::Directive;
do {
if (isSpaceChar(mLine[mRun])) {
mRange.spaceState = RangeState::rsMultiLineDirective;
mRange.state = RangeState::rsSpace;
return;
}
switch(mLine[mRun].unicode()) {
case '/': //comment?
switch (mLine[mRun+1].unicode()) {
@ -473,11 +452,6 @@ void SynEditCppHighlighter::directiveEndProc()
}
mRange.state = RangeState::rsUnknown;
do {
if (isSpaceChar(mLine[mRun])) {
mRange.spaceState = RangeState::rsMultiLineDirective;
mRange.state = RangeState::rsSpace;
return;
}
switch(mLine[mRun].unicode()) {
case '/': //comment?
switch (mLine[mRun+1].unicode()) {
@ -887,16 +861,6 @@ void SynEditCppHighlighter::rawStringProc()
case ')':
noEscaping = false;
break;
case ' ':
case '\t':
mRange.state = rsSpace;
if (noEscaping) {
mRange.spaceState = RangeState::rsRawStringNotEscaping;
} else {
mRange.spaceState = RangeState::rsRawStringEscaping;
}
return;
break;
}
mRun+=1;
}
@ -974,8 +938,7 @@ void SynEditCppHighlighter::spaceProc()
mTokenId = TokenKind::Space;
while (mLine[mRun]>=1 && mLine[mRun]<=32)
mRun+=1;
mRange.state = mRange.spaceState;
mRange.spaceState = RangeState::rsUnknown;
mRange.state = RangeState::rsUnknown;
}
void SynEditCppHighlighter::squareCloseProc()
@ -1022,11 +985,6 @@ void SynEditCppHighlighter::stringEndProc()
mRun += 1;
break;
}
if (isSpaceChar(mLine[mRun])) {
mRange.spaceState = RangeState::rsMultiLineString;
mRange.state = RangeState::rsSpace;
return;
}
if (mLine[mRun].unicode()=='\\') {
switch(mLine[mRun+1].unicode()) {
case '\'':
@ -1160,11 +1118,6 @@ void SynEditCppHighlighter::stringProc()
mRun+=1;
break;
}
if (isSpaceChar(mLine[mRun])) {
mRange.spaceState = RangeState::rsString;
mRange.state = RangeState::rsSpace;
return;
}
if (mLine[mRun].unicode()=='\\') {
switch(mLine[mRun+1].unicode()) {
case '\'':
@ -1488,9 +1441,6 @@ void SynEditCppHighlighter::next()
case RangeState::rsMultiLineString:
stringEndProc();
break;
case RangeState::rsSpace:
spaceProc();
break;
case RangeState::rsRawStringEscaping:
case RangeState::rsRawStringNotEscaping:
rawStringProc();
@ -1608,7 +1558,6 @@ void SynEditCppHighlighter::setState(const SynRangeState& rangeState)
void SynEditCppHighlighter::resetState()
{
mRange.state = RangeState::rsUnknown;
mRange.spaceState = RangeState::rsUnknown;
mRange.braceLevel = 0;
mRange.bracketLevel = 0;
mRange.parenthesisLevel = 0;

View File

@ -3,7 +3,7 @@
!define COMPILERNAME "MinGW-w64 X86_64 GCC 11.2"
!define COMPILERFOLDER "MinGW64"
!define DEVCPP_VERSION "0.8.0.beta"
!define DEVCPP_VERSION "beta.0.8.0"
!define FINALNAME "RedPanda-Cpp.7.${DEVCPP_VERSION}.${COMPILERNAME}.Setup.exe"
!define DISPLAY_NAME "Red Panda Dev-C++ 7 ${DEVCPP_VERSION}"
@ -20,10 +20,12 @@ OutFile "${FINALNAME}"
Caption "${DISPLAY_NAME}"
LicenseData "LICENSE"
InstallDir $PROGRAMFILES\RedPanda-Cpp
InstallDir $PROGRAMFILES64\RedPanda-Cpp
####################################################################
# Interface Settings
SetRegView 64
ShowInstDetails show
AutoCloseWindow false
SilentInstall normal
@ -39,7 +41,7 @@ InstType "Minimal";2
InstType "Safe";3
## Remember the installer language
!define MUI_LANGDLL_REGISTRY_ROOT "HKCU"
!define MUI_LANGDLL_REGISTRY_ROOT "HKLM"
!define MUI_LANGDLL_REGISTRY_KEY "Software\RedPanda-C++"
!define MUI_LANGDLL_REGISTRY_VALUENAME "Installer Language"
@ -67,31 +69,6 @@ InstType "Safe";3
!insertmacro MUI_LANGUAGE "English"
!insertmacro MUI_LANGUAGE "SimpChinese"
!insertmacro MUI_LANGUAGE "TradChinese"
!insertmacro MUI_LANGUAGE "Bulgarian"
!insertmacro MUI_LANGUAGE "Catalan"
!insertmacro MUI_LANGUAGE "Croatian"
!insertmacro MUI_LANGUAGE "Czech"
!insertmacro MUI_LANGUAGE "Danish"
!insertmacro MUI_LANGUAGE "Dutch"
!insertmacro MUI_LANGUAGE "Estonian"
!insertmacro MUI_LANGUAGE "French"
!insertmacro MUI_LANGUAGE "German"
!insertmacro MUI_LANGUAGE "Greek"
!insertmacro MUI_LANGUAGE "Hungarian"
!insertmacro MUI_LANGUAGE "Italian"
!insertmacro MUI_LANGUAGE "Korean"
!insertmacro MUI_LANGUAGE "Latvian"
!insertmacro MUI_LANGUAGE "Polish"
!insertmacro MUI_LANGUAGE "Portuguese"
!insertmacro MUI_LANGUAGE "Romanian"
!insertmacro MUI_LANGUAGE "Russian"
!insertmacro MUI_LANGUAGE "Slovak"
!insertmacro MUI_LANGUAGE "Slovenian"
!insertmacro MUI_LANGUAGE "Spanish"
!insertmacro MUI_LANGUAGE "Swedish"
!insertmacro MUI_LANGUAGE "Turkish"
!insertmacro MUI_LANGUAGE "Ukrainian"
####################################################################
# Files, by option section
@ -267,10 +244,10 @@ Section "$(SectionMenuLaunchName)" SectionMenuLaunch
; always use all user start menu, normal users can delete these
SetShellVarContext all
StrCpy $0 $SMPROGRAMS ; start menu Programs folder
CreateDirectory "$0\Dev-C++"
CreateShortCut "$0\Dev-C++\Red Panda Dev-C++.lnk" "$INSTDIR\RedPandaIDE.exe"
CreateShortCut "$0\Dev-C++\License.lnk" "$INSTDIR\LICENSE"
CreateShortCut "$0\Dev-C++\Uninstall Red Panda Dev-C++.lnk" "$INSTDIR\uninstall.exe"
CreateDirectory "$0\$(MessageAppName)"
CreateShortCut "$0\$(MessageAppName)\$(MessageAppName).lnk" "$INSTDIR\RedPandaIDE.exe"
CreateShortCut "$0\$(MessageAppName)\License.lnk" "$INSTDIR\LICENSE"
CreateShortCut "$0\$(MessageAppName)\Uninstall $(MessageAppName).lnk" "$INSTDIR\uninstall.exe"
SectionEnd
Section "$(SectionDesktopLaunchName)" SectionDesktopLaunch
@ -286,7 +263,7 @@ SubSectionEnd
Section "$(SectionConfigName)" SectionConfig
SectionIn 3
RMDir /r "$APPDATA\RedPanda-C++"
RMDir /r "$APPDATA\RedPandaIDE"
SectionEnd
@ -318,6 +295,9 @@ FunctionEnd
Function myGuiInit
; uninstall existing
SetRegView 32
Call UninstallExisting
SetRegView 64
Call UninstallExisting
FunctionEnd
@ -418,6 +398,31 @@ Function GetParent
FunctionEnd
Function UninstallExisting
ReadRegStr $R0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\RedPanda-C++" "UninstallString"
StrCmp $R0 "" done
Push $R0
Call GetParent
Pop $R1
MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION \
"$(MessageUninstallExisting)" \
IDOK uninst
Abort
;Run the uninstaller
uninst:
ClearErrors
HideWindow
ClearErrors
ExecWait '"$R0" _?=$R1'
BringToFront
done:
FunctionEnd
Function UninstallExisting
ReadRegStr $R0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\RedPanda-C++" "UninstallString"
@ -460,6 +465,11 @@ Section "Uninstall"
Delete "$SMPROGRAMS\Dev-C++\Uninstall Red Panda Dev-C++.lnk"
RMDir "$SMPROGRAMS\Dev-C++"
Delete "$SMPROGRAMS\$(MessageAppName)\$(MessageAppName).lnk"
Delete "$SMPROGRAMS\$(MessageAppName)\License.lnk"
Delete "$SMPROGRAMS\$(MessageAppName)\Uninstall $(MessageAppName).lnk"
RMDir "$SMPROGRAMS\$(MessageAppName)"
; Remove desktop stuff, located in current user folder
SetShellVarContext current
Delete "$QUICKLAUNCH\Red Panda Dev-C++.lnk"
@ -510,7 +520,7 @@ Section "Uninstall"
IfSilent +2 ; Don't ask when running in silent mode
MessageBox MB_YESNO "$(MessageRemoveConfig)" IDNO Done
RMDir /r "$APPDATA\RedPanda-C++"
RMDir /r "$APPDATA\RedPandaIDE"
Done:
SectionEnd

View File

@ -1,5 +1,6 @@
/* English 1033 */
LangString MessageSectionMain 1033 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageAppName 2052 "Red Panda Dev-C++"
LangString MessageSectionMain 1033 "The Red Panda Dev-C++ IDE (Integrated Development Environment)"
LangString MessageSectionIcons 1033 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1033 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1033 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
@ -13,16 +14,17 @@ LangString SectionMainName 1033 "Program files (required)"
LangString SectionIconsName 1033 "Icon files"
LangString SectionLangsName 1033 "Language files"
LangString SectionMinGWName 1033 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1033 "Associate files to Dev-C++"
LangString SectionAssocsName 1033 "Associate files to Red Panda Dev-C++"
LangString SectionAssocExtNameBegin 1033 "Associate"
LangString SectionAssocExtNameEnd 1033 "files to Dev-C++"
LangString SectionAssocExtNameEnd 1033 "files to Red Panda Dev-C++"
LangString SectionShortcutsName 1033 "Shortcuts"
LangString SectionMenuLaunchName 1033 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1033 "Create Desktop shortcut"
LangString SectionConfigName 1033 "Remove old configuration files"
/* Simplified Chinese 2052 */
LangString MessageSectionMain 2052 "小熊猫Dev-C++ IDE (集成开发环境), 包管理器和项目模板"
LangString MessageAppName 2052 "小熊猫Dev-C++"
LangString MessageSectionMain 2052 "小熊猫Dev-C++ IDE (集成开发环境)"
LangString MessageSectionIcons 2052 "项目模板使用的图标文件"
LangString MessageSectionMinGW 2052 "${COMPILERNAME} 编译器和相关的工具、头文件和库"
LangString MessageSectionLangs 2052 "Dev-C++翻译文件"
@ -30,591 +32,16 @@ LangString MessageSectionAssocs 2052 "使用Dev-C++打开这些文件"
LangString MessageSectionShortcuts 2052 "开始菜单和快捷方式"
LangString MessageSectionConfig 2052 "删除之前安装遗留的所有配置文件"
LangString MessageUninstallText 2052 "将要删除小熊猫Dev-C++, 是否继续?"
LangString MessageUninstallExisting 2052 "本机上已经安装了旧版本Dev-C++. $\n$\n点击'确定'以将其删除并继续,或者'取消'中止安装。"
LangString MessageUninstallExisting 2052 "本机上已经安装了旧版本小熊猫Dev-C++. $\n$\n点击'确定'以将其删除并继续,或者'取消'中止安装。"
LangString MessageRemoveConfig 2052 "你想要删除所有的配置文件吗?"
LangString SectionMainName 2052 "程序文件 (必须)"
LangString SectionIconsName 2052 "图标文件"
LangString SectionLangsName 2052 "语言文件"
LangString SectionMinGWName 2052 "${COMPILERNAME}编译器"
LangString SectionAssocsName 2052 "关联文件到Dev-C++"
LangString SectionAssocsName 2052 "关联文件到小熊猫Dev-C++"
LangString SectionAssocExtNameBegin 2052 "将"
LangString SectionAssocExtNameEnd 2052 "文件关联到Dev-C++"
LangString SectionAssocExtNameEnd 2052 "文件关联到小熊猫Dev-C++"
LangString SectionShortcutsName 2052 "快捷方式"
LangString SectionMenuLaunchName 2052 "创建开始菜单程序项"
LangString SectionDesktopLaunchName 2052 "创建桌面快捷方式"
LangString SectionConfigName 2052 "删除原有配置文件"
/* Traditional Chinese 1028 */
LangString MessageSectionMain 1028 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1028 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1028 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1028 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1028 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1028 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1028 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1028 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1028 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1028 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1028 "Dev-C++ program files (required)"
LangString SectionIconsName 1028 "Icon files"
LangString SectionLangsName 1028 "Language files"
LangString SectionMinGWName 1028 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1028 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1028 "Associate"
LangString SectionAssocExtNameEnd 1028 "files to Dev-C++"
LangString SectionShortcutsName 1028 "Shortcuts"
LangString SectionMenuLaunchName 1028 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1028 "Create Desktop shortcut"
LangString SectionConfigName 1028 "Remove old configuration files"
/* Bulgarian 1026 */
LangString MessageSectionMain 1026 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1026 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1026 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1026 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1026 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1026 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1026 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1026 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1026 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1026 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1026 "Dev-C++ program files (required)"
LangString SectionIconsName 1026 "Icon files"
LangString SectionLangsName 1026 "Language files"
LangString SectionMinGWName 1026 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1026 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1026 "Associate"
LangString SectionAssocExtNameEnd 1026 "files to Dev-C++"
LangString SectionShortcutsName 1026 "Shortcuts"
LangString SectionMenuLaunchName 1026 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1026 "Create Desktop shortcut"
LangString SectionConfigName 1026 "Remove old configuration files"
/* Catalan 1027 */
LangString MessageSectionMain 1027 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1027 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1027 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1027 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1027 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1027 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1027 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1027 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1027 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1027 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1027 "Dev-C++ program files (required)"
LangString SectionIconsName 1027 "Icon files"
LangString SectionLangsName 1027 "Language files"
LangString SectionMinGWName 1027 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1027 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1027 "Associate"
LangString SectionAssocExtNameEnd 1027 "files to Dev-C++"
LangString SectionShortcutsName 1027 "Shortcuts"
LangString SectionMenuLaunchName 1027 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1027 "Create Desktop shortcut"
LangString SectionConfigName 1027 "Remove old configuration files"
/* Croatian 1050 */
LangString MessageSectionMain 1050 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1050 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1050 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1050 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1050 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1050 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1050 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1050 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1050 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1050 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1050 "Dev-C++ program files (required)"
LangString SectionIconsName 1050 "Icon files"
LangString SectionLangsName 1050 "Language files"
LangString SectionMinGWName 1050 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1050 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1050 "Associate"
LangString SectionAssocExtNameEnd 1050 "files to Dev-C++"
LangString SectionShortcutsName 1050 "Shortcuts"
LangString SectionMenuLaunchName 1050 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1050 "Create Desktop shortcut"
LangString SectionConfigName 1050 "Remove old configuration files"
/* Czech 1029 */
LangString MessageSectionMain 1029 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1029 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1029 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1029 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1029 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1029 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1029 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1029 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1029 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1029 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1029 "Dev-C++ program files (required)"
LangString SectionIconsName 1029 "Icon files"
LangString SectionLangsName 1029 "Language files"
LangString SectionMinGWName 1029 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1029 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1029 "Associate"
LangString SectionAssocExtNameEnd 1029 "files to Dev-C++"
LangString SectionShortcutsName 1029 "Shortcuts"
LangString SectionMenuLaunchName 1029 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1029 "Create Desktop shortcut"
LangString SectionConfigName 1029 "Remove old configuration files"
/* Danish 1030 */
LangString MessageSectionMain 1030 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1030 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1030 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1030 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1030 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1030 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1030 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1030 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1030 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1030 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1030 "Dev-C++ program files (required)"
LangString SectionIconsName 1030 "Icon files"
LangString SectionLangsName 1030 "Language files"
LangString SectionMinGWName 1030 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1030 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1030 "Associate"
LangString SectionAssocExtNameEnd 1030 "files to Dev-C++"
LangString SectionShortcutsName 1030 "Shortcuts"
LangString SectionMenuLaunchName 1030 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1030 "Create Desktop shortcut"
LangString SectionConfigName 1030 "Remove old configuration files"
/* Dutch 1043 */
LangString MessageSectionMain 1043 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1043 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1043 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1043 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1043 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1043 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1043 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1043 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1043 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1043 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1043 "Dev-C++ program files (required)"
LangString SectionIconsName 1043 "Icon files"
LangString SectionLangsName 1043 "Language files"
LangString SectionMinGWName 1043 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1043 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1043 "Associate"
LangString SectionAssocExtNameEnd 1043 "files to Dev-C++"
LangString SectionShortcutsName 1043 "Shortcuts"
LangString SectionMenuLaunchName 1043 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1043 "Create Desktop shortcut"
LangString SectionConfigName 1043 "Remove old configuration files"
/* Estonian 1061 */
LangString MessageSectionMain 1061 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1061 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1061 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1061 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1061 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1061 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1061 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1061 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1061 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1061 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1061 "Dev-C++ program files (required)"
LangString SectionIconsName 1061 "Icon files"
LangString SectionLangsName 1061 "Language files"
LangString SectionMinGWName 1061 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1061 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1061 "Associate"
LangString SectionAssocExtNameEnd 1061 "files to Dev-C++"
LangString SectionShortcutsName 1061 "Shortcuts"
LangString SectionMenuLaunchName 1061 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1061 "Create Desktop shortcut"
LangString SectionConfigName 1061 "Remove old configuration files"
/* French 1036 */
LangString MessageSectionMain 1036 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1036 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1036 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1036 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1036 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1036 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1036 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1036 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1036 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1036 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1036 "Dev-C++ program files (required)"
LangString SectionIconsName 1036 "Icon files"
LangString SectionLangsName 1036 "Language files"
LangString SectionMinGWName 1036 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1036 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1036 "Associate"
LangString SectionAssocExtNameEnd 1036 "files to Dev-C++"
LangString SectionShortcutsName 1036 "Shortcuts"
LangString SectionMenuLaunchName 1036 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1036 "Create Desktop shortcut"
LangString SectionConfigName 1036 "Remove old configuration files"
/* German 1031 */
LangString MessageSectionMain 1031 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1031 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1031 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1031 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1031 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1031 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1031 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1031 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1031 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1031 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1031 "Dev-C++ program files (required)"
LangString SectionIconsName 1031 "Icon files"
LangString SectionLangsName 1031 "Language files"
LangString SectionMinGWName 1031 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1031 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1031 "Associate"
LangString SectionAssocExtNameEnd 1031 "files to Dev-C++"
LangString SectionShortcutsName 1031 "Shortcuts"
LangString SectionMenuLaunchName 1031 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1031 "Create Desktop shortcut"
LangString SectionConfigName 1031 "Remove old configuration files"
/* Greek 1032 */
LangString MessageSectionMain 1032 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1032 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1032 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1032 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1032 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1032 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1032 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1032 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1032 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1032 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1032 "Dev-C++ program files (required)"
LangString SectionIconsName 1032 "Icon files"
LangString SectionLangsName 1032 "Language files"
LangString SectionMinGWName 1032 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1032 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1032 "Associate"
LangString SectionAssocExtNameEnd 1032 "files to Dev-C++"
LangString SectionShortcutsName 1032 "Shortcuts"
LangString SectionMenuLaunchName 1032 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1032 "Create Desktop shortcut"
LangString SectionConfigName 1032 "Remove old configuration files"
/* Hungarian 1038 */
LangString MessageSectionMain 1038 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1038 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1038 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1038 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1038 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1038 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1038 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1038 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1038 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1038 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1038 "Dev-C++ program files (required)"
LangString SectionIconsName 1038 "Icon files"
LangString SectionLangsName 1038 "Language files"
LangString SectionMinGWName 1038 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1038 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1038 "Associate"
LangString SectionAssocExtNameEnd 1038 "files to Dev-C++"
LangString SectionShortcutsName 1038 "Shortcuts"
LangString SectionMenuLaunchName 1038 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1038 "Create Desktop shortcut"
LangString SectionConfigName 1038 "Remove old configuration files"
/* Italian 1040 */
LangString MessageSectionMain 1040 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1040 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1040 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1040 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1040 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1040 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1040 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1040 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1040 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1040 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1040 "Dev-C++ program files (required)"
LangString SectionIconsName 1040 "Icon files"
LangString SectionLangsName 1040 "Language files"
LangString SectionMinGWName 1040 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1040 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1040 "Associate"
LangString SectionAssocExtNameEnd 1040 "files to Dev-C++"
LangString SectionShortcutsName 1040 "Shortcuts"
LangString SectionMenuLaunchName 1040 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1040 "Create Desktop shortcut"
LangString SectionConfigName 1040 "Remove old configuration files"
/* Korean 1042 */
LangString MessageSectionMain 1042 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1042 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1042 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1042 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1042 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1042 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1042 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1042 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1042 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1042 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1042 "Dev-C++ program files (required)"
LangString SectionIconsName 1042 "Icon files"
LangString SectionLangsName 1042 "Language files"
LangString SectionMinGWName 1042 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1042 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1042 "Associate"
LangString SectionAssocExtNameEnd 1042 "files to Dev-C++"
LangString SectionShortcutsName 1042 "Shortcuts"
LangString SectionMenuLaunchName 1042 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1042 "Create Desktop shortcut"
LangString SectionConfigName 1042 "Remove old configuration files"
/* Latvian (1062) */
LangString MessageSectionMain 1062 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1062 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1062 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1062 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1062 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1062 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1062 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1062 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1062 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1062 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1062 "Dev-C++ program files (required)"
LangString SectionIconsName 1062 "Icon files"
LangString SectionLangsName 1062 "Language files"
LangString SectionMinGWName 1062 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1062 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1062 "Associate"
LangString SectionAssocExtNameEnd 1062 "files to Dev-C++"
LangString SectionShortcutsName 1062 "Shortcuts"
LangString SectionMenuLaunchName 1062 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1062 "Create Desktop shortcut"
LangString SectionConfigName 1062 "Remove old configuration files"
/* Polish (1045) */
LangString MessageSectionMain 1045 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1045 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1045 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1045 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1045 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1045 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1045 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1045 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1045 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1045 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1045 "Dev-C++ program files (required)"
LangString SectionIconsName 1045 "Icon files"
LangString SectionLangsName 1045 "Language files"
LangString SectionMinGWName 1045 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1045 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1045 "Associate"
LangString SectionAssocExtNameEnd 1045 "files to Dev-C++"
LangString SectionShortcutsName 1045 "Shortcuts"
LangString SectionMenuLaunchName 1045 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1045 "Create Desktop shortcut"
LangString SectionConfigName 1045 "Remove old configuration files"
/* Portuguese (2070) */
LangString MessageSectionMain 2070 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 2070 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 2070 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 2070 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 2070 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 2070 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 2070 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 2070 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 2070 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 2070 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 2070 "Dev-C++ program files (required)"
LangString SectionIconsName 2070 "Icon files"
LangString SectionLangsName 2070 "Language files"
LangString SectionMinGWName 2070 "${COMPILERNAME} compiler"
LangString SectionAssocsName 2070 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 2070 "Associate"
LangString SectionAssocExtNameEnd 2070 "files to Dev-C++"
LangString SectionShortcutsName 2070 "Shortcuts"
LangString SectionMenuLaunchName 2070 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 2070 "Create Desktop shortcut"
LangString SectionConfigName 2070 "Remove old configuration files"
/* Romanian (1048) */
LangString MessageSectionMain 1048 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1048 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1048 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1048 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1048 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1048 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1048 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1048 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1048 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1048 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1048 "Dev-C++ program files (required)"
LangString SectionIconsName 1048 "Icon files"
LangString SectionLangsName 1048 "Language files"
LangString SectionMinGWName 1048 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1048 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1048 "Associate"
LangString SectionAssocExtNameEnd 1048 "files to Dev-C++"
LangString SectionShortcutsName 1048 "Shortcuts"
LangString SectionMenuLaunchName 1048 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1048 "Create Desktop shortcut"
LangString SectionConfigName 1048 "Remove old configuration files"
/* Russian (1049) */
LangString MessageSectionMain 1049 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1049 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1049 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1049 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1049 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1049 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1049 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1049 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1049 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1049 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1049 "Dev-C++ program files (required)"
LangString SectionIconsName 1049 "Icon files"
LangString SectionLangsName 1049 "Language files"
LangString SectionMinGWName 1049 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1049 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1049 "Associate"
LangString SectionAssocExtNameEnd 1049 "files to Dev-C++"
LangString SectionShortcutsName 1049 "Shortcuts"
LangString SectionMenuLaunchName 1049 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1049 "Create Desktop shortcut"
LangString SectionConfigName 1049 "Remove old configuration files"
/* Slovak (1051) */
LangString MessageSectionMain 1051 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1051 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1051 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1051 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1051 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1051 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1051 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1051 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1051 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1051 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1051 "Dev-C++ program files (required)"
LangString SectionIconsName 1051 "Icon files"
LangString SectionLangsName 1051 "Language files"
LangString SectionMinGWName 1051 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1051 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1051 "Associate"
LangString SectionAssocExtNameEnd 1051 "files to Dev-C++"
LangString SectionShortcutsName 1051 "Shortcuts"
LangString SectionMenuLaunchName 1051 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1051 "Create Desktop shortcut"
LangString SectionConfigName 1051 "Remove old configuration files"
/* Slovenian (1060) */
LangString MessageSectionMain 1060 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1060 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1060 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1060 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1060 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1060 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1060 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1060 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1060 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1060 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1060 "Dev-C++ program files (required)"
LangString SectionIconsName 1060 "Icon files"
LangString SectionLangsName 1060 "Language files"
LangString SectionMinGWName 1060 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1060 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1060 "Associate"
LangString SectionAssocExtNameEnd 1060 "files to Dev-C++"
LangString SectionShortcutsName 1060 "Shortcuts"
LangString SectionMenuLaunchName 1060 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1060 "Create Desktop shortcut"
LangString SectionConfigName 1060 "Remove old configuration files"
/* Spanish (1034) */
LangString MessageSectionMain 1034 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1034 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1034 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1034 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1034 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1034 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1034 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1034 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1034 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1034 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1034 "Dev-C++ program files (required)"
LangString SectionIconsName 1034 "Icon files"
LangString SectionLangsName 1034 "Language files"
LangString SectionMinGWName 1034 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1034 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1034 "Associate"
LangString SectionAssocExtNameEnd 1034 "files to Dev-C++"
LangString SectionShortcutsName 1034 "Shortcuts"
LangString SectionMenuLaunchName 1034 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1034 "Create Desktop shortcut"
LangString SectionConfigName 1034 "Remove old configuration files"
/* Swedish (1053) */
LangString MessageSectionMain 1053 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1053 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1053 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1053 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1053 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1053 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1053 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1053 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1053 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1053 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1053 "Dev-C++ program files (required)"
LangString SectionIconsName 1053 "Icon files"
LangString SectionLangsName 1053 "Language files"
LangString SectionMinGWName 1053 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1053 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1053 "Associate"
LangString SectionAssocExtNameEnd 1053 "files to Dev-C++"
LangString SectionShortcutsName 1053 "Shortcuts"
LangString SectionMenuLaunchName 1053 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1053 "Create Desktop shortcut"
LangString SectionConfigName 1053 "Remove old configuration files"
/* Turkish (1055) */
LangString MessageSectionMain 1055 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1055 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1055 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1055 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1055 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1055 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1055 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1055 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1055 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1055 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1055 "Dev-C++ program files (required)"
LangString SectionIconsName 1055 "Icon files"
LangString SectionLangsName 1055 "Language files"
LangString SectionMinGWName 1055 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1055 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1055 "Associate"
LangString SectionAssocExtNameEnd 1055 "files to Dev-C++"
LangString SectionShortcutsName 1055 "Shortcuts"
LangString SectionMenuLaunchName 1055 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1055 "Create Desktop shortcut"
LangString SectionConfigName 1055 "Remove old configuration files"
/* Ukrainian (1058) */
LangString MessageSectionMain 1058 "The Dev-C++ IDE (Integrated Development Environment), package manager and templates"
LangString MessageSectionIcons 1058 "Various icons that you can use in your programs"
LangString MessageSectionMinGW 1058 "The ${COMPILERNAME} compiler and associated tools, headers and libraries"
LangString MessageSectionLangs 1058 "The Dev-C++ interface translated to different languages (other than English which is built-in)"
LangString MessageSectionAssocs 1058 "Use Dev-C++ as the default application for opening these types of files"
LangString MessageSectionShortcuts 1058 "Create shortcuts to Dev-C++ in various folders"
LangString MessageSectionConfig 1058 "Remove all leftover configuration files from previous installs"
LangString MessageUninstallText 1058 "This program will uninstall Red Panda Dev-C++, continue?"
LangString MessageUninstallExisting 1058 "Red Panda Dev-C++ is already installed. $\n$\nClick OK to remove the previous version or Cancel to cancel the installation."
LangString MessageRemoveConfig 1058 "Do you want to remove all the remaining configuration files?"
LangString SectionMainName 1058 "Dev-C++ program files (required)"
LangString SectionIconsName 1058 "Icon files"
LangString SectionLangsName 1058 "Language files"
LangString SectionMinGWName 1058 "${COMPILERNAME} compiler"
LangString SectionAssocsName 1058 "Associate files to Dev-C++"
LangString SectionAssocExtNameBegin 1058 "Associate"
LangString SectionAssocExtNameEnd 1058 "files to Dev-C++"
LangString SectionShortcutsName 1058 "Shortcuts"
LangString SectionMenuLaunchName 1058 "Create Start Menu shortcuts"
LangString SectionDesktopLaunchName 1058 "Create Desktop shortcut"
LangString SectionConfigName 1058 "Remove old configuration files"