This repository was archived by the owner on Mar 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrings_en.go
27 lines (26 loc) · 1.49 KB
/
strings_en.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package main
const (
ok string = "OK"
strFirstStart string = "This is the first start\n"
strCreateWorkDirs string = "* Creating work directory\n"
strCreateStorage string = "* Creating storage\n"
strUpdatingGoCache string = "Updating Golang cache...\t"
strUpdatingLiteIDECache string = "Updating LiteIDE cache...\t"
strInstalledVersions string = "* Installed %s versions\n"
strArchivesListing string = "Archives listing"
strFetchRemote string = "Fetch remote version's list"
strPleaseSetTool string = "Please, set 'go' or 'liteide'"
strDownloading string = "Downloading version: %s\n"
strDownloadingGo string = "Downloading Go version: %s\n"
strDownloadingLiteIDE string = "Dowloading LiteIDE version %s\n"
strDownloadingLiteIDEversion string = "Dowloading LiteIDE version %s %s\n"
strDownloadingInstalling string = "Downloading and installing version: %s\n"
strInstallGoVersion string = "Install Golang version %s\n"
strUninstallGo string = "Uninstall Golang version"
strUninstallLiteIDE string = "Uninstall Liteide version"
strChecksumMismatch string = "Checksum mismatch"
strOperationAborted string = "Operation aborted"
strAlreadyDownloaded string = "Already downloaded..."
strFilesMismatch string = "Files mismatch"
strFileRemoved string = "File removed"
)