rapid-router 5.4.1__py2.py3-none-any.whl → 7.6.8__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (354) hide show
  1. example_project/rapid_router_test_settings.py +164 -0
  2. example_project/settings.py +152 -0
  3. example_project/urls.py +15 -0
  4. example_project/{example_project/wsgi.py → wsgi.py} +2 -1
  5. game/__init__.py +1 -1
  6. game/admin.py +43 -4
  7. game/app_settings.py +3 -7
  8. game/character.py +26 -18
  9. game/decor.py +172 -97
  10. game/end_to_end_tests/base_game_test.py +44 -33
  11. game/end_to_end_tests/editor_page.py +17 -2
  12. game/end_to_end_tests/game_page.py +127 -45
  13. game/end_to_end_tests/selenium_test_case.py +1 -20
  14. game/end_to_end_tests/test_cow_crashes.py +3 -5
  15. game/end_to_end_tests/test_language_dropdown.py +14 -0
  16. game/end_to_end_tests/test_level_editor.py +290 -0
  17. game/end_to_end_tests/test_level_failures.py +1 -1
  18. game/end_to_end_tests/test_level_selection.py +79 -0
  19. game/end_to_end_tests/test_play_through.py +240 -102
  20. game/end_to_end_tests/test_python_levels.py +44 -13
  21. game/end_to_end_tests/test_saving_workspace.py +22 -0
  22. game/forms.py +9 -2
  23. game/level_management.py +38 -29
  24. game/messages.py +1218 -203
  25. game/migrations/0001_squashed_0025_levels_ordering_pt1.py +19 -1
  26. game/migrations/0026_levels_pt2.py +13 -2
  27. game/migrations/0032_cannot_turn_left_level.py +13 -2
  28. game/migrations/0033_recursion_level.py +13 -2
  29. game/migrations/0034_joes_level.py +13 -2
  30. game/migrations/0035_disable_route_score_level_70.py +0 -2
  31. game/migrations/0036_level_score_73.py +0 -2
  32. game/migrations/0037_level_score_79.py +0 -2
  33. game/migrations/0038_level_score_40.py +0 -1
  34. game/migrations/0042_level_score_73.py +0 -2
  35. game/migrations/0048_add_cow_field_and_blocks.py +0 -2
  36. game/migrations/0049_level_score_34.py +0 -2
  37. game/migrations/0050_level_score_40.py +0 -2
  38. game/migrations/0051_level_score_49.py +0 -1
  39. game/migrations/0076_level_locked_for_class.py +19 -0
  40. game/migrations/0077_alter_level_next_level.py +52 -0
  41. game/migrations/0078_add_block_types.py +23 -0
  42. game/migrations/0079_populate_block_type_add_cow_blocks.py +60 -0
  43. game/migrations/0080_level_disable_algorithm_score.py +18 -0
  44. game/migrations/0081_first_12_levels_no_algo_score.py +29 -0
  45. game/migrations/0082_level_43_solution.py +16 -0
  46. game/migrations/0083_add_cows_to_existing_levels.py +195 -0
  47. game/migrations/0084_alter_block_block_type.py +18 -0
  48. game/migrations/0085_add_new_blocks.py +53 -0
  49. game/migrations/0086_loop_levels.py +482 -0
  50. game/migrations/0087_workspace_python_view_enabled.py +18 -0
  51. game/migrations/0088_rename_episodes.py +35 -0
  52. game/migrations/0089_episodes_in_development.py +30 -0
  53. game/migrations/0090_add_missing_model_solutions.py +144 -0
  54. game/migrations/0091_disable_algo_score_if_no_model_solution.py +46 -0
  55. game/migrations/0092_disable_algo_score_in_custom_levels.py +28 -0
  56. game/migrations/0093_alter_level_character_name.py +18 -0
  57. game/migrations/0094_add_hint_lesson_subtitle_to_levels.py +28 -0
  58. game/migrations/0095_level_commands.py +18 -0
  59. game/migrations/0096_alter_level_commands.py +18 -0
  60. game/migrations/0097_add_python_den_levels.py +1515 -0
  61. game/migrations/0098_add_episode_link_fields.py +44 -0
  62. game/migrations/0099_python_episodes_links.py +103 -0
  63. game/migrations/0100_reorder_python_levels.py +179 -0
  64. game/migrations/0101_rename_episodes.py +45 -0
  65. game/migrations/0102_reoder_episodes_13_14.py +136 -0
  66. game/migrations/0103_level_1015_solution.py +26 -0
  67. game/migrations/0104_remove_level_direct_drive.py +17 -0
  68. game/migrations/0105_delete_invalid_attempts.py +18 -0
  69. game/migrations/0106_fields_to_snake_case.py +48 -0
  70. game/migrations/0107_rename_worksheet_link_episode_student_worksheet_link.py +18 -0
  71. game/migrations/0108_episode_indy_worksheet_link.py +18 -0
  72. game/migrations/0109_create_episodes_23_and_24.py +99 -0
  73. game/migrations/0110_remove_episode_indy_worksheet_link_and_more.py +100 -0
  74. game/migrations/0111_create_worksheets.py +149 -0
  75. game/migrations/0112_worksheet_locked_classes.py +21 -0
  76. game/migrations/0113_level_needs_approval.py +18 -0
  77. game/migrations/0114_default_and_non_student_levels_no_approval.py +31 -0
  78. game/migrations/0115_level_level__default_does_not_need_approval.py +22 -0
  79. game/migrations/0116_update_worksheet_video_links.py +68 -0
  80. game/migrations/0117_update_solutions_to_if_else.py +61 -0
  81. game/models.py +157 -16
  82. game/permissions.py +34 -19
  83. game/python_den_urls.py +26 -0
  84. game/random_road.py +43 -127
  85. game/serializers.py +12 -17
  86. game/static/django_reverse_js/js/reverse.js +171 -0
  87. game/static/game/css/LilitaOne-Regular.ttf +0 -0
  88. game/static/game/css/backgrounds.css +14 -10
  89. game/static/game/css/dataTables.custom.css +4 -2
  90. game/static/game/css/dataTables.jqueryui.css +561 -320
  91. game/static/game/css/editor.css +47 -0
  92. game/static/game/css/game.css +43 -49
  93. game/static/game/css/game_screen.css +116 -53
  94. game/static/game/css/jquery.dataTables.css +455 -251
  95. game/static/game/css/level_editor.css +10 -1
  96. game/static/game/css/level_selection.css +32 -3
  97. game/static/game/css/level_share.css +6 -5
  98. game/static/game/css/skulpt/codemirror.css +1 -0
  99. game/static/game/image/Python_Den_hero_student.png +0 -0
  100. game/static/game/image/Python_levels_page.svg +1954 -0
  101. game/static/game/image/characters/front_view/Electric_van.svg +448 -0
  102. game/static/game/image/characters/top_view/Electric_van.svg +448 -0
  103. game/static/game/image/characters/top_view/Sleigh.svg +436 -0
  104. game/static/game/image/decor/city/solar_panel.svg +1200 -0
  105. game/static/game/image/decor/farm/solar_panel.svg +86 -0
  106. game/static/game/image/decor/grass/solar_panel.svg +86 -0
  107. game/static/game/image/decor/snow/barn.svg +1788 -0
  108. game/static/game/image/decor/snow/cfc.svg +1050 -147
  109. game/static/game/image/decor/snow/crops.svg +7370 -0
  110. game/static/game/image/decor/snow/hospital.svg +1220 -0
  111. game/static/game/image/decor/snow/house1.svg +971 -0
  112. game/static/game/image/decor/snow/house2.svg +1574 -0
  113. game/static/game/image/decor/snow/school.svg +1071 -0
  114. game/static/game/image/decor/snow/shop.svg +3211 -0
  115. game/static/game/image/decor/snow/solar_panel.svg +173 -0
  116. game/static/game/image/electric_van.svg +448 -0
  117. game/static/game/image/icons/add_house.svg +26 -0
  118. game/static/game/image/icons/delete_house.svg +26 -0
  119. game/static/game/image/icons/description.svg +1 -0
  120. game/static/game/image/icons/hint.svg +1 -0
  121. game/static/game/image/icons/if_else.svg +3 -0
  122. game/static/game/image/icons/python.svg +1 -1
  123. game/static/game/image/if_else_example.png +0 -0
  124. game/static/game/image/pigeon.svg +684 -0
  125. game/static/game/image/python_den_header.svg +19 -0
  126. game/static/game/js/animation.js +84 -28
  127. game/static/game/js/blockly/msg/js/bg.js +52 -1
  128. game/static/game/js/blockly/msg/js/ca.js +52 -1
  129. game/static/game/js/blockly/msg/js/en-gb.js +52 -1
  130. game/static/game/js/blockly/msg/js/en.js +52 -1
  131. game/static/game/js/blockly/msg/js/es.js +52 -1
  132. game/static/game/js/blockly/msg/js/fr.js +52 -1
  133. game/static/game/js/blockly/msg/js/hi.js +52 -1
  134. game/static/game/js/blockly/msg/js/it.js +52 -1
  135. game/static/game/js/blockly/msg/js/pl.js +52 -1
  136. game/static/game/js/blockly/msg/js/pt-br.js +52 -1
  137. game/static/game/js/blockly/msg/js/ru.js +52 -1
  138. game/static/game/js/blockly/msg/js/ur.js +52 -1
  139. game/static/game/js/blocklyCompiler.js +550 -392
  140. game/static/game/js/blocklyControl.js +335 -302
  141. game/static/game/js/blocklyCustomBlocks.js +691 -458
  142. game/static/game/js/blocklyCustomisations.js +3 -1
  143. game/static/game/js/button.js +12 -0
  144. game/static/game/js/cow.js +15 -130
  145. game/static/game/js/drawing.js +313 -201
  146. game/static/game/js/editor.js +23 -0
  147. game/static/game/js/game.js +148 -139
  148. game/static/game/js/jquery.dataTables.min.js +3 -159
  149. game/static/game/js/level_editor.js +823 -448
  150. game/static/game/js/level_moderation.js +33 -2
  151. game/static/game/js/level_selection.js +62 -25
  152. game/static/game/js/loadLanguages.js +21 -0
  153. game/static/game/js/map.js +106 -36
  154. game/static/game/js/model.js +55 -107
  155. game/static/game/js/pathFinder.js +73 -72
  156. game/static/game/js/program.js +184 -193
  157. game/static/game/js/pythonControl.js +14 -1
  158. game/static/game/js/scoreboard.js +0 -37
  159. game/static/game/js/scoreboardSharedLevels.js +48 -0
  160. game/static/game/js/sharing.js +22 -10
  161. game/static/game/js/skulpt/codemirror.js +5 -4
  162. game/static/game/js/skulpt/skulpt-stdlib.js +1 -1
  163. game/static/game/js/sound.js +52 -5
  164. game/static/game/js/van.js +0 -7
  165. game/static/game/raphael_image/characters/top_view/Electric_van.svg +448 -0
  166. game/static/game/raphael_image/characters/top_view/Sleigh.svg +436 -0
  167. game/static/game/raphael_image/decor/city/solar_panel.svg +1200 -0
  168. game/static/game/raphael_image/decor/farm/solar_panel.svg +86 -0
  169. game/static/game/raphael_image/decor/grass/solar_panel.svg +86 -0
  170. game/static/game/raphael_image/decor/snow/barn.svg +1788 -0
  171. game/static/game/raphael_image/decor/snow/cfc.svg +1050 -147
  172. game/static/game/raphael_image/decor/snow/crops.svg +7370 -0
  173. game/static/game/raphael_image/decor/snow/hospital.svg +1220 -0
  174. game/static/game/raphael_image/decor/snow/house1.svg +971 -0
  175. game/static/game/raphael_image/decor/snow/house2.svg +1574 -0
  176. game/static/game/raphael_image/decor/snow/school.svg +1071 -0
  177. game/static/game/raphael_image/decor/snow/shop.svg +3211 -0
  178. game/static/game/raphael_image/decor/snow/solar_panel.svg +173 -0
  179. game/static/game/raphael_image/pigeon.svg +685 -0
  180. game/static/game/raphael_image/sleigh_wreckage.svg +430 -0
  181. game/static/game/sass/game.scss +22 -6
  182. game/static/game/sound/clown_horn.mp3 +0 -0
  183. game/static/game/sound/clown_horn.ogg +0 -0
  184. game/static/game/sound/electric_van_starting.mp3 +0 -0
  185. game/static/game/sound/electric_van_starting.ogg +0 -0
  186. game/static/game/sound/pigeon.mp3 +0 -0
  187. game/static/game/sound/pigeon.ogg +0 -0
  188. game/static/game/sound/sleigh_bells.mp3 +0 -0
  189. game/static/game/sound/sleigh_bells.ogg +0 -0
  190. game/static/game/sound/sleigh_crash.mp3 +0 -0
  191. game/static/game/sound/sleigh_crash.ogg +0 -0
  192. game/templates/game/base.html +35 -15
  193. game/templates/game/basenonav.html +23 -17
  194. game/templates/game/game.html +236 -111
  195. game/templates/game/level_editor.html +353 -275
  196. game/templates/game/level_moderation.html +19 -6
  197. game/templates/game/level_selection.html +75 -62
  198. game/templates/game/python_den_level_selection.html +291 -0
  199. game/templates/game/python_den_worksheet.html +101 -0
  200. game/templates/game/scoreboard.html +88 -65
  201. game/tests/test_level_editor.py +210 -35
  202. game/tests/test_level_moderation.py +6 -20
  203. game/tests/test_level_selection.py +332 -11
  204. game/tests/test_python_den_worksheet.py +85 -0
  205. game/tests/test_scoreboard.py +258 -66
  206. game/tests/utils/level.py +43 -3
  207. game/tests/utils/teacher.py +2 -2
  208. game/theme.py +21 -21
  209. game/urls.py +125 -78
  210. game/views/language_code_conversions.py +90 -0
  211. game/views/level.py +201 -63
  212. game/views/level_editor.py +109 -48
  213. game/views/level_moderation.py +29 -6
  214. game/views/level_selection.py +179 -56
  215. game/views/level_solutions.py +600 -106
  216. game/views/scoreboard.py +181 -66
  217. game/views/worksheet.py +25 -0
  218. rapid_router-7.6.8.dist-info/METADATA +174 -0
  219. {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/RECORD +222 -242
  220. {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/WHEEL +1 -1
  221. rapid_router-7.6.8.dist-info/licenses/LICENSE.md +3 -0
  222. example_project/example_project/__init__.py +0 -1
  223. example_project/example_project/settings.py +0 -54
  224. example_project/example_project/urls.py +0 -16
  225. example_project/manage.py +0 -10
  226. game/autoconfig.py +0 -59
  227. game/csp_config.py +0 -23
  228. game/locale/ar_SA/LC_MESSAGES/django.mo +0 -0
  229. game/locale/ar_SA/LC_MESSAGES/django.po +0 -405
  230. game/locale/ar_SA/LC_MESSAGES/djangojs.mo +0 -0
  231. game/locale/ar_SA/LC_MESSAGES/djangojs.po +0 -743
  232. game/locale/bg_BG/LC_MESSAGES/django.mo +0 -0
  233. game/locale/bg_BG/LC_MESSAGES/django.po +0 -405
  234. game/locale/bg_BG/LC_MESSAGES/djangojs.mo +0 -0
  235. game/locale/bg_BG/LC_MESSAGES/djangojs.po +0 -739
  236. game/locale/ca_ES/LC_MESSAGES/django.mo +0 -0
  237. game/locale/ca_ES/LC_MESSAGES/django.po +0 -405
  238. game/locale/ca_ES/LC_MESSAGES/djangojs.mo +0 -0
  239. game/locale/ca_ES/LC_MESSAGES/djangojs.po +0 -740
  240. game/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  241. game/locale/cs_CZ/LC_MESSAGES/django.po +0 -405
  242. game/locale/cs_CZ/LC_MESSAGES/djangojs.mo +0 -0
  243. game/locale/cs_CZ/LC_MESSAGES/djangojs.po +0 -741
  244. game/locale/cy_GB/LC_MESSAGES/django.mo +0 -0
  245. game/locale/cy_GB/LC_MESSAGES/django.po +0 -405
  246. game/locale/cy_GB/LC_MESSAGES/djangojs.mo +0 -0
  247. game/locale/cy_GB/LC_MESSAGES/djangojs.po +0 -743
  248. game/locale/de_DE/LC_MESSAGES/django.mo +0 -0
  249. game/locale/de_DE/LC_MESSAGES/django.po +0 -405
  250. game/locale/de_DE/LC_MESSAGES/djangojs.mo +0 -0
  251. game/locale/de_DE/LC_MESSAGES/djangojs.po +0 -739
  252. game/locale/el_GR/LC_MESSAGES/django.mo +0 -0
  253. game/locale/el_GR/LC_MESSAGES/django.po +0 -405
  254. game/locale/el_GR/LC_MESSAGES/djangojs.mo +0 -0
  255. game/locale/el_GR/LC_MESSAGES/djangojs.po +0 -739
  256. game/locale/en_GB/LC_MESSAGES/django.mo +0 -0
  257. game/locale/en_GB/LC_MESSAGES/django.po +0 -405
  258. game/locale/en_GB/LC_MESSAGES/djangojs.mo +0 -0
  259. game/locale/en_GB/LC_MESSAGES/djangojs.po +0 -739
  260. game/locale/es_ES/LC_MESSAGES/django.mo +0 -0
  261. game/locale/es_ES/LC_MESSAGES/django.po +0 -405
  262. game/locale/es_ES/LC_MESSAGES/djangojs.mo +0 -0
  263. game/locale/es_ES/LC_MESSAGES/djangojs.po +0 -739
  264. game/locale/fi_FI/LC_MESSAGES/django.mo +0 -0
  265. game/locale/fi_FI/LC_MESSAGES/django.po +0 -405
  266. game/locale/fi_FI/LC_MESSAGES/djangojs.mo +0 -0
  267. game/locale/fi_FI/LC_MESSAGES/djangojs.po +0 -739
  268. game/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
  269. game/locale/fr_FR/LC_MESSAGES/django.po +0 -405
  270. game/locale/fr_FR/LC_MESSAGES/djangojs.mo +0 -0
  271. game/locale/fr_FR/LC_MESSAGES/djangojs.po +0 -739
  272. game/locale/gu_IN/LC_MESSAGES/django.mo +0 -0
  273. game/locale/gu_IN/LC_MESSAGES/django.po +0 -405
  274. game/locale/gu_IN/LC_MESSAGES/djangojs.mo +0 -0
  275. game/locale/gu_IN/LC_MESSAGES/djangojs.po +0 -739
  276. game/locale/hi_IN/LC_MESSAGES/django.mo +0 -0
  277. game/locale/hi_IN/LC_MESSAGES/django.po +0 -405
  278. game/locale/hi_IN/LC_MESSAGES/djangojs.mo +0 -0
  279. game/locale/hi_IN/LC_MESSAGES/djangojs.po +0 -739
  280. game/locale/id_ID/LC_MESSAGES/django.mo +0 -0
  281. game/locale/id_ID/LC_MESSAGES/django.po +0 -405
  282. game/locale/id_ID/LC_MESSAGES/djangojs.mo +0 -0
  283. game/locale/id_ID/LC_MESSAGES/djangojs.po +0 -738
  284. game/locale/it_IT/LC_MESSAGES/django.mo +0 -0
  285. game/locale/it_IT/LC_MESSAGES/django.po +0 -405
  286. game/locale/it_IT/LC_MESSAGES/djangojs.mo +0 -0
  287. game/locale/it_IT/LC_MESSAGES/djangojs.po +0 -739
  288. game/locale/ja_JP/LC_MESSAGES/django.mo +0 -0
  289. game/locale/ja_JP/LC_MESSAGES/django.po +0 -405
  290. game/locale/ja_JP/LC_MESSAGES/djangojs.mo +0 -0
  291. game/locale/ja_JP/LC_MESSAGES/djangojs.po +0 -738
  292. game/locale/lol_US/LC_MESSAGES/django.mo +0 -0
  293. game/locale/lol_US/LC_MESSAGES/django.po +0 -405
  294. game/locale/lol_US/LC_MESSAGES/djangojs.mo +0 -0
  295. game/locale/lol_US/LC_MESSAGES/djangojs.po +0 -739
  296. game/locale/nb_NO/LC_MESSAGES/django.mo +0 -0
  297. game/locale/nb_NO/LC_MESSAGES/django.po +0 -405
  298. game/locale/nb_NO/LC_MESSAGES/djangojs.mo +0 -0
  299. game/locale/nb_NO/LC_MESSAGES/djangojs.po +0 -739
  300. game/locale/nl_NL/LC_MESSAGES/django.mo +0 -0
  301. game/locale/nl_NL/LC_MESSAGES/django.po +0 -405
  302. game/locale/nl_NL/LC_MESSAGES/djangojs.mo +0 -0
  303. game/locale/nl_NL/LC_MESSAGES/djangojs.po +0 -739
  304. game/locale/pl_PL/LC_MESSAGES/django.mo +0 -0
  305. game/locale/pl_PL/LC_MESSAGES/django.po +0 -405
  306. game/locale/pl_PL/LC_MESSAGES/djangojs.mo +0 -0
  307. game/locale/pl_PL/LC_MESSAGES/djangojs.po +0 -741
  308. game/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
  309. game/locale/pt_BR/LC_MESSAGES/django.po +0 -405
  310. game/locale/pt_BR/LC_MESSAGES/djangojs.mo +0 -0
  311. game/locale/pt_BR/LC_MESSAGES/djangojs.po +0 -739
  312. game/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
  313. game/locale/pt_PT/LC_MESSAGES/django.po +0 -405
  314. game/locale/pt_PT/LC_MESSAGES/djangojs.mo +0 -0
  315. game/locale/pt_PT/LC_MESSAGES/djangojs.po +0 -739
  316. game/locale/ro_RO/LC_MESSAGES/django.mo +0 -0
  317. game/locale/ro_RO/LC_MESSAGES/django.po +0 -405
  318. game/locale/ro_RO/LC_MESSAGES/djangojs.mo +0 -0
  319. game/locale/ro_RO/LC_MESSAGES/djangojs.po +0 -740
  320. game/locale/ru_RU/LC_MESSAGES/django.mo +0 -0
  321. game/locale/ru_RU/LC_MESSAGES/django.po +0 -405
  322. game/locale/ru_RU/LC_MESSAGES/djangojs.mo +0 -0
  323. game/locale/ru_RU/LC_MESSAGES/djangojs.po +0 -741
  324. game/locale/sv_SE/LC_MESSAGES/django.mo +0 -0
  325. game/locale/sv_SE/LC_MESSAGES/django.po +0 -405
  326. game/locale/sv_SE/LC_MESSAGES/djangojs.mo +0 -0
  327. game/locale/sv_SE/LC_MESSAGES/djangojs.po +0 -739
  328. game/locale/tl_PH/LC_MESSAGES/django.mo +0 -0
  329. game/locale/tl_PH/LC_MESSAGES/django.po +0 -405
  330. game/locale/tl_PH/LC_MESSAGES/djangojs.mo +0 -0
  331. game/locale/tl_PH/LC_MESSAGES/djangojs.po +0 -739
  332. game/locale/tlh_AA/LC_MESSAGES/django.mo +0 -0
  333. game/locale/tlh_AA/LC_MESSAGES/django.po +0 -405
  334. game/locale/tlh_AA/LC_MESSAGES/djangojs.mo +0 -0
  335. game/locale/tlh_AA/LC_MESSAGES/djangojs.po +0 -739
  336. game/locale/tr_TR/LC_MESSAGES/django.mo +0 -0
  337. game/locale/tr_TR/LC_MESSAGES/django.po +0 -405
  338. game/locale/tr_TR/LC_MESSAGES/djangojs.mo +0 -0
  339. game/locale/tr_TR/LC_MESSAGES/djangojs.po +0 -740
  340. game/locale/ur_IN/LC_MESSAGES/django.mo +0 -0
  341. game/locale/ur_IN/LC_MESSAGES/django.po +0 -405
  342. game/locale/ur_IN/LC_MESSAGES/djangojs.mo +0 -0
  343. game/locale/ur_IN/LC_MESSAGES/djangojs.po +0 -739
  344. game/locale/ur_PK/LC_MESSAGES/django.mo +0 -0
  345. game/locale/ur_PK/LC_MESSAGES/django.po +0 -405
  346. game/locale/ur_PK/LC_MESSAGES/djangojs.mo +0 -0
  347. game/locale/ur_PK/LC_MESSAGES/djangojs.po +0 -739
  348. game/static/game/image/actions/go.svg +0 -18
  349. game/static/game/image/icons/destination.svg +0 -9
  350. game/static/game/js/pqselect.min.js +0 -9
  351. game/static/game/js/widget-scroller.js +0 -906
  352. rapid_router-5.4.1.dist-info/LICENSE.md +0 -577
  353. rapid_router-5.4.1.dist-info/METADATA +0 -24
  354. {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/top_level.txt +0 -0
@@ -1,740 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: code-for-life\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2022-08-03 16:53+0000\n"
6
- "PO-Revision-Date: 2022-08-03 16:53\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Catalan\n"
9
- "Language: ca_ES\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
- "X-Crowdin-Project: code-for-life\n"
15
- "X-Crowdin-Project-ID: 163289\n"
16
- "X-Crowdin-Language: ca\n"
17
- "X-Crowdin-File: /game/locale/en_GB/LC_MESSAGES/djangojs.po\n"
18
- "X-Crowdin-File-ID: 23\n"
19
-
20
- #: static/game/js/animation.js:256
21
- msgid "You win!"
22
- msgstr "Has guanyat!"
23
-
24
- #: static/game/js/animation.js:260
25
- msgid "Route score: "
26
- msgstr "Puntuació de la ruta: "
27
-
28
- #: static/game/js/animation.js:265
29
- msgid "Algorithm score: "
30
- msgstr "Puntuació de l'algorisme: "
31
-
32
- #: static/game/js/animation.js:271
33
- msgid "Your total score: %(totalScore)s/%(maxScore)s"
34
- msgstr "Puntuació total: %(totalScore)s/%(maxScore)s"
35
-
36
- #: static/game/js/animation.js:284
37
- msgid "Looks like you've got a route sorted using Blockly.<br><br>Now go to the Python tab and see if you can do the same in Python! "
38
- msgstr "Sembla que has aconseguit construir una ruta amb Blockly.<br><br>Ara vés a la pestanya Python i mira si ets capaç de fer el mateix amb Python! "
39
-
40
- #: static/game/js/animation.js:286 static/game/js/drawing.js:1055
41
- msgid "Close"
42
- msgstr "Tanca"
43
-
44
- #: static/game/js/animation.js:290
45
- msgid "Next Level"
46
- msgstr "Següent nivell"
47
-
48
- #: static/game/js/animation.js:301
49
- msgid "Well done, you've completed the episode! <br> Are you ready for the next challenge? "
50
- msgstr "Ben fet, has acabat el capítol! <br> Estàs preparat per al proper repte? "
51
-
52
- #: static/game/js/animation.js:303
53
- msgid "Or try one of this episode's random levels!"
54
- msgstr "O prova un dels nivells a l'atzar d'aquest capítol!"
55
-
56
- #: static/game/js/animation.js:306
57
- msgid "Next episode"
58
- msgstr "Següent episodi"
59
-
60
- #: static/game/js/animation.js:308
61
- msgid "Random level"
62
- msgstr "Nivell a l'atzar"
63
-
64
- #: static/game/js/animation.js:310 static/game/js/animation.js:314
65
- #: static/game/js/animation.js:318
66
- msgid "Home"
67
- msgstr "Inici"
68
-
69
- #: static/game/js/animation.js:312
70
- msgid "That's all we've got for you right now. Carry on the fun by creating your own challenges."
71
- msgstr "Això és tot per ara. Segueix divertint-te creant \n"
72
- "els teus propis reptes."
73
-
74
- #: static/game/js/animation.js:313
75
- msgid "Create your own map!"
76
- msgstr "Crea el teu propi mapa!"
77
-
78
- #: static/game/js/animation.js:316
79
- msgid "Do you want to try another random level?"
80
- msgstr "Vols provar un altre nivell a l'atzar?"
81
-
82
- #: static/game/js/animation.js:317
83
- msgid "Have more fun!"
84
- msgstr "Segueix divertint-te!"
85
-
86
- #: static/game/js/animation.js:325 static/game/js/game.js:156
87
- #: static/game/js/game.js:166
88
- msgid "Oh dear!"
89
- msgstr "Oh!"
90
-
91
- #: static/game/js/animation.js:334
92
- msgid "Are you stuck? Do you need help?"
93
- msgstr "Estàs bloquejat? Necessites ajuda?"
94
-
95
- #: static/game/js/blocklyCompiler.js:30 static/game/js/blocklyCompiler.js:35
96
- msgid "Perhaps try looking at your 'define' blocks?"
97
- msgstr "Potser pots mirar els blocs 'defineix'?"
98
-
99
- #: static/game/js/blocklyCompiler.js:41
100
- msgid "Perhaps try checking the names of your 'define' blocks?"
101
- msgstr "Potser pots comprovar els noms dels blocs 'defineix'?"
102
-
103
- #: static/game/js/blocklyCompiler.js:56
104
- msgid "Perhaps try looking at your 'event' blocks?"
105
- msgstr "Potser pots mirar els blocs 'esdeveniment'?"
106
-
107
- #: static/game/js/blocklyCompiler.js:85 static/game/js/blocklyCompiler.js:127
108
- #: static/game/js/blocklyCompiler.js:481
109
- msgid "Perhaps try checking the names in your 'call' blocks?"
110
- msgstr "Potser pots comprovar els noms dels blocs 'crida'?"
111
-
112
- #: static/game/js/blocklyCompiler.js:97 static/game/js/blocklyCompiler.js:105
113
- #: static/game/js/blocklyCompiler.js:113 static/game/js/blocklyCompiler.js:119
114
- #: static/game/js/blocklyCompiler.js:138 static/game/js/blocklyCompiler.js:149
115
- #: static/game/js/blocklyCompiler.js:158 static/game/js/blocklyCompiler.js:390
116
- #: static/game/js/blocklyCompiler.js:398 static/game/js/blocklyCompiler.js:406
117
- #: static/game/js/blocklyCompiler.js:412 static/game/js/blocklyCompiler.js:420
118
- #: static/game/js/blocklyCompiler.js:431 static/game/js/blocklyCompiler.js:440
119
- msgid "Perhaps try looking at your 'repeat' blocks?"
120
- msgstr "Potser pots mirar els blocs 'repeteix'?"
121
-
122
- #: static/game/js/blocklyCompiler.js:193 static/game/js/blocklyCompiler.js:457
123
- msgid "Perhaps try looking at your 'if' blocks?"
124
- msgstr "Potser pots mirar els blocs 'si'?"
125
-
126
- #: static/game/js/blocklyControl.js:45
127
- msgid "Your program doesn't look quite right..."
128
- msgstr "El teu programa sembla que no està bé del tot..."
129
-
130
- #: static/game/js/blocklyControl.js:96
131
- msgid "Loading workspace"
132
- msgstr "Carregant espai de treball"
133
-
134
- #: static/game/js/blocklyControl.js:98
135
- msgid "Sorry, this workspace has blocks in it that aren't allowed in this level!"
136
- msgstr "Disculpa, aquest espai de treball té blocs que no estan permesos en aquest nivell!"
137
-
138
- #: static/game/js/blocklyCustomBlocks.js:19
139
- msgid "Start"
140
- msgstr "Comença"
141
-
142
- #: static/game/js/blocklyCustomBlocks.js:24
143
- msgid "The beginning of the program"
144
- msgstr "Començament del programa"
145
-
146
- #: static/game/js/blocklyCustomBlocks.js:38
147
- msgid "move forwards"
148
- msgstr "mou endavant"
149
-
150
- #: static/game/js/blocklyCustomBlocks.js:44
151
- msgid "Move the van forwards"
152
- msgstr "Mou endavant la furgoneta"
153
-
154
- #: static/game/js/blocklyCustomBlocks.js:53
155
- msgid "turn left"
156
- msgstr "gira a l'esquerra"
157
-
158
- #: static/game/js/blocklyCustomBlocks.js:62
159
- msgid "Turn the van left"
160
- msgstr "Fes girar la furgoneta a l'esquerra"
161
-
162
- #: static/game/js/blocklyCustomBlocks.js:71
163
- msgid "turn right"
164
- msgstr "gira a la dreta"
165
-
166
- #: static/game/js/blocklyCustomBlocks.js:80
167
- msgid "Turn the van right"
168
- msgstr "Fes girar la furgoneta a la dreta"
169
-
170
- #: static/game/js/blocklyCustomBlocks.js:89
171
- msgid "turn around"
172
- msgstr "fes la volta"
173
-
174
- #: static/game/js/blocklyCustomBlocks.js:99
175
- msgid "Turn the van around"
176
- msgstr "Fes la volta amb la furgoneta"
177
-
178
- #: static/game/js/blocklyCustomBlocks.js:108
179
- msgid "wait"
180
- msgstr "espera"
181
-
182
- #: static/game/js/blocklyCustomBlocks.js:117
183
- msgid "Keep the van stationary"
184
- msgstr "Deixa la furgoneta parada"
185
-
186
- #: static/game/js/blocklyCustomBlocks.js:126
187
- msgid "deliver"
188
- msgstr "entrega"
189
-
190
- #: static/game/js/blocklyCustomBlocks.js:135
191
- msgid "Deliver the goods from the van"
192
- msgstr "Entrega els productes de la furgoneta"
193
-
194
- #: static/game/js/blocklyCustomBlocks.js:144
195
- msgid "puff up"
196
- msgstr "infla"
197
-
198
- #: static/game/js/blocklyCustomBlocks.js:153
199
- msgid "Puff up the van to scare away the cows"
200
- msgstr "Infla la furgoneta per espantar les vaques"
201
-
202
- #: static/game/js/blocklyCustomBlocks.js:162
203
- msgid "sound horn"
204
- msgstr "fes sonar el clàxon"
205
-
206
- #: static/game/js/blocklyCustomBlocks.js:171
207
- msgid "Sound the horn to scare away the cows"
208
- msgstr "Fés sonar el clàxon per espantar les vaques"
209
-
210
- #: static/game/js/blocklyCustomBlocks.js:182
211
- msgid "road exists forward"
212
- msgstr "existeix un camí endavant"
213
-
214
- #: static/game/js/blocklyCustomBlocks.js:183
215
- msgid "road exists left"
216
- msgstr "existeix un camí a l'esquerra"
217
-
218
- #: static/game/js/blocklyCustomBlocks.js:184
219
- msgid "road exists right"
220
- msgstr "existeix un camí a la dreta"
221
-
222
- #: static/game/js/blocklyCustomBlocks.js:198
223
- msgid "traffic light red"
224
- msgstr "semàfor vermell"
225
-
226
- #: static/game/js/blocklyCustomBlocks.js:199
227
- msgid "traffic light green"
228
- msgstr "semàfor verd"
229
-
230
- #: static/game/js/blocklyCustomBlocks.js:215
231
- msgid "is dead end"
232
- msgstr "atzucac"
233
-
234
- #: static/game/js/blocklyCustomBlocks.js:227
235
- msgid "at destination"
236
- msgstr "a destí"
237
-
238
- #: static/game/js/blocklyCustomBlocks.js:244
239
- #: static/game/js/blocklyCustomBlocks.js:250
240
- msgid "Call"
241
- msgstr "Crida"
242
-
243
- #: static/game/js/blocklyCustomBlocks.js:261
244
- msgid "Define"
245
- msgstr "Defineix"
246
-
247
- #: static/game/js/blocklyCustomBlocks.js:265
248
- #: static/game/js/blocklyCustomBlocks.js:293
249
- msgid "Do"
250
- msgstr "Fer"
251
-
252
- #: static/game/js/blocklyCustomBlocks.js:266
253
- msgid "Declares the procedure"
254
- msgstr "Declara el procediment"
255
-
256
- #: static/game/js/blocklyCustomBlocks.js:280
257
- msgid "white"
258
- msgstr "blanc"
259
-
260
- #: static/game/js/blocklyCustomBlocks.js:280
261
- msgid "brown"
262
- msgstr "marró"
263
-
264
- #: static/game/js/blocklyCustomBlocks.js:285
265
- msgid "On "
266
- msgstr "Quan "
267
-
268
- #: static/game/js/blocklyCustomBlocks.js:294
269
- msgid "Declares the event handler"
270
- msgstr "Declara el gestor d'events"
271
-
272
- #: static/game/js/blocklyCustomBlocks.js:309
273
- msgid "repeat while"
274
- msgstr "repeteix mentre"
275
-
276
- #: static/game/js/blocklyCustomBlocks.js:312
277
- #: static/game/js/blocklyCustomBlocks.js:328
278
- #: static/game/js/blocklyMessages.js:11 static/game/js/blocklyMessages.js:15
279
- msgid "do"
280
- msgstr "fer"
281
-
282
- #: static/game/js/blocklyCustomBlocks.js:315
283
- msgid "While a value is true, do some statements"
284
- msgstr "Mentre un valor sigui cert, fes algunes instruccions"
285
-
286
- #: static/game/js/blocklyCustomBlocks.js:325
287
- msgid "repeat until"
288
- msgstr "repeteix fins"
289
-
290
- #: static/game/js/blocklyCustomBlocks.js:331
291
- msgid "Until a value is true, do some statements"
292
- msgstr "Fins que un valor sigui cert, fes algunes instruccions"
293
-
294
- #: static/game/js/blocklyMessages.js:4
295
- msgid "If a value is true, then do some statements."
296
- msgstr "Si un valor és cert, llavors fes algunes instruccions."
297
-
298
- #: static/game/js/blocklyMessages.js:5
299
- msgid "If a value is true, then do the first block of statements. Otherwise, do the second block of statements."
300
- msgstr "Si un valor és cert, llavors fes el primer bloc d'instruccions. Sinó, fes el segon bloc d'instruccions."
301
-
302
- #: static/game/js/blocklyMessages.js:6
303
- msgid "If the first value is true, then do the first block of statements. Otherwise, if the second value is true, do the second block of statements."
304
- msgstr "Si el primer valor és cert, llavors fes el primer bloc d'instruccions. Sinó, si el segon valor és cert, fes el segon bloc d'instruccions."
305
-
306
- #: static/game/js/blocklyMessages.js:7
307
- msgid "If the first value is true, then do the first block of statements. Otherwise, if the second value is true, do the second block of statements. If none of the values are true, do the last block of statements."
308
- msgstr "Si el pimer valor és cert, llavors fes el primer bloc d'instruccions. Sinó, si el segon valor és cert, fes el segon bloc d'instruccions. Si cap dels valors és cert, fes l'últim bloc d'instruccions."
309
-
310
- #: static/game/js/blocklyMessages.js:8
311
- msgid "if"
312
- msgstr "si"
313
-
314
- #: static/game/js/blocklyMessages.js:9
315
- msgid "else if"
316
- msgstr "sino si"
317
-
318
- #: static/game/js/blocklyMessages.js:10
319
- msgid "else"
320
- msgstr "si no"
321
-
322
- #: static/game/js/blocklyMessages.js:14
323
- msgid "repeat %(number_of_times)s times"
324
- msgstr "repeteix %(number_of_times)s vegades"
325
-
326
- #: static/game/js/blocklyMessages.js:16
327
- msgid "Do some statements several times."
328
- msgstr "Fes algunes instruccions diverses vegades."
329
-
330
- #: static/game/js/button.js:19
331
- msgid "Try again"
332
- msgstr "Torna-ho a provar"
333
-
334
- #: static/game/js/drawing.js:1101
335
- msgid "Error"
336
- msgstr "Error"
337
-
338
- #: static/game/js/drawing.js:1104
339
- msgid "Could not connect to server. Your internet might not be working properly."
340
- msgstr "No es pot conectar amb el servidor. La teva connexió pot no estar funcionant adequadament."
341
-
342
- #: static/game/js/game.js:83
343
- msgid "You are not logged in. Your progress won't be saved."
344
- msgstr "No has iniciat sessió. El teu progrés no es desarà."
345
-
346
- #: static/game/js/game.js:87
347
- msgid "Try solving this one..."
348
- msgstr "Intenta resoldre aquest..."
349
-
350
- #: static/game/js/game.js:91
351
- msgid "Night Level %(level_name)s"
352
- msgstr "Nivell nocturn %(level_name)s"
353
-
354
- #: static/game/js/game.js:93
355
- msgid "Level %(level_name)s"
356
- msgstr "Nivell %(level_name)s"
357
-
358
- #: static/game/js/game.js:107
359
- msgid "In Night Mode you can only see a very short distance. We've given you more blocks to help you find your way!"
360
- msgstr "En el Mode Nocturn només pots veure una distància molt curta. T'hem donat més blocs per ajudar-te a trobar el camí!"
361
-
362
- #: static/game/js/game.js:121 static/game/js/game.js:609
363
- #: static/game/js/level_editor.js:861
364
- msgid "Play"
365
- msgstr "Juga"
366
-
367
- #: static/game/js/game.js:614
368
- msgid "Pause"
369
- msgstr "Pausa"
370
-
371
- #: static/game/js/game.js:619
372
- msgid "Resume"
373
- msgstr "Continua"
374
-
375
- #: static/game/js/game.js:628
376
- msgid "Fast"
377
- msgstr "Ràpid"
378
-
379
- #: static/game/js/game.js:633
380
- msgid "Slow"
381
- msgstr "Lent"
382
-
383
- #: static/game/js/game.js:661
384
- msgid "Unmute"
385
- msgstr "Deixa de silenciar"
386
-
387
- #: static/game/js/game.js:666
388
- msgid "Mute"
389
- msgstr "Silencia"
390
-
391
- #: static/game/js/game.js:807
392
- msgid "Run the following commands on the van object %(var_name)s, e.g. %(example)s"
393
- msgstr "Executa les següents instruccions a l'objecte furgoneta %(var_name)s, ex: %(example)s"
394
-
395
- #: static/game/js/game.js:816
396
- msgid "Movement"
397
- msgstr "Moviment"
398
-
399
- #: static/game/js/game.js:826
400
- msgid "Position"
401
- msgstr "Posició"
402
-
403
- #: static/game/js/game.js:835
404
- msgid "where %(arg_name)s is '%(red_color)s' or '%(green_color)s'"
405
- msgstr "on %(arg_name)s és %(red_color)s o %(green_color)s"
406
-
407
- #: static/game/js/game.js:850
408
- msgid "where %(arg_name)s is '%(forward)s', '%(left)s', or '%(right)s'"
409
- msgstr "on %(arg_name)s és '%(forward)s', '%(left)s', o '%(right)s'"
410
-
411
- #: static/game/js/game.js:861
412
- msgid "Python Commands"
413
- msgstr "Instruccions Python"
414
-
415
- #: static/game/js/level_editor.js:50 static/game/js/level_editor.js:2450
416
- msgid "Add road"
417
- msgstr "Afegir carretera"
418
-
419
- #: static/game/js/level_editor.js:51 static/game/js/level_editor.js:818
420
- msgid "Delete road"
421
- msgstr "Esborrar carretera"
422
-
423
- #: static/game/js/level_editor.js:52 static/game/js/level_editor.js:809
424
- #: static/game/js/level_editor.js:2468
425
- msgid "Mark end"
426
- msgstr "Marca el final"
427
-
428
- #: static/game/js/level_editor.js:53 static/game/js/level_editor.js:807
429
- #: static/game/js/level_editor.js:2466
430
- msgid "Mark start"
431
- msgstr "Marca el començament"
432
-
433
- #: static/game/js/level_editor.js:341
434
- msgid "White"
435
- msgstr "Blanc"
436
-
437
- #: static/game/js/level_editor.js:343
438
- msgid "Brown"
439
- msgstr "Marró"
440
-
441
- #: static/game/js/level_editor.js:694 static/game/js/level_editor.js:2454
442
- #: static/game/js/level_editor.js:2472
443
- msgid "Oh no!"
444
- msgstr "Oh no!"
445
-
446
- #: static/game/js/level_editor.js:694
447
- msgid "You used some invalid characters."
448
- msgstr "Has fet servir alguns caràcters invàlids."
449
-
450
- #: static/game/js/level_editor.js:695
451
- msgid "Try saving your level again using only letters and numbers."
452
- msgstr "Intenta desar el teu nivell una altra vegada fent servir només lletres i números."
453
-
454
- #: static/game/js/level_editor.js:725
455
- msgid "Overwriting"
456
- msgstr "Sobreescrivint"
457
-
458
- #: static/game/js/level_editor.js:725
459
- msgid "Warning"
460
- msgstr "Advertència"
461
-
462
- #: static/game/js/level_editor.js:726
463
- msgid "Level %(level_name)s already exists. Are you sure you want to overwrite it?"
464
- msgstr "El nivell %(level_name)s ja existeix. Estàs segur de voler-lo sobreescriure?"
465
-
466
- #: static/game/js/level_editor.js:793
467
- msgid "To get started, draw a road."
468
- msgstr "Per començar, dibuixa una carretera."
469
-
470
- #: static/game/js/level_editor.js:794
471
- msgid "Click on the square you want the road to start from. Then, without letting go of the mouse button, drag to the square you’d like the road to end on. Do this as many times as you like to add new sections of road."
472
- msgstr "Fes clic a la casella on vols que comenci la carretera. Llavors, sense deixar anar el botó del ratolí, arrossega el quadrat fins allà on vulguis que acabi la carretera. Fes-ho tantes vegades com seccions vulguis afegir a la carretera."
473
-
474
- #: static/game/js/level_editor.js:798
475
- msgid "In %(map_icon)s%(map_label)s menu, click %(mark_start_icon)s%(mark_start_label)s and select a square for your road to start from. The starting point can only be placed on dead ends. You need a road first before adding a starting point. Make sure you use %(mark_end_icon)s%(mark_end_label)s to select a final destination. Setting a fuel level means the route will need to be short enough for the fuel not to run out."
476
- msgstr "Al menú %(map_icon)s%(map_label)s, clica a %(mark_start_icon)s%(mark_start_label)s i selecciona una casella des d'on començar la carretera. El punt inicial només es pot posar en un extrem. Necessites una carretera abans d'afegir un punt inicial. Assegura't de fer servir %(mark_end_icon)s%(mark_end_label)s per triar la destinació final. Definir un nivell de combustible requreix que la carretera sigui prou curta com per que no et quedis sense combustible."
477
-
478
- #: static/game/js/level_editor.js:805 static/game/js/level_editor.js:2448
479
- #: static/game/js/level_editor.js:2464
480
- msgid "Map"
481
- msgstr "Mapa"
482
-
483
- #: static/game/js/level_editor.js:814
484
- msgid "To remove road, click the %(delete_road_icon)s%(delete_road_label)s button and select a section to get rid of."
485
- msgstr "Per a eliminar carretera, clica el botó %(delete_road_icon)s%(delete_road_label)s i selecciona una secció per a ser eliminada."
486
-
487
- #: static/game/js/level_editor.js:823
488
- msgid "Click %(random_icon)s%(random_label)s if you want the computer to create a random route for you."
489
- msgstr "Clica %(random_icon)s%(random_label)s si vols que l'ordinador et crei una ruta aleatoria."
490
-
491
- #: static/game/js/level_editor.js:825
492
- msgid "Random"
493
- msgstr "Aleatori"
494
-
495
- #: static/game/js/level_editor.js:830
496
- msgid "Select %(scenery_icon)s%(scenery_label)s and choose trees, bushes and more to place around your road. These will show in the top left corner - drag them into place. Delete items by dragging them into the bin in the bottom right. To rotate a traffic light, simply double click on it. Remember, using the traffic lights is not covered until level 44."
497
- msgstr "Selecciona %(scenery_icon)s%(scenery_label)s i escull arbres, arbusts i més per a colocar-los al voltant de la carretera. Els elements apareixeran a la cantonada superior esquerra - arrosegal's on vulguis. Esborra elements arrosegant-los al cubell a la part inferior dreta. Per a rotar un semàfor, fes-hi doble click. Recorda, l'ús de semàfors no es cobreix fins al nivell 44."
498
-
499
- #: static/game/js/level_editor.js:836
500
- msgid "Scenery"
501
- msgstr "Paisatge"
502
-
503
- #: static/game/js/level_editor.js:841
504
- msgid "Choose a character to play with from the %(character_icon)s%(character_label)s menu."
505
- msgstr "Escull un personatge per jugar des del menú %(character_icon)s%(character_label)s."
506
-
507
- #: static/game/js/level_editor.js:843
508
- msgid "Character"
509
- msgstr "Personatge"
510
-
511
- #: static/game/js/level_editor.js:848
512
- msgid "Select which blocks of code you want to be used to create a route for your character from the %(blocks_icon)s%(blocks_label)s menu."
513
- msgstr "Selecciona quins blocs de codi vols emprar per crear la teva ruta per al teu personatge des del menú %(blocks_icon)s%(blocks_label)s."
514
-
515
- #: static/game/js/level_editor.js:852
516
- msgid "Blocks"
517
- msgstr "Blocs"
518
-
519
- #: static/game/js/level_editor.js:857
520
- msgid "When you're ready click %(play_icon)s%(play_label)s, or %(save_icon)s%(save_label)s your road or %(share_icon)s%(share_label)s it with a friend. Don't forget to choose a good name for it!"
521
- msgstr "Quan estiguis a punt, clica %(play_icon)s%(play_label)s, o %(save_icon)s%(save_label)s la teva carretera o %(share_icon)s%(share_label)s amb un amic. No t'oblidis de posar-li un bon nom!"
522
-
523
- #: static/game/js/level_editor.js:863
524
- msgid "Save"
525
- msgstr "Desa"
526
-
527
- #: static/game/js/level_editor.js:865
528
- msgid "Share"
529
- msgstr "Compartir"
530
-
531
- #: static/game/js/level_editor.js:870
532
- msgid "%(quit_icon)s%(quit_label)s will take you back to the Rapid Router homepage."
533
- msgstr "%(quit_icon)s%(quit_label)s et portarà altre cop a la pàgina de Rapid Router."
534
-
535
- #: static/game/js/level_editor.js:873
536
- msgid "Quit"
537
- msgstr "Surt"
538
-
539
- #: static/game/js/level_editor.js:955 static/game/js/level_editor.js:993
540
- msgid "Group %(cow_group)s"
541
- msgstr "Agrupa %(cow_group)s"
542
-
543
- #: static/game/js/level_editor.js:2444
544
- msgid "In %(map_icon)s%(map_label)s menu, click on %(add_road_icon)s%(add_road_label)s. Draw a road by clicking on a square then dragging to another square."
545
- msgstr "Al menú %(map_icon)s%(map_label)s, fes clic a %(add_road_icon)s%(add_road_label)s. Dibuixa una carretera fent clic a una casella i arrossegant fins a una altra."
546
-
547
- #: static/game/js/level_editor.js:2454
548
- msgid "You forgot to create a road."
549
- msgstr "T'has oblidat de crear una carretera."
550
-
551
- #: static/game/js/level_editor.js:2460
552
- msgid "In %(map_icon)s %(map_label)s menu, click on %(mark_start_icon)%(mark_start_label) or %(mark_end_icon)s%(mark_end_label)s then select the square where you want the road to start or end."
553
- msgstr "Al menú %(map_icon)s %(map_label)s, fes clic a %(mark_start_icon)%(mark_start_label) o %(mark_end_icon)s%(mark_end_label)s i selecciona la casella on vols que la carretera comenci o acabi."
554
-
555
- #: static/game/js/level_editor.js:2472
556
- msgid "You forgot to mark the start and end points."
557
- msgstr "T'has oblidat de marcar els punts d'inici i final."
558
-
559
- #: static/game/js/level_editor.js:2478 static/game/js/level_editor.js:2496
560
- msgid "Something is wrong..."
561
- msgstr "Alguna cosa està malament..."
562
-
563
- #: static/game/js/level_editor.js:2479
564
- msgid "There is no way to get from the start to the destination."
565
- msgstr "No hi ha manera d'arribar des de l'inici a la destinació."
566
-
567
- #: static/game/js/level_editor.js:2480
568
- msgid "Edit your level to allow the driver to get to the end."
569
- msgstr "Edita el teu nivell per permetre al conductor arribar al final."
570
-
571
- #: static/game/js/level_editor.js:2488
572
- msgid "Go to %(code_icon)s%(code_label)s and select some to use. Remember to include the move and turn commands!"
573
- msgstr "Ves a %(code_icon)s%(code_label)s i selecciona'n uns quants. Recorda incloure les instruccions de moure i girar!"
574
-
575
- #: static/game/js/level_editor.js:2492
576
- msgid "Code"
577
- msgstr "Codi"
578
-
579
- #: static/game/js/level_editor.js:2497
580
- msgid "You haven't selected any blocks to use in your level"
581
- msgstr "No has seleccionat cap bloc per fer servir en el teu nivell"
582
-
583
- #: static/game/js/level_editor.js:2512 static/game/js/level_editor.js:2515
584
- #: static/game/js/level_editor.js:2523
585
- msgid "Sharing"
586
- msgstr "Comparteix"
587
-
588
- #: static/game/js/level_editor.js:2512
589
- msgid "Please save your level before continuing!"
590
- msgstr "Desa el teu nivell abans de continuar!"
591
-
592
- #: static/game/js/level_editor.js:2515
593
- msgid "Please save your latest changes!"
594
- msgstr "Si us plau, desa els teus últims canvis!"
595
-
596
- #: static/game/js/level_editor.js:2524
597
- msgid "You do not own this level. If you would like to share it you will first have to save your own copy!"
598
- msgstr "Aquest nivell no és teu. Si el vols compartir primer has de desar-ne una còpia!"
599
-
600
- #: static/game/js/level_editor.js:2537
601
- msgid "Unfortunately you need to be logged in to save levels."
602
- msgstr "Necessites estar connectat per poder desar nivells."
603
-
604
- #: static/game/js/level_editor.js:2540
605
- msgid "Unfortunately you need to be logged in to load levels."
606
- msgstr "Necessites estar connectat per poder carregar nivells."
607
-
608
- #: static/game/js/level_editor.js:2543
609
- msgid "Unfortunately you need to be logged in to share levels."
610
- msgstr "Necessites estar connectat per poder compartir nivells."
611
-
612
- #: static/game/js/level_editor.js:2547
613
- msgid "You can log in as a %(student_login_url)s, %(teacher_login_url)s or %(independent_login_url)s."
614
- msgstr "Pots entrar com a %(student_login_url)s, %(teacher_login_url)s o %(independent_login_url)s."
615
-
616
- #: static/game/js/level_editor.js:2549
617
- msgctxt "login_url"
618
- msgid "student"
619
- msgstr "alumne"
620
-
621
- #: static/game/js/level_editor.js:2550
622
- msgctxt "login_url"
623
- msgid "teacher"
624
- msgstr "professor"
625
-
626
- #: static/game/js/level_editor.js:2552
627
- msgctxt "login_url"
628
- msgid "independent student"
629
- msgstr "alumne independent"
630
-
631
- #: static/game/js/level_editor.js:2557
632
- msgid "Not logged in"
633
- msgstr "No has iniciat sessió"
634
-
635
- #: static/game/js/level_editor.js:2565
636
- msgid "Sharing as an independent student"
637
- msgstr "Compartir com un estudiant independent"
638
-
639
- #: static/game/js/level_editor.js:2566
640
- msgid "Sorry but as an independent student you'll need to join a school or club to share your levels with others."
641
- msgstr "Com a estudiant independent, per poder compartir els teus nivells amb altres hauries d'unir-te a una escola o a un club."
642
-
643
- #: static/game/js/level_editor.js:2802
644
- msgid "Click %(help_icon)s%(help_label)s for clues on getting started."
645
- msgstr "Fes clic a %(help_icon)s%(help_label)s per obtenir suggeriments per començar."
646
-
647
- #: static/game/js/level_editor.js:2804
648
- msgid "Help"
649
- msgstr "Ajuda"
650
-
651
- #: static/game/js/level_editor.js:2809
652
- msgid "Welcome to the Level editor!"
653
- msgstr "Benvinguts a l'editor de nivells!"
654
-
655
- #: static/game/js/level_editor.js:2821
656
- msgid "Welcome back!"
657
- msgstr "Benvingut de nou!"
658
-
659
- #: static/game/js/level_editor.js:2822
660
- msgid "Would you like to edit or play with your design?"
661
- msgstr "Vols editar o jugar amb el teu disseny?"
662
-
663
- #: static/game/js/model.js:158
664
- msgid "You ran into a cow! Keep in mind that cows can appear anywhere on the map."
665
- msgstr "Has xocat contra una vaca! Tingues en compte que les vaques poden aparèixer en qualsvol lloc del mapa."
666
-
667
- #: static/game/js/model.js:166
668
- msgid "Your first move was a crash. What went wrong?"
669
- msgstr "El teu primer moviment ha estat accidentat. Què ha fallat?"
670
-
671
- #: static/game/js/model.js:169
672
- msgid "Your first move was right. What went wrong after that?"
673
- msgid_plural "Your first %(correct_steps)s moves worked. What went wrong after that?"
674
- msgstr[0] "El teu primer moviment ha funcionat. Què ha fallat després?"
675
- msgstr[1] "Els primers %(correct_steps)s moviments han funcionat. Què ha fallat després?"
676
-
677
- #: static/game/js/model.js:193
678
- msgid "You ran out of fuel! Try to find a shorter route to the destination."
679
- msgstr "T'has quedat sense benzina! Intenta trobar una ruta més curta al destí."
680
-
681
- #: static/game/js/model.js:231
682
- msgid "Uh oh, you just sent the van through a red light! Stick to the Highway Code - the van must wait for green."
683
- msgstr "Oh oh, acabes de fer que la furgoneta se salti un semàfor en vermell! Segueix les normes de circulació: la furgoneta ha d'esperar el verd."
684
-
685
- #: static/game/js/model.js:395
686
- msgid "You have already delivered to that destination! You must only deliver once to each destination."
687
- msgstr "Ja has lliurat a aquesta destinació! Has fer un sol lliurament per destinació."
688
-
689
- #: static/game/js/model.js:490
690
- msgid "The van ran out of instructions before it reached a destination. Make sure there are enough instructions to complete the delivery."
691
- msgstr "La furgoneta s'ha quedat sense instruccions abans d'arribar a lloc. Comprova que tens prou instruccions per completar el repartiment."
692
-
693
- #: static/game/js/model.js:507
694
- msgid "The van visited the destination, but didn't stop there!"
695
- msgstr "La furgoneta ha visitat la destinació, pero no s'hi ha aturat!"
696
-
697
- #: static/game/js/model.js:518
698
- msgid "There are destinations that have not been delivered to. Ensure you visit all destinations and use the deliver command at each one."
699
- msgstr "Hi ha destinacions a les que no s'ha fet el lliurament. Assegura't que visites totes les destinacions i fes servir la comanda lliurar a cadascuna."
700
-
701
- #: static/game/js/model.js:533
702
- msgid "Make sure your blocks are connected to the Start block."
703
- msgstr "Assegura't que els teus blocs estan connectats al bloc inicial."
704
-
705
- #: static/game/js/pathFinder.js:72
706
- msgid "Try finding a shorter route to the destination."
707
- msgstr "Prova de trobar una ruta més curta al destí."
708
-
709
- #: static/game/js/pathFinder.js:74
710
- msgid "Try creating a simpler program."
711
- msgstr "Prova de fer un programa més senzill."
712
-
713
- #: static/game/js/pathFinder.js:76
714
- msgid "That solution isn't quite right. Read the level instructions or click Help."
715
- msgstr "Aquesta solució no està del tot bé. Llegeix les instruccions del nivell o vés a Ajuda."
716
-
717
- #: static/game/js/pathFinder.js:78
718
- msgid "Congratulations! You've aced it."
719
- msgstr "L'has clavada."
720
-
721
- #: static/game/js/program.js:61
722
- msgid "It looks as though your program's been running a while. Check your repeat loops are okay."
723
- msgstr "Sembla que el teu programa porta un estona executant-se. Revisa que els teus bucles de repetició siguin correctes."
724
-
725
- #: static/game/js/sharing.js:10
726
- msgid "Yes"
727
- msgstr "Si"
728
-
729
- #: static/game/js/sharing.js:11
730
- msgid "No"
731
- msgstr "No"
732
-
733
- #: static/game/js/sharing.js:129
734
- msgid "Unshare with all"
735
- msgstr "Deixa de compartir amb tothom"
736
-
737
- #: static/game/js/sharing.js:135
738
- msgid "Share with all"
739
- msgstr "Comparteix amb tothom"
740
-