rapid-router 5.18.0__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.
- example_project/rapid_router_test_settings.py +19 -7
- example_project/settings.py +21 -8
- example_project/urls.py +5 -6
- game/__init__.py +1 -1
- game/admin.py +7 -2
- game/character.py +8 -0
- game/decor.py +40 -0
- game/end_to_end_tests/base_game_test.py +34 -27
- game/end_to_end_tests/editor_page.py +15 -0
- game/end_to_end_tests/game_page.py +88 -20
- game/end_to_end_tests/selenium_test_case.py +1 -20
- game/end_to_end_tests/test_cow_crashes.py +3 -5
- game/end_to_end_tests/test_level_editor.py +273 -10
- game/end_to_end_tests/test_level_selection.py +25 -3
- game/end_to_end_tests/test_play_through.py +222 -127
- game/end_to_end_tests/test_python_levels.py +41 -7
- game/end_to_end_tests/test_saving_workspace.py +2 -1
- game/forms.py +7 -1
- game/level_management.py +26 -11
- game/messages.py +899 -337
- game/migrations/0001_squashed_0025_levels_ordering_pt1.py +19 -1
- game/migrations/0026_levels_pt2.py +13 -2
- game/migrations/0032_cannot_turn_left_level.py +13 -2
- game/migrations/0033_recursion_level.py +13 -2
- game/migrations/0034_joes_level.py +13 -2
- game/migrations/0035_disable_route_score_level_70.py +0 -2
- game/migrations/0036_level_score_73.py +0 -2
- game/migrations/0037_level_score_79.py +0 -2
- game/migrations/0038_level_score_40.py +0 -1
- game/migrations/0042_level_score_73.py +0 -2
- game/migrations/0048_add_cow_field_and_blocks.py +0 -2
- game/migrations/0049_level_score_34.py +0 -2
- game/migrations/0050_level_score_40.py +0 -2
- game/migrations/0051_level_score_49.py +0 -1
- game/migrations/0086_loop_levels.py +13 -2
- game/migrations/0092_disable_algo_score_in_custom_levels.py +28 -0
- game/migrations/0093_alter_level_character_name.py +18 -0
- game/migrations/0094_add_hint_lesson_subtitle_to_levels.py +28 -0
- game/migrations/0095_level_commands.py +18 -0
- game/migrations/0096_alter_level_commands.py +18 -0
- game/migrations/0097_add_python_den_levels.py +1515 -0
- game/migrations/0098_add_episode_link_fields.py +44 -0
- game/migrations/0099_python_episodes_links.py +103 -0
- game/migrations/0100_reorder_python_levels.py +179 -0
- game/migrations/0101_rename_episodes.py +45 -0
- game/migrations/0102_reoder_episodes_13_14.py +136 -0
- game/migrations/0103_level_1015_solution.py +26 -0
- game/migrations/0104_remove_level_direct_drive.py +17 -0
- game/migrations/0105_delete_invalid_attempts.py +18 -0
- game/migrations/0106_fields_to_snake_case.py +48 -0
- game/migrations/0107_rename_worksheet_link_episode_student_worksheet_link.py +18 -0
- game/migrations/0108_episode_indy_worksheet_link.py +18 -0
- game/migrations/0109_create_episodes_23_and_24.py +99 -0
- game/migrations/0110_remove_episode_indy_worksheet_link_and_more.py +100 -0
- game/migrations/0111_create_worksheets.py +149 -0
- game/migrations/0112_worksheet_locked_classes.py +21 -0
- game/migrations/0113_level_needs_approval.py +18 -0
- game/migrations/0114_default_and_non_student_levels_no_approval.py +31 -0
- game/migrations/0115_level_level__default_does_not_need_approval.py +22 -0
- game/migrations/0116_update_worksheet_video_links.py +68 -0
- game/migrations/0117_update_solutions_to_if_else.py +61 -0
- game/models.py +127 -17
- game/permissions.py +51 -19
- game/python_den_urls.py +26 -0
- game/random_road.py +9 -9
- game/serializers.py +12 -17
- game/static/django_reverse_js/js/reverse.js +171 -0
- game/static/game/css/LilitaOne-Regular.ttf +0 -0
- game/static/game/css/backgrounds.css +8 -12
- game/static/game/css/dataTables.custom.css +3 -2
- game/static/game/css/editor.css +47 -0
- game/static/game/css/game.css +37 -43
- game/static/game/css/game_screen.css +16 -0
- game/static/game/css/level_editor.css +5 -0
- game/static/game/css/level_selection.css +17 -2
- game/static/game/image/Python_Den_hero_student.png +0 -0
- game/static/game/image/Python_levels_page.svg +1954 -0
- game/static/game/image/characters/front_view/Electric_van.svg +448 -0
- game/static/game/image/characters/top_view/Electric_van.svg +448 -0
- game/static/game/image/decor/city/solar_panel.svg +1200 -0
- game/static/game/image/decor/farm/solar_panel.svg +86 -0
- game/static/game/image/decor/grass/solar_panel.svg +86 -0
- game/static/game/image/decor/snow/solar_panel.svg +173 -0
- game/static/game/image/electric_van.svg +448 -0
- game/static/game/image/icons/description.svg +1 -0
- game/static/game/image/icons/hint.svg +1 -0
- game/static/game/image/icons/python.svg +1 -1
- game/static/game/image/pigeon.svg +684 -0
- game/static/game/image/python_den_header.svg +19 -0
- game/static/game/js/animation.js +65 -24
- game/static/game/js/blockly/msg/js/bg.js +52 -1
- game/static/game/js/blockly/msg/js/ca.js +52 -1
- game/static/game/js/blockly/msg/js/en-gb.js +2 -0
- game/static/game/js/blockly/msg/js/en.js +2 -0
- game/static/game/js/blockly/msg/js/es.js +52 -1
- game/static/game/js/blockly/msg/js/fr.js +2 -0
- game/static/game/js/blockly/msg/js/hi.js +2 -0
- game/static/game/js/blockly/msg/js/it.js +52 -1
- game/static/game/js/blockly/msg/js/pl.js +52 -1
- game/static/game/js/blockly/msg/js/pt-br.js +52 -1
- game/static/game/js/blockly/msg/js/ru.js +52 -1
- game/static/game/js/blockly/msg/js/ur.js +52 -1
- game/static/game/js/blocklyCustomBlocks.js +93 -52
- game/static/game/js/button.js +12 -0
- game/static/game/js/cow.js +11 -7
- game/static/game/js/drawing.js +68 -29
- game/static/game/js/editor.js +23 -0
- game/static/game/js/game.js +74 -110
- game/static/game/js/level_editor.js +646 -274
- game/static/game/js/level_moderation.js +33 -2
- game/static/game/js/level_selection.js +1 -1
- game/static/game/js/loadLanguages.js +2 -2
- game/static/game/js/model.js +32 -2
- game/static/game/js/pythonControl.js +14 -1
- game/static/game/js/scoreboard.js +0 -37
- game/static/game/js/scoreboardSharedLevels.js +48 -0
- game/static/game/js/skulpt/skulpt-stdlib.js +1 -1
- game/static/game/js/sound.js +52 -5
- game/static/game/raphael_image/characters/top_view/Electric_van.svg +448 -0
- game/static/game/raphael_image/decor/city/solar_panel.svg +1200 -0
- game/static/game/raphael_image/decor/farm/solar_panel.svg +86 -0
- game/static/game/raphael_image/decor/grass/solar_panel.svg +86 -0
- game/static/game/raphael_image/decor/snow/solar_panel.svg +173 -0
- game/static/game/raphael_image/pigeon.svg +685 -0
- game/static/game/sass/game.scss +2 -2
- game/static/game/sound/clown_horn.mp3 +0 -0
- game/static/game/sound/clown_horn.ogg +0 -0
- game/static/game/sound/electric_van_starting.mp3 +0 -0
- game/static/game/sound/electric_van_starting.ogg +0 -0
- game/static/game/sound/pigeon.mp3 +0 -0
- game/static/game/sound/pigeon.ogg +0 -0
- game/static/game/sound/sleigh_bells.mp3 +0 -0
- game/static/game/sound/sleigh_bells.ogg +0 -0
- game/static/game/sound/sleigh_crash.mp3 +0 -0
- game/static/game/sound/sleigh_crash.ogg +0 -0
- game/templates/game/base.html +34 -14
- game/templates/game/basenonav.html +11 -5
- game/templates/game/game.html +142 -38
- game/templates/game/level_editor.html +340 -236
- game/templates/game/level_moderation.html +19 -6
- game/templates/game/level_selection.html +18 -110
- game/templates/game/python_den_level_selection.html +291 -0
- game/templates/game/python_den_worksheet.html +101 -0
- game/templates/game/scoreboard.html +83 -64
- game/tests/test_level_editor.py +94 -26
- game/tests/test_level_selection.py +149 -46
- game/tests/test_python_den_worksheet.py +85 -0
- game/tests/test_scoreboard.py +34 -7
- game/tests/utils/level.py +32 -26
- game/theme.py +5 -5
- game/urls.py +199 -61
- game/views/language_code_conversions.py +86 -86
- game/views/level.py +155 -63
- game/views/level_editor.py +88 -55
- game/views/level_moderation.py +23 -0
- game/views/level_selection.py +116 -47
- game/views/level_solutions.py +491 -106
- game/views/scoreboard.py +76 -51
- game/views/worksheet.py +25 -0
- rapid_router-7.6.8.dist-info/METADATA +174 -0
- {rapid_router-5.18.0.dist-info → rapid_router-7.6.8.dist-info}/RECORD +164 -104
- {rapid_router-5.18.0.dist-info → rapid_router-7.6.8.dist-info}/WHEEL +1 -1
- example_project/manage.py +0 -10
- game/static/game/image/actions/go.svg +0 -18
- game/static/game/js/js-reverse.js +0 -14
- game/static/game/js/pqselect.min.js +0 -9
- game/static/game/js/widget-scroller.js +0 -906
- rapid_router-5.18.0.dist-info/METADATA +0 -17
- {rapid_router-5.18.0.dist-info → rapid_router-7.6.8.dist-info/licenses}/LICENSE.md +0 -0
- {rapid_router-5.18.0.dist-info → rapid_router-7.6.8.dist-info}/top_level.txt +0 -0
game/urls.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
from django.
|
|
1
|
+
from django.urls import include, path, re_path
|
|
2
2
|
from django.views.i18n import JavaScriptCatalog
|
|
3
|
-
from
|
|
3
|
+
from django_reverse_js.views import urls_js
|
|
4
4
|
|
|
5
5
|
from game.views.api import (
|
|
6
6
|
level_list,
|
|
@@ -50,97 +50,235 @@ from game.views.level_editor import (
|
|
|
50
50
|
owned_levels,
|
|
51
51
|
shared_levels,
|
|
52
52
|
)
|
|
53
|
-
from game.views.level_moderation import level_moderation
|
|
54
|
-
from game.views.level_selection import
|
|
55
|
-
from game.views.scoreboard import
|
|
53
|
+
from game.views.level_moderation import level_moderation, approve_level
|
|
54
|
+
from game.views.level_selection import blockly_levels, random_level_for_episode
|
|
55
|
+
from game.views.scoreboard import blockly_scoreboard
|
|
56
56
|
|
|
57
57
|
urlpatterns = [
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
58
|
+
re_path(r"^$", blockly_levels, name="levels"),
|
|
59
|
+
re_path(r"^submit/$", submit_attempt, name="submit_attempt"),
|
|
60
|
+
re_path(
|
|
61
|
+
r"^(?P<level_name>[A-Z0-9]+)/$",
|
|
62
|
+
play_default_level,
|
|
63
|
+
name="play_default_level",
|
|
64
|
+
),
|
|
65
|
+
re_path(
|
|
66
|
+
r"^custom/(?P<levelId>[0-9]+)/$",
|
|
67
|
+
play_custom_level,
|
|
68
|
+
name="play_custom_level",
|
|
69
|
+
),
|
|
70
|
+
re_path(
|
|
71
|
+
r"^episode/(?P<episodeId>[0-9]+)/$", start_episode, name="start_episode"
|
|
72
|
+
),
|
|
73
|
+
re_path(
|
|
74
|
+
r"^levels/random/([0-9]+)/$",
|
|
75
|
+
random_level_for_episode,
|
|
76
|
+
name="random_level_for_episode",
|
|
77
|
+
),
|
|
78
|
+
re_path(r"^scoreboard/$", blockly_scoreboard, name="scoreboard"),
|
|
79
|
+
re_path(
|
|
66
80
|
r"^workspace/",
|
|
67
81
|
include(
|
|
68
82
|
[
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
83
|
+
re_path(
|
|
84
|
+
r"^load/(?P<workspaceID>[0-9]+)/$",
|
|
85
|
+
load_workspace,
|
|
86
|
+
name="load_workspace",
|
|
87
|
+
),
|
|
88
|
+
re_path(
|
|
89
|
+
r"^load_list/$",
|
|
90
|
+
load_list_of_workspaces,
|
|
91
|
+
name="load_list_of_workspaces",
|
|
92
|
+
),
|
|
93
|
+
re_path(r"^save/$", save_workspace, name="save_workspace"),
|
|
94
|
+
re_path(
|
|
95
|
+
r"^save/(?P<workspaceID>[0-9]+)/$",
|
|
96
|
+
save_workspace,
|
|
97
|
+
name="save_workspace",
|
|
98
|
+
),
|
|
99
|
+
re_path(
|
|
100
|
+
r"^delete/(?P<workspaceID>[0-9]+)/$",
|
|
101
|
+
delete_workspace,
|
|
102
|
+
name="delete_workspace",
|
|
103
|
+
),
|
|
104
|
+
re_path(
|
|
105
|
+
r"^solution/(?P<level_name>[0-9]+)/$",
|
|
106
|
+
load_workspace_solution,
|
|
107
|
+
name="load_workspace_solution",
|
|
108
|
+
),
|
|
75
109
|
]
|
|
76
110
|
),
|
|
77
111
|
),
|
|
78
|
-
|
|
112
|
+
re_path(
|
|
79
113
|
r"^level_moderation/",
|
|
80
114
|
include(
|
|
81
115
|
[
|
|
82
|
-
|
|
83
|
-
|
|
116
|
+
re_path(r"^$", level_moderation, name="level_moderation"),
|
|
117
|
+
re_path(
|
|
118
|
+
r"^delete/(?P<levelID>[0-9]+)/$",
|
|
119
|
+
delete_level,
|
|
120
|
+
name="delete_level",
|
|
121
|
+
),
|
|
122
|
+
re_path(
|
|
123
|
+
r"^approve/(?P<levelID>[0-9]+)/$",
|
|
124
|
+
approve_level,
|
|
125
|
+
name="approve_level",
|
|
126
|
+
),
|
|
84
127
|
]
|
|
85
128
|
),
|
|
86
129
|
),
|
|
87
|
-
|
|
130
|
+
re_path(
|
|
88
131
|
r"^level_editor/",
|
|
89
132
|
include(
|
|
90
133
|
[
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
134
|
+
re_path(r"^$", level_editor, name="level_editor"),
|
|
135
|
+
re_path(
|
|
136
|
+
r"^(?P<levelId>[0-9]+)/$",
|
|
137
|
+
level_editor,
|
|
138
|
+
name="level_editor_chosen_level",
|
|
139
|
+
),
|
|
140
|
+
re_path(
|
|
141
|
+
r"^play_anonymous/(?P<levelId>[0-9]+)/$",
|
|
142
|
+
play_anonymous_level,
|
|
143
|
+
name="play_anonymous_level",
|
|
144
|
+
),
|
|
145
|
+
re_path(
|
|
95
146
|
r"^play_custom/(?P<levelId>[0-9]+)/$",
|
|
96
147
|
play_custom_level_from_editor,
|
|
97
148
|
name="play_custom_level_from_editor",
|
|
98
149
|
),
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
150
|
+
re_path(
|
|
151
|
+
r"^get/(?P<levelID>[0-9]+)/$",
|
|
152
|
+
load_level_for_editor,
|
|
153
|
+
name="load_level_for_editor",
|
|
154
|
+
),
|
|
155
|
+
re_path(
|
|
156
|
+
r"^delete/(?P<levelId>[0-9]+)/$",
|
|
157
|
+
delete_level_for_editor,
|
|
158
|
+
name="delete_level_for_editor",
|
|
159
|
+
),
|
|
160
|
+
re_path(
|
|
161
|
+
r"^save/$",
|
|
162
|
+
save_level_for_editor,
|
|
163
|
+
name="save_level_for_editor",
|
|
164
|
+
),
|
|
165
|
+
re_path(
|
|
166
|
+
r"^save/(?P<levelId>[0-9]+)/$",
|
|
167
|
+
save_level_for_editor,
|
|
168
|
+
name="save_level_for_editor",
|
|
169
|
+
),
|
|
170
|
+
re_path(
|
|
171
|
+
r"^random/$",
|
|
172
|
+
generate_random_map_for_editor,
|
|
173
|
+
name="generate_random_map_for_editor",
|
|
174
|
+
),
|
|
175
|
+
re_path(
|
|
105
176
|
r"^get_sharing_information/(?P<levelID>[0-9]+)/$",
|
|
106
177
|
SharingInformationForEditor.as_view(),
|
|
107
178
|
name="get_sharing_information_for_editor",
|
|
108
179
|
),
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
180
|
+
re_path(
|
|
181
|
+
r"^share/(?P<levelID>[0-9]+)/$",
|
|
182
|
+
ShareLevelView.as_view(),
|
|
183
|
+
name="share_level_for_editor",
|
|
184
|
+
),
|
|
185
|
+
re_path(r"^levels/owned/$", owned_levels, name="owned_levels"),
|
|
186
|
+
re_path(
|
|
187
|
+
r"^levels/shared/$", shared_levels, name="shared_levels"
|
|
188
|
+
),
|
|
112
189
|
]
|
|
113
190
|
),
|
|
114
191
|
),
|
|
115
|
-
|
|
116
|
-
|
|
192
|
+
re_path(
|
|
193
|
+
r"^api-auth/",
|
|
194
|
+
include("rest_framework.urls", namespace="rest_framework"),
|
|
195
|
+
),
|
|
196
|
+
re_path(
|
|
117
197
|
r"^api/",
|
|
118
198
|
include(
|
|
119
199
|
[
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
200
|
+
re_path(r"^$", api_root),
|
|
201
|
+
re_path(r"^blocks/$", block_list, name="block-list"),
|
|
202
|
+
re_path(
|
|
203
|
+
r"^blocks/(?P<pk>[0-9]+)/$",
|
|
204
|
+
block_detail,
|
|
205
|
+
name="block-detail",
|
|
206
|
+
),
|
|
207
|
+
re_path(
|
|
208
|
+
r"^characters/$", character_list, name="character-list"
|
|
209
|
+
),
|
|
210
|
+
re_path(
|
|
211
|
+
r"^characters/(?P<pk>[0-9]+)/$",
|
|
212
|
+
character_detail,
|
|
213
|
+
name="character-detail",
|
|
214
|
+
),
|
|
215
|
+
re_path(r"^decors/$", decor_list, name="decor-list"),
|
|
216
|
+
re_path(
|
|
217
|
+
r"^decors/(?P<pk>[0-9]+)/$",
|
|
218
|
+
decor_detail,
|
|
219
|
+
name="decor-detail",
|
|
220
|
+
),
|
|
221
|
+
re_path(r"^episodes/$", episode_list, name="episode-list"),
|
|
222
|
+
re_path(
|
|
223
|
+
r"^episodes/(?P<pk>[0-9]+)/$",
|
|
224
|
+
episode_detail,
|
|
225
|
+
name="episode-detail",
|
|
226
|
+
),
|
|
227
|
+
re_path(
|
|
228
|
+
r"^episodes/(?P<pk>[0-9]+)/levels/$",
|
|
229
|
+
level_for_episode,
|
|
230
|
+
name="level-for-episode",
|
|
231
|
+
),
|
|
232
|
+
re_path(r"^levels/$", level_list, name="level-list"),
|
|
233
|
+
re_path(
|
|
234
|
+
r"^levels/(?P<pk>[0-9]+)/$",
|
|
235
|
+
level_detail,
|
|
236
|
+
name="level-detail",
|
|
237
|
+
),
|
|
238
|
+
re_path(
|
|
239
|
+
r"^levels/(?P<pk>[0-9]+)/blocks/$",
|
|
240
|
+
levelblock_for_level,
|
|
241
|
+
name="levelblock-for-level",
|
|
242
|
+
),
|
|
243
|
+
re_path(
|
|
244
|
+
r"^levels/(?P<pk>[0-9]+)/decors/$",
|
|
245
|
+
leveldecor_for_level,
|
|
246
|
+
name="leveldecor-for-level",
|
|
247
|
+
),
|
|
248
|
+
re_path(
|
|
249
|
+
r"^levels/(?P<pk>[0-9]+)/map/$",
|
|
250
|
+
map_for_level,
|
|
251
|
+
name="map-for-level",
|
|
252
|
+
),
|
|
253
|
+
re_path(
|
|
254
|
+
r"^levels/(?P<pk>[0-9]+)/mode/$",
|
|
255
|
+
mode_for_level,
|
|
256
|
+
name="mode-for-level",
|
|
257
|
+
),
|
|
258
|
+
re_path(
|
|
259
|
+
r"^levelblocks/(?P<pk>[0-9]+)/$",
|
|
260
|
+
levelblock_detail,
|
|
261
|
+
name="levelblock-detail",
|
|
262
|
+
),
|
|
263
|
+
re_path(
|
|
264
|
+
r"^leveldecors/(?P<pk>[0-9]+)/$",
|
|
265
|
+
leveldecor_detail,
|
|
266
|
+
name="leveldecor-detail",
|
|
267
|
+
),
|
|
268
|
+
re_path(r"^maps/$", map_list, name="map-list"),
|
|
269
|
+
re_path(r"^themes/$", theme_list, name="theme-list"),
|
|
270
|
+
re_path(
|
|
271
|
+
r"^themes/(?P<pk>[0-9]+)/$",
|
|
272
|
+
theme_detail,
|
|
273
|
+
name="theme-detail",
|
|
274
|
+
),
|
|
141
275
|
]
|
|
142
276
|
),
|
|
143
277
|
),
|
|
144
|
-
|
|
145
|
-
|
|
278
|
+
path("reverse.js", urls_js, name="js-reverse"),
|
|
279
|
+
re_path(
|
|
280
|
+
r"^js-i18n/$",
|
|
281
|
+
JavaScriptCatalog.as_view(packages=["game"]),
|
|
282
|
+
name="rapid-router/javascript-catalog",
|
|
283
|
+
),
|
|
146
284
|
]
|
|
@@ -2,89 +2,89 @@
|
|
|
2
2
|
# although all these languages have built-in translations for the generic blocks
|
|
3
3
|
|
|
4
4
|
language_code_dict = {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
}
|
|
5
|
+
# "ab": "аҧсуа бызшәа",
|
|
6
|
+
# "ar": "العربية",
|
|
7
|
+
# "az": "azərbaycan",
|
|
8
|
+
# "ba": "Башҡорт теле",
|
|
9
|
+
# "bcc": "بلۏچی",
|
|
10
|
+
# "be": "беларуская",
|
|
11
|
+
# "be-tarask": "тарашкевіца",
|
|
12
|
+
"bg": "български",
|
|
13
|
+
# "bn": "বাংলা",
|
|
14
|
+
# "br": "Brezhoneg",
|
|
15
|
+
"ca": "Català",
|
|
16
|
+
# "cs": "čeština",
|
|
17
|
+
# "da": "Dansk",
|
|
18
|
+
# "de": "Deutsch",
|
|
19
|
+
# "diq": "Zazakî",
|
|
20
|
+
# "dty": "डोटेली",
|
|
21
|
+
# "el": "Ελληνικά",
|
|
22
|
+
"en": "English",
|
|
23
|
+
"en-gb": "English (UK)",
|
|
24
|
+
# "eo": "Esperanto",
|
|
25
|
+
"es": "Español",
|
|
26
|
+
# "et": "Eesti",
|
|
27
|
+
# "eu": "Euskara",
|
|
28
|
+
# "fa": "فارسی",
|
|
29
|
+
# "fi": "Suomi",
|
|
30
|
+
"fr": "Français",
|
|
31
|
+
# "gl": "Galego",
|
|
32
|
+
# "gor": "Hulontalo",
|
|
33
|
+
# "ha": "Hausa",
|
|
34
|
+
# "he": "עברית",
|
|
35
|
+
"hi": "हिन्दी",
|
|
36
|
+
# "hrx": "Hunsrik",
|
|
37
|
+
# "hu": "Magyar",
|
|
38
|
+
# "hy": "հայերեն",
|
|
39
|
+
# "ia": "Interlingua",
|
|
40
|
+
# "id": "Bahasa Indonesia",
|
|
41
|
+
# "ig": "Igbo",
|
|
42
|
+
# "is": "íslenska",
|
|
43
|
+
# "it": "Italiano",
|
|
44
|
+
# "ja": "日本語",
|
|
45
|
+
# "kab": "Taqbaylit",
|
|
46
|
+
# "ko": "한국어",
|
|
47
|
+
# "lb": "Lëtzebuergesch",
|
|
48
|
+
# "lki": "لهکی",
|
|
49
|
+
# "lo": "ລາວ",
|
|
50
|
+
# "lrc": "لۊری شومالی",
|
|
51
|
+
# "lt": "Lietuvių",
|
|
52
|
+
# "lv": "Latviešu",
|
|
53
|
+
# "mk": "македонски",
|
|
54
|
+
# "mnw": "ဘာသာမန်",
|
|
55
|
+
# "ms": "Bahasa Malaysia",
|
|
56
|
+
# "nb": "Norsk bokmål",
|
|
57
|
+
# "nl": "Nederlands",
|
|
58
|
+
# "oc": "Occitan",
|
|
59
|
+
"pl": "Polski",
|
|
60
|
+
# "pms": "Piemontèis",
|
|
61
|
+
# "pt": "Português",
|
|
62
|
+
"pt-br": "Português (Brasil)",
|
|
63
|
+
# "ro": "Română",
|
|
64
|
+
"ru": "русский",
|
|
65
|
+
# "sc": "Sardu",
|
|
66
|
+
# "sd": "سنڌي",
|
|
67
|
+
# "shn": "လိၵ်ႈတႆး",
|
|
68
|
+
# "sk": "Slovenčina",
|
|
69
|
+
# "skr-arab": "سرائیکی",
|
|
70
|
+
# "sl": "Slovenščina",
|
|
71
|
+
# "sq": "Shqip",
|
|
72
|
+
# "sr": "српски",
|
|
73
|
+
# "sr-latn": "Srpski",
|
|
74
|
+
# "sv": "Svenska",
|
|
75
|
+
# "ta": "தமிழ்",
|
|
76
|
+
# "tcy": "ತುಳು",
|
|
77
|
+
# "te": "తెలుగు",
|
|
78
|
+
# "th": "ไทย",
|
|
79
|
+
# "tl": "Tagalog",
|
|
80
|
+
# "tlh": "tlhIngan Hol",
|
|
81
|
+
# "tr": "Türkçe",
|
|
82
|
+
# "ug-arab": " ئۇيغۇرچە",
|
|
83
|
+
# "uk": "українська",
|
|
84
|
+
# "ur": "اردو",
|
|
85
|
+
# "vi": "Tiếng Việt",
|
|
86
|
+
# "xmf": "მარგალური ნინა",
|
|
87
|
+
# "yo": "Èdè Yorùbá",
|
|
88
|
+
# "zh-hans": "简体中文",
|
|
89
|
+
# "zh-hant": "繁體中文"
|
|
90
|
+
}
|