mirror of
https://github.com/ollama/ollama.git
synced 2026-09-21 13:38:14 -05:00
18 lines
507 B
Go
18 lines
507 B
Go
//go:build windows
|
|
|
|
package wintray
|
|
|
|
const (
|
|
firstTimeTitle = "Ollama is running"
|
|
firstTimeMessage = "Click here to get started"
|
|
updateTitle = "Update available"
|
|
updateMessage = "Ollama version %s is ready to install"
|
|
|
|
quitMenuTitle = "Quit Ollama"
|
|
updateAvailableMenuTitle = "An update is available"
|
|
updateMenuTitle = "Restart to update"
|
|
diagLogsMenuTitle = "View logs"
|
|
openUIMenuTitle = "Open Ollama Chat"
|
|
settingsUIMenuTitle = "Settings..."
|
|
)
|