Files
tdesktop/Telegram/SourceFiles/lang/lang_hardcoded.h
allhaileris afb81b8278
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
init
2026-02-16 15:50:16 +03:00

75 lines
1.9 KiB
C++

/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
namespace Lang {
namespace Hard {
inline QString FavedSetTitle() {
return u"Favorite stickers"_q;
}
inline QString CallErrorIncompatible() {
return u"{user}'s app is using an incompatible protocol. They need to update their app before you can call them."_q;
}
inline QString ServerError() {
return u"Internal server error."_q;
}
inline QString ClearPathFailed() {
return u"Clear failed :("_q;
}
inline QString ProxyConfigError() {
return u"The proxy you are using is not configured correctly and will be disabled. Please find another one."_q;
}
inline QString NoAuthorizationBot() {
return u"Could not get authorization bot."_q;
}
inline QString SecureSaveError() {
return u"Error saving value."_q;
}
inline QString SecureAcceptError() {
return u"Error accepting form."_q;
}
inline QString PassportCorrupted() {
return u"It seems your Telegram Passport data was corrupted.\n\nYou can reset your Telegram Passport and restart this authorization."_q;
}
inline QString PassportCorruptedChange() {
return u"It seems your Telegram Passport data was corrupted.\n\nYou can reset your Telegram Passport and change your cloud password."_q;
}
inline QString PassportCorruptedReset() {
return u"Reset"_q;
}
inline QString PassportCorruptedResetSure() {
return u"Are you sure you want to reset your Telegram Passport data?"_q;
}
inline QString UnknownSecureScanError() {
return u"Unknown scan read error."_q;
}
inline QString EmailConfirmationExpired() {
return u"This email confirmation has expired. Please setup two-step verification once again."_q;
}
inline QString AutostartEnableError() {
return u"Could not register for autostart."_q;
}
} // namespace Hard
} // namespace Lang