mirror of
https://github.com/ollama/ollama.git
synced 2025-11-10 14:09:34 +01:00
* app: add code for macOS and Windows apps under 'app' * app: add readme * app: windows and linux only for now * ci: fix ui CI validation --------- Co-authored-by: jmorganca <jmorganca@gmail.com>
18 lines
502 B
Go
18 lines
502 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"
|
|
settingsUIMenuTitle = "Settings..."
|
|
)
|