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
March 2011
- 6 participants
- 171 discussions

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA4-318-gda0fc40
by Madhura Jayaratne 15 Mar '11
by Madhura Jayaratne 15 Mar '11
15 Mar '11
The branch, master has been updated
via da0fc40022e97fd13a2ea154ece2438f8de9470b (commit)
from 326f13827b1779c310a93beb6ffc95404fbe1ff5 (commit)
- Log -----------------------------------------------------------------
commit da0fc40022e97fd13a2ea154ece2438f8de9470b
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue Mar 15 20:57:47 2011 +0530
A better way to handle clashing between row highlighting and inline edit.
-----------------------------------------------------------------------
Summary of changes:
js/functions.js | 2 +-
js/sql.js | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/js/functions.js b/js/functions.js
index 3068c3e..94221b1 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -594,7 +594,7 @@ $(document).ready(function() {
*/
$('tr.odd:not(.noclick), tr.even:not(.noclick)').live('click',function(e) {
//do not trigger when clicked on anchor or inside input element (in inline editing mode) with exception of the first checkbox
- if ($(e.target).is('a, a *') || $(e.target).parents('tr').find('td:nth(2)').hasClass('inline_edit_active')) {
+ if ($(e.target).is('a, a *')) {
return;
}
// XXX: FF fires two click events for <label> (label and checkbox), so we need to handle this differently
diff --git a/js/sql.js b/js/sql.js
index 1c46c05..1a389ae 100644
--- a/js/sql.js
+++ b/js/sql.js
@@ -416,7 +416,7 @@ $(document).ready(function() {
$(".inline_edit_anchor").live('click', function(event) {
/** @lends jQuery */
event.preventDefault();
- $(this).removeClass('inline_edit_anchor').addClass('inline_edit_active');
+ $(this).removeClass('inline_edit_anchor').addClass('inline_edit_active').parent('tr').addClass('noclick');
// adding submit and hide buttons to inline edit <td>
// for "hide", button the original data to be restored is present in .original_data
@@ -442,7 +442,7 @@ $(document).ready(function() {
var $this_hide = $(this).parent();
$this_hide.removeClass("inline_edit_active hover").addClass("inline_edit_anchor");
- $this_hide.parent().removeClass("hover");
+ $this_hide.parent().removeClass("hover noclick");
$this_hide.siblings().removeClass("hover");
var last_column = $this_hide.siblings().length;
@@ -898,7 +898,7 @@ $(document).ready(function() {
PMA_ajaxShowMessage(data.message);
$this_td.removeClass('inline_edit_active hover').addClass('inline_edit_anchor');
- $this_td.parent().removeClass('hover')
+ $this_td.parent().removeClass('hover noclick');
$this_td.siblings().removeClass('hover');
$input_siblings.each(function() {
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA4-317-g326f138
by Madhura Jayaratne 15 Mar '11
by Madhura Jayaratne 15 Mar '11
15 Mar '11
The branch, master has been updated
via 326f13827b1779c310a93beb6ffc95404fbe1ff5 (commit)
from fd7fb4875f8b7c0e78f14ccc6e46f54e753488cf (commit)
- Log -----------------------------------------------------------------
commit 326f13827b1779c310a93beb6ffc95404fbe1ff5
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue Mar 15 20:35:53 2011 +0530
Do not highlight rows of these tables
-----------------------------------------------------------------------
Summary of changes:
db_search.php | 2 +-
db_tracking.php | 4 ++--
libraries/tbl_triggers.lib.php | 2 +-
server_binlog.php | 2 +-
server_engines.php | 6 +++---
server_processlist.php | 2 +-
server_status.php | 20 ++++++++++----------
server_variables.php | 2 +-
tbl_change.php | 2 +-
tbl_select.php | 2 +-
tbl_tracking.php | 10 +++++-----
11 files changed, 27 insertions(+), 27 deletions(-)
diff --git a/db_search.php b/db_search.php
index c401a4f..fba68d1 100644
--- a/db_search.php
+++ b/db_search.php
@@ -243,7 +243,7 @@ if (isset($_REQUEST['submit_search'])) {
$sql_query .= $newsearchsqls['select_count'];
- echo '<tr class="' . ($odd_row ? 'odd' : 'even') . '">'
+ echo '<tr class="noclick ' . ($odd_row ? 'odd' : 'even') . '">'
.'<td>' . sprintf(_ngettext('%s match inside table <i>%s</i>', '%s matches inside table <i>%s</i>', $res_cnt), $res_cnt,
htmlspecialchars($each_table)) . "</td>\n";
diff --git a/db_tracking.php b/db_tracking.php
index dbd5c5f..c0421d6 100644
--- a/db_tracking.php
+++ b/db_tracking.php
@@ -123,7 +123,7 @@ if (PMA_DBI_num_rows($all_tables_result) > 0) {
$tmp_link = 'tbl_tracking.php?' . $url_query . '&table=' . htmlspecialchars($version_data['table_name']);
$delete_link = 'db_tracking.php?' . $url_query . '&table=' . htmlspecialchars($version_data['table_name']) . '&delete_tracking=true&';
?>
- <tr class="<?php echo $style;?>">
+ <tr class="noclick <?php echo $style;?>">
<td><?php echo htmlspecialchars($version_data['db_name']);?></td>
<td><?php echo htmlspecialchars($version_data['table_name']);?></td>
<td><?php echo $version_data['version'];?></td>
@@ -202,7 +202,7 @@ if (isset($my_tables)) {
}
$my_link .= __('Track table') . '</a>';
?>
- <tr class="<?php echo $style;?>">
+ <tr class="noclick <?php echo $style;?>">
<td><?php echo htmlspecialchars($tablename);?></td>
<td><?php echo $my_link;?></td>
</tr>
diff --git a/libraries/tbl_triggers.lib.php b/libraries/tbl_triggers.lib.php
index 15f07b2..0663ef4 100644
--- a/libraries/tbl_triggers.lib.php
+++ b/libraries/tbl_triggers.lib.php
@@ -37,7 +37,7 @@ if ($triggers) {
foreach ($triggers as $trigger) {
$drop_and_create = $trigger['drop'] . $delimiter . "\n" . $trigger['create'] . "\n";
- echo sprintf('<tr class="%s">
+ echo sprintf('<tr class="noclick %s">
<td><strong>%s</strong></td>
<td>%s</td>
<td>%s</td>
diff --git a/server_binlog.php b/server_binlog.php
index df41b97..b491565 100644
--- a/server_binlog.php
+++ b/server_binlog.php
@@ -212,7 +212,7 @@ while ($value = PMA_DBI_fetch_assoc($result)) {
$value['Info'] = PMA_substr($value['Info'], 0, $GLOBALS['cfg']['LimitChars']) . '...';
}
?>
-<tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
+<tr class="noclick <?php echo $odd_row ? 'odd' : 'even'; ?>">
<td> <?php echo $value['Log_name']; ?> </td>
<td align="right"> <?php echo $value['Pos']; ?> </td>
<td> <?php echo $value['Event_type']; ?> </td>
diff --git a/server_engines.php b/server_engines.php
index 7bdccc8..4eb5312 100644
--- a/server_engines.php
+++ b/server_engines.php
@@ -65,7 +65,7 @@ if (empty($_REQUEST['engine'])
*/
$odd_row = true;
foreach (PMA_StorageEngine::getStorageEngines() as $engine => $details) {
- echo '<tr class="'
+ echo '<tr class="noclick '
. ($odd_row ? 'odd' : 'even')
. ($details['Support'] == 'NO' || $details['Support'] == 'DISABLED'
? ' disabled'
@@ -83,7 +83,7 @@ if (empty($_REQUEST['engine'])
$PMA_Config = $GLOBALS['PMA_Config'];
if ($PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST')) {
// Special case for PBMS daemon which is not listed as an engine
- echo '<tr class="'
+ echo '<tr class="noclick '
. ($odd_row ? 'odd' : 'even')
. '">' . "\n"
. ' <td><a href="./server_engines.php'
@@ -91,7 +91,7 @@ if (empty($_REQUEST['engine'])
. ' ' . "PBMS\n"
. ' </a></td>' . "\n"
. ' <td>' . htmlspecialchars("PrimeBase MediaStream (PBMS) daemon") . '</td>' . "\n"
- . '</tr>' . "\n";
+ . '</tr>' . "\n";
}
unset($odd_row, $engine, $details);
diff --git a/server_processlist.php b/server_processlist.php
index 1e31021..ea31a76 100644
--- a/server_processlist.php
+++ b/server_processlist.php
@@ -74,7 +74,7 @@ while($process = PMA_DBI_fetch_assoc($result)) {
$url_params['kill'] = $process['Id'];
$kill_process = 'server_processlist.php' . PMA_generate_common_url($url_params);
?>
-<tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
+<tr class="noclick <?php echo $odd_row ? 'odd' : 'even'; ?>">
<td><a href="<?php echo $kill_process ; ?>"><?php echo __('Kill'); ?></a></td>
<td class="value"><?php echo $process['Id']; ?></td>
<td><?php echo $process['User']; ?></td>
diff --git a/server_status.php b/server_status.php
index ca81691..c67c63a 100644
--- a/server_status.php
+++ b/server_status.php
@@ -516,7 +516,7 @@ foreach ($sections as $section_name => $section) {
</tr>
</thead>
<tbody>
-<tr class="odd">
+<tr class="noclick odd">
<th class="name"><?php echo __('Received'); ?></th>
<td class="value"><?php echo
implode(' ',
@@ -526,7 +526,7 @@ foreach ($sections as $section_name => $section) {
PMA_formatByteDown(
$server_status['Bytes_received'] * $hour_factor, 2, 1)); ?></td>
</tr>
-<tr class="even">
+<tr class="noclick even">
<th class="name"><?php echo __('Sent'); ?></th>
<td class="value"><?php echo
implode(' ',
@@ -536,7 +536,7 @@ foreach ($sections as $section_name => $section) {
PMA_formatByteDown(
$server_status['Bytes_sent'] * $hour_factor, 2, 1)); ?></td>
</tr>
-<tr class="odd">
+<tr class="noclick odd">
<th class="name"><?php echo __('Total'); ?></th>
<td class="value"><?php echo
implode(' ',
@@ -562,14 +562,14 @@ foreach ($sections as $section_name => $section) {
</tr>
</thead>
<tbody>
-<tr class="odd">
+<tr class="noclick odd">
<th class="name"><?php echo __('max. concurrent connections'); ?></th>
<td class="value"><?php echo
PMA_formatNumber($server_status['Max_used_connections'], 0); ?> </td>
<td class="value">--- </td>
<td class="value">--- </td>
</tr>
-<tr class="even">
+<tr class="noclick even">
<th class="name"><?php echo __('Failed attempts'); ?></th>
<td class="value"><?php echo
PMA_formatNumber($server_status['Aborted_connects'], 4, 0); ?></td>
@@ -583,7 +583,7 @@ foreach ($sections as $section_name => $section) {
0, 2) . '%'
: '--- '; ?></td>
</tr>
-<tr class="odd">
+<tr class="noclick odd">
<th class="name"><?php echo __('Aborted'); ?></th>
<td class="value"><?php echo
PMA_formatNumber($server_status['Aborted_clients'], 4, 0); ?></td>
@@ -597,7 +597,7 @@ foreach ($sections as $section_name => $section) {
0, 2) . '%'
: '--- '; ?></td>
</tr>
-<tr class="even">
+<tr class="noclick even">
<th class="name"><?php echo __('Total'); ?></th>
<td class="value"><?php echo
PMA_formatNumber($server_status['Connections'], 4, 0); ?></td>
@@ -628,7 +628,7 @@ foreach ($sections as $section_name => $section) {
</tr>
</thead>
<tbody>
-<tr class="odd">
+<tr class="noclick odd">
<td class="value"><?php echo
PMA_formatNumber($server_status['Questions'], 4, 0); ?></td>
<td class="value"><?php echo
@@ -697,7 +697,7 @@ foreach ($used_queries as $name => $value) {
$name = str_replace('Com_', '', $name);
$name = str_replace('_', ' ', $name);
?>
- <tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
+ <tr class="noclick <?php echo $odd_row ? 'odd' : 'even'; ?>">
<th class="name"><?php echo htmlspecialchars($name); ?></th>
<td class="value"><?php echo PMA_formatNumber($value, 4, 0); ?></td>
<td class="value"><?php echo
@@ -799,7 +799,7 @@ if (! empty($section['title'])) {
foreach ($section['vars'] as $name => $value) {
$odd_row = !$odd_row;
?>
- <tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
+ <tr class="noclick <?php echo $odd_row ? 'odd' : 'even'; ?>">
<th class="name"><?php echo htmlspecialchars($name) . PMA_showMySQLDocu('server-status-variables', 'server-status-variables', false, 'statvar_' . $name); ?>
</th>
<td class="value"><?php
diff --git a/server_variables.php b/server_variables.php
index fefa119..f601fe8 100644
--- a/server_variables.php
+++ b/server_variables.php
@@ -62,7 +62,7 @@ echo __('Session value') . ' / ' . __('Global value');
$odd_row = true;
foreach ($serverVars as $name => $value) {
?>
-<tr class="<?php
+<tr class="noclick <?php
echo $odd_row ? 'odd' : 'even';
if ($serverVarsGlobal[$name] !== $value) {
echo ' marked';
diff --git a/tbl_change.php b/tbl_change.php
index 713f02d..0f061b2 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -457,7 +457,7 @@ foreach ($rows as $row_id => $vrow) {
$vrow[$field['Field']] = date('Y-m-d H:i:s', time());
}
?>
- <tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
+ <tr class="noclick <?php echo $odd_row ? 'odd' : 'even'; ?>">
<td <?php echo ($cfg['LongtextDoubleTextarea'] && strstr($field['True_Type'], 'longtext') ? 'rowspan="2"' : ''); ?> align="center">
<?php echo $field['Field_title']; ?>
<input type="hidden" name="fields_name<?php echo $field_name_appendix; ?>" value="<?php echo $field['Field_html']; ?>"/>
diff --git a/tbl_select.php b/tbl_select.php
index 0d8cbb7..2cb0086 100644
--- a/tbl_select.php
+++ b/tbl_select.php
@@ -122,7 +122,7 @@ if (!isset($param) || $param[0] == '') {
for ($i = 0; $i < $fields_cnt; $i++) {
?>
- <tr class="<?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
+ <tr class="noclick <?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
<th><?php echo htmlspecialchars($fields_list[$i]); ?></th>
<td><?php echo $fields_type[$i]; ?></td>
<td><?php echo $fields_collation[$i]; ?></td>
diff --git a/tbl_tracking.php b/tbl_tracking.php
index 9b9dbcf..b651986 100644
--- a/tbl_tracking.php
+++ b/tbl_tracking.php
@@ -278,7 +278,7 @@ if (isset($_REQUEST['snapshot'])) {
$style = 'odd';
foreach($columns as $field_index => $field) {
?>
- <tr class="<?php echo $style; ?>">
+ <tr class="noclick <?php echo $style; ?>">
<?php
if ($field['Key'] == 'PRI') {
echo '<td><b><u>' . $field['Field'] . '</u></b></td>' . "\n";
@@ -336,7 +336,7 @@ if (isset($_REQUEST['snapshot'])) {
$str_packed = __('No');
}
?>
- <tr class="<?php echo $style; ?>">
+ <tr class="noclick <?php echo $style; ?>">
<td><b><?php echo $index['Key_name'];?></b></td>
<td><?php echo $index['Index_type'];?></td>
<td><?php echo $str_unique;?></td>
@@ -420,7 +420,7 @@ if (isset($_REQUEST['report']) || isset($_REQUEST['report_export'])) {
if ($timestamp >= $filter_ts_from && $timestamp <= $filter_ts_to &&
( in_array('*', $filter_users) || in_array($entry['username'], $filter_users) ) ) {
?>
- <tr class="<?php echo $style; ?>">
+ <tr class="noclick <?php echo $style; ?>">
<td><small><?php echo $i;?></small></td>
<td><small><?php echo $entry['date'];?></small></td>
<td><small><?php echo $entry['username']; ?></small></td>
@@ -471,7 +471,7 @@ if (isset($_REQUEST['report']) || isset($_REQUEST['report_export'])) {
if ($timestamp >= $filter_ts_from && $timestamp <= $filter_ts_to &&
( in_array('*', $filter_users) || in_array($entry['username'], $filter_users) ) ) {
?>
- <tr class="<?php echo $style; ?>">
+ <tr class="noclick <?php echo $style; ?>">
<td><small><?php echo $i; ?></small></td>
<td><small><?php echo $entry['date']; ?></small></td>
<td><small><?php echo $entry['username']; ?></small></td>
@@ -608,7 +608,7 @@ if ($last_version > 0) {
$tracking_active = true;
}
?>
- <tr class="<?php echo $style;?>">
+ <tr class="noclick <?php echo $style;?>">
<td><?php echo htmlspecialchars($version['db_name']);?></td>
<td><?php echo htmlspecialchars($version['table_name']);?></td>
<td><?php echo $version['version'];?></td>
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. 56af2a0cfef8e6e39e14d4f23eb0fe154122e1a6
by Michal Čihař 15 Mar '11
by Michal Čihař 15 Mar '11
15 Mar '11
The branch, master has been updated
via 56af2a0cfef8e6e39e14d4f23eb0fe154122e1a6 (commit)
via f06ac067a255a8aad459dfdbfedb6d5e27d975fd (commit)
via 11b64dc88fcb054229a2aabc246badebb5ca99ec (commit)
via 1431df06be129740069f07d7d7bb1c7f65154979 (commit)
via cc9f6a8f43210dd3eb16fbf11cd1dba46c46d288 (commit)
via 11182081333c8bbf7b3dc14db2e3dec9f99a8448 (commit)
via e05a7db89fa425bf38e5bc2bb5437b2785ff2c29 (commit)
via 98c8ff614ea5c04c0a8893d12a22bfaa829531ba (commit)
via c30257e1e6dad7f41820cacf6592872ea64fcd98 (commit)
via ff7926b080aa0fb23937a56160778a281303c1bd (commit)
via ae95cfddc35066260240a7917dea14c675d99233 (commit)
via e37454721a76ee5e08bb7ba243a1896f3031a2e5 (commit)
via 44eae38bb367ff8bb99fccb15d0f1231d0142d23 (commit)
via 37e9f99d12017a78d7ce3d23e74cb9a9a46f309f (commit)
via b455780222d0501cc62293e686ed654604b256b7 (commit)
via 8e4633a1412df45dc9569b1475c589d556d4550d (commit)
via 25396bc44827a3deeb73cd066f9b39f19b23d9ce (commit)
via e5d7788045d7b4b5fa8cd70fe801446746263ab5 (commit)
via 82e17c5dae93a1c40c9b1e81fd22f4501c18d871 (commit)
via 9f933b0ee23ab64da6398cdef40493e5c51d3473 (commit)
via b0d75ba0a9027930066cbd16f5737bcd71e9e41f (commit)
via 74439a8904fbba8b9dcf670ae7a7a83d19c6979c (commit)
via afd536740661a2fc132f78de56c0c7f419d76880 (commit)
via aea6e740cf4eb4c11e71ddca9cdf36a26019fe4a (commit)
via c3f7182d6693e7f3835764d1890fd165c4f6c263 (commit)
via 3254c2d4f63f55841b579f28ba185f647011b4c8 (commit)
via d9ca4bfe6c7486b2e8d516391d714116d859a3ff (commit)
via 6558a7c1a704fb97d45e3459b72005003a0551dd (commit)
via 1cb4c783476ca4e7d16e408ea8f1c555f309da4a (commit)
from 0f67e41bddb104d110a554ca4a410cd7317adde3 (commit)
- Log -----------------------------------------------------------------
commit 56af2a0cfef8e6e39e14d4f23eb0fe154122e1a6
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 15 11:48:34 2011 +0100
Update generated docs
commit f06ac067a255a8aad459dfdbfedb6d5e27d975fd
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:58:03 2011 +0200
Translation update done using Pootle.
commit 11b64dc88fcb054229a2aabc246badebb5ca99ec
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:57:52 2011 +0200
Translation update done using Pootle.
commit 1431df06be129740069f07d7d7bb1c7f65154979
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:57:43 2011 +0200
Translation update done using Pootle.
commit cc9f6a8f43210dd3eb16fbf11cd1dba46c46d288
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:57:10 2011 +0200
Translation update done using Pootle.
commit 11182081333c8bbf7b3dc14db2e3dec9f99a8448
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:53:46 2011 +0200
Translation update done using Pootle.
commit e05a7db89fa425bf38e5bc2bb5437b2785ff2c29
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:52:22 2011 +0200
Translation update done using Pootle.
commit 98c8ff614ea5c04c0a8893d12a22bfaa829531ba
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:51:18 2011 +0200
Translation update done using Pootle.
commit c30257e1e6dad7f41820cacf6592872ea64fcd98
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:49:25 2011 +0200
Translation update done using Pootle.
commit ff7926b080aa0fb23937a56160778a281303c1bd
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:41:13 2011 +0200
Translation update done using Pootle.
commit ae95cfddc35066260240a7917dea14c675d99233
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:40:25 2011 +0200
Translation update done using Pootle.
commit e37454721a76ee5e08bb7ba243a1896f3031a2e5
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:36:49 2011 +0200
Translation update done using Pootle.
commit 44eae38bb367ff8bb99fccb15d0f1231d0142d23
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:31:14 2011 +0200
Translation update done using Pootle.
commit 37e9f99d12017a78d7ce3d23e74cb9a9a46f309f
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:21:24 2011 +0200
Translation update done using Pootle.
commit b455780222d0501cc62293e686ed654604b256b7
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:20:41 2011 +0200
Translation update done using Pootle.
commit 8e4633a1412df45dc9569b1475c589d556d4550d
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:17:53 2011 +0200
Translation update done using Pootle.
commit 25396bc44827a3deeb73cd066f9b39f19b23d9ce
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:15:34 2011 +0200
Translation update done using Pootle.
commit e5d7788045d7b4b5fa8cd70fe801446746263ab5
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:13:57 2011 +0200
Translation update done using Pootle.
commit 82e17c5dae93a1c40c9b1e81fd22f4501c18d871
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 11:13:46 2011 +0200
Translation update done using Pootle.
commit 9f933b0ee23ab64da6398cdef40493e5c51d3473
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 10:54:14 2011 +0200
Translation update done using Pootle.
commit b0d75ba0a9027930066cbd16f5737bcd71e9e41f
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 10:52:49 2011 +0200
Translation update done using Pootle.
commit 74439a8904fbba8b9dcf670ae7a7a83d19c6979c
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 10:50:49 2011 +0200
Translation update done using Pootle.
commit afd536740661a2fc132f78de56c0c7f419d76880
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 10:48:23 2011 +0200
Translation update done using Pootle.
commit aea6e740cf4eb4c11e71ddca9cdf36a26019fe4a
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 10:44:13 2011 +0200
Translation update done using Pootle.
commit c3f7182d6693e7f3835764d1890fd165c4f6c263
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 10:43:49 2011 +0200
Translation update done using Pootle.
commit 3254c2d4f63f55841b579f28ba185f647011b4c8
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 10:41:32 2011 +0200
Translation update done using Pootle.
commit d9ca4bfe6c7486b2e8d516391d714116d859a3ff
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 10:40:47 2011 +0200
Translation update done using Pootle.
commit 6558a7c1a704fb97d45e3459b72005003a0551dd
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 10:35:25 2011 +0200
Translation update done using Pootle.
commit 1cb4c783476ca4e7d16e408ea8f1c555f309da4a
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Tue Mar 15 10:31:45 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
output/tr/Documentation.html | 87 +++++++++++++++++++++--------------------
po/tr.po | 53 ++++++++++++++++++++++++-
2 files changed, 95 insertions(+), 45 deletions(-)
diff --git a/output/tr/Documentation.html b/output/tr/Documentation.html
index b5110ed..605ddd6 100644
--- a/output/tr/Documentation.html
+++ b/output/tr/Documentation.html
@@ -929,71 +929,74 @@ olabilir.<br /><br />
<span id="cfg_Servers_relation">$cfg['Servers'][$i]['relation']</span>
dizgisi
</dt>
- <dd>Since release 2.2.4 you can describe, in a special 'relation' table, which
-column is a key in another table (a foreign key). phpMyAdmin currently uses
-this to
- <ul><li>make clickable, when you browse the master table, the data values that point
-to the foreign table;</li>
- <li>display in an optional tool-tip the "display column" when browsing
-the master table, if you move the mouse to a column containing a foreign key
-(use also the 'table_info' table);<br />
- (see <a href="#faqdisplay"><abbr title="Frequently Asked Questions">
-FAQ</abbr> 6.7</a>)</li>
- <li>in edit/insert mode, display a drop-down list of possible foreign keys (key
-value and "display column" are shown)<br />
- (see <a href="#faq6_21"><abbr title="Frequently Asked Questions"> FAQ</abbr>
-6.21</a>)</li>
- <li>display links on the table properties page, to check referential integrity
-(display missing foreign keys) for each described key;
+ <dd>2.2.4 yayımından bu yana başka bir tabloda (dış anahtar) anahtar olan sütunu
+özel 'bağlantı' tablosunda tanımlayabilirsiniz. phpMyAdmin halen
+ <ul><li>master tabloya gözattığınızda, dış tabloyu işaret eden veri değerlerini
+tıklanabilir yapmak için bunu kullanır;</li>
+ <li>eğer fareyi dış anahtarı içeren sütunun üzerine götürürseniz, master tabloya
+gözattığınızda isteğe bağlı araç ipucu "görüntüleme sütunu" içinde
+görüntülemek için bunu kullanır (aynı zamanda 'table_info' tablosunu
+kullanmak için bunu kullanır);<br />
+ (<a href="#faqdisplay"><abbr title="Sıkça Sorulan Sorular"> SSS</abbr>
+6.7</a>'ye bakın)</li>
+ <li>düzenle/ekle kipinde, olası dış anahtarların aşağı açılır menü listesi
+görüntülemek için bunu kullanır (anahtar değeri ve "görüntüleme
+sütunu" gösterilir)<br />
+ (<a href="#faq6_21"><abbr title="Sıkça Sorulan Sorular"> SSS</abbr>
+6.21</a>'e bakın)</li>
+ <li>tablo özellikleri sayfasında bağlantıları görüntülemek için bunu kullanır,
+her tanımlanan anahtar için veri tutarlılığını (eksik dış anahtarları
+görüntüleme) kontrol etmek için;
</li>
- <li>in query-by-example, create automatic joins (see <a href="#faq6_6"> <abbr
-title="Frequently Asked Questions">FAQ</abbr> 6.6</a>)</li>
- <li>enable you to get a <abbr title="Portable Document Format">PDF</abbr> schema
-of your database (also uses the table_coords table).</li>
+ <li>örnekli sorguda, otomatik katılımlar oluşturmak için bunu kullanır (<a
+href="#faq6_6"> <abbr title="Sıkça Sorulan Sorular">SSS</abbr> 6.6</a>'ya
+bakın)</li>
+ <li>veritabanınızın <abbr title="Portable Document Format">PDF</abbr> şemasını
+almanızı etkinleştirmek için bunu kullanır (aynı zamanda table_coords
+tablosunu kullanır).</li>
</ul>
- The keys can be numeric or character.<br /><br />
+ Anahtarlar sayısal veya harf olabilir.<br /><br />
Bu işlevselliğin kullanımına izin vermek için:
<ul><li><a href="#pmadb">pmadb</a> ve phpMyAdmin yapılandırma depolamasını kurun</li>
- <li>put the relation table name in <tt>$cfg['Servers'][$i]['relation']</tt></li>
- <li>now as normal user open phpMyAdmin and for each one of your tables where you
-want to use this feature, click "Structure/Relation view/" and
-choose foreign columns.
+ <li><tt>$cfg['Servers'][$i]['relation']</tt> içinde bağlantı tablosu adını koyun</li>
+ <li>şimdi normal kullanıcı gibi phpMyAdmin'i açın ve bu özelliği kullanmak
+istediğiniz her bir tablonuz için "Yapı/Bağlantı görünümü/"ne
+tıklayın ve dış sütunları seçin.
</li>
</ul>
- Please note that in the current version, <tt>master_db</tt> must be the same
-as <tt>foreign_db</tt>. Those columns have been put in future development of
-the cross-db relations.
+ Lütfen unutmayın şu anki bu sürümde, <tt>master_db</tt>, <tt>foreign_db</tt>
+ile aynı olmalıdır. Bu sütunlar cross-db bağlantılarının gelecekteki
+geliştirmesi için koyulmuştur.
</dd>
<dt id="table_info">
<span id="cfg_Servers_table_info">$cfg['Servers'][$i]['table_info']</span>
-string
+dizgisi
</dt>
<dd>
- Since release 2.3.0 you can describe, in a special 'table_info' table, which
-column is to be displayed as a tool-tip when moving the cursor over the
-corresponding key.<br />
- This configuration variable will hold the name of this special table. To
-allow the usage of this functionality:
+ 2.3.0 yayımından bu yana uygun anahtar üzerine imleç götürüldüğünde araç
+ipucu olarak görüntülenen sütunu özel 'table_info' tablosunda
+tanımlayabilirsiniz.<br />
+ Bu yapılandırma değişkeni bu özel tablonun adını elinde tutacaktır. Bu
+işlevselliğin kullanımına izin vermek için:
<ul><li><a href="#pmadb">pmadb</a> ve phpMyAdmin yapılandırma depolamasını kurun</li>
- <li>put the table name in <tt>$cfg['Servers'][$i]['table_info']</tt> (e.g.
-'pma_table_info')</li>
- <li>then for each table where you want to use this feature, click
-"Structure/Relation view/Choose column to display" to choose the
-column.</li>
+ <li><tt>$cfg['Servers'][$i]['table_info']</tt> içine tablo adını koyun
+(ö.r. 'pma_table_info')</li>
+ <li>sonra bu özelliği kullanmak istediğiniz her tablo için, sütun seçmek için
+"Yapı/Bağlantı görünümü/Görüntülemek için sütun seçin"e tıklayın.</li>
</ul>
- Usage tip: <a href="#faqdisplay">Display column</a>.
+ Kullanım ipucu: <a href="#faqdisplay">Sütunu görüntüle</a>.
</dd>
<dt id="table_coords">
<span
id="cfg_Servers_table_coords">$cfg['Servers'][$i]['table_coords']</span>
-string<br />
+dizgisi<br />
<span id="cfg_Servers_pdf_pages">$cfg['Servers'][$i]['pdf_pages']</span>
-string
+dizgisi
</dt>
<dd>Since release 2.3.0 you can have phpMyAdmin create <abbr title="Portable
Document Format">PDF</abbr> pages showing the relations between your
diff --git a/po/tr.po b/po/tr.po
index fd1010c..a9c86df 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: 2011-03-02 13:51+0100\n"
-"PO-Revision-Date: 2011-03-14 21:53+0200\n"
+"PO-Revision-Date: 2011-03-15 11:58+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit(a)hotmail.com>\n"
"Language-Team: none\n"
"Language: tr\n"
@@ -2411,6 +2411,8 @@ msgid ""
"column is a key in another table (a foreign key). phpMyAdmin currently uses "
"this to"
msgstr ""
+"2.2.4 yayımından bu yana başka bir tabloda (dış anahtar) anahtar olan sütunu "
+"özel 'bağlantı' tablosunda tanımlayabilirsiniz. phpMyAdmin halen"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:900
@@ -2418,6 +2420,8 @@ msgid ""
"make clickable, when you browse the master table, the data values that point "
"to the foreign table;"
msgstr ""
+"master tabloya gözattığınızda, dış tabloyu işaret eden veri değerlerini "
+"tıklanabilir yapmak için bunu kullanır;"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:902
@@ -2426,6 +2430,10 @@ msgid ""
"the master table, if you move the mouse to a column containing a foreign key "
"(use also the 'table_info' table);"
msgstr ""
+"eğer fareyi dış anahtarı içeren sütunun üzerine götürürseniz, master tabloya "
+"gözattığınızda isteğe bağlı araç ipucu "görüntüleme sütunu" "
+"içinde görüntülemek için bunu kullanır (aynı zamanda 'table_info' tablosunu "
+"kullanmak için bunu kullanır);"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:905
@@ -2433,6 +2441,8 @@ msgid ""
"(see <a href=\"#faqdisplay\"><abbr title=\"Frequently Asked Questions\"> "
"FAQ</abbr> 6.7</a>)"
msgstr ""
+"(<a href=\"#faqdisplay\"><abbr title=\"Sıkça Sorulan Sorular\"> SSS</abbr> "
+"6.7</a>'ye bakın)"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:907
@@ -2440,6 +2450,9 @@ msgid ""
"in edit/insert mode, display a drop-down list of possible foreign keys (key "
"value and "display column" are shown)"
msgstr ""
+"düzenle/ekle kipinde, olası dış anahtarların aşağı açılır menü listesi "
+"görüntülemek için bunu kullanır (anahtar değeri ve "görüntüleme "
+"sütunu" gösterilir)"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:909
@@ -2447,6 +2460,8 @@ msgid ""
"(see <a href=\"#faq6_21\"><abbr title=\"Frequently Asked Questions\"> FAQ</"
"abbr> 6.21</a>)"
msgstr ""
+"(<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><dl><dd><ul><li>
#: orig-docs/Documentation.html:911
@@ -2454,6 +2469,9 @@ msgid ""
"display links on the table properties page, to check referential integrity "
"(display missing foreign keys) for each described key;"
msgstr ""
+"tablo özellikleri sayfasında bağlantıları görüntülemek için bunu kullanır, "
+"her tanımlanan anahtar için veri tutarlılığını (eksik dış anahtarları "
+"görüntüleme) kontrol etmek için;"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:914
@@ -2461,6 +2479,9 @@ msgid ""
"in query-by-example, create automatic joins (see <a href=\"#faq6_6\"> <abbr "
"title=\"Frequently Asked Questions\">FAQ</abbr> 6.6</a>)"
msgstr ""
+"örnekli sorguda, otomatik katılımlar oluşturmak için bunu kullanır (<a "
+"href=\"#faq6_6\"> <abbr title=\"Sıkça Sorulan Sorular\">SSS</abbr> 6.6</a>'ya "
+"bakın)"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:916
@@ -2468,16 +2489,20 @@ msgid ""
"enable you to get a <abbr title=\"Portable Document Format\">PDF</abbr> "
"schema of your database (also uses the table_coords table)."
msgstr ""
+"veritabanınızın <abbr title=\"Portable Document Format\">PDF</abbr> şemasını "
+"almanızı etkinleştirmek için bunu kullanır (aynı zamanda table_coords "
+"tablosunu kullanır)."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:920
msgid "The keys can be numeric or character."
-msgstr ""
+msgstr "Anahtarlar sayısal veya harf olabilir."
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:926
msgid "put the relation table name in <tt>$cfg['Servers'][$i]['relation']</tt>"
msgstr ""
+"<tt>$cfg['Servers'][$i]['relation']</tt> içinde bağlantı tablosu adını koyun"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:928
@@ -2486,6 +2511,9 @@ msgid ""
"want to use this feature, click "Structure/Relation view/" and "
"choose foreign columns."
msgstr ""
+"şimdi normal kullanıcı gibi phpMyAdmin'i açın ve bu özelliği kullanmak "
+"istediğiniz her bir tablonuz için "Yapı/Bağlantı görünümü/"ne "
+"tıklayın ve dış sütunları seçin."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:935
@@ -2494,6 +2522,9 @@ msgid ""
"as <tt>foreign_db</tt>. Those columns have been put in future development of "
"the cross-db relations."
msgstr ""
+"Lütfen unutmayın şu anki bu sürümde, <tt>master_db</tt>, <tt>foreign_db</tt> "
+"ile aynı olmalıdır. Bu sütunlar cross-db bağlantılarının gelecekteki "
+"geliştirmesi için koyulmuştur."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:941
@@ -2501,6 +2532,8 @@ msgid ""
"<span id=\"cfg_Servers_table_info\">$cfg['Servers'][$i]['table_info']</span> "
"string"
msgstr ""
+"<span id=\"cfg_Servers_table_info\">$cfg['Servers'][$i]['table_info']</span> "
+"dizgisi"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:944
@@ -2509,6 +2542,9 @@ msgid ""
"column is to be displayed as a tool-tip when moving the cursor over the "
"corresponding key."
msgstr ""
+"2.3.0 yayımından bu yana uygun anahtar üzerine imleç götürüldüğünde araç "
+"ipucu olarak görüntülenen sütunu özel 'table_info' tablosunda "
+"tanımlayabilirsiniz."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:947
@@ -2516,6 +2552,8 @@ msgid ""
"This configuration variable will hold the name of this special table. To "
"allow the usage of this functionality:"
msgstr ""
+"Bu yapılandırma değişkeni bu özel tablonun adını elinde tutacaktır. Bu "
+"işlevselliğin kullanımına izin vermek için:"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:950
@@ -2523,6 +2561,8 @@ msgid ""
"put the table name in <tt>$cfg['Servers'][$i]['table_info']</tt> (e.g. "
"'pma_table_info')"
msgstr ""
+"<tt>$cfg['Servers'][$i]['table_info']</tt> içine tablo adını koyun (ö.r. "
+"'pma_table_info')"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:953
@@ -2530,11 +2570,13 @@ msgid ""
"then for each table where you want to use this feature, click ""
"Structure/Relation view/Choose column to display" to choose the column."
msgstr ""
+"sonra bu özelliği kullanmak istediğiniz her tablo için, sütun seçmek için "
+""Yapı/Bağlantı görünümü/Görüntülemek için sütun seçin"e tıklayın."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:957
msgid "Usage tip: <a href=\"#faqdisplay\">Display column</a>."
-msgstr ""
+msgstr "Kullanım ipucu: <a href=\"#faqdisplay\">Sütunu görüntüle</a>."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:960
@@ -2542,6 +2584,9 @@ msgid ""
"<span id=\"cfg_Servers_table_coords\">$cfg['Servers'][$i]['table_coords']</"
"span> string"
msgstr ""
+"<span "
+"id=\"cfg_Servers_table_coords\">$cfg['Servers'][$i]['table_coords']</span> "
+"dizgisi"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:961
@@ -2549,6 +2594,8 @@ msgid ""
"<span id=\"cfg_Servers_pdf_pages\">$cfg['Servers'][$i]['pdf_pages']</span> "
"string"
msgstr ""
+"<span id=\"cfg_Servers_pdf_pages\">$cfg['Servers'][$i]['pdf_pages']</span> "
+"dizgisi"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:963
hooks/post-receive
--
phpMyAdmin localized documentation
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA4-316-gfd7fb48
by Michal Čihař 15 Mar '11
by Michal Čihař 15 Mar '11
15 Mar '11
The branch, master has been updated
via fd7fb4875f8b7c0e78f14ccc6e46f54e753488cf (commit)
from bf2aeb3e41137c9752a4bd858b634aaf9901dfc3 (commit)
- Log -----------------------------------------------------------------
commit fd7fb4875f8b7c0e78f14ccc6e46f54e753488cf
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Mar 15 12:21:11 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/de.po | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/po/de.po b/po/de.po
index 2c3f4fe..b9824b3 100644
--- a/po/de.po
+++ b/po/de.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta4-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-03-05 14:23-0500\n"
-"PO-Revision-Date: 2011-03-12 16:31+0200\n"
-"Last-Translator: <mynetx(a)gmx.de>\n"
+"PO-Revision-Date: 2011-03-15 12:21+0200\n"
+"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: german <de(a)li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -6385,7 +6385,7 @@ msgstr "Beziehungsschema anzeigen"
#: libraries/schema/User_Schema.class.php:356
msgid "Select Export Relational Type"
-msgstr ""
+msgstr "Beziehungsschema exportieren auswählen"
#: libraries/schema/User_Schema.class.php:377
msgid "Show grid"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA4-315-gbf2aeb3
by Michal Čihař 15 Mar '11
by Michal Čihař 15 Mar '11
15 Mar '11
The branch, master has been updated
via bf2aeb3e41137c9752a4bd858b634aaf9901dfc3 (commit)
via f8189866765e967e38d83901b6d18e8b73bc97dc (commit)
via 15c16d9fa9e116370c01f7b7cca1e837d395e09a (commit)
via 5b451636b101bd010ce7b5ae1a1ade5d07f1bea5 (commit)
via 9b1ad4c11cd1f059e4b1b6d7e93f6a85d3b9d719 (commit)
via 78a2455610a6f39932e80bb187a883c20ec5cf5e (commit)
via 310d2e5769c4de163e4494235a6cb0fffc81e499 (commit)
via 45f3a691c2982e63340c7e6dd67782e27e53ee7d (commit)
via 6b89504f8b486a89ab2f8e2703c118dfe77691ba (commit)
via a60275f911038063641efe8ec04fd000b0a7bf9f (commit)
via 7e5f49e564a1faefcaff613fc325b8cb3f4e4017 (commit)
via 84e9c4ffcf22c7fb7d5185564ea56c1f8449def0 (commit)
via d321eaba34487f46923510edcbffdb292ab6f0d8 (commit)
via eab41ea71b7d5bdb35018f99965756d4fb77d60e (commit)
via a81406502c91530958fef4c00d005a2d82a63e19 (commit)
via a621ec6d15af3134d33810bcb6b727af0ff408d8 (commit)
via 18e37d389cb32bf07324adc4f31f3a2112dc5ce2 (commit)
via 10a71a06ab1dbcbb8317c157821d8b316213c934 (commit)
via 84c132b403be1597c87b96fa9b217b49220b6ff5 (commit)
from 60933d667b3ebfb498a707ce2353de765c43c851 (commit)
- Log -----------------------------------------------------------------
commit bf2aeb3e41137c9752a4bd858b634aaf9901dfc3
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 11:05:09 2011 +0200
Translation update done using Pootle.
commit f8189866765e967e38d83901b6d18e8b73bc97dc
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 11:04:11 2011 +0200
Translation update done using Pootle.
commit 15c16d9fa9e116370c01f7b7cca1e837d395e09a
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 11:02:58 2011 +0200
Translation update done using Pootle.
commit 5b451636b101bd010ce7b5ae1a1ade5d07f1bea5
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 10:22:24 2011 +0200
Translation update done using Pootle.
commit 9b1ad4c11cd1f059e4b1b6d7e93f6a85d3b9d719
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 10:21:57 2011 +0200
Translation update done using Pootle.
commit 78a2455610a6f39932e80bb187a883c20ec5cf5e
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 10:19:33 2011 +0200
Translation update done using Pootle.
commit 310d2e5769c4de163e4494235a6cb0fffc81e499
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 10:19:17 2011 +0200
Translation update done using Pootle.
commit 45f3a691c2982e63340c7e6dd67782e27e53ee7d
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 10:18:10 2011 +0200
Translation update done using Pootle.
commit 6b89504f8b486a89ab2f8e2703c118dfe77691ba
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 10:18:02 2011 +0200
Translation update done using Pootle.
commit a60275f911038063641efe8ec04fd000b0a7bf9f
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 10:17:46 2011 +0200
Translation update done using Pootle.
commit 7e5f49e564a1faefcaff613fc325b8cb3f4e4017
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 10:17:34 2011 +0200
Translation update done using Pootle.
commit 84e9c4ffcf22c7fb7d5185564ea56c1f8449def0
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 10:16:57 2011 +0200
Translation update done using Pootle.
commit d321eaba34487f46923510edcbffdb292ab6f0d8
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 10:16:36 2011 +0200
Translation update done using Pootle.
commit eab41ea71b7d5bdb35018f99965756d4fb77d60e
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 10:16:19 2011 +0200
Translation update done using Pootle.
commit a81406502c91530958fef4c00d005a2d82a63e19
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 10:15:50 2011 +0200
Translation update done using Pootle.
commit a621ec6d15af3134d33810bcb6b727af0ff408d8
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 10:15:40 2011 +0200
Translation update done using Pootle.
commit 18e37d389cb32bf07324adc4f31f3a2112dc5ce2
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 10:15:22 2011 +0200
Translation update done using Pootle.
commit 10a71a06ab1dbcbb8317c157821d8b316213c934
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 10:14:53 2011 +0200
Translation update done using Pootle.
commit 84c132b403be1597c87b96fa9b217b49220b6ff5
Author: Mehbooob Khan <mehboobbugti(a)gmail.com>
Date: Tue Mar 15 10:14:30 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/ur.po | 38 +++++++++++++++++++++-----------------
1 files changed, 21 insertions(+), 17 deletions(-)
diff --git a/po/ur.po b/po/ur.po
index d0c06e0..bfe8439 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta4-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-03-05 14:23-0500\n"
-"PO-Revision-Date: 2011-03-08 12:00+0200\n"
+"PO-Revision-Date: 2011-03-15 11:05+0200\n"
"Last-Translator: Mehbooob Khan <mehboobbugti(a)gmail.com>\n"
"Language-Team: Urdu <ur(a)li.org>\n"
"Language: ur\n"
@@ -2240,29 +2240,29 @@ msgstr "\"%s\" درکار %s توسیع"
#: libraries/config/FormDisplay.class.php:746
#, php-format
msgid "import will not work, missing function (%s)"
-msgstr ""
+msgstr "درآمد کارآمد نہیں ہے ایک عمل موجود نہیں ہے (%s)"
#: libraries/config/FormDisplay.class.php:750
#, php-format
msgid "export will not work, missing function (%s)"
-msgstr ""
+msgstr "برآمد کارآمد نہیں ہے ایک عمل موجود نہیں ہے (%s)"
#: libraries/config/FormDisplay.class.php:757
msgid "SQL Validator is disabled"
-msgstr ""
+msgstr "SQL توثیق کار غیرفعال ہے"
#: libraries/config/FormDisplay.class.php:764
msgid "SOAP extension not found"
-msgstr ""
+msgstr "SOAP توسیع نہیں ملا"
#: libraries/config/FormDisplay.class.php:772
#, php-format
msgid "maximum %s"
-msgstr ""
+msgstr "زیادہ سے زیادہ %s"
#: libraries/config/FormDisplay.tpl.php:173
msgid "This setting is disabled, it will not be applied to your configuration"
-msgstr ""
+msgstr "ترتیب غیرفعال ہے، یہ آپ کے تشکیلات میں لاگوں نہیں ہوسکتی"
#: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89
#: libraries/relation.lib.php:96 pmd_relation_new.php:68
@@ -2272,41 +2272,42 @@ msgstr "غیر فعال"
#: libraries/config/FormDisplay.tpl.php:248
#, php-format
msgid "Set value: %s"
-msgstr ""
+msgstr "قدر سیٹ کریں: %s"
#: libraries/config/FormDisplay.tpl.php:253
#: libraries/config/messages.inc.php:350
msgid "Restore default value"
-msgstr ""
+msgstr "طے شدہ قدر بحال کریں"
#: libraries/config/FormDisplay.tpl.php:269
msgid "Allow users to customize this value"
-msgstr ""
+msgstr "صارفین کو اس قدر کے مخصوص کرنے کی اجازت دیں"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 main.php:146
#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1097
msgid "Reset"
-msgstr ""
+msgstr "دوبارہ سیٹ کریں"
#: libraries/config/messages.inc.php:17
msgid "Improves efficiency of screen refresh"
-msgstr ""
+msgstr "سکرین تازہ کاری کارکردگی بہتربناتا ہے"
#: libraries/config/messages.inc.php:18
-#, fuzzy
#| msgid "Enable"
msgid "Enable Ajax"
-msgstr "فعال"
+msgstr "AJAX فعال کریں"
#: libraries/config/messages.inc.php:19
msgid ""
"If enabled user can enter any MySQL server in login form for cookie auth"
msgstr ""
+"اگر فعال کیا گیا تو صارف MySQL سرور میں کوئی بھی لاگ ان فارم سے کوکی اخیتار "
+"دہی کرسکتے ہیں"
#: libraries/config/messages.inc.php:20
msgid "Allow login to any MySQL server"
-msgstr ""
+msgstr "کسی بھی MySQL سرور میں لاگ ان کی اجازت دیں"
#: libraries/config/messages.inc.php:21
msgid ""
@@ -2314,14 +2315,17 @@ msgid ""
"inside a frame, and is a potential [strong]security hole[/strong] allowing "
"cross-frame scripting attacks"
msgstr ""
+"اس کے فعال کرنے سے دوسرے ڈومین میں واقع کوئی صفحہ فریم کے اندر سے phpMyAdmin "
+"کو استعمال کرسکتا ہے اوریہ ایک [strong]سلامتی خلا[/strong] ہے جس کی وجہ سے "
+"دوسرے فریم پروگرامنگ حملے ہوسکتے ہیں"
#: libraries/config/messages.inc.php:22
msgid "Allow third party framing"
-msgstr ""
+msgstr "تیسرے فریق فریم کاری کی اجازت دیں"
#: libraries/config/messages.inc.php:23
msgid "Show "Drop database" link to normal users"
-msgstr ""
+msgstr "دکھائیں "چھوڑیں کوائف" عام صارفین سے ربط کریں"
#: libraries/config/messages.inc.php:24
msgid ""
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA4-296-g60933d6
by Michal Čihař 15 Mar '11
by Michal Čihař 15 Mar '11
15 Mar '11
The branch, master has been updated
via 60933d667b3ebfb498a707ce2353de765c43c851 (commit)
from 13fea458fb2e8b87f5928228b830006cc0f9d754 (commit)
- Log -----------------------------------------------------------------
commit 60933d667b3ebfb498a707ce2353de765c43c851
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Mar 15 08:07:13 2011 +0100
bug #3206876 [core] Work without mbstring installed.
This is patch from upstream php-gettext, which will be included in next
release there.
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/php-gettext/gettext.inc | 13 ++++++-------
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 7e8165d..0bd7a8a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -146,6 +146,7 @@
- rfe #1312657 [dbi] Default to mysqli extension.
- rfe #1168350 [interface] Add clear button to SQL edit box.
- [core] Update library PHPExcel to version 1.7.6
+- bug #3206876 [core] Work without mbstring installed.
3.3.10.0 (not yet released)
- patch #3147400 [structure] Aria table size printed as unknown,
diff --git a/libraries/php-gettext/gettext.inc b/libraries/php-gettext/gettext.inc
index 00b9666..c9f7dc0 100644
--- a/libraries/php-gettext/gettext.inc
+++ b/libraries/php-gettext/gettext.inc
@@ -174,14 +174,13 @@ function _get_codeset($domain=null) {
* Convert the given string to the encoding set by bind_textdomain_codeset.
*/
function _encode($text) {
+ $target_encoding = _get_codeset();
+ if (function_exists("mb_detect_encoding")) {
$source_encoding = mb_detect_encoding($text);
- $target_encoding = _get_codeset();
- if ($source_encoding != $target_encoding) {
- return mb_convert_encoding($text, $target_encoding, $source_encoding);
- }
- else {
- return $text;
- }
+ if ($source_encoding != $target_encoding)
+ $text = mb_convert_encoding($text, $target_encoding, $source_encoding);
+ }
+ return $text;
}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. 0f67e41bddb104d110a554ca4a410cd7317adde3
by Michal Čihař 15 Mar '11
by Michal Čihař 15 Mar '11
15 Mar '11
The branch, master has been updated
via 0f67e41bddb104d110a554ca4a410cd7317adde3 (commit)
via b565aaa609500c0c7647be1cf636373f9285fe32 (commit)
via 47eb5a01e7b8aaff0b429535ccdaf2d03bcfbcc5 (commit)
via f054561d740ab2143d55fd68823aee43d4bb3a8d (commit)
via 6dc1714dbd0a03e0959264973f98a9d99af546c2 (commit)
via 84d55cd52cb7432879eaac758789e6a70babbf07 (commit)
via 11fb9c72ea2bbdd43169f0533c9c045f1bde8def (commit)
via 3711eae36494563604c60c58d7f2dbc7703ae1b2 (commit)
via fead0f832285de968ac5ecb853b7c549a3321d81 (commit)
via ec8c327870c6aaf3a46b2ec3640dbd492625abc2 (commit)
via 1a48781360eaf61d30ad247e2b31d6067101aee0 (commit)
via aebf0319ac8fb724f10f7522c1223117ed72de01 (commit)
via 4cfadef1916909a93e99171311645cbb645066c1 (commit)
via aef2fa512190a1b77890e93099102d1d3973c914 (commit)
via 0d04c170046cd5b0fc72f694b4a29699df18901d (commit)
via c893da50f3b4886472123d01a06aa94c47d845ee (commit)
via a0ea1a770439b8ca9d209a76128d0230477a4e8a (commit)
via 069e6a86c557eb83e8b8dfe9152d7bad6a9429a0 (commit)
via f9c27d77e2a7ddd3cec006a333399afcbc65752f (commit)
via dcfee30a623d3337ccc4c8a5188fba8046d504d5 (commit)
via c0227dff080889bf7fbc0301ba6d86aea84db4a8 (commit)
via d4f795fd52fabb47040bbba54d150b2df6a61685 (commit)
via 50af3f9b4b22a43db9c404e695db8f039b9e33c5 (commit)
via be8fd9622c835b4714b696735417889181b50327 (commit)
via afac977843f5846ac5599d30b70765aded349dba (commit)
via 502886701ed01741b914b4f42669909ea12dfee9 (commit)
via 3350c0974e1647cb377532c30e9305c65776a76f (commit)
via 990a20856c010f64177590b239f8f7c38cca34f3 (commit)
via f255f3456521fcb447ece5dceb5bca4dbffb44d0 (commit)
via a1438b2f4c20bb6741b7545cd7592548525fba95 (commit)
via 0f630fb0b20667c4d3900f80614fd98ebc130777 (commit)
via b3888fb00714569324292e7dea4d6c5a37c5a6bb (commit)
via 50b483fde2e368856674de5c843db24b7068a0f0 (commit)
via dfa0c0309cc655f3b28f393aad7e27e69a04e3ee (commit)
via 825929377e2da7dadaa97081738d81e62abe4ffe (commit)
via b1bcac0b7b3bcf85f8a76f5a8897950a4535a0c7 (commit)
via d05da7bbaa8990a99c342bf3d2c9ae9decedd25c (commit)
via ca064155f244e7acbc7bc59c92233c38a31566cd (commit)
via 44f0c7b2ee554b9e849186cc3d7fb3e66b080ec8 (commit)
via dd0bd2ea54f7a8b4c832131b279d98615dabb0e8 (commit)
via cf5c205b38c7d98d8f6a80516bb16ec0ad8ace46 (commit)
via a406d3190b9be35d30ac4ed3d8b1b5841f5ebcbb (commit)
via d2ce77eebb8138e87586c712fb776d6329d01dd0 (commit)
via ff538e4f97ebd515c396e27adf5bb6ca29577f34 (commit)
via 290baa2f1f0157d0285acff2e99147435ce15cb3 (commit)
via c33ea53b8ccafbad40b66f25336b1fef6b608bec (commit)
via 3ced7f9423062e061c6c79099a939cd0208249da (commit)
via 8fae86b765983e4988591f0acfe773cd361ff88e (commit)
via a3d52a7be5b2bccaa384e273e4a1b231f64cfb92 (commit)
via 338e6465c940e634ce1539826bc3652ec5290066 (commit)
via 7aab50e826d3db2dbfe35f17104319ca18d2ed2e (commit)
via b4002df1d3d696dcb53782d0ce87ebdce9549a86 (commit)
via 008222040cc84ced4c9de335c00ecf00c940dfde (commit)
via 3be456a988b485a6aacb36ab760a092f9f1a0b11 (commit)
via 602d827229b4fc01a2da1c9715c98a71b0ff78be (commit)
via b7ef6e986b8b2d46db9b04c2aeab7d831463ec8b (commit)
via 4303ef79b3440a7807035f58b824bc0c77bff797 (commit)
via e865ae6e6fcf56ef16bfeddeab1cf4b16996023c (commit)
via f6a3d3d851bd3c57fc3266c26f8eecf390beed75 (commit)
via 42e49aba006a5c490c9ab3a74ed8919774fd123f (commit)
via ee5bbee3508151f6dfc8f3e63732eb6ddce60d0e (commit)
via d541ea85e84e5d6d56dea9a22e0f64824fb8e86a (commit)
via c44aa46efd65cf5a6307cd4a45e0503d8da5fb9a (commit)
via c9678b1872971f6e268a9f9643fe56c501fd1d77 (commit)
via 5ead5a62dca63cb5b426b115f76e45f13630e388 (commit)
via 07c1952e7f9d9e4606e7fac7b5c7be3bbd652978 (commit)
via f7d327ab1d562bbe0fc12fb7360b315a97101336 (commit)
via dfa01aaa338c2459b5aff3d3a9be0ae80b87989b (commit)
via 75941fda411ed0fa3d82e4fe70b21067d15e7747 (commit)
via 37ae27b88b6af9742bcf6d00f3b58c3e82043d88 (commit)
via 043e75000c4c98e6fbf4b3441f89b83b26c13725 (commit)
via 6240bf81443f86a147b5cdc706db2ea034f8649f (commit)
via 08d6d163dede579665b66f3906fe5f48066c580b (commit)
via 50f84610e4e709b9c3c680850b98a9dc5d39dedd (commit)
via 527116d3bd10dea7ee814ec83f0bdef0b44d39d9 (commit)
via f645469d635f24b032d5e1043c682243cf2c843c (commit)
via e0af15f9470c9a8293fc73e1a63e68228e9926f2 (commit)
via b87dc850ce11f92c3fa620b09a7307d465e28ea4 (commit)
via 6dca349e5ab45ce02475b5da7bcd9813930ba428 (commit)
via 773a68aa1112f214deb49e76bfff1db05856fa18 (commit)
via 418816940bc5f5a0b14d2a6acc750e098f7a1743 (commit)
via b2866b990792558e9fd38eafb1c15ee83b06748f (commit)
via 3f02e87affd3051fc5e5ae4d2863aa3c17776d5a (commit)
via 76dcff9dce3dc303b43349d7397c874df5bf6935 (commit)
via 5a7c14a3a598d84d323f0c954fece77de0553dc6 (commit)
via b7f66d38c76cef5ad22e14a7c4615836d5c662f9 (commit)
via 282bd418c23011b13135536c262d5f31ad38a4f7 (commit)
via 8bd619cad9b6dc6f5141743794779ff0804ab5f0 (commit)
via f9fd35d0e86a64aa892ff4fda6af219fbfbf098c (commit)
via 1801c8db9287ab8205be17d7a266055d5af2efc8 (commit)
via 4bdf5ee504155734016407ebd51085fabdfda8c1 (commit)
via 61d097169902eab313bc05d4ef280d31c2e2d12e (commit)
via 2c8b0df23225c2851e67d77aeeeb49c697de493d (commit)
via 509e7d2306806c20e1ff546d980ec1dfa49b381f (commit)
via 467f42488e8e41671d33787fe7d432fb7fa5947f (commit)
via dd777fd3c5adb071da4a810e45a7712640a47fa8 (commit)
via 85ae0e8578f047bc5582f5252d8a80f124c8abe7 (commit)
via 1b8451e711bcadd07464e6b994246c755f6ea5af (commit)
via e05b0f3841ebc1f499a1febe344f9624360732a7 (commit)
via 5386cd75cdd3049e293b912104fda394bd14c8a8 (commit)
via 2972c3b772b3eacd299a3d35d62de4a6a8c87a0b (commit)
via a1874a3364ea0c85b189d4565abef258d906be25 (commit)
via f84a0d5952cfa86f5e6ff05871f29e5f981c8995 (commit)
via fc5c03403c20a945f54819dd20ebe357cd5f0b4b (commit)
via 29bce155487d3f4fe4e5f94b5873cbcdcdf8eac9 (commit)
via 566ae4701a6c4c46458f0d6bcefcb018c180f381 (commit)
via 975ac5ef52584bd428c02c25333581843cf9cf4a (commit)
via c25ee3439a9128e2b3bb8cda1c82d0febbc52226 (commit)
via 89dc8680441690cb74c09748da0a7555489a19c8 (commit)
via ae47b8d0d96f536b84bf30254c8af0ceb0e9a54c (commit)
via f8af5f26296eb582b7b3c3753f704775a380925b (commit)
via 70e211323061dce5f47b2b60fccee8ab724636a0 (commit)
via d8ba111c73ac1f2d011d072431e8e9dd64010fca (commit)
via f37d6871c17289714a00fbce0e3aa17312323865 (commit)
via 24e82278e3f21e51f1f6237af9bd969673222a84 (commit)
via 271ede0d10dadb5a81629dbdd5d7cfb447aabb9b (commit)
via 62f699e77e6a89d18415388ad9704076e467cf63 (commit)
via 397dfde8912496e0fc785b5ad60a8e342a78c61c (commit)
via 38423115ddc95c26eb7316fd05d59eaaa4894f6b (commit)
via 5a6c9fad9dd95b2a353bc1d402e1e3495720f844 (commit)
via d948bd738a8e7e7dcdf131e176cf8968c89b4337 (commit)
via a6b7ca246ab246b6bb38d1865888cc4c914ae516 (commit)
via 20c0efdda3e0daf232f9d9913f8eb669332d4cf1 (commit)
via 18bbcbfeaff631217c8c56d21fb8ee8d591500b1 (commit)
via a497c0cf6b6f5e3bdcec83632377ea50d48779bd (commit)
via 90493f364f3a7d802968e123022979cfa8023630 (commit)
via 32c5f51dd8ef2e1298705d38eeb204d69206c057 (commit)
from 9488058fe4e7238e12e9288415340f2f45342350 (commit)
- Log -----------------------------------------------------------------
commit 0f67e41bddb104d110a554ca4a410cd7317adde3
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Mar 15 08:04:16 2011 +0100
Update translated docs
commit b565aaa609500c0c7647be1cf636373f9285fe32
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:36:39 2011 +0200
Translation update done using Pootle.
commit 47eb5a01e7b8aaff0b429535ccdaf2d03bcfbcc5
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:36:29 2011 +0200
Translation update done using Pootle.
commit f054561d740ab2143d55fd68823aee43d4bb3a8d
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:36:14 2011 +0200
Translation update done using Pootle.
commit 6dc1714dbd0a03e0959264973f98a9d99af546c2
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:36:02 2011 +0200
Translation update done using Pootle.
commit 84d55cd52cb7432879eaac758789e6a70babbf07
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:35:15 2011 +0200
Translation update done using Pootle.
commit 11fb9c72ea2bbdd43169f0533c9c045f1bde8def
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:34:27 2011 +0200
Translation update done using Pootle.
commit 3711eae36494563604c60c58d7f2dbc7703ae1b2
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:34:20 2011 +0200
Translation update done using Pootle.
commit fead0f832285de968ac5ecb853b7c549a3321d81
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:34:19 2011 +0200
Translation update done using Pootle.
commit ec8c327870c6aaf3a46b2ec3640dbd492625abc2
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:33:15 2011 +0200
Translation update done using Pootle.
commit 1a48781360eaf61d30ad247e2b31d6067101aee0
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:32:34 2011 +0200
Translation update done using Pootle.
commit aebf0319ac8fb724f10f7522c1223117ed72de01
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:32:21 2011 +0200
Translation update done using Pootle.
commit 4cfadef1916909a93e99171311645cbb645066c1
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:32:09 2011 +0200
Translation update done using Pootle.
commit aef2fa512190a1b77890e93099102d1d3973c914
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:31:55 2011 +0200
Translation update done using Pootle.
commit 0d04c170046cd5b0fc72f694b4a29699df18901d
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:31:35 2011 +0200
Translation update done using Pootle.
commit c893da50f3b4886472123d01a06aa94c47d845ee
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:28:41 2011 +0200
Translation update done using Pootle.
commit a0ea1a770439b8ca9d209a76128d0230477a4e8a
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:27:54 2011 +0200
Translation update done using Pootle.
commit 069e6a86c557eb83e8b8dfe9152d7bad6a9429a0
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:27:43 2011 +0200
Translation update done using Pootle.
commit f9c27d77e2a7ddd3cec006a333399afcbc65752f
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:27:29 2011 +0200
Translation update done using Pootle.
commit dcfee30a623d3337ccc4c8a5188fba8046d504d5
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:26:43 2011 +0200
Translation update done using Pootle.
commit c0227dff080889bf7fbc0301ba6d86aea84db4a8
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:24:54 2011 +0200
Translation update done using Pootle.
commit d4f795fd52fabb47040bbba54d150b2df6a61685
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:24:25 2011 +0200
Translation update done using Pootle.
commit 50af3f9b4b22a43db9c404e695db8f039b9e33c5
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:24:15 2011 +0200
Translation update done using Pootle.
commit be8fd9622c835b4714b696735417889181b50327
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:24:01 2011 +0200
Translation update done using Pootle.
commit afac977843f5846ac5599d30b70765aded349dba
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 06:23:59 2011 +0200
Translation update done using Pootle.
commit 502886701ed01741b914b4f42669909ea12dfee9
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 01:14:36 2011 +0200
Translation update done using Pootle.
commit 3350c0974e1647cb377532c30e9305c65776a76f
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 01:11:40 2011 +0200
Translation update done using Pootle.
commit 990a20856c010f64177590b239f8f7c38cca34f3
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 01:10:41 2011 +0200
Translation update done using Pootle.
commit f255f3456521fcb447ece5dceb5bca4dbffb44d0
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 01:09:38 2011 +0200
Translation update done using Pootle.
commit a1438b2f4c20bb6741b7545cd7592548525fba95
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 01:09:30 2011 +0200
Translation update done using Pootle.
commit 0f630fb0b20667c4d3900f80614fd98ebc130777
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 01:06:12 2011 +0200
Translation update done using Pootle.
commit b3888fb00714569324292e7dea4d6c5a37c5a6bb
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 01:05:57 2011 +0200
Translation update done using Pootle.
commit 50b483fde2e368856674de5c843db24b7068a0f0
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 01:05:15 2011 +0200
Translation update done using Pootle.
commit dfa0c0309cc655f3b28f393aad7e27e69a04e3ee
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 01:04:44 2011 +0200
Translation update done using Pootle.
commit 825929377e2da7dadaa97081738d81e62abe4ffe
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 01:03:06 2011 +0200
Translation update done using Pootle.
commit b1bcac0b7b3bcf85f8a76f5a8897950a4535a0c7
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:58:34 2011 +0200
Translation update done using Pootle.
commit d05da7bbaa8990a99c342bf3d2c9ae9decedd25c
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:57:58 2011 +0200
Translation update done using Pootle.
commit ca064155f244e7acbc7bc59c92233c38a31566cd
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:57:48 2011 +0200
Translation update done using Pootle.
commit 44f0c7b2ee554b9e849186cc3d7fb3e66b080ec8
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:56:04 2011 +0200
Translation update done using Pootle.
commit dd0bd2ea54f7a8b4c832131b279d98615dabb0e8
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:55:28 2011 +0200
Translation update done using Pootle.
commit cf5c205b38c7d98d8f6a80516bb16ec0ad8ace46
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:55:03 2011 +0200
Translation update done using Pootle.
commit a406d3190b9be35d30ac4ed3d8b1b5841f5ebcbb
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:53:33 2011 +0200
Translation update done using Pootle.
commit d2ce77eebb8138e87586c712fb776d6329d01dd0
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:53:17 2011 +0200
Translation update done using Pootle.
commit ff538e4f97ebd515c396e27adf5bb6ca29577f34
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:53:00 2011 +0200
Translation update done using Pootle.
commit 290baa2f1f0157d0285acff2e99147435ce15cb3
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:50:56 2011 +0200
Translation update done using Pootle.
commit c33ea53b8ccafbad40b66f25336b1fef6b608bec
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:50:38 2011 +0200
Translation update done using Pootle.
commit 3ced7f9423062e061c6c79099a939cd0208249da
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:49:06 2011 +0200
Translation update done using Pootle.
commit 8fae86b765983e4988591f0acfe773cd361ff88e
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:48:52 2011 +0200
Translation update done using Pootle.
commit a3d52a7be5b2bccaa384e273e4a1b231f64cfb92
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:47:38 2011 +0200
Translation update done using Pootle.
commit 338e6465c940e634ce1539826bc3652ec5290066
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:46:56 2011 +0200
Translation update done using Pootle.
commit 7aab50e826d3db2dbfe35f17104319ca18d2ed2e
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:42:56 2011 +0200
Translation update done using Pootle.
commit b4002df1d3d696dcb53782d0ce87ebdce9549a86
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:42:33 2011 +0200
Translation update done using Pootle.
commit 008222040cc84ced4c9de335c00ecf00c940dfde
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:42:04 2011 +0200
Translation update done using Pootle.
commit 3be456a988b485a6aacb36ab760a092f9f1a0b11
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:40:41 2011 +0200
Translation update done using Pootle.
commit 602d827229b4fc01a2da1c9715c98a71b0ff78be
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:40:06 2011 +0200
Translation update done using Pootle.
commit b7ef6e986b8b2d46db9b04c2aeab7d831463ec8b
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:39:52 2011 +0200
Translation update done using Pootle.
commit 4303ef79b3440a7807035f58b824bc0c77bff797
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:39:12 2011 +0200
Translation update done using Pootle.
commit e865ae6e6fcf56ef16bfeddeab1cf4b16996023c
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:38:52 2011 +0200
Translation update done using Pootle.
commit f6a3d3d851bd3c57fc3266c26f8eecf390beed75
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Mar 15 00:37:46 2011 +0200
Translation update done using Pootle.
commit 42e49aba006a5c490c9ab3a74ed8919774fd123f
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 21:53:55 2011 +0200
Translation update done using Pootle.
commit ee5bbee3508151f6dfc8f3e63732eb6ddce60d0e
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 21:53:44 2011 +0200
Translation update done using Pootle.
commit d541ea85e84e5d6d56dea9a22e0f64824fb8e86a
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 21:53:18 2011 +0200
Translation update done using Pootle.
commit c44aa46efd65cf5a6307cd4a45e0503d8da5fb9a
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 21:52:11 2011 +0200
Translation update done using Pootle.
commit c9678b1872971f6e268a9f9643fe56c501fd1d77
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 21:50:57 2011 +0200
Translation update done using Pootle.
commit 5ead5a62dca63cb5b426b115f76e45f13630e388
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 21:46:25 2011 +0200
Translation update done using Pootle.
commit 07c1952e7f9d9e4606e7fac7b5c7be3bbd652978
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 21:46:06 2011 +0200
Translation update done using Pootle.
commit f7d327ab1d562bbe0fc12fb7360b315a97101336
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 21:26:36 2011 +0200
Translation update done using Pootle.
commit dfa01aaa338c2459b5aff3d3a9be0ae80b87989b
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 21:22:30 2011 +0200
Translation update done using Pootle.
commit 75941fda411ed0fa3d82e4fe70b21067d15e7747
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 21:21:44 2011 +0200
Translation update done using Pootle.
commit 37ae27b88b6af9742bcf6d00f3b58c3e82043d88
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 21:21:23 2011 +0200
Translation update done using Pootle.
commit 043e75000c4c98e6fbf4b3441f89b83b26c13725
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 21:05:01 2011 +0200
Translation update done using Pootle.
commit 6240bf81443f86a147b5cdc706db2ea034f8649f
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 21:04:27 2011 +0200
Translation update done using Pootle.
commit 08d6d163dede579665b66f3906fe5f48066c580b
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 21:04:00 2011 +0200
Translation update done using Pootle.
commit 50f84610e4e709b9c3c680850b98a9dc5d39dedd
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 21:03:42 2011 +0200
Translation update done using Pootle.
commit 527116d3bd10dea7ee814ec83f0bdef0b44d39d9
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 21:03:03 2011 +0200
Translation update done using Pootle.
commit f645469d635f24b032d5e1043c682243cf2c843c
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 21:02:51 2011 +0200
Translation update done using Pootle.
commit e0af15f9470c9a8293fc73e1a63e68228e9926f2
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 21:02:15 2011 +0200
Translation update done using Pootle.
commit b87dc850ce11f92c3fa620b09a7307d465e28ea4
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 21:02:04 2011 +0200
Translation update done using Pootle.
commit 6dca349e5ab45ce02475b5da7bcd9813930ba428
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 21:00:38 2011 +0200
Translation update done using Pootle.
commit 773a68aa1112f214deb49e76bfff1db05856fa18
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:59:58 2011 +0200
Translation update done using Pootle.
commit 418816940bc5f5a0b14d2a6acc750e098f7a1743
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:59:49 2011 +0200
Translation update done using Pootle.
commit b2866b990792558e9fd38eafb1c15ee83b06748f
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:58:24 2011 +0200
Translation update done using Pootle.
commit 3f02e87affd3051fc5e5ae4d2863aa3c17776d5a
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:58:12 2011 +0200
Translation update done using Pootle.
commit 76dcff9dce3dc303b43349d7397c874df5bf6935
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:57:18 2011 +0200
Translation update done using Pootle.
commit 5a7c14a3a598d84d323f0c954fece77de0553dc6
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:57:00 2011 +0200
Translation update done using Pootle.
commit b7f66d38c76cef5ad22e14a7c4615836d5c662f9
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:56:25 2011 +0200
Translation update done using Pootle.
commit 282bd418c23011b13135536c262d5f31ad38a4f7
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:53:15 2011 +0200
Translation update done using Pootle.
commit 8bd619cad9b6dc6f5141743794779ff0804ab5f0
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:51:33 2011 +0200
Translation update done using Pootle.
commit f9fd35d0e86a64aa892ff4fda6af219fbfbf098c
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:51:09 2011 +0200
Translation update done using Pootle.
commit 1801c8db9287ab8205be17d7a266055d5af2efc8
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:50:16 2011 +0200
Translation update done using Pootle.
commit 4bdf5ee504155734016407ebd51085fabdfda8c1
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:39:37 2011 +0200
Translation update done using Pootle.
commit 61d097169902eab313bc05d4ef280d31c2e2d12e
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:39:24 2011 +0200
Translation update done using Pootle.
commit 2c8b0df23225c2851e67d77aeeeb49c697de493d
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:39:09 2011 +0200
Translation update done using Pootle.
commit 509e7d2306806c20e1ff546d980ec1dfa49b381f
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:38:46 2011 +0200
Translation update done using Pootle.
commit 467f42488e8e41671d33787fe7d432fb7fa5947f
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:38:11 2011 +0200
Translation update done using Pootle.
commit dd777fd3c5adb071da4a810e45a7712640a47fa8
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:37:50 2011 +0200
Translation update done using Pootle.
commit 85ae0e8578f047bc5582f5252d8a80f124c8abe7
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:37:13 2011 +0200
Translation update done using Pootle.
commit 1b8451e711bcadd07464e6b994246c755f6ea5af
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:36:51 2011 +0200
Translation update done using Pootle.
commit e05b0f3841ebc1f499a1febe344f9624360732a7
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:36:34 2011 +0200
Translation update done using Pootle.
commit 5386cd75cdd3049e293b912104fda394bd14c8a8
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:30:42 2011 +0200
Translation update done using Pootle.
commit 2972c3b772b3eacd299a3d35d62de4a6a8c87a0b
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:30:28 2011 +0200
Translation update done using Pootle.
commit a1874a3364ea0c85b189d4565abef258d906be25
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:24:45 2011 +0200
Translation update done using Pootle.
commit f84a0d5952cfa86f5e6ff05871f29e5f981c8995
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:24:15 2011 +0200
Translation update done using Pootle.
commit fc5c03403c20a945f54819dd20ebe357cd5f0b4b
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:23:24 2011 +0200
Translation update done using Pootle.
commit 29bce155487d3f4fe4e5f94b5873cbcdcdf8eac9
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:22:49 2011 +0200
Translation update done using Pootle.
commit 566ae4701a6c4c46458f0d6bcefcb018c180f381
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 20:22:00 2011 +0200
Translation update done using Pootle.
commit 975ac5ef52584bd428c02c25333581843cf9cf4a
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 19:30:45 2011 +0200
Translation update done using Pootle.
commit c25ee3439a9128e2b3bb8cda1c82d0febbc52226
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 19:29:26 2011 +0200
Translation update done using Pootle.
commit 89dc8680441690cb74c09748da0a7555489a19c8
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 19:25:09 2011 +0200
Translation update done using Pootle.
commit ae47b8d0d96f536b84bf30254c8af0ceb0e9a54c
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 19:24:56 2011 +0200
Translation update done using Pootle.
commit f8af5f26296eb582b7b3c3753f704775a380925b
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 19:21:06 2011 +0200
Translation update done using Pootle.
commit 70e211323061dce5f47b2b60fccee8ab724636a0
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 19:20:54 2011 +0200
Translation update done using Pootle.
commit d8ba111c73ac1f2d011d072431e8e9dd64010fca
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 19:20:08 2011 +0200
Translation update done using Pootle.
commit f37d6871c17289714a00fbce0e3aa17312323865
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 19:19:44 2011 +0200
Translation update done using Pootle.
commit 24e82278e3f21e51f1f6237af9bd969673222a84
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 19:19:39 2011 +0200
Translation update done using Pootle.
commit 271ede0d10dadb5a81629dbdd5d7cfb447aabb9b
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 19:18:30 2011 +0200
Translation update done using Pootle.
commit 62f699e77e6a89d18415388ad9704076e467cf63
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 19:13:52 2011 +0200
Translation update done using Pootle.
commit 397dfde8912496e0fc785b5ad60a8e342a78c61c
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 19:13:07 2011 +0200
Translation update done using Pootle.
commit 38423115ddc95c26eb7316fd05d59eaaa4894f6b
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 19:12:50 2011 +0200
Translation update done using Pootle.
commit 5a6c9fad9dd95b2a353bc1d402e1e3495720f844
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 14:15:23 2011 +0200
Translation update done using Pootle.
commit d948bd738a8e7e7dcdf131e176cf8968c89b4337
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 12:40:41 2011 +0200
Translation update done using Pootle.
commit a6b7ca246ab246b6bb38d1865888cc4c914ae516
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Mar 14 12:36:23 2011 +0200
Translation update done using Pootle.
commit 20c0efdda3e0daf232f9d9913f8eb669332d4cf1
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 06:55:38 2011 +0200
Translation update done using Pootle.
commit 18bbcbfeaff631217c8c56d21fb8ee8d591500b1
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 06:06:23 2011 +0200
Translation update done using Pootle.
commit a497c0cf6b6f5e3bdcec83632377ea50d48779bd
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 06:06:09 2011 +0200
Translation update done using Pootle.
commit 90493f364f3a7d802968e123022979cfa8023630
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 06:05:02 2011 +0200
Translation update done using Pootle.
commit 32c5f51dd8ef2e1298705d38eeb204d69206c057
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Mon Mar 14 06:04:48 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
output/es/Documentation.html | 371 ++++++++++++++++++++++--------------------
output/tr/Documentation.html | 137 ++++++++--------
po/es.po | 235 ++++++++++++++++++++-------
po/tr.po | 79 +++++++--
4 files changed, 503 insertions(+), 319 deletions(-)
diff --git a/output/es/Documentation.html b/output/es/Documentation.html
index ad65786..b5be12b 100644
--- a/output/es/Documentation.html
+++ b/output/es/Documentation.html
@@ -1603,228 +1603,239 @@ mostrado.</dd>
<dd>Define si mostrar o no el logo de phpMyAdmin en la porció superior del marco
izquierdo. El valor predeterminado es <tt>TRUE</tt>.</dd>
<dt id="cfg_LeftLogoLink">cadena $cfg['LeftLogoLink']</dt>
- <dd>Enter URL where logo in the navigation frame will point to. For use
-especially with self made theme which changes this. The default value for
-this is <tt>main.php</tt>.</dd>
-
- <dt id="cfg_LeftLogoLinkWindow">$cfg['LeftLogoLinkWindow'] string</dt>
- <dd>Whether to open the linked page in the main window (<tt>main</tt>) or in a
-new one (<tt>new</tt>). Note: use <tt>new</tt> if you are linking to
-<tt>phpmyadmin.net</tt>.</dd>
-
- <dt id="cfg_LeftDisplayTableFilterMinimum">$cfg['LeftDisplayTableFilterMinimum'] integer</dt>
- <dd>Defines the minimum number of tables to display a JavaScript filter box
-above the list of tables in the left frame. Defaults to <tt>30</tt>. To
-disable the filter completely some high number can he used (e.g. 9999)</dd>
-
- <dt id="cfg_LeftDisplayServers">$cfg['LeftDisplayServers'] boolean</dt>
- <dd>Defines whether or not to display a server choice at the top of the left
-frame. Defaults to FALSE.</dd>
- <dt id="cfg_DisplayServersList">$cfg['DisplayServersList'] boolean</dt>
- <dd>Defines whether to display this server choice as links instead of in a
-drop-down. Defaults to FALSE (drop-down).</dd>
- <dt id="cfg_DisplayDatabasesList">$cfg['DisplayDatabasesList'] boolean or text</dt>
- <dd>Defines whether to display database choice in light navigation frame as
-links instead of in a drop-down. Defaults to 'auto' - on main page list is
-shown, when database is selected, only drop down is displayed.</dd>
-
- <dt id="cfg_LeftDefaultTabTable">$cfg['LeftDefaultTabTable'] string</dt>
- <dd>Defines the tab displayed by default when clicking the small icon next to
-each table name in the navigation panel. Possible values:
+ <dd>Define la URL a la que apuntará el logo del marco de navegación. Para usar
+especialmente en temas personalizados que cambian esto. El valor
+predeterminado es <tt>main.php</tt>.</dd>
+
+ <dt id="cfg_LeftLogoLinkWindow">cadena $cfg['LeftLogoLinkWindow']</dt>
+ <dd>Si se abre la página enlazada en la ventana principal (<tt>main</tt>) o en
+una neva ventana (<tt>new</tt>). Nota: usar <tt>new</tt> si se está
+enlazando a <tt>phpmyadmin.net</tt>.</dd>
+
+ <dt id="cfg_LeftDisplayTableFilterMinimum">entero $cfg['LeftDisplayTableFilterMinimum']</dt>
+ <dd>Define el mínimo nombre de tablas a mostrar en la caja de filtro JavaScript
+sobre la lista de tablas en el marco izquierdo. El valor predeterminador es
+<tt>30</tt>. Para desactivar este filtro completamente se puede utilizar un
+número alto (por ejemplo: 9999).</dd>
+
+ <dt id="cfg_LeftDisplayServers">booleano $cfg['LeftDisplayServers']</dt>
+ <dd>Define si se muestra una elección de servidor en la parte superior del marco
+izquierdo. El valor predeterminado es FALSE.</dd>
+ <dt id="cfg_DisplayServersList">booleano $cfg['DisplayServersList']</dt>
+ <dd>Define si se muestra la elección de servidores como enlaces en lugar de una
+lista deplegable. El valor predeterminado es FALSE (muestra una lista
+desplegable).</dd>
+ <dt id="cfg_DisplayDatabasesList">booleano o texto $cfg['DisplayDatabasesList']</dt>
+ <dd>Define si se muestra la elección de la base de datos en el marco de
+navegación como enlaces en lugar de una lista desplegable. El valor
+predeterminado es 'auto', se muestra el enlace en la página principal pero
+sólo la lista desplegable es mostrada cuando una base de datos está
+seleccionada.</dd>
+
+ <dt id="cfg_LeftDefaultTabTable">cadena $cfg['LeftDefaultTabTable']</dt>
+ <dd>Define la pestaña mostrada al pulsar sobre el pequeño icono junto a cada
+nombre de tabla en el panel de navegación. Valores posibles:
"tbl_structure.php", "tbl_sql.php",
"tbl_select.php", "tbl_change.php" or
"sql.php".</dd>
- <dt id="cfg_ShowStats">$cfg['ShowStats'] boolean</dt>
- <dd>Defines whether or not to display space usage and statistics about databases
-and tables.<br />
- Note that statistics requires at least MySQL 3.23.3 and that, at this date,
-MySQL doesn't return such information for Berkeley DB tables.</dd>
+ <dt id="cfg_ShowStats">booleano $cfg['ShowStats']</dt>
+ <dd>Define si se muestra el espacio utilizado y estadística sobre tablas y bases
+de datos o no.<br />
+ Notar que las estadísticas requieren al menos MySQL 3.23.3 y que, a esta
+fecha, MySQL no devuelve dicha información para tablas de bases de datos
+Berkeley.</dd>
- <dt><span id="cfg_ShowServerInfo">$cfg['ShowServerInfo'] </span>boolean</dt>
- <dd>Defines whether to display detailed server information on main page. You
-can additionally hide more information by using <tt><a
+ <dt>booleano <span id="cfg_ShowServerInfo">$cfg['ShowServerInfo']</span></dt>
+ <dd>Define si mostrar información detallada del servidor en la página
+principal. Se puede esconder más información todavía utilizando <tt><a
href="#cfg_Servers_verbose">$cfg['Servers'][$i]['verbose']</a></tt>.
</dd>
- <dt><span id="cfg_ShowPhpInfo">$cfg['ShowPhpInfo'] </span>boolean<br />
- <span id="cfg_ShowChgPassword">$cfg['ShowChgPassword'] </span>boolean<br />
- <span id="cfg_ShowCreateDb">$cfg['ShowCreateDb'] </span>boolean
+ <dt>booleano <span id="cfg_ShowPhpInfo">$cfg['ShowPhpInfo']</span><br />
+ booleano <span id="cfg_ShowChgPassword">$cfg['ShowChgPassword']</span><br />
+ booleano <span id="cfg_ShowCreateDb">$cfg['ShowCreateDb']</span>
</dt>
- <dd>Defines whether to display the "PHP information" and "Change
-password " links and form for creating database or not at the starting
-main (right) frame. This setting does not check MySQL commands entered
-directly.<br /><br />
+ <dd>Define si mostrar o no el formulario para crear bases de datos y los enlaces
+"información PHP" y "Cambiar contraseña" en el marco
+inicial principal (derecho). Esta configuración no verifica las órdenes
+MySQL ingresadas directamente.<br /><br />
- Please note that to block the usage of phpinfo() in scripts, you have to put
-this in your <i>php.ini</i>:
+ Porfavor note que para bloquear el uso de phpinfo() en los scripts se debe
+agregar lo siguiente en <i>php.ini</i>:
<pre>disable_functions = phpinfo()</pre>
- Also note that enabling the "Change password " link has no effect
-with "config" authentication mode: because of the hard coded
-password value in the configuration file, end users can't be allowed to
-change their passwords.</dd>
+ También note que activar el enlace "Cambiar contraseña" no tiene
+efecto en el modo de autenticación "config" debido al valor de la
+contraseña embebido en el archivo de configuración los usuarios no pueden
+cambiar sus contraseñas.</dd>
- <dt id="cfg_SuggestDBName">$cfg['SuggestDBName'] boolean</dt>
- <dd>Defines whether to suggest a database name on the "Create
-Database" form or to keep the textfield empty.</dd>
+ <dt id="cfg_SuggestDBName">booleano $cfg['SuggestDBName']</dt>
+ <dd>Define si se debe sugerir un nombre de base de datos en el formulario para
+crear base de datos o se mantiene en campo de texto vacío.</dd>
- <dt id="cfg_NavigationBarIconic">$cfg['NavigationBarIconic'] string</dt>
- <dd>Defines whether navigation bar buttons and the right panel top menu contain
-text or symbols only. A value of TRUE displays icons, FALSE displays text
-and 'both' displays both icons and text.</dd>
+ <dt id="cfg_NavigationBarIconic">cadena $cfg['NavigationBarIconic']</dt>
+ <dd>Si los botones de la barra de navegación y el menú superior del panel
+derecho contienen texto o sólo símbolos. Un valor de TRUE muestra los
+iconos, FALSE muestra texto y 'both' muestra tanto iconos como texto.</dd>
- <dt id="cfg_ShowAll">$cfg['ShowAll'] boolean</dt>
- <dd>Defines whether a user should be displayed a "show all (records)"
-button in browse mode or not.</dd>
+ <dt id="cfg_ShowAll">booleano $cfg['ShowAll']</dt>
+ <dd>Define se debe mostrar un botón "mostrar todos (los registros)" en
+el modo de examinación a los usuarios o no.</dd>
- <dt id="cfg_MaxRows">$cfg['MaxRows'] integer</dt>
+ <dt id="cfg_MaxRows">entero $cfg['MaxRows']</dt>
<dd>Número de filas mostradas cuando se visualiza un juego de resultados. Si el
juego de resultados contiene más filas, aparecerán enlaces
"Anterior" y "Siguiente".</dd>
- <dt id="cfg_Order">$cfg['Order'] string [<tt>DESC</tt>|<tt>ASC</tt>|<tt>SMART</tt>]</dt>
- <dd>Defines whether columns are displayed in ascending (<tt>ASC</tt>) order, in
-descending (<tt>DESC</tt>) order or in a "smart" (<tt>SMART</tt>)
-order - I.E. descending order for columns of type TIME, DATE, DATETIME and
-TIMESTAMP, ascending order else- by default.</dd>
-
- <dt id="cfg_DisplayBinaryAsHex">$cfg['DisplayBinaryAsHex'] boolean </dt>
- <dd>Defines whether the "Show binary contents as HEX" browse option is
-ticked by default.</dd>
-
- <dt id="cfg_ProtectBinary">$cfg['ProtectBinary'] boolean or string</dt>
- <dd>Defines whether <tt>BLOB</tt> or <tt>BINARY</tt> columns are protected from
-editing when browsing a table's content. Valid values are:
- <ul><li><tt>FALSE</tt> to allow editing of all columns;</li>
- <li><tt>'blob'</tt> to allow editing of all columns except <tt>BLOBS</tt>;</li>
- <li><tt>'all'</tt> to disallow editing of all <tt>BINARY</tt> or <tt>BLOB</tt>
-columns.</li>
+ <dt id="cfg_Order">cadena $cfg['Order'] (<tt>DESC</tt>|<tt>ASC</tt>|<tt>SMART</tt>)</dt>
+ <dd>Define si las columnas son mostradas en orden ascendente (<tt>ASC</tt>),
+descendente (<tt>DESC</tt>) o en un orden "inteligente"
+(<tt>SMART</tt>); esto es, orden descendente para las columnas de tipo TIME,
+DATE, DATETIME y TIMESTAMP y ascendente para los demás.</dd>
+
+ <dt id="cfg_DisplayBinaryAsHex">booleano $cfg['DisplayBinaryAsHex'] </dt>
+ <dd>Define si la opción "Mostrar contenidos binarios como hexadecimal"
+está activada predeterminadamente.</dd>
+
+ <dt id="cfg_ProtectBinary">booleano o cadena $cfg['ProtectBinary']</dt>
+ <dd>Define si las columnas <tt>BLOB</tt> o <tt>BINARY</tt> son protegidas contra
+edición al examinar el contenido de una tabla. Los valores válidos son:
+ <ul><li><tt>FALSE</tt> para permitir la edición de todas las columnas;</li>
+ <li><tt>'blob'</tt> para permitir la edicicón de todas las columnas excepto las
+de tipo <tt>BLOB</tt>;</li>
+ <li><tt>'all'</tt> para no permitir la edición de las columnas de tipo
+<tt>BINARY</tt> o <tt>BLOB</tt>.</li>
</ul>
</dd>
- <dt id="cfg_ShowFunctionFields">$cfg['ShowFunctionFields'] boolean</dt>
- <dd>Defines whether or not MySQL functions fields should be initially displayed
-in edit/insert mode. Since version 2.10, the user can toggle this setting
-from the interface.
+ <dt id="cfg_ShowFunctionFields">booleano $cfg['ShowFunctionFields']</dt>
+ <dd>Define si los campos funcionales de MySQL deben de ser mostrados
+inicialmente en el modo de edición/inserción. Desde la versión 2.10 los
+usuarios pueden cambiar esta configuración desde la interfaz.
</dd>
- <dt id="cfg_ShowFieldTypesInDataEditView">$cfg['ShowFieldTypesInDataEditView'] boolean</dt>
- <dd>Defines whether or not type fields should be initially displayed in
-edit/insert mode. The user can toggle this setting from the interface.
+ <dt id="cfg_ShowFieldTypesInDataEditView">booleano $cfg['ShowFieldTypesInDataEditView']</dt>
+ <dd>Define si los tipos de campo deben de ser mostrados inicialmente en el modo
+de edición/inserción. Los usuarios pueden cambiar esta configuración desde
+la interfaz.
</dd>
- <dt id="cfg_CharEditing">$cfg['CharEditing'] string</dt>
- <dd>Defines which type of editing controls should be used for CHAR and VARCHAR
-columns. Possible values are:
- <ul><li>input - this allows to limit size of text to size of columns in MySQL, but
-has problems with newlines in columns</li>
- <li>textarea - no problems with newlines in columns, but also no length
-limitations</li>
+ <dt id="cfg_CharEditing">cadena $cfg['CharEditing']</dt>
+ <dd>Define el tipo de controles de edición a usar para los campos CHAR y
+VARCHAR. Los valores posibles son:
+ <ul><li>input - permite limitar la longitud del texto al tamaño de las columnas
+MySQL pero tiene problemas con los saltos de línea en las columnas</li>
+ <li>textarea - no tiene problema con saltos de línea en las columnas, pero no
+tiene limitaciones de longitud</li>
</ul>
- Default is old behavior so input.</dd>
-
- <dt id="cfg_InsertRows">$cfg['InsertRows'] integer</dt>
- <dd>Defines the maximum number of concurrent entries for the Insert page.</dd>
-
- <dt id="cfg_ForeignKeyMaxLimit">$cfg['ForeignKeyMaxLimit'] integer</dt>
- <dd>If there are fewer items than this in the set of foreign keys, then a
-drop-down box of foreign keys is presented, in the style described by the <a
-href="#cfg_ForeignKeyDropdownOrder"
-class="configrule">$cfg['ForeignKeyDropdownOrder']</a> setting.</dd>
-
- <dt id="cfg_ForeignKeyDropdownOrder">$cfg['ForeignKeyDropdownOrder'] array</dt>
- <dd>For the foreign key drop-down fields, there are several methods of display,
-offering both the key and value data. The contents of the array should be
-one or both of the following strings: <i>'content-id'</i>,
-<i>'id-content'</i>.</dd>
-
- <dt><span id="cfg_ZipDump">$cfg['ZipDump'] </span>boolean<br />
- <span id="cfg_GZipDump">$cfg['GZipDump'] </span>boolean<br />
- <span id="cfg_BZipDump">$cfg['BZipDump'] </span>boolean
+ El valor predeterminado es históricamente input.</dd>
+
+ <dt id="cfg_InsertRows">entero $cfg['InsertRows']</dt>
+ <dd>Define la mayor cantidad de entradas simultáneas de la página de inserción.</dd>
+
+ <dt id="cfg_ForeignKeyMaxLimit">entero $cfg['ForeignKeyMaxLimit']</dt>
+ <dd>Si hay menos items que esta cantidad en el conjunto de claves foráneas,
+entonces se presenta una lista desplegable de las claves foráneas en el
+mismo estilo de la configuración <a href="#cfg_ForeignKeyDropdownOrder"
+class="configrule">$cfg['ForeignKeyDropdownOrder']</a>.</dd>
+
+ <dt id="cfg_ForeignKeyDropdownOrder">array $cfg['ForeignKeyDropdownOrder']</dt>
+ <dd>Para los campos con listas desplegables de claves foráneas hay varios
+métodos para mostrarlos, ofreciendo tanto la clave como el valor del
+dato. El contenido del array tienen que ser una o ambas de:
+<i>'content-id'</i> y <i>'id-content'</i>.</dd>
+
+ <dt>booleano <span id="cfg_ZipDump">$cfg['ZipDump']</span><br />
+ booleano <span id="cfg_GZipDump">$cfg['GZipDump']</span><br />
+ booleano <span id="cfg_BZipDump">$cfg['BZipDump']</span>
</dt>
- <dd>Defines whether to allow the use of zip/GZip/BZip2 compression when creating
-a dump file</dd>
+ <dd>Define si utilizar compresión zip/GZip/BZip2 al crear un archivo de volcado</dd>
- <dt><span id="cfg_CompressOnFly">$cfg['CompressOnFly'] </span>boolean<br />
+ <dt>booleano <span id="cfg_CompressOnFly">$cfg['CompressOnFly']</span><br />
</dt>
- <dd>Defines whether to allow on the fly compression for GZip/BZip2 compressed
-exports. This doesn't affect smaller dumps and allows users to create larger
-dumps that won't otherwise fit in memory due to php memory limit. Produced
-files contain more GZip/BZip2 headers, but all normal programs handle this
-correctly.</dd>
-
- <dt id="cfg_LightTabs">$cfg['LightTabs'] boolean</dt>
- <dd>If set to <tt>TRUE</tt>, use less graphically intense tabs on the top of the
-mainframe.</dd>
-
- <dt id="cfg_PropertiesIconic">$cfg['PropertiesIconic'] string</dt>
- <dd>If set to <tt>TRUE</tt>, will display icons instead of text for db and table
-properties links (like 'Browse', 'Select', 'Insert', ...).<br /> Can be set to <tt>'both'</tt> if you want icons AND text.<br />
- When set to <tt>FALSE</tt>, will only show text.</dd>
-
- <dt id="cfg_PropertiesNumColumns">$cfg['PropertiesNumColumns'] integer</dt>
- <dd>How many columns will be utilized to display the tables on the database
-property view? Default is 1 column. When setting this to a value larger than
-1, the type of the database will be omitted for more display space.</dd>
-
-
- <dt id="cfg_DefaultTabServer">$cfg['DefaultTabServer'] string</dt>
- <dd>Defines the tab displayed by default on server view. Possible values:
-"main.php" (recommended for multi-user setups),
-"server_databases.php", "server_status.php",
-"server_variables.php", "server_privileges.php" or
-"server_processlist.php".</dd>
-
- <dt id="cfg_DefaultTabDatabase">$cfg['DefaultTabDatabase'] string</dt>
- <dd>Defines the tab displayed by default on database view. Possible values:
-"db_structure.php", "db_sql.php" or
-"db_search.php".</dd>
-
- <dt id="cfg_DefaultTabTable">$cfg['DefaultTabTable'] string</dt>
- <dd>Defines the tab displayed by default on table view. Possible values:
-"tbl_structure.php", "tbl_sql.php",
-"tbl_select.php", "tbl_change.php" or
-"sql.php".</dd>
-
- <dt id="cfg_MySQLManualBase">$cfg['MySQLManualBase'] string</dt>
- <dd>If set to an <abbr title="Uniform Resource Locator">URL</abbr> which points
-to the MySQL documentation (type depends on <a href="#cfg_MySQLManualType"
-class="configrule">$cfg['MySQLManualType']</a>), appropriate help links are
-generated.<br />
- See <a href="http://dev.mysql.com/doc/">MySQL Documentation page</a> for
-more information about MySQL manuals and their types.</dd>
-
- <dt id="cfg_MySQLManualType">$cfg['MySQLManualType'] string</dt>
- <dd>Type of MySQL documentation:
- <ul><li>viewable - "viewable online", current one used on MySQL website</li>
- <li>searchable - "Searchable, with user comments"</li>
- <li>chapters - "HTML, one page per chapter"</li>
- <li>big - "HTML, all on one page"</li>
- <li>none - do not show documentation links</li>
+ <dd>Define si se permite compresión al vuelo para exportaciones comprimidas con
+GZip/BZip2. Esto no afecta volcados más pequeños y permite a los usuarios
+crear volcados más grandes que no entrarían en memoria debido al límite de
+memoria de PHP. Los archivos producidos contienen más cabeceras GZip/BZip2,
+pero todos los programas normales lo manejan correctamente.</dd>
+
+ <dt id="cfg_LightTabs">booleano $cfg['LightTabs']</dt>
+ <dd>Si está definido como <tt>TRUE</tt>, utiliza pestañas menos intensivas
+gráficamente en la parte superior del marco principal.</dd>
+
+ <dt id="cfg_PropertiesIconic">cadena $cfg['PropertiesIconic']</dt>
+ <dd>Si está definido como <tt>TRUE</tt> se mostrarán iconos en lugar de texto
+para los enlaces de propiedades de tablas y bases de datos (como 'Examinar',
+'Seleccionar', 'Insertar', ...).<br /> Puede ser configurado como <tt>'both'</tt> si se desean iconos Y texto.<br />
+ Si está definido como <tt>FALSE</tt>, sólo se mostrará texto.</dd>
+
+ <dt id="cfg_PropertiesNumColumns">entero $cfg['PropertiesNumColumns']</dt>
+ <dd>¿Cuántas columnas se pueden utilizar para mostrar las tablas en la vista de
+propiedades de la base de datos? El valor predeterminado es 1 columna. Al
+definir este parámetro a un valor mayor a 1, el tipo de la base de datos
+será omitido para mayor espacio de visualización.</dd>
+
+
+ <dt id="cfg_DefaultTabServer">cadena $cfg['DefaultTabServer']</dt>
+ <dd>Define la pestaña mostrada predeterminadamente en la vista de
+servidores. Valores posibles: "main.php" (recomendado para
+configuraciones multi-usuario), "server_databases.php",
+"server_status.php", "server_variables.php",
+"server_privileges.php" o "server_processlist.php".</dd>
+
+ <dt id="cfg_DefaultTabDatabase">cadena $cfg['DefaultTabDatabase']</dt>
+ <dd>Define la pestaña mostrada predeterminadamente en la vista de bases de
+datos. Los valores posibles son: "db_structure.php",
+"db_sql.php" o "db_search.php".</dd>
+
+ <dt id="cfg_DefaultTabTable">cadena $cfg['DefaultTabTable']</dt>
+ <dd>Define la pestaña mostrada predeterminadamente en la vista de
+tablas. Valores posibles: "tbl_structure.php",
+"tbl_sql.php", "tbl_select.php",
+"tbl_change.php" o "sql.php".</dd>
+
+ <dt id="cfg_MySQLManualBase">cadena $cfg['MySQLManualBase']</dt>
+ <dd>Si se define como una <abbr title="Uniform Resource Locator">URL</abbr> que
+apunte a la documentación MySQL (el tipo depende de <a
+href="#cfg_MySQLManualType" class="configrule">$cfg['MySQLManualType']</a>),
+se generarán enlaces de ayuda apropiados.<br />
+ Visite <a href="http://dev.mysql.com/doc/">la página de documentación
+MySQL</a> para más información sobre los manuales MySQL y sus tipos.</dd>
+
+ <dt id="cfg_MySQLManualType">cadena $cfg['MySQLManualType']</dt>
+ <dd>Tipo de documentación MySQL:
+ <ul><li>viewable - "visible en línea", el actual utilizado en el sitio web
+de MySQL</li>
+ <li>searchable - "búsqueda, con comentarios de usuario"</li>
+ <li>chapters - "HTML, una página por capítulo"</li>
+ <li>big - "HTML, todo en una página"</li>
+ <li>none - no mostrar enlaces a la documentación</li>
</ul>
</dd>
- <dt id="cfg_DefaultLang">$cfg['DefaultLang'] string</dt>
- <dd>Defines the default language to use, if not browser-defined or user-defined.<br />
- The corresponding language file needs to be in
+ <dt id="cfg_DefaultLang">cadena $cfg['DefaultLang']</dt>
+ <dd>Define el idioma predeterminado a utilizar si no hay uno definido por el
+navegador o el usuario.<br />
+ Los archivos de idioma correspondientes tiene que estar en
locale/<i>code</i>/LC_MESSAGES/phpmyadmin.mo.
</dd>
- <dt id="cfg_DefaultConnectionCollation">$cfg['DefaultConnectionCollation'] string</dt>
- <dd>Defines the default connection collation to use, if not user-defined.<br />
- See the <a
-href="http://dev.mysql.com/doc/mysql/en/charset-charsets.html">MySQL
-documentation</a> for list of possible values.</dd>
+ <dt id="cfg_DefaultConnectionCollation">cadena $cfg['DefaultConnectionCollation']</dt>
+ <dd>Define la colación predeterminada para la conexión si no hay una definida
+por el usuario.<br />
+ Visite la <a
+href="http://dev.mysql.com/doc/mysql/en/charset-charsets.html">documentación
+MySQL</a> para la lista de valores posibles.</dd>
- <dt id="cfg_Lang">$cfg['Lang'] string</dt>
- <dd>Force language to use.<br />
- The corresponding language file needs to be in
+ <dt id="cfg_Lang">cadena $cfg['Lang']</dt>
+ <dd>Forzar el idioma a utilizar.<br />
+ Los archivos de idioma correspondientes tiene que estar en
locale/<i>code</i>/LC_MESSAGES/phpmyadmin.mo.
</dd>
- <dt id="cfg_FilterLanguages">$cfg['FilterLanguages'] string</dt>
+ <dt id="cfg_FilterLanguages">cadena $cfg['FilterLanguages']</dt>
<dd>Limit list of available languages to those matching the given regular
expression. For example if you want only Czech and English, you should set
filter to <code>'^(cs|en)'</code>.</dd>
diff --git a/output/tr/Documentation.html b/output/tr/Documentation.html
index 272130e..b5110ed 100644
--- a/output/tr/Documentation.html
+++ b/output/tr/Documentation.html
@@ -212,7 +212,7 @@ sürümündeyseniz, StuffIt <acronym title="Apple Macintosh">Mac</acronym>
biçimleriyle doldurulmaz.<br />
Bu yüzden sunucunuza bunları göndermeden önce TÜM phpMyAdmin betiklerini
Unix stilene BBEdit olarak yeniden kaydetmelisiniz, PHP'de olduğu gibi satır
-sonu karakteri ("<tt>\ r</tt>") <acronym title="Apple
+sonu karakteri ("<tt>\r</tt>") <acronym title="Apple
Macintosh">Mac</acronym>-stili gibi görünmez.</p>
<h3 id="quick_install">Hızlı Kur</h3>
@@ -847,84 +847,87 @@ bu veritabanı(ları) adı(ları) MySQL joker karakterleri ("_" ve
"%") içerebiliyor: eğer bu karakterlerin aslına uygun örneklerini
kullanmak isterseniz, bunlardan kaçının (I.E. <tt>'my\_db'</tt> kullanın ve
<tt>'my_db'</tt> kullanmayın).<br />
- This setting is an efficient way to lower the server load since the latter
-does not need to send MySQL requests to build the available database
-list. But <span class="important">it does not replace the privileges rules
-of the MySQL database server</span>. If set, it just means only these
-databases will be displayed but <span class="important">not that all other
-databases can't be used.</span>
+ Kullanılabilir veritabanı listesi oluşturmak için sonradan MySQL isteği
+göndermeye gerek olmadığından bu yana bu ayar sunucu yükünü hafifletmek için
+etkin bir yoldur. Ama <span class="important">bu, MySQL veritabanı
+sunucusunun yetki kurallarını değiştirmez</span>. Eğer ayarlanırsa, sadece
+bu veritabanlarının görüntüleneceği anlamına gelir ama <span
+class="important">tüm diğer veritabanlarında kullanılamaz anlamına
+gelmez.</span>
<br /><br />
- An example of using more that one database:
-<tt>$cfg['Servers'][$i]['only_db'] = array('db1', 'db2');</tt>
+ Birden fazla veritabanı kullanımı örneği: <tt>$cfg['Servers'][$i]['only_db']
+= array('db1', 'db2');</tt>
<br /><br />
- As of phpMyAdmin 2.5.5 the order inside the array is used for sorting the
-databases in the left frame, so that you can individually arrange your
-databases.<br />
- If you want to have certain databases at the top, but don't care about the
-others, you do not need to specify all other databases. Use:
-<tt>$cfg['Servers'][$i]['only_db'] = array('db3', 'db4', '*');</tt> instead
-to tell phpMyAdmin that it should display db3 and db4 on top, and the rest
-in alphabetic order.</dd>
+ phpMyAdmin 2.5.5'ten itibaren sol çerçevede sıralı düzen veritabanlarının
+sıralanması için kullanılıyor bu yüzden veritabanlarınızı ayrı ayrı
+düzenleyebilirsiniz.<br />
+ Belirli veritabanlarını en üstte istiyorsanız ama diğerlerini
+umursamıyorsanız, tüm diğer veritabanlarını belirlemeniz
+gerekmez. phpMyAdmin'e, en üstte db3 ve db4'ü ve kalanını alfabetik sırada
+görüntüle diye söylemek yerine, kullanmanız gereken:
+<tt>$cfg['Servers'][$i]['only_db'] = array('db3', 'db4', '*');</tt></dd>
- <dt><span id="cfg_Servers_hide_db">$cfg['Servers'][$i]['hide_db']</span> string
+ <dt><span id="cfg_Servers_hide_db">$cfg['Servers'][$i]['hide_db']</span> dizgisi
</dt>
- <dd>Regular expression for hiding some databases from unprivileged users. This
-only hides them from listing, but a user is still able to access them
-(using, for example, the SQL query area). To limit access, use the MySQL
-privilege system.
+ <dd>Bazı veritabanlarını yetkisiz kullanıcılardan gizlemek için düzenli
+ifadedir. Bu sadece onları listelemeden gizler ama kullanıcı hala onlara
+erişebilir (örneğin SQL sorgu alanını kullanarak). Erişimi sınırlandırmak
+için MySQL yetki sistemini kullanın.
<br /><br />
- For example, to hide all databases starting with the letter "a", use<br />
- <pre>$cfg['Servers'][$i]['hide_db'] = '^a';</pre>
- and to hide both "db1" and "db2" use <br />
- <pre>$cfg['Servers'][$i]['hide_db'] = '^(db1|db2)$';</pre>
- More information on regular expressions can be found in the <a
-href="http://php.net/manual/en/reference.pcre.pattern.syntax.php"> PCRE
-pattern syntax</a> portion of the PHP reference manual.
+ Örneğin, "a" harfinden başlayarak tüm veritabanlarını gizlemek için<br />
+ <pre>$cfg['Servers'][$i]['hide_db'] = '^a'; kullanın</pre>
+ ve her iki "db1" ve "db2"yi gizlemek için <br />
+ <pre>$cfg['Servers'][$i]['hide_db'] = '^(db1|db2)$'; kullanın</pre>
+ Düzenli ifadeler üzerine daha fazla bilgi PHP referans kitapçığının parçası
+olan <a href="http://php.net/manual/en/reference.pcre.pattern.syntax.php">
+PCRE pattern syntax</a> içinde bulunabilir.
</dd>
- <dt id="cfg_Servers_verbose">$cfg['Servers'][$i]['verbose'] string</dt>
- <dd>Only useful when using phpMyAdmin with multiple server entries. If set, this
-string will be displayed instead of the hostname in the pull-down menu on
-the main page. This can be useful if you want to show only certain databases
-on your system, for example. For HTTP auth, all non-US-ASCII characters will
-be stripped.</dd>
+ <dt id="cfg_Servers_verbose">$cfg['Servers'][$i]['verbose'] dizgisi</dt>
+ <dd>Sadece phpMyAdmin'i çoklu sunucu girişleriyle kullandığınızda
+faydalıdır. Eğer ayarlanırsa ana sayfada aşağı açılan menüde anamakine adı
+yerine bu dizgi görüntülenecektir. Eğer sisteminizde sadece belirli
+veritabanlarını göstermek isterseniz, bu kullanışlı olabilir örneğin. HTTP
+kimlik doğrulaması için tüm US-ASCII olmayan karakterler çıkartılacaktır.</dd>
<dt id="pmadb">
- <span id="cfg_Servers_pmadb">$cfg['Servers'][$i]['pmadb']</span> string
+ <span id="cfg_Servers_pmadb">$cfg['Servers'][$i]['pmadb']</span> dizgisi
</dt>
- <dd>The name of the database containing the phpMyAdmin configuration storage.
+ <dd>phpMyAdmin yapılandırma depolamasını içeren veritabanının adıdır.
<br /><br />
- See the <a href="#linked-tables">phpMyAdmin configuration storage</a>
-section in this document to see the benefits of this feature, and for a
-quick way of creating this database and the needed tables.
+ Bu özelliğin yararlarını görmek için ve bu veritabanının hızlı yoldan
+oluşturulması ve gerekli tablolar için bu belgede <a
+href="#linked-tables">phpMyAdmin yapılandırma depolaması</a> bölümüne bakın.
<br /><br />
- If you are the only user of this phpMyAdmin installation, you can use your
-current database to store those special tables; in this case, just put your
-current database name in <tt>$cfg['Servers'][$i]['pmadb']</tt>. For a
-multi-user installation, set this parameter to the name of your central
-database containing the phpMyAdmin configuration storage.</dd>
+ Eğer bu phpMyAdmin kurulumunun sadece kullanıcısı sizseniz, bu özel
+tabloları depolamak için şu anki veritabanınızı kullanabilirsiniz; bu
+durumda şu anki veritabanı adınızı sadece
+<tt>$cfg['Servers'][$i]['pmadb']</tt> içine koyun. Çoklu kullanıcı kurulumu
+için bu parametreyi phpMyAdmin yapılandırma depolamasını içeren merkezi
+veritabanınızın adına ayarlayın.</dd>
<dt id="bookmark">
<span
id="cfg_Servers_bookmarktable">$cfg['Servers'][$i]['bookmarktable']</span>
-string
+dizgisi
</dt>
- <dd>Since release 2.2.0 phpMyAdmin allows users to bookmark queries. This can be
-useful for queries you often run.<br /><br />
+ <dd>2.2.0 yayımından bu yana phpMyAdmin kullanıcılara sorguları saklamak için
+işaretlemesine izin verir. Bu sık sık çalıştırdığınız sorgular için faydalı
+olabilir.<br /><br />
- To allow the usage of this functionality:
- <ul><li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li>
- <li>enter the table name in <tt>$cfg['Servers'][$i]['bookmarktable']</tt></li>
+ Bu işlevselliğin kullanımına izin vermek için:
+ <ul><li><a href="#pmadb">pmadb</a> ve phpMyAdmin yapılandırma depolamasını kurun</li>
+ <li><tt>$cfg['Servers'][$i]['bookmarktable']</tt> içine tablo adını girin</li>
</ul>
</dd>
<dt id="relation">
<span id="cfg_Servers_relation">$cfg['Servers'][$i]['relation']</span>
-string
+dizgisi
</dt>
<dd>Since release 2.2.4 you can describe, in a special 'relation' table, which
column is a key in another table (a foreign key). phpMyAdmin currently uses
@@ -951,9 +954,9 @@ of your database (also uses the table_coords table).</li>
The keys can be numeric or character.<br /><br />
- To allow the usage of this functionality:
+ Bu işlevselliğin kullanımına izin vermek için:
- <ul><li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li>
+ <ul><li><a href="#pmadb">pmadb</a> ve phpMyAdmin yapılandırma depolamasını kurun</li>
<li>put the relation table name in <tt>$cfg['Servers'][$i]['relation']</tt></li>
<li>now as normal user open phpMyAdmin and for each one of your tables where you
want to use this feature, click "Structure/Relation view/" and
@@ -976,7 +979,7 @@ column is to be displayed as a tool-tip when moving the cursor over the
corresponding key.<br />
This configuration variable will hold the name of this special table. To
allow the usage of this functionality:
- <ul><li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li>
+ <ul><li><a href="#pmadb">pmadb</a> ve phpMyAdmin yapılandırma depolamasını kurun</li>
<li>put the table name in <tt>$cfg['Servers'][$i]['table_info']</tt> (e.g.
'pma_table_info')</li>
<li>then for each table where you want to use this feature, click
@@ -1002,9 +1005,9 @@ Format">PDF</abbr> schema output).<br /><br />
You must be using the "relation" feature.<br /><br />
- To allow the usage of this functionality:
+ Bu işlevselliğin kullanımına izin vermek için:
- <ul><li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li>
+ <ul><li><a href="#pmadb">pmadb</a> ve phpMyAdmin yapılandırma depolamasını kurun</li>
<li>put the correct table names in <tt>$cfg['Servers'][$i]['table_coords']</tt>
and <tt>$cfg['Servers'][$i]['pdf_pages']</tt></li>
</ul>
@@ -1036,8 +1039,8 @@ system, your column_info table has to have the three new columns 'mimetype',
'transformation', 'transformation_options'.
<br /><br />
- To allow the usage of this functionality:
- <ul><li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li>
+ Bu işlevselliğin kullanımına izin vermek için:
+ <ul><li><a href="#pmadb">pmadb</a> ve phpMyAdmin yapılandırma depolamasını kurun</li>
<li>put the table name in <tt>$cfg['Servers'][$i]['column_info']</tt> (e.g.
'pma_column_info')</li>
<li>to update your PRE-2.5.0 Column_comments Table use this:
@@ -1073,9 +1076,9 @@ to the maximum amount.<br /><br />
The query history is only available if JavaScript is enabled in your
browser.<br /><br />
- To allow the usage of this functionality:
+ Bu işlevselliğin kullanımına izin vermek için:
- <ul><li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li>
+ <ul><li><a href="#pmadb">pmadb</a> ve phpMyAdmin yapılandırma depolamasını kurun</li>
<li>put the table name in <tt>$cfg['Servers'][$i]['history']</tt>
(e.g. 'pma_history')
</li>
@@ -1109,10 +1112,10 @@ a list of names separated by ','. In addition you can export the (filtered)
report to a file or to a temporary database.
<br/><br/>
- To allow the usage of this functionality:
+ Bu işlevselliğin kullanımına izin vermek için:
<ul>
- <li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li>
+ <li><a href="#pmadb">pmadb</a> ve phpMyAdmin yapılandırma depolamasını kurun</li>
<li>put the table name in <tt>$cfg['Servers'][$i]['tracking']</tt>
(e.g. 'pma_tracking')</li>
</ul>
@@ -1203,10 +1206,10 @@ users can still personalize phpMyAdmin, but settings will be saved in
browser's local storage, or, it is is unavailable, until the end of session.
<br /><br />
- To allow the usage of this functionality:
+ Bu işlevselliğin kullanımına izin vermek için:
<ul>
- <li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li>
+ <li><a href="#pmadb">pmadb</a> ve phpMyAdmin yapılandırma depolamasını kurun</li>
<li>put the table name in <tt>$cfg['Servers'][$i]['userconfig']</tt></li>
</ul>
</dd>
@@ -1220,9 +1223,9 @@ string
visually manage the relations.
<br /><br />
- To allow the usage of this functionality:
+ Bu işlevselliğin kullanımına izin vermek için:
- <ul><li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li>
+ <ul><li><a href="#pmadb">pmadb</a> ve phpMyAdmin yapılandırma depolamasını kurun</li>
<li>put the table name in <tt>$cfg['Servers'][$i]['designer_coords']</tt>
(e.g. 'pma_designer_coords')
</li>
diff --git a/po/es.po b/po/es.po
index aa4c105..6d723e5 100644
--- a/po/es.po
+++ b/po/es.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: 2011-03-02 13:51+0100\n"
-"PO-Revision-Date: 2011-03-12 01:47+0200\n"
+"PO-Revision-Date: 2011-03-15 06:36+0200\n"
"Last-Translator: Matías Bellone <matiasbellone(a)gmail.com>\n"
"Language-Team: none\n"
"Language: es\n"
@@ -4117,11 +4117,14 @@ msgid ""
"especially with self made theme which changes this. The default value for "
"this is <tt>main.php</tt>."
msgstr ""
+"Define la URL a la que apuntará el logo del marco de navegación. Para usar "
+"especialmente en temas personalizados que cambian esto. El valor "
+"predeterminado es <tt>main.php</tt>."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1495
msgid "$cfg['LeftLogoLinkWindow'] string"
-msgstr ""
+msgstr "cadena $cfg['LeftLogoLinkWindow']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1496
@@ -4130,12 +4133,14 @@ msgid ""
"new one (<tt>new</tt>). Note: use <tt>new</tt> if you are linking to "
"<tt>phpmyadmin.net</tt>."
msgstr ""
+"Si se abre la página enlazada en la ventana principal (<tt>main</tt>) o en "
+"una neva ventana (<tt>new</tt>). Nota: usar <tt>new</tt> si se está "
+"enlazando a <tt>phpmyadmin.net</tt>."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1500
-#, fuzzy
msgid "$cfg['LeftDisplayTableFilterMinimum'] integer"
-msgstr "$cfg['McryptDisableWarning'] boolean"
+msgstr "entero $cfg['LeftDisplayTableFilterMinimum']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1502
@@ -4144,11 +4149,15 @@ msgid ""
"above the list of tables in the left frame. Defaults to <tt>30</tt>. To "
"disable the filter completely some high number can he used (e.g. 9999)"
msgstr ""
+"Define el mínimo nombre de tablas a mostrar en la caja de filtro JavaScript "
+"sobre la lista de tablas en el marco izquierdo. El valor predeterminador es "
+"<tt>30</tt>. Para desactivar este filtro completamente se puede utilizar un "
+"número alto (por ejemplo: 9999)."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1507
msgid "$cfg['LeftDisplayServers'] boolean"
-msgstr ""
+msgstr "booleano $cfg['LeftDisplayServers']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1508
@@ -4156,11 +4165,13 @@ msgid ""
"Defines whether or not to display a server choice at the top of the left "
"frame. Defaults to FALSE."
msgstr ""
+"Define si se muestra una elección de servidor en la parte superior del marco "
+"izquierdo. El valor predeterminado es FALSE."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1510
msgid "$cfg['DisplayServersList'] boolean"
-msgstr ""
+msgstr "booleano $cfg['DisplayServersList']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1511
@@ -4168,11 +4179,14 @@ msgid ""
"Defines whether to display this server choice as links instead of in a drop-"
"down. Defaults to FALSE (drop-down)."
msgstr ""
+"Define si se muestra la elección de servidores como enlaces en lugar de una "
+"lista deplegable. El valor predeterminado es FALSE (muestra una lista "
+"desplegable)."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1513
msgid "$cfg['DisplayDatabasesList'] boolean or text"
-msgstr ""
+msgstr "booleano o texto $cfg['DisplayDatabasesList']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1514
@@ -4181,11 +4195,16 @@ msgid ""
"links instead of in a drop-down. Defaults to 'auto' - on main page list is "
"shown, when database is selected, only drop down is displayed."
msgstr ""
+"Define si se muestra la elección de la base de datos en el marco de "
+"navegación como enlaces en lugar de una lista desplegable. El valor "
+"predeterminado es 'auto', se muestra el enlace en la página principal pero "
+"sólo la lista desplegable es mostrada cuando una base de datos está "
+"seleccionada."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1518
msgid "$cfg['LeftDefaultTabTable'] string"
-msgstr ""
+msgstr "cadena $cfg['LeftDefaultTabTable']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1519
@@ -4195,11 +4214,16 @@ msgid ""
"tbl_structure.php", "tbl_sql.php", "tbl_select."
"php", "tbl_change.php" or "sql.php"."
msgstr ""
+"Define la pestaña mostrada al pulsar sobre el pequeño icono junto a cada "
+"nombre de tabla en el panel de navegación. Valores posibles: "
+""tbl_structure.php", "tbl_sql.php", "
+""tbl_select.php", "tbl_change.php" or "
+""sql.php"."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1525
msgid "$cfg['ShowStats'] boolean"
-msgstr ""
+msgstr "booleano $cfg['ShowStats']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1526
@@ -4207,6 +4231,8 @@ msgid ""
"Defines whether or not to display space usage and statistics about databases "
"and tables."
msgstr ""
+"Define si se muestra el espacio utilizado y estadística sobre tablas y bases "
+"de datos o no."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1528
@@ -4214,11 +4240,14 @@ msgid ""
"Note that statistics requires at least MySQL 3.23.3 and that, at this date, "
"MySQL doesn't return such information for Berkeley DB tables."
msgstr ""
+"Notar que las estadísticas requieren al menos MySQL 3.23.3 y que, a esta "
+"fecha, MySQL no devuelve dicha información para tablas de bases de datos "
+"Berkeley."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1531
msgid "<span id=\"cfg_ShowServerInfo\">$cfg['ShowServerInfo'] </span>boolean"
-msgstr ""
+msgstr "booleano <span id=\"cfg_ShowServerInfo\">$cfg['ShowServerInfo']</span>"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1532
@@ -4227,21 +4256,24 @@ msgid ""
"can additionally hide more information by using <tt><a href="
"\"#cfg_Servers_verbose\">$cfg['Servers'][$i]['verbose']</a></tt>."
msgstr ""
+"Define si mostrar información detallada del servidor en la página principal. "
+"Se puede esconder más información todavía utilizando <tt><a "
+"href=\"#cfg_Servers_verbose\">$cfg['Servers'][$i]['verbose']</a></tt>."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1537
msgid "<span id=\"cfg_ShowPhpInfo\">$cfg['ShowPhpInfo'] </span>boolean"
-msgstr ""
+msgstr "booleano <span id=\"cfg_ShowPhpInfo\">$cfg['ShowPhpInfo']</span>"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1538
msgid "<span id=\"cfg_ShowChgPassword\">$cfg['ShowChgPassword'] </span>boolean"
-msgstr ""
+msgstr "booleano <span id=\"cfg_ShowChgPassword\">$cfg['ShowChgPassword']</span>"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1539
msgid "<span id=\"cfg_ShowCreateDb\">$cfg['ShowCreateDb'] </span>boolean"
-msgstr ""
+msgstr "booleano <span id=\"cfg_ShowCreateDb\">$cfg['ShowCreateDb']</span>"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1541
@@ -4251,6 +4283,10 @@ msgid ""
"main (right) frame. This setting does not check MySQL commands entered "
"directly."
msgstr ""
+"Define si mostrar o no el formulario para crear bases de datos y los enlaces "
+""información PHP" y "Cambiar contraseña" en el marco "
+"inicial principal (derecho). Esta configuración no verifica las órdenes "
+"MySQL ingresadas directamente."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1546
@@ -4258,12 +4294,14 @@ msgid ""
"Please note that to block the usage of phpinfo() in scripts, you have to put "
"this in your <i>php.ini</i>:"
msgstr ""
+"Porfavor note que para bloquear el uso de phpinfo() en los scripts se debe "
+"agregar lo siguiente en <i>php.ini</i>:"
#. type: Content of: <html><body><div><dl><dd><pre>
#: orig-docs/Documentation.html:1549
#, no-wrap
msgid "disable_functions = phpinfo()"
-msgstr ""
+msgstr "disable_functions = phpinfo()"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1551
@@ -4273,11 +4311,15 @@ msgid ""
"password value in the configuration file, end users can't be allowed to "
"change their passwords."
msgstr ""
+"También note que activar el enlace "Cambiar contraseña" no tiene "
+"efecto en el modo de autenticación "config" debido al valor de la "
+"contraseña embebido en el archivo de configuración los usuarios no pueden "
+"cambiar sus contraseñas."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1556
msgid "$cfg['SuggestDBName'] boolean"
-msgstr ""
+msgstr "booleano $cfg['SuggestDBName']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1557
@@ -4285,11 +4327,13 @@ msgid ""
"Defines whether to suggest a database name on the "Create "
"Database" form or to keep the textfield empty."
msgstr ""
+"Define si se debe sugerir un nombre de base de datos en el formulario para "
+"crear base de datos o se mantiene en campo de texto vacío."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1560
msgid "$cfg['NavigationBarIconic'] string"
-msgstr ""
+msgstr "cadena $cfg['NavigationBarIconic']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1561
@@ -4298,11 +4342,14 @@ msgid ""
"text or symbols only. A value of TRUE displays icons, FALSE displays text "
"and 'both' displays both icons and text."
msgstr ""
+"Si los botones de la barra de navegación y el menú superior del panel "
+"derecho contienen texto o sólo símbolos. Un valor de TRUE muestra los "
+"iconos, FALSE muestra texto y 'both' muestra tanto iconos como texto."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1565
msgid "$cfg['ShowAll'] boolean"
-msgstr ""
+msgstr "booleano $cfg['ShowAll']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1566
@@ -4310,11 +4357,13 @@ msgid ""
"Defines whether a user should be displayed a "show all (records)" "
"button in browse mode or not."
msgstr ""
+"Define se debe mostrar un botón "mostrar todos (los registros)" en "
+"el modo de examinación a los usuarios o no."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1569
msgid "$cfg['MaxRows'] integer"
-msgstr ""
+msgstr "entero $cfg['MaxRows']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1570
@@ -4330,7 +4379,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1573
msgid "$cfg['Order'] string [<tt>DESC</tt>|<tt>ASC</tt>|<tt>SMART</tt>]"
-msgstr ""
+msgstr "cadena $cfg['Order'] (<tt>DESC</tt>|<tt>ASC</tt>|<tt>SMART</tt>)"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1574
@@ -4340,11 +4389,15 @@ msgid ""
"order - I.E. descending order for columns of type TIME, DATE, DATETIME and "
"TIMESTAMP, ascending order else- by default."
msgstr ""
+"Define si las columnas son mostradas en orden ascendente (<tt>ASC</tt>), "
+"descendente (<tt>DESC</tt>) o en un orden "inteligente" "
+"(<tt>SMART</tt>); esto es, orden descendente para las columnas de tipo TIME, "
+"DATE, DATETIME y TIMESTAMP y ascendente para los demás."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1579
msgid "$cfg['DisplayBinaryAsHex'] boolean"
-msgstr ""
+msgstr "booleano $cfg['DisplayBinaryAsHex']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1580
@@ -4352,11 +4405,13 @@ msgid ""
"Defines whether the "Show binary contents as HEX" browse option is "
"ticked by default."
msgstr ""
+"Define si la opción "Mostrar contenidos binarios como hexadecimal" "
+"está activada predeterminadamente."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1583
msgid "$cfg['ProtectBinary'] boolean or string"
-msgstr ""
+msgstr "booleano o cadena $cfg['ProtectBinary']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1584
@@ -4364,16 +4419,20 @@ msgid ""
"Defines whether <tt>BLOB</tt> or <tt>BINARY</tt> columns are protected from "
"editing when browsing a table's content. Valid values are:"
msgstr ""
+"Define si las columnas <tt>BLOB</tt> o <tt>BINARY</tt> son protegidas contra "
+"edición al examinar el contenido de una tabla. Los valores válidos son:"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:1586
msgid "<tt>FALSE</tt> to allow editing of all columns;"
-msgstr ""
+msgstr "<tt>FALSE</tt> para permitir la edición de todas las columnas;"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:1587
msgid "<tt>'blob'</tt> to allow editing of all columns except <tt>BLOBS</tt>;"
msgstr ""
+"<tt>'blob'</tt> para permitir la edicicón de todas las columnas excepto las "
+"de tipo <tt>BLOB</tt>;"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:1588
@@ -4381,11 +4440,13 @@ msgid ""
"<tt>'all'</tt> to disallow editing of all <tt>BINARY</tt> or <tt>BLOB</tt> "
"columns."
msgstr ""
+"<tt>'all'</tt> para no permitir la edición de las columnas de tipo "
+"<tt>BINARY</tt> o <tt>BLOB</tt>."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1593
msgid "$cfg['ShowFunctionFields'] boolean"
-msgstr ""
+msgstr "booleano $cfg['ShowFunctionFields']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1594
@@ -4394,11 +4455,14 @@ msgid ""
"in edit/insert mode. Since version 2.10, the user can toggle this setting "
"from the interface."
msgstr ""
+"Define si los campos funcionales de MySQL deben de ser mostrados "
+"inicialmente en el modo de edición/inserción. Desde la versión 2.10 los "
+"usuarios pueden cambiar esta configuración desde la interfaz."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1599
msgid "$cfg['ShowFieldTypesInDataEditView'] boolean"
-msgstr ""
+msgstr "booleano $cfg['ShowFieldTypesInDataEditView']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1600
@@ -4406,22 +4470,23 @@ msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode. The user can toggle this setting from the interface."
msgstr ""
+"Define si los tipos de campo deben de ser mostrados inicialmente en el modo "
+"de edición/inserción. Los usuarios pueden cambiar esta configuración desde "
+"la interfaz."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1605
msgid "$cfg['CharEditing'] string"
-msgstr ""
+msgstr "cadena $cfg['CharEditing']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1606
-#, fuzzy
msgid ""
"Defines which type of editing controls should be used for CHAR and VARCHAR "
"columns. Possible values are:"
msgstr ""
-"Define cuál tipo de control de edición se debe usar para los campos CHAR y "
-"VARCHAR; [kbd]input[/kbd] - permite limitar la longitud de input, [kbd]"
-"textarea[/kbd] - permite líneas nuevas en los campos"
+"Define el tipo de controles de edición a usar para los campos CHAR y "
+"VARCHAR. Los valores posibles son:"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:1608
@@ -4429,6 +4494,8 @@ msgid ""
"input - this allows to limit size of text to size of columns in MySQL, but "
"has problems with newlines in columns"
msgstr ""
+"input - permite limitar la longitud del texto al tamaño de las columnas "
+"MySQL pero tiene problemas con los saltos de línea en las columnas"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:1610
@@ -4436,26 +4503,29 @@ msgid ""
"textarea - no problems with newlines in columns, but also no length "
"limitations"
msgstr ""
+"textarea - no tiene problema con saltos de línea en las columnas, pero no "
+"tiene limitaciones de longitud"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1613
msgid "Default is old behavior so input."
-msgstr ""
+msgstr "El valor predeterminado es históricamente input."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1615
msgid "$cfg['InsertRows'] integer"
-msgstr ""
+msgstr "entero $cfg['InsertRows']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1616
msgid "Defines the maximum number of concurrent entries for the Insert page."
msgstr ""
+"Define la mayor cantidad de entradas simultáneas de la página de inserción."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1618
msgid "$cfg['ForeignKeyMaxLimit'] integer"
-msgstr ""
+msgstr "entero $cfg['ForeignKeyMaxLimit']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1619
@@ -4465,11 +4535,15 @@ msgid ""
"\"#cfg_ForeignKeyDropdownOrder\" class=\"configrule\">$cfg"
"['ForeignKeyDropdownOrder']</a> setting."
msgstr ""
+"Si hay menos items que esta cantidad en el conjunto de claves foráneas, "
+"entonces se presenta una lista desplegable de las claves foráneas en el "
+"mismo estilo de la configuración <a href=\"#cfg_ForeignKeyDropdownOrder\" "
+"class=\"configrule\">$cfg['ForeignKeyDropdownOrder']</a>."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1624
msgid "$cfg['ForeignKeyDropdownOrder'] array"
-msgstr ""
+msgstr "array $cfg['ForeignKeyDropdownOrder']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1625
@@ -4479,21 +4553,25 @@ msgid ""
"one or both of the following strings: <i>'content-id'</i>, <i>'id-content'</"
"i>."
msgstr ""
+"Para los campos con listas desplegables de claves foráneas hay varios "
+"métodos para mostrarlos, ofreciendo tanto la clave como el valor del dato. "
+"El contenido del array tienen que ser una o ambas de: <i>'content-id'</i> y "
+"<i>'id-content'</i>."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1630
msgid "<span id=\"cfg_ZipDump\">$cfg['ZipDump'] </span>boolean"
-msgstr ""
+msgstr "booleano <span id=\"cfg_ZipDump\">$cfg['ZipDump']</span>"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1631
msgid "<span id=\"cfg_GZipDump\">$cfg['GZipDump'] </span>boolean"
-msgstr ""
+msgstr "booleano <span id=\"cfg_GZipDump\">$cfg['GZipDump']</span>"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1632
msgid "<span id=\"cfg_BZipDump\">$cfg['BZipDump'] </span>boolean"
-msgstr ""
+msgstr "booleano <span id=\"cfg_BZipDump\">$cfg['BZipDump']</span>"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1634
@@ -4501,11 +4579,12 @@ msgid ""
"Defines whether to allow the use of zip/GZip/BZip2 compression when creating "
"a dump file"
msgstr ""
+"Define si utilizar compresión zip/GZip/BZip2 al crear un archivo de volcado"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1637
msgid "<span id=\"cfg_CompressOnFly\">$cfg['CompressOnFly'] </span>boolean"
-msgstr ""
+msgstr "booleano <span id=\"cfg_CompressOnFly\">$cfg['CompressOnFly']</span>"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1639
@@ -4516,11 +4595,16 @@ msgid ""
"files contain more GZip/BZip2 headers, but all normal programs handle this "
"correctly."
msgstr ""
+"Define si se permite compresión al vuelo para exportaciones comprimidas con "
+"GZip/BZip2. Esto no afecta volcados más pequeños y permite a los usuarios "
+"crear volcados más grandes que no entrarían en memoria debido al límite de "
+"memoria de PHP. Los archivos producidos contienen más cabeceras GZip/BZip2, "
+"pero todos los programas normales lo manejan correctamente."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1645
msgid "$cfg['LightTabs'] boolean"
-msgstr ""
+msgstr "booleano $cfg['LightTabs']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1646
@@ -4528,11 +4612,13 @@ msgid ""
"If set to <tt>TRUE</tt>, use less graphically intense tabs on the top of the "
"mainframe."
msgstr ""
+"Si está definido como <tt>TRUE</tt>, utiliza pestañas menos intensivas "
+"gráficamente en la parte superior del marco principal."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1649
msgid "$cfg['PropertiesIconic'] string"
-msgstr ""
+msgstr "cadena $cfg['PropertiesIconic']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1650
@@ -4540,21 +4626,24 @@ msgid ""
"If set to <tt>TRUE</tt>, will display icons instead of text for db and table "
"properties links (like 'Browse', 'Select', 'Insert', ...)."
msgstr ""
+"Si está definido como <tt>TRUE</tt> se mostrarán iconos en lugar de texto "
+"para los enlaces de propiedades de tablas y bases de datos (como 'Examinar', "
+"'Seleccionar', 'Insertar', ...)."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1651
msgid "Can be set to <tt>'both'</tt> if you want icons AND text."
-msgstr ""
+msgstr "Puede ser configurado como <tt>'both'</tt> si se desean iconos Y texto."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1653
msgid "When set to <tt>FALSE</tt>, will only show text."
-msgstr ""
+msgstr "Si está definido como <tt>FALSE</tt>, sólo se mostrará texto."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1655
msgid "$cfg['PropertiesNumColumns'] integer"
-msgstr ""
+msgstr "entero $cfg['PropertiesNumColumns']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1656
@@ -4563,11 +4652,15 @@ msgid ""
"property view? Default is 1 column. When setting this to a value larger than "
"1, the type of the database will be omitted for more display space."
msgstr ""
+"¿Cuántas columnas se pueden utilizar para mostrar las tablas en la vista de "
+"propiedades de la base de datos? El valor predeterminado es 1 columna. Al "
+"definir este parámetro a un valor mayor a 1, el tipo de la base de datos "
+"será omitido para mayor espacio de visualización."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1662
msgid "$cfg['DefaultTabServer'] string"
-msgstr ""
+msgstr "cadena $cfg['DefaultTabServer']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1663
@@ -4577,11 +4670,16 @@ msgid ""
"php", "server_status.php", "server_variables.php", "
""server_privileges.php" or "server_processlist.php"."
msgstr ""
+"Define la pestaña mostrada predeterminadamente en la vista de servidores. "
+"Valores posibles: "main.php" (recomendado para configuraciones "
+"multi-usuario), "server_databases.php", "
+""server_status.php", "server_variables.php", "
+""server_privileges.php" o "server_processlist.php"."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1669
msgid "$cfg['DefaultTabDatabase'] string"
-msgstr ""
+msgstr "cadena $cfg['DefaultTabDatabase']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1670
@@ -4590,11 +4688,14 @@ msgid ""
""db_structure.php", "db_sql.php" or "db_search."
"php"."
msgstr ""
+"Define la pestaña mostrada predeterminadamente en la vista de bases de "
+"datos. Los valores posibles son: "db_structure.php", "
+""db_sql.php" o "db_search.php"."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1674
msgid "$cfg['DefaultTabTable'] string"
-msgstr ""
+msgstr "cadena $cfg['DefaultTabTable']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1675
@@ -4603,11 +4704,15 @@ msgid ""
"tbl_structure.php", "tbl_sql.php", "tbl_select."
"php", "tbl_change.php" or "sql.php"."
msgstr ""
+"Define la pestaña mostrada predeterminadamente en la vista de tablas. "
+"Valores posibles: "tbl_structure.php", "tbl_sql.php", "
+""tbl_select.php", "tbl_change.php" o "
+""sql.php"."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1680
msgid "$cfg['MySQLManualBase'] string"
-msgstr ""
+msgstr "cadena $cfg['MySQLManualBase']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1681
@@ -4617,6 +4722,10 @@ msgid ""
"\"#cfg_MySQLManualType\" class=\"configrule\">$cfg['MySQLManualType']</a>), "
"appropriate help links are generated."
msgstr ""
+"Si se define como una <abbr title=\"Uniform Resource Locator\">URL</abbr> que "
+"apunte a la documentación MySQL (el tipo depende de <a "
+"href=\"#cfg_MySQLManualType\" class=\"configrule\">$cfg['MySQLManualType']</a>), "
+"se generarán enlaces de ayuda apropiados."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1685
@@ -4624,53 +4733,59 @@ msgid ""
"See <a href=\"http://dev.mysql.com/doc/\">MySQL Documentation page</a> for "
"more information about MySQL manuals and their types."
msgstr ""
+"Visite <a href=\"http://dev.mysql.com/doc/\">la página de documentación "
+"MySQL</a> para más información sobre los manuales MySQL y sus tipos."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1688
msgid "$cfg['MySQLManualType'] string"
-msgstr ""
+msgstr "cadena $cfg['MySQLManualType']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1689
msgid "Type of MySQL documentation:"
-msgstr ""
+msgstr "Tipo de documentación MySQL:"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:1690
msgid ""
"viewable - "viewable online", current one used on MySQL website"
msgstr ""
+"viewable - "visible en línea", el actual utilizado en el sitio web "
+"de MySQL"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:1691
msgid "searchable - "Searchable, with user comments""
-msgstr ""
+msgstr "searchable - "búsqueda, con comentarios de usuario""
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:1692
msgid "chapters - "HTML, one page per chapter""
-msgstr ""
+msgstr "chapters - "HTML, una página por capítulo""
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:1693
msgid "big - "HTML, all on one page""
-msgstr ""
+msgstr "big - "HTML, todo en una página""
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:1694
msgid "none - do not show documentation links"
-msgstr ""
+msgstr "none - no mostrar enlaces a la documentación"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1698
msgid "$cfg['DefaultLang'] string"
-msgstr ""
+msgstr "cadena $cfg['DefaultLang']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1699
msgid ""
"Defines the default language to use, if not browser-defined or user-defined."
msgstr ""
+"Define el idioma predeterminado a utilizar si no hay uno definido por el "
+"navegador o el usuario."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1701 orig-docs/Documentation.html:1713
@@ -4678,16 +4793,20 @@ msgid ""
"The corresponding language file needs to be in locale/<i>code</i>/"
"LC_MESSAGES/phpmyadmin.mo."
msgstr ""
+"Los archivos de idioma correspondientes tiene que estar en "
+"locale/<i>code</i>/LC_MESSAGES/phpmyadmin.mo."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1705
msgid "$cfg['DefaultConnectionCollation'] string"
-msgstr ""
+msgstr "cadena $cfg['DefaultConnectionCollation']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1706
msgid "Defines the default connection collation to use, if not user-defined."
msgstr ""
+"Define la colación predeterminada para la conexión si no hay una definida "
+"por el usuario."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1708
@@ -4695,21 +4814,23 @@ msgid ""
"See the <a href=\"http://dev.mysql.com/doc/mysql/en/charset-charsets.html"
"\">MySQL documentation</a> for list of possible values."
msgstr ""
+"Visite la <a href=\"http://dev.mysql.com/doc/mysql/en/charset-"
+"charsets.html\">documentación MySQL</a> para la lista de valores posibles."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1711
msgid "$cfg['Lang'] string"
-msgstr ""
+msgstr "cadena $cfg['Lang']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1712
msgid "Force language to use."
-msgstr ""
+msgstr "Forzar el idioma a utilizar."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1717
msgid "$cfg['FilterLanguages'] string"
-msgstr ""
+msgstr "cadena $cfg['FilterLanguages']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1718
diff --git a/po/tr.po b/po/tr.po
index 5118ab1..fd1010c 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: 2011-03-02 13:51+0100\n"
-"PO-Revision-Date: 2011-03-13 12:57+0200\n"
+"PO-Revision-Date: 2011-03-14 21:53+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit(a)hotmail.com>\n"
"Language-Team: none\n"
"Language: tr\n"
@@ -530,8 +530,8 @@ msgid ""
msgstr ""
"Bu yüzden sunucunuza bunları göndermeden önce TÜM phpMyAdmin betiklerini "
"Unix stilene BBEdit olarak yeniden kaydetmelisiniz, PHP'de olduğu gibi satır "
-"sonu karakteri ("<tt>\\ r</tt>") <acronym title=\"Apple Macintosh"
-"\">Mac</acronym>-stili gibi görünmez."
+"sonu karakteri ("<tt>\r</tt>") <acronym title=\"Apple "
+"Macintosh\">Mac</acronym>-stili gibi görünmez."
#. type: Content of: <html><body><div><h3>
#: orig-docs/Documentation.html:191
@@ -1516,10 +1516,10 @@ msgid ""
"saving a script you have modified."
msgstr ""
"<span class=\"important\"><acronym title=\"Apple Macintosh\">Mac</acronym> "
-"kullanıcıları için uyarı:</span> PHP <acronym title=\"Apple Macintosh\">Mac</"
-"acronym> satır sonu karakterinden ("<tt>\r</tt>") hoşlanmıyor gibi "
-"görünür. Bu yüzden değiştirdiğiniz betiğinizi kaydetmeden önce metin "
-"düzenleyicinizde *nix satır sonu karakterini ("<tt>\n"
+"kullanıcıları için uyarı:</span> PHP <acronym title=\"Apple "
+"Macintosh\">Mac</acronym> satır sonu karakterinden ("<tt>\r</tt>") "
+"hoşlanmıyor gibi görünür. Bu yüzden değiştirdiğiniz betiğinizi kaydetmeden "
+"önce metin düzenleyicinizde *nix satır sonu karakterini ("<tt>\n"
"</tt>") kullanmanıza izin veren seçeneği seçtiğinizden emin olun."
#. type: Content of: <html><body><div><p>
@@ -2183,7 +2183,6 @@ msgstr ""
"kullanmak isterseniz, bunlardan kaçının (I.E. <tt>'my\\_db'</tt> kullanın ve "
"<tt>'my_db'</tt> kullanmayın)."
-# Kullanılabilir veritabanı listesi oluşturmak için MySQL isteği göndermeye gerek olmadığından beri Bu ayar sunucu yükünü hafifletmek için etkin bir yoldur
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:820
msgid ""
@@ -2194,6 +2193,13 @@ msgid ""
"will be displayed but <span class=\"important\">not that all other databases "
"can't be used.</span>"
msgstr ""
+"Kullanılabilir veritabanı listesi oluşturmak için sonradan MySQL isteği "
+"göndermeye gerek olmadığından bu yana bu ayar sunucu yükünü hafifletmek için "
+"etkin bir yoldur. Ama <span class=\"important\">bu, MySQL veritabanı "
+"sunucusunun yetki kurallarını değiştirmez</span>. Eğer ayarlanırsa, sadece "
+"bu veritabanlarının görüntüleneceği anlamına gelir ama <span "
+"class=\"important\">tüm diğer veritabanlarında kullanılamaz anlamına "
+"gelmez.</span>"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:828
@@ -2201,6 +2207,8 @@ msgid ""
"An example of using more that one database: <tt>$cfg['Servers'][$i]"
"['only_db'] = array('db1', 'db2');</tt>"
msgstr ""
+"Birden fazla veritabanı kullanımı örneği: <tt>$cfg['Servers'][$i]['only_db'] "
+"= array('db1', 'db2');</tt>"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:832
@@ -2209,6 +2217,9 @@ msgid ""
"databases in the left frame, so that you can individually arrange your "
"databases."
msgstr ""
+"phpMyAdmin 2.5.5'ten itibaren sol çerçevede sıralı düzen veritabanlarının "
+"sıralanması için kullanılıyor bu yüzden veritabanlarınızı ayrı ayrı "
+"düzenleyebilirsiniz."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:834
@@ -2219,12 +2230,18 @@ msgid ""
"phpMyAdmin that it should display db3 and db4 on top, and the rest in "
"alphabetic order."
msgstr ""
+"Belirli veritabanlarını en üstte istiyorsanız ama diğerlerini "
+"umursamıyorsanız, tüm diğer veritabanlarını belirlemeniz gerekmez. "
+"phpMyAdmin'e, en üstte db3 ve db4'ü ve kalanını alfabetik sırada görüntüle "
+"diye söylemek yerine, kullanmanız gereken: "
+"<tt>$cfg['Servers'][$i]['only_db'] = array('db3', 'db4', '*');</tt>"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:840
msgid ""
"<span id=\"cfg_Servers_hide_db\">$cfg['Servers'][$i]['hide_db']</span> string"
msgstr ""
+"<span id=\"cfg_Servers_hide_db\">$cfg['Servers'][$i]['hide_db']</span> dizgisi"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:842
@@ -2234,29 +2251,34 @@ msgid ""
"(using, for example, the SQL query area). To limit access, use the MySQL "
"privilege system."
msgstr ""
+"Bazı veritabanlarını yetkisiz kullanıcılardan gizlemek için düzenli "
+"ifadedir. Bu sadece onları listelemeden gizler ama kullanıcı hala onlara "
+"erişebilir (örneğin SQL sorgu alanını kullanarak). Erişimi sınırlandırmak "
+"için MySQL yetki sistemini kullanın."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:847
msgid ""
"For example, to hide all databases starting with the letter "a", use"
msgstr ""
+"Örneğin, "a" harfinden başlayarak tüm veritabanlarını gizlemek için"
#. type: Content of: <html><body><div><dl><dd><pre>
#: orig-docs/Documentation.html:848
#, no-wrap
msgid "$cfg['Servers'][$i]['hide_db'] = '^a';"
-msgstr ""
+msgstr "$cfg['Servers'][$i]['hide_db'] = '^a'; kullanın"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:849
msgid "and to hide both "db1" and "db2" use"
-msgstr ""
+msgstr "ve her iki "db1" ve "db2"yi gizlemek için"
#. type: Content of: <html><body><div><dl><dd><pre>
#: orig-docs/Documentation.html:850
#, no-wrap
msgid "$cfg['Servers'][$i]['hide_db'] = '^(db1|db2)$';"
-msgstr ""
+msgstr "$cfg['Servers'][$i]['hide_db'] = '^(db1|db2)$'; kullanın"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:851
@@ -2265,11 +2287,14 @@ msgid ""
"php.net/manual/en/reference.pcre.pattern.syntax.php\"> PCRE pattern syntax</"
"a> portion of the PHP reference manual."
msgstr ""
+"Düzenli ifadeler üzerine daha fazla bilgi PHP referans kitapçığının parçası "
+"olan <a href=\"http://php.net/manual/en/reference.pcre.pattern.syntax.php\"> "
+"PCRE pattern syntax</a> içinde bulunabilir."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:856
msgid "$cfg['Servers'][$i]['verbose'] string"
-msgstr ""
+msgstr "$cfg['Servers'][$i]['verbose'] dizgisi"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:857
@@ -2280,18 +2305,24 @@ msgid ""
"on your system, for example. For HTTP auth, all non-US-ASCII characters will "
"be stripped."
msgstr ""
+"Sadece phpMyAdmin'i çoklu sunucu girişleriyle kullandığınızda faydalıdır. "
+"Eğer ayarlanırsa ana sayfada aşağı açılan menüde anamakine adı yerine bu "
+"dizgi görüntülenecektir. Eğer sisteminizde sadece belirli veritabanlarını "
+"göstermek isterseniz, bu kullanışlı olabilir örneğin. HTTP kimlik "
+"doğrulaması için tüm US-ASCII olmayan karakterler çıkartılacaktır."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:864
msgid ""
"<span id=\"cfg_Servers_pmadb\">$cfg['Servers'][$i]['pmadb']</span> string"
msgstr ""
+"<span id=\"cfg_Servers_pmadb\">$cfg['Servers'][$i]['pmadb']</span> dizgisi"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:866
msgid ""
"The name of the database containing the phpMyAdmin configuration storage."
-msgstr ""
+msgstr "phpMyAdmin yapılandırma depolamasını içeren veritabanının adıdır."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:869
@@ -2300,6 +2331,9 @@ msgid ""
"section in this document to see the benefits of this feature, and for a "
"quick way of creating this database and the needed tables."
msgstr ""
+"Bu özelliğin yararlarını görmek için ve bu veritabanının hızlı yoldan "
+"oluşturulması ve gerekli tablolar için bu belgede <a href=\"#linked-"
+"tables\">phpMyAdmin yapılandırma depolaması</a> bölümüne bakın."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:874
@@ -2310,6 +2344,12 @@ msgid ""
"user installation, set this parameter to the name of your central database "
"containing the phpMyAdmin configuration storage."
msgstr ""
+"Eğer bu phpMyAdmin kurulumunun sadece kullanıcısı sizseniz, bu özel "
+"tabloları depolamak için şu anki veritabanınızı kullanabilirsiniz; bu "
+"durumda şu anki veritabanı adınızı sadece "
+"<tt>$cfg['Servers'][$i]['pmadb']</tt> içine koyun. Çoklu kullanıcı kurulumu "
+"için bu parametreyi phpMyAdmin yapılandırma depolamasını içeren merkezi "
+"veritabanınızın adına ayarlayın."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:882
@@ -2317,6 +2357,9 @@ msgid ""
"<span id=\"cfg_Servers_bookmarktable\">$cfg['Servers'][$i]['bookmarktable']</"
"span> string"
msgstr ""
+"<span "
+"id=\"cfg_Servers_bookmarktable\">$cfg['Servers'][$i]['bookmarktable']</span> "
+"dizgisi"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:884
@@ -2324,6 +2367,9 @@ msgid ""
"Since release 2.2.0 phpMyAdmin allows users to bookmark queries. This can be "
"useful for queries you often run."
msgstr ""
+"2.2.0 yayımından bu yana phpMyAdmin kullanıcılara sorguları saklamak için "
+"işaretlemesine izin verir. Bu sık sık çalıştırdığınız sorgular için faydalı "
+"olabilir."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:887 orig-docs/Documentation.html:922
@@ -2331,7 +2377,7 @@ msgstr ""
#: orig-docs/Documentation.html:1045 orig-docs/Documentation.html:1076
#: orig-docs/Documentation.html:1153 orig-docs/Documentation.html:1169
msgid "To allow the usage of this functionality:"
-msgstr ""
+msgstr "Bu işlevselliğin kullanımına izin vermek için:"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:888 orig-docs/Documentation.html:924
@@ -2342,11 +2388,12 @@ msgstr ""
msgid ""
"set up <a href=\"#pmadb\">pmadb</a> and the phpMyAdmin configuration storage"
msgstr ""
+"<a href=\"#pmadb\">pmadb</a> ve phpMyAdmin yapılandırma depolamasını kurun"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:889
msgid "enter the table name in <tt>$cfg['Servers'][$i]['bookmarktable']</tt>"
-msgstr ""
+msgstr "<tt>$cfg['Servers'][$i]['bookmarktable']</tt> içine tablo adını girin"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:895
@@ -2354,6 +2401,8 @@ msgid ""
"<span id=\"cfg_Servers_relation\">$cfg['Servers'][$i]['relation']</span> "
"string"
msgstr ""
+"<span id=\"cfg_Servers_relation\">$cfg['Servers'][$i]['relation']</span> "
+"dizgisi"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:897
hooks/post-receive
--
phpMyAdmin localized documentation
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA4-295-g13fea45
by Michal Čihař 15 Mar '11
by Michal Čihař 15 Mar '11
15 Mar '11
The branch, master has been updated
via 13fea458fb2e8b87f5928228b830006cc0f9d754 (commit)
via 1eae05249ecd0fd5aa80006ee2ab6f4ffbcc683a (commit)
via 940fa3e1f104f350d47c527ada41a300bd6da646 (commit)
via e8651a83cf082493461af1d36bee65d0bc5e45a8 (commit)
via 01379b40d57d24925cb04a9b10bf53d91ad382bb (commit)
via 7481b076c39368f2fd62cb1a3b6ca04efd6abd99 (commit)
via ad1037533ce4969d910540d42ae36099c1839a05 (commit)
via d59847804d7cf831ac56dd95188e5e024954931d (commit)
via 0562cc70c30f8a82e570b5a27c2e10d3a3b26b05 (commit)
via fcc93dd4bd6b1551fb7fc752db21eb087cc21cc7 (commit)
via f2e851b2bdaa9f151a0cd946a164f1d9f351f8a8 (commit)
via dd2fda6ed4856fced2f941b26a02d80e15b6b56f (commit)
via 0335f4ee636de52581382a3a3042f3256a1f08b2 (commit)
from 8e601dd9643fad25521bee9088bb4e1ed9a26f63 (commit)
- Log -----------------------------------------------------------------
commit 13fea458fb2e8b87f5928228b830006cc0f9d754
Merge: 1eae05249ecd0fd5aa80006ee2ab6f4ffbcc683a 8e601dd9643fad25521bee9088bb4e1ed9a26f63
Author: Pootle server <pootle(a)cihar.com>
Date: Mon Mar 14 20:40:07 2011 +0100
Merge remote-tracking branch 'origin/master'
commit 1eae05249ecd0fd5aa80006ee2ab6f4ffbcc683a
Author: Victor Volkov <hanut(a)php-myadmin.ru>
Date: Sun Mar 13 21:17:31 2011 +0200
Translation update done using Pootle.
commit 940fa3e1f104f350d47c527ada41a300bd6da646
Author: Victor Volkov <hanut(a)php-myadmin.ru>
Date: Sun Mar 13 21:17:24 2011 +0200
Translation update done using Pootle.
commit e8651a83cf082493461af1d36bee65d0bc5e45a8
Author: Victor Volkov <hanut(a)php-myadmin.ru>
Date: Sun Mar 13 21:11:10 2011 +0200
Translation update done using Pootle.
commit 01379b40d57d24925cb04a9b10bf53d91ad382bb
Author: Victor Volkov <hanut(a)php-myadmin.ru>
Date: Sun Mar 13 21:10:54 2011 +0200
Translation update done using Pootle.
commit 7481b076c39368f2fd62cb1a3b6ca04efd6abd99
Author: Victor Volkov <hanut(a)php-myadmin.ru>
Date: Sun Mar 13 21:09:40 2011 +0200
Translation update done using Pootle.
commit ad1037533ce4969d910540d42ae36099c1839a05
Author: Victor Volkov <hanut(a)php-myadmin.ru>
Date: Sun Mar 13 21:08:28 2011 +0200
Translation update done using Pootle.
commit d59847804d7cf831ac56dd95188e5e024954931d
Author: Victor Volkov <hanut(a)php-myadmin.ru>
Date: Sun Mar 13 21:06:56 2011 +0200
Translation update done using Pootle.
commit 0562cc70c30f8a82e570b5a27c2e10d3a3b26b05
Author: Victor Volkov <hanut(a)php-myadmin.ru>
Date: Sun Mar 13 21:03:01 2011 +0200
Translation update done using Pootle.
commit fcc93dd4bd6b1551fb7fc752db21eb087cc21cc7
Author: Victor Volkov <hanut(a)php-myadmin.ru>
Date: Sun Mar 13 21:02:03 2011 +0200
Translation update done using Pootle.
commit f2e851b2bdaa9f151a0cd946a164f1d9f351f8a8
Author: Victor Volkov <hanut(a)php-myadmin.ru>
Date: Sun Mar 13 21:01:05 2011 +0200
Translation update done using Pootle.
commit dd2fda6ed4856fced2f941b26a02d80e15b6b56f
Author: Victor Volkov <hanut(a)php-myadmin.ru>
Date: Sun Mar 13 21:00:04 2011 +0200
Translation update done using Pootle.
commit 0335f4ee636de52581382a3a3042f3256a1f08b2
Author: Victor Volkov <hanut(a)php-myadmin.ru>
Date: Sun Mar 13 20:59:38 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/ru.po | 25 +++++++++++++------------
1 files changed, 13 insertions(+), 12 deletions(-)
diff --git a/po/ru.po b/po/ru.po
index f92a7af..e52d7ee 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta4-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-03-05 14:23-0500\n"
-"PO-Revision-Date: 2011-03-13 20:55+0200\n"
+"PO-Revision-Date: 2011-03-13 21:17+0200\n"
"Last-Translator: Victor Volkov <hanut(a)php-myadmin.ru>\n"
"Language-Team: russian <ru(a)li.org>\n"
"Language: ru\n"
@@ -984,7 +984,7 @@ msgstr "Удаление данных слежения"
#: js/messages.php:36
msgid "Dropping Primary Key/Index"
-msgstr "Удаление первичного ключа / индекса"
+msgstr "Удаление первичного ключа/индекса"
#: js/messages.php:37
msgid "This operation could take a long time. Proceed anyway?"
@@ -3798,10 +3798,11 @@ msgid ""
"alphabetical order."
msgstr ""
"Вы можете использовать подстановочные символы (% и _), экранируйте их, если "
-"хотите использовать, как обычные литературные символы, т.е. используйте 'my"
-"\\_db' а не 'my_db'. С помощью данной настройки можно сортировать список баз "
-"данных, для чего достаточно ввести их имена в определенном порядке и "
-"использовать [kbd]*[/kbd] в конце для вывода оставшихся в алфавитном порядке."
+"хотите использовать, как обычные литературные символы, т.е. используйте "
+"[kbd]'my\\_db'[/kbd] а не [kbd]'my_db'[/kbd]. С помощью данной настройки "
+"можно сортировать список баз данных, для чего достаточно ввести их имена в "
+"определенном порядке и использовать [kbd]*[/kbd] в конце для вывода "
+"оставшихся в алфавитном порядке."
#: libraries/config/messages.inc.php:394
msgid "Show only listed databases"
@@ -3833,9 +3834,9 @@ msgid ""
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
"База данных используемая для расширенных функций: связей, закладок, и PDF. "
-"Для более полной информации смотрите [a@http://wiki.phpmyadmin.net/pma/pmadb]"
-"pmadb[/a]. Для отключения поддержки, оставьте поле пустым. Рекомендуется: "
-"[kbd]phpmyadmin[/kbd]"
+"Для более полной информации смотрите "
+"[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Для отключения поддержки, "
+"оставьте поле пустым. Рекомендуется: [kbd]phpmyadmin[/kbd]"
#: libraries/config/messages.inc.php:400
msgid "Database name"
@@ -6267,7 +6268,7 @@ msgid ""
"this list."
msgstr ""
"Только подчиненные сервера запущенные с ключом --report-host=host_name "
-"option видимы в данном списке."
+"видимы в данном списке."
#: libraries/replication_gui.lib.php:242 server_replication.php:192
msgid "Add slave replication user"
@@ -7697,7 +7698,7 @@ msgstr "Нет"
#: server_privileges.php:438 server_privileges.php:573
#: server_privileges.php:1815 server_privileges.php:1821
msgid "Table-specific privileges"
-msgstr " Привилегии уровня таблицы"
+msgstr "Привилегии уровня таблицы"
#: server_privileges.php:439 server_privileges.php:581
#: server_privileges.php:1627
@@ -7856,7 +7857,7 @@ msgstr ""
#: server_privileges.php:2043
msgid "Add privileges on the following table"
-msgstr " Добавить привилегии на следующую таблицу"
+msgstr "Добавить привилегии на следующую таблицу"
#: server_privileges.php:2100
msgid "Change Login Information / Copy User"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA4-282-g8e601dd
by Madhura Jayaratne 14 Mar '11
by Madhura Jayaratne 14 Mar '11
14 Mar '11
The branch, master has been updated
via 8e601dd9643fad25521bee9088bb4e1ed9a26f63 (commit)
via d2955a1f3592f077adacebdd7aef068df9c50c72 (commit)
from 485c5d93a2cc199179c4f1a135a778c5bb3556b8 (commit)
- Log -----------------------------------------------------------------
commit 8e601dd9643fad25521bee9088bb4e1ed9a26f63
Merge: d2955a1f3592f077adacebdd7aef068df9c50c72 485c5d93a2cc199179c4f1a135a778c5bb3556b8
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue Mar 15 01:00:21 2011 +0530
Merge branch 'master' of ssh://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin
commit d2955a1f3592f077adacebdd7aef068df9c50c72
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue Mar 15 00:59:16 2011 +0530
Do not mark rows when clicked on anchor
-----------------------------------------------------------------------
Summary of changes:
js/functions.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/js/functions.js b/js/functions.js
index 8087dcc..3068c3e 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -594,7 +594,7 @@ $(document).ready(function() {
*/
$('tr.odd:not(.noclick), tr.even:not(.noclick)').live('click',function(e) {
//do not trigger when clicked on anchor or inside input element (in inline editing mode) with exception of the first checkbox
- if ($(e.target).parents('tr').find('td:nth(2)').hasClass('inline_edit_active')) {
+ if ($(e.target).is('a, a *') || $(e.target).parents('tr').find('td:nth(2)').hasClass('inline_edit_active')) {
return;
}
// XXX: FF fires two click events for <label> (label and checkbox), so we need to handle this differently
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. 9488058fe4e7238e12e9288415340f2f45342350
by Michal Čihař 13 Mar '11
by Michal Čihař 13 Mar '11
13 Mar '11
The branch, master has been updated
via 9488058fe4e7238e12e9288415340f2f45342350 (commit)
via 3b0ba259e524ee0963c3593ea21ddbc01b891ced (commit)
via d265aa246e051cc0287cb2002d90bdb81b08093b (commit)
via 7a2fb62853f7324df4c7bdbc472ddc033707e285 (commit)
via c0def7b68514bdecd926bfafb37975817d7251c5 (commit)
via 563e26063f55e488bc57d9ab1218199bdb201984 (commit)
via 59514ffd62d862c820e012901e16a363abde71ca (commit)
via 8db6ed5a25161a00533bf83501bf265bb520ec4c (commit)
via adc685344078a02b59a772dbf10079486776153d (commit)
via 15d5a94c89ebbb8e4b9e0e8c8be6585e97782175 (commit)
via 7738f637d7a8045afb5ad2e13a9f771bd7b9afd4 (commit)
via b2388885aa1611edcc5066ae4b5c62a74f1a32cc (commit)
via a01f6ea23538766821566978633371e59f39ddb7 (commit)
via 9dacbe3f99080bc68082f06a638e7b300a6d1721 (commit)
via b650ea04b1d690f5c8cc0dd2729150db8429c38f (commit)
via 225458da1745ea86c295ca659e656b53bc0aa1eb (commit)
via 3f30fdf159838d6486faee0b60317d882ecd3a43 (commit)
via abd83ab8502de1705433ab9917e6feaf50cec8ff (commit)
via 1c011b113236dbc43176b2f9a058d1028e2a7f0a (commit)
via dce7e998077c41e3fac1a4feac18e3e35993362a (commit)
via b60fcba375b2300755ff82dd97de2c1b8f29ee9b (commit)
via a4fcebcd4d4066b855ab0b587744fe510e4e158a (commit)
via 477d940c7bc0a830f09642e119d9dbfedd8a8a4b (commit)
via 813a66c36383998d9370e412aeeac7230edfdf18 (commit)
via d05db7336fb1aefd684de55cec69c1076824dd69 (commit)
via 86a6dd276fcd5d38ac00b9989cb48fc494df8690 (commit)
via be1276b15e0c144995e1ef2f38254d88fa0e5170 (commit)
via 0460effc49ffa49ba45d5e258c6634b9796f555e (commit)
via 3d4c2e9de96c8c157d3544732cf382a23f4875cb (commit)
via 18714e89cce3d493e05ff500d1e1ced545f4e52e (commit)
via 61f3ee1e3c8d2c5b908a911c393a2ad70ebb850b (commit)
via 9c74052559cb9bb9d7c46d10796afe5673e85f88 (commit)
via 50eec024c6331153a7cb9ee2e6e474533a6ba61b (commit)
via eb2b199229e6f1c53a849b9e0afc7988478b4737 (commit)
via 82bf5dbafb57d19fbfb93bd8370e6b0b9dbde0b2 (commit)
via f3f346c849ff7145fa4466f2ccce25d5b0411b6d (commit)
via 71c1da632b9cf6e000cbd5974ab7f5057164fd95 (commit)
via 33158909f2a6758ec68f6fc90bdeddce386a9e9d (commit)
via d64cf6c6c008755914a12d5ebb26ecb7dba3083e (commit)
via 8da462e77229cd272eaad94cf3087cdf46f0bd94 (commit)
via 5751aef24823ead40d2650003b6a5b7f6c814aa7 (commit)
via 2834d261ad98aad83961a81cc6cd0b926b639f4e (commit)
via 7752d5bddf843b729ed32c5a80571cc9b7a3e4c7 (commit)
via 6c78a682d8493aa349b650eb6282bb1edd12b077 (commit)
via c8018ae9d8bf7c1bfd2ace852e19bafbd6d7235b (commit)
via 2972ab79c5ef729e0628eaebcd69f5e4514f3cbd (commit)
via 9bc0ddbb0a703e41ba9fa00ac2876228dd8bf327 (commit)
via 8f783af1058c93f33c4f157f05df5b78d75c554f (commit)
via 922be3041c13ac374029c8e5b6932ab495cb6145 (commit)
via 962b693ef71da130f4d4d7866d043f3e439821f7 (commit)
via a3448cb75fc56c73e0edcf40b35ba19f84fa732a (commit)
via bbc40328f65947eab1cf13a1662e646ae849f098 (commit)
via b717030f339dcb4fc5f2a73afc9f2531d3d536b8 (commit)
via c393d63e05ecd3172d37ee3a2909763b8bdeb3be (commit)
via 3ec62363950bb5dbf7721390afeee64fd0248480 (commit)
via c9ba424b8b1cd72fa37905d0c46aeaeafcf5bd6d (commit)
via 8d891f976ca24c3a00bff4a1c4b1d8db1d374413 (commit)
via 9a68fe890c952a0d2efe4372f6616336341b678c (commit)
via d14d4f0ba01b34f0d9b8d4edc9f7405041feff9b (commit)
via 7fd40c81b7006ed686f81ee81331cac4f28d90bc (commit)
via 4cd2639510543e7ff48e9d832958ce6f0ad2e2ea (commit)
via 18df006be76e941be4edb1cd2f1a75ea3eb7adef (commit)
via b3c88ee1797267b242b32dad777696002750ec89 (commit)
via db2bed0c4204e4d7f5308e582307b5329fe37078 (commit)
via 18cbc9e9d7547f9a3c686ebaafd594c49e9e07be (commit)
via 0a7c5a0832e1158b068c6c4e7f41a77d5ee4e83f (commit)
via 66424a7794fd482b63331e4c2dc9bcd8c6f16dec (commit)
via b3fa5285f37d894f464c625260a381fbd90610f0 (commit)
via c5ccb2e5874316239f6684472fb80d29b215426a (commit)
via 99922c3ec3636531b2a8c6e75c62e7b9e6598899 (commit)
via d5bfa817743085ab0e00a26e46ad3eece2c26a09 (commit)
via e355c59337e49f67bcec7ec9169458a98c714e35 (commit)
via f94b70284f855a29d073696aa507c1974d954c55 (commit)
via 9e5228af15d8b4dbc8018ed3638c85bc0f430b17 (commit)
via c4543c7123ab8a777e49ff87f4ba3ee9db431d66 (commit)
via fb41d16256a08e392482a9d4aa39a1462504f7ff (commit)
via 2c1d3a2034c18f9f069cf95178286c08dc1f3400 (commit)
via f4c3a21995397d394eba1e91384dd189d097dd11 (commit)
via 01374b9c88f5227365aa1b724b0428718a818b90 (commit)
via b7008ec4575df3e6e88a8bfec47ab277575050cf (commit)
via 71cbd7078ea6392084d322450991e3d87011efb6 (commit)
via 90c89a65d6db6be57ae43c1431601b97157facf8 (commit)
via 0362c0f10095cfd849a0eb8b303d6ba564c802c7 (commit)
via c25327c990c94ccb28a03d85997499f4ad8875f3 (commit)
from b2726e5367adbb06a064364905c0333753cc0c23 (commit)
- Log -----------------------------------------------------------------
commit 9488058fe4e7238e12e9288415340f2f45342350
Author: Michal Čihař <michal(a)cihar.com>
Date: Sun Mar 13 21:51:07 2011 +0100
Update generated docs
commit 3b0ba259e524ee0963c3593ea21ddbc01b891ced
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Sun Mar 13 12:57:44 2011 +0200
Translation update done using Pootle.
commit d265aa246e051cc0287cb2002d90bdb81b08093b
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:10:05 2011 +0200
Translation update done using Pootle.
commit 7a2fb62853f7324df4c7bdbc472ddc033707e285
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:09:59 2011 +0200
Translation update done using Pootle.
commit c0def7b68514bdecd926bfafb37975817d7251c5
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:09:51 2011 +0200
Translation update done using Pootle.
commit 563e26063f55e488bc57d9ab1218199bdb201984
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:09:33 2011 +0200
Translation update done using Pootle.
commit 59514ffd62d862c820e012901e16a363abde71ca
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:09:06 2011 +0200
Translation update done using Pootle.
commit 8db6ed5a25161a00533bf83501bf265bb520ec4c
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:08:55 2011 +0200
Translation update done using Pootle.
commit adc685344078a02b59a772dbf10079486776153d
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:08:39 2011 +0200
Translation update done using Pootle.
commit 15d5a94c89ebbb8e4b9e0e8c8be6585e97782175
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:08:17 2011 +0200
Translation update done using Pootle.
commit 7738f637d7a8045afb5ad2e13a9f771bd7b9afd4
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:08:07 2011 +0200
Translation update done using Pootle.
commit b2388885aa1611edcc5066ae4b5c62a74f1a32cc
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:07:52 2011 +0200
Translation update done using Pootle.
commit a01f6ea23538766821566978633371e59f39ddb7
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:07:42 2011 +0200
Translation update done using Pootle.
commit 9dacbe3f99080bc68082f06a638e7b300a6d1721
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:07:28 2011 +0200
Translation update done using Pootle.
commit b650ea04b1d690f5c8cc0dd2729150db8429c38f
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:07:00 2011 +0200
Translation update done using Pootle.
commit 225458da1745ea86c295ca659e656b53bc0aa1eb
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:06:48 2011 +0200
Translation update done using Pootle.
commit 3f30fdf159838d6486faee0b60317d882ecd3a43
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:06:33 2011 +0200
Translation update done using Pootle.
commit abd83ab8502de1705433ab9917e6feaf50cec8ff
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:06:14 2011 +0200
Translation update done using Pootle.
commit 1c011b113236dbc43176b2f9a058d1028e2a7f0a
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:06:02 2011 +0200
Translation update done using Pootle.
commit dce7e998077c41e3fac1a4feac18e3e35993362a
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:05:48 2011 +0200
Translation update done using Pootle.
commit b60fcba375b2300755ff82dd97de2c1b8f29ee9b
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:05:38 2011 +0200
Translation update done using Pootle.
commit a4fcebcd4d4066b855ab0b587744fe510e4e158a
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:05:27 2011 +0200
Translation update done using Pootle.
commit 477d940c7bc0a830f09642e119d9dbfedd8a8a4b
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:05:13 2011 +0200
Translation update done using Pootle.
commit 813a66c36383998d9370e412aeeac7230edfdf18
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:04:50 2011 +0200
Translation update done using Pootle.
commit d05db7336fb1aefd684de55cec69c1076824dd69
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:04:35 2011 +0200
Translation update done using Pootle.
commit 86a6dd276fcd5d38ac00b9989cb48fc494df8690
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:04:19 2011 +0200
Translation update done using Pootle.
commit be1276b15e0c144995e1ef2f38254d88fa0e5170
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:04:11 2011 +0200
Translation update done using Pootle.
commit 0460effc49ffa49ba45d5e258c6634b9796f555e
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:03:53 2011 +0200
Translation update done using Pootle.
commit 3d4c2e9de96c8c157d3544732cf382a23f4875cb
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:03:40 2011 +0200
Translation update done using Pootle.
commit 18714e89cce3d493e05ff500d1e1ced545f4e52e
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:03:03 2011 +0200
Translation update done using Pootle.
commit 61f3ee1e3c8d2c5b908a911c393a2ad70ebb850b
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:02:06 2011 +0200
Translation update done using Pootle.
commit 9c74052559cb9bb9d7c46d10796afe5673e85f88
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 17:00:39 2011 +0200
Translation update done using Pootle.
commit 50eec024c6331153a7cb9ee2e6e474533a6ba61b
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:59:12 2011 +0200
Translation update done using Pootle.
commit eb2b199229e6f1c53a849b9e0afc7988478b4737
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:55:40 2011 +0200
Translation update done using Pootle.
commit 82bf5dbafb57d19fbfb93bd8370e6b0b9dbde0b2
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:55:35 2011 +0200
Translation update done using Pootle.
commit f3f346c849ff7145fa4466f2ccce25d5b0411b6d
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:54:50 2011 +0200
Translation update done using Pootle.
commit 71c1da632b9cf6e000cbd5974ab7f5057164fd95
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:54:20 2011 +0200
Translation update done using Pootle.
commit 33158909f2a6758ec68f6fc90bdeddce386a9e9d
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:53:06 2011 +0200
Translation update done using Pootle.
commit d64cf6c6c008755914a12d5ebb26ecb7dba3083e
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:53:01 2011 +0200
Translation update done using Pootle.
commit 8da462e77229cd272eaad94cf3087cdf46f0bd94
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:51:54 2011 +0200
Translation update done using Pootle.
commit 5751aef24823ead40d2650003b6a5b7f6c814aa7
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:51:48 2011 +0200
Translation update done using Pootle.
commit 2834d261ad98aad83961a81cc6cd0b926b639f4e
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:50:29 2011 +0200
Translation update done using Pootle.
commit 7752d5bddf843b729ed32c5a80571cc9b7a3e4c7
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:50:20 2011 +0200
Translation update done using Pootle.
commit 6c78a682d8493aa349b650eb6282bb1edd12b077
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:49:58 2011 +0200
Translation update done using Pootle.
commit c8018ae9d8bf7c1bfd2ace852e19bafbd6d7235b
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:49:33 2011 +0200
Translation update done using Pootle.
commit 2972ab79c5ef729e0628eaebcd69f5e4514f3cbd
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:49:22 2011 +0200
Translation update done using Pootle.
commit 9bc0ddbb0a703e41ba9fa00ac2876228dd8bf327
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:48:52 2011 +0200
Translation update done using Pootle.
commit 8f783af1058c93f33c4f157f05df5b78d75c554f
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:48:19 2011 +0200
Translation update done using Pootle.
commit 922be3041c13ac374029c8e5b6932ab495cb6145
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:47:43 2011 +0200
Translation update done using Pootle.
commit 962b693ef71da130f4d4d7866d043f3e439821f7
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:47:33 2011 +0200
Translation update done using Pootle.
commit a3448cb75fc56c73e0edcf40b35ba19f84fa732a
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:47:20 2011 +0200
Translation update done using Pootle.
commit bbc40328f65947eab1cf13a1662e646ae849f098
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:46:19 2011 +0200
Translation update done using Pootle.
commit b717030f339dcb4fc5f2a73afc9f2531d3d536b8
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:46:03 2011 +0200
Translation update done using Pootle.
commit c393d63e05ecd3172d37ee3a2909763b8bdeb3be
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:45:56 2011 +0200
Translation update done using Pootle.
commit 3ec62363950bb5dbf7721390afeee64fd0248480
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:45:20 2011 +0200
Translation update done using Pootle.
commit c9ba424b8b1cd72fa37905d0c46aeaeafcf5bd6d
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:45:03 2011 +0200
Translation update done using Pootle.
commit 8d891f976ca24c3a00bff4a1c4b1d8db1d374413
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:44:49 2011 +0200
Translation update done using Pootle.
commit 9a68fe890c952a0d2efe4372f6616336341b678c
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:44:44 2011 +0200
Translation update done using Pootle.
commit d14d4f0ba01b34f0d9b8d4edc9f7405041feff9b
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:44:23 2011 +0200
Translation update done using Pootle.
commit 7fd40c81b7006ed686f81ee81331cac4f28d90bc
Author: mynetx <mynetx(a)gmx.de>
Date: Sat Mar 12 16:44:07 2011 +0200
Translation update done using Pootle.
commit 4cd2639510543e7ff48e9d832958ce6f0ad2e2ea
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:47:36 2011 +0200
Translation update done using Pootle.
commit 18df006be76e941be4edb1cd2f1a75ea3eb7adef
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:47:22 2011 +0200
Translation update done using Pootle.
commit b3c88ee1797267b242b32dad777696002750ec89
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:46:24 2011 +0200
Translation update done using Pootle.
commit db2bed0c4204e4d7f5308e582307b5329fe37078
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:45:53 2011 +0200
Translation update done using Pootle.
commit 18cbc9e9d7547f9a3c686ebaafd594c49e9e07be
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:42:17 2011 +0200
Translation update done using Pootle.
commit 0a7c5a0832e1158b068c6c4e7f41a77d5ee4e83f
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:41:20 2011 +0200
Translation update done using Pootle.
commit 66424a7794fd482b63331e4c2dc9bcd8c6f16dec
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:39:24 2011 +0200
Translation update done using Pootle.
commit b3fa5285f37d894f464c625260a381fbd90610f0
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:39:14 2011 +0200
Translation update done using Pootle.
commit c5ccb2e5874316239f6684472fb80d29b215426a
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:38:54 2011 +0200
Translation update done using Pootle.
commit 99922c3ec3636531b2a8c6e75c62e7b9e6598899
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:36:50 2011 +0200
Translation update done using Pootle.
commit d5bfa817743085ab0e00a26e46ad3eece2c26a09
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:36:33 2011 +0200
Translation update done using Pootle.
commit e355c59337e49f67bcec7ec9169458a98c714e35
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:35:53 2011 +0200
Translation update done using Pootle.
commit f94b70284f855a29d073696aa507c1974d954c55
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:35:27 2011 +0200
Translation update done using Pootle.
commit 9e5228af15d8b4dbc8018ed3638c85bc0f430b17
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:31:51 2011 +0200
Translation update done using Pootle.
commit c4543c7123ab8a777e49ff87f4ba3ee9db431d66
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:30:47 2011 +0200
Translation update done using Pootle.
commit fb41d16256a08e392482a9d4aa39a1462504f7ff
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:29:50 2011 +0200
Translation update done using Pootle.
commit 2c1d3a2034c18f9f069cf95178286c08dc1f3400
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:29:29 2011 +0200
Translation update done using Pootle.
commit f4c3a21995397d394eba1e91384dd189d097dd11
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:29:00 2011 +0200
Translation update done using Pootle.
commit 01374b9c88f5227365aa1b724b0428718a818b90
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:24:00 2011 +0200
Translation update done using Pootle.
commit b7008ec4575df3e6e88a8bfec47ab277575050cf
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:22:26 2011 +0200
Translation update done using Pootle.
commit 71cbd7078ea6392084d322450991e3d87011efb6
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:22:06 2011 +0200
Translation update done using Pootle.
commit 90c89a65d6db6be57ae43c1431601b97157facf8
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:20:32 2011 +0200
Translation update done using Pootle.
commit 0362c0f10095cfd849a0eb8b303d6ba564c802c7
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:19:42 2011 +0200
Translation update done using Pootle.
commit c25327c990c94ccb28a03d85997499f4ad8875f3
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Sat Mar 12 01:18:30 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
output/cs/Documentation.html | 4 +-
output/cs/README | 2 +-
output/el/Documentation.html | 4 +-
output/el/README | 2 +-
output/en_GB/Documentation.html | 4 +-
output/en_GB/README | 2 +-
output/es/Documentation.html | 111 ++++++++++---------
output/es/README | 2 +-
output/fr/Documentation.html | 4 +-
output/fr/README | 2 +-
output/it/Documentation.html | 4 +-
output/ja/Documentation.html | 4 +-
output/pl/Documentation.html | 4 +-
output/pt_BR/Documentation.html | 4 +-
output/pt_BR/README | 2 +-
output/sl/README | 2 +-
output/tr/Documentation.html | 4 +-
output/tr/README | 2 +-
output/zh_CN/Documentation.html | 4 +-
output/zh_CN/README | 2 +-
po/de.po | 225 ++++++++++++++++++++++++++-------------
po/es.po | 68 +++++++++---
po/tr.po | 4 +-
pot/ca-full.pot | 14 +---
pot/ca-html.pot | 2 +-
pot/ca-txt.pot | 2 +-
pot/cs-full.pot | 14 +---
pot/cs-html.pot | 2 +-
pot/cs-txt.pot | 2 +-
pot/de-full.pot | 14 +---
pot/de-html.pot | 2 +-
pot/de-txt.pot | 2 +-
pot/el-full.pot | 14 +---
pot/el-html.pot | 2 +-
pot/el-txt.pot | 2 +-
pot/en_GB-full.pot | 14 +---
pot/en_GB-html.pot | 2 +-
pot/en_GB-txt.pot | 2 +-
pot/es-full.pot | 14 +---
pot/es-html.pot | 2 +-
pot/es-txt.pot | 2 +-
pot/fi-full.pot | 14 +---
pot/fi-html.pot | 2 +-
pot/fi-txt.pot | 2 +-
pot/fr-full.pot | 14 +---
pot/fr-html.pot | 2 +-
pot/fr-txt.pot | 2 +-
pot/gl-full.pot | 14 +---
pot/gl-html.pot | 2 +-
pot/gl-txt.pot | 2 +-
pot/hu-full.pot | 14 +---
pot/hu-html.pot | 2 +-
pot/hu-txt.pot | 2 +-
pot/hy-full.pot | 14 +---
pot/hy-html.pot | 2 +-
pot/hy-txt.pot | 2 +-
pot/it-full.pot | 14 +---
pot/it-html.pot | 2 +-
pot/it-txt.pot | 2 +-
pot/ja-full.pot | 14 +---
pot/ja-html.pot | 2 +-
pot/ja-txt.pot | 2 +-
pot/ka-full.pot | 14 +---
pot/ka-html.pot | 2 +-
pot/ka-txt.pot | 2 +-
pot/lt-full.pot | 14 +---
pot/lt-html.pot | 2 +-
pot/lt-txt.pot | 2 +-
pot/mn-full.pot | 14 +---
pot/mn-html.pot | 2 +-
pot/mn-txt.pot | 2 +-
pot/nb-full.pot | 14 +---
pot/nb-html.pot | 2 +-
pot/nb-txt.pot | 2 +-
pot/nl-full.pot | 14 +---
pot/nl-html.pot | 2 +-
pot/nl-txt.pot | 2 +-
pot/pl-full.pot | 14 +---
pot/pl-html.pot | 2 +-
pot/pl-txt.pot | 2 +-
pot/pt_BR-full.pot | 14 +---
pot/pt_BR-html.pot | 2 +-
pot/pt_BR-txt.pot | 2 +-
pot/ro-full.pot | 14 +---
pot/ro-html.pot | 2 +-
pot/ro-txt.pot | 2 +-
pot/sk-full.pot | 14 +---
pot/sk-html.pot | 2 +-
pot/sk-txt.pot | 2 +-
pot/sl-full.pot | 14 +---
pot/sl-html.pot | 2 +-
pot/sl-txt.pot | 2 +-
pot/sv-full.pot | 14 +---
pot/sv-html.pot | 2 +-
pot/sv-txt.pot | 2 +-
pot/tr-full.pot | 14 +---
pot/tr-html.pot | 2 +-
pot/tr-txt.pot | 2 +-
pot/zh_CN-full.pot | 14 +---
pot/zh_CN-html.pot | 2 +-
pot/zh_CN-txt.pot | 2 +-
pot/zh_TW-full.pot | 14 +---
pot/zh_TW-html.pot | 2 +-
pot/zh_TW-txt.pot | 2 +-
104 files changed, 375 insertions(+), 577 deletions(-)
diff --git a/output/cs/Documentation.html b/output/cs/Documentation.html
index 7ce49ca..8b239af 100644
--- a/output/cs/Documentation.html
+++ b/output/cs/Documentation.html
@@ -19,7 +19,7 @@ Nebo je také můžete upravit na 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>phpMyAdmin 3.4.0-beta4-dev - Dokumentace</title>
+ <title>phpMyAdmin 3.4.0-rc1-dev - Dokumentace</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -27,7 +27,7 @@ Nebo je také můžete upravit na https://l10n.cihar.com/projects/pmadoc/.
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-beta4-dev Dokumentace
+class="myadmin">MyAdmin</span></a> 3.4.0-rc1-dev Dokumentace
</h1>
</div>
diff --git a/output/cs/README b/output/cs/README
index 2872955..44d8bcd 100644
--- a/output/cs/README
+++ b/output/cs/README
@@ -1,7 +1,7 @@
phpMyAdmina - čtěte mě
=========================
-Verze 3.4.0-beta4-dev
+Verze 3.4.0-rc1-dev
Sada PHP skriptů pro správu MySQL přes web.
diff --git a/output/el/Documentation.html b/output/el/Documentation.html
index f6320ee..bfeb3cd 100644
--- a/output/el/Documentation.html
+++ b/output/el/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>phpMyAdmin 3.4.0-beta4-dev - Documentation</title>
+ <title>phpMyAdmin 3.4.0-rc1-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> 3.4.0-beta4-dev Documentation
+class="myadmin">MyAdmin</span></a> 3.4.0-rc1-dev Documentation
</h1>
</div>
diff --git a/output/el/README b/output/el/README
index 522ef28..542ebeb 100644
--- a/output/el/README
+++ b/output/el/README
@@ -1,7 +1,7 @@
phpMyAdmin - Readme
===================
-Version 3.4.0-beta4-dev
+Version 3.4.0-rc1-dev
Ένα σύνολο από κώδικες PHP για διαχείριση του MySQL μέσω διαδικτύου.
diff --git a/output/en_GB/Documentation.html b/output/en_GB/Documentation.html
index 5b4f638..4806206 100644
--- a/output/en_GB/Documentation.html
+++ b/output/en_GB/Documentation.html
@@ -19,7 +19,7 @@ Or you can edit them online at 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>phpMyAdmin 3.4.0-beta4-dev - Documentation</title>
+ <title>phpMyAdmin 3.4.0-rc1-dev - Documentation</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -27,7 +27,7 @@ Or you can edit them online at https://l10n.cihar.com/projects/pmadoc/.
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-beta4-dev Documentation
+class="myadmin">MyAdmin</span></a> 3.4.0-rc1-dev Documentation
</h1>
</div>
diff --git a/output/en_GB/README b/output/en_GB/README
index fafe8ad..8f7385f 100644
--- a/output/en_GB/README
+++ b/output/en_GB/README
@@ -1,7 +1,7 @@
phpMyAdmin - Readme
===================
-Version 3.4.0-beta4-dev
+Version 3.4.0-rc1-dev
A set of PHP-scripts to manage MySQL over the web.
diff --git a/output/es/Documentation.html b/output/es/Documentation.html
index 3a5b0c2..ad65786 100644
--- a/output/es/Documentation.html
+++ b/output/es/Documentation.html
@@ -19,7 +19,7 @@ Or you can edit them online at 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>Documentación de phpMyAdmin 3.4.0-beta4-dev</title>
+ <title>Documentación de phpMyAdmin 3.4.0-rc1-dev</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -27,7 +27,7 @@ Or you can edit them online at https://l10n.cihar.com/projects/pmadoc/.
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-beta4-dev Documentación
+class="myadmin">MyAdmin</span></a> 3.4.0-rc1-dev Documentación
</h1>
</div>
@@ -1539,67 +1539,70 @@ los usuarios acceso a servidores MySQL detrás del firewall del servidor
<abbr title="HyperText Transfer Protocol">HTTP</abbr>.
</dd>
- <dt id ="cfg_Error_Handler_display">$cfg['Error_Handler']['display'] boolean</dt>
- <dd>Whether to display errors from PHP or not.</dd>
+ <dt id ="cfg_Error_Handler_display">booleano $cfg['Error_Handler']['display']</dt>
+ <dd>Si mostrar errores de PHP o no.</dd>
- <dt id ="cfg_Error_Handler_gather">$cfg['Error_Handler']['gather'] boolean</dt>
- <dd>Whether to gather errors from PHP or not.</dd>
+ <dt id ="cfg_Error_Handler_gather">booleano $cfg['Error_Handler']['gather']</dt>
+ <dd>Si recolectar los errores de PHP o no.</dd>
- <dt id="cfg_LeftFrameLight">$cfg['LeftFrameLight'] boolean</dt>
- <dd>Defines whether to use a select-based menu and display only the current
-tables in the left frame (smaller page). Only in Non-Lightmode you can use
-the feature to display nested folders using <a
+ <dt id="cfg_LeftFrameLight">booleano $cfg['LeftFrameLight']</dt>
+ <dd>Define si se utiliza un menú de selección y sólo mostrar las tablas actuales
+en el marco izquierdo (una página más pequeña). Sólo en el modo no-ligero se
+puede utlizar la funcionalidad para mostrar carpetas anidadas utilizando <a
href="#cfg_LeftFrameTableSeparator"
class="configrule">$cfg['LeftFrameTableSeparator']</a>
</dd>
- <dt id="cfg_LeftFrameDBTree">$cfg['LeftFrameDBTree'] boolean</dt>
- <dd>In light mode, defines whether to display the names of databases (in the
-selector) using a tree, see also <a href="#cfg_LeftFrameDBSeparator"
+ <dt id="cfg_LeftFrameDBTree">booleano $cfg['LeftFrameDBTree']</dt>
+ <dd>En el modo ligero, define si mostrar los nombres de las bases de datos (en
+el selector) utilizando un árbol. Ver también <a
+href="#cfg_LeftFrameDBSeparator"
class="configrule">$cfg['LeftFrameDBSeparator']</a>.
</dd>
- <dt id="cfg_LeftFrameDBSeparator">$cfg['LeftFrameDBSeparator'] string or array</dt>
- <dd>The string used to separate the parts of the database name when showing them
-in a tree. Alternatively you can specify more strings in an array and all of
-them will be used as a separator.</dd>
-
- <dt id="cfg_LeftFrameTableSeparator">$cfg['LeftFrameTableSeparator'] string</dt>
- <dd>Defines a string to be used to nest table spaces. Defaults to '__'. This
-means if you have tables like 'first__second__third' this will be shown as a
-three-level hierarchy like: first > second > third. If set to FALSE
-or empty, the feature is disabled. NOTE: You should not use this separator
-at the beginning or end of a table name or multiple times after another
-without any other characters in between.</dd>
-
- <dt id="cfg_LeftFrameTableLevel">$cfg['LeftFrameTableLevel'] string</dt>
- <dd>Defines how many sublevels should be displayed when splitting up tables by
-the above separator.</dd>
-
- <dt id="cfg_ShowTooltip">$cfg['ShowTooltip'] boolean</dt>
- <dd>Defines whether to display table comment as tool-tip in left frame or not.</dd>
-
- <dt id="cfg_ShowTooltipAliasDB">$cfg['ShowTooltipAliasDB'] boolean</dt>
- <dd>If tool-tips are enabled and a DB comment is set, this will flip the comment
-and the real name. That means that if you have a table called 'user0001' and
-add the comment 'MyName' on it, you will see the name 'MyName' used
-consequently in the left frame and the tool-tip shows the real name of the
-DB.</dd>
-
- <dt id="cfg_ShowTooltipAliasTB">$cfg['ShowTooltipAliasTB'] boolean/string</dt>
- <dd>Same as <a href="#cfg_ShowTooltipAliasDB"
-class="configrule">$cfg['ShowTooltipAliasDB']</a>, except this works for
-table names. When setting this to 'nested', the Alias of the Tablename is
-only used to split/nest the tables according to the <a
-href="#cfg_LeftFrameTableSeparator"
-class="configrule">$cfg['LeftFrameTableSeparator']</a> directive. So only
-the folder is called like the Alias, the tablename itself stays the real
-tablename.</dd>
-
- <dt id="cfg_LeftDisplayLogo">$cfg['LeftDisplayLogo'] boolean</dt>
- <dd>Defines whether or not to display the phpMyAdmin logo at the top of the left
-frame. Defaults to <tt>TRUE</tt>.</dd>
- <dt id="cfg_LeftLogoLink">$cfg['LeftLogoLink'] string</dt>
+ <dt id="cfg_LeftFrameDBSeparator">cadena o array $cfg['LeftFrameDBSeparator']</dt>
+ <dd>La cadena a utilizar para separar las partes del nombre de la base de datos
+al mostrarlas en un árbol. Alternativamente se pueden especificar más
+cadenas en un array y todas ellas van a ser utilizadas como separadores.</dd>
+
+ <dt id="cfg_LeftFrameTableSeparator">cadena $cfg['LeftFrameTableSeparator']</dt>
+ <dd>Define la cadena a utilizar para anidar espacios de tablas. El valor
+predeterminado es '__'. Esto significa que si tienes tablas como
+'primero__segundo__tercer' van a ser mostrados como una jerarquía de tres
+niveles como: primero > segundo > tercero. Si es FALSE o una cadena
+vacía, la funcionalidad estará desactivada. NOTA: no se debe utilizar este
+separador al principio o al final del nombre de una tabla o más de una vez
+seguida sin caracteres intermedios.</dd>
+
+ <dt id="cfg_LeftFrameTableLevel">cadena $cfg['LeftFrameTableLevel']</dt>
+ <dd>Define la cantidad de sub-niveles a mostrar cuando se separen nombres de
+tabla con el separador anterior.</dd>
+
+ <dt id="cfg_ShowTooltip">booleano $cfg['ShowTooltip']</dt>
+ <dd>Define si mostrar el comentario de la tabla como texto suplementario o no.</dd>
+
+ <dt id="cfg_ShowTooltipAliasDB">booleano $cfg['ShowTooltipAliasDB']</dt>
+ <dd>Si los textos suplementarions están habilitados y hay un comentario definido
+en la base de datos, esta configuración intercambiará el comentario y el
+nombre real. Esto significa que si se tiene una tabla llamada 'usuario0001'
+con el comentario 'MiNombre' en ella, se verá la base de datos con el nombre
+'MiNombre' en el marco izquierdo y el texto suplementario mostrará el nombre
+real de la base de datos.</dd>
+
+ <dt id="cfg_ShowTooltipAliasTB">booleano o cadena $cfg['ShowTooltipAliasTB']</dt>
+ <dd>Igual que <a href="#cfg_ShowTooltipAliasDB"
+class="configrule">$cfg['ShowTooltipAliasDB']</a>, sólo que este lo hace
+para los nombres de tablas. Cuando está configurado como 'nested', el alias
+de la base de datos sólo será utilizado para dividir/anidar las tablas según
+la configuración de <a href="#cfg_LeftFrameTableSeparator"
+class="configrule">$cfg['LeftFrameTableSeparator']</a>. De esa forma, sólo
+la carpeta se llamará como el Alias y el nombre real de la tabla en sí será
+mostrado.</dd>
+
+ <dt id="cfg_LeftDisplayLogo">booleano $cfg['LeftDisplayLogo']</dt>
+ <dd>Define si mostrar o no el logo de phpMyAdmin en la porció superior del marco
+izquierdo. El valor predeterminado es <tt>TRUE</tt>.</dd>
+ <dt id="cfg_LeftLogoLink">cadena $cfg['LeftLogoLink']</dt>
<dd>Enter URL where logo in the navigation frame will point to. For use
especially with self made theme which changes this. The default value for
this is <tt>main.php</tt>.</dd>
diff --git a/output/es/README b/output/es/README
index fad5869..33b5502 100644
--- a/output/es/README
+++ b/output/es/README
@@ -1,7 +1,7 @@
phpMyAdmin - Readme
===================
-Version 3.4.0-beta4-dev
+Version 3.4.0-rc1-dev
A set of PHP-scripts to manage MySQL over the web.
diff --git a/output/fr/Documentation.html b/output/fr/Documentation.html
index c325cfc..af0cf63 100644
--- a/output/fr/Documentation.html
+++ b/output/fr/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>phpMyAdmin 3.4.0-beta4-dev - Documentation</title>
+ <title>phpMyAdmin 3.4.0-rc1-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> 3.4.0-beta4-dev Documentation
+class="myadmin">MyAdmin</span></a> 3.4.0-rc1-dev Documentation
</h1>
</div>
diff --git a/output/fr/README b/output/fr/README
index 09383e0..6ddbaaf 100644
--- a/output/fr/README
+++ b/output/fr/README
@@ -1,7 +1,7 @@
phpMyAdmin - LisezMoi
=====================
-Version 3.4.0-beta4-dev
+Version 3.4.0-rc1-dev
Un ensemble de scripts PHP pour administrer MySQL par Internet.
diff --git a/output/it/Documentation.html b/output/it/Documentation.html
index 06ea160..4e7abdd 100644
--- a/output/it/Documentation.html
+++ b/output/it/Documentation.html
@@ -19,7 +19,7 @@ Or you can edit them online at 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>phpMyAdmin 3.4.0-beta4-dev - Documentation</title>
+ <title>phpMyAdmin 3.4.0-rc1-dev - Documentation</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -27,7 +27,7 @@ Or you can edit them online at https://l10n.cihar.com/projects/pmadoc/.
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-beta4-dev Documentation
+class="myadmin">MyAdmin</span></a> 3.4.0-rc1-dev Documentation
</h1>
</div>
diff --git a/output/ja/Documentation.html b/output/ja/Documentation.html
index 55b7449..bdf0930 100644
--- a/output/ja/Documentation.html
+++ b/output/ja/Documentation.html
@@ -19,7 +19,7 @@ Or you can edit them online at 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>phpMyAdmin 3.4.0-beta4-dev - Documentation</title>
+ <title>phpMyAdmin 3.4.0-rc1-dev - Documentation</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -27,7 +27,7 @@ Or you can edit them online at https://l10n.cihar.com/projects/pmadoc/.
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-beta4-dev Documentation
+class="myadmin">MyAdmin</span></a> 3.4.0-rc1-dev Documentation
</h1>
</div>
diff --git a/output/pl/Documentation.html b/output/pl/Documentation.html
index 225bce5..383fad5 100644
--- a/output/pl/Documentation.html
+++ b/output/pl/Documentation.html
@@ -19,7 +19,7 @@ Or you can edit them online at 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>phpMyAdmin 3.4.0-beta4-dev - Documentation</title>
+ <title>phpMyAdmin 3.4.0-rc1-dev - Documentation</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -27,7 +27,7 @@ Or you can edit them online at https://l10n.cihar.com/projects/pmadoc/.
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-beta4-dev Documentation
+class="myadmin">MyAdmin</span></a> 3.4.0-rc1-dev Documentation
</h1>
</div>
diff --git a/output/pt_BR/Documentation.html b/output/pt_BR/Documentation.html
index 88d9fc5..6352792 100644
--- a/output/pt_BR/Documentation.html
+++ b/output/pt_BR/Documentation.html
@@ -19,7 +19,7 @@ Ou você pode editá-la online em 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>phpMyAdmin 3.4.0-beta4-dev - Documentação</title>
+ <title>phpMyAdmin 3.4.0-rc1-dev - Documentação</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -27,7 +27,7 @@ Ou você pode editá-la online em https://l10n.cihar.com/projects/pmadoc/.
<div id="header">
<h1>
Documentação do <a href="http://www.phpmyadmin.net/">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-beta4-dev
+class="myadmin">MyAdmin</span></a> 3.4.0-rc1-dev
</h1>
</div>
diff --git a/output/pt_BR/README b/output/pt_BR/README
index b673506..b00edfc 100644
--- a/output/pt_BR/README
+++ b/output/pt_BR/README
@@ -1,7 +1,7 @@
phpMyAdmin - Leia-me
====================
-Versão 3.4.0-beta4-dev
+Versão 3.4.0-rc1-dev
A set of PHP-scripts to manage MySQL over the web.
diff --git a/output/sl/README b/output/sl/README
index 44b3142..c5a63c4 100644
--- a/output/sl/README
+++ b/output/sl/README
@@ -1,7 +1,7 @@
phpMyAdmin - Beri me
====================
-Različica 3.4.0-beta4-dev
+Različica 3.4.0-rc1-dev
A set of PHP-scripts to manage MySQL over the web.
diff --git a/output/tr/Documentation.html b/output/tr/Documentation.html
index ad6d0b6..272130e 100644
--- a/output/tr/Documentation.html
+++ b/output/tr/Documentation.html
@@ -20,7 +20,7 @@ düzenleyebilirisiniz.
<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>phpMyAdmin 3.4.0-beta4-dev - Belgeler</title>
+ <title>phpMyAdmin 3.4.0-rc1-dev - Belgeler</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -28,7 +28,7 @@ düzenleyebilirisiniz.
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-beta4-dev Belgesi
+class="myadmin">MyAdmin</span></a> 3.4.0-rc1-dev Belgesi
</h1>
</div>
diff --git a/output/tr/README b/output/tr/README
index 8af85e0..a33b62c 100644
--- a/output/tr/README
+++ b/output/tr/README
@@ -1,7 +1,7 @@
phpMyAdmin - Benioku
====================
-Sürüm 3.4.0-beta4-dev
+Sürüm 3.4.0-rc1-dev
Web üzerinden MySQL'i yönetmek için bir dizi PHP betikleridir.
diff --git a/output/zh_CN/Documentation.html b/output/zh_CN/Documentation.html
index 5e6a1be..acb886c 100644
--- a/output/zh_CN/Documentation.html
+++ b/output/zh_CN/Documentation.html
@@ -19,7 +19,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78
<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>phpMyAdmin 3.4.0-beta4-dev - 文档</title>
+ <title>phpMyAdmin 3.4.0-rc1-dev - 文档</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -27,7 +27,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-beta4-dev 文档
+class="myadmin">MyAdmin</span></a> 3.4.0-rc1-dev 文档
</h1>
</div>
diff --git a/output/zh_CN/README b/output/zh_CN/README
index a7d7fa7..c1a4530 100644
--- a/output/zh_CN/README
+++ b/output/zh_CN/README
@@ -1,7 +1,7 @@
phpMyAdmin - 读我
===================
-版本 3.4.0-beta4-dev
+版本 3.4.0-rc1-dev
使用 PHP 编写,通过 web 管理 MySQL 的工具。
diff --git a/po/de.po b/po/de.po
index 40087d5..cf14ec7 100644
--- a/po/de.po
+++ b/po/de.po
@@ -8,8 +8,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-03-02 13:51+0100\n"
-"PO-Revision-Date: 2010-09-16 11:58+0200\n"
-"Last-Translator: <sven-cihar.com(a)incase.de>\n"
+"PO-Revision-Date: 2011-03-12 17:10+0200\n"
+"Last-Translator: <mynetx(a)gmx.de>\n"
"Language-Team: none\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -20,19 +20,17 @@ msgstr ""
#. type: Content of: <html><head><title>
#: orig-docs/Documentation.html:12
-#, fuzzy
msgid "phpMyAdmin @@VER@@ - Documentation"
-msgstr "phpMyAdmin-Dokumentation"
+msgstr "phpMyAdmin @@VER@@-Dokumentation"
#. 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> 3.4.0-dev Dokumentation"
+"<a href=\"http://www.phpmyadmin.net/\">php<span "
+"class=\"myadmin\">MyAdmin</span></a> @@VER@@-Dokumentation"
#. type: Content of: <html><body><ul><li>
#: orig-docs/Documentation.html:27
@@ -168,13 +166,12 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:66
-#, fuzzy
msgid ""
"For proper support of multibyte strings (eg. UTF-8, which is currently the "
"default), you should install the mbstring and ctype extensions."
msgstr ""
-"Für korrekte Unterstützung von Mehrbyte-Zeichenketten (z.B. UTF-8, der "
-"aktuelle Standard) sollten Sie die mbstring und ctype Erweiterungen "
+"Für die korrekte Unterstützung von Mehrbyte-Zeichenketten (z.B. UTF-8, dem "
+"aktuellen Standard) sollten Sie die mbstring und ctype Erweiterungen "
"installieren."
#. type: Content of: <html><body><div><ul><li><ul><li>
@@ -259,10 +256,9 @@ msgstr "Zurzeit kann phpMyAdmin:"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:102
-#, fuzzy
msgid "browse and drop databases, tables, views, columns and indexes"
msgstr ""
-"Datenbanken, Tabellen, Views, Felder und Indices durchsuchen und löschen"
+"Datenbanken, Tabellen, Ansichten, Felder und Indizes durchsuchen und löschen"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:103
@@ -304,7 +300,6 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:113
-#, fuzzy
msgid ""
"export<a href=\"#footnote_1\"><sup>1</sup></a> data to various formats: "
"<abbr title=\"Comma Separated Values\">CSV</abbr>, <abbr title=\"Extensible "
@@ -315,13 +310,14 @@ msgid ""
"abbr>, <abbr title=\"Microsoft Excel 97-2003 and Excel 2007\">Excel</abbr> "
"and L<sup>A</sup>T<sub><big>E</big></sub>X formats"
msgstr ""
-"Daten in verschiedene Formate exportieren<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 Text und Tabelle, <abbr title=\"Microsoft Word "
-"2000\">Word</abbr>, <abbr title=\"Microsoft Excel 2000\">Excel</abbr> und "
+"Daten in verschiedene Formate exportieren<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 Text und Tabelle, <abbr title=\"Microsoft Word "
+"2000\">Word</abbr>, <abbr title=\"Microsoft Excel 97-2003\">Excel</abbr> und "
"L<sup>A</sup>T<sub><big>E</big></sub>X Formate"
#. type: Content of: <html><body><div><ul><li>
@@ -412,22 +408,23 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:140
-#, fuzzy
msgid ""
"communicate in <a href=\"http://www.phpmyadmin.net/home_page/translations.php"
"\">62 different languages</a>"
-msgstr "<a href=\"./translators.html\">58 verschiedene Sprachen</a> sprechen"
+msgstr ""
+"<a href=\"http://www.phpmyadmin.net/home_page/translations.php\">62 "
+"verschiedene Sprachen</a> sprechen"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:142
-#, fuzzy
msgid ""
"synchronize two databases residing on the same as well as remote servers <a "
"href=\"#faq9_1\">(see <abbr title=\"Frequently Asked Questions\">FAQ</abbr> "
"9.1)</a>"
msgstr ""
-"InnoDB Tabellen und Fremdschlüssel unterstützen <a href=\"#faq3_6\">(siehe "
-"<abbr title=\"Häufig gestellte Fragen\">FAQ</abbr> 3.6)</a>"
+"Zwei Datenbanken entweder auf demselben Server oder auf getrennten Servern "
+"synchronisieren <a href=\"#faq9_1\">(siehe <abbr title=\"Frequently Asked "
+"Questions\">FAQ</abbr> 9.1)</a>"
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:148
@@ -482,9 +479,8 @@ msgstr "<a href=\"#setup_script\">Benutzung des Konfigurationsassistenten</a>"
#. type: Content of: <html><body><div><ol><li>
#: orig-docs/Documentation.html:168
-#, fuzzy
msgid "<a href=\"#linked-tables\">phpMyAdmin configuration storage</a>"
-msgstr "<a href=\"#linked-tables\">Infrastruktur für verknüpfte Tabellen</a>"
+msgstr "<a href=\"#linked-tables\">phpMyAdmin-Konfigurationsspeicher</a>"
#. type: Content of: <html><body><div><ol><li>
#: orig-docs/Documentation.html:169
@@ -882,13 +878,11 @@ msgstr ""
#. type: Content of: <html><body><div><h3>
#: orig-docs/Documentation.html:324
-#, fuzzy
msgid "phpMyAdmin configuration storage"
-msgstr "phpMyAdmin-Dokumentation"
+msgstr "phpMyAdmin-Konfigurationsspeicher"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:326
-#, fuzzy
msgid ""
"For a whole set of new features (bookmarks, comments, <abbr title="
"\"structured query language\">SQL</abbr>-history, tracking mechanism, <abbr "
@@ -899,13 +893,13 @@ msgid ""
"controluser, so no other user should have rights to it)."
msgstr ""
"Für eine ganze Menge an neuen Funktionen (Lesezeichen, Kommentare, <abbr "
-"title=\"structured query language\">SQL</abbr>-Historie, <abbr title="
-"\"Portable Document Format\">PDF</abbr>-Generierung, Transformation von "
-"Feldinhalten etc.) müssen Sie einige spezielle Tabellen erzeugen. Diese "
-"Tabellen können in einer eigenen Datenbank liegen oder in einer zentralen "
-"Datenbank für eine Mehrbenutzerinstallation (Auf diese Datenbank würde dann "
-"der Kontroll-Benutzer zugreifen, also sollte kein anderer Benutzer Rechte "
-"dafür besitzen)."
+"title=\"structured query language\">SQL</abbr>-Verlauf, Tracking-Mechanismus, "
+"<abbr title=\"Portable Document Format\">PDF</abbr>-Generierung, "
+"Transformation von Feldinhalten etc.) müssen Sie einige spezielle Tabellen "
+"erzeugen. Diese Tabellen können in einer eigenen Datenbank liegen oder in "
+"einer zentralen Datenbank für eine Mehrbenutzerinstallation (auf diese "
+"Datenbank würde dann der Kontroll-Benutzer zugreifen, also sollte kein "
+"anderer Benutzer Rechte dafür besitzen)."
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:335
@@ -922,15 +916,15 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:340
-#, fuzzy
msgid ""
"If you already had this infrastructure and upgraded to MySQL 4.1.2 or newer, "
"please use <i>./scripts/upgrade_tables_mysql_4_1_2+.sql</i> and then create "
"new tables by importing <i>./scripts/create_tables.sql</i>."
msgstr ""
"Wenn Sie diese Infrastruktur bereits besitzen und auf MySQL 4.1.2 oder neuer "
-"aktualisiert haben, bitte nutzen Sie <i>./scripts/"
-"upgrade_tables_mysql_4_1_2+.sql</i>."
+"aktualisiert haben, bitte nutzen Sie "
+"<i>./scripts/upgrade_tables_mysql_4_1_2+.sql</i>, und legen Sie dann neue "
+"Tabellen an, indem Sie <i>./scripts/create_tables.sql</i> importieren."
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:344
@@ -1000,7 +994,6 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:370
-#, fuzzy
msgid ""
"If you have upgraded your MySQL server from a version previous to 4.1.2 to "
"version 5.x or newer and if you use the phpMyAdmin configuration storage, "
@@ -1008,9 +1001,9 @@ msgid ""
"upgrade_tables_mysql_4_1_2+.sql</tt>."
msgstr ""
"Wenn Sie Ihren MySQL Server von einer Version früher als 4.1.2 auf Version "
-"4.1.2 oder neuer aktualisiert haben und Sie die pmadb/verknüpfte Tabellen "
-"Infrastruktur nutzten, sollten Sie das SQL Skript <tt>scripts/"
-"upgrade_tables_mysql_4_1_2+.sql</tt> ausführen."
+"4.1.2 oder neuer aktualisiert haben und Sie den phpMyAdmin-"
+"Konfigurationsspeicher nutzen, sollten Sie das SQL Skript "
+"<tt>scripts/upgrade_tables_mysql_4_1_2+.sql</tt> ausführen."
#. type: Content of: <html><body><div><h3>
#: orig-docs/Documentation.html:375
@@ -1032,14 +1025,12 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:381
-#, fuzzy
msgid ""
"Nevertheless be aware that MS Internet Explorer seems to be really buggy "
"about cookies, at least till version 6."
msgstr ""
"Beachten Sie dennoch, dass MS Internet Explorer mit Cookies fehlerhaft "
-"umzugehen scheint, zumindest bis Version 6, und PHP 4.1.1 ist hier auch "
-"etwas fehlerhaft."
+"umzugehen scheint, zumindest bis Version 6."
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:383
@@ -1086,13 +1077,12 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:397
-#, fuzzy
msgid ""
"Note: this section is only applicable if your MySQL server is running with "
"<tt>--skip-show-database</tt>."
msgstr ""
-"Anmerkung: Ab phpMyAdmin 2.6.1 ist dieser Abschnitt nur noch relevant, wenn "
-"der MySQL Server mit <tt>--skip-show-database</tt> läuft."
+"Anmerkung: Dieser Abschnitt ist nur relevant, falls Ihr MySQL-Server mit <tt"
+">--skip-show-database</tt> läuft."
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:400
@@ -1195,13 +1185,12 @@ msgstr "GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db>.* TO 'pma'@'local
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:440
-#, fuzzy
msgid ""
"(this of course requires that your <a href=\"#linked-tables\">phpMyAdmin "
"configuration storage</a> be set up)."
msgstr ""
-"(dies setzt natürlich voraus, dass die <a href=\"#linked-tables\">verknüpfte "
-"Tabellen Infrastruktur</a> eingerichtet ist)."
+"(dies setzt natürlich voraus, dass Ihr <a href=\"#linked-tables\">phpMyAdmin-"
+"Konfigurationsspeicher</a> eingerichtet ist)."
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:444
@@ -1600,6 +1589,13 @@ msgid ""
"web servers are case–sensitive. Don’t forget the trailing slash "
"at the end."
msgstr ""
+"Hier den vollständigen <abbr title=\"Uniform Resource Locator\">URL</abbr> "
+"(schließlich des vollständigen Pfades) Ihres phpMyAdmin-"
+"Installationsverzeichnisses eintragen. Z.B. "
+"<tt>http://www.ihre_web_adresse.net/pfad_zum_phpMyAdmin_ordner/</tt>. "
+"Beachten Sie auch, dass die Schreibweise des <abbr title=\"Uniform Resource "
+"Locator\">URLs</abbr> auf einigen Webservern abhängig von "
+"Groß-/Kleinschreibung ist. Den abschließenden Schrägstrich nicht vergessen."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:594
@@ -1615,6 +1611,18 @@ msgid ""
"your path, please post a bug report on our bug tracker so we can improve the "
"code."
msgstr ""
+"Ab Version 2.3.0 ist es empfehlenswert, diesen Eintrag versuchsweise leer zu "
+"lassen. In den meisten Fällen erkennt phpMyAdmin die richtigen "
+"Einstellungen. Benutzer, die Port-Weiterleitung verwenden, benötigen die "
+"Einstellung PmaAbsoluteUri (<a href=\"https://sourceforge.net/tracker/index.p"
+"hp?func=detail&aid=1340187&group_id=23067&atid=377409\">weitere "
+"Infos</a>). Ein guter Test hierfür ist, eine Tabelle anzusehen, eine Zeile "
+"zu editieren und anschließend zu speichern. Sollte die automatische "
+"Eerkennung fehlschlagen, wird eine Fehlernachricht mit einem entsprechenden "
+"Vorschlagswert angezeigt. Diese Wert muss eingetragen werden oder falls der "
+"Pfad nicht automatisch erkannt werden sollte, übermitteln Sie bitte den "
+"Fehlercode zur Überprüfung an unserem Bug Tracker, so dass wir den Code "
+"verbessern können."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:604
@@ -1628,6 +1636,9 @@ msgid ""
"master / foreign – tables (see <a href=\"#pmadb\" class=\"configrule\">"
"$cfg['Servers'][$i]['pmadb']</a>)."
msgstr ""
+"Ab Version 2.3.0 bietet phpMyAdmin viele Funktionen um mit master / foreign "
+"– Tabellen zu arbeiten (siehe <a href=\"#pmadb\" "
+"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>)."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:609
@@ -1636,6 +1647,10 @@ msgid ""
""Structure" page of one database where you would like to use it. "
"You will find a link that will analyze why those features have been disabled."
msgstr ""
+"Falls Sie versucht haben, dies einzurichten, es aber nicht geklappt hat, "
+"werfen Sie einen Blick auf die Seite „Struktur” einer Datenbank, "
+"bei dir Sie es verwenden wollen. Sie finden dort einen Link, der "
+"analysiert, warum diese Funktionen deaktiviert wurden."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:613
@@ -1668,15 +1683,14 @@ msgstr "$cfg['McryptDisableWarning'] boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:622
-#, fuzzy
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication. You can set this parameter to <tt>TRUE</tt> to stop "
"this message from appearing."
msgstr ""
-"Deaktiviert die Standard-Warnung die angezeigt wird, wenn mcrypt für die "
-"Cookie Authentifizierung fehlt. Sie können dieses Parameter auf <tt>TRUE</"
-"tt> setzen, um diese Meldung zu deaktivieren."
+"Deaktiviert die Standard-Warnung, die angezeigt wird, wenn mcrypt für die "
+"Cookie-Authentifizierung fehlt. Sie können diesen Parameter auf "
+"<tt>TRUE</tt> setzen, damit diese Meldung nicht mehr erscheint."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:627
@@ -1711,17 +1725,16 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:635
-#, fuzzy
msgid ""
"If you are using the "cookie" auth_type, enter here a random "
"passphrase of your choice. It will be used internally by the blowfish "
"algorithm: you won’t be prompted for this passphrase. There is no "
"maximum length for this secret."
msgstr ""
-"Geben Sie hier eine zufällige Zeichenfolge Ihrer Wahl ein, wenn Sie den "
-""cookie" auth_type nutzen. Diese Zeichenfolge wird intern von dem "
-"Blowfish Algorithmus genutzt. Sie werden niemals danach gefragt. Die "
-"maximale Zeichenanzahl für diesen Parameter liegt bei 46."
+"Geben Sie hier eine zufällige Zeichenfolge Ihrer Wahl ein, falls Sie den "
+""cookie" auth_type nutzen. Diese Zeichenfolge wird intern vom "
+"Blowfish-Algorithmus verwendet: Sie werden also niemals danach gefragt. Es "
+"gibt keine maximale Länge für diesen Geheimcode."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:640
@@ -1730,6 +1743,10 @@ msgid ""
"bit weaker security as this generated secret is stored in session and "
"furthermore it makes impossible to recall user name from cookie."
msgstr ""
+"Seit Version 3.1.0 kann phpMyAdmin diese bei Bedarf generieren, aber dies "
+"bedeutet eine etwas geringere Sicherheit, da das generierte Geheimnis in der "
+"Session gespeichert wird und macht es außerdem unmöglich, den Benutzernamen "
+"an Hand des Cookies zu behalten."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:645
@@ -1751,6 +1768,19 @@ msgid ""
"<tt>./config.inc.php</tt>, copy that block or needed parts (you don't have "
"to define all settings, just those you need to change)."
msgstr ""
+"Seit Version 1.4.2 unterstützt phpMyAdmin die Administration von mehrfachen "
+"MySQL-Servern. Somit wurde ein Array <a href=\"#cfg_Servers\" "
+"class=\"configrule\">$cfg['Servers']</a> hinzugefügt, das die "
+"Anmeldeinformationen für die verschiedenen Server enthält. Der erste <a "
+"href=\"#cfg_Servers_host\" class=\"configrule\">$cfg['Servers'][$i]['host']</a> "
+"enthält den Hostnamen des ersten Servers, der zweite <a "
+"href=\"#cfg_Servers_host\" class=\"configrule\">$cfg['Servers'][$i]['host']</a> "
+"den Hostnamen des zweiten Servers, usw. In "
+"<tt>./libraries/config.default.php</tt> gibt es nur einen Abschnitt zum "
+"Definieren von Servern, Sie können jedoch so viele in "
+"<tt>./config.inc.php</tt> einsetzen, wie Sie brauchen. Kopieren Sie den "
+"Block oder Teile davon (Sie müssen nicht alle Einstellungen definieren, nur "
+"die, die Sie ändern müssen)."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:660
@@ -1806,6 +1836,10 @@ msgid ""
"the <tt>mysql</tt> command–line client, issue the <tt>status</tt> "
"command. Among the resulting information displayed will be the socket used."
msgstr ""
+"Um den korrekten Socket zu ermitteln, prüfen Sie Ihre MySQL-Konfiguration "
+"oder, setzen Sie mithilfe des Befehlszeilenclients <tt>mysql</tt> den Befehl "
+"<tt>status</tt> ab. Der verwendete Socket wird dann zusammen mit anderen "
+"Informationen angezeigt."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:679
@@ -1923,6 +1957,12 @@ msgid ""
"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
+"Dieses besondere Konto wird für genau 2 Zwecke verwendet: um alle "
+"Beziehungsfunktionen möglich zu machen (siehe <a href=\"#pmadb\" "
+"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>), und um auf einem "
+"MySQL-Server, der mit <tt>--skip-show-database</tt> läuft, eine Installation "
+"mit mehreren Benutzern zu aktivieren (<abbr title=\"HyperText Transfer "
+"Protocol\">HTTP-</abbr> or Cookie-Authentifizierungsmodus)."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:722
@@ -1950,6 +1990,8 @@ msgid ""
"In phpMyAdmin versions before 2.2.5, those were called "stduser/"
"stdpass"."
msgstr ""
+"In phpMyAdmin-Versionen vor 2.2.5 wurden diese „stduser/stdpass” "
+"genannt."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:737
@@ -2009,13 +2051,12 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:774
-#, fuzzy
msgid ""
"<span id=\"cfg_Servers_auth_http_realm\">$cfg['Servers'][$i]"
"['auth_http_realm']</span> string"
msgstr ""
-"<span id=\"cfg_Servers_controlpass\">$cfg['Servers'][$i]['controlpass']</"
-"span> string"
+"<span id=\"cfg_Servers_controlpass\">$cfg['Servers'][$i]['controlpass']</span>"
+"-Zeichenkette"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:777
@@ -2036,6 +2077,8 @@ msgid ""
"<span id=\"cfg_Servers_auth_swekey_config\">$cfg['Servers'][$i]"
"['auth_swekey_config']</span> string"
msgstr ""
+"<span id=\"cfg_Servers_auth_swekey_config\">$cfg['Servers'][$i]['auth_swekey_c"
+"onfig']</span>-Zeichenkette"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:787
@@ -2048,6 +2091,7 @@ msgstr ""
#: orig-docs/Documentation.html:791
msgid "<span id=\"cfg_Servers_user\">$cfg['Servers'][$i]['user']</span> string"
msgstr ""
+"<span id=\"cfg_Servers_user\">$cfg['Servers'][$i]['user']</span>-Zeichenkette"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:792
@@ -2055,6 +2099,8 @@ msgid ""
"<span id=\"cfg_Servers_password\">$cfg['Servers'][$i]['password']</span> "
"string"
msgstr ""
+"<span id=\"cfg_Servers_password\">$cfg['Servers'][$i]['password']</span>-Zeich"
+"enkette"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:795
@@ -2071,6 +2117,8 @@ msgid ""
"<span id=\"cfg_Servers_nopassword\">$cfg['Servers'][$i]['nopassword']</span> "
"boolean"
msgstr ""
+"<span id=\"cfg_Servers_nopassword\">$cfg['Servers'][$i]['nopassword']</span>-b"
+"oolescher Wert"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:804
@@ -2088,6 +2136,8 @@ msgid ""
"<span id=\"cfg_Servers_only_db\">$cfg['Servers'][$i]['only_db']</span> "
"string or array"
msgstr ""
+"<span id=\"cfg_Servers_only_db\">$cfg['Servers'][$i]['only_db']</span> "
+"Zeichenkette oder Array"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:814
@@ -2116,6 +2166,8 @@ msgid ""
"An example of using more that one database: <tt>$cfg['Servers'][$i]"
"['only_db'] = array('db1', 'db2');</tt>"
msgstr ""
+"Ein Beispiel zum Verwenden von mehr als einer Datenbank: "
+"<tt>$cfg['Servers'][$i]['only_db'] = array('db1', 'db2');</tt>"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:832
@@ -2140,6 +2192,8 @@ msgstr ""
msgid ""
"<span id=\"cfg_Servers_hide_db\">$cfg['Servers'][$i]['hide_db']</span> string"
msgstr ""
+"<span id=\"cfg_Servers_hide_db\">$cfg['Servers'][$i]['hide_db']</span> "
+"Zeichenkette"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:842
@@ -2160,7 +2214,7 @@ msgstr ""
#: orig-docs/Documentation.html:848
#, no-wrap
msgid "$cfg['Servers'][$i]['hide_db'] = '^a';"
-msgstr ""
+msgstr "$cfg['Servers'][$i]['hide_db'] = '^a';"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:849
@@ -2169,9 +2223,9 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd><pre>
#: orig-docs/Documentation.html:850
-#, fuzzy, no-wrap
+#, no-wrap
msgid "$cfg['Servers'][$i]['hide_db'] = '^(db1|db2)$';"
-msgstr "$cfg['Servers'][$i]['host'] string"
+msgstr "$cfg['Servers'][$i]['hide_db'] = '^(db1|db2)$';"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:851
@@ -2184,7 +2238,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:856
msgid "$cfg['Servers'][$i]['verbose'] string"
-msgstr ""
+msgstr "$cfg['Servers'][$i]['verbose'] Zeichenkette"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:857
@@ -2201,12 +2255,15 @@ msgstr ""
msgid ""
"<span id=\"cfg_Servers_pmadb\">$cfg['Servers'][$i]['pmadb']</span> string"
msgstr ""
+"<span id=\"cfg_Servers_pmadb\">$cfg['Servers'][$i]['pmadb']</span> "
+"Zeichenkette"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:866
msgid ""
"The name of the database containing the phpMyAdmin configuration storage."
msgstr ""
+"Der Name der Datenbank, die den phpMyAdmin-Konfigurationsspeicher enthält."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:869
@@ -2232,6 +2289,9 @@ msgid ""
"<span id=\"cfg_Servers_bookmarktable\">$cfg['Servers'][$i]['bookmarktable']</"
"span> string"
msgstr ""
+"<span "
+"id=\"cfg_Servers_bookmarktable\">$cfg['Servers'][$i]['bookmarktable']</span> "
+"Zeichenkette"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:884
@@ -2246,7 +2306,7 @@ msgstr ""
#: orig-docs/Documentation.html:1045 orig-docs/Documentation.html:1076
#: orig-docs/Documentation.html:1153 orig-docs/Documentation.html:1169
msgid "To allow the usage of this functionality:"
-msgstr ""
+msgstr "Um diese Funktion zu nutzen:"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:888 orig-docs/Documentation.html:924
@@ -2257,11 +2317,15 @@ msgstr ""
msgid ""
"set up <a href=\"#pmadb\">pmadb</a> and the phpMyAdmin configuration storage"
msgstr ""
+"richten Sie <a href=\"#pmadb\">pmadb</a> und den phpMyAdmin-"
+"Konfigurationsspeicher ein"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:889
msgid "enter the table name in <tt>$cfg['Servers'][$i]['bookmarktable']</tt>"
msgstr ""
+"geben Sie den Tabellennamen in <tt>$cfg['Servers'][$i]['bookmarktable']</tt> "
+"ein"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:895
@@ -2269,6 +2333,8 @@ msgid ""
"<span id=\"cfg_Servers_relation\">$cfg['Servers'][$i]['relation']</span> "
"string"
msgstr ""
+"<span id=\"cfg_Servers_relation\">$cfg['Servers'][$i]['relation']</span> "
+"Zeichenkette"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:897
@@ -2299,6 +2365,8 @@ msgid ""
"(see <a href=\"#faqdisplay\"><abbr title=\"Frequently Asked Questions\"> "
"FAQ</abbr> 6.7</a>)"
msgstr ""
+"(siehe <a href=\"#faqdisplay\"><abbr title=\"Frequently Asked Questions\"> "
+"FAQ</abbr> 6.7</a>)"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:907
@@ -2313,6 +2381,8 @@ msgid ""
"(see <a href=\"#faq6_21\"><abbr title=\"Frequently Asked Questions\"> FAQ</"
"abbr> 6.21</a>)"
msgstr ""
+"(siehe <a href=\"#faq6_21\"><abbr title=\"Frequently Asked Questions\"> "
+"FAQ</abbr> 6.21</a>)"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:911
@@ -2338,12 +2408,14 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:920
msgid "The keys can be numeric or character."
-msgstr ""
+msgstr "Die Schlüssel können numerisch oder Buchstaben sein."
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:926
msgid "put the relation table name in <tt>$cfg['Servers'][$i]['relation']</tt>"
msgstr ""
+"setzen Sie den Beziehungstabellennamen "
+"in<tt>$cfg['Servers'][$i]['relation']</tt> ein"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:928
@@ -2367,6 +2439,8 @@ msgid ""
"<span id=\"cfg_Servers_table_info\">$cfg['Servers'][$i]['table_info']</span> "
"string"
msgstr ""
+"<span id=\"cfg_Servers_table_info\">$cfg['Servers'][$i]['table_info']</span> "
+"Zeichenkette"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:944
@@ -2389,6 +2463,8 @@ msgid ""
"put the table name in <tt>$cfg['Servers'][$i]['table_info']</tt> (e.g. "
"'pma_table_info')"
msgstr ""
+"setzen Sie den Tabellennamen in <tt>$cfg['Servers'][$i]['table_info']</tt> "
+"ein (z.B. 'pma_table_info')"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:953
@@ -2400,7 +2476,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:957
msgid "Usage tip: <a href=\"#faqdisplay\">Display column</a>."
-msgstr ""
+msgstr "Nutzungstipp: <a href=\"#faqdisplay\">Anzeigespalte</a>."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:960
@@ -2408,6 +2484,9 @@ msgid ""
"<span id=\"cfg_Servers_table_coords\">$cfg['Servers'][$i]['table_coords']</"
"span> string"
msgstr ""
+"<span "
+"id=\"cfg_Servers_table_coords\">$cfg['Servers'][$i]['table_coords']</span> "
+"Zeichenkette"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:961
@@ -2415,6 +2494,8 @@ msgid ""
"<span id=\"cfg_Servers_pdf_pages\">$cfg['Servers'][$i]['pdf_pages']</span> "
"string"
msgstr ""
+"<span id=\"cfg_Servers_pdf_pages\">$cfg['Servers'][$i]['pdf_pages']</span> "
+"Zeichenkette"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:963
diff --git a/po/es.po b/po/es.po
index b582a47..aa4c105 100644
--- a/po/es.po
+++ b/po/es.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: 2011-03-02 13:51+0100\n"
-"PO-Revision-Date: 2011-03-10 19:58+0200\n"
+"PO-Revision-Date: 2011-03-12 01:47+0200\n"
"Last-Translator: Matías Bellone <matiasbellone(a)gmail.com>\n"
"Language-Team: none\n"
"Language: es\n"
@@ -3926,27 +3926,27 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1429
msgid "$cfg['Error_Handler']['display'] boolean"
-msgstr ""
+msgstr "booleano $cfg['Error_Handler']['display']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1430
msgid "Whether to display errors from PHP or not."
-msgstr ""
+msgstr "Si mostrar errores de PHP o no."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1432
msgid "$cfg['Error_Handler']['gather'] boolean"
-msgstr ""
+msgstr "booleano $cfg['Error_Handler']['gather']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1433
msgid "Whether to gather errors from PHP or not."
-msgstr ""
+msgstr "Si recolectar los errores de PHP o no."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1435
msgid "$cfg['LeftFrameLight'] boolean"
-msgstr ""
+msgstr "booleano $cfg['LeftFrameLight']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1436
@@ -3957,11 +3957,16 @@ msgid ""
"\"#cfg_LeftFrameTableSeparator\" class=\"configrule\">$cfg"
"['LeftFrameTableSeparator']</a>"
msgstr ""
+"Define si se utiliza un menú de selección y sólo mostrar las tablas actuales "
+"en el marco izquierdo (una página más pequeña). Sólo en el modo no-ligero "
+"se puede utlizar la funcionalidad para mostrar carpetas anidadas utilizando "
+"<a href=\"#cfg_LeftFrameTableSeparator\" "
+"class=\"configrule\">$cfg['LeftFrameTableSeparator']</a>"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1442
msgid "$cfg['LeftFrameDBTree'] boolean"
-msgstr ""
+msgstr "booleano $cfg['LeftFrameDBTree']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1443
@@ -3970,11 +3975,15 @@ msgid ""
"selector) using a tree, see also <a href=\"#cfg_LeftFrameDBSeparator\" class="
"\"configrule\">$cfg['LeftFrameDBSeparator']</a>."
msgstr ""
+"En el modo ligero, define si mostrar los nombres de las bases de datos (en "
+"el selector) utilizando un árbol. Ver también <a "
+"href=\"#cfg_LeftFrameDBSeparator\" "
+"class=\"configrule\">$cfg['LeftFrameDBSeparator']</a>."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1448
msgid "$cfg['LeftFrameDBSeparator'] string or array"
-msgstr ""
+msgstr "cadena o array $cfg['LeftFrameDBSeparator']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1450
@@ -3983,11 +3992,14 @@ msgid ""
"in a tree. Alternatively you can specify more strings in an array and all of "
"them will be used as a separator."
msgstr ""
+"La cadena a utilizar para separar las partes del nombre de la base de datos "
+"al mostrarlas en un árbol. Alternativamente se pueden especificar más "
+"cadenas en un array y todas ellas van a ser utilizadas como separadores."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1454
msgid "$cfg['LeftFrameTableSeparator'] string"
-msgstr ""
+msgstr "cadena $cfg['LeftFrameTableSeparator']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1455
@@ -3999,11 +4011,18 @@ msgid ""
"at the beginning or end of a table name or multiple times after another "
"without any other characters in between."
msgstr ""
+"Define la cadena a utilizar para anidar espacios de tablas. El valor "
+"predeterminado es '__'. Esto significa que si tienes tablas como "
+"'primero__segundo__tercer' van a ser mostrados como una jerarquía de tres "
+"niveles como: primero > segundo > tercero. Si es FALSE o una cadena "
+"vacía, la funcionalidad estará desactivada. NOTA: no se debe utilizar este "
+"separador al principio o al final del nombre de una tabla o más de una vez "
+"seguida sin caracteres intermedios."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1463
msgid "$cfg['LeftFrameTableLevel'] string"
-msgstr ""
+msgstr "cadena $cfg['LeftFrameTableLevel']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1464
@@ -4011,22 +4030,25 @@ msgid ""
"Defines how many sublevels should be displayed when splitting up tables by "
"the above separator."
msgstr ""
+"Define la cantidad de sub-niveles a mostrar cuando se separen nombres de "
+"tabla con el separador anterior."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1467
msgid "$cfg['ShowTooltip'] boolean"
-msgstr ""
+msgstr "booleano $cfg['ShowTooltip']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1468
msgid ""
"Defines whether to display table comment as tool-tip in left frame or not."
msgstr ""
+"Define si mostrar el comentario de la tabla como texto suplementario o no."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1471
msgid "$cfg['ShowTooltipAliasDB'] boolean"
-msgstr ""
+msgstr "booleano $cfg['ShowTooltipAliasDB']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1472
@@ -4037,11 +4059,17 @@ msgid ""
"consequently in the left frame and the tool-tip shows the real name of the "
"DB."
msgstr ""
+"Si los textos suplementarions están habilitados y hay un comentario definido "
+"en la base de datos, esta configuración intercambiará el comentario y el "
+"nombre real. Esto significa que si se tiene una tabla llamada 'usuario0001' "
+"con el comentario 'MiNombre' en ella, se verá la base de datos con el nombre "
+"'MiNombre' en el marco izquierdo y el texto suplementario mostrará el "
+"nombre real de la base de datos."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1478
msgid "$cfg['ShowTooltipAliasTB'] boolean/string"
-msgstr ""
+msgstr "booleano o cadena $cfg['ShowTooltipAliasTB']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1479
@@ -4054,11 +4082,19 @@ msgid ""
"folder is called like the Alias, the tablename itself stays the real "
"tablename."
msgstr ""
+"Igual que <a href=\"#cfg_ShowTooltipAliasDB\" "
+"class=\"configrule\">$cfg['ShowTooltipAliasDB']</a>, sólo que este lo hace "
+"para los nombres de tablas. Cuando está configurado como 'nested', el alias "
+"de la base de datos sólo será utilizado para dividir/anidar las tablas según "
+"la configuración de <a href=\"#cfg_LeftFrameTableSeparator\" "
+"class=\"configrule\">$cfg['LeftFrameTableSeparator']</a>. De esa forma, sólo "
+"la carpeta se llamará como el Alias y el nombre real de la tabla en sí será "
+"mostrado."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1487
msgid "$cfg['LeftDisplayLogo'] boolean"
-msgstr ""
+msgstr "booleano $cfg['LeftDisplayLogo']"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1488
@@ -4066,11 +4102,13 @@ msgid ""
"Defines whether or not to display the phpMyAdmin logo at the top of the left "
"frame. Defaults to <tt>TRUE</tt>."
msgstr ""
+"Define si mostrar o no el logo de phpMyAdmin en la porció superior del marco "
+"izquierdo. El valor predeterminado es <tt>TRUE</tt>."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1490
msgid "$cfg['LeftLogoLink'] string"
-msgstr ""
+msgstr "c ['LeftLogoLink'] string"