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: Turkish\n"
9
- "Language: tr_TR\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: tr\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 "Kazandın!"
23
-
24
- #: static/game/js/animation.js:260
25
- msgid "Route score: "
26
- msgstr "Rota skoru: "
27
-
28
- #: static/game/js/animation.js:265
29
- msgid "Algorithm score: "
30
- msgstr "Algoritma skoru: "
31
-
32
- #: static/game/js/animation.js:271
33
- msgid "Your total score: %(totalScore)s/%(maxScore)s"
34
- msgstr "Toplam skorunuz: %(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 "Blockly kullanılarak sıralanmış bir rotan varmış gibi görünüyor.<br><br>Şimdi Pyhton sekmesine giderek aynısını Pyhton'da yapabilecek misin diye bak! "
39
-
40
- #: static/game/js/animation.js:286 static/game/js/drawing.js:1055
41
- msgid "Close"
42
- msgstr "Kapat"
43
-
44
- #: static/game/js/animation.js:290
45
- msgid "Next Level"
46
- msgstr "Sonraki Seviye"
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 "Tebrikler, bu bölümü tamamladın! <br>\n"
51
- "Sonraki meydan okumaya hazır mısın? "
52
-
53
- #: static/game/js/animation.js:303
54
- msgid "Or try one of this episode's random levels!"
55
- msgstr "Ya da bu bölümlerden birinin rastgele seviyelerini deneyin!"
56
-
57
- #: static/game/js/animation.js:306
58
- msgid "Next episode"
59
- msgstr "Sonraki bölüm"
60
-
61
- #: static/game/js/animation.js:308
62
- msgid "Random level"
63
- msgstr "Rastgele seviye"
64
-
65
- #: static/game/js/animation.js:310 static/game/js/animation.js:314
66
- #: static/game/js/animation.js:318
67
- msgid "Home"
68
- msgstr "Ana Sayfa"
69
-
70
- #: static/game/js/animation.js:312
71
- msgid "That's all we've got for you right now. Carry on the fun by creating your own challenges."
72
- msgstr "Şu an sizin için elimizdekiler bu kadar. Kendi meydan okumalarını oluşturarak eğlenceyi devam ettir."
73
-
74
- #: static/game/js/animation.js:313
75
- msgid "Create your own map!"
76
- msgstr "Kendi haritanı oluştur!"
77
-
78
- #: static/game/js/animation.js:316
79
- msgid "Do you want to try another random level?"
80
- msgstr "Başka bir rastgele seviye denemek ister misin?"
81
-
82
- #: static/game/js/animation.js:317
83
- msgid "Have more fun!"
84
- msgstr "Daha fazla eğlenin!"
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 "Ah canım!"
90
-
91
- #: static/game/js/animation.js:334
92
- msgid "Are you stuck? Do you need help?"
93
- msgstr "Sıkıştın mı? Yardıma ihtiyacın var mı?"
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 "Belki de 'tanımlama' bloklarına göz atmayı denemelisindir?"
98
-
99
- #: static/game/js/blocklyCompiler.js:41
100
- msgid "Perhaps try checking the names of your 'define' blocks?"
101
- msgstr "Belki de 'tanımlama' bloklarının adlarını kontrol etmeyi denemelisindir?"
102
-
103
- #: static/game/js/blocklyCompiler.js:56
104
- msgid "Perhaps try looking at your 'event' blocks?"
105
- msgstr "Belki de 'olay' bloklarına göz atmayı denemelisindir?"
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 "Belki de 'arama' bloklarındaki isimleri kontrol etmeyi denemelisindir?"
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 "Belki de 'tekrar' bloklarına göz atmayı denemelisindir?"
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 "Belki de 'eğer' bloklarına bakmayı denemelisindir?"
125
-
126
- #: static/game/js/blocklyControl.js:45
127
- msgid "Your program doesn't look quite right..."
128
- msgstr "Uygulamanız tam olarak doğru görünmüyor..."
129
-
130
- #: static/game/js/blocklyControl.js:96
131
- msgid "Loading workspace"
132
- msgstr "Çalışma alanı yükleniyor"
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 "Üzgünüm, bu çalışma alanı içerisinde bu seviyede izinli olmayan bloklar bulunuyor!"
137
-
138
- #: static/game/js/blocklyCustomBlocks.js:19
139
- msgid "Start"
140
- msgstr "Başlat"
141
-
142
- #: static/game/js/blocklyCustomBlocks.js:24
143
- msgid "The beginning of the program"
144
- msgstr "Uygulamanın başlangıcı"
145
-
146
- #: static/game/js/blocklyCustomBlocks.js:38
147
- msgid "move forwards"
148
- msgstr "ilerlet"
149
-
150
- #: static/game/js/blocklyCustomBlocks.js:44
151
- msgid "Move the van forwards"
152
- msgstr "Kamyoneti ilerlet"
153
-
154
- #: static/game/js/blocklyCustomBlocks.js:53
155
- msgid "turn left"
156
- msgstr "sola dön"
157
-
158
- #: static/game/js/blocklyCustomBlocks.js:62
159
- msgid "Turn the van left"
160
- msgstr "Kamyoneti sola döndür"
161
-
162
- #: static/game/js/blocklyCustomBlocks.js:71
163
- msgid "turn right"
164
- msgstr "sağa dön"
165
-
166
- #: static/game/js/blocklyCustomBlocks.js:80
167
- msgid "Turn the van right"
168
- msgstr "Kamyoneti sağa döndür"
169
-
170
- #: static/game/js/blocklyCustomBlocks.js:89
171
- msgid "turn around"
172
- msgstr "etrafından dön"
173
-
174
- #: static/game/js/blocklyCustomBlocks.js:99
175
- msgid "Turn the van around"
176
- msgstr "Kamyoneti etrafından döndür"
177
-
178
- #: static/game/js/blocklyCustomBlocks.js:108
179
- msgid "wait"
180
- msgstr "bekle"
181
-
182
- #: static/game/js/blocklyCustomBlocks.js:117
183
- msgid "Keep the van stationary"
184
- msgstr "Kamyoneti hareketsiz tut"
185
-
186
- #: static/game/js/blocklyCustomBlocks.js:126
187
- msgid "deliver"
188
- msgstr "teslim et"
189
-
190
- #: static/game/js/blocklyCustomBlocks.js:135
191
- msgid "Deliver the goods from the van"
192
- msgstr "Kamyonetteki ürünleri teslim et"
193
-
194
- #: static/game/js/blocklyCustomBlocks.js:144
195
- msgid "puff up"
196
- msgstr "havalandır"
197
-
198
- #: static/game/js/blocklyCustomBlocks.js:153
199
- msgid "Puff up the van to scare away the cows"
200
- msgstr "İnekleri korkutup kaçırmak için kamyoneti havalandır"
201
-
202
- #: static/game/js/blocklyCustomBlocks.js:162
203
- msgid "sound horn"
204
- msgstr "korna çal"
205
-
206
- #: static/game/js/blocklyCustomBlocks.js:171
207
- msgid "Sound the horn to scare away the cows"
208
- msgstr "İnekleri korkutup kaçırmak için korna çal"
209
-
210
- #: static/game/js/blocklyCustomBlocks.js:182
211
- msgid "road exists forward"
212
- msgstr "ileri yol mevcut"
213
-
214
- #: static/game/js/blocklyCustomBlocks.js:183
215
- msgid "road exists left"
216
- msgstr "sola yol mevcut"
217
-
218
- #: static/game/js/blocklyCustomBlocks.js:184
219
- msgid "road exists right"
220
- msgstr "sağa yol mevcut"
221
-
222
- #: static/game/js/blocklyCustomBlocks.js:198
223
- msgid "traffic light red"
224
- msgstr "trafik ışığı kırmızı"
225
-
226
- #: static/game/js/blocklyCustomBlocks.js:199
227
- msgid "traffic light green"
228
- msgstr "trafik ışığı yeşil"
229
-
230
- #: static/game/js/blocklyCustomBlocks.js:215
231
- msgid "is dead end"
232
- msgstr "çıkmaz sokak"
233
-
234
- #: static/game/js/blocklyCustomBlocks.js:227
235
- msgid "at destination"
236
- msgstr "Varış yerinde"
237
-
238
- #: static/game/js/blocklyCustomBlocks.js:244
239
- #: static/game/js/blocklyCustomBlocks.js:250
240
- msgid "Call"
241
- msgstr "Çağır"
242
-
243
- #: static/game/js/blocklyCustomBlocks.js:261
244
- msgid "Define"
245
- msgstr "Tanımla"
246
-
247
- #: static/game/js/blocklyCustomBlocks.js:265
248
- #: static/game/js/blocklyCustomBlocks.js:293
249
- msgid "Do"
250
- msgstr "Yap"
251
-
252
- #: static/game/js/blocklyCustomBlocks.js:266
253
- msgid "Declares the procedure"
254
- msgstr "Prosedürün tanımlama"
255
-
256
- #: static/game/js/blocklyCustomBlocks.js:280
257
- msgid "white"
258
- msgstr "beyaz"
259
-
260
- #: static/game/js/blocklyCustomBlocks.js:280
261
- msgid "brown"
262
- msgstr "kahverengi"
263
-
264
- #: static/game/js/blocklyCustomBlocks.js:285
265
- msgid "On "
266
- msgstr "Açık "
267
-
268
- #: static/game/js/blocklyCustomBlocks.js:294
269
- msgid "Declares the event handler"
270
- msgstr "Işlem yorumlayıcısının tanımlama"
271
-
272
- #: static/game/js/blocklyCustomBlocks.js:309
273
- msgid "repeat while"
274
- msgstr "olduğu sürece tekrarla"
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 "yap"
281
-
282
- #: static/game/js/blocklyCustomBlocks.js:315
283
- msgid "While a value is true, do some statements"
284
- msgstr "Bir değer doğru olduğu sürece, bazı ifadeleri yap"
285
-
286
- #: static/game/js/blocklyCustomBlocks.js:325
287
- msgid "repeat until"
288
- msgstr "olana kadar tekrarla"
289
-
290
- #: static/game/js/blocklyCustomBlocks.js:331
291
- msgid "Until a value is true, do some statements"
292
- msgstr "Bir değer doğru olana kadar, bazı ifadeleri yap"
293
-
294
- #: static/game/js/blocklyMessages.js:4
295
- msgid "If a value is true, then do some statements."
296
- msgstr "Bir değer doğru ise, bazı ifadeleri yap."
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 "Eğer bir değer doğru ise, birinci blok ifadelerini yap. Değilse, ikinci blok ifadelerini yap."
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 "Eğer birinci değer doğru ise, birinci blok ifadelerini yap. Değilse, eğer ikinci değer doğru ise, ikinci blok ifadelerini yap."
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 "Eğer birinci değer doğru ise, birinci blok ifadelerini yap. Değilse, eğer ikinci değer doğru ise, ikinci blok ifadelerini yap. Eğer değerlerden hiçbiri doğru değilse, sondaki blok ifadelerini yap."
309
-
310
- #: static/game/js/blocklyMessages.js:8
311
- msgid "if"
312
- msgstr "eğer"
313
-
314
- #: static/game/js/blocklyMessages.js:9
315
- msgid "else if"
316
- msgstr "ya da eğer"
317
-
318
- #: static/game/js/blocklyMessages.js:10
319
- msgid "else"
320
- msgstr "yoksa"
321
-
322
- #: static/game/js/blocklyMessages.js:14
323
- msgid "repeat %(number_of_times)s times"
324
- msgstr "%(number_of_times)s defa tekrarla"
325
-
326
- #: static/game/js/blocklyMessages.js:16
327
- msgid "Do some statements several times."
328
- msgstr "Bazı ifadeleri bir kaç kez çalıştırın."
329
-
330
- #: static/game/js/button.js:19
331
- msgid "Try again"
332
- msgstr "Tekrar dene"
333
-
334
- #: static/game/js/drawing.js:1101
335
- msgid "Error"
336
- msgstr "Hata"
337
-
338
- #: static/game/js/drawing.js:1104
339
- msgid "Could not connect to server. Your internet might not be working properly."
340
- msgstr "Sunucuya bağlanamıyor. İnternet bağlantınız düzgün çalışmıyor olabilir."
341
-
342
- #: static/game/js/game.js:83
343
- msgid "You are not logged in. Your progress won't be saved."
344
- msgstr "Giriş yapmadınız. İlerlemeniz kaydedilmeyecek."
345
-
346
- #: static/game/js/game.js:87
347
- msgid "Try solving this one..."
348
- msgstr "Bunu çözmeyi dene..."
349
-
350
- #: static/game/js/game.js:91
351
- msgid "Night Level %(level_name)s"
352
- msgstr "Gece Seviyesi %(level_name)s"
353
-
354
- #: static/game/js/game.js:93
355
- msgid "Level %(level_name)s"
356
- msgstr "Seviye %(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 "Gece modunda sadece çok kısa mesafeleri görebilirsiniz. Size, yolunuzu bulmanızda yardımcı olması için daha çok blok veriyoruz!"
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 "Oynat"
366
-
367
- #: static/game/js/game.js:614
368
- msgid "Pause"
369
- msgstr "Duraklat"
370
-
371
- #: static/game/js/game.js:619
372
- msgid "Resume"
373
- msgstr "Devam Et"
374
-
375
- #: static/game/js/game.js:628
376
- msgid "Fast"
377
- msgstr "Hızlı"
378
-
379
- #: static/game/js/game.js:633
380
- msgid "Slow"
381
- msgstr "Yavaş"
382
-
383
- #: static/game/js/game.js:661
384
- msgid "Unmute"
385
- msgstr "Sesi Aç"
386
-
387
- #: static/game/js/game.js:666
388
- msgid "Mute"
389
- msgstr "Sesi Kapat"
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 "Aşağıdaki komutları %(var_name)s kamyonet nesnesi üzerinde kullanın. Örn: %(example)s"
394
-
395
- #: static/game/js/game.js:816
396
- msgid "Movement"
397
- msgstr "Hareket"
398
-
399
- #: static/game/js/game.js:826
400
- msgid "Position"
401
- msgstr "Pozisyon"
402
-
403
- #: static/game/js/game.js:835
404
- msgid "where %(arg_name)s is '%(red_color)s' or '%(green_color)s'"
405
- msgstr "%(arg_name)s nerede '%(red_color)s' yada '%(green_color)s' olduğu"
406
-
407
- #: static/game/js/game.js:850
408
- msgid "where %(arg_name)s is '%(forward)s', '%(left)s', or '%(right)s'"
409
- msgstr "%(arg_name)s'nın nerede '%(forward)s' '%(left)s' yada '%(right)s' olduğu"
410
-
411
- #: static/game/js/game.js:861
412
- msgid "Python Commands"
413
- msgstr "Python Komutları"
414
-
415
- #: static/game/js/level_editor.js:50 static/game/js/level_editor.js:2450
416
- msgid "Add road"
417
- msgstr "Yol Ekle"
418
-
419
- #: static/game/js/level_editor.js:51 static/game/js/level_editor.js:818
420
- msgid "Delete road"
421
- msgstr "Yolu Sil"
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 "Bitişi işaretle"
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 "Başlangıcı işaretle"
432
-
433
- #: static/game/js/level_editor.js:341
434
- msgid "White"
435
- msgstr "Beyaz"
436
-
437
- #: static/game/js/level_editor.js:343
438
- msgid "Brown"
439
- msgstr "Kahverengi"
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 "Ah hayır!"
445
-
446
- #: static/game/js/level_editor.js:694
447
- msgid "You used some invalid characters."
448
- msgstr "Bazı geçersiz karakterler kullandın."
449
-
450
- #: static/game/js/level_editor.js:695
451
- msgid "Try saving your level again using only letters and numbers."
452
- msgstr "Sadece harfleri ve sayıları kullanarak seviyenizi tekrar kaydetmeyi deneyin."
453
-
454
- #: static/game/js/level_editor.js:725
455
- msgid "Overwriting"
456
- msgstr "Üzerine yazılıyor"
457
-
458
- #: static/game/js/level_editor.js:725
459
- msgid "Warning"
460
- msgstr "Uyarı"
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 "%(level_name)s seviyesi zaten mevcut. Üzerine yazmak istediğinize emin misiniz?"
465
-
466
- #: static/game/js/level_editor.js:793
467
- msgid "To get started, draw a road."
468
- msgstr "Başlamak için bir yol çizin."
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 "Yolun başlamasını istediğiniz kareye tıklayın. Sonrasında, fare butonunu bırakmadan, yolun bitmesini istediğiniz çembere sürükleyin. Bunu, yola kaç kere yeni bölüm eklemek isterseniz o kadar tekrarlayın."
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 "%(map_icon)s%(map_label)s menüsünde, %(mark_start_icon)s%(mark_start_label)s ikonuna tıklayın, sonra yolun başlayacağı kareyi seçin. Başlangıç noktaları sadece çıkmaz sokaklara yerleştirilebilir. Başlangıç noktasını belirlemeden önce bir yola ihtiyacınız var. Yolun bitiş noktasını belirmek için ise %(mark_end_icon)s%(mark_end_label)s ikonunu kullandığınızdan emin olun. Yakıt seviyesini ayarlamak, yolun yakıtın yeteceği kadar uzunlukta olması gerektiği anlamına gelir."
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 "Harita"
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 "Yolu kaldırmak için %(delete_road_icon)s%(delete_road_label)s butonuna tıklayın ve kurtulmak için bir bölüm seçin."
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 "Bilgisayarın size rastgele bir rota oluşturmasını istiyorsanız %(random_icon)s%(random_label)s butonuna tıklayın."
490
-
491
- #: static/game/js/level_editor.js:825
492
- msgid "Random"
493
- msgstr "Rastgele"
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 "%(scenery_icon)s%(scenery_label)s seçin ve yolunuzun etrafına eklemek için ağaçlar, çalılar ve daha fazlasını seçin. Seçtikleriniz sol üst köşede belirecektir - sürükleyip yerine bırakın. Silmek için ise sağ altta bulunan çöp kutusuna sürükleyin. Trafik lambasını döndürmek için sadece üzerine çift tıklayın. Unutmayın ki trafik ışıkları 44. seviyeye kadar kullanılamaz."
498
-
499
- #: static/game/js/level_editor.js:836
500
- msgid "Scenery"
501
- msgstr "Sahne"
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 "%(character_icon)s%(character_label)s menüsünden oynamak istediğiniz bir karakter seçin."
506
-
507
- #: static/game/js/level_editor.js:843
508
- msgid "Character"
509
- msgstr "Karakter"
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 "%(blocks_icon)s%(blocks_label)s menüsünden karakteriniz için oluşturmak istediğiniz rotaya uygun kod bloklarını seçin."
514
-
515
- #: static/game/js/level_editor.js:852
516
- msgid "Blocks"
517
- msgstr "Bloklar"
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 "Hazır olduğunuzda oynamak için %(play_icon)s%(play_label)s, yolu kaydetmek için %(save_icon)s%(save_label)s veya bir arkadaşınızla paylaşmak için %(share_icon)s%(share_label)s ikonlarına tıklayın. Ama güzel bir isim vermeyi de unutmayın!"
522
-
523
- #: static/game/js/level_editor.js:863
524
- msgid "Save"
525
- msgstr "Kaydet"
526
-
527
- #: static/game/js/level_editor.js:865
528
- msgid "Share"
529
- msgstr "Paylaş"
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 ikonu seni Hızlı Rotacı ana sayfasına götürecek."
534
-
535
- #: static/game/js/level_editor.js:873
536
- msgid "Quit"
537
- msgstr "Çıkış"
538
-
539
- #: static/game/js/level_editor.js:955 static/game/js/level_editor.js:993
540
- msgid "Group %(cow_group)s"
541
- msgstr "%(cow_group)s grupla"
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 "%(map_icon)s%(map_label)s menüsünden %(add_road_icon)s%(add_road_label)s ikonuna tıklayın. Kareden kareye tıklayıp sürükleyerek bir yol çizin."
546
-
547
- #: static/game/js/level_editor.js:2454
548
- msgid "You forgot to create a road."
549
- msgstr "Bir yol oluşturmayı unuttun."
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 "%(map_icon)s%(map_label)s menüsünde %(mark_start_icon)%(mark_start_label) veya %(mark_end_icon)s%(mark_end_label)s ikonlarından birine tıklayın, daha sonra yolun başlangıç veya bitiş noktalarını işaretleyin."
554
-
555
- #: static/game/js/level_editor.js:2472
556
- msgid "You forgot to mark the start and end points."
557
- msgstr "Başlangıç ve bitiş noktalarını işaretlemeyi unuttunuz."
558
-
559
- #: static/game/js/level_editor.js:2478 static/game/js/level_editor.js:2496
560
- msgid "Something is wrong..."
561
- msgstr "Birşeyler yanlış..."
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 "Başlangıçtan bitişe kadar bir yol bulunmuyor."
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 "Sürücünün bitişe varmasını sağlamak için seviyeni düzenle."
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 "%(code_icon)s%(code_label)s'e git ve kullanmak için birşeyler seçin. İlerle ve dön komutlarını ilave etmeyi unutmayın!"
574
-
575
- #: static/game/js/level_editor.js:2492
576
- msgid "Code"
577
- msgstr "Kod"
578
-
579
- #: static/game/js/level_editor.js:2497
580
- msgid "You haven't selected any blocks to use in your level"
581
- msgstr "Seviyenizde kullanmak için hiçbir blok seçmediniz"
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 "Paylaşılıyor"
587
-
588
- #: static/game/js/level_editor.js:2512
589
- msgid "Please save your level before continuing!"
590
- msgstr "Devam etmeden önce lütfen seviyenizi kaydedin!"
591
-
592
- #: static/game/js/level_editor.js:2515
593
- msgid "Please save your latest changes!"
594
- msgstr "Lütfen son değişikliklerinizi kaydedin!"
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 "Bu seviyenin sahibi değilsiniz. Bunu paylaşmak istiyorsanız ilk önce kendinize bir kopya kaydetmelisiniz!"
599
-
600
- #: static/game/js/level_editor.js:2537
601
- msgid "Unfortunately you need to be logged in to save levels."
602
- msgstr "Ne yazık ki seviyeleri kaydetmek için oturum açmalısınız."
603
-
604
- #: static/game/js/level_editor.js:2540
605
- msgid "Unfortunately you need to be logged in to load levels."
606
- msgstr "Ne yazık ki seviyeleri yüklemek için oturum açmalısınız."
607
-
608
- #: static/game/js/level_editor.js:2543
609
- msgid "Unfortunately you need to be logged in to share levels."
610
- msgstr "Ne yazık ki seviyeleri paylaşmak için oturum açmalısınız."
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 ""
615
-
616
- #: static/game/js/level_editor.js:2549
617
- msgctxt "login_url"
618
- msgid "student"
619
- msgstr ""
620
-
621
- #: static/game/js/level_editor.js:2550
622
- msgctxt "login_url"
623
- msgid "teacher"
624
- msgstr ""
625
-
626
- #: static/game/js/level_editor.js:2552
627
- msgctxt "login_url"
628
- msgid "independent student"
629
- msgstr ""
630
-
631
- #: static/game/js/level_editor.js:2557
632
- msgid "Not logged in"
633
- msgstr "Oturum açılmadı"
634
-
635
- #: static/game/js/level_editor.js:2565
636
- msgid "Sharing as an independent student"
637
- msgstr "Bağımsız bir öğrenci olarak paylaşılıyor"
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 "Üzgünüz, fakat seviyelerinizi diğerleri ile paylaşmak için bir okul veya kulübe kayıtlı bir öğrenci olmalısınız."
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 "Başlarken ipuçları için %(help_icon)s%(help_label)s'e tıklayın."
646
-
647
- #: static/game/js/level_editor.js:2804
648
- msgid "Help"
649
- msgstr "Yardım"
650
-
651
- #: static/game/js/level_editor.js:2809
652
- msgid "Welcome to the Level editor!"
653
- msgstr "Seviye editörüne hoş geldiniz!"
654
-
655
- #: static/game/js/level_editor.js:2821
656
- msgid "Welcome back!"
657
- msgstr ""
658
-
659
- #: static/game/js/level_editor.js:2822
660
- msgid "Would you like to edit or play with your design?"
661
- msgstr ""
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 "Bir ineğe çarptın! İneklerin haritanın herhangi bir noktasında ortaya çıkabileceğini unutmayın."
666
-
667
- #: static/game/js/model.js:166
668
- msgid "Your first move was a crash. What went wrong?"
669
- msgstr "İlk hareketiniz bir kazaya sebep oldu. Yanlış olan neydi?"
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] ""
675
- msgstr[1] ""
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 "Yakıtınız bitti! Hedefe giden daha kısa bir bulun."
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 "Eyvah eyvah, kamyoneti kırmızı ışıkta geçirdin! Otoyol kurallarına bağlı kalın - kamyonet yeşil ışığı beklemeli."
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 "Zaten bu hedefe daha önce teslimat yaptınız! Her hedefe yalnızca bir defa teslimat yapabilirsiniz."
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 "Kamyonet hedefine daha ulaşmadan komutlar bitti. Teslimatı tamamlamak için yeterli miktarda komut kullandığınızdan emin olun."
692
-
693
- #: static/game/js/model.js:507
694
- msgid "The van visited the destination, but didn't stop there!"
695
- msgstr "Kamyonet hedefe ulaştı fakat orada durmadı!"
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 "Henüz teslimat yapılmamış hedefler var. Tüm hedefleri ziyaret ettiğinizden ve her birinde teslim et komutu kullandığınızdan emin olun."
700
-
701
- #: static/game/js/model.js:533
702
- msgid "Make sure your blocks are connected to the Start block."
703
- msgstr "Blokları Başlangıç bloğuna tutturduğunuzdan emin olun."
704
-
705
- #: static/game/js/pathFinder.js:72
706
- msgid "Try finding a shorter route to the destination."
707
- msgstr "Hedefe giden daha kısa bir rota bulmayı deneyin."
708
-
709
- #: static/game/js/pathFinder.js:74
710
- msgid "Try creating a simpler program."
711
- msgstr "Daha basit bir program oluşturmayı deneyin."
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 "Çözümünüz yeterli değil. Seviye komutlarını okuyun veya yardıma tıklayın."
716
-
717
- #: static/game/js/pathFinder.js:78
718
- msgid "Congratulations! You've aced it."
719
- msgstr "Tebrikler! Başardın."
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 "Programınız bir süredir çalışıyormuş gibi görünüyor. Tekrar döngülerinin doğru olup olmadığını kontrol edin."
724
-
725
- #: static/game/js/sharing.js:10
726
- msgid "Yes"
727
- msgstr "Evet"
728
-
729
- #: static/game/js/sharing.js:11
730
- msgid "No"
731
- msgstr "Hayır"
732
-
733
- #: static/game/js/sharing.js:129
734
- msgid "Unshare with all"
735
- msgstr "Tümüyle olan paylaşımları iptal et"
736
-
737
- #: static/game/js/sharing.js:135
738
- msgid "Share with all"
739
- msgstr "Tümüyle paylaş"
740
-