Newer
Older
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
msgstr ""
"გთხოვთ, დაადასტურეთ, რომ თქვენი ვებკამერა შეერთებულია და თქვენ შესაძლებლობა "
"მიეცით თქვენს ბრაუზერს ჰქონდეს მასთან წვდომა."
#: lms/static/js/verify_student/views/webcam_photo_view.js
msgid "No Webcam Detected"
msgstr "ვებკამერა ვერ მოიძებნა"
#: lms/static/js/verify_student/views/webcam_photo_view.js
msgid "You don't seem to have a webcam connected."
msgstr "როგორც ჩანს ვებკამერა არ არის მიერთებული."
#: lms/static/js/verify_student/views/webcam_photo_view.js
msgid "Double-check that your webcam is connected and working to continue."
msgstr ""
"გასაგრეძელებლად გადაამოწმეთ, რომ თქვენი ვებკამერა მიერთებულია და მუშაობს."
#: lms/static/js/verify_student/views/webcam_photo_view.js
msgid "Photo Captured successfully."
msgstr "ფოტო გადაღება წარმატებით განხორციელდა."
#: lms/static/js/verify_student/views/webcam_photo_view.js
msgid "No Flash Detected"
msgstr " Flash-ის პოვნა ვერ მოხერხდა"
#: lms/static/js/verify_student/views/webcam_photo_view.js
msgid ""
"You don't seem to have Flash installed. Get Flash to continue your "
"verification."
msgstr ""
"როგორც სჩანს Flash დაყენებული არ გაქვთ. დააყენეთ Flash თქვენი დადასტურების "
"გასაგრძელებლად."
#: lms/static/js/views/fields.js
msgid "Editable"
msgstr "შესაძლებელია რედაქტირება"
#: lms/static/js/views/fields.js
msgid "Validation Error"
msgstr "შემოწმების უზუსტობა"
#: lms/static/js/views/fields.js
msgid "In Progress"
msgstr "მიმდინარეობს დამუშავება"
#: lms/static/js/views/fields.js
msgid "Placeholder"
msgstr "ადგილის შემავსებელი"
#: lms/static/js/views/file_uploader.js
msgid "Your upload of '{file}' succeeded."
msgstr "ფაილი '{file}' წარმატებით აიტვირთა."
#: lms/static/js/views/file_uploader.js
msgid "Your upload of '{file}' failed."
msgstr "ფაილის '{file}' ატვირთვა ვერ მოხერხდა."
#: lms/static/js/views/image_field.js
msgid "Upload an image"
msgstr "სურათის ატვირთვა"
#: lms/static/js/views/image_field.js
msgid "Change image"
msgstr "სურათის შეცვლა"
#: lms/static/js/views/image_field.js
msgid "Image"
msgstr "გამოსახულება"
#: lms/static/js/views/image_field.js
msgid "An error has occurred. Refresh the page, and then try again."
msgstr "დაფიქსირდა შეცდომა. განაახლეთ გვერდი და შემდეგ კიდევ სცადეთ."
#: lms/static/js/views/image_field.js
msgid "The file must be at least {size} in size."
msgstr "ფაილი სულ ცოტა {size} ზომის უნდა იყოს."
#: lms/static/js/views/image_field.js
msgid "The file must be smaller than {size} in size."
msgstr "ფაილი ზომით {size}-ზე ნაკლები უნდა იყოს."
#: lms/static/js/views/image_field.js
msgid ""
"Upload is in progress. To avoid errors, stay on this page until the process "
"is complete."
msgstr ""
"მიმდინარეობს ატვირთვა. შეცდომების ასარიდებლად, პროცესი დასრულებამდე დარჩით "
"ამ გვერდზე."
#: lms/static/js/views/image_field.js
msgid ""
"Removal is in progress. To avoid errors, stay on this page until the process"
" is complete."
msgstr ""
"მიმდინარეობს გაუქმება. შეცდომების ასარიდებლად, პროცესის დასრულებამდე დარჩით "
"ამ გვერდზე."
#: lms/static/js/views/image_field.js
msgid "bytes"
msgstr "ბაიტი"
#: lms/static/js/views/image_field.js
msgid "KB"
msgstr "კბაიტი"
#: lms/static/js/views/image_field.js
msgid "MB"
msgstr "მბაიტი"
#: lms/static/lms/js/preview/preview_factory.js
msgid "Course is not yet visible to students."
msgstr "კურსი ჯერ არ არის სტუდენტებისთვის ხილული."
#: lms/static/lms/js/preview/preview_factory.js
msgid ""
"You cannot view the course as a student or beta tester before the course "
"release date."
msgstr ""
"თქვენ არ შეგიძლიათ კურსისნახვა როგორც სტუდენტს ან ბეტა ტესტერს კურსის "
"გამოშვების თარიღამდე."
#: lms/templates/courseware/progress_graph.js
msgid "Overall Score"
msgstr "საერთო შეფასება"
#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js
msgid "Bookmark this page"
msgstr ""
#: openedx/features/course_experience/static/course_experience/js/CourseGoals.js
msgid "Thank you for setting your course goal to {goal}!"
msgstr ""
#: openedx/features/course_experience/static/course_experience/js/CourseHome.js
msgid "You have successfully updated your goal."
msgstr ""
#: openedx/features/course_experience/static/course_experience/js/CourseHome.js
msgid "There was an error updating your goal."
msgstr ""
#: lms/templates/ccx/schedule.underscore
msgid "Expand All"
msgstr "ყველას გახსნა"
#: lms/templates/ccx/schedule.underscore
msgid "Collapse All"
msgstr "ყველას აკეცვა"
#: openedx/features/course_search/static/course_search/js/views/search_results_view.js
msgid "{total_results} result"
msgid_plural "{total_results} results"
msgstr[0] ""
msgstr[1] ""
#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js
msgid "Profile Visibility:"
msgstr ""
#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js
msgid "Limited Profile"
msgstr ""
#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js
msgid "Full Profile"
msgstr ""
#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js
msgid "Joined"
msgstr ""
#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js
msgid "Joined Date"
msgstr ""
#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js
msgid "Location"
msgstr ""
#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js
msgid "Add Country"
msgstr ""
#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js
msgid "Add language"
msgstr ""
#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js
msgid "About me"
msgstr ""
#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js
msgid ""
"Tell other learners a little about yourself: where you live, what your "
"interests are, why you're taking courses, or what you hope to learn."
msgstr ""
#: openedx/features/learner_profile/static/learner_profile/js/views/badge_list_container.js
msgid "Accomplishments Pagination"
msgstr ""
#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_fields.js
msgid "Account Settings page."
msgstr ""
#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_fields.js
msgid ""
"You must specify your birth year before you can share your full profile. To "
"specify your birth year, go to the {account_settings_page_link}"
msgstr ""
#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_fields.js
msgid ""
"You must be over 13 to share a full profile. If you are over 13, make sure "
"that you have specified a birth year on the {account_settings_page_link}"
msgstr ""
#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_fields.js
msgid "Profile Image"
msgstr "პროფილის სურათი"
#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_fields.js
msgid "Profile image for {username}"
msgstr ""
#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_view.js
msgid "About Me"
msgstr ""
#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_view.js
msgid "Accomplishments"
msgstr ""
#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_view.js
msgid "Profile"
msgstr ""
#: cms/static/cms/js/main.js cms/static/js/views/active_video_upload_list.js
#: cms/static/js/views/video_transcripts.js
msgid ""
"This may be happening because of an error with our server or your internet "
"connection. Try refreshing the page or making sure you are online."
msgstr ""
#: cms/static/cms/js/main.js
msgid "Studio's having trouble saving your work"
msgstr ""
#: cms/static/cms/js/xblock/cms.runtime.v1.js
msgid "OpenAssessment Save Error"
msgstr ""
#: cms/static/js/base.js
msgid "This link will open in a new browser window/tab"
msgstr ""
#: cms/static/js/base.js
msgid "This link will open in a modal window"
msgstr ""
#: cms/static/js/certificates/models/certificate.js
msgid "Certificate name is required."
msgstr "სერტიფიკატის სახელი სავალდებულოა."
#: cms/static/js/certificates/models/certificate.js
msgid "Signatory field(s) has invalid data."
msgstr "ხელმოწერის ველში(ებში) არასწორი მონაცემებია."
#: cms/static/js/certificates/views/certificate_details.js
msgid "Edit this certificate?"
msgstr "გსურთ სერტიფიკატის რედაქტირება?"
#: cms/static/js/certificates/views/certificate_details.js
msgid ""
"This certificate has already been activated and is live. Are you sure you "
"want to continue editing?"
msgstr ""
"სერტიფიკატი გააქტიურებული და მოქმედია. დარწმუნებული ბრძანდებით, რომ მისი "
"რედაქტირება გსურთ?"
#: cms/static/js/certificates/views/certificate_details.js
msgid "Yes, allow edits to the active Certificate"
msgstr "დიახ, აქტიურ სერტიფიკატზე დაშვებული მაქვს რედაქტირების უფლება."
#. Translators: This field pertains to the custom label for a certificate.
#. Translators: this refers to a collection of certificates.
#: cms/static/js/certificates/views/certificate_item.js
#: cms/static/js/certificates/views/certificates_list.js
msgid "certificate"
msgstr "სერტიფიკატი"
#: cms/static/js/certificates/views/certificates_list.js
msgid "Set up your certificate"
msgstr "სერტიფიკატის მომზადება"
#. Translators: This line refers to the initial state of the form when no data
#. has been inserted
#: cms/static/js/certificates/views/certificates_list.js
msgid "You have not created any certificates yet."
msgstr "ჯერჯერობით სერტიფიკატი არ შეგიქმნიათ."
#: cms/static/js/certificates/views/signatory_editor.js
msgid "Delete \"<%= signatoryName %>\" from the list of signatories?"
msgstr "ამოიღეთ <%= signatoryName %>\" ხელმომწერთა სიიდან?"
#: cms/static/js/certificates/views/signatory_editor.js
#: cms/static/js/views/course_info_update.js
msgid "This action cannot be undone."
msgstr "ეს მოქმედება გაუქმებას არ ექვემდებარება."
#: cms/static/js/certificates/views/signatory_editor.js
#: cms/static/js/views/course_info_update.js cms/static/js/views/list_item.js
#: cms/static/js/views/show_textbook.js cms/static/js/views/tabs.js
#: cms/static/js/views/utils/xblock_utils.js
msgid "Deleting"
msgstr ""
#: cms/static/js/certificates/views/signatory_editor.js
msgid "Upload signature image."
msgstr "ხელმოწერის გამოსახულების ატვირთვა."
#: cms/static/js/certificates/views/signatory_editor.js
msgid "Image must be in PNG format."
msgstr "სურათი უნდა იყოს PNG ფორმატში."
#: cms/static/js/collections/group.js
#, javascript-format
msgid "Group %s"
msgstr "ჯგუფი %s"
#. Translators: Dictionary used for creation ids that are used in
#. default group names. For example: A, B, AA in Group A,
#. Group B, ..., Group AA, etc.
#: cms/static/js/collections/group.js
msgid "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
msgstr "აბგდევზთიკლმნოპჟრსტუფქღყშჩცძწჭხჯჰ"
#: cms/static/js/factories/export.js
msgid "Your export has failed."
msgstr ""
#: cms/static/js/factories/manage_users.js
msgid "Already a course team member"
msgstr "უკვე კურსის გუნდის წევრი"
#: cms/static/js/factories/manage_users.js
msgid ""
"Are you sure you want to delete {email} from the course team for "
"“{container}”?"
msgstr ""
"დარწმუნებული ბრძანდებით, რომ გსურთ კურსის გუნდის „{container}“-იდან "
"{email}-ის წაშლა ?"
#: cms/static/js/factories/manage_users.js
#: cms/static/js/factories/manage_users_lib.js
msgid "Staff"
msgstr "პერსონალი"
#: cms/static/js/factories/manage_users.js
#: cms/static/js/factories/manage_users_lib.js
msgid "Admin"
msgstr "ადმინისტრატორი"
#: cms/static/js/factories/manage_users_lib.js
msgid "Already a library team member"
msgstr "უკვე არის ბიბლიოთეკის გუნდის წევრი"
#: cms/static/js/factories/manage_users_lib.js
msgid ""
"Are you sure you want to delete {email} from the library “{container}”?"
msgstr ""
"დარწმუნებული ბრძანდებით, რომ გსურთ ბიბლიოთეკის “{container}”-იდან წაშალოთ "
"{email}?"
#: cms/static/js/factories/manage_users_lib.js
msgid "Library User"
msgstr "ბიბლიოთეკის მომხმარებელი"
#: cms/static/js/factories/settings_advanced.js
msgid "Hide Deprecated Settings"
msgstr "მოძველებული პარამეტრების დამალვა"
#: cms/static/js/factories/settings_advanced.js
msgid "Show Deprecated Settings"
msgstr "მოძველებული პარამეტრების გამოჩენა"
#: cms/static/js/factories/textbooks.js
#: cms/static/js/views/pages/group_configurations.js
msgid "You have unsaved changes. Do you really want to leave this page?"
msgstr ""
#: cms/static/js/features/import/factories/import.js
msgid "There was an error during the upload process."
msgstr ""
#: cms/static/js/features/import/factories/import.js
msgid "There was an error while unpacking the file."
msgstr ""
#: cms/static/js/features/import/factories/import.js
msgid "There was an error while verifying the file you submitted."
msgstr ""
#: cms/static/js/features/import/factories/import.js
msgid "Choose new file"
msgstr ""
#: cms/static/js/features/import/factories/import.js
msgid ""
"File format not supported. Please upload a file with a {ext} extension."
msgstr ""
#: cms/static/js/features/import/factories/import.js
msgid "There was an error while importing the new library to our database."
msgstr ""
#: cms/static/js/features/import/factories/import.js
msgid "There was an error while importing the new course to our database."
msgstr ""
#: cms/static/js/features/import/factories/import.js
msgid "Your import has failed."
msgstr ""
#: cms/static/js/features/import/views/import.js
msgid "Your import is in progress; navigating away will abort it."
msgstr ""
#: cms/static/js/features/import/views/import.js
msgid "Error importing course"
msgstr ""
#: cms/static/js/features/import/views/import.js
msgid "There was an error with the upload"
msgstr ""
#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx
msgid "Organization:"
msgstr ""
#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx
msgid "Course Number:"
msgstr ""
#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx
msgid "Course Run:"
msgstr ""
#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx
msgid "(Read-only)"
msgstr ""
#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx
msgid "Re-run Course"
msgstr ""
#: cms/templates/js/show-textbook.underscore
msgid "View Live"
msgstr "კურსის ნახვა"
#: cms/static/js/maintenance/force_publish_course.js
msgid "Internal Server Error."
msgstr "სერვერის შიდა შეცდომა."
#. Translators: This is the status of a video upload that is queued
#. waiting for other uploads to complete
#: cms/static/js/models/active_video_upload.js
msgid "Queued"
msgstr "მოლოდინშია"
#. Translators: This is the status of a video upload that has
#. completed successfully
#: cms/static/js/models/active_video_upload.js
msgid "Upload completed"
msgstr "ატვირთვა დასრულებულია"
#. Translators: This is the status of a video upload that has failed
#: cms/static/js/models/active_video_upload.js
msgid "Upload failed"
msgstr "ატვირთვა ვერ მოხერხდა"
#: cms/static/js/models/chapter.js
msgid "Chapter name and asset_path are both required"
msgstr ""
#: cms/static/js/models/chapter.js
msgid "Chapter name is required"
msgstr ""
#: cms/static/js/models/chapter.js
msgid "asset_path is required"
msgstr ""
#: cms/static/js/models/course.js cms/static/js/models/section.js
msgid "You must specify a name"
msgstr ""
#: cms/static/js/models/course_update.js
msgid "Action required: Enter a valid date."
msgstr "შეიყვანეთ მოქმედი თარიღი."
#: cms/static/js/models/group.js
msgid "Group name is required"
msgstr "ჯგუფის სახელის მითითება სავალდებულოა"
#: cms/static/js/models/group_configuration.js
msgid "Group A"
msgstr "ჯგუფი A"
#: cms/static/js/models/group_configuration.js
msgid "Group B"
msgstr "ჯგუფი B"
#: cms/static/js/models/group_configuration.js
msgid "Group Configuration name is required."
msgstr "ჯგუფის კონფიგურაციის სახელი სავალდებულოა."
#: cms/static/js/models/group_configuration.js
msgid "There must be at least one group."
msgstr "უნდა იყოს სულ მცირე ერთი ჯგუფი მაინც."
#: cms/static/js/models/group_configuration.js
msgid "All groups must have a name."
msgstr "ყველა ჯგუფს უნდა ქონდეს სახელი."
#: cms/static/js/models/group_configuration.js
msgid "All groups must have a unique name."
msgstr "ყველა ჯგუფს უნიკალური სახელი უნდა ქონდეს."
#: cms/static/js/models/settings/course_details.js
msgid "The course must have an assigned start date."
msgstr "გაწერილი უნდა იყოს კურსის დაწყების თარიღი. "
#: cms/static/js/models/settings/course_details.js
msgid "The course end date must be later than the course start date."
msgstr ""
"კურსის დასრულების თარიღი წინ არ უნდა უსწრებდეს კურსის დაწყების თარიღს."
#: cms/static/js/models/settings/course_details.js
msgid "The course start date must be later than the enrollment start date."
msgstr ""
"კურსზე რეგისტრსაციის თარიღი წინ უნდა უსწრებდეს კურსის დაწყების თარიღს."
#: cms/static/js/models/settings/course_details.js
msgid "The enrollment start date cannot be after the enrollment end date."
msgstr ""
"კურსზე რეგისტრაციის საბოლოო თარიღი წინ არ უნდა უსწრებდეს კურსზე რეგისტრაციის"
" დაწყების თარიღს."
#: cms/static/js/models/settings/course_details.js
msgid "The enrollment end date cannot be after the course end date."
msgstr ""
"კურსზე რეგისტრაციის დასრულების თარიღი ვერ იქნება კურსის დასრულების თარიღის "
"შემდეგ."
#: cms/static/js/models/settings/course_details.js
msgid "The certificate available date must be later than the course end date."
msgstr ""
#: cms/static/js/models/settings/course_details.js
msgid "Key should only contain letters, numbers, _, or -"
msgstr "ღილაკი უნდა მოიცავდეს მხოლოდ ასოებს, რიცხვებს, _, ან -"
#: cms/static/js/models/settings/course_details.js
msgid "Please enter an integer between %(min)s and %(max)s."
msgstr "გთხოვთ, შეიყვანოთ მთელი რიცხვი %(min)s-დან %(max)s-მდე."
#: cms/static/js/models/settings/course_grader.js
msgid "The assignment type must have a name."
msgstr ""
#: cms/static/js/models/settings/course_grader.js
msgid "There's already another assignment type with this name."
msgstr "ამ სახელწოდებით სხვა ტიპის დავალება უკვე არსებობს."
#: cms/static/js/models/settings/course_grader.js
msgid "Please enter an integer between 0 and 100."
msgstr "გთხოვთ, შეიყვანოთ მთელი რიცხვი 0-დან 100-მდე."
#: cms/static/js/models/settings/course_grader.js
msgid "Please enter an integer greater than 0."
msgstr "გთხოვთ, შეიყვანოთ მთელი რიცხვი, რომელიც მეტია 0-ზე."
#: cms/static/js/models/settings/course_grader.js
msgid "Please enter non-negative integer."
msgstr "გთხოვთ, შეიყვანოთ დადებითი მთელი რიცხვი."
#: cms/static/js/models/settings/course_grader.js
msgid "Cannot drop more <%= types %> assignments than are assigned."
msgstr "შეუძლებელია არსებულზე მეტი <%= types %> დავალების გაცხრილვა."
#: cms/static/js/models/settings/course_grading_policy.js
msgid "Grace period must be specified in HH:MM format."
msgstr "შეღავათის ხანგრძლივობა უნდა გაიწეროს HH:MM ფორმატში."
#: cms/static/js/models/settings/course_grading_policy.js
msgid "Not able to set passing grade to less than %(minimum_grade_cutoff)s%."
msgstr "ვერ დავაწესებთ %(minimum_grade_cutoff)s%-ზე ნაკლებ გამსვლელ ქულას."
#: cms/static/js/models/textbook.js
msgid "Textbook name is required"
msgstr ""
#: cms/static/js/models/textbook.js
msgid "Please add at least one chapter"
msgstr ""
#: cms/static/js/models/textbook.js
msgid "All chapters must have a name and asset"
msgstr ""
#: cms/static/js/models/uploads.js
msgid ""
"Only <%= fileTypes %> files can be uploaded. Please select a file ending in "
"<%= fileExtensions %> to upload."
msgstr ""
#: lms/templates/student_account/hinted_login.underscore
#: lms/templates/student_account/institution_login.underscore
#: lms/templates/student_account/institution_register.underscore
msgid "or"
msgstr "ან"
#: cms/static/js/models/xblock_validation.js
msgid "This unit has validation issues."
msgstr ""
#: cms/static/js/models/xblock_validation.js
msgid "This component has validation issues."
msgstr ""
#: cms/static/js/views/active_video_upload.js cms/static/js/views/assets.js
msgid "Your file could not be uploaded"
msgstr "თქვენი ფაილი ვერ აიტვირთა"
#: cms/static/js/views/active_video_upload_list.js
msgid "Upload Videos"
msgstr ""
#: cms/static/js/views/active_video_upload_list.js
msgid "Drag and drop or {spanStart}browse your computer{spanEnd}."
msgstr ""
#: cms/static/js/views/active_video_upload_list.js
msgid "Maximum file size: {maxFileSize} GB"
msgstr ""
#: cms/static/js/views/active_video_upload_list.js
msgid "Supported file types: {supportedVideoTypes}"
msgstr ""
#: cms/static/js/views/active_video_upload_list.js
msgid "Your video uploads are not complete."
msgstr "თქვენი ვიდეოს ატვირთვა არ არის დასრულებული."
#: cms/static/js/views/active_video_upload_list.js
msgid "Upload completed for video {fileName}"
msgstr ""
#: cms/static/js/views/active_video_upload_list.js
msgid "Upload failed for video {fileName}"
msgstr ""
#: cms/static/js/views/active_video_upload_list.js
msgid ""
"{filename} is not in a supported file format. Supported file formats are "
"{supportedFileFormats}."
msgstr ""
#: cms/static/js/views/active_video_upload_list.js
msgid "{filename} exceeds maximum size of {maxFileSizeInGB} GB."
msgstr ""
#: cms/static/js/views/active_video_upload_list.js
msgid ": video upload complete."
msgstr ": ვიდეოს ატვირთვა დასრულდა."
#: cms/static/js/views/active_video_upload_list.js
msgid "Previous Uploads table has been updated."
msgstr "წინა ატვირთვების არსებული ცხრილი განახლდა."
#: cms/static/js/views/asset.js
msgid "Delete File Confirmation"
msgstr "დასტური ფაილის წაშლაზე"
#: cms/static/js/views/asset.js
msgid ""
"Are you sure you wish to delete this item. It cannot be reversed!\n"
"\n"
"Also any content that links/refers to this item will no longer work (e.g. broken images and/or links)"
msgstr ""
"დარწმუნებული ბრძანდებით, რომ გსურთ ამ ერთეულის წაშლა? ეს მოქმედება აღდგენას არ დაექვემდებარება!\n"
"\n"
"ასევე, ნებისმიერი მასალა, რომელიც ეხება/დაკავშირებულია ამ ერთეულთან არ იმუშავებს (მაგ. გატეხილი გამოსახულებები ან/და ბმულები)"
#: cms/static/js/views/asset.js
msgid "Your file has been deleted."
msgstr "თქვენი ფაილი წაშლილია."
#: cms/static/js/views/assets.js cms/templates/js/asset-library.underscore
#: cms/templates/js/previous-video-upload-list.underscore
msgid "Date Added"
msgstr "დამატების თარიღი"
#: cms/static/js/views/assets.js cms/templates/js/asset-library.underscore
#: lms/djangoapps/support/static/support/templates/certificates_results.underscore
msgid "Type"
msgstr "ტიპი"
#: cms/static/js/views/assets.js
msgid "File {filename} exceeds maximum size of {maxFileSizeInMBs} MB"
msgstr "{filename} ფაილის ზომა აღემატება დაშვებულ {maxFileSizeInMBs} მბაიტს"
#: cms/static/js/views/assets.js
msgid ""
"Please follow the instructions here to upload a file elsewhere and link to "
"it: {maxFileSizeRedirectUrl}"
msgstr ""
"ფაილის ატვირთვისა და მისი ბმულის ჩასმისთვის მიჰყევით ინსტრუქციებს: "
"{maxFileSizeRedirectUrl}"
#: cms/static/js/views/assets.js
msgid "Max file size exceeded"
msgstr "ფაილის ზომა აღემატება მაქსიმუმს"
#: cms/static/js/views/assets.js
#: cms/templates/js/asset-upload-modal.underscore
msgid "Upload New File"
msgstr "ახალი ფაილის ატვირთვა"
#: cms/static/js/views/assets.js
msgid "Load Another File"
msgstr "ახალი ფაილის ჩატვირთვა"
#: cms/static/js/views/components/add_xblock.js
#: cms/static/js/views/utils/xblock_utils.js
msgid "Adding"
msgstr ""
#: cms/static/js/views/course_info_update.js
msgid "Are you sure you want to delete this update?"
msgstr "დარწმუნებული ხართ, რომ განახლების წაშლა გსურთ?"
#: cms/static/js/views/course_rerun.js
msgid "Create Re-run"
msgstr "ხელახლა გაშვების შექმნა"
#: cms/static/js/views/course_rerun.js
msgid "Processing Re-run Request"
msgstr "ხელახლა გაშვების მოთხოვნის დამუშავება"
#: cms/static/js/views/course_video_settings.js
msgid "An error has occurred. Wait a few minutes, and then try again."
msgstr ""
#: cms/static/js/views/course_video_settings.js
msgid "Select turnaround"
msgstr ""
#: cms/static/js/views/course_video_settings.js
msgid "Select fidelity"
msgstr ""
#: cms/static/js/views/course_video_settings.js
msgid "Select language"
msgstr ""
#: cms/static/js/views/course_video_settings.js
msgid "Press Remove to remove language"
msgstr ""
#: cms/static/js/views/course_video_settings.js
msgid "Settings updated"
msgstr ""
#: cms/static/js/views/course_video_settings.js
#: cms/templates/js/course-video-settings-update-settings-footer.underscore
msgid "Last updated"
msgstr ""
#: cms/static/js/views/course_video_settings.js
msgid "Required"
msgstr ""
#: cms/static/js/views/course_video_settings.js
msgid "Automatic transcripts are disabled."
msgstr ""
#: cms/static/js/views/course_video_settings.js
msgid "{selectedProvider} credentials saved"
msgstr ""
#: cms/static/js/views/edit_chapter.js
msgid "Upload a new PDF to “<%= name %>”"
msgstr ""
#: cms/static/js/views/edit_chapter.js
msgid "Please select a PDF file to upload."
msgstr ""
#: cms/static/js/views/export.js
msgid "There has been an error while exporting."
msgstr "ექსპორტირებისას დაფიქსირდა შეცდომა."
#: cms/static/js/views/export.js
msgid ""
"There has been a failure to export to XML at least one component. It is "
"recommended that you go to the edit page and repair the error before "
"attempting another export. Please check that all components on the page are "
"valid and do not display any error messages."
msgstr ""
#: cms/static/js/views/export.js
msgid "Correct failed component"
msgstr "არასწორი კომპონენტების გასწორება."
#: cms/static/js/views/export.js
msgid "Return to Export"
msgstr "ექსპორტირებაში დაბრუნება"
#: cms/static/js/views/export.js
msgid ""
"Your library could not be exported to XML. There is not enough information "
"to identify the failed component. Inspect your library to identify any "
"problematic components and try again."
msgstr ""
#: cms/static/js/views/export.js
msgid "Take me to the main library page"
msgstr "გადამიყვანე ბიბლიოთეკის ძირითად გვერდზე"
#: cms/static/js/views/export.js
msgid ""
"Your course could not be exported to XML. There is not enough information to"
" identify the failed component. Inspect your course to identify any "
"problematic components and try again."
msgstr ""
#: cms/static/js/views/export.js
msgid "Take me to the main course page"
msgstr "გადამიყვანე კურსის ძირითად გვერდზე"
#: cms/static/js/views/export.js
msgid "The raw error message is:"
msgstr "შეცდომის დაუმუშავებელი შეტყობინება:"
#: cms/static/js/views/export.js
msgid "There has been an error with your export."
msgstr "ექსპორტირებისას დაფიქსირდა შეცდომა"
#. Translators: 'count' is number of groups that the group
#. configuration contains.
#: cms/static/js/views/group_configuration_details.js
msgid "Contains {count} group"
msgid_plural "Contains {count} groups"
msgstr[0] "შეიცავს {count} ჯგუფებს"
msgstr[1] "შეიცავს {count} ჯგუფებს"
#: cms/static/js/views/group_configuration_details.js
#: cms/static/js/views/partition_group_details.js
msgid "Not in Use"
msgstr "არ გამოიყენება"
#. Translators: 'count' is number of units that the group
#. configuration is used in.
#. Translators: 'count' is number of locations that the group
#. configuration is used in.
#: cms/static/js/views/group_configuration_details.js
#: cms/static/js/views/partition_group_details.js
msgid "Used in {count} location"
msgid_plural "Used in {count} locations"
msgstr[0] ""
msgstr[1] ""
#. Translators: this refers to a collection of groups.
#: cms/static/js/views/group_configuration_item.js
#: cms/static/js/views/group_configurations_list.js
msgid "group configuration"
msgstr "ჯგუფის კონფიგურაცია"
#: cms/static/js/views/group_configurations_list.js
msgid "Add your first group configuration"
msgstr "დაამატეთ თქვენი პირველი ჯგუფის კონფიგურაცია"
#: cms/static/js/views/group_configurations_list.js
msgid "You have not created any group configurations yet."
msgstr "კონფიგურაცია ჯგუფისთვის ჯერ არ შეგიქმნიათ."
#: cms/static/js/views/instructor_info.js
msgid "Upload instructor image."
msgstr "ატვირთეთ ინსტრუქტორის სურათი."
#: cms/static/js/views/instructor_info.js cms/static/js/views/settings/main.js
msgid "Files must be in JPEG or PNG format."
msgstr "ფაილი უნდა იყო JPEG ან PNG ფორმატის."
#: cms/templates/js/license-selector.underscore
msgid "All Rights Reserved"
msgstr "ყველა უფლება დაცულია"
#: cms/static/js/views/license.js
msgid "You reserve all rights for your work"
msgstr ""
#: cms/static/js/views/license.js
msgid "Creative Commons"
msgstr ""
#: cms/static/js/views/license.js
msgid "You waive some rights for your work, such that others can use it too"
msgstr ""
#: cms/static/js/views/license.js
msgid "Version"
msgstr ""
#: cms/static/js/views/license.js
msgid "Attribution"
msgstr ""
#: cms/static/js/views/license.js
msgid ""
"Allow others to copy, distribute, display and perform your copyrighted work "
"but only if they give credit the way you request. Currently, this option is "
"required."
msgstr ""
#: cms/static/js/views/license.js
msgid "Noncommercial"
msgstr ""
#: cms/static/js/views/license.js
msgid ""
"Allow others to copy, distribute, display and perform your work - and "
"derivative works based upon it - but for noncommercial purposes only."
msgstr ""
#: cms/static/js/views/license.js
msgid "No Derivatives"
msgstr ""
#: cms/static/js/views/license.js
msgid ""
"Allow others to copy, distribute, display and perform only verbatim copies "
"of your work, not derivative works based upon it. This option is "
"incompatible with \"Share Alike\"."
msgstr ""
#: cms/static/js/views/license.js
msgid "Share Alike"
msgstr ""
#: cms/static/js/views/license.js
msgid ""
"Allow others to distribute derivative works only under a license identical "
"to the license that governs your work. This option is incompatible with \"No"
" Derivatives\"."
msgstr ""
#. Translators: "item_display_name" is the name of the item to be deleted.
#: cms/static/js/views/list_item.js
msgid "Delete this %(item_display_name)s?"
msgstr "წავშალოთ ეს %(item_display_name)s?"
#. Translators: "item_display_name" is the name of the item to be deleted.
#: cms/static/js/views/list_item.js
msgid "Deleting this %(item_display_name)s is permanent and cannot be undone."
msgstr ""
"%(item_display_name)s-ის წაშლა უკუქცევადია და აღდგენას არ დაექვემდებარება."
#: cms/static/js/views/manage_users_and_roles.js
msgid "There was an error changing the user's role"
msgstr "მომხმარებლის როლის ცვლილებისას დაფიქსირდა შეცდომა"
#: cms/static/js/views/manage_users_and_roles.js
msgid "Error adding user"
msgstr "მომხმარებლის დამატებისას დაფიქსირდა შეცდომა"
#: cms/static/js/views/manage_users_and_roles.js
msgid "Error removing user"
msgstr "მომხმარებლის წაშლისას დაფიქსირდა შეცდომა"
#: cms/static/js/views/manage_users_and_roles.js
msgid "A valid email address is required"
msgstr "სავალდებულოა მოქმედი ელფოსტის მისამართი"
#: cms/static/js/views/manage_users_and_roles.js
msgid "You must enter a valid email address in order to add a new team member"
msgstr ""
"გუნდის ახალი წევრის დამატებითვის საჭიროა შეიყვანოთ მოქმედი ელფოსტის "
"მისამართი"
#: cms/static/js/views/manage_users_and_roles.js
msgid "Return and add email address"
msgstr "დაბრუნდით და დაამატეთ ელფოსტის მისამართი"
#: cms/static/js/views/manage_users_and_roles.js
msgid "Already a member"
msgstr "უკვე წევრია"