-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathen_src_messages.json
6102 lines (6102 loc) · 239 KB
/
en_src_messages.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
{
"about_title": {
"description": "The title of the 'About' page.",
"message": "Welcome to the Google Maps Santa Tracker!"
},
"about-content-one": {
"backup_message_id": 4247099665778718610,
"description": "One of three paragraphs describing the Santa Tracker website. Tone should be whimsical. The Dashboard will be a google map with information displayed on top, like the name of the city he's in, the number of presents delivered, the current temperature, etc.",
"message": "On Christmas Eve we\u2019ll be proudly showcasing a Santa\u2019s dashboard, the technology that powers his sleigh during his around-the-world journey. We\u2019ve received this special preview from one of Santa\u2019s many developer elves, who are hard at work in the North Pole helping Santa prepare for his big day. Santa\u2019s dashboard - featuring the latest and greatest in Google Maps technology and sleigh engineering - will allow you to follow his progress around the world, and also learn a little about some of his stops along the way."
},
"about-content-two": {
"backup_message_id": 5272387082683858920,
"description": "One of three paragraphs describing the Santa Tracker website. Tone should be whimsical. The Village is the main navigation for Santa Tracker.",
"message": "Our friendly elves have also invited you to explore Santa\u2019s village while Santa gets ready for his journey. So go ahead and explore his village, you might just find some fun activities and meet some interesting elves."
},
"about-content-three": {
"description": "One of three paragraphs describing the Santa Tracker website. Tone should be light, but direct, as it links people to more help.",
"raw": "The Google Maps Santa Tracker is created and developed by Google, with a little help from Santa\u2019s elves. Need help or have another question? Visit our <ph name=\"BEGIN_LINK\"><ex><a href=\"link\"></ex><a href=\"//support.google.com/santatracker\"></ph>Help Center<ph name=\"END_LINK\"><ex></a></ex></a></ph>."
},
"about-santa": {
"description": "Link text. Please keep this short. Links to the Santa Tracker About page. Page supplies more info about the project.",
"message": "About"
},
"ar_country_name": {
"description": "Name of a country. This appears as a label in a game that teaches children about holiday traditions from around the world.",
"message": "Argentina"
},
"ar_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Arabic"
},
"ar_tradition": {
"description": "Describes a local holiday tradition. Restrict to 300 characters.",
"message": "In Argentina, Christmas begins promptly at midnight. Many families kick off the holiday by hosting festive celebrations in their homes, opening gifts with their loved ones, and lighting fireworks in the early hours of the morning."
},
"au_country_name": {
"description": "Name of a country. This appears as a label in a game that teaches children about holiday traditions from around the world.",
"message": "Australia"
},
"au_tradition": {
"description": "Describes a local holiday tradition. Restrict to 300 characters.",
"message": "Australia's Southern Hemisphere location means it's summer time in December. Instead of sleigh bells and cocoa, many Australians head to the beach to celebrate the holidays with a prawn lunch and a few rounds of cricket."
},
"back_to_tracker": {
"description": "Link to go back to the santa tracker screen.",
"message": "Back to Tracker"
},
"br_country_name": {
"description": "Name of a country. This appears as a label in a game that teaches children about holiday traditions from around the world.",
"message": "Brazil"
},
"br_tradition": {
"description": "Describes a local holiday tradition. Restrict to 300 characters.",
"message": "Christmas celebrations start near midnight, usually with big family dinners, gift opening, and the celebration of the 'Missa do Galo' (the rooster's mass) in churches. Despite the warm tropical summer weather, themes of winter and snow are not uncommon."
},
"ca_country_name": {
"description": "Name of a country. This appears as a label in a game that teaches children about holiday traditions from around the world.",
"message": "Canada"
},
"ca_tradition": {
"description": "Describes a local holiday tradition. Restrict to 300 characters.",
"message": "Canadian children usually celebrate a snowy, white Christmas. They bundle up in their scarves and toques, a Canadian woolen hat, to play in the snow, ice-skate, and toboggan! On Christmas Eve, they leave milk and cookies by the fireplace for Santa (and sometimes a carrot for his reindeer)."
},
"cs_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Czech"
},
"calendar": {
"description": "A link to a calendar view of the site navigation. Refers to an advent calendar of the month of December.",
"message": "The Calendar"
},
"close-this": {
"description": "Button text. 15char limit. Closes a menu.",
"message": "Cancel"
},
"copy-me": {
"description": "Label. Users will see a URL that they can copy to email to a friend, or share on Facebook/G+",
"message": "Copy this link to share your message"
},
"countdownlabel": {
"description": "Labels the countdown clock. Appears under a timer.",
"message": "Until Santa Departs"
},
"days": {
"description": "Label for a counter showing the days left until Dec 24. Keep short/one word.",
"message": "Days"
},
"da_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Danish"
},
"de_country_name": {
"description": "Name of a country. This appears as a label in a game that teaches children about holiday traditions from around the world.",
"message": "Germany"
},
"de_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "German"
},
"de_tradition": {
"backup_message_id": 2341301741130959217,
"description": "Describes a local holiday tradition. Restrict to 300 characters.",
"message": "In nearly Every German town Christmas markets open in town squares. Townspeople gather to hear brass bands, and enjoy traditional fare of the region. They eat gingerbread hearts, sugar-roasted almonds, sweets of all kinds, and drink mulled wine (Gl\u00fchwein) or apple cider."
},
"deck": {
"description": "Link text. Deck out implies decorating.",
"message": "Deck Out"
},
"deckdescription": {
"description": "Describes what happens when you click the deck link",
"message": "Deck out your browser with a Santa Chrome extension."
},
"detected": {
"description": "Marks a detected language in a dropdown of languages.",
"message": "detected"
},
"difficulty": {
"description": "15 char limit. Label describing the game difficulty you are on.",
"message": "Difficulty"
},
"easy_difficulty": {
"description": "Difficulty setting for a game.",
"message": "Easy"
},
"el_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Greek"
},
"en_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "English"
},
"endofjourneymessage": {
"description": "",
"message": "Santa's finished his journey for the year! He and the elves are still having some fun in the North Pole before their annual vacation."
},
"error-lost-connection": {
"description": "Paragraph text that appears on our error page. The error page might appear in the event of a 404, or other similar problems. Text should be non-specific and light hearted.",
"message": "Looks like we just lost our connection with the North Pole. Santa's elves are working hard to fix it - stay tuned!"
},
"error-try-again": {
"description": "Link text. Please keep this short. Link appears on an error page. Clicking the link will reload the application.",
"message": "Try again"
},
"es_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Spanish"
},
"finished-text": {
"description": "Paragraph text that appears as the sole text on a landing page. This page is displayed when the Santa Tracker is not active.",
"message": "Happy Holidays! Santa has completed his journey around the world and is taking a much deserved break. Visit us again next year!"
},
"fr_country_name": {
"description": "Name of a country. This appears as a label in a game that teaches children about holiday traditions from around the world.",
"message": "France"
},
"fr_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "French"
},
"fr_tradition": {
"backup_message_id": 1199145570729815843,
"description": "Describes a local holiday tradition. Restrict to 300 characters.",
"message": "In France, children traditionally put their shoes out next to the fireplace in anticipation of P\u00e8re No\u00ebl's arrival. If children have been good throughout the year, P\u00e8re No\u00ebl will fill the shoes with gifts."
},
"getgooglemaps": {
"description": "Link text to an external site.",
"message": "Get Google Maps"
},
"gh_country_name": {
"description": "Name of a country. This appears as a label in a game that teaches children about holiday traditions from around the world.",
"message": "Ghana"
},
"gh_tradition": {
"description": "Describes a local holiday tradition. Restrict to 300 characters.",
"message": "Christmas in Ghana includes the whole family. Adults dress up in costumes and hand out candy and sweets around the neighborhood. Children decorate their homes with paper ornaments and drawings they make at school."
},
"gotovillage": {
"description": "A link to Santa's Village. One method of site navigation.",
"message": "Go to the Village"
},
"gplus": {
"description": "A link to Google+",
"message": "Google+"
},
"gr_country_name": {
"description": "Name of a country. This appears as a label in a game that teaches children about holiday traditions from around the world.",
"message": "Greece"
},
"gr_tradition": {
"backup_message_id": 7800867695196112161,
"description": "Describes a local holiday tradition. Restrict to 300 characters.",
"message": "In Greece, friendly but troublesome creatures called 'kallik\u00e1ntzari' live most of the year in the center of the earth. But at Christmas, they love to hide in people's houses, frightening people, playing tricks, or devouring Christmas foods. Greeks perform rituals to keep these hobgoblins away."
},
"gt_country_name": {
"description": "Name of a country. This appears as a label in a game that teaches children about holiday traditions from around the world.",
"message": "Guatemala"
},
"gt_tradition": {
"description": "Describes a local holiday tradition. Restrict to 300 characters.",
"message": "Guatemalans celebrate Christmas with fun and dancing. They wear hats called Puritina, eat Guatemalan style tamales, light firecrackers at midnight, and dance the night away with various styles of dancing."
},
"improve_google_translate": {
"description": "CTA link in translation scene to join the Google Translate community.",
"message": "Help improve Google Translate"
},
"hard_difficulty": {
"description": "Difficulty setting for a game.",
"message": "Hard"
},
"hi_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Hindi"
},
"hours": {
"description": "Label for the hours portion of a countdown clock. Keep short/one word.",
"message": "Hours"
},
"hu_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Hungarian"
},
"is_country_name": {
"description": "Name of a country. This appears as a label in a game that teaches children about holiday traditions from around the world.",
"message": "Iceland"
},
"is_tradition": {
"description": "Describes a local holiday tradition. Restrict to 300 characters.",
"message": "At Christmas time in Iceland, families give gifts of warm clothing to each member of their household. According to legend, there is a frightening Christmas Cat who gobbles up anyone not equipped for the cold and wintery weather. Families work together to ensure nobody will 'go to the Christmas Cat.'"
},
"it_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Italian"
},
"ja_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Japanese"
},
"kg_country_name": {
"description": "Name of a country. This appears as a label in a game that teaches children about holiday traditions from around the world.",
"message": "Kyrgyzstan"
},
"kg_tradition": {
"description": "Describes a local holiday tradition. Restrict to 300 characters.",
"message": "In Kyrgyzstan, Ayaz Ata (Grandfather Frost) comes at midnight on New Year's Eve and leaves presents under the New Year tree. When the clock strikes midnight, families throughout the country light fireworks to celebrate this beautiful occasion. The cities become as bright as day."
},
"ko_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Korean"
},
"learnmore": {
"description": "Link to learn more about Santa Tracker. This appears on the front page.",
"message": "Learn More"
},
"level": {
"description": "15 char limit. Label describing the game level you are on.",
"message": "Level"
},
"light": {
"description": "Link text. This is in reference to Christmas lights.",
"message": "Light Up"
},
"lightdescription": {
"description": "Describes what happens when you click the 'light up' link",
"message": "Light up your TV with the Santa Tracker Android app and Chromecast."
},
"medium_difficulty": {
"description": "Difficulty setting for a game.",
"message": "Medium"
},
"minutes": {
"description": "Label for the minutes portion of a countdown clock. Keep short/one word.",
"message": "Minutes"
},
"mx_country_name": {
"description": "Name of a country. This appears as a label in a game that teaches children about holiday traditions from around the world.",
"message": "Mexico"
},
"mx_tradition": {
"description": "Describes a local holiday tradition. Restrict to 300 characters.",
"message": "In Mexico, kids of all ages celebrate Christmas by breaking pinatas. Adults and children have fun by wearing a blindfold, spinning around, and swinging a stick to break open the star-shaped hanging pots. When the pinata is smashed open, nuts, fruit and candy spill out for everyone to enjoy."
},
"newtoday": {
"description": "Each scene in Santa's village is available by clicking on a building. Buildings are frozen in ice until a specific date. This label indicates a building that is newly available",
"message": "New Today"
},
"no_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Norwegian"
},
"nonprofit-jane-description": {
"description": "The description of a non-profit organization. Descriptions are supplied by the non-profit organization. Please do not translate the name of the non-profit.",
"raw": "Chimpanzees are human being's closest living relatives in the animal kingdom! Today, there are fewer than 300,000 chimpanzees remaining due to habitat loss, disease and illegal trade. The Jane Goodall Institute (JGI) protects chimpanzees by observing and understanding their behaviors as well as the habitats in which they live. JGI also works to build a community of people who are protecting and conserving wildlife and the environment we share. <ph name=\"BEGIN_LINK\"><ex><a href=\"link\"></ex><a href=\"//www.google.com/maps/about/behind-the-scenes/streetview/treks/gombe-tanzania/\"></ph>Explore the Chimpanzee habitats<ph name=\"END_LINK\"><ex></a></ex></a></ph> in Gombe, Tanzania."
},
"nonprofit-jane-type": {
"description": "The type of work that the non-profit supports. Work is defined very broadly. eg. a type of animal, water, sun, etc.",
"message": "Chimpanzee"
},
"nonprofit-more-information": {
"description": "Is followed by a URL to a nonprofit. This appears in a print-out and the URL is sometimes in a new line, other times to the right. 40 chars max.",
"message": "For more information visit:"
},
"nonprofit-nature-description": {
"description": "The description of a non-profit organization. Descriptions are supplied by the non-profit organization. Please do not translate the name of the non-profit.",
"message": "The Nature Conservancy works to protect and restore forests in the United States and around the world. These iconic forests sustain life around the planet. They filter water, clean our air, support communities of people and provide habitat for important plant and animal species. At the current rate of deforestation, our forests will be wiped out within 100 years. The Nature Conservancy\u2019s Plant a Billion Trees program is working to plant one billion trees by 2025 and restore the world\u2019s most critical forests."
},
"nonprofit-nature-type": {
"description": "The type of work that the non-profit supports. Work is defined very broadly. eg. a type of animal, water, sun, etc.",
"message": "Forests"
},
"nonprofit-wwf-description": {
"description": "The description of a non-profit organization. Descriptions are supplied by the non-profit organization. Please do not translate the name of the non-profit.",
"raw": "Climate change continues to disrupt the balance of many of the world\u2019s ecosystems, both warm and cold places. In the Arctic, polar bears are losing their sea ice habitat with rising temperatures, and face added threats from human activities, such as oil and gas development and shipping. World Wildlife Fund works to ensure the survival of the species through scientific research and working in partnership with Arctic native communities. Google.org is proud to be a <ph name=\"BEGIN_LINK\"><ex><a href=\"link\"></ex><a href=\"https://www.worldwildlife.org/stories/google-helps-wwf-stop-wildlife-crime\"></ph> supporter<ph name=\"END_LINK\"><ex></a></ex></a></ph> with World Wildlife Fund."
},
"nonprofit-wwf-type": {
"description": "The type of work that the non-profit supports. Work is defined very broadly. eg. a type of animal, water, sun, etc.",
"message": "Polar Bear"
},
"nz_country_name": {
"description": "Name of a country. This appears as a label in a game that teaches children about holiday traditions from around the world.",
"message": "New Zealand"
},
"nz_tradition": {
"description": "Describes a local holiday tradition. Restrict to 300 characters.",
"message": "Because Christmas is in the summer in New Zealand, friends and family gather round a barbecue. Typical Christmas meals include roast lamb, sometimes cooked in a 'hangi' - an underground pit or earth oven. A favorite dessert is pavlova: meringue covered in fresh fruit like strawberries and kiwifruit."
},
"onthego": {
"description": "Link text. This will show a map of where Santa is located.",
"message": "Santa on the go"
},
"openingtomorrow": {
"description": "Each scene in Santa's village is available by clicking on a building. Buildings are frozen in ice until a specific date. This label indicates ice will melt, and the scene will be available tomorrow.",
"message": "Grand opening tomorrow"
},
"ornament-print-instructions": {
"description": "Instructions on how to assemble a printed ornament. This is printed on the same page and refers to a line just below, where the paper should be folded.",
"message": "Fold here and glue sides together"
},
"ph_country_name": {
"description": "Name of a country. This appears as a label in a game that teaches children about holiday traditions from around the world.",
"message": "Philippines"
},
"ph_tradition": {
"description": "Describes a local holiday tradition. Restrict to 300 characters.",
"message": "The Philippines is known for having the world's longest Christmas season. Four months are considered Christmas months: September, October, November, December. Christmas carols can oftentimes be heard as early as the beginning of September."
},
"pl_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Polish"
},
"playagain": {
"description": "When you finish playing a game, we ask you to play again.",
"message": "Play again"
},
"playdescription": {
"description": "Text describing the play button.",
"message": "Play with friends in the Santa Tracker Android App."
},
"pt_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Portuguese"
},
"ru_country_name": {
"description": "Name of a country. This appears as a label in a game that teaches children about holiday traditions from around the world.",
"message": "Russia"
},
"ru_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Russian"
},
"ru_tradition": {
"description": "Describes a local holiday tradition. Restrict to 300 characters.",
"message": "Russian children decorate a New Year's tree, instead of a Christmas tree. Children wait with longing for Grandfather Frost who travels with his granddaughter Snowmaiden, delivering presents across the land. Grandfather Frost lives deep in the woods in Veliky Ustyug, in northern Russia."
},
"santatracker": {
"description": "Product name. The name of the website. Please keep relatively short.",
"message": "Santa Tracker"
},
"score": {
"description": "15 char limit. Label for a numeric score.",
"message": "Score"
},
"sk_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Slovak"
},
"time": {
"description": "15 char limit. Label for time remaining during gameplay.",
"message": "Time"
},
"seconds": {
"description": "Label for the seconds portion of a countdown clock. Keep short/one word.",
"message": "Seconds"
},
"gameover": {
"description": "Appears when the player is game over. Very large font, keep as short as possible.",
"message": "Game Over!"
},
"gameover_score": {
"description": "Label during game over for how much score the player got.",
"message": "Your score:"
},
"gameover_level": {
"description": "Label during game over for which level was reached.",
"message": "You made it to level:"
},
"share-button": {
"description": "",
"message": "Share with your friends on Google+"
},
"share-text": {
"description": "Appears as a message attached to a virtual postcard.",
"message": "I created this postcard for you in the Google Santa Tracker. Happy holidays!"
},
"share-this": {
"description": "Button text. 15char limit. Shares an image on Google+ or Facebook.",
"message": "Share"
},
"sv_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Swedish"
},
"terms-and-privacy": {
"backup_message_id": 3076236066203606172,
"description": "Link text. Please keep this short. Links to Google's terms of service.",
"message": "Terms & Privacy"
},
"th_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Thai"
},
"tilt": {
"description": "Game play instructions. Tilt your phone left or right to move.",
"message": "Tilt your device!"
},
"tr_language_name": {
"description": "Localised name of a language. Appears in a translation drop down.",
"message": "Turkish"
},
"traditions-next": {
"description": "Button text. Please keep short. User can move through a set of cards describing local traditions of a country.",
"message": "Next Tradition"
},
"traditions-prev": {
"description": "Button text. Please keep short. User can move through a set of cards describing local traditions of a country.",
"message": "Previous Tradition"
},
"traditions-world": {
"description": "Button text. Please keep short. Used to change a map from a zoomed in view of a country, to a view of the whole world.",
"message": "World"
},
"twitter": {
"description": "A link to Twitter",
"message": "Twitter"
},
"uk_country_name": {
"description": "Name of a country. This appears as a label in a game that teaches children about holiday traditions from around the world.",
"message": "United Kingdom"
},
"uk_tradition": {
"description": "Describes a local holiday tradition. Restrict to 300 characters.",
"message": "In the United Kingdom, merrymakers of all ages enjoy Christmas crackers on the table at dinner. Crackers are tubes wrapped in colorful paper, with pull tabs on each end. When you pull the tabs, the tube bursts with a loud snap! Inside are paper hats, toys and candy to enjoy during Christmas night."
},
"us_country_name": {
"description": "Name of a country. This appears as a label in a game that teaches children about holiday traditions from around the world.",
"message": "United States"
},
"us_tradition": {
"description": "Describes a local holiday tradition. Restrict to 300 characters.",
"message": "In the United States, stockings are hung on Christmas Eve. The legend goes that St Nicholas heard of a family in need. To surprise them, he climbed down their chimney and placed precious bags of gold in hanging stockings. From this point, St Nicholas was known as Santa Claus, giver of gifts."
},
"play": {
"description": "Button text. 15char limit. A label on an activity that will let the user play a game.",
"message": "Play"
},
"learn": {
"description": "Button text. 15char limit. A label on an activity that will show educational content.",
"message": "Learn"
},
"watch": {
"description": "Button text. 15char limit. A label on an activity that will show the user a video.",
"message": "Watch"
},
"category_send": {
"description": "Button text. 15char limit. A label on an activity that will let the user send a message (like an e-mail).",
"message": "Send"
},
"category_listen": {
"description": "Button text. 15char limit. A label on an activity that will let the user listen to some music.",
"message": "Listen"
},
"category_code": {
"description": "Button text. 15char limit. A label on an activity that will let the user write some programming code.",
"message": "Code"
},
"category_draw": {
"description": "Button text. 15char limit. A label on an activity that will let the user write draw a picture",
"message": "Draw"
},
"citylights-panorama-01-location": {
"description": "City and country location of a photo panorama.",
"message": "New York City, USA"
},
"citylights-panorama-01-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in New York City, USA.",
"message": "Rockefeller Plaza"
},
"citylights-panorama-02-location": {
"description": "City and country location of a photo panorama.",
"message": "Moscow, Russia"
},
"citylights-panorama-02-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in Moscow, Russia.",
"message": "Pushkin Square"
},
"citylights-panorama-03-location": {
"description": "City and country location of a photo panorama.",
"message": "Vienna, Austria"
},
"citylights-panorama-03-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in Vienna, Austria.",
"message": "Rathausplatz"
},
"citylights-panorama-04-location": {
"description": "City and country location of a photo panorama.",
"message": "Paris, France"
},
"citylights-panorama-04-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in Paris, France.",
"message": "Champs-Elysees to the Arc de Triomphe"
},
"citylights-panorama-05-location": {
"description": "City and country location of a photo panorama.",
"message": "Chicago, USA"
},
"citylights-panorama-05-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in Chicago, USA.",
"message": "Magnificent Mile"
},
"citylights-panorama-06-location": {
"description": "City and country location of a photo panorama.",
"message": "Nuremberg, Germany"
},
"citylights-panorama-06-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in Nuremberg, Germany.",
"message": "Christmas Market"
},
"citylights-panorama-07-location": {
"description": "City and country location of a photo panorama.",
"message": "Medellin, Colombia"
},
"citylights-panorama-07-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in Medellin, Colombia.",
"message": "Medellin River"
},
"citylights-panorama-08-location": {
"description": "City and country location of a photo panorama.",
"message": "Lapland, Finland"
},
"citylights-panorama-08-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in Lapland, Finland.",
"message": "Santa Claus Village"
},
"citylights-panorama-09-location": {
"description": "City and country location of a photo panorama.",
"message": "Brussels, Belgium"
},
"citylights-panorama-09-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in Brussels, Belgium.",
"message": "Grand Place"
},
"citylights-panorama-10-location": {
"description": "City and country location of a photo panorama.",
"message": "London, England"
},
"citylights-panorama-10-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in London, England.",
"message": "Trafalgar Square"
},
"citylights-panorama-11-location": {
"description": "City and country location of a photo panorama.",
"message": "Madrid, Spain"
},
"citylights-panorama-11-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in Madrid, Spain.",
"message": "Plaza Mayor"
},
"citylights-panorama-12-location": {
"description": "City and country location of a photo panorama.",
"message": "Tokyo, Japan"
},
"citylights-panorama-12-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in Tokyo, Japan.",
"message": "Roppongi Hills"
},
"citylights-panorama-13-location": {
"description": "City and country location of a photo panorama.",
"message": "Copenhagen, Denmark"
},
"citylights-panorama-13-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in Copenhagen, Denmark.",
"message": "Tivoli Gardens"
},
"citylights-panorama-14-location": {
"description": "City and country location of a photo panorama.",
"message": "Singapore, Singapore"
},
"citylights-panorama-14-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in Singapore, Singapore.",
"message": "Orchard Road"
},
"citylights-panorama-15-location": {
"description": "City and country location of a photo panorama.",
"message": "Gothenburg, Sweden"
},
"citylights-panorama-15-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in Gothenburg, Sweden.",
"message": "Lane of Light"
},
"citylights-panorama-16-location": {
"description": "City and country location of a photo panorama.",
"message": "Niagara Falls, Canada"
},
"citylights-panorama-16-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in Niagara Falls, Canada.",
"message": "Winter Festival of Lights"
},
"citylights-panorama-17-location": {
"description": "City and country location of a photo panorama.",
"message": "Hong Kong, China"
},
"citylights-panorama-17-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in Hong Kong, China.",
"message": "WinterFest"
},
"citylights-panorama-18-location": {
"description": "City and country location of a photo panorama.",
"message": "Rio de Janeiro, Brazil"
},
"citylights-panorama-18-description": {
"description": "Description of a photo panorama, usually a place of interest. Source is sometimes in english, sometimes in the local language. Translate as appropriate. This one is in Rio de Janeiro, Brazil.",
"message": "Rodrigo de Freitas Lake"
},
"citylights-contribute": {
"description": "CTA link to a community where people can upload panoramas of their own. Includes a placeholder with current localised city/country name.",
"raw": "Add your own photos of <ph name=\"LOCATION\"><ex>Trafalgar Square, London</ex>{{location}}</ph>"
},
"codelab-block-whenrun": {
"description": "Code block label. 15char limit. Start of the code, reads to indicate that blocks below it will execute in order",
"message": "when run"
},
"codelab-block-moveeast": {
"description": "Code block label for moving the player east. Preferably just one word for the direction.",
"message": "east"
},
"codelab-block-moveeast-tooltip": {
"description": "Tooltip for a code block which moves the player east. Written as a command in first person.",
"message": "Move me east one space."
},
"codelab-block-movenorth": {
"description": "Code block label for moving the player north. Preferably just one word for the direction.",
"message": "north"
},
"codelab-block-movenorth-tooltip": {
"description": "Tooltip for a code block which moves the player north. Written as a command in first person.",
"message": "Move me north one space."
},
"codelab-block-movesouth": {
"description": "Code block label for moving the player south. Preferably just one word for the direction.",
"message": "south"
},
"codelab-block-movesouth-tooltip": {
"description": "Tooltip for a code block which moves the player south. Written as a command in first person.",
"message": "Move me south one space."
},
"codelab-block-movewest": {
"description": "Code block label for moving the player west. Preferably just one word for the direction.",
"message": "west"
},
"codelab-block-movewest-tooltip": {
"description": "Tooltip for a code block which moves the player west. Written as a command in first person.",
"message": "Move me west one space."
},
"codelab-block-repeat": {
"description": "Code block label. 15char limit. Is followed by a editable number and another label like this \"repeat 5 times\". Sadly the labels can't be reordered for technical reasons.",
"message": "repeat"
},
"codelab-block-repeat-times": {
"description": "Code block label. 15char limit. Placed after a circle arrow (indicating repeat) and an editable number, i.e. repeat 5 times.",
"message": "times"
},
"codelab-block-repeat-tooltip": {
"description": "Tooltip for code block which repeats one or more statements.",
"message": "Repeat some statements several times."
},
"codelab-finish": {
"description": "Button label to end game. 15char limit.",
"message": "Finish"
},
"codelab-great": {
"description": "Huge success title after finishing a level. 15char limit.",
"message": "Great"
},
"codelab-mwc-promo": {
"description": "Promotion for the Made w/ Code initiative. Displayed in footer of code lab game. Should be short and direct.",
"raw": "Explore more Google coding projects at <ph name=\"LINK\"><ex><a href=\"link\">link</a></ex><a href=\"//www.madewithcode.com/\" target=\"_blank\">MadewithCode.com</a></ph>."
},
"codelab-next-challenge": {
"description": "Button label to start next level. 15char limit.",
"message": "Next Challenge"
},
"codelab-oops": {
"description": "Huge whimsical title after failing a level. 15char limit.",
"message": "Oops!"
},
"codelab-result-empty-repeat-fail": {
"description": "Short hint after failing a level. One or two sentences max.",
"message": "The \"Repeat\" block needs to have other blocks inside it to work."
},
"codelab-result-extra-top-block-fail": {
"description": "Short hint after failing a level. One or two sentences max.",
"message": "Some of the blocks are not attached together properly."
},
"codelab-result-generic-fail": {
"description": "Short generic message after failing a level. One or two sentences max.",
"message": "Looks like you got lost!"
},
"codelab-result-missing-block-fail": {
"description": "Short hint after failing a level. One or two sentences max. Refers to blocks visually displayed below.",
"message": "Try one or more of the block below to solve this puzzle."
},
"codelab-result-missing-block-success": {
"description": "Short hint on how the puzzle can be improved even if level is complete. One or two sentences max. Refers to blocks visually displayed below. Has a token for a dynamic number between 2-6, the token can be skipped and translation worded that fewer blocks are needed.",
"raw": "Did you know you can finish this level with just <ph name=\"IDEAL\"><ex>4</ex>{{ideal}}</ph> blocks? Try using the block below."
},
"codelab-result-perfect-success": {
"description": "Short message after completing a level. One or two sentences max.",
"message": "Congratulations! You finished the puzzle perfectly."
},
"codelab-result-too-few-blocks-fail": {
"description": "Short hint after failing a level. One or two sentences max.",
"message": "You are using the right blocks, but try using more of them to complete this puzzle."
},
"codelab-result-too-many-blocks-success": {
"description": "Short hint on how the puzzle can be improved even if level is complete. One or two sentences max. Has a token for a dynamic number between 2-6, the token can be skipped and translation worded that fewer blocks are needed.",
"raw": "Did you know you can finish this level with just <ph name=\"IDEAL\"><ex>4</ex>{{ideal}}</ph> blocks?"
},
"codelab-try-again": {
"description": "Button label to try the level again after failing or completing with room for improvement. 15char limit.",
"message": "Try Again"
},
"language": {
"description": "Button text. Please keep short. Used to open the language chooser to change the language",
"message": "Language"
},
"select-language": {
"description": "Title of the langage select options area",
"message": "Select Language"
},
"error": {
"description": "Shown on the error page (if anything went wron)",
"message": "Looks like we just lost our connection with the North Pole. Santa's elves are working hard to fix it - stay tuned!"
},
"error_try_again": {
"description": "Button text. Shown on the error page (if anything went wron)",
"message": "Try again"
},
"trivia_beginner_001": {
"description": "A trivia question.",
"message": "The Andes Mountains are located on which continent?"
},
"trivia_beginner_001_answer0": {
"description": "A potential answer for the trivia question.",
"message": "South America"
},
"trivia_beginner_001_answer1": {
"description": "A potential answer for the trivia question.",
"message": "Europe"
},
"trivia_beginner_001_answer2": {
"description": "A potential answer for the trivia question.",
"message": "Asia"
},
"trivia_beginner_002": {
"description": "A trivia question.",
"message": "Which U.S. state is made up of eight main islands?"
},
"trivia_beginner_002_answer0": {
"description": "A potential answer for the trivia question.",
"message": "Hawaii"
},
"trivia_beginner_002_answer1": {
"description": "A potential answer for the trivia question.",
"message": "Ohio"
},
"trivia_beginner_002_answer2": {
"description": "A potential answer for the trivia question.",
"message": "Arkansas"
},
"trivia_beginner_003": {
"description": "A trivia question.",
"message": "Which U.S. state is located in the Great Plains?"
},
"trivia_beginner_003_answer0": {
"description": "A potential answer for the trivia question.",
"message": "Kansas"
},
"trivia_beginner_003_answer1": {
"description": "A potential answer for the trivia question.",
"message": "Delaware"
},
"trivia_beginner_003_answer2": {
"description": "A potential answer for the trivia question.",
"message": "Idaho"
},
"trivia_beginner_004": {
"description": "A trivia question.",
"message": "Which continent borders the Atlantic, Pacific, and Arctic Oceans?"
},
"trivia_beginner_004_answer0": {
"description": "A potential answer for the trivia question.",
"message": "Asia"
},
"trivia_beginner_004_answer1": {
"description": "A potential answer for the trivia question.",
"message": "Australia"
},
"trivia_beginner_004_answer2": {
"description": "A potential answer for the trivia question.",
"message": "South America"
},
"trivia_beginner_005": {
"description": "A trivia question.",
"message": "Which state is located in the Pacific time zone?"
},
"trivia_beginner_005_answer0": {
"description": "A potential answer for the trivia question.",
"message": "California"
},
"trivia_beginner_005_answer1": {
"description": "A potential answer for the trivia question.",
"message": "Georgia"
},
"trivia_beginner_005_answer2": {
"description": "A potential answer for the trivia question.",
"message": "Indiana"
},
"trivia_beginner_006": {
"description": "A trivia question.",
"message": "Which continent includes the Atlas Mountains and the Kalahari Desert?"
},
"trivia_beginner_006_answer0": {
"description": "A potential answer for the trivia question.",
"message": "Africa"
},
"trivia_beginner_006_answer1": {
"description": "A potential answer for the trivia question.",
"message": "Europe"
},
"trivia_beginner_006_answer2": {
"description": "A potential answer for the trivia question.",
"message": "Antarctica"
},
"trivia_beginner_007": {
"description": "A trivia question.",
"message": "Which U.S. state borders a Great Lake?"
},
"trivia_beginner_007_answer0": {
"description": "A potential answer for the trivia question.",
"message": "Ohio"
},
"trivia_beginner_007_answer1": {
"description": "A potential answer for the trivia question.",
"message": "Montana"
},
"trivia_beginner_007_answer2": {
"description": "A potential answer for the trivia question.",
"message": "New Mexico"
},
"trivia_beginner_008": {
"description": "A trivia question.",
"message": "Most people on which continent speak either Portuguese or Spanish?"
},
"trivia_beginner_008_answer0": {
"description": "A potential answer for the trivia question.",
"message": "South America"
},
"trivia_beginner_008_answer1": {
"description": "A potential answer for the trivia question.",
"message": "Africa"
},
"trivia_beginner_008_answer2": {
"description": "A potential answer for the trivia question.",
"message": "North America"
},
"trivia_beginner_009": {
"description": "A trivia question.",
"message": "Which U.S. state has a shape that includes a panhandle?"
},
"trivia_beginner_009_answer0": {
"description": "A potential answer for the trivia question.",
"message": "Oklahoma"
},
"trivia_beginner_009_answer1": {
"description": "A potential answer for the trivia question.",
"message": "Wyoming"
},
"trivia_beginner_009_answer2": {
"description": "A potential answer for the trivia question.",
"message": "Colorado"
},
"trivia_beginner_010": {
"description": "A trivia question.",
"message": "Antarctica and which other continent lie entirely in the Southern Hemisphere?"
},
"trivia_beginner_010_answer0": {
"description": "A potential answer for the trivia question.",
"message": "Australia"
},
"trivia_beginner_010_answer1": {
"description": "A potential answer for the trivia question.",
"message": "North America"
},
"trivia_beginner_010_answer2": {
"description": "A potential answer for the trivia question.",
"message": "Asia"
},
"trivia_beginner_011": {
"description": "A trivia question.",
"message": "The Ronne Ice Shelf borders which continent?"
},
"trivia_beginner_011_answer0": {
"description": "A potential answer for the trivia question.",
"message": "Antarctica"
},
"trivia_beginner_011_answer1": {
"description": "A potential answer for the trivia question.",
"message": "Africa"
},
"trivia_beginner_011_answer2": {
"description": "A potential answer for the trivia question.",
"message": "South America"
},
"trivia_beginner_012": {
"description": "A trivia question.",
"message": "Vancouver Island and Kodiak Island are located off the west coast of which continent?"
},
"trivia_beginner_012_answer0": {
"description": "A potential answer for the trivia question.",
"message": "North America"
},
"trivia_beginner_012_answer1": {
"description": "A potential answer for the trivia question.",
"message": "Asia"
},
"trivia_beginner_012_answer2": {
"description": "A potential answer for the trivia question.",
"message": "Australia"
},
"trivia_beginner_013": {
"description": "A trivia question.",
"message": "Niger, a country with one of the world’s fastest growing populations, is located in the northwestern part of which continent?"
},
"trivia_beginner_013_answer0": {
"description": "A potential answer for the trivia question.",
"message": "Africa"
},
"trivia_beginner_013_answer1": {
"description": "A potential answer for the trivia question.",
"message": "Europe"
},
"trivia_beginner_013_answer2": {
"description": "A potential answer for the trivia question.",
"message": "North America"
},
"trivia_beginner_014": {
"description": "A trivia question.",
"message": "Which continent has the fewest plants and trees?"
},
"trivia_beginner_014_answer0": {
"description": "A potential answer for the trivia question.",
"message": "Antarctica"
},
"trivia_beginner_014_answer1": {
"description": "A potential answer for the trivia question.",
"message": "North America"
},
"trivia_beginner_014_answer2": {
"description": "A potential answer for the trivia question.",
"message": "South America"
},
"trivia_beginner_015": {
"description": "A trivia question.",
"message": "Tasmanian Devils are native to an island off the southern coast of which continent?"
},
"trivia_beginner_015_answer0": {
"description": "A potential answer for the trivia question.",
"message": "Australia"
},
"trivia_beginner_015_answer1": {