-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathig.json
7671 lines (7671 loc) · 448 KB
/
ig.json
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
{
"c39b0e24": "X",
"f07eac34": "Parody account",
"a41b5c2e": "Fan account",
"i428ea62": "Commentary account",
"ac0d27be": "Ndọ, a kwụsịtụrụ akaụntụ a.",
"bcee7444": "Mmelite akaụntụ dara.",
"e0cbf77a": "Tinye ekwentị",
"f377195c": "X is over capacity. Please wait a few moments then try again.",
"d67f9456": "E gbochiri gị ime ihe a.",
"e0ece1b6": "Enweghị ike itinye ntaakụkọ, gbalịa bulite ọzọ",
"i82e8f04": "To protect our users from spam and other malicious activity, this account is temporarily blocked from following additional accounts. Please make sure you understand the X Rules.",
"jf7be47a": "To protect our users from spam and other malicious activity, this account is temporarily blocked from sending posts. Please make sure you understand the X Rules.",
"g75fec74": "I rugo oke ime ihe a kwa ụbọchị. Biko tinye nọmba ekwentị na akaụntụ gị iji wepụ oke a.",
"abb8b6e0": "Edebanyelarị nọmba ekwentị a.",
"f30bd1fc": "Anyị enweghị ike izipu ozi ederede na nọmba ekwentị a n'ihi na akwadoghị ndị ọrụ ya.",
"i54e550c": "Anyị enweghị ike mee nkadoeziokwu nọmba ekwentị a",
"h154702a": "We can't complete this request because this link has been identified by X or our partners as being potentially harmful. Visit our Help Center to learn more.",
"c8cb0b4c": "Okwuntughe i tinyere ezighi ezi.",
"b1b54f9e": "Midia i mere ka ị bulite adịghị irè.",
"i859a9d4": "Mụtakwuo",
"d6e72ce1": "Okwuntughe gị kwesịrị ịbụ ihe na-erughị mkpụrụedemede {count}. Biko tinye nke dị mkpụmkpụ.",
"a34dccd7": "Okwuntughe gị kwesịrị ịbụ opekata mpe mkpụrụedemede {count}. Biko tinye nke ka ogologo.",
"jea2ff04": "Okwuntughe ahụ dị mfe nke ukwuu ịkọ. Biko họrọ okwuntughe siri ike karịa.",
"ce482c36": "Otu oghere ma ọ bụ karịa adabaghị. Biko lelee ntinye gị wee nwaa ọzọ.",
"db626d88": "Biko tinye ọnụ ọgụgụ ekwentị gị iji were mecha setin akaụntụ gị",
"i3ee2550": "Biko mezuo ihe niile a jụrụ gị.",
"cf18a258": "Arịrịọ a dị ka ọ nwere ike ịbụ nke akpaaka. Iji chebe ndị ojiarụ anyị pụọ na nzipụ ozièlètrọniìk nkeāchọghị na omume ọjọọ ndị ọzọ, anyị enweghị ike imezu omume a ugbu a. Biko gbalịa ọzọ ma emechaa.",
"h7ffa648": "Oke nkwadoeziokwu SMS agafere.",
"b87ceb1c": "Pin nkwadoeziokwu nke SMS ezighi ezi.",
"f87e2faa": "Ndo, anyị enweghị ike ịhụ ojìarụ ahụ.",
"cdaf8222": "Ndo, ngwangwa gị gwụchatụrụ. Biko chere ogenta i were nwaa ọzọ.",
"c1b0e710": "A kwụsịtụrụ akaụntụ gị nke a mere na ọ gaghị e nwe ike ime ihe a.",
"bfb22fae": "Sorry, that post has been deleted.",
"a23cd3ba": "Some actions on this post have been disabled by X.",
"bb558892": "Onye ojìarụ a enweelarị nọmba ekwentị e mere nkwadoeziokwu.",
"hae1c934": "Ọ nwere ihe na-agaghị nke ọma, mana ewela iwe — ọ bụghị gị kpatara ya.",
"e784846c": "Your profile is under review. No new changes are allowed to name and profile photo during the review period.",
"h1cbdd30": "Biko mee ka ihe ndị etinyere na peeji weebụ a pụta i were nwe ike inwaa ọzọ.",
"a5077d3e": "Imegharị peeji weebụ",
"b2648ba4": "E nwere ike a ghara ikwe ka akaụntụ gị mee ihe a. Biko megharịa peeji weebu a ma nwaa ọzọ.",
"bcd6bb0e": "Onyeòtù",
"hd8c22d2": "O.nhz",
"c3153100": "O.nch",
"fa9adac1": "Chọọ maka \"{query}\"",
"jcec6620": "Post reply hidden",
"f75d1806": "Premium",
"j4a7d9a6": "Basic",
"hedf9d7c": "Premium+",
"f5de898e": "Hexagon profile picture",
"fcc8734a": "Square profile picture",
"c64e46f8": "This member was removed from the Community, so their posts are hidden.",
"b3f1cb42": "A moderator hid this post for breaking a Community rule.",
"cbd2dc9c": "You reported this post.",
"cfbea177": "{name}’s Space",
"ab4fc8bc": "Ohere",
"jd859c9c": "Ewepụla gị na Ohere a.",
"c60ed9b0": "You are not authorized to join this Space.",
"d8227e16": "You are not authorized to create this Space",
"b772cd66": "Emechaala",
"b3bd3e38": "Top posts first",
"d88cf16c": "Latest posts first",
"bd4ad3ea": "Wide",
"ca1180a0": "Medium",
"c86ff1b0": "Narrow",
"eed02406": "Obere",
"cffb04d6": "Standard",
"af15cef8": "Post with notes",
"ab28945c": "Profaịlụ onye ọtụnyeīhe",
"e2462db4": "Most shared in your network · Last 24 hours",
"ad16f482": "Mmemme",
"c20aaf3e": "Njehie",
"edf7bc2e": "Na-ewu ewu",
"fa884026": "Ndepụta",
"fa98627a": "Profaịlụ",
"a9ae1e78": "Chọọ",
"a2a3824a": "Isiokwu",
"a6d5b010": "Ahịrịogè",
"h5860a68": "Grok",
"a990900c": "Nkọwa-onwe",
"h02a6fe6": "Ọgbakọ",
"a15648a4": "Ihe Ndetu Ọgbakọ",
"j359a2a9": "{handle} • {itemName}",
"j5ec9765": "{handle} • Bookmark Folder",
"ce5deee7": "{handle} • Messages",
"d80c77dc": "Ị zoro nzaghachi ndị a",
"ef939f4b": "Nzaghachi nke @{screenName} zoro ezo",
"g40ff2b4": "Midia gị ekweghị igbanwe nha ma buru oke ibu ibugo.",
"b8098028": "Otu oyiyi mọọbụ karịa gafere nha oke enkwaghị ike imegharị ya",
"b36f4170": "Faịlụ dị efu.",
"hab3781e": "Otu faịlụ ma ọ bụ karịa enyere abụghị onyonyo.",
"f6c4fb02": "Enweghị ike hazie faịlụ GIF gị. Biko hụ ndụmọdụ maka mbulite GIF.",
"g0af3dd2": "Faịlụ GIF gị adabaghị. Biko hụ ndụmọdụ maka mbulite GIF.",
"b8c8b0be": "Enweghị ike hazie faịlụ vidiyo gị. Biko hụ ndụmọdụ maka mbulite vidiyo.",
"ica6d718": "Faịlụ vidiyo gị adabaghị. Biko hụ ndụmọdụ maka mbulite vidiyo.",
"b28d44f7": "Faịlụ GIF gị buru oke ibu. GIF kwesịrị ịbụ ihe na-erughị MB {limit}",
"i1db7d13": "Faịlụ vidiyo gị buru oke ibu. Vidiyo kwesịrị ịbụ ihe na-erughị MB {limit}",
"baac0ed7": "Faịlụ vidio gị buru oke ibu. Vidio gasị kwesịrị ịdị obere karịa GB {limit}",
"a22385bb": "Vidiyo gị dị ogologo nke ukwu. Gbalịa mee ka ọ bụrụ tịm tịm {limit} ma ọ bụ nke dị nta.",
"be0440bf": "Vidiyo gị dị ogologo nke ukwu. Gbalịa mee ka ọ bụrụ tịm tịm {limit} ma ọ bụ nke dị nta.",
"feeba512": "Enweghị ike hazie faịlụ foto gị. Biko hụ ndụmọdụ maka mbulite foto.",
"db123c02": "Faịlụ foto gị adabaghị. Biko hụ ndụmọdụ maka mbulite foto.",
"db6001e7": "Faịlụ onyonyo gị buru oke ibu. Onyonyo kwesịrị ịbụ ihe na-erughị MB {limit}",
"eb96d952": "Faịlụ onyonyo gị enweghị ogologo na obosara",
"b3880588": "Oge nbugo agafeela.",
"ca058b68": "Ụfọdụ midia gị jụrụ ibugo.",
"id24379c": "Ụfọdụ midia gị jụrụ ibugo.",
"h4d7cbcc": "Midia gị jụrụ ibulite. Biko nwaa ọzọ.",
"aaa798fc": "Upgrade",
"f13bb672": "Subscribe to Premium",
"ab0decc0": "Debanyere aha",
"e4e92f35": "Upgrade to {tier}",
"c2831f07": "Subscribe to {tier}",
"fd425414": "Get Radar",
"f09be7f8": "Nweta Nkwadoeziokwu",
"j34ad558": "Get Premium",
"a73d39fb": "Start free {numberOfDays}-day trial",
"i4fb96c7": "Get up to {percentage}% off X {premiumTierName}",
"c1c98165": "{percentage}% off",
"c5546038": "Expiring soon!",
"e9a47564": "Last chance",
"f65e7e91": "{percentage}% off {tier} {plan}",
"a84a736e": "Get Free Ad Credit",
"a0713d76": "Upgrade to Verified Organizations to get free ad credit & a suite of business growth tools.",
"a07e13fc": "Become a Premium Creator",
"i1b4aea2": "Upgrade to post longer videos",
"efa90342": "Unlock edit posts with X Premium",
"cc528e28": "Only X Premium subscribers have access to edit posts. Upgrade to continue.",
"h8a3525e": "Highlight on your profile",
"c0f7a722": "You must be subscribed to Premium to highlight posts on your profile.",
"i3b31136": "Write Articles on X",
"b6a41c5f": "You must be subscribed to {tier} to write Articles on X",
"ae2c4afc": "Want to publish your own Article?",
"d300e29b": "Upgrade to {tier} to write longer posts and Articles.",
"f614e2bc": "Upgrade to Premium to write longer posts and apply formatting such as bold and italics.",
"c9772e6e": "Upgrade to Premium",
"dc5575ac": "Want to have an ID verified label in your profile?",
"d154f46e": "Unlock Communities creation with X Premium",
"a0228c02": "Only X Premium subscribers have access to Communities creation. Upgrade to continue.",
"d07f1d74": "You must be verified to add these users to the conversation",
"ebe38626": "Only verified users can add people that don’t follow them to a group. Upgrade to continue.",
"e6eddae0": "Get verified to create this group",
"he27089e": "Only verified users can create a group with users that don’t follow them. Upgrade to continue.",
"d7bc1116": "Get verified to message this user",
"f897074a": "Only verified users can send Direct Message requests to people that don’t follow them. Upgrade to continue.",
"c0cf5eae": "Get verified to send more messages",
"h2da08fc": "You’ve hit the maximum limit for Direct Messages in a single day. Upgrade to continue messaging.",
"j503aee6": "Download videos with X Premium",
"j4dd3bf4": "Only X Premium subscribers can download videos. Upgrade to continue.",
"bc231a74": "Unlock bookmark folders with X Premium",
"ed534c78": "Only X Premium subscribers have access to bookmark folders. Upgrade to continue.",
"ed924940": "Remove all ads with Premium+",
"dccdb326": "Only Premium+ subscribers see no ads. Upgrade to continue.",
"adf3410a": "Subscribe to unlock new features and if eligible, receive a share of revenue.",
"fe7fd234": "Try Premium Basic for free today",
"a2f86dda": "Enhance your experience with Bookmark folders, Edit post, Custom app icons, and more with Premium Basic.",
"d9593598": "Try Premium for free today",
"d0d6b59c": "Upgrade your experience with less ads, power tools, and more with Premium.",
"g4bb7ea8": "Get up to 50% off X Premium",
"b748499c": "Offer extended!",
"b81135bc": "Ending today!",
"a8b4b878": "Experience the best of X this Thanksgiving.",
"df7fb242": "Thanksgiving offer",
"aeaf14a6": "Get 40% off Premium. Expiring soon!",
"ca8cbf78": "Get 40% off Premium and Premium+",
"j88ba18e": "Claim offer",
"d8661dd4": "For a limited time. Unlock the best of X.",
"f4dc8ea3": "Get {percentage}% off X Premium. Unlock the best of X.",
"db6a5d54": "You aren’t verified yet",
"edf7f57e": "Get verified for boosted replies, analytics, ad-free browsing, and more. Upgrade your profile now.",
"ba920d68": "Boost your influence with verification",
"ib79d0c2": "Unlock VIP features: verify your account",
"bebc5f12": "You’re advertising on X, but don’t have a Verified Organizations subscription",
"d7836d1e": "Subscribe to get up to $12,000 free ad credit, gold verification, VIP support, and a suite of tools to grow.",
"f528e369": "Subscribe to {tier} to write your own Articles",
"c5a8022a": "With Articles, you can publish your own long form content with rich text and inline media directly on X.",
"d77899b6": "Subscribe to Premium to write your own longer posts",
"bd65482a": "Write longer posts and apply text formatting such as bold and italic.",
"bee20918": "Get paid to post",
"gb699d52": "Enjoy posting on X? Subscribe to Premium to join our revenue share program.",
"f69877c2": "Boost your replies with Premium",
"gba90d44": "Get more visibility, stand out, and be seen.",
"a6dbcd58": "Support Creators by subscribing to Premium",
"c4f49130": "Up to 25% of your subscription fee goes directly to creators.",
"ca8fa2c0": "Get Verified with a blue check",
"febffc1a": "Boost your credibility, increase your visibility, and make your voice heard.",
"j45a377a": "Upgrade to Premium+",
"i7170016": "Enjoy additional benefits, zero ads and the largest reply prioritization.",
"ee87f95e": "Advanced analytics with X Premium",
"ac38dbc0": "See your profile analytics, understand your audience and more. Upgrade to continue.",
"i6e73154": "Preview of the Account analytics feature including bar charts and metrics",
"b583e154": "Unlock Analytics with X Premium",
"b7fb8c5e": "Spend $1k, Get $1k",
"ca559b70": "Subscribe now",
"d68773a4": "Visualize trends with Radar",
"f677fed6": "Monitor keywords, visualize trend activity, and filter conversations. In real-time.",
"d5effffc": "Add badge",
"e8070e70": "Try Premium",
"ec42820e": "Want more people to see your reply?",
"b0a95418": "Get Reply Boost with Premium",
"j8ee20aa": "Stand out in the conversation with Reply Boost",
"g13aa596": "Subscribe to Premium to have your Replies boosted",
"cadd92be": "Access your post analytics",
"a7058228": "Unlock advanced analytics with X Premium",
"gb7823ba": "Account analytics",
"i90f8e36": "Organize your bookmarks",
"abc6e710": "Sort your bookmarks into folders with X Premium",
"b7fa0cfe": "Edemede ndị Kacha ewu, ewu",
"bcc7e8c0": "Ebenrụtụakā gasị niile",
"i3145aa0": "Ebenrụtụakā gasị",
"e39b368e": "Mgbasa-ozi",
"hbea78a8": "New column",
"b5298d92": "Jikọọ",
"d35d74e4": "Mkpakọrịtaụka",
"h5245afa": "Ogbe",
"d4ebc798": "Draftụ",
"fcf3e54c": "Nyochaa",
"d806aa1a": "Nzaghachi ndị ezoro ezo",
"ha8209bc": "Ụlọ",
"a2f81050": "Ozi",
"cf2d1048": "Arịrịọ ozi",
"e7172d70": "Ozi ndị mgbakwunye",
"e1066d88": "My Profile",
"eb75875e": "Nziọkwa",
"j45978a8": "Nkwupụta",
"fd6a3f30": "Scheduled posts",
"aa4209e8": "Ndị na-eso Kaikē",
"d52a1caa": "Subscribers",
"d7b51c68": "Ndenye Aha",
"c5f4befa": "Ihe na-ewu ewu",
"df34a454": "Post",
"gfccba44": "Arịrịọ ndị nke onyeòtù",
"e42dd8fa": "Moderation log",
"c2c191fc": "Reported posts",
"c63602d4": "Ndị Ọgbakọ m",
"ddf0ba7e": "Nchịkọta",
"c64974fc": "Ndị na-eso",
"i099d32e": " Ndị na-eso ị maara",
"d960b55c": "Na-eso",
"b007440a": "Jobs",
"aa68dafc": "Notification details",
"b8533bac": "Isiokwu",
"jf00ebf6": "Column unavailable",
"jaaa8984": "Ọnọdụ",
"f345dcda": "Edit History",
"hea3f8ac": "Related posts",
"d35c9eec": "Account Analytics",
"b5b7fb94": "Otu",
"g755fcde": "Gị",
"f6b1ff81": "{name} na Gị",
"j652293d": "{listOfParticipants} na {count} ọzọ",
"fb4ee2f6": "Message requests deleted",
"j607bf02": "Download the X app",
"j49fd4e8": "Gbanwee na ngwa",
"hd50e064": "Ọbụghị ugbu a",
"a565833e": "Mepee akaụntụ",
"e919c3bc": "Banye",
"a17a75da": "X is better on the app",
"e7342ed4": "Never miss a post. Open this in the X app to get the full experience.",
"b6a43e78": "Bụrụ onye mbụ mara",
"b469e406": "Nọgide na-enweta ozi na ihe kacha gị mkpa. Gbanwee na ngwà ahụ maka nziọkwà ozugbo gasị gbasara ndị mmadụ, isiokwu na mmeme ị na-eso.",
"b8505290": "Zaghachi ka ị soro na mkpakọrịtaụka.",
"ae8b0564": "Repost to spread the word.",
"f2adab0e": "Like a post to share the love.",
"b7821a74": "Sign up so you never miss their posts.",
"e6d43d06": "Follow a Topic to discover great posts",
"ic848090": "Buru ụzọ Banye",
"f9ebe066": "Ị nwere ike isonye na mkpakọrịtaụka dị N'ogbe — ozugbo ị banyere. ",
"ea88ce2e": "Agbagharala ihe na-eme",
"je3d93e2": "People on X are the first to know.",
"d8817e36": "Nabata kuki niile",
"b9288ee6": "Jụ kuki ndị na-adịghị mkpa",
"i1390ec2": "Ọ nwere onye kwuru… kuki?",
"ga3121d5": "help center",
"g482c949": "Show more about your choices.",
"b47e760e": "Ka ilele ụzọ mkpirisi kiiboodu, pịa akara ajụjụ",
"fd2c7b44": "Lelee ụzọ mkpirisi kiiboodu",
"g7e2adf2": "Make a new deck",
"a6ba09e8": "Duplicate column",
"f5c9ccca": "Edit current Deck",
"bf42c578": "Focus on reorder button",
"j6fa64a6": "Go to final column",
"b5545202": "Go to final pinned deck",
"e0497acc": "Go to Manage All Decks",
"beef7b14": "Go to next column",
"a5cb005e": "Go to Nth column",
"f65391bc": "Go to Nth pinned Deck",
"h0bfdd20": "Add column",
"h770f6d4": "Go to previous column",
"b8b2b70c": "Delete column",
"a3e2df76": "Undo delete column",
"g850aec4": "Open / Close column settings",
"d5696fcc": "Enyemaka ụzọ mkpirisi",
"a83d4280": "Next post",
"g0048656": "Previous post",
"a690c4d0": "Ibe ala",
"e893811a": "Load new posts",
"cdb53d7a": "Mkpọ aha",
"d7b8ebaa": "Mmasị",
"b0041756": "Ndepụta",
"d4986f86": "Ozi Òzugbo",
"bb081ea2": "Ntọala",
"eee2ed92": "Gaa na ojìarụ...",
"ee5ccf3e": "Ntọala ngosi",
"ab3d53f8": "New post",
"de94bda6": "Send post",
"e736990a": "Ozi Ozugbo ọhụrụ",
"fe731016": "Mmasị",
"d17df548": "Zaghachi",
"g062295e": "Repost",
"h01621a4": "Share post",
"gb303814": "Ebenrụtụakā",
"c03b1126": "Mee akaụntụ ogbi",
"ebd2abb2": "Gbochie akaụntụ",
"hc6c5510": "Open post details",
"eebdef38": "Gbasaa foto",
"b488758c": "Mepee/Mechie ọdụ Ozi",
"c82314e0": "Kwụsị/Kpọọ Vidiyo ahọpụtara",
"b881560e": "Mee vidiyo ogbi ahọpụtara",
"a94f7302": "Gaa na Ọdụ Ọdiyo",
"a7e604c6": "Kpọọ/Kwụsịtụ Ọdụ Ọdiyo",
"f978c4fc": "Mee ogbi/Wepụ ogbi Ọdụ Ọdiyo",
"hc73f030": "Akaụntụ gị",
"f15bfdb4": "Ozi akaụntụ",
"a3841918": "Ozi-e",
"c21037d0": "Obodo",
"ab1f7ee0": "Gbanwee okwuntughe gị",
"e731db5a": "Tọgharia okwuntụghe",
"f56af9cc": "Budata ebe nchekwa data gị",
"hfb92b14": "Gbanyụọ akaụntụ gị",
"bf96fda4": "Afọ",
"d12d42dc": "Akpaaka",
"fdb81456": "Parody label",
"j9d10268": "Ihe-omume akaụntụ",
"i6b3f59a": "Akụkọ akaụntụ",
"da202f9a": "Ndepụta mgbasa ozi gị",
"hc36dbba": "Ngwaọrụ na ngwa ndị banyere",
"a8d0108e": "Okike",
"a03dacaa": "Asụsụ",
"d9138166": "Hụ ebe ị gagoro",
"b523ecc6": "Hịstrị nnweta akaụntụ",
"abedd45c": "Rịọ data gị",
"h1f01a24": "Mmasị",
"j7ad754a": "Your X data",
"d299431c": "Ịkpata ego",
"j087774e": "Ụmụ mkpụrụ ego",
"ff9ed474": "Mgbakọta ego enwetara",
"ec885836": "Creator Rev Share",
"b431a5c6": "Ad Rev Share",
"b0e986ec": "Monetization IDV",
"aca4d76a": "Ad Rev Share Setup",
"ab1b837a": "Ad Rev Share Dashboard",
"a9c1a9cc": "Video Ads",
"d4ab5c12": "Video Ads Setup",
"c429e3ba": "Creator Subscriptions",
"fce877d6": "Undo post",
"dd0c889e": "Profile customization",
"ib35705e": "Jikwaa Ndebanye aha",
"cf131522": "Manage Affiliate Badges",
"cb165528": "Njirimara akụkọ na mwube",
"f8645654": "Nchekwa na ịnweta akaụntụ",
"j95edf76": "Nchekwa",
"afe4a358": "ID verification",
"dd703318": "Nyocha ụzọ abụọ",
"b1686800": "Jikwaa igodo ndị nche",
"ae72d4c4": "Ngwa na okèrènjìkọ",
"a1e8e682": "Registered devices",
"h1abfbce": "Akaụntụ ndị ejikọrọ",
"cad53944": "Nzuzo na nchekwa",
"e908903a": "Ndị na-ege ntị na ntinye aha nrịbama",
"b5c85d2c": "Protect your posts",
"f56d108e": "Ntinye aha nrịbama na foto",
"c6f67e32": "Your posts",
"f2bd9c48": "Ọdịnaya ị na-ahụ",
"cbd449a0": "Mee ogbi ma gbochie",
"daef29b8": "Akaụntụ ndị e mere ogbi",
"i0dd9b9e": "Mkpụrụokwu ndị e mere ogbi",
"a5f32aa2": "Akaụntụ ndị egbochiri",
"i58a274c": "Ozi ozugbo",
"ded416b0": "Ohere ",
"fd4d9068": "Ike nchọpụta na kọntaktị",
"bbcafbda": "Jikwaa ndị kọntaktị",
"aeddb28a": "Mmasị ọdịnaya",
"d035a8d0": "Mmasị nke mgbasa ozi",
"d0b74a5a": "Ihe achoro maka kuki",
"h3909cd0": "Njirimara echere",
"d84e63d2": "Off-X activity",
"h14ba864": "Ịkekọrịta data na ndị mmekọ azụmahịa",
"jabb9c9a": "Ozi ebe",
"fcb6a5b8": "Add location information to your posts",
"h9f2da68": "Midia nwere mmetụta",
"id6a8e1a": "Nzacha nzaghachi ",
"fc35f762": "Nzaghachi azachara",
"gaac710a": "Ebe Mkpesa",
"bcd81cac": "Mmasị",
"i647fb04": "Ihe nzacha",
"hee41732": "Nziọkwa ozugbo",
"e75f25a8": "Nziọkwà ozi-e",
"cf9b166a": "Nnweta, ngosi, na asụsụ",
"e3719c16": "Nnweta",
"a776eed8": "Ịkpọ na-akpaghị aka",
"c4881c66": "Ngosipụta",
"d495680e": "Asụsụ",
"f953f53a": "Gbanwee asụsụ ngosi",
"eafe3288": "Ojiji data",
"b721eb38": "Gbasara",
"g9230d00": "Delegate",
"cb8ebf5c": "Ndị otu ị nyefere",
"i95202f6": "Akaụntụ ndị ekenyela gị",
"afcad7f2": "Budata ngwa",
"e8f57e08": "Nhazi nkeonwe na data",
"gbde3534": "Data ihe mmasị na mgbasa ozi",
"a54826c6": "Mmasị ndị echere sitere n'aka ndị mmekọ",
"i9028824": "Na-ebugo",
"f5090e28": "Seems like you lost connectivity. We’ll keep retrying.",
"ba929da8": "Ahụghị peeji",
"d203e242": "Achọtaghị",
"e2eac0c4": "Nke mbụ",
"i5aa4ce0": "Ihe ndị ọzọ na menu",
"h63a5c3c": "Ọzọ",
"a4fc1872": "Last week",
"e14bb1da": "Last day",
"d86bbf0f": "{count} ihe ndị a na-agụbeghị",
"h6beb5fb": "{count},",
"i5f7b6b8": "Akaụntụ",
"da4691aa": "Lelee akaụntụ niile",
"c7e55ccf": "Gbanwee na @{screenname}",
"b20a3894": "E ehichapụla akaụntụ ịchọrọ ịgbanwe na ya.",
"daffabde": "na-eme ka...",
"eccbfa26": "Akaụntụ ndị nnọchite anya",
"a1b7a904": "Mee ka ",
"g61ed8a4": "Ọ nwere ihe na-agaghị nke ọma.",
"e520f166": "You are over the daily limit for sending posts.",
"c0554ca0": "Something went wrong. Try sending your post again in a minute.",
"b25c5b2a": "Choi! I kwuburu nke ahụ.",
"cef21114": "Your account is suspended and is not permitted to send posts.",
"cf369a0e": "The post you are trying to reply to has been deleted or is not visible to you.",
"cd86efa8": "The text of your post exceeds the number of allowed @mentions.",
"e002f424": "The text of your post exceeds the number of allowed URLs.",
"c2b4ae8c": "The text of your post exceeds the number of allowed hashtags.",
"hf05f59e": "The text of your post exceeds the number of allowed cashtags.",
"dffb84c6": "The text of your post contains a hashtag that is longer than allowed.",
"d7b21bc8": "The post exceeds the number of allowed attachment types.",
"e4672ac2": "Oops! A URL in your post appears to link to a page that has spammy or unsafe content.",
"he5ecf52": "The text of your post exceeds the maximum allowed limit.",
"ac78e602": "The content of your post is invalid.",
"i251c738": "The frame rate of the video you tried to upload was too high.",
"ed3ac7ef": "The frame rate of the video you tried to upload was too high. Maximum frame rate: 60. Actual frame rate: {frameRate}.",
"e23fe0cc": "The aspect ratio of the video you tried to upload was too large.",
"ca4514c0": "The aspect ratio of the video you tried to upload was too small.",
"fb4a459c": "The duration of the video you tried to upload was too short.",
"ca1afa98": "The duration of the video you tried to upload was too long.",
"b2e94283": "site na @{viaScreenName}",
"ee69d769": "Post{verb}",
"ge8e4a38": "Post all",
"h735a98e": "Nhazi oge",
"h3701ffe": "Melite",
"d9ef2842": "Ihe ndị nke agụbeghị",
"cdf89b84": "Ahụmụmma Nleretụ",
"i83d4f14": "Arịrịọ onye na-eso",
"aeede01a": "Akara",
"ae1bbb26": "Pụọ",
"fd442790": "Nchekwa na nzuzo",
"da137d9a": "MStV Transparenzangaben",
"e0cb0c72": "Ads",
"e2eef3c2": "Verified Orgs",
"b55d8a78": "Create your Space",
"a5a30af0": "Articles",
"c818c60c": "Nyocha",
"d13d697c": "New",
"j0e2cfa8": "Azụmahịa",
"ga169e1b": "Ozi Òzugbo ({count} agụbeghi mkpakọrịtaụka gasị)",
"d83682ec": "Home (New unread posts)",
"e1249849": "nziọkwa ({count} agụbeghi nziọkwa)",
"c0b786ee": "Chọọ ma nyochaa",
"e04033be": "New posts are available. Push the period key to go to the them.",
"hec711c0": "See new posts",
"j0a8da6e": "Tinye akaụntụ dị adị",
"c6f2bf00": "Jikwaa akaụntụ",
"a58e0e51": "Wepụ @{screenName}",
"j62f43a6": "Lee akaụntụ nnọchite anya",
"d4c52015": "{count} akaụntụ nnọchianya na-echere oku gasị",
"b8e1d524": "Akaụntụ",
"gef27c4c": "Menu akaụntụ",
"b7dc3885": "Gbanwee na @{screenName}",
"c61eea74": "Akaụntụ nkeonwe",
"g6d42fea": "Toggle navigation",
"eb022176": "Kepụta akaụntụ",
"gcfef7b6": "Kepụta akaụntụ n'iji ekwenti ma ọ bụ ozi-e",
"e5b0e544": "Banye",
"gd93944e": "Jiri ngwa rụọ ọrụ",
"f2f787a0": "Usoro Nke Ọrụ",
"e1099fd6": "Iwu Nzuzo",
"c1df1ae0": "Ojiji Kuki gasị.",
"cdc1bff7": "Menu profaịlụ {loggedInUserName}",
"fd48249b": "{count} ndị mmadụ",
"b93ba92d": "{peopleCount} ndị mmadụ",
"ae2205d2": "Unu na-eso onwe unu",
"fd06b02f": "@{screenName} dị ugbu a na Ohere na-arụ ọrụ, Pịa ka ịbanye site na profaịlụ ha",
"f2b3fe06": "Na-ebugo nsonaazụ",
"fc9dd578": "Chọọ ndị mmadụ",
"gdb7bc25": "{name} - họrọ iji wepụ",
"f065ba8c": "Ajụjụ ọchụchọ",
"hbc99b03": "Gaa na @{screenName}",
"a2c1b222": "Try searching for people, lists, or keywords",
"f45c4250": "Kpochapụ ọchụchọ niile na nso nso a?",
"caae4dda": "Enweghị ike ịmegharị nke a ma ị ga-ewepụkwa ọchụchọ gị niile na nso nso a.",
"dbd5d400": "Hichapụ",
"a8d68f62": "Nke nso nso",
"c6530778": "Ọchụchọ ndị e chekwara",
"e047b8fa": "Hichapụ ihe niile",
"aa6e3300": "Ọ dị ka njikọ gị kwụsịrị ịrụ ọrụ. Biko lelee ya ma gbalịa ọzọ.",
"e68b09b4": "Wepụ",
"hffea05c": "Hichapụ ọchụchọ echekwara?",
"j037e374": "Enweghị ike ịmegharị nke a ma ị ga-atufu ọchụchọ echekwara gị.",
"d96cf7ce": "Hichapụ",
"hbe4feb5": "Ezigara @{screenName} arịrịọ nsonye ma na-echere nnabata ha.",
"df4c86b0": "Biko buru ụzọ melite profaịlụ gị",
"bba40ffa": "Ị nweghị ike iso akaụntụ a",
"f558829e": "Iji soro akaụntụ a, Iji soro akaụntụ a, ị ga-etinyerịrị ụbọchị ọmụmụ gị na profaịlụ gị, na-ahụ na ị ga-emezu afọ kacha nta chọrọ.",
"a6941096": "Enweghị ike isonyere akaụntụ a site na obodo gị.",
"j24c37b2": "Nwetara ya",
"if8cd2a4": "Ị tobeghị afọ iji soro akaụntụ a.",
"b5972260": "Ọ nwere ihe na-agaghị nke ọma. Gbalịa kagbuo arịrịọ ịsonye gị maka ojìarụ ahụ ọzọ n'otu nkeji.",
"j4292c24": "A gbọchiela gị isoro ojìarụ a na arịrịọ ha.",
"a0ba5842": "I nweghị ike iso ọtụtụ mmadụ n'oge a.",
"a5202b82": "Ọ nwere ihe na-agaghị nke ọma. Gbalịa iso ojìarụ ahụ ọzọ n'otu nkeji.",
"f8cbf714": "Ị na-agbalị iso onye ojìarụ na-adịghị adị.",
"f2e66452": "A kwụsịtụrụ akaụntụ gị na nke a bụ na ọ nweghị ike ị soro ndị ojìarụ.",
"ca96fe6e": "Ọ nwere ihe na-agaghị nke ọma. Gbalịa ịwepụ mgbochi na ojìarụ ahụ ọzọ n'otu nkeji.",
"e1a0aaca": "Ọ nwere ihe na-agaghị nke ọma. Gbalịa kwụsị iso ojìarụ ahụ ọzọ n'otu nkeji.",
"fd5208c6": "Gaa na ntọala",
"c0d13570": "Affiliates",
"ba96929e": "Hiring",
"h7d5d9fa": "Beta",
"gf62c116": "Nyereaka",
"a4cf866e": "Mgbasa ozi",
"g2fd3206": "Ndị mmadụ",
"h70bdf0a": "Radar",
"bf6b72ac": "Full Access",
"e49537c2": "Hmm...peeji a adịghị. Gbalịa ịchọ ihe ọzọ.",
"fcbb540a": "Oke gafere",
"d4f88600": "Nyochaa kọntaktị",
"b192ccae": "Ị nweghị usoro kọntaktị akwadoro.",
"a0487504": "Iji rịọ maka nkwadoeziokwu, ị ga-ebu ụzọ kwado otu usoro kọntaktị.",
"fff7d93c": "Tinye Foto",
"g969bfae": "Ị nweghị foto profaịlụ.",
"gb2f35e4": "Iji rịọ nkwadoeziokwu, ị ga-ebu ụzọ tinye foto profaịlụ.",
"i33cf692": "Gbakwunye ohere URL",
"c1df579e": "Osote",
"b679ff6a": "URL ezighi ezi",
"i79902b4": "Họrọ usoro nkwenye",
"fb2fcb5c": "Nzọụkwụ a na-enyere anyị aka inyocha njirimara gị. Họrọ usoro kacha mma maka gị.",
"e43425fa": "ID nke Gọọmentị nyere",
"cb7c2e2e": "Foto ID nke gọọmentị nyere gị.",
"a411926a": "Ozi-e nke ọrụ",
"g253cdd0": "Ozi-e nke isi nwere ngalaba dabara na ngalaba ị họọrọ.",
"cf93bcb0": "Tinye ntụaka webụsaịtị nke ọrụ",
"gfb55fa8": "An official website that directly references your X account.",
"g40cd2c0": "Ntụaka akwadoro",
"a7f1cff6": "Tinye ntụaka webụsaịtị nke ọrụ",
"a11cd524": "Enter an official website which references your X account and is associated with your verification request.",
"ba656f26": "Is your X account referenced on the website?",
"ed751204": "Anyị kwesịrị ikwenye na akaụntụ gị ziri ezi iji mere gị nkwadoeziokwu. Ọ bụrụ na edeghị aha njirimara gị na peeji ị jikọtara, ị ga-ebufe ihe akaebe nke izi ezi tupu i mechaa arịrịọ gị.",
"fbc023b0": "Ee, ọ bụ ya",
"e785ce06": "M ga-eji nhọrọ dị iche",
"i8d58f3e": "M ga-eji ID gọọmentị",
"eb21ecaa": "M ga-eji adreesị ozi-e",
"f848a69e": "Anyị kwesịrị ikwenye na akaụntụ gị bụ eziokwu iji mee gị nkwadoeziokwu. Ọ bụrụ na edeghị aha njirimara gị na webụsaịtị nke ọrụ enyere, anyị enweghị ike ịkwado izi ezi akaụntụ.",
"d59b5366": "Anyị kwesịrị ikwenye na akaụntụ gị bụ eziokwu iji mere gị nkwadoeziokwu. Ọ bụrụ na edeghị aha njirimara gị na peeji ị jikọtara, anyị enweghị ike ime nke ọma ijikọ akaụntụ gị na onye okike ọdịnaya ama ama.",
"bfb01c62": "Mba, laghachi azụ",
"fa51040a": "Provide a link to the official website of a qualifying news organization or publication that references you and your X account.",
"d0460f12": "Provide a link that references your account as the official X account for your organization. The reference must come from the official website of a verified entity.",
"h45b00d8": "Họrọ usoro iji gosi na akaụntụ gị bụ eziokwu yana ụlọ ọrụ ntụrụndụ nke metụtara arịrịọ a na-achịkwa ya.",
"fc718708": "The official website of a qualifying organization that references you and your X account.",
"g32c2900": "Họrọ usoro iji gosi na akaụntụ gị bụ eziokwu yana ndị ụlọ ọrụ mmepụta ihe metụtara arịrịọ a na-achịkwa ya.",
"j5b1224c": "Provide a link that references your account as the official X account for your production. The reference must come from the official website of a Verified entity.",
"d090a5d4": "An official website of a Verified organization or publication that references your X account.",
"eb08a392": "Họrọ usoro iji gosi na akaụntụ gị bụ eziokwu yana onye na-azọ ọkwa ọchịchị nke metụtara arịrịọ a na-achịkwa ya.",
"h0de1396": "Provide a link that references your account as the official X account of the candidate for office related to this request. The reference must come from the official website of a Verified entity.",
"dcc23262": "Họrọ usoro iji gosi na akaụntụ gị bụ eziokwu yana onye mmume ma ọ bụ onye nhazi nke metụtara arịrịọ a na-achịkwa ya.",
"c880e068": "An official website of an advocacy organization that references you and your X account.",
"e412d500": "Provide a link that references you in a leadership position for a Verified advocacy organization and your X account. The reference must come from the official site of a Verified organization.",
"dedf41f2": "Họrọ usoro iji gosi na akaụntụ gị bụ eziokwu yana onye nwere mmetụta nke metụtara arịrịọ a na-achịkwa ya.",
"b4aed9e0": "An official website of a verified organization that references you and your X account.",
"b2069e40": "Provide a link that references you and your X account. The reference must come from the official site of a Verified organization.",
"baf718c4": "Họrọ usoro iji gosi na akaụntụ gị bụ ezigbo yana ụlọ ọrụ, ika ma ọ bụ nzukọ metụtara arịrịọ a na-achịkwa ya.",
"c65bbbc2": "Họrọ usoro iji gosi na akaụntụ gị ziri ezi yana nnukwu onye ọchịchị ma ọ bụ onye isi metụtara arịrịọ a na-achịkwa ya.",
"i31e3606": "Adreesị ozi-e nke ọrụ nwere ngalaba nke ụlọ ọrụ, akara, ma ọ bụ nzukọ tozuru oke.",
"de70afe8": "A reference to you and your X account on the official website of a qualifying organization.",
"a3a523f2": "Provide a link that references your account as the official X account for your company. The reference must come from the official website of a verified entity.",
"jf58899a": "Provide a link that references you as a senior leader at your organization and your X account. The reference must come from the official website of a verified entity.",
"f7afbaec": "Họrọ usoro iji gosi na akaụntụ gị bụ eziokwu yana onye odeakụkọ jikwa ya maka nzukọ akụkọ ma ọ bụ mbipụta tozuru oke.",
"d4ab0056": "Họrọ usoro iji gosi na akaụntụ gị bụ ezigbo yana onye nta akụkọ ama ama nweere onwe ya na-ejikwa ya.",
"d2a77622": "Adreesị ozi-e nke ọrụ nwere ngalaba nke nzukọ akụkọ ma ọ bụ mbipụta tozuru oke.",
"eec341da": "An official website of a news organization or publication that references your X account.",
"b03ae068": "Họrọ usoro iji gosi na akaụntụ gị bụ ezigbo yana nzukọ akụkọ ma ọ bụ mbipụta metụtara arịrịọ a na-achịkwa ya.",
"g0daba4a": "Họrọ usoro iji gosi na akaụntụ gị bụ eziokwu yana onye igwu egwuregwu ọkachamara metụtara arịrịọ a na-achịkwa ya.",
"ab8e430c": "Provide a link that references your account as the official X account of the individual in gaming related to this request. The reference must come from the official website of a Verified entity.",
"cdcd9cd6": "Họrọ usoro iji gosi na akaụntụ gị bụ eziokwu yana ụlọ ọrụ egwuregwu ọkachamara metụtara arịrịọ a na-achịkwa ya.",
"gad25890": "Provide a link that references your account as the official X account of the professional sports entity related to this request. The reference must come from the official website of a Verified entity.",
"e6dc91b2": "Họrọ usoro iji gosi na akaụntụ gị bụ eziokwu yana onye egwuregwu ọkachamara metụtara arịrịọ a na-achịkwa ya.",
"i9aed706": "Provide a link that references your account as the official X account of the professional sports figure related to this request. The reference must come from the official website of a Verified entity.",
"abd587d2": "Tinye ntụaka ọzọ",
"i0bba81a": "Tinye ntụaka maka ọrụ",
"a6a76e3c": "Họrọ usoro ndị ama ama",
"ecd2abda": "Kwenye ntozu akaụntụ",
"cb70b894": "Laghachi azụ",
"g8b511fe": "Ihe na-ewu ewu nke Google",
"c7d50c96": "Profaịlụ dị na Ihe na-ewu ewu nke Google nwere ihe akaebe nke ọrụ ọchụchọ na nso nso a gbasara gị.",
"a68b43ee": "Tinye profaịlụ Ihe na-ewu ewu nke Google",
"b5e30390": "Profaịlụ Ihe na-ewu ewu nke Google",
"h146703e": "Edide Wikipedia",
"ee38d0f0": "Edide Wikipedia nke gbasara gị na-emezu ụkpụrụ ndị ama ama maka ndị mmadụ.",
"cb97ee3e": "Tinye Edide Wikipedia",
"hc371f34": "Akụkọ akụkọ ụwa",
"b9d0ad90": "Opekempe njikọ atọ sitere na ụlọ ọrụ mgbasa ozi ama ama bụ ndị kwuworo okwu gbasara gị ma ọ bụ zoro aka na gị n'ime ọnwa isii gara aga.",
"ge137dce": "Opekempe edide atọ gbasara gị sitere na mbipụta akụkọ ruru eru n'ime ọnwa isii gara aga.",
"h2b9a5fe": "Opekempe edide atọ gbasara ụlọ ọrụ gị sitere na mbipụta akụkọ ruru eru n'ime ọnwa isii gara aga.",
"baccb708": "Tinye akụkọ akụkọụwa akwadoro",
"feadd98c": "Tinye ntụaka akụkọ akwadoro",
"j7ae97aa": "Ntụaka akụkọ akwadoro",
"c368aa8e": "Opekempe edide atọ sitere na mbipụta akụkọ ndị akwadoro na-ezo aka na gị.",
"ded0edad": "Edide #{n}",
"bebae55a": "Mgbanwe ngwaahịa nke ọha",
"c5571610": "Njikọ na-enye ihe akaebe nke ọnụnọ dị ukwuu na mgbanwe ngwaahịa ọha.",
"e2d42628": "Tinye ntụaka mgbanwe ngwaahịa ",
"jc19b4e8": "Ndepụta mgbanwe ngwaahịa",
"fc3ee696": "Ntụaka nke ndu",
"i3e65eb4": "Saịtị nke ọrụ nke ụlọ ọrụ akwadoro nke na-ezo aka gị n'ọkwa onye isi.",
"jd014eba": "URL ahụ nyere njikọ peeji a kapịrị ọnụ na-ezo aka na onye anamachọihe.",
"a96901cc": "Tinye ntụaka nke ndu",
"cc424a22": "Ntụaka nke nkwado",
"ibfc1a5a": "Ị tozughị maka nkwadoeziokwu na ngalaba a.",
"e1c78796": "Weebụsaịtị nke isi",
"ff2ee0c2": "Mmemme",
"hc61adfc": "Ntụrụndụ",
"e404203c": "Igwu egwuregwu",
"d2042392": "Gọọmentị",
"c365dcc6": "Ndị ọzọ",
"c8ee31da": "Akụkọuwa",
"d27beb9e": "Egwuregwu",
"cc4b66b6": "Họrọ otu ngalaba",
"b37461a4": "Họrọ otu ụdị akaụntụ",
"b27325f6": "Onye okike ọdịnaya",
"a5a6affc": "Ndị okike nwere mmetụta na-emepụta ọdịnaya dijitalụ nke na-ebipụta ọdịnaya na-etinye aka yana ọdịnaya mbụ mgbe niile.",
"a15326de": "Opekempe edide atọ sitere na mbipụta akụkọ ndị ruru eru na-ezo aka na gị.",
"g704a93a": "Saịtị nke ọrụ jikọtara ya na ọrụ nkwado ama ama nke na-ezo aka gị n'ọkwa onye ndu.",
"c6bd60ec": "Onye mmume ma ọ bụ onye nhazi",
"c92fdb06": "Notable individuals using Xs to bring about socioeconomic, political, or cultural change.",
"a18c6dfc": "Onye nta akụkọ",
"h0b46534": "Ndị nta akụkọ n'otu n'otu na-arụ ọrụ site n'aka nzukọ akụkọ ma ọ bụ nke mbipụta akwadoro.",
"ff929fec": "Nzukọ ma ọ bụ mmekọ ama ama",
"jf537894": "Ụlọ ọrụ ndị a ma ama, yana akaụntụ ndị mmekọ nke abụọ, gụnyere ụlọ ọrụ, ụdị, na ụlọ ọrụ anaghị akwụ ụgwọ.",
"d2ea204a": "Onye ọzọ nwere mmetụta",
"f875ec6e": "Individuals with a significant presence on and off the X platform that do not fall into other categories.",
"i3e6aaa6": "Nnukwu onye ọchịchị ma ọ bụ onye isi",
"bbcbb9e6": "Ndị isi na ndị isi ndị ọzọ a ma ama nke ụlọ ọrụ ama ama, ụdị na ụlọ ọrụ anaghị akwụ ụgwọ.",
"j0bc23f4": "Ekwenyela m na emelarị akaụntụ nzukọ m nkwadoeziokwu.",
"aa6228de": "Ụlọ ọrụ ntụrụndụ",
"d5b3cbca": "Nnukwu ụlọ ọrụ ntụrụndụ, dị ka netwọk telivishọn, ụlọ ihe nkiri, na ụlọ ọrụ egwu.",
"b5a3e590": "Onye na ntụrụndụ",
"e484f794": "Ndị nwere mmetụta na ụlọ ọrụ ntụrụndụ dị ka ndị na-eme ihe nkiri, ndị na-egwu egwu, ndị nduzi, ndị na-ede ihe nkiri, ndị na-atọ ọchị, na ndị ọzọ.",
"b8d8ea64": "Ụlọ ọrụ nke mmepụta",
"ff27db3c": "Akaụntụ nke ọrụ nke mmepụta jikọtara ya na ụlọ ọrụ ntụrụndụ, dị ka ihe nkiri, mmemme/ememme, ihe nkiri TV na ndị ọzọ.",
"c0e57cb2": "Tinye profaịlụ onye okike gị",
"f3c605b6": "Profaịlụ onye okike",
"h042d1a6": "Profaịlụ IMDB",
"d2310f0c": "Profaịlụ na IMDB gụnyere opekata mpe kredit mmepụta 50.",
"ba04b4c2": "Tinye profaịlụ IMDB",
"i9b124b6": "Onye ọrụ gọọmentị",
"f84a99ee": "Ndị isi gọọmentị, gụnyere ndị isi obodo, ndị ọrụ gọọmentị a họpụtara ahọpụta, ndị minista ahọpụtara, na ndị nnọchi anya steeti ma ọ bụ nke ọkwa-obodo.",
"j2cb5f50": "Onye na-azọ ọkwa ọchịchị",
"j2472894": "Ndị na-azọ ọkwa ọchịchị maka nke steeti- ma ọ bụ ọkwa-obodo.",
"ha44c130": "Ụlọ ọrụ gọọmentị ma ọ bụ ọrụ ọha",
"j8ae9d40": "Ụlọ ọrụ gọọmentị ndị isi na ndị ụlọ ọrụ, yana enyemaka na ọrụ ọha.",
"ef1d6176": "Ị bụ onye na-azọ ọkwa ọchịchị na nke steeti- ma ọ bụ ọkwa-obodo?",
"f54ba6e6": "Ị ga-abụrịrị onye na-azọ ọkwa ọchịchị ugbu a na steeti- ma ọ bụ ọkwa-obodo iji ruo eru maka nkwadoeziokwu na ngalaba a.",
"dd85d0a0": "Ị bụ onye ọrụ gọọmentị na nke steeti- ma ọ bụ ọkwa-obodo?",
"f0058c60": "Ị ga-abụrịrị onye ọrụ gọọmentị ugbu a na steeti- ma ọ bụ ọkwa-obodo iji ruo eru maka nkwadoeziokwu na ngalaba a.",
"f420a712": "Ee, abụ m",
"fb97d22c": "Mba, abụghị m",
"e16b1cc8": "Profaịlụ gị ọ na-emezu ihe achọrọ maka onye ndọrọ ndọrọ ọchịchị?",
"cf2ee92e": "Ndị na-azọ ọkwa ọchịchị ga-enwerịrị akaụntụ nke ọha nke na-ezo aka n'ọfịs ha na-agba ọsọ ma jikọta na webụsaịtị gọọmentị nke mkpọsa ha.",
"g544885e": "Profaịlụ gị ọ na-emezu ụkpụrụ maka ụlọ ọrụ gọọmentị ma ọ bụ ụlọ ọrụ?",
"bd0b4542": "Ụlọ ọrụ gọọmentị na ndị ụlọ ọrụ ga-enwerịrị akaụntụ nke ọha nke jikọtara na webụsaịtị nke ọrụ ha.",
"i45b224c": "Profaịlụ gị ọ na-emezu ihe achọrọ maka onye ọchịchị?",
"fba1dd66": "Ndị ọrụ gọọmentị ga-enwerịrị akaụntụ nke ọha nke na-ezo aka na ọnọdụ gọọmentị ha ugbu a yana njikọ na webụsaịtị gọọmentị nke ụlọ ọrụ ha.",
"e95c44de": "Ee, o zuru ezu",
"fa5e15e2": "M kwesịrị imelite",
"jdf47e8e": "Weebụsaịtị mkpọsa",
"eeec7316": "Tinye weebụsaịtị mkpọsa",
"b163b654": "Ntụaka gọọmentị",
"d2378d34": "Tinye ntụaka gọọmentị",
"a05b8446": "Onye nta akụkọ nweere onwe ya",
"hdad12b2": "Ndị nọọrọ onwe ha, ndị nta akụkọ nweere onwe ha nwere ọrụ ama ama na mbipụta ndị akwadoro.",
"d2d7af4c": "Ụlọ ọrụ akụkọ ma ọ bụ mbipụta",
"d83e51dc": "Bipụta na mbipụta nke dijitalụ; mgbasa-ozi, eriri igwe onyonyo, satịlaịtị, na TV nkiri na ịntanetị na netwọkụ akụkọ redio, ọwa na mmemme; pọdkastị; na midịà ndị ọzọ yiri ya.",
"g708cbdc": "Profaịlụ gị ọ na-emezu ihe nkwadoeziokwu chọrọ?",
"b107ee5c": "Ndị nzukọ akụkọ ga-enwerịrị akaụntụ ọha na-ejikọta na webụsaịtị nke ọrụ ha.",
"e8746826": "Ekwenyela m na emelarị akaụntụ onye were m n'ọrụ nkwadoeziokwu.",
"jc09b420": "Profaịlụ gị ọ na-emezu ihe achọrọ maka onye nta akụkọ?",
"gfbd7e58": "Ndị nta akụkọ ga-enwerịrị akaụntụ ọha nke na-ezo aka aha yana njikọ na webụsaịtị gọọmentị nke ọrụ nke nzukọ akụkọ akwadoro na ha na-arụ ọrụ.",
"h0ad4c9e": "Ntụaka nke isi sitere na nzukọ akụkọ",
"a6553b50": "Weebụsaịtị nke ọrụ nke mbipụta akụkọ ma ọ bụ nzukọ ruru eru nke na-ezo aka gị dị ka onye nta akụkọ.",
"a29b2988": "Ahịrị ode akwukwo na kredit nke edide",
"ab4eae60": "Opekempe ahịrị ode akwụkwọ atọ ma ọ bụ kredit n'akwụkwọ ndị ruru eru e bipụtara n'ime ọnwa isii gara aga.",
"b3fac982": "URL ahụ nyere njikọ peeji a kapịrị ọnụ na-ezo aka na m.",
"e26dc9e2": "Tinye ọrụ ama ama",
"e164df2e": "Edide ndị e nyere hà dabara n'ụkpụrụ nke ndị a ma ama?",
"i80ff05e": "Naanị edide ndị nzukọ akụkọ akwadoro na mbipụta biputere tozuru oke dị ka ihe akaebe nke ama ama.",
"cf7482ec": "Ee, ha na-eme ya",
"fcb96cfc": "Onye nọ na egwuregwu ọkachamara",
"ddc7d64a": "Ndị na-eme egwuregwu ọkachamara, ndị nchịkwa, ndị njikwa, yana ndị na-eme egwuregwu na-ekere òkè na asọmpi zuru ụwa ọnụ (dịka Olimpiks, Paralimpiks, wdg).",
"c4e0d346": "Ụlọ ọrụ egwuregwu ọkachamara",
"e3ce81fa": "Otu egwuregwu ndị ọkachamara, otu na asọmpi zuru ụwa ọnụ (dịka Olimpiks, Paralimpiks, wdg.).",
"b2808f48": "Onye nọ na igwu egwuregwu",
"db7b3558": "Akaụntụ n'otu n'otu nke ndị na-eme egwuregwu esport ndị jikọtara na otu nke igwu egwuregwu ma ọ bụ otu egwuregwu ndị e mere nkwadoeziokwu.",
"bbd9a912": "Ekwenyela m na emelarị otu, otu egwuregwu, mmemme, ma ọ bụ nzukọ metụtara akaụntụ m nkwadoeziokwu.",
"he9c5638": "Njikọ na webụsaịtị ọrụ nke asọmpi zuru ụwa ọnụ ma ọ bụ nzukọ egwuregwu na-ezo aka na gị.",
"bf06e1d6": "Saịtị nke ọrụ jikọtara ya na nzukọ egwuregwu ọkachamara na-ezo aka na gị dị ka ọkachamara n'eme egwuregwu, onye njikwa, ma ọ bụ onye nchịkwa.",
"e241d35e": "Opekempe edide atọ sitere na nzukọ akụkọ ma ọ bụ mbipụta e mere nkwadoeziokwu nke na-ezo aka na gị dị ka onye ọkachamara n'eme egwuregwu, onye njikwa, ma ọ bụ onye nchịkwa.",
"ad456030": "Opekempe edide atọ sitere na nzukọ akụkọ ma ọ bụ mbipụta e mere nkwadoeziokwu nke na-ezo aka na gị dị ka onye nọ na igwu egwuregwu.",
"hbe2e65c": "Saịtị nke ọrụ jikọtara na otu otu egwuregwu esports ma ọ bụ mmemme e mere nkwadoeziokwu na-ezo aka na gị dị ka onye nọ na igwu egwuregwu.",
"j3da4dea": "Ị nweghị ike ịrịọ maka nkwadoeziokwu ugbu a",
"af39265e": "Ụlọ ọrụ, Ụdị, na Nzukọ",
"bb51cd7a": "Egwuregwu na igwu egwuregwu",
"c044a571": "Mụtakwuo",
"a58cd1fb": "Learn more",
"b47b0fd1": "Mụtakwuo",
"db25263b": "Mụtakwuo",
"b25b02c3": "Mụtakwuo",
"j6ef6afb": "Mụtakwuo",
"d42d162b": "Mụtakwuo",
"ccadfc85": "Mụtakwuo",
"ddb47f57": "Mụtakwuo",
"bf9e181b": "Mụtakwuo",
"e8e39f95": "Mụtakwuo",
"e126dd3f": "Mụtakwuo",
"i821844f": "Mụtakwuo",
"b0abbb17": "Mụtakwuo",
"e7e0d88b": "Mụtakwuo",
"i560665f": "Mụtakwuo",
"f6e774d9": "Mụtakwuo",
"h486f755": "Mụtakwuo",
"bab41dab": "Mụtakwuo",
"e0ebdb29": "Mụtakwuo",
"f8493831": "Mụtakwuo",
"icb5913f": "Mụtakwuo",
"af819833": "Mụtakwuo",
"d35525b1": "Mụtakwuo",
"cb181ed1": "Mụtakwuo",
"f6c3d3f1": "Mụtakwuo",
"d4588ded": "Mụtakwuo",
"a759bff9": "Mụtakwuo",
"c64a59f7": "Mụtakwuo",
"c054f433": "Mụtakwuo",
"c1b7ad51": "Learn more",
"f7998565": "Mụtakwuo",
"c74a47ef": "Mụtakwuo",
"gf9899bf": "Mụtakwuo",
"d7a9185d": "Learn more",
"c4b205e1": "Mụtakwuo",
"c04b4b1d": "Mụtakwuo",
"d26ccc67": "Mụtakwuo",
"hdb3bc85": "Mụtakwuo",
"b6cb494f": "Learn more",
"abc132eb": "Learn more",
"de1b28ad": "Mụtakwuo",
"h04c272d": "Mụtakwuo",
"j331c659": "",
"h02fe64f": "Mụtakwuo",
"a7df4b85": "Mụtakwuo",
"e9b71903": "Mụtakwuo",
"g961011f": "Mụtakwuo",
"d5dedb7b": "Mụtakwuo",
"gd396551": "Mụtakwuo",
"dccc08bf": "Mụtakwuo",
"f22a6d0d": "Mụtakwuo",
"i78c9fd5": "Mụtakwuo",
"f3e333a9": "Mụtakwuo",
"i5fee6d3": "Mụtakwuo",
"fe7420f5": "Mụtakwuo",
"fcfad60d": "Mụtakwuo",
"cc35a6b9": "Mụtakwuo",
"d9bd3823": "Mụtakwuo",
"a67f27bd": "Mụtakwuo",
"b8be7adb": "Mụtakwuo",
"gd663f41": "Mụtakwuo",
"b436b101": "Mụtakwuo",
"j97bce4a": "X handle",
"acd5ca14": "Nwaa ọzọ. Ahaojiarụ gasị anaghị agụnye mkpụrụedemede ndị pụrụ iche dị ka @, $, ma ọ bụ #.",
"bbef41c2": "Review the official email address associated with your X verification request.",
"be03ecca": "Adreesị ozi-e",
"c69a40de": "Ị nweghị adreesị ozi-e akwadoro dị adị.",
"c83a1662": "Ị nweghị adreesị ozi-e nke tozuru oke akwadoro.",
"e1e878ee": "Ntọala",
"b9635182": "Ntọala",
"j163be32": "Bido arịrịọ",
"gaf821c8": "Arịrịọ nkwadoeziokwu",
"e1ac0f9b": "Mụtakwuo",
"h2d4ba56": "Na-enyocha ID gị...",
"i2051842": "Anyị na-agba mbọ hụ na ID gị ruru ụkpụrụ anyị. Nke a nwere ike were ihe ruru sekọnd 30.",
"fc2a5c92": "Ọ nwere ihe na-agaghị nke ọma",
"jf4b6f70": "Enwere nsogbu na ịbugote ID gị. Biko nwaa ibugo ya ọzọ.",
"d338f53e": "Gbalịa ọzọ",
"e43672a0": "Anyị ga-achọ ịnakọta ụfọdụ ozi gbasara ID gọọmentị nyere gị.",
"b246aa5e": "Mba nke Nyere ya",
"d6fb5878": "Họrọ mba",
"b72f97cc": "Ụdị ID",
"b2ab6008": "Họrọ ụdị ID",
"h9270b1c": "Chọọ mba",
"ff1d68f8": "Bulite foto nke ID gị",
"bdada5a6": "Ihu",
"edfed0f6": "Bulite ihu nke ID",
"def5015d": "Azụ{back_of_document}",
"b09aade6": "Bulite azụ nke ID",
"b40ed190": "Akwụkwọ",
"c6650b56": "Bulite akwụkwọ",
"d171ed16": "Anyị na-adabere na ndị ọzọ anyị tụkwasịrị obi ka ha nyere anyị aka. Ndị otu ndị a na-enyocha izi ezi nke ID gị wee nye anyị ozi nwere oke yana ikpo okwu, na-enye anyị ohere ịkwado ntozu gị maka ọkwa akaụntụ e mere nkwadoeziokwu.",
"d20f76cb": "Learn more",
"b8deb156": "Iwu Nzuzo",
"b9960f32": "Tinye foto ma ọ bụ vidiyo",
"gd80afba": "Dozie foto",
"j322caee": "Kaa midia nwere mmetụta",
"abd845fe": "Dezie",
"df1b0708": "Kpọọ GIF a",
"cd959e5c": "Wepụ midịà",
"add55c98": "Midia",
"f350cf46": "Drag and drop media",
"gff1f69e": "Na-ebugo onyonyo",
"a91bb144": "Nyefee",
"affce770": "Anyị na ndị ọzọ anyị tụkwasịrị obi ga-eji ozi metụtara akaụntụ gị yana ozi ọ bụla ọzọ ị nyere anyị iji chọpụta izi ezi na ntozu gị maka nkwadoeziokwu.",
"i0864918": "Otu",
"c7942074": "Ụdị Akaụntụ",
"b8121daa": "Ntụaka nke Ndị ama ama",
"d247ca70": "Nyochaa nkọwa nke arịrịọ nkwadoeziokwu gị n'okpuru. Ozugbo akwadoro, pịa ziga.",
"b51afbb2": "Usoro Nkwenye",
"cc87b01c": "Nyochaa ma nyefee",
"ec6801cc": "Ezipula arịrịọ gị!",
"i6ef95ec": "nyocha",
"j94e995e": "Ajụrụrị arịrịọ ikpeazụ gị. Ị ga-echere ụbọchị 30 site na ụbọchị ahụ iji zipu arịrịọ ọhụrụ.",
"da458d6c": "I zipula arịrịọ nkwadoeziokwu wee ju gị n'ime ụbọchị 30 gara aga. Biko nwaa ọzọ.",
"j4ed9f0e": "Ị zipụla arịrịọ nkwadoeziokwu ma a ga-akpọtụrụ gị ozugbo emere mkpebi.",
"b1ade780": "Akaụntụ gị dị ezigbo ọhụrụ. Nye ya ruo mgbe akaụntụ gị ruru opekata mpe ụbọchị 7 wee nwaa ọzọ.",
"aab67626": "A na-enyocha arịrịọ nkwadoeziokwu gị",
"d3c1e25e": "Mba, ọ bụghị nrọ. Ee, e mere gị nkwadoeziokwu n'ezie.",
"a8b4500e": "Rules",
"ef1b5cbc": "Họrọ nziọkwa ndị ị ga-achọ ịhụ — yana ndị ị na-achọghị.",
"aaafffda": "nziọkwa e mere ogbi",
"afdf29b8": "Ezigbo nzacha",
"da19d878": "Choose to filter out content such as duplicate or automated posts. This doesn’t apply to notifications from accounts you follow or have interacted with recently.",
"i2209530": "Chekwaa",
"da867c58": "Họrọ mmasị gị site n'ụdị nziọkwa.",
"a2197726": "Jikwaa nchekwa nke akaụntụ gị.",
"i36dcc3e": "Help protect your account from unauthorized access by requiring a second authentication method in addition to your X password. You can choose a text message, authentication app, or security key.",
"ead60eb8": "Nchedo nke okwuntụghe agbakwunyere",
"gfaf9a4a": "Nchedo ntọghari okwuntụghe",
"h3cc8462": "For added protection, you’ll need to confirm your email address or phone number to reset your X password.",
"b4bbdeb4": "Passkey",
"aeb7dcdc": "Enable Passkeys for added protection that may be tied to your biometrics.",
"dc096238": "Upload an approved form of identification to confirm the authenticity of your account. Your information will only be used to validate your identity and will be handled safely and securely.",
"a999cb72": "Chekwa mgbanwe akaụntụ",
"dec3c9b8": "Okwuntughe",
"b929aa74": "Re-enter your X password to save changes to your account.",
"d1091f50": "Chefuru okwuntughe?",
"d97c07be": "Manage Creator Subscriptions",
"efa291da": "View and manage your subscriptions to creators below using Stripe. Any active subscriptions you initiated on iOS or Android can be managed in the app.",
"j7f5c6aa": "You don’t have any Subscriptions yet",
"ef4602ec": "Ọ nwere ihe na-agaghị nke ọma. Biko nwaa ọzọ ma emechaa",
"b02df748": "Jikwaa nchekwa akaụntụ gị wee debe usoro ojiji akaụntụ gị gụnyere ngwa ị jikọtara na akaụntụ gị.",
"g2841de4": "Hụ ozi gbasara mgbe ị banyere na akaụntụ gị yana ngwa ndị ị jikọtara na akaụntụ gị.",
"hf45cca6": "Manage Google or Apple accounts connected to X to log in.",
"a310511c": "Jikwaa akaụntụ ndị ekekọrịtara.",
"jc02ae68": "Ngwa ndị ejikọrọ",
"dd82312a": "Okèrènjìkọ",
"e5e8a89a": "Na-ebugo ngwa",
"hfa9a2c8": "Jikwaa ngwa ndị e jikọtara n'ime otu ntabi anya",
"dd1b86f9": "site na {name}",
"cf461930": "Third-party apps you allow to access your X account will show up here.",
"b63b0b1d": "Mụtakwuo",
"c2cb5560": "Nnọkọ nke nọ ọrụ ugbu a",
"bca43fd0": "Pụọ na nnọkọ ndị ọzọ",
"ha6df2ca": "Sessions are the devices you are using or that have used your X account. These are the sessions where your account is currently logged in. You can log out of each session.",
"b72d2904": "You’re logged into this X account on this device and are currently using it.",
"b850cbd0": "Ị banyere na akaụntụ ndị a na njìarụ ndị a ma ị naghị eji ha ugbu a. ",
"cf3e3164": "Pụọ na nnọkọ ndị ọzọ niile",
"f810f27a": "Ịchọrọ ịkwụsị nnọkọ gị ndị ọzọ?",
"gbb5cec5": "Logging out will end {num} of your other active X sessions. It won’t affect your current active session.",
"fcbd4904": "This will end your active X session.",
"ab78d946": "You’re about to end your other active X sessions, and you’ll need to log in again on those devices to start a new ones.",
"e186a3d6": "{learnMoreLabel}",
"ed5ab16a": "Na-arụ ọrụ ugbu a",
"c9bc33fa": "Devices",
"f95ed3e6": "Current device",
"a787669a": "Other device registrations",
"gbefe730": "You’re registered for encrypted direct messaging on these other devices.",
"d7a9796e": "Loading devices",
"b5635e86": "Register this device",
"bb4a95dc": "Register your device?",
"a9538040": "Registering this device will enable you to start new encrypted conversations with other registered users",
"hd173c7a": "Register",
"hf4312a4": "Device has been registered.",
"h7797d18": "Registered",
"hc48a042": "Unregister this device",
"d5bafb20": "Unregister this device?",
"i12dee70": "Unregistering a device means you’ll no longer have access to encrypted messages on it.",
"d4b9db26": "Unregister",
"c18b1b34": "Registered date and time",
"e7c9d60a": "Selected device has been unregistered.",
"cd14c8fe": "Loading device info",
"j9db22f4": "We can not find this device",
"c477d710": "Manage what information you see and share on X.",
"b06f5d36": "Your X activity",
"fd807e78": "Audience, media and tagging",
"a9ff473c": "Manage what information you allow other people on X to see.",
"d0484606": "Manage the information associated with your posts.",
"c4afe0e6": "Decide what you see on X based on your preferences like Topics and interests",
"ab125232": "Jikwaa akaụntụ, mkpuruokwu, na nziọkwa ndị ị mere ogbi ma ọ bụ gbochiri.",
"cc950d94": "Jikwaa onye nwere ike izitere gị ozi ozugbo.",
"fe37f854": "Jikwaa onye nwere ike ịhụ omume ige n'ige Ohere",
"ab987f3c": "Jikwaa ntọala ike nchọpụta gị wee jikwaa kọntaktị ndị ị bubatara.",
"db5fabb0": "Data sharing and off-X activity",
"i83cab8a": "Nkekọrịta data na nhazi nkeonwe",
"e338a794": "Manage your ads experience on X.",
"c05e8024": "Manage your cookie experience on X.",
"d29d59d0": "Manage how X uses your online activity outside of X, such as the websites you visit, to personalize your experience.",
"c981a36c": "Allow X to personalize your experience with your inferred activity, e.g. activity on devices you haven’t used to log in to X.",
"eb0cc786": "Allow sharing of additional information with X’s business partners.",
"dd533318": "Manage the location information X uses to personalize your experience.",
"bd0646a0": "Learn more about privacy on X",
"a607862a": "Iwu Nzuzo",
"g5925628": "Kpọtụrụ anyị",
"dd6012f8": "Ebe nzuzo",
"jdceda60": "Nzaghachi ",
"f644b748": "Manage who can reply to your posts and your filtered replies.",
"ff4b3818": "Grok & Third-party Collaborators",
"i586f3e0": "Allow your public data as well as your interactions, inputs, and results with Grok and xAI to be used for training and fine-tuning",
"d8492604": "When selected, your posts and other account information are only visible to people who follow you.",
"if050fae": "Protect your videos",
"b7ed5f6e": "If selected, videos in your posts will not be downloadable by default. This setting applies to posts going forward and is not retroactive",
"dbb51952": "Protect your posts?",
"de735de6": "This will make them visible only to your X followers.",
"c5d4192a": "Chedo",
"gea6cc1a": "O doro gị anya?",
"d9ddba70": "Communities are public, so protecting your account will hide your previous posts. You also won’t be able to post in the Community until your account is public again.",
"f527b322": "Chedo akaụntụ m",
"d165c992": "Onye ọ bụla nwere ike itinye aha nrịbama gị",
"ea339390": "Naanị ndị ị na-eso nwere ike ịtinye gị njìahụbaamā",
"e3a761ee": "Gbanyụọ",
"a61ed23a": "Mark media you post as having material that may be sensitive",
"ae27c454": "When enabled, pictures and videos you post will be marked as sensitive for people who don’t want to see sensitive content.",
"fc1d217c": "Gosipụta midia nwere ike ịnwe ọdịnaya nwere mmetụta",
"j018f2a2": "Nyochaa ntọala",
"h1ef00dc": "Chọọ na ntọala",
"b05b9398": "When this setting is enabled, X may personalize your For you content based on your X activity.",
"a3c1324c": "Show recommended content in the For you timeline",
"ee4592ca": "No one",
"da813d22": "Verified users",
"baffe39a": "Onye ọ bụla",
"b3d8566e": "Wepụ ozi ndị na-adịchaghị mma.",
"cfda8c44": "Zoo arịrịọ ozi achọpụtara dị ka nzipụ ozièlètrọniìk nkeāchọghị ma ọ bụ nke na-adịchaghị mma. A ga-eziga ndị a na igbe mbata dị iche na ala nke arịrịọ ozi gị. Ị ka nwere ike ịnweta ha ma ịchọrọ.",
"f4c91f40": "Allow messages from my subscribers",
"bf0c4336": "Your subscribers will always be able to send you messages independent of other messaging settings.",
"e6c411d8": "Wepụ midịà nwere ihe ojoo",
"g558101a": "Gosi ịdọ aka ná ntị gbasara ozi achọpụtara nwere ike ịnwe midịà nwere ihe ojoo (dị ka ịgba ọtọ, ọdịnaya mmekọahụ, ma ọ bụ ime ihe ike). Ị ga-enwe nhọrọ mgbe niile ịlele midịà ma ọ bụrụ na ịchọrọ.",
"d9172542": "Gosi ngosi ọgụgụ",
"bd557506": "Mee ka ndị gị na ha na-ezi ozi mara mgbe ị hụrụ ozi ha. Anaghị egosi ngosi ọgụgụ ha na arịrịọ ozi.",
"f29080d0": "Allow message requests from:",
"j0adcc2d": "Learn more",
"ib3357a6": "Mgbasa ozi nkeonwe",
"f2f9628e": "You will always see ads on X based on your X activity. When this setting is enabled, X may further personalize ads from X advertisers, on and off X, by combining your X activity with other online activity and information from our partners.",
"b5fe50fc": "Ads Categories",
"c31a2ea6": "Enabling these settings make you eligible to see ads in these categories. Choose to see fewer ads about these categories by opting out.",
"if996630": "Gambling",
"a9ed7774": "Allow use of where you see X content across the Web",
"e2d61838": "This setting lets X keep track of your visits to other websites that integrate X content, such as embedded timelines. That information makes X better for you, such as by personalizing your experience. This web browsing history will never be stored with your name, email, or phone number.",
"c966aaf4": "A naghị echekwa ma ọ bụ jiri nleta peeji weebụ ndị a mgbe ịnọ na mba ụfọdụ.",
"e8313b32": "O doro gị anya? Ozugbo ịgbanyụrụ nke a, ịgaghị enwe ike ịgbanwuo ya ọzọ mgbe ịnọ na obodo a.",
"f1d46fd6": "Ee, ejiri m n'aka",
"cfd2f35e": "Kagbuo",
"f6c8ccc8": "Hazie dabere na njirimara echere gị",
"ed012c88": "X will always personalize your experience based on information you’ve provided, as well as the devices you’ve used to log in. When this setting is enabled, X may also personalize based on other inferences about your identity, like devices and browsers you haven’t used to log in to X or email addresses and phone numbers similar to those linked to your X account.",
"d3c20d80": "Kwenye nkesa mgbakwunye ozi n'etiti ndị mmekọ azụmahịa.",
"f1c0d09c": "X always shares information with business partners as a way to run and improve its products. When enabled, this allows X to share additional information with those partners to help support running X’s business, including making X’s marketing activities on other sites and apps more relevant for you.",
"dc20d918": "Hazie nkeonwe dabere n'ebe ndị ị gagoro",
"af7d89e6": "X always uses some information, like where you signed up and your current location, to help show you more relevant content. When this setting is enabled, X may also personalize your experience based on other places you’ve been.",
"f2b23062": "Nnweta, ngosi na asụsụ",
"fa76d7dc": "Manage how X content is displayed to you.",
"j7a15010": "Manage aspects of your X experience such as limiting color contrast and motion.",
"a257ecae": "Manage your font size, color, and background. These settings affect all the X accounts on this browser.",
"jc3fa0e2": "Manage which languages are used to personalize your X experience.",
"cc2973a8": "Limit how X uses some of your network data on this device.",
"h54e6138": "Ụzọ mkpirisi kiiboodu",
"a4b69cbc": "Asụsụ ngosi",
"c856bd00": "Select your preferred language for headlines, buttons, and other text from X.",
"cab61d58": "Họrọ asụsụ ndị ọzọ",
"dd93fafa": "Select additional languages for the content you want to see on X.",
"bca1de4a": "Asụsụ ndị ọzọ ị na-asụ",
"c3aa76c4": "Asụsụ ndị ị nwere ike ịma",