fca-uzair-rajput 21.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/publish.yml +28 -0
- package/.replit +8 -0
- package/Extra/Balancer.js +49 -0
- package/Extra/Bypass/956/index.js +234 -0
- package/Extra/Bypass/test/aaaa.json +170 -0
- package/Extra/Bypass/test/index.js +188 -0
- package/Extra/Database/index.js +469 -0
- package/Extra/ExtraAddons.js +82 -0
- package/Extra/ExtraFindUID.js +62 -0
- package/Extra/ExtraGetThread.js +365 -0
- package/Extra/ExtraScreenShot.js +430 -0
- package/Extra/ExtraUptimeRobot.js +38 -0
- package/Extra/Html/Classic/script.js +119 -0
- package/Extra/Html/Classic/style.css +8 -0
- package/Extra/Security/AES_256_GCM/index.js +0 -0
- package/Extra/Security/Base/Step_1.js +6 -0
- package/Extra/Security/Base/Step_2.js +22 -0
- package/Extra/Security/Base/Step_3.js +22 -0
- package/Extra/Security/Base/index.js +183 -0
- package/Extra/Security/Index.js +5 -0
- package/Extra/Security/Step_1.js +6 -0
- package/Extra/Security/Step_2.js +22 -0
- package/Extra/Security/Step_3.js +22 -0
- package/Extra/Src/Change_Environment.js +24 -0
- package/Extra/Src/Check_Update.js +67 -0
- package/Extra/Src/History.js +115 -0
- package/Extra/Src/Instant_Update.js +65 -0
- package/Extra/Src/Last-Run.js +65 -0
- package/Extra/Src/Premium.js +81 -0
- package/Extra/Src/Release_Memory.js +160 -0
- package/Extra/Src/Websocket.js +213 -0
- package/Extra/Src/image/checkmate.jpg +0 -0
- package/Extra/Src/test.js +28 -0
- package/Extra/Src/uuid.js +137 -0
- package/Func/AcceptAgreement.js +31 -0
- package/Func/ClearCache.js +64 -0
- package/Func/ReportV1.js +54 -0
- package/LICENSE +21 -0
- package/Language/index.json +228 -0
- package/Main.js +1290 -0
- package/README.md +198 -0
- package/SECURITY.md +17 -0
- package/broadcast.js +44 -0
- package/index.js +448 -0
- package/logger.js +66 -0
- package/package.json +98 -0
- package/src/Dev_Horizon_Data.js +125 -0
- package/src/Dev_Uzair_Data.js +125 -0
- package/src/Dev_getThreadInfoOLD.js +422 -0
- package/src/Dev_shareTest2.js +68 -0
- package/src/Dev_shareTest3.js +71 -0
- package/src/Premium.js +25 -0
- package/src/Screenshot.js +83 -0
- package/src/addExternalModule.js +16 -0
- package/src/addUserToGroup.js +79 -0
- package/src/changeAdminStatus.js +79 -0
- package/src/changeArchivedStatus.js +41 -0
- package/src/changeAvt.js +85 -0
- package/src/changeBio.js +65 -0
- package/src/changeBlockedStatus.js +36 -0
- package/src/changeGroupImage.js +106 -0
- package/src/changeNickname.js +45 -0
- package/src/changeThreadColor.js +62 -0
- package/src/changeThreadEmoji.js +42 -0
- package/src/createNewGroup.js +70 -0
- package/src/createPoll.js +60 -0
- package/src/deleteMessage.js +45 -0
- package/src/deleteThread.js +43 -0
- package/src/editMessage.js +53 -0
- package/src/forwardAttachment.js +48 -0
- package/src/getAccessToken.js +28 -0
- package/src/getCurrentUserID.js +7 -0
- package/src/getEmojiUrl.js +27 -0
- package/src/getFriendsList.js +73 -0
- package/src/getMessage.js +103 -0
- package/src/getThreadHistory.js +537 -0
- package/src/getThreadInfo.js +424 -0
- package/src/getThreadInfoOLD.js +422 -0
- package/src/getThreadList.js +213 -0
- package/src/getThreadMain.js +220 -0
- package/src/getThreadPictures.js +59 -0
- package/src/getUID.js +59 -0
- package/src/getUserID.js +62 -0
- package/src/getUserInfo.js +112 -0
- package/src/getUserInfoMain.js +65 -0
- package/src/getUserInfoV2.js +32 -0
- package/src/getUserInfoV3.js +63 -0
- package/src/getUserInfoV4.js +55 -0
- package/src/getUserInfoV5.js +61 -0
- package/src/handleFriendRequest.js +46 -0
- package/src/handleMessageRequest.js +49 -0
- package/src/httpGet.js +49 -0
- package/src/httpPost.js +48 -0
- package/src/httpPostFormData.js +41 -0
- package/src/listenMqtt.js +956 -0
- package/src/listenMqttV1.js +846 -0
- package/src/logout.js +68 -0
- package/src/markAsDelivered.js +48 -0
- package/src/markAsRead.js +70 -0
- package/src/markAsReadAll.js +43 -0
- package/src/markAsSeen.js +51 -0
- package/src/muteThread.js +47 -0
- package/src/removeUserFromGroup.js +49 -0
- package/src/resolvePhotoUrl.js +37 -0
- package/src/searchForThread.js +43 -0
- package/src/sendMessage.js +386 -0
- package/src/sendMqttMessage.js +71 -0
- package/src/sendTypingIndicator.js +80 -0
- package/src/setMessageReaction.js +109 -0
- package/src/setPostReaction.js +102 -0
- package/src/setTitle.js +74 -0
- package/src/shareContact.js +55 -0
- package/src/shareLink.js +58 -0
- package/src/threadColors.js +39 -0
- package/src/unfriend.js +43 -0
- package/src/unsendMessage.js +48 -0
- package/src/unsendMqttMessage.js +66 -0
- package/test/data/shareAttach.js +146 -0
- package/test/data/test.txt +7 -0
- package/test/example-config.json +18 -0
- package/test/test-page.js +140 -0
- package/test/test.js +385 -0
- package/test/testv2.js +3 -0
- package/utils.js +3077 -0
package/Func/ReportV1.js
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var utils = require("../utils");
|
|
4
|
+
var log = require("npmlog");
|
|
5
|
+
|
|
6
|
+
module.exports = function (defaultFuncs, api, ctx) {
|
|
7
|
+
return function (args,callback) {
|
|
8
|
+
if (!args.Link && !args.RealName && !args.Content && !args.Gmail) throw new Error("Link,RealName,Content,Gmail are required");
|
|
9
|
+
if (!args.Link) throw new Error("api.Premium.ReportV1(Link, Uzair Rajput, Content,uzairrajputking@gmail.com, Time, callback))");
|
|
10
|
+
if (!args.RealName) throw new Error("api.Premium.ReportV1(Link, Uzair Rajput, Content,uzairrajputking@gmail.com, Time, callback))");
|
|
11
|
+
if (!args.Gmail) throw new Error("api.Premium.ReportV1(Link, Uzair Rajput, Content,uzairrajputking@gmail.com, Time, callback))");
|
|
12
|
+
var resolveFunc = function () { };
|
|
13
|
+
var rejectFunc = function () { };
|
|
14
|
+
var returnPromise = new Promise(function (resolve, reject) {
|
|
15
|
+
resolveFunc = resolve;
|
|
16
|
+
rejectFunc = reject;
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
if (!callback) {
|
|
20
|
+
callback = function (err, data) {
|
|
21
|
+
if (err) return rejectFunc(err);
|
|
22
|
+
resolveFunc(data);
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
let RealForm;
|
|
26
|
+
utils.get('https://www.facebook.com/help/contact/209046679279097?locale2=en_US', ctx.jar, null, ctx.globalOptions)
|
|
27
|
+
.then(function(data) {
|
|
28
|
+
RealForm = {
|
|
29
|
+
crt_url: args.Link,
|
|
30
|
+
crt_name: args.RealName,
|
|
31
|
+
cf_age: "9 years",
|
|
32
|
+
Field255260417881843: args.Content ? utils.getType(args.Content)=="String"? args.Content : "Ye timeline meri (Uzair Rajput) aur mere doston ki nakal kar rahi hai. Ye Facebook par logon ko harass karti hai. Mujhe lagta hai ke ye kisi baby ki timeline hai, jahan parents ki ijazat bhi nahi hai. Barae mehrbani is Facebook account ko deactivate kar diya jaye taake Facebook zyada safe ban sake. Shukriya! – Uzair Rajput!" : "Ye timeline meri (Uzair Rajput) aur mere doston ki nakal kar rahi hai. Ye Facebook par logon ko harass karti hai. Mujhe lagta hai ke ye kisi baby ki timeline hai, jahan parents ki ijazat bhi nahi hai. Barae mehrbani is Facebook account ko deactivate kar diya jaye taake Facebook zyada safe ban sake. Shukriya! – Uzair Rajput!",
|
|
33
|
+
Field166040066844792: args.Gmail,
|
|
34
|
+
source: '',
|
|
35
|
+
support_form_id: 209046679279097,
|
|
36
|
+
support_form_hidden_fields: JSON.stringify({}),
|
|
37
|
+
support_form_fact_false_fields: [],
|
|
38
|
+
lsd: utils.getFrom(data.body, "[\"LSD\",[],{\"token\":\"", "\"}")
|
|
39
|
+
};
|
|
40
|
+
}).then(function() {
|
|
41
|
+
defaultFuncs.postFormData('https://www.facebook.com/ajax/help/contact/submit/page', ctx.jar, RealForm, {})
|
|
42
|
+
.then(utils.parseAndCheckLogin(ctx, defaultFuncs))
|
|
43
|
+
.then(async function(dt) {
|
|
44
|
+
if (dt.__ar == 1) {
|
|
45
|
+
callback(null, "Success");
|
|
46
|
+
}
|
|
47
|
+
else {
|
|
48
|
+
callback(null, "Failure");
|
|
49
|
+
}
|
|
50
|
+
});
|
|
51
|
+
})
|
|
52
|
+
return returnPromise;
|
|
53
|
+
}
|
|
54
|
+
};
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Uzair Rajput
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"Language": "vi",
|
|
4
|
+
"Folder": {
|
|
5
|
+
"Index": {
|
|
6
|
+
"ErrAppState": "Appstate - Cookie aapka kharab ho gaya hai, naya wala lagayein, ya incognito browser mein login karke dobara koshish karein. !",
|
|
7
|
+
"CheckPointLevelI": "CheckPoint detect hua hai - Login nahi ho pa raha, logout karke dobara login karein aur Appstate - Cookie phir se hasil karein. !",
|
|
8
|
+
"UID": "ID par login karein %1",
|
|
9
|
+
"Area": "UZAIR RAJPUT MTX SIR KE SERVER PE APKO KHUSH AAMDEED KEHTE HAI: %1",
|
|
10
|
+
"NoAreaData": "Account ka region hasil nahi kiya ja saka!",
|
|
11
|
+
"NoAreaDataBypass": "Account ka region hasil nahi ho saka lekin ye qadam chhor diya gaya hai 🐑",
|
|
12
|
+
"OnLogin": "Login ho raha hai ...",
|
|
13
|
+
"InvaildAccount": "Ghalat Password ya Account hai !",
|
|
14
|
+
"TwoAuth": "Aap ne 2 step security on ki hui hai !",
|
|
15
|
+
"InvaildTwoAuthCode": "2 step security ka code ghalat hai !",
|
|
16
|
+
"ApprovalsErr": "2 step security ke sath login karte waqt error aaya hai !",
|
|
17
|
+
"VerifiedCheck": "Browser se tasdeeq ho rahi hai, login kiya ja raha hai....",
|
|
18
|
+
"ForceLoginNotEnable": "Login nahi ho saka, barah-e-karam 'forceLogin' ko on kar ke dobara koshish karein. !",
|
|
19
|
+
"SubmitErrSuccess": "Error report server ko bhej diya gaya hai !",
|
|
20
|
+
"ErrorWhileSendErr": "Server ko error bhejne ki koshish mein ek ghalti paish aayi hai.!",
|
|
21
|
+
"OnProcess": "Login ka process shuru kiya ja raha hai !",
|
|
22
|
+
"BackupNoti": "Backup se AppState replace kiya ja raha hai, agar yeh masla barqarar raha to barah-e-karam rabta karein. Fb.com/Mtxuzair",
|
|
23
|
+
"ErrGetPassWord": "AppState ka encrypt kiya gaya password hasil karte waqt error aaya. !",
|
|
24
|
+
"ErrGenerateKey": "AppState ke liye password banate waqt error aaya. !",
|
|
25
|
+
"UnsupportedDevice": "Aap ka Operating System is waqt support nahi karta! !",
|
|
26
|
+
"NotReadyToDecrypt": "Appstate ko kholne ke liye nizaam abhi tayar nahi hai! !",
|
|
27
|
+
"DecryptSuccess": "Appstate ko kamyabi se decode kar liya gaya hai! !",
|
|
28
|
+
"ErrBackup": "AppState ko backup karte waqt error aaya, barah-e-karam AppState ko tabdeel karein. !",
|
|
29
|
+
"DecryptFailed": "Decode karna kamyab nahi hua, barah-e-karam AppState ko tabdeel kar ke dobara koshish karein. !",
|
|
30
|
+
"InvaildAppState": "AppState ko pehchana nahi ja saka, barah-e-karam AppState ko tabdeel karein. !",
|
|
31
|
+
"YourAppStatePass": "Tumhara AppState ka password kya hai: %1",
|
|
32
|
+
"BackupFailed": "AppState ka backup lena kamyab nahi hua !",
|
|
33
|
+
"ScreenShotConsoleAndSendToAdmin": "Is line ka screenshot lo aur Facebook par bhejo: Fb.com/Mtxuzair",
|
|
34
|
+
"DoneLogin": "Login ka process mukammal karo !",
|
|
35
|
+
"AutoCheckUpdateFailure": "Update check karte waqt error aaya, barae mehrbani baad mein dobara koshish karein !",
|
|
36
|
+
"AutoCheckUpdate": "System update check kar raha hai !",
|
|
37
|
+
"NewVersionFound": "Naya version successfully update ho chuka hai: %1 => %2",
|
|
38
|
+
"AutoUpdate": "System khud-ba-khud naye version mein update kar raha hai !",
|
|
39
|
+
"UpdateSuccess": "Naya version successfully install ho chuka hai !",
|
|
40
|
+
"RestartAfterUpdate": "Nayi version ke asar ke liye system dobara chalu kiya ja raha ha !",
|
|
41
|
+
"UpdateFailed": "Latest version par upgrade karte waqt error aaya !",
|
|
42
|
+
"UseSupportToolAfterUpdateFailed": "Upgrade fail ho gaya hai, support tools ka istemal karein !",
|
|
43
|
+
"InstallSupportTool": "Loading Support Tools For Fca !",
|
|
44
|
+
"NotiAfterUseToolFail": "Khud theek karein likh kar:",
|
|
45
|
+
"LocalVersion": "Jo version abhi istemal ho raha hai woh hai: %1 !",
|
|
46
|
+
"EncryptSuccess": "AppState successfully encrypt ho gaya hai !",
|
|
47
|
+
"ProcessDone": "Yeh end ho gaya hai: %1 !",
|
|
48
|
+
"CountTime": "Aap ne jitni dair tak use kiye: %1",
|
|
49
|
+
"InvaildMainColor": "%1 Yeh koi hex color nahi hai!",
|
|
50
|
+
"IsNotABoolean": "%1 Yeh boolean nahi hai, zaroori hai ke yeh true ya false ho !",
|
|
51
|
+
"InvaildOption": "%1 Yeh koi option nahi hai !",
|
|
52
|
+
"EncryptStateOff": "EncryptState feature band kar diya gaya hai !",
|
|
53
|
+
|
|
54
|
+
"AutoLogin": "AutoLogin on hai, dobara login kar rahe hain !",
|
|
55
|
+
"TypeAccount": "Account ka maloomat daalein: ",
|
|
56
|
+
"TypePassword": "Password daalein: ",
|
|
57
|
+
"TypeAccountError": "Account mein ID, phone number, ya Gmail hona chahiye !",
|
|
58
|
+
"ErrDataBase": "Auto Login ke data ko set karte waqt error aayi !",
|
|
59
|
+
"SuccessSetData": "Auto Login ka data successfully set ho gaya!",
|
|
60
|
+
"Missing": "Meherbani karke, 2FA code ko 𝐌𝐫𝐔𝐳𝐚𝐢𝐫𝐗𝐱𝐗-𝐌𝐓𝐗Fca.json mein AuthString ke hisaab se daalein !",
|
|
61
|
+
|
|
62
|
+
"EnterSecurityCode": "Apna two-factor authentication code daalein: ",
|
|
63
|
+
"ErrThroughCookies": "2FA verify karte waqt error aayi, meherbani karke dobara 2FA code daalein !",
|
|
64
|
+
|
|
65
|
+
"NodeVersionNotSupported": "Version: %1 supported nahi hai, Node.js v14 automatic download ho raha ha",
|
|
66
|
+
"UsingNVM": "Aap nvm ka use kar rahe hain node version control ke liye, barah-e-karam pehle 'nvm install 14.17.0' likhein, uske baad 'nvm use 14.17.0' likh kar supported version par switch karein. !",
|
|
67
|
+
"DownloadingNode": "Node.js ka supported version V14 abhi download ho raha hai!",
|
|
68
|
+
"NodeDownloadingComplete": "Node.js ka V14 version successfully download ho chuka hai !",
|
|
69
|
+
"RestartRequire": "Download mukammal ho gaya, ab user ko restart karna hoga taake changes apply ho sakein.!",
|
|
70
|
+
"ErrNodeDownload": "Node v14 ka auto download fail ho gaya hai, madad ke liye fb.com/Mtxuzair se raabta karein.!",
|
|
71
|
+
"RestartingN": "Program restart ho raha hai",
|
|
72
|
+
"Rebuilding": "NPM package ko error se bachane ke liye phir se rebuild kiya ja raha hai !",
|
|
73
|
+
"ErrRebuilding": "npm install ke waqt rebuilding process mein ghalti hui hai",
|
|
74
|
+
"SuccessRebuilding": "Rebuilding successfully complete ho chuka hai !",
|
|
75
|
+
"UnableToConnect": "Server ke connection mein masla hua, WiFi ko dobara check karein!",
|
|
76
|
+
"EVMChange": "Replit.nix ko Node V14 ko support karne ke liye change kiya ja raha hai!",
|
|
77
|
+
"EVMChangeSuccess": "Replit.nix update ho gaya hai, ab system restart ho raha hai!",
|
|
78
|
+
|
|
79
|
+
"Ws_TypeUserName": "WebSocket Extension account ke liye ek username enter karein: ",
|
|
80
|
+
"Ws_TypePassWord": "WebSocket Extension account ke liye ek password enter karein : ",
|
|
81
|
+
"Ws_Success": "WebSocket Extension ka data successfully set ho gaya !",
|
|
82
|
+
"Ws_2Fa": "Yeh aapka 2FA code hai UzairMtx_Extension ke liye, barah-e-karam Google Authenticator ka use karein taake aap code hasil kar sakein agar password bhool jayein ya verification ki zaroorat ho!\n\n=> Yeh: %1",
|
|
83
|
+
"Ws_2Fa_Check": "Authentication app se apna 2FA code daalein: ",
|
|
84
|
+
|
|
85
|
+
"2FaBypassCheckpoint": "Aap jo account 2FA ke zariye login karne ki koshish kar rahe hain, us par koi checkpoint laga hua hai. Abhi tak is checkpoint ka koi fix nahi hai, barah-e-karam rabta karein: https://www.facebook.com/Mtxuzair (Uzair Rajput Mtx) Error ko theek karne ka tareeqa jan'nay ke liye!\n\n ERROR CODE: %1",
|
|
86
|
+
|
|
87
|
+
"Bypass_956": "Testing to see if you get checkpoint 956!",
|
|
88
|
+
"Bypass_AutoNoti": "Passed behavior warning successfully!",
|
|
89
|
+
|
|
90
|
+
"WishMessage": [
|
|
91
|
+
"Have a nice day !",
|
|
92
|
+
"Please Report to Admin When There is an Error Fca !",
|
|
93
|
+
"Thank You For Using Uzair Sehar Fca !"
|
|
94
|
+
]
|
|
95
|
+
},
|
|
96
|
+
"ExtraGetThread": {
|
|
97
|
+
"CreateDatabaseSuccess": "Successfully Created Database for Group: %1",
|
|
98
|
+
"CreateDatabaseFailure": "Group Database Initialization Failed: %1",
|
|
99
|
+
"alreadyUpdate": "%1 Ready to Update Database",
|
|
100
|
+
"updateDataSuccess": "Update Data For Group %1 Successfully !",
|
|
101
|
+
"updateDataFailure": "Update Data For Group %1 Failed !"
|
|
102
|
+
},
|
|
103
|
+
"ExtraUpTime": {
|
|
104
|
+
"Uptime": "Connected to Server Uptime Successfully !",
|
|
105
|
+
"PM2": "Entering Uptime Mode !",
|
|
106
|
+
"InPm2Mode": "You Are In PM2 Uptime Mode",
|
|
107
|
+
"NotSupport": "No Server Uptime Support!",
|
|
108
|
+
"Maintenance": "Server Uptime Under Maintenance, Please Try Again Later !"
|
|
109
|
+
},
|
|
110
|
+
"Src": {
|
|
111
|
+
"AutoRestart": "Auto Restart After: %1 Minute !",
|
|
112
|
+
"OnRestart": "Mtx Uzair Progressa Restarting..."
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"Language": "en",
|
|
118
|
+
"Folder": {
|
|
119
|
+
"Index": {
|
|
120
|
+
"ErrAppState": "Appstate - Your Cookie Is Wrong, Please Replace It, Or Go To Incognito Browser Then Sign In And Try Again !",
|
|
121
|
+
"CheckPointLevelI": "CheckPoint Detected - Can't Login, Try Logout Then Login And Retrieve Appstate - Cookie !",
|
|
122
|
+
"UID": "Login as ID: %1",
|
|
123
|
+
"Area": "Welcome To Server: %1",
|
|
124
|
+
"NoAreaData": "Can't Get Area Of Account !",
|
|
125
|
+
"NoAreaDataBypass": "Can't get account area but fca ignores it 🐑",
|
|
126
|
+
"OnLogin": "Currently logged ...",
|
|
127
|
+
"InvaildAccount": "Wrong Password Or Account !",
|
|
128
|
+
"TwoAuth": "You Currently On 2 Factor Security !",
|
|
129
|
+
"InvaildTwoAuthCode": "Wrong Code Two Factor Security !",
|
|
130
|
+
"ApprovalsErr": "Error When Login With Two Factor Security !",
|
|
131
|
+
"VerifiedCheck": "Confirm From Browser, Logging In...",
|
|
132
|
+
"ForceLoginNotEnable": "Can't Login, Try Enable 'forceLogin' !",
|
|
133
|
+
"SubmitErrSuccess": "Error Report Sent To Server !",
|
|
134
|
+
"ErrorWhileSendErr": "An error occurred while trying to send an error to the server !",
|
|
135
|
+
"OnProcess": "Start the Login Process !",
|
|
136
|
+
"BackupNoti": "Changing AppState From Backup, If This Continues, Contact Fb.com/Mtxuzair",
|
|
137
|
+
"ErrGetPassWord": "Error Retrieving AppState Encryption Password !",
|
|
138
|
+
"ErrGenerateKey": "Error Creating Password For AppState !",
|
|
139
|
+
"UnsupportedDevice": "Your Operating System Is Currently Not Supported !",
|
|
140
|
+
"NotReadyToDecrypt": "Not Ready To Solve Appstate !",
|
|
141
|
+
"DecryptSuccess": "Successfully Appstate Solved !",
|
|
142
|
+
"ErrBackup": "Error When Backing Up AppState, Please Replace AppState !",
|
|
143
|
+
"DecryptFailed": "Solution Failed, Try Replacing AppState !",
|
|
144
|
+
"InvaildAppState": "AppState Not Recognized, Please Replace AppState !",
|
|
145
|
+
"YourAppStatePass": "Your AppState Password Is: %1",
|
|
146
|
+
"BackupFailed": "AppState Backup Failed !",
|
|
147
|
+
"ScreenShotConsoleAndSendToAdmin": "Take a Screenshot of This Line And Send It To Facebook: Fb.com/Mtxuzair",
|
|
148
|
+
"DoneLogin": "Complete the Login Process !",
|
|
149
|
+
"AutoCheckUpdate": "Checking for Updates !",
|
|
150
|
+
"NewVersionFound": "New Version, Ready to Update: %1 => %2",
|
|
151
|
+
"AutoUpdate": "Perform Automatic Update to the Latest Version !",
|
|
152
|
+
"UpdateSuccess": "Upgrade Version Successfully !",
|
|
153
|
+
"RestartAfterUpdate": "Rebooting For New Version To Take Effect !",
|
|
154
|
+
"UpdateFailed": "Error When Upgrading To Latest Version !",
|
|
155
|
+
"UseSupportToolAfterUpdateFailed": "Upgrade Failed, Proceed to Using Support Tools !",
|
|
156
|
+
"InstallSupportTool": "Loading Support Tools For FCA !",
|
|
157
|
+
"NotiAfterUseToolFail": "Please Fix It Yourself By Entering:",
|
|
158
|
+
"LocalVersion": "You Are Currently Using Version: %1 !",
|
|
159
|
+
"EncryptSuccess": "Encrypt Appstate Success !",
|
|
160
|
+
"ProcessDone": "Process Done: %1 !",
|
|
161
|
+
"InvaildMainColor": "%1 Is Not A Hex Color Code !",
|
|
162
|
+
"IsNotABoolean": "%1 Is Not A Boolean, Need To Be true Or false !",
|
|
163
|
+
"EncryptStateOff": "Encryption Has Been Turned Off !",
|
|
164
|
+
"InvaildOption": "Invail Option: %1",
|
|
165
|
+
"CountTime": "Total Time You Use: %1",
|
|
166
|
+
|
|
167
|
+
"AutoLogin": "AutoLogin Is On, Proceed to Log Back in!",
|
|
168
|
+
"TypeAccount": "Enter Account: ",
|
|
169
|
+
"TypePassword": "Enter a Password: ",
|
|
170
|
+
"TypeAccountError": "The account needs to be an ID or Phone number or Gmail!",
|
|
171
|
+
"ErrDataBase": "Error When Setting Auto Login Data !",
|
|
172
|
+
"SuccessSetData": "Auto Login Data Set Successfully !",
|
|
173
|
+
"Missing": "Please Code 2Fa According to the Photo's Guide in 𝐌𝐫𝐔𝐳𝐚𝐢𝐫𝐗𝐱𝐗-𝐌𝐓𝐗Fca.json Series AuthString!",
|
|
174
|
+
"EnterSecurityCode": "Enter your 2-Factor Authentication Code: ",
|
|
175
|
+
"ErrThroughCookies": "2Fa Piercing Error Occurred, Enter Code 2Fa Again! ",
|
|
176
|
+
|
|
177
|
+
"NodeVersionNotSupported": "Version: %1 is not supported, automatically download nodejs version v14",
|
|
178
|
+
"UsingNVM": "You are using nvm to control node version, please type 'nvm install 14.17.0' then type 'nvm use 14.17.0' to switch to the supported version!",
|
|
179
|
+
"DownloadingNode": "Downloading node version v14 which is supported!",
|
|
180
|
+
"NodeDownloadingComplete": "Successfully downloaded node version v14!",
|
|
181
|
+
"RestartRequire": "Download successful, user needs to restart the computer to take effect!",
|
|
182
|
+
"ErrNodeDownload": "An error occurred while automatically downloading node version 14, please contact fb.com/lazic.kanzu!",
|
|
183
|
+
"RestartingN": "Restarting the program",
|
|
184
|
+
"Rebuilding": "Rebuilding npm package to avoid errors !",
|
|
185
|
+
"ErrRebuilding": "An error occurred in the rebuilding area - npm install",
|
|
186
|
+
"SuccessRebuilding": "Successfully rebuilt !",
|
|
187
|
+
"UnableToConnect": "An error occurred while connecting to the instant action server, please check your wifi connection!",
|
|
188
|
+
"EVMChange": "Changing replit.nix to support node v14!",
|
|
189
|
+
"EVMChangeSuccess": "Successfully changed replit.nix, go ahead and restart!",
|
|
190
|
+
|
|
191
|
+
"2FaBypassCheckpoint": "The account you are trying to log in to with 2FA has encountered a checkpoint error. There is currently no fix for 2FA checkpoints. Please contact Fb.com/Mtxuzair for detailed troubleshooting instructions.\n\n ERROR CODE: %1",
|
|
192
|
+
|
|
193
|
+
"Ws_TypeUserName": "Please enter a username for your websocket extension account: ",
|
|
194
|
+
"Ws_TypePassWord": "Please enter a password for your websocket extension account: ",
|
|
195
|
+
"Ws_Success": "Successfully set data for websocket extension!",
|
|
196
|
+
"Ws_2Fa": "This is your two-factor authentication (2FA) code for horizon_extension. Please use Google Authenticator to retrieve the backup code in case you forget your password or require verification.\n\n=> Here: %1",
|
|
197
|
+
"Ws_2Fa_Check": "Please enter your 2FA code from the authentication app: ",
|
|
198
|
+
|
|
199
|
+
"Bypass_956": "Testing to see if you get checkpoint 956 or not!",
|
|
200
|
+
"Bypass_AutoNoti": "Successfully passed the behavior warning!",
|
|
201
|
+
|
|
202
|
+
"WishMessage": [
|
|
203
|
+
"Have a Nice Day !",
|
|
204
|
+
"Hello how are you !",
|
|
205
|
+
"Thank You For Using Uzair Sehar FCA !"
|
|
206
|
+
]
|
|
207
|
+
},
|
|
208
|
+
"ExtraGetThread": {
|
|
209
|
+
"CreateDatabaseSuccess": "Successfully Initiate Database for Group: %1",
|
|
210
|
+
"CreateDatabaseFailure": "Initialization of Group Database Failure: %1",
|
|
211
|
+
"alreadyUpdate": "%1 Ready to Update Database",
|
|
212
|
+
"updateDataSuccess": "Data Update for Group %1 Success!",
|
|
213
|
+
"updateDataFailure": "Data Update for Group %1 Failed!"
|
|
214
|
+
},
|
|
215
|
+
"ExtraUpTime": {
|
|
216
|
+
"Uptime": "Connecting To Server Uptime Succeeds!",
|
|
217
|
+
"PM2": "Trying to PM2 Mode!",
|
|
218
|
+
"InPm2Mode": "You Are In Uptime PM2 Mode !",
|
|
219
|
+
"NotSupport": "Your Operating System does not currently support Uptime Server !",
|
|
220
|
+
"Maintenance": "Server Uptime In Maintenance, Try Again Later!"
|
|
221
|
+
},
|
|
222
|
+
"Src": {
|
|
223
|
+
"AutoRestart": "Automatically Restart After: %1 Minutes !",
|
|
224
|
+
"OnRestart": "Restarting..."
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
]
|