1 /*
2 This file is part of Telegram Desktop,
3 the official desktop application for the Telegram messaging service.
4 
5 For license and copyright information please follow this link:
6 https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
7 */
8 #pragma once
9 
10 namespace Lang {
11 namespace Hard {
12 
FavedSetTitle()13 inline QString FavedSetTitle() {
14 	return u"Favorite stickers"_q;
15 }
16 
CallErrorIncompatible()17 inline QString CallErrorIncompatible() {
18 	return u"{user}'s app is using an incompatible protocol. They need to update their app before you can call them."_q;
19 }
20 
ServerError()21 inline QString ServerError() {
22 	return u"Internal server error."_q;
23 }
24 
ClearPathFailed()25 inline QString ClearPathFailed() {
26 	return u"Clear failed :("_q;
27 }
28 
ProxyConfigError()29 inline QString ProxyConfigError() {
30 	return u"The proxy you are using is not configured correctly and will be disabled. Please find another one."_q;
31 }
32 
NoAuthorizationBot()33 inline QString NoAuthorizationBot() {
34 	return u"Could not get authorization bot."_q;
35 }
36 
SecureSaveError()37 inline QString SecureSaveError() {
38 	return u"Error saving value."_q;
39 }
40 
SecureAcceptError()41 inline QString SecureAcceptError() {
42 	return u"Error accepting form."_q;
43 }
44 
PassportCorrupted()45 inline QString PassportCorrupted() {
46 	return u"It seems your Telegram Passport data was corrupted.\n\nYou can reset your Telegram Passport and restart this authorization."_q;
47 }
48 
PassportCorruptedChange()49 inline QString PassportCorruptedChange() {
50 	return u"It seems your Telegram Passport data was corrupted.\n\nYou can reset your Telegram Passport and change your cloud password."_q;
51 }
52 
PassportCorruptedReset()53 inline QString PassportCorruptedReset() {
54 	return u"Reset"_q;
55 }
56 
PassportCorruptedResetSure()57 inline QString PassportCorruptedResetSure() {
58 	return u"Are you sure you want to reset your Telegram Passport data?"_q;
59 }
60 
UnknownSecureScanError()61 inline QString UnknownSecureScanError() {
62 	return u"Unknown scan read error."_q;
63 }
64 
EmailConfirmationExpired()65 inline QString EmailConfirmationExpired() {
66 	return u"This email confirmation has expired. Please setup two-step verification once again."_q;
67 }
68 
69 } // namespace Hard
70 } // namespace Lang
71