Skip to content

Commit 38031f8

Browse files
authored
Update toolbar.js (sugarlabs#4126)
reuse existing string (capitalization)
1 parent 2b4d1cd commit 38031f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/toolbar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1057,7 +1057,7 @@ function renderNewProjectConfirmation() {
10571057
const newDropdown = document.getElementById("newdropdown");
10581058
newDropdown.innerHTML = '';
10591059
const title = document.createElement("div");
1060-
title.innerHTML = `<h2 style="color: #0066FF; font-size: 24px; text-align: left; margin: 0;">${_("New Project")}</h2>`;
1060+
title.innerHTML = `<h2 style="color: #0066FF; font-size: 24px; text-align: left; margin: 0;">${_("New project")}</h2>`;
10611061
newDropdown.appendChild(title);
10621062
const confirmationMessage = document.createElement("div");
10631063
confirmationMessage.innerHTML = `<div id="confirmation-message" style="color: #666666; font-size: 16px; margin-bottom: 24px; text-align: left;">${_("Are you sure you want to create a new project?")}</div>`;

0 commit comments

Comments
 (0)