diff --git a/apps/remix-ide/src/app/tabs/locales/en/filePanel.json b/apps/remix-ide/src/app/tabs/locales/en/filePanel.json index 0882cfc0b7..2e14ffe78d 100644 --- a/apps/remix-ide/src/app/tabs/locales/en/filePanel.json +++ b/apps/remix-ide/src/app/tabs/locales/en/filePanel.json @@ -41,9 +41,9 @@ "filePanel.compileForNahmii": "Compile for Nahmii", "filePanel.createNewFile": "Create New File", "filePanel.createNewFolder": "Create New Folder", - "filePanel.publishToGist": "Publish all the current workspace files to a github gist", - "filePanel.uploadFile": "Load a local file into current workspace", - "filePanel.uploadFolder": "Load a local folder into current workspace", + "filePanel.publishToGist": "Publish current workspace to GitHub gist", + "filePanel.uploadFile": "Upload files into current workspace", + "filePanel.uploadFolder": "Upload folder into current workspace", "filePanel.updateGist": "Update the current [gist] explorer", "filePanel.viewAllBranches": "View all branches", "filePanel.createBranch": "Create branch", diff --git a/libs/remix-ui/workspace/src/lib/components/file-explorer-menu.tsx b/libs/remix-ui/workspace/src/lib/components/file-explorer-menu.tsx index 42e8e28e26..3d7c63cc21 100644 --- a/libs/remix-ui/workspace/src/lib/components/file-explorer-menu.tsx +++ b/libs/remix-ui/workspace/src/lib/components/file-explorer-menu.tsx @@ -22,21 +22,21 @@ export const FileExplorerMenu = (props: FileExplorerMenuProps) => { }, { action: 'publishToGist', - title: 'Publish all the current workspace files to a github gist', + title: 'Publish current workspace to GitHub gist', icon: 'fab fa-github', placement: 'top' }, { action: 'uploadFile', - title: 'Load a local file into current workspace', + title: 'Upload files into current workspace', icon: 'fa fa-upload', placement: 'top' }, { action: 'uploadFolder', - title: 'Load a local folder into current workspace', - icon: 'fa fa-arrow-circle-up', - placement: 'right' + title: 'Upload folder into current workspace', + icon: 'fas fa-folder-upload', + placement: 'top' }, { action: 'updateGist',