tooltips and icon update

pull/5370/head
Aniket-Engg 2 years ago committed by Aniket
parent 18a1dd7e5e
commit 02df050951
  1. 6
      apps/remix-ide/src/app/tabs/locales/en/filePanel.json
  2. 10
      libs/remix-ui/workspace/src/lib/components/file-explorer-menu.tsx

@ -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",

@ -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',

Loading…
Cancel
Save