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
Binary file
@@ -1,405 +0,0 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
- #, fuzzy
7
- msgid ""
8
- msgstr ""
9
- "Project-Id-Version: PACKAGE VERSION\n"
10
- "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2022-08-12 10:11+0000\n"
12
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
- "Language-Team: LANGUAGE <LL@li.org>\n"
15
- "Language: \n"
16
- "MIME-Version: 1.0\n"
17
- "Content-Type: text/plain; charset=UTF-8\n"
18
- "Content-Transfer-Encoding: 8bit\n"
19
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
-
21
- #: templates/game/base.html:47
22
- msgid "Levels"
23
- msgstr ""
24
-
25
- #: templates/game/base.html:51
26
- msgid "Create"
27
- msgstr ""
28
-
29
- #: templates/game/base.html:56
30
- msgid "Scoreboard"
31
- msgstr ""
32
-
33
- #: templates/game/base.html:62
34
- msgid "Moderate"
35
- msgstr ""
36
-
37
- #: templates/game/game.html:157 templates/game/level_editor.html:415
38
- msgid "Blockly"
39
- msgstr ""
40
-
41
- #: templates/game/game.html:164 templates/game/level_editor.html:417
42
- msgid "Python"
43
- msgstr ""
44
-
45
- #: templates/game/game.html:172
46
- msgid "Clear"
47
- msgstr ""
48
-
49
- #: templates/game/game.html:182 templates/game/level_editor.html:144
50
- msgid "Play"
51
- msgstr ""
52
-
53
- #: templates/game/game.html:191
54
- msgid "Fast"
55
- msgstr ""
56
-
57
- #: templates/game/game.html:199
58
- msgid "Stop"
59
- msgstr ""
60
-
61
- #: templates/game/game.html:207
62
- msgid "Step"
63
- msgstr ""
64
-
65
- #: templates/game/game.html:217
66
- msgid "Solve"
67
- msgstr ""
68
-
69
- #: templates/game/game.html:225 templates/game/game.html:357
70
- #: templates/game/game.html:386 templates/game/level_editor.html:204
71
- #: templates/game/level_editor.html:508 templates/game/level_editor.html:554
72
- msgid "Load"
73
- msgstr ""
74
-
75
- #: templates/game/game.html:233 templates/game/game.html:393
76
- #: templates/game/game.html:414 templates/game/level_editor.html:212
77
- #: templates/game/level_editor.html:560 templates/game/level_editor.html:590
78
- msgid "Save"
79
- msgstr ""
80
-
81
- #: templates/game/game.html:253 templates/game/level_editor.html:230
82
- msgid "Help"
83
- msgstr ""
84
-
85
- #: templates/game/game.html:269
86
- msgid "Mute"
87
- msgstr ""
88
-
89
- #: templates/game/game.html:278
90
- msgid "Day"
91
- msgstr ""
92
-
93
- #: templates/game/game.html:281
94
- msgid "Night"
95
- msgstr ""
96
-
97
- #: templates/game/game.html:290
98
- msgid "Exit"
99
- msgstr ""
100
-
101
- #: templates/game/game.html:309
102
- msgid "This is what your program would look like in Python:"
103
- msgstr ""
104
-
105
- #: templates/game/game.html:318
106
- msgid "Python Program"
107
- msgstr ""
108
-
109
- #: templates/game/game.html:321
110
- msgid "Convert from Blockly"
111
- msgstr ""
112
-
113
- #: templates/game/game.html:326
114
- msgid "Use the Python editor below to design your program, and then click play to try it out!"
115
- msgstr ""
116
-
117
- #: templates/game/game.html:329
118
- msgid "Commands"
119
- msgstr ""
120
-
121
- #: templates/game/game.html:340
122
- msgid "Run code"
123
- msgstr ""
124
-
125
- #: templates/game/game.html:344
126
- msgid "Console log"
127
- msgstr ""
128
-
129
- #: templates/game/game.html:349
130
- msgid "Clear console"
131
- msgstr ""
132
-
133
- #: templates/game/game.html:358
134
- msgid "Here you can load a program you've previously saved!"
135
- msgstr ""
136
-
137
- #: templates/game/game.html:361
138
- msgid "You don't have any programs to load yet. Try saving one!"
139
- msgstr ""
140
-
141
- #: templates/game/game.html:367 templates/game/game.html:399
142
- #: templates/game/game.html:442 templates/game/level_editor.html:530
143
- #: templates/game/level_editor.html:569 templates/game/level_editor.html:622
144
- msgid "Name"
145
- msgstr ""
146
-
147
- #: templates/game/game.html:381 templates/game/level_editor.html:549
148
- msgid "Delete"
149
- msgstr ""
150
-
151
- #: templates/game/game.html:394
152
- msgid "Here you can save your program so you can retrieve it later!"
153
- msgstr ""
154
-
155
- #: templates/game/game.html:443 templates/game/level_editor.html:623
156
- msgid "Shared"
157
- msgstr ""
158
-
159
- #: templates/game/level_editor.html:135
160
- msgid "Delete Road"
161
- msgstr ""
162
-
163
- #: templates/game/level_editor.html:152
164
- msgid "Play Night"
165
- msgstr ""
166
-
167
- #: templates/game/level_editor.html:162 templates/game/level_editor.html:247
168
- msgid "Map"
169
- msgstr ""
170
-
171
- #: templates/game/level_editor.html:170 templates/game/level_editor.html:304
172
- msgid "Scenery"
173
- msgstr ""
174
-
175
- #: templates/game/level_editor.html:178 templates/game/level_editor.html:389
176
- msgid "Character"
177
- msgstr ""
178
-
179
- #: templates/game/level_editor.html:186 templates/game/level_editor.html:406
180
- msgid "Code"
181
- msgstr ""
182
-
183
- #: templates/game/level_editor.html:194 templates/game/level_editor.html:459
184
- msgid "Random"
185
- msgstr ""
186
-
187
- #: templates/game/level_editor.html:220 templates/game/level_editor.html:595
188
- msgid "Share"
189
- msgstr ""
190
-
191
- #: templates/game/level_editor.html:238
192
- msgid "Quit"
193
- msgstr ""
194
-
195
- #: templates/game/level_editor.html:248
196
- msgid "Here you can design your level! What sort of road will you make?"
197
- msgstr ""
198
-
199
- #: templates/game/level_editor.html:253
200
- msgid "Max fuel:"
201
- msgstr ""
202
-
203
- #: templates/game/level_editor.html:263
204
- msgid "Add road"
205
- msgstr ""
206
-
207
- #: templates/game/level_editor.html:269
208
- msgid "Delete road"
209
- msgstr ""
210
-
211
- #: templates/game/level_editor.html:277
212
- msgid "Mark start"
213
- msgstr ""
214
-
215
- #: templates/game/level_editor.html:283
216
- msgid "Mark end"
217
- msgstr ""
218
-
219
- #: templates/game/level_editor.html:291
220
- msgid "Clear all"
221
- msgstr ""
222
-
223
- #: templates/game/level_editor.html:305
224
- msgid "Here you can liven up your level by choosing the theme and adding scenery! Will you create beautiful countryside or a bustling city?"
225
- msgstr ""
226
-
227
- #: templates/game/level_editor.html:312
228
- msgid "Theme:"
229
- msgstr ""
230
-
231
- #: templates/game/level_editor.html:322 templates/game/level_editor.html:490
232
- msgid "Scenery:"
233
- msgstr ""
234
-
235
- #: templates/game/level_editor.html:332
236
- msgid "Traffic lights:"
237
- msgstr ""
238
-
239
- #: templates/game/level_editor.html:338
240
- msgid "Cows:"
241
- msgstr ""
242
-
243
- #: templates/game/level_editor.html:343
244
- msgid "Advanced"
245
- msgstr ""
246
-
247
- #: templates/game/level_editor.html:351
248
- msgid "Advanced options"
249
- msgstr ""
250
-
251
- #: templates/game/level_editor.html:369
252
- msgid "How many cows should appear for this group?"
253
- msgstr ""
254
-
255
- #: templates/game/level_editor.html:371
256
- msgid "Min:"
257
- msgstr ""
258
-
259
- #: templates/game/level_editor.html:372
260
- msgid "Max:"
261
- msgstr ""
262
-
263
- #: templates/game/level_editor.html:390
264
- msgid "Here you can choose your character. Who will you play as?"
265
- msgstr ""
266
-
267
- #: templates/game/level_editor.html:393
268
- msgid "Character:"
269
- msgstr ""
270
-
271
- #: templates/game/level_editor.html:407
272
- msgid "Here you can select the code you can use while playing your new level!"
273
- msgstr ""
274
-
275
- #: templates/game/level_editor.html:413
276
- msgid "Language:"
277
- msgstr ""
278
-
279
- #: templates/game/level_editor.html:416
280
- msgid "Blockly With Python View"
281
- msgstr ""
282
-
283
- #: templates/game/level_editor.html:418
284
- msgid "Both"
285
- msgstr ""
286
-
287
- #: templates/game/level_editor.html:428
288
- msgid "Select all"
289
- msgstr ""
290
-
291
- #: templates/game/level_editor.html:460
292
- msgid "Here you can generate a random map. Try changing some of the parameters below and see what you get!"
293
- msgstr ""
294
-
295
- #: templates/game/level_editor.html:465
296
- msgid "Size:"
297
- msgstr ""
298
-
299
- #: templates/game/level_editor.html:469
300
- msgid "Branchiness:"
301
- msgstr ""
302
-
303
- #: templates/game/level_editor.html:473
304
- msgid "Loopiness:"
305
- msgstr ""
306
-
307
- #: templates/game/level_editor.html:477
308
- msgid "Curviness:"
309
- msgstr ""
310
-
311
- #: templates/game/level_editor.html:481
312
- msgid "Traffic Lights:"
313
- msgstr ""
314
-
315
- #: templates/game/level_editor.html:484 templates/game/level_editor.html:493
316
- msgid "Yes"
317
- msgstr ""
318
-
319
- #: templates/game/level_editor.html:485 templates/game/level_editor.html:494
320
- msgid "No"
321
- msgstr ""
322
-
323
- #: templates/game/level_editor.html:501
324
- msgid "Generate"
325
- msgstr ""
326
-
327
- #: templates/game/level_editor.html:509
328
- msgid "Here you can load in levels created by you and your friends! Select a level in the table and press load."
329
- msgstr ""
330
-
331
- #: templates/game/level_editor.html:514
332
- msgid "You don't have any levels to load yet. Try saving one!"
333
- msgstr ""
334
-
335
- #: templates/game/level_editor.html:519
336
- msgid "Load:"
337
- msgstr ""
338
-
339
- #: templates/game/level_editor.html:521
340
- msgid "your own levels"
341
- msgstr ""
342
-
343
- #: templates/game/level_editor.html:522
344
- msgid "shared levels"
345
- msgstr ""
346
-
347
- #: templates/game/level_editor.html:531 templates/game/level_editor.html:570
348
- msgid "Owner"
349
- msgstr ""
350
-
351
- #: templates/game/level_editor.html:561
352
- msgid "Here you can save your new level. Enter a name below and hit save. Alternatively click on an existing level to update it."
353
- msgstr ""
354
-
355
- #: templates/game/level_editor.html:562
356
- msgid "To play your level and be tracked, first <b>Quit</b> the Level Editor and select your level from the 'Levels created by you' section."
357
- msgstr ""
358
-
359
- #: templates/game/level_editor.html:582
360
- msgid "Name:"
361
- msgstr ""
362
-
363
- #: templates/game/level_editor.html:598
364
- msgid "Here you can share your level with your classes or your fellow teachers."
365
- msgstr ""
366
-
367
- #: templates/game/level_editor.html:600
368
- msgid "Here you can share your level with your classmates. Try clicking in the Shared column!"
369
- msgstr ""
370
-
371
- #: templates/game/level_editor.html:606
372
- msgid "Share with:"
373
- msgstr ""
374
-
375
- #: templates/game/level_editor.html:608
376
- msgid "Classes"
377
- msgstr ""
378
-
379
- #: templates/game/level_editor.html:609
380
- msgid "Teachers"
381
- msgstr ""
382
-
383
- #: templates/game/level_editor.html:614
384
- msgid "Class:"
385
- msgstr ""
386
-
387
- #: templates/game/level_editor.html:637
388
- msgid "Share with all"
389
- msgstr ""
390
-
391
- #: theme.py:23
392
- msgid "Grass"
393
- msgstr ""
394
-
395
- #: theme.py:31
396
- msgid "Snow"
397
- msgstr ""
398
-
399
- #: theme.py:39
400
- msgid "Farm"
401
- msgstr ""
402
-
403
- #: theme.py:47
404
- msgid "City"
405
- msgstr ""
Binary file