Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit9f1b482

Browse files
Dotpyssean-mcmanus
authored andcommitted
Translation improvements (microsoft#2663)
Moved command english translation to package.nls.json, added command translation for italian and modified package.json to use localization files.
1 parent8f67142 commit9f1b482

File tree

3 files changed

+73
-35
lines changed

3 files changed

+73
-35
lines changed

‎Extension/package.json‎

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -472,88 +472,88 @@
472472
"commands": [
473473
{
474474
"command":"C_Cpp.ConfigurationSelect",
475-
"title":"Select a Configuration...",
476-
"category":"C/Cpp"
475+
"title":"%c_cpp.command.configurationSelect.title%",
476+
"category":"C/C++"
477477
},
478478
{
479479
"command":"C_Cpp.ConfigurationProviderSelect",
480-
"title":"Change Configuration Provider...",
481-
"category":"C/Cpp"
480+
"title":"%c_cpp.command.configurationProviderSelect.title%",
481+
"category":"C/C++"
482482
},
483483
{
484484
"command":"C_Cpp.ConfigurationEdit",
485-
"title":"Edit Configurations...",
486-
"category":"C/Cpp"
485+
"title":"%c_cpp.command.configurationEdit.title%",
486+
"category":"C/C++"
487487
},
488488
{
489489
"command":"C_Cpp.GoToDeclaration",
490-
"title":"Go to Declaration",
491-
"category":"C/Cpp"
490+
"title":"%c_cpp.command.goToDeclaration.title%",
491+
"category":"C/C++"
492492
},
493493
{
494494
"command":"C_Cpp.PeekDeclaration",
495-
"title":"Peek Declaration",
496-
"category":"C/Cpp"
495+
"title":"%c_cpp.command.peekDeclaration.title%",
496+
"category":"C/C++"
497497
},
498498
{
499499
"command":"C_Cpp.SwitchHeaderSource",
500-
"title":"Switch Header/Source",
501-
"category":"C/Cpp"
500+
"title":"%c_cpp.command.switchHeaderSource.title%",
501+
"category":"C/C++"
502502
},
503503
{
504504
"command":"C_Cpp.Navigate",
505-
"title":"Navigate...",
506-
"category":"C/Cpp"
505+
"title":"%c_cpp.command.navigate.title%",
506+
"category":"C/C++"
507507
},
508508
{
509509
"command":"C_Cpp.ToggleSnippets",
510-
"title":"Toggle Snippets",
511-
"category":"C/Cpp"
510+
"title":"%c_cpp.command.toggleSnippets.title%",
511+
"category":"C/C++"
512512
},
513513
{
514514
"command":"C_Cpp.ToggleErrorSquiggles",
515-
"title":"Toggle Error Squiggles",
516-
"category":"C/Cpp"
515+
"title":"%c_cpp.command.toggleErrorSquiggles.title%",
516+
"category":"C/C++"
517517
},
518518
{
519519
"command":"C_Cpp.ToggleIncludeFallback",
520-
"title":"Toggle IntelliSense Engine Fallback on Include Errors",
521-
"category":"C/Cpp"
520+
"title":"%c_cpp.command.toggleIncludeFallback.title%",
521+
"category":"C/C++"
522522
},
523523
{
524524
"command":"C_Cpp.ToggleDimInactiveRegions",
525-
"title":"Toggle Inactive Region Colorization",
526-
"category":"C/Cpp"
525+
"title":"%c_cpp.command.toggleDimInactiveRegions.title%",
526+
"category":"C/C++"
527527
},
528528
{
529529
"command":"C_Cpp.ShowReleaseNotes",
530-
"title":"Show Release Notes",
531-
"category":"C/Cpp"
530+
"title":"%c_cpp.command.showReleaseNotes.title%",
531+
"category":"C/C++"
532532
},
533533
{
534534
"command":"C_Cpp.ResetDatabase",
535-
"title":"Reset IntelliSense Database",
536-
"category":"C/Cpp"
535+
"title":"%c_cpp.command.resetDatabase.title%",
536+
"category":"C/C++"
537537
},
538538
{
539539
"command":"C_Cpp.PauseParsing",
540-
"title":"Pause Parsing",
541-
"category":"C/Cpp"
540+
"title":"%c_cpp.command.pauseParsing.title%",
541+
"category":"C/C++"
542542
},
543543
{
544544
"command":"C_Cpp.ResumeParsing",
545-
"title":"Resume Parsing",
546-
"category":"C/Cpp"
545+
"title":"%c_cpp.command.resumeParsing.title%",
546+
"category":"C/C++"
547547
},
548548
{
549549
"command":"C_Cpp.ShowParsingCommands",
550-
"title":"Show Parsing Commands",
551-
"category":"C/Cpp"
550+
"title":"%c_cpp.command.showParsingCommands.title%",
551+
"category":"C/C++"
552552
},
553553
{
554554
"command":"C_Cpp.TakeSurvey",
555-
"title":"Take Survey",
556-
"category":"C/Cpp"
555+
"title":"%c_cpp.command.takeSurvey.title%",
556+
"category":"C/C++"
557557
}
558558
],
559559
"keybindings": [
@@ -1585,4 +1585,4 @@
15851585
"binaries": []
15861586
}
15871587
]
1588-
}
1588+
}

