Skip to content

Commit 190f63a

Browse files
committed
fix: add missing titles to buttons
1 parent 4146e44 commit 190f63a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

src/LiveDevelopment/BrowserScripts/RemoteFunctions.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2649,7 +2649,7 @@ function RemoteFunctions(config = {}) {
26492649
<div class="phoenix-ribbon-header-left">
26502650
<div class="phoenix-ribbon-search">
26512651
<input type="text" placeholder="${config.strings.imageGallerySearchPlaceholder}" />
2652-
<button class="phoenix-ribbon-search-btn" disabled>
2652+
<button class="phoenix-ribbon-search-btn" title="${config.strings.imageGallerySearchButton}">
26532653
${ICONS.search}
26542654
</button>
26552655
</div>
@@ -2664,7 +2664,7 @@ function RemoteFunctions(config = {}) {
26642664
<button class="phoenix-ribbon-folder-settings" title="${config.strings.imageGallerySelectDownloadFolder}">
26652665
${ICONS.folderSettings}
26662666
</button>
2667-
<button class="phoenix-ribbon-close">
2667+
<button class="phoenix-ribbon-close" title="${config.strings.imageGalleryClose}">
26682668
${ICONS.close}
26692669
</button>
26702670
</div>

src/LiveDevelopment/main.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ define(function main(require, exports, module) {
8989
imageGalleryLoadingInitial: Strings.LIVE_DEV_IMAGE_GALLERY_LOADING_INITIAL,
9090
imageGalleryLoadingMore: Strings.LIVE_DEV_IMAGE_GALLERY_LOADING_MORE,
9191
imageGalleryNoImages: Strings.LIVE_DEV_IMAGE_GALLERY_NO_IMAGES,
92-
imageGalleryLoadError: Strings.LIVE_DEV_IMAGE_GALLERY_LOAD_ERROR
92+
imageGalleryLoadError: Strings.LIVE_DEV_IMAGE_GALLERY_LOAD_ERROR,
93+
imageGalleryClose: Strings.LIVE_DEV_IMAGE_GALLERY_CLOSE
9394
}
9495
};
9596
// Status labels/styles are ordered: error, not connected, progress1, progress2, connected.

src/nls/root/strings.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ define({
199199
"LIVE_DEV_IMAGE_GALLERY_LOADING_MORE": "Loading...",
200200
"LIVE_DEV_IMAGE_GALLERY_NO_IMAGES": "No images found",
201201
"LIVE_DEV_IMAGE_GALLERY_LOAD_ERROR": "Failed to load images",
202+
"LIVE_DEV_IMAGE_GALLERY_CLOSE": "Close",
202203
"LIVE_DEV_IMAGE_FOLDER_DIALOG_TITLE": "Select Folder to Save Image",
203204
"LIVE_DEV_IMAGE_FOLDER_DIALOG_DESCRIPTION": "Choose where to download the image:",
204205
"LIVE_DEV_IMAGE_FOLDER_DIALOG_PLACEHOLDER": "Type folder path (e.g., assets/images/)",

0 commit comments

Comments
 (0)