-
Notifications
You must be signed in to change notification settings - Fork 82
/
Quotes.js
3099 lines (3059 loc) · 99.7 KB
/
Quotes.js
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
window.quotes = [
{
"quote": "Though no one can go back and make a brand new start, anyone can start from now and make a brand new ending.",
"category": "Growth",
"author": "Carl Bard",
"addedBy": "Dev Kumar Pal",
"translations": {
"fr": "Bien que personne ne puisse revenir en arrière et faire un nouveau départ, tout le monde peut commencer maintenant et créer une nouvelle fin.",
"es": "Aunque nadie puede retroceder y hacer un nuevo comienzo, cualquiera puede empezar desde ahora y hacer un nuevo final.",
"ru": "Хотя никто не может вернуться назад и начать сначала, любой может начать с настоящего момента и создать новый конец.",
"it": "Anche se nessuno può tornare indietro e fare un nuovo inizio, chiunque può iniziare da ora e creare una nuova fine.",
"de": "Obwohl niemand zurückgehen und einen neuen Anfang machen kann, kann jeder von jetzt an beginnen und ein neues Ende schaffen.",
"ja": "誰も過去に戻って新しいスタートを切ることはできませんが、誰でも今から始めて新しいエンディングを作ることができます。",
"zh": "虽然没有人可以回到过去重新开始,但任何人都可以从现在开始,创造一个全新的结局。",
"pt": "Embora ninguém possa voltar atrás e fazer um novo começo, qualquer um pode começar agora e criar um novo final.",
"ar": "على الرغم من أن لا أحد يمكنه العودة وبدء بداية جديدة، يمكن لأي شخص أن يبدأ الآن ويصنع نهاية جديدة.",
"hi": "हालांकि कोई भी वापस जाकर एक नई शुरुआत नहीं कर सकता, कोई भी अब से शुरू करके एक नई समाप्ति बना सकता है।",
"mr": "जरी कोणीही मागे जाऊन नवीन सुरुवात करू शकत नाही, तरीही कोणीही आता पासून सुरुवात करून एक नवीन शेवट करू शकतो.",
"bn": "যদিও কেউ ফিরে গিয়ে একটি নতুন সূচনা করতে পারে না, যে কেউ এখন থেকে শুরু করতে পারে এবং একটি নতুন সমাপ্তি তৈরি করতে পারে।",
"kn": "ಯಾರೂ ಹಿಂದಕ್ಕೆ ಹೋಗಿ ಹೊಸ ಪ್ರಾರಂಭವನ್ನು ಮಾಡಲಾಗುವುದಿಲ್ಲ, ಯಾರಾದರೂ ಈಗಿನಿಂದ ಪ್ರಾರಂಭಿಸಿ ಹೊಸ ಅಂತ್ಯವನ್ನು ಮಾಡಬಹುದು.",
"ta": "யாரும் பின்சென்று புதிய துவக்கத்தை உருவாக்க முடியாது, எவரும் இப்பொழுது துவங்கி புதிய முடிவை உருவாக்கலாம்.",
"te": "ఎవరూ వెనక్కి వెళ్లి కొత్త ప్రారంభాన్ని చేయలేరు, ఎవరైనా ఇప్పుడు నుండి ప్రారంభించి కొత్త ముగింపును చేయవచ్చు.",
"ml": "ആർക്കും തിരിച്ചുപോകാനും ഒരു പുതിയ തുടക്കം ഉണ്ടാക്കാനും കഴിയില്ല, ആരും ഇപ്പോൾ ആരംഭിച്ച് ഒരു പുതിയ അവസാനമുണ്ടാക്കാൻ കഴിയും."
}
},
{
"quote": "Change is the law of life and those who look only to the past or present are certain to miss the future.",
"category": "Growth",
"author": "John F. Kennedy",
"addedBy": "Dev Kumar Pal",
"translations": {
"fr": "Le changement est la loi de la vie et ceux qui ne regardent que le passé ou le présent sont certains de manquer l'avenir.",
"es": "El cambio es la ley de la vida, y aquellos que solo miran al pasado o al presente están destinados a perderse el futuro.",
"ru": "Изменение — это закон жизни, и те, кто смотрит только в прошлое или настоящее, наверняка упустят будущее.",
"it": "Il cambiamento è la legge della vita e chi guarda solo al passato o al presente rischia di perdere il futuro.",
"de": "Veränderung ist das Gesetz des Lebens, und diejenigen, die nur in die Vergangenheit oder Gegenwart blicken, verpassen mit Sicherheit die Zukunft.",
"ja": "変化は人生の法則であり、過去や現在しか見ていない人は未来を見逃す運命にあります。",
"zh": "改变是生命的法则,那些只关注过去或现在的人注定会错过未来。",
"pt": "A mudança é a lei da vida, e aqueles que olham apenas para o passado ou o presente certamente perderão o futuro.",
"ar": "التغيير هو قانون الحياة، وأولئك الذين ينظرون فقط إلى الماضي أو الحاضر مؤكد أنهم سيفوتون المستقبل.",
"hi": "परिवर्तन जीवन का नियम है और जो केवल अतीत या वर्तमान की ओर देखते हैं, वे निश्चित रूप से भविष्य को चूक जाएंगे।",
"mr": "बदल हा जीवनाचा नियम आहे आणि जे फक्त भूतकाळ किंवा वर्तमानाकडे पाहतात ते नक्कीच भविष्य चुकवतील.",
"bn": "পরিবর্তন জীবনের নিয়ম এবং যারা শুধুমাত্র অতীত বা বর্তমানের দিকে তাকিয়ে থাকে তারা নিশ্চিতভাবে ভবিষ্যত মিস করবে।",
"kn": "ಬದಲಾವಣೆ ಜೀವನದ ನಿಯಮವಾಗಿದೆ ಮತ್ತು ಅತೀತ ಅಥವಾ ವರ್ತಮಾನವನ್ನು ಮಾತ್ರ ನೋಡುವವರು ಭವಿಷ್ಯವನ್ನು ತಪ್ಪಿಸುತ್ತಾರೆ.",
"ta": "மாற்றம் வாழ்க்கையின் சட்டம் மற்றும் கடந்தகாலம் அல்லது தற்போதையதை மட்டுமே பார்க்கும்வர்கள் நிச்சயமாக எதிர்காலத்தை தவறவிடுவார்கள்.",
"te": "మార్పు జీవన నియమం మరియు భవిష్యత్తును మిస్ చేయడం ఖాయం.",
"ml": "മാറ്റം ജീവിതത്തിന്റെ നിയമമാണ്, അഴിഞ്ഞെ നോക്കുന്നവർ ഭാവിയെ നഷ്ടപ്പെടുത്താൻ നിർഭാഗ്യരായിരിക്കും."
}
},
{
"quote": "Stay afraid, but do it anyway. What’s important is the action. You don’t have to wait to be confident. Just do it and eventually, the confidence will follow.",
"category": "Growth",
"author": "Carrie Fisher",
"addedBy": "Dev Kumar Pal",
"translations": {
"fr": "Restez effrayé, mais faites-le quand même. Ce qui est important, c'est l'action. Vous n'avez pas besoin d'attendre d'être confiant. Faites-le et la confiance viendra avec le temps.",
"es": "Sigue teniendo miedo, pero hazlo de todos modos. Lo importante es la acción. No tienes que esperar a sentirte seguro. Solo hazlo, y eventualmente, la confianza vendrá.",
"ru": "Оставайтесь напуганными, но все равно делайте это. Главное — это действие. Вам не нужно ждать уверенности, просто сделайте это, и со временем придет уверенность.",
"it": "Rimani spaventato, ma fallo comunque. L'importante è l'azione. Non devi aspettare di sentirti sicuro. Fallo e la fiducia arriverà.",
"de": "Bleib ängstlich, aber tu es trotzdem. Wichtig ist die Tat. Du musst nicht warten, um selbstbewusst zu sein. Tue es einfach und das Selbstvertrauen wird folgen.",
"ja": "怖いままでいいから、それでもやってください。重要なのは行動です。自信がつくのを待つ必要はありません。ただやってください、そしてやがて自信がついてきます。",
"zh": "保持害怕,但仍然去做。重要的是行动。你不必等到有信心。只要去做,自信就会随之而来。",
"pt": "Fique com medo, mas faça de qualquer forma. O que importa é a ação. Você não precisa esperar para ter confiança. Apenas faça, e eventualmente a confiança seguirá.",
"ar": "ابق خائفًا، لكن افعل ذلك على أي حال. ما يهم هو الفعل. لا تحتاج إلى انتظار الثقة. فقط افعلها، وستأتي الثقة فيما بعد.",
"hi": "डरते रहें, लेकिन इसे फिर भी करें। महत्वपूर्ण है कार्रवाई। आपको आत्मविश्वास होने का इंतजार करने की आवश्यकता नहीं है। इसे करें और आत्मविश्वास स्वाभाविक रूप से आएगा।",
"mr": "भयभीत राहा, पण ते तरी करा. महत्त्वाचे म्हणजे कृती. आत्मविश्वास येईपर्यंत थांबण्याची आवश्यकता नाही. फक्त करा आणि आत्मविश्वास येईल.",
"bn": "ভীত থাকুন, কিন্তু তাও করুন। গুরুত্বপূর্ণ হল কর্ম। আত্মবিশ্বাসের জন্য অপেক্ষা করার প্রয়োজন নেই। কেবল করুন, এবং আত্মবিশ্বাস আসবে।",
"kn": "ಭಯಭೀತರಾಗಿರಿ, ಆದರೆ ಅದನ್ನು ಹಚ್ಚಿ. ಮುಖ್ಯವಾದದ್ದು ಕ್ರಿಯೆ. ಆತ್ಮವಿಶ್ವಾಸಕ್ಕಾಗಿ ನಿರೀಕ್ಷಿಸಬೇಕಾದ ಅಗತ್ಯವಿಲ್ಲ. ಅದನ್ನು ಮಾಡಿ, ಮತ್ತು ಕಾಲಕ్రమೇಣ ಆತ್ಮವಿಶ್ವಾಸ ಬರುತ್ತದೆ.",
"ta": "பயந்தே இருங்கள், ஆனால் அதைNonetheless செய்யுங்கள். முக்கியமானது நடவடிக்கை. நம்பிக்கைக்காக காத்திருக்க வேண்டியதில்லை. அதைச் செய்யுங்கள், நம்பிக்கை பின்வரும்.",
"te": "భయపడుతున్నా, దానిని Nonetheless చేయండి. ముఖ్యమైనది చర్య. భరోసా కోసం వేచిచూడాల్సిన అవసరం లేదు. దానిని చేయండి, భరోసా వస్తుంది.",
"ml": "ഭയന്നു നില്ക്കൂ, പക്ഷെ Nonetheless അത് ചെയ്തു കാണൂ. പ്രധാനമാണ് നടപടി. ആത്മവിശ്വാസത്തിനായി കാത്തിരിക്കാന് ആവശ്യമില്ല. അത് ചെയ്ത് കൊള്ളൂ, ആത്മവിശ്വാസം അവശേഷിക്കും."
}
},
{
quote: "If there is no struggle, there is no progress.",
category: "Growth",
author: "Frederick Douglass",
addedBy: "Dev Kumar Pal"
},
{
quote: "Education is not the filling of a pail, but the lighting of a fire.",
category: "Educational",
author: "W.B. Yeats",
addedBy: "Kratin Aggarwal",
},
{
quote: "The best way to predict the future is to create it.",
category: "Educational",
author: "Peter Drucker",
addedBy: "Kratin Aggarwal",
},
{
quote: "Education is not preparation for life; education is life itself.",
category: "Educational",
author: "John Dewey",
addedBy: "Kratin Aggarwal",
},
{
quote: "It is what we think we know already that often prevents us from learning",
category: "Educational",
author: "Claude Bernard",
addedBy: "Kratin Aggarwal",
},
{
quote: "The beautiful thing about learning is that no one can take it away from you",
category: "Educational",
author: "B.B. King",
addedBy: "Kratin Aggarwal",
},
{
quote: "We do not remember days, we remember moments.",
category: "Life",
author: "Cesare Pavese",
addedBy: "Yasar Labib",
},
{
quote: "A dead end is just a good place to turn around.",
category: "Life",
author: "Naomi Judd",
addedBy: "Yasar Labib",
},
{
quote: "The way I see it, if you want the rainbow, you gotta put up with the rain!",
category: "Life",
author: "Dolly Parton",
addedBy: "Yasar Labib",
},
{
quote: "Success is falling nine times and getting up ten.",
category: "Life",
author: "Jon Bon Jovi",
addedBy: "Yasar Labib",
},
{
quote: "Failure is the condiment that gives success its flavor.",
category: "Life",
author: "Truman Capote",
addedBy: "Yasar Labib",
},
{
quote: "No one can make you feel inferior without your consent.",
category: "Life",
author: "Eleanor Roosevelt",
addedBy: "cryptic-pr03",
},
{
quote: "Some things break our hearts but fix our vision.",
category: "Life",
author: "Billie Eidson Music",
addedBy: "cryptic-pr03",
},
{
quote: "You must be stronger than your emotions or else you'll lose yourself.",
category: "Life",
author: "Mike Tyson",
addedBy: "cryptic-pr03",
},
{
quote: "It's not what happens to you, but how you react to it that matters",
category: "Life",
author: "Epictetus",
addedBy: "cryptic-pr03",
},
{
quote: "The only way to do great work is to love what you do.",
category: "Motivational",
author: "Steve Jobs",
addedBy: "Shariar-Hasan",
},
{
quote: "The best way to predict the future is to invent it.",
category: "Inspirational",
author: "Alan Kay",
addedBy: "Shariar-Hasan",
},
{
quote: "The only true wisdom is in knowing you know nothing.",
category: "Philosophical",
author: "Socrates",
addedBy: "Shariar-Hasan",
},
{
quote: "The only thing we have to fear is fear itself.",
category: "Historical",
author: "Franklin D. Roosevelt",
addedBy: "Shariar-Hasan",
},
{
quote: "Life is what happens when you're busy making other plans.",
category: "Life",
author: "John Lennon",
addedBy: "git-create-devben",
},
{
quote:
"The best and most beautiful things in the world cannot be seen or even touched.",
category: "Inspirational",
author: "Helen Keller",
addedBy: "git-create-devben",
},
{
quote: "Code is poetry.",
category: "Programming",
author: "David Heinemeier Hansson",
addedBy: "git-create-devben",
},
{
quote:
"The future belongs to those who believe in the beauty of their dreams.",
category: "Inspirational",
author: "Eleanor Roosevelt",
addedBy: "git-create-devben",
},
{
quote: "The only way to predict the future is to create it.",
category: "Programming",
author: "Peter Drucker",
addedBy: "git-create-devben",
},
{
quote:
"The best and most beautiful things in the world cannot be seen or even touched - they must be felt with the heart.",
category: "Inspirational",
author: "Helen Keller",
addedBy: "Shariar-Hasan",
},
{
quote: "Life is what happens when you're busy making other plans.",
category: "Life",
author: "Allen Sanders",
addedBy: "Shariar-Hasan",
},
{
quote:
"Success is not final, failure is not fatal It is the courage to continue that counts.",
category: "Motivation",
author: "Winston Churchill",
addedBy: "Shariar-Hasan",
},
{
quote:
"In the end, we will remember not the words of our enemies, but the silence of our friends.",
category: "Friendship",
author: "Martin Luther King Jr.",
addedBy: "Shariar-Hasan",
},
{
quote: "The best preparation for tomorrow is doing your best today.",
category: "Motivation",
author: "H. Jackson Brown Jr.",
addedBy: "Shariar-Hasan",
},
{
quote: "Believe you can and you're halfway there.",
category: "Inspiration",
author: "Theodore Roosevelt",
addedBy: "Shariar-Hasan",
},
{
quote: "It does not matter how slowly you go as long as you do not stop.",
category: "Persistence",
author: "Confucius",
addedBy: "Shariar-Hasan",
},
{
quote:
"Description begins in the writer's imagination but should finish in the reader's.",
category: "Motivation",
author: "Stephen King",
addedBy: "Skb08",
},
{
quote: "Half my life is an act of revision.",
category: "Motivation",
author: "John Irving",
addedBy: "Skb08",
},
{
quote: "You can always edit a bad page. You can't edit a blank page",
category: "Motivation",
author: "Jodi Picoult",
addedBy: "Skb08",
},
{
quote:
"Education is the most powerful weapon which you can use to change the world.",
category: "Inspirational",
author: "Nelson Mandela",
addedBy: "Shariar-Hasan",
},
{
quote: "If you want to lift yourself up, lift up someone else.",
category: "Inspirational",
author: "Booker T. Washington",
addedBy: "Skb08",
},
{
quote:
"You're braver than you believe, stronger than you seem, and smarter than you think.",
category: "Inspirational",
author: "A.A. Milne",
addedBy: "Skb08",
},
{
quote: "History will be kind to me for I intend to write it.",
category: "Historical",
author: "Winston S. Churchill",
addedBy: "Skb08",
},
{
quote: "Study the past and you would define the future",
category: "Historical",
author: "Confucius",
addedBy: "Skb08",
},
{
quote: "A generation which ignores history has no past—and no future.",
category: "Historical",
author: "Robert A. Heinlein",
addedBy: "Skb08",
},
{
quote: "Be the change that you wish to see in the world.",
category: "Philosophical",
author: "Mahatma Gandhi",
addedBy: "Skb08",
},
{
quote:
"Two things are infinite: the universe and human stupidity; and I'm not sure about the universe.",
category: "Philosophical",
author: " Albert Einstein",
addedBy: "Skb08",
},
{
quote: "Man is the only creature who refuses to be what he is.",
category: "Philosophical",
author: " Albert Camus",
addedBy: "Skb08",
},
{
quote: "True friendship is a plant of slow growth…",
category: "Friendship",
author: "George Washington",
addedBy: "Skb08",
},
{
quote:
"I would rather walk with a friend in the dark than walk alone in the light.",
category: "Friendship",
author: "Helen Keller",
addedBy: "Skb08",
},
{
quote:
"Success is not final, failure is not fatal: It is the courage to continue that counts.",
category: "Inspirational",
author: "Winston Churchill",
addedBy: "iqbalcodes6602",
},
{
quote: "Life is what happens when you're busy making other plans.",
category: "Life",
author: "John Lennon",
addedBy: "iqbalcodes6602",
},
{
quote:
"The only limit to our realization of tomorrow will be our doubts of today.",
category: "Inspirational",
author: "Franklin D. Roosevelt",
addedBy: "Thanush19",
},
{
quote:
"The only thing that stands between you and your dream is the will to try and the belief that it is actually possible.",
category: "Motivational",
author: "Joel Brown",
addedBy: "Thanush19",
},
{
quote: "Success is not in what you have, but who you have become.",
category: "Success",
author: "Bo Bennett",
addedBy: "Thanush19",
},
{
quote: "Life is short, and it is up to you to make it sweet.",
category: "Life",
author: "Sarah Louise Delany",
addedBy: "Thanush19",
},
{
quote:
"In the end, it's not the years in your life that count. It's the life in your years.",
category: "Life",
author: "Abraham Lincoln",
addedBy: "Thanush19",
},
{
quote: "Don't watch the clock; do what it does. Keep going.",
category: "Success",
author: "Sam Levenson",
addedBy: "izabela-marcinkowska",
},
{
quote: "Opportunities don't happen. You create them.",
category: "Success",
author: "Chris Grosser",
addedBy: "izabela-marcinkowska",
},
{
quote: "Your time is limited, don't waste it living someone else's life.",
category: "Success",
author: "Steve Jobs",
addedBy: "izabela-marcinkowska",
},
{
quote:
"It's not that I'm so smart, it's just that I stay with problems longer.",
category: "Persistence",
author: "Albert Einstein",
addedBy: "izabela-marcinkowska",
},
{
quote:
"Perseverance is not a long race; it is many short races one after the other.",
category: "Persistence",
author: "Walter Elliot",
addedBy: "izabela-marcinkowska",
},
{
quote:
"Success is stumbling from failure to failure with no loss of enthusiasm.",
category: "Persistence",
author: "Winston S. Churchill",
addedBy: "izabela-marcinkowska",
},
{
quote: "The best way out is always through.",
category: "Persistence",
author: "Robert Frost",
addedBy: "izabela-marcinkowska",
},
{
quote: "The only way to do great work is to love what you do.",
category: "Motivational",
author: "Steve Jobs",
addedBy: "Shariar-Hasan",
},
{
quote: "The best way to predict the future is to invent it.",
category: "Inspirational",
author: "Alan Kay",
addedBy: "Shariar-Hasan",
},
{
quote: "The only true wisdom is in knowing you know nothing.",
category: "Philosophical",
author: "Socrates",
addedBy: "Shariar-Hasan",
},
{
quote: "The only thing we have to fear is fear itself.",
category: "Historical",
author: "Franklin D. Roosevelt",
addedBy: "Shariar-Hasan",
},
{
quote:
"The best and most beautiful things in the world cannot be seen or even touched - they must be felt with the heart.",
category: "Inspirational",
author: "Helen Keller",
addedBy: "Shariar-Hasan",
},
{
quote: "Life is what happens when you're busy making other plans.",
category: "Life",
author: "Allen Sanders",
addedBy: "Shariar-Hasan",
},
{
quote:
"Success is not final, failure is not fatal It is the courage to continue that counts.",
category: "Motivation",
author: "Winston Churchill",
addedBy: "Shariar-Hasan",
},
{
quote:
"In the end, we will remember not the words of our enemies, but the silence of our friends.",
category: "Friendship",
author: "Martin Luther King Jr.",
addedBy: "Shariar-Hasan",
},
{
quote: "The best preparation for tomorrow is doing your best today.",
category: "Motivation",
author: "H. Jackson Brown Jr.",
addedBy: "Shariar-Hasan",
},
{
quote: "Believe you can and you're halfway there.",
category: "Inspiration",
author: "Theodore Roosevelt",
addedBy: "Shariar-Hasan",
},
{
quote: "It does not matter how slowly you go as long as you do not stop.",
category: "Persistence",
author: "Confucius",
addedBy: "Shariar-Hasan",
},
{
quote:
"Description begins in the writer's imagination but should finish in the reader's.",
category: "Motivation",
author: "Stephen King",
addedBy: "Skb08",
},
{
quote: "Half my life is an act of revision.",
category: "Motivation",
author: "John Irving",
addedBy: "Skb08",
},
{
quote: "You can always edit a bad page. You can't edit a blank page",
category: "Motivation",
author: "Jodi Picoult",
addedBy: "Skb08",
},
{
quote:
"Education is the most powerful weapon which you can use to change the world.",
category: "Inspirational",
author: "Nelson Mandela",
addedBy: "Shariar-Hasan",
},
{
quote: "If you want to lift yourself up, lift up someone else.",
category: "Inspirational",
author: "Booker T. Washington",
addedBy: "Skb08",
},
{
quote:
"You're braver than you believe, stronger than you seem, and smarter than you think.",
category: "Inspirational",
author: "A.A. Milne",
addedBy: "Skb08",
},
{
quote: "History will be kind to me for I intend to write it.",
category: "Historical",
author: "Winston S. Churchill",
addedBy: "Skb08",
},
{
quote: "Study the past and you would define the future",
category: "Historical",
author: "Confucius",
addedBy: "Skb08",
},
{
quote: "A generation which ignores history has no past—and no future.",
category: "Historical",
author: "Robert A. Heinlein",
addedBy: "Skb08",
},
{
quote: "Be the change that you wish to see in the world.",
category: "Philosophical",
author: "Mahatma Gandhi",
addedBy: "Skb08",
},
{
quote:
"Two things are infinite: the universe and human stupidity; and I'm not sure about the universe.",
category: "Philosophical",
author: " Albert Einstein",
addedBy: "Skb08",
},
{
quote: "Man is the only creature who refuses to be what he is.",
category: "Philosophical",
author: " Albert Camus",
addedBy: "Skb08",
},
{
quote: "True friendship is a plant of slow growth…",
category: "Friendship",
author: "George Washington",
addedBy: "Skb08",
},
{
quote:
"I would rather walk with a friend in the dark than walk alone in the light.",
category: "Friendship",
author: "Helen Keller",
addedBy: "Skb08",
},
{
quote:
"Success is not final, failure is not fatal: It is the courage to continue that counts.",
category: "Inspirational",
author: "Winston Churchill",
addedBy: "iqbalcodes6602",
},
{
quote: "Life is what happens when you're busy making other plans.",
category: "Life",
author: "John Lennon",
addedBy: "iqbalcodes6602",
},
{
"quote": "If you always make the right decision, the safe decision, the one most people make, you will be the same as everyone else.",
"category": "College",
"author": "Patrick Bet-David",
"addedBy": "rohits-web03",
"translations": {
"fr": "Si vous faites toujours la bonne décision, la décision sûre, celle que la plupart des gens prennent, vous serez le même que tout le monde.",
"es": "Si siempre tomas la decisión correcta, la decisión segura, la que la mayoría de la gente toma, serás igual que todos los demás.",
"ru": "Если вы всегда принимаете правильное решение, безопасное решение, то, которое принимают большинство людей, вы будете таким же, как и все остальные.",
"it": "Se prendi sempre la decisione giusta, la decisione sicura, quella che fanno la maggior parte delle persone, sarai uguale a tutti gli altri.",
"de": "Wenn Sie immer die richtige Entscheidung treffen, die sichere Entscheidung, die die meisten Menschen treffen, werden Sie wie alle anderen sein.",
"ja": "もしあなたが常に正しい決定を下し、安全な決定を下し、ほとんどの人が下す決定を下すなら、あなたは他の誰とも同じになります。",
"zh": "如果你总是做出正确的决定,安全的决定,也就是大多数人做出的决定,你就会和其他人一样。",
"pt": "Se você sempre tomar a decisão certa, a decisão segura, aquela que a maioria das pessoas toma, será igual a todos os outros.",
"ar": "إذا كنت دائمًا تتخذ القرار الصحيح، القرار الآمن، الذي يتخذه معظم الناس، فستكون مثل الجميع.",
"hi": "यदि आप हमेशा सही निर्णय लेते हैं, सुरक्षित निर्णय लेते हैं, वही निर्णय जो अधिकांश लोग लेते हैं, तो आप सभी के समान होंगे।",
"mr": "जर तुम्ही नेहमी योग्य निर्णय घेतला, सुरक्षित निर्णय घेतला, जो निर्णय सर्वात जास्त लोक घेतात, तर तुम्ही इतर सर्वांप्रमाणेच असाल.",
"bn": "যদি আপনি সবসময় সঠিক সিদ্ধান্ত নেন, নিরাপদ সিদ্ধান্ত নেন, যা বেশিরভাগ লোকেরা নেয়, তাহলে আপনি অন্য সবার মতোই হয়ে যাবেন।",
"kn": "ನೀವು ಯಾವಾಗಲೂ ಸರಿ ಆದ ನಿರ್ಧಾರವನ್ನು ತೆಗೆದುಕೊಳ್ಳುತ್ತೀರಿ, ಸುರಕ್ಷಿತ ನಿರ್ಧಾರವನ್ನು ತೆಗೆದುಕೊಳ್ಳುತ್ತೀರಿ, ಬಹುತೇಕ ಎಲ್ಲಾ ಜನರು ತೆಗೆದುಕೊಳ್ಳುವ ನಿರ್ಧಾರ, ನೀವು ಎಲ್ಲರಂತೆ ಆಗುತ್ತೀರಿ.",
"ta": "நீங்கள் எப்போதும் சரியான முடிவுகளை எடுப்பீர்கள், பாதுகாப்பான முடிவுகளை எடுப்பீர்கள், மற்றவர்கள் எடுக்குமாறு எடுப்பீர்கள் என்றால், நீங்கள் மற்றவர்கள் போல் இருக்கிறீர்கள்.",
"te": "మీరు ఎల్లప్పుడూ సరైన నిర్ణయం తీసుకుంటే, సురక్షితమైన నిర్ణయం తీసుకుంటే, చాలా మంది చేసే నిర్ణయం, మీరు ఇతరులకంటే విభిన్నంగా ఉండరు.",
"ml": "നിങ്ങൾ എല്ലായ്പ്പോഴും ശരിയായ തീരുമാനമെടുക്കുകയാണെങ്കിൽ, സുരക്ഷിതമായ തീരുമാനമെടുക്കുകയാണെങ്കിൽ, ഏറ്റവും കൂടുതൽ ആളുകൾ എടുക്കുന്ന തീരുമാനം, നിങ്ങൾ മറ്റെല്ലാവരുപോലെയായിരിക്കും."
}
},
{
quote:
"The downside is that a person spends $20 to watch that hero instead of being that hero himself.",
category: "Life",
author: "Patrick Bet-David",
addedBy: "rohits-web03",
},
{
quote:
"There is unpanned gold in every soul you run into, no matter what walk of life they are from.",
category: "Life",
author: "Robert Downey Jr.",
addedBy: "rohits-web03",
},
{
quote:
"Change will come ONLY when the pain of staying the same is greater than the pain of change.",
category: "Life",
author: "Dora Lee Scott",
addedBy: "rohits-web03",
},
{
quote: "When you have something to say, silence is a lie",
category: "Life",
author: "Jordan B. Peterson",
addedBy: "rohits-web03",
},
{
quote:
"If experts say you have ADHD use that God-given gift to ignore naysayers. Learn to use your crutches in life as secret weapons",
category: "Entrepreneurship",
author: "Patrick Bet-David",
addedBy: "rohits-web03",
},
{
quote:
"And if you think tough men are dangerous, wait until you see what weak men are capable of",
category: "Life",
author: "Jordan B. Peterson",
addedBy: "rohits-web03",
},
{
quote: "In order to be able to think, you have to risk being offensive.",
category: "Life",
author: "Jordan B. Peterson",
addedBy: "rohits-web03",
},
{
quote:
"A talented entrepreneur with bad habits eventually becomes an employee. An average employee with great habits can eventually become a great entrepreneur",
category: "Entrepreneurship",
author: "Patrick Bet-David",
addedBy: "rohits-web03",
},
{
quote:
"I am not afraid of an army of lions led by a sheep; I am afraid of an army of sheep led by a lion. ",
category: "Motivation",
author: "Alexander the Great",
addedBy: "rohits-web03",
},
{
quote: "To suffer terribly and to know yourself as the cause: that is Hell",
category: "Life",
author: "Jordan B. Peterson",
addedBy: "rohits-web03",
},
{
quote:
"My happiness is my reflection on the suffering during my journey and knowing that I never quit nor was I guided by anybody on this earth.",
category: "Life",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote:
"Perhaps you are overvaluing what you don't have and undervaluing what you do",
category: "Life",
author: "Jordan B. Peterson",
addedBy: "rohits-web03",
},
{
quote: "If you are not willing to be a fool, you can't become a master.",
category: "Life",
author: "Jordan B. Peterson",
addedBy: "rohits-web03",
},
{
quote:
"Always be ready to adjust, recalibrate, and stay after it to become better, somehow.",
category: "Life",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote:
"If you fulfill your obligations everyday you don't need to worry about the future",
category: "Inspiration",
author: "Jordan B. Peterson",
addedBy: "rohits-web03",
},
{
quote: "We're either getting better or we're getting worse.",
category: "Life",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote:
"Everyone fails sometimes and life isn't supposed to be fair, much less bend to your every whim.",
category: "Inspiration",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote:
"You must recognize what you are about to do, highlight what you do not like about it, and spend time visualizing each and every obstacle you can.",
category: "Motivation",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote:
"The ticket to victory often comes down to bringing your very best when you feel your worst.",
category: "Motivation",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote: "Most wars are won or lost in our own heads.",
category: "Life",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote:
"Everyone fails sometimes and life isn't supposed to be fair, much less bend to your every whim.",
category: "Inspiration",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote: "It may be satisfactory, but that's another word for mediocrity.",
category: "Inspiration",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote: "Don't stop when you're tired. Stop when you're done.",
category: "Inspiration",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote:
"Pain unlocks a secret doorway in the mind, one that leads to both peak performance and beautiful silence.",
category: "Motivation",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote:
"The most important conversations you'll ever have are the ones you'll have with yourself.",
category: "Motivation",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote: "Denial is the ultimate comfort zone.",
category: "Motivation",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote:
"It's a lot more than mind over matter. It takes relentless self-discipline to schedule suffering into your day, every day.",
category: "Motivation",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote:
"You are in danger of living a life so comfortable and soft that you will die without ever realizing your true potential.",
category: "Motivation",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote: "If you don't say what you think then you kill your unborn self",
category: "Inspiration",
author: "Jordan B. Peterson",
addedBy: "rohits-web03",
},
{
quote: "Every day may not be good… but there's something good in every day",
category: "Inspiration",
author: "Alice Morse Earle",
addedBy: "Oblivious19",
},
{
quote:
"It's fine to celebrate success, but it is more important to heed the lessons of failure.",
category: "Motivation",
author: "Bill Gates",
addedBy: "Oblivious19",
},
{
quote:
"To live is the rarest thing in the world. Most people exist, that is all",
category: "Life",
author: "Oscar Wilde",
addedBy: "Oblivious19",
},
{
quote: "Pain is inevitable. Suffering is optional.",
category: "Life",
author: "Haruki Murakami",
addedBy: "Oblivious19",
},
{
quote:
"Your work is going to fill a large part of your life, and the only way to be truly satisfied is to do what you believe is great work. And the only way to do great work is to love what you do",
category: "Inspiration",
author: "Steve Jobs",
addedBy: "Oblivious19",
},
{
quote:
"I knew that if I failed I wouldn’t regret that, but I knew the one thing I might regret is not trying.",
category: "Inspiration",
author: "Jeff Bezo ",
addedBy: "Oblivious19",
},
{
quote: "Unable are the loved to die for love is immortality.",
category: "Life",
author: "Emily Dickinson",
addedBy: "Oblivious19",
},
{
quote: "Be kind, for everyone you meet is fighting a hard battle.",
category: "Life",
author: "Plato",
addedBy: "Oblivious19",
},
{
quote: "Intelligence without ambition is a bird without wings.",
category: "Inspiration",
author: "Walter H. Cottingham",
addedBy: "Oblivious19",
},
{
quote:
"The desire to reach for the stars is ambitious. The desire to reach hearts is wise.",
category: "Inspiration",
author: "Maya Angelou",
addedBy: "Oblivious19",
},
{
quote:
"Even if we don't have the power to choose where we come from, we can still choose where we go from there.",
category: "Inspiration",
author: "Stephen Chbosky",
addedBy: "Rekha Giri",
},
{
quote: "Don't cry because it's over. Smile because it happened.",
category: "Life",
author: "Dr. Seuss",
addedBy: "Rekha Giri",
},
{
quote:
"The more that you read, the more things you will know. The more that you learn, the more places you'll go.",
category: "Life",
author: "Dr. Seuss",
addedBy: "Jenster5",
},
{
quote: "Everything is hard before it is easy.",
category: "Motivation",
author: "Johann Wolfgang von Goethe",
addedBy: "Rekha Giri",
},
{
quote: "Anyone who has never made a mistake has never tried anything new.",
category: "Motivation",
author: "Albert Einstein",
addedBy: "Rekha Giri",
},
{
quote: "Don't let your happiness depend on something you may lose.",
category: "Life",
author: "C.S. Lewis",
addedBy: "Rekha Giri",
},
{
quote: "Never look back unless you are planning to go that way.",
category: "Motivation",
author: "Henry David Thoreau",
addedBy: "Rekha Giri",
},
{
quote: "Life is a journey, not a destination.",
category: "Life",
author: "Ralph Waldo Emerson",
addedBy: "Rekha Giri",
},
{
quote:
"The future belongs to those who believe in the beauty of their dreams.",
category: "Motivation",
author: "Eleanor Roosevelt",
addedBy: "Rekha Giri",
},
{
quote: "You must be the change you wish to see in the world",
category: "Motivation",
author: "Mahatma Gandhi",
addedBy: "Rekha Giri",
},
{
quote:
"The best and most beautiful things in the world cannot be seen or even touched - they must be felt with the heart.",
category: "Life",
author: "Helen Keller",
addedBy: "Rekha Giri",
},
{
quote: "Enthusiasm makes up for a host of deficiencies.",
category: "Motivation",
author: "Barack Obama",
addedBy: "Shayy841",
},
{
quote:
"When everything seems to be going against you, remember that the airplant takes off against the wind, not with it",
category: "Motivation",
author: "Henry Ford",
addedBy: "Shayy841",
},
{
quote:
"If you're offered a seat on a rocket ship, don't ask what seat! Just get on.",
category: "Motivation",
author: "Sheryl Sandberg",
addedBy: "Shayy841",
},
{