vojo/apps/ai-bot/messages.go

15 lines
898 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package main
// Bot-authored, user-facing notices. Vojo is a Russian-market product, so these
// are RU. They are NOT the i18n bundle of the cinny client — this is a separate
// service; keep the few strings here.
const (
noticeEncryptedUnsupported = "Я не читаю зашифрованные комнаты, поэтому не отвечаю здесь. " +
"Напишите мне в обычном (незашифрованном) чате."
noticeDailyLimit = "Достигнут дневной лимит обращений к ИИ в этом сервисе. Попробуйте позже."
noticeUserLimit = "Вы исчерпали свой дневной лимит обращений к ИИ. Попробуйте позже."
noticeError = "⚠️ Не удалось получить ответ от ИИ. Попробуйте ещё раз чуть позже."
)