Merge branch 'QA_4_1' of github.com:phpmyadmin/phpmyadmin into QA_4_1

This commit is contained in:
Madhura Jayaratne 2014-01-04 12:24:56 +05:30
commit 52376ce3dc
3 changed files with 23 additions and 13 deletions

View File

@ -1448,6 +1448,7 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi
// register events
$(t).find('th.draggable')
.mousedown(function (e) {
$('#sqlqueryresults').addClass("turnOffSelect");
if (g.visibleHeadersCount > 1) {
g.dragStartReorder(e, this);
}
@ -1846,6 +1847,7 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi
g.dragMove(e);
});
$(document).mouseup(function (e) {
$('#sqlqueryresults').removeClass("turnOffSelect");
g.dragEnd(e);
});
}

View File

@ -8,8 +8,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.1.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-12-27 10:57-0500\n"
"PO-Revision-Date: 2014-01-03 21:11+0200\n"
"Last-Translator: Berikbol Zharylkassyn <berikbolbeko@gmail.com>\n"
"PO-Revision-Date: 2014-01-03 21:26+0200\n"
"Last-Translator: sand wedge <sandibek_aktau@mail.ru>\n"
"Language-Team: Kazakh <http://l10n.cihar.com/projects/phpmyadmin/4-1/kk/>\n"
"Language: kk\n"
"MIME-Version: 1.0\n"
@ -39,7 +39,6 @@ msgstr "Дерекқорына түсініктеме: "
#: db_datadict.php:159 libraries/schema/Pdf_Relation_Schema.class.php:1348
#: libraries/tbl_columns_definition_form.lib.php:70
#: libraries/tbl_printview.lib.php:579
#, fuzzy
#| msgid "Table comments"
msgid "Table comments:"
msgstr "Кестеге түсініктеме:"
@ -273,24 +272,21 @@ msgstr "қолданыста"
#: db_printview.php:117 libraries/plugins/export/ExportSql.class.php:1042
#: libraries/schema/Pdf_Relation_Schema.class.php:1353
#, fuzzy
#| msgid "Creation"
msgid "Creation:"
msgstr "Құру"
msgstr "Құру:"
#: db_printview.php:126 libraries/plugins/export/ExportSql.class.php:1055
#: libraries/schema/Pdf_Relation_Schema.class.php:1358
#, fuzzy
#| msgid "Last update"
msgid "Last update:"
msgstr "Соңғы жаңартылым"
msgstr "Соңғы жаңарту:"
#: db_printview.php:135 libraries/plugins/export/ExportSql.class.php:1068
#: libraries/schema/Pdf_Relation_Schema.class.php:1363
#, fuzzy
#| msgid "Last check"
msgid "Last check:"
msgstr "Соңғы тексерім"
msgstr "Соңғы тексеріс:"
#: db_printview.php:149 libraries/structure.lib.php:176
#, php-format
@ -423,25 +419,30 @@ 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 ""
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 ""
msgstr "Баяндаманы жолдағаныңыз үшін рахмет."
#: error_report.php:74
msgid "Unfortunately the submission failed."
@ -562,10 +563,10 @@ msgid "Add an inner ring"
msgstr ""
#: gis_data_editor.php:327
#, fuzzy, php-format
#, php-format
#| msgid "Polygon"
msgid "Polygon %d:"
msgstr "Көпбұрыш"
msgstr "%d көпбұрышы:"
#: gis_data_editor.php:386 js/messages.php:335
msgid "Add a polygon"

View File

@ -2613,6 +2613,13 @@ fieldset .disabled-field td {
background: #DDD;
}
.turnOffSelect {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
user-select: none;
}
#page_content {
background-color: white;
}