forked from danog/MadelineProto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLang.php
2059 lines (2054 loc) · 205 KB
/
Lang.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php declare(strict_types=1);
/**
* Lang module.
*
* This file is part of MadelineProto.
* MadelineProto is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
* MadelineProto is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Affero General Public License for more details.
* You should have received a copy of the GNU General Public License along with MadelineProto.
* If not, see <http://www.gnu.org/licenses/>.
*
* @author Daniil Gentili <[email protected]>
* @copyright 2016-2023 Daniil Gentili <[email protected]>
* @license https://opensource.org/licenses/AGPL-3.0 AGPLv3
* @link https://docs.madelineproto.xyz MadelineProto documentation
*/
namespace danog\MadelineProto;
/** @internal */
final class Lang
{
public const PERCENTAGES = [
'zh_Hans' => 100,
'en' => 100,
'fr' => 36,
'de' => 0,
'he' => 74,
'it' => 100,
'ckb' => 74,
'fa' => 100,
'pt' => 0,
'ru' => 58,
'uz' => 75,
];
public static int $currentPercentage = 100;
public static array $lang = [
'ckb' =>
[
'2fa_uncalled' => 'چاوەڕێی پاسۆردەکە ناکەم! تکایە سەرەتا پەیوەندی بە phoneLogin و شێوازەکانی completePhoneLogin بکەن!',
'accepting_call' => 'وەرگرتنی پەیوەندی لە %s...',
'account_banned' => '!!!!!!! WARNING !!!!!!!
Telegram\'s flood prevention system suspended this account.
To continue, manual verification is required.
Send an email to [email protected], asking to unban the phone number %s, and shortly describe what will you do with this phone number.
Then login again.
If you intentionally deleted this account, ignore this message.',
'already_loggedIn' => 'ئەم نموونەیەی MadelineProto پێشتر چووەتە ژوورەوە!',
'apiAppInstructionsAuto0' => 'ناوی ئەپەکە بنووسە، دەتوانێت هەر شتێک بێت: ',
'apiAppInstructionsAuto1' => 'ناوی کورتی ئەپەکە بنووسە، ئەلفوبێی ژمارەیی، ٥-٣٢ پیت: ',
'apiAppInstructionsAuto2' => 'URL ی ئەپ/ماڵپەڕەکە دابنێ، یان t.me/yourusername: ',
'apiAppInstructionsAuto3' => 'چوونە ناو پلاتفۆرمی ئەپەکە: ',
'apiAppInstructionsAuto4' => 'باسی ئەپەکەت بکە: ',
'apiAppInstructionsAutoTypeOther' => 'شتی تر (لە وەسفدا دیاری بکە)',
'apiAppInstructionsManual0' => 'ناوی ئەپەکەت دەتوانێت هەر شتێک بێت',
'apiAppInstructionsManual1' => 'ناوی کورتی ئەپەکەت، ئەلفوبێی ژمارەیی، ٥-٣٢ پیت',
'apiAppInstructionsManual2' => 'URL ی ئەپ/ماڵپەڕەکەت، یان t.me/yourusername',
'apiAppInstructionsManual3' => 'هەر شتێک',
'apiAppInstructionsManual4' => 'لێرەدا باسی ئەپەکەت بکە',
'apiAppWeb' => 'زانیارییەکانی API داخڵ بکە',
'apiAutoPrompt0' => 'ژمارەی تەلەفۆنێک داخڵ بکە کە پێشتر لە تێلێگرام تۆمار کراوە: ',
'apiAutoPrompt1' => 'ئەو کۆدەی پشتڕاستکردنەوە کە لە تێلێگرام وەرتگرتووە داخڵ بکە: ',
'apiAutoWeb' => 'ژمارەیەکی تەلەفۆن دابنێ کە <b>پێشتر تۆمارکراوە</b> لە تێلێگرام بۆ بەدەستهێنانی ناسنامەی API',
'apiChooseManualAutoTip' => 'تێبینی بکە کە دەتوانیت API ID/hash ڕاستەوخۆ لە کۆدەکەدا دابین بکەیت بە بەکارهێنانی ڕێکخستنەکان: %s',
'apiChooseManualAutoTipWeb' => 'تێبینی بکە کە دەتوانیت API ID/hash ڕاستەوخۆ لە کۆدەکەدا دابین بکەیت بە بەکارهێنانی <a target="_blank" href="%s">ڕێکخستنەکان</a>.',
'apiChoosePrompt' => 'هەڵبژاردەی تۆ: ',
'apiError' => 'هەڵە: %s. دووبارە هەوڵبدەرەوە.',
'apiManualInstructions0' => 'چوونەژوورەوە بۆ https://my.telegram.org',
'apiManualInstructions1' => 'بڕۆ بۆ ئامرازەکانی پەرەپێدانی API',
'apiManualInstructions2' => 'کلیک لەسەر create application بکە',
'apiManualPrompt0' => 'ناسنامەی API ی خۆت دابنێ: ',
'apiManualPrompt1' => 'هاشی API ەکەت بنووسە: ',
'apiManualWeb' => 'API ID و API هاشەکەت دابنێ',
'apiParamsError' => 'تۆ هەموو پارامێتەرەکانی پێویستت دابین نەکردووە!',
'api_not_set' => 'پێویستە کلیلی api و api id دابین بکەیت، خۆت @ my.telegram.org بەدەست بهێنە',
'array_invalid' => 'تۆ ڕیزبەندییەکی دروستت دابین نەکردووە',
'baseDirLimitation' => 'A basedir limitation is configured: this can impact performance and cause some issues, please disable it if possible!',
'bool_error' => 'نەتوانرا boolean دەربهێنرێت',
'botAlreadyRunning' => 'The bot is already running!',
'botapi_conversion_error' => 'ناتوانرێت %s بگۆڕێت بۆ ئۆبجێکتی API بۆت',
'call_already_accepted' => 'پەیوەندی %s پێشتر وەرگیراوە',
'call_already_declined' => 'پەیوەندی %s پێشتر ڕەتکراوەتەوە',
'call_completing' => 'تەواوکردنی پەیوەندی لە %s...',
'call_confirming' => 'پشتڕاستکردنەوەی پەیوەندی لە %s...',
'call_discarding' => 'فڕێدانی پەیوەندی %s...',
'call_error_1' => 'نەتوانرا پەیوەندی %s بدۆزرێتەوە و وەریبگرێت',
'call_error_2' => 'نەتوانرا پەیوەندی %s بدۆزرێتەوە و پشتڕاستی بکاتەوە',
'call_error_3' => 'نەتوانرا پەیوەندی %s بدۆزرێتەوە و تەواو بکات',
'cli_need_dl.php_link' => 'Please specify a download script URL when using getDownloadLink via CLI!',
'constructor_not_found' => 'Constructor نەدۆزرایەوە بۆ جۆری: ',
'could_not_connect_to_MadelineProto' => 'Could not connect to MadelineProto, please enable proc_open and remove open_basedir restrictions or disable webserver path rewrites to fix! If you already did that, make sure the CLI version of PHP is exactly the same as the web version (same version, extensions, et cetera) and check out the MadelineProto.log file for more info about the error that prevented the IPC server from starting.',
'could_not_convert_object' => 'Could not convert object of type %s',
'deserialization_error' => 'هەڵەیەک لە کاتی ڕیزبەندیکردندا ڕوویدا',
'dl.php_check_logs_make_sure_session_running' => 'Either the associated MadelineProto EventHandler bot or the MadelineProto IPC server are offline, please check logs and make sure at least one of them is running!',
'dl.php_powered_by_madelineproto' => 'Telegram file download server (up to 4GB), powered by <a href="https://docs.madelineproto.xyz" target="_blank">MadelineProto</a>!<br>Click <a href="https://docs.madelineproto.xyz/docs/FILES.html#getting-a-download-link" target="_blank">here</a> for more info on how to setup your very own Telegram file download server!',
'do_not_delete_MadelineProto.log' => 'the MadelineProto.log file must never be deleted, please set a custom max size in the settings, instead!',
'do_not_remove_MadelineProto.log_phar' => 'Please do not remove madeline.phar or madeline.php, or else MadelineProto will crash. If you have any problem with MadelineProto, report it to https://github.com/danog/MadelineProto or https://t.me/pwrtelegramgroup',
'do_not_use_blocking_class' => 'for performance reasons, handlers may not use the non-async blocking class %s, please use %s, instead',
'do_not_use_blocking_function' => 'for performance reasons, event handlers may not use the non-async blocking function %s, please use %s, instead',
'do_not_use_deprecated_function' => 'the %s function is deprecated, please use %s, instead',
'do_not_use_non_root_require_in_event_handler' => 'for performance reasons, you must not use require or include inside of an event handler class, only root-level requires are allowed.',
'do_not_use_yield' => 'MadelineProto 8 does not require or support the use of yield in async functions, you must remove all yield keywords previously used for async function calls',
'done' => 'تەواو!',
'encode_double_error' => 'نەتوانرا بە باشی دووانە کۆد بکات',
'extensionRecommended' => 'Warning: the %s extension is not installed, please install it to speed up MadelineProto!',
'extensionRequired' => 'MadelineProto requires the %s extension to run. %s',
'extensionRequiredInstallWithApt' => 'Try running sudo apt-get install %s.',
'extensionRequiredInstallWithCustomInstructions' => 'Follow the instructions at %s to install it.',
'file_not_exist' => 'فایلهکه بوونی نییه',
'file_parsing' => 'پارسکردنی %s...',
'file_type_invalid' => 'جۆری پەڕگەی نادروست دۆزراوەتەوە (%s)',
'fingerprint_invalid' => 'پەنجەمۆری کلیل نادروستە!',
'go' => 'بڕۆ',
'invalid_dl.php_session' => '%s is not a valid download script because its session ID is different (expected %s, got %s)',
'length_too_big' => 'درێژی زۆر گەورەیە',
'loginBot' => 'تۆکنی بۆتەکەت بنووسە: ',
'loginBotTokenWeb' => 'بۆت تۆکن',
'loginChoosePromptWeb' => 'دەتەوێت وەک بەکارهێنەر یان وەک بۆت بچیتە ژوورەوە؟',
'loginManual' => 'یان دەتوانیت تۆکنێکی بۆت یان ژمارەی تەلەفۆنیش دابنێیت بۆ ئەوەی بە دەستی بچیتە ژوورەوە: ',
'loginNoCode' => 'تۆ کۆدی تەلەفۆنت بۆ دابین نەکرد!',
'loginNoName' => 'ناوی یەکەمتان دابین نەکردووە!',
'loginNoPass' => 'تۆ پاسۆردەکەت دابین نەکرد!',
'loginOptionBot' => 'بۆت',
'loginOptionUser' => 'بەکارهێنەر',
'loginQr' => 'کۆدی QR ی سەرەوە سکان بکە بۆ ئەوەی بە شێوەیەکی ئۆتۆماتیکی بچیتە ژوورەوە.',
'loginQrCodeExpired' => 'کۆدی QR بەسەرچوو، کۆدی نوێی دروستکرد...',
'loginQrCodeSuccessful' => 'چوونەژوورەوەی کۆدی QR سەرکەوتوو بوو!',
'loginUser' => 'ژمارەی مۆبایلت داخل بکە: ',
'loginUserCode' => 'کۆدەکە داخڵ بکە: ',
'loginUserPass' => 'وشەی نهێنی خۆت بنووسە (ئاماژە %s): ',
'loginUserPassHint' => 'ئاماژە: %s',
'loginUserPassWeb' => 'ژمارەی نهێنییەکەت داخل بکە: ',
'loginUserPhoneCodeWeb' => 'کۆد',
'loginUserPhoneWeb' => 'ژمارەی تەلەفۆن',
'loginWebQr' => 'هەروەها دەتوانیت بە شێوەیەکی ئۆتۆماتیکی بچیتە ژوورەوە بە سکانکردنی ئەم QR کۆدە:',
'loginWebQr1' => 'لە مۆبایلەکەتدا تێلێگرام بکەرەوە',
'loginWebQr2' => 'بڕۆ بۆ ڕێکخستنەکان > ئامێرەکان > بەستنەوەی ئامێری سەر مێز',
'loginWebQr3' => 'بۆ پشتڕاستکردنەوەی چوونەژوورەوە مۆبایلەکەت ئاراستەی ئەم شاشەیە بکە',
'login_2fa_enabled' => '2FA چالاک کراوە، دەبێت بانگی فەنکشنی complete2falogin بکەیت...',
'login_auth_key' => 'چوونە ژوورەوە بە بەکارهێنانی کلیلی auth...',
'login_bot' => 'چوونە ژوورەوە وەک بۆتێک...',
'login_code_sending' => 'ناردنی کۆد...',
'login_code_sent' => 'کۆد بە سەرکەوتوویی نێردراوە! کاتێک کۆدەکەت وەرگرت پێویستە فەنکشنی completePhoneLogin بەکاربهێنیت.',
'login_code_uncalled' => 'چاوەڕێی کۆدەکە ناکەم! تکایە سەرەتا پەیوەندی بە شێوازی phoneLogin بکەن',
'login_need_signup' => 'ئەکاونتێک بۆ ئەم ژمارەیە دروست نەکراوە، دەبێت پەیوەندی بە فەنکشنی completeSignup بکەیت...',
'login_ok' => 'بە سەرکەوتوویی چوونەژوورەوە!',
'login_user' => 'چوونە ژوورەوە وەک بەکارهێنەرێکی ئاسایی...',
'logout_ok' => 'بە سەرکەوتوویی دەرچووە!',
'long_not_16' => 'بەهای پێدراو درێژییەکەی ١٦ بایت نییە',
'long_not_32' => 'بەهای پێدراو درێژییەکەی ٣٢ بایت نییە',
'long_not_64' => 'بەهای پێدراو درێژییەکەی ٦٤ بایت نییە',
'madelineproto_ready' => 'MadelineProto ئامادەیە!',
'manualAdminActionRequired' => '!!!!!!!!! MANUAL SYSTEM ADMIN ACTION REQUIRED !!!!!!!!!',
'method_not_found' => 'نەتوانرا شێواز بدۆزرێتەوە: ',
'mmapErrorPart1' => 'The maximum number of memory mapped (mmap) regions was reached (%s): please increase the vm.max_map_count kernel config to 262144 to fix.',
'mmapErrorPart2' => 'To fix, run the following command as root: %s',
'mmapErrorPart3' => 'To persist the change across reboots: %s',
'mmapErrorPart4' => 'On Windows and WSL, increasing the size of the pagefile might help; please switch to native Linux if the issue persists.',
'must_have_declare_types' => 'for performance reasons, the first statement of an event handler file must be "declare(strict_types=1);"',
'nearest_dc' => 'ئێمە لە %s داین، نزیکترین DC %d ە.',
'need_dl.php' => 'Could not generate default download script (%s), please create a dl.php file with the following content: %s and pass its URL to the second parameter of getDownloadLink',
'noReportPeers' => 'Warning: no report peers are set, please add the following method to your event handler',
'non_text_conversion' => 'هێشتا ناتوانرێت نامە نا کورتەکان بگۆڕدرێت!',
'not_loggedIn' => 'من چوومەتە ژوورەوە!',
'not_numeric' => 'بەهای پێدراو ژمارەیی نییە',
'params_missing' => 'پارامێتری پێویست نەماوە',
'peer_not_in_db' => 'ئەم هاوتایە لە بنکەدراوەی ناوخۆیی هاوتادا ئامادە نییە',
'plugin_path_does_not_exist' => 'Plugin path %s does not exist!',
'plugins_do_not_use_require' => 'for performance reasons, plugins can only automatically include or require other files present in the plugins folder by triggering the PSR-4 autoloader (not by manually require()\'ing them).',
'plugins_must_have_exactly_one_class' => 'a plugin must define exactly one class! To define multiple classes, interfaces or traits, create separate files, they will be autoloaded by MadelineProto automatically.',
'predicate_not_set' => 'پێشبینی (بەهای ژێر _) دانەنرابوو!',
'recommend_not_use_filesystem_function' => 'usage of the %s function is not recommended, because accessing the filesystem during update handling will slow down your bot, please see https://docs.madelineproto.xyz/docs/UPDATES.html#avoiding-the-use-of-filesystem-functions for a list of alternative ways to store data that will not slow down your bot!',
'rpc_tg_error' => 'تێلێگرام هەڵەیەکی RPC ی گەڕاندەوە: %s (%s)، کە بەهۆی %s:%s%sTL شوێنپێهەڵگرتنەوە دروست بووە:',
'sec_peer_not_in_db' => 'ئەم هاوتا نهێنییە لە بنکەدراوەی ناوخۆیی هاوتادا ئامادە نییە',
'secret_chat_skipping' => 'من چاتی نهێنی %sم لە بنکەدراوەدا نییە، نامەکەم بەجێهێشتووە...',
'serialization_ofd' => 'زنجیرەییکردن بەسەرچووە، دووبارە بنیاتنانەوەی ئۆبجێکتی!',
'session_corrupted' => 'دانیشتنەکە گەندەڵ بووە!',
'signing_up' => 'ناو تۆمارکردن وەک بەکارهێنەرێکی ئاسایی...',
'signupFirstName' => 'ناوی یەکەمی خۆت بنووسە: ',
'signupFirstNameWeb' => 'ناوی یەکەم',
'signupLastName' => 'ناوی کۆتایی خۆت بنووسە (دەتوانێت بەتاڵ بێت): ',
'signupLastNameWeb' => 'ناوی کۆتایی',
'signupWeb' => 'تکایە ناوت تۆمار بکە',
'signup_ok' => 'بە سەرکەوتوویی ناوت تۆمار کرد!',
'signup_uncalled' => 'چاوەڕێی ناو تۆمارکردن ناکەم! تکایە سەرەتا پەیوەندی بە phoneLogin و شێوازەکانی completePhoneLogin بکەن!',
'src_file_invalid' => 'پەڕگەی سەرچاوەی نادروست دابین کرا: ',
'static_analysis_minor' => 'A minor issue was encountered during static analysis of %s: %s',
'static_analysis_severe' => 'A severe issue was encountered during static analysis of %s: %s',
'stream_handle_invalid' => 'دەستەیەکی نادروستی سترێم دابین کرابوو.',
'string_required' => 'A string was expected!',
'translate_madelineproto_cli' => 'MadelineProto can be translated in your language (current translation progress: %d%%), go to https://weblate.madelineproto.xyz to contribute with the translation!',
'translate_madelineproto_web' => 'MadelineProto can be translated in your language (current translation progress: %d%%), click <a href="https://weblate.madelineproto.xyz" target="_blank">here to contribute with the translation!</a>',
'type_extract_error' => 'نەتوانرا جۆری "%s" دەربهێنرێت، پێویستە MadelineProto نوێ بکەیتەوە!',
'type_extract_error_id' => 'نەتوانرا جۆری: %s بە id %s دەربهێنرێت، پێویستە MadelineProto نوێ بکەیتەوە!',
'update_madelineproto' => 'You\'re running an old version of MadelineProto, an update is required: currently running %s, but the latest version with multiple bugfixes and new features is %s!',
'value_bigger_than_2147483647' => 'بەهای دابینکراو %s گەورەترە لە 2147483647',
'value_bigger_than_4294967296' => 'بەهای مەرجدار %s گەورەترە لە 4294967296',
'value_bigger_than_9223372036854775807' => 'بەهای دابینکراو %s گەورەترە لە 9223372036854775807',
'value_smaller_than_0' => 'بەهای بە مەرجێک %s بچووکترە لە 0',
'value_smaller_than_2147483648' => 'بەهای دابینکراو %s بچووکترە لە -2147483648',
'value_smaller_than_9223372036854775808' => 'بەهای دابینکراو %s بچووکترە لە -9223372036854775808',
'waveform_must_have_100_values' => 'A waveform array must have 100 values!',
'waveform_value' => 'A waveform value must be between 0 and 31!',
'windows_warning' => 'For Windows users: please switch to Linux if this fails. You can also try modifying the firewall settings to allow all PHP processes to create sockets (it\'s 100% easier to just switch to Linux, on Linux MadelineProto just works out of the box, no changes needed)',
],
'de' =>
[
'2fa_uncalled' => 'I\'m not waiting for the password! Please call the phoneLogin and the completePhoneLogin methods first!',
'accepting_call' => 'Accepting call from %s...',
'account_banned' => '!!!!!!! WARNING !!!!!!!
Telegram\'s flood prevention system suspended this account.
To continue, manual verification is required.
Send an email to [email protected], asking to unban the phone number %s, and shortly describe what will you do with this phone number.
Then login again.
If you intentionally deleted this account, ignore this message.',
'already_loggedIn' => 'This instance of MadelineProto is already logged in!',
'apiAppInstructionsAuto0' => 'Enter the app\'s name, can be anything: ',
'apiAppInstructionsAuto1' => 'Enter the app\'s short name, alphanumeric, 5-32 characters: ',
'apiAppInstructionsAuto2' => 'Enter the app/website\'s URL, or t.me/yourusername: ',
'apiAppInstructionsAuto3' => 'Enter the app platform: ',
'apiAppInstructionsAuto4' => 'Describe your app: ',
'apiAppInstructionsAutoTypeOther' => 'Other (specify in description)',
'apiAppInstructionsManual0' => 'your app\'s name, can be anything',
'apiAppInstructionsManual1' => 'your app\'s short name, alphanumeric, 5-32 characters',
'apiAppInstructionsManual2' => 'your app/website\'s URL, or t.me/yourusername',
'apiAppInstructionsManual3' => 'anything',
'apiAppInstructionsManual4' => 'Describe your app here',
'apiAppWeb' => 'Enter API information',
'apiAutoPrompt0' => 'Enter a phone number that is already registered on Telegram: ',
'apiAutoPrompt1' => 'Enter the verification code you received in Telegram: ',
'apiAutoWeb' => 'Enter a phone number that is <b>already registered</b> on telegram to get the API ID',
'apiChooseManualAutoTip' => 'Note that you can also provide the API ID/hash directly in the code using the settings: %s',
'apiChooseManualAutoTipWeb' => 'Note that you can also provide the API ID/hash directly in the code using the <a target="_blank" href="%s">settings</a>.',
'apiChoosePrompt' => 'Your choice (m/a): ',
'apiError' => 'ERROR: %s. Try again.',
'apiManualInstructions0' => 'Login to https://my.telegram.org',
'apiManualInstructions1' => 'Go to API development tools',
'apiManualInstructions2' => 'Click on create application',
'apiManualPrompt0' => 'Enter your API ID: ',
'apiManualPrompt1' => 'Enter your API hash: ',
'apiManualWeb' => 'Enter your API ID and API hash',
'apiParamsError' => 'You didn\'t provide all of the required parameters!',
'api_not_set' => 'You must provide an api key and an api id, get your own @ my.telegram.org',
'array_invalid' => 'You didn\'t provide a valid array',
'baseDirLimitation' => 'A basedir limitation is configured: this can impact performance and cause some issues, please disable it if possible!',
'bool_error' => 'Could not extract boolean',
'botAlreadyRunning' => 'The bot is already running!',
'botapi_conversion_error' => 'Can\'t convert %s to a bot API object',
'call_already_accepted' => 'Call %s already accepted',
'call_already_declined' => 'Call %s already declined',
'call_completing' => 'Completing call from %s...',
'call_confirming' => 'Confirming call from %s...',
'call_discarding' => 'Discarding call %s...',
'call_error_1' => 'Could not find and accept call %s',
'call_error_2' => 'Could not find and confirm call %s',
'call_error_3' => 'Could not find and complete call %s',
'cli_need_dl.php_link' => 'Please specify a download script URL when using getDownloadLink via CLI!',
'constructor_not_found' => 'Constructor not found for type: ',
'could_not_connect_to_MadelineProto' => 'Could not connect to MadelineProto, please enable proc_open and remove open_basedir restrictions or disable webserver path rewrites to fix! If you already did that, make sure the CLI version of PHP is exactly the same as the web version (same version, extensions, et cetera) and check out the MadelineProto.log file for more info about the error that prevented the IPC server from starting.',
'could_not_convert_object' => 'Could not convert object of type %s',
'deserialization_error' => 'An error occurred on deserialization',
'dl.php_check_logs_make_sure_session_running' => 'Either the associated MadelineProto EventHandler bot or the MadelineProto IPC server are offline, please check logs and make sure at least one of them is running!',
'dl.php_powered_by_madelineproto' => 'Telegram file download server (up to 4GB), powered by <a href="https://docs.madelineproto.xyz" target="_blank">MadelineProto</a>!<br>Click <a href="https://docs.madelineproto.xyz/docs/FILES.html#getting-a-download-link" target="_blank">here</a> for more info on how to setup your very own Telegram file download server!',
'do_not_delete_MadelineProto.log' => 'the MadelineProto.log file must never be deleted, please set a custom max size in the settings, instead!',
'do_not_remove_MadelineProto.log_phar' => 'Please do not remove madeline.phar or madeline.php, or else MadelineProto will crash. If you have any problem with MadelineProto, report it to https://github.com/danog/MadelineProto or https://t.me/pwrtelegramgroup',
'do_not_use_blocking_class' => 'for performance reasons, handlers may not use the non-async blocking class %s, please use %s, instead',
'do_not_use_blocking_function' => 'for performance reasons, event handlers may not use the non-async blocking function %s, please use %s, instead',
'do_not_use_deprecated_function' => 'the %s function is deprecated, please use %s, instead',
'do_not_use_non_root_require_in_event_handler' => 'for performance reasons, you must not use require or include inside of an event handler class, only root-level requires are allowed.',
'do_not_use_yield' => 'MadelineProto 8 does not require or support the use of yield in async functions, you must remove all yield keywords previously used for async function calls',
'done' => 'Done!',
'encode_double_error' => 'Could not properly encode double',
'extensionRecommended' => 'Warning: the %s extension is not installed, please install it to speed up MadelineProto!',
'extensionRequired' => 'MadelineProto requires the %s extension to run. %s',
'extensionRequiredInstallWithApt' => 'Try running sudo apt-get install %s.',
'extensionRequiredInstallWithCustomInstructions' => 'Follow the instructions at %s to install it.',
'file_not_exist' => 'File does not exist',
'file_parsing' => 'Parsing %s...',
'file_type_invalid' => 'Invalid file type detected (%s)',
'fingerprint_invalid' => 'Invalid key fingerprint!',
'go' => 'Go',
'invalid_dl.php_session' => '%s is not a valid download script because its session ID is different (expected %s, got %s)',
'length_too_big' => 'Length is too big',
'loginBot' => 'Enter your bot token: ',
'loginBotTokenWeb' => 'Bot token',
'loginChoosePromptWeb' => 'Do you want to login as a user or as a bot?',
'loginManual' => 'Alternatively, you can also enter a bot token or phone number to login manually: ',
'loginNoCode' => 'You didn\'t provide a phone code!',
'loginNoName' => 'You didn\'t provide the first name!',
'loginNoPass' => 'You didn\'t provide the password!',
'loginOptionBot' => 'Bot',
'loginOptionUser' => 'User',
'loginQr' => 'Scan the above QR code to login automatically.',
'loginQrCodeExpired' => 'The QR code expired, generating a new one...',
'loginQrCodeSuccessful' => 'QR code login successful!',
'loginUser' => 'Enter your phone number: ',
'loginUserCode' => 'Enter the code: ',
'loginUserPass' => 'Enter your password (hint %s): ',
'loginUserPassHint' => 'Hint: %s',
'loginUserPassWeb' => 'Enter your password: ',
'loginUserPhoneCodeWeb' => 'Code',
'loginUserPhoneWeb' => 'Phone number',
'loginWebQr' => 'You can also login automatically by scanning the following QR code:',
'loginWebQr1' => 'Open Telegram on your phone',
'loginWebQr2' => 'Go to Settings > Devices > Link Desktop Device',
'loginWebQr3' => 'Point your phone at this screen to confirm login',
'login_2fa_enabled' => '2FA enabled, you will have to call the complete2falogin function...',
'login_auth_key' => 'Logging in using auth key...',
'login_bot' => 'Logging in as a bot...',
'login_code_sending' => 'Sending code...',
'login_code_sent' => 'Code sent successfully! Once you receive the code you should use the completePhoneLogin function.',
'login_code_uncalled' => 'I\'m not waiting for the code! Please call the phoneLogin method first',
'login_need_signup' => 'An account has not been created for this number, you will have to call the completeSignup function...',
'login_ok' => 'Logged in successfully!',
'login_user' => 'Logging in as a normal user...',
'logout_ok' => 'Logged out successfully!',
'long_not_16' => 'Given value is not 16 bytes long',
'long_not_32' => 'Given value is not 32 bytes long',
'long_not_64' => 'Given value is not 64 bytes long',
'madelineproto_ready' => 'MadelineProto is ready!',
'manualAdminActionRequired' => '!!!!!!!!! MANUAL SYSTEM ADMIN ACTION REQUIRED !!!!!!!!!',
'method_not_found' => 'Could not find method: ',
'mmapErrorPart1' => 'The maximum number of memory mapped (mmap) regions was reached (%s): please increase the vm.max_map_count kernel config to 262144 to fix.',
'mmapErrorPart2' => 'To fix, run the following command as root: %s',
'mmapErrorPart3' => 'To persist the change across reboots: %s',
'mmapErrorPart4' => 'On Windows and WSL, increasing the size of the pagefile might help; please switch to native Linux if the issue persists.',
'must_have_declare_types' => 'for performance reasons, the first statement of an event handler file must be "declare(strict_types=1);"',
'nearest_dc' => 'We\'re in %s, nearest DC is %d.',
'need_dl.php' => 'Could not generate default download script (%s), please create a dl.php file with the following content: %s and pass its URL to the second parameter of getDownloadLink',
'noReportPeers' => 'Warning: no report peers are set, please add the following method to your event handler',
'non_text_conversion' => 'Can\'t convert non text messages yet!',
'not_loggedIn' => 'I\'m not logged in!',
'not_numeric' => 'Given value isn\'t numeric',
'params_missing' => 'Missing required parameter',
'peer_not_in_db' => 'This peer is not present in the internal peer database',
'plugin_path_does_not_exist' => 'Plugin path %s does not exist!',
'plugins_do_not_use_require' => 'for performance reasons, plugins can only automatically include or require other files present in the plugins folder by triggering the PSR-4 autoloader (not by manually require()\'ing them).',
'plugins_must_have_exactly_one_class' => 'a plugin must define exactly one class! To define multiple classes, interfaces or traits, create separate files, they will be autoloaded by MadelineProto automatically.',
'predicate_not_set' => 'Predicate (value under _) was not set!',
'recommend_not_use_filesystem_function' => 'usage of the %s function is not recommended, because accessing the filesystem during update handling will slow down your bot, please see https://docs.madelineproto.xyz/docs/UPDATES.html#avoiding-the-use-of-filesystem-functions for a list of alternative ways to store data that will not slow down your bot!',
'rpc_tg_error' => 'Telegram returned an RPC error: %s (%s), caused by %s:%s%sTL trace:',
'sec_peer_not_in_db' => 'This secret peer is not present in the internal peer database',
'secret_chat_skipping' => 'I do not have the secret chat %s in the database, skipping message...',
'serialization_ofd' => 'Serialization is out of date, reconstructing object!',
'session_corrupted' => 'The session is corrupted!',
'signing_up' => 'Signing up as a normal user...',
'signupFirstName' => 'Enter your first name: ',
'signupFirstNameWeb' => 'First name',
'signupLastName' => 'Enter your last name (can be empty): ',
'signupLastNameWeb' => 'Last name',
'signupWeb' => 'Sign up please',
'signup_ok' => 'Signed up in successfully!',
'signup_uncalled' => 'I\'m not waiting to signup! Please call the phoneLogin and the completePhoneLogin methods first!',
'src_file_invalid' => 'Invalid source file was provided: ',
'static_analysis_minor' => 'A minor issue was encountered during static analysis of %s: %s',
'static_analysis_severe' => 'A severe issue was encountered during static analysis of %s: %s',
'stream_handle_invalid' => 'An invalid stream handle was provided.',
'string_required' => 'A string was expected!',
'translate_madelineproto_cli' => 'MadelineProto can be translated in your language (current translation progress: %d%%), go to https://weblate.madelineproto.xyz to contribute with the translation!',
'translate_madelineproto_web' => 'MadelineProto can be translated in your language (current translation progress: %d%%), click <a href="https://weblate.madelineproto.xyz" target="_blank">here to contribute with the translation!</a>',
'type_extract_error' => 'Could not extract type "%s", you should update MadelineProto!',
'type_extract_error_id' => 'Could not extract type: %s with id %s, you should update MadelineProto!',
'update_madelineproto' => 'You\'re running an old version of MadelineProto, an update is required: currently running %s, but the latest version with multiple bugfixes and new features is %s!',
'value_bigger_than_2147483647' => 'Provided value %s is bigger than 2147483647',
'value_bigger_than_4294967296' => 'Provided value %s is bigger than 4294967296',
'value_bigger_than_9223372036854775807' => 'Provided value %s is bigger than 9223372036854775807',
'value_smaller_than_0' => 'Provided value %s is smaller than 0',
'value_smaller_than_2147483648' => 'Provided value %s is smaller than -2147483648',
'value_smaller_than_9223372036854775808' => 'Provided value %s is smaller than -9223372036854775808',
'waveform_must_have_100_values' => 'A waveform array must have 100 values!',
'waveform_value' => 'A waveform value must be between 0 and 31!',
'windows_warning' => 'For Windows users: please switch to Linux if this fails. You can also try modifying the firewall settings to allow all PHP processes to create sockets (it\'s 100% easier to just switch to Linux, on Linux MadelineProto just works out of the box, no changes needed)',
],
'en' =>
[
'2fa_uncalled' => 'I\'m not waiting for the password! Please call the phoneLogin and the completePhoneLogin methods first!',
'accepting_call' => 'Accepting call from %s...',
'account_banned' => '!!!!!!! WARNING !!!!!!!
Telegram\'s flood prevention system suspended this account.
To continue, manual verification is required.
Send an email to [email protected], asking to unban the phone number %s, and shortly describe what will you do with this phone number.
Then login again.
If you intentionally deleted this account, ignore this message.',
'already_loggedIn' => 'This instance of MadelineProto is already logged in!',
'apiAppInstructionsAuto0' => 'Enter the app\'s name, can be anything: ',
'apiAppInstructionsAuto1' => 'Enter the app\'s short name, alphanumeric, 5-32 characters: ',
'apiAppInstructionsAuto2' => 'Enter the app/website\'s URL, or t.me/yourusername: ',
'apiAppInstructionsAuto3' => 'Enter the app platform: ',
'apiAppInstructionsAuto4' => 'Describe your app: ',
'apiAppInstructionsAutoTypeOther' => 'Other (specify in description)',
'apiAppInstructionsManual0' => 'your app\'s name, can be anything',
'apiAppInstructionsManual1' => 'your app\'s short name, alphanumeric, 5-32 characters',
'apiAppInstructionsManual2' => 'your app/website\'s URL, or t.me/yourusername',
'apiAppInstructionsManual3' => 'anything',
'apiAppInstructionsManual4' => 'Describe your app here',
'apiAppWeb' => 'Enter API information',
'apiAutoPrompt0' => 'Enter a phone number that is already registered on Telegram: ',
'apiAutoPrompt1' => 'Enter the verification code you received in Telegram: ',
'apiAutoWeb' => 'Enter a phone number that is <b>already registered</b> on telegram to get the API ID',
'apiChooseManualAutoTip' => 'Note that you can also provide the API ID/hash directly in the code using the settings: %s',
'apiChooseManualAutoTipWeb' => 'Note that you can also provide the API ID/hash directly in the code using the <a target="_blank" href="%s">settings</a>.',
'apiChoosePrompt' => 'Your choice (m/a): ',
'apiError' => 'ERROR: %s. Try again.',
'apiManualInstructions0' => 'Login to https://my.telegram.org',
'apiManualInstructions1' => 'Go to API development tools',
'apiManualInstructions2' => 'Click on create application',
'apiManualPrompt0' => 'Enter your API ID: ',
'apiManualPrompt1' => 'Enter your API hash: ',
'apiManualWeb' => 'Enter your API ID and API hash',
'apiParamsError' => 'You didn\'t provide all of the required parameters!',
'api_not_set' => 'You must provide an api key and an api id, get your own @ my.telegram.org',
'array_invalid' => 'You didn\'t provide a valid array',
'baseDirLimitation' => 'A basedir limitation is configured: this can impact performance and cause some issues, please disable it if possible!',
'bool_error' => 'Could not extract boolean',
'botAlreadyRunning' => 'The bot is already running!',
'botapi_conversion_error' => 'Can\'t convert %s to a bot API object',
'call_already_accepted' => 'Call %s already accepted',
'call_already_declined' => 'Call %s already declined',
'call_completing' => 'Completing call from %s...',
'call_confirming' => 'Confirming call from %s...',
'call_discarding' => 'Discarding call %s...',
'call_error_1' => 'Could not find and accept call %s',
'call_error_2' => 'Could not find and confirm call %s',
'call_error_3' => 'Could not find and complete call %s',
'cli_need_dl.php_link' => 'Please specify a download script URL when using getDownloadLink via CLI!',
'constructor_not_found' => 'Constructor not found for type: ',
'could_not_connect_to_MadelineProto' => 'Could not connect to MadelineProto, please enable proc_open and remove open_basedir restrictions or disable webserver path rewrites to fix! If you already did that, make sure the CLI version of PHP is exactly the same as the web version (same version, extensions, et cetera) and check out the MadelineProto.log file for more info about the error that prevented the IPC server from starting.',
'could_not_convert_object' => 'Could not convert object of type %s',
'deserialization_error' => 'An error occurred on deserialization',
'dl.php_check_logs_make_sure_session_running' => 'Either the associated MadelineProto EventHandler bot or the MadelineProto IPC server are offline, please check logs and make sure at least one of them is running!',
'dl.php_powered_by_madelineproto' => 'Telegram file download server (up to 4GB), powered by <a href="https://docs.madelineproto.xyz" target="_blank">MadelineProto</a>!<br>Click <a href="https://docs.madelineproto.xyz/docs/FILES.html#getting-a-download-link" target="_blank">here</a> for more info on how to setup your very own Telegram file download server!',
'do_not_delete_MadelineProto.log' => 'the MadelineProto.log file must never be deleted, please set a custom max size in the settings, instead!',
'do_not_remove_MadelineProto.log_phar' => 'Please do not remove madeline.phar or madeline.php, or else MadelineProto will crash. If you have any problem with MadelineProto, report it to https://github.com/danog/MadelineProto or https://t.me/pwrtelegramgroup',
'do_not_use_blocking_class' => 'for performance reasons, handlers may not use the non-async blocking class %s, please use %s, instead',
'do_not_use_blocking_function' => 'for performance reasons, event handlers may not use the non-async blocking function %s, please use %s, instead',
'do_not_use_deprecated_function' => 'the %s function is deprecated, please use %s, instead',
'do_not_use_non_root_require_in_event_handler' => 'for performance reasons, you must not use require or include inside of an event handler class, only root-level requires are allowed.',
'do_not_use_yield' => 'MadelineProto 8 does not require or support the use of yield in async functions, you must remove all yield keywords previously used for async function calls',
'done' => 'Done!',
'encode_double_error' => 'Could not properly encode double',
'extensionRecommended' => 'Warning: the %s extension is not installed, please install it to speed up MadelineProto!',
'extensionRequired' => 'MadelineProto requires the %s extension to run. %s',
'extensionRequiredInstallWithApt' => 'Try running sudo apt-get install %s.',
'extensionRequiredInstallWithCustomInstructions' => 'Follow the instructions at %s to install it.',
'file_not_exist' => 'File does not exist',
'file_parsing' => 'Parsing %s...',
'file_type_invalid' => 'Invalid file type detected (%s)',
'fingerprint_invalid' => 'Invalid key fingerprint!',
'go' => 'Go',
'invalid_dl.php_session' => '%s is not a valid download script because its session ID is different (expected %s, got %s)',
'length_too_big' => 'Length is too big',
'loginBot' => 'Enter your bot token: ',
'loginBotTokenWeb' => 'Bot token',
'loginChoosePromptWeb' => 'Do you want to login as a user or as a bot?',
'loginManual' => 'Alternatively, you can also enter a bot token or phone number to login manually: ',
'loginNoCode' => 'You didn\'t provide a phone code!',
'loginNoName' => 'You didn\'t provide the first name!',
'loginNoPass' => 'You didn\'t provide the password!',
'loginOptionBot' => 'Bot',
'loginOptionUser' => 'User',
'loginQr' => 'Scan the above QR code to login automatically.',
'loginQrCodeExpired' => 'The QR code expired, generating a new one...',
'loginQrCodeSuccessful' => 'QR code login successful!',
'loginUser' => 'Enter your phone number: ',
'loginUserCode' => 'Enter the code: ',
'loginUserPass' => 'Enter your password (hint %s): ',
'loginUserPassHint' => 'Hint: %s',
'loginUserPassWeb' => 'Enter your password: ',
'loginUserPhoneCodeWeb' => 'Code',
'loginUserPhoneWeb' => 'Phone number',
'loginWebQr' => 'You can also login automatically by scanning the following QR code:',
'loginWebQr1' => 'Open Telegram on your phone',
'loginWebQr2' => 'Go to Settings > Devices > Link Desktop Device',
'loginWebQr3' => 'Point your phone at this screen to confirm login',
'login_2fa_enabled' => '2FA enabled, you will have to call the complete2falogin function...',
'login_auth_key' => 'Logging in using auth key...',
'login_bot' => 'Logging in as a bot...',
'login_code_sending' => 'Sending code...',
'login_code_sent' => 'Code sent successfully! Once you receive the code you should use the completePhoneLogin function.',
'login_code_uncalled' => 'I\'m not waiting for the code! Please call the phoneLogin method first',
'login_need_signup' => 'An account has not been created for this number, you will have to call the completeSignup function...',
'login_ok' => 'Logged in successfully!',
'login_user' => 'Logging in as a normal user...',
'logout_ok' => 'Logged out successfully!',
'long_not_16' => 'Given value is not 16 bytes long',
'long_not_32' => 'Given value is not 32 bytes long',
'long_not_64' => 'Given value is not 64 bytes long',
'madelineproto_ready' => 'MadelineProto is ready!',
'manualAdminActionRequired' => '!!!!!!!!! MANUAL SYSTEM ADMIN ACTION REQUIRED !!!!!!!!!',
'method_not_found' => 'Could not find method: ',
'mmapErrorPart1' => 'The maximum number of memory mapped (mmap) regions was reached (%s): please increase the vm.max_map_count kernel config to 262144 to fix.',
'mmapErrorPart2' => 'To fix, run the following command as root: %s',
'mmapErrorPart3' => 'To persist the change across reboots: %s',
'mmapErrorPart4' => 'On Windows and WSL, increasing the size of the pagefile might help; please switch to native Linux if the issue persists.',
'must_have_declare_types' => 'for performance reasons, the first statement of an event handler file must be "declare(strict_types=1);"',
'nearest_dc' => 'We\'re in %s, nearest DC is %d.',
'need_dl.php' => 'Could not generate default download script (%s), please create a dl.php file with the following content: %s and pass its URL to the second parameter of getDownloadLink',
'noReportPeers' => 'Warning: no report peers are set, please add the following method to your event handler',
'non_text_conversion' => 'Can\'t convert non text messages yet!',
'not_loggedIn' => 'I\'m not logged in!',
'not_numeric' => 'Given value isn\'t numeric',
'params_missing' => 'Missing required parameter',
'peer_not_in_db' => 'This peer is not present in the internal peer database',
'plugin_path_does_not_exist' => 'Plugin path %s does not exist!',
'plugins_do_not_use_require' => 'for performance reasons, plugins can only automatically include or require other files present in the plugins folder by triggering the PSR-4 autoloader (not by manually require()\'ing them).',
'plugins_must_have_exactly_one_class' => 'a plugin must define exactly one class! To define multiple classes, interfaces or traits, create separate files, they will be autoloaded by MadelineProto automatically.',
'predicate_not_set' => 'Predicate (value under _) was not set!',
'recommend_not_use_filesystem_function' => 'usage of the %s function is not recommended, because accessing the filesystem during update handling will slow down your bot, please see https://docs.madelineproto.xyz/docs/UPDATES.html#avoiding-the-use-of-filesystem-functions for a list of alternative ways to store data that will not slow down your bot!',
'rpc_tg_error' => 'Telegram returned an RPC error: %s (%s), caused by %s:%s%sTL trace:',
'sec_peer_not_in_db' => 'This secret peer is not present in the internal peer database',
'secret_chat_skipping' => 'I do not have the secret chat %s in the database, skipping message...',
'serialization_ofd' => 'Serialization is out of date, reconstructing object!',
'session_corrupted' => 'The session is corrupted!',
'signing_up' => 'Signing up as a normal user...',
'signupFirstName' => 'Enter your first name: ',
'signupFirstNameWeb' => 'First name',
'signupLastName' => 'Enter your last name (can be empty): ',
'signupLastNameWeb' => 'Last name',
'signupWeb' => 'Sign up please',
'signup_ok' => 'Signed up in successfully!',
'signup_uncalled' => 'I\'m not waiting to signup! Please call the phoneLogin and the completePhoneLogin methods first!',
'src_file_invalid' => 'Invalid source file was provided: ',
'static_analysis_minor' => 'A minor issue was encountered during static analysis of %s: %s',
'static_analysis_severe' => 'A severe issue was encountered during static analysis of %s: %s',
'stream_handle_invalid' => 'An invalid stream handle was provided.',
'string_required' => 'A string was expected!',
'translate_madelineproto_cli' => 'MadelineProto can be translated in your language (current translation progress: %d%%), go to https://weblate.madelineproto.xyz to contribute with the translation!',
'translate_madelineproto_web' => 'MadelineProto can be translated in your language (current translation progress: %d%%), click <a href="https://weblate.madelineproto.xyz" target="_blank">here to contribute with the translation!</a>',
'type_extract_error' => 'Could not extract type "%s", you should update MadelineProto!',
'type_extract_error_id' => 'Could not extract type: %s with id %s, you should update MadelineProto!',
'update_madelineproto' => 'You\'re running an old version of MadelineProto, an update is required: currently running %s, but the latest version with multiple bugfixes and new features is %s!',
'value_bigger_than_2147483647' => 'Provided value %s is bigger than 2147483647',
'value_bigger_than_4294967296' => 'Provided value %s is bigger than 4294967296',
'value_bigger_than_9223372036854775807' => 'Provided value %s is bigger than 9223372036854775807',
'value_smaller_than_0' => 'Provided value %s is smaller than 0',
'value_smaller_than_2147483648' => 'Provided value %s is smaller than -2147483648',
'value_smaller_than_9223372036854775808' => 'Provided value %s is smaller than -9223372036854775808',
'waveform_must_have_100_values' => 'A waveform array must have 100 values!',
'waveform_value' => 'A waveform value must be between 0 and 31!',
'windows_warning' => 'For Windows users: please switch to Linux if this fails. You can also try modifying the firewall settings to allow all PHP processes to create sockets (it\'s 100% easier to just switch to Linux, on Linux MadelineProto just works out of the box, no changes needed)',
],
'fa' =>
[
'2fa_uncalled' => 'من منتظر کلمه عبور نیستم! لطفا اول توابع phoneLogin و completePhoneLogin را صدا بزنید!',
'accepting_call' => 'در حال پذیرش تماس از طرف %s...',
'account_banned' => '!!!!!!! اخطار !!!!!!!
سیستم جلوگیری از فلود تلگرام، این حساب را معلق کرده.
برای ادامه، تایید دستی نیاز است.
یک ایمیل به [email protected] بفرستید، و از آنها آزادسازی شماره %s را جویا باشید، و کوتاه توضیح دهید که چه کاری با این شماره انجام خواهید داد.
سپس دوباره وارد شوید.
اگر از قصد این حساب را حذف کردهاید، این پیام را نادیده بگیرید.',
'already_loggedIn' => 'نمونهی MadelineProto از قبل وارد شده!',
'apiAppInstructionsAuto0' => 'نام برنامه خود را وارد کنید، میتواند هرچیزی باشد ',
'apiAppInstructionsAuto1' => 'نام مخفف برنامهتان را وارد کنید، 5 تا 32 کاراکتر الفبا اعداد: ',
'apiAppInstructionsAuto2' => 'لینک برنامه/وبسایت را وارد کنید، یا t.me/yourusername: ',
'apiAppInstructionsAuto3' => 'سکوی (پلتفرم) برنامه را وارد کنید: ',
'apiAppInstructionsAuto4' => 'برنامهتان را توصیف کنید: ',
'apiAppInstructionsAutoTypeOther' => 'مابقی (در توضیحات مشخص کنید)',
'apiAppInstructionsManual0' => 'اسم اپلیکیشن شما، میتواند هرچیزی باشد',
'apiAppInstructionsManual1' => 'اسم کوتاه اپلیکیشن شما، 5 تا 32 کاراکتر، حروف و اعداد انگلیسی',
'apiAppInstructionsManual2' => 'لینک اپلیکیشن/وبسایت شما، یا t.me/yourusername',
'apiAppInstructionsManual3' => 'هرچیزی',
'apiAppInstructionsManual4' => 'اپلیکیشن خود را اینجا توصیف کنید',
'apiAppWeb' => 'اطلاعات API را وارد کنید',
'apiAutoPrompt0' => 'شمارهای را وارد کنید که از قبل در تلگرام ثبتنام کرده باشد: ',
'apiAutoPrompt1' => 'کد تاییدی را که در تلگرام دریافت کردید، وارد کنید ',
'apiAutoWeb' => 'برای دریافت API ID شمارهای را وارد کنید که از قبل در تلگرام <b>ثبتنام</b> کرده باشد',
'apiChooseManualAutoTip' => 'در نظر داشته باشید که میتوانید API ID و API Hash را به طور مستقیم داخل کدتان با استفاده از تنظیمات وارد کنید. %s',
'apiChooseManualAutoTipWeb' => 'در نظر باشید که میتوانید API ID و API Hash را به صورت مستقیم داخل کدتان با استفاده از <a target="_blank" href="%s">تنظیمات</a> وارد کنید.',
'apiChoosePrompt' => 'انتخاب شما (m/a): ',
'apiError' => 'ارور: %s. دوباره امتحان کنید.',
'apiManualInstructions0' => 'وارد حساب خود در https://my.telegram.org شوید',
'apiManualInstructions1' => 'به ابزارهای توسعه API بروید',
'apiManualInstructions2' => 'روی create application کلیک کنید',
'apiManualPrompt0' => 'API ID خود را وارد کنید: ',
'apiManualPrompt1' => 'API Hash خود را وارد کنید: ',
'apiManualWeb' => 'API ID و API HASH خود را وارد کنید',
'apiParamsError' => 'شما تمام ورودیهای موردنیاز را وارد نکردید!',
'api_not_set' => 'شما باید یک api key و یک api id وارد کنید، @ خوتان را از my.telegram.org بگیرید',
'array_invalid' => 'شما یک آرایه معتبر وارد نکردید',
'baseDirLimitation' => 'یک محدودیت basedir پیکربندی شده است: این میتواند روی پرفورمنس تاثیر بگذارد و باعث ایجاد مشکلات شود، لطفا در صورت امکان آن را غیرفعال کنید!',
'bool_error' => 'نمیتوان boolean را استخراج کرد',
'botAlreadyRunning' => 'ربات هم اکنون در حال اجرا است!',
'botapi_conversion_error' => 'نمیتوان %s را به شی ربات API تبدیل کرد',
'call_already_accepted' => 'تماس %s از قبل پذیرفته شده',
'call_already_declined' => 'تماس %s از قبل رد شده',
'call_completing' => 'در حال کامل کردن تماس از طرف %s...',
'call_confirming' => 'در حال تایید تماس از طرف %s...',
'call_discarding' => 'درحال صرف نظر کردن از تماس %s...',
'call_error_1' => 'نمیتوان تماس %s را پیدا کرد و پذیرفت',
'call_error_2' => 'نمیتوان تماس %s را پیدا و تایید کرد',
'call_error_3' => 'نمیتوان تماس %s را یافت و کامل کرد',
'cli_need_dl.php_link' => 'لطفا هنگام استفاده از getDownloadLink روی CLI (محیط ترمینال)، لینک اسکریپت دانلود را مشخص کنید!',
'constructor_not_found' => 'سازنده برای این نوع پیدا نشد: ',
'could_not_connect_to_MadelineProto' => 'نمی توان به مدلینپروتو متصل شد، لطفاً proc_open را فعال کنید و محدودیت open_basedir را بردارید، یا بازنویسی مسیر وب سرور را غیرفعال کنید تا مشکل رفع شود! اگر این کار را کردید، مطمئن شوید که نسخه PHP در کامندلاین و وبسرور دقیقا یکی است (ورژن یکسان، افزونههای یکسان و...) و برای کسب اطلاعات بیشتر راجب اروری که مانع شروع IPC server میشود، فایل MadelineProto.log را بررسی کنید.',
'could_not_convert_object' => 'نمیتوان مقدار آبجکت تایپ %s را تبدیل کرد',
'deserialization_error' => 'مشکلی در سریالزدایی پیش آمد',
'dl.php_check_logs_make_sure_session_running' => 'هم ربات ایونتهندلر مدلینپروتو مرتبط و هم سرور IPC مدلینپروتو آفلاین هستند، لطفا لاگها را بررسی کنید و مطمئن شوید حداقل یکی از آنها در حال اجراست!',
'dl.php_powered_by_madelineproto' => 'سرور دانلود فایل تلگرام (تا حداکثر 4 گیگابایت)، قدرت گرفته از <a href="https://docs.madelineproto.xyz" target="_blank">مدلینپروتو</a>!<br>برای اطلاعات بیشتر در مورد طریقه اجرای سرور دانلود تلگرام شخصی خود <a href="https://docs.madelineproto.xyz/docs/FILES.html#getting-a-download-link" target="_blank">اینجا</a> کلیک کنید!',
'do_not_delete_MadelineProto.log' => 'فایل MadelineProto.log هیچوقت نباید حذف شود، لطفا به جای حذف، بیشترین اندازه دلخواه را در تنظیمات مشخص کنید!',
'do_not_remove_MadelineProto.log_phar' => 'لطفا madeline.phar یا madeline.php را حذف نکنید، در غیراینصورت مدلینپروتو crash خواهد کرد. در صورت داشتن هرگونه مشکل با مدلینپروتو، آن را به https://github.com/danog/MadelineProto یا https://t.me/pwrtelegramgroup گزارش کنید',
'do_not_use_blocking_class' => 'به دلایل عملکردی و اجرایی، هندلرها نباید از کلس %s که async نیست استفاده کنند، به جای آن از %s استفاده کنید',
'do_not_use_blocking_function' => 'به دلایل عملکردی و اجرایی، ایونتهندلرها نباید از فانکشن %s که async نیست استفاده کنند، لطفا به جای آن از %s استفاده کنید',
'do_not_use_deprecated_function' => 'تابع %s منسوخ شده، لطفا به جای آن از %s استفاده کنید',
'do_not_use_non_root_require_in_event_handler' => 'به دلایل عملکردی و اجرایی، شما نباید از require یا include داخل کلس ایونتهندلر استفاده کنید، فقط require های سطح root مجاز هستند.',
'do_not_use_yield' => 'مدلینپروتو نسخه 8 نیازی به yield در توابع async ندارد و حتی آن را پشتیبانی هم نمیکند، شما باید تمام کلمات کلیدی yield را که قبلا در اجرای توابع async به کار میرفتند حذف کنید',
'done' => 'انجام شد!',
'encode_double_error' => 'نمیتوان به درستی double را رمزنگاری (انکد) کرد',
'extensionRecommended' => 'هشدار: افزونه %s نصب نشده است. لطفا برای افزایش سرعت مدلینپروتو آن را نصب کنید!',
'extensionRequired' => 'مدلین برای اجرا نیاز به افزونه %s دارد. %s',
'extensionRequiredInstallWithApt' => 'اجرای کامند sudo apt-get install %s را امتحان کنید.',
'extensionRequiredInstallWithCustomInstructions' => 'برای نصب آن، دستورالعمل ها را در %s دنبال کنید.',
'file_not_exist' => 'فایل وجود ندارد',
'file_parsing' => 'درحال تجزیه %s...',
'file_type_invalid' => 'نوع فایل نامعتبر شناسایی شد (%s)',
'fingerprint_invalid' => 'اثرانگشت کلید نامعتبر است!',
'go' => 'برو',
'invalid_dl.php_session' => '%s یک اسکریپت دانلود درست و معتبر نیست چرا که سشنآیدی متفاوت است (انتظار این سشنآیدی وجود داشت: %s، اما این دریافت شد: %s)',
'length_too_big' => 'طول بسیار بزرگ است',
'loginBot' => 'توکن رباتتان را وارد کنید: ',
'loginBotTokenWeb' => 'توکن ربات',
'loginChoosePromptWeb' => 'میخواهید به عنوان یک کاربر یا به عنوان یک ربات، وارد شوید؟',
'loginManual' => 'همچنین از سوی دیگر، میتوانید توکن ربات یا شماره تلفن خود را برای ورود خودکار وارد کنید: ',
'loginNoCode' => 'شما کد شماره را وارد نکردید!',
'loginNoName' => 'شما نام را وارد نکردید!',
'loginNoPass' => 'شما کلمه عبور را وارد نکردید!',
'loginOptionBot' => 'ربات',
'loginOptionUser' => 'کاربر',
'loginQr' => 'برای ورود خودکار QR Code بالا را اسکن کنید.',
'loginQrCodeExpired' => 'QR Code منقضی شد، در حال ساخت QR code جدید...',
'loginQrCodeSuccessful' => 'ورود با QR code با موفقیت انجام شد!',
'loginUser' => 'شماره تلفنتان را وارد کنید: ',
'loginUserCode' => 'کد را وارد کنید: ',
'loginUserPass' => 'رمز خود را وارد کنید (اشاره %s): ',
'loginUserPassHint' => 'اشاره: %s',
'loginUserPassWeb' => 'رمز خود را وارد کنید: ',
'loginUserPhoneCodeWeb' => 'کد',
'loginUserPhoneWeb' => 'شماره تلفن',
'loginWebQr' => 'همچنین میتوانید به صورت خودکار با اسکن QR Code پایین وارد شوید:',
'loginWebQr1' => 'تلگرام را در موبایل خود باز کنید',
'loginWebQr2' => 'بروید به تنظیمات > دستگاهها > اتصال دستگاه دسکتاپ',
'loginWebQr3' => 'گوشی خود را به سمت این صفحه بگیرید تا ورود را تایید کنید',
'login_2fa_enabled' => 'احراز هویت دوعاملی فعال است، شما باید تابع complete2falogin را صدا بزنید...',
'login_auth_key' => 'درحال ورود با استفاده از کلید هویتی...',
'login_bot' => 'در حال ورود به عنوان یک ربات...',
'login_code_sending' => 'در حال ارسال کد...',
'login_code_sent' => 'کد با موفقیت ارسال شد! زمانی که کد را دریافت کردید باید از تابع completePhoneLogin استفاده کنید.',
'login_code_uncalled' => 'من منتظر کد نیستم! لطفا اول تابع phoneLogin را صدا بزنید',
'login_need_signup' => 'حسابی برای این شماره ساخته نشدهاست، شما باید تابع completeSignup را صدا بزنید...',
'login_ok' => 'با موفقیت وارد شد!',
'login_user' => 'در حال ورود به عنوان یک کاربر عادی...',
'logout_ok' => 'با موفقیت خارج شد!',
'long_not_16' => 'مقدار ورودی به طول 16 بایت نیست',
'long_not_32' => 'مقدار ورودی به طول 32 بایت نیست',
'long_not_64' => 'مقدار ورودی به طول 64 بایت نیست',
'madelineproto_ready' => 'MadelineProto آماده است!',
'manualAdminActionRequired' => '!!!!!!!!! فعالیت دستی ادمین سیستم نیاز است !!!!!!!!!',
'method_not_found' => 'تابع پیدا نشد: ',
'mmapErrorPart1' => 'بیشترین مقدار حافظه تخصیص داده شده (mmap ) پر شده است (%s ) : لطفا از داخل کانفیگ های مربوط به کرنل مقدار vm.max_map_count را به مقدار 262144 افزایش دهیدتا مشکل رفع گردد.',
'mmapErrorPart2' => 'برای حل کردن مشکل، کامند مقابل را با دسترسی root اجرا کنید: %s',
'mmapErrorPart3' => 'برای تداوم تغییر در طول راهاندازی دوباره: %s',
'mmapErrorPart4' => 'روی ویندوز و WSL، افزایش سایز pagefile ممکن است کمک کند؛ اگر مشکل پافشاری کرد لطفا سیستمعامل خود را به لینوکس تغییر دهید.',
'must_have_declare_types' => 'به دلایل عملکردی و اجرایی، اولین دستور فایل ایونتهندلر باید دستور مقابل باشد: "declare(strict_types=1);"',
'nearest_dc' => 'ما در %s هستیم، نزدیک ترین دیتاسنتر %d است.',
'need_dl.php' => 'اسکریپت دانلود پیشفرض تولید نشد (%s)، لطفا یک فایل dl.php بسیازید و این محتوا را در آن قرار دهید: %s سپس لینک آن فایل را به ورودی دوم getDownloadLink بدهید',
'noReportPeers' => 'هشدار: هیچ peerی به عنوان peer گزارشات تنظیم نشده، لطفا متود زیر را به ایونت هندلر اضافه کنید',
'non_text_conversion' => 'فعلا نمیتوان پیامهای غیرمتنی را تبدیل کرد!',
'not_loggedIn' => 'من وارد نشدم!',
'not_numeric' => 'مقدار ورودی عددی نیست',
'params_missing' => 'ورودی موردنیاز یافت نشد',
'peer_not_in_db' => 'این peer در پایگاه داده (دیتابیس) peer وجود ندارد',
'plugin_path_does_not_exist' => 'مسیر پلاگین %s وجود ندارد!',
'plugins_do_not_use_require' => 'به دلایل عملکردی و اجرایی، پلاگینها فقط میتوانند فایل های دیگر را که در پوشه پلاگین هاست با استفاده از راهاندازی بارگذار خودکار PSR-4، به صورت خودکار include یا require کنند (بدون require کردن دستی آنها).',
'plugins_must_have_exactly_one_class' => 'یک پلاگین باید دقیقا یک کلس را تعریف کند! برای تعریف چند کلس، اینترفیس یا تریت، فایلهای جداگانه بسازید، آنها توسط مدلینپروتو به صورت خودکار بارگذاری خواهند شد.',
'predicate_not_set' => 'مستند (مقدار تحت _) تنظیم نشده!',
'recommend_not_use_filesystem_function' => 'استفاده از تابع %s پیشنهاد نمیشود، چراکه دسترسی و کار با فایل های سیستمی موقع پردازش آپدیت باعث کم شدن سرعت ربات شما میشود، لطفا صفحه https://docs.madelineproto.xyz/docs/UPDATES.html#avoiding-the-use-of-filesystem-functions را ببینید تا با راههای جایگزین برای ذخیره اطلاعات که باعث کاهش سرعت ربات شما نمیشوند آشنا شوید!',
'rpc_tg_error' => 'تلگرام یک خطای RPC برگرداند: %s (%s), ناشی از %s:%s%sTL رد:',
'sec_peer_not_in_db' => 'این peer مخفی در پایگاه داده (دیتابیس) داخلی peer وجود ندارد',
'secret_chat_skipping' => 'من چت مخفی (سکرت) %s را در پایگاه داده (دیتابیس) ندارم، درحال رد شدن از پیام...',
'serialization_ofd' => 'مرتب سازی (سریالایز) منقضی شده، درحال بازسازی شی!',
'session_corrupted' => 'سشن شما خراب است!',
'signing_up' => 'در حال ثبتنام به عنوان یک کاربر عادی...',
'signupFirstName' => 'نام خود را وارد کنید: ',
'signupFirstNameWeb' => 'نام',
'signupLastName' => 'نام خانوادگی خود را وارد کنید (میتواند خالی باشد): ',
'signupLastNameWeb' => 'نام خانوادگی',
'signupWeb' => 'لطفا ثبتنام کنید',
'signup_ok' => 'با موفقیت ثبتنام شد!',
'signup_uncalled' => 'من منتظر ساخت حساب نیستم! لطفا اول توابع phoneLogin و completePhoneLogin را صدا بزنید!',
'src_file_invalid' => 'منبع فایل نامعتبری لحاظ گردیده: ',
'static_analysis_minor' => 'یک مشکل جزئی در طول بررسی استاتیک %s رخ داد: %s',
'static_analysis_severe' => 'یک مشکل سمت سرور در طول بررسی استاتیک %s رخ داد: %s',
'stream_handle_invalid' => 'یک کنترلکننده جریان (استریم هندل) نامعتبر لحاظ گردیده.',
'string_required' => 'مقدار مورد انتظار رشته است!',
'translate_madelineproto_cli' => 'مدلینپروتو را میتوان به زبان شما ترجمه کرد (پیشرفت ترجمه فعلی: %d%%)، برای مشارکت در ترجمه به https://weblate.madelineproto.xyz بروید!',
'translate_madelineproto_web' => 'مدلینپروتو را میتوان به زبان شما ترجمه کرد (پیشرفت ترجمه فعلی: %d%%)، برای مشارکت در ترجمه <a href="https://weblate.madelineproto.xyz" target="_blank">اینجا را کلیک کنید!</a >',
'type_extract_error' => 'نمیتوان نوع (تایپ) "%s" را استخراج کرد، شما باید MadelineProto را به روز رسانی کنید!',
'type_extract_error_id' => 'نمیتوان نوع: %s را با ایدی %s استخراج کرد، شما باید MadelineProto را به روز رسانی کنید!',
'update_madelineproto' => 'شما نسخه قدیمی MadelineProto را اجرا میکنید، سورس شما نیاز به بروزرسانی دارد: در حال حاضر %s در حال اجرا است، اما آخرین نسخه با چندین رفع اشکال و ویژگیهای جدید %s است!',
'value_bigger_than_2147483647' => 'مقدار داده شدهی %s بیشتر از 2147483647 است',
'value_bigger_than_4294967296' => 'مقدار داده شدهی %s بیشتر از 4294967296 است',
'value_bigger_than_9223372036854775807' => 'مقدار داده شدهی %s بیشتر از 9223372036854775807 است',
'value_smaller_than_0' => 'مقدار داده شدهی %s کمتر از 0 است',
'value_smaller_than_2147483648' => 'مقدار داده شدهی %s کمتر از -2147483648 است',
'value_smaller_than_9223372036854775808' => 'مقدار داده شدهی %s کمتر از -9223372036854775808 است',
'waveform_must_have_100_values' => 'آرایه waveformباید 100 مقدار داشته باشد(سایز مورد انتظار 100 است ) !',
'waveform_value' => 'مقدار عددیwaveform باید بین 0 تا 31 باشد!',
'windows_warning' => 'برای کاربران ویندوزی: لطفا اگر این ناموفق بود به لینوکس کوچ کنید. همچنین میتوانید تلاش کنید تا تنظیمات فایروال خود را تغییر دهید تا به تمام پروسههای PHP اجازه ساخت سوکت را بدهید (100 درصد تغییر سیستم به لینوکس آسانتر است، مدلینپروتو در لینوکس خارج از باکس کار میکند، نیازی به تغییر ندارد)',
],
'fr' =>
[
'2fa_uncalled' => 'I\'m not waiting for the password! Please call the phoneLogin and the completePhoneLogin methods first!',
'accepting_call' => 'Acceptation de l\'appel de %s...',
'account_banned' => '!!!!!!! WARNING !!!!!!!
Telegram\'s flood prevention system suspended this account.
To continue, manual verification is required.
Send an email to [email protected], asking to unban the phone number %s, and shortly describe what will you do with this phone number.
Then login again.
If you intentionally deleted this account, ignore this message.',
'already_loggedIn' => 'Cette instance de MadelineProto est déjà connectée!',
'apiAppInstructionsAuto0' => 'Enter the app\'s name, can be anything: ',
'apiAppInstructionsAuto1' => 'Enter the app\'s short name, alphanumeric, 5-32 characters: ',
'apiAppInstructionsAuto2' => 'Enter the app/website\'s URL, or t.me/yourusername: ',
'apiAppInstructionsAuto3' => 'Enter the app platform: ',
'apiAppInstructionsAuto4' => 'Describe your app: ',
'apiAppInstructionsAutoTypeOther' => 'Other (specify in description)',
'apiAppInstructionsManual0' => 'your app\'s name, can be anything',
'apiAppInstructionsManual1' => 'your app\'s short name, alphanumeric, 5-32 characters',
'apiAppInstructionsManual2' => 'your app/website\'s URL, or t.me/yourusername',
'apiAppInstructionsManual3' => 'anything',
'apiAppInstructionsManual4' => 'Describe your app here',
'apiAppWeb' => 'Enter API information',
'apiAutoPrompt0' => 'Enter a phone number that is already registered on Telegram: ',
'apiAutoPrompt1' => 'Entrez le code de vérification que vous avez reçu dans Telegram: ',
'apiAutoWeb' => 'Enter a phone number that is <b>already registered</b> on telegram to get the API ID',
'apiChooseManualAutoTip' => 'Note that you can also provide the API ID/hash directly in the code using the settings: %s',
'apiChooseManualAutoTipWeb' => 'Note that you can also provide the API ID/hash directly in the code using the <a target="_blank" href="%s">settings</a>.',
'apiChoosePrompt' => 'Your choice (m/a): ',
'apiError' => 'ERREUR: %s. Essayez de nouveau.',
'apiManualInstructions0' => 'Connectez-vous à https://my.telegram.org',
'apiManualInstructions1' => 'Go to API development tools',
'apiManualInstructions2' => 'Click on create application',
'apiManualPrompt0' => 'Enter your API ID: ',
'apiManualPrompt1' => 'Enter your API hash: ',
'apiManualWeb' => 'Enter your API ID and API hash',
'apiParamsError' => 'Vous n\'avez pas fourni tous les paramètres requis!',
'api_not_set' => 'You must provide an api key and an api id, get your own @ my.telegram.org',
'array_invalid' => 'Vous n\'avez pas fourni de tableau valide',
'baseDirLimitation' => 'A basedir limitation is configured: this can impact performance and cause some issues, please disable it if possible!',
'bool_error' => 'Could not extract boolean',
'botAlreadyRunning' => 'The bot is already running!',
'botapi_conversion_error' => 'Can\'t convert %s to a bot API object',
'call_already_accepted' => 'Call %s already accepted',
'call_already_declined' => 'Call %s already declined',
'call_completing' => 'Fin de l\'appel de %s...',
'call_confirming' => 'Confirmation de l\'appel de %s...',
'call_discarding' => 'Abandon de l\'appel %s...',
'call_error_1' => 'Impossible de trouver et d\'accepter l\'appel %s',
'call_error_2' => 'Impossible de trouver et de confirmer l\'appel %s',
'call_error_3' => 'Impossible de trouver et de terminer l\'appel %s',
'cli_need_dl.php_link' => 'Please specify a download script URL when using getDownloadLink via CLI!',
'constructor_not_found' => 'Constructor not found for type: ',
'could_not_connect_to_MadelineProto' => 'Could not connect to MadelineProto, please enable proc_open and remove open_basedir restrictions or disable webserver path rewrites to fix! If you already did that, make sure the CLI version of PHP is exactly the same as the web version (same version, extensions, et cetera) and check out the MadelineProto.log file for more info about the error that prevented the IPC server from starting.',
'could_not_convert_object' => 'Could not convert object of type %s',
'deserialization_error' => 'Une erreur s\'est produite lors de la désérialisation',
'dl.php_check_logs_make_sure_session_running' => 'Either the associated MadelineProto EventHandler bot or the MadelineProto IPC server are offline, please check logs and make sure at least one of them is running!',
'dl.php_powered_by_madelineproto' => 'Telegram file download server (up to 4GB), powered by <a href="https://docs.madelineproto.xyz" target="_blank">MadelineProto</a>!<br>Click <a href="https://docs.madelineproto.xyz/docs/FILES.html#getting-a-download-link" target="_blank">here</a> for more info on how to setup your very own Telegram file download server!',
'do_not_delete_MadelineProto.log' => 'the MadelineProto.log file must never be deleted, please set a custom max size in the settings, instead!',
'do_not_remove_MadelineProto.log_phar' => 'Please do not remove madeline.phar or madeline.php, or else MadelineProto will crash. If you have any problem with MadelineProto, report it to https://github.com/danog/MadelineProto or https://t.me/pwrtelegramgroup',
'do_not_use_blocking_class' => 'for performance reasons, handlers may not use the non-async blocking class %s, please use %s, instead',
'do_not_use_blocking_function' => 'for performance reasons, event handlers may not use the non-async blocking function %s, please use %s, instead',
'do_not_use_deprecated_function' => 'the %s function is deprecated, please use %s, instead',
'do_not_use_non_root_require_in_event_handler' => 'for performance reasons, you must not use require or include inside of an event handler class, only root-level requires are allowed.',
'do_not_use_yield' => 'MadelineProto 8 does not require or support the use of yield in async functions, you must remove all yield keywords previously used for async function calls',
'done' => 'Done!',
'encode_double_error' => 'Could not properly encode double',
'extensionRecommended' => 'Warning: the %s extension is not installed, please install it to speed up MadelineProto!',
'extensionRequired' => 'MadelineProto requires the %s extension to run. %s',
'extensionRequiredInstallWithApt' => 'Try running sudo apt-get install %s.',
'extensionRequiredInstallWithCustomInstructions' => 'Follow the instructions at %s to install it.',
'file_not_exist' => 'Le fichier n\'existe pas',
'file_parsing' => 'Analyse de %s...',
'file_type_invalid' => 'Invalid file type detected (%s)',
'fingerprint_invalid' => 'Invalid key fingerprint!',
'go' => 'Go',
'invalid_dl.php_session' => '%s is not a valid download script because its session ID is different (expected %s, got %s)',
'length_too_big' => 'Length is too big',
'loginBot' => 'Enter your bot token: ',
'loginBotTokenWeb' => 'Bot token',
'loginChoosePromptWeb' => 'Do you want to login as a user or as a bot?',
'loginManual' => 'Alternatively, you can also enter a bot token or phone number to login manually: ',
'loginNoCode' => 'You didn\'t provide a phone code!',
'loginNoName' => 'Vous n\'avez pas fourni le prénom!',
'loginNoPass' => 'Vous n\'avez pas fourni le mot de passe!',
'loginOptionBot' => 'Bot',
'loginOptionUser' => 'Utilisateur',
'loginQr' => 'Scannez le code QR ci-dessus pour vous connecter automatiquement.',
'loginQrCodeExpired' => 'The QR code expired, generating a new one...',
'loginQrCodeSuccessful' => 'Connexion par code QR réussie!',
'loginUser' => 'Entrez votre numéro de téléphone: ',
'loginUserCode' => 'Entrez le code: ',
'loginUserPass' => 'Entrez votre mot de passe (Indice %s): ',
'loginUserPassHint' => 'Indice: %s',
'loginUserPassWeb' => 'Entrez votre mot de passe: ',
'loginUserPhoneCodeWeb' => 'Code',
'loginUserPhoneWeb' => 'Numéro de téléphone',
'loginWebQr' => 'Vous pouvez également vous connecter automatiquement en scannant le code QR suivant:',
'loginWebQr1' => 'Ouvrez Telegram sur votre téléphone',
'loginWebQr2' => 'Go to Settings > Devices > Link Desktop Device',
'loginWebQr3' => 'Pointez votre téléphone vers cet écran pour confirmer la connexion',
'login_2fa_enabled' => '2FA activé, vous devrez appeler la fonction complete2falogin...',
'login_auth_key' => 'Logging in using auth key...',
'login_bot' => 'Logging in as a bot...',
'login_code_sending' => 'Envoi du code...',
'login_code_sent' => 'Code envoyé avec succès! Une fois que vous avez reçu le code, vous devez utiliser la fonction completePhoneLogin.',
'login_code_uncalled' => 'I\'m not waiting for the code! Please call the phoneLogin method first',
'login_need_signup' => 'An account has not been created for this number, you will have to call the completeSignup function...',
'login_ok' => 'Connecté avec succès!',
'login_user' => 'Connexion en tant qu\'utilisateur normal...',
'logout_ok' => 'Déconnecté avec succès!',
'long_not_16' => 'La valeur donnée ne fait pas 16 octets',
'long_not_32' => 'La valeur donnée ne fait pas 32 octets',
'long_not_64' => 'La valeur donnée ne fait pas 64 octets',
'madelineproto_ready' => 'MadelineProto est prêt!',
'manualAdminActionRequired' => '!!!!!!!!! MANUAL SYSTEM ADMIN ACTION REQUIRED !!!!!!!!!',
'method_not_found' => 'Could not find method: ',
'mmapErrorPart1' => 'The maximum number of memory mapped (mmap) regions was reached (%s): please increase the vm.max_map_count kernel config to 262144 to fix.',
'mmapErrorPart2' => 'To fix, run the following command as root: %s',
'mmapErrorPart3' => 'To persist the change across reboots: %s',
'mmapErrorPart4' => 'On Windows and WSL, increasing the size of the pagefile might help; please switch to native Linux if the issue persists.',
'must_have_declare_types' => 'for performance reasons, the first statement of an event handler file must be "declare(strict_types=1);"',
'nearest_dc' => 'We\'re in %s, nearest DC is %d.',
'need_dl.php' => 'Could not generate default download script (%s), please create a dl.php file with the following content: %s and pass its URL to the second parameter of getDownloadLink',
'noReportPeers' => 'Warning: no report peers are set, please add the following method to your event handler',
'non_text_conversion' => 'Impossible de convertir des messages non textuels pour le moment!',
'not_loggedIn' => 'I\'m not logged in!',
'not_numeric' => 'La valeur donnée n\'est pas numérique',
'params_missing' => 'Paramètre requis manquant',
'peer_not_in_db' => 'This peer is not present in the internal peer database',
'plugin_path_does_not_exist' => 'Plugin path %s does not exist!',
'plugins_do_not_use_require' => 'for performance reasons, plugins can only automatically include or require other files present in the plugins folder by triggering the PSR-4 autoloader (not by manually require()\'ing them).',
'plugins_must_have_exactly_one_class' => 'a plugin must define exactly one class! To define multiple classes, interfaces or traits, create separate files, they will be autoloaded by MadelineProto automatically.',
'predicate_not_set' => 'Predicate (value under _) was not set!',
'recommend_not_use_filesystem_function' => 'usage of the %s function is not recommended, because accessing the filesystem during update handling will slow down your bot, please see https://docs.madelineproto.xyz/docs/UPDATES.html#avoiding-the-use-of-filesystem-functions for a list of alternative ways to store data that will not slow down your bot!',
'rpc_tg_error' => 'Telegram returned an RPC error: %s (%s), caused by %s:%s%sTL trace:',
'sec_peer_not_in_db' => 'This secret peer is not present in the internal peer database',
'secret_chat_skipping' => 'I do not have the secret chat %s in the database, skipping message...',
'serialization_ofd' => 'La sérialisation est obsolète, reconstruction de l\'objet!',
'session_corrupted' => 'La session est corrompue!',
'signing_up' => 'Inscription en tant qu\'utilisateur normal...',
'signupFirstName' => 'Entrez votre prénom: ',
'signupFirstNameWeb' => 'Prénom',
'signupLastName' => 'Entrez votre nom de famille (peut être vide): ',
'signupLastNameWeb' => 'Nom de famille',
'signupWeb' => 'Inscrivez-vous s\'il vous plaît',
'signup_ok' => 'Inscription réussie!',
'signup_uncalled' => 'I\'m not waiting to signup! Please call the phoneLogin and the completePhoneLogin methods first!',
'src_file_invalid' => 'Invalid source file was provided: ',
'static_analysis_minor' => 'A minor issue was encountered during static analysis of %s: %s',
'static_analysis_severe' => 'A severe issue was encountered during static analysis of %s: %s',
'stream_handle_invalid' => 'An invalid stream handle was provided.',
'string_required' => 'A string was expected!',
'translate_madelineproto_cli' => 'MadelineProto can be translated in your language (current translation progress: %d%%), go to https://weblate.madelineproto.xyz to contribute with the translation!',
'translate_madelineproto_web' => 'MadelineProto can be translated in your language (current translation progress: %d%%), click <a href="https://weblate.madelineproto.xyz" target="_blank">here to contribute with the translation!</a>',
'type_extract_error' => 'Could not extract type "%s", you should update MadelineProto!',
'type_extract_error_id' => 'Could not extract type: %s with id %s, you should update MadelineProto!',
'update_madelineproto' => 'You\'re running an old version of MadelineProto, an update is required: currently running %s, but the latest version with multiple bugfixes and new features is %s!',
'value_bigger_than_2147483647' => 'La valeur fournie %s est supérieure à 2147483647',
'value_bigger_than_4294967296' => 'La valeur fournie %s est supérieure à 4294967296',
'value_bigger_than_9223372036854775807' => 'La valeur fournie %s est supérieure à 9223372036854775807',
'value_smaller_than_0' => 'La valeur fournie %s est inférieure à 0',
'value_smaller_than_2147483648' => 'La valeur fournie %s est inférieure à -2147483648',
'value_smaller_than_9223372036854775808' => 'La valeur fournie %s est inférieure à -9223372036854775808',
'waveform_must_have_100_values' => 'A waveform array must have 100 values!',
'waveform_value' => 'A waveform value must be between 0 and 31!',
'windows_warning' => 'For Windows users: please switch to Linux if this fails. You can also try modifying the firewall settings to allow all PHP processes to create sockets (it\'s 100% easier to just switch to Linux, on Linux MadelineProto just works out of the box, no changes needed)',
],
'he' =>
[
'2fa_uncalled' => 'אני לא מחכה לסיסמא! עליך להשתמש בפונקציות phoneLogin ו- completePhoneLogin קודם!',
'accepting_call' => 'מקבל שיחה מ %s...',
'account_banned' => '!!!!!!! WARNING !!!!!!!
Telegram\'s flood prevention system suspended this account.
To continue, manual verification is required.
Send an email to [email protected], asking to unban the phone number %s, and shortly describe what will you do with this phone number.
Then login again.
If you intentionally deleted this account, ignore this message.',
'already_loggedIn' => 'מופע זה של MadelineProto כבר מחובר!',
'apiAppInstructionsAuto0' => 'הזן את שם האפליקציה שלך, יכול להיות כל שם: ',
'apiAppInstructionsAuto1' => 'הזן שם קצר לאפליקציה שלך, אותיות באנגלית בלבד, 5-32 תווים: ',
'apiAppInstructionsAuto2' => 'הזן את הקישור לאפליקציה/לאתר שלך או t.me/yourusername: ',
'apiAppInstructionsAuto3' => 'הזן את פלטופרמת האפליקציה: ',
'apiAppInstructionsAuto4' => 'תאר את האפליקציה שלך: ',
'apiAppInstructionsAutoTypeOther' => 'אחר (פרט בתיאור)',
'apiAppInstructionsManual0' => 'שם האפליקציה שלך, יכול להיות כל שם',
'apiAppInstructionsManual1' => 'שם קצר לאפליקציה שלך, אותיות באנגלית בלבד, 5-32 תווים',
'apiAppInstructionsManual2' => 'קישור לאפליקציה/לאתר שלך או t.me/yourusername',
'apiAppInstructionsManual3' => 'הכל',
'apiAppInstructionsManual4' => 'תאר את האפליקציה שלך פה',
'apiAppWeb' => 'הזן את פרטי ה API',
'apiAutoPrompt0' => 'הזן את מספר הטלפון שכבר רשום בטלגרם: ',
'apiAutoPrompt1' => 'הזן את קוד האימות שקיבלת באפליקצית טגלרם: ',
'apiAutoWeb' => 'הזן את מספר הטלפון <b>שכבר רשום</b> בטלגרם כדי לקבל את ה API ID',
'apiChooseManualAutoTip' => 'שים לב שאתה יכול גם לספק את מזהה ה-API/hash ישירות בקוד באמצעות ההגדרות: %s',
'apiChooseManualAutoTipWeb' => 'שים לב שאתה יכול גם לספק את מזהה ה-API/hash ישירות בקוד באמצעות ה- <a target="_blank" href="%s">הגדרות</a>.',
'apiChoosePrompt' => 'בחירתך (m/a): ',
'apiError' => 'שגיאה: %s. נסה שנית.',
'apiManualInstructions0' => 'התחבר ל https://my.telegram.org',
'apiManualInstructions1' => 'לך ל API development tools',
'apiManualInstructions2' => 'לחץ על create application',
'apiManualPrompt0' => 'הזן את ה API ID שלך: ',
'apiManualPrompt1' => 'הזן את ה API Hash שלך: ',
'apiManualWeb' => 'הזן את API ID ו API hash',
'apiParamsError' => 'לא סיפקת את כל הפרמטרים הנדרשים!',
'api_not_set' => 'עליך להזין api key ו- api id משלך, קבל אחד בקישור @ my.telegram.org',
'array_invalid' => 'לא סיפקת מערך חוקי',
'baseDirLimitation' => 'A basedir limitation is configured: this can impact performance and cause some issues, please disable it if possible!',
'bool_error' => 'לא ניתן היה לחלץ בוליאני',
'botAlreadyRunning' => 'The bot is already running!',
'botapi_conversion_error' => 'לא ניתן להמיר את %s לאובייקט bot API',
'call_already_accepted' => 'שיחה %s כבר התקבלה',
'call_already_declined' => 'שיחה %s כבר נדחתה',
'call_completing' => 'משלים שיחה מ %s...',
'call_confirming' => 'אישור שיחה מ %s...',
'call_discarding' => 'ביטול שיחה %s...',
'call_error_1' => 'לא ניתן היה למצוא ולקבל את השיחה %s',
'call_error_2' => 'לא ניתן היה למצוא ולאשר את השיחה %s',
'call_error_3' => 'לא ניתן היה למצוא ולהשלים את השיחה %s',
'cli_need_dl.php_link' => 'Please specify a download script URL when using getDownloadLink via CLI!',
'constructor_not_found' => 'הבנאי לא נמצא לסוג: ',
'could_not_connect_to_MadelineProto' => 'Could not connect to MadelineProto, please enable proc_open and remove open_basedir restrictions or disable webserver path rewrites to fix! If you already did that, make sure the CLI version of PHP is exactly the same as the web version (same version, extensions, et cetera) and check out the MadelineProto.log file for more info about the error that prevented the IPC server from starting.',
'could_not_convert_object' => 'Could not convert object of type %s',
'deserialization_error' => 'אירעה שגיאה בעת דה-סידריאליזציה',
'dl.php_check_logs_make_sure_session_running' => 'Either the associated MadelineProto EventHandler bot or the MadelineProto IPC server are offline, please check logs and make sure at least one of them is running!',
'dl.php_powered_by_madelineproto' => 'Telegram file download server (up to 4GB), powered by <a href="https://docs.madelineproto.xyz" target="_blank">MadelineProto</a>!<br>Click <a href="https://docs.madelineproto.xyz/docs/FILES.html#getting-a-download-link" target="_blank">here</a> for more info on how to setup your very own Telegram file download server!',
'do_not_delete_MadelineProto.log' => 'the MadelineProto.log file must never be deleted, please set a custom max size in the settings, instead!',
'do_not_remove_MadelineProto.log_phar' => 'Please do not remove madeline.phar or madeline.php, or else MadelineProto will crash. If you have any problem with MadelineProto, report it to https://github.com/danog/MadelineProto or https://t.me/pwrtelegramgroup',
'do_not_use_blocking_class' => 'for performance reasons, handlers may not use the non-async blocking class %s, please use %s, instead',
'do_not_use_blocking_function' => 'for performance reasons, event handlers may not use the non-async blocking function %s, please use %s, instead',
'do_not_use_deprecated_function' => 'the %s function is deprecated, please use %s, instead',
'do_not_use_non_root_require_in_event_handler' => 'for performance reasons, you must not use require or include inside of an event handler class, only root-level requires are allowed.',
'do_not_use_yield' => 'MadelineProto 8 does not require or support the use of yield in async functions, you must remove all yield keywords previously used for async function calls',
'done' => 'בוצע!',
'encode_double_error' => 'לא ניתן היה לקודד כפול כראוי',
'extensionRecommended' => 'Warning: the %s extension is not installed, please install it to speed up MadelineProto!',
'extensionRequired' => 'MadelineProto requires the %s extension to run. %s',
'extensionRequiredInstallWithApt' => 'Try running sudo apt-get install %s.',
'extensionRequiredInstallWithCustomInstructions' => 'Follow the instructions at %s to install it.',
'file_not_exist' => 'קובץ לא קיים',
'file_parsing' => 'ממיר %s...',
'file_type_invalid' => 'זוהה סוג קובץ לא חוקי (%s)',
'fingerprint_invalid' => 'טביעת אצבע לא חוקית של מפתח!',
'go' => 'קדימה',
'invalid_dl.php_session' => '%s is not a valid download script because its session ID is different (expected %s, got %s)',
'length_too_big' => 'האורך גדול מדי',
'loginBot' => 'הזן את הטוקן של הבוט שלך: ',
'loginBotTokenWeb' => 'טוקן הבוט',
'loginChoosePromptWeb' => 'האם ברצונך להתחבר כמשתמש או כבוט?',
'loginManual' => 'לחלופין, אתה יכול גם להזין טורן של בוט או מספר טלפון כדי להתחבר באופן ידני: ',
'loginNoCode' => 'לא הזנת קוד טלפון!',
'loginNoName' => 'לא הזנהת את השם הפרטי!',
'loginNoPass' => 'לא הזנת את הסיסמה!',
'loginOptionBot' => 'בוט',
'loginOptionUser' => 'משתמש',
'loginQr' => 'סרוק את קוד ה-QR המופיע כדי להתחבר אוטומטית.',
'loginQrCodeExpired' => 'פג תוקפו של קוד ה-QR, תיצרו קוד חדש...',
'loginQrCodeSuccessful' => 'התחברות דרך קוד QR בוצעה בהצלחה!',
'loginUser' => 'הזן את מספר הטלפון שלך: ',
'loginUserCode' => 'הזן את הקוד: ',
'loginUserPass' => 'הזן את הסיסמא שלך (רמז %s): ',
'loginUserPassHint' => 'רמז: %s',
'loginUserPassWeb' => 'הזן את הסיסמא שלך: ',
'loginUserPhoneCodeWeb' => 'קוד',
'loginUserPhoneWeb' => 'מספר טלפון',
'loginWebQr' => 'ניתן גם להתחבר אוטומטית על ידי סריקת קוד ה-QR הבא:',
'loginWebQr1' => 'פתח את טלגרם בטלפון שלך',
'loginWebQr2' => 'עבור אל הגדרות > מכשירים > קישור מכשיר שולחן עבודה',
'loginWebQr3' => 'כוון את הטלפון שלך למסך זה כדי לאשר את הכניסה',
'login_2fa_enabled' => 'אימות דו שלבי מופעל, עליך להשתמש בפונקציית complete2falogin...',
'login_auth_key' => 'מתחבר באמצעות מפתח אישור...',
'login_bot' => 'מתחבר כבוט...',
'login_code_sending' => 'שולח קוד...',
'login_code_sent' => 'הקוד נשלח בהצלחה! לאחר שתקבל את הקוד, עליך להשתמש בפונקציית completePhoneLogin.',
'login_code_uncalled' => 'אני לא מחכה לקוד! עליך להשתמש בפונקציית phoneLogin קודם!',
'login_need_signup' => 'לא נוצר חשבון עבור מספר זה, עליך להשתמש בפונקציית completeSignup...',
'login_ok' => 'התחברת בהצלחה!',
'login_user' => 'מתחבר כמשתמש רגיל...',
'logout_ok' => 'התנתק בהצלחה!',
'long_not_16' => 'הערך הנתון אינו באורך 16 בתים',
'long_not_32' => 'הערך הנתון אינו באורך 32 בתים',
'long_not_64' => 'הערך הנתון אינו באורך 64 בתים',
'madelineproto_ready' => 'MadelineProto מוכן!',
'manualAdminActionRequired' => '!!!!!!!!! MANUAL SYSTEM ADMIN ACTION REQUIRED !!!!!!!!!',
'method_not_found' => 'הפונקציה לא נמצא: ',
'mmapErrorPart1' => 'The maximum number of memory mapped (mmap) regions was reached (%s): please increase the vm.max_map_count kernel config to 262144 to fix.',
'mmapErrorPart2' => 'To fix, run the following command as root: %s',
'mmapErrorPart3' => 'To persist the change across reboots: %s',
'mmapErrorPart4' => 'On Windows and WSL, increasing the size of the pagefile might help; please switch to native Linux if the issue persists.',