‎Extension/package.nls.it.json‎

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"c_cpp.command.configurationSelect.title":"Scegli una configurazione...",
3+
"c_cpp.command.configurationProviderSelect.title":"Cambia provider configurazioni...",
4+
"c_cpp.command.configurationEdit.title":"Modifica configurazioni...",
5+
"c_cpp.command.goToDeclaration.title":"Vai a dichiarazione",
6+
"c_cpp.command.peekDeclaration.title":"Visualizza dichiarazione",
7+
"c_cpp.command.switchHeaderSource.title":"Visualizza Header/Sorgente",
8+
"c_cpp.command.navigate.title":"Naviga...",
9+
"c_cpp.command.toggleSnippets.title":"Attiva/Disattiva frammenti di codice",
10+
"c_cpp.command.toggleErrorSquiggles.title":"Attiva/Disattiva sottolineamento errori",
11+
"c_cpp.command.toggleIncludeFallback.title":"Attiva/Disattiva motore di fallback IntelliSense negli errori di inclusione",
12+
"c_cpp.command.toggleDimInactiveRegions.title":"Attiva/Disattiva colorazione regioni inattive",
13+
"c_cpp.command.showReleaseNotes.title":"Mostra note di rilascio",
14+
"c_cpp.command.resetDatabase.title":"Reimposta il database di IntelliSense",
15+
"c_cpp.command.pauseParsing.title":"Metti in pausa l'analisi del codice",
16+
"c_cpp.command.resumeParsing.title":"Riprendi l'analisi del codice",
17+
"c_cpp.command.showParsingCommands.title":"Mostra comandi per l'analisi del codice",
18+
"c_cpp.command.takeSurvey.title":"Partecipa al Sondaggio"
19+
}

‎Extension/package.nls.json‎

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"c_cpp.command.configurationSelect.title":"Select a configuration...",
3+
"c_cpp.command.configurationProviderSelect.title":"Change configuration provider...",
4+
"c_cpp.command.configurationEdit.title":"Edit configurations...",
5+
"c_cpp.command.goToDeclaration.title":"Go to declaration",
6+
"c_cpp.command.peekDeclaration.title":"Peek declaration",
7+
"c_cpp.command.switchHeaderSource.title":"Switch Header/Source",
8+
"c_cpp.command.navigate.title":"Navigate...",
9+
"c_cpp.command.toggleSnippets.title":"Toggle snippets",
10+
"c_cpp.command.toggleErrorSquiggles.title":"Toggle error squiggles",
11+
"c_cpp.command.toggleIncludeFallback.title":"Toggle IntelliSense engine fallback on include errors",
12+
"c_cpp.command.toggleDimInactiveRegions.title":"Toggle inactive region colorization",
13+
"c_cpp.command.showReleaseNotes.title":"Show release notes",
14+
"c_cpp.command.resetDatabase.title":"Reset IntelliSense database",
15+
"c_cpp.command.pauseParsing.title":"Pause parsing",
16+
"c_cpp.command.resumeParsing.title":"Resume parsing",
17+
"c_cpp.command.showParsingCommands.title":"Show parsing commands",
18+
"c_cpp.command.takeSurvey.title":"Take survey"
19+
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp