11 lines
616 B
Go
11 lines
616 B
Go
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 = "Достигнут дневной лимит обращений к ИИ в этом сервисе. Попробуйте позже."
|
|
)
|