mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-31 18:46:29 +03:00
Added "volatile" keyword to Adept (SpartanJ/ecode#412).
Fixed incorrectly exported string.
This commit is contained in:
@@ -189,7 +189,7 @@ File path is: </string>
|
||||
<string name="custom_variables">Custom Variables</string>
|
||||
<string name="custom_variables_desc">Custom Variables allow to simplify the build commands steps adding custom variables that can be used over the build settings in commands, arguments, and working directories.</string>
|
||||
<string name="custom_variables_desc_2">Custom Variables can be invoked using ${variable_name} in any of the commands.</string>
|
||||
<string name="custom_variables_desc_3">There are predefined custom variables available to use:&#10;${project_root}: The folder / project root directory.&#10;${build_type}: The build type selected to build the project.&#10;${os}: The current operating system name.&#10;${arch}: The current operating architecture.&#10;${nproc}: The number of logical processing units.&#10;${current_doc}: The last or current focused document path.&#10;${current_doc_name}: The last or current focused document name (without extension</string>
|
||||
<string name="custom_variables_desc_3">There are predefined custom variables available to use: ${project_root}: The folder / project root directory. ${build_type}: The build type selected to build the project. ${os}: The current operating system name. ${arch}: The current operating architecture. ${nproc}: The number of logical processing units. ${current_doc}: The last or current focused document path. ${current_doc_name}: The last or current focused document name without extension. ${current_doc_dir}: The last or current focused document directory.</string>
|
||||
<string name="cut">Cut</string>
|
||||
<string name="dark">Dark</string>
|
||||
<string name="date">Date</string>
|
||||
|
||||
@@ -98,6 +98,7 @@ void addAdept() {
|
||||
{ "this", "keyword" },
|
||||
{ "it", "keyword" },
|
||||
{ "idx", "keyword" },
|
||||
{ "volatile", "keyword" },
|
||||
{ "bool", "keyword2" },
|
||||
{ "ptr", "keyword2" },
|
||||
{ "byte", "keyword2" },
|
||||
|
||||
@@ -409,7 +409,7 @@ static const auto SETTINGS_PANEL_XML = R"xml(
|
||||
<PushButton id="custom_var_del" icon="icon(delete-bin, 12dp)" min-width="20dp" tooltip="@string(del_custom_variable, Delete Selected Variable)" lg="center" />
|
||||
</vbox>
|
||||
</hbox>
|
||||
<TextView class="span" lw="mp" lh="wc" word-wrap="true" text='@string(custom_variables_desc_3, "There are predefined custom variables available to use: ${project_root}: The folder / project root directory. ${build_type}: The build type selected to build the project. ${os}: The current operating system name. ${arch}: The current operating architecture. ${nproc}: The number of logical processing units. ${current_doc}: The last or current focused document path. ${current_doc_name}: The last or current focused document name (without extension). ${current_doc_dir}: The last or current focused document directory.")' />
|
||||
<TextView class="span" lw="mp" lh="wc" word-wrap="true" text='@string(custom_variables_desc_3, "There are predefined custom variables available to use: ${project_root}: The folder / project root directory. ${build_type}: The build type selected to build the project. ${os}: The current operating system name. ${arch}: The current operating architecture. ${nproc}: The number of logical processing units. ${current_doc}: The last or current focused document path. ${current_doc_name}: The last or current focused document name without extension. ${current_doc_dir}: The last or current focused document directory.")' />
|
||||
</vbox>
|
||||
|
||||
<vbox lw="mp" lh="wc" class="build_environment">
|
||||
|
||||
Reference in New Issue
Block a user