Skip to content

Commit ece4c2a

Browse files
committed
fix: localise theme info message
1 parent 00a2f2c commit ece4c2a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/extensibility/ExtensionManagerViewModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ define(function (require, exports, module) {
585585
*/
586586
function ThemesViewModel() {
587587
ExtensionManagerViewModel.call(this);
588-
this.infoMessage = `To <a class="theme_settings">select default themes</a> or modify other theme settings, <a class="theme_settings">click here</a>.`;
588+
this.infoMessage = Strings.EXTENSION_MANAGER_THEMES_INFO;
589589
}
590590

591591
// Inheritance setup

src/htmlContent/extension-manager-view-item.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
</button>
6969
{{/showUpdateButton}}
7070
{{#showApplyButton}}
71-
<button class="btn btn-mini apply primary" data-extension-id="{{metadata.name}}" title="{{updateNotAllowedReason}}">
71+
<button class="btn btn-mini apply primary" data-extension-id="{{metadata.name}}">
7272
{{Strings.APPLY}}
7373
</button>
7474
{{/showApplyButton}}

src/nls/root/strings.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -621,6 +621,7 @@ define({
621621
"EXTENSION_MANAGER_UPDATE_ERROR": "Unable to update one or more extensions: {0}. {APP_NAME} will still reload.",
622622
"EXTENSION_MANAGER_DISABLE": "Disable Extension",
623623
"EXTENSION_MANAGER_DISABLE_ERROR": "Unable to disable one or more extensions: {0}. {APP_NAME} will still reload.",
624+
"EXTENSION_MANAGER_THEMES_INFO":"To <a class=\"theme_settings\">select default themes</a> or modify other theme settings, <a class=\"theme_settings\">click here</a>.",
624625
"MARKED_FOR_REMOVAL": "Marked for removal",
625626
"UNDO_REMOVE": "Undo",
626627
"MARKED_FOR_UPDATE": "Marked for update",

0 commit comments

Comments
 (0)