-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathen.yml
5069 lines (5055 loc) · 199 KB
/
en.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
ARIA:
nav:
common: Site navigation
course: Course navigation
lesson: Lesson navigation
activity_graph:
current_streak: "{count, plural, other {current streak}}"
info: "Next day will be at 00:00 UTC"
longest_streak: "{count, plural, other {longest streak}}"
quiz_count: "{count, plural, one {problem solved} other {problems solved}}"
steps: problems solved
adaptive:
edit:
header: Adjust adaptiveness for course
is_adaptive: Course is adaptive
more_info: Read more about adaptiveness
next: Next recommended lesson
not-enrolled: "You are not enrolled, please enroll to course and start learning."
nothing: >-
We have no more recommendations for you, you've learned everything. Congratulations!
title: Adaptive mode activated
too-boring: Lesson is too easy
too-hard: Lesson is too hard
transition_reaction:
"0": Analyzing your reply
"1": Looking for next assignment
"2": Robots still working
"3": Making some math
attachments__list-attach-file: "{size, select, 0 {Attach file} other {Attach file (max {size})}}"
attachments__list-delete-attachment-tooltip: Delete
attachments__list-download-attachment-tooltip: "Open {name}"
attachments__list-title: Attachments
attachments__list-too-big-file-warn: "Max file size to attach: {max_size}."
attachments__list-view-attachment-tooltip: "View {name}"
autotransit_off: Auto-transition off
autotransit_on: Auto-transition on
autotransit_turn_on: Turn on auto-transition
autotransit_turn_on_expl: Turn on step auto-transition when video finished
breadcrumbs__certificate-edit: Certificate
breadcrumbs__course-edit: Edit
breadcrumbs__course-grade-book: Gradebook
breadcrumbs__course-lti-edit: LTI integration
breadcrumbs__course-permissions-edit: Permissions
breadcrumbs__course-reports: Reports
breadcrumbs__course-statistics: Statistics
breadcrumbs__course-syllabus: Syllabus
breadcrumbs__home: Home
breadcrumbs__lesson: Lesson page
breadcrumbs__lesson-edit: Edit
breadcrumbs__lesson-reports: Reports
breadcrumbs__notifications-my: My events
breadcrumbs__notifications-new: New notifications
breadcrumbs__review: Review
breadcrumbs__review-session: Review session
breadcrumbs__submissions: Submissions
button__new-course: Create a course
catalog:
authors:
new-course: Create your own course
category:
similar-authors: Similar authors
similar-topics: Similar themes
filters-dialog:
free-only: Only free
language: Course language
language-values: "{lang, select, ru {Russian} en {English} other {Any}}"
reset: Reset filters
submit: Show
title: Filters
with-cert-only: Only with certificate
promo-courses:
learn-more: Learn more
recently-viewed: Recently viewed
search:
empty: >-
No results found for "<var>{query}</var>".
Try to change your search {hasAnyFilters, select,
true {query or <a href="{resetFiltersHref}">reset the filters</a>}
other {query}
}.
next-page: Next →
popular-queries: Popular queries
prev-page: ← Back
suggestioned: >-
Showing results for "<a href={suggestionHref}><var>{suggestion}</var></a>".
No results found for "<var>{query}</var>".
search-bar:
free-only: Free
input-placeholder: Course name, author or theme
language: "{lang, select, ru {Russian} en {English} other {Any language}}"
with-cert-only: With certificate
stepik-academy:
about:
description: >- # i18n ignore en-no-cyrillic
<b>Stepik Academy</b> – это программы с поддержкой преподавателя, группы и куратора от
команды Stepik c дедлайнами и проверкой заданий. Обучение платное, но оно того стоит!
learn-more: Узнать больше # i18n ignore en-no-cyrillic
learn-more-url: https://academy.stepik.org/?utm_source=stepik&utm_medium=catalog
title: >- # i18n ignore en-no-cyrillic
{index, select,
1 {Скучаете<br>по дедлайнам?}
2 {Не хватает<br>обратной связи?}
other {Скучно<br>учиться одному?}
}
certificate-editor:
auto-issue-label: Auto issue certificates
auto-issue-text:
both: >-
Learners will receive certificates automatically when they reach <b>{regular}</b> for
regular certificate, <b>{distinction}</b> for certificate with distinction.
distinction: >-
Learners will receive certificates automatically when they reach <b>{distinction}</b> for
certificate with distinction.
regular: >-
Learners will receive certificates automatically when they reach <b>{regular}</b> for regular
certificate.
display-score: Display score in certificate
download-distinction: Download certificate with distinction
download-regular: Download regular certificate
header: Certificate settings
issue-button: Issue certificates
issue-disabled: You can not issue certificates before you set minimal points.
issue-header: Issue certificates
issue-text-1: >-
<b>Attention!</b> You can manually issue certificates only after last deadline, in your course
after <b>{deadline}</b>.
issue-text-2:
both: >-
Learners who reached <b>{regular}</b> will receive a regular certificate, learners who
reached <b>{distinction}</b> will receive a certificate with distinction.
distinction: >-
Learners who reached <b>{distinction}</b> will receive a certificate with distinction.
regular: "Learners who reached <b>{regular}</b> will receive a regular certificate."
max-points: "Total points in your course:"
minimal-points-distinction: "Minimal points required for <b>certificate with distinction</b>:"
minimal-points-regular: "Minimal points required for <b>regular certificate</b>:"
org-header: Organization logo
org-label: "Image with transparency (png), height=150 px"
org-placeholder: Place for organization logo
show-distinction: Show certificate with distinction
show-regular: Show regular certificate
signs-header: Instructors signatures
signs-label: "Image with transparency (png), width=3000 px, height=484 px"
signs-placeholder: Place for signatures
upload-again: Upload again
upload-file: Upload file
certificate-page:
edit:
confirm: >-
Are you sure you want to change the certificate recipient name from '{old_fullname}' to
'{new_fullname}'?
fail: An error occurred during updating the certificate recipient name.
last-change: >-
Attention! After this change, you will no longer be able to change the name.
prompt: >-
Attention! You can change the certificate recipient name only
{count, plural, =1 {once!} other {# times!}} Enter name:
success: The certificate recipient name has been changed.
title: Edit recipient name
certificate-widget:
distinction: With distinction
goto: Go to course
grade: "{count, plural, other {#% done}}"
hidden: Hidden
hide: Hide
page_url: Open certificate page
result:
students-count: >-
The result is better than {count, plural, one {# course learner} other {# course learners}}
unhide: Unhide
visibility__settings-failed: An error occurred during updating certificate privacy settings.
visibility__settings-success: Privacy settings for certificate successfully saved.
certificate__download: Download certificate
clipboard:
click-to-copy: Click to copy
fail: Copy failed. Try again!
success: Copied!
comments__abuse: Don't like
comments__abuse-tooltip: mark comment as not liked
comments__active-order: Most discussed
comments__all: All user comments
comments__assistant-badge: Course team
comments__auth-warn: To join this discussion you have to
comments__by-date-order: Last discussions
comments__cancel-edit: Cancel
comments__cancel-new: Cancel
comments__default-order: Most liked
comments__delete: Delete
comments__delete-all: Delete all comments
comments__delete-all-confirm: Delete all comments?
comments__delete-error: Error deleting comment
comments__delete-tooltip: delete this comment
comments__deleted-by: Deleted
comments__deleted-by-user: by
comments__discussion-link: link to this discussion
comments__edit: Edit
comments__edit-tooltip: edit this comment
comments__edited: Edited by
comments__empty: Comment list is empty
comments__empty-disc-warn: Your comment is empty
comments__gradebook: Grades
comments__gradebook-tooltip: gradebook for author of this comment
comments__leave: Leave a comment
comments__leave-solution: Leave a solution
comments__load: Show discussions
comments__load-replies: load more replies
comments__moderator-badge: Course moderator
comments__network-error: Something went wrong. Refresh page for new comments.
comments__not-found: "Comment #{comment_id} has been deleted or never existed."
comments__pin: Pin
comments__pin-tooltip: show this comment on top
comments__pinned: pinned
comments__pinned-text: Comment is pinned
comments__pinned-tooltip: this comment is pinned (will be always on top)
comments__post-reply: Post reply
comments__recent-order: Recent activity
comments__replies-hide: hide replies
comments__replies-show: "show {count, plural, one {# reply} other {# replies}}"
comments__replies-toggle-tooltip: hide / show replies
comments__reply: Reply
comments__reply-link: link to this reply
comments__reply-tooltip: reply to this comment
comments__show-more-toggler: "{expanded, select, true {Show less} other {Show more}}"
comments__solutions-thread-permisison-error:
You have no permission for solutions forum. Solve step and read forum
comments__staff-badge: Stepik Team
comments__staff-replied: staff replied
comments__submissions: Submissions
comments__submissions-tooltip: submissions by author of this comment
comments__submit-error: Can't post your comment =(
comments__teacher-badge: Course staff
comments__thread-default: "{count, plural, =0 {Comments} =1 {Comment} other {Comments}}"
comments__thread-solutions: "{count, plural, =0 {Solutions} =1 {Solution} other {Solutions}}"
comments__unpin: Unpin
comments__unpin-tooltip: show comment in regular order (not pinned)
comments__without-submissions: You should solve the problem to leave a solution
common:
choose: Choose
end: ends
max-text-length: >-
Max {count, plural, one {# character} other {# characters}}
pin: Pin
price-enrolled: Enrolled
price-free: Free
show-less: Collapse
show-more: Read more
start: starts
unpin: Unpin
common__activity: Activity
common__back-link: Back
common__back-to-step-link: Back to step
common__banner-unverified-email: >-
Your email is not verified.
Please <a href="/edit-profile/email">verify</a> to continue using Stepik.
common__cancel-button: Cancel
common__catalog: Catalog
common__certificate: Certificate
common__certificate-distinction: Certificate with distinction
common__certificate-recipient: Recipient
common__challenge: Challenge
common__close: Close
common__close-window: Close window
common__collapse: Collapse
common__cookies-auth-warn: >-
Unable to log in/register. Please check
your browser's security settings and cookie settings.
common__cookies-warn: >-
Oops! Your browser seems to have cookies disabled. Make sure cookies are enabled or try opening a
new browser window.
common__course: Course
common__course-logo: Course logo
common__course-search-placeholder: Search in the course
common__delete: Delete
common__delete-failed-warn: Deletion failed.
common__download-video: Download video
common__edit: Edit
common__error-loading: >-
Failed to load {resourceName, select,
invitation {invitations}
member {members}
course {courses}
lesson {lessons}
klass {classes}
comment {comments}
other {the {resourceName} list}
}.
common__expand: Expand
common__experimental: Experimental
common__feedback: Show full feedback
common__feedback-hide: Hide
common__fixed: Mark as fixed
common__fullscreen: Fullscreen
common__hard-deadline: Hard deadline
common__hour: h
common__input-length-warn: "{count, plural, one {# character} other {# characters}} minimum"
common__learner: Learner
common__lesson: Lesson
common__lesson-image: Lesson image
common__lessons: Lessons
common__link: link
common__list-is-empty: List is empty
common__load-more-button: Load more
common__loading-text: loading...
common__login: Log in
common__logout: Logout
common__logout-confirm: Are you sure you want to log out?
common__min: min
common__notifications: Notifications
common__number-sign: "#"
common__off: "off"
common__ok-button: OK
common__oops: Something went wrong :(
common__out-of-points: "{count, plural, one {# point} other {# points}}"
common__platform-news: What's new
common__points: "{count, plural, one {# point} other {# points}}"
common__points-received: "{count, plural, other {received}}"
common__print: Print
common__problem: Problem
common__profile: Profile
common__reload: Reload
common__reports-expiration: Reports are deleted after 7 days
common__save-button: Save
common__save-failed-warn: Save failed.
common__saving-text: saving...
common__search-placeholder: Search
common__self-voting: You can't vote for your own content
common__settings: Settings
common__soft-deadline: Soft deadline
common__statement: Statement
common__step: Step
common__step-passed: "{count, plural, other {passed}}"
common__steps: "{count, plural, one {# step} other {# steps}}"
common__submission: Submission
common__submission-correct: correct
common__submission-evaluation: evaluation
common__submission-partially-correct: partially correct
common__submission-settled: received
common__submission-wrong: wrong
common__submit: Submit
common__submit_file: Submit file
common__symbols_left: "{count, plural, one {# symbol} other {# symbols}} left"
common__symbols_overflow: >-
limit exceeded by {count, plural, one {# symbol} other {# symbols}}
common__time-warn: >-
Perhaps the timezone or time on your device is set wrongly. Please check your timezone, date and
time.
common__unauth-voting: You should login for voting.
common__unsaved-warn: All unsaved changes will be lost!
common__update: Update
common__userpic: User picture
common__woof-wrong: Something went wrong. Check your internet connection and try again.
confirm:
cancel: Cancel
checkbox: I understand that this action can't be undone
ok: OK
content_advices:
action:
course_quizzes: 'add problem steps to the lessons from the <a href="{url}">{text}</a> page'
other: '<a href="{url}">{text}</a>'
course_cover: Course image is uploaded
course_lessons: There are at least 10 lessons in the course
course_quizzes: There are at least 10 problems in the course
course_sections: There are at least 2 modules in the course
course_summary: The short description is at least 100 characters long
empty_video_steps: All video steps in the course contain a video
link-text:
course_cover: edit course info
course_lessons: edit syllabus
course_quizzes: syllabus
course_sections: edit syllabus
course_summary: edit course info
empty_video_steps: check out instructor dashboard
quiz_correct_submissions: check out instructor dashboard
section_lessons: edit syllabus
section_titles: edit syllabus
step_default_texts: check out instructor dashboard
not_complete: "now: {current}"
quiz_correct_submissions: Each problem has at least one correct submission
readiness: Course readiness
readiness_progress: "Course is <b>{score}/{cost}</b> ready"
section_lessons: Each module has at least one lesson
section_titles: Each module has a non-default title
show_less: Collapse
show_more: Read more
step_default_texts: Texts in all steps are not default
copy_link_to_clipboard: Copy link
cost:
after: after
before: before
can-try-again: But you can still test yourself
deadlines:
dont-delay: ", do not delay"
hard: Points are not awarded even for the correct decision sent after
soft-halved: Only half of the points are awarded for the correct decision sent after
soft-linear: Points are awarded less every day after
discounting:
first_one: on the <strong>first</strong> attempt
first_one-desc: >-
Points are not awarded even for the correct submission sent from the second attempt
first_one-zero: not on the first attempt
first_three: with <strong>three</strong> attempts
first_three-desc: >-
Points are not awarded even for the correct submission sent from the fourth attempt
first_three-zero: after the third attempt
inverse: on this attempt
inverse-desc: Points are awarded less with each next attempt
fold: Collapse
for-submission: per submission
get: "{count, plural, one {# point} other {# points}}"
max: Maximum
more: More details
restriction-extra: >-
Submissions are not made after {count, plural, one {# attempt} other {# attempts}}
submissions-left: >-
Only {count, plural, one {<strong>#</strong> attempt} other {<strong>#</strong> attempts}}
course:
access_restricted: >-
Authors have closed the course "{courseTitle}", and you are not able to pass it for now.
add-to-wishlist:
result:
fail: Adding course to Wishlist failed, please try again.
success: "Course \"{courseTitle}\" is added to Wishlist."
static-text: Add to Wishlist
tooltip: Add to Wishlist
delete:
confirm:
cancel: Cancel
checkbox: >-
I understand that the course will be deleted permanently
and it will be impossible to restore the data
ok: Yes, delete forever
text: >-
<h4>Do you want to delete "{courseTitle}"?</h4>
<p>All lessons in it will stay and it will be possible
to add them in other courses.<br>But the learners of this course
will lose access to them, and all the related data will be lost too.</p>
result:
fail: Deleting course failed, please try again.
success: Course "{courseTitle}" has been deleted.
draft: Draft
drop:
confirm:
cancel: Cancel
ok: Drop course
text: >-
<h4>Drop course "{courseTitle}"?</h4>
<p>You don't want to learn in the course anymore?
Don't be afraid, your progress will be saved,
and you can join the course again if you want.</p>
link: Drop
result:
fail: Dropping course failed, please try again
success: You're not enrolled in "{courseTitle}" anymore.
edit-btns:
info: Edit course information
syllabus: Edit course syllabus
favorites:
in: In Favorites
info:
adaptive_info_link: Learn more about adaptive courses
adaptive_note: "This course is adaptive: it will adjust according to your skill"
certificate: Certificate
certificate_details: Certificate details
certificate_distinction_cond_title: "With distinction: "
certificate_is_issued: Issuing
certificate_is_not_issued: Not issuing
certificate_regular_cond_title: "Certificate condition: "
description_header: About the course
fill_empty: This field is empty. Please use the course editor to fill it in.
hours_to_complete: Expected time to complete
hours_to_complete_text: "{count, plural, one {# hour} other {# hours}}"
instructors_header: Instructors
lang: Language
last_deadline: Last deadline
repeat_intro_video: Repeat video
requirements_header: Requirements
reviews_header: Reviews
reviews_link: See all reviews
reviews_short_link: All reviews
selfpaced_note: This course is entirely free. All content is available now.
share_text: Share this course
share_text_short: Share
soon_note: >-
This course is entirely free. The content of this course will be available on {date}
start_date: Open date
summary_header: Summary
target_audience_header: Target audience
workload: Workload
learners_count: Total joined
private: Private course
readiness:
high_expl: The course meets the formal recommendations of Stepik
low_expl: Most likely the course is under development
remove-from-wishlist:
confirm:
cancel: Cancel
ok: Remove
text: >-
<h4>Remove course "{courseTitle}" from Wishlist?</h4>
<p>You will lose quick access to this course but will be able to find it in Catalog
later.</p>
menu-item: Remove from Wishlist
result:
fail: Removing course from Wishlist failed, please try again.
success: "Course \"{courseTitle}\" is removed from Wishlist."
static-text: In Wishlist
tooltip: Remove from Wishlist
routes:
comments:
title: Comments
information:
title: Information
instructor-dashboard:
title: Instructor dashboard
lti:
title: IMS LTI integration
news:
title: News
permissions:
title: Course access
reports:
title: Reports
reviews:
title: Reviews
scoreboard:
title: Scoreboard
statistics:
title: Statistics
syllabus:
title: Course content
sections:
default_title: New module
tariffs:
badge:
enterprise: Enterprise
pro: PRO
caption:
basic: Basic
basic_paid: Basic+
enterprise: Enterprise
pro: PRO
value: >-
{type, select,
basic {Basic}
basic_paid {Basic+}
enterprise {Enterprise}
pro {PRO}
other {}
}
invalid:
tooltip: >-
There are paid features used in this course.
<br>To be able to publish the course, change its type to <b>{type}</b>.
paid-features:
deadlines: Course deadlines
exams: Exams
lti-integration: LTI integration
section-deadlines: Module deadlines
section-discounting-policy: Module discounting policy
section-required-section: Required modules
step-free-answer-attachments: Free Response step attachments
step-instruction-type-instructor: Instructor reviews
step-quiz-admin: Linux Challenge
step-quiz-dataset: Data Challenge
step-quiz-external-grader: External grader
step-quiz-linux-code: Linux Code Challenge
step-quiz-lti-consumer: LTI consumer
step-quiz-manual-score: Manual Score
step-string-attachments: Text Problem step attachments
step-submissions-restrictions: Step submissions restrictions
toast-help-link: >-
<a target='_blank' href='https://welcome.stepik.org/en/pricing'>What's this?</a>
toast-plug-button:
enterprise: Activate Enterprise features
pro: Activate PRO features
upgrade-course-modal:
activate: "Enable {planTitle}"
dont-show-again: Do not show this window again
ok: Got it!
text1: "Wow, you found {planTitle} features!"
text2: >-
Upgrade your course to publish it with {planTitle} features.<br><a
href='https://welcome.stepik.org/en/pricing' target='_blank'>Learn about plans</a>
course-assessments:
empty: All solutions are reviewed
pending-reviews-badge: Pending instructor reviews
submission-link: Solutions
tab-caption: Instructor reviews
title: >-
{count, plural, one {# solution is} other {# solutions are}} waiting for review
course-badges:
basic: Basic
draft: Draft
paid: Paid
private: Private
course-card:
certificate: certificate
view-more: View More
workload: "{hours} h"
course-edit__new-module: New module
course-edit__save: Save
course-grade-book:
download-sign: "Download the gradebook on the "
filter: "Learner name, ID or email"
"no": No learners
not-available:
toast: "Course gradebook is available for <b>{planTitle} courses</b> only."
tooltip: "Course gradebook is available for {planTitle} courses only"
refresh-row-btn: Refresh row data
refresh-row-success: Updated
reports: reports page
title: Course gradebook
total: Course total
user: User
user-sort:
score-asc: Lowest grade first
score-des: Highest grade first
username-asc: "Name: A → Z"
username-des: "Name: Z → A"
course-grade-book-cell:
await-instructor: Waiting score from instructor
await-peer: Waiting score from learners
await-user: Learner hasn't reviewed other learners
no-sent-review: Hasn't sent for review
no-submissions: No submissions
success: "Correct submission, has already scored"
wrong: Wrong submissions only
course-index__authors: "{count, plural, =1 {Author} other {Authors}}"
course-index__cert: Certificate
course-index__enrolled-msg: You are enrolled
course-index__instructors: Show as instructors
course-index__lang: Language
course-index__workload: Workload
course-info-edit__add: Add
course-info-edit__author-placeholder: author id...
course-info-edit__authors-403: Only course admin can edit the list of authors.
course-info-edit__cover: "Upload new course logo:<br>230 x 230"
course-info-edit__instructor-placeholder: User ID
course-info-edit__instructors-403: Only course admin can edit the list of instructors.
course-info-edit__remove-author: Remove author
course-info-edit__remove-instructor: Remove instructor
course-info-edit__upload-failed: >-
Upload a valid image. The file you uploaded was either not an image or a corrupted image.
course-list-card:
course-count: "{count, plural, one {# course} other {# courses}}"
course-lti-edit__header: LTI integration settings
course-nav:
menu:
analytics: Analytics
assessments: Instructor reviews
attachments: Attachments
certificates: Certificates
comments: Comments
communications: Communications
content: Content
dashboard: Dashboard
gradebook: Gradebook
information: Information
lti: LTI integration
news: News
permissions: Access control
pricing: Price & coupons
publication: Publication
reports: Reports
revenue: "Revenue <sup>β</sup>"
reviews: Reviews
scoreboard: Scoreboard
settings: Settings
statistics: Statistics
syllabus: Syllabus
stat:
score-progress: "<b>{value}/{max}</b> points scored"
step-progress: "<b>{value}%</b> of materials learned"
course-new:
cancel: Cancel
create: Create
explanation: >-
Courses and lessons are distributed under <a
href="https://creativecommons.org/licenses/by-sa/4.0/"
target="_blank">Creative Commons (CC BY-SA 4.0)</a> license.
header: Create a new course
help-center-link: More about creating courses
note:
paid: "Learners need to pay for this course. Base price: {price}"
tariff: >-
You'll create a draft of a Basic course.
You can always upgrade to Pro for more useful features.
teaching-landing:
features:
"0": "An online course editor and a place for your course in our catalog"
"1": >-
<a href='https://support.stepik.org/hc/en-us/articles/360000159673-Types-of-assignments'
target='_blank'>20+ types</a> of assignments with autograding
"10": LTI integration
"2": Communication with students through comments and newsletters
"3": Gradebook and reports
"4": Instructor review
"5": Exams and deadlines
"6": Course access control
"7": Course certificates
"8": Exams with proctoring
"9": External grader
features-header: Share knowledge with Stepik
form:
note: >-
You'll create a draft of the Basic course. You can always upgrade to PRO for more handy
features.
submit: Create course
title-placeholder: Course title
header: Teach with Stepik
help: >-
For more details reach our
<a href='https://support.stepik.org/hc/en-us/categories/360000016274'
target='_blank'>Help Center</a>.
tips:
"0": >-
<b>Teach your students using content from other courses on Stepik.</b> Create a
<a href='https://welcome.stepik.org/en/classroom' target='_blank'>classroom</a> in
any course from the catalog and get access to your students' submissions and progress.
"1": >-
<b>Create your own open or private course</b> by choosing one of our
<a href='https://welcome.stepik.org/en/pricing' target='_blank'>plans</a>.
"2": >-
<b>Monetize your knowledge</b>. Create a
<a href='https://support.stepik.org/hc/en-us/sections/360003326714' target='_blank'>paid
course</a> and accept payments directly through Stepik.
"3": >-
<b>Arrange online competitions</b>, for example see
<a href='https://bioinf.me/en/contest' target='_blank'>Bioinformatics Contest</a>.
title: Title
title-hint: Up to 64 symbols.
course-news:
actions:
new: Add newsletter
empty:
text:
composing: No drafts found
for-author: >-
<p>If you want to inform your learners of something, you can use newsletters for this.
They will be displayed on the course page and sent to learners' emails as well.</p>
<p>Besides one-time newsletters, you can set mailouts by specific events as enrolling
in the course or passing it.</p>
<p>You can learn more about course newsletters in
<a href='https://support.stepik.org/hc/en-us/articles/360000159833' class='external'
target='_blank'>our Help Center</a></p>
for-user: There will be news about events, new materials, or other events in the course.
scheduled: No mailouts scheduled
sending: No active mailouts
sent: No mailouts
help: >-
Read more about the course news<br>
<a href='https://support.stepik.org/hc/en-us/articles/360000159833' target='_blank'>
in our documentation</a>
settings:
link-text: Letters and <br>notifications settings
title:
edit: Newsletter editor
new: Creating newsletter
course-permissions-edit:
access-personal:
description: useful option during creation process
label: Only for course team
access-public:
description: open for everyone
label: Public course
can: can
course-state:
change: Change
draft: The course has <b>not been published</b> and is only available to the course team now.
paid: The course is available for the price of <b>{price}</b>.
private: The course has been published and is only available through <b>invitations</b>.
public: The course has been published and is available <b>for everyone</b>.
group:
admins: admin
assistants: assistant
learners: learner
moderators: moderator
teachers: teacher
testers: tester
group-header:
admins: Admins
assistants: Assistants
learners: Learners
moderators: Moderators
teachers: Teachers
testers: Testers
group-right:
comments: write comments
edit: edit content
gradebook: view submissions and gradebook
learn-dates: learn without taking into account the open/close dates
manage-users: >-
manage teachers, assistants, moderators, testers, and learners on this page
peer-review: edit and approve instructor or peer reviews
pin: pin and delete comments
solve-problems: solve problems
view: view content
invitations-error-add: Error adding invitation link
invitations-error-delete: Error removing invitation link
invitations-title: Invitations
label: User ID or email
learners-limit: Up to 1000 students can take a PRO course.
load-more: Load more
loading_member: load..
lti-title: IMS LTI 1.1 Integration
members-email-error-add: "Failed to send invitation {email}"
members-email-success-add: "Invitation {email} was successfully sent"
members-error-add: Error adding user
members-error-already-exists: "{username} has already been added"
members-error-delete: Error removing user
members-success-add: User successfully added
more-about-rights: >-
More about {groupName, select,
admins {admin}
assistants {assistant}
learners {learner}
moderators {moderator}
teachers {teacher}
testers {tester}
other {}
} rights
no-edit-label: Can not access rights management.
personal-note: >-
{groupName, select,
assistants {Assistants}
moderators {Moderators}
testers {Testers}
other {Users}
} will not have access to the content when your course has "Only for course team" access
setting.
save-access: Save access settings
tariff-help-link: >-
More <a target='_blank' href='https://welcome.stepik.org/en/pricing'>about plans</a>
tariff-info: "Access settings are available for <b>{plan} courses</b> only."
transfer-ownership: Transfer ownership
transfer-ownership-description: >-
You can <a href="{transferOwnershipURL}" data-href-to-ignore>transfer ownership</a>
of the course to another user. After that, it will be included in the
new owner's subscription.
user-is-admin: is primary admin
course-promo:
about-course: About this course
about-page-widget:
button: Preview
text: There is a course landing page which learners see before enrollment
cant-be-bought-warn: >-
{forTeachers, select,
true {Please <a href="https://support.stepik.org/hc/en-us/requests/new"
target="_blank">contact support</a> in order to start selling this course.}
other {You cannot buy this course yet.}
}
certificate-section-header: Certificate
course-content: Course content
course-content-aside-link: Course content
course-includes: "This course contains:"
course-includes-aside:
challenges: >-
{count, plural, one {<b>#</b> interactive challenge} other {<b>#</b> interactive challenges}}
header: This course includes
lessons: "{count, plural, one {<b>#</b> lesson} other {<b>#</b> lessons}}"
quizzes: "{count, plural, one {<b>#</b> quiz} other {<b>#</b> quizzes}}"
video: >-
{count, plural, one {<b>#</b> hour} other {<b>#</b> hours}} of video
course-price: Price
demo: Demo access
discount-expire-date: "if paid before {dateStr}"
faq: FAQ
head-widgets:
adaptive:
caption: Adaptive course
help: What's this?
helpURL: "https://support.stepik.org/hc/en-us/articles/360002316314"
certificate: Stepik certificate
difficulty:
easy: Beginner Level
hard: Advanced Level
normal: Intermediate Level
how-you-will-learn: How you will learn
meet-instructors: Meet the Instructors
reviews: "{count, plural, one {# review} other {# reviews}}"
share-course: Share this course
share-course-direct-link: "Direct link:"
show-more: Show more
student-reviews: Learners' reviews
students: "{count, plural, one {# learner} other {# learners}}"
what-you-will-get: What you will get
what-you-will-learn: What you will learn
who-is-this-course-for: Who is this course for
course-rating:
count: of {count, plural, one {# review} other {# reviews}}
max: of {max}
course-revenue:
beta-version: >-
<b>This page is under development.</b> If you noticed any mistakes in the data, please
<a href="https://support.stepik.org/hc/en-us/requests/new" target="_blank"
>contact our support</a>.
empty:
text: Here you will find details on your revenue after the course will have been purchased once.
history:
details:
empty: No entries
tbody:
amount-refund: refund
buyer-invoice-payment-seats: >-
{count, plural, one {# seat} other {# seats}} in the course
channel: >-
{value, select,
manually {Manually}
refund {Refund}
purchase {Came via Stepik}
purchase-z-link {Came via z-link}
purchase-on-invoice {Payment on account}
other {}
}
thead:
amount: Payment
buyer: Customer
channel: Channel
date: Date
income: Earnings
promocode: Promo code
months:
empty: No entries
tbody:
thead:
month: Month
payments-by-channel: Channels
payments-total: Purchases
refunds: Refunds
total-turnover: Sales
total-user-income: Earnings
tabs: >-
{tab, select,
details {Details}
months {By month}
other {}
}
placeholder:
link-to-pricing: Enable payments
reports-link: Payments and Course referral traffic reports
summary:
beneficiary-info: "You get <b>{percent}%</b> from the course sales minus Stepik fee."
month-income: "Earnings in {monthName}"
month-turnover: "Sales in {monthName}"
total-income: Earnings
total-since-date: "Starting from {date, date, medium-date}"
total-turnover: Sales
timezone-note: "<b>Important:</b> All operations are carried out Moscow Time (MSK, UTC+3)."
title: Revenue
usd-placeholder:
text: >-
You can view your dollar sales history on <a href="https://vendors.paddle.com"
target="_blank">Paddle</a> or <a href="{reportsURL}" target="_blank">payment reports</a>.
course-settings:
about-pro-link:
text: Learn more about PRO courses
url: "https://welcome.stepik.org/en/pricing"
beneficiaries: >-
{count, plural,
=0 {
Please <a href="https://support.stepik.org/hc/en-us/requests/new" target="_blank"
>contact our support</a> to receive sales benefits from this course.
}
other {The course sales benefits go to}
}
cancel: Cancel
commission: >-
{equal, select,
true {
All the sales of this course are subject to <b>{commissionPromo}%</b> fee.
}
other {
Our sales fee is <b>{commissionPromo}%</b> if
<a href="https://support.stepik.org/hc/en-us/articles/360016290639"
target="_blank">we promote</a> your course,
or <b>{commissionBasic}%</b> if a learner buys the course through the link below:
}
}
course-access:
enabled: Open for enrollment
not-enabled: Visible for course team only
not-public: By invitations only
public: For everybody
title: Course visibility
course-type:
legacy-note: >-
If you're using advanced features, this course will become visible only for its authors on
<time>July 1, 2020</time>. Upgrade your course to PRO before that or adjust course settings
according to the basic plan to keep it published.
title: Course type
disabled-no-rights: Only the course administrators can change these settings.
disabled-not-owner:
To receive extended rights please contact <a href="{ownerURL}">{ownerName}</a>.
owner-limit-note: >-
<p>Ask <b>{ownerName}</b> to upgrade the course to PRO.</p>
<p>Or contact us at [email protected]
to become primary admin and include the course into your subscription.</p>
preview-lesson:
added: Promo lesson is added