Newer
Older
24001
24002
24003
24004
24005
24006
24007
24008
24009
24010
24011
24012
24013
24014
24015
24016
24017
24018
24019
24020
24021
24022
24023
24024
24025
24026
24027
24028
24029
24030
24031
24032
24033
24034
24035
24036
24037
24038
24039
24040
24041
24042
24043
24044
24045
24046
24047
24048
24049
24050
24051
24052
24053
24054
24055
24056
24057
24058
24059
24060
24061
24062
24063
24064
24065
24066
24067
24068
24069
24070
24071
24072
24073
24074
24075
24076
24077
24078
24079
24080
24081
24082
24083
24084
24085
24086
24087
24088
24089
24090
24091
24092
24093
24094
24095
24096
24097
24098
24099
24100
24101
24102
24103
24104
#: wiki/plugins/attachments/models.py
msgid ""
"The revision of this attachment currently in use (on all articles using the "
"attachment)"
msgstr ""
"მოცემული დანართის განახლებული ვერსია ამჟამად გამოყენებაშია (ყველა სტატიაში, "
"რომელიც მას იყენებს)"
#: wiki/plugins/attachments/models.py
msgid "original filename"
msgstr "ფაილის პირველადი სახელი"
#: wiki/plugins/attachments/models.py
msgid "attachment"
msgstr "დანართი"
#: wiki/plugins/attachments/models.py
msgid "attachments"
msgstr "დანართები"
#: wiki/plugins/attachments/models.py
msgid "file"
msgstr "ფაილი"
#: wiki/plugins/attachments/models.py
msgid "attachment revision"
msgstr "დანართის განახლება"
#: wiki/plugins/attachments/models.py
msgid "attachment revisions"
msgstr "დანართის განახლებები"
#: wiki/plugins/attachments/views.py
#, python-format
msgid "%s was successfully added."
msgstr "%s წარმატებით დაემატა."
#: wiki/plugins/attachments/views.py
#, python-format
msgid "Your file could not be saved: %s"
msgstr "ვერ ხერხდება თქვენი ფაილის შენახვა: %s"
#: wiki/plugins/attachments/views.py
msgid ""
"Your file could not be saved, probably because of a permission error on the "
"web server."
msgstr ""
"თქვენი ფაილი არ შენახულა, შესაძლოა ვებ სერვერზე ნებართვის შეცდომის გამო."
#: wiki/plugins/attachments/views.py
#, python-format
msgid "%s uploaded and replaces old attachment."
msgstr "%s ატვირთულია და ჩაანაცვლებს ძველ დანართს."
#: wiki/plugins/attachments/views.py
msgid ""
"Your new file will automatically be renamed to match the file already "
"present. Files with different extensions are not allowed."
msgstr ""
"თქვენს ახალ ფაილს ავტომატურად გადაერქმევა სახელი, რათა დაემთხვეს უკვე "
"არსებულ ფაილს. სხვა გაფართოებების ფაილები დაშვებული არ არის."
#: wiki/plugins/attachments/views.py
#, python-format
msgid "Current revision changed for %s."
msgstr "%s-ის განახლებული ვერსია შეცვლილია."
#: wiki/plugins/attachments/views.py
#, python-format
msgid "Added a reference to \"%(att)s\" from \"%(art)s\"."
msgstr "„%(att)s“-ს „%(art)s“-დან დაემატა შენიშვნა."
#: wiki/plugins/attachments/views.py
#, python-format
msgid "The file %s was deleted."
msgstr "ფაილი %s წაშლილია."
#: wiki/plugins/attachments/views.py
#, python-format
msgid "This article is no longer related to the file %s."
msgstr "ამ სტატიას აღარაფერი საერთო არ აქვს ფაილთან %s."
#: wiki/plugins/attachments/wiki_plugin.py
#, python-format
msgid "A file was changed: %s"
msgstr "შეცვლილია ფაილი: %s"
#: wiki/plugins/attachments/wiki_plugin.py
#, python-format
msgid "A file was deleted: %s"
msgstr "წაშლილია ფაილი: %s"
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html
msgid ""
"The file may be referenced on other articles. Deleting it means that they "
"will loose their references to this file. The following articles reference "
"this file:"
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html
msgid "Delete it!"
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html
msgid "Remove"
msgstr ""
24109
24110
24111
24112
24113
24114
24115
24116
24117
24118
24119
24120
24121
24122
24123
24124
24125
24126
24127
24128
24129
24130
24131
24132
24133
24134
24135
24136
24137
24138
24139
24140
24141
24142
24143
24144
24145
24146
24147
24148
24149
24150
24151
24152
24153
24154
24155
24156
24157
24158
24159
24160
24161
24162
24163
24164
24165
24166
24167
24168
24169
24170
24171
24172
24173
24174
24175
24176
24177
24178
24179
24180
24181
24182
24183
24184
24185
24186
24187
24188
24189
24190
24191
24192
24193
24194
24195
24196
24197
24198
24199
24200
24201
24202
24203
24204
24205
24206
24207
24208
24209
24210
24211
24212
24213
24214
24215
24216
24217
24218
24219
24220
24221
24222
24223
24224
24225
24226
24227
24228
24229
24230
24231
24232
24233
24234
24235
24236
24237
24238
24239
24240
24241
24242
24243
24244
24245
24246
24247
24248
24249
24250
24251
24252
24253
24254
24255
24256
24257
24258
24259
24260
24261
24262
24263
24264
24265
24266
24267
24268
24269
24270
24271
24272
24273
24274
24275
24276
24277
24278
24279
24280
24281
24282
24283
24284
24285
24286
24287
24288
24289
24290
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html
msgid ""
"You can remove a reference to a file, but it will retain its references on "
"other articles."
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html
msgid "Remove reference"
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html
msgid "History of"
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html
msgid "User"
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html
msgid "File"
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html
msgid "Action"
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html
msgid "<em>No description</em>"
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html
msgid "Download"
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html
msgid "Use this!"
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html
#, python-format
msgid ""
"Replacing an attachment means adding a new file that will be used in its "
"place. All references to the file will be replaced by the one you upload and"
" the file will be downloaded as <strong>%(filename)s</strong>. Please note "
"that this attachment is in use on other articles, you may distort contents. "
"However, do not hestitate to take advantage of this and make replacements "
"for the listed articles where necessary. This way of working is more "
"efficient...."
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html
msgid "Articles using"
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html
#, python-format
msgid ""
"Replacing an attachment means adding a new file that will be used in its "
"place. All references to the file will be replaced by the one you upload and"
" the file will be downloaded as <strong>%(filename)s</strong>."
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html
#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html
msgid "Upload replacement"
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html
msgid "Add file to"
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html
msgid "Add attachment from other article"
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html
msgid "Main article"
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html
msgid "Add to article"
msgstr ""
#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html
msgid "Your search did not return any results"
msgstr ""
#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html
msgid "Adding new articles"
msgstr ""
#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html
#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html
msgid "An external link"
msgstr ""
#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html
msgid "Headers"
msgstr ""
#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html
msgid ""
"Use these codes for headers and to automatically generate Tables of "
"Contents."
msgstr ""
#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html
msgid "Typography"
msgstr ""
#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html
msgid "Lists"
msgstr ""
#: wiki/plugins/images/forms.py
#, python-format
msgid ""
"New image %s was successfully uploaded. You can use it by selecting it from "
"the list of available images."
msgstr ""
"გამოსახულება %s წარმატებით აიტვირთა. თქვენ შეგიძლიათ მისი ხელმისაწვდომი "
"გამოსახულებებიდან არჩევა და გამოყენება."
#: wiki/plugins/images/forms.py
msgid "Are you sure?"
msgstr "დარწმუნებული ხართ?"
#: wiki/plugins/images/models.py
msgid "image"
msgstr "გამოსახულება"
#: wiki/plugins/images/models.py
msgid "images"
msgstr "გამოსახულებები"
#: wiki/plugins/images/models.py
#, python-format
msgid "Image: %s"
msgstr "გამოსახულება: %s"
#: wiki/plugins/images/models.py
msgid "Current revision not set!!"
msgstr "განახლება არ აისახა!!"
#: wiki/plugins/images/models.py
msgid "image revision"
msgstr "გამოსახულების განახლება"
#: wiki/plugins/images/models.py
msgid "image revisions"
msgstr "გამოსახულების განახლებები"
#: wiki/plugins/images/models.py
#, python-format
msgid "Image Revsion: %d"
msgstr "გამოსახულების განახლება: %d"
#: wiki/plugins/images/views.py
#, python-format
msgid "%s has been restored"
msgstr "%s აღდგენილია."
#: wiki/plugins/images/views.py
#, python-format
msgid "%s has been marked as deleted"
msgstr "%s წაშლილია."
#: wiki/plugins/images/views.py
#, python-format
msgid "%(file)s has been changed to revision #%(revision)d"
msgstr "%(file)s შეიცვალა განახლებული ვერსიით # %(revision)d"
#: wiki/plugins/images/views.py
#, python-format
msgid "%(file)s has been saved."
msgstr "%(file)s შენახულია."
#: wiki/plugins/images/templates/wiki/plugins/images/index.html
#: wiki/plugins/images/wiki_plugin.py
24292
24293
24294
24295
24296
24297
24298
24299
24300
24301
24302
24303
24304
24305
24306
24307
24308
24309
24310
24311
24312
24313
24314
24315
24316
24317
24318
24319
24320
24321
24322
24323
24324
24325
24326
24327
24328
24329
24330
24331
24332
24333
24334
24335
24336
24337
24338
24339
24340
24341
24342
24343
24344
24345
24346
24347
24348
24349
24350
24351
24352
24353
24354
24355
24356
24357
24358
24359
24360
24361
24362
24363
24364
24365
24366
24367
24368
24369
24370
24371
24372
24373
24374
24375
24376
24377
24378
24379
24380
24381
24382
24383
24384
24385
24386
24387
24388
24389
24390
24391
24392
24393
24394
24395
24396
24397
24398
24399
24400
24401
24402
24403
24404
24405
24406
24407
24408
24409
24410
24411
24412
24413
24414
24415
24416
24417
24418
24419
24420
24421
24422
24423
24424
24425
24426
24427
24428
24429
24430
24431
24432
24433
24434
24435
24436
24437
24438
24439
24440
24441
24442
24443
24444
24445
24446
24447
24448
24449
24450
24451
24452
24453
24454
24455
24456
24457
24458
24459
24460
24461
24462
24463
24464
24465
24466
24467
24468
24469
24470
24471
24472
24473
24474
24475
24476
24477
24478
24479
24480
24481
24482
24483
msgid "Images"
msgstr "გამოსახულებები"
#: wiki/plugins/images/wiki_plugin.py
#, python-format
msgid "An image was added: %s"
msgstr "დაემატა გამოსახულება: %s"
#: wiki/plugins/images/templates/wiki/plugins/images/index.html
msgid ""
"The following images are available for this article. Copy the markdown tag "
"to directly refer to an image from the article text."
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/index.html
msgid "Back to edit page"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/index.html
msgid "No file"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/index.html
msgid "Upload new image"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/index.html
msgid "Restore image"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/index.html
msgid "Remove image"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/index.html
msgid "Completely delete"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/index.html
msgid "Revert to this version"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/index.html
msgid "There are no images for this article."
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/purge.html
#: wiki/templates/wiki/deleted.html
msgid "Purge deletion"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/purge.html
msgid "Purge image: Completely remove image file and all revisions."
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/purge.html
msgid "Remove it completely!"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/render.html
msgid "Image not found"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html
msgid "Replace image"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html
msgid "Choose an image file to replace current image."
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html
msgid "Image id"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html
#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html
msgid "Insert"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html
msgid "No images found for this article"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html
msgid "Manage images"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html
msgid "Add new image"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html
msgid "Add image"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html
msgid "You do not have permissions to add images."
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html
msgid "How to use images"
msgstr ""
#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html
msgid ""
"After uploading an image, it is attached to this particular artice and can "
"be used only here. Other users may replace the image, but older versions are"
" kept. You probably want to show the image with a nice caption. To achieve "
"this, press the Insert button and fill in the caption fields and possibly "
"choose to have you image floating right or left of the content. You can use "
"Markdown in the caption. The markdown code syntax for images looks like "
"this, possible values for align are left/center/right:"
msgstr ""
#: wiki/plugins/links/wiki_plugin.py
msgid "Links"
msgstr "ბმულები"
#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html
msgid "Link to another wiki page"
msgstr ""
#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html
msgid ""
"Type in something from another wiki page's title and auto-complete will help"
" you create a tag for you wiki link. Tags for links look like this:"
msgstr ""
#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html
msgid ""
"You can link to another website simply by inserting an address example.com "
"or http://example.com or by using the markdown syntax:"
msgstr ""
#: wiki/plugins/notifications/forms.py
msgid "Notifications"
msgstr "შეტყობინებები"
#: wiki/plugins/notifications/forms.py
msgid "When this article is edited"
msgstr "როდის არის რედაქტირებული ეს სტატია"
#: wiki/plugins/notifications/forms.py
msgid "Also receive emails about article edits"
msgstr "ასევე, მიიღეთ ელექტრონული შეტყობინებები სტატიის რედაქტირების თაობაზე."
#: wiki/plugins/notifications/forms.py
msgid "Your notification settings were updated."
msgstr "თქვენი შეტყობინებების პარამეტრები განახლებულია."
#: wiki/plugins/notifications/forms.py
msgid "Your notification settings were unchanged, so nothing saved."
msgstr ""
"თქვენი შეტყობინებების პარამეტრები უცვლელია, შესაბამისად, არაფერი შენახულა."
#: wiki/plugins/notifications/models.py
#, python-format
msgid "%(user)s subscribing to %(article)s (%(type)s)"
msgstr "%(user)s გამოწერილი აქვთ %(article)s (%(type)s)"
#: wiki/plugins/notifications/models.py
#, python-format
msgid "Article deleted: %s"
msgstr "სტატია წაშლილია: %s"
#: wiki/plugins/notifications/models.py
#, python-format
msgid "Article modified: %s"
msgstr "სტატია მოდიფიცირებულია: %s"
#: wiki/plugins/notifications/models.py
#, python-format
msgid "New article created: %s"
msgstr "შეიქმნა ახალი სტატია: %s"
#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html
msgid "notifications"
msgstr ""
#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html
msgid "No notifications"
msgstr ""
#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html
msgid "Clear notifications list"
msgstr ""
#: wiki/templates/wiki/base.html
msgid "Search..."
msgstr ""
#: wiki/templates/wiki/accounts/login.html
#: wiki/templates/wiki/accounts/signup.html wiki/templates/wiki/base.html
24486
24487
24488
24489
24490
24491
24492
24493
24494
24495
24496
24497
24498
24499
24500
24501
24502
24503
24504
24505
24506
24507
24508
24509
24510
24511
24512
24513
24514
24515
24516
24517
24518
24519
24520
24521
24522
24523
24524
24525
24526
24527
24528
24529
24530
24531
24532
24533
24534
24535
24536
24537
24538
24539
24540
24541
24542
24543
24544
24545
24546
24547
24548
24549
24550
24551
24552
24553
24554
24555
24556
24557
24558
24559
24560
24561
24562
24563
24564
24565
24566
24567
24568
24569
24570
24571
24572
24573
24574
24575
24576
msgid "Sign up"
msgstr ""
#: wiki/templates/wiki/deleted.html
msgid "Article deleted"
msgstr ""
#: wiki/templates/wiki/deleted.html
msgid "Article Deleted"
msgstr ""
#: wiki/templates/wiki/deleted.html
msgid "The article you were looking for has been deleted."
msgstr ""
#: wiki/templates/wiki/deleted.html
msgid "You may restore this article and its children by clicking restore."
msgstr ""
#: wiki/templates/wiki/deleted.html
msgid ""
"You may remove this article and any children permanently and free their "
"slugs by clicking the below button. This action cannot be undone."
msgstr ""
#: wiki/templates/wiki/dir.html
msgid "Listing articles in"
msgstr ""
#: wiki/templates/wiki/dir.html
msgid "Up one level"
msgstr ""
#: wiki/templates/wiki/dir.html
msgid "clear"
msgstr ""
#: wiki/templates/wiki/dir.html
msgid "article,articles"
msgstr ""
#: wiki/templates/wiki/dir.html
msgid "matches,match"
msgstr ""
#: wiki/templates/wiki/dir.html
#, python-format
msgid "%(cnt)s %(articles_plur)s in this level %(match_plur)s your search."
msgstr ""
#: wiki/templates/wiki/dir.html
msgid "is,are"
msgstr ""
#: wiki/templates/wiki/dir.html
#, python-format
msgid "There %(articles_plur_verb)s %(cnt)s %(articles_plur)s in this level."
msgstr ""
#: wiki/templates/wiki/dir.html
msgid "Last modified"
msgstr ""
#: wiki/templates/wiki/history.html
msgid "no log message"
msgstr ""
#: wiki/templates/wiki/permission_denied.html
msgid "Sorry, you don't have permission to view this page."
msgstr ""
#: wiki/templates/wiki/preview_inline.html
msgid "Previewing revision"
msgstr ""
#: wiki/templates/wiki/preview_inline.html
msgid "Previewing merge between"
msgstr ""
#: wiki/templates/wiki/preview_inline.html
msgid "and"
msgstr ""
#: wiki/templates/wiki/source.html
msgid "Source of"
msgstr ""
#: wiki/templates/wiki/source.html
msgid "This article is currently locked for editing."
msgstr ""
#: wiki/templates/wiki/accounts/login.html
msgid "Please log in"
msgstr ""
24581
24582
24583
24584
24585
24586
24587
24588
24589
24590
24591
24592
24593
24594
24595
24596
24597
24598
24599
24600
24601
24602
24603
24604
24605
24606
24607
24608
24609
24610
24611
24612
24613
24614
24615
#: wiki/templates/wiki/accounts/login.html
msgid "Log me in..."
msgstr ""
#: wiki/templates/wiki/accounts/login.html
msgid "Don't have an account?"
msgstr ""
#: wiki/templates/wiki/accounts/signup.html
msgid "Sign me up..."
msgstr ""
#: wiki/templates/wiki/article/create_root.html
msgid "Create root article"
msgstr ""
#: wiki/templates/wiki/article/create_root.html
msgid "Congratulations!"
msgstr ""
#: wiki/templates/wiki/article/create_root.html
msgid ""
"You have django-wiki installed... but there are no articles. So it's time to"
" create the first one, the root article. In the beginning, it will only be "
"editable by administrators, but you can define permissions after."
msgstr ""
#: wiki/templates/wiki/article/create_root.html
msgid "Root article"
msgstr ""
#: wiki/templates/wiki/article/create_root.html
msgid "Create root"
msgstr ""
#: wiki/templates/wiki/includes/anonymous_blocked.html
#, python-format
msgid ""
"You need to <a href=\"%(login_url)s\">log in</a> or <a "
"href=\"%(signup_url)s\">sign up</a> to use this function."
msgstr ""
24623
24624
24625
24626
24627
24628
24629
24630
24631
24632
24633
24634
24635
24636
24637
24638
24639
24640
24641
24642
24643
24644
24645
24646
24647
24648
24649
24650
24651
24652
24653
24654
24655
24656
24657
24658
24659
24660
24661
24662
24663
24664
24665
24666
24667
24668
24669
24670
24671
24672
24673
24674
24675
24676
24677
24678
24679
24680
24681
24682
24683
24684
24685
24686
24687
24688
24689
24690
24691
24692
24693
24694
24695
24696
24697
24698
24699
24700
24701
24702
24703
24704
24705
24706
24707
24708
24709
24710
24711
24712
24713
24714
24715
24716
24717
24718
24719
24720
24721
24722
24723
24724
24725
24726
24727
24728
24729
24730
24731
24732
24733
24734
24735
24736
24737
24738
24739
24740
24741
24742
24743
24744
24745
24746
24747
24748
24749
24750
24751
24752
24753
24754
24755
24756
24757
24758
24759
24760
24761
24762
24763
24764
24765
24766
24767
24768
24769
24770
24771
24772
24773
24774
24775
#: wiki/templates/wiki/includes/anonymous_blocked.html
msgid "You need to log in og sign up to use this function."
msgstr ""
#: wiki/templates/wiki/includes/article_menu.html
msgid "View Source"
msgstr ""
#: wiki/templates/wiki/includes/breadcrumbs.html
msgid "Sub-articles for"
msgstr ""
#: wiki/templates/wiki/includes/breadcrumbs.html
msgid "No sub-articles"
msgstr ""
#: wiki/templates/wiki/includes/breadcrumbs.html
msgid "...and more"
msgstr ""
#: wiki/templates/wiki/includes/breadcrumbs.html
msgid "Browse articles in this level"
msgstr ""
#: wiki/templates/wiki/includes/breadcrumbs.html
msgid "New article next to"
msgstr ""
#: wiki/templates/wiki/includes/breadcrumbs.html
msgid "New article below"
msgstr ""
#: wiki/templates/wiki/includes/revision_info.html
msgid "by"
msgstr ""
#: wiki/templates/wiki/includes/revision_info.html
msgid "restored"
msgstr ""
#: wiki/templates/wiki/includes/revision_info.html
msgid "unlocked"
msgstr ""
#: wiki/views/accounts.py
msgid "You are now sign up... and now you can sign in!"
msgstr "თქვენ უკვე დარეგისტრირებული ხართ... შეგიძლიათ სისტემაში შესვლა!"
#: wiki/views/accounts.py
msgid "You are no longer logged in. Bye bye!"
msgstr "თქვენ უკვე გამოხვედით სისტემიდან. ნახვამდის!"
#: wiki/views/accounts.py
msgid "You are now logged in! Have fun!"
msgstr "თქვენ ხართ სისტემაში! გაერთეთ!"
#: wiki/views/article.py
#, python-format
msgid "New article '%s' created."
msgstr "შეიქმნა ახალი სტატია '%s'."
#: wiki/views/article.py
#, python-format
msgid "There was an error creating this article: %s"
msgstr "სტატიის შექმნის პროცესში დაფიქსირდა შეცდომა: %s"
#: wiki/views/article.py
msgid "There was an error creating this article."
msgstr "სტატიის შექმნის პროცესში დაფიქსირდა შეცდომა."
#: wiki/views/article.py
msgid ""
"This article cannot be deleted because it has children or is a root article."
msgstr ""
"შვილობილი სტატიების არსებობის, ან იმის გამო, რომ სტატია წარმოადგენს ძირითად "
"სტატიას, მისი წაშლა ვერ ხერხდება."
#: wiki/views/article.py
msgid ""
"This article together with all its contents are now completely gone! Thanks!"
msgstr "ეს სტატია მისი სრული რესურსებით წაშლილია! გმადლობთ!"
#: wiki/views/article.py
#, python-format
msgid ""
"The article \"%s\" is now marked as deleted! Thanks for keeping the site "
"free from unwanted material!"
msgstr ""
"სტატია „%s“ წაშლილია! გმადლობთ, რომ ჩვენს გვერდს არასასურველი ინფორმაციით არ"
" ტვირთავთ!"
#: wiki/views/article.py
msgid "Your changes were saved."
msgstr "თქვენ მიერ განხორციელებული ცვლილებები დამახსოვრებულია."
#: wiki/views/article.py
msgid "A new revision of the article was successfully added."
msgstr ""
#: wiki/views/article.py
msgid "Restoring article"
msgstr "სტატიის აღდგენა"
#: wiki/views/article.py
#, python-format
msgid "The article \"%s\" and its children are now restored."
msgstr "სტატია „%s“ და მისი შვილობილი სტატიები აღდგენილია."
#: wiki/views/article.py
#, python-format
msgid ""
"The article %(title)s is now set to display revision #%(revision_number)d"
msgstr "სტატიაში %(title)s უკვე ასახულია ცვლილება #%(revision_number)d"
#: wiki/views/article.py
msgid "New title"
msgstr "ახალი სათაური"
#: wiki/views/article.py
#, python-format
msgid "Merge between Revision #%(r1)d and Revision #%(r2)d"
msgstr "# %(r1)d და # %(r2)d განახლებული ვერსიების გაერთიანება"
#: wiki/views/article.py
#, python-format
msgid ""
"A new revision was created: Merge between Revision #%(r1)d and Revision "
"#%(r2)d"
msgstr "ახალი ვერსია შექმნილია # %(r1)d და # %(r2)d ვერსიების გაერთიანებით."
#: edx_proctoring_proctortrack/backends/proctortrack_rest.py
msgid ""
"Click on the \"Start System Check\" link below to download and run the "
"proctoring software."
msgstr ""
#: edx_proctoring_proctortrack/backends/proctortrack_rest.py
msgid ""
"Once you have verified your identity and reviewed the exam guidelines in "
"Proctortrack, you will be redirected back to this page."
msgstr ""
"ერთხელ დაადასტურეთ თქვენი ვინაობა და განიხილა გამოცდის ინსტრუქციები "
"Proctortrack- ში, თქვენ გადაბრუნდებით ამ გვერდზე."
#: edx_proctoring_proctortrack/backends/proctortrack_rest.py
msgid ""
"To confirm that proctoring has started, make sure your webcam feed and the "
"blue Proctortrack box are both visible on your screen."
msgstr ""
#: edx_proctoring_proctortrack/backends/proctortrack_rest.py
msgid "Click on the \"Start Proctored Exam\" button below to continue."
msgstr ""