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
December 2010
- 5 participants
- 175 discussions

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA1-871-g386581b
by Marc Delisle 19 Dec '10
by Marc Delisle 19 Dec '10
19 Dec '10
The branch, master has been updated
via 386581bcb68c2754f99f42ee398a897351c6a12a (commit)
from 02b9dc80089d3277f5c96d526d0b9fca8c189cb3 (commit)
- Log -----------------------------------------------------------------
commit 386581bcb68c2754f99f42ee398a897351c6a12a
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun Dec 19 05:42:40 2010 -0500
This is not a primary key but a row number
-----------------------------------------------------------------------
Summary of changes:
browse_foreigners.php | 18 +++++++++---------
js/tbl_change.js | 4 ++--
tbl_change.php | 4 ++--
3 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/browse_foreigners.php b/browse_foreigners.php
index ef7cf2c..fd9c882 100644
--- a/browse_foreigners.php
+++ b/browse_foreigners.php
@@ -39,13 +39,13 @@ if (isset($foreign_navig) && $foreign_navig == __('Show all')) {
$foreignData = PMA_getForeignData($foreigners, $field, $override_total, isset($foreign_filter) ? $foreign_filter : '', $foreign_limit);
-if (isset($pk)) {
- $pk_uri = '&pk=' . urlencode($pk);
+if (isset($rownumber)) {
+ $rownumber_param = '&rownumber=' . urlencode($rownumber);
?>
-<input type="hidden" name="pk" value="<?php echo htmlspecialchars($pk); ?>" />
+<input type="hidden" name="rownumber" value="<?php echo htmlspecialchars($rownumber); ?>" />
<?php
} else {
- $pk_uri = '';
+ $rownumber_param = '';
}
$gotopage = '';
@@ -65,7 +65,7 @@ if (is_array($foreignData['disp_row'])) {
$gotopage = PMA_pageselector(
'browse_foreigners.php?field=' . urlencode($field) .
'&' . PMA_generate_common_url($db, $table)
- . $pk_uri .
+ . $rownumber_param .
'&fieldkey=' . (isset($fieldkey) ? urlencode($fieldkey) : '') .
'&foreign_filter=' . (isset($foreign_filter) ? urlencode($foreign_filter) : '') .
'&',
@@ -102,8 +102,8 @@ if (is_array($foreignData['disp_row'])) {
if (opener && opener.document && opener.document.insertForm) {
var field = 'fields';
- <?php if (isset($pk)) { ?>
- var element_name = field + '[multi_edit][<?php echo htmlspecialchars($pk); ?>][' + fieldmd5 + ']';
+ <?php if (isset($rownumber)) { ?>
+ var element_name = field + '[multi_edit][<?php echo htmlspecialchars($rownumber); ?>][' + fieldmd5 + ']';
<?php } else { ?>
var element_name = field + '[]';
<?php } ?>
@@ -141,8 +141,8 @@ if (is_array($foreignData['disp_row'])) {
<input type="hidden" name="field" value="<?php echo htmlspecialchars($field); ?>" />
<input type="hidden" name="fieldkey"
value="<?php echo isset($fieldkey) ? htmlspecialchars($fieldkey) : ''; ?>" />
-<?php if (isset($pk)) { ?>
-<input type="hidden" name="pk" value="<?php echo htmlspecialchars($pk); ?>" />
+<?php if (isset($rownumber)) { ?>
+<input type="hidden" name="rownumber" value="<?php echo htmlspecialchars($rownumber); ?>" />
<?php } ?>
<span class="formelement">
<label for="input_foreign_filter"><?php echo __('Search') . ':'; ?></label>
diff --git a/js/tbl_change.js b/js/tbl_change.js
index 90d28fe..41aecd0 100644
--- a/js/tbl_change.js
+++ b/js/tbl_change.js
@@ -430,10 +430,10 @@ $(document).ready(function() {
.find('.foreign_values_anchor')
.each(function() {
$anchor = $(this);
- var new_value = 'pk=' + new_row_index;
+ var new_value = 'rownumber=' + new_row_index;
// needs improvement in case something else inside
// the href contains this pattern
- var new_href = $anchor.attr('href').replace(/pk=\d+/, new_value);
+ var new_href = $anchor.attr('href').replace(/rownumber=\d+/, new_value);
$anchor.attr('href', new_href );
});
diff --git a/tbl_change.php b/tbl_change.php
index 60f3bf5..eff5ead 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -285,7 +285,7 @@ foreach ($rows as $row_id => $vrow) {
}
$jsvkey = $row_id;
- $browse_foreigners_uri = '&pk=' . $row_id;
+ $rownumber_param = '&rownumber=' . $row_id;
$vkey = '[multi_edit][' . $jsvkey . ']';
$vresult = (isset($result) && is_array($result) && isset($result[$row_id]) ? $result[$row_id] : $result);
@@ -659,7 +659,7 @@ foreach ($rows as $row_id => $vrow) {
tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
id="field_<?php echo ($idindex); ?>_3"
value="<?php echo htmlspecialchars($data); ?>" />
- <a class="hide foreign_values_anchor" target="_blank" onclick="window.open(this.href, 'foreigners', 'width=640,height=240,scrollbars=yes,resizable=yes'); return false;" href="browse_foreigners.php?<?php echo PMA_generate_common_url($db, $table); ?>&field=<?php echo PMA_escapeJsString(urlencode($field['Field']) . $browse_foreigners_uri); ?>"><?php echo str_replace("'", "\'", $titles['Browse']); ?></a>
+ <a class="hide foreign_values_anchor" target="_blank" onclick="window.open(this.href, 'foreigners', 'width=640,height=240,scrollbars=yes,resizable=yes'); return false;" href="browse_foreigners.php?<?php echo PMA_generate_common_url($db, $table); ?>&field=<?php echo PMA_escapeJsString(urlencode($field['Field']) . $rownumber_param); ?>"><?php echo str_replace("'", "\'", $titles['Browse']); ?></a>
<?php
} elseif (is_array($foreignData['disp_row'])) {
echo $backup_field . "\n";
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA1-870-g02b9dc8
by Marc Delisle 18 Dec '10
by Marc Delisle 18 Dec '10
18 Dec '10
The branch, master has been updated
via 02b9dc80089d3277f5c96d526d0b9fca8c189cb3 (commit)
from 45ec0da621e96c108bc70395eb01ad9495f281d0 (commit)
- Log -----------------------------------------------------------------
commit 02b9dc80089d3277f5c96d526d0b9fca8c189cb3
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Dec 18 08:47:50 2010 -0500
"Continue insertion" feature did not work with "Browse foreign values" links
-----------------------------------------------------------------------
Summary of changes:
js/tbl_change.js | 25 +++++++++++++++++++++----
tbl_change.php | 12 ++----------
2 files changed, 23 insertions(+), 14 deletions(-)
diff --git a/js/tbl_change.js b/js/tbl_change.js
index 758add1..90d28fe 100644
--- a/js/tbl_change.js
+++ b/js/tbl_change.js
@@ -258,6 +258,9 @@ function unNullify(urlField, multi_edit)
*/
$(document).ready(function() {
+ // these were hidden via the "hide" class
+ $('.foreign_values_anchor').show();
+
/**
* Handles all current checkboxes for Null
*
@@ -363,10 +366,15 @@ $(document).ready(function() {
*/
var last_row = $("#insertForm").find(".insertRowTable:last");
+ // need to access this at more than one level
+ // (also needs improvement because it should be calculated
+ // just once per cloned row, not once per column)
+ var new_row_index = 0;
+
//Clone the insert tables
$(last_row)
.clone()
- .insertBefore("#insertForm > fieldset")
+ .insertBefore("#actions_panel")
.find('input[name*=multi_edit],select[name*=multi_edit]')
.each(function() {
@@ -387,7 +395,7 @@ $(document).ready(function() {
var old_row_index = parseInt(old_row_index_string.match(/\d+/)[0]);
/** calculate next index i.e. 11 */
- var new_row_index = old_row_index + 1;
+ new_row_index = old_row_index + 1;
/** generate the new name i.e. funcs[multi_edit][11][foobarbaz] */
var new_name = name_parts[0] + '[' + new_row_index + ']' + name_parts[1];
@@ -417,8 +425,17 @@ $(document).ready(function() {
);
})
.end();
-
- });
+ })
+ .end()
+ .find('.foreign_values_anchor')
+ .each(function() {
+ $anchor = $(this);
+ var new_value = 'pk=' + new_row_index;
+ // needs improvement in case something else inside
+ // the href contains this pattern
+ var new_href = $anchor.attr('href').replace(/pk=\d+/, new_value);
+ $anchor.attr('href', new_href );
+ });
//Insert/Clone the ignore checkboxes
if(curr_rows == 1 ) {
diff --git a/tbl_change.php b/tbl_change.php
index eaf0bc3..60f3bf5 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -659,15 +659,7 @@ foreach ($rows as $row_id => $vrow) {
tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
id="field_<?php echo ($idindex); ?>_3"
value="<?php echo htmlspecialchars($data); ?>" />
- <script type="text/javascript">
- //<![CDATA[
- document.writeln('<a target="_blank" onclick="window.open(this.href, \'foreigners\', \'width=640,height=240,scrollbars=yes,resizable=yes\'); return false"');
- document.write(' href="browse_foreigners.php?');
- document.write('<?php echo PMA_generate_common_url($db, $table); ?>');
- document.writeln('&field=<?php echo PMA_escapeJsString(urlencode($field['Field']) . $browse_foreigners_uri); ?>">');
- document.writeln('<?php echo str_replace("'", "\'", $titles['Browse']); ?></a>');
- //]]>
- </script>
+ <a class="hide foreign_values_anchor" target="_blank" onclick="window.open(this.href, 'foreigners', 'width=640,height=240,scrollbars=yes,resizable=yes'); return false;" href="browse_foreigners.php?<?php echo PMA_generate_common_url($db, $table); ?>&field=<?php echo PMA_escapeJsString(urlencode($field['Field']) . $browse_foreigners_uri); ?>"><?php echo str_replace("'", "\'", $titles['Browse']); ?></a>
<?php
} elseif (is_array($foreignData['disp_row'])) {
echo $backup_field . "\n";
@@ -1015,7 +1007,7 @@ $(function() {
?>
<br />
- <fieldset>
+ <fieldset id="actions_panel">
<table border="0" cellpadding="5" cellspacing="0">
<tr>
<td valign="middle" nowrap="nowrap">
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA1-869-g45ec0da
by Marc Delisle 17 Dec '10
by Marc Delisle 17 Dec '10
17 Dec '10
The branch, master has been updated
via 45ec0da621e96c108bc70395eb01ad9495f281d0 (commit)
from 4a71a1e5f1eee17a5ef2349e9a62cbcab7ec4971 (commit)
- Log -----------------------------------------------------------------
commit 45ec0da621e96c108bc70395eb01ad9495f281d0
Author: Marc Delisle <marc(a)infomarc.info>
Date: Fri Dec 17 09:31:42 2010 -0500
Problems with latest fix and SET columns
-----------------------------------------------------------------------
Summary of changes:
libraries/tbl_replace_fields.inc.php | 61 +++++++++++++--------------------
tbl_change.php | 2 +-
2 files changed, 25 insertions(+), 38 deletions(-)
diff --git a/libraries/tbl_replace_fields.inc.php b/libraries/tbl_replace_fields.inc.php
index 3ba08c4..84377bf 100644
--- a/libraries/tbl_replace_fields.inc.php
+++ b/libraries/tbl_replace_fields.inc.php
@@ -69,44 +69,31 @@ if (false !== $possibly_uploaded_val) {
// $key contains the md5() of the fieldname
if (0 === strlen($val)) {
- // default
- $val = "''";
-
- switch ($type) {
- case 'enum':
- // if we have an enum, then construct the value
- case 'set':
- // if we have a set, then construct the value
- case 'foreign':
- // if we have a foreign key, then construct the value
- if (! empty($_REQUEST['fields']['multi_edit'][$rownumber][$key])) {
- $val = implode(',', $_REQUEST['fields']['multi_edit'][$rownumber][$key]);
- $val = "'" . PMA_sqlAddslashes($val) . "'";
- }
- break;
- case 'protected':
- // here we are in protected mode (asked in the config)
- // so tbl_change has put this special value in the
- // fields array, so we do not change the field value
- // but we can still handle field upload
-
- // when in UPDATE mode, do not alter field's contents. When in INSERT
- // mode, insert empty field because no values were submitted. If protected
- // blobs where set, insert original fields content.
- if (! empty($prot_row[$me_fields_name[$key]])) {
- $val = '0x' . bin2hex($prot_row[$me_fields_name[$key]]);
- } else {
- $val = '';
- }
-
- break;
- default:
- // best way to avoid problems in strict mode (works also in non-strict mode)
- if (isset($me_auto_increment) && isset($me_auto_increment[$key])) {
- $val = 'NULL';
- }
- break;
+ // best way to avoid problems in strict mode (works also in non-strict mode)
+ if (isset($me_auto_increment) && isset($me_auto_increment[$key])) {
+ $val = 'NULL';
+ } else {
+ $val = "''";
+ }
+ } elseif ($type == 'set') {
+ if (! empty($_REQUEST['fields']['multi_edit'][$rownumber][$key])) {
+ $val = implode(',', $_REQUEST['fields']['multi_edit'][$rownumber][$key]);
+ $val = "'" . PMA_sqlAddslashes($val) . "'";
}
+ } elseif ($type == 'protected') {
+ // here we are in protected mode (asked in the config)
+ // so tbl_change has put this special value in the
+ // fields array, so we do not change the field value
+ // but we can still handle field upload
+
+ // when in UPDATE mode, do not alter field's contents. When in INSERT
+ // mode, insert empty field because no values were submitted. If protected
+ // blobs where set, insert original fields content.
+ if (! empty($prot_row[$me_fields_name[$key]])) {
+ $val = '0x' . bin2hex($prot_row[$me_fields_name[$key]]);
+ } else {
+ $val = '';
+ }
} elseif ($type == 'bit') {
$val = preg_replace('/[^01]/', '0', $val);
$val = "b'" . PMA_sqlAddslashes($val) . "'";
diff --git a/tbl_change.php b/tbl_change.php
index 6b4446e..eaf0bc3 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -804,7 +804,7 @@ foreach ($rows as $row_id => $vrow) {
echo $backup_field . "\n";
?>
<input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="set" />
- <select name="fields<?php echo $field_name_appendix; ?>"
+ <select name="fields<?php echo $field_name_appendix . '[]'; ?>"
class="textfield"
size="<?php echo $select_size; ?>"
multiple="multiple" <?php echo $unnullify_trigger; ?>
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA1-868-g4a71a1e
by Marc Delisle 16 Dec '10
by Marc Delisle 16 Dec '10
16 Dec '10
The branch, master has been updated
via 4a71a1e5f1eee17a5ef2349e9a62cbcab7ec4971 (commit)
from 62fd44d51e2ca500300fd992c3be4ab070f7a76c (commit)
- Log -----------------------------------------------------------------
commit 4a71a1e5f1eee17a5ef2349e9a62cbcab7ec4971
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu Dec 16 11:37:24 2010 -0500
bug #3138572 "Continue insertion" problems
-----------------------------------------------------------------------
Summary of changes:
browse_foreigners.php | 6 +++---
libraries/tbl_replace_fields.inc.php | 8 +++-----
tbl_change.php | 21 +++++++++------------
3 files changed, 15 insertions(+), 20 deletions(-)
diff --git a/browse_foreigners.php b/browse_foreigners.php
index 4cfa543..ef7cf2c 100644
--- a/browse_foreigners.php
+++ b/browse_foreigners.php
@@ -98,12 +98,12 @@ if (is_array($foreignData['disp_row'])) {
<script type="text/javascript">
//<![CDATA[
self.focus();
- function formupdate(field, key) {
+ function formupdate(fieldmd5, key) {
if (opener && opener.document && opener.document.insertForm) {
- var field = 'field_' + field;
+ var field = 'fields';
<?php if (isset($pk)) { ?>
- var element_name = field + '[multi_edit][<?php echo htmlspecialchars($pk); ?>][]';
+ var element_name = field + '[multi_edit][<?php echo htmlspecialchars($pk); ?>][' + fieldmd5 + ']';
<?php } else { ?>
var element_name = field + '[]';
<?php } ?>
diff --git a/libraries/tbl_replace_fields.inc.php b/libraries/tbl_replace_fields.inc.php
index 935587d..3ba08c4 100644
--- a/libraries/tbl_replace_fields.inc.php
+++ b/libraries/tbl_replace_fields.inc.php
@@ -68,8 +68,6 @@ if (false !== $possibly_uploaded_val) {
}
// $key contains the md5() of the fieldname
- $f = 'field_' . $key;
-
if (0 === strlen($val)) {
// default
$val = "''";
@@ -81,8 +79,8 @@ if (false !== $possibly_uploaded_val) {
// if we have a set, then construct the value
case 'foreign':
// if we have a foreign key, then construct the value
- if (! empty($_REQUEST[$f]['multi_edit'][$rownumber])) {
- $val = implode(',', $_REQUEST[$f]['multi_edit'][$rownumber]);
+ if (! empty($_REQUEST['fields']['multi_edit'][$rownumber][$key])) {
+ $val = implode(',', $_REQUEST['fields']['multi_edit'][$rownumber][$key]);
$val = "'" . PMA_sqlAddslashes($val) . "'";
}
break;
@@ -129,5 +127,5 @@ if (false !== $possibly_uploaded_val) {
$val = "''";
}
} // end else (field value in the form)
-unset($type, $f);
+unset($type);
?>
diff --git a/tbl_change.php b/tbl_change.php
index edbddb0..6b4446e 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -411,8 +411,6 @@ foreach ($rows as $row_id => $vrow) {
// Use an MD5 as an array index to avoid having special characters in the name atttibute (see bug #1746964 )
$field_name_appendix = $vkey . '[' . $field['Field_md5'] . ']';
- $field_name_appendix_md5 = $field['Field_md5'] . $vkey . '[]';
-
if ($field['Type'] == 'datetime'
&& ! isset($field['Default'])
@@ -656,9 +654,7 @@ foreach ($rows as $row_id => $vrow) {
?>
<input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>"
value="foreign" />
- <input type="hidden" name="fields<?php echo $field_name_appendix; ?>"
- value="" id="field_<?php echo ($idindex); ?>_3A" />
- <input type="text" name="field_<?php echo $field_name_appendix_md5; ?>"
+ <input type="text" name="fields<?php echo $field_name_appendix; ?>"
class="textfield" <?php echo $unnullify_trigger; ?>
tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
id="field_<?php echo ($idindex); ?>_3"
@@ -678,10 +674,9 @@ foreach ($rows as $row_id => $vrow) {
?>
<input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>"
value="foreign" />
- <input type="hidden" name="fields<?php echo $field_name_appendix; ?>"
- value="" id="field_<?php echo $idindex; ?>_3A" />
- <select name="field_<?php echo $field_name_appendix_md5; ?>"
+ <select name="fields<?php echo $field_name_appendix; ?>"
<?php echo $unnullify_trigger; ?>
+ class="textfield"
tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
id="field_<?php echo ($idindex); ?>_3">
<?php echo PMA_foreignDropdown($foreignData['disp_row'], $foreignData['foreign_field'], $foreignData['foreign_display'], $data, $cfg['ForeignKeyMaxLimit']); ?>
@@ -744,8 +739,9 @@ foreach ($rows as $row_id => $vrow) {
// show dropdown or radio depend on length
if (strlen($field['Type']) > 20) {
?>
- <select name="field_<?php echo $field_name_appendix_md5; ?>"
+ <select name="fields<?php echo $field_name_appendix; ?>"
<?php echo $unnullify_trigger; ?>
+ class="textfield"
tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
id="field_<?php echo ($idindex); ?>_3">
<option value=""> </option>
@@ -772,7 +768,8 @@ foreach ($rows as $row_id => $vrow) {
$j = 0;
foreach ($field_enum_values as $enum_value) {
echo ' ';
- echo '<input type="radio" name="field_' . $field_name_appendix_md5 . '"';
+ echo '<input type="radio" name="fields' . $field_name_appendix . '"';
+ echo ' class="textfield"';
echo ' value="' . $enum_value['html'] . '"';
echo ' id="field_' . ($idindex) . '_3_' . $j . '"';
echo $unnullify_trigger;
@@ -807,8 +804,8 @@ foreach ($rows as $row_id => $vrow) {
echo $backup_field . "\n";
?>
<input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="set" />
- <input type="hidden" name="fields<?php echo $field_name_appendix; ?>" value="" />
- <select name="field_<?php echo $field_name_appendix_md5; ?>"
+ <select name="fields<?php echo $field_name_appendix; ?>"
+ class="textfield"
size="<?php echo $select_size; ?>"
multiple="multiple" <?php echo $unnullify_trigger; ?>
tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA1-867-g62fd44d
by Michal Čihař 16 Dec '10
by Michal Čihař 16 Dec '10
16 Dec '10
The branch, master has been updated
via 62fd44d51e2ca500300fd992c3be4ab070f7a76c (commit)
via 6ba0ee62f589b6d7570daeb7da92f3f72e65c145 (commit)
via b5deff1c9f8f7fd8ed8e8d46762d3039701a56e2 (commit)
via f8f1de61bef5c504a212ebeb37c637ad121aa8ca (commit)
via 8a24231004ce1b3bd6ac8b54a48d5f9633166eac (commit)
via 8464670489cb85ebe7c11a29850f2dec98416231 (commit)
via 7232aed1160483aaf4580b3634e865ca182161fc (commit)
via 0790536797f3004a9315dddb7cd43bbc2a9bf52f (commit)
via 35827f22f44e8c9fda7dc3367cb122ef4e8c152c (commit)
via d60ba5d2e93fb3ffa924af7da50f1e6a9afa35ae (commit)
via b201492806a98bf943e1a7d4aa4c0f1c90d76877 (commit)
via ad5549831ddd3fa6a9e67a89b14b92259d1b375c (commit)
via 0d8371d0535fde1ffe9deaeb6caa45bb674ada63 (commit)
via dc2b1847aaac26bad17a461942908eedd7d20d0e (commit)
via 9c15bbe3d64bad1937348bcb6058c3dc14c1c3f3 (commit)
via 3aff11fdd626e9dbc3871f2896d3d81bcc9114c3 (commit)
via e8a7dd01a2d5d8a0ff26c1ce2526187a46d62778 (commit)
via 9c8db77d9f1cba7b94069d8ec9a27119f2a9780f (commit)
via 1161235a98e4e6040634c8627ffd3c7128a96e05 (commit)
via 88975e07c93f6a01ea4db5a35164271766ee1295 (commit)
via 82fa07a19955a4229459fc7f7b3dc40fa2c6b963 (commit)
via ebf0324f22e6f6ba4f5a337e2b37405ebdf8445f (commit)
via ddf0f29b3251b547dfc1373a232551a45bd780a1 (commit)
via 3e1ae88faaee4d25afcece2310bd951977aa49c6 (commit)
via 52a3b77eb8e6ba06b10d5746edda31f6e3a3a093 (commit)
via f74f294e838e1514b47fd2330d632b037e949548 (commit)
via 00c6b82ae7b22e0c84a8461f090bf992f45c45cc (commit)
via 4d26da6cfd9256e5a021c4e3bf7d71506f671d09 (commit)
via f50b2991d2aeaf838c4b9ec1769454068bd0c985 (commit)
via 1aa24c87dabb00ea8aca4beb06a63104940c861c (commit)
via 3ec261a4e11fec21ec5a3de90c3175f0444c43e8 (commit)
via 089ce7155b3bfd233b9a06126a751a056459a5c2 (commit)
via 8970d181c7607e72e76826396840ff20dc5a5694 (commit)
via b0acb02695cced80febea15a7cc32f57723d42e8 (commit)
via 76db77c0ca94c412945ac50e60c9cdc55dc6b3f7 (commit)
via 1d88a1ddf11bb1114670da45dc8d013ed589df47 (commit)
via 0aaa0769370916b7a9108a5441fbf54c8188c2f6 (commit)
via 15af1dead0281d214c4a1edf7bd48857d201cfe2 (commit)
via e6f9a7086a28494db47d19ba223593d09c3e4463 (commit)
via cf0a87de6152dec78375bb31417e7710b1e5c7b7 (commit)
via 2617ce57429671a446e8f89af4a99648004e1a56 (commit)
via 3087237f3a439aa0a4bb3caca77385ab334b1de2 (commit)
via 8fd78e7924b300bfa7b78706bacfe6f0a7e7df95 (commit)
via 39734d025766178be271d850554b5219b79ec8b5 (commit)
via 167bdc60b13c37f5825f754f2b5ac697bffc38a7 (commit)
via 5fc01e2bffee3ba73412aa48c77bd55e52269351 (commit)
via 4261e517dd861aff0da00da24c9c29f4ddfdccad (commit)
via e2a9fc2b72be9a62890853f16252ed03f4203f89 (commit)
via 5f868061fad5485b8b18753c7d992b24d526d340 (commit)
via fef6f755976c798b57c3c4fa5478bae3cbec984d (commit)
via 56bf16f91fac5093cb82b481e4af4d82b8b75d12 (commit)
via 52067d5d89459aa10273e92573f0ffe0d8ad42dd (commit)
via ff0b9e0ef6c6fafd04f1a12f799b3f01e6f90f22 (commit)
via df058023ea452cec358a916aca9af96b7018f5a6 (commit)
via bcc90ddfaddac5a1abaa39c2f98478e46a5ec0c9 (commit)
via ca1c8a6b051982783a71cdef933cceb01e10423b (commit)
via 35a48503e83c7b0f0b9efcfbf28a9777aa90a711 (commit)
via 50ec4f0fc567de0b4e678d65d638f3ea5052e069 (commit)
via 011aa8c866cf114330a9fd20097174f21fc27959 (commit)
via 8c5e52c9c2973e112b41427ba5c2379f2106858c (commit)
via bceb8d076625b17e9f9f484896e1d7ed99de02a2 (commit)
from 92008fc9b1677fada4c41bc89dc5a29e6f584684 (commit)
- Log -----------------------------------------------------------------
commit 62fd44d51e2ca500300fd992c3be4ab070f7a76c
Author: Michal Čihař <michal(a)cihar.com>
Date: Thu Dec 16 09:05:45 2010 +0100
Fix format string.
commit 6ba0ee62f589b6d7570daeb7da92f3f72e65c145
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 02:40:07 2010 +0200
Translation update done using Pootle.
commit b5deff1c9f8f7fd8ed8e8d46762d3039701a56e2
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 02:39:39 2010 +0200
Translation update done using Pootle.
commit f8f1de61bef5c504a212ebeb37c637ad121aa8ca
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 02:39:30 2010 +0200
Translation update done using Pootle.
commit 8a24231004ce1b3bd6ac8b54a48d5f9633166eac
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 02:39:18 2010 +0200
Translation update done using Pootle.
commit 8464670489cb85ebe7c11a29850f2dec98416231
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 02:38:45 2010 +0200
Translation update done using Pootle.
commit 7232aed1160483aaf4580b3634e865ca182161fc
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 02:38:23 2010 +0200
Translation update done using Pootle.
commit 0790536797f3004a9315dddb7cd43bbc2a9bf52f
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 02:37:59 2010 +0200
Translation update done using Pootle.
commit 35827f22f44e8c9fda7dc3367cb122ef4e8c152c
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 02:37:15 2010 +0200
Translation update done using Pootle.
commit d60ba5d2e93fb3ffa924af7da50f1e6a9afa35ae
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 02:36:07 2010 +0200
Translation update done using Pootle.
commit b201492806a98bf943e1a7d4aa4c0f1c90d76877
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 02:35:49 2010 +0200
Translation update done using Pootle.
commit ad5549831ddd3fa6a9e67a89b14b92259d1b375c
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 02:34:54 2010 +0200
Translation update done using Pootle.
commit 0d8371d0535fde1ffe9deaeb6caa45bb674ada63
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 01:33:44 2010 +0200
Translation update done using Pootle.
commit dc2b1847aaac26bad17a461942908eedd7d20d0e
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 01:14:36 2010 +0200
Translation update done using Pootle.
commit 9c15bbe3d64bad1937348bcb6058c3dc14c1c3f3
Author: Domen <dbc334(a)gmail.com>
Date: Thu Dec 16 00:56:44 2010 +0200
Translation update done using Pootle.
commit 3aff11fdd626e9dbc3871f2896d3d81bcc9114c3
Author: Domen <dbc334(a)gmail.com>
Date: Thu Dec 16 00:56:35 2010 +0200
Translation update done using Pootle.
commit e8a7dd01a2d5d8a0ff26c1ce2526187a46d62778
Author: Domen <dbc334(a)gmail.com>
Date: Thu Dec 16 00:56:25 2010 +0200
Translation update done using Pootle.
commit 9c8db77d9f1cba7b94069d8ec9a27119f2a9780f
Author: Domen <dbc334(a)gmail.com>
Date: Thu Dec 16 00:56:21 2010 +0200
Translation update done using Pootle.
commit 1161235a98e4e6040634c8627ffd3c7128a96e05
Author: Domen <dbc334(a)gmail.com>
Date: Thu Dec 16 00:56:10 2010 +0200
Translation update done using Pootle.
commit 88975e07c93f6a01ea4db5a35164271766ee1295
Author: Domen <dbc334(a)gmail.com>
Date: Thu Dec 16 00:56:03 2010 +0200
Translation update done using Pootle.
commit 82fa07a19955a4229459fc7f7b3dc40fa2c6b963
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:54:12 2010 +0200
Translation update done using Pootle.
commit ebf0324f22e6f6ba4f5a337e2b37405ebdf8445f
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:41:57 2010 +0200
Translation update done using Pootle.
commit ddf0f29b3251b547dfc1373a232551a45bd780a1
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:37:02 2010 +0200
Translation update done using Pootle.
commit 3e1ae88faaee4d25afcece2310bd951977aa49c6
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:18:16 2010 +0200
Translation update done using Pootle.
commit 52a3b77eb8e6ba06b10d5746edda31f6e3a3a093
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:16:42 2010 +0200
Translation update done using Pootle.
commit f74f294e838e1514b47fd2330d632b037e949548
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:16:28 2010 +0200
Translation update done using Pootle.
commit 00c6b82ae7b22e0c84a8461f090bf992f45c45cc
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:15:09 2010 +0200
Translation update done using Pootle.
commit 4d26da6cfd9256e5a021c4e3bf7d71506f671d09
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:13:50 2010 +0200
Translation update done using Pootle.
commit f50b2991d2aeaf838c4b9ec1769454068bd0c985
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:13:41 2010 +0200
Translation update done using Pootle.
commit 1aa24c87dabb00ea8aca4beb06a63104940c861c
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:12:43 2010 +0200
Translation update done using Pootle.
commit 3ec261a4e11fec21ec5a3de90c3175f0444c43e8
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:11:47 2010 +0200
Translation update done using Pootle.
commit 089ce7155b3bfd233b9a06126a751a056459a5c2
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:09:33 2010 +0200
Translation update done using Pootle.
commit 8970d181c7607e72e76826396840ff20dc5a5694
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:08:07 2010 +0200
Translation update done using Pootle.
commit b0acb02695cced80febea15a7cc32f57723d42e8
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:07:36 2010 +0200
Translation update done using Pootle.
commit 76db77c0ca94c412945ac50e60c9cdc55dc6b3f7
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:06:54 2010 +0200
Translation update done using Pootle.
commit 1d88a1ddf11bb1114670da45dc8d013ed589df47
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:06:13 2010 +0200
Translation update done using Pootle.
commit 0aaa0769370916b7a9108a5441fbf54c8188c2f6
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:04:16 2010 +0200
Translation update done using Pootle.
commit 15af1dead0281d214c4a1edf7bd48857d201cfe2
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:03:17 2010 +0200
Translation update done using Pootle.
commit e6f9a7086a28494db47d19ba223593d09c3e4463
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:00:40 2010 +0200
Translation update done using Pootle.
commit cf0a87de6152dec78375bb31417e7710b1e5c7b7
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Thu Dec 16 00:00:01 2010 +0200
Translation update done using Pootle.
commit 2617ce57429671a446e8f89af4a99648004e1a56
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 23:59:33 2010 +0200
Translation update done using Pootle.
commit 3087237f3a439aa0a4bb3caca77385ab334b1de2
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 23:58:33 2010 +0200
Translation update done using Pootle.
commit 8fd78e7924b300bfa7b78706bacfe6f0a7e7df95
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 23:48:51 2010 +0200
Translation update done using Pootle.
commit 39734d025766178be271d850554b5219b79ec8b5
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 23:46:28 2010 +0200
Translation update done using Pootle.
commit 167bdc60b13c37f5825f754f2b5ac697bffc38a7
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 23:44:05 2010 +0200
Translation update done using Pootle.
commit 5fc01e2bffee3ba73412aa48c77bd55e52269351
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 23:40:40 2010 +0200
Translation update done using Pootle.
commit 4261e517dd861aff0da00da24c9c29f4ddfdccad
Merge: e2a9fc2b72be9a62890853f16252ed03f4203f89 92008fc9b1677fada4c41bc89dc5a29e6f584684
Author: Pootle server <pootle(a)cihar.com>
Date: Wed Dec 15 20:40:08 2010 +0100
Merge remote branch 'origin/master'
commit e2a9fc2b72be9a62890853f16252ed03f4203f89
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 20:33:34 2010 +0200
Translation update done using Pootle.
commit 5f868061fad5485b8b18753c7d992b24d526d340
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 20:31:31 2010 +0200
Translation update done using Pootle.
commit fef6f755976c798b57c3c4fa5478bae3cbec984d
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 20:30:23 2010 +0200
Translation update done using Pootle.
commit 56bf16f91fac5093cb82b481e4af4d82b8b75d12
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 20:29:38 2010 +0200
Translation update done using Pootle.
commit 52067d5d89459aa10273e92573f0ffe0d8ad42dd
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 15 19:14:21 2010 +0200
Translation update done using Pootle.
commit ff0b9e0ef6c6fafd04f1a12f799b3f01e6f90f22
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 15 19:14:12 2010 +0200
Translation update done using Pootle.
commit df058023ea452cec358a916aca9af96b7018f5a6
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 15 19:14:07 2010 +0200
Translation update done using Pootle.
commit bcc90ddfaddac5a1abaa39c2f98478e46a5ec0c9
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 15 19:14:02 2010 +0200
Translation update done using Pootle.
commit ca1c8a6b051982783a71cdef933cceb01e10423b
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 15 19:13:56 2010 +0200
Translation update done using Pootle.
commit 35a48503e83c7b0f0b9efcfbf28a9777aa90a711
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 15 19:13:38 2010 +0200
Translation update done using Pootle.
commit 50ec4f0fc567de0b4e678d65d638f3ea5052e069
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 15 19:13:19 2010 +0200
Translation update done using Pootle.
commit 011aa8c866cf114330a9fd20097174f21fc27959
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 15 19:13:00 2010 +0200
Translation update done using Pootle.
commit 8c5e52c9c2973e112b41427ba5c2379f2106858c
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 15 16:12:18 2010 +0200
Translation update done using Pootle.
commit bceb8d076625b17e9f9f484896e1d7ed99de02a2
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 15 16:11:35 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/en_GB.po | 136 +++-------------------------------------------------------
po/fr.po | 19 +++-----
po/sl.po | 23 ++++------
po/uk.po | 103 +++++++++++++++++++-------------------------
4 files changed, 68 insertions(+), 213 deletions(-)
diff --git a/po/en_GB.po b/po/en_GB.po
index 44934b1..d18ef9f 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -4,13 +4,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-12-14 11:27-0500\n"
-"PO-Revision-Date: 2010-12-08 12:48+0200\n"
+"PO-Revision-Date: 2010-12-15 19:14+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: english-gb <en_GB(a)li.org>\n"
+"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -7000,34 +7000,29 @@ msgid "Page creation failed"
msgstr "Page creation failed"
#: pmd_pdf.php:89
-#, fuzzy
#| msgid "pages"
msgid "Page"
-msgstr "pages"
+msgstr "Page"
#: pmd_pdf.php:99
-#, fuzzy
#| msgid "Import from file"
msgid "Import from selected page"
-msgstr "Import from file"
+msgstr "Import from selected page"
#: pmd_pdf.php:100
-#, fuzzy
#| msgid "Export/Import to scale"
msgid "Export to selected page"
-msgstr "Export/Import to scale"
+msgstr "Export to selected page"
#: pmd_pdf.php:102
-#, fuzzy
#| msgid "Create a new index"
msgid "Create a page and export to it"
-msgstr "Create a new index"
+msgstr "Create a page and export to it"
#: pmd_pdf.php:111
-#, fuzzy
#| msgid "New name"
msgid "New page name: "
-msgstr "New name"
+msgstr "New page name: "
#: pmd_pdf.php:114
msgid "Export/Import to scale"
@@ -9804,120 +9799,3 @@ msgstr "Rename view to"
#~ msgid "Disable Statistics"
#~ msgstr "Disable Statistics"
-
-#~| msgid "Hide query box"
-#~ msgid "Hide query chart"
-#~ msgstr "Hide query chart"
-
-#~ msgid "Start"
-#~ msgstr "Start"
-
-#~ msgid "Stop"
-#~ msgstr "Stop"
-
-#~ msgid "Display table filter"
-#~ msgstr "Display table filter"
-
-#~ msgid ""
-#~ "The additional features for working with linked tables have been "
-#~ "deactivated. To find out why click %shere%s."
-#~ msgstr ""
-#~ "The additional features for working with linked tables have been "
-#~ "deactivated. To find out why click %shere%s."
-
-#~ msgid "Ignore duplicate rows"
-#~ msgstr "Ignore duplicate rows"
-
-#~ msgid "Execute bookmarked query"
-#~ msgstr "Execute bookmarked query"
-
-#~ msgid "No tables"
-#~ msgstr "No tables"
-
-#~ msgid "Field navigation using Ctrl+Arrows"
-#~ msgstr "Field navigation using Ctrl+Arrows"
-
-#~ msgid "Toggle Query Box Visibility"
-#~ msgstr "Toggle Query Box Visibility"
-
-#~ msgid "SVG"
-#~ msgstr "SVG"
-
-#~ msgid "DIA"
-#~ msgstr "DIA"
-
-#~ msgid "VISIO"
-#~ msgstr "VISIO"
-
-#~ msgid "EPS"
-#~ msgstr "EPS"
-
-#~ msgid ""
-#~ "This [a@?page=form&formset=features#tab_Security]option[/a] should be "
-#~ "enabled if your web server supports it"
-#~ msgstr ""
-#~ "This [a@?page=form&formset=features#tab_Security]option[/a] should be "
-#~ "enabled if your web server supports it"
-
-#~ msgid ""
-#~ "Enter each value in a separate field, enclosed in single quotes. If you "
-#~ "ever need to put a backslash (\"\\\") or a single quote (\"'\") amongst "
-#~ "those values, precede it with a backslash (for example '\\\\xyz' or 'a"
-#~ "\\'b')."
-#~ msgstr ""
-#~ "Enter each value in a separate field, enclosed in single quotes. If you "
-#~ "ever need to put a backslash (\"\\\") or a single quote (\"'\") amongst "
-#~ "those values, precede it with a backslash (for example '\\\\xyz' or 'a"
-#~ "\\'b')."
-
-#~ msgid ""
-#~ "Enter each value in a separate field. If you ever need to put a backslash "
-#~ "(\"\\\") or a single quote (\"'\") amongst those values, precede it with "
-#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
-#~ msgstr ""
-#~ "Enter each value in a separate field. If you ever need to put a backslash "
-#~ "(\"\\\") or a single quote (\"'\") amongst those values, precede it with "
-#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
-
-#~ msgid "Debug PHP"
-#~ msgstr "Debug PHP"
-
-#~ msgid "New table"
-#~ msgstr "New table"
-
-#~ msgid "server name"
-#~ msgstr "server name"
-
-#~ msgid "database name"
-#~ msgstr "database name"
-
-#~ msgid "Edit PDF Pages"
-#~ msgstr "Edit PDF Pages"
-
-#~ msgid "Data Dictionary Format"
-#~ msgstr "Data Dictionary Format"
-
-#~ msgid "Method"
-#~ msgstr "Method"
-
-#~ msgid "no"
-#~ msgstr "no"
-
-#~ msgid "Enter login options for signon authentication"
-#~ msgstr "Enter login options for signon authentication"
-
-#~ msgid "Signon login options"
-#~ msgstr "Signon login options"
-
-#~ msgid "PMA database"
-#~ msgstr "PMA database"
-
-#~ msgid ""
-#~ "SQL queries settings, for SQL Query box options see [a@?page=form&"
-#~ "formset=main_frame#tab_Sql_box]Navigation frame[/a] settings"
-#~ msgstr ""
-#~ "SQL queries settings, for SQL Query box options see [a@?page=form&"
-#~ "formset=main_frame#tab_Sql_box]Navigation frame[/a] settings"
-
-#~ msgid "yes"
-#~ msgstr "yes"
diff --git a/po/fr.po b/po/fr.po
index 5309141..e59c981 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -4,13 +4,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-12-14 11:27-0500\n"
-"PO-Revision-Date: 2010-12-14 18:08+0200\n"
+"PO-Revision-Date: 2010-12-15 19:13+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: french <fr(a)li.org>\n"
+"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -7085,34 +7085,29 @@ msgid "Page creation failed"
msgstr "Échec de création de page"
#: pmd_pdf.php:89
-#, fuzzy
#| msgid "pages"
msgid "Page"
-msgstr "pages"
+msgstr "Page"
#: pmd_pdf.php:99
-#, fuzzy
#| msgid "Import from file"
msgid "Import from selected page"
-msgstr "Importer depuis le fichier"
+msgstr "Importer depuis la page sélectionnée"
#: pmd_pdf.php:100
-#, fuzzy
#| msgid "Export/Import to scale"
msgid "Export to selected page"
-msgstr "Exporter/Importer à l'échelle"
+msgstr "Exporter vers la page sélectionnée"
#: pmd_pdf.php:102
-#, fuzzy
#| msgid "Create a new index"
msgid "Create a page and export to it"
-msgstr "Créer un nouvel index"
+msgstr "Créer une page et y exporter"
#: pmd_pdf.php:111
-#, fuzzy
#| msgid "New name"
msgid "New page name: "
-msgstr "Nouveau nom"
+msgstr "Nom de la nouvelle page : "
#: pmd_pdf.php:114
msgid "Export/Import to scale"
diff --git a/po/sl.po b/po/sl.po
index 533bc8f..9a8d641 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-12-14 11:27-0500\n"
-"PO-Revision-Date: 2010-12-12 13:02+0200\n"
+"PO-Revision-Date: 2010-12-16 00:56+0200\n"
"Last-Translator: Domen <dbc334(a)gmail.com>\n"
"Language-Team: slovenian <sl(a)li.org>\n"
+"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sl\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
-"%100==4 ? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
+"n%100==4 ? 2 : 3);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:36 browse_foreigners.php:57
@@ -7038,34 +7038,29 @@ msgid "Page creation failed"
msgstr "Ustvarjanje strani je spodletelo"
#: pmd_pdf.php:89
-#, fuzzy
#| msgid "pages"
msgid "Page"
-msgstr "strani"
+msgstr "Stran"
#: pmd_pdf.php:99
-#, fuzzy
#| msgid "Import from file"
msgid "Import from selected page"
-msgstr "Uvozi iz datoteke"
+msgstr "Uvozi z izbrane strani"
#: pmd_pdf.php:100
-#, fuzzy
#| msgid "Export/Import to scale"
msgid "Export to selected page"
-msgstr "Izvozi/Uvozi v razmerju"
+msgstr "Izvozi na izbrano stran"
#: pmd_pdf.php:102
-#, fuzzy
#| msgid "Create a new index"
msgid "Create a page and export to it"
-msgstr "Ustvari nov indeks"
+msgstr "Ustvari stran in izvozi nanjo"
#: pmd_pdf.php:111
-#, fuzzy
#| msgid "New name"
msgid "New page name: "
-msgstr "Novo ime"
+msgstr "Ime nove strani: "
#: pmd_pdf.php:114
msgid "Export/Import to scale"
diff --git a/po/uk.po b/po/uk.po
index 86a8683..93a63f3 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-12-14 11:27-0500\n"
-"PO-Revision-Date: 2010-12-15 01:52+0200\n"
+"PO-Revision-Date: 2010-12-16 02:40+0200\n"
"Last-Translator: Olexiy Zagorskyi <zalex_ua(a)i.ua>\n"
"Language-Team: ukrainian <uk(a)li.org>\n"
"Language: uk\n"
@@ -298,7 +298,7 @@ msgstr "Лише дані"
#: db_operations.php:491
msgid "CREATE DATABASE before copying"
-msgstr ""
+msgstr "Перед копіюванням створити базу даних (CREATE DATABASE)"
#: db_operations.php:494 libraries/config/messages.inc.php:122
#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125
@@ -310,11 +310,11 @@ msgstr "Додати %s"
#: db_operations.php:498 libraries/config/messages.inc.php:115
#: tbl_operations.php:296 tbl_operations.php:540
msgid "Add AUTO_INCREMENT value"
-msgstr ""
+msgstr "Додати AUTO_INCREMENT значення"
#: db_operations.php:502 tbl_operations.php:547
msgid "Add constraints"
-msgstr ""
+msgstr "Додати constraints"
#: db_operations.php:515
msgid "Switch to copied database"
@@ -331,7 +331,7 @@ msgid "Collation"
msgstr "Порівняння"
#: db_operations.php:548
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
#| "deactivated. To find out why click %shere%s."
@@ -339,8 +339,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"Додаткова можливість роботи із залінкованими таблицями деактивована. Для "
-"того, щоб довідатись чому, натисніть %sтут%s."
+"Сховище конфігурації phpMyAdmin деактивовано. Для того, щоб довідатись чому, "
+"натисніть %sтут%s."
#: db_operations.php:581
#, fuzzy
@@ -356,7 +356,7 @@ msgstr "Схема зв'язків"
#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586
#: test/theme.php:74
msgid "Table"
-msgstr "таблиця "
+msgstr "Таблиця"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
@@ -467,7 +467,7 @@ msgstr "Видалити"
#: libraries/tbl_properties.inc.php:778 server_privileges.php:298
#: tbl_change.php:928 tbl_indexes.php:248 tbl_select.php:284
msgid "Or"
-msgstr "або"
+msgstr "Або"
#: db_qbe.php:526
msgid "Modify"
@@ -527,12 +527,13 @@ msgid "Search results for \"<i>%s</i>\" %s:"
msgstr "Результати пошуку \"<i>%s</i>\" %s:"
#: db_search.php:248
-#, fuzzy, php-format
+#, php-format
#| msgid "%s match(es) inside table <i>%s</i>"
msgid "%s match inside table <i>%s</i>"
msgid_plural "%s matches inside table <i>%s</i>"
msgstr[0] "%s співпадіння у таблиці <i>%s</i>"
msgstr[1] "%s співпадіння у таблиці <i>%s</i>"
+msgstr[2] "%s співпадінь у таблиці <i>%s</i>"
#: db_search.php:255 libraries/common.lib.php:2818
#: libraries/common.lib.php:2996 libraries/common.lib.php:2997
@@ -911,7 +912,7 @@ msgstr "Назад"
#: index.php:183
msgid "phpMyAdmin is more friendly with a <b>frames-capable</b> browser."
-msgstr "Для роботи phpMyAdmin потрібно браузер з підтримкою <b>фреймів</b>."
+msgstr "phpMyAdmin є більш зручним в браузері з підтримкою <b>фреймів</b>."
#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355
#: server_synchronize.php:371 server_synchronize.php:378
@@ -992,28 +993,24 @@ msgid "The passwords aren't the same!"
msgstr "Паролі не однакові!"
#: js/messages.php:52
-#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Додати нового користувача"
#: js/messages.php:53
-#, fuzzy
#| msgid "Create"
msgid "Create User"
-msgstr "Створити"
+msgstr "Створити користувача"
#: js/messages.php:54
-#, fuzzy
#| msgid "Reloading the privileges"
msgid "Reloading Privileges"
msgstr "Перезавантаження прав"
#: js/messages.php:55
-#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
-msgstr "Усунути відмічених користувачів"
+msgstr "Видалити відмічених користувачів"
#: js/messages.php:56 tbl_tracking.php:245 tbl_tracking.php:373
msgid "Close"
@@ -1096,10 +1093,9 @@ msgid "Searching"
msgstr "Шукати"
#: js/messages.php:84
-#, fuzzy
#| msgid "in query"
msgid "Hide query box"
-msgstr "по запиту"
+msgstr "Сховати блок запиту"
#: js/messages.php:85
#, fuzzy
@@ -1444,10 +1440,9 @@ msgid "Hour"
msgstr ""
#: js/messages.php:208
-#, fuzzy
#| msgid "in use"
msgid "Minute"
-msgstr "використовується"
+msgstr "Хвилина"
#: js/messages.php:209
#, fuzzy
@@ -1885,13 +1880,13 @@ msgid ""
"semicolon is missing somewhere.<br />If you receive a blank page, everything "
"is fine."
msgstr ""
-"phpMyAdmin не може прочитати ваш конфігураційний файл <br />Це може статися "
-"у тому випадку, коли php натрапить на синтаксичну помилку (parse error) у "
-"ньому, або не може знайти самого файлу.<br />Завантажте конфігураційний файл "
-"безпосередньо за допомогою посилання поданого нижче і прочитайте отримані "
-"повідомлення про помилки (php error messages). Найчастіше десь у файлі "
-"просто бракує лапок чи двокрапки. <br />Якщо Ви отримаєте порожню сторінку, "
-"- значить все в порядку."
+"phpMyAdmin не може прочитати ваш конфігураційний файл!<br />Це може статися "
+"у тому випадку, коли PHP натрапить на синтаксичну помилку у ньому, або не "
+"може знайти самого файлу.<br />Завантажте конфігураційний файл безпосередньо "
+"за допомогою посилання поданого нижче і прочитайте отримані повідомлення "
+"про помилки (PHP error messages). Найчастіше десь у файлі просто бракує "
+"лапок чи крапки з комою. <br />Якщо Ви отримаєте порожню сторінку - значить "
+"все в порядку."
#: libraries/common.inc.php:586
#, php-format
@@ -1904,7 +1899,7 @@ msgid ""
"configuration file!"
msgstr ""
"Змінна <tt>$cfg['PmaAbsoluteUri']</tt> ПОВИННА бути встановлена у Вашому "
-"конфіґураційному файлі!"
+"конфігураційному файлі!"
#: libraries/common.inc.php:621
#, php-format
@@ -2130,10 +2125,10 @@ msgid "Browse your computer:"
msgstr ""
#: libraries/common.lib.php:2963
-#, fuzzy, php-format
+#, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory <b>%s</b>:"
-msgstr "каталог веб-сервера для завантаження файлів (upload directory)"
+msgstr "Виберіть з каталога веб-сервера для завантаження файлів <b>%s</b>:"
#: libraries/common.lib.php:2975 libraries/sql_query_form.lib.php:496
#: tbl_change.php:925
@@ -2253,10 +2248,9 @@ msgid "SQL Validator is disabled"
msgstr ""
#: libraries/config/FormDisplay.class.php:764
-#, fuzzy
#| msgid "Link not found"
msgid "SOAP extension not found"
-msgstr "Лінк не знайдено"
+msgstr "SOA розширення не знайдено"
#: libraries/config/FormDisplay.class.php:772
#, php-format
@@ -2613,11 +2607,10 @@ msgstr ""
#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23
#: libraries/export/latex.php:39 libraries/export/odt.php:31
#: libraries/export/sql.php:77 libraries/export/texytext.php:22
-#, fuzzy
#| msgid "%s table"
#| msgid_plural "%s tables"
msgid "Dump table"
-msgstr "%s таблиця"
+msgstr "Дамп таблиці"
#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31
msgid "Include table caption"
@@ -2998,10 +2991,9 @@ msgid "Customize links shown in SQL Query boxes"
msgstr ""
#: libraries/config/messages.inc.php:214
-#, fuzzy
#| msgid "Server variables and settings"
msgid "SQL queries settings"
-msgstr "Змінні сервера та налаштування"
+msgstr "Налаштування SQL запитів"
#: libraries/config/messages.inc.php:215
#, fuzzy
@@ -3490,10 +3482,9 @@ msgid "Query window height"
msgstr "Вікно запиту"
#: libraries/config/messages.inc.php:339
-#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
-msgstr "Вікно запиту"
+msgstr "Ширина вікна запиту (в пікселях)"
#: libraries/config/messages.inc.php:340
#, fuzzy
@@ -4450,16 +4441,14 @@ msgid "Custom - display all possible options"
msgstr ""
#: libraries/display_export.lib.php:137
-#, fuzzy
#| msgid "Databases"
msgid "Database(s):"
-msgstr "Бази Даних"
+msgstr "База(и) даних:"
#: libraries/display_export.lib.php:139
-#, fuzzy
#| msgid "Tables"
msgid "Table(s):"
-msgstr "Таблиць"
+msgstr "Таблиця(ь):"
#: libraries/display_export.lib.php:149
#, fuzzy
@@ -4682,20 +4671,20 @@ msgstr "рядків з"
#: libraries/display_tbl.lib.php:314
msgid "horizontal"
-msgstr " горизонтально "
+msgstr " горизонтальному"
#: libraries/display_tbl.lib.php:315
msgid "horizontal (rotated headers)"
-msgstr "горизонтально (rotated headers)"
+msgstr "горизонтальному (повернуті заголовки)"
#: libraries/display_tbl.lib.php:316
msgid "vertical"
-msgstr " вертикально "
+msgstr "вертикальному"
#: libraries/display_tbl.lib.php:322
#, php-format
msgid "in %s mode and repeat headers after %s cells"
-msgstr "-го %s і дублювати заголовки через кожні %s рядків "
+msgstr "в %s режимі і дублювати заголовки через кожні %s рядків "
#: libraries/display_tbl.lib.php:510
msgid "Sort by key"
@@ -5236,10 +5225,9 @@ msgid "(continued)"
msgstr ""
#: libraries/export/latex.php:15
-#, fuzzy
#| msgid "Table structure for table"
msgid "Structure of table @TABLE@"
-msgstr "Структура таблиці"
+msgstr "Структура таблиці @TABLE@"
#: libraries/export/latex.php:47 libraries/export/odt.php:39
#: libraries/export/sql.php:87
@@ -6373,8 +6361,8 @@ msgid ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-"Не можу запустити перевірку SQL. Прошу проконтролювати чи заінстальовано "
-"необхідні php extensions як описано в %sдокументації%s."
+"Не можу запустити перевірку SQL. Прошу проконтролювати чи інстальовані "
+"необхідні PHP extensions як описано в %sдокументації%s."
#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107
msgid "Table seems to be empty!"
@@ -6459,8 +6447,8 @@ msgid ""
"No description is available for this transformation.<br />Please ask the "
"author what %s does."
msgstr ""
-"Немає опису для цього перетворення.<br />Прошу питатися автора, що робить %"
-"s."
+"Немає опису для цього перетворення.<br />Будь ласка запитайте автора, що "
+"робить %s."
#: libraries/tbl_properties.inc.php:725 server_engines.php:56
#: tbl_operations.php:352
@@ -6579,9 +6567,9 @@ msgid ""
"option is a URL prefix like \"http://www.example.com/\". The second and "
"third options are the width and the height in pixels."
msgstr ""
-"Показує посилання, поле містить назву файлу. Перша опція - префікс "
-"посилання, подібно до \"http://www.example.com/\". Друга опція - заголовок для "
-"посилання."
+"Показує картинку та посилання; поле містить назву файлу. Перша опція - "
+"префікс посилання, подібно до \"http://www.example.com/\". Друга та третя "
+"опції це відповідно висота та ширина в пікселях."
#: libraries/transformations/text_plain__link.inc.php:9
#| msgid ""
@@ -9278,10 +9266,9 @@ msgid "Empty the table (TRUNCATE)"
msgstr ""
#: tbl_operations.php:682
-#, fuzzy
#| msgid "No databases"
msgid "Delete the table (DROP)"
-msgstr "БД відсутні"
+msgstr "Видалити таюлицю (DROP)"
#: tbl_operations.php:703
msgid "Partition maintenance"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA1-806-g92008fc
by Marc Delisle 15 Dec '10
by Marc Delisle 15 Dec '10
15 Dec '10
The branch, master has been updated
via 92008fc9b1677fada4c41bc89dc5a29e6f584684 (commit)
via 3b7a23ca21988099e4f1a5e4d1832dfc4540e4fa (commit)
from d33594fcb96520b9d9bf0be672d3b48ab72d9146 (commit)
- Log -----------------------------------------------------------------
commit 92008fc9b1677fada4c41bc89dc5a29e6f584684
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 15 13:26:33 2010 -0500
Avoid recreating a jQuery object
Remove tab characters
commit 3b7a23ca21988099e4f1a5e4d1832dfc4540e4fa
Author: dylfin <dylfin(a)gmail.com>
Date: Wed Dec 15 13:16:28 2010 -0500
Fix clear button
Script was adapted to use jquery
Fix input box for all browsers
-----------------------------------------------------------------------
Summary of changes:
js/navigation.js | 36 ++++++------------------
navigation.php | 2 +-
themes/darkblue_orange/css/theme_right.css.php | 10 ++++--
themes/original/css/theme_left.css.php | 10 ++++--
4 files changed, 22 insertions(+), 36 deletions(-)
diff --git a/js/navigation.js b/js/navigation.js
index 280117f..ed6dcb1 100644
--- a/js/navigation.js
+++ b/js/navigation.js
@@ -141,36 +141,18 @@ function PMA_setCookie(name, value, expires, path, domain, secure) {
/**
* hide all LI elements with second A tag which doesn`t contain requested value
*
- * @param string value requested value
+ * @param string value requested value
*
*/
function fast_filter(value){
- var oTarget = document.getElementById("subel0");
- if(!oTarget || !document.getElementById('fast_filter')) return false;
- if(value!=document.getElementById('fast_filter').value) return false;
- document.getElementById('fast_filter').disabled=true;
- for(var iCh in oTarget.childNodes){
- var oCh = oTarget.childNodes.item(iCh);
- if(!oCh) continue;
- if(oCh.nodeName=="LI"){
- if(value=="") oCh.style.display="";
- else{
- var i=0;
- for(var iA in oCh.childNodes){
- var oA = oCh.childNodes.item(iA);
- if(!oA) continue;
- if(oA.nodeName=="A"){
- if(i==0) i = 1;
- else{
- if(oA.innerHTML.indexOf(value)==-1) oCh.style.display="none";
- else oCh.style.display="";
- }
- }
- }
- }
- }
- }
- document.getElementById('fast_filter').disabled=false;
+ $("#subel0 a[class!='tableicon']").each(function(idx,elem){
+ $elem = $(elem);
+ if (value && $elem.html().indexOf(value) == -1) {
+ $elem.parent().hide();
+ } else {
+ $elem.parent().show();
+ }
+ });
}
/**
diff --git a/navigation.php b/navigation.php
index d312a0c..fdb6502 100644
--- a/navigation.php
+++ b/navigation.php
@@ -289,8 +289,8 @@ if ($GLOBALS['cfg']['LeftFrameLight'] && strlen($GLOBALS['db'])) {
if ($table_count >= $GLOBALS['cfg']['LeftDisplayTableFilterMinimum']) {
?>
<span id="NavFilter">
- <input type="text" name="fast_filter" id="fast_filter" title="<?php echo __('Filter'); ?>" value="<?php echo __('filter tables by name'); ?>" />
<span id="clear_fast_filter" title="<?php echo __('Clear'); ?>">X</span>
+ <input type="text" name="fast_filter" id="fast_filter" title="<?php echo __('Filter'); ?>" value="<?php echo __('filter tables by name'); ?>" />
</span>
<?php
}
diff --git a/themes/darkblue_orange/css/theme_right.css.php b/themes/darkblue_orange/css/theme_right.css.php
index e36f770..438e04d 100644
--- a/themes/darkblue_orange/css/theme_right.css.php
+++ b/themes/darkblue_orange/css/theme_right.css.php
@@ -1402,14 +1402,16 @@ table#serverconnection_trg_local {
color: black;
cursor: pointer;
padding: 0;
- margin: 0;
+ margin: 3px 5px 0 -23px;
position: relative;
- right: 3ex;
+ float: right;
}
#fast_filter {
- width: 85%;
- padding: 0.1em;
+ width: 100%;
+ padding:2px 0px;
+ margin:0;
+ border:0;
}
/**
* Validation error message styles
diff --git a/themes/original/css/theme_left.css.php b/themes/original/css/theme_left.css.php
index 0fcaf21..9bb3c39 100644
--- a/themes/original/css/theme_left.css.php
+++ b/themes/original/css/theme_left.css.php
@@ -247,12 +247,14 @@ div#left_tableList ul ul {
color: black;
cursor: pointer;
padding: 0;
- margin: 0;
+ margin: 3px 5px 0 -23px;
position: relative;
- right: 3ex;
+ float: right;
}
#fast_filter {
- width: 85%;
- padding: 0.1em;
+ width: 100%;
+ padding:2px 0px;
+ margin:0;
+ border:0;
}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA1-804-gd33594f
by Michal Čihař 15 Dec '10
by Michal Čihař 15 Dec '10
15 Dec '10
The branch, master has been updated
via d33594fcb96520b9d9bf0be672d3b48ab72d9146 (commit)
from a4fc99ec089e535bbb839e1527065ae372d91526 (commit)
- Log -----------------------------------------------------------------
commit d33594fcb96520b9d9bf0be672d3b48ab72d9146
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Dec 15 09:22:47 2010 +0100
Czech translation update.
-----------------------------------------------------------------------
Summary of changes:
po/cs.po | 57 ++++++++++++++++++++++++++-------------------------------
1 files changed, 26 insertions(+), 31 deletions(-)
diff --git a/po/cs.po b/po/cs.po
index e00d07f..25eee66 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-12-14 11:27-0500\n"
-"PO-Revision-Date: 2010-12-07 15:56+0100\n"
+"PO-Revision-Date: 2010-12-15 09:21+0100\n"
"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -617,8 +617,8 @@ msgstr "Sledování není zapnuté."
#: db_structure.php:372 libraries/display_tbl.lib.php:1940
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s."
@@ -840,8 +840,8 @@ msgstr "Výpis byl uložen do souboru %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si "
"prosím %sdokumentaci%s, jak toto omezení obejít."
@@ -1598,8 +1598,8 @@ msgstr "Vítejte v %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho "
"vytvoření by se vám mohl hodit %1$snastavovací skript%2$s."
@@ -4523,8 +4523,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít "
"libovolné řetězce pro formátování data a času. Dále budou provedena "
@@ -6447,8 +6447,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %"
-"spopisy transformací%s"
+"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na "
+"%spopisy transformací%s"
#: libraries/tbl_properties.inc.php:143
msgid "Transformation options"
@@ -6489,8 +6489,8 @@ msgid ""
"No description is available for this transformation.<br />Please ask the "
"author what %s does."
msgstr ""
-"Pro tuto transformaci není dostupný žádný popis.<br />Zeptejte se autora co %"
-"s dělá."
+"Pro tuto transformaci není dostupný žádný popis.<br />Zeptejte se autora co "
+"%s dělá."
#: libraries/tbl_properties.inc.php:725 server_engines.php:56
#: tbl_operations.php:352
@@ -7008,34 +7008,29 @@ msgid "Page creation failed"
msgstr "Vytvoření stránky selhalo"
#: pmd_pdf.php:89
-#, fuzzy
#| msgid "pages"
msgid "Page"
-msgstr "stránek"
+msgstr "Stránka"
#: pmd_pdf.php:99
-#, fuzzy
#| msgid "Import from file"
msgid "Import from selected page"
-msgstr "Importovat ze souboru"
+msgstr "Importovat ze zvolené stránky"
#: pmd_pdf.php:100
-#, fuzzy
#| msgid "Export/Import to scale"
msgid "Export to selected page"
-msgstr "Exportovat/Importovat v měřítku"
+msgstr "Exportovat na zvolenou stránku"
#: pmd_pdf.php:102
-#, fuzzy
#| msgid "Create a new index"
msgid "Create a page and export to it"
-msgstr "Vytvořit nový index"
+msgstr "Vytvořit novou stránku a exportovat na ní"
#: pmd_pdf.php:111
-#, fuzzy
#| msgid "New name"
msgid "New page name: "
-msgstr "Nové jméno"
+msgstr "Název nové stránky:"
#: pmd_pdf.php:114
msgid "Export/Import to scale"
@@ -7123,8 +7118,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %"
-"sNastavovacího skriptu%s."
+"Více věcí můžete nastavit úpravou config.inc.php, např. použitím "
+"%sNastavovacího skriptu%s."
#: prefs_manage.php:302
msgid "Save to browser's storage"
@@ -7572,8 +7567,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto "
"tabulek se může lišit od oprávnění, která server právě používá, pokud byly "
@@ -9044,8 +9039,8 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
-"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%"
-"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
+"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie"
+"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
"hodnotu než je tato."
#: setup/lib/index.lib.php:266
@@ -9056,8 +9051,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %"
-"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
+"Pokud to považujete za nutné, použijte další možnosti zabezpečení - "
+"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
"založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa "
"dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli."
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA1-803-ga4fc99e
by Michal Čihař 15 Dec '10
by Michal Čihař 15 Dec '10
15 Dec '10
The branch, master has been updated
via a4fc99ec089e535bbb839e1527065ae372d91526 (commit)
via a00ed5fb4c3361a4a556ea95bae8ec73af75ed0b (commit)
via 75ca941fbaa43beaa0c2a283267fe37dec6b0049 (commit)
via 68937a3c62161e39313f25a80757c43c1b9263ed (commit)
via 5bff6f9fe89a8fdb539c60a744eb25d2d5b0ea53 (commit)
via ec81c35507585c34f90b8a5e38b2118d45529ae4 (commit)
via 08fa8305b23594b4cae5d661c2901a963ae105b3 (commit)
via afd267c9e6937be90c77656a1c9c51b305a3da24 (commit)
via b2b2e50d495ef85ada5fc67376b9ce0484bb8fb9 (commit)
via 76306e3c23d40c7716582c49a00e53345e1e3d01 (commit)
via 0ca9ad6e3fd2b0a630baf4e34afa1493cbcdf011 (commit)
via c8eb95d9052547ece2b3d5a361e9bc18e3dbc4b1 (commit)
via f7955fbbeb067e94862fa983d7f46a9b5283c37b (commit)
via fd2a4169ba58acc10c2d91674589fc637ea8baec (commit)
via a974ce6baa738a940f9cbfbd2f1c25711fc17997 (commit)
from 55c2dcb6648ffa78f698a4cca453662ba6a14189 (commit)
- Log -----------------------------------------------------------------
commit a4fc99ec089e535bbb839e1527065ae372d91526
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 01:52:14 2010 +0200
Translation update done using Pootle.
commit a00ed5fb4c3361a4a556ea95bae8ec73af75ed0b
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 01:51:07 2010 +0200
Translation update done using Pootle.
commit 75ca941fbaa43beaa0c2a283267fe37dec6b0049
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 01:50:15 2010 +0200
Translation update done using Pootle.
commit 68937a3c62161e39313f25a80757c43c1b9263ed
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 01:49:42 2010 +0200
Translation update done using Pootle.
commit 5bff6f9fe89a8fdb539c60a744eb25d2d5b0ea53
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 01:38:12 2010 +0200
Translation update done using Pootle.
commit ec81c35507585c34f90b8a5e38b2118d45529ae4
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 01:36:51 2010 +0200
Translation update done using Pootle.
commit 08fa8305b23594b4cae5d661c2901a963ae105b3
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 01:36:00 2010 +0200
Translation update done using Pootle.
commit afd267c9e6937be90c77656a1c9c51b305a3da24
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 01:35:17 2010 +0200
Translation update done using Pootle.
commit b2b2e50d495ef85ada5fc67376b9ce0484bb8fb9
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 01:33:42 2010 +0200
Translation update done using Pootle.
commit 76306e3c23d40c7716582c49a00e53345e1e3d01
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 01:29:18 2010 +0200
Translation update done using Pootle.
commit 0ca9ad6e3fd2b0a630baf4e34afa1493cbcdf011
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 01:29:00 2010 +0200
Translation update done using Pootle.
commit c8eb95d9052547ece2b3d5a361e9bc18e3dbc4b1
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 01:28:35 2010 +0200
Translation update done using Pootle.
commit f7955fbbeb067e94862fa983d7f46a9b5283c37b
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 01:28:16 2010 +0200
Translation update done using Pootle.
commit fd2a4169ba58acc10c2d91674589fc637ea8baec
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 01:21:41 2010 +0200
Translation update done using Pootle.
commit a974ce6baa738a940f9cbfbd2f1c25711fc17997
Author: Olexiy Zagorskyi <zalex_ua(a)i.ua>
Date: Wed Dec 15 01:20:46 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/uk.po | 125 ++++++++++++--------------------------------------------------
1 files changed, 24 insertions(+), 101 deletions(-)
diff --git a/po/uk.po b/po/uk.po
index 75ed42b..86a8683 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-12-14 11:27-0500\n"
-"PO-Revision-Date: 2010-07-27 23:41+0200\n"
+"PO-Revision-Date: 2010-12-15 01:52+0200\n"
"Last-Translator: Olexiy Zagorskyi <zalex_ua(a)i.ua>\n"
"Language-Team: ukrainian <uk(a)li.org>\n"
+"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: uk\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Pootle 2.0.1\n"
+"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:36 browse_foreigners.php:57
#: libraries/display_tbl.lib.php:415 server_privileges.php:1594
@@ -457,7 +457,7 @@ msgstr "Вставити"
#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
msgid "And"
-msgstr "І"
+msgstr "Та"
#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
msgid "Del"
@@ -1885,8 +1885,8 @@ msgid ""
"semicolon is missing somewhere.<br />If you receive a blank page, everything "
"is fine."
msgstr ""
-"phpMyAdmin не може прочитати конфігураційний файл <br />Це може статися у "
-"тому випадку, коли php натрапить на синтаксичну помилку (parse error) у "
+"phpMyAdmin не може прочитати ваш конфігураційний файл <br />Це може статися "
+"у тому випадку, коли php натрапить на синтаксичну помилку (parse error) у "
"ньому, або не може знайти самого файлу.<br />Завантажте конфігураційний файл "
"безпосередньо за допомогою посилання поданого нижче і прочитайте отримані "
"повідомлення про помилки (php error messages). Найчастіше десь у файлі "
@@ -2019,7 +2019,7 @@ msgstr "Час"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
#: libraries/common.lib.php:1362
msgid "B"
-msgstr "Байт"
+msgstr "Б"
#: libraries/common.lib.php:1362
msgid "KiB"
@@ -4490,10 +4490,10 @@ msgid "Output:"
msgstr ""
#: libraries/display_export.lib.php:188 libraries/display_export.lib.php:214
-#, fuzzy, php-format
+#, php-format
#| msgid "Save on server in %s directory"
msgid "Save on server in the directory <b>%s</b>"
-msgstr "Зберегти на сервері в каталогу %s "
+msgstr "Зберегти на сервері в каталозі <b>%s</b>"
#: libraries/display_export.lib.php:206
#, fuzzy
@@ -6397,9 +6397,9 @@ msgid ""
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
"Для типів поля \"enum\" або \"set\", введіть значення в такому форматі: "
-"'a','b','c'...<br />Якщо вам буде потрібно ввести зворотню косу риску (\"\\"
-"\") або поодинокі лапки (\"'\") посеред цих значень, поставте перед ними "
-"зворотню косу риску (наприклад, '\\\\xyz' чи 'a\\'b')."
+"'a','b','c'...<br />Якщо вам буде потрібно ввести зворотню косу риску (\"\\\") "
+"або поодинокі лапки (\"'\") посеред цих значень, поставте перед ними зворотню "
+"косу риску (наприклад, '\\\\xyz' чи 'a\\'b')."
#: libraries/tbl_properties.inc.php:105
msgid ""
@@ -6429,10 +6429,10 @@ msgid ""
"quote (\"'\") amongst those values, precede it with a backslash (for example "
"'\\\\xyz' or 'a\\'b')."
msgstr ""
-"Введіть значення опцій перетворення у такому форматі: 'a', 100, b,'c'...<br /"
-">Якщо необхідно ввести зворотній слеш (\"\\\") чи поодинокі лапки (\"'\") у "
-"цих значеннях, поставте перед ними додатковий зворотній слеш (наприклад '\\"
-"\\xyz' чи 'a\\'b')."
+"Введіть значення опцій перетворення у такому форматі: 'a', 100, b,'c'...<br "
+"/>Якщо необхідно ввести зворотній слеш (\"\\\") чи поодинокі лапки (\"'\") у цих "
+"значеннях, поставте перед ними додатковий зворотній слеш (наприклад '\\\\xyz' "
+"чи 'a\\'b')."
#: libraries/tbl_properties.inc.php:371
msgid "ENUM or SET data too long?"
@@ -6459,7 +6459,8 @@ msgid ""
"No description is available for this transformation.<br />Please ask the "
"author what %s does."
msgstr ""
-"Немає опису для цього перетворення.<br />Прошу питатися автора, що робить %s."
+"Немає опису для цього перетворення.<br />Прошу питатися автора, що робить %"
+"s."
#: libraries/tbl_properties.inc.php:725 server_engines.php:56
#: tbl_operations.php:352
@@ -6569,7 +6570,6 @@ msgstr ""
"htmlspecialchars(). Це значить що поле передбачає містити справжній HTML."
#: libraries/transformations/text_plain__imagelink.inc.php:9
-#, fuzzy
#| msgid ""
#| "Displays an image and a link; the field contains the filename. The first "
#| "option is a URL prefix like \"http://www.example.com/\". The second and "
@@ -6579,11 +6579,11 @@ msgid ""
"option is a URL prefix like \"http://www.example.com/\". The second and "
"third options are the width and the height in pixels."
msgstr ""
-"Показує малюнок і лінк, поле містить назву файлу; перша опція - префікс, "
-"подібно до \"http://domain.com/\", друга - ширина в пікселах, третя - висота."
+"Показує посилання, поле містить назву файлу. Перша опція - префікс "
+"посилання, подібно до \"http://www.example.com/\". Друга опція - заголовок для "
+"посилання."
#: libraries/transformations/text_plain__link.inc.php:9
-#, fuzzy
#| msgid ""
#| "Displays a link; the field contains the filename. The first option is a "
#| "URL prefix like \"http://www.example.com/\". The second option is a title "
@@ -6593,8 +6593,9 @@ msgid ""
"prefix like \"http://www.example.com/\". The second option is a title for "
"the link."
msgstr ""
-"Показує лінк, поле містить назву файлу; перша опція - префікс, подібно до "
-"\"http://domain.com/\", друга опція - title для лінку."
+"Показує посилання, поле містить назву файлу. Перша опція - префікс "
+"посилання, подібно до \"http://www.example.com/\". Друга опція - заголовок для "
+"посилання."
#: libraries/transformations/text_plain__longToIpv4.inc.php:9
msgid ""
@@ -9648,81 +9649,3 @@ msgstr ""
#~ msgid "Disable Statistics"
#~ msgstr "Заборонити статистику"
-
-#, fuzzy
-#~| msgid "in query"
-#~ msgid "Hide query chart"
-#~ msgstr "по запиту"
-
-#, fuzzy
-#~| msgid "Displaying Column Comments"
-#~ msgid "Display table filter"
-#~ msgstr "Показувати коментарі стовпців"
-
-#~ msgid ""
-#~ "The additional features for working with linked tables have been "
-#~ "deactivated. To find out why click %shere%s."
-#~ msgstr ""
-#~ "Додаткова можливість роботи із залінкованими таблицями деактивована. Для "
-#~ "того, щоб довідатись чому, натисніть %sтут%s."
-
-#~ msgid "Execute bookmarked query"
-#~ msgstr "Виконати збережений запит"
-
-#~ msgid "No tables"
-#~ msgstr "Таблиць немає"
-
-#, fuzzy
-#~| msgid "CSV"
-#~ msgid "SVG"
-#~ msgstr "CSV дані"
-
-#, fuzzy
-#~| msgid ""
-#~| "Please enter the values for transformation options using this format: "
-#~| "'a', 100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or "
-#~| "a single quote (\"'\") amongst those values, precede it with a backslash "
-#~| "(for example '\\\\xyz' or 'a\\'b')."
-#~ msgid ""
-#~ "Enter each value in a separate field, enclosed in single quotes. If you "
-#~ "ever need to put a backslash (\"\\\") or a single quote (\"'\") amongst "
-#~ "those values, precede it with a backslash (for example '\\\\xyz' or 'a"
-#~ "\\'b')."
-#~ msgstr ""
-#~ "Введіть значення опцій перетворення у такому форматі: 'a', 100, b,'c'..."
-#~ "<br />Якщо необхідно ввести зворотній слеш (\"\\\") чи поодинокі лапки "
-#~ "(\"'\") у цих значеннях, поставте перед ними додатковий зворотній слеш "
-#~ "(наприклад '\\\\xyz' чи 'a\\'b')."
-
-#, fuzzy
-#~| msgid ""
-#~| "Please enter the values for transformation options using this format: "
-#~| "'a', 100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or "
-#~| "a single quote (\"'\") amongst those values, precede it with a backslash "
-#~| "(for example '\\\\xyz' or 'a\\'b')."
-#~ msgid ""
-#~ "Enter each value in a separate field. If you ever need to put a backslash "
-#~ "(\"\\\") or a single quote (\"'\") amongst those values, precede it with "
-#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
-#~ msgstr ""
-#~ "Введіть значення опцій перетворення у такому форматі: 'a', 100, b,'c'..."
-#~ "<br />Якщо необхідно ввести зворотній слеш (\"\\\") чи поодинокі лапки "
-#~ "(\"'\") у цих значеннях, поставте перед ними додатковий зворотній слеш "
-#~ "(наприклад '\\\\xyz' чи 'a\\'b')."
-
-#~ msgid "Edit PDF Pages"
-#~ msgstr "Редагувати PDF Сторінки"
-
-#~ msgid "Data Dictionary Format"
-#~ msgstr "Формат словника"
-
-#, fuzzy
-#~| msgid "Dump %s row(s) starting at record # %s"
-#~ msgid "Dump %s row(s) starting at row # %s"
-#~ msgstr "Зґенерувати дамп %s рядків починаючи з %s -го."
-
-#~ msgid "remember template"
-#~ msgstr "запам'ятати шаблон"
-
-#~ msgid "Add into comments"
-#~ msgstr "Додати коментар"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA1-788-g55c2dcb
by Marc Delisle 14 Dec '10
by Marc Delisle 14 Dec '10
14 Dec '10
The branch, master has been updated
via 55c2dcb6648ffa78f698a4cca453662ba6a14189 (commit)
from b3cab1566336557b81e277c27703a98a25c6ca18 (commit)
- Log -----------------------------------------------------------------
commit 55c2dcb6648ffa78f698a4cca453662ba6a14189
Author: Marc Delisle <marc(a)infomarc.info>
Date: Tue Dec 14 12:30:40 2010 -0500
bug #3137351 User preferences and hide_db
-----------------------------------------------------------------------
Summary of changes:
libraries/config/validate.lib.php | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/libraries/config/validate.lib.php b/libraries/config/validate.lib.php
index 59df2b8..60aa33b 100644
--- a/libraries/config/validate.lib.php
+++ b/libraries/config/validate.lib.php
@@ -307,7 +307,9 @@ function validate_regex($path, $values)
test_php_errormsg();
$matches = array();
- preg_match($values[$path], '', $matches);
+ // in libraries/List_Database.class.php _checkHideDatabase(),
+ // a '/' is used as the delimiter for hide_db
+ preg_match('/' . $values[$path] . '/', '', $matches);
test_php_errormsg(false);
@@ -457,4 +459,4 @@ function validate_upper_bound($path, $values, $max_value)
$result = $values[$path] <= $max_value;
return array($path => ($result ? '' : sprintf(__('Value must be equal or lower than %s'), $max_value)));
}
-?>
\ No newline at end of file
+?>
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA1-787-gb3cab15
by Marc Delisle 14 Dec '10
by Marc Delisle 14 Dec '10
14 Dec '10
The branch, master has been updated
via b3cab1566336557b81e277c27703a98a25c6ca18 (commit)
from 7c414e8126e43eb01a95aa9fc0cd622fa1c575d7 (commit)
- Log -----------------------------------------------------------------
commit b3cab1566336557b81e277c27703a98a25c6ca18
Author: Marc Delisle <marc(a)infomarc.info>
Date: Tue Dec 14 11:27:49 2010 -0500
Refresh po files
-----------------------------------------------------------------------
Summary of changes:
po/af.po | 57 ++++--
po/ar.po | 59 ++++--
po/az.po | 59 ++++--
po/be.po | 64 ++++--
po/be(a)latin.po | 64 ++++--
po/bg.po | 61 ++++--
po/bn.po | 61 ++++--
po/bs.po | 59 ++++--
po/ca.po | 589 +++++++++++-----------------------------------------
po/cs.po | 64 ++++--
po/cy.po | 59 ++++--
po/da.po | 64 ++++--
po/de.po | 64 ++++--
po/el.po | 78 +++++---
po/en_GB.po | 64 ++++--
po/es.po | 64 ++++--
po/et.po | 64 ++++--
po/eu.po | 59 ++++--
po/fa.po | 57 ++++--
po/fi.po | 64 ++++--
po/fr.po | 66 +++++--
po/gl.po | 64 ++++--
po/he.po | 61 ++++--
po/hi.po | 57 ++++--
po/hr.po | 64 ++++--
po/hu.po | 64 ++++--
po/id.po | 61 ++++--
po/it.po | 64 ++++--
po/ja.po | 64 ++++--
po/ka.po | 64 ++++--
po/ko.po | 59 ++++--
po/lt.po | 64 ++++--
po/lv.po | 61 ++++--
po/mk.po | 61 ++++--
po/mn.po | 64 ++++--
po/ms.po | 57 ++++--
po/nb.po | 64 ++++--
po/nl.po | 66 +++++--
po/phpmyadmin.pot | 51 +++--
po/pl.po | 64 ++++--
po/pt.po | 59 ++++--
po/pt_BR.po | 64 ++++--
po/ro.po | 64 ++++--
po/ru.po | 64 ++++--
po/si.po | 61 ++++--
po/sk.po | 61 ++++--
po/sl.po | 87 +++++----
po/sq.po | 61 ++++--
po/sr.po | 64 ++++--
po/sr(a)latin.po | 64 ++++--
po/sv.po | 64 ++++--
po/ta.po | 51 +++--
po/te.po | 59 ++++--
po/th.po | 61 ++++--
po/tr.po | 78 +++++---
po/tt.po | 61 ++++--
po/ug.po | 55 ++++--
po/uk.po | 59 ++++--
po/ur.po | 55 ++++--
po/uz.po | 64 ++++--
po/uz(a)latin.po | 64 ++++--
po/zh_CN.po | 64 ++++--
po/zh_TW.po | 61 ++++--
63 files changed, 2833 insertions(+), 1626 deletions(-)
diff --git a/po/af.po b/po/af.po
index 5a9c6db..be44462 100644
--- a/po/af.po
+++ b/po/af.po
@@ -1,9 +1,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-08 14:29-0500\n"
+"POT-Creation-Date: 2010-12-14 11:27-0500\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: afrikaans <af(a)li.org>\n"
@@ -60,7 +60,7 @@ msgstr "Soek"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380
#: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515
#: libraries/tbl_properties.inc.php:781 main.php:105 navigation.php:230
-#: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316
+#: pmd_pdf.php:124 prefs_manage.php:265 prefs_manage.php:316
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233
@@ -688,9 +688,9 @@ msgstr ""
#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56
#: libraries/display_tbl.lib.php:2090 libraries/display_tbl.lib.php:2224
#: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106
-#: prefs_manage.php:288 server_privileges.php:1371
-#: setup/frames/menu.inc.php:21 tbl_row_action.php:58
+#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
+#: server_privileges.php:1371 setup/frames/menu.inc.php:21
+#: tbl_row_action.php:58
msgid "Export"
msgstr "Export"
@@ -2806,8 +2806,7 @@ msgstr ""
#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83
#: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231
-#: setup/frames/menu.inc.php:20
+#: prefs_manage.php:231 setup/frames/menu.inc.php:20
#, fuzzy
msgid "Import"
msgstr "Export"
@@ -6062,7 +6061,7 @@ msgstr "Kenmerke"
msgid "Extra"
msgstr "Ekstra"
-#: libraries/schema/User_Schema.class.php:93 pmd_pdf.php:111
+#: libraries/schema/User_Schema.class.php:93
msgid "Create a page"
msgstr "Skep 'n nuwe bladsy"
@@ -6824,7 +6823,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: pmd_general.php:116
+#: pmd_general.php:116 pmd_pdf.php:80
msgid "Import/Export coordinates for PDF schema"
msgstr ""
@@ -6914,25 +6913,47 @@ msgid ""
"appropriate column name."
msgstr ""
-#: pmd_pdf.php:60
+#: pmd_pdf.php:34
#, fuzzy
msgid "Page has been created"
msgstr "Tabel %s is verwyder"
-#: pmd_pdf.php:62
+#: pmd_pdf.php:37
msgid "Page creation failed"
msgstr ""
-#: pmd_pdf.php:82
-msgid "Export/Import to scale"
+#: pmd_pdf.php:89
+#, fuzzy
+#| msgid "Usage"
+msgid "Page"
+msgstr "Gebruik"
+
+#: pmd_pdf.php:99
+msgid "Import from selected page"
msgstr ""
-#: pmd_pdf.php:86
-msgid "recommended"
+#: pmd_pdf.php:100
+msgid "Export to selected page"
+msgstr ""
+
+#: pmd_pdf.php:102
+#, fuzzy
+#| msgid "Create a new index"
+msgid "Create a page and export to it"
+msgstr "Skep 'n nuwe indeks"
+
+#: pmd_pdf.php:111
+#, fuzzy
+#| msgid "User name"
+msgid "New page name: "
+msgstr "Gebruiker naam"
+
+#: pmd_pdf.php:114
+msgid "Export/Import to scale"
msgstr ""
-#: pmd_pdf.php:91
-msgid "to/from page"
+#: pmd_pdf.php:119
+msgid "recommended"
msgstr ""
#: pmd_relation_new.php:29
diff --git a/po/ar.po b/po/ar.po
index 7a0240d..d27dd58 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -1,9 +1,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-08 14:29-0500\n"
+"POT-Creation-Date: 2010-12-14 11:27-0500\n"
"PO-Revision-Date: 2010-05-29 14:16+0200\n"
"Last-Translator: Ahmed <aa.mahdawy.10(a)gmail.com>\n"
"Language-Team: arabic <ar(a)li.org>\n"
@@ -63,7 +63,7 @@ msgstr "ابحث"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380
#: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515
#: libraries/tbl_properties.inc.php:781 main.php:105 navigation.php:230
-#: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316
+#: pmd_pdf.php:124 prefs_manage.php:265 prefs_manage.php:316
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233
@@ -694,9 +694,9 @@ msgstr "تحقق من overhead"
#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56
#: libraries/display_tbl.lib.php:2090 libraries/display_tbl.lib.php:2224
#: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106
-#: prefs_manage.php:288 server_privileges.php:1371
-#: setup/frames/menu.inc.php:21 tbl_row_action.php:58
+#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
+#: server_privileges.php:1371 setup/frames/menu.inc.php:21
+#: tbl_row_action.php:58
msgid "Export"
msgstr "تصدير"
@@ -2829,8 +2829,7 @@ msgstr ""
#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83
#: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231
-#: setup/frames/menu.inc.php:20
+#: prefs_manage.php:231 setup/frames/menu.inc.php:20
msgid "Import"
msgstr "استورد"
@@ -6099,7 +6098,7 @@ msgstr "الخواص"
msgid "Extra"
msgstr "إضافي"
-#: libraries/schema/User_Schema.class.php:93 pmd_pdf.php:111
+#: libraries/schema/User_Schema.class.php:93
msgid "Create a page"
msgstr "أنشئ صفحة جديدة"
@@ -6911,7 +6910,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: pmd_general.php:116
+#: pmd_general.php:116 pmd_pdf.php:80
msgid "Import/Export coordinates for PDF schema"
msgstr ""
@@ -7002,24 +7001,48 @@ msgid ""
"appropriate column name."
msgstr ""
-#: pmd_pdf.php:60
+#: pmd_pdf.php:34
msgid "Page has been created"
msgstr ""
-#: pmd_pdf.php:62
+#: pmd_pdf.php:37
msgid "Page creation failed"
msgstr ""
-#: pmd_pdf.php:82
-msgid "Export/Import to scale"
+#: pmd_pdf.php:89
+#, fuzzy
+#| msgid "pages"
+msgid "Page"
+msgstr "صفحات"
+
+#: pmd_pdf.php:99
+#, fuzzy
+#| msgid "Import files"
+msgid "Import from selected page"
+msgstr "استورد الملفات"
+
+#: pmd_pdf.php:100
+msgid "Export to selected page"
msgstr ""
-#: pmd_pdf.php:86
-msgid "recommended"
+#: pmd_pdf.php:102
+#, fuzzy
+#| msgid "Create a new index"
+msgid "Create a page and export to it"
+msgstr "تصميم فهرسه جديده"
+
+#: pmd_pdf.php:111
+#, fuzzy
+#| msgid "User name"
+msgid "New page name: "
+msgstr "اسم المستخدم"
+
+#: pmd_pdf.php:114
+msgid "Export/Import to scale"
msgstr ""
-#: pmd_pdf.php:91
-msgid "to/from page"
+#: pmd_pdf.php:119
+msgid "recommended"
msgstr ""
#: pmd_relation_new.php:29
diff --git a/po/az.po b/po/az.po
index 395ae02..6a1f9dc 100644
--- a/po/az.po
+++ b/po/az.po
@@ -1,9 +1,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-08 14:29-0500\n"
+"POT-Creation-Date: 2010-12-14 11:27-0500\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az(a)li.org>\n"
@@ -59,7 +59,7 @@ msgstr "Axtarış"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380
#: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515
#: libraries/tbl_properties.inc.php:781 main.php:105 navigation.php:230
-#: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316
+#: pmd_pdf.php:124 prefs_manage.php:265 prefs_manage.php:316
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233
@@ -686,9 +686,9 @@ msgstr ""
#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56
#: libraries/display_tbl.lib.php:2090 libraries/display_tbl.lib.php:2224
#: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106
-#: prefs_manage.php:288 server_privileges.php:1371
-#: setup/frames/menu.inc.php:21 tbl_row_action.php:58
+#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
+#: server_privileges.php:1371 setup/frames/menu.inc.php:21
+#: tbl_row_action.php:58
msgid "Export"
msgstr "Eksport"
@@ -2837,8 +2837,7 @@ msgstr ""
#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83
#: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231
-#: setup/frames/menu.inc.php:20
+#: prefs_manage.php:231 setup/frames/menu.inc.php:20
#, fuzzy
msgid "Import"
msgstr "Eksport"
@@ -6140,7 +6139,7 @@ msgstr "Xüsusiyyetler"
msgid "Extra"
msgstr "Elave Xüs."
-#: libraries/schema/User_Schema.class.php:93 pmd_pdf.php:111
+#: libraries/schema/User_Schema.class.php:93
msgid "Create a page"
msgstr "Yeni Sehife qur"
@@ -6965,7 +6964,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: pmd_general.php:116
+#: pmd_general.php:116 pmd_pdf.php:80
msgid "Import/Export coordinates for PDF schema"
msgstr ""
@@ -7055,25 +7054,49 @@ msgid ""
"appropriate column name."
msgstr ""
-#: pmd_pdf.php:60
+#: pmd_pdf.php:34
#, fuzzy
msgid "Page has been created"
msgstr "%s cedveli leğv edildi"
-#: pmd_pdf.php:62
+#: pmd_pdf.php:37
msgid "Page creation failed"
msgstr ""
-#: pmd_pdf.php:82
-msgid "Export/Import to scale"
+#: pmd_pdf.php:89
+#, fuzzy
+#| msgid "Usage"
+msgid "Page"
+msgstr "Miqdar"
+
+#: pmd_pdf.php:99
+#, fuzzy
+#| msgid "Import files"
+msgid "Import from selected page"
+msgstr "Faylları import et"
+
+#: pmd_pdf.php:100
+msgid "Export to selected page"
msgstr ""
-#: pmd_pdf.php:86
-msgid "recommended"
+#: pmd_pdf.php:102
+#, fuzzy
+#| msgid "Create a new index"
+msgid "Create a page and export to it"
+msgstr "Yeni indeks qur"
+
+#: pmd_pdf.php:111
+#, fuzzy
+#| msgid "User name"
+msgid "New page name: "
+msgstr "İstifadeçi adı"
+
+#: pmd_pdf.php:114
+msgid "Export/Import to scale"
msgstr ""
-#: pmd_pdf.php:91
-msgid "to/from page"
+#: pmd_pdf.php:119
+msgid "recommended"
msgstr ""
#: pmd_relation_new.php:29
diff --git a/po/be.po b/po/be.po
index 08ea070..c63f44b 100644
--- a/po/be.po
+++ b/po/be.po
@@ -1,9 +1,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-08 14:29-0500\n"
+"POT-Creation-Date: 2010-12-14 11:27-0500\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic <be(a)li.org>\n"
@@ -62,7 +62,7 @@ msgstr "Пошук"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380
#: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515
#: libraries/tbl_properties.inc.php:781 main.php:105 navigation.php:230
-#: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316
+#: pmd_pdf.php:124 prefs_manage.php:265 prefs_manage.php:316
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233
@@ -690,9 +690,9 @@ msgstr "Адзначыць тыя, што патрабуюць аптыміза
#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56
#: libraries/display_tbl.lib.php:2090 libraries/display_tbl.lib.php:2224
#: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106
-#: prefs_manage.php:288 server_privileges.php:1371
-#: setup/frames/menu.inc.php:21 tbl_row_action.php:58
+#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
+#: server_privileges.php:1371 setup/frames/menu.inc.php:21
+#: tbl_row_action.php:58
msgid "Export"
msgstr "Экспарт"
@@ -2888,8 +2888,7 @@ msgstr ""
#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83
#: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231
-#: setup/frames/menu.inc.php:20
+#: prefs_manage.php:231 setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Імрарт"
@@ -6314,7 +6313,7 @@ msgstr "Атрыбуты"
msgid "Extra"
msgstr "Дадаткова"
-#: libraries/schema/User_Schema.class.php:93 pmd_pdf.php:111
+#: libraries/schema/User_Schema.class.php:93
msgid "Create a page"
msgstr "Стварыць новую старонку"
@@ -7190,7 +7189,7 @@ msgstr "Згарнуць/разгарнуць адлюстраваньне ўс
msgid "Toggle small/big"
msgstr "Пераключыць маленькі/вялікі"
-#: pmd_general.php:116
+#: pmd_general.php:116 pmd_pdf.php:80
msgid "Import/Export coordinates for PDF schema"
msgstr "Імпартаваць/Экспартаваць каардынаты табліц ў PDF-схему"
@@ -7289,27 +7288,53 @@ msgstr ""
"адлюстраваных палёў, націсьніце іконку «Выберыце поле для адлюстраваньня» і "
"націсьніце на адпаведнае імя поля."
-#: pmd_pdf.php:60
+#: pmd_pdf.php:34
#, fuzzy
msgid "Page has been created"
msgstr "Табліца %1$s створаная."
-#: pmd_pdf.php:62
+#: pmd_pdf.php:37
msgid "Page creation failed"
msgstr ""
-#: pmd_pdf.php:82
+#: pmd_pdf.php:89
+#, fuzzy
+#| msgid "pages"
+msgid "Page"
+msgstr "старонак"
+
+#: pmd_pdf.php:99
+#, fuzzy
+#| msgid "Import files"
+msgid "Import from selected page"
+msgstr "Імпартаваць файлы"
+
+#: pmd_pdf.php:100
+#, fuzzy
+#| msgid "Export/Import to scale"
+msgid "Export to selected page"
+msgstr "Маштаб"
+
+#: pmd_pdf.php:102
+#, fuzzy
+#| msgid "Create a new index"
+msgid "Create a page and export to it"
+msgstr "Стварыць новы індэкс"
+
+#: pmd_pdf.php:111
+#, fuzzy
+#| msgid "User name"
+msgid "New page name: "
+msgstr "Імя карыстальніка"
+
+#: pmd_pdf.php:114
msgid "Export/Import to scale"
msgstr "Маштаб"
-#: pmd_pdf.php:86
+#: pmd_pdf.php:119
msgid "recommended"
msgstr "рэкамэндаваны"
-#: pmd_pdf.php:91
-msgid "to/from page"
-msgstr "старонка"
-
#: pmd_relation_new.php:29
msgid "Error: relation already exists."
msgstr "Памылка: сувязь ужо існуе."
@@ -10102,6 +10127,9 @@ msgstr "Назва прагляду"
msgid "Rename view to"
msgstr "Перайменаваць табліцу ў"
+#~ msgid "to/from page"
+#~ msgstr "старонка"
+
#~ msgid "Disable Statistics"
#~ msgstr "Адключыць статыстыку"
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index 6ba4f22..b85f21d 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -1,9 +1,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-08 14:29-0500\n"
+"POT-Creation-Date: 2010-12-14 11:27-0500\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: belarusian_latin <be@latin@li.org>\n"
@@ -64,7 +64,7 @@ msgstr "Pošuk"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380
#: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515
#: libraries/tbl_properties.inc.php:781 main.php:105 navigation.php:230
-#: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316
+#: pmd_pdf.php:124 prefs_manage.php:265 prefs_manage.php:316
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233
@@ -696,9 +696,9 @@ msgstr "Adznačyć tyja, što patrabujuć aptymizacyi"
#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56
#: libraries/display_tbl.lib.php:2090 libraries/display_tbl.lib.php:2224
#: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106
-#: prefs_manage.php:288 server_privileges.php:1371
-#: setup/frames/menu.inc.php:21 tbl_row_action.php:58
+#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
+#: server_privileges.php:1371 setup/frames/menu.inc.php:21
+#: tbl_row_action.php:58
msgid "Export"
msgstr "Ekspart"
@@ -2883,8 +2883,7 @@ msgstr ""
#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83
#: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231
-#: setup/frames/menu.inc.php:20
+#: prefs_manage.php:231 setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Imrart"
@@ -6280,7 +6279,7 @@ msgstr "Atrybuty"
msgid "Extra"
msgstr "Dadatkova"
-#: libraries/schema/User_Schema.class.php:93 pmd_pdf.php:111
+#: libraries/schema/User_Schema.class.php:93
msgid "Create a page"
msgstr "Stvaryć novuju staronku"
@@ -7155,7 +7154,7 @@ msgstr "Zharnuć/razharnuć adlustravańnie ŭsich tablic"
msgid "Toggle small/big"
msgstr "Pieraklučyć maleńki/vialiki"
-#: pmd_general.php:116
+#: pmd_general.php:116 pmd_pdf.php:80
msgid "Import/Export coordinates for PDF schema"
msgstr "Impartavać/Ekspartavać kaardynaty tablic ŭ PDF-schiemu"
@@ -7255,26 +7254,52 @@ msgstr ""
"adlustravanych paloŭ, naciśnicie ikonku «Vybierycie pole dla adlustravańnia» "
"i naciśnicie na adpaviednaje imia pola."
-#: pmd_pdf.php:60
+#: pmd_pdf.php:34
msgid "Page has been created"
msgstr ""
-#: pmd_pdf.php:62
+#: pmd_pdf.php:37
msgid "Page creation failed"
msgstr ""
-#: pmd_pdf.php:82
+#: pmd_pdf.php:89
+#, fuzzy
+#| msgid "pages"
+msgid "Page"
+msgstr "staronak"
+
+#: pmd_pdf.php:99
+#, fuzzy
+#| msgid "Import files"
+msgid "Import from selected page"
+msgstr "Impartavać fajły"
+
+#: pmd_pdf.php:100
+#, fuzzy
+#| msgid "Export/Import to scale"
+msgid "Export to selected page"
+msgstr "Maštab"
+
+#: pmd_pdf.php:102
+#, fuzzy
+#| msgid "Create a new index"
+msgid "Create a page and export to it"
+msgstr "Stvaryć novy indeks"
+
+#: pmd_pdf.php:111
+#, fuzzy
+#| msgid "User name"
+msgid "New page name: "
+msgstr "Imia karystalnika"
+
+#: pmd_pdf.php:114
msgid "Export/Import to scale"
msgstr "Maštab"
-#: pmd_pdf.php:86
+#: pmd_pdf.php:119
msgid "recommended"
msgstr "rekamendavany"
-#: pmd_pdf.php:91
-msgid "to/from page"
-msgstr "staronka"
-
#: pmd_relation_new.php:29
msgid "Error: relation already exists."
msgstr "Pamyłka: suviaź užo isnuje."
@@ -10053,6 +10078,9 @@ msgstr "Nazva prahladu"
msgid "Rename view to"
msgstr ""
+#~ msgid "to/from page"
+#~ msgstr "staronka"
+
#~ msgid "Disable Statistics"
#~ msgstr "Adklučyć statystyku"
diff --git a/po/bg.po b/po/bg.po
index 4656ac1..5a5027f 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -1,9 +1,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-08 14:29-0500\n"
+"POT-Creation-Date: 2010-12-14 11:27-0500\n"
"PO-Revision-Date: 2010-06-11 17:28+0200\n"
"Last-Translator: <stanprog(a)stanprog.com>\n"
"Language-Team: bulgarian <bg(a)li.org>\n"
@@ -63,7 +63,7 @@ msgstr "Търсене"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380
#: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515
#: libraries/tbl_properties.inc.php:781 main.php:105 navigation.php:230
-#: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316
+#: pmd_pdf.php:124 prefs_manage.php:265 prefs_manage.php:316
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233
@@ -685,9 +685,9 @@ msgstr "Маркиране на таблиците със загубено мя
#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56
#: libraries/display_tbl.lib.php:2090 libraries/display_tbl.lib.php:2224
#: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106
-#: prefs_manage.php:288 server_privileges.php:1371
-#: setup/frames/menu.inc.php:21 tbl_row_action.php:58
+#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
+#: server_privileges.php:1371 setup/frames/menu.inc.php:21
+#: tbl_row_action.php:58
msgid "Export"
msgstr "Експортиране"
@@ -2855,8 +2855,7 @@ msgstr ""
#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83
#: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231
-#: setup/frames/menu.inc.php:20
+#: prefs_manage.php:231 setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Импортиране"
@@ -6183,7 +6182,7 @@ msgstr "Атрибути"
msgid "Extra"
msgstr "Допълнително"
-#: libraries/schema/User_Schema.class.php:93 pmd_pdf.php:111
+#: libraries/schema/User_Schema.class.php:93
msgid "Create a page"
msgstr "Създай нова Страница"
@@ -7025,7 +7024,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: pmd_general.php:116
+#: pmd_general.php:116 pmd_pdf.php:80
msgid "Import/Export coordinates for PDF schema"
msgstr ""
@@ -7117,27 +7116,53 @@ msgid ""
"appropriate column name."
msgstr ""
-#: pmd_pdf.php:60
+#: pmd_pdf.php:34
#, fuzzy
msgid "Page has been created"
msgstr "Таблицата %s беше изтрита"
-#: pmd_pdf.php:62
+#: pmd_pdf.php:37
msgid "Page creation failed"
msgstr ""
-#: pmd_pdf.php:82
+#: pmd_pdf.php:89
+#, fuzzy
+#| msgid "pages"
+msgid "Page"
+msgstr "страници"
+
+#: pmd_pdf.php:99
+#, fuzzy
+#| msgid "Import files"
+msgid "Import from selected page"
+msgstr "Импортиране на файлове"
+
+#: pmd_pdf.php:100
+#, fuzzy
+#| msgid "No rows selected"
+msgid "Export to selected page"
+msgstr "Няма върнати редове"
+
+#: pmd_pdf.php:102
+#, fuzzy
+#| msgid "Create a new index"
+msgid "Create a page and export to it"
+msgstr "Създай нов индекс"
+
+#: pmd_pdf.php:111
+#, fuzzy
+#| msgid "User name"
+msgid "New page name: "
+msgstr "Потребителско име"
+
+#: pmd_pdf.php:114
msgid "Export/Import to scale"
msgstr ""
-#: pmd_pdf.php:86
+#: pmd_pdf.php:119
msgid "recommended"
msgstr ""
-#: pmd_pdf.php:91
-msgid "to/from page"
-msgstr ""
-
#: pmd_relation_new.php:29
msgid "Error: relation already exists."
msgstr ""
diff --git a/po/bn.po b/po/bn.po
index d1777bb..15f09c2 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -1,9 +1,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-08 14:29-0500\n"
+"POT-Creation-Date: 2010-12-14 11:27-0500\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
"Last-Translator: Nobin নবীন <nobin(a)cyberbogra.com>\n"
"Language-Team: bangla <bn(a)li.org>\n"
@@ -63,7 +63,7 @@ msgstr "খুঁজুন"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380
#: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515
#: libraries/tbl_properties.inc.php:781 main.php:105 navigation.php:230
-#: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316
+#: pmd_pdf.php:124 prefs_manage.php:265 prefs_manage.php:316
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233
@@ -685,9 +685,9 @@ msgstr "ওভারহেড সহ টেবিল পরীক্ষা ক
#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56
#: libraries/display_tbl.lib.php:2090 libraries/display_tbl.lib.php:2224
#: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106
-#: prefs_manage.php:288 server_privileges.php:1371
-#: setup/frames/menu.inc.php:21 tbl_row_action.php:58
+#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
+#: server_privileges.php:1371 setup/frames/menu.inc.php:21
+#: tbl_row_action.php:58
msgid "Export"
msgstr "Export"
@@ -2865,8 +2865,7 @@ msgstr ""
#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83
#: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231
-#: setup/frames/menu.inc.php:20
+#: prefs_manage.php:231 setup/frames/menu.inc.php:20
msgid "Import"
msgstr "ইম্পোর্ট কর"
@@ -6239,7 +6238,7 @@ msgstr "Attributes"
msgid "Extra"
msgstr "অতিরিক্ত"
-#: libraries/schema/User_Schema.class.php:93 pmd_pdf.php:111
+#: libraries/schema/User_Schema.class.php:93
msgid "Create a page"
msgstr "একটি নতুন পাতা তৈরী কর"
@@ -7106,7 +7105,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: pmd_general.php:116
+#: pmd_general.php:116 pmd_pdf.php:80
msgid "Import/Export coordinates for PDF schema"
msgstr ""
@@ -7197,27 +7196,53 @@ msgid ""
"appropriate column name."
msgstr ""
-#: pmd_pdf.php:60
+#: pmd_pdf.php:34
#, fuzzy
msgid "Page has been created"
msgstr "Table %s has been dropped"
-#: pmd_pdf.php:62
+#: pmd_pdf.php:37
msgid "Page creation failed"
msgstr ""
-#: pmd_pdf.php:82
+#: pmd_pdf.php:89
+#, fuzzy
+#| msgid "pages"
+msgid "Page"
+msgstr "পাতাসমুহ"
+
+#: pmd_pdf.php:99
+#, fuzzy
+#| msgid "Import files"
+msgid "Import from selected page"
+msgstr "ফাইল ইম্পোর্ট কর"
+
+#: pmd_pdf.php:100
+#, fuzzy
+#| msgid "No rows selected"
+msgid "Export to selected page"
+msgstr "No rows selected"
+
+#: pmd_pdf.php:102
+#, fuzzy
+#| msgid "Create a new index"
+msgid "Create a page and export to it"
+msgstr "একটি নতুন ইন্ডেস্ক তৈরী কর"
+
+#: pmd_pdf.php:111
+#, fuzzy
+#| msgid "User name"
+msgid "New page name: "
+msgstr "ব্যাভারকারীর নাম"
+
+#: pmd_pdf.php:114
msgid "Export/Import to scale"
msgstr ""
-#: pmd_pdf.php:86
+#: pmd_pdf.php:119
msgid "recommended"
msgstr ""
-#: pmd_pdf.php:91
-msgid "to/from page"
-msgstr ""
-
#: pmd_relation_new.php:29
msgid "Error: relation already exists."
msgstr ""
diff --git a/po/bs.po b/po/bs.po
index 3ffe07e..2635984 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -1,9 +1,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-08 14:29-0500\n"
+"POT-Creation-Date: 2010-12-14 11:27-0500\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs(a)li.org>\n"
@@ -62,7 +62,7 @@ msgstr "Pretraživanje"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380
#: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515
#: libraries/tbl_properties.inc.php:781 main.php:105 navigation.php:230
-#: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316
+#: pmd_pdf.php:124 prefs_manage.php:265 prefs_manage.php:316
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233
@@ -688,9 +688,9 @@ msgstr ""
#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56
#: libraries/display_tbl.lib.php:2090 libraries/display_tbl.lib.php:2224
#: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106
-#: prefs_manage.php:288 server_privileges.php:1371
-#: setup/frames/menu.inc.php:21 tbl_row_action.php:58
+#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
+#: server_privileges.php:1371 setup/frames/menu.inc.php:21
+#: tbl_row_action.php:58
msgid "Export"
msgstr "Izvoz"
@@ -2833,8 +2833,7 @@ msgstr ""
#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83
#: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231
-#: setup/frames/menu.inc.php:20
+#: prefs_manage.php:231 setup/frames/menu.inc.php:20
#, fuzzy
msgid "Import"
msgstr "Izvoz"
@@ -6127,7 +6126,7 @@ msgstr "Atributi"
msgid "Extra"
msgstr "Dodatno"
-#: libraries/schema/User_Schema.class.php:93 pmd_pdf.php:111
+#: libraries/schema/User_Schema.class.php:93
msgid "Create a page"
msgstr "Napravi novu stranu"
@@ -6950,7 +6949,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: pmd_general.php:116
+#: pmd_general.php:116 pmd_pdf.php:80
msgid "Import/Export coordinates for PDF schema"
msgstr ""
@@ -7041,25 +7040,49 @@ msgid ""
"appropriate column name."
msgstr ""
-#: pmd_pdf.php:60
+#: pmd_pdf.php:34
#, fuzzy
msgid "Page has been created"
msgstr "Tabela %s je odbačena"
-#: pmd_pdf.php:62
+#: pmd_pdf.php:37
msgid "Page creation failed"
msgstr ""
-#: pmd_pdf.php:82
-msgid "Export/Import to scale"
+#: pmd_pdf.php:89
+#, fuzzy
+#| msgid "Usage"
+msgid "Page"
+msgstr "Zauzeće"
+
+#: pmd_pdf.php:99
+#, fuzzy
+#| msgid "Import files"
+msgid "Import from selected page"
+msgstr "Uvoz fajlova"
+
+#: pmd_pdf.php:100
+msgid "Export to selected page"
msgstr ""
-#: pmd_pdf.php:86
-msgid "recommended"
+#: pmd_pdf.php:102
+#, fuzzy
+#| msgid "Create a new index"
+msgid "Create a page and export to it"
+msgstr "Napravi novi ključ"
+
+#: pmd_pdf.php:111
+#, fuzzy
+#| msgid "User name"
+msgid "New page name: "
+msgstr "Ime korisnika"
+
+#: pmd_pdf.php:114
+msgid "Export/Import to scale"
msgstr ""
-#: pmd_pdf.php:91
-msgid "to/from page"
+#: pmd_pdf.php:119
+msgid "recommended"
msgstr ""
#: pmd_relation_new.php:29
diff --git a/po/ca.po b/po/ca.po
index daf1770..846386d 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1,16 +1,16 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-08 14:29-0500\n"
+"POT-Creation-Date: 2010-12-14 11:27-0500\n"
"PO-Revision-Date: 2010-12-14 11:33+0200\n"
"Last-Translator: Xavier Navarro <xvnavarro(a)gmail.com>\n"
"Language-Team: catalan <ca(a)li.org>\n"
-"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -63,7 +63,7 @@ msgstr "Cerca"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380
#: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515
#: libraries/tbl_properties.inc.php:781 main.php:105 navigation.php:230
-#: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316
+#: pmd_pdf.php:124 prefs_manage.php:265 prefs_manage.php:316
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233
@@ -547,7 +547,6 @@ msgstr "Esborra"
#: db_search.php:260
#, php-format
-#| msgid "Delete tracking data for this table"
msgid "Delete the matches for the %s table?"
msgstr "Esborrar les coincidències per a la taula %s?"
@@ -665,9 +664,9 @@ msgstr "Comprova taules desfragmentades"
#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56
#: libraries/display_tbl.lib.php:2090 libraries/display_tbl.lib.php:2224
#: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106
-#: prefs_manage.php:288 server_privileges.php:1371
-#: setup/frames/menu.inc.php:21 tbl_row_action.php:58
+#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
+#: server_privileges.php:1371 setup/frames/menu.inc.php:21
+#: tbl_row_action.php:58
msgid "Export"
msgstr "Exporta"
@@ -1221,7 +1220,6 @@ msgstr "Abr"
#. l10n: Short month name
#: js/messages.php:148 libraries/common.lib.php:1546
-#| msgid "May"
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
@@ -1262,17 +1260,14 @@ msgid "Dec"
msgstr "Des"
#: js/messages.php:165
-#| msgid "Sun"
msgid "Sunday"
msgstr "Diumenge"
#: js/messages.php:166
-#| msgid "Mon"
msgid "Monday"
msgstr "Dilluns"
#: js/messages.php:167
-#| msgid "Tue"
msgid "Tuesday"
msgstr "Dimarts"
@@ -1285,7 +1280,6 @@ msgid "Thursday"
msgstr "Dijous"
#: js/messages.php:170
-#| msgid "Fri"
msgid "Friday"
msgstr "Divendres"
@@ -1330,49 +1324,41 @@ msgstr "Dis"
#. l10n: Minimal week day name
#: js/messages.php:191
-#| msgid "Sun"
msgid "Su"
msgstr "Dg"
#. l10n: Minimal week day name
#: js/messages.php:193
-#| msgid "Mon"
msgid "Mo"
msgstr "Dl"
#. l10n: Minimal week day name
#: js/messages.php:195
-#| msgid "Tue"
msgid "Tu"
msgstr "Dm"
#. l10n: Minimal week day name
#: js/messages.php:197
-#| msgid "Wed"
msgid "We"
msgstr "Dc"
#. l10n: Minimal week day name
#: js/messages.php:199
-#| msgid "Thu"
msgid "Th"
msgstr "Dj"
#. l10n: Minimal week day name
#: js/messages.php:201
-#| msgid "Fri"
msgid "Fr"
msgstr "Dv"
#. l10n: Minimal week day name
#: js/messages.php:203
-#| msgid "Sat"
msgid "Sa"
msgstr "Ds"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:205
-#| msgid "Wiki"
msgid "Wk"
msgstr "Se"
@@ -1381,12 +1367,10 @@ msgid "Hour"
msgstr "Hora"
#: js/messages.php:208
-#| msgid "in use"
msgid "Minute"
msgstr "Minut"
#: js/messages.php:209
-#| msgid "per second"
msgid "Second"
msgstr "Segon"
@@ -1432,8 +1416,8 @@ msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-"Error movent l'arxiu pujat, consulta la "
-"[a@./Documentation.html#faq1_11@Documentation]PCF -FAQ- 1.11[/a]"
+"Error movent l'arxiu pujat, consulta la [a@./Documentation."
+"html#faq1_11@Documentation]PCF -FAQ- 1.11[/a]"
#: libraries/Index.class.php:427 tbl_relation.php:526
msgid "No index defined!"
@@ -1504,7 +1488,6 @@ msgstr "Error"
#: libraries/Message.class.php:281
#, php-format
-#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d fila afectada."
@@ -1512,7 +1495,6 @@ msgstr[1] "%1$d files afectades."
#: libraries/Message.class.php:300
#, php-format
-#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d fila esborrada."
@@ -1520,7 +1502,6 @@ msgstr[1] "%1$d files esborrades."
#: libraries/Message.class.php:319
#, php-format
-#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d fila inserida."
@@ -1715,7 +1696,6 @@ msgid "PBMS error"
msgstr "Error de PBMS"
#: libraries/blobstreaming.lib.php:267
-#| msgid "MySQL connection collation"
msgid "PBMS connection failed:"
msgstr "Error en la connexió PBMS:"
@@ -1779,17 +1759,14 @@ msgid "Overhead"
msgstr "Defragmentat"
#: libraries/build_html_for_db.lib.php:93
-#| msgid "Go to database"
msgid "Jump to database"
msgstr "Vés a la base de dades"
#: libraries/build_html_for_db.lib.php:130
-#| msgid "Master replication"
msgid "Not replicated"
msgstr "No replicat"
#: libraries/build_html_for_db.lib.php:136
-#| msgid "Replication"
msgid "Replicated"
msgstr "Replicat"
@@ -1803,7 +1780,6 @@ msgid "Check Privileges"
msgstr "Comprova els permisos"
#: libraries/chart.lib.php:40
-#| msgid "Show statistics"
msgid "Query statistics"
msgstr "Consulta d'estadístiques"
@@ -1812,7 +1788,6 @@ msgid "Query execution time comparison (in microseconds)"
msgstr "Comparació del temps d'execució de consultes (en microsegons)"
#: libraries/chart.lib.php:83
-#| msgid "Query results operations"
msgid "Query results"
msgstr "Resultats de consultes"
@@ -1848,7 +1823,6 @@ msgstr ""
#: libraries/common.inc.php:586
#, php-format
-#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "No es pot carregar la configuració per defecte des de: %1$s"
@@ -1862,7 +1836,6 @@ msgstr ""
#: libraries/common.inc.php:621
#, php-format
-#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Index de servidor invàlid: %s"
@@ -1923,7 +1896,6 @@ msgid "MySQL said: "
msgstr "MySQL diu: "
#: libraries/common.lib.php:1071
-#| msgid "Could not connect to MySQL server"
msgid "Failed to connect to SQL validator!"
msgstr "No es pot connectar al validador SQL!"
@@ -1961,7 +1933,6 @@ msgid "Inline edit of this query"
msgstr "Editar aquesta consulta en línia"
#: libraries/common.lib.php:1239
-#| msgid "Engines"
msgid "Inline"
msgstr "En línia"
@@ -2089,7 +2060,6 @@ msgstr "Navega al teu ordinador:"
#: libraries/common.lib.php:2963
#, php-format
-#| msgid "web server upload directory"
msgid "Select from the web server upload directory <b>%s</b>:"
msgstr ""
"Selecciona des del directori de pujada d'arxius del servidor web <b>%s</b>:"
@@ -2204,13 +2174,11 @@ msgid "SQL Validator is disabled"
msgstr "Validador SQL desactivat"
#: libraries/config/FormDisplay.class.php:764
-#| msgid "PHP extension to use"
msgid "SOAP extension not found"
msgstr "No s'ha trobat l'extensió SOAP"
#: libraries/config/FormDisplay.class.php:772
#, php-format
-#| msgid "Maximum tables"
msgid "maximum %s"
msgstr "màxim %s"
@@ -2269,8 +2237,8 @@ msgid ""
"cross-frame scripting attacks"
msgstr ""
"Activant aixó permet a una pàgina ubicada a un domini diferent cridar el "
-"phpMyADMIN dins d'un marc, i es un potencial [strong]forat de "
-"seguretat[/strong] que permet atacs del tipus cross-frame scripting"
+"phpMyADMIN dins d'un marc, i es un potencial [strong]forat de seguretat[/"
+"strong] que permet atacs del tipus cross-frame scripting"
#: libraries/config/messages.inc.php:20
msgid "Allow third party framing"
@@ -2285,8 +2253,8 @@ msgid ""
"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
"authentication"
msgstr ""
-"Frase de pas secreta usada per xifrar galetes en autenticació "
-"[kbd]cookie[/kbd]"
+"Frase de pas secreta usada per xifrar galetes en autenticació [kbd]cookie[/"
+"kbd]"
#: libraries/config/messages.inc.php:23
msgid "Blowfish secret"
@@ -2321,21 +2289,16 @@ msgid "Bzip2"
msgstr "Bzip2"
#: libraries/config/messages.inc.php:30
-#| msgid ""
-#| "Defines which type of editing controls should be used for CHAR and "
-#| "VARCHAR fields; [kbd]input[/kbd] - allows limiting of input length, [kbd]"
-#| "textarea[/kbd] - allows newlines in fields"
msgid ""
"Defines which type of editing controls should be used for CHAR and VARCHAR "
"columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/"
"kbd] - allows newlines in columns"
msgstr ""
"Defineix quin tipus de control d'edició es farà servir per a columnes CHAR i "
-"VARCHAR; [kbd]input[/kbd] - permet limitar el tamany de l'entrada, "
-"[kbd]textarea[/kbd] - permet varies línies dintre dels camps"
+"VARCHAR; [kbd]input[/kbd] - permet limitar el tamany de l'entrada, [kbd]"
+"textarea[/kbd] - permet varies línies dintre dels camps"
#: libraries/config/messages.inc.php:31
-#| msgid "CHAR fields editing"
msgid "CHAR columns editing"
msgstr "Edició de columnes CHAR"
@@ -2394,7 +2357,6 @@ msgid "Debug SQL"
msgstr "Depuració SQL"
#: libraries/config/messages.inc.php:43
-#| msgid "Databases display options"
msgid "Default display direction"
msgstr "Direcció de visualització per defecte"
@@ -2435,7 +2397,6 @@ msgid "Default table tab"
msgstr "Pestanya de taula predeterminada"
#: libraries/config/messages.inc.php:52
-#| msgid "Show binary contents as HEX"
msgid "Show binary contents as HEX by default"
msgstr "Mostra el contingut binari com HEX per defecte"
@@ -2464,17 +2425,14 @@ msgid "Edit SQL queries in popup window"
msgstr "Edita consultes SQL en finestra desplegable"
#: libraries/config/messages.inc.php:59
-#| msgid "Edit next row"
msgid "Edit in window"
msgstr "Edita en finestra"
#: libraries/config/messages.inc.php:60
-#| msgid "Display Features"
msgid "Display errors"
msgstr "Mostra els errors"
#: libraries/config/messages.inc.php:61
-#| msgid "Ignore errors"
msgid "Gather errors"
msgstr "Recopila errors"
@@ -2483,7 +2441,6 @@ msgid "Show icons for warning, error and information messages"
msgstr "Mostra icones per missatges d'avís, error i informació"
#: libraries/config/messages.inc.php:63
-#| msgid "Ignore errors"
msgid "Iconic errors"
msgstr "Icones d' errors"
@@ -2492,8 +2449,8 @@ msgid ""
"Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no "
"limit)"
msgstr ""
-"Estableix el temps en segons que es permet per executar ordres, "
-"([kbd]0[/kbd] per no posar límit)"
+"Estableix el temps en segons que es permet per executar ordres, ([kbd]0[/"
+"kbd] per no posar límit)"
#: libraries/config/messages.inc.php:65
msgid "Maximum execution time"
@@ -2525,21 +2482,18 @@ msgstr "Compresió"
#: libraries/export/latex.php:71 libraries/export/ods.php:24
#: libraries/export/odt.php:57 libraries/export/texytext.php:27
#: libraries/export/xls.php:24 libraries/export/xlsx.php:24
-#| msgid "Put fields names in the first row"
msgid "Put columns names in the first row"
msgstr "Posa els noms de columnes a la primera fila"
#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236
#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73
#: libraries/import/ldi.php:41
-#| msgid "Fields enclosed by"
msgid "Columns enclosed by"
msgstr "Columnes englobades per"
#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237
#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77
#: libraries/import/ldi.php:42
-#| msgid "Fields escaped by"
msgid "Columns escaped by"
msgstr "Columnes amb marca d'escapada"
@@ -2552,14 +2506,12 @@ msgid "Replace NULL by"
msgstr "Canvía NULL per"
#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80
-#| msgid "Remove CRLF characters within fields"
msgid "Remove CRLF characters within columns"
msgstr "Treu caràcters CRLF de dins de les columnes"
#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240
#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61
#: libraries/import/ldi.php:40
-#| msgid "Lines terminated by"
msgid "Columns terminated by"
msgstr "Columnes acabades amb"
@@ -2569,7 +2521,6 @@ msgid "Lines terminated by"
msgstr "Línies acabades amb"
#: libraries/config/messages.inc.php:78
-#| msgid "Excel edition"
msgid "Excel edition"
msgstr "Edició per excel"
@@ -2590,7 +2541,6 @@ msgstr "Plantilla de nom de taula"
#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23
#: libraries/export/latex.php:39 libraries/export/odt.php:31
#: libraries/export/sql.php:77 libraries/export/texytext.php:22
-#| msgid "%s table(s)"
msgid "Dump table"
msgstr "Bolcat de taula"
@@ -2624,7 +2574,6 @@ msgid "Relations"
msgstr "Relacions"
#: libraries/config/messages.inc.php:101
-#| msgid "Export type"
msgid "Export method"
msgstr "Tipus d'exportació"
@@ -2642,7 +2591,6 @@ msgid "Remember file name template"
msgstr "Recorda la plantilla del nom d'arxiu"
#: libraries/config/messages.inc.php:116
-#| msgid "Enclose table and field names with backquotes"
msgid "Enclose table and column names with backquotes"
msgstr "Usa -backquotes- amb noms de taules i columnes"
@@ -2680,7 +2628,6 @@ msgid "Maximal length of created query"
msgstr "Tamany màxim de la consulta creada"
#: libraries/config/messages.inc.php:133
-#| msgid "Export tables"
msgid "Export type"
msgstr "Tipus d'exportació"
@@ -2689,7 +2636,6 @@ msgid "Enclose export in a transaction"
msgstr "Incloure exportació en la transacció"
#: libraries/config/messages.inc.php:135
-#| msgid "Export contents"
msgid "Export time in UTC"
msgstr "Exporta l'hora en UTC"
@@ -2734,7 +2680,6 @@ msgstr "Configura el mode de navegació"
#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182
#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212
#: libraries/config/messages.inc.php:224
-#| msgid "Customize default export options"
msgid "Customize default options"
msgstr "Configura les opcions predeterminades"
@@ -2776,7 +2721,6 @@ msgid "Features"
msgstr "Propietats"
#: libraries/config/messages.inc.php:163
-#| msgid "Generate"
msgid "General"
msgstr "General"
@@ -2786,8 +2730,7 @@ msgstr "Estableix algunes de les opcions més utilitzades"
#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83
#: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231
-#: setup/frames/menu.inc.php:20
+#: prefs_manage.php:231 setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Importa"
@@ -2806,8 +2749,7 @@ msgstr "Importar / exportar"
#: libraries/config/messages.inc.php:169
msgid "Set import and export directories and compression options"
msgstr ""
-"Configura els directoris d'importació i exportació i les opcions "
-"d'empaquetat"
+"Configura els directoris d'importació i exportació i les opcions d'empaquetat"
#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26
msgid "LaTeX"
@@ -2843,12 +2785,10 @@ msgid "Main frame"
msgstr "Marc principal"
#: libraries/config/messages.inc.php:181
-#| msgid "Microsoft Excel 2000"
msgid "Microsoft Office"
msgstr "Microsoft Office"
#: libraries/config/messages.inc.php:183
-#| msgid "Open Document Text"
msgid "Open Document"
msgstr "Open Document"
@@ -2861,7 +2801,6 @@ msgid "Settings that didn't fit enywhere else"
msgstr "Paràmetres que no encaixaven en cap altre lloc"
#: libraries/config/messages.inc.php:187
-#| msgid "Page number:"
msgid "Page titles"
msgstr "Títols de pàgina"
@@ -2871,9 +2810,9 @@ msgid ""
"html#cfg_TitleTable]documentation[/a] for magic strings that can be used to "
"get special values."
msgstr ""
-"Especifica el títol del navegador. Consulta "
-"[a(a)Documentation.html#cfg_TitleTable]la documentació[/a] per a cadenes "
-"màgiques que poden usar-se per obtenir valors especials."
+"Especifica el títol del navegador. Consulta [a@Documentation."
+"html#cfg_TitleTable]la documentació[/a] per a cadenes màgiques que poden "
+"usar-se per obtenir valors especials."
#: libraries/config/messages.inc.php:189
#: libraries/navigation_header.inc.php:83
@@ -2903,12 +2842,10 @@ msgid "Basic settings"
msgstr "Paràmetres bàsics"
#: libraries/config/messages.inc.php:194
-#| msgid "Authentication type"
msgid "Authentication"
msgstr "Autenticació"
#: libraries/config/messages.inc.php:195
-#| msgid "Authentication type"
msgid "Authentication settings"
msgstr "Paràmetres d'autenticació"
@@ -2929,15 +2866,10 @@ msgid "Enter server connection parameters"
msgstr "Entra els paràmetres de connexió al servidor"
#: libraries/config/messages.inc.php:199
-#| msgid "Configuration file"
msgid "Configuration storage"
msgstr "Infraestructura de taules enllaçades"
#: libraries/config/messages.inc.php:200
-#| msgid ""
-#| "Configure phpMyAdmin database to gain access to additional features, see "
-#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] "
-#| "in documentation"
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [a(a)Documentation.html#linked-tables]phpMyAdmin configuration "
@@ -2989,12 +2921,10 @@ msgid "Customize links shown in SQL Query boxes"
msgstr "Configura els enllaços mostrats a les caixes de consultes SQL"
#: libraries/config/messages.inc.php:214
-#| msgid "SQL queries"
msgid "SQL queries settings"
msgstr "Opcions de consultes SQL"
#: libraries/config/messages.inc.php:215
-#| msgid "SQL history"
msgid "SQL Validator"
msgstr "Validador SQL"
@@ -3028,12 +2958,10 @@ msgid "Choose how you want tabs to work"
msgstr "Tria cóm vols que treballin les pestanyes"
#: libraries/config/messages.inc.php:221
-#| msgid "Use text field"
msgid "Text fields"
msgstr "Camps de text"
#: libraries/config/messages.inc.php:222
-#| msgid "Customize export options"
msgid "Customize text input fields"
msgstr "Configurar camps d'entrada de text"
@@ -3042,7 +2970,6 @@ msgid "Texy! text"
msgstr "text Texy!"
#: libraries/config/messages.inc.php:225
-#| msgid "Warning"
msgid "Warnings"
msgstr "Avisos"
@@ -3128,17 +3055,14 @@ msgid "Do not import empty rows"
msgstr "No importis files buides"
#: libraries/config/messages.inc.php:251
-#| msgid "Import currencies ($5.00 to 5.00)"
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Importar monedes ($5.00 a 5.00)"
#: libraries/config/messages.inc.php:252
-#| msgid "Import percentages as proper decimals (12.00% to .12)"
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Importar percentatges amb els decimals adients (12.00% a .12)"
#: libraries/config/messages.inc.php:253
-#| msgid "Number of records (queries) to skip from start"
msgid "Number of queries to skip from start"
msgstr "Nombre de consultes a saltar des de l'inici"
@@ -3147,7 +3071,6 @@ msgid "Partial import: skip queries"
msgstr "Importació parcial: saltar consultes"
#: libraries/config/messages.inc.php:256
-#| msgid "Do not use AUTO_INCREMENT for zero values"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "No feu servir AUTO_INCREMENT per a valors zero"
@@ -3184,7 +3107,6 @@ msgid "Display servers selection"
msgstr "Mostra la tría de servidors"
#: libraries/config/messages.inc.php:267
-#| msgid "Maximum number of tables displayed in table list"
msgid "Minimum number of tables to display the table filter box"
msgstr "Mínim nombre de taules mostrades a la caixa de filtre de taules"
@@ -3265,7 +3187,6 @@ msgid "Light tabs"
msgstr "Pestanyes lleugeres"
#: libraries/config/messages.inc.php:285
-#| msgid "Maximum number of characters used when a SQL query is displayed"
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
@@ -3356,7 +3277,8 @@ msgstr "Els usuaris no poden establir un valor més gran"
#: libraries/config/messages.inc.php:301
msgid "Maximum number of databases displayed in left frame and database list"
-msgstr "Màxim nombre de bases de dades mostrades al marc esquerre i a la llista"
+msgstr ""
+"Màxim nombre de bases de dades mostrades al marc esquerre i a la llista"
#: libraries/config/messages.inc.php:302
msgid "Maximum databases"
@@ -3369,8 +3291,8 @@ msgid ""
"shown."
msgstr ""
"Nombre de files mostrades quan es navega mper un resultat. Si el resultat "
-"conté més files, es mostraran els enllaços "Anterior" i "
-""Següent"."
+"conté més files, es mostraran els enllaços "Anterior" i ""
+"Següent"."
#: libraries/config/messages.inc.php:304
msgid "Maximum number of rows to display"
@@ -3401,15 +3323,14 @@ msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-"El nombre d'octets que una ordre està autoritzada a reservar, ex. "
-"[kbd]32M[/kbd] ([kbd]0[/kbd] per no posar límit)"
+"El nombre d'octets que una ordre està autoritzada a reservar, ex. [kbd]32M[/"
+"kbd] ([kbd]0[/kbd] per no posar límit)"
#: libraries/config/messages.inc.php:311
msgid "Memory limit"
msgstr "Límit de memoria"
#: libraries/config/messages.inc.php:312
-#| msgid "Show/Hide left menu"
msgid "Show left delete link"
msgstr "Mostra l'enllaç esquerre d'esborrat"
@@ -3422,7 +3343,6 @@ msgid "Use natural order for sorting table and database names"
msgstr "Usa l'ordre natural per ordenar els noms de taules i bases de dades"
#: libraries/config/messages.inc.php:315
-#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Ordre natural"
@@ -3445,9 +3365,6 @@ msgid "GZip output buffering"
msgstr "Memòria cau de sortida per GZip"
#: libraries/config/messages.inc.php:320
-#| msgid ""
-#| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, "
-#| "DATETIME and TIMESTAMP, ascending order otherwise"
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -3486,19 +3403,14 @@ msgid "Iconic table operations"
msgstr "Icones d'operacions de taula"
#: libraries/config/messages.inc.php:328
-#| msgid "Disallow BLOB and BINARY fields from editing"
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Desactiva l'edició en columnes tipus BLOB i BINARY"
#: libraries/config/messages.inc.php:329
-#| msgid "Protect binary fields"
msgid "Protect binary columns"
msgstr "Protegeix les columnes de contingut binari"
#: libraries/config/messages.inc.php:330
-#| msgid ""
-#| "Enable if you want DB-based query history (requires pmadb). If disabled, "
-#| "this utilizes JS-routines to display query history (lost by window close)."
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -3534,17 +3446,14 @@ msgid "Query window height (in pixels)"
msgstr "Alçada de la finestra de consultes (en píxels)"
#: libraries/config/messages.inc.php:338
-#| msgid "Query window"
msgid "Query window height"
msgstr "Alçada de la finestra de consultes"
#: libraries/config/messages.inc.php:339
-#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Amplada de la finestra de consultes (en pixels)"
#: libraries/config/messages.inc.php:340
-#| msgid "Query window"
msgid "Query window width"
msgstr "Amplada de la finestra de consultes"
@@ -3563,7 +3472,6 @@ msgstr ""
"Repeteix les capçeleres cada X cel.les, [kbd]0[/kbd] desactiva la funció"
#: libraries/config/messages.inc.php:344
-#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Repeteix capçeleres"
@@ -3588,7 +3496,6 @@ msgid "Leave blank if not used"
msgstr "Deixa en blanc si no l'utilitzes"
#: libraries/config/messages.inc.php:351
-#| msgid "Host authentication order"
msgid "Host authorization order"
msgstr "Ordre d'autenticació del servidor"
@@ -3597,7 +3504,6 @@ msgid "Leave blank for defaults"
msgstr "Deixa en blanc per als predeterminats"
#: libraries/config/messages.inc.php:353
-#| msgid "Host authentication rules"
msgid "Host authorization rules"
msgstr "Regles d'autenticació del servidor"
@@ -3626,8 +3532,8 @@ msgid ""
"swekey.conf)"
msgstr ""
"El camí de l'arxiu de configuració per [a@http://swekey.com]autenticació per "
-"maquinari SweKey[/a] (no trobat al teu arrel de documents; es recomana a: "
-"/etc/swekey.conf)"
+"maquinari SweKey[/a] (no trobat al teu arrel de documents; es recomana a: /"
+"etc/swekey.conf)"
#: libraries/config/messages.inc.php:359
msgid "SweKey config file"
@@ -3646,9 +3552,8 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-"Deixa en blanc per desactivar les "
-"[a@http://wiki.phpmyadmin.net/pma/bookmark]consultes desades[/a], suggerit: "
-"[kbd]pma_bookmark[/kbd]"
+"Deixa en blanc per desactivar les [a@http://wiki.phpmyadmin.net/pma/bookmark]"
+"consultes desades[/a], suggerit: [kbd]pma_bookmark[/kbd]"
#: libraries/config/messages.inc.php:363
msgid "Bookmark table"
@@ -3781,9 +3686,6 @@ msgid "Connect without password"
msgstr "Connexió sense contrasenya"
#: libraries/config/messages.inc.php:390
-#| msgid ""
-#| "You can use MySQL wildcard characters (% and _), escape them if you want "
-#| "to use their literal instances, i.e. use 'my\\_db' and not 'my_db'"
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -3792,10 +3694,10 @@ msgid ""
"alphabetical order."
msgstr ""
"Pots usar els caràcters comodins de MySQL (% and _), escapal's si vols fer-"
-"los servir als teus texts, ex.: usa [kbd]'my\\_db'[/kbd] i no "
-"[kbd]'my_db'[/kbd]. Usant aquesta opció pots ordenar la llista de bases de "
-"dades, només entrant els seus noms en ordre i usant [kbd]*[/kbd] al final "
-"per mostrar la resta en ordre alfabètic."
+"los servir als teus texts, ex.: usa [kbd]'my\\_db'[/kbd] i no [kbd]'my_db'[/"
+"kbd]. Usant aquesta opció pots ordenar la llista de bases de dades, només "
+"entrant els seus noms en ordre i usant [kbd]*[/kbd] al final per mostrar la "
+"resta en ordre alfabètic."
#: libraries/config/messages.inc.php:391
msgid "Show only listed databases"
@@ -3832,7 +3734,6 @@ msgstr ""
"[kbd]phpmyadmin[/kbd]"
#: libraries/config/messages.inc.php:397
-#| msgid "database name"
msgid "Database name"
msgstr "Nom de base de dades"
@@ -3850,9 +3751,8 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-"Deixa en blanc per desactivar els "
-"[a@http://wiki.phpmyadmin.net/pma/relation]enllaços de relacions[/a], "
-"suggerit: [kbd]pma_relation[/kbd]"
+"Deixa en blanc per desactivar els [a@http://wiki.phpmyadmin.net/pma/relation]"
+"enllaços de relacions[/a], suggerit: [kbd]pma_relation[/kbd]"
#: libraries/config/messages.inc.php:401
msgid "Relation table"
@@ -3912,9 +3812,6 @@ msgid "PDF schema: table coordinates"
msgstr "Esquema PDF: taula de coordinades"
#: libraries/config/messages.inc.php:413
-#| msgid ""
-#| "Table to describe the display fields, leave blank for no support; "
-#| "suggested: [kbd]pma_table_info[/kbd]"
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -3923,7 +3820,6 @@ msgstr ""
"suggerit: [kbd]pma_table_info[/kbd]"
#: libraries/config/messages.inc.php:414
-#| msgid "Display fields table"
msgid "Display columns table"
msgstr "Taula de descripció de columnes"
@@ -3970,14 +3866,10 @@ msgstr ""
"versions."
#: libraries/config/messages.inc.php:422
-#| msgid "Statements"
msgid "Statements to track"
msgstr "Instruccions a seguir"
#: libraries/config/messages.inc.php:423
-#| msgid ""
-#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
-#| "[/kbd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -3986,7 +3878,6 @@ msgstr ""
"suggerit: [kbd]pma_tracking[/kbd]"
#: libraries/config/messages.inc.php:424
-#| msgid "SQL query history table"
msgid "SQL query tracking table"
msgstr "Taula de seguiment de consultes SQL"
@@ -3999,14 +3890,10 @@ msgstr ""
"automàticament."
#: libraries/config/messages.inc.php:426
-#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Crear versions automàticament"
#: libraries/config/messages.inc.php:427
-#| msgid ""
-#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
-#| "[/kbd]"
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_config[/kbd]"
@@ -4048,12 +3935,10 @@ msgid "Verbose name of this server"
msgstr "Nom explicatiu d'aquest servidor"
#: libraries/config/messages.inc.php:435
-#| msgid ""
-#| "Whether a user should be displayed a "show all (records)" button"
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-"Si a un usuari se l'hauria de mostrar el botó "mostrar totes (les "
-"files)""
+"Si a un usuari se l'hauria de mostrar el botó "mostrar totes (les files)"
+"""
#: libraries/config/messages.inc.php:436
msgid "Allow to display all the rows"
@@ -4086,7 +3971,6 @@ msgstr ""
"d'edició/inserció"
#: libraries/config/messages.inc.php:441
-#| msgid "Show open tables"
msgid "Show field types"
msgstr "Mostra tipus de camps"
@@ -4151,9 +4035,9 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
"Quan s'estableix aixó a [kbd]anidat[/kbd], el àlies del nom de la taula "
-"només es fa servir per a separar/anidar les taules segons la directiva "
-"$cfg['LeftFrameTableSeparator'], així només la carpeta s'anomena com "
-"l'àlies, el nom de la taula roman intacte"
+"només es fa servir per a separar/anidar les taules segons la directiva $cfg"
+"['LeftFrameTableSeparator'], així només la carpeta s'anomena com l'àlies, el "
+"nom de la taula roman intacte"
#: libraries/config/messages.inc.php:454
msgid "Display table comment instead of its name"
@@ -4205,8 +4089,8 @@ msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-"Si tens un nom d'usuari, especifíca'l aqui (per defecte és "
-"[kbd]anonymous[/kbd])"
+"Si tens un nom d'usuari, especifíca'l aqui (per defecte és [kbd]anonymous[/"
+"kbd])"
#: libraries/config/messages.inc.php:468 tbl_tracking.php:405
#: tbl_tracking.php:456
@@ -4242,7 +4126,6 @@ msgstr ""
"per a textareas de consultes SQL (*2) i per finestres de consultes (*1.25)"
#: libraries/config/messages.inc.php:474
-#| msgid "CHAR textarea columns"
msgid "Textarea columns"
msgstr "Columnes per a textareas"
@@ -4255,20 +4138,19 @@ msgstr ""
"textareas de consultes SQL (*2) i per finestres de consultes (*1.25)"
#: libraries/config/messages.inc.php:476
-#| msgid "CHAR textarea rows"
msgid "Textarea rows"
msgstr "Files per a textareas"
#: libraries/config/messages.inc.php:477
msgid "Title of browser window when a database is selected"
-msgstr "Títol de la finestra del navegador quan es selecciona una base de dades"
+msgstr ""
+"Títol de la finestra del navegador quan es selecciona una base de dades"
#: libraries/config/messages.inc.php:479
msgid "Title of browser window when nothing is selected"
msgstr "Títol de la finestra del navegador quan no hi ha res seleccionat"
#: libraries/config/messages.inc.php:480
-#| msgid "Default table tab"
msgid "Default title"
msgstr "Títol per defecte"
@@ -4355,22 +4237,18 @@ msgid "ZIP"
msgstr "ZIP"
#: libraries/config/setup.forms.php:41
-#| msgid "Host authentication order"
msgid "Config authentication"
msgstr "Autenticació per configuració"
#: libraries/config/setup.forms.php:45
-#| msgid "Host authentication order"
msgid "Cookie authentication"
msgstr "Autenticació per cookies"
#: libraries/config/setup.forms.php:48
-#| msgid "Host authentication order"
msgid "HTTP authentication"
msgstr "Autenticació HTTP"
#: libraries/config/setup.forms.php:51
-#| msgid "Host authentication order"
msgid "Signon authentication"
msgstr "autenticació Signon"
@@ -4407,7 +4285,6 @@ msgstr "Ràpid"
#: libraries/config/setup.forms.php:264
#: libraries/config/user_preferences.forms.php:167
-#| msgid "Custom color"
msgid "Custom"
msgstr "Usuari"
@@ -4515,8 +4392,8 @@ msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
msgstr ""
-"Pot ser aproximat. Veieu [a@./Documentation.html#faq3_11@Documentation]PCF "
-"-FAQ- 3.11[/a]"
+"Pot ser aproximat. Veieu [a@./Documentation.html#faq3_11@Documentation]PCF -"
+"FAQ- 3.11[/a]"
#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
@@ -4558,7 +4435,6 @@ msgid "Password Hashing"
msgstr "Contrasenya Hashing"
#: libraries/display_change_password.lib.php:65
-#| msgid "MySQL 4.0 compatible"
msgid "MySQL 4.0 compatible"
msgstr "Compatible amb MySQL 4.0"
@@ -4582,7 +4458,6 @@ msgid "Create table on database %s"
msgstr "Crear una taula nova a la base de dades %s"
#: libraries/display_create_table.lib.php:55
-#| msgid "Number of fields"
msgid "Number of columns"
msgstr "Nombre de columnes"
@@ -4592,59 +4467,48 @@ msgstr ""
"No es poden carregar les extensions d'exportació, comprova l'instal.lació!"
#: libraries/display_export.lib.php:87
-#| msgid "Allows locking tables for the current thread."
msgid "Exporting databases from the current server"
msgstr "Exportant bases de dades des del servidor actual"
#: libraries/display_export.lib.php:89
#, php-format
-#| msgid "Create table on database %s"
msgid "Exporting tables from \"%s\" database"
msgstr "Crear una taula nova a la base de dades \"%s\""
#: libraries/display_export.lib.php:91
#, php-format
-#| msgid "Create table on database %s"
msgid "Exporting rows from \"%s\" table"
msgstr "Crear una taula nova a la base de dades \"%s\""
#: libraries/display_export.lib.php:97
-#| msgid "Export type"
msgid "Export Method:"
msgstr "Tipus d'exportació:"
#: libraries/display_export.lib.php:113
-#| msgid "Quick - display only the minimal options to configure"
msgid "Quick - display only the minimal options"
msgstr "Ràpid - mostra només les opcions mínimes a configurar"
#: libraries/display_export.lib.php:129
-#| msgid "Custom - display all possible options to configure"
msgid "Custom - display all possible options"
msgstr "Usuari - mostra totes les opcions possibles"
#: libraries/display_export.lib.php:137
-#| msgid "Databases"
msgid "Database(s):"
msgstr "Base(s) de dades:"
#: libraries/display_export.lib.php:139
-#| msgid "Tables"
msgid "Table(s):"
msgstr "Taula(es):"
#: libraries/display_export.lib.php:149
-#| msgid "Rows"
msgid "Rows:"
msgstr "Files:"
#: libraries/display_export.lib.php:157
-#| msgid "Dump all rows"
msgid "Dump some row(s)"
msgstr "Bolca alguna(es) fila(es)"
#: libraries/display_export.lib.php:159
-#| msgid "Number of fields"
msgid "Number of rows:"
msgstr "Nombre de files:"
@@ -4662,17 +4526,14 @@ msgstr "Sortida:"
#: libraries/display_export.lib.php:188 libraries/display_export.lib.php:214
#, php-format
-#| msgid "Save on server in %s directory"
msgid "Save on server in the directory <b>%s</b>"
msgstr "Desa al servidor al directori <b>%s</b>"
#: libraries/display_export.lib.php:206
-#| msgid "Save as file"
msgid "Save output to a file"
msgstr "Desa la sortida com a arxiu"
#: libraries/display_export.lib.php:227
-#| msgid "File name template"
msgid "File name template:"
msgstr "Nom d'arxiu de plantilla:"
@@ -4690,18 +4551,14 @@ msgstr ", @TABLE@ serà el nom de la taula"
#: libraries/display_export.lib.php:237
#, php-format
-#| msgid ""
-#| "This value is interpreted using %1$sstrftime%2$s, so you can use time "
-#| "formatting strings. Additionally the following transformations will "
-#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les "
-"cadenes de formateig de temps. A més, es faran aquestes transformacions: %"
-"3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
+"cadenes de formateig de temps. A més, es faran aquestes transformacions: %3"
+"$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
"per a més detalls."
#: libraries/display_export.lib.php:275
@@ -4714,7 +4571,6 @@ msgid "Character set of the file:"
msgstr "Joc de caràcters de l'arxiu:"
#: libraries/display_export.lib.php:309
-#| msgid "Compression"
msgid "Compression:"
msgstr "Compressió:"
@@ -4725,33 +4581,27 @@ msgid "None"
msgstr "Res"
#: libraries/display_export.lib.php:313
-#| msgid "\"zipped\""
msgid "zipped"
msgstr "comprimit amb zip"
#: libraries/display_export.lib.php:315
-#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "comprimit amb gzip"
#: libraries/display_export.lib.php:317
-#| msgid "\"bzipped\""
msgid "bzipped"
msgstr "comprimit amb bzip"
#: libraries/display_export.lib.php:331 libraries/display_import.lib.php:244
#: libraries/export/codegen.php:37
-#| msgid "Format"
msgid "Format:"
msgstr "Format:"
#: libraries/display_export.lib.php:336
-#| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Opcions específiques del format:"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
-#| msgid "Recoding engine"
msgid "Encoding Conversion:"
msgstr "Conversió de codificació:"
@@ -4778,24 +4628,20 @@ msgstr ""
"càrrega no estàn disponibles."
#: libraries/display_import.lib.php:129
-#| msgid "Cannot log in to the MySQL server"
msgid "Importing into the current server"
msgstr "Important al servidor actual"
#: libraries/display_import.lib.php:131
#, php-format
-#| msgid "Go to database"
msgid "Importing into the database \"%s\""
msgstr "Important a la base de dades \"%s\""
#: libraries/display_import.lib.php:133
#, php-format
-#| msgid "Go to database"
msgid "Importing into the table \"%s\""
msgstr "Important a la taula \"%s\""
#: libraries/display_import.lib.php:139
-#| msgid "File to import"
msgid "File to Import:"
msgstr "Arxiu a importar:"
@@ -4817,7 +4663,6 @@ msgid "File uploads are not allowed on this server."
msgstr "No es permet pujar arxius en aquest servidor."
#: libraries/display_import.lib.php:208
-#| msgid "Partial import"
msgid "Partial Import:"
msgstr "Importació parcial:"
@@ -4830,10 +4675,6 @@ msgstr ""
"des de la posició %d."
#: libraries/display_import.lib.php:221
-#| msgid ""
-#| "Allow the interruption of an import in case the script detects it is "
-#| "close to the PHP timeout limit. This might be good way to import large "
-#| "files, however it can break transactions."
msgid ""
"Allow the interruption of an import in case the script detects it is close "
"to the PHP timeout limit. <i>(This might be good way to import large files, "
@@ -4844,7 +4685,6 @@ msgstr ""
"arxius grans, però pot trencar transaccions.)</i>"
#: libraries/display_import.lib.php:228
-#| msgid "Number of records (queries) to skip from start"
msgid "Number of rows to skip, starting from the first row:"
msgstr "Nombre de files a saltar, comptant des de la primera:"
@@ -4863,7 +4703,6 @@ msgid "%d is not valid row number."
msgstr "%d no és un num. vàlid de fila."
#: libraries/display_tbl.lib.php:308
-#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "fila(es) començant des de la fila #"
@@ -4907,12 +4746,10 @@ msgid "Options"
msgstr "Opcions"
#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568
-#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Textos parcials"
#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572
-#| msgid "Full Texts"
msgid "Full texts"
msgstr "Textos sencers"
@@ -4921,7 +4758,6 @@ msgid "Relational key"
msgstr "Clau relacional"
#: libraries/display_tbl.lib.php:586
-#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Columna relacional a mostrar"
@@ -4984,7 +4820,6 @@ msgid "Print view (with full texts)"
msgstr "Vista d'impresió (amb texts sencers)"
#: libraries/display_tbl.lib.php:2230 tbl_chart.php:81
-#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Mostra el gràfic"
@@ -5179,14 +5014,10 @@ msgstr ""
"mentre es creen índexs amb CREATE INDEX o ALTER TABLE."
#: libraries/engines/pbms.lib.php:30
-#| msgid "Garbage threshold"
msgid "Garbage Threshold"
msgstr "Llindar de les escombraries"
#: libraries/engines/pbms.lib.php:31
-#| msgid ""
-#| "The percentage of garbage in a data log file before it is compacted. This "
-#| "is a value between 1 and 99. The default is 50."
msgid "The percentage of garbage in a repository file before it is compacted."
msgstr ""
"El percentatge d'escombraries en un registre de dades abans de compactar."
@@ -5232,7 +5063,6 @@ msgstr ""
"registre a la base de dades."
#: libraries/engines/pbms.lib.php:50
-#| msgid "Log file threshold"
msgid "Temp Log Threshold"
msgstr "Llindar de l'arxiu de Registre -Log-"
@@ -5256,8 +5086,8 @@ msgid ""
"time the connection will be closed. The time-out is in milliseconds (1/1000)."
msgstr ""
"El tems excedit per a connexions inactives amb indicador keep-alive activat. "
-"Després d'aquest temps, es tancarà la connexió. El temps excedit s'indica "
-"en milisegons (1/1000)."
+"Després d'aquest temps, es tancarà la connexió. El temps excedit s'indica en "
+"milisegons (1/1000)."
#: libraries/engines/pbms.lib.php:60
msgid "Metadata Headers"
@@ -5424,22 +5254,18 @@ msgstr ""
"donarà el pròxim número més alt."
#: libraries/export/csv.php:21 libraries/import/csv.php:27
-#| msgid "Lines terminated by"
msgid "Columns separated with:"
msgstr "Columnes separades amb:"
#: libraries/export/csv.php:22 libraries/import/csv.php:28
-#| msgid "Fields enclosed by"
msgid "Columns enclosed with:"
msgstr "Columnes englobades per:"
#: libraries/export/csv.php:23 libraries/import/csv.php:29
-#| msgid "Fields escaped by"
msgid "Columns escaped with:"
msgstr "Columnes amb marca d'escapada:"
#: libraries/export/csv.php:24 libraries/import/csv.php:30
-#| msgid "Lines terminated by"
msgid "Lines terminated with:"
msgstr "Línies acabades amb:"
@@ -5447,24 +5273,20 @@ msgstr "Línies acabades amb:"
#: libraries/export/htmlword.php:28 libraries/export/latex.php:79
#: libraries/export/ods.php:23 libraries/export/odt.php:59
#: libraries/export/xls.php:23 libraries/export/xlsx.php:23
-#| msgid "Replace NULL by"
msgid "Replace NULL with:"
msgstr "Canvía NULL amb:"
#: libraries/export/csv.php:26 libraries/export/excel.php:23
-#| msgid "Remove CRLF characters within fields"
msgid "Remove carriage return/line feed characters within columns"
msgstr "Treu caràcters cr/lf dins de les columnes"
#: libraries/export/excel.php:32
-#| msgid "Excel edition"
msgid "Excel edition:"
msgstr "Edició per excel:"
#: libraries/export/htmlword.php:27 libraries/export/latex.php:69
#: libraries/export/odt.php:55 libraries/export/sql.php:132
#: libraries/export/texytext.php:25 libraries/export/xml.php:45
-#| msgid "Databases display options"
msgid "Data dump options"
msgstr "Opcions de bolcat de dades"
@@ -5479,7 +5301,6 @@ msgid "Table structure for table"
msgstr "Estructura de la taula"
#: libraries/export/latex.php:13
-#| msgid "Content of table __TABLE__"
msgid "Content of table @TABLE@"
msgstr "Contingut de la taula @TABLE@"
@@ -5488,35 +5309,29 @@ msgid "(continued)"
msgstr "(continua)"
#: libraries/export/latex.php:15
-#| msgid "Structure of table __TABLE__"
msgid "Structure of table @TABLE@"
msgstr "Estructura de la taula @TABLE@"
#: libraries/export/latex.php:47 libraries/export/odt.php:39
#: libraries/export/sql.php:87
-#| msgid "Transformation options"
msgid "Object creation options"
msgstr "Opcions de creació d'objectes"
#: libraries/export/latex.php:51 libraries/export/latex.php:75
-#| msgid "Table caption"
msgid "Table caption (continued)"
msgstr "Títol de taula (continuació)"
#: libraries/export/latex.php:56 libraries/export/odt.php:42
#: libraries/export/sql.php:40
-#| msgid "Disable foreign key checks"
msgid "Display foreign key relationships"
msgstr "Mostra les relacions de claus externes"
#: libraries/export/latex.php:59 libraries/export/odt.php:45
-#| msgid "Displaying Column Comments"
msgid "Display comments"
msgstr "Mostra comentaris"
#: libraries/export/latex.php:62 libraries/export/odt.php:48
#: libraries/export/sql.php:44
-#| msgid "Available MIME types"
msgid "Display MIME types"
msgstr "Mostra tipus MIME"
@@ -5559,7 +5374,6 @@ msgid "(Generates a report containing the data of a single table)"
msgstr "(Crea un llistat que conté les dades d'una sola taula)"
#: libraries/export/pdf.php:24
-#| msgid "Report title"
msgid "Report title:"
msgstr "Títol de llistat:"
@@ -5576,7 +5390,6 @@ msgstr ""
"versió de PHP, i versió del servidor)</i>"
#: libraries/export/sql.php:35
-#| msgid "Add custom comment into header (\\n splits lines)"
msgid "Additional custom header comment (\\n splits lines):"
msgstr ""
"Afegeix comentari personalitzat a la capçalera (\n"
@@ -5600,12 +5413,10 @@ msgstr ""
#: libraries/export/sql.php:72 libraries/export/sql.php:105
#: libraries/export/sql.php:107
#, php-format
-#| msgid "Statements"
msgid "Add %s statement"
msgstr "Afegir instrucció %s"
#: libraries/export/sql.php:91
-#| msgid "Statements"
msgid "Add statements:"
msgstr "Afegir instruccions:"
@@ -5739,7 +5550,6 @@ msgid "Object creation options (all are recommended)"
msgstr "Opcions de creació d'objectes (es recomanen totes)"
#: libraries/export/xml.php:40
-#| msgid "View"
msgid "Views"
msgstr "Vistes"
@@ -5807,8 +5617,8 @@ msgid ""
"The first line of the file contains the table column names <i>(if this is "
"unchecked, the first line will become part of the data)</i>"
msgstr ""
-"La primera línia de l'arxiu conté els noms de les columnes de la taula "
-"<i>(si no es marca això, la primera línia formarà part de les dades)</i>"
+"La primera línia de l'arxiu conté els noms de les columnes de la taula <i>"
+"(si no es marca això, la primera línia formarà part de les dades)</i>"
#: libraries/import/csv.php:39
msgid ""
@@ -5821,7 +5631,6 @@ msgstr ""
"de separar amb comes i no poden estar inclosos entre cometes."
#: libraries/import/csv.php:41
-#| msgid "Column names"
msgid "Column names: "
msgstr "Nom de les columnes:"
@@ -5848,7 +5657,6 @@ msgstr "Format incorrecte a l'entrada CSV a la línia %d."
#: libraries/import/csv.php:314
#, php-format
-#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
msgstr "Comptador de columnes incorrecte en l'entrada CSV a la línia %d."
@@ -5871,23 +5679,19 @@ msgid "This plugin does not support compressed imports!"
msgstr "Aquesta extensió no suporta importacions comprimides!"
#: libraries/import/ods.php:28
-#| msgid "Import percentages as proper decimals (12.00% to .12)"
msgid "Import percentages as proper decimals <i>(ex. 12.00% to .12)</i>"
msgstr ""
"Importar percentatges amb els decimals adients <i>(ex. 12.00% a .12)</i>"
#: libraries/import/ods.php:29
-#| msgid "Import currencies ($5.00 to 5.00)"
msgid "Import currencies <i>(ex. $5.00 to 5.00)</i>"
msgstr "Importar moneda <i>(ex. $5.00 a 5.00)</i>"
#: libraries/import/sql.php:32
-#| msgid "SQL compatibility mode"
msgid "SQL compatibility mode:"
msgstr "Modus de compatibilitat SQL:"
#: libraries/import/sql.php:42
-#| msgid "Do not use AUTO_INCREMENT for zero values"
msgid "Do not use <code>AUTO_INCREMENT</code> for zero values"
msgstr "No feu servir <code>AUTO_INCREMENT</code> per a valors zero"
@@ -5900,7 +5704,6 @@ msgstr ""
"lo i torna a intentar-ho."
#: libraries/kanji-encoding.lib.php:142
-#| msgid "None"
msgctxt "None encoding conversion"
msgid "None"
msgstr "Cap"
@@ -6138,7 +5941,6 @@ msgid "Log out"
msgstr "Surt"
#: libraries/plugin_interface.lib.php:336
-#| msgid "This format has no options"
msgid "This format has no options"
msgstr "Aquest format no té opcions"
@@ -6205,8 +6007,8 @@ msgid ""
"code>), for example by starting from <code>config.sample.inc.php</code>."
msgstr ""
"Activa les característiques avançades a l'arxiu de configuració "
-"(<code>config.inc.php</code>), partint, per exemple, de l'arxiu "
-"<code>config.sample.inc.php</code>."
+"(<code>config.inc.php</code>), partint, per exemple, de l'arxiu <code>config."
+"sample.inc.php</code>."
#: libraries/relation.lib.php:150
msgid "Re-login to phpMyAdmin to load the updated configuration file."
@@ -6231,8 +6033,7 @@ msgid ""
"not, please add the following line into [mysqld] section:"
msgstr ""
"Assegura't que tens un identificador únic de servidor en el teu arxiu de "
-"configuració (my.cnf). Si no, afegeix la línia següent a la secció [mysqld] "
-":"
+"configuració (my.cnf). Si no, afegeix la línia següent a la secció [mysqld] :"
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
@@ -6323,7 +6124,6 @@ msgstr "Genera una Contrasenya"
#: libraries/schema/Svg_Relation_Schema.class.php:369
#: libraries/schema/Visio_Relation_Schema.class.php:213
#, php-format
-#| msgid "The \"%s\" table doesn't exist!"
msgid "The %s table doesn't exist!"
msgstr "La taula %s no existeix!"
@@ -6341,12 +6141,10 @@ msgstr "Configura les coordinades per la taula %s"
#: libraries/schema/Svg_Relation_Schema.class.php:737
#: libraries/schema/Visio_Relation_Schema.class.php:502
#, php-format
-#| msgid "Schema of the \"%s\" database - Page %s"
msgid "Schema of the %s database - Page %s"
msgstr "Esquema de la base de dades %s - Pàgina %s"
#: libraries/schema/Export_Relation_Schema.class.php:174
-#| msgid "File %s does not contain any key id"
msgid "This page does not contain any tables!"
msgstr "Aquesta pàgina no conté taules!"
@@ -6376,17 +6174,15 @@ msgstr "Atributs"
msgid "Extra"
msgstr "Extra"
-#: libraries/schema/User_Schema.class.php:93 pmd_pdf.php:111
+#: libraries/schema/User_Schema.class.php:93
msgid "Create a page"
msgstr "Crea una nova pàgina"
#: libraries/schema/User_Schema.class.php:99
-#| msgid "Page number:"
msgid "Page name"
msgstr "Nom de pàgina"
#: libraries/schema/User_Schema.class.php:103
-#| msgid "Automatic layout"
msgid "Automatic layout based on"
msgstr "Disseny automàtic basat en"
@@ -6403,7 +6199,6 @@ msgid "Please choose a page to edit"
msgstr "Tria una pàgina per editar"
#: libraries/schema/User_Schema.class.php:153
-#| msgid "Select All"
msgid "Select page"
msgstr "Selecciona la pàgina"
@@ -6412,7 +6207,6 @@ msgid "Select Tables"
msgstr "Tria Taules"
#: libraries/schema/User_Schema.class.php:346
-#| msgid "Relational schema"
msgid "Display relational schema"
msgstr "Mostra l'esquema relacional"
@@ -6449,7 +6243,6 @@ msgid "Portrait"
msgstr "Vertical"
#: libraries/schema/User_Schema.class.php:394
-#| msgid "Creation"
msgid "Orientation"
msgstr "Orientació"
@@ -6481,7 +6274,6 @@ msgid "Unknown language: %1$s."
msgstr "Idioma desconegut: %1$s."
#: libraries/select_server.lib.php:38 libraries/select_server.lib.php:44
-#| msgid "Current server"
msgid "Current Server"
msgstr "Servidor actual"
@@ -6513,7 +6305,6 @@ msgid "Synchronize"
msgstr "Sincronitza"
#: libraries/server_links.inc.php:99
-#| msgid "settings"
msgid "Settings"
msgstr "Configuració"
@@ -6550,7 +6341,6 @@ msgid "Run SQL query/queries on database %s"
msgstr "Executa consulta/s SQL a la Base de Dades %s"
#: libraries/sql_query_form.lib.php:297
-#| msgid "Column names"
msgid "Columns"
msgstr "Columnes"
@@ -6681,11 +6471,6 @@ msgid "Length/Values"
msgstr "Longitud/Valors*"
#: libraries/tbl_properties.inc.php:104
-#| msgid ""
-#| "If field type is \"enum\" or \"set\", please enter the values using this "
-#| "format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") "
-#| "or a single quote (\"'\") amongst those values, precede it with a "
-#| "backslash (for example '\\\\xyz' or 'a\\'b')."
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6694,8 +6479,8 @@ msgid ""
msgstr ""
"Si el tipus de camp és \"enum\" o \"set\", entra els valors fent servir el "
"format: 'a','b','c'...<br />Si mai necessites escriure la barra invertida "
-"(\"\\\") o la cometa simple (\"'\") abans d'aquests valors, escriu davant barres "
-"invertides (per exemple '\\\\xyz' o 'a\\'b')."
+"(\"\\\") o la cometa simple (\"'\") abans d'aquests valors, escriu davant "
+"barres invertides (per exemple '\\\\xyz' o 'a\\'b')."
#: libraries/tbl_properties.inc.php:105
msgid ""
@@ -6739,7 +6524,6 @@ msgid "Get more editing space"
msgstr "Obté més espai d'edició"
#: libraries/tbl_properties.inc.php:396
-#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Cap"
@@ -6768,12 +6552,10 @@ msgstr "Definició de PARTICIÓ"
#: libraries/tbl_properties.inc.php:779 tbl_structure.php:633
#, php-format
-#| msgid "Add column(s)"
msgid "Add %s column(s)"
msgstr "Afegeix %s columna(es)"
#: libraries/tbl_properties.inc.php:783 tbl_structure.php:627
-#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
msgstr "Has d'afegir al menys una columna."
@@ -6782,11 +6564,6 @@ msgid "Event"
msgstr "Esdevenivent"
#: libraries/transformations/application_octetstream__download.inc.php:9
-#| msgid ""
-#| "Displays a link to download the binary data of the field. You can use the "
-#| "first option to specify the filename, or use the second option as the "
-#| "name of a field which contains the filename. If you use the second "
-#| "option, you need to set the first option to the empty string."
msgid ""
"Displays a link to download the binary data of the column. You can use the "
"first option to specify the filename, or use the second option as the name "
@@ -6821,15 +6598,6 @@ msgid "Displays a link to download this image."
msgstr "Es mostra com a enllaç a la imatge."
#: libraries/transformations/text_plain__dateformat.inc.php:9
-#| msgid ""
-#| "Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as "
-#| "formatted date. The first option is the offset (in hours) which will be "
-#| "added to the timestamp (Default: 0). Use second option to specify a "
-#| "different date/time format string. Third option determines whether you "
-#| "want to see local date or UTC one (use \"local\" or \"utc\" strings) for "
-#| "that. According to that, date format has different value - for \"local\" "
-#| "see the documentation for PHP's strftime() function and for \"utc\" it is "
-#| "done using gmdate() function."
msgid ""
"Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp column as "
"formatted date. The first option is the offset (in hours) which will be "
@@ -6845,22 +6613,11 @@ msgstr ""
"a la marca de temps (Defecte: 0). Usa la segona opció per indicar un format "
"diferent de data/hora. La tercera opció determina si es vol visualitzar "
"l'hora local o UTC (usant els texts \"local\" o \"utc\") . Segons això, el "
-"format de data té diferent valor - per a \"local\" veieu la documentació de la "
-"funció strftime() de PHP i per a \"utc\" s'obté amb l'ús de la funció "
+"format de data té diferent valor - per a \"local\" veieu la documentació de "
+"la funció strftime() de PHP i per a \"utc\" s'obté amb l'ús de la funció "
"gmdate() ."
#: libraries/transformations/text_plain__external.inc.php:9
-#| msgid ""
-#| "LINUX ONLY: Launches an external application and feeds it the field data "
-#| "via standard input. Returns the standard output of the application. The "
-#| "default is Tidy, to pretty-print HTML code. For security reasons, you "
-#| "have to manually edit the file libraries/transformations/"
-#| "text_plain__external.inc.php and list the tools you want to make "
-#| "available. The first option is then the number of the program you want to "
-#| "use and the second option is the parameters for the program. The third "
-#| "option, if set to 1, will convert the output using htmlspecialchars() "
-#| "(Default 1). The fourth option, if set to 1, will prevent wrapping and "
-#| "ensure that the output appears all on one line (Default 1)."
msgid ""
"LINUX ONLY: Launches an external application and feeds it the column data "
"via standard input. Returns the standard output of the application. The "
@@ -6880,14 +6637,11 @@ msgstr ""
"afegir les eines que vulguis fer servir. La primera opció és, llavors, el "
"numero del programa que vols fer servir i la segona opció són els paràmetres "
"per el programa. El tercer paràmetre, si es posa a 1, convertirà la sortida "
-"fent servir htmlspecialchars() (El defecte és 1). El quart paràmetre, si "
-"val 1, posarà un NOWRAP al contingut de les cel.les de forma que la sortida "
+"fent servir htmlspecialchars() (El defecte és 1). El quart paràmetre, si val "
+"1, posarà un NOWRAP al contingut de les cel.les de forma que la sortida "
"sencera es mostrarà sense reformatejar (Per defecte 1)."
#: libraries/transformations/text_plain__formatted.inc.php:9
-#| msgid ""
-#| "Displays the contents of the field as-is, without running it through "
-#| "htmlspecialchars(). That is, the field is assumed to contain valid HTML."
msgid ""
"Displays the contents of the column as-is, without running it through "
"htmlspecialchars(). That is, the column is assumed to contain valid HTML."
@@ -6941,12 +6695,10 @@ msgstr ""
"ha truncament (Per defecte: \"...\")."
#: libraries/user_preferences.inc.php:32
-#| msgid "Other core settings"
msgid "Manage your settings"
msgstr "Gestiona els teus paràmetres"
#: libraries/user_preferences.inc.php:47 prefs_manage.php:291
-#| msgid "Modifications have been saved"
msgid "Configuration has been saved"
msgstr "S'a desat la configuració"
@@ -6961,7 +6713,6 @@ msgstr ""
"phpMyAdmin%s."
#: libraries/user_preferences.lib.php:141
-#| msgid "Cannot load or save configuration"
msgid "Could not save configuration"
msgstr "No es pot desar la configuració"
@@ -6983,7 +6734,6 @@ msgid "Error in ZIP archive:"
msgstr "Error en arxiu ZIP:"
#: main.php:67
-#| msgid "General relation features"
msgid "General Settings"
msgstr "Paràmetres Generals"
@@ -6992,7 +6742,6 @@ msgid "MySQL connection collation"
msgstr "Ordenació de la connexió MySQL"
#: main.php:115
-#| msgid "Other core settings"
msgid "Appearance Settings"
msgstr "Paràmetres d'aparença"
@@ -7005,7 +6754,6 @@ msgid "Choose..."
msgstr "Tria..."
#: main.php:153 prefs_manage.php:274
-#| msgid "settings"
msgid "More settings"
msgstr "Més paràmetres"
@@ -7091,11 +6839,10 @@ msgid ""
"validity configured in phpMyAdmin, because of this, your login will expire "
"sooner than configured in phpMyAdmin."
msgstr ""
-"El paràmetre de PHP "
-"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-"
-"maxlifetime(a)]session.gc_maxlifetime[/a] és menor que la caducitat de galetes "
-"-cookies- configurat a phpMyAdmin, degut a aixó, la vostra conenexió "
-"caducarà abans del establert a phpMyAdmin."
+"El paràmetre de PHP [a@http://php.net/manual/en/session.configuration."
+"php#ini.session.gc-maxlifetime(a)]session.gc_maxlifetime[/a] és menor que la "
+"caducitat de galetes -cookies- configurat a phpMyAdmin, degut a aixó, la "
+"vostra conenexió caducarà abans del establert a phpMyAdmin."
#: main.php:279
msgid ""
@@ -7124,9 +6871,6 @@ msgstr ""
#: main.php:304
#, php-format
-#| msgid ""
-#| "The additional features for working with linked tables have been "
-#| "deactivated. To find out why click %shere%s."
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
@@ -7176,7 +6920,6 @@ msgid "Filter"
msgstr "Filtre"
#: navigation.php:292
-#| msgid "Alter table order by"
msgid "filter tables by name"
msgstr "filtra les taules pel nom"
@@ -7185,7 +6928,6 @@ msgid "Clear"
msgstr "Neteja"
#: navigation.php:324 navigation.php:325
-#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Crea una taula"
@@ -7238,12 +6980,11 @@ msgstr "Tot Petit/Gran"
msgid "Toggle small/big"
msgstr "Canviar petit/gran"
-#: pmd_general.php:116
+#: pmd_general.php:116 pmd_pdf.php:80
msgid "Import/Export coordinates for PDF schema"
msgstr "Importa/Exporta coordenades per a esquema PDF"
#: pmd_general.php:122
-#| msgid "Submit Query"
msgid "Build Query"
msgstr "Construeix una consulta"
@@ -7268,19 +7009,16 @@ msgid "Delete relation"
msgstr "Esborra la relació"
#: pmd_general.php:462 pmd_general.php:521
-#| msgid "Relation deleted"
msgid "Relation operator"
msgstr "Operador de relació"
#: pmd_general.php:472 pmd_general.php:531 pmd_general.php:654
#: pmd_general.php:771
-#| msgid "Export"
msgid "Except"
msgstr "Excepte"
#: pmd_general.php:478 pmd_general.php:537 pmd_general.php:660
#: pmd_general.php:777
-#| msgid "in query"
msgid "subquery"
msgstr "subconsulta"
@@ -7289,12 +7027,10 @@ msgid "Rename to"
msgstr "Reanomena a"
#: pmd_general.php:484 pmd_general.php:583
-#| msgid "User name"
msgid "New name"
msgstr "Nou nom"
#: pmd_general.php:487 pmd_general.php:702
-#| msgid "Create"
msgid "Aggregate"
msgstr "Agrega"
@@ -7305,7 +7041,6 @@ msgid "Operator"
msgstr "Operador"
#: pmd_general.php:812
-#| msgid "Table options"
msgid "Active options"
msgstr "Opcions actives"
@@ -7314,39 +7049,61 @@ msgid "To select relation, click :"
msgstr "Per triar una relació, clica :"
#: pmd_help.php:28
-#| msgid ""
-#| "The display field is shown in pink. To set/unset a field as the display "
-#| "field, click the \"Choose field to display\" icon, then click on the "
-#| "appropriate field name."
msgid ""
"The display column is shown in pink. To set/unset a column as the display "
"column, click the \"Choose column to display\" icon, then click on the "
"appropriate column name."
msgstr ""
"La columna a visualitzar es mostra en rosa. Per establir/treure un camp com "
-"a camp de visualització, clica la icona \"Tria camp a visualitzar\" , i clica "
-"també en el nom de camp adient."
+"a camp de visualització, clica la icona \"Tria camp a visualitzar\" , i "
+"clica també en el nom de camp adient."
-#: pmd_pdf.php:60
+#: pmd_pdf.php:34
msgid "Page has been created"
msgstr "S'ha creat una pàgina"
-#: pmd_pdf.php:62
+#: pmd_pdf.php:37
msgid "Page creation failed"
msgstr "Ha fallat la creació de pàgina"
-#: pmd_pdf.php:82
+#: pmd_pdf.php:89
+#, fuzzy
+#| msgid "pages"
+msgid "Page"
+msgstr "pàgines"
+
+#: pmd_pdf.php:99
+#, fuzzy
+#| msgid "Import from file"
+msgid "Import from selected page"
+msgstr "Importar des de arxiu"
+
+#: pmd_pdf.php:100
+#, fuzzy
+#| msgid "Export/Import to scale"
+msgid "Export to selected page"
+msgstr "Exporta/Importa a escala"
+
+#: pmd_pdf.php:102
+#, fuzzy
+#| msgid "Create a new index"
+msgid "Create a page and export to it"
+msgstr "Crea un nou índex"
+
+#: pmd_pdf.php:111
+#, fuzzy
+#| msgid "New name"
+msgid "New page name: "
+msgstr "Nou nom"
+
+#: pmd_pdf.php:114
msgid "Export/Import to scale"
msgstr "Exporta/Importa a escala"
-#: pmd_pdf.php:86
+#: pmd_pdf.php:119
msgid "recommended"
msgstr "recomanat"
-#: pmd_pdf.php:91
-msgid "to/from page"
-msgstr "plana a/de"
-
#: pmd_relation_new.php:29
msgid "Error: relation already exists."
msgstr "Error: la relació ja existeix."
@@ -7376,12 +7133,10 @@ msgid "Modifications have been saved"
msgstr "Les modificacions han estat desades"
#: prefs_forms.php:78
-#| msgid "Submitted form contains errors"
msgid "Cannot save settings, submitted form contains errors"
msgstr "No es poden desar els paràmetres, el formulari enviat conté errors"
#: prefs_manage.php:80
-#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not import configuration"
msgstr "No es pot importar la configuració"
@@ -7398,7 +7153,6 @@ msgid "Saved on: @DATE@"
msgstr "Desat en: @DATE@"
#: prefs_manage.php:239
-#| msgid "Import files"
msgid "Import from file"
msgstr "Importar des de arxiu"
@@ -7412,7 +7166,6 @@ msgstr ""
"Els paràmetres s'importaran des del emmagatzemament local del teu navegador."
#: prefs_manage.php:254
-#| msgid "Other core settings"
msgid "You have no saved settings!"
msgstr "No has desat els paràmetres!"
@@ -7421,7 +7174,6 @@ msgid "This feature is not supported by your web browser"
msgstr "Aquesta característica no està suportada pel teu navegador"
#: prefs_manage.php:263
-#| msgid "Server configuration"
msgid "Merge with current configuration"
msgstr "Fusiona amb la configuració actual"
@@ -7464,7 +7216,6 @@ msgid "<b>%s</b> table not found or not set in %s"
msgstr "taula <b>%s</b> no trobada o no definida a %s"
#: schema_export.php:45
-#| msgid "The \"%s\" table doesn't exist!"
msgid "File doesn't exist"
msgstr "L'arxiu no existeix"
@@ -7746,7 +7497,6 @@ msgid "No privileges."
msgstr "Sense permisos."
#: server_privileges.php:303 server_privileges.php:304
-#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Cap"
@@ -7790,7 +7540,6 @@ msgid "Do not change the password"
msgstr "No canviïs la contrasenya"
#: server_privileges.php:836 server_privileges.php:2297
-#| msgid "No user(s) found."
msgid "No user found."
msgstr "No s'han trobat usuaris."
@@ -7948,7 +7697,6 @@ msgid "Database for user"
msgstr "Base de dades per usuari"
#: server_privileges.php:2129
-#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Cap"
@@ -8131,22 +7879,18 @@ msgid "Reset slave"
msgstr "Reinicia l'esclau"
#: server_replication.php:326
-#| msgid "SQL Thread %s only"
msgid "Start SQL Thread only"
msgstr "Inicia només el fil SQL"
#: server_replication.php:328
-#| msgid "SQL Thread %s only"
msgid "Stop SQL Thread only"
msgstr "Atura només el fil SQL"
#: server_replication.php:331
-#| msgid "IO Thread %s only"
msgid "Start IO Thread only"
msgstr "Inicia només el fil IO"
#: server_replication.php:333
-#| msgid "IO Thread %s only"
msgid "Stop IO Thread only"
msgstr "Atura només el fil IO"
@@ -8155,7 +7899,6 @@ msgid "Error management:"
msgstr "Gestió d'errors:"
#: server_replication.php:340
-#| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr ""
"Saltar errors podria donar lloc a falta de sincronització entre mestre i "
@@ -8205,8 +7948,8 @@ msgid ""
"based instead of disk-based."
msgstr ""
"El nombre de taules temporals en disc creades automàticament per el servidor "
-"mentre executa instruccions. Si Created_tmp_disk_tables és gran, potser "
-"vols incrementar el valor de tmp_table_size per fer que les taules temporals "
+"mentre executa instruccions. Si Created_tmp_disk_tables és gran, potser vols "
+"incrementar el valor de tmp_table_size per fer que les taules temporals "
"treballin en memòria en lloc de treballar en disc."
#: server_status.php:49
@@ -8897,7 +8640,6 @@ msgid "Show processes"
msgstr "Mostra els processos"
#: server_status.php:461
-#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Reinicialitza"
@@ -8908,7 +8650,6 @@ msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Aquest servidor MySQL és en marxa durant %s. Es va iniciar en %s."
#: server_status.php:477
-#| msgid "This server is configured as master in a replication process."
msgid ""
"This MySQL server works as <b>master</b> and <b>slave</b> in <b>replication</"
"b> process."
@@ -8917,24 +8658,18 @@ msgstr ""
"procés de <b>replicació</b> ."
#: server_status.php:479
-#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as <b>master</b> in <b>replication</b> process."
msgstr ""
"Aquest servidor MySQL treballa com a <b>mestre</b> en un procés de "
"<b>replicació</b> ."
#: server_status.php:481
-#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as <b>slave</b> in <b>replication</b> process."
msgstr ""
"Aquest servidor MySQL treballa com a <b>esclau</b> en un procés de "
"<b>replicació</b> ."
#: server_status.php:483
-#| msgid ""
-#| "This MySQL server works as %s in <b>replication</b> process. For further "
-#| "information about replication status on the server, please visit the <a "
-#| "href=\"#replication\">replication section</a>."
msgid ""
"For further information about replication status on the server, please visit "
"the <a href=#replication>replication section</a>."
@@ -9013,7 +8748,6 @@ msgid "Query type"
msgstr "Tipus de consulta"
#: server_status.php:710 server_status.php:711
-#| msgid "Show query box"
msgid "Show query chart"
msgstr "Mostrar gràfic de consultes"
@@ -9119,13 +8853,11 @@ msgid "Enter manually"
msgstr "Entrada manual"
#: server_synchronize.php:1121
-#| msgid "Insecure connection"
msgid "Current connection"
msgstr "Connexió actual"
#: server_synchronize.php:1150
#, php-format
-#| msgid "Configuration file"
msgid "Configuration: %s"
msgstr "Configuració: %s"
@@ -9162,20 +8894,15 @@ msgid "Cannot load or save configuration"
msgstr "No es pot carregar o desar la configuració"
#: setup/frames/index.inc.php:50
-#| msgid ""
-#| "Please create web server writable folder [em]config[/em] in phpMyAdmin "
-#| "top level directory as described in [a@../Documentation.html#setup_script]"
-#| "documentation[/a]. Otherwise you will be only able to download or display "
-#| "it."
msgid ""
"Please create web server writable folder [em]config[/em] in phpMyAdmin top "
"level directory as described in [a(a)Documentation.html#setup_script]"
"documentation[/a]. Otherwise you will be only able to download or display it."
msgstr ""
"Si us plau, crea una carpeta modificable pel servidor web [em]config[/em] al "
-"directori principal de phpMyAdmin tal com s'explica a la "
-"[a(a)Documentation.xn--html#setup_script]documentaci[/a-jed] En cas contrari només "
-"podràs descarregar o mostrar."
+"directori principal de phpMyAdmin tal com s'explica a la [a@Documentation."
+"html#setup_script]documentació[/a]. En cas contrari només podràs descarregar "
+"o mostrar."
#: setup/frames/index.inc.php:57
msgid ""
@@ -9318,15 +9045,12 @@ msgstr ""
#: setup/lib/index.lib.php:162
#, php-format
-#| msgid ""
-#| "You are using subversion version, run [kbd]svn update[/kbd] :-)[br]The "
-#| "latest stable version is %s, released on %s."
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-"Estàs utilitzant una versió del repositori Git, executa [kbd]git pull[/kbd] "
-":-)[br]La darrera versió estable és la %s, alliberada en %s."
+"Estàs utilitzant una versió del repositori Git, executa [kbd]git pull[/"
+"kbd] :-)[br]La darrera versió estable és la %s, alliberada en %s."
#: setup/lib/index.lib.php:165
msgid "No newer stable version is available"
@@ -9334,13 +9058,6 @@ msgstr "No hi ha disponible una versió estable més nova"
#: setup/lib/index.lib.php:250
#, php-format
-#| msgid ""
-#| "This [a@?page=form&formset=features#tab_Security]option[/a] should be "
-#| "disabled as it allows attackers to bruteforce login to any MySQL server. "
-#| "If you feel this is necessary, use [a@?page=form&"
-#| "formset=features#tab_Security]trusted proxies list[/a]. However, IP-based "
-#| "protection may not be reliable if your IP belongs to an ISP where "
-#| "thousands of users, including you, are connected to."
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
"login to any MySQL server. If you feel this is necessary, use %strusted "
@@ -9348,9 +9065,9 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
"Aquesta %soption%s s'ha de desactivar perquè permet atacs de força bruta per "
-"connectar-se a un servidor MySQL. Si creus que la necessites, usa %"
-"strusted proxies list%s. Tanmateix, una protecció basada en adreces IP pot "
-"no ser efectiva si la teva IP pertany a un proveïdor ISP amb gran quantitat "
+"connectar-se a un servidor MySQL. Si creus que la necessites, usa %strusted "
+"proxies list%s. Tanmateix, una protecció basada en adreces IP pot no ser "
+"efectiva si la teva IP pertany a un proveïdor ISP amb gran quantitat "
"d'usuaris connectats, inclós tu mateix."
#: setup/lib/index.lib.php:252
@@ -9365,10 +9082,6 @@ msgstr ""
#: setup/lib/index.lib.php:253
#, php-format
-#| msgid ""
-#| "[a@?page=form&formset=features#tab_Import_export]Bzip2 compression "
-#| "and decompression[/a] requires functions (%s) which are unavailable on "
-#| "this system."
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
@@ -9387,17 +9100,12 @@ msgstr ""
#: setup/lib/index.lib.php:256
#, php-format
-#| msgid "You should use SSL connections if your web server supports it"
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
"Aquesta %soption%s s'hauria d'activar si el teu servidor web ho suporta."
#: setup/lib/index.lib.php:258
#, php-format
-#| msgid ""
-#| "[a@?page=form&formset=features#tab_Import_export]GZip compression and "
-#| "decompression[/a] requires functions (%s) which are unavailable on this "
-#| "system."
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
@@ -9418,10 +9126,6 @@ msgstr ""
#: setup/lib/index.lib.php:262
#, php-format
-#| msgid ""
-#| "[a@?page=form&formset=features#tab_Security]Login cookie validity[/a] "
-#| "should be set to 1800 seconds (30 minutes) at most. Values larger than "
-#| "1800 may pose a security risk such as impersonation."
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
@@ -9436,19 +9140,12 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
-"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store"
-"%s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
+"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store%"
+"s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
"igual a ell."
#: setup/lib/index.lib.php:266
#, php-format
-#| msgid ""
-#| "If you feel this is necessary, use additional protection settings - [a@?"
-#| "page=servers&mode=edit&id=%1$d#tab_Server_config]host "
-#| "authentication[/a] settings and [a@?page=form&"
-#| "formset=features#tab_Security]trusted proxies list[/a]. However, IP-based "
-#| "protection may not be reliable if your IP belongs to an ISP where "
-#| "thousands of users, including you, are connected to."
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
"authentication%s settings and %strusted proxies list%s. However, IP-based "
@@ -9462,13 +9159,6 @@ msgstr ""
#: setup/lib/index.lib.php:268
#, php-format
-#| msgid ""
-#| "You set the [kbd]config[/kbd] authentication type and included username "
-#| "and password for auto-login, which is not a desirable option for live "
-#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@@ -9484,9 +9174,6 @@ msgstr ""
#: setup/lib/index.lib.php:270
#, php-format
-#| msgid ""
-#| "[a@?page=form&formset=features#tab_Import_export]Zip compression[/a] "
-#| "requires functions (%s) which are unavailable on this system."
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
@@ -9496,9 +9183,6 @@ msgstr ""
#: setup/lib/index.lib.php:272
#, php-format
-#| msgid ""
-#| "[a@?page=form&formset=features#tab_Import_export]Zip decompression[/"
-#| "a] requires functions (%s) which are unavailable on this system."
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
@@ -9507,12 +9191,10 @@ msgstr ""
"en aquest sistema."
#: setup/lib/index.lib.php:296
-#| msgid "You should use SSL connections if your web server supports it"
msgid "You should use SSL connections if your web server supports it."
msgstr "Hauries de fer servir connexions SSL si el teu servidor web ho permet."
#: setup/lib/index.lib.php:306
-#| msgid "You should use mysqli for performance reasons"
msgid "You should use mysqli for performance reasons."
msgstr "Hauries d'utilitzar mysqli per raons de rendiment."
@@ -9521,12 +9203,10 @@ msgid "You allow for connecting to the server without a password."
msgstr "Estàs permetent connexions al servidor sense contrasenya."
#: setup/lib/index.lib.php:351
-#| msgid "Key is too short, it should have at least 8 characters"
msgid "Key is too short, it should have at least 8 characters."
msgstr "La clau és massa curta, ha de tenir al menys 8 caràcters."
#: setup/lib/index.lib.php:358
-#| msgid "Key should contain letters, numbers [em]and[/em] special characters"
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "La clau pot contenir lletres, numeros [em]i[/em] caràcters especials."
@@ -9544,7 +9224,6 @@ msgid "Showing SQL query"
msgstr "Mostrant consulta SQL"
#: sql.php:591
-#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL validat"
@@ -9572,7 +9251,6 @@ msgid "Function"
msgstr "Funció"
#: tbl_change.php:723
-#| msgid " Because of its length,<br /> this field might not be editable "
msgid " Because of its length,<br /> this column might not be editable "
msgstr ""
" A causa de la seva longitud,<br /> aquesta columna no pot ser editable "
@@ -9630,25 +9308,20 @@ msgstr ""
#: tbl_change.php:1112
#, php-format
-#| msgid "Restart insertion with %s rows"
msgid "Continue insertion with %s rows"
msgstr "Continua l'inserció amb %s files"
#: tbl_chart.php:56
-#| msgid "The privileges were reloaded successfully."
msgid "Chart generated successfully."
msgstr "Gràfic generat correctament."
#: tbl_chart.php:59
-#| msgid ""
-#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
-#| "3.11[/a]"
msgid ""
"The result of this query can't be used for a chart. See [a@./Documentation."
"html#faq6_29@Documentation]FAQ 6.29[/a]"
msgstr ""
-"El resultat d'aquesta consuta no es pot usar per a un gràfic. See "
-"[a@./Documentation.html#faq6_29@Documentation]PFC -FAQ- 6.29[/a]"
+"El resultat d'aquesta consuta no es pot usar per a un gràfic. See [a@./"
+"Documentation.html#faq6_29@Documentation]PFC -FAQ- 6.29[/a]"
#: tbl_chart.php:90
msgid "Width"
@@ -9679,7 +9352,6 @@ msgid "Legend margins"
msgstr "Marges de la llegenda"
#: tbl_chart.php:134
-#| msgid "Mar"
msgid "Bar"
msgstr "Barra"
@@ -9692,17 +9364,14 @@ msgid "Radar"
msgstr "Radar"
#: tbl_chart.php:138
-#| msgid "PiB"
msgid "Pie"
msgstr "Pastis"
#: tbl_chart.php:144
-#| msgid "Query type"
msgid "Bar type"
msgstr "Tipus de barra"
#: tbl_chart.php:146
-#| msgid "Packed"
msgid "Stacked d"