forked from phpmyadmin/phpmyadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
17321 lines (14282 loc) · 515 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
# Automatically generated <>, 2010.
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.2.6-dev\n"
"Report-Msgid-Bugs-To: [email protected]\n"
"POT-Creation-Date: 2014-07-08 07:11-0400\n"
"PO-Revision-Date: 2014-02-03 16:59+0200\n"
"Last-Translator: Michal Čihař <[email protected]>\n"
"Language-Team: Uzbek (latin) <http://l10n.cihar.com/projects/phpmyadmin/"
"master/uz%40latin/>\n"
"Language: uz@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.9-dev\n"
#: changelog.php:36 license.php:28
#, php-format
msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
msgstr ""
#: db_create.php:61
#, php-format
msgid "Database %1$s has been created."
msgstr "%1$s ma`lumotlar bazasi tuzildi."
#: db_datadict.php:52 libraries/operations.lib.php:32
msgid "Database comment:"
msgstr "Ma`lumotlar bazasiga izoh:"
#: db_datadict.php:159 libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_columns_definition_form.lib.php:70
#: libraries/tbl_printview.lib.php:578
#, fuzzy
#| msgid "Table comments"
msgid "Table comments:"
msgstr "Jadval izohi"
#: db_datadict.php:168 libraries/Index.class.php:567
#: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1291
#: libraries/insert_edit.lib.php:1615
#: libraries/navigation/Nodes/Node_Column.class.php:32
#: libraries/plugins/export/ExportHtmlword.class.php:278
#: libraries/plugins/export/ExportHtmlword.class.php:393
#: libraries/plugins/export/ExportLatex.class.php:511
#: libraries/plugins/export/ExportOdt.class.php:360
#: libraries/plugins/export/ExportOdt.class.php:458
#: libraries/plugins/export/ExportTexytext.class.php:271
#: libraries/plugins/export/ExportTexytext.class.php:371
#: libraries/plugins/export/ExportTexytext.class.php:434
#: libraries/schema/Pdf_Relation_Schema.class.php:1355
#: libraries/schema/Pdf_Relation_Schema.class.php:1378
#: libraries/tbl_columns_definition_form.lib.php:582
#: libraries/tbl_indexes.lib.php:315 libraries/tbl_printview.lib.php:472
#: libraries/tbl_relation.lib.php:329 libraries/tbl_relation.lib.php:417
#: libraries/tbl_relation.lib.php:545 libraries/tbl_tracking.lib.php:809
#: libraries/tbl_tracking.lib.php:896
#, fuzzy
#| msgid "Column names"
msgid "Column"
msgstr "Maydon nomlari"
#: db_datadict.php:169 db_printview.php:49 libraries/Index.class.php:564
#: libraries/TableSearch.class.php:186 libraries/insert_edit.lib.php:245
#: libraries/insert_edit.lib.php:249
#: libraries/plugins/export/ExportHtmlword.class.php:281
#: libraries/plugins/export/ExportHtmlword.class.php:396
#: libraries/plugins/export/ExportLatex.class.php:512
#: libraries/plugins/export/ExportOdt.class.php:363
#: libraries/plugins/export/ExportOdt.class.php:461
#: libraries/plugins/export/ExportTexytext.class.php:272
#: libraries/plugins/export/ExportTexytext.class.php:372
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:954
#: libraries/rte/rte_routines.lib.php:983
#: libraries/rte/rte_routines.lib.php:1604
#: libraries/schema/Pdf_Relation_Schema.class.php:1356
#: libraries/schema/Pdf_Relation_Schema.class.php:1379
#: libraries/server_privileges.lib.php:1842
#: libraries/server_privileges.lib.php:1949 libraries/structure.lib.php:781
#: libraries/structure.lib.php:1201
#: libraries/tbl_columns_definition_form.lib.php:276
#: libraries/tbl_printview.lib.php:473 libraries/tbl_tracking.lib.php:810
#: libraries/tbl_tracking.lib.php:893
msgid "Type"
msgstr "Tur"
#: db_datadict.php:170 libraries/Index.class.php:570
#: libraries/TableSearch.class.php:1292 libraries/insert_edit.lib.php:1624
#: libraries/plugins/export/ExportHtmlword.class.php:284
#: libraries/plugins/export/ExportHtmlword.class.php:399
#: libraries/plugins/export/ExportLatex.class.php:513
#: libraries/plugins/export/ExportOdt.class.php:366
#: libraries/plugins/export/ExportOdt.class.php:464
#: libraries/plugins/export/ExportTexytext.class.php:273
#: libraries/plugins/export/ExportTexytext.class.php:373
#: libraries/schema/Pdf_Relation_Schema.class.php:1358
#: libraries/schema/Pdf_Relation_Schema.class.php:1381
#: libraries/structure.lib.php:1204
#: libraries/tbl_columns_definition_form.lib.php:297
#: libraries/tbl_printview.lib.php:474 libraries/tbl_tracking.lib.php:812
#: libraries/tbl_tracking.lib.php:899
msgid "Null"
msgstr "Null"
#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:287
#: libraries/plugins/export/ExportHtmlword.class.php:402
#: libraries/plugins/export/ExportLatex.class.php:514
#: libraries/plugins/export/ExportOdt.class.php:369
#: libraries/plugins/export/ExportOdt.class.php:467
#: libraries/plugins/export/ExportTexytext.class.php:274
#: libraries/plugins/export/ExportTexytext.class.php:374
#: libraries/schema/Pdf_Relation_Schema.class.php:1359
#: libraries/schema/Pdf_Relation_Schema.class.php:1382
#: libraries/structure.lib.php:210 libraries/structure.lib.php:1205
#: libraries/tbl_columns_definition_form.lib.php:288
#: libraries/tbl_printview.lib.php:475 libraries/tbl_tracking.lib.php:813
msgid "Default"
msgstr "Andoza"
#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:406
#: libraries/plugins/export/ExportLatex.class.php:516
#: libraries/plugins/export/ExportOdt.class.php:471
#: libraries/plugins/export/ExportTexytext.class.php:376
#: libraries/schema/Pdf_Relation_Schema.class.php:1361
#: libraries/schema/Pdf_Relation_Schema.class.php:1384
#: libraries/tbl_printview.lib.php:477
msgid "Links to"
msgstr "Aloqalar"
#: db_datadict.php:175 db_printview.php:53
#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:150
#: libraries/config/messages.inc.php:181
#: libraries/plugins/export/ExportHtmlword.class.php:411
#: libraries/plugins/export/ExportLatex.class.php:519
#: libraries/plugins/export/ExportOdt.class.php:476
#: libraries/plugins/export/ExportTexytext.class.php:379
#: libraries/schema/Pdf_Relation_Schema.class.php:1372
#: libraries/schema/Pdf_Relation_Schema.class.php:1385
#: libraries/tbl_columns_definition_form.lib.php:307
#: libraries/tbl_printview.lib.php:479
msgid "Comments"
msgstr "Izohlar"
#: db_datadict.php:240 js/messages.php:243 libraries/Index.class.php:435
#: libraries/Index.class.php:474 libraries/Index.class.php:884
#: libraries/config/FormDisplay.tpl.php:257 libraries/mult_submits.lib.php:455
#: libraries/mult_submits.lib.php:456
#: libraries/plugins/export/ExportHtmlword.class.php:633
#: libraries/plugins/export/ExportLatex.class.php:590
#: libraries/plugins/export/ExportOdt.class.php:724
#: libraries/plugins/export/ExportTexytext.class.php:568
#: libraries/schema/Pdf_Relation_Schema.class.php:1411
#: libraries/server_privileges.lib.php:2179
#: libraries/server_privileges.lib.php:2376
#: libraries/server_privileges.lib.php:2397
#: libraries/server_privileges.lib.php:2709
#: libraries/server_privileges.lib.php:2715
#: libraries/server_privileges.lib.php:3058
#: libraries/server_privileges.lib.php:3080 libraries/structure.lib.php:1289
#: libraries/tbl_printview.lib.php:113 libraries/tbl_tracking.lib.php:854
#: libraries/tbl_tracking.lib.php:931 libraries/tbl_tracking.lib.php:936
#: libraries/user_preferences.lib.php:296 prefs_manage.php:138
msgid "No"
msgstr "Yo‘q"
#: db_datadict.php:240 js/messages.php:322 libraries/Index.class.php:436
#: libraries/Index.class.php:473 libraries/Index.class.php:884
#: libraries/config/FormDisplay.tpl.php:257 libraries/mult_submits.inc.php:80
#: libraries/mult_submits.inc.php:165 libraries/mult_submits.lib.php:352
#: libraries/mult_submits.lib.php:385 libraries/mult_submits.lib.php:449
#: libraries/mult_submits.lib.php:450 libraries/mult_submits.lib.php:492
#: libraries/mult_submits.lib.php:501 libraries/mult_submits.lib.php:506
#: libraries/mult_submits.lib.php:511 libraries/mult_submits.lib.php:516
#: libraries/plugins/export/ExportHtmlword.class.php:634
#: libraries/plugins/export/ExportLatex.class.php:590
#: libraries/plugins/export/ExportOdt.class.php:725
#: libraries/plugins/export/ExportTexytext.class.php:568
#: libraries/schema/Pdf_Relation_Schema.class.php:1412
#: libraries/server_databases.lib.php:472
#: libraries/server_databases.lib.php:482
#: libraries/server_privileges.lib.php:2179
#: libraries/server_privileges.lib.php:2373
#: libraries/server_privileges.lib.php:2395
#: libraries/server_privileges.lib.php:2708
#: libraries/server_privileges.lib.php:2713
#: libraries/server_privileges.lib.php:3055
#: libraries/server_privileges.lib.php:3080 libraries/structure.lib.php:1289
#: libraries/structure.lib.php:2662 libraries/tbl_printview.lib.php:114
#: libraries/tbl_tracking.lib.php:854 libraries/tbl_tracking.lib.php:929
#: libraries/tbl_tracking.lib.php:934 libraries/user_preferences.lib.php:294
#: prefs_manage.php:136
msgid "Yes"
msgstr "Ha"
#: db_export.php:29
msgid "View dump (schema) of database"
msgstr "Ma`lumotlar bazasi dampini (sxemasini) namoyish etish"
#: db_export.php:33 db_printview.php:41 db_structure.php:165
#: db_tracking.php:51 export.php:338 libraries/DBQbe.class.php:312
msgid "No tables found in database."
msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas."
#: db_export.php:41 libraries/DbSearch.class.php:445
#: libraries/display_export.lib.php:42
msgid "Select All"
msgstr "Barchasini belgilash"
#: db_export.php:47 libraries/DbSearch.class.php:449
#: libraries/display_export.lib.php:48
msgid "Unselect All"
msgstr "Belgilashni bekor qilish"
#: db_operations.php:45 tbl_create.php:21
msgid "The database name is empty!"
msgstr "Ma`lumotlar bazasi nomi bo‘sh!"
#: db_operations.php:130
#, fuzzy, php-format
#| msgid "Database %s has been renamed to %s."
msgid "Database %1$s has been renamed to %2$s."
msgstr "`\"%s\"` ma`lumotlar bazasining nomi `\"%s\"` deb o‘zgartirildi."
#: db_operations.php:136
#, fuzzy, php-format
#| msgid "Database %s has been copied to %s."
msgid "Database %1$s has been copied to %2$s."
msgstr "\"%s\" ma`lumotlar bazasidan \"%s\" ga nusxa ko‘chirildi."
#: db_operations.php:260
#, fuzzy, php-format
#| msgid ""
#| " additional features for working with linked tables have been ctivated. "
#| "To find out why click %shere%s."
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
"Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. "
"Sabablarini aniqlash uchun %sbu yerga%s bosing."
#: db_printview.php:47 db_tracking.php:81 db_tracking.php:208
#: libraries/Menu.class.php:237 libraries/config/messages.inc.php:766
#: libraries/plugins/export/ExportXml.class.php:467
#: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:361
#: libraries/schema/User_Schema.class.php:305
#: libraries/server_privileges.lib.php:1004
#: libraries/server_privileges.lib.php:2546
#: libraries/server_privileges.lib.php:2768
#: libraries/server_privileges.lib.php:2779
#: libraries/server_privileges.lib.php:3791 libraries/structure.lib.php:762
#: libraries/tbl_relation.lib.php:312 libraries/tbl_relation.lib.php:528
#: libraries/tbl_tracking.lib.php:196
msgid "Table"
msgstr "Jadval"
#: db_printview.php:48 libraries/build_html_for_db.lib.php:33
#: libraries/import.lib.php:191 libraries/structure.lib.php:773
#: libraries/structure.lib.php:1744 libraries/structure.lib.php:1935
#: libraries/tbl_printview.lib.php:193
msgid "Rows"
msgstr "Qatorlarsoni"
#: db_printview.php:51 libraries/structure.lib.php:792
#: libraries/tbl_indexes.lib.php:316
msgid "Size"
msgstr "Hajmi"
#: db_printview.php:98 libraries/plugins/export/ExportSql.class.php:1159
#: libraries/structure.lib.php:736
msgid "in use"
msgstr "ishlatilmoqda"
#: db_printview.php:119 libraries/plugins/export/ExportSql.class.php:1085
#: libraries/schema/Pdf_Relation_Schema.class.php:1334
#, fuzzy
#| msgid "Creation"
msgid "Creation:"
msgstr "Tuzish"
#: db_printview.php:128 libraries/plugins/export/ExportSql.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1339
#, fuzzy
#| msgid "Last update"
msgid "Last update:"
msgstr "Oxirgi yangilanish"
#: db_printview.php:137 libraries/plugins/export/ExportSql.class.php:1111
#: libraries/schema/Pdf_Relation_Schema.class.php:1344
#, fuzzy
#| msgid "Last check"
msgid "Last check:"
msgstr "Oxirgi tekshiruv"
#: db_printview.php:151 libraries/structure.lib.php:176
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "Jadvallar soni: \"%s\""
msgstr[1] "Jadvallar soni: \"%s\""
#: db_qbe.php:102
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to choose at least one column to display!"
msgstr "So‘rovni bajarish uchun, maydon/maydonlar tanlangan bo‘lishi kerak"
#: db_qbe.php:123
#, fuzzy, php-format
#| msgid "Switch to copied table"
msgid "Switch to %svisual builder%s"
msgstr "Nusxa olingan jadvalga o‘tish"
#: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:85
#: libraries/plugins/auth/AuthenticationConfig.class.php:100
#: libraries/plugins/auth/AuthenticationCookie.class.php:664
#: libraries/plugins/auth/AuthenticationHttp.class.php:69
#: libraries/plugins/auth/AuthenticationSignon.class.php:270
msgid "Access denied!"
msgstr "Ruxsat berilmadi!"
#: db_structure.php:72
msgid "Favorite List is full!"
msgstr ""
#: db_tracking.php:75
msgid "Tracked tables"
msgstr "Kuzatilgan jadvallar"
#: db_tracking.php:80 libraries/Menu.class.php:214
#: libraries/config/messages.inc.php:760
#: libraries/plugins/export/ExportHtmlword.class.php:158
#: libraries/plugins/export/ExportOdt.class.php:203
#: libraries/plugins/export/ExportTexytext.class.php:142
#: libraries/server_databases.lib.php:305
#: libraries/server_privileges.lib.php:1001
#: libraries/server_privileges.lib.php:2530
#: libraries/server_privileges.lib.php:2767
#: libraries/server_privileges.lib.php:2779
#: libraries/server_privileges.lib.php:3777
#: libraries/server_status.lib.php:349 libraries/tbl_relation.lib.php:289
#: libraries/tbl_relation.lib.php:478 libraries/tbl_tracking.lib.php:195
msgid "Database"
msgstr "Ma`lumotlar bazasi"
#: db_tracking.php:82
msgid "Last version"
msgstr "Oxirgi vеrsiya"
#: db_tracking.php:83 libraries/tbl_tracking.lib.php:198
msgid "Created"
msgstr "Tuzildi"
#: db_tracking.php:84 libraries/tbl_tracking.lib.php:199
msgid "Updated"
msgstr "Yangilandi"
#: db_tracking.php:85 js/messages.php:176 libraries/Menu.class.php:518
#: libraries/Util.class.php:4098 libraries/rte/rte_events.lib.php:432
#: libraries/rte/rte_list.lib.php:78 libraries/server_status.lib.php:361
#: libraries/tbl_tracking.lib.php:200
msgid "Status"
msgstr "Holat"
#: db_tracking.php:86 libraries/Index.class.php:561
#: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67
#: libraries/rte/rte_list.lib.php:79 libraries/server_databases.lib.php:401
#: libraries/server_privileges.lib.php:1845
#: libraries/server_privileges.lib.php:1952
#: libraries/server_privileges.lib.php:2789
#: libraries/server_privileges.lib.php:2968
#: libraries/server_user_groups.lib.php:82 libraries/structure.lib.php:770
#: libraries/structure.lib.php:1219
msgid "Action"
msgstr "Amal"
#: db_tracking.php:87 libraries/navigation/Navigation.class.php:196
#: libraries/tbl_tracking.lib.php:201 tbl_change.php:149
msgid "Show"
msgstr "Ko‘rsatish"
#: db_tracking.php:99 js/messages.php:40
msgid "Delete tracking data for this table"
msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish"
#: db_tracking.php:103 libraries/Index.class.php:627
#: libraries/Util.class.php:3380 libraries/Util.class.php:3381
#: libraries/server_databases.lib.php:150 libraries/structure.lib.php:307
#: libraries/structure.lib.php:1399 libraries/structure.lib.php:2075
#: libraries/structure.lib.php:2077
msgid "Drop"
msgstr "O‘chirish"
#: db_tracking.php:120 libraries/tbl_tracking.lib.php:210
#: libraries/tbl_tracking.lib.php:312
msgid "active"
msgstr "faol"
#: db_tracking.php:122 libraries/tbl_tracking.lib.php:212
#: libraries/tbl_tracking.lib.php:314
msgid "not active"
msgstr "faol emas"
#: db_tracking.php:143
msgid "Versions"
msgstr "Vеrsiyalar"
#: db_tracking.php:146 libraries/tbl_tracking.lib.php:234
#: libraries/tbl_tracking.lib.php:353
msgid "Tracking report"
msgstr "Kuzatish hisoboti"
#: db_tracking.php:149 libraries/tbl_tracking.lib.php:242
#: libraries/tbl_tracking.lib.php:758
msgid "Structure snapshot"
msgstr "Tuzilma rasmi"
#: db_tracking.php:203
msgid "Untracked tables"
msgstr "Kuzatilmagan jadvallar"
#: db_tracking.php:222 libraries/structure.lib.php:1550
msgid "Track table"
msgstr "Jadvalni kuzatish"
#: db_tracking.php:249
msgid "Database Log"
msgstr "Baza log faylini"
#: error_report.php:33
msgid ""
"An error has been detected and an error report has been automatically "
"submitted based on your settings."
msgstr ""
#: error_report.php:37 error_report.php:54 error_report.php:65
#: error_report.php:81
msgid "You may want to refresh the page."
msgstr ""
#: error_report.php:45
msgid ""
"An error has been detected and an error report has been generated but failed "
"to be sent."
msgstr ""
#: error_report.php:50 error_report.php:77
msgid "If you experience any problems please submit a bug report manually."
msgstr ""
#: error_report.php:63 error_report.php:72
msgid "Thank you for submitting this report."
msgstr ""
#: error_report.php:74
msgid "Unfortunately the submission failed."
msgstr ""
#: export.php:181
#, fuzzy
#| msgid "Bar type"
msgid "Bad type!"
msgstr "So‘rov turi"
#: export.php:242
#, fuzzy
#| msgid "Apply index(s)"
msgid "Bad parameters!"
msgstr "Indеks(lar)ni saqlash"
#: file_echo.php:22
#, fuzzy
#| msgid "Export tables"
msgid "Invalid export type"
msgstr "Jadvallarni eksport qilish"
#: gis_data_editor.php:113
#, php-format
msgid "Value for the column \"%s\""
msgstr ""
#: gis_data_editor.php:141 libraries/tbl_gis_visualization.lib.php:163
msgid "Use OpenStreetMaps as Base Layer"
msgstr ""
#. l10n: Spatial Reference System Identifier
#: gis_data_editor.php:163
msgid "SRID:"
msgstr ""
#: gis_data_editor.php:186
#, php-format
msgid "Geometry %d:"
msgstr ""
#: gis_data_editor.php:208
msgid "Point:"
msgstr ""
#: gis_data_editor.php:209 gis_data_editor.php:236 gis_data_editor.php:292
#: gis_data_editor.php:365 js/messages.php:310
msgid "X"
msgstr ""
#: gis_data_editor.php:212 gis_data_editor.php:240 gis_data_editor.php:296
#: gis_data_editor.php:371 js/messages.php:311
msgid "Y"
msgstr ""
#: gis_data_editor.php:234 gis_data_editor.php:290 gis_data_editor.php:363
#: js/messages.php:313
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:247 gis_data_editor.php:303 gis_data_editor.php:381
#: js/messages.php:319
#, fuzzy
#| msgid "Apply index(s)"
msgid "Add a point"
msgstr "Indеks(lar)ni saqlash"
#: gis_data_editor.php:264
#, fuzzy, php-format
#| msgid "Lines terminated by"
msgid "Linestring %d:"
msgstr "Qatorlar bo‘luvchisi"
#: gis_data_editor.php:267 gis_data_editor.php:344
msgid "Outer ring:"
msgstr ""
#: gis_data_editor.php:269 gis_data_editor.php:346
#, php-format
msgid "Inner ring %d:"
msgstr ""
#: gis_data_editor.php:306
#, fuzzy
#| msgid "Add a new User"
msgid "Add a linestring"
msgstr "Yangi foydalanuvchi qo‘shish"
#: gis_data_editor.php:307 gis_data_editor.php:386 js/messages.php:320
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "Yangi foydalanuvchi qo‘shish"
#: gis_data_editor.php:328
#, fuzzy, php-format
#| msgid "Add column(s)"
msgid "Polygon %d:"
msgstr "Ustun(lar) qo‘shish"
#: gis_data_editor.php:392
#, fuzzy
#| msgid "Add column(s)"
msgid "Add a polygon"
msgstr "Ustun(lar) qo‘shish"
#: gis_data_editor.php:398
#, fuzzy
#| msgid "Add a new server"
msgid "Add geometry"
msgstr "Yangi foydalanuvchi qo‘shish"
#: gis_data_editor.php:404 js/messages.php:223
#: libraries/DbSearch.class.php:466 libraries/DisplayResults.class.php:1701
#: libraries/TableSearch.class.php:1237 libraries/browse_foreigners.lib.php:51
#: libraries/core.lib.php:573 libraries/display_change_password.lib.php:100
#: libraries/display_create_table.lib.php:71
#: libraries/display_export.lib.php:295 libraries/display_export.lib.php:301
#: libraries/display_import.lib.php:367 libraries/index.lib.php:40
#: libraries/insert_edit.lib.php:1596 libraries/insert_edit.lib.php:1631
#: libraries/operations.lib.php:39 libraries/operations.lib.php:82
#: libraries/operations.lib.php:210 libraries/operations.lib.php:254
#: libraries/operations.lib.php:650 libraries/operations.lib.php:703
#: libraries/operations.lib.php:752 libraries/operations.lib.php:1067
#: libraries/operations.lib.php:1344
#: libraries/plugins/auth/AuthenticationCookie.class.php:259
#: libraries/replication_gui.lib.php:122 libraries/replication_gui.lib.php:297
#: libraries/replication_gui.lib.php:434 libraries/replication_gui.lib.php:877
#: libraries/rte/rte_events.lib.php:548
#: libraries/rte/rte_routines.lib.php:1095
#: libraries/rte/rte_routines.lib.php:1694
#: libraries/rte/rte_triggers.lib.php:426
#: libraries/schema/User_Schema.class.php:170
#: libraries/schema/User_Schema.class.php:233
#: libraries/schema/User_Schema.class.php:502
#: libraries/schema/User_Schema.class.php:553
#: libraries/server_bin_log.lib.php:61 libraries/server_privileges.lib.php:688
#: libraries/server_privileges.lib.php:1749
#: libraries/server_privileges.lib.php:2512
#: libraries/server_privileges.lib.php:3161
#: libraries/server_privileges.lib.php:4007
#: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:440
#: libraries/sql_query_form.lib.php:509 libraries/structure.lib.php:1618
#: libraries/tbl_chart.lib.php:244
#: libraries/tbl_columns_definition_form.lib.php:174
#: libraries/tbl_tracking.lib.php:429 libraries/tbl_tracking.lib.php:547
#: pmd_pdf.php:153 prefs_manage.php:271 prefs_manage.php:329
#: view_create.php:273 view_operations.php:106
msgid "Go"
msgstr "OK"
#: gis_data_editor.php:407
msgid "Output"
msgstr ""
#: gis_data_editor.php:410
msgid ""
"Choose \"GeomFromText\" from the \"Function\" column and paste the string "
"below into the \"Value\" field."
msgstr ""
#: import.php:116
#, fuzzy, php-format
#| msgid ""
#| "You probably tried to upload too large file. Please refer to "
#| "%sdocumentation%s for ways to workaround this limit."
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
msgstr ""
"Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning "
"usullari %sdokumentatsiyada%s keltirilgan."
#: import.php:284 import.php:568
msgid "Showing bookmark"
msgstr "Xatcho‘plarni ko‘rsatish"
#: import.php:299 import.php:564
msgid "The bookmark has been deleted."
msgstr "Xatcho‘p o‘chirildi."
#: import.php:399
#, php-format
msgid ""
"Uploaded file cannot be moved, because the server has open_basedir enabled "
"without access to the %s directory (for temporary files)."
msgstr ""
#: import.php:412 import.php:473 libraries/File.class.php:433
#: libraries/File.class.php:527
#, fuzzy
#| msgid "File could not be read"
msgid "File could not be read!"
msgstr "Faylni o‘qib bo‘lmadi"
#: import.php:421 import.php:432 import.php:453 import.php:464
#: libraries/File.class.php:593
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
"Yuklanayotgan fayl (\"%s\") yordamida qisilgan. Lekin u dastur tizimda "
"mavjud emas, shuning uchun ushbu faylni import qilib bo‘lmaydi. Agar dastur "
"mavjud bo‘lsa, demak u konfiguratsiya vaqtida o‘chirib qo‘yilgan."
#: import.php:479
msgid ""
"No data was received to import. Either no file name was submitted, or the "
"file size exceeded the maximum size permitted by your PHP configuration. See "
"[doc@faq1-16]FAQ 1.16[/doc]."
msgstr ""
"Import qilish imkoni yo‘q. Sabablar: import fayli tanlanmagan; import "
"qilinayotgan fayl hajmi PHP konfiguratsion faylida ko‘rsatilgan maksimal "
"qiymatdan katta. Qarang: [doc@faq1-16]FAQ 1.16[/doc]."
#: import.php:498
msgid ""
"Cannot convert file's character set without character set conversion library!"
msgstr ""
#: import.php:536 libraries/display_import.inc.php:32
msgid "Could not load import plugins, please check your installation!"
msgstr ""
"Import modullari mavjud emas! O‘rnatilgan phpMyAdmin nusxasining libraries/"
"export katalogini tekshiring!"
#: import.php:571 libraries/sql.lib.php:1048 libraries/sql.lib.php:1848
#, fuzzy, php-format
#| msgid "Bookmark %s created"
msgid "Bookmark %s has been created."
msgstr "\"%s\" xatcho‘pi tuzildi"
#: import.php:580
#, php-format
msgid "Import has been successfully finished, %d queries executed."
msgstr "Import muvaffaqiyatli tugatildi, bajarilgan so‘rovlar soni: %d."
#: import.php:601
msgid ""
"Script timeout passed, if you want to finish import, please resubmit same "
"file and import will resume."
msgstr ""
"Chegaralangan vaqt bo‘ldi. Agar import jarayonini yakunlamoqchi bo‘lsangiz, "
"unda o‘sha faylni tanlagan holda uni qayta ishga tushiring va jarayon "
"uzilgan joydan boshlab davom etadi."
#: import.php:605
msgid ""
"However on last run no data has been parsed, this usually means phpMyAdmin "
"won't be able to finish this import unless you increase php time limits."
msgstr ""
"Oxirgi ishga tushirish bo‘lishiga qaramasdan, ma`lumotlar qayta ishlanmadi. "
"Odatda, bu hol, php-ssenariylar uchun ajratilgan vaqt oshirilmaguncha "
"phpMyAdmin dasturi import jarayonini yakunla olmasligini bildiradi."
#: import_status.php:95 libraries/Util.class.php:733
#: libraries/export.lib.php:438
#: libraries/schema/Export_Relation_Schema.class.php:249 user_password.php:239
msgid "Back"
msgstr "Orqaga"
#: index.php:127 libraries/Footer.class.php:70
#, fuzzy
#| msgid "phpMyAdmin homepage"
msgid "phpMyAdmin Demo Server"
msgstr "phpMyAdmin sayti"
#: index.php:131
#, php-format
msgid ""
"You are using the demo server. You can do anything here, but please do not "
"change root, debian-sys-maint and pma users. More information is available "
"at %s."
msgstr ""
#: index.php:141
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Aloqalarning asosiy imkoniyatlari"
#: index.php:169 libraries/display_change_password.lib.php:51
#: libraries/display_change_password.lib.php:52 user_password.php:233
msgid "Change password"
msgstr "Parolni o‘zgartirish"
#: index.php:185
#, fuzzy
#| msgid "MySQL connection collation"
msgid "Server connection collation"
msgstr "MySQL bilan ulanishni chog‘ishtirish"
#: index.php:208
#, fuzzy
#| msgid "Other core settings"
msgid "Appearance Settings"
msgstr "Boshqa sozlanishlar"
#: index.php:238 prefs_manage.php:279
#, fuzzy
#| msgid "settings"
msgid "More settings"
msgstr "tanlovlar"
#: index.php:259
#, fuzzy
#| msgid "Database for user"
msgid "Database server"
msgstr "Foydalanuvchi uchun ma`lumotlar bazasi"
#: index.php:262 libraries/plugins/auth/AuthenticationCookie.class.php:172
msgid "Server:"
msgstr "Server:"
#: index.php:266
#, fuzzy
#| msgid "Server port"
msgid "Server type:"
msgstr "Server porti"
#: index.php:270 libraries/plugins/export/ExportLatex.class.php:225
#: libraries/plugins/export/ExportSql.class.php:657
#: libraries/plugins/export/ExportXml.class.php:198
#, fuzzy
#| msgid "Server version"
msgid "Server version:"
msgstr "Server versiyasi"
#: index.php:276
#, fuzzy
#| msgid "Protocol version"
msgid "Protocol version:"
msgstr "Protokol versiyasi"
#: index.php:280
#, fuzzy
#| msgid "User"
msgid "User:"
msgstr "Foydalanuvchi"
#: index.php:285
#, fuzzy
#| msgid "Server socket"
msgid "Server charset:"
msgstr "Server soketi"
#: index.php:300
msgid "Web server"
msgstr "Veb server"
#: index.php:311
#, fuzzy
#| msgid "Use light version"
msgid "Database client version:"
msgstr "Yengil versiyadan foydalanish"
#: index.php:315
#, fuzzy
#| msgid "PHP extension"
msgid "PHP extension:"
msgstr "PHP kengaytmasi"
#: index.php:333
msgid "Show PHP information"
msgstr "PHP haqida ma`lumotni ko‘rsatish"
#: index.php:356
#, fuzzy
#| msgid "Version information"
msgid "Version information:"
msgstr "Versiya haqida ma`lumot"
#: index.php:365 libraries/Util.class.php:429 libraries/Util.class.php:494
#: libraries/config/FormDisplay.tpl.php:148
#: libraries/display_export.lib.php:469 libraries/engines/pbxt.lib.php:117
#: libraries/navigation/NavigationHeader.class.php:243
#: libraries/relation.lib.php:93 libraries/server_variables.lib.php:162
msgid "Documentation"
msgstr "Dokumentatsiya"
#: index.php:372
msgid "Wiki"
msgstr "Viki"
#: index.php:381
msgid "Official Homepage"
msgstr "phpMyAdmin rasmiy veb-sahifasi"
#: index.php:388
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Atributlar"
#: index.php:395
msgid "Get support"
msgstr ""
#: index.php:402
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "O‘zgarish yo‘q"
#: index.php:424
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
"running with this default, is open to intrusion, and you really should fix "
"this security hole by setting a password for user 'root'."
msgstr ""
"phpMyAdmin konfiguratsion fayli MySQL ning asl sozlanishini o‘z ichiga "
"oladi, unga ko‘ra \"root\" superfoydalanuvchisiga parol belgilanmagan. "
"Bunday sozlangan MySQL serveri xavfsizlik jihatidan ancha zaif hisoblanadi, "
"shuning uchun \"root\" superfoydalanuvchisiga parol o‘rnatish qat`iyan "
"tavsiya etiladi."
#: index.php:441
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
"PHP konfiguratsion faylida phpMyAdmin bilan mos bo‘lmagan mbstring."
"func_overload parametri yoqilgan. Ma`lumot yo‘qolishi oldini olish uchun, "
"ushbu parametr o‘chirilishi kerak!"
#: index.php:456
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
"Ko‘p baytli kodirovkalar bilan ishlaganda PHP \"mbstring\" kengaytmasi "
"o‘rnatilmagan bo‘lsa, phpMyAdmin satrlarni to‘g‘ri bo‘la olmaydi. Bu o‘z "
"navbatida ma`lumot yo‘qolishiga olib kelishi mumkin. PHP \"mbstring\" "
"kengaytmasini o‘rnatish qat`iy tavsiya etiladi."
#: index.php:471
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than "
"cookie validity configured in phpMyAdmin, because of this, your login will "
"expire sooner than configured in phpMyAdmin."
msgstr ""
"Serverdagi PHP konfiguratsiyasida \"[a@http://php.net/manual/en/session."
"configuration.php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/"
"a]\" parametrining qiymati phpMyAdmin dasturining \"cookie\" haqiqiyligi "
"davomiyligidan kichikroq, shuning uchun login sessiyangiz phpMyAdmin "
"dasturida konfiguratsiya qilganingizdan tezroq tugaydi."
#: index.php:483
#, fuzzy
#| msgid ""
#| "r PHP parameter [a@http://php.net/manual/en/session.configuration.#ini."
#| "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower that "
#| "kie validity configured in phpMyAdmin, because of this, your login l "
#| "expire sooner than configured in phpMyAdmin."
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
"Serverdagi PHP konfiguratsiyasida \"[a@http://php.net/manual/en/session."
"configuration.php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/"
"a]\" parametrining qiymati phpMyAdmin dasturining \"cookie\" haqiqiyligi "
"davomiyligidan kichikroq, shuning uchun login sessiyangiz phpMyAdmin "
"dasturida konfiguratsiya qilganingizdan tezroq tugaydi."
#: index.php:495
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"cookie-autentifikatsiya ishlatilganda, konfiguratsion fayldagi $cfg"
"[\"blowfish_secret\"] direktivasi qiymatini o‘rnatib parol belgilash kerak."
#: index.php:506
#, fuzzy
#| msgid ""
#| "Directory [code]config[/code], which is used by the setup script, still "
#| "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
#| "has been configured."
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. It is strongly recommended to remove it "
"once phpMyAdmin has been configured. Otherwise the security of your server "
"may be compromised by unauthorized people downloading your configuration."
msgstr ""
"phpMyAdmin o‘rnatilishi vaqtida foydalaniladigan [code]\"config\"[/code] "
"katalogi haliyam mavjud. phpMyAdmin muvaffaqiyatli o‘rnatilgandan keyin, uni "
"o‘chirish tavsiya etiladi."
#: index.php:516
#, fuzzy, php-format
#| msgid ""
#| " additional features for working with linked tables have been ctivated. "
#| "To find out why click %shere%s."
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. "
"Sabablarini aniqlash uchun %sbu yerga%s bosing."
#: index.php:552
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
"MySQL-kliyent versiyasi (\"%s\") o‘rnatilgan MySQL-server versiyasi(\"%s\")"
"dan farq qilmoqda. Bu holat noxush oqibatlarga olib kelishi mumkin."
#: index.php:576
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
"Server \"Suhosin\" himoya tizimadan foydalanmoqda. Yuzaga kelgan muammolar "
"yechimi uchun \"%s\"dokumentatsiya\"%s\" ga qarang."
#: js/messages.php:29 libraries/import.lib.php:122 sql.php:140
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
"\"DROP DATABASE\" (ma`lumotlar bazasini o‘chirish) buyrug‘i o‘chirilgan."
#: js/messages.php:35
msgid "Confirm"
msgstr ""
#: js/messages.php:36
#, fuzzy, php-format
#| msgid "Do you really want to "
msgid "Do you really want to execute \"%s\"?"
msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?"
#: js/messages.php:37 libraries/mult_submits.lib.php:408
msgid "You are about to DESTROY a complete database!"
msgstr "Ma`lumotlar bazasi to‘liq O‘CHIRILADI!"