-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestionsByDate.ts
2124 lines (2120 loc) · 57.2 KB
/
questionsByDate.ts
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
/* eslint-disable max-len */
import { HandPutTag } from './tags'
interface QuestionByDate {
translations: {
en: string
de: string
}
deepness: number
tags?: HandPutTag[]
author?: string
date?: string
}
interface QuestionsByDate {
[date: string]: QuestionByDate[]
}
export const questionsByDate: QuestionsByDate = {
'2022-08-31': [
{
deepness: 5,
translations: {
en: 'What decision of yours do you regret the most?',
de: 'Welche deiner Entscheidungen bereust du am meisten?'
}
},
{
deepness: 2,
tags: [ 'christians' ],
translations: {
en: 'What is your story with Jesus?',
de: 'Was ist deine Story mit Jesus?'
}
},
{
deepness: 2,
translations: {
en: 'What behaviour of others annoys you?',
de: 'Welches Verhalten von anderen nervt dich?'
}
},
{
deepness: 2,
translations: {
en: 'What would you like to know about the future?',
de: 'Was würdest du wissen wollen über die Zukunft?'
}
},
{
deepness: 1,
translations: {
en: 'What do you have no idea about?',
de: 'Wovon hast du keine Ahnung?'
}
},
{
deepness: 2,
translations: {
en: 'What do you usually do to de-stress?',
de: 'Was machst du normalerweise, um Stress abzubauen?'
}
},
{
deepness: 3,
translations: {
en: 'What are the most important entries in your calendar?',
de: 'Was sind die wichtigsten Termine in deiner Agenda?'
}
},
{
deepness: 2,
translations: {
en: 'What makes you interesting?',
de: 'Was macht dich interessant?'
}
},
{
deepness: 2,
tags: [ 'v' ],
translations: {
en: 'What bothers you at the moment?',
de: 'Was beschäftigt dich gerade?'
}
},
{
deepness: 3,
tags: [ 'christians' ],
translations: {
en: 'What are you thinking about regarding your faith?',
de: 'Was beschäftigt dich in deinem Glaubensleben?'
}
},
{
deepness: 3,
translations: {
en: 'What are you currently responsible for?',
de: 'Wofür trägst du momentan Verantwortung?'
}
},
{
deepness: 1,
tags: [ 'v' ],
translations: {
en: 'What is something you like talking about?',
de: 'Wovon erzählst du gerne?'
}
},
{
deepness: 3,
translations: {
en: 'What would you change about your looks?',
de: 'Was würdest du an deinem Aussehen ändern?'
}
},
{
deepness: 3,
translations: {
en: 'Who are you in 10 years?',
de: 'Wer bist du in 10 Jahren?'
}
},
{
deepness: 2,
tags: [ 'v' ],
translations: {
en: 'What are you currently grateful for?',
de: 'Wofür bist du gerade dankbar?'
}
},
{
deepness: 2,
translations: {
en: 'What is the coolest thing you\'ve done in your life so far?',
de: 'Was ist das Coolste, was du bisher in deinem Leben gemacht hast?'
}
},
{
deepness: 2,
translations: {
en: 'What story is particularly important to you?',
de: 'Was ist eine Geschichte, die dir besonders wichtig ist?'
}
},
{
deepness: 5,
translations: {
en: 'When did you fail the hardest in your life? What was your biggest triumph?',
de: 'Wo bist du im Leben am schlimmsten gescheitert? Was war dein grösster Triumph?'
}
},
{
deepness: 3,
translations: {
en: 'In which direction would you like to change the world?',
de: 'In welche Richtung möchtest du diese Welt verändern?'
}
},
{
deepness: 2,
tags: [ 'christians' ],
translations: {
en: 'What bible story is particularly important to you?',
de: 'Was ist eine Bibelgeschichte, die dir besonders wichtig ist?'
}
},
{
deepness: 2,
translations: {
en: 'What is a property/habit of yours that annoys other people?',
de: 'Was ist eine deiner Eigenschaften/Gewohnheiten, die andere nervt?'
}
},
{
deepness: 4,
translations: {
en: 'In life, are you where you wanted to be at this point?',
de: 'Bist du da im Leben, wo du zum jetzigen Zeitpunkt sein wolltest?'
}
},
{
deepness: 1,
translations: {
en: 'If you would be able to change your first name, how would you like to be called?',
de: 'Wenn du einen neuen Vornamen haben könntest, welchen würdest du wählen?'
}
},
{
deepness: 4,
translations: {
en: 'How do you reach a decision?',
de: 'Wie triffst du Entscheidungen?'
}
},
{
deepness: 3,
translations: {
en: 'What is likeable/admirable about you?',
de: 'Was ist liebenswert an dir?'
}
},
{
deepness: 3,
tags: [ 'christians', 'v' ],
translations: {
en: 'Which trait of Jesus do you appreciate most?',
de: 'Welche Eigenschaft von Jesus schätzt du am meisten?'
}
},
{
deepness: 5,
translations: {
en: 'What have you wanted to try to change about your life, but haven\'t managed?',
de: 'Was willst du schon lange an dir ändern, schaffst es aber nicht?'
}
},
{
deepness: 5,
tags: [ 'twoPeople' ],
translations: {
en: 'What blind spots of me should I change?',
de: 'Was sind meine blinden Flecken, die ich deiner Meinung nach an mir ändern sollte?'
}
},
{
deepness: 4,
tags: [ 'v', 'twoPeople' ],
translations: {
en: 'What is my best quality that I don\'t see?',
de: 'Was ist meine beste Qualität, die ich selber nicht sehe?'
}
},
{
deepness: 3,
translations: {
en: 'What is your best (secret) advice for working relationships?',
de: 'Was ist dein bester Rat (oder Geheimtipp) für eine funktionierende Beziehung?'
}
},
{
deepness: 3,
translations: {
en: 'On a scale from 1 through 10, how would you rate your life? What could you do to improve it?',
de: 'Auf einer Skala von 1 bis 10, wie bewertest du dein Leben? Was könntest du tun, um es zu verbessern?'
}
},
{
deepness: 3,
translations: {
en: 'What opinion of yours is unpopular with your friends?',
de: 'Welche Meinung von dir ist in deinem Freundeskreis unpopulär?'
}
},
{
deepness: 2,
translations: {
en: 'What 3 traits would a person that is an exact opposite of you have?',
de: 'Welche 3 Eigenschaften weist eine Person auf, die das exakte Gegenteil von dir ist?'
}
},
{
deepness: 5,
tags: [ 'v' ],
translations: {
en: 'What breaks your heart?',
de: 'Was bricht dein Herz?'
}
},
{
deepness: 3,
translations: {
en: 'What is the best advice you have received?',
de: 'Was ist der beste Ratschlag, den du in deinem Leben erhalten hast?'
}
},
{
deepness: 4,
translations: {
en: 'Of what friend are you particularly proud? Why?',
de: 'Auf welchen deiner Freunde bist du am meisten stolz? Warum?'
}
},
{
deepness: 1,
tags: [ 'twoPeople' ],
translations: {
en: 'Show me your best imitation of me!',
de: 'Zeig mir die beste Nachahmung von mir!'
}
},
{
deepness: 3,
translations: {
en: 'What do you like about our culture?',
de: 'Was findest du toll an unserer Kultur?'
}
},
{
deepness: 3,
translations: {
en: 'When was the last time you felt misunderstood?',
de: 'Wann fühltest du dich zuletzt falsch verstanden?'
}
},
{
deepness: 3,
tags: [ 'v' ],
translations: {
en: 'What can other people learn from you?',
de: 'Was können andere von dir lernen?'
}
},
{
deepness: 4,
translations: {
en: 'What part of getting older worries you? What are you looking forward to?',
de: 'Welcher Aspekt des Älterwerdens bereitet dir Sorgen? Auf was freust du dich?'
}
},
{
deepness: 1,
translations: {
en: 'What TV series are you currently watching?',
de: 'Welche Serien schaust du gerade?'
}
},
{
deepness: 4,
translations: {
en: 'What do you think is the most beautiful part of your body?',
de: 'Was findest du das Schönste an deinem Körper?'
}
},
{
deepness: 3,
tags: [ 'christians', 'v' ],
translations: {
en: 'What bothers you most about what christians believe and how they live?',
de: 'Was stört dich am meisten an dem, was Christen glauben und leben?'
}
},
{
deepness: 3,
tags: [ 'christians' ],
translations: {
en: 'How are you maintaining your relationship to God?',
de: 'Wie pflegst du deine Freundschaft mit Gott?'
}
},
{
deepness: 3,
translations: {
en: 'Tell me something about you that only few people know!',
de: 'Erzähle etwas Spannendes über dich, das nur wenige wissen.'
}
},
{
deepness: 2,
translations: {
en: 'What is something you learned during the past week?',
de: 'Was ist etwas, das du in der letzten Woche gelernt hast?'
}
},
{
deepness: 3,
tags: [ 'christians' ],
translations: {
en: 'What advice would you give to a recently converted christian?',
de: 'Was sind gute Tipps, die du frisch bekehrten Christen geben würdest?'
}
},
{
deepness: 1,
translations: {
en: 'What is your favourite story from a movie or book?',
de: 'Welches ist deine Lieblings-Geschichte aus einem Film oder Buch?'
}
},
{
deepness: 1,
tags: [ 'christians' ],
translations: {
en: 'What is something that pastors should preach about more often?',
de: 'Worüber sollte in der Kirche mehr gepredigt werden?'
}
},
{
deepness: 3,
tags: [ 'christians' ],
translations: {
en: 'What are your goals in your faith?',
de: 'Was sind deine Ziele im Glauben?'
}
},
{
deepness: 3,
tags: [ 'twoPeople' ],
translations: {
en: 'What is most important to you in our relationship?',
de: 'Was ist dir am wichtigsten an unserer Beziehung?'
}
},
{
deepness: 1,
translations: {
en: 'Is there an ability you\'d like to master?',
de: 'Gibt es eine Fähigkeit, welche du wirklich beherrschen möchtest?'
}
},
{
deepness: 1,
translations: {
en: 'What are your trademarks?',
de: 'Was sind deine Markenzeichen?'
}
},
{
deepness: 4,
tags: [ 'v' ],
translations: {
en: 'From what mistakes of yours can people learn?',
de: 'Von welchen Fehlern, die du gemacht hast, können andere lernen?'
}
},
{
deepness: 5,
tags: [ 'v' ],
translations: {
en: 'What is something that life is currently teaching you?',
de: 'Was lehrt dich das Leben gerade?'
}
},
{
deepness: 3,
translations: {
en: 'What is most important to you in a relationship?',
de: 'Was ist dir an einer Beziehung am wichtigsten?'
}
},
{
deepness: 1,
translations: {
en: 'What do you know especially much about?',
de: 'Worin kennst du dich besonders gut aus?'
}
},
{
deepness: 2,
translations: {
en: 'What persons do you admire? What for?',
de: 'Welche Menschen bewunderst du? Wofür?'
}
},
{
deepness: 3,
tags: [ 'christians' ],
translations: {
en: 'Is there something about Jesus and his doctrine that annoys you?',
de: 'Gibt es etwas über Jesus und seine Lehre, das dich verärgert?'
}
},
{
deepness: 3,
tags: [ 'christians' ],
translations: {
en: 'What wrong belief did you hold in the past?',
de: 'Was hast du in der Vergangenheit falsch geglaubt?'
}
},
{
deepness: 3,
translations: {
en: 'What are your biggest goals in life?',
de: 'Was sind deine grössten Lebensziele?'
}
},
{
deepness: 3,
tags: [ 'christians' ],
translations: {
en: 'What treats do mature christians show?',
de: 'Was sind Merkmale eines reifen Christen?'
}
},
{
deepness: 3,
translations: {
en: 'How does somebody become a friend of yours?',
de: 'Wie wird man Freund:in von dir? (Freundschaft)'
}
},
{
deepness: 4,
translations: {
en: 'What is something that I have to experience?',
de: 'Was ist etwas, das ich unbedingt erleben soll?'
}
},
{
deepness: 3,
translations: {
en: 'What is a common prejudice people have about you?',
de: 'Was ist ein häufiges Vorurteil, welches Leute von dir haben?'
}
},
{
deepness: 3,
translations: {
en: 'Who is your best friend? Why?',
de: 'Wer ist dein bester Freund oder deine beste Freundin? Warum?'
}
},
{
deepness: 5,
translations: {
en: 'What was the most difficult decision of your life?',
de: 'Was war die schwierigste Entscheidung deines Lebens?'
}
},
{
deepness: 1,
translations: {
en: 'What is something you like doing in particular?',
de: 'Was machst du besonders gerne?'
}
},
{
deepness: 2,
translations: {
en: 'What accomplishment of yours are you most proud of?',
de: 'Auf welche deiner Leistungen/Errungenschaften bist du am meisten Stolz?'
}
},
{
deepness: 3,
translations: {
en: 'What would you change about your personality?',
de: 'Was würdest du an deiner Persönlichkeit ändern?'
}
},
{
deepness: 3,
translations: {
en: 'How are you inspiring other people?',
de: 'Wie inspirierst du andere?'
}
},
{
deepness: 5,
translations: {
en: 'When were you ready to sink into the floor in shame?',
de: 'Wann wärst du aus Scham am liebsten im Boden versunken?'
}
}
],
'2022-09-03': [
{
deepness: 5,
translations: {
en: 'What is a decision you are struggling with right now? What is keeping you from making it?',
de: 'Was für eine Entscheidung fällt dir gerade schwer zu treffen? Was hält dich davon ab?'
}
}
],
'2022-09-09': [
{
deepness: 1,
tags: [ 'v' ],
translations: {
en: 'What is the last song you listened to?',
de: 'Welchen Song hast du zuletzt angehört?'
}
}
],
'2022-09-11': [
{
deepness: 3,
tags: [ 'v' ],
translations: {
en: 'When do you feel at home?',
de: 'Wann fühlst du dich zuhause?'
}
},
{
deepness: 4,
translations: {
en: 'When did you last cry? Why?',
de: 'Wann hast du das letzte mal geweint? Warum?'
}
}
],
'2022-09-19': [
{
deepness: 5,
tags: [ 'v' ],
translations: {
en: 'Where are you deceiving yourself?',
de: 'Wo lügst du dich selbst an?'
}
}
],
'2022-10-12': [
{
deepness: 3,
tags: [ 'v' ],
translations: {
en: 'What is out of balance in your life right now?',
de: 'Wo ist dein Leben zur Zeit nicht im Gleichgewicht?'
}
}
],
'2022-10-21': [
{
deepness: 3,
author: 'Alex No',
tags: [ 'philosophy' ],
translations: {
en: 'What is love?',
de: 'Was ist Liebe?'
}
}
],
'2022-10-31': [
{
deepness: 3,
translations: {
en: 'What is something that you do differently from your parents? Why?',
de: 'Was machst du anders als deine Eltern? Warum?'
}
}
],
'2022-11-09': [
{
deepness: 4,
author: 'Alex No',
translations: {
en: 'How do you show love? How do you like being shown love?',
de: 'Wie zeigst du Liebe? Wie können dir andere Liebe zeigen?'
}
},
{
deepness: 2,
translations: {
en: 'What is the best compliment somebody ever gave you?',
de: 'Was ist das beste Kompliment, das du je bekommen hast?'
}
}
],
'2022-11-25': [
{
deepness: 4,
translations: {
en: 'What needs to happen in your life for it to have gone right?',
de: 'Was muss in deinem Leben passieren, damit es gut war?'
}
},
{
deepness: 1,
author: 'Alex No',
translations: {
en: 'What sound or song would summon you?',
de: 'Welcher Ton oder welches Lied würde dich herbeirufen?'
}
},
{
deepness: 2,
tags: [ 'philosophy' ],
translations: {
en: 'Are there evil humans?',
de: 'Gibt es böse Menschen?'
}
},
{
deepness: 2,
translations: {
en: 'What role did music play in the household you grew up in?',
de: 'Was für eine Rolle hat Musik gespielt im Haushalt, in dem du aufgewachsen bist?'
}
},
{
deepness: 1,
author: 'Alex No',
translations: {
en: 'What song is playing in your head?',
de: 'Was hast du gerade für einen Ohrwurm?'
}
},
{
deepness: 3,
translations: {
en: 'What is a line from a song or poem that means a lot to you?',
de: 'Was ist eine Zeile aus einem Gedicht oder Lied, die dir viel bedeutet?'
}
},
{
deepness: 3,
translations: {
en: 'What is something that you took after your grandparents? What is something you took after your parents?',
de: 'Wo bist du wie deine Grosseltern? Wo bist du wie deine Eltern?'
}
}
],
'2022-12-21': [
{
deepness: 2,
translations: {
en: 'What are your pet peeves?',
de: 'Was kannst du nicht leiden in anderen Menschen? Was sind deine pet peeves?'
}
},
{
deepness: 5,
tags: [ 'twoPeople' ],
author: 'Samer Massad',
translations: {
en: 'Where are you choosing wrong? Where am I choosing wrong?',
de: 'Wo wählst du falsch? Wo wähle ich falsch?'
}
},
{
deepness: 3,
author: 'Samer Massad',
tags: [ 'v' ],
translations: {
en: 'What is something you\'re distracted from?',
de: 'Wovon bist du abgelenkt?'
}
},
{
deepness: 3,
translations: {
en: 'What is a coping mechanism you used to rely on? What for?',
de: 'Was ist ein coping mechanism, den du in der Vergangenheit missbrauchst hast? Wofür?'
}
}
],
'2023-02-02': [
{
deepness: 5,
tags: [ 'twoPeople' ],
translations: {
en: 'What is the pain in me you wish you could heal?',
de: 'Was ist der Schmerz in mir, den du gerne heilen würdest?'
}
},
{
deepness: 4,
tags: [ 'twoPeople' ],
translations: {
en: 'What do you think I need to hear?',
de: 'Was glaubst du, müsste ich mal hören?'
}
},
{
deepness: 4,
tags: [ 'twoPeople' ],
translations: {
en: 'What is your biggest fear? How can I help you to face it?',
de: 'Was ist deine grösste Angst? Wie kann ich dir helfen, sie zu überwinden?'
}
},
{
deepness: 2,
tags: [ 'twoPeople' ],
translations: {
en: 'What is something you think I\'m really good at?',
de: 'Was ist etwas, was ich wirklich gut kann?'
}
},
{
deepness: 3,
author: 'Sofia',
translations: {
en: 'What do you like about your parents?',
de: 'Was magst du an deinen Eltern?'
}
},
{
deepness: 2,
translations: {
en: 'What is something you\'ve done to try and be cool?',
de: 'Was hast to in der Vergangenheit gemacht um cool zu scheinen?'
}
},
{
deepness: 5,
tags: [ 'twoPeople' ],
translations: {
en: 'When have you seen me the most vulnerable? What did it teach you about me?',
de: 'Wann hast du mich am verwundbarsten gesehen? Was hat es dich über mich gelehrt?'
}
},
{
deepness: 3,
tags: [ 'sex' ],
translations: {
en: 'What do you think is my sexiest quality?',
de: 'Was findest du ist meine sexieste Qualität?'
}
},
{
deepness: 4,
tags: [ 'twoPeople', 'v' ],
translations: {
en: 'What do you think I\'m hesitant to tell you?',
de: 'Was glaubst du zögere ich, dir zu sagen?'
}
},
{
deepness: 4,
tags: [ 'twoPeople' ],
translations: {
en: 'Who has more power in this relationship?',
de: 'Wer hat mehr Macht in dieser Beziehung?'
}
},
{
deepness: 2,
tags: [ 'twoPeople' ],
translations: {
en: 'What is one experience you hope we share in the future?',
de: 'Was ist ein Erlebnis, von dem du hoffst, dass wir es mal zusammen machen?'
}
},
{
deepness: 4,
tags: [ 'twoPeople' ],
translations: {
en: 'If this was our last conversation, what is something you\'d never want me to forget?',
de: 'Angenommen, das wäre unser letztes Gespräch: Was sollte ich niemals vergessen?'
}
},
{
deepness: 3,
tags: [ 'twoPeople' ],
translations: {
en: 'What is one thing I could do to improve our relationship?',
de: 'Was könnte ich machen, um unsere Beziehung zu verbessern?'
}
},
{
deepness: 3,
translations: {
en: 'When do you feel most empowered in your body?',
de: 'Wann fühlst du dich am stärksten (most empowered) in deinem Körper?'
}
},
{
deepness: 2,
tags: [ 'twoPeople' ],
translations: {
en: 'What would you never, ever want my help with?',
de: 'Wobei möchtest du nie und nimmer meine Hilfe?'
}
},
{
deepness: 3,
tags: [ 'twoPeople', 'dating' ],
translations: {
en: 'What about me makes you come back for more?',
de: 'Was an mir motiviert dich, für mehr zurückzukommen?'
}
},
{
deepness: 3,
tags: [ 'twoPeople' ],
translations: {
en: 'When did you feel closest to me?',
de: 'Wann hast du dich mir am nächsten gefühlt?'
}
},
{
deepness: 4,
tags: [ 'twoPeople' ],
translations: {
en: 'What is a possible challenge for me in the future? What can I do to prepare for it now?',
de: 'Was ist eine mögliche Herausforderung, die du in meiner Zukunft siehst? Was kann ich jetzt schon machen, um dafür vorbereitet zu sein?'
}
},
{
deepness: 4,
tags: [ 'twoPeople' ],
translations: {
en: 'What are you hesitant to talk to me about?',
de: 'Über was zögerst du, mit mir zu reden?'
}
},
{
deepness: 3,
tags: [ 'twoPeople' ],
translations: {
en: 'When you look into my eyes, what do you see?',
de: 'Wenn du in meine Augen schaust, was siehst du dann?'
}
},
{
deepness: 3,
tags: [ 'v', 'twoPeople' ],
translations: {
en: 'What is a question you\'ve always wanted to ask me?',
de: 'Was wolltest du mich schon immer mal fragen?'
}
},
{
deepness: 3,
author: 'Andy Stanley',
tags: [ 'v' ],
translations: {
en: 'What do you want to be known for?',
de: 'Für was möchtest du bekannt sein?'
}
},
{
deepness: 4,
tags: [ 'twoPeople' ],
translations: {
en: 'What is your favourite imperfection of mine?',
de: 'Was ist deine Lieblingsfehler an mir?'
}
},
{
deepness: 3,
tags: [ 'twoPeople' ],
translations: {
en: 'How were we raised differently and how do you think it affects our relationship?',
de: 'Inwiefer wurden wir unterschiedlich erzogen und wie beeinflusst das unsere Beziehung?'
}
},
{
deepness: 3,
tags: [ 'twoPeople' ],
translations: {
en: 'What is something you learned from me that changed you?',
de: 'Was hast du von mir gelernt, was dich verändert hat?'
}
},
{
deepness: 4,
tags: [ 'dating' ],
translations: {
en: 'What would your last partner warn me about?',
de: 'Vor was würde mich dein:e letze:r Partner:in warnen?'
}
},
{
deepness: 4,
tags: [ 'twoPeople' ],
translations: {
en: 'When are you most worried about me?',
de: 'Wann machst du dir am meisten Sorgen um mich?'
}
}
],
'2023-04-06': [
{
deepness: 3,
author: 'Franziska von Grünigen',
translations: {
en: 'What should people think and say about you after your death?',
de: 'Was sollen Leute über dich sagen und denken nach deinem Tod?'
}
},
{
deepness: 4,
author: 'Franziska von Grünigen',
translations: {
en: 'What do you want your funeral to be like? Any songs that must be played? What should be said? By whom?',
de: 'Wie soll deine Beerdigung sein? Was für ein Lied muss unbedingt gespielt werden? Was soll gesagt werden? Von wem?'
}
}
],
'2023-04-12': [
{
deepness: 3,
author: 'Robert',
translations: {
en: 'What should never change about your environment?',
de: 'Was soll sich an deinem Umfeld nie ändern?'
}
},
{
deepness: 4,
translations: {
en: 'What did you recently need courage for?',
de: 'Für was brauchtest du in letzter Zeit Mut?'
}
},
{
deepness: 4,
author: 'Tim Harford',
translations: {
en: 'Have you ever broken anyone\'s heart?',
de: 'Hast du schon einmal das Herz von jemandem gebrochen?'
}
},
{
deepness: 3,
translations: {
en: 'How stressed are you right now?',
de: 'Wie gestresst bist du gerade?'