Git
Threads by month
- ----- 2025 -----
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 13 participants
- 38624 discussions

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_5_0ALPHA1-834-g7863585
by Marc Delisle 22 Jan '12
by Marc Delisle 22 Jan '12
22 Jan '12
The branch, master has been updated
via 786358531b7315c9f664f4611c5612a5caff9234 (commit)
from 82aa0b7dc1ea3294b2cba2ac84f39143e5b36481 (commit)
- Log -----------------------------------------------------------------
commit 786358531b7315c9f664f4611c5612a5caff9234
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Sun Jan 22 04:24:03 2012 -0500
patch #3475424 [import] Fixed CSV escape for the import
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/config.default.php | 2 +-
libraries/import/csv.php | 7 ++++++-
3 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 898e6b4..29cdd12 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -69,6 +69,7 @@ phpMyAdmin - ChangeLog
- bug #3093145 [display] Page through rows returned from a view
+ patch #3303195 [interface] Checkbox to have SQL input remain
- patch #3472899 [export] Fixed CSV escape for the export
+- patch #3475424 [import] Fixed CSV escape for the import
3.4.10.0 (not yet released)
- bug #3460090 [interface] TextareaAutoSelect feature broken
diff --git a/libraries/config.default.php b/libraries/config.default.php
index 83387c9..1821565 100644
--- a/libraries/config.default.php
+++ b/libraries/config.default.php
@@ -1955,7 +1955,7 @@ $cfg['Import']['csv_enclosed'] = '"';
*
* @global string $cfg['Import']['csv_escaped']
*/
-$cfg['Import']['csv_escaped'] = '\\';
+$cfg['Import']['csv_escaped'] = '"';
/**
*
diff --git a/libraries/import/csv.php b/libraries/import/csv.php
index 019412d..79e1cd3 100644
--- a/libraries/import/csv.php
+++ b/libraries/import/csv.php
@@ -223,7 +223,7 @@ while (!($finished && $i >= $len) && !$error && !$timeout_passed) {
}
$fail = false;
$value = '';
- while (($need_end && $ch != $csv_enclosed)
+ while (($need_end && ($ch != $csv_enclosed || $csv_enclosed == $csv_escaped))
|| (!$need_end && !($ch == $csv_terminated
|| $ch == $csv_new_line || ($csv_new_line == 'auto'
&& ($ch == "\r" || $ch == "\n"))))) {
@@ -234,6 +234,11 @@ while (!($finished && $i >= $len) && !$error && !$timeout_passed) {
}
$i++;
$ch = $buffer[$i];
+ if ($csv_enclosed == $csv_escaped && ($ch == $csv_terminated
+ || $ch == $csv_new_line || ($csv_new_line == 'auto'
+ && ($ch == "\r" || $ch == "\n")))) {
+ break;
+ }
}
$value .= $ch;
if ($i == $len - 1) {
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_5_0ALPHA1-833-g82aa0b7
by Marc Delisle 22 Jan '12
by Marc Delisle 22 Jan '12
22 Jan '12
The branch, master has been updated
via 82aa0b7dc1ea3294b2cba2ac84f39143e5b36481 (commit)
from f5ffad3583fd436381b3ced82b8aa1d4ae75f2a0 (commit)
- Log -----------------------------------------------------------------
commit 82aa0b7dc1ea3294b2cba2ac84f39143e5b36481
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Sun Jan 22 04:09:29 2012 -0500
patch #3472899 [export] Fixed CSV escape for the export
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/config.default.php | 2 +-
libraries/export/csv.php | 5 ++---
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 95f4a2e..898e6b4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -68,6 +68,7 @@ phpMyAdmin - ChangeLog
- bug #3340842 [structure] Error dropping index of non-existing column
- bug #3093145 [display] Page through rows returned from a view
+ patch #3303195 [interface] Checkbox to have SQL input remain
+- patch #3472899 [export] Fixed CSV escape for the export
3.4.10.0 (not yet released)
- bug #3460090 [interface] TextareaAutoSelect feature broken
diff --git a/libraries/config.default.php b/libraries/config.default.php
index eb177bb..83387c9 100644
--- a/libraries/config.default.php
+++ b/libraries/config.default.php
@@ -1458,7 +1458,7 @@ $cfg['Export']['csv_enclosed'] = '"';
*
* @global string $cfg['Export']['csv_escaped']
*/
-$cfg['Export']['csv_escaped'] = '\\';
+$cfg['Export']['csv_escaped'] = '"';
/**
*
diff --git a/libraries/export/csv.php b/libraries/export/csv.php
index 15eb09f..bb4a550 100644
--- a/libraries/export/csv.php
+++ b/libraries/export/csv.php
@@ -190,13 +190,12 @@ if (isset($plugin_list)) {
$schema_insert .= $row[$j];
} else {
// also double the escape string if found in the data
- if ('csv' == $what) {
+ if ($csv_escaped != $csv_enclosed) {
$schema_insert .= $csv_enclosed
. str_replace($csv_enclosed, $csv_escaped . $csv_enclosed, str_replace($csv_escaped, $csv_escaped . $csv_escaped, $row[$j]))
. $csv_enclosed;
} else {
- // for excel, avoid a problem when a field contains
- // double quotes
+ // avoid a problem when escape string equals enclose
$schema_insert .= $csv_enclosed
. str_replace($csv_enclosed, $csv_escaped . $csv_enclosed, $row[$j])
. $csv_enclosed;
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_5_0ALPHA1-832-gf5ffad3
by Madhura Jayaratne 22 Jan '12
by Madhura Jayaratne 22 Jan '12
22 Jan '12
The branch, master has been updated
via f5ffad3583fd436381b3ced82b8aa1d4ae75f2a0 (commit)
via 3c7b233d9c83b501f5e220a6dcba8259b7554a87 (commit)
via 5da1aaa0fe7493afecde8ac92a0b561337bf217e (commit)
from 48b951996997742574fbe2935f51a56e56986e7f (commit)
- Log -----------------------------------------------------------------
commit f5ffad3583fd436381b3ced82b8aa1d4ae75f2a0
Merge: 48b9519 3c7b233
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Sun Jan 22 12:10:44 2012 +0530
Merge branch 'QA_3_4'
Conflicts:
libraries/tbl_replace_fields.inc.php
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/tbl_replace_fields.inc.php | 6 ++++--
tbl_replace.php | 7 +++++--
3 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index d605f0c..95f4a2e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -76,6 +76,7 @@ phpMyAdmin - ChangeLog
- bug #3463933 [display] SELECT DISTINCT displays wrong total records found
- patch #3458944 [operations] copy table data missing SET SQL_MODE='NO_AUTO_VALUE_ON_ZERO'
- bug #3469254 [edit] Setting data to NULL and drop-downs
+- bug #3477063 [edit] Missing set fields and values in generated INSERT query
3.4.9.0 (2011-12-21)
- bug #3442028 [edit] Inline editing enum fields with null shows no dropdown
diff --git a/libraries/tbl_replace_fields.inc.php b/libraries/tbl_replace_fields.inc.php
index 8e27290..0f6a3df 100644
--- a/libraries/tbl_replace_fields.inc.php
+++ b/libraries/tbl_replace_fields.inc.php
@@ -59,17 +59,19 @@ if (false !== $possibly_uploaded_val) {
}
// $key contains the md5() of the fieldname
- if (0 === strlen($val) && $type != 'protected') {
+ if ($type != 'protected' && $type != 'set' && 0 === strlen($val)) {
// best way to avoid problems in strict mode (works also in non-strict mode)
if (isset($me_auto_increment) && isset($me_auto_increment[$key])) {
$val = 'NULL';
} else {
$val = "''";
- }
+ }
} elseif ($type == 'set') {
if (! empty($_REQUEST['fields']['multi_edit'][$rownumber][$key])) {
$val = implode(',', $_REQUEST['fields']['multi_edit'][$rownumber][$key]);
$val = "'" . PMA_sqlAddSlashes($val) . "'";
+ } else {
+ $val = "''";
}
} elseif ($type == 'protected') {
// here we are in protected mode (asked in the config)
diff --git a/tbl_replace.php b/tbl_replace.php
index 8b8a58d..6ba156d 100644
--- a/tbl_replace.php
+++ b/tbl_replace.php
@@ -223,7 +223,7 @@ foreach ($loop_array as $rownumber => $where_clause) {
if ($is_insert && $using_key && isset($me_fields_type) && is_array($me_fields_type) && isset($where_clause)) {
$prot_row = PMA_DBI_fetch_single_row('SELECT * FROM ' . PMA_backquote($table) . ' WHERE ' . $where_clause . ';');
}
-
+
// When a select field is nullified, it's not present in $_REQUEST
// so initialize it; this way, the foreach($me_fields) will process it
foreach ($me_fields_name as $key => $val) {
@@ -232,7 +232,10 @@ foreach ($loop_array as $rownumber => $where_clause) {
}
}
- foreach ($me_fields as $key => $val) {
+ // Iterate in the order of $me_fields_name, not $me_fields, to avoid problems
+ // when inserting multiple entries
+ foreach ($me_fields_name as $key => $field_name) {
+ $val = $me_fields[$key];
// Note: $key is an md5 of the fieldname. The actual fieldname is available in $me_fields_name[$key]
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_4, updated. RELEASE_3_4_9-20-g3c7b233
by Madhura Jayaratne 22 Jan '12
by Madhura Jayaratne 22 Jan '12
22 Jan '12
The branch, QA_3_4 has been updated
via 3c7b233d9c83b501f5e220a6dcba8259b7554a87 (commit)
via 5da1aaa0fe7493afecde8ac92a0b561337bf217e (commit)
from 346c70d6fd7a6e402e41dfd552f70e3bdaf83323 (commit)
- Log -----------------------------------------------------------------
commit 3c7b233d9c83b501f5e220a6dcba8259b7554a87
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Sun Jan 22 11:55:28 2012 +0530
bug #3477063 [edit] Missing set fields and values in generated INSERT query
commit 5da1aaa0fe7493afecde8ac92a0b561337bf217e
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Sun Jan 22 11:52:23 2012 +0530
To avoid warnings when strlen() is called on the array containing chosen values for set field
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/tbl_replace_fields.inc.php | 6 ++++--
tbl_replace.php | 7 +++++--
3 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 6d8e6b5..a61a573 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,7 @@ phpMyAdmin - ChangeLog
- bug #3463933 [display] SELECT DISTINCT displays wrong total records found
- patch #3458944 [operations] copy table data missing SET SQL_MODE='NO_AUTO_VALUE_ON_ZERO'
- bug #3469254 [edit] Setting data to NULL and drop-downs
+- bug #3477063 [edit] Missing set fields and values in generated INSERT query
3.4.9.0 (2011-12-21)
- bug #3442028 [edit] Inline editing enum fields with null shows no dropdown
diff --git a/libraries/tbl_replace_fields.inc.php b/libraries/tbl_replace_fields.inc.php
index 8ebade8..b3f125b 100644
--- a/libraries/tbl_replace_fields.inc.php
+++ b/libraries/tbl_replace_fields.inc.php
@@ -68,17 +68,19 @@ if (false !== $possibly_uploaded_val) {
}
// $key contains the md5() of the fieldname
- if (0 === strlen($val) && $type != 'protected') {
+ if ($type != 'protected' && $type != 'set' && 0 === strlen($val)) {
// best way to avoid problems in strict mode (works also in non-strict mode)
if (isset($me_auto_increment) && isset($me_auto_increment[$key])) {
$val = 'NULL';
} else {
$val = "''";
- }
+ }
} elseif ($type == 'set') {
if (! empty($_REQUEST['fields']['multi_edit'][$rownumber][$key])) {
$val = implode(',', $_REQUEST['fields']['multi_edit'][$rownumber][$key]);
$val = "'" . PMA_sqlAddslashes($val) . "'";
+ } else {
+ $val = "''";
}
} elseif ($type == 'protected') {
// here we are in protected mode (asked in the config)
diff --git a/tbl_replace.php b/tbl_replace.php
index 98d1b28..cb26a87 100644
--- a/tbl_replace.php
+++ b/tbl_replace.php
@@ -218,7 +218,7 @@ foreach ($loop_array as $rownumber => $where_clause) {
if ($is_insert && $using_key && isset($me_fields_type) && is_array($me_fields_type) && isset($where_clause)) {
$prot_row = PMA_DBI_fetch_single_row('SELECT * FROM ' . PMA_backquote($table) . ' WHERE ' . $where_clause . ';');
}
-
+
// When a select field is nullified, it's not present in $_REQUEST
// so initialize it; this way, the foreach($me_fields) will process it
foreach ($me_fields_name as $key => $val) {
@@ -227,7 +227,10 @@ foreach ($loop_array as $rownumber => $where_clause) {
}
}
- foreach ($me_fields as $key => $val) {
+ // Iterate in the order of $me_fields_name, not $me_fields, to avoid problems
+ // when inserting multiple entries
+ foreach ($me_fields_name as $key => $field_name) {
+ $val = $me_fields[$key];
// Note: $key is an md5 of the fieldname. The actual fieldname is available in $me_fields_name[$key]
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_5_0ALPHA1-829-g48b9519
by Madhura Jayaratne 21 Jan '12
by Madhura Jayaratne 21 Jan '12
21 Jan '12
The branch, master has been updated
via 48b951996997742574fbe2935f51a56e56986e7f (commit)
via 7e4fe589f399352c048df5acab7a09a400b686f2 (commit)
from ac95cf21a82c7617338e1abb7c07821a62bd3f98 (commit)
- Log -----------------------------------------------------------------
commit 48b951996997742574fbe2935f51a56e56986e7f
Merge: 7e4fe58 ac95cf2
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Sat Jan 21 20:29:33 2012 +0530
Merge branch 'master' of ssh://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin
commit 7e4fe589f399352c048df5acab7a09a400b686f2
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Fri Jan 20 23:10:37 2012 +0530
Improve the look and feel of the fast filter
-----------------------------------------------------------------------
Summary of changes:
js/navigation.js | 33 +++++++++++++++++++++++--------
navigation.php | 2 +-
themes/original/css/theme_left.css.php | 4 +++
themes/pmahomme/css/theme_left.css.php | 4 +++
4 files changed, 33 insertions(+), 10 deletions(-)
diff --git a/js/navigation.js b/js/navigation.js
index 15ac62a..21e05b8 100644
--- a/js/navigation.js
+++ b/js/navigation.js
@@ -170,10 +170,9 @@ function fast_filter(value)
*/
function clear_fast_filter()
{
- var elm = $('#NavFilter input');
- elm.val('');
+ var $elm = $('#fast_filter');
+ $elm.val('');
fast_filter('');
- elm.focus();
}
/**
@@ -197,14 +196,30 @@ function PMA_reloadRecentTable()
$(document).ready(function(){
/* Display filter */
$('#NavFilter').css('display', 'inline');
- $('input[id="fast_filter"]').focus(function() {
- if($(this).attr("value") === "filter tables by name") {
- clear_fast_filter();
+ var txt = $('#fast_filter').val();
+
+ $('#fast_filter.gray').live('focus', function() {
+ $(this).removeClass('gray');
+ clear_fast_filter();
+ });
+
+ $('#fast_filter:not(.gray)').live('focusout', function() {
+ var $input = $(this);
+ if ($input.val() == '') {
+ $input
+ .addClass('gray')
+ .val(txt);
}
});
- $('#clear_fast_filter').click(clear_fast_filter);
- $('#fast_filter').focus(function (evt) {evt.target.select();});
- $('#fast_filter').keyup(function (evt) {fast_filter(evt.target.value);});
+
+ $('#clear_fast_filter').click(function() {
+ clear_fast_filter();
+ $('#fast_filter').focus();
+ });
+
+ $('#fast_filter').keyup(function(evt) {
+ fast_filter($(this).val());
+ });
/* Jump to recent table */
$('#recentTable').change(function() {
diff --git a/navigation.php b/navigation.php
index 4b21236..748c9ab 100644
--- a/navigation.php
+++ b/navigation.php
@@ -267,7 +267,7 @@ if ($GLOBALS['cfg']['LeftFrameLight'] && strlen($GLOBALS['db'])) {
?>
<span id="NavFilter">
<span id="clear_fast_filter" title="<?php echo __('Clear'); ?>">X</span>
- <input type="text" name="fast_filter" id="fast_filter" title="<?php echo __('Filter tables by name'); ?>" value="<?php echo __('Filter tables by name'); ?>" />
+ <input type="text" class="gray" name="fast_filter" id="fast_filter" title="<?php echo __('Filter tables by name'); ?>" value="<?php echo __('Filter tables by name'); ?>" />
</span>
<?php
}
diff --git a/themes/original/css/theme_left.css.php b/themes/original/css/theme_left.css.php
index 31dd39a..a8f3faf 100644
--- a/themes/original/css/theme_left.css.php
+++ b/themes/original/css/theme_left.css.php
@@ -248,3 +248,7 @@ div#left_tableList ul ul {
margin: 0;
border: 0;
}
+
+#fast_filter.gray {
+ color: gray;
+}
\ No newline at end of file
diff --git a/themes/pmahomme/css/theme_left.css.php b/themes/pmahomme/css/theme_left.css.php
index c9f6132..0c2c29d 100644
--- a/themes/pmahomme/css/theme_left.css.php
+++ b/themes/pmahomme/css/theme_left.css.php
@@ -306,3 +306,7 @@ div#left_tableList ul ul {
width: 85%;
padding: 0.1em;
}
+
+#fast_filter.gray {
+ color: gray;
+}
\ No newline at end of file
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_5_0ALPHA1-827-gac95cf2
by Marc Delisle 21 Jan '12
by Marc Delisle 21 Jan '12
21 Jan '12
The branch, master has been updated
via ac95cf21a82c7617338e1abb7c07821a62bd3f98 (commit)
via 346c70d6fd7a6e402e41dfd552f70e3bdaf83323 (commit)
from b3143e6cc0f35a83dd83cb4f03d7620bb36f71e3 (commit)
- Log -----------------------------------------------------------------
commit ac95cf21a82c7617338e1abb7c07821a62bd3f98
Merge: b3143e6 346c70d
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Jan 21 06:56:25 2012 -0500
Merge branch 'QA_3_4'
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
tbl_replace.php | 9 +++++++++
2 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index a336163..d605f0c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -75,6 +75,7 @@ phpMyAdmin - ChangeLog
- bug #3049209 [import] Import from ODS ignores cell that is the same as cell before
- bug #3463933 [display] SELECT DISTINCT displays wrong total records found
- patch #3458944 [operations] copy table data missing SET SQL_MODE='NO_AUTO_VALUE_ON_ZERO'
+- bug #3469254 [edit] Setting data to NULL and drop-downs
3.4.9.0 (2011-12-21)
- bug #3442028 [edit] Inline editing enum fields with null shows no dropdown
diff --git a/tbl_replace.php b/tbl_replace.php
index 60dc7cf..8b8a58d 100644
--- a/tbl_replace.php
+++ b/tbl_replace.php
@@ -223,6 +223,15 @@ foreach ($loop_array as $rownumber => $where_clause) {
if ($is_insert && $using_key && isset($me_fields_type) && is_array($me_fields_type) && isset($where_clause)) {
$prot_row = PMA_DBI_fetch_single_row('SELECT * FROM ' . PMA_backquote($table) . ' WHERE ' . $where_clause . ';');
}
+
+ // When a select field is nullified, it's not present in $_REQUEST
+ // so initialize it; this way, the foreach($me_fields) will process it
+ foreach ($me_fields_name as $key => $val) {
+ if (! isset($me_fields[$key])) {
+ $me_fields[$key] = '';
+ }
+ }
+
foreach ($me_fields as $key => $val) {
// Note: $key is an md5 of the fieldname. The actual fieldname is available in $me_fields_name[$key]
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_4, updated. RELEASE_3_4_9-18-g346c70d
by Marc Delisle 21 Jan '12
by Marc Delisle 21 Jan '12
21 Jan '12
The branch, QA_3_4 has been updated
via 346c70d6fd7a6e402e41dfd552f70e3bdaf83323 (commit)
from 5d1fa1cc6b9cd6b2a96a67cd79216354a3c3e77f (commit)
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
tbl_replace.php | 9 +++++++++
2 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index ee2dccf..6d8e6b5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,7 @@ phpMyAdmin - ChangeLog
- bug #3049209 [import] Import from ODS ignores cell that is the same as cell before
- bug #3463933 [display] SELECT DISTINCT displays wrong total records found
- patch #3458944 [operations] copy table data missing SET SQL_MODE='NO_AUTO_VALUE_ON_ZERO'
+- bug #3469254 [edit] Setting data to NULL and drop-downs
3.4.9.0 (2011-12-21)
- bug #3442028 [edit] Inline editing enum fields with null shows no dropdown
diff --git a/tbl_replace.php b/tbl_replace.php
index f7cc17c..98d1b28 100644
--- a/tbl_replace.php
+++ b/tbl_replace.php
@@ -218,6 +218,15 @@ foreach ($loop_array as $rownumber => $where_clause) {
if ($is_insert && $using_key && isset($me_fields_type) && is_array($me_fields_type) && isset($where_clause)) {
$prot_row = PMA_DBI_fetch_single_row('SELECT * FROM ' . PMA_backquote($table) . ' WHERE ' . $where_clause . ';');
}
+
+ // When a select field is nullified, it's not present in $_REQUEST
+ // so initialize it; this way, the foreach($me_fields) will process it
+ foreach ($me_fields_name as $key => $val) {
+ if (! isset($me_fields[$key])) {
+ $me_fields[$key] = '';
+ }
+ }
+
foreach ($me_fields as $key => $val) {
// Note: $key is an md5 of the fieldname. The actual fieldname is available in $me_fields_name[$key]
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_5_0ALPHA1-825-gb3143e6
by Marc Delisle 20 Jan '12
by Marc Delisle 20 Jan '12
20 Jan '12
The branch, master has been updated
via b3143e6cc0f35a83dd83cb4f03d7620bb36f71e3 (commit)
from 56699c3cc6f93338caf1d5a18a429150fb83fc83 (commit)
- Log -----------------------------------------------------------------
commit b3143e6cc0f35a83dd83cb4f03d7620bb36f71e3
Author: Marc Delisle <marc(a)infomarc.info>
Date: Fri Jan 20 04:25:44 2012 -0500
Increase CodeMirror font size
-----------------------------------------------------------------------
Summary of changes:
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 2b30f3a..71fa37e 100644
--- a/themes/original/css/theme_right.css.php
+++ b/themes/original/css/theme_right.css.php
@@ -2191,7 +2191,7 @@ fieldset .disabled-field td {
}
.CodeMirror {
- line-height: 1em;
+ font-size: 140%;
font-family: monospace;
background: white;
border: 1px solid black;
diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php
index e47b4fd..8cce259 100644
--- a/themes/pmahomme/css/theme_right.css.php
+++ b/themes/pmahomme/css/theme_right.css.php
@@ -2611,7 +2611,7 @@ fieldset .disabled-field td {
}
.CodeMirror {
- line-height: 1em;
+ font-size: 140%;
font-family: monospace;
background: white;
border: 1px solid black;
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. 1763661dcd16a936eda8a92774f595ec35a51696
by Michal Čihař 20 Jan '12
by Michal Čihař 20 Jan '12
20 Jan '12
The branch, master has been updated
via 1763661dcd16a936eda8a92774f595ec35a51696 (commit)
via 3163f8ffe633134df6fb9761d37e86b501efb41e (commit)
via db96c0d7ec129d93f5aee3d85f2860d03b4437a6 (commit)
via 3e77ae349e919d71e24228a44b4f60ed9f340e53 (commit)
via ac6eb788960fe56ef31119238f3e76250cfea24c (commit)
via e470d34b99b77311e4ee4f4498f20e92c4a4bb3d (commit)
via ddf68072e28a7783d5718ef634a7b284265f1b90 (commit)
via 9d135a6495619da4308cbbadc901f74ccfff97dd (commit)
via 2e9e1cfe74e08b5f3769b5d590cd5c548727f6ad (commit)
via bc8a13dfd6ee0fa320b09e054cb7a363a25b77e1 (commit)
via 5a8662ca900b64e48628421a487ad3ea9e0e1747 (commit)
via 8b6621b16e8013b2b729228224bd766ce233997d (commit)
via 82b8d1e1a9c31a363f79cace380635e0d62e55cd (commit)
via 35ab9bac023bb2e37f54ea57d8763ce8744e0c82 (commit)
via c17fc2c9c53f758f1342f7802ba27a9eb3162542 (commit)
via 8ba85c793c34a5aa45d8642a67bd98be671dd7e2 (commit)
via ab34b766085b959e04d8cbb4b3b896ea44a640e4 (commit)
via fd236271fb53ca1ab258a44f38d0e72c3f8a65a2 (commit)
via ca143d6cb72c0109dc135caff53793e2af305f00 (commit)
via c5bfbaac36bf81e213fa584fcaecd57076b07db7 (commit)
via 4daf8e4cb01015f093de8cd4a5935d9861d07e02 (commit)
via 72ecb65f6e50842cc0fdf63741ee70d35f249b5e (commit)
via f3ddf4281cf80e6e686288200ea2e61be036e90b (commit)
via 07f378ecfe1c2405a824a9c9700d4e33f824dcd1 (commit)
via 7929098aee4aa494e6aec3b0066fde38b11f7158 (commit)
via ec66f1c0718e006d1a7e4d48a7f529b25c6defd1 (commit)
via 99649b4127b15f6f5eb0ec160baf4335a542c70e (commit)
via 114947a50f06aa5b13e94af3256d16e09aae3d2a (commit)
via 3b57e29091c53f29ee12b79fb30cd165f7405aef (commit)
via 0f90fb9328924b464646f32d5785730c0f5fdeca (commit)
via c1967744c4d8033ef1ac40e41059cab740e0b5c9 (commit)
via f0e4ca3711491932bd8a9b2c8f5e905b99c91892 (commit)
via c553dbbb0eeecff62f61139623ab5b0ff3028699 (commit)
via d2d6f09ec9f8a8e00fb86c0fc18af729ec46776d (commit)
via b4b1dfd9b87e9d11fd74c0e2e063b2a9feee9988 (commit)
via 6de374afb4179b4feb1f64c9e48b2dde7aaa5c4c (commit)
via 62d724868d20779ce9a3fb9ed6d29714eb5a8400 (commit)
via 7d54af96b546feb14b53ab72cdfef9f3f069cdd3 (commit)
via a74b64ad978ea48d5ac32267e9de237d65cc98ae (commit)
via cfbe54957654f015cc0529aeb269b9dd1e2c8a08 (commit)
via 734bb9252295eed6d9e66db15d2af1790a870563 (commit)
via 803a658f3d1d8eb459c82b277c233a1db73fb644 (commit)
via 5ffebdd41cded8488bf93c7c369c4688afcf94b0 (commit)
via fb132d423d074a349c44a6c81ba986d61dfaffb1 (commit)
via 029f1028b0418034593ad57ac20e038862380867 (commit)
via 192e3fd6dc62b0a5c2a1bffe57d3d9e1a4ced981 (commit)
via c4e8f049fd2a8f882d0054cd2cebaa42b619ced8 (commit)
via b070cbf449530c2add91d4038b6a98c2874c8490 (commit)
via bbe1d681371784fbfb8032b1b7e972419292bdf3 (commit)
via 45e60c1f722ca5d3f0d0f6c94eb44d3d077075e8 (commit)
via 15ce58a7469cded0030c4347726657b857adf637 (commit)
via 5c6713fc1721e030c8e1b9f88db14afa6e9b3087 (commit)
via 41190c27c3c8f6375dc2e77fb9f5ac8f665b4720 (commit)
via 37750f56d4b1e654089e84487fda16f12e586f9c (commit)
via a24fbcb7f7ab1ba98893e341e4466191ecf51d3d (commit)
via cf25fe3adc9745b7abd1bc7383635dac20fd5bce (commit)
via ea50d95a8dd3a588aa58b3c91ddf7fbc9b12cd03 (commit)
via 0bec2d49054181d6af5218e4fb713b1f1f080653 (commit)
via a55574061266d7415f552029aec5d3e7b31b5ae3 (commit)
via 3a8d13662395fbf9d28583fc095480d4d77e66af (commit)
via 281c5e25ee33d885b6a2280901c3fb06ed075712 (commit)
via 506ba86ee4845dc5cfd91eba696d2af547fbfac8 (commit)
via 8e0dbb7a51c235480ab2014fc45ef6e1345f9bd5 (commit)
via 19a468ef0f61cfd6d25415cdaeb7b676ab82baa6 (commit)
via 3d316a162686d0b86334636f4e8e01ddf4c060a9 (commit)
from 8f6f5babc20e0523d5fcaba9055103e8c140782d (commit)
- Log -----------------------------------------------------------------
commit 1763661dcd16a936eda8a92774f595ec35a51696
Author: Michal Čihař <michal(a)cihar.com>
Date: Fri Jan 20 09:47:52 2012 +0100
Update generated files
commit 3163f8ffe633134df6fb9761d37e86b501efb41e
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Fri Jan 20 10:44:31 2012 +0200
Translation update done using Pootle.
commit db96c0d7ec129d93f5aee3d85f2860d03b4437a6
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Fri Jan 20 10:40:40 2012 +0200
Translation update done using Pootle.
commit 3e77ae349e919d71e24228a44b4f60ed9f340e53
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Fri Jan 20 10:39:02 2012 +0200
Translation update done using Pootle.
commit ac6eb788960fe56ef31119238f3e76250cfea24c
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Fri Jan 20 10:38:40 2012 +0200
Translation update done using Pootle.
commit e470d34b99b77311e4ee4f4498f20e92c4a4bb3d
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Fri Jan 20 10:37:30 2012 +0200
Translation update done using Pootle.
commit ddf68072e28a7783d5718ef634a7b284265f1b90
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Fri Jan 20 10:37:05 2012 +0200
Translation update done using Pootle.
commit 9d135a6495619da4308cbbadc901f74ccfff97dd
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Fri Jan 20 10:36:03 2012 +0200
Translation update done using Pootle.
commit 2e9e1cfe74e08b5f3769b5d590cd5c548727f6ad
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Fri Jan 20 10:35:00 2012 +0200
Translation update done using Pootle.
commit bc8a13dfd6ee0fa320b09e054cb7a363a25b77e1
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Fri Jan 20 10:34:28 2012 +0200
Translation update done using Pootle.
commit 5a8662ca900b64e48628421a487ad3ea9e0e1747
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 09:12:52 2012 +0200
Translation update done using Pootle.
commit 8b6621b16e8013b2b729228224bd766ce233997d
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 09:08:32 2012 +0200
Translation update done using Pootle.
commit 82b8d1e1a9c31a363f79cace380635e0d62e55cd
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 09:07:15 2012 +0200
Translation update done using Pootle.
commit 35ab9bac023bb2e37f54ea57d8763ce8744e0c82
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 09:04:32 2012 +0200
Translation update done using Pootle.
commit c17fc2c9c53f758f1342f7802ba27a9eb3162542
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 09:03:50 2012 +0200
Translation update done using Pootle.
commit 8ba85c793c34a5aa45d8642a67bd98be671dd7e2
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 09:02:20 2012 +0200
Translation update done using Pootle.
commit ab34b766085b959e04d8cbb4b3b896ea44a640e4
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 09:01:12 2012 +0200
Translation update done using Pootle.
commit fd236271fb53ca1ab258a44f38d0e72c3f8a65a2
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:44:09 2012 +0200
Translation update done using Pootle.
commit ca143d6cb72c0109dc135caff53793e2af305f00
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:40:24 2012 +0200
Translation update done using Pootle.
commit c5bfbaac36bf81e213fa584fcaecd57076b07db7
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:37:31 2012 +0200
Translation update done using Pootle.
commit 4daf8e4cb01015f093de8cd4a5935d9861d07e02
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:28:34 2012 +0200
Translation update done using Pootle.
commit 72ecb65f6e50842cc0fdf63741ee70d35f249b5e
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:28:13 2012 +0200
Translation update done using Pootle.
commit f3ddf4281cf80e6e686288200ea2e61be036e90b
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:19:19 2012 +0200
Translation update done using Pootle.
commit 07f378ecfe1c2405a824a9c9700d4e33f824dcd1
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:19:07 2012 +0200
Translation update done using Pootle.
commit 7929098aee4aa494e6aec3b0066fde38b11f7158
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:17:43 2012 +0200
Translation update done using Pootle.
commit ec66f1c0718e006d1a7e4d48a7f529b25c6defd1
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:13:16 2012 +0200
Translation update done using Pootle.
commit 99649b4127b15f6f5eb0ec160baf4335a542c70e
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:12:43 2012 +0200
Translation update done using Pootle.
commit 114947a50f06aa5b13e94af3256d16e09aae3d2a
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:12:20 2012 +0200
Translation update done using Pootle.
commit 3b57e29091c53f29ee12b79fb30cd165f7405aef
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:11:28 2012 +0200
Translation update done using Pootle.
commit 0f90fb9328924b464646f32d5785730c0f5fdeca
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:10:57 2012 +0200
Translation update done using Pootle.
commit c1967744c4d8033ef1ac40e41059cab740e0b5c9
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:10:41 2012 +0200
Translation update done using Pootle.
commit f0e4ca3711491932bd8a9b2c8f5e905b99c91892
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:09:42 2012 +0200
Translation update done using Pootle.
commit c553dbbb0eeecff62f61139623ab5b0ff3028699
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:08:20 2012 +0200
Translation update done using Pootle.
commit d2d6f09ec9f8a8e00fb86c0fc18af729ec46776d
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:07:05 2012 +0200
Translation update done using Pootle.
commit b4b1dfd9b87e9d11fd74c0e2e063b2a9feee9988
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:06:19 2012 +0200
Translation update done using Pootle.
commit 6de374afb4179b4feb1f64c9e48b2dde7aaa5c4c
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:05:26 2012 +0200
Translation update done using Pootle.
commit 62d724868d20779ce9a3fb9ed6d29714eb5a8400
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 08:04:12 2012 +0200
Translation update done using Pootle.
commit 7d54af96b546feb14b53ab72cdfef9f3f069cdd3
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 07:59:25 2012 +0200
Translation update done using Pootle.
commit a74b64ad978ea48d5ac32267e9de237d65cc98ae
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 07:54:55 2012 +0200
Translation update done using Pootle.
commit cfbe54957654f015cc0529aeb269b9dd1e2c8a08
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 07:53:31 2012 +0200
Translation update done using Pootle.
commit 734bb9252295eed6d9e66db15d2af1790a870563
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 07:51:22 2012 +0200
Translation update done using Pootle.
commit 803a658f3d1d8eb459c82b277c233a1db73fb644
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Fri Jan 20 07:50:24 2012 +0200
Translation update done using Pootle.
commit 5ffebdd41cded8488bf93c7c369c4688afcf94b0
Merge: fb132d4 8f6f5ba
Author: Pootle server <pootle(a)cihar.com>
Date: Thu Jan 19 16:40:14 2012 +0100
Merge remote-tracking branch 'origin/master'
commit fb132d423d074a349c44a6c81ba986d61dfaffb1
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Jan 19 17:07:58 2012 +0200
Translation update done using Pootle.
commit 029f1028b0418034593ad57ac20e038862380867
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Jan 19 16:40:27 2012 +0200
Translation update done using Pootle.
commit 192e3fd6dc62b0a5c2a1bffe57d3d9e1a4ced981
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Jan 19 16:36:42 2012 +0200
Translation update done using Pootle.
commit c4e8f049fd2a8f882d0054cd2cebaa42b619ced8
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Jan 19 16:35:15 2012 +0200
Translation update done using Pootle.
commit b070cbf449530c2add91d4038b6a98c2874c8490
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:32:46 2012 +0200
Translation update done using Pootle.
commit bbe1d681371784fbfb8032b1b7e972419292bdf3
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:30:19 2012 +0200
Translation update done using Pootle.
commit 45e60c1f722ca5d3f0d0f6c94eb44d3d077075e8
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:17:57 2012 +0200
Translation update done using Pootle.
commit 15ce58a7469cded0030c4347726657b857adf637
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Jan 19 16:17:05 2012 +0200
Translation update done using Pootle.
commit 5c6713fc1721e030c8e1b9f88db14afa6e9b3087
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:16:40 2012 +0200
Translation update done using Pootle.
commit 41190c27c3c8f6375dc2e77fb9f5ac8f665b4720
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:15:03 2012 +0200
Translation update done using Pootle.
commit 37750f56d4b1e654089e84487fda16f12e586f9c
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:13:14 2012 +0200
Translation update done using Pootle.
commit a24fbcb7f7ab1ba98893e341e4466191ecf51d3d
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:11:51 2012 +0200
Translation update done using Pootle.
commit cf25fe3adc9745b7abd1bc7383635dac20fd5bce
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:10:34 2012 +0200
Translation update done using Pootle.
commit ea50d95a8dd3a588aa58b3c91ddf7fbc9b12cd03
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:08:02 2012 +0200
Translation update done using Pootle.
commit 0bec2d49054181d6af5218e4fb713b1f1f080653
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:04:33 2012 +0200
Translation update done using Pootle.
commit a55574061266d7415f552029aec5d3e7b31b5ae3
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:03:51 2012 +0200
Translation update done using Pootle.
commit 3a8d13662395fbf9d28583fc095480d4d77e66af
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Jan 19 16:00:16 2012 +0200
Translation update done using Pootle.
commit 281c5e25ee33d885b6a2280901c3fb06ed075712
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Jan 19 15:59:15 2012 +0200
Translation update done using Pootle.
commit 506ba86ee4845dc5cfd91eba696d2af547fbfac8
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 15:55:44 2012 +0200
Translation update done using Pootle.
commit 8e0dbb7a51c235480ab2014fc45ef6e1345f9bd5
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 15:52:03 2012 +0200
Translation update done using Pootle.
commit 19a468ef0f61cfd6d25415cdaeb7b676ab82baa6
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 15:45:02 2012 +0200
Translation update done using Pootle.
commit 3d316a162686d0b86334636f4e8e01ddf4c060a9
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 15:43:22 2012 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
output/pl/Documentation.html | 85 +++++++++++-----------
output/tr/Documentation.html | 165 ++++++++++++++++++++++--------------------
po/pl.po | 95 ++++++++++++++-----------
po/tr.po | 96 ++++++++++++++++++++++---
4 files changed, 268 insertions(+), 173 deletions(-)
diff --git a/output/pl/Documentation.html b/output/pl/Documentation.html
index f785da6..df20262 100644
--- a/output/pl/Documentation.html
+++ b/output/pl/Documentation.html
@@ -20,7 +20,7 @@ https://l10n.cihar.com/projects/pmadoc/.
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Dokumentacja phpMyAdmin - 3.5.0-beta1-dev</title>
+ <title>phpMyAdmin 3.5.0-beta1-dev - Documentation</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -28,7 +28,7 @@ https://l10n.cihar.com/projects/pmadoc/.
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/">php<span
-class="myadmin">MyAdmin</span></a> Dokumentacja 3.5.0-beta1-dev
+class="myadmin">MyAdmin</span></a> 3.5.0-beta1-dev Documentation
</h1>
</div>
@@ -66,7 +66,7 @@ SourceForge phpMyAdmin</a></li>
<li><a href="http://wiki.phpmyadmin.net"> Oficjalna strona wiki phpMyAdmin</a></li>
<li>Lokalne dokumenty:
<ul><li>Historia wersji: <a href="changelog.php">Dziennik zmian</a></li>
- <li>Licencja: <a href="license.php">LICENSE</a></li>
+ <li>Licencja: <a href="license.php">LICENCJA</a></li>
</ul>
</li>
</ul>
@@ -76,17 +76,19 @@ SourceForge phpMyAdmin</a></li>
<h2 id="require">Wymagania</h2>
<ul><li><b>PHP</b>
- <ul><li>PHP w wersji 5.2.0 lub nowszej, z <tt>obsługą sesji</tt> (<a
-href="#faq1_31">Zobacz: <abbr title="Frequently Asked Questions">FAQ</abbr>
-1.31</a>), rozszerzenie Standard PHP Library (SPL) i obsługa JSON.
+ <ul><li>Potrzebny jest PHP w wersji 5.2.0 lub nowszej, z <tt>obsługą sesji</tt> (<a
+href="#faq1_31">zobacz: <abbr title="Frequently Asked Questions">FAQ</abbr>
+1.31</a>), rozszerzenie Standard PHP Library (SPL) oraz obsługa JSON.
</li>
<li>Do obsługi wysyłania plików ZIP na serwer, potrzebne jest rozszerzenie
-PHP<tt> zip</tt>.</li>
- <li>Do poprawnej obsługi wielobajtowych napisów (np. domyślnego formatu UTF-8),
-potrzebna jest instalacja rozszerzeń <tt>mbstring</tt> i <tt>ctype</tt>.
+PHP<tt>zip</tt>.</li>
+ <li>Do poprawnej obsługi wielobajtowych napisów (np. UTF-8, który obecnie jest
+formatem domyślnym), potrzebna jest instalacja rozszerzeń <tt>mbstring</tt>
+i <tt>ctype</tt>.
</li>
- <li>Obsługa GD2 -- do bezpośredniego wyświetlania miniaturek plików w formacie
-JPEG, w oryginalnych proporcjach.</li>
+ <li>Do bezpośredniego wyświetlania miniaturek plików w formacie JPEG
+("image/jpeg: inline"), w oryginalnych proporcjach, potrzebna jest
+obsługa GD2.</li>
<li>Używanie <a href="#authentication_modes">metody uwierzytelniania
"cookie"</a>, zakłada również stosowanie rozszerzenia <a
href="http://www.php.net/mcrypt"><tt>mcrypt</tt></a>. Jest to stanowcze
@@ -97,16 +99,15 @@ znacznie wolniej, niż zwykle.
</li>
<li>Aby obsługiwać paski postępu wczytywania stron, zobacz <a href="#faq2_9">
<abbr title="Frequently Asked Questions">FAQ</abbr> 2.9</a>.</li>
- <li>Obsługa strumieni danych BLOB, Zobacz: wymagania PHP i MySQL, w: <a
+ <li>Obsługa strumieni danych BLOB, zobacz: wymagania PHP i MySQL, w: <a
href="#faq6_25"> <abbr title="Frequently Asked Questions">FAQ</abbr>
6.25</a>.</li>
- <li>To support XML and Open Document Spreadsheet importing, you need PHP 5.2.17
-or newer and the <a href="http://www.php.net/libxml"><tt>libxml</tt></a>
-extension.</li>
+ <li>Do obsługi XML oraz importu arkuszy Open Document potrzebny jest PHP, w
+wersji 5.2.17 lub nowszej, a także rozszerzenie <a
+href="http://www.php.net/libxml"><tt>libxml</tt></a>.</li>
</ul>
</li>
- <li><b>Wersja MySQL</b> 5.0 lub nowsza <a href="#faq1_17">Więcej szczegółów
-... </a></li>
+ <li><b>MySQL</b> 5.0 or newer (<a href="#faq1_17">details</a>);</li>
<li><b>Przeglądarka stron WWW</b> z włączonymi plikami <b>cookies</b>.</li>
</ul>
@@ -114,19 +115,20 @@ extension.</li>
<!-- INTRODUCTION -->
<h2 id="intro">Wprowadzenie</h2>
-<p> Za pomocą phpMyAdmin można zarządzać całym serwerem MySQL (administracja
-serwerem z konta root), jak również pojedynczą bazą danych. W tym ostatnim
-przypadku pod warunkiem, że jest prawidłowo skonfigurowane konto użytkownika
+<p> Za pomocą phpMyAdmin można zarządzać całym serwerem MySQL (potrzebne jest
+konto super-użytkownika), jak również pojedynczą bazą danych. W tym drugim
+przypadku pod warunkiem, że prawidłowo skonfigurowane jest konto użytkownika
MySQL (włączenie odczytu / modyfikacji tylko określonej bazy danych). Do
ciebie, Użytkowniku tej dokumentacji, należy odszukanie odpowiedniego
-fragmentu podręcznika MySQL, na temat tej kwestii.
+fragmentu podręcznika MySQL, gdzie znacznie szerzej omówione są
+zasygnalizowane tutaj kwestie.
</p>
<h3>Obecnie, za pomocą phpMyAdmin można:</h3>
<ul><li>przeglądać i usuwać bazy danych, tabele, widoki, kolumny i indeksy,</li>
- <li>tworzyć, kopiować, usuwać, zmieniać nazwy, modyfikować tabele, kolumny i
-indeksy,</li>
+ <li>tworzyć, kopiować, usuwać, zmieniać nazwy baz danych; dotyczy to również
+tabel, kolumn i indeksów,</li>
<li>utrzymywać w dobrym stanie serwer, bazy danych i tabele, z propozycjami na
temat konfiguracji serwera,</li>
<li>wykonywać, edytować i tworzyć zakładki dowolnego wyrażenia<abbr
@@ -135,14 +137,14 @@ wsadowych,</li>
<li>wczytywać pliki tekstowe do tabel,</li>
<li>tworzyć<a href="#footnote_1"><sup>1</sup></a> i odczytywać zrzuty tabel,
</li>
- <li>eksportować dane <a href="#footnote_1"><sup>1</sup></a> do różnych formatów:
-<abbr title="Comma Separated Values">CSV</abbr>, <abbr title="Extensible
-Markup Language">XML</abbr>, <abbr title="Portable Document
-Format">PDF</abbr>, <abbr title="International Standards
-Organisation">ISO</abbr>/<abbr title="International Electrotechnical
-Commission">IEC</abbr> 26300 - OpenDocument Text and Spreadsheet, <abbr
-title="Microsoft Word 2000">Word</abbr>, i formatów L<sup> A</sup>T
-<sub><big>E</big> </sub>X,
+ <li>eksportować dane do różnych formatów:<a
+href="#footnote_1"><sup>1</sup></a><abbr title="Comma Separated
+Values">CSV</abbr>, <abbr title="Extensible Markup Language">XML</abbr>,
+<abbr title="Portable Document Format">PDF</abbr>, <abbr
+title="International Standards Organisation">ISO</abbr>/<abbr
+title="International Electrotechnical Commission">IEC</abbr> 26300 -
+OpenDocument (pliki tekstowe i arkusze kalkulacyjne), <abbr title="Microsoft
+Word 2000">Word</abbr>, LaTeX.
</li>
<li>importować dane i struktury MySQL z arkuszy kalkulacyjnych OpenDocument, jak
również <abbr title="Extensible Markup Language">XML</abbr>, <abbr
@@ -153,33 +155,34 @@ Query Language">SQL</abbr>, </li>
<li>sprawdzać referencyjną integralność powiązań w tabelach MyISAM,</li>
<li>używać <b>zapytań przez przykład</b> (Query-by-example - QBE); tworzyć
automatyczne zapytania, łączące żądane tabele,</li>
- <li>tworzyć grafikę PDF z graficznym układem bazy danych,</li>
+ <li>tworzyć grafikę <abbr title="Portable Document Format">PDF</abbr> z układu
+bazy danych, </li>
<li>wyszukiwać dane w sposób globalny w bazie lub w jej podzestawie,</li>
<li>przekształcać składowane dane do dowolnego formatu, używając zestawu
predefiniowanych funkcji, takich jak wyświetlanie danych BLOB w postaci
-obrazu lub odsyłacza do pobrania,
+obrazu lub odsyłacza do pobrania,
</li>
<li>śledzić zmiany w bazach danych, tabelach i widokach,</li>
- <li>obsługiwać tabele InnoDB i klucze obce <a href="#faq3_6">. Zobacz: <abbr
-title="Frequently Asked Questions">FAQ</abbr> 3.6</a>,</li>
+ <li>obsługiwać tabele InnoDB i klucze obce <a href="#faq3_6">. (zobacz: <abbr
+title="Frequently Asked Questions">FAQ</abbr> 3.6)</a>,</li>
<li>obsługiwać mysqli, ulepszone rozszerzenie MySQL, <a
-href="#faq1_17">. Zobacz: <abbr title="Frequently Asked
+href="#faq1_17">. (zobacz: <abbr title="Frequently Asked
Questions">FAQ</abbr> 1.17)</a>,</li>
<li>tworzyć, edytować, wywoływać, eksportować i usuwać przechowywane procedury i
funkcje,</li>
<li>tworzyć, edytować, eksportować i usuwać zdarzenia i wyzwalacze, </li>
<li>komunikować się w <a
-href="http://www.phpmyadmin.net/home_page/translations.php">62 narodowych
-językach</a>,
+href="http://www.phpmyadmin.net/home_page/translations.php">62 językach
+narodowych</a>,
</li>
<li>synchronizować dwie bazy danych umieszczone na tych samych lub zdalnych
-serwerach, <a href="#faq9_1">Zobacz: <abbr title="Frequently Asked
+serwerach, <a href="#faq9_1">(zobacz: <abbr title="Frequently Asked
Questions">FAQ</abbr> 9.1</a>,
</li>
</ul>
-<h4>Kilka słów na temat Użytkowników:</h4>
+<h4>Kilka słów na temat użytkowników:</h4>
<p> Wiele osób ma trudności ze zrozumieniem koncepcji zarządzania użytkownikami
w phpMyAdmin. Mechanizm tego zarządzania wygląda następująco: 1. aby
zalogować się do phpMyAdmin, wszyscy użytkownicy muszą mieć wcześniej
@@ -202,7 +205,7 @@ zmianami w pliku <tt>php.ini</tt>.</p>
<ol><li><a href="#quick_install">Szybka instalacja</a></li>
<li><a href="#setup_script">Użycie skryptu instalacyjnego</a></li>
- <li><a href="#linked-tables">Przechowywanie konfiguracji phpMyAdmin </a></li>
+ <li><a href="#linked-tables">Przechowywanie konfiguracji phpMyAdmin</a></li>
<li><a href="#upgrading">Aktualizacja phpMyAdmin ze starszej wersji</a></li>
<li><a href="#authentication_modes">Używanie trybów uwierzytelnienia</a></li>
</ol>
diff --git a/output/tr/Documentation.html b/output/tr/Documentation.html
index 02c5152..af50712 100644
--- a/output/tr/Documentation.html
+++ b/output/tr/Documentation.html
@@ -4167,57 +4167,60 @@ görüntüleyin ve diğer indeksi oluşturmak için İndeks bağlantısına tık
<h4 id="faq6_3">
<a href="#faq6_3">6.3 Tablomun içine boş değer nasıl eklerim?</a></h4>
<p>
- Since version 2.2.3, you have a checkbox for each column that can be null.
-Before 2.2.3, you had to enter "null", without the quotes, as the
-column's value. Since version 2.5.5, you have to use the checkbox to get a
-real NULL value, so if you enter "NULL" this means you want a
-literal NULL in the column, and not a NULL value (this works in PHP4).
+ 2.2.3 sürümünden bu yana, boş yabılabilen her sütun için işaretleme kutusuna
+sahipsiniz. 2.2.3'ten önce, sütunun değeri olarak tırnaksız "null"
+girmek zorundaydınız. 2.5.5 sürümünden bu yana, gerçek NULL değeri almak
+için işaretleme kutusunu kullanmak zorundasınız, bu yüzden eğer
+"NULL" girerseniz, bu, sütunda harfi harfine NULL istiyorsunuz
+anlamına gelir ve NULL değeri değil (bu PHP4'te çalışır).
</p>
<h4 id="faq6_4">
- <a href="#faq6_4">6.4 How can I backup my database or table?</a></h4>
+ <a href="#faq6_4">6.4 Veritabanımı veya tablomu nasıl yedekleyebilirim?</a></h4>
-<p> Click on a database or table name in the left frame, the properties will be
-displayed. Then on the menu, click "Export", you can dump the
-structure, the data, or both. This will generate standard <abbr
-title="structured query language">SQL</abbr> statements that can be used to
-recreate your database/table.
+<p> Sol çerçevedeki veritabanı ve tablo adına tıklayın, özellikleri
+görüntülenecektir. Sonra menüde, "Dışa Aktar"a tıklayın, yapıyı,
+veriyi ya da her ikisinide dökümleyebilirsiniz. Bu, veritabanınızı/tablonuzu
+yeniden oluşturmak için kullanılabilecek standart <abbr title="structured
+query language">SQL</abbr> ifadelerini oluşturacaktır.
<br /><br />
- You will need to choose "Save as file", so that phpMyAdmin can
-transmit the resulting dump to your station. Depending on your PHP
-configuration, you will see options to compress the dump. See also the <a
+ "Dosya olarak kaydet"i seçmeniz gerekecek, böylece phpMyAdmin
+bilgisayarınıza dökümün sonucunu gönderebilir. PHP yapılandırmanıza bağlı
+olarak, dökümü sıkıştırmak için seçenekleri göreceksiniz. Aynı zamanda <a
href="#cfg_ExecTimeLimit" class="configrule">$cfg['ExecTimeLimit']</a>
-configuration variable.<br /><br />
+yapılandırma değişkenine bakın.<br /><br />
- For additional help on this subject, look for the word "dump" in
-this document.</p>
+ Bu konuda ilave yardım için, bu belge içinde "döküm" kelimesini
+arayın.</p>
<h4 id="faq6_5">
- <a href="#faq6_5">6.5 How can I restore (upload) my database or table using
-a dump? How can I run a ".sql" file? </a></h4>
-
-<p> Click on a database name in the left frame, the properties will be
-displayed. Select "Import" from the list of tabs in the
-right–hand frame (or "<abbr title="structured query
-language">SQL</abbr>" if your phpMyAdmin version is previous to
-2.7.0). In the "Location of the text file" section, type in the
-path to your dump filename, or use the Browse button. Then click Go.
+ <a href="#faq6_5">6.5 Döküm kullanarak veritabanımı veya tablomu nasıl geri
+yüklerim (gönderirim)? ".sql" dosyasını nasıl
+çalıştırabilirim?</a></h4>
+
+<p> Sol çerçevede veritabanı adına tıklayın, özellikleri
+görüntülenecektir. Sağ–taraftaki çerçeveden (veya phpMyAdmin sürümünüz
+2.7.0'dan öncesiyse, "<abbr title="structured query
+language">SQL</abbr>"den) sekmeler listesinden "İçe Aktar"ı
+seçin. "İçe Aktarmak için Dosya" bölümünde, "Bilgisayarınıza
+gözat" kısmında döküm dosya adınızın yolu için Dosya Seçin düğmesini
+kullanın. Sonrada Git'e tıklayın.
<br /><br />
- With version 2.7.0, the import engine has been re–written, if possible
-it is suggested that you upgrade to take advantage of the new features.
+ 2.7.0 sürümü ile içe aktarma motoru yeniden yazıldı, eğer mümkünse yeni
+özelliklerin avantajına sahip olmak için yükseltmeniz önerilir.
<br /><br />
- For additional help on this subject, look for the word "upload" in
-this document.
+ Bu konuda ilave yardım için, bu belge içinde "gönderme" kelimesini
+arayın.
</p>
<h4 id="faq6_6">
- <a href="#faq6_6">6.6 How can I use the relation table in
-Query-by-example?</a></h4>
+ <a href="#faq6_6">6.6 Örnekle sorgulamada bağlantı tablosunu nasıl
+kullanabilirim?</a></h4>
-<p> Here is an example with the tables persons, towns and countries, all located
-in the database mydb. If you don't have a <tt>pma_relation</tt> table,
-create it as explained in the configuration section. Then create the example
-tables:</p>
+<p> İşte persons, towns ve countries tabloları ile bir örnek, mydb veritabanında
+bulunanların tümü. Eğer <tt>pma_relation</tt> tablosuna sahip değilseniz,
+yapılandırma bölümünde açıklandığı gibi oluşturun. Sonrada örnek tabloları
+oluşturun:</p>
<pre>
CREATE TABLE REL_countries (
@@ -4249,63 +4252,67 @@ INSERT INTO REL_towns VALUES ('S', 'Sherbrooke');
INSERT INTO REL_towns VALUES ('M', 'Montréal');
</pre>
-<p> To setup appropriate links and display information:</p>
-
-<ul><li>on table "REL_persons" click Structure, then Relation view</li>
- <li>in Links, for "town_code" choose "REL_towns->code"</li>
- <li>in Links, for "country_code" choose
-"REL_countries->country_code"</li>
- <li>on table "REL_towns" click Structure, then Relation view</li>
- <li>in "Choose column to display", choose "description"</li>
- <li>repeat the two previous steps for table "REL_countries"</li>
+<p> Uygun bağlantıyı kurmak ve bilgiyi görüntülemek için:</p>
+
+<ul><li>"REL_persons" tablosunda Yapı'ya tıklayın sonra da Bağlantı
+görünümüne</li>
+ <li>Bağlantılarda, "town_code" için "REL_towns->code"
+seçin</li>
+ <li>Bağlantılarda, "country_code" için
+"REL_countries->country_code" seçin</li>
+ <li>"REL_towns" tablosunda Yapı'ya tıklayın sonra da Bağlantı
+görünümüne</li>
+ <li>"Görüntülemek için sütun seçin" içinde, "açıklama"yı
+seçin</li>
+ <li>"REL_countries" tablosu için önceki iki adımı tekrarlayın</li>
</ul>
-<p> Then test like this:</p>
-
-<ul><li>Click on your db name in the left frame</li>
- <li>Choose "Query"</li>
- <li>Use tables: persons, towns, countries</li>
- <li>Click "Update query"</li>
- <li>In the columns row, choose persons.person_name and click the
-"Show" tickbox </li>
- <li>Do the same for towns.description and countries.descriptions in the other 2
-columns</li>
- <li>Click "Update query" and you will see in the query box that the
-correct joins have been generated</li>
- <li>Click "Submit query"</li>
+<p> Sonrada bunun gibi deneyin:</p>
+
+<ul><li>Sol çerçevede vt adınıza tıklayın</li>
+ <li>"Sorgu"yu seçin</li>
+ <li>Tabloları kullanın: persons, towns, countries</li>
+ <li>"Sorguyu güncelle"ye tıklayın</li>
+ <li>Sütun satırında, persons.person_name seçin ve "Göster" işaretleme
+kutusuna tıklayın </li>
+ <li>Aynısını diğer 2 sütundaki towns.description ve countries.descriptions için
+yapın</li>
+ <li>"Sorguyu güncelle"ye tıklayın ve doğru birleştirmelerin
+oluşturulduğunu sorgu kutusu içinde göreceksiniz</li>
+ <li>"Sorguyu gönder"e tıklayın</li>
</ul>
<h4 id="faqdisplay">
- <a href="#faqdisplay">6.7 How can I use the "display column"
-feature?</a></h4>
+ <a href="#faqdisplay">6.7 "Sütunu görüntüle" özelliğini nasıl
+kullanabilirim?</a></h4>
<p>
- Starting from the previous example, create the pma_table_info as explained
-in the configuration section, then browse your persons table, and move the
-mouse over a town code or country code.
+ Önceki örnekten başlayarak, yapılandırma bölümünde açıklandığı gibi
+pma_table_info oluşturun, sonra persons tablonuza gözatın ve fareyi town
+kodu ya da country kodunun üzerine götürün.
<br /><br />
- See also <a href="#faq6_21"><abbr title="Frequently Asked
-Questions">FAQ</abbr> 6.21</a> for an additional feature that "display
-column" enables: drop-down list of possible values.
+ Aynı zamanda "sütunu görüntüle"yi etkinleştiren: olası değerlerin
+aşağı açılır listesi ilave özelliği için <a href="#faq6_21"><abbr
+title="Sıkça Sorulan Sorular">SSS</abbr> 6.21</a>'e bakın.
</p>
<h4 id="faqpdf">
- <a href="#faqpdf">6.8 How can I produce a <abbr title="Portable Document
-Format">PDF</abbr> schema of my database?</a></h4>
+ <a href="#faqpdf">6.8 Veritabanımın <abbr title="Portable Document
+Format">PDF</abbr> şemasını nasıl üretebilirim?</a></h4>
<p>
- First the configuration variables "relation",
-"table_coords" and "pdf_pages" have to be filled in.
+ Önce "relation", "table_coords" ve "pdf_pages"
+yapılandırma değişkenleri doldurulmalı.
<br /><br />
- Then you need to think about your schema layout. Which tables will go on
-which pages?
+ Sonra şema düzeniniz ile ilgili düşünmeniz gerekir. Hangi tablolar hangi
+sayfalarda olacak?
</p>
<ul>
- <li>Select your database in the left frame.</li>
- <li>Choose "Operations" in the navigation bar at the top.</li>
- <li>Choose "Edit <abbr title="Portable Document Format">PDF</abbr>
-Pages" near the bottom of the page.</li>
- <li>Enter a name for the first <abbr title="Portable Document Format">PDF</abbr>
-page and click Go. If you like, you can use the "automatic
-layout," which will put all your linked tables onto the new page.</li>
+ <li>Sol çerçeveden veritabanınızı seçin.</li>
+ <li>En üstte rehber çubuğundan "İşlemler"i seçin.</li>
+ <li>Sayfanın en altında yanında "<abbr title="Portable Document
+Format">PDF</abbr> Sayfaları Düzenle"yi seçin.</li>
+ <li>İlk <abbr title="Portable Document Format">PDF</abbr> sayfası için ad girin
+ve Git'e tıklayın. Eğer beğenirseniz, tüm bağlantılı tablolarınızı yeni
+sayfaya koyacak olan "otomatik düzen"i kullanabilirsiniz.</li>
<li>Select the name of the new page (making sure the Edit radio button is
selected) and click Go.</li>
<li>Select a table from the list, enter its coordinates and click Save.<br />
diff --git a/po/pl.po b/po/pl.po
index d7b6a65..f55a4ba 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2012-01-16 16:16+0100\n"
-"PO-Revision-Date: 2012-01-19 15:35+0200\n"
+"PO-Revision-Date: 2012-01-20 10:41+0200\n"
"Last-Translator: Stanisław Krukowski <stankruk(a)neostrada.pl>\n"
"Language-Team: Polish <pl(a)li.org>\n"
"Language: pl\n"
@@ -21,17 +21,19 @@ msgstr ""
#. type: Content of: <html><head><title>
#: orig-docs/Documentation.html:12
+#, fuzzy
msgid "phpMyAdmin @@VER@@ - Documentation"
-msgstr "Dokumentacja phpMyAdmin - @@VER@@"
+msgstr "phpMyAdmin @@VER@@ - Dokumentacja"
#. type: Content of: <html><body><div><h1>
#: orig-docs/Documentation.html:19
+#, fuzzy
msgid ""
"<a href=\"http://www.phpmyadmin.net/\">php<span class=\"myadmin\">MyAdmin</"
"span></a> @@VER@@ Documentation"
msgstr ""
-"<a href=\"http://www.phpmyadmin.net/\">php<span class=\"myadmin\">MyAdmin</"
-"span></a> Dokumentacja @@VER@@"
+"<a href=\"http://www.phpmyadmin.net/\">php<span "
+"class=\"myadmin\">MyAdmin</span></a> @@VER@@ Dokumentacja"
#. type: Content of: <html><body><ul><li>
#: orig-docs/Documentation.html:27
@@ -130,7 +132,7 @@ msgstr "Historia wersji: <a href=\"changelog.php\">Dziennik zmian</a>"
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:51
msgid "License: <a href=\"license.php\">LICENSE</a>"
-msgstr "Licencja: <a href=\"license.php\">LICENSE</a>"
+msgstr "Licencja: <a href=\"license.php\">LICENCJA</a>"
#. #-#-#-#-# pl-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#
#. type: Content of: <html><body><div><h2>
@@ -153,9 +155,9 @@ msgid ""
"\"#faq1_31\">see <abbr title=\"Frequently Asked Questions\">FAQ</abbr> 1.31</"
"a>) , the Standard PHP Library (SPL) extension and JSON support."
msgstr ""
-"PHP w wersji 5.2.0 lub nowszej, z <tt>obsługą sesji</tt> (<a href="
-"\"#faq1_31\">Zobacz: <abbr title=\"Frequently Asked Questions\">FAQ</abbr> "
-"1.31</a>), rozszerzenie Standard PHP Library (SPL) i obsługa JSON."
+"Potrzebny jest PHP w wersji 5.2.0 lub nowszej, z <tt>obsługą sesji</tt> (<a "
+"href=\"#faq1_31\">zobacz: <abbr title=\"Frequently Asked Questions\">FAQ</abbr> "
+"1.31</a>), rozszerzenie Standard PHP Library (SPL) oraz obsługa JSON."
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:65
@@ -163,7 +165,7 @@ msgid ""
"To support uploading of ZIP files, you need the PHP <tt>zip</tt> extension."
msgstr ""
"Do obsługi wysyłania plików ZIP na serwer, potrzebne jest rozszerzenie "
-"PHP<tt> zip</tt>."
+"PHP<tt>zip</tt>."
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:66
@@ -171,8 +173,9 @@ msgid ""
"For proper support of multibyte strings (eg. UTF-8, which is currently the "
"default), you should install the mbstring and ctype extensions."
msgstr ""
-"Do poprawnej obsługi wielobajtowych napisów (np. domyślnego formatu UTF-8), "
-"potrzebna jest instalacja rozszerzeń <tt>mbstring</tt> i <tt>ctype</tt>."
+"Do poprawnej obsługi wielobajtowych napisów (np. UTF-8, który obecnie jest "
+"formatem domyślnym), potrzebna jest instalacja rozszerzeń <tt>mbstring</tt> "
+"i <tt>ctype</tt>."
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:70
@@ -180,8 +183,9 @@ msgid ""
"You need GD2 support in PHP to display inline thumbnails of JPEGs (""
"image/jpeg: inline") with their original aspect ratio"
msgstr ""
-"Obsługa GD2 -- do bezpośredniego wyświetlania miniaturek plików w formacie "
-"JPEG, w oryginalnych proporcjach."
+"Do bezpośredniego wyświetlania miniaturek plików w formacie JPEG "
+"("image/jpeg: inline"), w oryginalnych proporcjach, potrzebna jest "
+"obsługa GD2."
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:73
@@ -214,8 +218,9 @@ msgid ""
"To support BLOB streaming, see PHP and MySQL requirements in <a href="
"\"#faq6_25\"> <abbr title=\"Frequently Asked Questions\">FAQ</abbr> 6.25</a>."
msgstr ""
-"Obsługa strumieni danych BLOB, Zobacz: wymagania PHP i MySQL, w: <a href="
-"\"#faq6_25\"> <abbr title=\"Frequently Asked Questions\">FAQ</abbr> 6.25</a>."
+"Obsługa strumieni danych BLOB, zobacz: wymagania PHP i MySQL, w: <a "
+"href=\"#faq6_25\"> <abbr title=\"Frequently Asked Questions\">FAQ</abbr> "
+"6.25</a>."
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:85
@@ -224,13 +229,15 @@ msgid ""
"or newer and the <a href=\"http://www.php.net/libxml\"><tt>libxml</tt></a> "
"extension."
msgstr ""
+"Do obsługi XML oraz importu arkuszy Open Document potrzebny jest PHP, w "
+"wersji 5.2.17 lub nowszej, a także rozszerzenie <a "
+"href=\"http://www.php.net/libxml\"><tt>libxml</tt></a>."
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:90
+#, fuzzy
msgid "<b>MySQL</b> 5.0 or newer (<a href=\"#faq1_17\">details</a>);"
-msgstr ""
-"<b>Wersja MySQL</b> 5.0 lub nowsza <a href=\"#faq1_17\">Więcej "
-"szczegółów ... </a>"
+msgstr "<b>MySQL</b> 5.0 lub nowszy (<a href=\"#faq1_17\">szczegóły</a>);"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:91
@@ -250,12 +257,13 @@ msgid ""
"MySQL user who can read/write only the desired database. It's up to you to "
"look up the appropriate part in the MySQL manual."
msgstr ""
-"Za pomocą phpMyAdmin można zarządzać całym serwerem MySQL (administracja "
-"serwerem z konta root), jak również pojedynczą bazą danych. W tym ostatnim "
-"przypadku pod warunkiem, że jest prawidłowo skonfigurowane konto użytkownika "
+"Za pomocą phpMyAdmin można zarządzać całym serwerem MySQL (potrzebne jest "
+"konto super-użytkownika), jak również pojedynczą bazą danych. W tym drugim "
+"przypadku pod warunkiem, że prawidłowo skonfigurowane jest konto użytkownika "
"MySQL (włączenie odczytu / modyfikacji tylko określonej bazy danych). Do "
"ciebie, Użytkowniku tej dokumentacji, należy odszukanie odpowiedniego "
-"fragmentu podręcznika MySQL, na temat tej kwestii."
+"fragmentu podręcznika MySQL, gdzie znacznie szerzej omówione są "
+"zasygnalizowane tutaj kwestie."
#. type: Content of: <html><body><div><h3>
#: orig-docs/Documentation.html:103
@@ -272,8 +280,8 @@ msgstr "przeglądać i usuwać bazy danych, tabele, widoki, kolumny i indeksy,"
msgid ""
"create, copy, drop, rename and alter databases, tables, columns and indexes"
msgstr ""
-"tworzyć, kopiować, usuwać, zmieniać nazwy, modyfikować tabele, kolumny i "
-"indeksy,"
+"tworzyć, kopiować, usuwać, zmieniać nazwy baz danych; dotyczy to również "
+"tabel, kolumn i indeksów,"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:108
@@ -315,14 +323,14 @@ msgid ""
"OpenDocument Text and Spreadsheet, <abbr title=\"Microsoft Word 2000\">Word</"
"abbr>, and L<sup>A</sup>T<sub><big>E</big></sub>X formats"
msgstr ""
-"eksportować dane <a href=\"#footnote_1\"><sup>1</sup></a> do różnych "
-"formatów: <abbr title=\"Comma Separated Values\">CSV</abbr>, <abbr title="
-"\"Extensible Markup Language\">XML</abbr>, <abbr title=\"Portable Document "
-"Format\">PDF</abbr>, <abbr title=\"International Standards Organisation"
-"\">ISO</abbr>/<abbr title=\"International Electrotechnical Commission\">IEC</"
-"abbr> 26300 - OpenDocument Text and Spreadsheet, <abbr title=\"Microsoft "
-"Word 2000\">Word</abbr>, i formatów L<sup> A</sup>T <sub><big>E</big> </"
-"sub>X,"
+"eksportować dane do różnych formatów:<a "
+"href=\"#footnote_1\"><sup>1</sup></a><abbr title=\"Comma Separated "
+"Values\">CSV</abbr>, <abbr title=\"Extensible Markup Language\">XML</abbr>, "
+"<abbr title=\"Portable Document Format\">PDF</abbr>, <abbr "
+"title=\"International Standards Organisation\">ISO</abbr>/<abbr "
+"title=\"International Electrotechnical Commission\">IEC</abbr> 26300 - "
+"OpenDocument (pliki tekstowe i arkusze kalkulacyjne), <abbr title=\"Microsoft "
+"Word 2000\">Word</abbr>, LaTeX."
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:126
@@ -366,7 +374,9 @@ msgstr ""
msgid ""
"create <abbr title=\"Portable Document Format\">PDF</abbr> graphics of your "
"Database layout"
-msgstr "tworzyć grafikę PDF z graficznym układem bazy danych,"
+msgstr ""
+"tworzyć grafikę <abbr title=\"Portable Document Format\">PDF</abbr> z układu "
+"bazy danych, "
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:134
@@ -381,7 +391,7 @@ msgid ""
msgstr ""
"przekształcać składowane dane do dowolnego formatu, używając zestawu "
"predefiniowanych funkcji, takich jak wyświetlanie danych BLOB w postaci "
-"obrazu lub odsyłacza do pobrania, "
+"obrazu lub odsyłacza do pobrania,"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:138
@@ -394,8 +404,8 @@ msgid ""
"support InnoDB tables and foreign keys <a href=\"#faq3_6\">(see <abbr title="
"\"Frequently Asked Questions\">FAQ</abbr> 3.6)</a>"
msgstr ""
-"obsługiwać tabele InnoDB i klucze obce <a href=\"#faq3_6\">. Zobacz: <abbr "
-"title=\"Frequently Asked Questions\">FAQ</abbr> 3.6</a>,"
+"obsługiwać tabele InnoDB i klucze obce <a href=\"#faq3_6\">. (zobacz: <abbr "
+"title=\"Frequently Asked Questions\">FAQ</abbr> 3.6)</a>,"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:141
@@ -404,7 +414,7 @@ msgid ""
"<abbr title=\"Frequently Asked Questions\">FAQ</abbr> 1.17)</a>"
msgstr ""
"obsługiwać mysqli, ulepszone rozszerzenie MySQL, <a href=\"#faq1_17\">. "
-"Zobacz: <abbr title=\"Frequently Asked Questions\">FAQ</abbr> 1.17)</a>,"
+"(zobacz: <abbr title=\"Frequently Asked Questions\">FAQ</abbr> 1.17)</a>,"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:143
@@ -424,8 +434,9 @@ msgid ""
"communicate in <a href=\"http://www.phpmyadmin.net/home_page/translations.php"
"\">62 different languages</a>"
msgstr ""
-"komunikować się w <a href=\"http://www.phpmyadmin.net/home_page/translations."
-"php\">62 narodowych językach</a>,"
+"komunikować się w <a "
+"href=\"http://www.phpmyadmin.net/home_page/translations.php\">62 językach "
+"narodowych</a>,"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:147
@@ -435,13 +446,13 @@ msgid ""
"9.1)</a>"
msgstr ""
"synchronizować dwie bazy danych umieszczone na tych samych lub zdalnych "
-"serwerach, <a href=\"#faq9_1\">Zobacz: <abbr title=\"Frequently Asked "
+"serwerach, <a href=\"#faq9_1\">(zobacz: <abbr title=\"Frequently Asked "
"Questions\">FAQ</abbr> 9.1</a>,"
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:153
msgid "A word about users:"
-msgstr "Kilka słów na temat Użytkowników:"
+msgstr "Kilka słów na temat użytkowników:"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:154
@@ -494,7 +505,7 @@ msgstr "<a href=\"#setup_script\">Użycie skryptu instalacyjnego</a>"
#. type: Content of: <html><body><div><ol><li>
#: orig-docs/Documentation.html:173
msgid "<a href=\"#linked-tables\">phpMyAdmin configuration storage</a>"
-msgstr "<a href=\"#linked-tables\">Przechowywanie konfiguracji phpMyAdmin </a>"
+msgstr "<a href=\"#linked-tables\">Przechowywanie konfiguracji phpMyAdmin</a>"
#. type: Content of: <html><body><div><ol><li>
#: orig-docs/Documentation.html:174
diff --git a/po/tr.po b/po/tr.po
index 0e00f57..76dc3b1 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2012-01-16 16:16+0100\n"
-"PO-Revision-Date: 2012-01-19 15:21+0200\n"
+"PO-Revision-Date: 2012-01-20 09:08+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit(a)hotmail.com>\n"
"Language-Team: none\n"
"Language: tr\n"
@@ -10703,11 +10703,18 @@ msgid ""
"real NULL value, so if you enter "NULL" this means you want a "
"literal NULL in the column, and not a NULL value (this works in PHP4)."
msgstr ""
+"2.2.3 sürümünden bu yana, boş yabılabilen her sütun için işaretleme kutusuna "
+"sahipsiniz. 2.2.3'ten önce, sütunun değeri olarak tırnaksız "
+""null" girmek zorundaydınız. 2.5.5 sürümünden bu yana, gerçek NULL "
+"değeri almak için işaretleme kutusunu kullanmak zorundasınız, bu yüzden "
+"eğer "NULL" girerseniz, bu, sütunda harfi harfine NULL "
+"istiyorsunuz anlamına gelir ve NULL değeri değil (bu PHP4'te çalışır)."
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3898
msgid "<a href=\"#faq6_4\">6.4 How can I backup my database or table?</a>"
msgstr ""
+"<a href=\"#faq6_4\">6.4 Veritabanımı veya tablomu nasıl yedekleyebilirim?</a>"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3900
@@ -10718,6 +10725,11 @@ msgid ""
"\"structured query language\">SQL</abbr> statements that can be used to "
"recreate your database/table."
msgstr ""
+"Sol çerçevedeki veritabanı ve tablo adına tıklayın, özellikleri "
+"görüntülenecektir. Sonra menüde, "Dışa Aktar"a tıklayın, yapıyı, "
+"veriyi ya da her ikisinide dökümleyebilirsiniz. Bu, veritabanınızı/tablonuzu "
+"yeniden oluşturmak için kullanılabilecek standart <abbr title=\"structured "
+"query language\">SQL</abbr> ifadelerini oluşturacaktır."
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3905
@@ -10728,6 +10740,11 @@ msgid ""
"href=\"#cfg_ExecTimeLimit\" class=\"configrule\">$cfg['ExecTimeLimit']</a> "
"configuration variable."
msgstr ""
+""Dosya olarak kaydet"i seçmeniz gerekecek, böylece phpMyAdmin "
+"bilgisayarınıza dökümün sonucunu gönderebilir. PHP yapılandırmanıza bağlı "
+"olarak, dökümü sıkıştırmak için seçenekleri göreceksiniz. Aynı zamanda <a "
+"href=\"#cfg_ExecTimeLimit\" class=\"configrule\">$cfg['ExecTimeLimit']</a> "
+"yapılandırma değişkenine bakın."
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3911
@@ -10735,6 +10752,8 @@ msgid ""
"For additional help on this subject, look for the word "dump" in "
"this document."
msgstr ""
+"Bu konuda ilave yardım için, bu belge içinde "döküm" kelimesini "
+"arayın."
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3915
@@ -10742,6 +10761,9 @@ msgid ""
"<a href=\"#faq6_5\">6.5 How can I restore (upload) my database or table "
"using a dump? How can I run a ".sql" file? </a>"
msgstr ""
+"<a href=\"#faq6_5\">6.5 Döküm kullanarak veritabanımı veya tablomu nasıl geri "
+"yüklerim (gönderirim)? ".sql" dosyasını nasıl "
+"çalıştırabilirim?</a>"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3919
@@ -10753,6 +10775,13 @@ msgid ""
""Location of the text file" section, type in the path to your dump "
"filename, or use the Browse button. Then click Go."
msgstr ""
+"Sol çerçevede veritabanı adına tıklayın, özellikleri görüntülenecektir. "
+"Sağ–taraftaki çerçeveden (veya phpMyAdmin sürümünüz 2.7.0'dan "
+"öncesiyse, "<abbr title=\"structured query "
+"language\">SQL</abbr>"den) sekmeler listesinden "İçe Aktar"ı "
+"seçin. "İçe Aktarmak için Dosya" bölümünde, "Bilgisayarınıza "
+"gözat" kısmında döküm dosya adınızın yolu için Dosya Seçin düğmesini "
+"kullanın. Sonrada Git'e tıklayın."
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3925
@@ -10760,6 +10789,8 @@ msgid ""
"With version 2.7.0, the import engine has been re–written, if possible "
"it is suggested that you upgrade to take advantage of the new features."
msgstr ""
+"2.7.0 sürümü ile içe aktarma motoru yeniden yazıldı, eğer mümkünse yeni "
+"özelliklerin avantajına sahip olmak için yükseltmeniz önerilir."
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3928
@@ -10767,6 +10798,8 @@ msgid ""
"For additional help on this subject, look for the word "upload" in "
"this document."
msgstr ""
+"Bu konuda ilave yardım için, bu belge içinde "gönderme" kelimesini "
+"arayın."
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3933
@@ -10774,6 +10807,8 @@ msgid ""
"<a href=\"#faq6_6\">6.6 How can I use the relation table in Query-by-example?"
"</a>"
msgstr ""
+"<a href=\"#faq6_6\">6.6 Örnekle sorgulamada bağlantı tablosunu nasıl "
+"kullanabilirim?</a>"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3935
@@ -10783,6 +10818,10 @@ msgid ""
"create it as explained in the configuration section. Then create the example "
"tables:"
msgstr ""
+"İşte persons, towns ve countries tabloları ile bir örnek, mydb veritabanında "
+"bulunanların tümü. Eğer <tt>pma_relation</tt> tablosuna sahip değilseniz, "
+"yapılandırma bölümünde açıklandığı gibi oluşturun. Sonrada örnek tabloları "
+"oluşturun:"
#. type: Content of: <html><body><div><pre>
#: orig-docs/Documentation.html:3941
@@ -10847,18 +10886,22 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3970
msgid "To setup appropriate links and display information:"
-msgstr ""
+msgstr "Uygun bağlantıyı kurmak ve bilgiyi görüntülemek için:"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3972
msgid "on table "REL_persons" click Structure, then Relation view"
msgstr ""
+""REL_persons" tablosunda Yapı'ya tıklayın sonra da Bağlantı "
+"görünümüne"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3973
msgid ""
"in Links, for "town_code" choose "REL_towns->code""
msgstr ""
+"Bağlantılarda, "town_code" için "REL_towns->code" "
+"seçin"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3974
@@ -10866,46 +10909,52 @@ msgid ""
"in Links, for "country_code" choose "REL_countries->"
"country_code""
msgstr ""
+"Bağlantılarda, "country_code" için "
+""REL_countries->country_code" seçin"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3975
msgid "on table "REL_towns" click Structure, then Relation view"
msgstr ""
+""REL_towns" tablosunda Yapı'ya tıklayın sonra da Bağlantı "
+"görünümüne"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3976
msgid "in "Choose column to display", choose "description""
msgstr ""
+""Görüntülemek için sütun seçin" içinde, "açıklama"yı "
+"seçin"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3977
msgid "repeat the two previous steps for table "REL_countries""
-msgstr ""
+msgstr ""REL_countries" tablosu için önceki iki adımı tekrarlayın"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3980
msgid "Then test like this:"
-msgstr ""
+msgstr "Sonrada bunun gibi deneyin:"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3982
msgid "Click on your db name in the left frame"
-msgstr ""
+msgstr "Sol çerçevede vt adınıza tıklayın"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3983
msgid "Choose "Query""
-msgstr ""
+msgstr ""Sorgu"yu seçin"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3984
msgid "Use tables: persons, towns, countries"
-msgstr ""
+msgstr "Tabloları kullanın: persons, towns, countries"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3985
msgid "Click "Update query""
-msgstr ""
+msgstr ""Sorguyu güncelle"ye tıklayın"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3986
@@ -10913,6 +10962,8 @@ msgid ""
"In the columns row, choose persons.person_name and click the ""
"Show" tickbox"
msgstr ""
+"Sütun satırında, persons.person_name seçin ve "Göster" işaretleme "
+"kutusuna tıklayın"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3988
@@ -10920,6 +10971,8 @@ msgid ""
"Do the same for towns.description and countries.descriptions in the other 2 "
"columns"
msgstr ""
+"Aynısını diğer 2 sütundaki towns.description ve countries.descriptions için "
+"yapın"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3990
@@ -10927,11 +10980,13 @@ msgid ""
"Click "Update query" and you will see in the query box that the "
"correct joins have been generated"
msgstr ""
+""Sorguyu güncelle"ye tıklayın ve doğru birleştirmelerin "
+"oluşturulduğunu sorgu kutusu içinde göreceksiniz"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3992
msgid "Click "Submit query""
-msgstr ""
+msgstr ""Sorguyu gönder"e tıklayın"
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3996
@@ -10939,6 +10994,8 @@ msgid ""
"<a href=\"#faqdisplay\">6.7 How can I use the "display column" "
"feature?</a>"
msgstr ""
+"<a href=\"#faqdisplay\">6.7 "Sütunu görüntüle" özelliğini nasıl "
+"kullanabilirim?</a>"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3998
@@ -10947,6 +11004,9 @@ msgid ""
"in the configuration section, then browse your persons table, and move the "
"mouse over a town code or country code."
msgstr ""
+"Önceki örnekten başlayarak, yapılandırma bölümünde açıklandığı gibi "
+"pma_table_info oluşturun, sonra persons tablonuza gözatın ve fareyi town "
+"kodu ya da country kodunun üzerine götürün."
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4002
@@ -10955,6 +11015,9 @@ msgid ""
"\">FAQ</abbr> 6.21</a> for an additional feature that "display "
"column" enables: drop-down list of possible values."
msgstr ""
+"Aynı zamanda "sütunu görüntüle"yi etkinleştiren: olası değerlerin "
+"aşağı açılır listesi ilave özelliği için <a href=\"#faq6_21\"><abbr "
+"title=\"Sıkça Sorulan Sorular\">SSS</abbr> 6.21</a>'e bakın."
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:4007
@@ -10962,6 +11025,8 @@ msgid ""
"<a href=\"#faqpdf\">6.8 How can I produce a <abbr title=\"Portable Document "
"Format\">PDF</abbr> schema of my database?</a>"
msgstr ""
+"<a href=\"#faqpdf\">6.8 Veritabanımın <abbr title=\"Portable Document "
+"Format\">PDF</abbr> şemasını nasıl üretebilirim?</a>"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4009
@@ -10969,6 +11034,8 @@ msgid ""
"First the configuration variables "relation", ""
"table_coords" and "pdf_pages" have to be filled in."
msgstr ""
+"Önce "relation", "table_coords" ve "pdf_pages" "
+"yapılandırma değişkenleri doldurulmalı."
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4012
@@ -10976,16 +11043,18 @@ msgid ""
"Then you need to think about your schema layout. Which tables will go on "
"which pages?"
msgstr ""
+"Sonra şema düzeniniz ile ilgili düşünmeniz gerekir. Hangi tablolar hangi "
+"sayfalarda olacak?"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4016
msgid "Select your database in the left frame."
-msgstr ""
+msgstr "Sol çerçeveden veritabanınızı seçin."
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4017
msgid "Choose "Operations" in the navigation bar at the top."
-msgstr ""
+msgstr "En üstte rehber çubuğundan "İşlemler"i seçin."
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4018
@@ -10993,6 +11062,8 @@ msgid ""
"Choose "Edit <abbr title=\"Portable Document Format\">PDF</abbr> "
"Pages" near the bottom of the page."
msgstr ""
+"Sayfanın en altında yanında "<abbr title=\"Portable Document "
+"Format\">PDF</abbr> Sayfaları Düzenle"yi seçin."
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4020
@@ -11001,6 +11072,9 @@ msgid ""
"abbr> page and click Go. If you like, you can use the "automatic layout,"
"" which will put all your linked tables onto the new page."
msgstr ""
+"İlk <abbr title=\"Portable Document Format\">PDF</abbr> sayfası için ad girin "
+"ve Git'e tıklayın. Eğer beğenirseniz, tüm bağlantılı tablolarınızı yeni "
+"sayfaya koyacak olan "otomatik düzen"i kullanabilirsiniz."
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4024
hooks/post-receive
--
phpMyAdmin localized documentation
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_5_0ALPHA1-824-g56699c3
by Michal Čihař 20 Jan '12
by Michal Čihař 20 Jan '12
20 Jan '12
The branch, master has been updated
via 56699c3cc6f93338caf1d5a18a429150fb83fc83 (commit)
via d59ba1e357c8a3b7662df232c342e9137c7fa6c1 (commit)
via 532318b79890f90303d8da2960cea5af4ad015fb (commit)
via 1cede39f0701b55bb307b77f9e94617e042ae6bd (commit)
via b32fe9ddf53fb0d8ef4c9acf10189215726884ab (commit)
via a354c8c9022fc66ca9f35f2abd57c1d9f1d51135 (commit)
via 45d25108f29c6dc0628204f2a7257231ff525e99 (commit)
via 8d68101798ec25c4c7868f8245b20f42c1a96861 (commit)
via 3de3fc10f920af0366aedec3415ec110c09b49c0 (commit)
via 633a95b172cf18770302b530ecd82153f292f83a (commit)
via c15f3528059ff54e7c19f5986decb7eae77a6b2e (commit)
via 8b13c3147afae23b10e5fe0ea0c8fb58067116c5 (commit)
via 0873c34d383f559d9271dda5dd0cdb82b37b39a9 (commit)
via a6e0c3876fe6a1f973967aa4a2c842289fc6202c (commit)
via 4ca57efdc38c21211493e3703b1f7a2e035f4acd (commit)
via 6c36ae317a727cf4990378a731c9187c831ecda3 (commit)
via 5f82078c6b013488c1be2e91cfe816d0f0622258 (commit)
via 6736ccddd1eb7ced0cf1b55e6ad2f9fab61b9e59 (commit)
via 0a75a7a88ae22a8d066eea0e1f401d45731b00c1 (commit)
via dd0b8bdb9e5677f79330bd225403d79965430cfc (commit)
via 018c1fbe74e77c3a34d778c0cf907d7d82bf5d35 (commit)
via d5f6263225b436a9a75ed69d8b07e28e995d223a (commit)
via 5f71fb8811a710887162cd0aa58a935c8d924d3a (commit)
via 452ef1dfc5e7383c7578f9e2dada0f3b4584f117 (commit)
via b48288414552832b8be308e0be1d9a6524b51e53 (commit)
via 7140b31f80cca22e03d9b33c8f6ded59fd2ec728 (commit)
via 750233aefda585d44eb1e0285517ac83f354f444 (commit)
via 4334d3cd0f71f09ab3d3bf723a415edc2f246ff5 (commit)
via b1a40362205c71db3aa540ddf7e91838bc2571d6 (commit)
via ce907d603813ba11c9e0e3dae0c436e0b36d5a56 (commit)
via 05eabcc46d6bc7a0ba625560019c87f372721be7 (commit)
via a8e3146dae572ada1843d202b6f8923484e6ca77 (commit)
via 1b08babaa9b3aed9d8afc23685c26d3bbeaa554b (commit)
via d35962db790e31d0e5f3a713883302cd4f4a6817 (commit)
via 5c238b408a5f4a682f6b0d61009ee2dbd7b8940c (commit)
via 71cddcf8c33e4abf02c54979f6b6cc7b1af6233a (commit)
via c2143cc5b8615b418241caa9c1ceeab26c796bab (commit)
via 43417a8a28440516ea829877d14f4dce5a433956 (commit)
via 861d1e034901d8dbf8b27c86b4f489838bc1c6ea (commit)
via 1b93a1f329d384309af18322ce8f7d786ccb6b58 (commit)
via 097fa7a1f9835dd5430330bfc1c798ea0787ec8f (commit)
via 320400ba08e5a5e790c705780feb1a8c804725e9 (commit)
via 3bb22d98e726da1e41b9032a95e7a7f77e005438 (commit)
via 89e99ab9e058371f185477c941a17150394fe273 (commit)
via 59417035fd6df9de3b9cb3632b05ef2fbcc86452 (commit)
via 965aa427eb063f7dc8b665bda11b54532f4424bb (commit)
via f3505fd59b700290f16bf247e615ca7fb69e7aed (commit)
via 693c867265afbbe139d72d9c76ff51dccd22d0e6 (commit)
via 43d96c415a6236ef5f05e0e1a57e1580ba651804 (commit)
via fe22da0d03f1097d8757b331b5674922bc3f92f5 (commit)
via a2eced7d0594e9fbdc6bc4bfcfe6a073e4425f18 (commit)
via 6788bbd09fcc7c18eac8a715a98e70fc2b5532d0 (commit)
via 798262d261e8a8028645a72a9e0830c00f20011f (commit)
via 98e5053ea79507a06ec02af253853b9b4d4ffe95 (commit)
via 3f67efa4df459d5ad4ebccd7b41fa1148db888d0 (commit)
via fb0570db3bbed9cb4491617acb10a4b8169e8e97 (commit)
via 25f9dbc501e50f2478782ee9d095d958ddd0545f (commit)
via 5fa7059938b926bb8e6743cf48a84656f852d3bd (commit)
via eb7bebbc24e9af4b7b5b996e879080a1517896b4 (commit)
via 44d47235da9f03855ddb426055d55341ba77acf0 (commit)
via 78901454b16c1e3a371b41c4f1f3222b4d5c2397 (commit)
via 59b5a84760e743347b17727028b632c34a6ef018 (commit)
via 0cc1979a6a03baa703963ef8f2c61adfb0ffc60c (commit)
via 11481208774ef3cd6b2019e27066855006a82df9 (commit)
via 9af5b4251145e3956198af99516edf654d52eb6b (commit)
via 7d2edf02a8351220fd2faf801ce98c8d8cda0586 (commit)
via 28af7468ede8a14e7c2e3dcade86c8aaf350df1f (commit)
via 425e87dd419d87b805d659b147958958d69ace69 (commit)
via ad197f59ee13b15cf4c101b9de06c264880ddb20 (commit)
via ff0d9ed11f37266230da4fceb25dbe708dfe0345 (commit)
via 2421d6849cd502be23d7360fcd2b249444af1cb1 (commit)
via 5dfc5039aabdb09f8643f0d54ff6fb4660966ec6 (commit)
via 3b4dd779150ffcb0477a4821ca3381974655b0b0 (commit)
via c1e230738a77fb760db8cb3f233e1bccbf547966 (commit)
via f4584a9df2a819e032913230af09ae76e9243eea (commit)
via 92aad233ef7feeb78999c20c3087a0b2e846784e (commit)
via 82a4aae8a7c9684eee365da2f1f55e73599bba77 (commit)
via f5b0cf3b1497fcec3d95e0f0c124774388caf4c8 (commit)
via 5abbc1a0b948ec09346603a3efe0d68869fa1f41 (commit)
from b5d8be7302f67c1069464fc384069cfc0b7982ea (commit)
- Log -----------------------------------------------------------------
commit 56699c3cc6f93338caf1d5a18a429150fb83fc83
Author: Pootle server <noreply(a)l10n.cihar.com>
Date: Fri Jan 20 06:46:48 2012 +0200
Translation update done using Pootle.
commit d59ba1e357c8a3b7662df232c342e9137c7fa6c1
Author: Domen <dbc334(a)gmail.com>
Date: Thu Jan 19 21:28:41 2012 +0200
Translation update done using Pootle.
commit 532318b79890f90303d8da2960cea5af4ad015fb
Author: Domen <dbc334(a)gmail.com>
Date: Thu Jan 19 21:28:37 2012 +0200
Translation update done using Pootle.
commit 1cede39f0701b55bb307b77f9e94617e042ae6bd
Author: Domen <dbc334(a)gmail.com>
Date: Thu Jan 19 21:28:27 2012 +0200
Translation update done using Pootle.
commit b32fe9ddf53fb0d8ef4c9acf10189215726884ab
Author: Domen <dbc334(a)gmail.com>
Date: Thu Jan 19 21:27:56 2012 +0200
Translation update done using Pootle.
commit a354c8c9022fc66ca9f35f2abd57c1d9f1d51135
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:59:53 2012 +0200
Translation update done using Pootle.
commit 45d25108f29c6dc0628204f2a7257231ff525e99
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:59:38 2012 +0200
Translation update done using Pootle.
commit 8d68101798ec25c4c7868f8245b20f42c1a96861
Author: Marcin Kozioł <lord_dark(a)wp.pl>
Date: Thu Jan 19 17:59:07 2012 +0200
Translation update done using Pootle.
commit 3de3fc10f920af0366aedec3415ec110c09b49c0
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:59:07 2012 +0200
Translation update done using Pootle.
commit 633a95b172cf18770302b530ecd82153f292f83a
Author: Marcin Kozioł <lord_dark(a)wp.pl>
Date: Thu Jan 19 17:58:55 2012 +0200
Translation update done using Pootle.
commit c15f3528059ff54e7c19f5986decb7eae77a6b2e
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:58:55 2012 +0200
Translation update done using Pootle.
commit 8b13c3147afae23b10e5fe0ea0c8fb58067116c5
Author: Marcin Kozioł <lord_dark(a)wp.pl>
Date: Thu Jan 19 17:58:34 2012 +0200
Translation update done using Pootle.
commit 0873c34d383f559d9271dda5dd0cdb82b37b39a9
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:58:20 2012 +0200
Translation update done using Pootle.
commit a6e0c3876fe6a1f973967aa4a2c842289fc6202c
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:58:01 2012 +0200
Translation update done using Pootle.
commit 4ca57efdc38c21211493e3703b1f7a2e035f4acd
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:57:31 2012 +0200
Translation update done using Pootle.
commit 6c36ae317a727cf4990378a731c9187c831ecda3
Author: Marcin Kozioł <lord_dark(a)wp.pl>
Date: Thu Jan 19 17:56:24 2012 +0200
Translation update done using Pootle.
commit 5f82078c6b013488c1be2e91cfe816d0f0622258
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:56:24 2012 +0200
Translation update done using Pootle.
commit 6736ccddd1eb7ced0cf1b55e6ad2f9fab61b9e59
Author: Marcin Kozioł <lord_dark(a)wp.pl>
Date: Thu Jan 19 17:56:15 2012 +0200
Translation update done using Pootle.
commit 0a75a7a88ae22a8d066eea0e1f401d45731b00c1
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:56:14 2012 +0200
Translation update done using Pootle.
commit dd0b8bdb9e5677f79330bd225403d79965430cfc
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:56:03 2012 +0200
Translation update done using Pootle.
commit 018c1fbe74e77c3a34d778c0cf907d7d82bf5d35
Author: Marcin Kozioł <lord_dark(a)wp.pl>
Date: Thu Jan 19 17:55:05 2012 +0200
Translation update done using Pootle.
commit d5f6263225b436a9a75ed69d8b07e28e995d223a
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:55:04 2012 +0200
Translation update done using Pootle.
commit 5f71fb8811a710887162cd0aa58a935c8d924d3a
Author: Marcin Kozioł <lord_dark(a)wp.pl>
Date: Thu Jan 19 17:54:52 2012 +0200
Translation update done using Pootle.
commit 452ef1dfc5e7383c7578f9e2dada0f3b4584f117
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:54:52 2012 +0200
Translation update done using Pootle.
commit b48288414552832b8be308e0be1d9a6524b51e53
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:54:43 2012 +0200
Translation update done using Pootle.
commit 7140b31f80cca22e03d9b33c8f6ded59fd2ec728
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:54:15 2012 +0200
Translation update done using Pootle.
commit 750233aefda585d44eb1e0285517ac83f354f444
Author: Marcin Kozioł <lord_dark(a)wp.pl>
Date: Thu Jan 19 17:53:35 2012 +0200
Translation update done using Pootle.
commit 4334d3cd0f71f09ab3d3bf723a415edc2f246ff5
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:53:35 2012 +0200
Translation update done using Pootle.
commit b1a40362205c71db3aa540ddf7e91838bc2571d6
Author: blizni <blizni(a)konto.pl>
Date: Thu Jan 19 17:53:16 2012 +0200
Translation update done using Pootle.
commit ce907d603813ba11c9e0e3dae0c436e0b36d5a56
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:53:16 2012 +0200
Translation update done using Pootle.
commit 05eabcc46d6bc7a0ba625560019c87f372721be7
Author: Marcin Kozioł <lord_dark(a)wp.pl>
Date: Thu Jan 19 17:53:05 2012 +0200
Translation update done using Pootle.
commit a8e3146dae572ada1843d202b6f8923484e6ca77
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:53:04 2012 +0200
Translation update done using Pootle.
commit 1b08babaa9b3aed9d8afc23685c26d3bbeaa554b
Author: Marcin Kozioł <lord_dark(a)wp.pl>
Date: Thu Jan 19 17:52:32 2012 +0200
Translation update done using Pootle.
commit d35962db790e31d0e5f3a713883302cd4f4a6817
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:52:32 2012 +0200
Translation update done using Pootle.
commit 5c238b408a5f4a682f6b0d61009ee2dbd7b8940c
Author: Marcin Kozioł <lord_dark(a)wp.pl>
Date: Thu Jan 19 17:52:15 2012 +0200
Translation update done using Pootle.
commit 71cddcf8c33e4abf02c54979f6b6cc7b1af6233a
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:51:49 2012 +0200
Translation update done using Pootle.
commit c2143cc5b8615b418241caa9c1ceeab26c796bab
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:48:04 2012 +0200
Translation update done using Pootle.
commit 43417a8a28440516ea829877d14f4dce5a433956
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:47:17 2012 +0200
Translation update done using Pootle.
commit 861d1e034901d8dbf8b27c86b4f489838bc1c6ea
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:44:54 2012 +0200
Translation update done using Pootle.
commit 1b93a1f329d384309af18322ce8f7d786ccb6b58
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:42:10 2012 +0200
Translation update done using Pootle.
commit 097fa7a1f9835dd5430330bfc1c798ea0787ec8f
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:22:33 2012 +0200
Translation update done using Pootle.
commit 320400ba08e5a5e790c705780feb1a8c804725e9
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:20:53 2012 +0200
Translation update done using Pootle.
commit 3bb22d98e726da1e41b9032a95e7a7f77e005438
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:20:33 2012 +0200
Translation update done using Pootle.
commit 89e99ab9e058371f185477c941a17150394fe273
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:19:52 2012 +0200
Translation update done using Pootle.
commit 59417035fd6df9de3b9cb3632b05ef2fbcc86452
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:18:31 2012 +0200
Translation update done using Pootle.
commit 965aa427eb063f7dc8b665bda11b54532f4424bb
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:18:15 2012 +0200
Translation update done using Pootle.
commit f3505fd59b700290f16bf247e615ca7fb69e7aed
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:17:57 2012 +0200
Translation update done using Pootle.
commit 693c867265afbbe139d72d9c76ff51dccd22d0e6
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:17:22 2012 +0200
Translation update done using Pootle.
commit 43d96c415a6236ef5f05e0e1a57e1580ba651804
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:17:06 2012 +0200
Translation update done using Pootle.
commit fe22da0d03f1097d8757b331b5674922bc3f92f5
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:15:46 2012 +0200
Translation update done using Pootle.
commit a2eced7d0594e9fbdc6bc4bfcfe6a073e4425f18
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:14:45 2012 +0200
Translation update done using Pootle.
commit 6788bbd09fcc7c18eac8a715a98e70fc2b5532d0
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:13:53 2012 +0200
Translation update done using Pootle.
commit 798262d261e8a8028645a72a9e0830c00f20011f
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:10:05 2012 +0200
Translation update done using Pootle.
commit 98e5053ea79507a06ec02af253853b9b4d4ffe95
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:06:27 2012 +0200
Translation update done using Pootle.
commit 3f67efa4df459d5ad4ebccd7b41fa1148db888d0
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:05:58 2012 +0200
Translation update done using Pootle.
commit fb0570db3bbed9cb4491617acb10a4b8169e8e97
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:04:53 2012 +0200
Translation update done using Pootle.
commit 25f9dbc501e50f2478782ee9d095d958ddd0545f
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:04:38 2012 +0200
Translation update done using Pootle.
commit 5fa7059938b926bb8e6743cf48a84656f852d3bd
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:04:02 2012 +0200
Translation update done using Pootle.
commit eb7bebbc24e9af4b7b5b996e879080a1517896b4
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:03:52 2012 +0200
Translation update done using Pootle.
commit 44d47235da9f03855ddb426055d55341ba77acf0
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:03:34 2012 +0200
Translation update done using Pootle.
commit 78901454b16c1e3a371b41c4f1f3222b4d5c2397
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:02:27 2012 +0200
Translation update done using Pootle.
commit 59b5a84760e743347b17727028b632c34a6ef018
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:02:08 2012 +0200
Translation update done using Pootle.
commit 0cc1979a6a03baa703963ef8f2c61adfb0ffc60c
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:01:41 2012 +0200
Translation update done using Pootle.
commit 11481208774ef3cd6b2019e27066855006a82df9
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 17:01:14 2012 +0200
Translation update done using Pootle.
commit 9af5b4251145e3956198af99516edf654d52eb6b
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:59:58 2012 +0200
Translation update done using Pootle.
commit 7d2edf02a8351220fd2faf801ce98c8d8cda0586
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Jan 19 16:59:29 2012 +0200
Translation update done using Pootle.
commit 28af7468ede8a14e7c2e3dcade86c8aaf350df1f
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:59:24 2012 +0200
Translation update done using Pootle.
commit 425e87dd419d87b805d659b147958958d69ace69
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:59:13 2012 +0200
Translation update done using Pootle.
commit ad197f59ee13b15cf4c101b9de06c264880ddb20
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:58:54 2012 +0200
Translation update done using Pootle.
commit ff0d9ed11f37266230da4fceb25dbe708dfe0345
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:57:43 2012 +0200
Translation update done using Pootle.
commit 2421d6849cd502be23d7360fcd2b249444af1cb1
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:55:40 2012 +0200
Translation update done using Pootle.
commit 5dfc5039aabdb09f8643f0d54ff6fb4660966ec6
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:54:45 2012 +0200
Translation update done using Pootle.
commit 3b4dd779150ffcb0477a4821ca3381974655b0b0
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:50:07 2012 +0200
Translation update done using Pootle.
commit c1e230738a77fb760db8cb3f233e1bccbf547966
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:47:36 2012 +0200
Translation update done using Pootle.
commit f4584a9df2a819e032913230af09ae76e9243eea
Author: Stanisław Krukowski <stankruk(a)neostrada.pl>
Date: Thu Jan 19 16:44:22 2012 +0200
Translation update done using Pootle.
commit 92aad233ef7feeb78999c20c3087a0b2e846784e
Author: LovEZaCluB <admin(a)lzc-cyberpg.net>
Date: Thu Jan 19 15:55:39 2012 +0200
Translation update done using Pootle.
commit 82a4aae8a7c9684eee365da2f1f55e73599bba77
Author: LovEZaCluB <admin(a)lzc-cyberpg.net>
Date: Thu Jan 19 15:50:52 2012 +0200
Translation update done using Pootle.
commit f5b0cf3b1497fcec3d95e0f0c124774388caf4c8
Author: LovEZaCluB <admin(a)lzc-cyberpg.net>
Date: Thu Jan 19 15:42:58 2012 +0200
Translation update done using Pootle.
commit 5abbc1a0b948ec09346603a3efe0d68869fa1f41
Author: LovEZaCluB <admin(a)lzc-cyberpg.net>
Date: Thu Jan 19 15:40:45 2012 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/pl.po | 138 ++++++++++++++++++++++++++++++++------------------------------
po/sl.po | 23 +++++-----
po/th.po | 25 ++++-------
po/tr.po | 2 +-
4 files changed, 92 insertions(+), 96 deletions(-)
diff --git a/po/pl.po b/po/pl.po
index 77d64c4..1a81dd9 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-beta1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2012-01-15 06:23-0500\n"
-"PO-Revision-Date: 2012-01-18 19:33+0200\n"
+"PO-Revision-Date: 2012-01-19 17:59+0200\n"
"Last-Translator: Stanisław Krukowski <stankruk(a)neostrada.pl>\n"
"Language-Team: polish <pl(a)li.org>\n"
"Language: pl\n"
@@ -34,9 +34,9 @@ msgid ""
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
msgstr ""
-"Docelowe okno przeglądarki nie może być zaktualizowane. Być może okno-rodzic "
+"Nie można zaktualizować docelowego okna przeglądarki. Być może okno-rodzic "
"zostało zamknięte, lub ustawienia zabezpieczeń przeglądarki są "
-"skonfigurowane do blokowania aktualizacji między oknami."
+"skonfigurowane na blokowanie aktualizacji między oknami."
#: browse_foreigners.php:160 libraries/common.lib.php:3126
#: libraries/common.lib.php:3133 libraries/common.lib.php:3342
@@ -399,14 +399,14 @@ msgstr "Ostatnia aktualizacja"
#: libraries/schema/Pdf_Relation_Schema.class.php:1294 tbl_printview.php:413
#: tbl_structure.php:930
msgid "Last check"
-msgstr "Ostatnie sprawdzenie"
+msgstr "Ostatnie sprawdzanie"
#: db_printview.php:219 db_structure.php:514
#, php-format
msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "%s tabel"
-msgstr[1] "%s tabel(a)"
+msgstr[1] "%s tabel"
msgstr[2] "%s tabel"
#: db_qbe.php:41
@@ -1047,7 +1047,7 @@ msgid ""
"file and import will resume."
msgstr ""
"Limit czasu wykonania skryptu minął. Aby ukończyć import, proszę ponownie "
-"przesłać ten sam plik."
+"przesłać ten sam plik, a import zostanie wznowiony."
#: import.php:444
msgid ""
@@ -1078,7 +1078,7 @@ msgstr ""
#: js/messages.php:27 libraries/import.lib.php:103 sql.php:249
msgid "\"DROP DATABASE\" statements are disabled."
-msgstr "Polecenia \"DROP DATABASE\" są wyłaczone."
+msgstr "Instrukcje \"DROP DATABASE\" są wyłączone."
#: js/messages.php:30 libraries/mult_submits.inc.php:280 sql.php:350
msgid "Do you really want to "
@@ -1459,7 +1459,7 @@ msgstr "Żaden"
#: js/messages.php:144
msgid "Resume monitor"
-msgstr "Wyłącz monitor"
+msgstr "Wznów monitor"
#: js/messages.php:145
msgid "Pause monitor"
@@ -1496,102 +1496,104 @@ msgid ""
"than %d seconds. It is advisable to set this long_query_time 0-2 seconds, "
"depending on your system."
msgstr ""
+"slow_query_log jest włączony, ale serwer zapisuje do dziennika tylko takie "
+"zapytania, które trwają dłużej niż %d sekund. Zaleca się ustawić "
+"long_query_time na 0-2 sekundy, w zależności od systemu."
#: js/messages.php:154
-#, php-format
+#, fuzzy, php-format
msgid "long_query_time is set to %d second(s)."
-msgstr ""
+msgstr "long_query_time jest ustawiony na %d sekundy."
#: js/messages.php:155
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
+"Następujace ustawienia będą zastosowane globalnie, i zresetują się do "
+"ustawień domyślnych po restarcie serwera:"
#. l10n: %s is FILE or TABLE
#: js/messages.php:157
-#, fuzzy, php-format
+#, php-format
#| msgid "Save output to a file"
msgid "Set log_output to %s"
-msgstr "Zapisz wynik do pliku"
+msgstr "Ustaw log_output do %s"
#. l10n: Enable in this context means setting a status variable to ON
#: js/messages.php:159
-#, fuzzy, php-format
+#, php-format
#| msgid "Enabled"
msgid "Enable %s"
-msgstr "Włączone"
+msgstr "Włączone %s"
#. l10n: Disable in this context means setting a status variable to OFF
#: js/messages.php:161
-#, fuzzy, php-format
+#, php-format
#| msgid "Disabled"
msgid "Disable %s"
-msgstr "Wyłączone"
+msgstr "Wyłączone %s"
#. l10n: %d seconds
#: js/messages.php:163
#, php-format
msgid "Set long_query_time to %ds"
-msgstr ""
+msgstr "Ustaw long_query_time do %ds"
#: js/messages.php:164
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
+"Nie można zmienić tych zmiennych. Proszę zalogować się jako root lub "
+"skontaktować się z administratorem bazy danych."
#: js/messages.php:165
-#, fuzzy
#| msgid "Manage your settings"
msgid "Change settings"
-msgstr "Zarządzaj ustawieniami"
+msgstr "Zmiana ustawień"
#: js/messages.php:166
-#, fuzzy
#| msgid "More settings"
msgid "Current settings"
-msgstr "Więcej ustawień"
+msgstr "Ustawienia bieżące"
#: js/messages.php:168 server_status.php:1640
-#, fuzzy
#| msgid "Title"
msgid "Chart Title"
-msgstr "Tytuł"
+msgstr "Tytuł wykresu"
#. l10n: As in differential values
#: js/messages.php:170
-#, fuzzy
#| msgid "Difference"
msgid "Differential"
-msgstr "Różnica"
+msgstr "Zróżnicowany"
#: js/messages.php:171
#, php-format
msgid "Divided by %s"
-msgstr ""
+msgstr "Podzielony przez %s"
#: js/messages.php:172
msgid "Unit"
-msgstr ""
+msgstr "Jednostka"
#: js/messages.php:174
msgid "From slow log"
-msgstr ""
+msgstr "Z dziennika powolnego"
#: js/messages.php:175
msgid "From general log"
-msgstr ""
+msgstr "Z dziennika ogólnego"
#: js/messages.php:176
msgid "Analysing & loading logs. This may take a while."
-msgstr ""
+msgstr "Analiza & wczytywanie dzienników. To może trochę potrwać ..."
#: js/messages.php:177
-#, fuzzy
#| msgid "Read requests"
msgid "Cancel request"
-msgstr "Żądania odczytu"
+msgstr "Anuluj żądanie"
#: js/messages.php:178
msgid ""
@@ -1599,6 +1601,9 @@ msgid ""
"However only the SQL query itself has been used as a grouping criteria, so "
"the other attributes of queries, such as start time, may differ."
msgstr ""
+"Ta kolumna pokazuje ilość identycznych zapytań, pogrupowanych razem. "
+"Jednakże, jako kryterium grupowania, zostało użyte tylko same zapytanie SQL, "
+"a wiec inne atrybuty zapytań, takie jak czas startu, mogą się różnić."
#: js/messages.php:179
msgid ""
@@ -1606,32 +1611,34 @@ msgid ""
"same table are also being grouped together, disregarding of the inserted "
"data."
msgstr ""
+"Ponieważ zostało zaznaczone grupowanie zapytań INSERT, zapytania INSERT do "
+"tej samej tabeli są także pogrupowane razem, niezależnie od wstawionych "
+"danych."
#: js/messages.php:180
msgid "Log data loaded. Queries executed in this time span:"
-msgstr ""
+msgstr "Wczytano dane dziennika. Zapytania wykonane w tym odcinku czasu:"
#: js/messages.php:182
-#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
-msgstr "Przejdź do bazy danych"
+msgstr "Przejdź do dziennika tabeli"
#: js/messages.php:183
msgid "Log analysed, but no data found in this time span."
msgstr ""
+"Dziennik przeanalizowany, lecz nie znaleziono żadnych danych w tym odcinku "
+"czasu."
#: js/messages.php:185
-#, fuzzy
#| msgid "Analyze"
msgid "Analyzing..."
-msgstr "Analizuj"
+msgstr "Analizowanie ..."
#: js/messages.php:186
-#, fuzzy
#| msgid "Explain SQL"
msgid "Explain output"
-msgstr "Wyjaśnij SQL"
+msgstr "Wyjaśnij wynik przetworzenia danych"
#: js/messages.php:188 js/messages.php:494 libraries/rte/rte_list.lib.php:62
#: libraries/rte/rte_triggers.lib.php:326 server_status.php:1236 sql.php:897
@@ -1639,16 +1646,14 @@ msgid "Time"
msgstr "Czas"
#: js/messages.php:189
-#, fuzzy
#| msgid "Total"
msgid "Total time:"
-msgstr "Ilość"
+msgstr "Czas ogółem:"
#: js/messages.php:190
-#, fuzzy
#| msgid "Profiling"
msgid "Profiling results"
-msgstr "Profilowanie"
+msgstr "Wyniki profilowania"
#: js/messages.php:191
#, fuzzy
@@ -1658,17 +1663,15 @@ msgid "Table"
msgstr "Tabela"
#: js/messages.php:192
-#, fuzzy
#| msgid "Charts"
msgid "Chart"
-msgstr "Wykresy"
+msgstr "Wykres"
#. l10n: A collection of available filters
#: js/messages.php:195
-#, fuzzy
#| msgid "Tables display options"
msgid "Log table filter options"
-msgstr "Opcje wyświetlania tabel"
+msgstr "Opcje filtru dziennika tabeli"
#. l10n: Filter as in "Start Filtering"
#: js/messages.php:197
@@ -1677,7 +1680,7 @@ msgstr "Filtr"
#: js/messages.php:198
msgid "Filter queries by word/regexp:"
-msgstr ""
+msgstr "Filtr zapytań porzez wyraz / wyrażenie regularne:"
#: js/messages.php:199
msgid "Group queries, ignoring variable data in WHERE clauses"
@@ -1908,7 +1911,7 @@ msgstr "Pokaż okno zapytań"
#: js/messages.php:279 tbl_row_action.php:28
msgid "No rows selected"
-msgstr "Nie wybrano wierszy"
+msgstr "Nie żadnych wybrano rekordów"
#: js/messages.php:280 libraries/common.lib.php:2743
#: libraries/display_tbl.lib.php:2506 querywindow.php:87 tbl_structure.php:149
@@ -2561,9 +2564,9 @@ msgstr[2] "Usuniętych rekordów: %1$d."
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
-msgstr[0] "Wstawiony wiersz: %1$d."
-msgstr[1] "Wstawione wiersze: %1$d."
-msgstr[2] "Wstawionych wierszy: %1$d."
+msgstr[0] "Wstawionych rekordów: %1$d."
+msgstr[1] "Wstawionych rekordów: %1$d."
+msgstr[2] "Wstawionych rekordów: %1$d."
#: libraries/PDF.class.php:81
msgid "Error while creating PDF:"
@@ -3297,7 +3300,7 @@ msgstr "Brakuje danych dla %s"
#: libraries/config/FormDisplay.class.php:708
#: libraries/config/FormDisplay.class.php:712
msgid "unavailable"
-msgstr "niedostepny"
+msgstr "niedostępne"
#: libraries/config/FormDisplay.class.php:709
#: libraries/config/FormDisplay.class.php:713
@@ -3321,7 +3324,7 @@ msgstr "Walidator SQL jest wyłączony"
#: libraries/config/FormDisplay.class.php:745
msgid "SOAP extension not found"
-msgstr "Rozszerzenie SOAP nie jest zainstalowane"
+msgstr "Nie znaleziono rozszerzenia SOAP"
#: libraries/config/FormDisplay.class.php:753
#, php-format
@@ -3373,7 +3376,7 @@ msgstr ""
#: libraries/config/messages.inc.php:20
msgid "Allow login to any MySQL server"
-msgstr "Pozwól logować się na dowolny serwera MySQL"
+msgstr "Pozwól logować się do dowolnego serwera MySQL"
#: libraries/config/messages.inc.php:21
msgid ""
@@ -3407,7 +3410,7 @@ msgstr "Sekret Blowfish"
#: libraries/config/messages.inc.php:26
msgid "Highlight selected rows"
-msgstr "Podświetl zaznaczone wiersze"
+msgstr "Podświetl zaznaczone rekordy"
#: libraries/config/messages.inc.php:27
msgid "Row marker"
@@ -3415,7 +3418,7 @@ msgstr "Oznaczanie wiersza"
#: libraries/config/messages.inc.php:28
msgid "Highlight row pointed by the mouse cursor"
-msgstr "Podświetla wiersz, na który wskazuje kursor myszy"
+msgstr "Podświetla rekord, na który wskazuje kursor myszy"
#: libraries/config/messages.inc.php:29
msgid "Highlight pointer"
@@ -3897,7 +3900,7 @@ msgstr "Ogólne"
#: libraries/config/messages.inc.php:171
msgid "Set some commonly used options"
-msgstr "Ustaw niektóre często używane opcje"
+msgstr "Ustaw niektóre zwykle używane opcje"
#: libraries/config/messages.inc.php:173
msgid "Import defaults"
@@ -3966,7 +3969,7 @@ msgstr "Inne ustawienia"
#: libraries/config/messages.inc.php:194
msgid "Page titles"
-msgstr "Tytuł strony"
+msgstr "Tytuły strony"
#: libraries/config/messages.inc.php:195
msgid ""
@@ -4122,7 +4125,7 @@ msgstr "Wybierz sposób działania zakładek"
#: libraries/config/messages.inc.php:228
msgid "Text fields"
-msgstr "Pole tekstowe"
+msgstr "Pola tekstowe"
#: libraries/config/messages.inc.php:229
msgid "Customize text input fields"
@@ -4708,7 +4711,7 @@ msgstr "Pozwól na logowanie się roota"
#: libraries/config/messages.inc.php:368
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
-msgstr "Nazwa \"Auth Realm\" wyświetlana przy autoryzacji HTTP Basic"
+msgstr "Nazwa Auth Realm wyświetlana podczas uwierzytelnienia HTTP Basic"
#: libraries/config/messages.inc.php:369
msgid "HTTP Realm"
@@ -5802,7 +5805,7 @@ msgstr "Nie udało się załadować modułów eksportu, proszę sprawdzić insta
#: libraries/display_export.lib.php:82
msgid "Exporting databases from the current server"
-msgstr "Eksport bazy danych z bieżącego serwera"
+msgstr "Eksportowanie baz danych z bieżącego serwera"
#: libraries/display_export.lib.php:84
#, php-format
@@ -5816,7 +5819,7 @@ msgstr "Eksport wierszy z tabeli \"%s\""
#: libraries/display_export.lib.php:92
msgid "Export Method:"
-msgstr "Sposób eksportu:"
+msgstr "Metoda eksportu:"
#: libraries/display_export.lib.php:108
msgid "Quick - display only the minimal options"
@@ -5824,7 +5827,7 @@ msgstr "Szybko - wyświetlane są tylko minimalne opcje"
#: libraries/display_export.lib.php:124
msgid "Custom - display all possible options"
-msgstr "Własna - wyświetli wszystkie możliwe opcje"
+msgstr "Własne - wyświetli wszystkie możliwe opcje"
#: libraries/display_export.lib.php:132
msgid "Database(s):"
@@ -5983,7 +5986,7 @@ msgstr "Import do tabeli \"%s\""
#: libraries/display_import.lib.php:139
msgid "File to Import:"
-msgstr "Import z pliku:"
+msgstr "Plik do importu:"
#: libraries/display_import.lib.php:156
#, php-format
@@ -6004,7 +6007,7 @@ msgstr "Serwer nie pozwala na przesyłanie plików."
#: libraries/display_import.lib.php:208
msgid "Partial Import:"
-msgstr "Częściowy Import:"
+msgstr "Częściowy import:"
#: libraries/display_import.lib.php:214
#, php-format
@@ -13436,8 +13439,9 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:273
+#, fuzzy
msgid "concurrent_insert is set to 0"
-msgstr ""
+msgstr "concurrent_insert jest ustawiony na 0"
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
diff --git a/po/sl.po b/po/sl.po
index 30bb38a..d2d4659 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-beta1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2012-01-15 06:23-0500\n"
-"PO-Revision-Date: 2012-01-13 11:45+0200\n"
+"PO-Revision-Date: 2012-01-19 21:28+0200\n"
"Last-Translator: Domen <dbc334(a)gmail.com>\n"
"Language-Team: slovenian <sl(a)li.org>\n"
+"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sl\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
-"%100==4 ? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
+"n%100==4 ? 2 : 3);\n"
"X-Generator: Pootle 2.1.6\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
@@ -5951,10 +5951,9 @@ msgid "Show BLOB contents"
msgstr "Prikaži vsebine BLOB"
#: libraries/display_tbl.lib.php:686
-#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
-msgstr "Pretvorba z brskalnikom"
+msgstr "Skrij pretvorbo z brskalnikom"
#: libraries/display_tbl.lib.php:693
msgid "Well Known Text"
@@ -6820,10 +6819,10 @@ msgid "Edit structure by following the \"Structure\" link"
msgstr "Uredite strukturo s sledenjem povezavi \"Struktura\""
#: libraries/import.lib.php:1106
-#, fuzzy, php-format
+#, php-format
#| msgid "Go to database"
msgid "Go to database: %s"
-msgstr "Pojdi v zbirko podatkov"
+msgstr "Pojdi v zbirko podatkov: %s"
#: libraries/import.lib.php:1109 libraries/import.lib.php:1132
#, php-format
@@ -6831,10 +6830,10 @@ msgid "Edit settings for %s"
msgstr "Uredi nastavitve za %s"
#: libraries/import.lib.php:1127
-#, fuzzy, php-format
+#, php-format
#| msgid "Go to table"
msgid "Go to table: %s"
-msgstr "Pojdi v tabelo"
+msgstr "Pojdi na tabelo: %s"
#: libraries/import.lib.php:1130
#, php-format
@@ -6842,10 +6841,10 @@ msgid "Structure of %s"
msgstr "Struktura %s"
#: libraries/import.lib.php:1136
-#, fuzzy, php-format
+#, php-format
#| msgid "Go to view"
msgid "Go to view: %s"
-msgstr "Pojdi na pogled"
+msgstr "Pojdi na pogled: %s"
#: libraries/import/csv.php:38 libraries/import/ods.php:33
msgid ""
diff --git a/po/th.po b/po/th.po
index 3530a75..d88e5ed 100644
--- a/po/th.po
+++ b/po/th.po
@@ -4,13 +4,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-beta1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2012-01-15 06:23-0500\n"
-"PO-Revision-Date: 2012-01-14 16:04+0200\n"
-"Last-Translator: kanitchet <kanichet(a)hotmail.com>\n"
+"PO-Revision-Date: 2012-01-20 06:43+0200\n"
+"Last-Translator: LovEZaCluB <admin(a)lzc-cyberpg.net>\n"
"Language-Team: thai <th(a)li.org>\n"
+"Language: th\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: th\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.1.6\n"
@@ -236,6 +236,7 @@ msgstr "ไม่"
#: server_privileges.php:2067 server_privileges.php:2373 sql.php:355
#: tbl_printview.php:190 tbl_structure.php:41 tbl_structure.php:349
#: tbl_tracking.php:281 tbl_tracking.php:334 tbl_tracking.php:339
+#, fuzzy
msgid "Yes"
msgstr "ใช่"
@@ -464,7 +465,6 @@ msgid "Modify"
msgstr "แก้ไข"
#: db_qbe.php:606
-#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "เพิ่ม/ลบ แถว"
@@ -519,12 +519,11 @@ msgid "Search results for \"<i>%s</i>\" %s:"
msgstr "ผลการค้นหา \"<i>%s</i>\" %s:"
#: db_search.php:227
-#, fuzzy, php-format
+#, php-format
#| msgid "%s match(es) inside table <i>%s</i>"
msgid "%s match inside table <i>%s</i>"
msgid_plural "%s matches inside table <i>%s</i>"
msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตาราง <i>%s</i>"
-msgstr[1] "พบ %s ผลลัพธ์ที่ตรงในตาราง <i>%s</i>"
#: db_search.php:234 libraries/common.lib.php:3128
#: libraries/common.lib.php:3340 libraries/common.lib.php:3341
@@ -561,7 +560,6 @@ msgid "Search in database"
msgstr "ค้นหาในฐานข้อมูล"
#: db_search.php:277
-#, fuzzy
#| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgid "Words or values to search for (wildcard: \"%\"):"
msgstr "คำ หรือ ค่าที่ต้องการค้นหา (wildcard: \"%\"):"
@@ -583,10 +581,9 @@ msgid "Inside column:"
msgstr "ในคอลัมน์:"
#: db_structure.php:68
-#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
-msgstr "ไม่พบตารางใด ๆ ในฐานข้อมูล"
+msgstr "ไม่พบตารางใดๆ ในฐานข้อมูล"
#: db_structure.php:315 tbl_operations.php:692
#, php-format
@@ -707,10 +704,9 @@ msgstr "วิเคราะห์ตาราง"
#: db_structure.php:601
msgid "Add prefix to table"
-msgstr ""
+msgstr "เพิ่มคำนำไปยังตาราง"
#: db_structure.php:603 libraries/mult_submits.inc.php:251
-#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "เขียนทับด้วยข้อมูลจากไฟล์"
@@ -747,7 +743,6 @@ msgid "Last version"
msgstr "เวอร์ชั่นล่าสุด"
#: db_tracking.php:88 tbl_tracking.php:651
-#, fuzzy
msgid "Created"
msgstr "สร้าง"
@@ -817,7 +812,7 @@ msgid "Values for a new column"
msgstr "ค่าสำหรับคอลัมน์ใหม่"
#: enum_editor.php:30 js/messages.php:267
-#, fuzzy, php-format
+#, php-format
#| msgid "Values for the column \"%s\""
msgid "Values for column %s"
msgstr "ค่าสำหรับคอลัมน์ \"%s\""
@@ -829,14 +824,12 @@ msgid "Enter each value in a separate field"
msgstr "ป้อนค่าในช่องต่างๆ"
#: enum_editor.php:123
-#, fuzzy
msgid "Add a value"
msgstr "เพิ่มค่า"
#: enum_editor.php:129 gis_data_editor.php:317
-#, fuzzy
msgid "Output"
-msgstr "เอาท์พุท"
+msgstr "ส่งออก"
#: enum_editor.php:130
#, fuzzy
diff --git a/po/tr.po b/po/tr.po
index e32a810..83a12fa 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -5872,7 +5872,7 @@ msgstr "İlk satırdan başlayarak atlanacak satır sayısı:"
#: libraries/display_import.lib.php:250
msgid "Format-Specific Options:"
-msgstr "Biçim-Belirli Seçenekler:"
+msgstr "Biçim-Belli Seçenekler:"
#: libraries/display_select_lang.lib.php:46
#: libraries/display_select_lang.lib.php:47 setup/frames/index.inc.php:72
hooks/post-receive
--
phpMyAdmin
1
0