Skip to content

Commit bfe09ec

Browse files
committed
rename: 'Extra Compiler Args’ ->'Extra Compiler Options'
1 parent 4f8a957 commit bfe09ec

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

package.nls.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"eide.project.upload": "Program Flash",
3030
"eide.project.flash.erase.all": "Erase Chip",
3131
"eide.project.gen.makefile": "Generate Makefile Template",
32-
"eide.project.modify.files.options": "Show Source Files Extra Compiler Args",
32+
"eide.project.modify.files.options": "Show Source Files Extra Compiler Options",
3333
"eide.project.import.ext.project.src.struct": "Import source tree from other projects",
3434
"eide.project.generate_builder_params": "Generate builder.params",
3535

@@ -67,8 +67,8 @@
6767
"eide.explorer.show.file.dir": "Show In File Explorer",
6868
"eide.explorer.modify.file.path": "Modify File Path",
6969
"eide.explorer.modify.exclude_list": "Modify Source File Exclude List",
70-
"eide.explorer.file.modify.extraArgs": "Modify Extra Compiler Args",
71-
"eide.explorer.folder.modify.extraArgs": "Modify Extra Compiler Args",
70+
"eide.explorer.file.modify.extraArgs": "Modify Extra Compiler Options",
71+
"eide.explorer.folder.modify.extraArgs": "Modify Extra Compiler Options",
7272

7373
"eide.source.show_cmsis_config_wizard": "CMSIS Configuration Wizard",
7474
"eide.source.show.disassembly": "Show Disassembly",

src/EIDEProjectExplorer.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4793,15 +4793,15 @@ export class ProjectExplorer implements CustomConfigurationProvider {
47934793
const isInherited = ccArgs && !absPattern;
47944794

47954795
const ui_cfg: SimpleUIConfig = {
4796-
title: 'Extra Compiler Args',
4796+
title: 'Extra Compiler Options',
47974797
items: {},
47984798
};
47994799

48004800
if (isInherited) { // 继承于其他匹配模式
48014801
ui_cfg.items['inherit'] = {
48024802
type: 'input',
48034803
attrs: { readonly: true },
4804-
name: `Inherited Args (from other args pattern, check your '*.files.options.yml' file for details !)`,
4804+
name: `Inherited Options (from other pattern, check your '*.files.options.yml' file for details !)`,
48054805
data: <SimpleUIConfigData_input>{
48064806
value: ccArgs,
48074807
default: ccArgs
@@ -4812,7 +4812,7 @@ export class ProjectExplorer implements CustomConfigurationProvider {
48124812
ui_cfg.items['args'] = {
48134813
type: 'input',
48144814
attrs: {},
4815-
name: 'Compiler Args',
4815+
name: 'Compiler Options',
48164816
data: <SimpleUIConfigData_input>{
48174817
placeHolder: `compiler options, like: '-O1', '-Os', '-flto' ...`,
48184818
value: isInherited ? '' : ccArgs,
@@ -4889,15 +4889,15 @@ export class ProjectExplorer implements CustomConfigurationProvider {
48894889
const isInherited = ccArgs && !absPattern;
48904890

48914891
const ui_cfg: SimpleUIConfig = {
4892-
title: 'Extra Compiler Args',
4892+
title: 'Extra Compiler Options',
48934893
items: {},
48944894
};
48954895

48964896
if (isInherited) { // 继承于其他匹配模式
48974897
ui_cfg.items['inherit'] = {
48984898
type: 'input',
48994899
attrs: { readonly: true },
4900-
name: `Inherited Args (from other args pattern, check your '*.files.options.yml' file for details !)`,
4900+
name: `Inherited Options (from other args pattern, check your '*.files.options.yml' file for details !)`,
49014901
data: <SimpleUIConfigData_input>{
49024902
value: ccArgs,
49034903
default: ccArgs
@@ -4908,7 +4908,7 @@ export class ProjectExplorer implements CustomConfigurationProvider {
49084908
ui_cfg.items['args'] = {
49094909
type: 'input',
49104910
attrs: {},
4911-
name: 'Compiler Args',
4911+
name: 'Compiler Options',
49124912
data: <SimpleUIConfigData_input>{
49134913
placeHolder: `compiler options, like: '-O1', '-Os', '-flto' ...`,
49144914
value: isInherited ? '' : ccArgs,

0 commit comments

Comments
 (0)