-
-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathen.strings
More file actions
2563 lines (2098 loc) · 102 KB
/
Copy pathen.strings
File metadata and controls
2563 lines (2098 loc) · 102 KB
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
"__locale" = "en_US.UTF-8;Eng";
"__transNames" = "[\P{script=Han}]; Russian-Latin/BGN; Any-Latin";
/* Check for https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html */
/* Main page */
"home" = "Home";
"welcome" = "Welcome";
"to_top" = "To top";
/* Login */
"log_in" = "Log in";
"password" = "Password";
"registration" = "Registration";
"forgot_password" = "Forgot your password?";
"checkbox_in_registration" = "I agree to the <a href='/privacy'>privacy policy</a> and <a href='/terms'>site policies</a>";
"checkbox_in_registration_unchecked" = "You must agree to the privacy policy and rules in order to register.";
"login_failed" = "Login failed";
"invalid_username_or_password" = "The username or password you entered is incorrect. <a href='/restore'>Forgot your password?</a>";
"failed_to_register" = "Failed to register";
"referral_link_invalid" = "The referral link is invalid.";
"registration_disabled" = "Registration has been disabled by the system administrator.";
"user_already_exists" = "A user with this email already exists.";
"access_recovery" = "Access recovery";
"page_access_recovery" = "Restore access to the page";
"access_recovery_info" = "Forgot your password? Don't worry, enter your details and we'll send you an email with instructions on how to recover your account.";
"access_recovery_info_2" = "Enter your new password. All current sessions will be suspended and access tokens will be revoked.";
"reset_password" = "Reset the password";
"2fa_code_2" = "Two-factor authentication code";
"password_successfully_reset" = "Your password has been successfully reset.";
"password_reset_email_sent" = "If you are registered, you will receive instructions via email.";
"password_reset_error" = "An unexpected error occurred while resetting the password.";
"password_reset_rate_limit_error" = "You can't do it that often, sorry.";
"email_sent" = "Email has been successfully sent.";
"email_sent_desc" = "If this email address exists, you will receive instructions.";
"email_error" = "An unexpected error occurred while sending the email.";
"email_rate_limit_error" = "You can't do it that often, sorry.";
"email_not_in_whitelist" = "Sorry, but at this moment your email provider is forbidden for registration.";
"email_whitelist_desc" = "Allowed email providers: $1";
"email_verify_success" = "Your email has been verified. Have a great time!";
"registration_disabled_info" = "Registration has been disabled by the system administrator. If possible, request an invitation from your friend if they are registered on this site.";
"registration_closed" = "Registration is closed.";
"invites_you_to" = "<strong>$1</strong> invites you to $2";
"register_meta_desc" = "Register in $1 now!";
"register_referer_meta_title" = "$1 invites you to $2!";
"register_referer_meta_desc" = "Join $1 and many other users at $2!";
"registration_welcome_1" = "is a universal colleague search tool based on the VKontakte structure.";
"registration_welcome_2" = "We want friends, classmates, neighbors and colleagues to always be in touch.";
"users" = "Users";
"other_fields" = "Other fields";
/* Profile information */
"select_language" = "Choose language";
"edit" = "Edit";
"birth_date" = "Birth date";
"registration_date" = "Registration date";
"hometown" = "Hometown";
"this_is_you" = "that's you";
"edit_page" = "Edit page";
"edit_group" = "Edit group";
"change_status" = "change status";
"name" = "Name";
"surname" = "Surname";
"pronouns" = "Pronouns";
"male" = "he/him";
"female" = "she/her";
"neutral" = "they/them";
"description" = "Description";
"save" = "Save";
"main_information" = "Main information";
"additional_information" = "Additional information";
"nickname" = "Nickname";
"online" = "Online";
"was_online" = "was online";
"was_online_m" = "was online";
"was_online_f" = "was online";
/* For male and female */
"all_title" = "All";
"information" = "Information";
"status" = "Status";
"no_information_provided" = "No information provided.";
"deceased_person" = "Deceased person";
"none" = "none";
"desc_none" = "no description";
"send" = "Send";
"years_zero" = "0 years old";
"years_one" = "1 year old";
"years_other" = "$1 years old";
"show_my_birthday" = "Show my birthday";
"show_only_month_and_day" = "Show only month and day";
"relationship" = "Relationship";
"relationship_0" = "Not selected";
"relationship_1" = "Not married";
"relationship_2" = "Dating";
"relationship_3" = "Engaged";
"relationship_4" = "Married";
"relationship_5" = "In a civil marriage";
"relationship_6" = "In love";
"relationship_7" = "It's complicated";
"relationship_8" = "Actively searching";
/* xd */
"relationship_2_prefix" = "with";
"relationship_3_prefix" = "with";
"relationship_4_prefix" = "with";
"relationship_5_prefix" = "with";
"relationship_6_prefix" = "with";
"relationship_7_prefix" = "with";
"politViews" = "Political views";
"politViews_0" = "Not Selected";
"politViews_1" = "Indifferent";
"politViews_2" = "Communist";
"politViews_3" = "Socialist";
"politViews_4" = "Moderate";
"politViews_5" = "Liberal";
"politViews_6" = "Conservative";
"politViews_7" = "Monarchical";
"politViews_8" = "Ultra-Conservative";
"politViews_9" = "Libertarian";
"contact_information" = "Contact information";
"email" = "Email";
"phone" = "Phone";
"telegram" = "Telegram";
"personal_website" = "Personal website";
"city" = "City";
"address" = "Address";
"personal_information" = "Personal information";
"interests" = "Interests";
"additional" = "Additional";
"additional_fields_description" = "There you can add additional info about you, like another profiles links or your interests. Up to a maximum of $1 such fields can be added.";
"additional_field_name" = "Name";
"additional_field_text" = "Text";
"additional_field_place" = "Place";
"additional_field_place_contacts" = "In \"contacts\"";
"additional_field_place_interests" = "In \"interests\"";
"favorite_music" = "Favorite music";
"favorite_films" = "Favorite flims";
"favorite_shows" = "Favorite TV-shows";
"favorite_books" = "Favorite books";
"favorite_quotes" = "Favorite quotes";
"favorite_games" = "Favorite games";
"custom_field_favorite_performers" = "Favourite performers";
"custom_field_favorite_content_makers" = "Favourite content-makers";
"custom_field_favorite_anime" = "Favourite anime";
"custom_field_favorite_manga" = "Favourite manga";
"custom_field_favorite_vtubers" = "Favourite vtubers";
"custom_field_favorite_albums" = "Favourite music albums";
"information_about" = "About";
"updated_at" = "Updated at $1";
"user_banned" = "Unfortunately, we had to block <b>$1's</b> user page.";
"user_banned_comment" = "Moderator's comment:";
"verified_page" = "Verified page";
"user_is_blocked" = "User is blocked";
"before" = "before";
"forever" = "forever";
"closed_page" = "Closed page";
"limited_access_to_page_m" = "$1 limited access to his page.";
"limited_access_to_page_f" = "$1 limited access to her page.";
"you_can_add" = "You can";
"add_to_friends_m" = "add him to friends.";
"add_to_friends_f" = "add her to friends.";
"register_to_access_page_m" = "Sign up to get access to his page.";
"register_to_access_page_f" = "Sign up to get access to her page.";
/* Wall */
"feed" = "News";
"post_writes_m" = "wrote";
"post_writes_f" = "wrote";
"post_writes_g" = "published";
"post_deact_m" = "deleted his profile saying:";
"post_deact_f" = "deleted her profile saying:";
"post_deact_g" = "deleted their profile saying:";
"post_deact_silent_m" = "silently deleted his profile.";
"post_deact_silent_f" = "silently deleted her profile.";
"post_deact_silent_f" = "silently deleted their profile.";
"post_on_your_wall" = "on your wall";
"post_on_group_wall" = "in $1";
"post_on_user_wall" = "on $1's wall";
"wall" = "Wall";
"post" = "Post";
"write" = "Write";
"publish" = "Publish";
"delete" = "Delete";
"comments" = "Comments";
"share" = "Share";
"pin" = "Pin";
"unpin" = "Unpin";
"pinned" = "pinned";
"comments_tip" = "Be the first to leave a comment on this post!";
"your_comment" = "Your comment";
"auditory" = "Auditory";
"in_wall" = "to my wall";
"in_group" = "to a group";
"shown" = "Shown";
"x_out_of" = "$1 of";
"wall_zero" = "no posts";
"wall_one" = "$1 post";
"wall_other" = "$1 posts";
"publish_post" = "Add post";
"view_other_comments" = "View other comments";
"no_comments" = "No comments";
"my_news" = "My news";
"all_news" = "All news";
"posts_per_page" = "Number of posts per page";
"show_ignored_sources" = "Show ignored sources";
"auto_scroll" = "Autoscroll";
"ajax_routing" = "AJAX-transitions";
"attachment" = "Attachment";
"post_as_group" = "Post as group";
"comment_as_group" = "Comment as group";
"add_source" = "Add source";
"set_source" = "Apply source";
"source" = "Source";
"set_source_tip" = "If you are using content from other authors, it is important to provide a source to the original.<br>You can do it below.";
"add_signature" = "Add signature";
/* ^ can be translated as "author's signature". ^ */
"contains_nsfw" = "Contains NSFW content";
"nsfw_warning" = "This post may have NSFW-content";
"report" = "Report";
"attach" = "Attach";
"detach" = "Detach";
"attach_photo" = "Attach photo";
"attach_video" = "Attach video";
"attach_geotag" = "Attach geotag";
"draw_graffiti" = "Draw graffiti";
"no_posts_abstract" = "Nobody wrote anything here... So far.";
"attach_no_longer_available" = "This attachment is no longer available.";
"open_post" = "Open post";
"version_incompatibility" = "This attachment could not be displayed. Probably because the database is incompatible with the current version of OpenVK.";
"graffiti" = "Graffiti";
"reply" = "Reply";
"post_is_ad" = "This post is sponsored.";
"edited_short" = "edited";
"feed_settings" = "Feed settings";
"ignored_sources" = "Ignored sources";
"ignore_user" = "Ignore user";
"unignore_user" = "Unignore user";
"ignore_club" = "Ignore club";
"unignore_club" = "Unignore club";
"no_ignores_count" = "No ignored sources.";
"stop_ignore" = "Unignore";
"start_from_page" = "Start from page";
"all_posts" = "All posts";
"users_posts" = "Posts by $1";
"clubs_posts" = "Group's posts";
"others_posts" = "Others posts";
"show_more" = "Show more";
"has_repost" = "Has repost";
"likers_list" = "Likers list";
"liked_verb" = "Liked by";
"liked_by_x_people_one" = "Liked by $1 user";
"liked_by_x_people_few" = "Liked by $1 users";
"liked_by_x_people_many" = "Liked by $1 users";
"liked_by_x_people_other" = "Liked by $1 users";
"liked_by_x_people_zero" = "Nobody liked";
"geo_place" = "Place";
"geotag" = "Geotag";
"nearest_posts" = "Nearest posts";
"Latitude" = "Latitude";
"longitude" = "Longitude";
"name_of_the_place" = "Place's name";
"no_nearest_posts" = "No nearby posts";
"shown_last_nearest_posts" = "Showing last $1 posts per month";
"change_geo_name" = "Change geo name";
"change_geo_name_new" = "New name";
/* Friends */
"friends" = "Friends";
"followers" = "Followers";
"follower" = "Follower";
"friends_add" = "Add to friends";
"friends_delete" = "Remove from friends";
"friends_reject" = "Cancel request";
"friends_accept" = "Accept request";
"friends_leave_in_flw" = "Leave in followers";
"friends_add_msg" = "Now you're friends.";
"friends_rej_msg" = "You left this user as subscriber.";
"friends_rem_msg" = "You deleted this user from your friend list.";
"send_message" = "Send a message";
"incoming_req" = "Pending";
"outcoming_req" = "Outgoing";
"req" = "Requests";
"friends_online" = "Friends online";
"all_friends" = "All friends";
"req_zero" = "No requests were found...";
"req_one" = "Found $1 request";
"req_other" = "Found $1 requests";
"friends_zero" = "No friends";
"friends_one" = "$1 friend";
"friends_other" = "$1 friends";
"friends_online_zero" = "No friends online";
"friends_online_one" = "$1 friend is online";
"friends_online_other" = "$1 friends are online";
"friends_list_zero" = "You have no friends yet";
"friends_list_one" = "You have $1 friend";
"friends_list_other" = "You have $1 friends";
"friends_list_online_zero" = "You have no friends online";
"friends_list_online_one" = "You have $1 friend online";
"friends_list_online_other" = "You have $1 friends online";
"followers_zero" = "No followers";
"followers_one" = "$1 follower";
"followers_other" = "$1 followers";
"subscriptions_zero" = "No subscriptions";
"subscriptions_one" = "$1 subscription";
"subscriptions_other" = "$1 subscriptions";
/* Group */
"group" = "Group";
"name_group" = "Name";
"subscribe" = "Subscribe";
"unsubscribe" = "Unsubscribe";
"subscriptions" = "Subscriptions";
"join_community" = "Join community";
"leave_community" = "Leave community";
"check_community" = "View community";
"min_6_community" = "Name of the group must have more that 6 characters";
"participants" = "Participants";
"groups" = "Groups";
"meetings" = "Meetings";
"create_group" = "Create group";
"group_managers" = "Managers";
"group_type" = "Group type";
"group_type_open" = "This is an open group. Anyone can enter it.";
"group_type_closed" = "This is a closed group. To enter, you must submit a request.";
"creator" = "Creator";
"administrators" = "Administrators";
"add_to_left_menu" = "Add to left menu";
"remove_from_left_menu" = "Remove from left menu";
"all_followers" = "All followers";
"only_administrators" = "Only administrators";
"website" = "Website";
"managed" = "Managed";
"size" = "Size";
"administrators_one" = "$1 administrator";
"administrators_other" = "$1 administrators";
"role" = "Role";
"administrator" = "Administrator";
"promote_to_admin" = "Promote to admin";
"promote_to_owner" = "Promote to owner";
"devote" = "Devote";
"set_comment" = "Set comment";
"hidden_yes" = "Hidden: Yes";
"hidden_no" = "Hidden: No";
"group_allow_post_for_everyone" = "Open";
"group_limited_post" = "Suggestions";
"group_closed_post" = "Closed";
"suggest_new" = "Suggest post";
"suggested_by_you_zero" = "$1 suggested posts by you";
"suggested_by_you_one" = "One suggested post by you";
"suggested_by_you_few" = "$1 suggested posts by you";
"suggested_by_you_many" = "$1 suggested posts by you";
"suggested_by_you_other" = "$1 suggested posts by you";
"suggested_by_everyone_zero" = "$1 suggested posts";
"suggested_by_everyone_one" = "One suggested post";
"suggested_by_everyone_few" = "$1 suggested posts";
"suggested_by_everyone_many" = "$1 suggested posts";
"suggested_by_everyone_other" = "$1 suggested posts";
"group_hide_from_global_feed" = "Don't display posts in global feed";
"suggested_posts_by_you" = "Your suggested posts";
"suggested_posts_by_everyone" = "Suggested posts";
"suggested" = "Suggested";
"suggested_posts_everyone" = "Posts suggested by users";
"no_suggested_posts_by_you" = "You haven't suggested any post to this group yet.";
"no_suggested_posts_by_people" = "No posts have been suggested to this group yet.";
"publish_suggested" = "Accept";
"decline_suggested" = "Decline";
"error_loading_suggest" = "Error when loading new posts";
"publishing_suggested_post" = "Publishing suggested post";
"suggested_posts_in_group_zero" = "You've looked at all the suggested posts, congratulations!";
"suggested_posts_in_group_one" = "This group has one suggested post";
"suggested_posts_in_group_few" = "This group has $1 suggested posts";
"suggested_posts_in_group_many" = "This group has $1 suggested posts";
"suggested_posts_in_group_other" = "This group has $1 suggested posts";
"suggested_posts_in_group_by_you_zero" = "You haven't suggested any post to this group";
"suggested_posts_in_group_by_you_one" = "You suggested one post to this group";
"suggested_posts_in_group_by_you_few" = "You suggested $1 posts to this group";
"suggested_posts_in_group_by_you_many" = "You suggested $1 posts to this group";
"suggested_posts_in_group_by_you_other" = "You suggested $1 posts to this group";
"suggestion_successfully_published" = "Post successfully published";
"suggestion_successfully_declined" = "Post successfully declined";
"suggestion_press_to_go" = "Go to post";
"error_declining_invalid_post" = "The suggested post you attempted to decline is invalid";
"error_declining_not_suggested_post" = "The post you attempted to decline is not suggested";
"error_declining_declined_post" = "This suggested post has already been declined";
"error_accepting_invalid_post" = "The suggested post you attempted to accept is invalid";
"error_accepting_not_suggested_post" = "The post you attempted to accept is not suggested";
"error_accepting_declined_post" = "This suggested post has already been declined";
"statistics" = "Statistics";
"group_administrators_list" = "Admins list";
"group_display_only_creator" = "Display only group creator";
"group_display_all_administrators" = "Display all administrators";
"group_dont_display_administrators_list" = "Display nothing";
"group_changeowner_modal_title" = "Transfer Owner's Permissions";
"group_changeowner_modal_text" = "Attention! You are transferring ownership rights to user $1. This action is irreversible. After the transfer, you will remain an administrator, but you can easily step down from this role.";
"group_owner_setted" = "The new owner ($1) has been successfully assigned to the community $2. You have been granted administrator rights in the community. If you wish to revert to the owner role, please contact <a href='/support?act=new'>site technical support</a>.";
"participants_zero" = "No participants";
"participants_one" = "$1 participant";
"participants_other" = "$1 participant";
"groups_zero" = "No groups";
"groups_one" = "$1 group";
"groups_other" = "$1 groups";
"groups_list_zero" = "You are not a participant in any group";
"groups_list_one" = "You are participating in one group";
"groups_list_other" = "You are a participant of $1 groups";
"meetings_zero" = "No meetings";
"meetings_one" = "$1 meeting";
"meetings_other" = "$1 meetings";
"search_by_groups" = "Explore Groups";
"error_suggestions" = "Error accessing to suggestions";
"error_suggestions_closed" = "This group has closed wall.";
"error_suggestions_open" = "This group has open wall.";
"error_suggestions_access" = "Only group's administrators can view all suggested posts.";
"group_banned" = "Unfortunately, we had to block the <b>$1</b> group.";
/* Albums */
"create" = "Create";
"albums" = "Albums";
"album" = "Album";
"photos" = "photos";
"photo" = "Photo";
"create_album" = "Create album";
"edit_album" = "Edit album";
"edit_photo" = "Edit photo";
"creating_album" = "Creating album";
"delete_photo" = "Delete photo";
"sure_deleting_photo" = "Do you sure you want to delete this photo from album?";
"upload_photo" = "Upload photo";
"photo" = "Photo";
"upload_button" = "Upload";
"open_original" = "Open original";
"avatar_album" = "Profile photos";
"wall_album" = "Wall photos";
"albums_zero" = "No albums";
"albums_one" = "$1 album";
"albums_other" = "$1 albums";
"albums_list_zero" = "You don't have any albums";
"albums_list_one" = "You have one album";
"albums_list_other" = "You have $1 albums";
"add_image" = "Add image";
"add_image_group" = "Upload image";
"upload_new_picture" = "Upload new photo";
"uploading_new_image" = "Uploading new photo";
"friends_avatar" = "It will be easier for friends to recognize you if you upload your real picture.";
"groups_avatar" = "Good photo can make your group more recognizable.";
"formats_avatar" = "You can upload an image in JPG, GIF or PNG format.";
"troubles_avatar" = "If you're having trouble uploading, try selecting a smaller photo.";
"webcam_avatar" = "If your computer has a webcam, you can <a id='_takeSelfie'>take a snapshot »</a>";
"publish_on_wall" = "Make post on wall";
"take_snapshot" = "Take snapshot";
"your_browser_doesnt_support_webcam" = "Your browser does not support webcam video capture.";
"selected_area_user" = "The selected area will be shown on your page.";
"selected_area_club" = "The selected area will be shown on the group page.";
"selected_area_rotate" = "If the image is not oriented correctly, the photo can be rotated.";
"deleting_avatar" = "Deleting photo";
"deleting_avatar_sure" = "Do you sure you want to delete avatar?";
"deleted_avatar_notification" = "Picture deleted successfully";
"save_changes" = "Save changes";
"upd_m" = "updated his profile picture";
"upd_f" = "updated her profile picture";
"upd_n" = "updated their profile picture";
"upd_g" = "updated group's picture";
"add_photos" = "Add photos";
"upload_picts" = "Upload photos";
"end_uploading" = "Finish uploading";
"photos_successfully_uploaded" = "Photos uploaded successfully";
"click_to_go_to_album" = "Click here to go to album.";
"error_uploading_photo" = "Error when uploading photo";
"too_many_pictures" = "No more than 10 pictures";
"too_many_attachments" = "Too many attachments.";
"drag_files_here" = "Drag files here";
"only_images_accepted" = "File \"$1\" is not an image";
"max_filesize" = "Max filesize is $1 MB";
"uploading_photos_from_computer" = "Uploading photos from Your computer";
"supported_formats" = "Supported file formats: JPG, PNG, and GIF.";
"max_load_photos" = "You can upload up to 10 photos at a time.";
"tip" = "Tip";
"tip_ctrl" = "To select multiple photos at once, hold down the Ctrl key when selecting files in Windows or the CMD key in Mac OS.";
"album_poster" = "Album Poster";
"select_photo" = "Select Photos";
"upload_new_photo" = "Upload New Photo";
"is_x_photos_zero" = "Just zero photos.";
"is_x_photos_one" = "Just one photo.";
"is_x_photos_few" = "Just $1 photos.";
"is_x_photos_many" = "Just $1 photos.";
"is_x_photos_other" = "Just $1 photos.";
"all_photos" = "All photos";
"error_uploading_photo" = "Error when uploading photo. Error text: ";
"too_many_photos" = "Too many photos.";
"photo_x_from_y" = "Photo $1 from $2";
/* Notes */
"notes" = "Notes";
"note" = "Note";
"name_note" = "Title";
"text_note" = "Content";
"create_note" = "Add note";
"edit_note" = "Edit note";
"actions" = "Actions";
"edited" = "Edited";
"notes_zero" = "No notes";
"notes_one" = "$1 note";
"notes_other" = "$1 notes";
"notes_start_screen" = "Use notes to share your events with friends and stay updated on theirs.";
"note_preview" = "Preview Draft";
"note_preview_warn" = "Preview Mode Activated";
"note_preview_warn_details" = "Note behavior or appearance may change after saving. Avoid excessive use of preview.";
"note_preview_empty_err" = "Previewing an empty or nameless note? Why, Mr. White?";
"notes_list_zero" = "No notes found";
"notes_list_one" = "$1 note found";
"notes_list_other" = "$1 notes found";
"select_note" = "Selecting note";
"no_notes" = "You don't have any notes";
"error_attaching_note" = "Error when attaching note";
"select_or_create_new" = "Select an existing note or <a href='/notes/create'>create a new one</a>";
"notes_closed" = "You can't attach a note to the post because only you can see them.<br> You can change this in <a href=\"/settings?act=privacy\">settings</a>.";
"do_not_attach_note" = "Do not attach a note";
"something_is_supported_from_xhtml" = "<a href='/kb/notes'>Something</a> from (X)HTML supported.";
"something" = "Something";
"supports_xhtml" = "from (X)HTML supported.";
/* Notes: Article Viewer */
"aw_legacy_ui" = "Legacy interface";
/* Menus */
/* Note that is string need to fit into the "My Page" link */
"edit_button" = "edit";
"my_page" = "My Page";
"my_friends" = "My Friends";
"my_photos" = "My Photos";
"my_videos" = "My Videos";
"my_messages" = "My Messages";
"my_notes" = "My Notes";
"my_audios" = "My Audios";
"my_groups" = "My Groups";
"my_feed" = "My Feed";
"my_feedback" = "My Feedback";
"my_settings" = "My Settings";
"bookmarks" = "Bookmarks";
"bookmarks_tab" = "Saved";
"bug_tracker" = "Bug Tracker";
"menu_settings" = "Settings";
"menu_login" = "Login";
"menu_registration" = "Register";
"menu_help" = "Help";
"menu_logout" = "Log out";
"menu_support" = "Support";
"header_home" = "home";
"header_groups" = "groups";
"header_people" = "people";
"header_invite" = "invite";
"header_help" = "help";
"header_log_out" = "log out";
"header_search" = "Search";
"header_login" = "login";
"header_registration" = "registration";
"left_menu_donate" = "Donate";
"footer_about_instance" = "about instance";
"footer_rules" = "rules";
"footer_blog" = "blog";
"footer_help" = "help";
"footer_developers" = "developers";
"footer_choose_language" = "choose language";
"footer_privacy" = "privacy";
/* Settings */
"main" = "Main";
"contacts" = "Contacts";
"avatar" = "Avatar";
"privacy" = "Privacy";
"interface" = "Interface";
"security" = "Security";
"profile_picture" = "Profile picture";
"picture" = "Picture";
"change_password" = "Change password";
"old_password" = "Old password";
"new_password" = "New password";
"repeat_password" = "Repeat password";
"avatars_style" = "Avatar style";
"style" = "Style";
"default" = "default";
"arbitrary_avatars" = "Arbitrary";
"cut" = "Square";
"round_avatars" = "Round";
"apply_style_for_this_device" = "Apply style only for this device";
"ui_settings_window" = "Advanced settings";
"search_for_groups" = "Search for groups";
"search_for_users" = "Search for users";
"search_for_posts" = "Search for posts";
"search_for_comments" = "Search for comments";
"search_for_videos" = "Search for videos";
"search_for_apps" = "Search for apps";
"search_for_notes" = "Search for notes";
"search_for_audios" = "Search for music";
"search_for_audios_playlists" = "Search for playlists";
"search_for_docs" = "Search for documents";
"search_button" = "Find";
"search_placeholder" = "Start typing any name, title or word";
"results_zero" = "No results";
"results_one" = "$1 result";
"results_other" = "$1 results";
"privacy_setting_access_page" = "Who can view my page";
"privacy_setting_read_info" = "Who can see the main information on my page";
"privacy_setting_see_groups" = "Who can see my groups and meetings";
"privacy_setting_see_photos" = "Who can see my photos";
"privacy_setting_see_videos" = "Who can see my videos";
"privacy_setting_see_notes" = "Who can see my notes";
"privacy_setting_see_friends" = "Who can see my friends";
"privacy_setting_add_to_friends" = "Who can add me to friends";
"privacy_setting_write_wall" = "Who can publish posts on my wall";
"privacy_setting_write_messages" = "Who can write messages to me";
"privacy_setting_view_audio" = "Who can see my audios";
"privacy_setting_see_likes" = "Who can see my likes";
"privacy_value_anybody" = "Anybody";
"privacy_value_anybody_dative" = "Anybody";
"privacy_value_users" = "OpenVK users";
"privacy_value_friends" = "Friends";
"privacy_value_friends_dative" = "Friends";
"privacy_value_only_me" = "Only me";
"privacy_value_only_me_dative" = "Only me";
"privacy_value_nobody" = "Nobody";
"profile_type" = "Profile type";
"profile_type_open" = "Open";
"profile_type_closed" = "Closed";
"your_email_address" = "Your Email address";
"your_page_address" = "Your address page";
"page_address" = "Address page";
"marital_status_user_id" = "User ID";
"current_email_address" = "Current email address";
"new_email_address" = "New email address";
"save_email_address" = "Save email address";
"page_id" = "Page ID";
"you_can_also" = "You can also";
"delete_your_page" = "delete your page";
"delete_album" = "delete album";
"ui_settings_interface" = "Interface";
"ui_settings_sidebar" = "Left menu";
"ui_settings_rating" = "Rating";
"ui_settings_rating_show" = "Show";
"ui_settings_rating_hide" = "Hide";
"ui_settings_nsfw_content" = "NSFW content";
"ui_settings_nsfw_content_dont_show" = "Don't show in global feed";
"ui_settings_nsfw_content_blur" = "Just blur";
"ui_settings_nsfw_content_show" = "Show";
"ui_settings_view_of_posts" = "View of posts";
"ui_settings_view_of_posts_old" = "Old";
"ui_settings_view_of_posts_microblog" = "Microblog";
"ui_settings_main_page" = "Main page";
"ui_settings_sessions" = "Sessions";
"additional_links" = "Additional links";
"ad_poster" = "Ad poster";
"email_change_confirm_message" = "Please confirm your new email address for the change to take effect. We have sent instructions to it.";
"profile_deactivate" = "Delete Account";
"profile_deactivate_button" = "Delete Account";
"profile_deactivate_header" = "We're sorry to see you go. Please share the reason for deleting your account and any feedback you have. Your input helps us improve the site!";
"profile_deactivate_reason_header" = "Please select a reason for leaving";
"profile_deactivate_reason_1" = "I have another profile and don't need this one";
"profile_deactivate_reason_1_text" = "I created a new page and now I want to wipe my past.";
"profile_deactivate_reason_2" = "The website consumes too much of my time";
"profile_deactivate_reason_2_text" = "While the site is nice, it's taking away time I need for work and life.";
"profile_deactivate_reason_3" = "The website has inappropriate content";
"profile_deactivate_reason_3_text" = "I have found enough porn and pirated content to last me a lifetime, I'm leaving now.";
"profile_deactivate_reason_4" = "I am concerned about the safety of my data";
"profile_deactivate_reason_4_text" = "I feel uneasy about my privacy here. I have to leave.";
"profile_deactivate_reason_5" = "No one comments on my posts";
"profile_deactivate_reason_5_text" = "This lack of engagement is disheartening. You'll regret losing me.";
"profile_deactivate_reason_6" = "Other reason";
"profile_deactivated_msg" = "Your account has been <b>deleted</b>.<br/><br/>If you would like to start using the site again, you can <a href='/settings/reactivate'>restore your account</a> until $1.";
"profile_deactivated_status" = "Account deleted";
"profile_deactivated_info" = "This account has been deleted.<br/>No further information available.";
"share_with_friends" = "Share with friends";
"end_all_sessions" = "End all sessions";
"end_all_sessions_description" = "If you wish to log out of $1 on all devices, click the button below.";
"end_all_sessions_done" = "All sessions have been terminated, including mobile apps.";
"backdrop_short" = "Backdrop";
"backdrop" = "Page Backdrop";
"backdrop_desc" = "You can set two pictures as the backdrop for your profile or group. They will be displayed on the left and right edges of the page, adding personality to your profile.";
"backdrop_warn" = "The images will be arranged as shown in the layout above. Their height will be automatically increased to occupy 100% of the screen height, with a blur in the middle. You cannot replace the background of the main OpenVK interface or add audio.";
"backdrop_about_adding" = "You can upload only one picture, although depending on the design, the end result may look imperfect. You can also change only one picture: if you already have two images set up and you want to change one, upload only one, and the other won't be removed. To remove both images, press the button below; you can't remove pictures individually.";
"backdrop_save" = "Save Backdrop Picture(s)";
"backdrop_remove" = "Remove All Backdrop Pictures";
"backdrop_error_title" = "Error Saving Backdrop Settings";
"backdrop_error_no_media" = "Images are corrupted or haven't been uploaded in their entirety.";
"backdrop_succ" = "Backdrop settings saved successfully";
"backdrop_succ_rem" = "Backdrop images have been successfully removed";
"backdrop_succ_desc" = "Users will start seeing changes in 5 minutes.";
"browse" = "Browse";
/* Two-factor authentication */
"two_factor_authentication" = "Two-Factor Authentication";
"two_factor_authentication_disabled" = "Enhances security by requiring a code from the 2FA app to access your account, providing reliable protection against hacking.";
"two_factor_authentication_enabled" = "Two-Factor Authentication is active. Your account is securely protected.";
"two_factor_authentication_login" = "Two-Factor Authentication is enabled. Enter the code received in the application to log in.";
"two_factor_authentication_settings_1" = "Two-Factor Authentication via TOTP can be used even without an internet connection. You'll need a code generation app such as <b>Google Authenticator</b> for Android and iOS or <b>FOSS Aegis and andOTP</b> for Android. Ensure your phone's date and time are set correctly.";
"two_factor_authentication_settings_2" = "Using the app for two-factor authentication, scan the QR code below:";
"two_factor_authentication_settings_3" = "Alternatively, manually enter the provided secret key: <b>$1</b>.";
"two_factor_authentication_settings_4" = "Now, enter the code generated by the app and your account password to confirm your identity.";
"connect" = "Connect";
"enable" = "Enable";
"disable" = "Disable";
"code" = "Code";
"2fa_code" = "2FA code";
"incorrect_password" = "Password is incorrect";
"incorrect_code" = "Code is incorrect";
"incorrect_2fa_code" = "Two-factor authentication code is incorrect";
"two_factor_authentication_enabled_message" = "Two-factor authentication is now enabled";
"two_factor_authentication_enabled_message_description" = "Your account is now more secure. We recommend downloading <a href='javascript:viewBackupCodes()'>backup codes</a>.";
"two_factor_authentication_disabled_message" = "Two-factor authentication has been disabled";
"view_backup_codes" = "See backup codes";
"backup_codes" = "Backup codes for login verification";
"two_factor_authentication_backup_codes_1" = "Backup codes enable you to confirm your login when you can't access your phone, such as when traveling.";
"two_factor_authentication_backup_codes_2" = "You have <b>10 more codes</b>, and each code can only be used once. Print them, store them securely, and use when needed for login verification.";
"two_factor_authentication_backup_codes_3" = "You can request new codes if needed. Only the latest set of backup codes generated is valid.";
"viewing_backup_codes" = "View backup codes";
"disable_2fa" = "Turn off 2FA";
"viewing" = "View";
/* OAuth */
"identifies_itself_as" = "that identifies itself as $1";
"located_at_url" = "located at $1";
"wants_your_token" = "wants to access your account";
"app_will_have_access_to" = "App will have access to:";
"oauth_scope_all" = "profile information, status, list of friends, photos, wall posts, audios, videos, notifications, fishing rod handle, messages, gifts, <b>your e-mail</b>, polls, communities, discussions, notes, <b>payment method</b>, likes and comments";
"oauth_grant" = "Allow";
"oauth_deny" = "Deny";
/* Sorting */
"sort_randomly" = "Sort randomly";
"sort_up" = "Sort by ID up";
"sort_down" = "Sort by ID down";
"new_first" = "New frist";
"old_first" = "Old first";
/* Videos */
"videos" = "Videos";
"video" = "Video";
"upload_video" = "Upload video";
"video_uploaded" = "Uploaded";
"video_updated" = "Updated";
"video_link_to_yt" = "Link to YouTube";
"info_name" = "Title";
"info_description" = "Description";
"info_uploaded_by" = "Uploaded by";
"info_upload_date" = "Upload date";
"videos_zero" = "No videos";
"videos_one" = "$1 video";
"videos_other" = "$1 videos";
"view_video" = "View";
"selecting_video" = "Selecting videos";
"upload_new_video" = "Upload new video";
"max_attached_videos" = "Max is 10 videos";
"max_attached_photos" = "Max is 10 photos";
"max_attached_audios" = "Max is 10 audios";
"no_videos" = "You don't have uploaded videos.";
"no_videos_results" = "No results.";
"video_file_upload" = "Upload file";
"video_youtube_upload" = "Add from YouTube";
"change_video" = "Change video";
"unknown_video" = "This video is not supported in your version of OpenVK.";
/* Audios */
"my" = "My";
"audios" = "Audios";
"audio" = "Audio";
"playlist" = "Playlist";
"upload_audio" = "Upload audio";
"upload_audio_to_group" = "Upload audio to group";
"performer" = "Performer";
"audio_name" = "Name";
"genre" = "Genre";
"lyrics" = "Lyrics";
"select_another_file" = "Upload another file";
"limits" = "Limits";
"select_audio" = "Select audio from your computer";
"audio_requirements" = "Audio must be between $1 seconds and $2 minutes, with a file size up to $3 MB, and contain an audio stream.";
"audio_requirements_2" = "Audio must not infringe copyright and related rights.";
"you_can_also_add_audio_using" = "You can also add audio from files you have already downloaded using";
"search_audio_inst" = "audios search";
"audio_embed_not_found" = "Audio not found";
"audio_embed_deleted" = "Audio has been deleted";
"audio_embed_withdrawn" = "The audio has been withdrawn at the request of the copyright holder";
"audio_embed_forbidden" = "The user's privacy settings do not allow this audio to be embedded";
"audio_embed_processing" = "Audio is processing.";
"audio_embed_processing_bait" = "Play anyway";
"audios_count_zero" = "No audios";
"audios_count_one" = "One audio";
"audios_count_few" = "$1 audios";
"audios_count_many" = "$1 audios";
"audios_count_other" = "$1 audios";
"track_unknown" = "Unknown";
"track_noname" = "Untitled";
"my_music" = "My music";
"music_user" = "User's music";
"music_club" = "Group's music";
"audio_new" = "New";
"audio_popular" = "Popular";
"audio_search" = "Search";
"my_audios_small" = "My audios";
"my_audios_small_uploaded" = "Uploaded";
"my_playlists" = "My playlists";
"playlists" = "Playlists";
"audios_explicit" = "Contains obscene language";
"audios_unlisted" = "Unlisted";
"withdrawn" = "Withdrawn";
"deleted" = "Deleted";
"owner" = "Owner";
"searchable" = "Searchable";
"select_audio" = "Select audios";
"no_playlists_thisuser" = "You haven't added any playlists yet.";
"no_playlists_user" = "This user has not added any playlists yet.";
"no_playlists_club" = "This group hasn't added playlists yet.";
"no_audios_thisuser" = "You haven't added any audios yet.";
"no_audios_user" = "This user has not added any audios yet.";
"no_audios_club" = "This group has not added any audios yet.";
"new_playlist" = "New playlist";
"created_playlist" = "created";
"updated_playlist" = "updated";
"bookmark" = "Add to collection";
"unbookmark" = "Remove from collection";
"empty_playlist" = "There are no audios in this playlist.";
"edit_playlist" = "Edit playlist";
"unable_to_load_queue" = "Error when loading queue.";
"fully_delete_audio" = "Delete audio";
"attach_audio" = "Attach audio";
"detach_audio" = "Detach audio";
"show_more_audios" = "Show more audios";
"add_to_playlist" = "Add to playlist";
"remove_from_playlist" = "Remove from playlist";
"delete_playlist" = "Delete playlist";
"playlists_user" = "User's playlists";
"playlists_club" = "Group's playlists";
"change_cover" = "Change cover";
"playlist_cover" = "Playlist cover";
"minutes_count_zero" = "Lasts no minutes";
"minutes_count_one" = "Lasts one minute";
"minutes_count_few" = "Lasts $1 minutes";
"minutes_count_many" = "Lasts $1 minutes";