From 37641b3404be795d894852829045da1f5db3fa17 Mon Sep 17 00:00:00 2001 From: Thilanka Kaushalya Date: Wed, 6 Jul 2011 19:55:57 +0530 Subject: [PATCH 001/111] Fixed bugs in index edit --- js/indexes.js | 4 ++-- js/tbl_structure.js | 9 ++++++--- tbl_indexes.php | 2 +- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/js/indexes.js b/js/indexes.js index ef6f877bdd..076bf6f230 100644 --- a/js/indexes.js +++ b/js/indexes.js @@ -56,7 +56,7 @@ function checkIndexType() /** * @var Object Table header for the size column. */ - $size_header = $('thead tr th:nth-child(2)'); + $size_header = $('#index_columns thead tr th:nth-child(2)'); /** * @var Object Inputs to specify the columns for the index. */ @@ -132,7 +132,7 @@ function checkIndexType() */ $(document).ready(function() { checkIndexType(); - $('#select_index_type').bind('change', checkIndexType); + $('#select_index_type').live('change', checkIndexType); }); /**#@- */ diff --git a/js/tbl_structure.js b/js/tbl_structure.js index d4ef1cdf97..b7124cacbb 100644 --- a/js/tbl_structure.js +++ b/js/tbl_structure.js @@ -269,10 +269,10 @@ $(document).ready(function() { */ var button_options = {}; // in the following function we need to use $(this) - button_options[PMA_messages['strCancel']] = function() {$(this).parent().dialog('close').remove();} + button_options[PMA_messages['strCancel']] = function() {$(this).dialog('close').remove();} var button_options_error = {}; - button_options_error[PMA_messages['strOK']] = function() {$(this).parent().dialog('close').remove();} + button_options_error[PMA_messages['strOK']] = function() {$(this).dialog('close').remove();} var $msgbox = PMA_ajaxShowMessage(); $.get( "tbl_indexes.php" , url , function(data) { @@ -300,6 +300,7 @@ $(document).ready(function() { //Remove the top menu container from the dialog .find("#topmenucontainer").hide() ; // end dialog options + checkIndexName(); } PMA_ajaxRemoveMessage($msgbox); }) // end $.get() @@ -360,7 +361,7 @@ $(document).ready(function() { $.post($form.attr('action'), $form.serialize()+"&add_fields=Go", function(data) { $("#index_columns").remove(); var temp_div = $("
").append(data); - $(temp_div).find("#index_columns").insertAfter("#index_frm fieldset .error"); + $(temp_div).find("#index_columns").appendTo("#index_edit_fields"); }) // end $.post() }) // end insert table button "Go" @@ -390,6 +391,8 @@ $(document).ready(function() { return false; }); } //end show/hide table index + + $('#select_index_type').live('change', checkIndexType); }) // end $(document).ready() diff --git a/tbl_indexes.php b/tbl_indexes.php index 7e9bec60f2..e9f33f1791 100644 --- a/tbl_indexes.php +++ b/tbl_indexes.php @@ -158,7 +158,7 @@ if (isset($_REQUEST['create_index'])) { echo PMA_generate_common_hidden_inputs($form_params); ?> -
+
Date: Thu, 7 Jul 2011 23:52:22 +0530 Subject: [PATCH 002/111] Moved checkIndexName function to functions js file and rewrite it using jquery --- js/functions.js | 39 ++++++++++++++++++++++++++++++++++++++ js/indexes.js | 46 ++++++--------------------------------------- js/tbl_structure.js | 6 ++---- tbl_indexes.php | 2 +- 4 files changed, 48 insertions(+), 45 deletions(-) diff --git a/js/functions.js b/js/functions.js index 9cdb44e751..d34570b7ec 100644 --- a/js/functions.js +++ b/js/functions.js @@ -2152,9 +2152,48 @@ function displayMoreTableOpts() { } }); } + } $(document).ready(initTooltips); +/** + * Ensures indexes names are valid according to their type and, for a primary + * key, lock index name to 'PRIMARY' + * + * @return boolean false if there is no index form, true else + */ +function checkIndexName(form_name) +{ + if ($("#"+form_name).length == 0) { + return false + } + + // Gets the elements pointers + var the_idx_name = $("#input_index_name"); + var the_idx_type = $("#select_index_type"); + + // Index is a primary key + if (the_idx_type.find("option:selected").attr("value") == 'PRIMARY') { + $("#input_index_name").attr("value", 'PRIMARY'); + if (the_idx_name.attr("disabled") != 'undefined') { + $("#input_index_name").attr("disabled", true); + } + } + + // Other cases + else { + if (the_idx_name.attr("value") == 'PRIMARY') { + $("#input_index_name").attr("value", ''); + } + if (the_idx_name.attr("disabled") != 'undefined') { + $("#input_index_name").attr("disabled", false); + } + } + + return true; +} // end of the 'checkIndexName()' function + + /* Displays tooltips */ function initTooltips() { // Hide the footnotes from the footer (which are displayed for diff --git a/js/indexes.js b/js/indexes.js index 076bf6f230..abbf4d8b49 100644 --- a/js/indexes.js +++ b/js/indexes.js @@ -4,45 +4,6 @@ * */ -/** - * Ensures indexes names are valid according to their type and, for a primary - * key, lock index name to 'PRIMARY' - * - * @return boolean false if there is no index form, true else - */ -function checkIndexName() -{ - if (typeof(document.forms['index_frm']) == 'undefined') { - return false; - } - - // Gets the elements pointers - var the_idx_name = document.forms['index_frm'].elements['index[Key_name]']; - var the_idx_type = document.forms['index_frm'].elements['index[Index_type]']; - - // Index is a primary key - if (the_idx_type.options[0].value == 'PRIMARY' && the_idx_type.options[0].selected) { - document.forms['index_frm'].elements['index[Key_name]'].value = 'PRIMARY'; - if (typeof(the_idx_name.disabled) != 'undefined') { - document.forms['index_frm'].elements['index[Key_name]'].disabled = true; - } - } - - // Other cases - else { - if (the_idx_name.value == 'PRIMARY') { - document.forms['index_frm'].elements['index[Key_name]'].value = ''; - } - if (typeof(the_idx_name.disabled) != 'undefined') { - document.forms['index_frm'].elements['index[Key_name]'].disabled = false; - } - } - - return true; -} // end of the 'checkIndexName()' function - -onload = checkIndexName; - /** * Hides/shows the inputs and submits appropriately depending * on whether the index type chosen is 'SPATIAL' or not. @@ -132,7 +93,12 @@ function checkIndexType() */ $(document).ready(function() { checkIndexType(); - $('#select_index_type').live('change', checkIndexType); + checkIndexName("index_frm"); + $('#select_index_type').live('change', function(event){ + event.preventDefault(); + checkIndexType(); + checkIndexName("index_frm"); + }); }); /**#@- */ diff --git a/js/tbl_structure.js b/js/tbl_structure.js index b7124cacbb..3f49260fef 100644 --- a/js/tbl_structure.js +++ b/js/tbl_structure.js @@ -300,12 +300,12 @@ $(document).ready(function() { //Remove the top menu container from the dialog .find("#topmenucontainer").hide() ; // end dialog options - checkIndexName(); + checkIndexName("index_frm"); } PMA_ajaxRemoveMessage($msgbox); }) // end $.get() }); - + /** *Ajax action for submiting the index form **/ @@ -392,7 +392,5 @@ $(document).ready(function() { }); } //end show/hide table index - $('#select_index_type').live('change', checkIndexType); - }) // end $(document).ready() diff --git a/tbl_indexes.php b/tbl_indexes.php index e9f33f1791..d93018c76d 100644 --- a/tbl_indexes.php +++ b/tbl_indexes.php @@ -179,7 +179,7 @@ PMA_Message::notice(__('("PRIMARY" must be the name of and only of
- generateIndexSelector(); ?> From 499dbe1ae67057fa869942697df9b7a5f385f608 Mon Sep 17 00:00:00 2001 From: Thilanka Kaushalya Date: Fri, 8 Jul 2011 09:27:10 +0530 Subject: [PATCH 003/111] Fixed bugs in checkIndexName --- js/functions.js | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/js/functions.js b/js/functions.js index d34570b7ec..a718929814 100644 --- a/js/functions.js +++ b/js/functions.js @@ -2159,13 +2159,14 @@ $(document).ready(initTooltips); /** * Ensures indexes names are valid according to their type and, for a primary * key, lock index name to 'PRIMARY' - * - * @return boolean false if there is no index form, true else + * @param string form_id Variable which parses the form name as + * the input + * @return boolean false if there is no index form, true else */ -function checkIndexName(form_name) +function checkIndexName(form_id) { - if ($("#"+form_name).length == 0) { - return false + if ($("#"+form_id).length == 0) { + return false; } // Gets the elements pointers @@ -2174,20 +2175,16 @@ function checkIndexName(form_name) // Index is a primary key if (the_idx_type.find("option:selected").attr("value") == 'PRIMARY') { - $("#input_index_name").attr("value", 'PRIMARY'); - if (the_idx_name.attr("disabled") != 'undefined') { - $("#input_index_name").attr("disabled", true); - } + the_idx_name.attr("value", 'PRIMARY'); + the_idx_name.attr("disabled", true); } // Other cases else { if (the_idx_name.attr("value") == 'PRIMARY') { - $("#input_index_name").attr("value", ''); - } - if (the_idx_name.attr("disabled") != 'undefined') { - $("#input_index_name").attr("disabled", false); + the_idx_name.attr("value", ''); } + the_idx_name.attr("disabled", false); } return true; From ddb776901307b33bd0d2efc378ba1472fb3f4f36 Mon Sep 17 00:00:00 2001 From: Thilanka Kaushalya Date: Fri, 8 Jul 2011 14:04:57 +0530 Subject: [PATCH 004/111] Fixed bugs od index edit in table structure --- js/tbl_structure.js | 10 ++++++++-- tbl_indexes.php | 4 ++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/js/tbl_structure.js b/js/tbl_structure.js index 3f49260fef..fb510353cc 100644 --- a/js/tbl_structure.js +++ b/js/tbl_structure.js @@ -338,8 +338,14 @@ $(document).ready(function() { } } else { - var temp_div = $("
").append(data.error); - var error = $(temp_div).find(".error code").addClass("error"); + if(data.error != undefined) { + var temp_div = $("
").append(data.error); + if($(temp_div).find(".error code").length != 0) { + var error = $(temp_div).find(".error code").addClass("error"); + } else { + var error = temp_div; + } + } PMA_ajaxShowMessage(error); } diff --git a/tbl_indexes.php b/tbl_indexes.php index d93018c76d..39205f24df 100644 --- a/tbl_indexes.php +++ b/tbl_indexes.php @@ -108,6 +108,10 @@ if (isset($_REQUEST['do_save_data'])) { require './tbl_structure.php'; exit; } else { + if( $GLOBALS['is_ajax_request'] == true) { + $extra_data['error'] = $error; + PMA_ajaxResponse($error,false); + } $error->display(); } } // end builds the new index From 526c72652fefca7025614552f5f5ad80d912462c Mon Sep 17 00:00:00 2001 From: Thilanka Kaushalya Date: Fri, 8 Jul 2011 15:35:28 +0530 Subject: [PATCH 005/111] Fixed bugs in index edit in table structure --- js/tbl_structure.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/js/tbl_structure.js b/js/tbl_structure.js index fb510353cc..49e3fe08f5 100644 --- a/js/tbl_structure.js +++ b/js/tbl_structure.js @@ -179,6 +179,7 @@ $(document).ready(function() { height: 230, width: 900, open: PMA_verifyTypeOfAllColumns, + modal: true, buttons : button_options_error })// end dialog options } else { @@ -189,6 +190,7 @@ $(document).ready(function() { height: 600, width: 900, open: PMA_verifyTypeOfAllColumns, + modal: true, buttons : button_options }) //Remove the top menu container from the dialog @@ -285,6 +287,7 @@ $(document).ready(function() { height: 230, width: 900, open: PMA_verifyTypeOfAllColumns, + modal: true, buttons : button_options_error })// end dialog options } else { @@ -295,6 +298,7 @@ $(document).ready(function() { height: 600, width: 900, open: PMA_verifyTypeOfAllColumns, + modal: true, buttons : button_options }) //Remove the top menu container from the dialog From baa2efa1f123ea0a386c9b001781860aabb27aff Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Fri, 8 Jul 2011 16:38:46 +0200 Subject: [PATCH 006/111] Make .sortableIcon use proper images --- themes/original/css/theme_right.css.php | 11 ++++------- themes/pmahomme/css/theme_right.css.php | 9 ++++++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index 5b92cd53d4..0ace4f1979 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -969,15 +969,12 @@ h3#serverstatusqueries span { display:inline; } -table#serverstatusqueriesdetails th img.sortableIcon, table#serverstatusvariables th img.sortableIcon { - background-image:url(getImgPath(); ?>s_sortable.png); -} -table#serverstatusqueriesdetails th.headerSortUp img.sortableIcon, table#serverstatusvariables th.headerSortUp img.sortableIcon { - background-image:url(getImgPath(); ?>s_asc.png); -} -table#serverstatusqueriesdetails th.headerSortDown img.sortableIcon, table#serverstatusvariables th.headerSortDown img.sortableIcon { +th.headerSortUp img.sortableIcon, th.headerSortUp img.sortableIcon { background-image:url(getImgPath(); ?>s_desc.png); } +th.headerSortDown img.sortableIcon, th.headerSortDown img.sortableIcon { + background-image:url(getImgPath(); ?>s_asc.png); +} .statuslinks { float: ; diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index f2250a9ba5..4c71f82696 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -1175,12 +1175,15 @@ h3#serverstatusqueries span { display:inline; } -table#serverstatusqueriesdetails th.headerSortUp img.sortableIcon, table#serverstatusvariables th.headerSortUp img.sortableIcon { - background-image:url(getImgPath(); ?>s_asc.png); +th img.sortableIcon, th img.sortableIcon { + background-image:url(getImgPath(); ?>s_sortable.png); } -table#serverstatusqueriesdetails th.headerSortDown img.sortableIcon, table#serverstatusvariables th.headerSortDown img.sortableIcon { +th.headerSortUp img.sortableIcon, th.headerSortUp img.sortableIcon { background-image:url(getImgPath(); ?>s_desc.png); } +th.headerSortDown img.sortableIcon, th.headerSortDown img.sortableIcon { + background-image:url(getImgPath(); ?>s_asc.png); +} .statuslinks { float: ; From f778dfc5af9756e6ab438a279d3ec1d60af57add Mon Sep 17 00:00:00 2001 From: Thilanka Kaushalya Date: Fri, 8 Jul 2011 21:09:13 +0530 Subject: [PATCH 007/111] Fixed the variable names in checkIndexName function --- js/functions.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/js/functions.js b/js/functions.js index a718929814..ae5cdbad8f 100644 --- a/js/functions.js +++ b/js/functions.js @@ -2170,21 +2170,21 @@ function checkIndexName(form_id) } // Gets the elements pointers - var the_idx_name = $("#input_index_name"); - var the_idx_type = $("#select_index_type"); + var $the_idx_name = $("#input_index_name"); + var $the_idx_type = $("#select_index_type"); // Index is a primary key - if (the_idx_type.find("option:selected").attr("value") == 'PRIMARY') { - the_idx_name.attr("value", 'PRIMARY'); - the_idx_name.attr("disabled", true); + if ($the_idx_type.find("option:selected").attr("value") == 'PRIMARY') { + $the_idx_name.attr("value", 'PRIMARY'); + $the_idx_name.attr("disabled", true); } // Other cases else { - if (the_idx_name.attr("value") == 'PRIMARY') { - the_idx_name.attr("value", ''); + if ($the_idx_name.attr("value") == 'PRIMARY') { + $the_idx_name.attr("value", ''); } - the_idx_name.attr("disabled", false); + $the_idx_name.attr("disabled", false); } return true; From 909c8ceb49b94f1a81eef8fa267fa457e54170f4 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Fri, 8 Jul 2011 17:41:52 +0200 Subject: [PATCH 008/111] Correct shades on sortable icon, top arrow stood out --- themes/pmahomme/img/s_sortable.png | Bin 1107 -> 1177 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/themes/pmahomme/img/s_sortable.png b/themes/pmahomme/img/s_sortable.png index 0a341429eb8f909b4c3fc6825113c187a7bf6d02..9f9950f2c7d626c75616bb17a3f5dd798287ead4 100644 GIT binary patch literal 1177 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`k|nMYCBgY=CFO}lsSJ)O`AMk? zp1FzXsX?iUDV2pMQ*9U+m=!WZB1$5BeXNr6bM+EIYV;~{3xK*A7;Nk-3KEmEQ%e+* zQqwc@Y?a>c-mj#PnPRIHZt82`Ti~3Uk?B!Ylp0*+7m{3+ootz+WN)WnQ(*-(AUCxn zQK2F?C$HG5!d3}vt`(3C64qBz04piUwpD^SD#ABF!8yMuRl!uxKsVXI%s|1+P|wiV z#N6CmN5ROz&_Lh7NZ-&%*U;R`*vQJjKmiJrfVLH-q*(>IxIyg#@@$ndN=gc>^!3Zj z%k|2Q_413-^$jg8EkR}&8R-I5=oVMzl_XZ^<`pZ$OmImpPAEg{v+u2}(t{7puX=A(aKG z`a!A1`K3k4z=%sz23b{L$o& z6x?nx!Kqgt=oo!av?4__ObD2EKuma|1#;lYJ~a=R){B6NT3_7uGy?-8zo(01NX4x) zllJB{8;G>#D=;M+mnEzUNqsrb{Ny?31E-`7l#T=&7<^!|ah~SpCHj!Fvr|5?uH{AP zbGOnd3%916+*I0k&USwJ?QI8*y_?mq|GVcr@A)~4zI4SS7fWOR1vKfLp0nmdKI;Vst0C?b%t^fc4 delta 1097 zcmV-P1h)H`3DXFW8Gi%-006c6H|hWY010qNS#tmY3ljhU3ljkVnw%H_00S6lLqkwd zXm50Hb7*gHAW1_*AaHVTW@&6?004N}V_;yO;OOGy$|S(RP*7A-A zje(hgfq{X6Au+kQz%d}ehk=2CAum5Kl>rqnGBA9*#=ywHz<L4HwU zNoooM0|V3!27d+y240u^5(W3f%sd4n162kpgNVo|1qcffJ_s=cNG>fZg9jx8g8+j9 zg8_pBLjXe}Lp{R+hNBE`7{wV~7)u#fFy3PlV+vxLz;uCGm^qSpA@ds+OO_6nTdaDl zt*rOhEZL^9ePa)2-_4=K(Z%tFGm-NGmm}8}ZcXk5JbzL=Q+b7WC-DjMP2-p0Uo4;_ zutU&Q@QP5X&=28W5fzcWqT!-n#3qRwiC>YZkd%`=CY3KOEqy|!Ojcd?mRz5_i~Jvj zt%`+8dP;AV*Qyk#nyCI%JE-2J5vr-A`9bS|_9UHDT`N67y;u523>FyH8pRmfn#h|n zo4z!=V1K^TVu|Ght2*mkn>gD*J6C&a2V+MaCpBj!7X?>&HwAZP4|PvnFB5MYA9vqi zzXbpMfcn6RK}&;ognhg9Nrj-K4POhLkm_H`6&XEHX2* z=4M~aWzVzEuPE45_^w#HB&&2)*_#Ue%95&GHGhn?UUgIJA2#YW)ij@Nm1`?(KiVnX zRn&dDSGBLP|L#PaNwX*aof<#w@C=Qa{jz2$~&n@l!u*=n+F`wpv}`**wUIlC`x|AT`$hkhPuKPG;B#YyW^=guUb{dIoQ zMStx}N3SGa{daxNO`BVH@6_K@zJKCj-ea*R`=4dL5P5mg$5< z;Xeg_o%+-I&+-3%01W^SH2RkDT>t<8AY({UO#lFTB>(_`g8%^e{{R4h=>PzAFaQAR zU;qF*m;eA5Z<1fdMgRZ+wMj%lRCwBA{D04YA22bHqF{@}n%9fva4Og!@%cW3$j2L9 za#$6tk@$RviGz)Sjq~G;B1J3;KHX*JW@q@pz{$YF`DGnK0Sk=rk?T3bH-_&FKNx;8 z{8C3KV5Hcaa4Qb}|Hbf=;RnNahHnhtz87*~DER)3nTv;kje&#V7sJP!SWNh${6hT> z8#gDz3x Date: Fri, 8 Jul 2011 19:28:35 +0200 Subject: [PATCH 009/111] Translation update done using Pootle. --- po/br.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/br.po b/po/br.po index dc306905fe..8890a94025 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-02 22:10+0200\n" +"PO-Revision-Date: 2011-07-08 19:28+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -1292,10 +1292,9 @@ msgid "Insert Table" msgstr "Ensoc'hañ un daolenn" #: js/messages.php:113 -#, fuzzy #| msgid "Indexes" msgid "Hide indexes" -msgstr "Menegerioù" +msgstr "Kuzhat menegerioù" #: js/messages.php:114 #, fuzzy From da7343f416f22e35cd8fa13929dc51625eb83cd9 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:28:46 +0200 Subject: [PATCH 010/111] Translation update done using Pootle. --- po/br.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 8890a94025..5cd6cad1c7 100644 --- a/po/br.po +++ b/po/br.po @@ -1297,10 +1297,9 @@ msgid "Hide indexes" msgstr "Kuzhat menegerioù" #: js/messages.php:114 -#, fuzzy #| msgid "Indexes" msgid "Show indexes" -msgstr "Menegerioù" +msgstr "Diskouez menegerioù" #: js/messages.php:117 msgid "Searching" From 06750dd5804196f0a8f22d8a8e54e0bd33ed5899 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:31:46 +0200 Subject: [PATCH 011/111] Translation update done using Pootle. --- po/br.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 5cd6cad1c7..2c8e748ae9 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-08 19:28+0200\n" +"PO-Revision-Date: 2011-07-08 19:31+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2552,6 +2552,9 @@ msgid "" "inside a frame, and is a potential [strong]security hole[/strong] allowing " "cross-frame scripting attacks" msgstr "" +"Gweredekaat kement-mañ a aotre ur bajenn zo en un domani disheñvel da " +"c'hervel phpMyAdmin e diabarzh ur framm, ar pezh a ya d'ober un " +"[strong]toull surentez[/strong] posupl evit tagadennoù skript etre frammoù" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" From 2b5b9a986002ccf8fcb4028880eae7c506e47520 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:32:14 +0200 Subject: [PATCH 012/111] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 2c8e748ae9..d994c38c15 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-08 19:31+0200\n" +"PO-Revision-Date: 2011-07-08 19:32+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2558,7 +2558,7 @@ msgstr "" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" -msgstr "" +msgstr "Aotren ar frammoù a-berzh tud all" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" From 433b150c86f7126c03eae96564b4f32d12de5d44 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:33:29 +0200 Subject: [PATCH 013/111] Translation update done using Pootle. --- po/br.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index d994c38c15..7c52ea6bc1 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-08 19:32+0200\n" +"PO-Revision-Date: 2011-07-08 19:33+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2563,6 +2563,8 @@ msgstr "Aotren ar frammoù a-berzh tud all" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" msgstr "" +"Diskouez al liamm evit "Skarzhañ un diaz roadennoù" d'an " +"implijerien voutin" #: libraries/config/messages.inc.php:24 msgid "" From 7eb863852d57f886a027cd58787b556f42b66248 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:34:31 +0200 Subject: [PATCH 014/111] Translation update done using Pootle. --- po/br.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 7c52ea6bc1..df812bf523 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-08 19:33+0200\n" +"PO-Revision-Date: 2011-07-08 19:34+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2571,6 +2571,8 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" +"Ger-tremen implijet evit enrinegañ toupinoù pa vez gwiriekaet dre " +"[kbd]cookie[/kbd]" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" From 590ba2ae3a97c0af58211109e61ef79354e662b1 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:34:48 +0200 Subject: [PATCH 015/111] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index df812bf523..7a3461578d 100644 --- a/po/br.po +++ b/po/br.po @@ -2576,7 +2576,7 @@ msgstr "" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" -msgstr "" +msgstr "Kevrin Blow fish" #: libraries/config/messages.inc.php:26 msgid "Highlight selected rows" From f02049bf69366af9ccce5aa2f4f3ca9135bf8c50 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:35:34 +0200 Subject: [PATCH 016/111] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 7a3461578d..6727d53cf9 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-08 19:34+0200\n" +"PO-Revision-Date: 2011-07-08 19:35+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2580,7 +2580,7 @@ msgstr "Kevrin Blow fish" #: libraries/config/messages.inc.php:26 msgid "Highlight selected rows" -msgstr "" +msgstr "Lakaat al linennoù dibabet da skediñ" #: libraries/config/messages.inc.php:27 msgid "Row marker" From cd6b05b5cbbce2500137bcd6931cddfbe6ca147f Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:35:59 +0200 Subject: [PATCH 017/111] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 6727d53cf9..e1081167e4 100644 --- a/po/br.po +++ b/po/br.po @@ -2584,7 +2584,7 @@ msgstr "Lakaat al linennoù dibabet da skediñ" #: libraries/config/messages.inc.php:27 msgid "Row marker" -msgstr "" +msgstr "Merker linennoù" #: libraries/config/messages.inc.php:28 msgid "Highlight row pointed by the mouse cursor" From f1f288fdaaf4c0125b3e7ff779840774b4e8da6d Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:36:37 +0200 Subject: [PATCH 018/111] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index e1081167e4..252231bc45 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-08 19:35+0200\n" +"PO-Revision-Date: 2011-07-08 19:36+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2588,7 +2588,7 @@ msgstr "Merker linennoù" #: libraries/config/messages.inc.php:28 msgid "Highlight row pointed by the mouse cursor" -msgstr "" +msgstr "Lakaat al linenn a vuk al logodenn daveti da usskediñ" #: libraries/config/messages.inc.php:29 msgid "Highlight pointer" From d63d9de012eb62a7641bd795f1a8cb68ef99f8cd Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:37:46 +0200 Subject: [PATCH 019/111] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 252231bc45..e20becbf40 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-08 19:36+0200\n" +"PO-Revision-Date: 2011-07-08 19:37+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2592,7 +2592,7 @@ msgstr "Lakaat al linenn a vuk al logodenn daveti da usskediñ" #: libraries/config/messages.inc.php:29 msgid "Highlight pointer" -msgstr "" +msgstr "Lakaat ar reti da usskediñ" #: libraries/config/messages.inc.php:30 msgid "" From 6ffe28571fce66016ca1a5512228abc6e76d7c67 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:38:44 +0200 Subject: [PATCH 020/111] Translation update done using Pootle. --- po/br.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index e20becbf40..bd4f0b020c 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-08 19:37+0200\n" +"PO-Revision-Date: 2011-07-08 19:38+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2599,6 +2599,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import and export operations" msgstr "" +"Aotren ar gwaskañ [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] evit an " +"oberiadennoù enporzhiañ hag ezporzhiañ" #: libraries/config/messages.inc.php:31 msgid "Bzip2" From b1cf9007218288f242f3e3952f2b132eafda9004 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:38:49 +0200 Subject: [PATCH 021/111] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index bd4f0b020c..c61e28133b 100644 --- a/po/br.po +++ b/po/br.po @@ -2604,7 +2604,7 @@ msgstr "" #: libraries/config/messages.inc.php:31 msgid "Bzip2" -msgstr "" +msgstr "Bzip2" #: libraries/config/messages.inc.php:32 msgid "" From f454c5a848fef7a6cae8d727735cbb0e98bba1bd Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:42:06 +0200 Subject: [PATCH 022/111] Translation update done using Pootle. --- po/br.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index c61e28133b..aea23a3ef6 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-08 19:38+0200\n" +"PO-Revision-Date: 2011-07-08 19:42+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2612,6 +2612,9 @@ msgid "" "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" "kbd] - allows newlines in columns" msgstr "" +"Spisaat peseurt doare kontrolloù kemmañ a zleer ober ganto evit ar bannoù " +"CHAR ha VARCHAR; [kbd]input[/kbd] - a dalvez da grennañ ar vent, " +"[kbd]textarea[/kbd] - a aotren lakaat linennoù nevez er bannoù" #: libraries/config/messages.inc.php:33 msgid "CHAR columns editing" From 04c3ec7fa07b752b32f83a6c88db4b8f59d8ee44 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:42:28 +0200 Subject: [PATCH 023/111] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index aea23a3ef6..687ab99695 100644 --- a/po/br.po +++ b/po/br.po @@ -2618,7 +2618,7 @@ msgstr "" #: libraries/config/messages.inc.php:33 msgid "CHAR columns editing" -msgstr "" +msgstr "Kemmañ ar bannoù CHAR" #: libraries/config/messages.inc.php:34 msgid "Number of columns for CHAR/VARCHAR textareas" From f24427aa3aa922a61c22792971708fc99e7d41af Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:43:07 +0200 Subject: [PATCH 024/111] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 687ab99695..24b1f9da4e 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-08 19:42+0200\n" +"PO-Revision-Date: 2011-07-08 19:43+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2622,7 +2622,7 @@ msgstr "Kemmañ ar bannoù CHAR" #: libraries/config/messages.inc.php:34 msgid "Number of columns for CHAR/VARCHAR textareas" -msgstr "" +msgstr "Niver a vannoù evit an takadoù skrid CHAR/VARCHAR" #: libraries/config/messages.inc.php:35 msgid "CHAR textarea columns" From e237ad645d8783745d1ef1020660a596d9c83349 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:43:24 +0200 Subject: [PATCH 025/111] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 24b1f9da4e..a9a810d652 100644 --- a/po/br.po +++ b/po/br.po @@ -2626,7 +2626,7 @@ msgstr "Niver a vannoù evit an takadoù skrid CHAR/VARCHAR" #: libraries/config/messages.inc.php:35 msgid "CHAR textarea columns" -msgstr "" +msgstr "Bannoù evit an takadoù skrid CHAR" #: libraries/config/messages.inc.php:36 msgid "Number of rows for CHAR/VARCHAR textareas" From bc4a0294d92e41de86ca4a26c8211e3e3ac4b820 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:43:48 +0200 Subject: [PATCH 026/111] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index a9a810d652..e966563f14 100644 --- a/po/br.po +++ b/po/br.po @@ -2630,7 +2630,7 @@ msgstr "Bannoù evit an takadoù skrid CHAR" #: libraries/config/messages.inc.php:36 msgid "Number of rows for CHAR/VARCHAR textareas" -msgstr "" +msgstr "Niver a linennoù evit an takadoù skrid CHAR/VARCHAR" #: libraries/config/messages.inc.php:37 msgid "CHAR textarea rows" From 6eed1497a1eea92abb96c245caa35a482857dea8 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:44:07 +0200 Subject: [PATCH 027/111] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index e966563f14..0ddcfa6af4 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-08 19:43+0200\n" +"PO-Revision-Date: 2011-07-08 19:44+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2634,7 +2634,7 @@ msgstr "Niver a linennoù evit an takadoù skrid CHAR/VARCHAR" #: libraries/config/messages.inc.php:37 msgid "CHAR textarea rows" -msgstr "" +msgstr "Linennoù evit an takadoù skrid CHAR" #: libraries/config/messages.inc.php:38 msgid "Check config file permissions" From ccff9c1825b23cba7f0bb087c3ba9398bddae6da Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:44:34 +0200 Subject: [PATCH 028/111] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 0ddcfa6af4..966eddcdd8 100644 --- a/po/br.po +++ b/po/br.po @@ -2638,7 +2638,7 @@ msgstr "Linennoù evit an takadoù skrid CHAR" #: libraries/config/messages.inc.php:38 msgid "Check config file permissions" -msgstr "" +msgstr "Gwiriañ aotreoù ar restr gefluniañ" #: libraries/config/messages.inc.php:39 msgid "" From f41b34875e13a7787158683e175ec46a35dd3375 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:44:55 +0200 Subject: [PATCH 029/111] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 966eddcdd8..3789b6acb4 100644 --- a/po/br.po +++ b/po/br.po @@ -2667,7 +2667,7 @@ msgstr "" #: libraries/config/messages.inc.php:44 msgid "Debug SQL" -msgstr "" +msgstr "Dizreinañ SQL" #: libraries/config/messages.inc.php:45 msgid "Default display direction" From d3a4ed089b1ab9307b046103864e9313984409a2 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 8 Jul 2011 19:45:33 +0200 Subject: [PATCH 030/111] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 3789b6acb4..320e8b7898 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-08 19:44+0200\n" +"PO-Revision-Date: 2011-07-08 19:45+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2671,7 +2671,7 @@ msgstr "Dizreinañ SQL" #: libraries/config/messages.inc.php:45 msgid "Default display direction" -msgstr "" +msgstr "Talvoud dre ziouer durc'hadur an diskwel" #: libraries/config/messages.inc.php:46 msgid "" From 5ce96bccbe217ae0e2c52cdb6624eabf8fc2f6af Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Fri, 8 Jul 2011 19:49:10 +0200 Subject: [PATCH 031/111] Make CSS rule more generic --- themes/original/css/theme_right.css.php | 2 +- themes/pmahomme/css/theme_right.css.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index 0ace4f1979..d8a0e810b0 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -990,7 +990,7 @@ div#serverStatusTabs { margin-top:1em; } -div#serverstatus table caption a.top { +caption a.top { float: ; } diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index 4c71f82696..109c7620a2 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -1199,7 +1199,7 @@ div#serverStatusTabs { margin-top:1em; } -div#serverstatus table caption a.top { +caption a.top { float: ; } From 65c8f659e0adc68e698d9d9be13a1092cb716d7a Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 8 Jul 2011 16:31:06 -0400 Subject: [PATCH 032/111] ChangeLog entry for table Structure Index Edit --- ChangeLog | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog b/ChangeLog index 4df55e5fd7..b03cafbb35 100644 --- a/ChangeLog +++ b/ChangeLog @@ -34,6 +34,7 @@ phpMyAdmin - ChangeLog + Show/hide column in table Browse - bug #3353856 [AJAX] AJAX dialogs use wrong font-size - bug #3354356 [interface] Timepicker does not work in AJAX dialogs ++ AJAX for table Structure Indexes Edit 3.4.4.0 (not yet released) - bug #3323060 [parser] SQL parser breaks AJAX requests if query has unclosed quotes From 658ce1fa1ff313503b9ae27a63ac1e9a0aab7fff Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:01:24 +0200 Subject: [PATCH 033/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 77b66a2efb..489d4bea2d 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-06-27 03:38+0200\n" +"PO-Revision-Date: 2011-07-09 03:01+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" From 5f919e896304db84f781ce29a274c603f49433f3 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:02:03 +0200 Subject: [PATCH 034/111] Translation update done using Pootle. --- po/ar.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 489d4bea2d..8314f63c3a 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:01+0200\n" +"PO-Revision-Date: 2011-07-09 03:02+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -82,7 +82,6 @@ msgstr "تنفيذ" #: browse_foreigners.php:169 browse_foreigners.php:173 #: libraries/Index.class.php:431 tbl_tracking.php:313 -#, fuzzy msgid "Keyname" msgstr "اسم المفتاح" From 1a8b7e67d9919bf81656018a00caa983d5ad09be Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:02:15 +0200 Subject: [PATCH 035/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 8314f63c3a..cb9c75db1b 100644 --- a/po/ar.po +++ b/po/ar.po @@ -405,7 +405,7 @@ msgid "Last check" msgstr "التحقق الأخير" #: db_printview.php:220 db_structure.php:432 -#, fuzzy, php-format +#, php-format #| msgid "%s table(s)" msgid "%s table" msgid_plural "%s tables" From 902782519b9cd83cd317d1710b781fbfbea735b3 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:02:27 +0200 Subject: [PATCH 036/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index cb9c75db1b..1137ff0818 100644 --- a/po/ar.po +++ b/po/ar.po @@ -511,7 +511,7 @@ msgid "Your SQL query has been executed successfully" msgstr "تم تنفيذ إستعلام SQL بنجاح" #: db_routines.php:158 -#, fuzzy, php-format +#, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d تأثر بالإجراء الأخير" From 62d61150fc915a896fb1e63d5a533cab9390c5ab Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:03:10 +0200 Subject: [PATCH 037/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 1137ff0818..9a3696f4f8 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:02+0200\n" +"PO-Revision-Date: 2011-07-09 03:03+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" From 4e82dca1cca7c4201949420a4ee42118796871cf Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:04:15 +0200 Subject: [PATCH 038/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 9a3696f4f8..baa1e612fa 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:03+0200\n" +"PO-Revision-Date: 2011-07-09 03:04+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3182,7 +3182,7 @@ msgstr "" #: libraries/config/messages.inc.php:206 msgid "Changes tracking" -msgstr "" +msgstr "تعقب التغيرات" #: libraries/config/messages.inc.php:207 msgid "" From dcbe1a47598fd4d6c697b74b90b81a2044b2ec78 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:04:52 +0200 Subject: [PATCH 039/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index baa1e612fa..19d4640265 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3188,7 +3188,7 @@ msgstr "تعقب التغيرات" msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." -msgstr "" +msgstr "تعقب التغيرات الحاصلة على قاعدة البيانات." #: libraries/config/messages.inc.php:208 msgid "Customize export options" From 2ee0f3271715cb760a5b806fe8f320732067f7c7 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:05:13 +0200 Subject: [PATCH 040/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 19d4640265..b81ca5db59 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:04+0200\n" +"PO-Revision-Date: 2011-07-09 03:05+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3192,7 +3192,7 @@ msgstr "تعقب التغيرات الحاصلة على قاعدة البيان #: libraries/config/messages.inc.php:208 msgid "Customize export options" -msgstr "" +msgstr "تخصيص خيارات التصدير" #: libraries/config/messages.inc.php:210 msgid "Customize import defaults" From d03f6578f808c669b2e5e45817fee8cc7da29de0 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:05:27 +0200 Subject: [PATCH 041/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index b81ca5db59..1bfc89cb6c 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3196,7 +3196,7 @@ msgstr "تخصيص خيارات التصدير" #: libraries/config/messages.inc.php:210 msgid "Customize import defaults" -msgstr "" +msgstr "تخصيص خيارات الإستيراد" #: libraries/config/messages.inc.php:211 msgid "Customize navigation frame" From 8746ce3829e1aa6b6a66c2505e1e749edcd63969 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:05:46 +0200 Subject: [PATCH 042/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 1bfc89cb6c..1a2c7a00d3 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3200,7 +3200,7 @@ msgstr "تخصيص خيارات الإستيراد" #: libraries/config/messages.inc.php:211 msgid "Customize navigation frame" -msgstr "" +msgstr "تخصيص اطار التصفح" #: libraries/config/messages.inc.php:212 msgid "Customize main frame" From 3b57d73b0b1512f48b4c7003e3da30c4a3514abc Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:06:05 +0200 Subject: [PATCH 043/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 1a2c7a00d3..f1c46ded80 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:05+0200\n" +"PO-Revision-Date: 2011-07-09 03:06+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3204,7 +3204,7 @@ msgstr "تخصيص اطار التصفح" #: libraries/config/messages.inc.php:212 msgid "Customize main frame" -msgstr "" +msgstr "تخصيص الإطار الرئيسي" #: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 #: setup/frames/menu.inc.php:17 From 5ffe47474cb7f81741427ec30c2fc359ce0e9bd6 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:06:15 +0200 Subject: [PATCH 044/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index f1c46ded80..acca97a508 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3209,7 +3209,7 @@ msgstr "تخصيص الإطار الرئيسي" #: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 #: setup/frames/menu.inc.php:17 msgid "SQL queries" -msgstr "" +msgstr "إستعلام SQL" #: libraries/config/messages.inc.php:215 msgid "SQL Query box" From 0616785a9ecb50cba15ad7a2adf4859fb80943b2 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:06:28 +0200 Subject: [PATCH 045/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index acca97a508..35c2bec1af 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3213,7 +3213,7 @@ msgstr "إستعلام SQL" #: libraries/config/messages.inc.php:215 msgid "SQL Query box" -msgstr "" +msgstr "صندوق إستعلام SQL" #: libraries/config/messages.inc.php:216 msgid "Customize links shown in SQL Query boxes" From 8f56270ad6223e9f72b8494df3563063cd61d327 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:06:59 +0200 Subject: [PATCH 046/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 35c2bec1af..30a4d606bd 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3217,7 +3217,7 @@ msgstr "صندوق إستعلام SQL" #: libraries/config/messages.inc.php:216 msgid "Customize links shown in SQL Query boxes" -msgstr "" +msgstr "تخصيص الروابط الموجودة في صندوق إستعلام SQL" #: libraries/config/messages.inc.php:219 #, fuzzy From e7b25494800e51448b07176c9b35f5338577bd9b Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:07:26 +0200 Subject: [PATCH 047/111] Translation update done using Pootle. --- po/ar.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ar.po b/po/ar.po index 30a4d606bd..c295a7977e 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:06+0200\n" +"PO-Revision-Date: 2011-07-09 03:07+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3220,10 +3220,9 @@ msgid "Customize links shown in SQL Query boxes" msgstr "تخصيص الروابط الموجودة في صندوق إستعلام SQL" #: libraries/config/messages.inc.php:219 -#, fuzzy #| msgid "Server variables and settings" msgid "SQL queries settings" -msgstr "متغيرات وإعدادات الخادم" +msgstr "إعدادات إستعلامات SQL" #: libraries/config/messages.inc.php:220 #, fuzzy From a61d88879ef49ab9b37b47434e72d81dec42f9f9 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:07:39 +0200 Subject: [PATCH 048/111] Translation update done using Pootle. --- po/ar.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index c295a7977e..baeb0c7750 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3225,10 +3225,9 @@ msgid "SQL queries settings" msgstr "إعدادات إستعلامات SQL" #: libraries/config/messages.inc.php:220 -#, fuzzy #| msgid "SQL history" msgid "SQL Validator" -msgstr "نصوص SQL سابقة" +msgstr "مدقق SQL" #: libraries/config/messages.inc.php:221 msgid "" From 513db00d1e8881ad10706c60b4a76f2e585c6c9f Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:07:54 +0200 Subject: [PATCH 049/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index baeb0c7750..879ab2c647 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3239,7 +3239,7 @@ msgstr "" #: libraries/config/messages.inc.php:222 msgid "Startup" -msgstr "" +msgstr "بدء التشغيل" #: libraries/config/messages.inc.php:223 msgid "Customize startup page" From df267f234863d5fe817da84cb03d397f20cbdd6c Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:08:36 +0200 Subject: [PATCH 050/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 879ab2c647..9be27d0a58 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:07+0200\n" +"PO-Revision-Date: 2011-07-09 03:08+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3243,7 +3243,7 @@ msgstr "بدء التشغيل" #: libraries/config/messages.inc.php:223 msgid "Customize startup page" -msgstr "" +msgstr "تخصيص صفحة بدء التشغيل" #: libraries/config/messages.inc.php:224 msgid "Tabs" From 34dd1df4ce3c3087df03e0cd97a51439a95f9be7 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:08:48 +0200 Subject: [PATCH 051/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 9be27d0a58..9b22b6e80b 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3247,7 +3247,7 @@ msgstr "تخصيص صفحة بدء التشغيل" #: libraries/config/messages.inc.php:224 msgid "Tabs" -msgstr "" +msgstr "التبويبات" #: libraries/config/messages.inc.php:225 msgid "Choose how you want tabs to work" From e77114f10c506f49320352f2dae30b57d4d455bf Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:09:25 +0200 Subject: [PATCH 052/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 9b22b6e80b..ba7807c6eb 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:08+0200\n" +"PO-Revision-Date: 2011-07-09 03:09+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3251,7 +3251,7 @@ msgstr "التبويبات" #: libraries/config/messages.inc.php:225 msgid "Choose how you want tabs to work" -msgstr "" +msgstr "إختر الطريقة التي تعمل بها التبويبات" #: libraries/config/messages.inc.php:226 #, fuzzy From a599f016e53f55a64aed0b2dd80fded78a3cd435 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:09:41 +0200 Subject: [PATCH 053/111] Translation update done using Pootle. --- po/ar.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index ba7807c6eb..54fff0d126 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3254,10 +3254,9 @@ msgid "Choose how you want tabs to work" msgstr "إختر الطريقة التي تعمل بها التبويبات" #: libraries/config/messages.inc.php:226 -#, fuzzy #| msgid "Use text field" msgid "Text fields" -msgstr "استخدم حقل نص" +msgstr "حقول نصية" #: libraries/config/messages.inc.php:227 #, fuzzy From 6d0fdd3e6c2369f5908721b58c6e1f5d30268c6e Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:09:55 +0200 Subject: [PATCH 054/111] Translation update done using Pootle. --- po/ar.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 54fff0d126..c039393030 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3259,10 +3259,9 @@ msgid "Text fields" msgstr "حقول نصية" #: libraries/config/messages.inc.php:227 -#, fuzzy #| msgid "Use text field" msgid "Customize text input fields" -msgstr "استخدم حقل نص" +msgstr "تخصيص حقول الإدخال النصية" #: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 msgid "Texy! text" From f54474915fd9f5ef18ef41289b5cd43f36996567 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:10:59 +0200 Subject: [PATCH 055/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index c039393030..56e85efc6e 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:09+0200\n" +"PO-Revision-Date: 2011-07-09 03:10+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3265,7 +3265,7 @@ msgstr "تخصيص حقول الإدخال النصية" #: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 msgid "Texy! text" -msgstr "" +msgstr "نص" #: libraries/config/messages.inc.php:230 #, fuzzy From 08cc42047f61cc8977302c54e1b70f7a65bb8464 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:11:13 +0200 Subject: [PATCH 056/111] Translation update done using Pootle. --- po/ar.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ar.po b/po/ar.po index 56e85efc6e..3dee45148c 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:10+0200\n" +"PO-Revision-Date: 2011-07-09 03:11+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3268,10 +3268,9 @@ msgid "Texy! text" msgstr "نص" #: libraries/config/messages.inc.php:230 -#, fuzzy #| msgid "Warning" msgid "Warnings" -msgstr "تحذير" +msgstr "تحذيرات" #: libraries/config/messages.inc.php:231 msgid "Disable some of the warnings shown by phpMyAdmin" From e87e34bb26fa296c09195890a7a649b711d0ec99 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:11:38 +0200 Subject: [PATCH 057/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 3dee45148c..2ebcf69c0c 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3274,7 +3274,7 @@ msgstr "تحذيرات" #: libraries/config/messages.inc.php:231 msgid "Disable some of the warnings shown by phpMyAdmin" -msgstr "" +msgstr "تعطيل عرض بعض التحذيرات في phpMyAdmin" #: libraries/config/messages.inc.php:232 msgid "" From 28aef664db2d4f8d566acb8eb68eff5fed44c3a5 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:11:51 +0200 Subject: [PATCH 058/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 2ebcf69c0c..ea5993c1dd 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3274,7 +3274,7 @@ msgstr "تحذيرات" #: libraries/config/messages.inc.php:231 msgid "Disable some of the warnings shown by phpMyAdmin" -msgstr "تعطيل عرض بعض التحذيرات في phpMyAdmin" +msgstr "إلغاء عرض بعض التحذيرات في phpMyAdmin" #: libraries/config/messages.inc.php:232 msgid "" From c5ccde35695b63378ebacf0063dda472491d99d5 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:12:29 +0200 Subject: [PATCH 059/111] Translation update done using Pootle. --- po/ar.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index ea5993c1dd..75b8bc3b05 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:11+0200\n" +"PO-Revision-Date: 2011-07-09 03:12+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3281,6 +3281,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" +"تفعيل ضغط [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] لعمليات التصدير " +"والإستيراد" #: libraries/config/messages.inc.php:233 msgid "GZip" From 721f0fe1d0bfbd7c7530b3f2a400b436fa288fdd Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:12:36 +0200 Subject: [PATCH 060/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 75b8bc3b05..4969776356 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3286,7 +3286,7 @@ msgstr "" #: libraries/config/messages.inc.php:233 msgid "GZip" -msgstr "" +msgstr "GZip" #: libraries/config/messages.inc.php:234 msgid "Extra parameters for iconv" From ec0c61d435e18e995706f2da285836c4e4f00991 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:13:04 +0200 Subject: [PATCH 061/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 4969776356..8979406ed8 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:12+0200\n" +"PO-Revision-Date: 2011-07-09 03:13+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3290,7 +3290,7 @@ msgstr "GZip" #: libraries/config/messages.inc.php:234 msgid "Extra parameters for iconv" -msgstr "" +msgstr "مدخلات إضافية لـ iconv" #: libraries/config/messages.inc.php:235 msgid "" From e341e1089742552361ab655b293dcb77a2e72b7a Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:15:02 +0200 Subject: [PATCH 062/111] Translation update done using Pootle. --- po/ar.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 8979406ed8..00abe82dc6 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:13+0200\n" +"PO-Revision-Date: 2011-07-09 03:15+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3297,6 +3297,8 @@ msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" +"إذا كان مفعل , فإن phpMyAdmin سوف تستمر في تنفيذ الإستعلامات المتعددة حتى " +"لو فشل بعضها" #: libraries/config/messages.inc.php:236 msgid "Ignore multiple statement errors" From fae12d2f92b8667c8e722ef4f8e0914b886aa51c Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:15:21 +0200 Subject: [PATCH 063/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 00abe82dc6..040075e3cc 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3302,7 +3302,7 @@ msgstr "" #: libraries/config/messages.inc.php:236 msgid "Ignore multiple statement errors" -msgstr "" +msgstr "تجاهل أخطاء الجمل المتعددة" #: libraries/config/messages.inc.php:237 msgid "" From 649c43653f955ae462b09baa840876c88138bb70 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:15:56 +0200 Subject: [PATCH 064/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 040075e3cc..e73abf0b95 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3313,7 +3313,7 @@ msgstr "" #: libraries/config/messages.inc.php:238 msgid "Partial import: allow interrupt" -msgstr "" +msgstr "الإستيراد الجزئي: السماح بالمقاطعة" #: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 From 6a8512365706de7a3f8596ac6800d51027d206d1 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:17:09 +0200 Subject: [PATCH 065/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index e73abf0b95..9f4e613a7b 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:15+0200\n" +"PO-Revision-Date: 2011-07-09 03:17+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3318,7 +3318,7 @@ msgstr "الإستيراد الجزئي: السماح بالمقاطعة" #: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" -msgstr "" +msgstr "لاتحبط عندما يكون الخطأ في جمل الإدخال INSERT" #: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 From a353af15a0d59a4a0c35ac8854132992451f74a8 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:19:09 +0200 Subject: [PATCH 066/111] Translation update done using Pootle. --- po/ar.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 9f4e613a7b..6f3b5a7e90 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:17+0200\n" +"PO-Revision-Date: 2011-07-09 03:19+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3330,6 +3330,8 @@ msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" +"الشكل الإفتراضي ; كن مدرك بأن هذه القائمة تعتمد على مكان (قاعدة البيانات " +"والجدول)" #: libraries/config/messages.inc.php:247 msgid "Format of imported file" From e11369e91a7992e430a9e5a148996317ee4a8a15 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:19:36 +0200 Subject: [PATCH 067/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 6f3b5a7e90..53a0e03e1d 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3330,7 +3330,7 @@ msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -"الشكل الإفتراضي ; كن مدرك بأن هذه القائمة تعتمد على مكان (قاعدة البيانات " +"الهيئة الإفتراضي ; كن مدرك بأن هذه القائمة تعتمد على مكان (قاعدة البيانات " "والجدول)" #: libraries/config/messages.inc.php:247 From 895e77fc2c2a4f72f97b9cf9d655442ee3956ced Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:19:52 +0200 Subject: [PATCH 068/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 53a0e03e1d..69c07cf489 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3335,7 +3335,7 @@ msgstr "" #: libraries/config/messages.inc.php:247 msgid "Format of imported file" -msgstr "" +msgstr "هيئة الملفات المستوردة" #: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" From 3ceefc30a1fd082ed3d511bc5b164506c8e704cf Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:20:17 +0200 Subject: [PATCH 069/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 69c07cf489..7525dff3dc 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:19+0200\n" +"PO-Revision-Date: 2011-07-09 03:20+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3339,7 +3339,7 @@ msgstr "هيئة الملفات المستوردة" #: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" -msgstr "" +msgstr "إستعمل الجملة LOCAL" #: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 #: libraries/config/messages.inc.php:263 From 2dfd4a7c39347d2c5bfc081701af5aef3754a8c2 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:20:35 +0200 Subject: [PATCH 070/111] Translation update done using Pootle. --- po/ar.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 7525dff3dc..d592876995 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3343,7 +3343,6 @@ msgstr "إستعمل الجملة LOCAL" #: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 #: libraries/config/messages.inc.php:263 -#, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "ضع أسماء الحقول في السطر الأول" From 0d2e3ca6cd93350e3fb03941bd2e250f52eb875a Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:21:00 +0200 Subject: [PATCH 071/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index d592876995..91c222a6e0 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:20+0200\n" +"PO-Revision-Date: 2011-07-09 03:21+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3349,7 +3349,7 @@ msgstr "ضع أسماء الحقول في السطر الأول" #: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 msgid "Do not import empty rows" -msgstr "" +msgstr "لاتستورد صفوف فارغة" #: libraries/config/messages.inc.php:256 msgid "Import currencies ($5.00 to 5.00)" From 02e0789ac67d3925ba0de867ea5565a324bf0a19 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:21:10 +0200 Subject: [PATCH 072/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 91c222a6e0..c08ea1876a 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3345,7 +3345,7 @@ msgstr "إستعمل الجملة LOCAL" #: libraries/config/messages.inc.php:263 #| msgid "Put fields names in the first row" msgid "Column names in first row" -msgstr "ضع أسماء الحقول في السطر الأول" +msgstr "ضع أسماء الصفوف في السطر الأول" #: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 msgid "Do not import empty rows" From 8a740caa1b9988bee2c31034f0a8683bb0db7eef Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:21:53 +0200 Subject: [PATCH 073/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index c08ea1876a..2c905f4267 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3353,7 +3353,7 @@ msgstr "لاتستورد صفوف فارغة" #: libraries/config/messages.inc.php:256 msgid "Import currencies ($5.00 to 5.00)" -msgstr "" +msgstr "عملات الإستيراد ($5.00 إلى 5.00)" #: libraries/config/messages.inc.php:257 msgid "Import percentages as proper decimals (12.00% to .12)" From 017c2723efed09bbd03eb493bab4e7a4ee84ebc3 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:23:10 +0200 Subject: [PATCH 074/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 2c905f4267..66c185c64c 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:21+0200\n" +"PO-Revision-Date: 2011-07-09 03:23+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3357,7 +3357,7 @@ msgstr "عملات الإستيراد ($5.00 إلى 5.00)" #: libraries/config/messages.inc.php:257 msgid "Import percentages as proper decimals (12.00% to .12)" -msgstr "" +msgstr "النسبة المئوية للإستيراد كرقم عشري (12.00% إلى .12)" #: libraries/config/messages.inc.php:258 msgid "Number of queries to skip from start" From 7bbf8f0997ad46ad88bf2549803929eca59263ce Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:23:39 +0200 Subject: [PATCH 075/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 66c185c64c..a7aea3cc5e 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3361,7 +3361,7 @@ msgstr "النسبة المئوية للإستيراد كرقم عشري (12.00% #: libraries/config/messages.inc.php:258 msgid "Number of queries to skip from start" -msgstr "" +msgstr "عدد الإستعلامات التي تقفز من البداية" #: libraries/config/messages.inc.php:259 msgid "Partial import: skip queries" From a2bc119c20aa80d1d7b6fdd6e51215663da7f45f Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:23:58 +0200 Subject: [PATCH 076/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index a7aea3cc5e..2c94b8448d 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3361,7 +3361,7 @@ msgstr "النسبة المئوية للإستيراد كرقم عشري (12.00% #: libraries/config/messages.inc.php:258 msgid "Number of queries to skip from start" -msgstr "عدد الإستعلامات التي تقفز من البداية" +msgstr "عدد الإستعلامات التي يتخطاها من البداية" #: libraries/config/messages.inc.php:259 msgid "Partial import: skip queries" From 4fbbe03d95cb17a243f90b6c484b59f68540e5cc Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:24:22 +0200 Subject: [PATCH 077/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 2c94b8448d..984f39df7d 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:23+0200\n" +"PO-Revision-Date: 2011-07-09 03:24+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3365,7 +3365,7 @@ msgstr "عدد الإستعلامات التي يتخطاها من البداي #: libraries/config/messages.inc.php:259 msgid "Partial import: skip queries" -msgstr "" +msgstr "إستيراد جزئي: تخطي الإستعلامات" #: libraries/config/messages.inc.php:261 #, fuzzy From b54667eae85d0429f729736a0656c71d82869723 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:24:55 +0200 Subject: [PATCH 078/111] Translation update done using Pootle. --- po/ar.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 984f39df7d..a1a0cb9f0d 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3368,10 +3368,9 @@ msgid "Partial import: skip queries" msgstr "إستيراد جزئي: تخطي الإستعلامات" #: libraries/config/messages.inc.php:261 -#, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" -msgstr "أضف قيمة AUTO_INCREMENT" +msgstr "لاتستعمل AUTO_INCREMENT للقيم الصفرية" #: libraries/config/messages.inc.php:264 msgid "Initial state for sliders" From c2d94fc31a888048f3d723180b5425cb5c597708 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:25:47 +0200 Subject: [PATCH 079/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index a1a0cb9f0d..e7d9f59e99 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:24+0200\n" +"PO-Revision-Date: 2011-07-09 03:25+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3374,7 +3374,7 @@ msgstr "لاتستعمل AUTO_INCREMENT للقيم الصفرية" #: libraries/config/messages.inc.php:264 msgid "Initial state for sliders" -msgstr "" +msgstr "الحالة الأولية" #: libraries/config/messages.inc.php:265 msgid "How many rows can be inserted at one time" From 369bdd4b8e90388f00a53b259c940a0e731774bd Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:26:09 +0200 Subject: [PATCH 080/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index e7d9f59e99..53c72f6322 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:25+0200\n" +"PO-Revision-Date: 2011-07-09 03:26+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3378,7 +3378,7 @@ msgstr "الحالة الأولية" #: libraries/config/messages.inc.php:265 msgid "How many rows can be inserted at one time" -msgstr "" +msgstr "كم عدد الصفوف التي يمكن إدخالها مرة واحدة" #: libraries/config/messages.inc.php:266 msgid "Number of inserted rows" From eca37bd06d4aca6135139a60bef7a1151c856c39 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:26:25 +0200 Subject: [PATCH 081/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 53c72f6322..ff049e4c2d 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3382,7 +3382,7 @@ msgstr "كم عدد الصفوف التي يمكن إدخالها مرة واح #: libraries/config/messages.inc.php:266 msgid "Number of inserted rows" -msgstr "" +msgstr "عدد الصفوف المدخلة" #: libraries/config/messages.inc.php:267 msgid "Target for quick access icon" From 57e67a78805d6d9d8a90baefd4e0cb31cd6ce606 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:26:54 +0200 Subject: [PATCH 082/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index ff049e4c2d..48fe7568cb 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3386,7 +3386,7 @@ msgstr "عدد الصفوف المدخلة" #: libraries/config/messages.inc.php:267 msgid "Target for quick access icon" -msgstr "" +msgstr "الهدف لإيقونة الوصول السريع" #: libraries/config/messages.inc.php:268 msgid "Show logo in left frame" From 53db858fa3f6eb0e2c887a40ba8b8deea6d79abe Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:27:11 +0200 Subject: [PATCH 083/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 48fe7568cb..3f8d1d7b24 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:26+0200\n" +"PO-Revision-Date: 2011-07-09 03:27+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3390,7 +3390,7 @@ msgstr "الهدف لإيقونة الوصول السريع" #: libraries/config/messages.inc.php:268 msgid "Show logo in left frame" -msgstr "" +msgstr "عرض الشعار في الإطار الأيسر" #: libraries/config/messages.inc.php:269 msgid "Display logo" From a2257af473e5a68e1e09edf01b30dc5fb56258fd Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:27:21 +0200 Subject: [PATCH 084/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 3f8d1d7b24..fd22c5a134 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3394,7 +3394,7 @@ msgstr "عرض الشعار في الإطار الأيسر" #: libraries/config/messages.inc.php:269 msgid "Display logo" -msgstr "" +msgstr "عرض الشعار" #: libraries/config/messages.inc.php:270 msgid "Display server choice at the top of the left frame" From 72bc88a9fd3ecfd361b8fface64defa77054dafc Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:28:02 +0200 Subject: [PATCH 085/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index fd22c5a134..e1dc1b9374 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:27+0200\n" +"PO-Revision-Date: 2011-07-09 03:28+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3398,7 +3398,7 @@ msgstr "عرض الشعار" #: libraries/config/messages.inc.php:270 msgid "Display server choice at the top of the left frame" -msgstr "" +msgstr "عرض إختيار الخادم في الجزء العلوي من الإطار الأيسر" #: libraries/config/messages.inc.php:271 msgid "Display servers selection" From 246e4a157281c7785de27d9b02fe5fd8b39d8db5 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:28:54 +0200 Subject: [PATCH 086/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index e1dc1b9374..2182cb190f 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3402,7 +3402,7 @@ msgstr "عرض إختيار الخادم في الجزء العلوي من ال #: libraries/config/messages.inc.php:271 msgid "Display servers selection" -msgstr "" +msgstr "عرض إختيار الخوادم" #: libraries/config/messages.inc.php:272 msgid "Minimum number of tables to display the table filter box" From 62b96b48fc994cf0ba9c3b5ed3858841055e83dc Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:29:43 +0200 Subject: [PATCH 087/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 2182cb190f..a9a01301e7 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:28+0200\n" +"PO-Revision-Date: 2011-07-09 03:29+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3406,7 +3406,7 @@ msgstr "عرض إختيار الخوادم" #: libraries/config/messages.inc.php:272 msgid "Minimum number of tables to display the table filter box" -msgstr "" +msgstr "اقل عدد جداول تعرض في صندوق تصفية الجداول" #: libraries/config/messages.inc.php:273 msgid "String that separates databases into different tree levels" From 9da0397e7f5ac6d96f8d05c049ff7531dd558942 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:30:39 +0200 Subject: [PATCH 088/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index a9a01301e7..2a2a1aa408 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:29+0200\n" +"PO-Revision-Date: 2011-07-09 03:30+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3414,7 +3414,7 @@ msgstr "" #: libraries/config/messages.inc.php:274 msgid "Database tree separator" -msgstr "" +msgstr "فاصل شجرة قاعدة البيانات" #: libraries/config/messages.inc.php:275 msgid "" From 19e3bcf183d6a9b5c7d1836c49caa69f0cee8345 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:31:10 +0200 Subject: [PATCH 089/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 2a2a1aa408..3d18f41e08 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:30+0200\n" +"PO-Revision-Date: 2011-07-09 03:31+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3424,7 +3424,7 @@ msgstr "" #: libraries/config/messages.inc.php:276 msgid "Display databases in a tree" -msgstr "" +msgstr "عرض قواعد البيانات في شجرة" #: libraries/config/messages.inc.php:277 msgid "Disable this if you want to see all databases at once" From fa3f6ccd73ace54df216c980cba9691232953cf4 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:31:57 +0200 Subject: [PATCH 090/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 3d18f41e08..351b05d246 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3428,7 +3428,7 @@ msgstr "عرض قواعد البيانات في شجرة" #: libraries/config/messages.inc.php:277 msgid "Disable this if you want to see all databases at once" -msgstr "" +msgstr "تعطيل هذا إذا كنت تريد رؤية قواعد البيانات كلٌ على حدا" #: libraries/config/messages.inc.php:278 msgid "Use light version" From 72bd6b4034b65fa3339e2d52eefaf972d8f4e267 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:32:12 +0200 Subject: [PATCH 091/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 351b05d246..e84bd051fe 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:31+0200\n" +"PO-Revision-Date: 2011-07-09 03:32+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3432,7 +3432,7 @@ msgstr "تعطيل هذا إذا كنت تريد رؤية قواعد البيا #: libraries/config/messages.inc.php:278 msgid "Use light version" -msgstr "" +msgstr "إستخدم نسخة light" #: libraries/config/messages.inc.php:279 msgid "Maximum table tree depth" From 5284f466d2a7d50c674a851d8c1921c0cc87142c Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:32:57 +0200 Subject: [PATCH 092/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index e84bd051fe..fbe2ad2e70 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3436,7 +3436,7 @@ msgstr "إستخدم نسخة light" #: libraries/config/messages.inc.php:279 msgid "Maximum table tree depth" -msgstr "" +msgstr "أقصى عمق لشجرة الجدول" #: libraries/config/messages.inc.php:280 msgid "String that separates tables into different tree levels" From 75ca45426a0a3e6304d41bf0e426d892f7ae0a25 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:33:18 +0200 Subject: [PATCH 093/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index fbe2ad2e70..7b5a841da9 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:32+0200\n" +"PO-Revision-Date: 2011-07-09 03:33+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3444,7 +3444,7 @@ msgstr "" #: libraries/config/messages.inc.php:281 msgid "Table tree separator" -msgstr "" +msgstr "فاصل شجرة الجدول" #: libraries/config/messages.inc.php:282 msgid "URL where logo in the navigation frame will point to" From 2b75f0f4f0c98080a9ebdf87d116e042095cfd1c Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:33:44 +0200 Subject: [PATCH 094/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 7b5a841da9..26ddf28f93 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3448,7 +3448,7 @@ msgstr "فاصل شجرة الجدول" #: libraries/config/messages.inc.php:282 msgid "URL where logo in the navigation frame will point to" -msgstr "" +msgstr "إعمل رابط للمكان الذي يشير اليه الشعار" #: libraries/config/messages.inc.php:283 msgid "Logo link URL" From 88e6740b8f1431cb994a7f1fc9a02459b949d6db Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:34:00 +0200 Subject: [PATCH 095/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 26ddf28f93..e8cd834095 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:33+0200\n" +"PO-Revision-Date: 2011-07-09 03:34+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3452,7 +3452,7 @@ msgstr "إعمل رابط للمكان الذي يشير اليه الشعار" #: libraries/config/messages.inc.php:283 msgid "Logo link URL" -msgstr "" +msgstr "رابط الشعار" #: libraries/config/messages.inc.php:284 msgid "" From d8cb5bf35588eccb1ad43eb6baa8dd5d0821f008 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:34:56 +0200 Subject: [PATCH 096/111] Translation update done using Pootle. --- po/ar.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/ar.po b/po/ar.po index e8cd834095..ab24e5326f 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3459,6 +3459,8 @@ msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" +"فتح الصفحة المرتبطة في النافذة الرئيسية ([kbd]main[/kbd]) أو في نافذة جديدة " +"([kbd]new[/kbd])" #: libraries/config/messages.inc.php:285 msgid "Logo link target" From 00111ad890122666dcb5b37563a15dbe3e6a15fa Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:35:13 +0200 Subject: [PATCH 097/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index ab24e5326f..e553ebd823 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:34+0200\n" +"PO-Revision-Date: 2011-07-09 03:35+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3464,7 +3464,7 @@ msgstr "" #: libraries/config/messages.inc.php:285 msgid "Logo link target" -msgstr "" +msgstr "هدف رابط الشعار" #: libraries/config/messages.inc.php:286 msgid "Highlight server under the mouse cursor" From 5b7da39468d117c491325cabbfe1a667ef8f24c4 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:35:34 +0200 Subject: [PATCH 098/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index e553ebd823..f63644a4f2 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3468,7 +3468,7 @@ msgstr "هدف رابط الشعار" #: libraries/config/messages.inc.php:286 msgid "Highlight server under the mouse cursor" -msgstr "" +msgstr "توضيح الخادم تحت مؤشر الفأرة" #: libraries/config/messages.inc.php:287 msgid "Enable highlighting" From 73dc5f0722a3723a1d49f9e4cd951f61f4f5ea8e Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:35:58 +0200 Subject: [PATCH 099/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index f63644a4f2..9eef20f87f 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3472,7 +3472,7 @@ msgstr "توضيح الخادم تحت مؤشر الفأرة" #: libraries/config/messages.inc.php:287 msgid "Enable highlighting" -msgstr "" +msgstr "تفعيل التوضيح (highlighting)" #: libraries/config/messages.inc.php:288 msgid "Maximum number of recently used tables; set 0 to disable" From 7ef562948ed9cec9b0dc39ee54eb30613e6fa8bd Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:37:22 +0200 Subject: [PATCH 100/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 9eef20f87f..4883a9d356 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:35+0200\n" +"PO-Revision-Date: 2011-07-09 03:37+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3476,7 +3476,7 @@ msgstr "تفعيل التوضيح (highlighting)" #: libraries/config/messages.inc.php:288 msgid "Maximum number of recently used tables; set 0 to disable" -msgstr "" +msgstr "أكبر عدد للجداول المستعملة مؤخراً ; ضع 0 للتعطيل" #: libraries/config/messages.inc.php:289 #, fuzzy From 8b0f7db3aad8778e85494f54322e90bb8cc28168 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:37:40 +0200 Subject: [PATCH 101/111] Translation update done using Pootle. --- po/ar.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 4883a9d356..c2dc51a4c1 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3479,10 +3479,9 @@ msgid "Maximum number of recently used tables; set 0 to disable" msgstr "أكبر عدد للجداول المستعملة مؤخراً ; ضع 0 للتعطيل" #: libraries/config/messages.inc.php:289 -#, fuzzy #| msgid "Analyze table" msgid "Recently used tables" -msgstr "تحليل الجدول" +msgstr "الجداول المستعملة مؤخراً" #: libraries/config/messages.inc.php:290 msgid "Use less graphically intense tabs" From f89740f3cdc48d0670a83898175afc12e8d0ddb2 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:38:38 +0200 Subject: [PATCH 102/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index c2dc51a4c1..bfbed2918b 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:37+0200\n" +"PO-Revision-Date: 2011-07-09 03:38+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3498,7 +3498,7 @@ msgstr "" #: libraries/config/messages.inc.php:293 msgid "Limit column characters" -msgstr "" +msgstr "حد أحرف العمود" #: libraries/config/messages.inc.php:294 msgid "" From 73e0fcb1eeb0ce8ba8f22652fdfab96aff1e77fc Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:38:54 +0200 Subject: [PATCH 103/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index bfbed2918b..c33ac50625 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3509,7 +3509,7 @@ msgstr "" #: libraries/config/messages.inc.php:295 msgid "Delete all cookies on logout" -msgstr "" +msgstr "حذف كل الكوكيز عند الخروج" #: libraries/config/messages.inc.php:296 msgid "" From c40210f1980d1901507e96cc6efffcd571c5130f Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:39:45 +0200 Subject: [PATCH 104/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index c33ac50625..936751c5ce 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:38+0200\n" +"PO-Revision-Date: 2011-07-09 03:39+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3515,7 +3515,7 @@ msgstr "حذف كل الكوكيز عند الخروج" msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" -msgstr "" +msgstr "تعريف ما إذا كان تسجيل الدخول الأخير سوف يستدعى من تحقق الكوكيز أو لا" #: libraries/config/messages.inc.php:297 msgid "Recall user name" From f13b3306355b6029b42f51dce012acc5229f914a Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:40:34 +0200 Subject: [PATCH 105/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 936751c5ce..80d8388b90 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:39+0200\n" +"PO-Revision-Date: 2011-07-09 03:40+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3519,7 +3519,7 @@ msgstr "تعريف ما إذا كان تسجيل الدخول الأخير سو #: libraries/config/messages.inc.php:297 msgid "Recall user name" -msgstr "" +msgstr "تذكر إسم المستخدم" #: libraries/config/messages.inc.php:298 msgid "" From 494336c3819cc5648199bf65e373bbaf8825bd21 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:41:09 +0200 Subject: [PATCH 106/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 80d8388b90..02dd227d15 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:40+0200\n" +"PO-Revision-Date: 2011-07-09 03:41+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3515,7 +3515,7 @@ msgstr "حذف كل الكوكيز عند الخروج" msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" -msgstr "تعريف ما إذا كان تسجيل الدخول الأخير سوف يستدعى من تحقق الكوكيز أو لا" +msgstr "تعريف ما إذا كان سوف يتذكر تسجيل الدخول الأخير من تحقق الكوكيز أو لا" #: libraries/config/messages.inc.php:297 msgid "Recall user name" From f903591aaba8ffb0fe64a6a6fe8bab7a8a317f4d Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:41:27 +0200 Subject: [PATCH 107/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 02dd227d15..1afcfb6729 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3515,7 +3515,7 @@ msgstr "حذف كل الكوكيز عند الخروج" msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" -msgstr "تعريف ما إذا كان سوف يتذكر تسجيل الدخول الأخير من تحقق الكوكيز أو لا" +msgstr "تعريف ما إذا كان سوف يتذكر تسجيل الدخول الأخير من تحقق الكوكيز أم لا" #: libraries/config/messages.inc.php:297 msgid "Recall user name" From 4478ad59192c4838284b8fb831eb1259149ccd27 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:42:46 +0200 Subject: [PATCH 108/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 1afcfb6729..339dbd75fd 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:41+0200\n" +"PO-Revision-Date: 2011-07-09 03:42+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3535,7 +3535,7 @@ msgstr "" #: libraries/config/messages.inc.php:300 msgid "Define how long (in seconds) a login cookie is valid" -msgstr "" +msgstr "تحديد كم المدة التي يبقى فيها الكوكيز" #: libraries/config/messages.inc.php:301 msgid "Login cookie validity" From 12466f7626f9fc58b78fd22dcad1328c73297447 Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:43:10 +0200 Subject: [PATCH 109/111] Translation update done using Pootle. --- po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ar.po b/po/ar.po index 339dbd75fd..69a7c4f145 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-09 03:42+0200\n" +"PO-Revision-Date: 2011-07-09 03:43+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -3539,7 +3539,7 @@ msgstr "تحديد كم المدة التي يبقى فيها الكوكيز" #: libraries/config/messages.inc.php:301 msgid "Login cookie validity" -msgstr "" +msgstr "صلاحية دخول الكوكيز" #: libraries/config/messages.inc.php:302 msgid "Double size of textarea for LONGTEXT columns" From 35b8d9d8fb9b4ef57762074d2a78fb45ec6d988a Mon Sep 17 00:00:00 2001 From: Abdullah Al-Saedi Date: Sat, 9 Jul 2011 03:43:43 +0200 Subject: [PATCH 110/111] Translation update done using Pootle. --- po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ar.po b/po/ar.po index 69a7c4f145..08baef086f 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3543,7 +3543,7 @@ msgstr "صلاحية دخول الكوكيز" #: libraries/config/messages.inc.php:302 msgid "Double size of textarea for LONGTEXT columns" -msgstr "" +msgstr "مضاعفة حجم مربع النص لأعمدة LONGTEXT" #: libraries/config/messages.inc.php:303 msgid "Bigger textarea for LONGTEXT" From 429328b408cdc669b3400c9ab10b08cd1f7ede56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Sat, 9 Jul 2011 11:26:31 +0200 Subject: [PATCH 111/111] Fix plural forms --- po/ar.po | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/po/ar.po b/po/ar.po index 08baef086f..0eda1043cd 100644 --- a/po/ar.po +++ b/po/ar.po @@ -411,10 +411,10 @@ msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s جدول (جداول)" msgstr[1] "%s جدول (جداول)" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgstr[2] "%s جدول (جداول)" +msgstr[3] "%s جدول (جداول)" +msgstr[4] "%s جدول (جداول)" +msgstr[5] "%s جدول (جداول)" #: db_qbe.php:41 msgid "You have to choose at least one column to display" @@ -515,11 +515,11 @@ msgstr "تم تنفيذ إستعلام SQL بنجاح" msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d تأثر بالإجراء الأخير" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgstr[1] "%d تأثر بالإجراء الأخير" +msgstr[2] "%d تأثر بالإجراء الأخير" +msgstr[3] "%d تأثر بالإجراء الأخير" +msgstr[4] "%d تأثر بالإجراء الأخير" +msgstr[5] "%d تأثر بالإجراء الأخير" #: db_routines.php:168 #, php-format