2017-09-28 20:11:10 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2017-09-28 20:11:10 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2017-09-28 20:11:10 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Lang {
|
|
|
|
namespace Hard {
|
|
|
|
|
|
|
|
inline QString FavedSetTitle() {
|
2020-09-30 09:11:44 +00:00
|
|
|
return u"Favorite stickers"_q;
|
2017-09-28 20:11:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline QString CallErrorIncompatible() {
|
2020-09-30 09:11:44 +00:00
|
|
|
return u"{user}'s app is using an incompatible protocol. They need to update their app before you can call them."_q;
|
2017-09-28 20:11:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline QString ServerError() {
|
2020-09-30 09:11:44 +00:00
|
|
|
return u"Internal server error."_q;
|
2017-09-28 20:11:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline QString ClearPathFailed() {
|
2020-09-30 09:11:44 +00:00
|
|
|
return u"Clear failed :("_q;
|
2017-09-28 20:11:10 +00:00
|
|
|
}
|
|
|
|
|
2018-05-24 13:40:19 +00:00
|
|
|
inline QString ProxyConfigError() {
|
2020-09-30 09:11:44 +00:00
|
|
|
return u"The proxy you are using is not configured correctly and will be disabled. Please find another one."_q;
|
2018-05-24 13:40:19 +00:00
|
|
|
}
|
|
|
|
|
2018-04-15 15:06:53 +00:00
|
|
|
inline QString NoAuthorizationBot() {
|
2020-09-30 09:11:44 +00:00
|
|
|
return u"Could not get authorization bot."_q;
|
2018-04-15 15:06:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline QString SecureSaveError() {
|
2020-09-30 09:11:44 +00:00
|
|
|
return u"Error saving value."_q;
|
2018-04-15 15:06:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline QString SecureAcceptError() {
|
2020-09-30 09:11:44 +00:00
|
|
|
return u"Error accepting form."_q;
|
2018-04-15 15:06:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline QString PassportCorrupted() {
|
2020-09-30 09:11:44 +00:00
|
|
|
return u"It seems your Telegram Passport data was corrupted.\n\nYou can reset your Telegram Passport and restart this authorization."_q;
|
2018-04-15 15:06:53 +00:00
|
|
|
}
|
|
|
|
|
2018-08-10 19:19:46 +00:00
|
|
|
inline QString PassportCorruptedChange() {
|
2020-09-30 09:11:44 +00:00
|
|
|
return u"It seems your Telegram Passport data was corrupted.\n\nYou can reset your Telegram Passport and change your cloud password."_q;
|
2018-08-10 19:19:46 +00:00
|
|
|
}
|
|
|
|
|
2018-04-15 15:06:53 +00:00
|
|
|
inline QString PassportCorruptedReset() {
|
2020-09-30 09:11:44 +00:00
|
|
|
return u"Reset"_q;
|
2018-04-15 15:06:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline QString PassportCorruptedResetSure() {
|
2020-09-30 09:11:44 +00:00
|
|
|
return u"Are you sure you want to reset your Telegram Passport data?"_q;
|
2018-04-15 15:06:53 +00:00
|
|
|
}
|
|
|
|
|
2018-04-20 17:34:51 +00:00
|
|
|
inline QString UnknownSecureScanError() {
|
2020-09-30 09:11:44 +00:00
|
|
|
return u"Unknown scan read error."_q;
|
2018-04-20 17:34:51 +00:00
|
|
|
}
|
|
|
|
|
2018-11-07 09:39:31 +00:00
|
|
|
inline QString EmailConfirmationExpired() {
|
2020-09-30 09:11:44 +00:00
|
|
|
return u"This email confirmation has expired. Please setup two-step verification once again."_q;
|
2018-11-07 09:39:31 +00:00
|
|
|
}
|
|
|
|
|
2017-09-28 20:11:10 +00:00
|
|
|
} // namespace Hard
|
|
|
|
} // namespace Lang
|