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 2011
- 5 participants
- 151 discussions

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_9-25716-g78c1a65
by Rouslan Placella 31 Dec '11
by Rouslan Placella 31 Dec '11
31 Dec '11
The branch, master has been updated
via 78c1a6519b4b8007251c6cdc0aa3ba4491066816 (commit)
from 8078441519952d5853f322feabf0aefb2d75606f (commit)
- Log -----------------------------------------------------------------
commit 78c1a6519b4b8007251c6cdc0aa3ba4491066816
Author: Rouslan Placella <rouslan(a)placella.com>
Date: Sat Dec 31 01:21:55 2011 +0000
Speed-up jQuery selectors in RTE
-----------------------------------------------------------------------
Summary of changes:
js/rte/common.js | 20 ++++++++++----------
js/rte/events.js | 2 +-
js/rte/routines.js | 48 ++++++++++++++++++++++++------------------------
3 files changed, 35 insertions(+), 35 deletions(-)
diff --git a/js/rte/common.js b/js/rte/common.js
index e618151..a1a553c 100644
--- a/js/rte/common.js
+++ b/js/rte/common.js
@@ -34,13 +34,13 @@ var RTE = {
var $elm = null;
// Common validation. At the very least the name
// and the definition must be provided for an item
- $elm = $('.rte_table').last().find('input[name=item_name]');
+ $elm = $('table.rte_table').last().find('input[name=item_name]');
if ($elm.val() === '') {
$elm.focus();
alert(PMA_messages['strFormEmpty']);
return false;
}
- $elm = $('.rte_table').find('textarea[name=item_definition]');
+ $elm = $('table.rte_table').find('textarea[name=item_definition]');
if ($elm.val() === '') {
this.syntaxHiglighter.focus();
alert(PMA_messages['strFormEmpty']);
@@ -78,7 +78,7 @@ $(document).ready(function () {
/**
* Attach Ajax event handlers for the Add/Edit functionality.
*/
- $('.ajax_add_anchor, .ajax_edit_anchor').live('click', function (event) {
+ $('a.ajax_add_anchor, a.ajax_edit_anchor').live('click', function (event) {
event.preventDefault();
/**
* @var $edit_row jQuery object containing the reference to
@@ -112,9 +112,9 @@ $(document).ready(function () {
/**
* @var data Form data to be sent in the AJAX request.
*/
- var data = $('.rte_form').last().serialize();
+ var data = $('form.rte_form').last().serialize();
$msg = PMA_ajaxShowMessage(PMA_messages['strProcessingRequest']);
- $.post($('.rte_form').last().attr('action'), data, function (data) {
+ $.post($('form.rte_form').last().attr('action'), data, function (data) {
if (data.success === true) {
// Item created successfully
PMA_ajaxRemoveMessage($msg);
@@ -220,7 +220,7 @@ $(document).ready(function () {
}
});
RTE.$ajaxDialog.find('input[name=item_name]').focus();
- RTE.$ajaxDialog.find('.datefield, .datetimefield').each(function () {
+ RTE.$ajaxDialog.find('input.datefield, input.datetimefield').each(function () {
PMA_addDatepicker($(this).css('width', '95%'));
});
/**
@@ -255,7 +255,7 @@ $(document).ready(function () {
* and the routine execution dialog used to submit the Ajax
* request when the ENTER key is pressed.
*/
- $('.rte_table').find('input[name^=item], input[name^=params]').live('keydown', function (e) {
+ $('table.rte_table').find('input[name^=item], input[name^=params]').live('keydown', function (e) {
if (e.which === 13) { // 13 is the ENTER key
e.preventDefault();
if (typeof RTE.buttonOptions[PMA_messages['strGo']] === 'function') {
@@ -267,7 +267,7 @@ $(document).ready(function () {
/**
* Attach Ajax event handlers for Export of Routines, Triggers and Events.
*/
- $('.ajax_export_anchor').live('click', function (event) {
+ $('a.ajax_export_anchor').live('click', function (event) {
event.preventDefault();
var $msg = PMA_ajaxShowMessage();
// Fire the ajax request straight away
@@ -309,7 +309,7 @@ $(document).ready(function () {
/**
* Attach Ajax event handlers for Drop functionality of Routines, Triggers and Events.
*/
- $('.ajax_drop_anchor').live('click', function (event) {
+ $('a.ajax_drop_anchor').live('click', function (event) {
event.preventDefault();
/**
* @var $curr_row Object containing reference to the current row
@@ -318,7 +318,7 @@ $(document).ready(function () {
/**
* @var question String containing the question to be asked for confirmation
*/
- var question = $('<div></div>').text($curr_row.children('td').children('.drop_sql').html());
+ var question = $('<div/>').text($curr_row.children('td').children('.drop_sql').html());
// We ask for confirmation first here, before submitting the ajax request
$(this).PMA_confirm(question, $(this).attr('href'), function (url) {
/**
diff --git a/js/rte/events.js b/js/rte/events.js
index 257a17d..b2ba54c 100644
--- a/js/rte/events.js
+++ b/js/rte/events.js
@@ -38,6 +38,6 @@ RTE.validateCustom = function () {
*/
$(document).ready(function () {
$('select[name=item_type]').live('change', function () {
- $('.recurring_event_row, .onetime_event_row').toggle();
+ $('tr.recurring_event_row, tr.onetime_event_row').toggle();
}); // end $.live()
}); // end of $(document).ready()
diff --git a/js/rte/routines.js b/js/rte/routines.js
index b351e7b..27c2aea 100644
--- a/js/rte/routines.js
+++ b/js/rte/routines.js
@@ -16,12 +16,12 @@ RTE.postDialogShow = function (data) {
// Cache the template for a parameter table row
RTE.param_template = data.param_template;
// Make adjustments in the dialog to make it AJAX compatible
- $('.routine_param_remove').show();
+ $('td.routine_param_remove').show();
$('input[name=routine_removeparameter]').remove();
$('input[name=routine_addparameter]').css('width', '100%');
// Enable/disable the 'options' dropdowns for parameters as necessary
- $('.routine_params_table').last().find('th[colspan=2]').attr('colspan', '1');
- $('.routine_params_table').last().find('tr').has('td').each(function () {
+ $('table.routine_params_table').last().find('th[colspan=2]').attr('colspan', '1');
+ $('table.routine_params_table').last().find('tr').has('td').each(function () {
RTE.setOptionsForParameter(
$(this).find('select[name^=item_param_type]'),
$(this).find('input[name^=item_param_length]'),
@@ -32,10 +32,10 @@ RTE.postDialogShow = function (data) {
// Enable/disable the 'options' dropdowns for
// function return value as necessary
RTE.setOptionsForParameter(
- $('.rte_table').last().find('select[name=item_returntype]'),
- $('.rte_table').last().find('input[name=item_returnlength]'),
- $('.rte_table').last().find('select[name=item_returnopts_text]'),
- $('.rte_table').last().find('select[name=item_returnopts_num]')
+ $('table.rte_table').last().find('select[name=item_returntype]'),
+ $('table.rte_table').last().find('input[name=item_returnlength]'),
+ $('table.rte_table').last().find('select[name=item_returnopts_text]'),
+ $('table.rte_table').last().find('select[name=item_returnopts_num]')
);
}; // end RTE.postDialogShow()
@@ -52,7 +52,7 @@ RTE.validateCustom = function () {
* the field that is being processed
*/
var inputname = '';
- $('.routine_params_table').last().find('tr').each(function () {
+ $('table.routine_params_table').last().find('tr').each(function () {
// Every parameter of a routine must have
// a non-empty direction, name and type
if (isSuccess) {
@@ -76,7 +76,7 @@ RTE.validateCustom = function () {
alert(PMA_messages['strFormEmpty']);
return false;
}
- $('.routine_params_table').last().find('tr').each(function () {
+ $('table.routine_params_table').last().find('tr').each(function () {
// SET, ENUM, VARCHAR and VARBINARY fields must have length/values
var $inputtyp = $(this).find('select[name^=item_param_type]');
var $inputlen = $(this).find('input[name^=item_param_length]');
@@ -107,7 +107,7 @@ RTE.validateCustom = function () {
}
if ($('select[name=item_type]').find(':selected').val() === 'FUNCTION') {
// A function must contain a RETURN statement in its definition
- if ($('.rte_table').find('textarea[name=item_definition]').val().toUpperCase().indexOf('RETURN') < 0) {
+ if ($('table.rte_table').find('textarea[name=item_definition]').val().toUpperCase().indexOf('RETURN') < 0) {
RTE.syntaxHiglighter.focus();
alert(PMA_messages['MissingReturn']);
return false;
@@ -232,15 +232,15 @@ $(document).ready(function () {
// Append the new row to the parameters table
$routine_params_table.append(new_param_row);
// Make sure that the row is correctly shown according to the type of routine
- if ($('.rte_table').find('select[name=item_type]').val() === 'FUNCTION') {
- $('.routine_return_row').show();
- $('.routine_direction_cell').hide();
+ if ($('table.rte_table').find('select[name=item_type]').val() === 'FUNCTION') {
+ $('tr.routine_return_row').show();
+ $('td.routine_direction_cell').hide();
}
/**
* @var $newrow jQuery object containing the reference to the newly
* inserted row in the routine parameters table.
*/
- var $newrow = $('.routine_params_table').last().find('tr').has('td').last();
+ var $newrow = $('table.routine_params_table').last().find('tr').has('td').last();
// Enable/disable the 'options' dropdowns for parameters as necessary
RTE.setOptionsForParameter(
$newrow.find('select[name^=item_param_type]'),
@@ -253,7 +253,7 @@ $(document).ready(function () {
/**
* Attach Ajax event handlers for the "Remove parameter from routine" functionality.
*/
- $('.routine_param_remove_anchor').live('click', function (event) {
+ $('a.routine_param_remove_anchor').live('click', function (event) {
event.preventDefault();
$(this).parent().parent().remove();
// After removing a parameter, the indices of the name attributes in
@@ -263,7 +263,7 @@ $(document).ready(function () {
* fields in the routine parameters table.
*/
var index = 0;
- $('.routine_params_table').last().find('tr').has('td').each(function () {
+ $('table.routine_params_table').last().find('tr').has('td').each(function () {
$(this).find(':input').each(function () {
/**
* @var inputname The value of the name attribute of
@@ -295,7 +295,7 @@ $(document).ready(function () {
* fields are shown in the editor when changing the routine type
*/
$('select[name=item_type]').live('change', function () {
- $('.routine_return_row, .routine_direction_cell').toggle();
+ $('tr.routine_return_row, td.routine_direction_cell').toggle();
}); // end $.live()
/**
@@ -325,17 +325,17 @@ $(document).ready(function () {
*/
$('select[name=item_returntype]').live('change', function () {
RTE.setOptionsForParameter(
- $('.rte_table').find('select[name=item_returntype]'),
- $('.rte_table').find('input[name=item_returnlength]'),
- $('.rte_table').find('select[name=item_returnopts_text]'),
- $('.rte_table').find('select[name=item_returnopts_num]')
+ $('table.rte_table').find('select[name=item_returntype]'),
+ $('table.rte_table').find('input[name=item_returnlength]'),
+ $('table.rte_table').find('select[name=item_returnopts_text]'),
+ $('table.rte_table').find('select[name=item_returnopts_num]')
);
}); // end $.live()
/**
* Attach Ajax event handlers for the Execute routine functionality.
*/
- $('.ajax_exec_anchor').live('click', function (event) {
+ $('a.ajax_exec_anchor').live('click', function (event) {
event.preventDefault();
/**
* @var $msg jQuery object containing the reference to
@@ -355,7 +355,7 @@ $(document).ready(function () {
/**
* @var data Form data to be sent in the AJAX request.
*/
- var data = $('.rte_form').last().serialize();
+ var data = $('form.rte_form').last().serialize();
$msg = PMA_ajaxShowMessage(PMA_messages['strProcessingRequest']);
$.post('db_routines.php', data, function (data) {
if (data.success === true) {
@@ -387,7 +387,7 @@ $(document).ready(function () {
/**
* Attach the datepickers to the relevant form fields
*/
- $ajaxDialog.find('.datefield, .datetimefield').each(function () {
+ $ajaxDialog.find('input.datefield, input.datetimefield').each(function () {
PMA_addDatepicker($(this).css('width', '95%'));
});
} else {
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_9-25715-g8078441
by Dieter Adriaenssens 30 Dec '11
by Dieter Adriaenssens 30 Dec '11
30 Dec '11
The branch, master has been updated
via 8078441519952d5853f322feabf0aefb2d75606f (commit)
from d5dede3530258c661f398282677f8733e7ab80eb (commit)
- Log -----------------------------------------------------------------
commit 8078441519952d5853f322feabf0aefb2d75606f
Author: Dieter Adriaenssens <ruleant(a)users.sourceforge.net>
Date: Fri Dec 30 19:53:11 2011 +0100
typo
-----------------------------------------------------------------------
Summary of changes:
export.php | 2 +-
libraries/export/codegen.php | 12 ++++++------
libraries/export/csv.php | 12 ++++++------
libraries/export/htmlword.php | 14 +++++++-------
libraries/export/json.php | 12 ++++++------
libraries/export/latex.php | 14 +++++++-------
libraries/export/mediawiki.php | 12 ++++++------
libraries/export/ods.php | 12 ++++++------
libraries/export/odt.php | 14 +++++++-------
libraries/export/pdf.php | 12 ++++++------
libraries/export/php_array.php | 12 ++++++------
libraries/export/sql.php | 16 ++++++++--------
libraries/export/texytext.php | 14 +++++++-------
libraries/export/xml.php | 12 ++++++------
libraries/export/yaml.php | 12 ++++++------
15 files changed, 91 insertions(+), 91 deletions(-)
diff --git a/export.php b/export.php
index d91c0eb..9ed0d87 100644
--- a/export.php
+++ b/export.php
@@ -130,7 +130,7 @@ $time_start = time();
* $dump_buffer, otherwise it prints thems out.
*
* @param string $line the insert statement
- * @return bool Whether output suceeded
+ * @return bool Whether output succeeded
*/
function PMA_exportOutputHandler($line)
{
diff --git a/libraries/export/codegen.php b/libraries/export/codegen.php
index 0108442..40111ff 100644
--- a/libraries/export/codegen.php
+++ b/libraries/export/codegen.php
@@ -49,7 +49,7 @@ if (isset($plugin_list)) {
/**
* Outputs export footer
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -61,7 +61,7 @@ if (isset($plugin_list)) {
/**
* Outputs export header
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -74,7 +74,7 @@ if (isset($plugin_list)) {
* Outputs database header
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -87,7 +87,7 @@ if (isset($plugin_list)) {
* Outputs database footer
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -100,7 +100,7 @@ if (isset($plugin_list)) {
* Outputs CREATE DATABASE statement
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -117,7 +117,7 @@ if (isset($plugin_list)) {
* @param string $crlf the end of line sequence
* @param string $error_url the url to go back in case of error
* @param string $sql_query SQL query for obtaining data
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
diff --git a/libraries/export/csv.php b/libraries/export/csv.php
index 7410767..15eb09f 100644
--- a/libraries/export/csv.php
+++ b/libraries/export/csv.php
@@ -38,7 +38,7 @@ if (isset($plugin_list)) {
/**
* Outputs export footer
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -49,7 +49,7 @@ if (isset($plugin_list)) {
/**
* Outputs export header
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -97,7 +97,7 @@ if (isset($plugin_list)) {
* Outputs database header
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -109,7 +109,7 @@ if (isset($plugin_list)) {
* Outputs database footer
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -121,7 +121,7 @@ if (isset($plugin_list)) {
* Outputs CREATE DATABASE statement
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -137,7 +137,7 @@ if (isset($plugin_list)) {
* @param string $crlf the end of line sequence
* @param string $error_url the url to go back in case of error
* @param string $sql_query SQL query for obtaining data
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
diff --git a/libraries/export/htmlword.php b/libraries/export/htmlword.php
index e14ecc9..104165e 100644
--- a/libraries/export/htmlword.php
+++ b/libraries/export/htmlword.php
@@ -37,7 +37,7 @@ if (isset($plugin_list)) {
/**
* Outputs export footer
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -48,7 +48,7 @@ if (isset($plugin_list)) {
/**
* Outputs export header
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -70,7 +70,7 @@ if (isset($plugin_list)) {
* Outputs database header
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -82,7 +82,7 @@ if (isset($plugin_list)) {
* Outputs database footer
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -94,7 +94,7 @@ if (isset($plugin_list)) {
* Outputs CREATE DATABASE statement
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -110,7 +110,7 @@ if (isset($plugin_list)) {
* @param string $crlf the end of line sequence
* @param string $error_url the url to go back in case of error
* @param string $sql_query SQL query for obtaining data
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -184,7 +184,7 @@ if (isset($plugin_list)) {
* @param bool $dates whether to include creation/update/check dates
* @param string $export_mode 'create_table', 'triggers', 'create_view', 'stand_in'
* @param string $export_type 'server', 'database', 'table'
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
diff --git a/libraries/export/json.php b/libraries/export/json.php
index cca82b9..313742c 100644
--- a/libraries/export/json.php
+++ b/libraries/export/json.php
@@ -37,7 +37,7 @@ if (isset($plugin_list)) {
/**
* Outputs export footer
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -49,7 +49,7 @@ if (isset($plugin_list)) {
/**
* Outputs export header
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -68,7 +68,7 @@ if (isset($plugin_list)) {
* Outputs database header
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -82,7 +82,7 @@ if (isset($plugin_list)) {
* Outputs database footer
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -95,7 +95,7 @@ if (isset($plugin_list)) {
* Outputs CREATE DATABASE statement
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -112,7 +112,7 @@ if (isset($plugin_list)) {
* @param string $crlf the end of line sequence
* @param string $error_url the url to go back in case of error
* @param string $sql_query SQL query for obtaining data
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
diff --git a/libraries/export/latex.php b/libraries/export/latex.php
index 2792644..5963974 100644
--- a/libraries/export/latex.php
+++ b/libraries/export/latex.php
@@ -104,7 +104,7 @@ if (isset($plugin_list)) {
/**
* Outputs export footer
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -116,7 +116,7 @@ if (isset($plugin_list)) {
/**
* Outputs export header
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -145,7 +145,7 @@ if (isset($plugin_list)) {
*
* @param string $db Database name
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -163,7 +163,7 @@ if (isset($plugin_list)) {
*
* @param string $db Database name
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -177,7 +177,7 @@ if (isset($plugin_list)) {
*
* @param string $db Database name
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -195,7 +195,7 @@ if (isset($plugin_list)) {
* @param string $error_url the url to go back in case of error
* @param string $sql_query SQL query for obtaining data
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -326,7 +326,7 @@ if (isset($plugin_list)) {
* @param string $export_mode 'create_table', 'triggers', 'create_view', 'stand_in'
* @param string $export_type 'server', 'database', 'table'
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
diff --git a/libraries/export/mediawiki.php b/libraries/export/mediawiki.php
index 41af34b..752f196 100644
--- a/libraries/export/mediawiki.php
+++ b/libraries/export/mediawiki.php
@@ -27,7 +27,7 @@ if (isset($plugin_list)) {
/**
* Outputs export footer
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -38,7 +38,7 @@ if (isset($plugin_list)) {
/**
* Outputs export header
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -50,7 +50,7 @@ if (isset($plugin_list)) {
* Outputs database header
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -62,7 +62,7 @@ if (isset($plugin_list)) {
* Outputs database footer
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -74,7 +74,7 @@ if (isset($plugin_list)) {
* Outputs CREATE DATABASE statement
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -90,7 +90,7 @@ if (isset($plugin_list)) {
* @param string $crlf the end of line sequence
* @param string $error_url the url to go back in case of error
* @param string $sql_query SQL query for obtaining data
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
diff --git a/libraries/export/ods.php b/libraries/export/ods.php
index 868edf3..1ee1fb7 100644
--- a/libraries/export/ods.php
+++ b/libraries/export/ods.php
@@ -36,7 +36,7 @@ if (isset($plugin_list)) {
/**
* Outputs export footer
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -53,7 +53,7 @@ if (isset($plugin_list)) {
/**
* Outputs export header
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -103,7 +103,7 @@ if (isset($plugin_list)) {
* Outputs database header
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -115,7 +115,7 @@ if (isset($plugin_list)) {
* Outputs database footer
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -127,7 +127,7 @@ if (isset($plugin_list)) {
* Outputs CREATE DATABASE statement
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -143,7 +143,7 @@ if (isset($plugin_list)) {
* @param string $crlf the end of line sequence
* @param string $error_url the url to go back in case of error
* @param string $sql_query SQL query for obtaining data
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
diff --git a/libraries/export/odt.php b/libraries/export/odt.php
index 7ee3ef7..d6f6936 100644
--- a/libraries/export/odt.php
+++ b/libraries/export/odt.php
@@ -68,7 +68,7 @@ if (isset($plugin_list)) {
/**
* Outputs export footer
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -86,7 +86,7 @@ if (isset($plugin_list)) {
/**
* Outputs export header
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -104,7 +104,7 @@ if (isset($plugin_list)) {
*
* @param string $db Database name
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -120,7 +120,7 @@ if (isset($plugin_list)) {
*
* @param string $db Database name
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -134,7 +134,7 @@ if (isset($plugin_list)) {
*
* @param string $db Database name
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -152,7 +152,7 @@ if (isset($plugin_list)) {
* @param string $error_url the url to go back in case of error
* @param string $sql_query SQL query for obtaining data
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -236,7 +236,7 @@ if (isset($plugin_list)) {
* @param string $export_mode 'create_table', 'triggers', 'create_view', 'stand_in'
* @param string $export_type 'server', 'database', 'table'
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
diff --git a/libraries/export/pdf.php b/libraries/export/pdf.php
index 5f603e6..cd09706 100644
--- a/libraries/export/pdf.php
+++ b/libraries/export/pdf.php
@@ -348,7 +348,7 @@ if (isset($plugin_list)) {
/**
* Finalize the pdf.
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -367,7 +367,7 @@ if (isset($plugin_list)) {
/**
* Initialize the pdf to export data.
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -390,7 +390,7 @@ if (isset($plugin_list)) {
*
* @param string $db Database name
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -404,7 +404,7 @@ if (isset($plugin_list)) {
*
* @param string $db Database name
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -418,7 +418,7 @@ if (isset($plugin_list)) {
*
* @param string $db Database name
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -436,7 +436,7 @@ if (isset($plugin_list)) {
* @param string $error_url the url to go back in case of error
* @param string $sql_query SQL query for obtaining data
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
diff --git a/libraries/export/php_array.php b/libraries/export/php_array.php
index 7716d98..e40145d 100644
--- a/libraries/export/php_array.php
+++ b/libraries/export/php_array.php
@@ -37,7 +37,7 @@ if (isset($plugin_list)) {
/**
* Outputs export footer
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -49,7 +49,7 @@ if (isset($plugin_list)) {
/**
* Outputs export header
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -69,7 +69,7 @@ if (isset($plugin_list)) {
* Outputs database header
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -83,7 +83,7 @@ if (isset($plugin_list)) {
* Outputs database footer
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -96,7 +96,7 @@ if (isset($plugin_list)) {
* Outputs CREATE DATABASE statement
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -113,7 +113,7 @@ if (isset($plugin_list)) {
* @param string $crlf the end of line sequence
* @param string $error_url the url to go back in case of error
* @param string $sql_query SQL query for obtaining data
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
diff --git a/libraries/export/sql.php b/libraries/export/sql.php
index 21a9eec..ace8129 100644
--- a/libraries/export/sql.php
+++ b/libraries/export/sql.php
@@ -318,7 +318,7 @@ if (isset($plugin_list)) {
* Exports routines (procedures and functions)
*
* @param string $db
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -418,7 +418,7 @@ if (isset($plugin_list)) {
/**
* Outputs export footer
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -457,7 +457,7 @@ if (isset($plugin_list)) {
/**
* Outputs export header
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -551,7 +551,7 @@ if (isset($plugin_list)) {
* Outputs CREATE DATABASE statement
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -592,7 +592,7 @@ if (isset($plugin_list)) {
* Outputs database header
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -608,7 +608,7 @@ if (isset($plugin_list)) {
* Outputs database footer
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -1002,7 +1002,7 @@ if (isset($plugin_list)) {
* @param bool $dates whether to include creation/update/check dates
* @param string $export_mode 'create_table', 'triggers', 'create_view', 'stand_in'
* @param string $export_type 'server', 'database', 'table'
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -1071,7 +1071,7 @@ if (isset($plugin_list)) {
* @param string $crlf the end of line sequence
* @param string $error_url the url to go back in case of error
* @param string $sql_query SQL query for obtaining data
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
diff --git a/libraries/export/texytext.php b/libraries/export/texytext.php
index 151b123..ba8e05f 100644
--- a/libraries/export/texytext.php
+++ b/libraries/export/texytext.php
@@ -35,7 +35,7 @@ if (isset($plugin_list)) {
/**
* Outputs export footer
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -46,7 +46,7 @@ if (isset($plugin_list)) {
/**
* Outputs export header
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -58,7 +58,7 @@ if (isset($plugin_list)) {
* Outputs database header
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -70,7 +70,7 @@ if (isset($plugin_list)) {
* Outputs database footer
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -82,7 +82,7 @@ if (isset($plugin_list)) {
* Outputs CREATE DATABASE statement
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -98,7 +98,7 @@ if (isset($plugin_list)) {
* @param string $crlf the end of line sequence
* @param string $error_url the url to go back in case of error
* @param string $sql_query SQL query for obtaining data
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -166,7 +166,7 @@ if (isset($plugin_list)) {
* @param bool $dates whether to include creation/update/check dates
* @param string $export_mode 'create_table', 'triggers', 'create_view', 'stand_in'
* @param string $export_type 'server', 'database', 'table'
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
diff --git a/libraries/export/xml.php b/libraries/export/xml.php
index 056dbca..ac46918 100644
--- a/libraries/export/xml.php
+++ b/libraries/export/xml.php
@@ -85,7 +85,7 @@ if (isset($plugin_list)) {
/**
* Outputs export footer
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -99,7 +99,7 @@ if (isset($plugin_list)) {
/**
* Outputs export header
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -279,7 +279,7 @@ if (isset($plugin_list)) {
* Outputs database header
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -303,7 +303,7 @@ if (isset($plugin_list)) {
* Outputs database footer
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -322,7 +322,7 @@ if (isset($plugin_list)) {
* Outputs CREATE DATABASE statement
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -339,7 +339,7 @@ if (isset($plugin_list)) {
* @param string $crlf the end of line sequence
* @param string $error_url the url to go back in case of error
* @param string $sql_query SQL query for obtaining data
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
diff --git a/libraries/export/yaml.php b/libraries/export/yaml.php
index 6fda141..8c4695a 100644
--- a/libraries/export/yaml.php
+++ b/libraries/export/yaml.php
@@ -38,7 +38,7 @@ if (isset($plugin_list)) {
/**
* Outputs export footer
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -51,7 +51,7 @@ if (isset($plugin_list)) {
/**
* Outputs export header
*
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -65,7 +65,7 @@ if (isset($plugin_list)) {
* Outputs database header
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -78,7 +78,7 @@ if (isset($plugin_list)) {
* Outputs database footer
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -91,7 +91,7 @@ if (isset($plugin_list)) {
* Outputs CREATE DATABASE statement
*
* @param string $db Database name
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
@@ -108,7 +108,7 @@ if (isset($plugin_list)) {
* @param string $crlf the end of line sequence
* @param string $error_url the url to go back in case of error
* @param string $sql_query SQL query for obtaining data
- * @return bool Whether it suceeded
+ * @return bool Whether it succeeded
*
* @access public
*/
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_9-25714-gd5dede3
by Marc Delisle 29 Dec '11
by Marc Delisle 29 Dec '11
29 Dec '11
The branch, master has been updated
via d5dede3530258c661f398282677f8733e7ab80eb (commit)
via 8697ec3d488b03d2fdcee13c03492bc9a7fe219d (commit)
from e07929af7aeeb4b943170aedb2f295fe713b63bd (commit)
- Log -----------------------------------------------------------------
commit d5dede3530258c661f398282677f8733e7ab80eb
Merge: e07929a 8697ec3
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu Dec 29 09:41:55 2011 -0500
Fix merge conflicts
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/Table.class.php | 4 ++++
2 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 7713f7b..ba7c9fe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -72,6 +72,7 @@ phpMyAdmin - ChangeLog
- patch #3375984 [export] PHP Array export might generate invalid php code
- bug #3049209 [import] Import from ODS ignores cell that is the same as cell before
- bug #3463933 [display] SELECT DISTINCT displays wrong total records found
+- patch #3458944 [operations] copy table data missing SET SQL_MODE='NO_AUTO_VALUE_ON_ZERO'
3.4.9.0 (2011-12-21)
- bug #3442028 [edit] Inline editing enum fields with null shows no dropdown
diff --git a/libraries/Table.class.php b/libraries/Table.class.php
index a2db8b2..7793347 100644
--- a/libraries/Table.class.php
+++ b/libraries/Table.class.php
@@ -871,6 +871,10 @@ class PMA_Table
if (($what == 'data' || $what == 'dataonly')
&& ! PMA_Table::isView($target_db, $target_table)
) {
+ $sql_set_mode = "SET SQL_MODE='NO_AUTO_VALUE_ON_ZERO'";
+ PMA_DBI_query($sql_set_mode);
+ $GLOBALS['sql_query'] .= "\n\n" . $sql_set_mode . ';';
+
$sql_insert_data = 'INSERT INTO ' . $target . ' SELECT * FROM ' . $source;
PMA_DBI_query($sql_insert_data);
$GLOBALS['sql_query'] .= "\n\n" . $sql_insert_data . ';';
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_4, updated. RELEASE_3_4_9-16-g8697ec3
by Marc Delisle 29 Dec '11
by Marc Delisle 29 Dec '11
29 Dec '11
The branch, QA_3_4 has been updated
via 8697ec3d488b03d2fdcee13c03492bc9a7fe219d (commit)
from f7a9d2a36a5cedd0b380e8ca89de856a44da1874 (commit)
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/Table.class.php | 4 ++++
2 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 578bed5..ee2dccf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,7 @@ phpMyAdmin - ChangeLog
- patch #3375984 [export] PHP Array export might generate invalid php code
- bug #3049209 [import] Import from ODS ignores cell that is the same as cell before
- bug #3463933 [display] SELECT DISTINCT displays wrong total records found
+- patch #3458944 [operations] copy table data missing SET SQL_MODE='NO_AUTO_VALUE_ON_ZERO'
3.4.9.0 (2011-12-21)
- bug #3442028 [edit] Inline editing enum fields with null shows no dropdown
diff --git a/libraries/Table.class.php b/libraries/Table.class.php
index 5cb46fa..767cf64 100644
--- a/libraries/Table.class.php
+++ b/libraries/Table.class.php
@@ -775,6 +775,10 @@ class PMA_Table
// Copy the data unless this is a VIEW
if (($what == 'data' || $what == 'dataonly') && ! PMA_Table::_isView($target_db,$target_table)) {
+ $sql_set_mode = "SET SQL_MODE='NO_AUTO_VALUE_ON_ZERO'";
+ PMA_DBI_query($sql_set_mode);
+ $GLOBALS['sql_query'] .= "\n\n" . $sql_set_mode . ';';
+
$sql_insert_data =
'INSERT INTO ' . $target . ' SELECT * FROM ' . $source;
PMA_DBI_query($sql_insert_data);
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin website branch, master, updated. d9811573c47ccb8b314f36f72e444fb934df0eb5
by Michal Čihař 28 Dec '11
by Michal Čihař 28 Dec '11
28 Dec '11
The branch, master has been updated
via d9811573c47ccb8b314f36f72e444fb934df0eb5 (commit)
from 5b7fa0538813d55eb5ff980a6461e1ef23f0c52d (commit)
- Log -----------------------------------------------------------------
commit d9811573c47ccb8b314f36f72e444fb934df0eb5
Author: Michal Čihař <michal(a)cihar.com>
Date: Wed Dec 28 15:28:45 2011 +0100
Add new language
-----------------------------------------------------------------------
Summary of changes:
data/langnames.py | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/data/langnames.py b/data/langnames.py
index 18ad074..a0fa182 100644
--- a/data/langnames.py
+++ b/data/langnames.py
@@ -74,6 +74,7 @@ MAP = {
'ta' : 'tamil',
'te' : 'telugu',
'th' : 'thai',
+ 'tk' : 'turkmen',
'tr' : 'turkish',
'tt' : 'tatarish',
'ug' : 'uyghur',
hooks/post-receive
--
phpMyAdmin website
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_9-25712-ge07929a
by Michal Čihař 28 Dec '11
by Michal Čihař 28 Dec '11
28 Dec '11
The branch, master has been updated
via e07929af7aeeb4b943170aedb2f295fe713b63bd (commit)
via 3114ffb5e38fe5f1a357d50d1fde510008203f08 (commit)
via ac4c1251113cd5cfa9a153d1aa34f0395227d44f (commit)
via 27a9e695dbd5751a51888a8032661d1853f4921e (commit)
via 66d955cee65b971151cb58e830911bd961fd0f2c (commit)
via c56f18c725fa954feb9739111c77ee0753984de3 (commit)
via a4f427e8849f4fcf06640a8a6475a43d36402498 (commit)
via f3b4a142f7af07e0b412ff13eb6a06655a1afdfd (commit)
via a91e655175528d4dcfbe92555a4afc4a82a03d05 (commit)
via 31e93e5d7976a486550738fd98b55c90ab9fc71d (commit)
via cea6730ecbe4b6c01b3710846b3c839e67507574 (commit)
via 226878e4af9b8b41e5c5d5476224a3318e0ae661 (commit)
via 4356615dec588913308875fcf9bfb6f2e342bd47 (commit)
via 97d458a474b990f09befdb9de5bcdb9896f3063f (commit)
via 39db156aa72498abbf85e2732516f72bfa5f23c0 (commit)
via b76643129ee06affea63b86c413a14c660089a42 (commit)
via c374575eeccc620ff073e5b3c1c5800be997f434 (commit)
via 89786ea3718aa13ac087fa439e1b90cf2f244d79 (commit)
via 8923dd6539acca8bcbbed2805dac95c04ca64b5a (commit)
via 0327d6824756a73ced30551af3a32f1f8eabaec4 (commit)
via d39b0a65cef3e99f1695a173189859841f433534 (commit)
via b9c4f32036a80bfc592897c793445c804aabb7ba (commit)
via b90bed8613cd8224db1c31cd59e5b66b70f6aefd (commit)
via 556d8139dc9b790d745addd62a2ef68726c1af2e (commit)
via 61566294c66aa6fac524cc04d7a31907f3ee3cc1 (commit)
via e71e06b0b53f2a7ca5297da345f8b1c7ba2facea (commit)
via f4c0c2a759455ff04090b9d72759f2b80e685644 (commit)
via 515301090f3c3967838c63a0ef4d55e214db226a (commit)
via aa14f72e208d0781e47e066e36698ff6231bf833 (commit)
via 971a2aa35541f8c8ce616e07a826b049aa6a7160 (commit)
via 23a66a20659ca4ea8e5e78b07cbe705390fdc56e (commit)
via f43dc7520f73970dcf309572a39f280a8e9477d0 (commit)
via 5039cdb57fd8ed2a724533f3614920b3e7ac8ba5 (commit)
via d3a93d0bdaf21316efa6dd0948b72abe966fb6fd (commit)
via b5b84a1f36a5cc960cc181047cc05bd93acfe0db (commit)
via ccc5b0328169d84125c43f484d4ece39669f58b1 (commit)
via 00f7010af9010c229a654bdd34a279325e023576 (commit)
via a549b26dfdff0b04e533d789e5ac3f7a5d9e74e0 (commit)
via 8f379ab8c7f68ebb6ba6b04dee0a3b79c005aecb (commit)
via 7b7b7902cbc70abb72587e39c697b1ef138140fa (commit)
via 632d447f33c3f3f006ef7330ba4ce22cdd9208e2 (commit)
via aa2031369dc6f0f176e8a712e5f5dc3af5090f60 (commit)
via b0ba4a76bf03771dc08f346aadb2befbfe6e8eeb (commit)
via d496d7a8a56831893c34e72659e49944e11fe9bd (commit)
via 8f83addca928f9dc0197583bb0bfb3b59bba9a80 (commit)
via df85a993a3f19b2bb30a8fc5f878bd442059660b (commit)
from 554a55134d7b5655f63277554f0c5a9f0a3a1e03 (commit)
- Log -----------------------------------------------------------------
commit e07929af7aeeb4b943170aedb2f295fe713b63bd
Author: Michal Čihař <michal(a)cihar.com>
Date: Wed Dec 28 15:28:25 2011 +0100
Description for Turkmen language
commit 3114ffb5e38fe5f1a357d50d1fde510008203f08
Merge: 554a551 ac4c125
Author: Michal Čihař <michal(a)cihar.com>
Date: Wed Dec 28 15:26:06 2011 +0100
Merge remote-tracking branch 'pootle/master'
commit ac4c1251113cd5cfa9a153d1aa34f0395227d44f
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 28 15:53:46 2011 +0200
Translation update done using Pootle.
commit 27a9e695dbd5751a51888a8032661d1853f4921e
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 28 15:53:28 2011 +0200
Translation update done using Pootle.
commit 66d955cee65b971151cb58e830911bd961fd0f2c
Author: any anonymous user <>
Date: Wed Dec 28 15:53:12 2011 +0200
Translation update done using Pootle.
commit c56f18c725fa954feb9739111c77ee0753984de3
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 28 15:53:10 2011 +0200
Translation update done using Pootle.
commit a4f427e8849f4fcf06640a8a6475a43d36402498
Author: any anonymous user <>
Date: Wed Dec 28 11:44:22 2011 +0200
Translation update done using Pootle.
commit f3b4a142f7af07e0b412ff13eb6a06655a1afdfd
Author: jsgrrc <jsgrrc(a)gmail.com>
Date: Wed Dec 28 11:44:22 2011 +0200
Translation update done using Pootle.
commit a91e655175528d4dcfbe92555a4afc4a82a03d05
Author: any anonymous user <>
Date: Wed Dec 28 11:44:08 2011 +0200
Translation update done using Pootle.
commit 31e93e5d7976a486550738fd98b55c90ab9fc71d
Author: jsgrrc <jsgrrc(a)gmail.com>
Date: Wed Dec 28 11:44:08 2011 +0200
Translation update done using Pootle.
commit cea6730ecbe4b6c01b3710846b3c839e67507574
Author: any anonymous user <>
Date: Wed Dec 28 11:44:00 2011 +0200
Translation update done using Pootle.
commit 226878e4af9b8b41e5c5d5476224a3318e0ae661
Author: jsgrrc <jsgrrc(a)gmail.com>
Date: Wed Dec 28 11:44:00 2011 +0200
Translation update done using Pootle.
commit 4356615dec588913308875fcf9bfb6f2e342bd47
Author: jsgrrc <jsgrrc(a)gmail.com>
Date: Wed Dec 28 11:43:31 2011 +0200
Translation update done using Pootle.
commit 97d458a474b990f09befdb9de5bcdb9896f3063f
Author: any anonymous user <>
Date: Wed Dec 28 11:43:08 2011 +0200
Translation update done using Pootle.
commit 39db156aa72498abbf85e2732516f72bfa5f23c0
Author: jsgrrc <jsgrrc(a)gmail.com>
Date: Wed Dec 28 11:43:08 2011 +0200
Translation update done using Pootle.
commit b76643129ee06affea63b86c413a14c660089a42
Author: any anonymous user <>
Date: Wed Dec 28 11:42:59 2011 +0200
Translation update done using Pootle.
commit c374575eeccc620ff073e5b3c1c5800be997f434
Author: jsgrrc <jsgrrc(a)gmail.com>
Date: Wed Dec 28 11:42:59 2011 +0200
Translation update done using Pootle.
commit 89786ea3718aa13ac087fa439e1b90cf2f244d79
Author: any anonymous user <>
Date: Wed Dec 28 11:42:52 2011 +0200
Translation update done using Pootle.
commit 8923dd6539acca8bcbbed2805dac95c04ca64b5a
Author: jsgrrc <jsgrrc(a)gmail.com>
Date: Wed Dec 28 11:42:52 2011 +0200
Translation update done using Pootle.
commit 0327d6824756a73ced30551af3a32f1f8eabaec4
Author: any anonymous user <>
Date: Wed Dec 28 11:42:44 2011 +0200
Translation update done using Pootle.
commit d39b0a65cef3e99f1695a173189859841f433534
Author: jsgrrc <jsgrrc(a)gmail.com>
Date: Wed Dec 28 11:42:43 2011 +0200
Translation update done using Pootle.
commit b9c4f32036a80bfc592897c793445c804aabb7ba
Author: any anonymous user <>
Date: Wed Dec 28 11:42:33 2011 +0200
Translation update done using Pootle.
commit b90bed8613cd8224db1c31cd59e5b66b70f6aefd
Author: jsgrrc <jsgrrc(a)gmail.com>
Date: Wed Dec 28 11:42:32 2011 +0200
Translation update done using Pootle.
commit 556d8139dc9b790d745addd62a2ef68726c1af2e
Author: any anonymous user <>
Date: Wed Dec 28 11:42:24 2011 +0200
Translation update done using Pootle.
commit 61566294c66aa6fac524cc04d7a31907f3ee3cc1
Author: jsgrrc <jsgrrc(a)gmail.com>
Date: Wed Dec 28 11:42:24 2011 +0200
Translation update done using Pootle.
commit e71e06b0b53f2a7ca5297da345f8b1c7ba2facea
Author: any anonymous user <>
Date: Wed Dec 28 11:42:16 2011 +0200
Translation update done using Pootle.
commit f4c0c2a759455ff04090b9d72759f2b80e685644
Author: jsgrrc <jsgrrc(a)gmail.com>
Date: Wed Dec 28 11:42:16 2011 +0200
Translation update done using Pootle.
commit 515301090f3c3967838c63a0ef4d55e214db226a
Author: any anonymous user <>
Date: Wed Dec 28 11:42:09 2011 +0200
Translation update done using Pootle.
commit aa14f72e208d0781e47e066e36698ff6231bf833
Author: jsgrrc <jsgrrc(a)gmail.com>
Date: Wed Dec 28 11:42:08 2011 +0200
Translation update done using Pootle.
commit 971a2aa35541f8c8ce616e07a826b049aa6a7160
Author: any anonymous user <>
Date: Wed Dec 28 11:41:58 2011 +0200
Translation update done using Pootle.
commit 23a66a20659ca4ea8e5e78b07cbe705390fdc56e
Author: jsgrrc <jsgrrc(a)gmail.com>
Date: Wed Dec 28 11:41:58 2011 +0200
Translation update done using Pootle.
commit f43dc7520f73970dcf309572a39f280a8e9477d0
Author: any anonymous user <>
Date: Wed Dec 28 11:41:38 2011 +0200
Translation update done using Pootle.
commit 5039cdb57fd8ed2a724533f3614920b3e7ac8ba5
Author: jsgrrc <jsgrrc(a)gmail.com>
Date: Wed Dec 28 11:41:37 2011 +0200
Translation update done using Pootle.
commit d3a93d0bdaf21316efa6dd0948b72abe966fb6fd
Author: any anonymous user <>
Date: Wed Dec 28 11:41:29 2011 +0200
Translation update done using Pootle.
commit b5b84a1f36a5cc960cc181047cc05bd93acfe0db
Author: jsgrrc <jsgrrc(a)gmail.com>
Date: Wed Dec 28 11:41:29 2011 +0200
Translation update done using Pootle.
commit ccc5b0328169d84125c43f484d4ece39669f58b1
Author: any anonymous user <>
Date: Wed Dec 28 11:41:19 2011 +0200
Translation update done using Pootle.
commit 00f7010af9010c229a654bdd34a279325e023576
Author: jsgrrc <jsgrrc(a)gmail.com>
Date: Wed Dec 28 11:41:19 2011 +0200
Translation update done using Pootle.
commit a549b26dfdff0b04e533d789e5ac3f7a5d9e74e0
Author: any anonymous user <>
Date: Wed Dec 28 11:41:08 2011 +0200
Translation update done using Pootle.
commit 8f379ab8c7f68ebb6ba6b04dee0a3b79c005aecb
Author: Pootle server <noreply(a)l10n.cihar.com>
Date: Wed Dec 28 11:41:07 2011 +0200
Translation update done using Pootle.
commit 7b7b7902cbc70abb72587e39c697b1ef138140fa
Author: Pootle server <noreply(a)l10n.cihar.com>
Date: Wed Dec 28 00:17:46 2011 +0200
Translation update done using Pootle.
commit 632d447f33c3f3f006ef7330ba4ce22cdd9208e2
Author: Martin Lacina <martin(a)whistler.sk>
Date: Wed Dec 28 00:12:35 2011 +0200
Translation update done using Pootle.
commit aa2031369dc6f0f176e8a712e5f5dc3af5090f60
Author: Martin Lacina <martin(a)whistler.sk>
Date: Wed Dec 28 00:04:05 2011 +0200
Translation update done using Pootle.
commit b0ba4a76bf03771dc08f346aadb2befbfe6e8eeb
Author: Martin Lacina <martin(a)whistler.sk>
Date: Wed Dec 28 00:02:37 2011 +0200
Translation update done using Pootle.
commit d496d7a8a56831893c34e72659e49944e11fe9bd
Author: Martin Lacina <martin(a)whistler.sk>
Date: Wed Dec 28 00:01:18 2011 +0200
Translation update done using Pootle.
commit 8f83addca928f9dc0197583bb0bfb3b59bba9a80
Author: Martin Lacina <martin(a)whistler.sk>
Date: Wed Dec 28 00:01:06 2011 +0200
Translation update done using Pootle.
commit df85a993a3f19b2bb30a8fc5f878bd442059660b
Author: Pootle server <pootle(a)cihar.com>
Date: Tue Dec 27 22:45:44 2011 +0100
New translation
-----------------------------------------------------------------------
Summary of changes:
libraries/select_lang.lib.php | 2 ++
po/fr.po | 7 +++----
po/sk.po | 19 +++++++++++--------
po/ta.po | 38 +++++++++++++++++++-------------------
po/{phpmyadmin.pot => tk.po} | 8 ++++----
5 files changed, 39 insertions(+), 35 deletions(-)
copy po/{phpmyadmin.pot => tk.po} (99%)
diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php
index 087639b..84b47d7 100644
--- a/libraries/select_lang.lib.php
+++ b/libraries/select_lang.lib.php
@@ -301,6 +301,8 @@ function PMA_langDetails($lang)
return array('te|telugu', 'te', 'తెలుగు');
case 'th':
return array('th|thai', 'th', 'ภาษาไทย');
+ case 'tk':
+ return array('tk|turkmen', 'tk', 'türkmençe');
case 'tr':
return array('tr|turkish', 'tr', 'Türkçe');
case 'tt':
diff --git a/po/fr.po b/po/fr.po
index 51fe46e..45bc1c5 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-12-19 14:44+0100\n"
-"PO-Revision-Date: 2011-12-16 19:10+0200\n"
+"PO-Revision-Date: 2011-12-28 15:53+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: french <fr(a)li.org>\n"
"Language: fr\n"
@@ -1598,7 +1598,6 @@ msgid "Profiling results"
msgstr "Profilage des résultats"
#: js/messages.php:190
-#, fuzzy
#| msgid "Table"
msgctxt "Display format"
msgid "Table"
@@ -12315,10 +12314,10 @@ msgstr ""
"seconde. Cette règle intervient s'il y a plus de 100 requêtes par seconde."
#: po/advisory_rules.php:80
-#, fuzzy, php-format
+#, php-format
#| msgid "Query cache efficiency (%)"
msgid "Query cache efficiency (%%)"
-msgstr "Efficacité de la cache de requêtes (%)"
+msgstr "Efficacité de la cache de requêtes (%%)"
#: po/advisory_rules.php:81
msgid "Query cache not running efficiently, it has a low hit rate."
diff --git a/po/sk.po b/po/sk.po
index aef5f3d..6788fcd 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-12-19 14:44+0100\n"
-"PO-Revision-Date: 2011-12-25 22:21+0200\n"
+"PO-Revision-Date: 2011-12-28 00:12+0200\n"
"Last-Translator: Martin Lacina <martin(a)whistler.sk>\n"
"Language-Team: slovak <sk(a)li.org>\n"
"Language: sk\n"
@@ -1062,7 +1062,7 @@ msgstr "Späť"
#: index.php:164
msgid "phpMyAdmin is more friendly with a <b>frames-capable</b> browser."
-msgstr "phpMyAdmin funguje lepšie s prehliadačmi podporujúcimi <b>rámy</b>."
+msgstr "phpMyAdmin funguje lepšie s prehliadačmi <b>podporujúcimi rámy</b>."
#: js/messages.php:27 libraries/import.lib.php:103 sql.php:247
msgid "\"DROP DATABASE\" statements are disabled."
@@ -1238,7 +1238,7 @@ msgstr "Procesy"
#: js/messages.php:85
msgid "Connections / Processes"
-msgstr "Spojenia/Procesy"
+msgstr "Spojenia / Procesy"
#. l10n: Questions is the name of a MySQL Status variable
#: js/messages.php:87
@@ -1267,9 +1267,9 @@ msgid ""
"likely that your current configuration will not work anymore. Please reset "
"your configuration to default in the <i>Settings</i> menu."
msgstr ""
-"Usporiadanie grafov uložené vo vašem prehliadači nie je kompatibilné s touto "
-"verziou monitora a pravdepodobne nebude fungovať správne. Prosím, obnovte "
-"východzie nastavenie v ponuke <i>Nastavenia</i>."
+"Usporiadanie grafov uložené vo vašem prehliadači už nie je kompatibilné s "
+"touto verziou monitora a pravdepodobne nebude fungovať správne. Prosím, "
+"obnovte východzie nastavenie v ponuke <i>Nastavenia</i>."
#: js/messages.php:97
#| msgid "Query cache"
@@ -3318,6 +3318,7 @@ msgstr ""
"cookie[/kbd]"
#: libraries/config/messages.inc.php:25
+#, fuzzy
msgid "Blowfish secret"
msgstr "Blowfish secret"
@@ -4137,7 +4138,7 @@ msgstr "Import mien (5.00 namiesto $5.00)"
#: libraries/config/messages.inc.php:259
msgid "Import percentages as proper decimals (12.00% to .12)"
-msgstr "Importovať percentá ako desatinné čísla (0.12 namiesto 12.00%)"
+msgstr "Importovať percentá ako desatinné čísla (0,12 namiesto 12,00%)"
#: libraries/config/messages.inc.php:260
msgid "Number of queries to skip from start"
@@ -4613,6 +4614,7 @@ msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "Názov pre zobrazenie pri použití HTTP autorizácie"
#: libraries/config/messages.inc.php:369
+#, fuzzy
msgid "HTTP Realm"
msgstr "HTTP Realm"
@@ -5990,6 +5992,7 @@ msgid "Well Known Text"
msgstr "Text (Well Known Text)"
#: libraries/display_tbl.lib.php:694
+#, fuzzy
msgid "Well Known Binary"
msgstr "Well Known Binary"
@@ -7198,7 +7201,7 @@ msgid ""
"Please see the documentation on how to update your column_comments table"
msgstr ""
"Prosím prečítajte si dokumentáciu ako aktualizovať tabuľku s informáciami o "
-"stĺpcoch (Column_comments Table)"
+"stĺpcoch (column_comments tabuľka)"
#: libraries/relation.lib.php:124 libraries/sql_query_form.lib.php:368
msgid "Bookmarked SQL query"
diff --git a/po/ta.po b/po/ta.po
index 579093d..1ff4c74 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -7,15 +7,15 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-12-19 14:44+0100\n"
-"PO-Revision-Date: 2011-08-23 10:51+0200\n"
-"Last-Translator: Sajeepan Yogenthiran <ysajeepan(a)live.com>\n"
+"PO-Revision-Date: 2011-12-28 11:44+0200\n"
+"Last-Translator: any anonymous user <>\n"
"Language-Team: Tamil <ta(a)li.org>\n"
"Language: ta\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.0.5\n"
+"X-Generator: Pootle 2.1.6\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:349
#: libraries/display_tbl.lib.php:358 server_privileges.php:1677
@@ -2033,55 +2033,55 @@ msgstr "இன்று"
#: js/messages.php:400
msgid "January"
-msgstr "தை"
+msgstr "ஜனவரி"
#: js/messages.php:401
msgid "February"
-msgstr "மாசி"
+msgstr "பெப்ரவரி"
#: js/messages.php:402
msgid "March"
-msgstr "பங்குனி"
+msgstr "மார்ச்"
#: js/messages.php:403
#, fuzzy
#| msgid "Apr"
msgid "April"
-msgstr "சித்திரை"
+msgstr "ஏப்ரல்"
#: js/messages.php:404
msgid "May"
-msgstr "வைகாசி"
+msgstr "மே"
#: js/messages.php:405
msgid "June"
-msgstr "ஆணி"
+msgstr "ஜூன்"
#: js/messages.php:406
msgid "July"
-msgstr "ஆடி"
+msgstr "ஜூலை"
#: js/messages.php:407
msgid "August"
-msgstr "ஆவணி"
+msgstr "ஆகஸ்ட்"
#: js/messages.php:408
msgid "September"
-msgstr "புரட்டாதி"
+msgstr "செப்டம்பர்"
#: js/messages.php:409
#, fuzzy
#| msgid "Oct"
msgid "October"
-msgstr "ஐப்பசி"
+msgstr "அக்டோபர்"
#: js/messages.php:410
msgid "November"
-msgstr "கார்த்திகை"
+msgstr "நவம்பர்"
#: js/messages.php:411
msgid "December"
-msgstr "மார்கழி"
+msgstr "டிசம்பர்"
#. l10n: Short month name
#: js/messages.php:415 libraries/common.lib.php:1606
@@ -2279,20 +2279,20 @@ msgstr ""
#: libraries/Advisor.class.php:326 server_status.php:950
msgid "per second"
-msgstr ""
+msgstr "ஒரு வினாடிக்கு"
#: libraries/Advisor.class.php:329 server_status.php:945
msgid "per minute"
-msgstr ""
+msgstr "ஒரு நிமிடத்திற்கு "
#: libraries/Advisor.class.php:332 server_status.php:941 server_status.php:977
#: server_status.php:1096 server_status.php:1141
msgid "per hour"
-msgstr ""
+msgstr "ஒரு மணி நேரத்திற்கு "
#: libraries/Advisor.class.php:335
msgid "per day"
-msgstr ""
+msgstr "ஒரு நாளைக்கு"
#: libraries/Config.class.php:703
msgid "Remove \"./config\" directory before using phpMyAdmin!"
diff --git a/po/phpmyadmin.pot b/po/tk.po
similarity index 99%
copy from po/phpmyadmin.pot
copy to po/tk.po
index b263225..c90861d 100644
--- a/po/phpmyadmin.pot
+++ b/po/tk.po
@@ -3,20 +3,20 @@
# This file is distributed under the same license as the phpMyAdmin package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
-#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-12-19 14:44+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
+"Language: tk\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:349
#: libraries/display_tbl.lib.php:358 server_privileges.php:1677
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_9-25666-g554a551
by Marc Delisle 28 Dec '11
by Marc Delisle 28 Dec '11
28 Dec '11
The branch, master has been updated
via 554a55134d7b5655f63277554f0c5a9f0a3a1e03 (commit)
via f7a9d2a36a5cedd0b380e8ca89de856a44da1874 (commit)
from d52db4be6a5915f07b7e633dbb2ee48546f1c61f (commit)
- Log -----------------------------------------------------------------
commit 554a55134d7b5655f63277554f0c5a9f0a3a1e03
Merge: d52db4b f7a9d2a
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 28 08:44:04 2011 -0500
Fix merge conflicts
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
sql.php | 1 +
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index b5e712a..7713f7b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -71,6 +71,7 @@ phpMyAdmin - ChangeLog
- bug #3460090 [interface] TextareaAutoSelect feature broken
- patch #3375984 [export] PHP Array export might generate invalid php code
- bug #3049209 [import] Import from ODS ignores cell that is the same as cell before
+- bug #3463933 [display] SELECT DISTINCT displays wrong total records found
3.4.9.0 (2011-12-21)
- bug #3442028 [edit] Inline editing enum fields with null shows no dropdown
diff --git a/sql.php b/sql.php
index 4f30ba5..4252efd 100644
--- a/sql.php
+++ b/sql.php
@@ -592,6 +592,7 @@ if (isset($GLOBALS['show_as_php']) || ! empty($GLOBALS['validatequery'])) {
if (! $is_group
&& ! isset($analyzed_sql[0]['queryflags']['union'])
+ && ! isset($analyzed_sql[0]['queryflags']['distinct'])
&& ! isset($analyzed_sql[0]['table_ref'][1]['table_name'])
&& (empty($analyzed_sql[0]['where_clause']) || $analyzed_sql[0]['where_clause'] == '1 ')
&& ! isset($find_real_end)
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_4, updated. RELEASE_3_4_9-15-gf7a9d2a
by Marc Delisle 28 Dec '11
by Marc Delisle 28 Dec '11
28 Dec '11
The branch, QA_3_4 has been updated
via f7a9d2a36a5cedd0b380e8ca89de856a44da1874 (commit)
from cd294e5b97c723fa85e29d2b2c43eaa48e60c60a (commit)
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
sql.php | 1 +
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 8cbd325..578bed5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,7 @@ phpMyAdmin - ChangeLog
- bug #3460090 [interface] TextareaAutoSelect feature broken
- patch #3375984 [export] PHP Array export might generate invalid php code
- bug #3049209 [import] Import from ODS ignores cell that is the same as cell before
+- bug #3463933 [display] SELECT DISTINCT displays wrong total records found
3.4.9.0 (2011-12-21)
- bug #3442028 [edit] Inline editing enum fields with null shows no dropdown
diff --git a/sql.php b/sql.php
index 6b2628a..e22a32d 100644
--- a/sql.php
+++ b/sql.php
@@ -494,6 +494,7 @@ if (isset($GLOBALS['show_as_php']) || !empty($GLOBALS['validatequery'])) {
if (!$is_group
&& !isset($analyzed_sql[0]['queryflags']['union'])
+ && !isset($analyzed_sql[0]['queryflags']['distinct'])
&& !isset($analyzed_sql[0]['table_ref'][1]['table_name'])
&& (empty($analyzed_sql[0]['where_clause'])
|| $analyzed_sql[0]['where_clause'] == '1 ')
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_9-25664-gd52db4b
by Michal Čihař 27 Dec '11
by Michal Čihař 27 Dec '11
27 Dec '11
The branch, master has been updated
via d52db4be6a5915f07b7e633dbb2ee48546f1c61f (commit)
via 08c60d6384d0d55d02cf1e99878f417647f02a31 (commit)
via 0fda79dab0355d3f29339c0b99dfbe96feea5174 (commit)
via a5ff1829889f293fc5c7fc4dc341dd19586e5cc3 (commit)
via a1ef1fe1690e634616718a82c430fc1ec4761fc1 (commit)
via 610fb8ecc3f0caff94f4d9ce2ac18282997dfd41 (commit)
via ac3381680767b81bec7f1fc0bdfaf636d370ba0b (commit)
via e4fad1b0979ba11f267fca4dab5210c673b32097 (commit)
via 47db26b65321fc739f4de51be6561a0eaa1c6a35 (commit)
via f4db1fe3a7525efb60e1b2dff5dd08d3b0ed07d8 (commit)
via efb72a813e9fc0d00d4e69e5d7faa8a7db6d4a91 (commit)
via 2d0303db2856c525e9d9712673d9aea3e7193481 (commit)
via 49aeed142f25fbc5ebe806a168a0f12fc96a3fe2 (commit)
via 2fd69fc38cbf5aeb0114ca340a7b8f6cbb2dec13 (commit)
via 56474d61f0d5d65a3b6c5644f2ecd54fa72ee8b1 (commit)
via 896ad5e2d82117614881a580b0e45477a8d95785 (commit)
via 0b2ae2b590c55e16ac7d8218c0a44546e83697d5 (commit)
via f3461131a673fed839c6462dfc77ecdd14ca436f (commit)
via 91ab48023ce8647f506b47abdc82f544074f1eaa (commit)
via 9afc6ec3a2e4a270d25890f9a2d65360cd90b2fa (commit)
via 49f93f41c7576eaec3444c02b93dbd96592c3cd3 (commit)
via 2fa050d8d4cedff47f41fccfd9d107e471ebc8ec (commit)
via 604167592818bb4da16f576edd4d6b846bfcb892 (commit)
via 8fb06d4e2e5958fe7d720cb89fdf4cccb5167103 (commit)
via 3574838a6fed3c7843b7b378b37a7029ca22a530 (commit)
via f8634a47589071e511c0010cbca0934d3e08c3fb (commit)
via f9189610b3b8a003c59ee27bc8775e8e0713092b (commit)
via 10e6a79486bc17ab91ced1f30562b2ebfd79c267 (commit)
via 899c4474176a2b8427c19d780b05690845ebe721 (commit)
via 88ddd5066c4a2e918c6d467f22bb3cc9b98bac09 (commit)
via 206d99296431c1851c5e5bf102bb67799879d9dc (commit)
via 2c7a172dda20ad5bde4a5a85b92b83a610782ea3 (commit)
via 1c459288f1a89dcf399da19cc493378afac9f4bb (commit)
via 98ee8c97844ed5cc6fd30091b4cdfe6c6508938d (commit)
via 0d45e0141d4621be40a88fb396f70b9a84850994 (commit)
via 249c81d8cf4bd3db9d3bf7e845b19d7abb9e7f3e (commit)
via 345575bf7f74d3c2722f55aeaf312f1398cf81d5 (commit)
via 815ca312f8953240dbe2b74a24687386c431df71 (commit)
via e518974d6c6de481cb2dd1d813e8bf3350d1179a (commit)
via a233b93433c01a6fc1eb8e0577317110d6484688 (commit)
from cca6e8efb3dd3c737a6e51a2b388723013c8f411 (commit)
- Log -----------------------------------------------------------------
commit d52db4be6a5915f07b7e633dbb2ee48546f1c61f
Author: NunoCruz <ncruzdesign(a)gmail.com>
Date: Tue Dec 27 22:24:48 2011 +0200
Translation update done using Pootle.
commit 08c60d6384d0d55d02cf1e99878f417647f02a31
Author: NunoCruz <ncruzdesign(a)gmail.com>
Date: Tue Dec 27 22:24:27 2011 +0200
Translation update done using Pootle.
commit 0fda79dab0355d3f29339c0b99dfbe96feea5174
Author: NunoCruz <ncruzdesign(a)gmail.com>
Date: Tue Dec 27 22:22:46 2011 +0200
Translation update done using Pootle.
commit a5ff1829889f293fc5c7fc4dc341dd19586e5cc3
Author: NunoCruz <ncruzdesign(a)gmail.com>
Date: Tue Dec 27 22:21:46 2011 +0200
Translation update done using Pootle.
commit a1ef1fe1690e634616718a82c430fc1ec4761fc1
Author: NunoCruz <ncruzdesign(a)gmail.com>
Date: Tue Dec 27 22:21:32 2011 +0200
Translation update done using Pootle.
commit 610fb8ecc3f0caff94f4d9ce2ac18282997dfd41
Author: NunoCruz <ncruzdesign(a)gmail.com>
Date: Tue Dec 27 22:21:00 2011 +0200
Translation update done using Pootle.
commit ac3381680767b81bec7f1fc0bdfaf636d370ba0b
Author: NunoCruz <ncruzdesign(a)gmail.com>
Date: Tue Dec 27 22:20:13 2011 +0200
Translation update done using Pootle.
commit e4fad1b0979ba11f267fca4dab5210c673b32097
Author: NunoCruz <ncruzdesign(a)gmail.com>
Date: Tue Dec 27 22:19:52 2011 +0200
Translation update done using Pootle.
commit 47db26b65321fc739f4de51be6561a0eaa1c6a35
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 22:22:26 2011 +0200
Translation update done using Pootle.
commit f4db1fe3a7525efb60e1b2dff5dd08d3b0ed07d8
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 22:21:55 2011 +0200
Translation update done using Pootle.
commit efb72a813e9fc0d00d4e69e5d7faa8a7db6d4a91
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 22:21:39 2011 +0200
Translation update done using Pootle.
commit 2d0303db2856c525e9d9712673d9aea3e7193481
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 22:21:11 2011 +0200
Translation update done using Pootle.
commit 49aeed142f25fbc5ebe806a168a0f12fc96a3fe2
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 22:21:02 2011 +0200
Translation update done using Pootle.
commit 2fd69fc38cbf5aeb0114ca340a7b8f6cbb2dec13
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 22:19:19 2011 +0200
Translation update done using Pootle.
commit 56474d61f0d5d65a3b6c5644f2ecd54fa72ee8b1
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 22:16:46 2011 +0200
Translation update done using Pootle.
commit 896ad5e2d82117614881a580b0e45477a8d95785
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 22:16:36 2011 +0200
Translation update done using Pootle.
commit 0b2ae2b590c55e16ac7d8218c0a44546e83697d5
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 22:11:28 2011 +0200
Translation update done using Pootle.
commit f3461131a673fed839c6462dfc77ecdd14ca436f
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 22:10:58 2011 +0200
Translation update done using Pootle.
commit 91ab48023ce8647f506b47abdc82f544074f1eaa
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 22:10:25 2011 +0200
Translation update done using Pootle.
commit 9afc6ec3a2e4a270d25890f9a2d65360cd90b2fa
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 22:09:56 2011 +0200
Translation update done using Pootle.
commit 49f93f41c7576eaec3444c02b93dbd96592c3cd3
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 22:08:39 2011 +0200
Translation update done using Pootle.
commit 2fa050d8d4cedff47f41fccfd9d107e471ebc8ec
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 22:08:01 2011 +0200
Translation update done using Pootle.
commit 604167592818bb4da16f576edd4d6b846bfcb892
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 22:04:03 2011 +0200
Translation update done using Pootle.
commit 8fb06d4e2e5958fe7d720cb89fdf4cccb5167103
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 21:59:31 2011 +0200
Translation update done using Pootle.
commit 3574838a6fed3c7843b7b378b37a7029ca22a530
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 21:56:12 2011 +0200
Translation update done using Pootle.
commit f8634a47589071e511c0010cbca0934d3e08c3fb
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 21:55:19 2011 +0200
Translation update done using Pootle.
commit f9189610b3b8a003c59ee27bc8775e8e0713092b
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 21:52:29 2011 +0200
Translation update done using Pootle.
commit 10e6a79486bc17ab91ced1f30562b2ebfd79c267
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 21:51:59 2011 +0200
Translation update done using Pootle.
commit 899c4474176a2b8427c19d780b05690845ebe721
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 21:38:23 2011 +0200
Translation update done using Pootle.
commit 88ddd5066c4a2e918c6d467f22bb3cc9b98bac09
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 21:37:54 2011 +0200
Translation update done using Pootle.
commit 206d99296431c1851c5e5bf102bb67799879d9dc
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 21:37:31 2011 +0200
Translation update done using Pootle.
commit 2c7a172dda20ad5bde4a5a85b92b83a610782ea3
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 21:36:37 2011 +0200
Translation update done using Pootle.
commit 1c459288f1a89dcf399da19cc493378afac9f4bb
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 21:35:41 2011 +0200
Translation update done using Pootle.
commit 98ee8c97844ed5cc6fd30091b4cdfe6c6508938d
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 21:33:23 2011 +0200
Translation update done using Pootle.
commit 0d45e0141d4621be40a88fb396f70b9a84850994
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 21:32:40 2011 +0200
Translation update done using Pootle.
commit 249c81d8cf4bd3db9d3bf7e845b19d7abb9e7f3e
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 21:31:54 2011 +0200
Translation update done using Pootle.
commit 345575bf7f74d3c2722f55aeaf312f1398cf81d5
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 21:31:45 2011 +0200
Translation update done using Pootle.
commit 815ca312f8953240dbe2b74a24687386c431df71
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 21:31:33 2011 +0200
Translation update done using Pootle.
commit e518974d6c6de481cb2dd1d813e8bf3350d1179a
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 21:31:24 2011 +0200
Translation update done using Pootle.
commit a233b93433c01a6fc1eb8e0577317110d6484688
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 21:31:12 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/pt.po | 29 +++++++------------
po/sk.po | 93 ++++++++++++++++++++++++++++----------------------------------
2 files changed, 53 insertions(+), 69 deletions(-)
diff --git a/po/pt.po b/po/pt.po
index 55edf4f..bbb7bf4 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-12-19 14:44+0100\n"
-"PO-Revision-Date: 2011-11-24 23:02+0200\n"
-"Last-Translator: JoaoTMDias <contacto(a)joaodias.me>\n"
+"PO-Revision-Date: 2011-12-27 22:24+0200\n"
+"Last-Translator: NunoCruz <ncruzdesign(a)gmail.com>\n"
"Language-Team: portuguese <pt(a)li.org>\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
@@ -1378,11 +1378,11 @@ msgid "EiB"
msgstr "EB"
#: js/messages.php:132
-#, fuzzy, php-format
+#, php-format
#| msgid "%s table"
#| msgid_plural "%s tables"
msgid "%d table(s)"
-msgstr "%s tabela"
+msgstr "%d tabela(s)"
#. l10n: Questions is the name of a MySQL Status variable
#: js/messages.php:135
@@ -1545,10 +1545,9 @@ msgid "Analysing & loading logs. This may take a while."
msgstr "A analisar e a carregar registos. Isto pode demorar um um pouco."
#: js/messages.php:176
-#, fuzzy
#| msgid "Cancel"
msgid "Cancel request"
-msgstr "Cancelar"
+msgstr "Cancelar pedido"
#: js/messages.php:177
msgid ""
@@ -1586,10 +1585,9 @@ msgstr ""
"Registo analisado, mas nenhuns dados encontrados neste período de tempo"
#: js/messages.php:184
-#, fuzzy
#| msgid "Authenticating..."
msgid "Analyzing..."
-msgstr "A Autenticar..."
+msgstr "Em análise..."
#: js/messages.php:185
#, fuzzy
@@ -1603,16 +1601,14 @@ msgid "Time"
msgstr "Tempo"
#: js/messages.php:188
-#, fuzzy
#| msgid "Total:"
msgid "Total time:"
-msgstr "Total:"
+msgstr "Tempo Total:"
#: js/messages.php:189
-#, fuzzy
#| msgid "Query results"
msgid "Profiling results"
-msgstr "Resultado(s) das(s) consulta(s)"
+msgstr "Resultado(s) da(s) consulta(s)"
#: js/messages.php:190
#, fuzzy
@@ -1622,10 +1618,9 @@ msgid "Table"
msgstr "Tabela"
#: js/messages.php:191
-#, fuzzy
#| msgid "Charset"
msgid "Chart"
-msgstr "Mapa de Caractere"
+msgstr "Mapa de Resultados"
#. l10n: A collection of available filters
#: js/messages.php:194
@@ -1823,10 +1818,9 @@ msgid "Browsing"
msgstr "Navegação"
#: js/messages.php:259
-#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
-msgstr "A apagar %s"
+msgstr "A Eliminar"
#: js/messages.php:262
msgid "The definition of a stored function must contain a RETURN statement!"
@@ -1881,10 +1875,9 @@ msgid "Show search criteria"
msgstr "Mostrar critérios de busca"
#: js/messages.php:290 libraries/tbl_select.lib.php:110
-#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
-msgstr "Pesquisar"
+msgstr "Pesquisa Avançada"
#: js/messages.php:292
msgid "Each point represents a data row."
diff --git a/po/sk.po b/po/sk.po
index 742858a..aef5f3d 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-12-19 14:44+0100\n"
-"PO-Revision-Date: 2011-12-25 12:45+0200\n"
+"PO-Revision-Date: 2011-12-25 22:21+0200\n"
"Last-Translator: Martin Lacina <martin(a)whistler.sk>\n"
"Language-Team: slovak <sk(a)li.org>\n"
"Language: sk\n"
@@ -811,7 +811,7 @@ msgstr "Upraviť ENUM/SET"
#: enum_editor.php:28 js/messages.php:267
#| msgid "Values for the column \"%s\""
msgid "Values for a new column"
-msgstr "Hodnoty pre nové pole \"%s\""
+msgstr "Hodnoty pre nový stĺpec"
#: enum_editor.php:30 js/messages.php:266
#, php-format
@@ -822,7 +822,7 @@ msgstr "Hodnoty pre pole %s"
#: enum_editor.php:34 js/messages.php:268
#| msgid "Enter each value in a separate field."
msgid "Enter each value in a separate field"
-msgstr "Zadajte každú hodnotu do samostatného poľa."
+msgstr "Zadajte každú hodnotu do samostatného poľa"
#: enum_editor.php:123
msgid "Add a value"
@@ -1013,7 +1013,7 @@ msgstr ""
#: import.php:366
msgid ""
"Cannot convert file's character set without character set conversion library"
-msgstr "Bez potrebnej knižnice nemožno previesť konverziu znakovej sady"
+msgstr "Bez potrebnej knižnice nemožno previesť konverziu znakovej sady"
#: import.php:390 libraries/display_import.lib.php:23
msgid "Could not load import plugins, please check your installation!"
@@ -4859,7 +4859,6 @@ msgid "Server port"
msgstr "Port servera"
#: libraries/config/messages.inc.php:416
-#, fuzzy
#| msgid ""
#| "ve blank for no user preferences storage in database, suggested: [kbd]"
#| "_config[/kbd]"
@@ -4867,8 +4866,8 @@ msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-"Nechajte prázdne pre vypnutie možnosti ukladania užívateľských nastavení v "
-"databáze. Odporúčaná hodnota: [kbd]pma_config[/kbd]"
+"Nechajte prázdne pre vypnutie možnosti \"trvalého\" ukladania nedívnych "
+"tabuliek. Odporúčaná hodnota: [kbd]pma_recent[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "Recently used table"
@@ -5394,7 +5393,7 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-"Povoliť [a@http://en.wikipedia.org/wiki/ZIP_(súborový_formát)]ZIP[/a] "
+"Povoliť [a@http://cs.wikipedia.org/wiki/ZIP_(souborový_formát)]ZIP[/a] "
"kompresiu pre import a export operácie"
#: libraries/config/messages.inc.php:523
@@ -5518,18 +5517,18 @@ msgid "possible deep recursion attack"
msgstr ""
#: libraries/database_interface.lib.php:1813
-#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
-msgstr "(alebo soket lokálneho MySQL servra nie je správne nastavený)"
+msgstr ""
+"Server neodpovedá (alebo socket lokálneho MySQL servera nie je správne "
+"nastavený)."
#: libraries/database_interface.lib.php:1816
-#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
-msgstr "Server neodpovedá"
+msgstr "Server neodpovedá."
#: libraries/database_interface.lib.php:1820
msgid "Please check privileges of directory containing database."
@@ -6069,7 +6068,7 @@ msgid ""
"The increment size for extending the size of an autoextending tablespace "
"when it becomes full."
msgstr ""
-" Veľkosť, o ktorú je zväčšený automaticky sa zväčšujúci priestor tabuľky pri "
+"Veľkosť, o ktorú je zväčšený automaticky sa zväčšujúci priestor tabuľky pri "
"zaplnení."
#: libraries/engines/innodb.lib.php:32
@@ -6598,9 +6597,7 @@ msgstr ""
#: libraries/export/sql.php:45
msgid "Additional custom header comment (\\n splits lines):"
-msgstr ""
-"Pridať vlastný komentár do hlavičky (\n"
-" oddeľuje riadky):"
+msgstr "Pridať vlastný komentár do hlavičky (\\n oddeľuje riadky):"
#: libraries/export/sql.php:50
msgid ""
@@ -6721,10 +6718,9 @@ msgid "Stand-in structure for view"
msgstr ""
#: libraries/export/sql.php:1112
-#, fuzzy
#| msgid "Allows reading data."
msgid "Error reading data:"
-msgstr "Povolí čítanie dát."
+msgstr "Chyba pri čítaní dát:"
#: libraries/export/xml.php:19 libraries/import/xml.php:28
msgid "XML"
@@ -8076,7 +8072,7 @@ msgstr "Oddeľovač"
#: libraries/sql_query_form.lib.php:344
msgid "Show this query here again"
-msgstr "Zobraziť tento dopyt znovu "
+msgstr "Zobraziť tento dopyt znovu"
#: libraries/sql_query_form.lib.php:399
msgid "View only"
@@ -9222,7 +9218,7 @@ msgstr "Oprávnenia pre jednotlivé tabuľky"
#: server_privileges.php:537 server_privileges.php:689
#: server_privileges.php:1704
msgid "Note: MySQL privilege names are expressed in English"
-msgstr "Poznámka: názvy MySQL oprávnení sú uvádzané po anglicky "
+msgstr "Poznámka: názvy MySQL oprávnení sú uvádzané po anglicky"
#: server_privileges.php:614
msgid "Administration"
@@ -9395,14 +9391,14 @@ msgstr "... zmazať pôvodného používateľa z tabuliek používateľov."
msgid ""
"... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-" ... odobrať všetky oprávnenia pôvodnému používateľovi a následne ho zmazať."
+"... odobrať všetky oprávnenia pôvodnému používateľovi a následne ho zmazať."
#: server_privileges.php:2192
msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-" ... zmazať pôvodného používateľa z tabuliek používateľov a potom "
+"... zmazať pôvodného používateľa z tabuliek používateľov a potom "
"znovunačítať oprávnenia."
#: server_privileges.php:2215
@@ -9700,10 +9696,9 @@ msgid "Advisor"
msgstr ""
#: server_status.php:796 server_status.php:818
-#, fuzzy
#| msgid "Refresh rate:"
msgid "Refresh rate: "
-msgstr "Obnovovacia frekvencia:"
+msgstr "Obnovovacia frekvencia: "
#: server_status.php:837 server_variables.php:115
#, fuzzy
@@ -9795,10 +9790,10 @@ msgid "Network traffic since startup: %s"
msgstr ""
#: server_status.php:1054
-#, fuzzy, php-format
+#, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
-msgstr "Tento server beží %s. Bol spustený %s."
+msgstr "Tento server beží %1s. Bol spustený %2s."
#: server_status.php:1064
msgid ""
@@ -10646,10 +10641,9 @@ msgid "Status variable(s)"
msgstr ""
#: server_status.php:1649
-#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
-msgstr "Vybrať Tabuľky"
+msgstr "Vybrať série:"
#: server_status.php:1651
msgid "Commonly monitored"
@@ -10695,10 +10689,9 @@ msgid "Log statistics"
msgstr "Zobraziť štatistiky"
#: server_status.php:1704
-#, fuzzy
#| msgid "Select page"
msgid "Selected time range:"
-msgstr "Zvoliť stránku"
+msgstr "Zvolený časový rozsah:"
#: server_status.php:1709
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
@@ -10723,22 +10716,22 @@ msgid "Query analyzer"
msgstr "Typ dopytu"
#: server_status.php:1766
-#, fuzzy, php-format
+#, php-format
#| msgid "Second"
msgid "%d second"
msgid_plural "%d seconds"
-msgstr[0] "Sekundy"
-msgstr[1] "Sekundy"
-msgstr[2] "Sekundy"
+msgstr[0] "%d sekunda"
+msgstr[1] "%d sekundy"
+msgstr[2] "%d sekúnd"
#: server_status.php:1768
-#, fuzzy, php-format
+#, php-format
#| msgid "Minute"
msgid "%d minute"
msgid_plural "%d minutes"
-msgstr[0] "Minúty"
-msgstr[1] "Minúty"
-msgstr[2] "Minúty"
+msgstr[0] "%d minúta"
+msgstr[1] "%d minúty"
+msgstr[2] "%d minút"
#: server_synchronize.php:99
msgid "Could not connect to the source"
@@ -10788,11 +10781,11 @@ msgstr "Upraviť stĺpce"
#: server_synchronize.php:446 server_synchronize.php:918
msgid "Remove index(s)"
-msgstr "Odstrániť indexy"
+msgstr "Odstrániť index(y)"
#: server_synchronize.php:447 server_synchronize.php:919
msgid "Apply index(s)"
-msgstr "Aplikovať indexy"
+msgstr "Aplikovať index(y)"
#: server_synchronize.php:448 server_synchronize.php:920
msgid "Update row(s)"
@@ -11198,7 +11191,7 @@ msgstr "Tabuľka %1$s bola úspešné upravená"
#: tbl_change.php:699
msgid "Because of its length,<br /> this column might not be editable"
-msgstr "Kvôli dĺžke poľa,<br /> toto pole sa nemusí dať upraviť "
+msgstr "Kvôli dĺžke poľa,<br /> toto pole sa nemusí dať upraviť"
#: tbl_change.php:817
msgid "Remove BLOB Repository Reference"
@@ -11585,7 +11578,7 @@ msgstr "Dĺžka riadku"
#: tbl_printview.php:373 tbl_structure.php:898
msgid "Row size"
-msgstr "Veľkosť riadku "
+msgstr "Veľkosť riadku"
#: tbl_printview.php:383 tbl_structure.php:906
msgid "Next autoindex"
@@ -11956,10 +11949,9 @@ msgid "The uptime is only %s"
msgstr ""
#: po/advisory_rules.php:10
-#, fuzzy
#| msgid "Questions"
msgid "Questions below 1,000"
-msgstr "Dopyty"
+msgstr "Menej než 1000 dopytov"
#: po/advisory_rules.php:11
msgid ""
@@ -12107,10 +12099,9 @@ msgid "Version less than 5.5.8 (the first GA release of 5.5)."
msgstr ""
#: po/advisory_rules.php:47
-#, fuzzy
#| msgid "You should upgrade to %s %s or later."
msgid "You should upgrade, to a stable version of MySQL 5.5"
-msgstr "Mali by ste aktualizovať %s na verziu %s alebo vyššiu."
+msgstr "Mali by ste aktualizovať na stabilnú verziu MySQL 5.5"
#: po/advisory_rules.php:50 po/advisory_rules.php:55 po/advisory_rules.php:60
#, fuzzy
@@ -12581,7 +12572,7 @@ msgstr ""
#| msgid "%s table"
#| msgid_plural "%s tables"
msgid "Temp disk rate"
-msgstr "%s tabuľka"
+msgstr "Frekvencia dočasného ukladania na disk"
#: po/advisory_rules.php:157
msgid ""
@@ -13130,13 +13121,13 @@ msgstr ""
#~ msgstr "Zabrané miesto"
#~ msgid "% open files"
-#~ msgstr "Zobraziť otvorené tabuľky"
+#~ msgstr "% otvorených súborov"
#~ msgid "% connections used"
-#~ msgstr "Spojenia"
+#~ msgstr "% použitých spojení"
#~ msgid "% aborted connections"
-#~ msgstr "Komprimovať pripojenie"
+#~ msgstr "% prerušených spojení"
#~ msgid "CPU Usage"
#~ msgstr "Využitie"
@@ -13375,7 +13366,7 @@ msgstr ""
#~ msgstr "Pridať hodnotu AUTO_INCREMENT"
#~ msgid "Dump %s row(s) starting at row # %s"
-#~ msgstr "Zobraziť %s riadkov od riadku %s."
+#~ msgstr "Zobraziť %s riadkov od riadku # %s."
#~ msgid "remember template"
#~ msgstr "zapamätať si vzor"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_9-25624-gcca6e8e
by Michal Čihař 25 Dec '11
by Michal Čihař 25 Dec '11
25 Dec '11
The branch, master has been updated
via cca6e8efb3dd3c737a6e51a2b388723013c8f411 (commit)
via 726debe1365bfad6f9a1158096297454e85fb221 (commit)
via 831b76022898a5b7f0d12bcd89a0e5228b26570f (commit)
via b63bb56494df90c615477f767504aa4e6af84c7a (commit)
via 7253d6f42b92cab5bf2bd6396e4d35fc12e4c2e6 (commit)
via cefef24e5f41f9707ca2c067a59b441bbcb59d82 (commit)
via 4fd006f33f9f5cec0df3941a4d6e7b933d00504c (commit)
via d9d89466315a6c239ab7547ad2ede6c47bae064a (commit)
via 1b9c5b60a164d428500b03dae23ee4f6f17107ac (commit)
via 32bb9c781ef0283355d13b9eefc82df68d853e9c (commit)
via 6a496c35eabdd5b550a6627fa51c1a859ea81f20 (commit)
via 8de24f455da7a76090eb986a1db441e1fd0c3175 (commit)
via 7ce81bf04316d31847885a4a8cd7ecb02fc28549 (commit)
via 96a94166b65f2251fc34f039a7ad5d30b4d8067d (commit)
via b7aafad0d031f22e4e4240c9dc9f00cd9038ebe6 (commit)
via 1685c993c6ac2bfe7f068b8a303d55fc50ec6a01 (commit)
via 528971f7e644110d6fdff5d54befb42a94ace433 (commit)
via 1514b67073f529630b8f13a96a8666753def833f (commit)
via 235cf7eb39319a7d50dda561881be141b821ed52 (commit)
via f48fcb3c216ac61832915288f5faa5b18f994ebc (commit)
via 0936dc5aa38b120130679449c7394e3f46024eeb (commit)
via 0f75e1658f35dec48e38821dc9289e4be1f782d3 (commit)
via d63f9c9431679db88b456f36010af9feb6b32865 (commit)
via 14760c182cb66341bbd12701eeca6662289debc8 (commit)
via 4782593bc09fb5622baae7b4161d5de91ea8fead (commit)
via 9cb7cfa7461adeb943d3234b0ffab28e3184372c (commit)
via 5611a4e18e5736363cef916318ec6d9dd9ced507 (commit)
via 8be5263eb9d5dae03b2be268c3ba586d57adbbbe (commit)
via 62b7b9efb98acb3ed6ce3fa3cd52962b57a1e0d2 (commit)
via 109f8679dfbd966f71cb15055c5fb2aa9d3b387e (commit)
via 8a7c6b82d053420502bf16e950409dff0cbd0df3 (commit)
via c7e1bb2048ba47c77aba8d15a4b759c8c695e571 (commit)
via d2a6d7daae84507c61db6dbfae22e49eaecf0a2d (commit)
via 97ec4a4257010df6a3f86da01884b26272769506 (commit)
via 64afb99eb9ccdef98f0053c4a5fd79a631bc9395 (commit)
via cc2438b60638abe6991f0313f078eaa1c4d25b73 (commit)
via b68df2e478527119245a6c7f5d7666273b6752d3 (commit)
via 2836c68388e703ba34f3172d7d95e366f8efd2ed (commit)
via 60f208bdb647a98752dd2a848ab3937ac2512173 (commit)
via 3fdd2af93eae0e542de23e1bb0eb6c66a70676fa (commit)
via 8c0c69cd7cd6d2db20d51776ea73c86528d5e891 (commit)
via b1d2cfecd2cca921dfecf6b22a7b270ee60f5df9 (commit)
via 51dea662ecac86bd624eb68a686d8a6e8012bc2a (commit)
via 2b721d0dc9cd3a21ac9ffd7874f6221534686d96 (commit)
via 6451e1d31ba7f7a7702ab5d27887af904c0f4787 (commit)
via 054fde477bc86bb4b8bf89f06b7ec174e8aab07f (commit)
via 58e116dbd695e54e98d714c663095e3dbf10abf9 (commit)
via 9b6b50a66b36e4026921938d620ec02a8296ff2f (commit)
via 8b96195aa52c301a9f6378e81a42445b190ba8f0 (commit)
via ec6729d364febebcbd4acbab60449a317b0e3cd0 (commit)
via 46888618af9704213f9700cc4f4b1cccb49b4fa1 (commit)
via 870d164ce467b450e6bae21f29d6704fc5836668 (commit)
via f7bf4e033e115fd537a893c44538f622430f999a (commit)
via 4288b0eaf94a636d46ae693c4e230354ee0fdf5b (commit)
via a5632a8d6778127e159e1d94bdce031f095f8975 (commit)
via 7b1f63e5319870869a81d0057a0ff4194ccf6e01 (commit)
via 2be7aaf2d6da5fb2102d91a920b83e05241efc46 (commit)
via 1083b0ef7dbfb08a3da536146bae27177286c5ca (commit)
via 845bc04bae7e4883ff622f70b8f153a4fea16f5d (commit)
via ce5f5d04aa5687d5e84ffd67b0d8a14573e94cdb (commit)
via 95486f52a56cd8594397677f14bfded97e4edd4b (commit)
via ff60373218e3abfd1f9294620fda3d1e971d11ef (commit)
via 099087817db112f9e88b4162d5b096d02153b9b6 (commit)
via 95e121a9d15a00e7e8f97aab7c391169e0bee70a (commit)
via 1fc2cc003f12a70e92a56400b766c4a504e80746 (commit)
via 71a1cceb375ae0658e8c2ef82e9cfda0163d8f1c (commit)
via e7c7ddfaa3ba4296ba8c8e1d334613555ddcca84 (commit)
via f871d6d4966b9365ca5cbe430f174d15d3f9c541 (commit)
via f82a6248e58bf276c1376e6873c8a8979e182d18 (commit)
via bd0fea79414f9118a7cd8deda7ec3dbc576ab3e8 (commit)
via b83da3d812563606dd24c39c209330e96c9cb801 (commit)
via 382e44ced6c3471304c81b836faeb8d10cfcd332 (commit)
via 803e917f16e048be9e5cc6d737defe42a566c6e8 (commit)
via 308ebeae18dc38573dfa6769e63c4a1640576f8b (commit)
via e58001e29e66b803993cd5c9eb6ca3a4565655c5 (commit)
via f4620c539a58d90104a62f50450db70ec104e041 (commit)
via cee5464519f75efc36e81fb5cf86a26f12b7a93f (commit)
via 1aed9f7e43119a19eb637d128dd653e19c3c6be1 (commit)
via f7cd8d5fc1533d91bdcd81fc12940414fdff377e (commit)
via f52628879dcc1d0009768283b75208681e39b98b (commit)
via 8cd1de4d9148c5c2aa84638636e213b30df81dd3 (commit)
via 1dbfef180e8df360942260a42f16f813c3b0c55f (commit)
via b73af0d0b2f909223ba64227b453a309c4cb8964 (commit)
via ef3262cbbc53f278c224b544ebf9a8c94211274b (commit)
via 7af2abd6dca4d82c110c1fae068c6629a476623d (commit)
via 5df5aae8dd4f1947f5265d5621dc46b9ad886c4c (commit)
via 7f53fc1019564ca1cf585f670820b457eec5b8cc (commit)
via 4a85416d943147cfa5b4c21517c44bff379bc1c5 (commit)
via 249b06d788b3bba67a22a3ff92a81e202d79a058 (commit)
via ebb360ea90693d0cbd580299b9670b3f7e43d6e6 (commit)
via 8595f9b154d2aeb5b4c9c5d97589a725319adbcf (commit)
via 40cba063885b0f83346f417d9ecf936ae95ded59 (commit)
via 840aef0d7f0820618fa1d2fc0a025b2f95cf4139 (commit)
via 5a9ab6230b77b5aa59bdc0b32150a544bc765b2b (commit)
via fd7b1badf9f909d3da0c1c0040579e78a5bde768 (commit)
via c8ea2e5bc1e9ac6bc2776b2cff9985feb2a62792 (commit)
via dcb9f91edf5df1bfa1a120f198287a343453ae92 (commit)
via 4fd9481c305184f39ed338b78c5ce1b7a0a0576a (commit)
via ebcf902be0cd5b48b858077f7cfdfd22e59eed8c (commit)
via 27b9967d1a2528f486285139c912836aec586014 (commit)
via 2de99f85075acc15ef06199ddf63f9a53b08fd63 (commit)
via 2f49cb42e6fb04d79dbe679a3618e880175d5d5b (commit)
via 7ad91b21e05ca8e21815da3e21eaaef7aa776858 (commit)
via b1182d8e6699f905f145d0955544c143b825ec09 (commit)
via e332cc74b9728e454d7d8714f9f360542bb78bc5 (commit)
via cb74422cce99c300f6c6432efb73fd4c672e1cf0 (commit)
via e12241963a74e6ff9fae0561821ea6c1b13110ee (commit)
via 906a4f6047a5b134001dfc1aa3ea850c3733b206 (commit)
via 7c22aee321a79dd259d97eb7775aa4c5bdaeb023 (commit)
via d755fa98517ec65e388be8bed90ce46e53be631b (commit)
via 1962535476242c3ef1eb28c5b7aaca2a3c46a74e (commit)
via 3f0cc3f46851e4464062419d3bb3f1cc0794695a (commit)
via fc5d0879c6ca6d1632b9dda18dc7e0551c17d3d3 (commit)
via 0375f2210bacd0460b7e2b4d957f186d30991eb7 (commit)
via a21eeec914ffa62766eefd41247e6f2047b70822 (commit)
via d6d6bf30117649bf3cd19f8efbdd68df864d9b44 (commit)
via c2631db704f6f1c26168822af55e176d9b09238f (commit)
via 7b66a6909c3ec2f350007cceca823db9034bb919 (commit)
via 3876f597ffed6646553fb86ec971651de1a25bdd (commit)
via 1016fa3052656b0e02f56b82fa6e294a0d55a8b1 (commit)
via f14eebb8ddbc87d47513f8f7d1969069f05d3e6c (commit)
via 268e5b0607eb2d6fb63bc4a306c75aa9fe2116c9 (commit)
via 7dec4da008fa005be10a7730da387ba706708f7d (commit)
via 352246d44942cd0c43a7e5fa73948f60b22e4b76 (commit)
via 646c40c0dc60c299da8a894382e485f4fbf22331 (commit)
via fb971198fb53b9f6d24d696b30814b9c4eb4a9fd (commit)
via 271a99272a4889fbd315b7eb614c26de5933daa7 (commit)
via d7610156b27d563e10e18a6f67adb06d5add1d7c (commit)
via ae472cee165640922cba0d610ddc64541396eec5 (commit)
via 703dc58b0d55ffc2663c8eeb5f019cb0c7af1106 (commit)
via 8b05eca4209a306cbcffec69c8c43f79f046c452 (commit)
via 3271411be07c8cdf4bb9c42f2d825f9b430cb51c (commit)
via 4f473a4f8b5c110f341abaf526c25d7799970601 (commit)
via 2f0628f71b695cc71bd1f9466fbc34f20da45f14 (commit)
via 212b717ee782228dc2fb0ad686a3df9eb5b1b744 (commit)
via f64bc2b38fa94deaea1aedfa5aa1d20083bc45d5 (commit)
via 7ba9fc4fbdb2e7837ac25811aa841bc75b2c718e (commit)
via 94b5267763b1e5ab1ee27202052eb6b2f430908d (commit)
via 9c4aaa616a8ad125297f3ef141283588fe8eb0b3 (commit)
via c9de3c89f3e619327f7454f3336869b68e28592e (commit)
via 26da0693d5cc677436e85febcec1b925eec0cfb4 (commit)
via ad752efed095a6fdbd03662f8c6c4e9b3be1599b (commit)
via 46b2b294fd7ca6dbb1e30a8c641a8cd7a9bb2d36 (commit)
via e18021631bd4860c5d6955710a5c9ad83fbc789c (commit)
via 4a040a9468bcd8b2f757abbda70a346fd0ad5f0e (commit)
via 31a375902f31bcf529503322611b90def4f5fdcd (commit)
via de55ae1741313b4e87e074d998eab2f66db9c285 (commit)
via 2c8753f4310cfdf1c902bd72296fe8b9a17e0280 (commit)
via 26d9a4a20cd9d956e7036550891a6d03fcf4692d (commit)
via ea109e574ddef6979e30a0db1e8247c94a489a55 (commit)
via 51d0466c33151e225153d6df70695b83275cdb5c (commit)
via ed6b7240d6244bb84a19c35b75733d892c59cda1 (commit)
via 37e1348d71c07d8f6c09edb40d6701b040bbfacc (commit)
via 40a6d91e23451ef5210475d1abe0632c7d1ff95e (commit)
via 7066d35f70feebe4496249d7c84cce20995d3a7f (commit)
via 6507f79e6fe81bd6b1958751f1c8c2eeb065c49e (commit)
via 3c9a6b4da7cfea6235e627312f77ac094684bb26 (commit)
via 28f6014e968f18582242de2e1f1e55cc1fab950c (commit)
via ad591184f7f4a6b75ed30837c420d0e99f1469e9 (commit)
via 634db79a36f4c0b14030c8d2249ab147a04f4a32 (commit)
via 3fed895f305a0d299e86ecee53bcd26b8cfed713 (commit)
via bae06e00c73bc0495bb5f024a94d55a0cdc568b8 (commit)
via 28ec9a273405591fc0dc97941d1fd6eda53c11bd (commit)
via c07bb6e80b3d06066e69a7ace97e4db02b5e6808 (commit)
via 59f5002a9a51624f8f6a64e2acba62ecf0a779fd (commit)
via fe1ef0357c6042744c8c39cd6979db4bacd6981b (commit)
via 39d7b7454e51145d15627164630acf88de4130a2 (commit)
via fcae89b89885eb609280d1e784e8ed2b94df60c0 (commit)
via 2f27cdbb78248e663dbcccacfa4cd6663794775d (commit)
via 46d42156330d2103872be3b13cf598358a510bad (commit)
via 643676a36d6b14ec1a3f96efec6728207e4aeb3f (commit)
via d23d459ff0bead886a4c712a024ee0322d20d2a0 (commit)
via 74bcc24bd7df9f3465594ab3b06835afa0524f85 (commit)
via cec2c7e993bfeca28c092ff3f0da14006b7cb8ea (commit)
via 15e032bf10ef161d95d7cf459d5e35e5f8ed281a (commit)
via c9df855ecf0c595accfc3bc5ddc7b13fa4acdb38 (commit)
via 9bd17f3bf76f1f375793cfadb2b0db8bb432cfe4 (commit)
via 2d1ecd714d07c1703a46f01166dd006503d4d73d (commit)
via 4dd9019a0d540e7cce1a3180c0323e1395483aaf (commit)
via f12b784885617bc57757986c43aa4896bd87609b (commit)
via dc9c112be5c3e808ccaf147572fa4059c0d153be (commit)
via 08de49a2a3ce8045926d8231dd2b46ed9b08f193 (commit)
via e673eda0494292d004b11336a339ee0bcde2df04 (commit)
via 54b876291d68e716f50ea701ae7deab4572c4872 (commit)
via 56a7aa996829749322c80731f319caba6595c94e (commit)
via 721134df35bb17163c4a7ce8d6202b55a30e095d (commit)
via 405c81f3e5515b10cf29ae2a06d3d8ece4e25cd9 (commit)
via fb2631353c3880c248775c9f35f4876b7bd5ff88 (commit)
via f3e7fc44ec4d92a343663cd679c374758ab1aa9f (commit)
via 166cebd6c8272a9b673895d073f3a0afe7325217 (commit)
via 284e385169e380c86db58c2d2936dcebe3dbdf0e (commit)
via bbaf51118bcb261706d0dca15b6a007ba1dbf784 (commit)
via 604acb1bca8ae87381bdd18f2b4e598618b3dcc5 (commit)
via 992db86634c6f7cb6a831147b6b836febb80c0d8 (commit)
via 7f27d8b75cf43afcb19709f3badbf23c989b3d50 (commit)
via 42b95e3bfb708f1ce7a98e8feb5ebf318ee0686e (commit)
via 6175fa3a54ef9c3173e956d792fe8ff4276034b5 (commit)
via 95a79cab4140ef9a5d470a610dd7e3178def7b62 (commit)
from 25b78bef1b0595ef37c2855d0f070563d8e80116 (commit)
- Log -----------------------------------------------------------------
commit cca6e8efb3dd3c737a6e51a2b388723013c8f411
Author: Pootle server <noreply(a)l10n.cihar.com>
Date: Sun Dec 25 12:49:59 2011 +0200
Translation update done using Pootle.
commit 726debe1365bfad6f9a1158096297454e85fb221
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:44:45 2011 +0200
Translation update done using Pootle.
commit 831b76022898a5b7f0d12bcd89a0e5228b26570f
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:44:17 2011 +0200
Translation update done using Pootle.
commit b63bb56494df90c615477f767504aa4e6af84c7a
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:44:03 2011 +0200
Translation update done using Pootle.
commit 7253d6f42b92cab5bf2bd6396e4d35fc12e4c2e6
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:43:35 2011 +0200
Translation update done using Pootle.
commit cefef24e5f41f9707ca2c067a59b441bbcb59d82
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:42:54 2011 +0200
Translation update done using Pootle.
commit 4fd006f33f9f5cec0df3941a4d6e7b933d00504c
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:41:33 2011 +0200
Translation update done using Pootle.
commit d9d89466315a6c239ab7547ad2ede6c47bae064a
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:40:54 2011 +0200
Translation update done using Pootle.
commit 1b9c5b60a164d428500b03dae23ee4f6f17107ac
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:39:46 2011 +0200
Translation update done using Pootle.
commit 32bb9c781ef0283355d13b9eefc82df68d853e9c
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:37:28 2011 +0200
Translation update done using Pootle.
commit 6a496c35eabdd5b550a6627fa51c1a859ea81f20
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:36:40 2011 +0200
Translation update done using Pootle.
commit 8de24f455da7a76090eb986a1db441e1fd0c3175
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:36:21 2011 +0200
Translation update done using Pootle.
commit 7ce81bf04316d31847885a4a8cd7ecb02fc28549
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:35:47 2011 +0200
Translation update done using Pootle.
commit 96a94166b65f2251fc34f039a7ad5d30b4d8067d
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:35:15 2011 +0200
Translation update done using Pootle.
commit b7aafad0d031f22e4e4240c9dc9f00cd9038ebe6
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:35:04 2011 +0200
Translation update done using Pootle.
commit 1685c993c6ac2bfe7f068b8a303d55fc50ec6a01
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:34:45 2011 +0200
Translation update done using Pootle.
commit 528971f7e644110d6fdff5d54befb42a94ace433
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:34:24 2011 +0200
Translation update done using Pootle.
commit 1514b67073f529630b8f13a96a8666753def833f
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:34:08 2011 +0200
Translation update done using Pootle.
commit 235cf7eb39319a7d50dda561881be141b821ed52
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:32:54 2011 +0200
Translation update done using Pootle.
commit f48fcb3c216ac61832915288f5faa5b18f994ebc
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:32:28 2011 +0200
Translation update done using Pootle.
commit 0936dc5aa38b120130679449c7394e3f46024eeb
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:32:16 2011 +0200
Translation update done using Pootle.
commit 0f75e1658f35dec48e38821dc9289e4be1f782d3
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:31:52 2011 +0200
Translation update done using Pootle.
commit d63f9c9431679db88b456f36010af9feb6b32865
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:31:33 2011 +0200
Translation update done using Pootle.
commit 14760c182cb66341bbd12701eeca6662289debc8
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:30:21 2011 +0200
Translation update done using Pootle.
commit 4782593bc09fb5622baae7b4161d5de91ea8fead
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:30:14 2011 +0200
Translation update done using Pootle.
commit 9cb7cfa7461adeb943d3234b0ffab28e3184372c
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:29:56 2011 +0200
Translation update done using Pootle.
commit 5611a4e18e5736363cef916318ec6d9dd9ced507
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:28:46 2011 +0200
Translation update done using Pootle.
commit 8be5263eb9d5dae03b2be268c3ba586d57adbbbe
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:28:31 2011 +0200
Translation update done using Pootle.
commit 62b7b9efb98acb3ed6ce3fa3cd52962b57a1e0d2
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:28:18 2011 +0200
Translation update done using Pootle.
commit 109f8679dfbd966f71cb15055c5fb2aa9d3b387e
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:28:10 2011 +0200
Translation update done using Pootle.
commit 8a7c6b82d053420502bf16e950409dff0cbd0df3
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:27:35 2011 +0200
Translation update done using Pootle.
commit c7e1bb2048ba47c77aba8d15a4b759c8c695e571
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:27:26 2011 +0200
Translation update done using Pootle.
commit d2a6d7daae84507c61db6dbfae22e49eaecf0a2d
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:26:57 2011 +0200
Translation update done using Pootle.
commit 97ec4a4257010df6a3f86da01884b26272769506
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:26:41 2011 +0200
Translation update done using Pootle.
commit 64afb99eb9ccdef98f0053c4a5fd79a631bc9395
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:26:22 2011 +0200
Translation update done using Pootle.
commit cc2438b60638abe6991f0313f078eaa1c4d25b73
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:26:00 2011 +0200
Translation update done using Pootle.
commit b68df2e478527119245a6c7f5d7666273b6752d3
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:25:50 2011 +0200
Translation update done using Pootle.
commit 2836c68388e703ba34f3172d7d95e366f8efd2ed
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:25:29 2011 +0200
Translation update done using Pootle.
commit 60f208bdb647a98752dd2a848ab3937ac2512173
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:21:20 2011 +0200
Translation update done using Pootle.
commit 3fdd2af93eae0e542de23e1bb0eb6c66a70676fa
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:20:38 2011 +0200
Translation update done using Pootle.
commit 8c0c69cd7cd6d2db20d51776ea73c86528d5e891
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:11:16 2011 +0200
Translation update done using Pootle.
commit b1d2cfecd2cca921dfecf6b22a7b270ee60f5df9
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:11:02 2011 +0200
Translation update done using Pootle.
commit 51dea662ecac86bd624eb68a686d8a6e8012bc2a
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:10:44 2011 +0200
Translation update done using Pootle.
commit 2b721d0dc9cd3a21ac9ffd7874f6221534686d96
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:10:31 2011 +0200
Translation update done using Pootle.
commit 6451e1d31ba7f7a7702ab5d27887af904c0f4787
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:10:18 2011 +0200
Translation update done using Pootle.
commit 054fde477bc86bb4b8bf89f06b7ec174e8aab07f
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:10:05 2011 +0200
Translation update done using Pootle.
commit 58e116dbd695e54e98d714c663095e3dbf10abf9
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:09:09 2011 +0200
Translation update done using Pootle.
commit 9b6b50a66b36e4026921938d620ec02a8296ff2f
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:08:40 2011 +0200
Translation update done using Pootle.
commit 8b96195aa52c301a9f6378e81a42445b190ba8f0
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:07:02 2011 +0200
Translation update done using Pootle.
commit ec6729d364febebcbd4acbab60449a317b0e3cd0
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:06:41 2011 +0200
Translation update done using Pootle.
commit 46888618af9704213f9700cc4f4b1cccb49b4fa1
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:05:58 2011 +0200
Translation update done using Pootle.
commit 870d164ce467b450e6bae21f29d6704fc5836668
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:05:27 2011 +0200
Translation update done using Pootle.
commit f7bf4e033e115fd537a893c44538f622430f999a
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 12:04:37 2011 +0200
Translation update done using Pootle.
commit 4288b0eaf94a636d46ae693c4e230354ee0fdf5b
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:48:43 2011 +0200
Translation update done using Pootle.
commit a5632a8d6778127e159e1d94bdce031f095f8975
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:47:54 2011 +0200
Translation update done using Pootle.
commit 7b1f63e5319870869a81d0057a0ff4194ccf6e01
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:47:41 2011 +0200
Translation update done using Pootle.
commit 2be7aaf2d6da5fb2102d91a920b83e05241efc46
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:47:27 2011 +0200
Translation update done using Pootle.
commit 1083b0ef7dbfb08a3da536146bae27177286c5ca
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:27:16 2011 +0200
Translation update done using Pootle.
commit 845bc04bae7e4883ff622f70b8f153a4fea16f5d
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:26:52 2011 +0200
Translation update done using Pootle.
commit ce5f5d04aa5687d5e84ffd67b0d8a14573e94cdb
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:26:38 2011 +0200
Translation update done using Pootle.
commit 95486f52a56cd8594397677f14bfded97e4edd4b
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:26:17 2011 +0200
Translation update done using Pootle.
commit ff60373218e3abfd1f9294620fda3d1e971d11ef
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:25:41 2011 +0200
Translation update done using Pootle.
commit 099087817db112f9e88b4162d5b096d02153b9b6
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:24:01 2011 +0200
Translation update done using Pootle.
commit 95e121a9d15a00e7e8f97aab7c391169e0bee70a
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:23:22 2011 +0200
Translation update done using Pootle.
commit 1fc2cc003f12a70e92a56400b766c4a504e80746
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:21:17 2011 +0200
Translation update done using Pootle.
commit 71a1cceb375ae0658e8c2ef82e9cfda0163d8f1c
Author: any anonymous user <>
Date: Sun Dec 25 11:19:17 2011 +0200
Translation update done using Pootle.
commit e7c7ddfaa3ba4296ba8c8e1d334613555ddcca84
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:19:17 2011 +0200
Translation update done using Pootle.
commit f871d6d4966b9365ca5cbe430f174d15d3f9c541
Author: any anonymous user <>
Date: Sun Dec 25 11:19:07 2011 +0200
Translation update done using Pootle.
commit f82a6248e58bf276c1376e6873c8a8979e182d18
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:19:07 2011 +0200
Translation update done using Pootle.
commit bd0fea79414f9118a7cd8deda7ec3dbc576ab3e8
Author: any anonymous user <>
Date: Sun Dec 25 11:18:58 2011 +0200
Translation update done using Pootle.
commit b83da3d812563606dd24c39c209330e96c9cb801
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:18:57 2011 +0200
Translation update done using Pootle.
commit 382e44ced6c3471304c81b836faeb8d10cfcd332
Author: any anonymous user <>
Date: Sun Dec 25 11:18:47 2011 +0200
Translation update done using Pootle.
commit 803e917f16e048be9e5cc6d737defe42a566c6e8
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:18:47 2011 +0200
Translation update done using Pootle.
commit 308ebeae18dc38573dfa6769e63c4a1640576f8b
Author: any anonymous user <>
Date: Sun Dec 25 11:18:33 2011 +0200
Translation update done using Pootle.
commit e58001e29e66b803993cd5c9eb6ca3a4565655c5
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:18:33 2011 +0200
Translation update done using Pootle.
commit f4620c539a58d90104a62f50450db70ec104e041
Author: any anonymous user <>
Date: Sun Dec 25 11:18:25 2011 +0200
Translation update done using Pootle.
commit cee5464519f75efc36e81fb5cf86a26f12b7a93f
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:18:25 2011 +0200
Translation update done using Pootle.
commit 1aed9f7e43119a19eb637d128dd653e19c3c6be1
Author: any anonymous user <>
Date: Sun Dec 25 11:18:08 2011 +0200
Translation update done using Pootle.
commit f7cd8d5fc1533d91bdcd81fc12940414fdff377e
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:18:08 2011 +0200
Translation update done using Pootle.
commit f52628879dcc1d0009768283b75208681e39b98b
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:17:59 2011 +0200
Translation update done using Pootle.
commit 8cd1de4d9148c5c2aa84638636e213b30df81dd3
Author: any anonymous user <>
Date: Sun Dec 25 11:17:52 2011 +0200
Translation update done using Pootle.
commit 1dbfef180e8df360942260a42f16f813c3b0c55f
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:17:52 2011 +0200
Translation update done using Pootle.
commit b73af0d0b2f909223ba64227b453a309c4cb8964
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:17:42 2011 +0200
Translation update done using Pootle.
commit ef3262cbbc53f278c224b544ebf9a8c94211274b
Author: any anonymous user <>
Date: Sun Dec 25 11:17:28 2011 +0200
Translation update done using Pootle.
commit 7af2abd6dca4d82c110c1fae068c6629a476623d
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:17:28 2011 +0200
Translation update done using Pootle.
commit 5df5aae8dd4f1947f5265d5621dc46b9ad886c4c
Author: any anonymous user <>
Date: Sun Dec 25 11:17:17 2011 +0200
Translation update done using Pootle.
commit 7f53fc1019564ca1cf585f670820b457eec5b8cc
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:17:17 2011 +0200
Translation update done using Pootle.
commit 4a85416d943147cfa5b4c21517c44bff379bc1c5
Author: any anonymous user <>
Date: Sun Dec 25 11:17:07 2011 +0200
Translation update done using Pootle.
commit 249b06d788b3bba67a22a3ff92a81e202d79a058
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:17:07 2011 +0200
Translation update done using Pootle.
commit ebb360ea90693d0cbd580299b9670b3f7e43d6e6
Author: any anonymous user <>
Date: Sun Dec 25 11:17:00 2011 +0200
Translation update done using Pootle.
commit 8595f9b154d2aeb5b4c9c5d97589a725319adbcf
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:17:00 2011 +0200
Translation update done using Pootle.
commit 40cba063885b0f83346f417d9ecf936ae95ded59
Author: any anonymous user <>
Date: Sun Dec 25 11:16:46 2011 +0200
Translation update done using Pootle.
commit 840aef0d7f0820618fa1d2fc0a025b2f95cf4139
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:16:46 2011 +0200
Translation update done using Pootle.
commit 5a9ab6230b77b5aa59bdc0b32150a544bc765b2b
Author: any anonymous user <>
Date: Sun Dec 25 11:16:37 2011 +0200
Translation update done using Pootle.
commit fd7b1badf9f909d3da0c1c0040579e78a5bde768
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:16:37 2011 +0200
Translation update done using Pootle.
commit c8ea2e5bc1e9ac6bc2776b2cff9985feb2a62792
Author: any anonymous user <>
Date: Sun Dec 25 11:16:27 2011 +0200
Translation update done using Pootle.
commit dcb9f91edf5df1bfa1a120f198287a343453ae92
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:16:27 2011 +0200
Translation update done using Pootle.
commit 4fd9481c305184f39ed338b78c5ce1b7a0a0576a
Author: any anonymous user <>
Date: Sun Dec 25 11:16:20 2011 +0200
Translation update done using Pootle.
commit ebcf902be0cd5b48b858077f7cfdfd22e59eed8c
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:16:19 2011 +0200
Translation update done using Pootle.
commit 27b9967d1a2528f486285139c912836aec586014
Author: any anonymous user <>
Date: Sun Dec 25 11:16:04 2011 +0200
Translation update done using Pootle.
commit 2de99f85075acc15ef06199ddf63f9a53b08fd63
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:16:04 2011 +0200
Translation update done using Pootle.
commit 2f49cb42e6fb04d79dbe679a3618e880175d5d5b
Author: any anonymous user <>
Date: Sun Dec 25 11:15:53 2011 +0200
Translation update done using Pootle.
commit 7ad91b21e05ca8e21815da3e21eaaef7aa776858
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:15:53 2011 +0200
Translation update done using Pootle.
commit b1182d8e6699f905f145d0955544c143b825ec09
Author: any anonymous user <>
Date: Sun Dec 25 11:15:42 2011 +0200
Translation update done using Pootle.
commit e332cc74b9728e454d7d8714f9f360542bb78bc5
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:15:42 2011 +0200
Translation update done using Pootle.
commit cb74422cce99c300f6c6432efb73fd4c672e1cf0
Author: any anonymous user <>
Date: Sun Dec 25 11:15:28 2011 +0200
Translation update done using Pootle.
commit e12241963a74e6ff9fae0561821ea6c1b13110ee
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:15:28 2011 +0200
Translation update done using Pootle.
commit 906a4f6047a5b134001dfc1aa3ea850c3733b206
Author: any anonymous user <>
Date: Sun Dec 25 11:15:05 2011 +0200
Translation update done using Pootle.
commit 7c22aee321a79dd259d97eb7775aa4c5bdaeb023
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:15:05 2011 +0200
Translation update done using Pootle.
commit d755fa98517ec65e388be8bed90ce46e53be631b
Author: any anonymous user <>
Date: Sun Dec 25 11:14:37 2011 +0200
Translation update done using Pootle.
commit 1962535476242c3ef1eb28c5b7aaca2a3c46a74e
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:14:36 2011 +0200
Translation update done using Pootle.
commit 3f0cc3f46851e4464062419d3bb3f1cc0794695a
Author: any anonymous user <>
Date: Sun Dec 25 11:14:16 2011 +0200
Translation update done using Pootle.
commit fc5d0879c6ca6d1632b9dda18dc7e0551c17d3d3
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:14:16 2011 +0200
Translation update done using Pootle.
commit 0375f2210bacd0460b7e2b4d957f186d30991eb7
Author: any anonymous user <>
Date: Sun Dec 25 11:13:44 2011 +0200
Translation update done using Pootle.
commit a21eeec914ffa62766eefd41247e6f2047b70822
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:13:44 2011 +0200
Translation update done using Pootle.
commit d6d6bf30117649bf3cd19f8efbdd68df864d9b44
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:13:19 2011 +0200
Translation update done using Pootle.
commit c2631db704f6f1c26168822af55e176d9b09238f
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:12:34 2011 +0200
Translation update done using Pootle.
commit 7b66a6909c3ec2f350007cceca823db9034bb919
Author: any anonymous user <>
Date: Sun Dec 25 11:12:26 2011 +0200
Translation update done using Pootle.
commit 3876f597ffed6646553fb86ec971651de1a25bdd
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:12:26 2011 +0200
Translation update done using Pootle.
commit 1016fa3052656b0e02f56b82fa6e294a0d55a8b1
Author: any anonymous user <>
Date: Sun Dec 25 11:11:51 2011 +0200
Translation update done using Pootle.
commit f14eebb8ddbc87d47513f8f7d1969069f05d3e6c
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:11:50 2011 +0200
Translation update done using Pootle.
commit 268e5b0607eb2d6fb63bc4a306c75aa9fe2116c9
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:11:34 2011 +0200
Translation update done using Pootle.
commit 7dec4da008fa005be10a7730da387ba706708f7d
Author: any anonymous user <>
Date: Sun Dec 25 11:10:41 2011 +0200
Translation update done using Pootle.
commit 352246d44942cd0c43a7e5fa73948f60b22e4b76
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:10:41 2011 +0200
Translation update done using Pootle.
commit 646c40c0dc60c299da8a894382e485f4fbf22331
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:10:31 2011 +0200
Translation update done using Pootle.
commit fb971198fb53b9f6d24d696b30814b9c4eb4a9fd
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:10:14 2011 +0200
Translation update done using Pootle.
commit 271a99272a4889fbd315b7eb614c26de5933daa7
Author: any anonymous user <>
Date: Sun Dec 25 11:09:19 2011 +0200
Translation update done using Pootle.
commit d7610156b27d563e10e18a6f67adb06d5add1d7c
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:09:18 2011 +0200
Translation update done using Pootle.
commit ae472cee165640922cba0d610ddc64541396eec5
Author: any anonymous user <>
Date: Sun Dec 25 11:08:44 2011 +0200
Translation update done using Pootle.
commit 703dc58b0d55ffc2663c8eeb5f019cb0c7af1106
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:08:44 2011 +0200
Translation update done using Pootle.
commit 8b05eca4209a306cbcffec69c8c43f79f046c452
Author: any anonymous user <>
Date: Sun Dec 25 11:08:33 2011 +0200
Translation update done using Pootle.
commit 3271411be07c8cdf4bb9c42f2d825f9b430cb51c
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:08:33 2011 +0200
Translation update done using Pootle.
commit 4f473a4f8b5c110f341abaf526c25d7799970601
Author: any anonymous user <>
Date: Sun Dec 25 11:07:27 2011 +0200
Translation update done using Pootle.
commit 2f0628f71b695cc71bd1f9466fbc34f20da45f14
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:07:27 2011 +0200
Translation update done using Pootle.
commit 212b717ee782228dc2fb0ad686a3df9eb5b1b744
Author: any anonymous user <>
Date: Sun Dec 25 11:07:21 2011 +0200
Translation update done using Pootle.
commit f64bc2b38fa94deaea1aedfa5aa1d20083bc45d5
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:07:20 2011 +0200
Translation update done using Pootle.
commit 7ba9fc4fbdb2e7837ac25811aa841bc75b2c718e
Author: any anonymous user <>
Date: Sun Dec 25 11:07:08 2011 +0200
Translation update done using Pootle.
commit 94b5267763b1e5ab1ee27202052eb6b2f430908d
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:07:08 2011 +0200
Translation update done using Pootle.
commit 9c4aaa616a8ad125297f3ef141283588fe8eb0b3
Author: any anonymous user <>
Date: Sun Dec 25 11:07:01 2011 +0200
Translation update done using Pootle.
commit c9de3c89f3e619327f7454f3336869b68e28592e
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:07:00 2011 +0200
Translation update done using Pootle.
commit 26da0693d5cc677436e85febcec1b925eec0cfb4
Author: any anonymous user <>
Date: Sun Dec 25 11:06:54 2011 +0200
Translation update done using Pootle.
commit ad752efed095a6fdbd03662f8c6c4e9b3be1599b
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:06:54 2011 +0200
Translation update done using Pootle.
commit 46b2b294fd7ca6dbb1e30a8c641a8cd7a9bb2d36
Author: any anonymous user <>
Date: Sun Dec 25 11:06:45 2011 +0200
Translation update done using Pootle.
commit e18021631bd4860c5d6955710a5c9ad83fbc789c
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:06:45 2011 +0200
Translation update done using Pootle.
commit 4a040a9468bcd8b2f757abbda70a346fd0ad5f0e
Author: any anonymous user <>
Date: Sun Dec 25 11:06:35 2011 +0200
Translation update done using Pootle.
commit 31a375902f31bcf529503322611b90def4f5fdcd
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:06:35 2011 +0200
Translation update done using Pootle.
commit de55ae1741313b4e87e074d998eab2f66db9c285
Author: any anonymous user <>
Date: Sun Dec 25 11:06:27 2011 +0200
Translation update done using Pootle.
commit 2c8753f4310cfdf1c902bd72296fe8b9a17e0280
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:06:27 2011 +0200
Translation update done using Pootle.
commit 26d9a4a20cd9d956e7036550891a6d03fcf4692d
Author: any anonymous user <>
Date: Sun Dec 25 11:06:12 2011 +0200
Translation update done using Pootle.
commit ea109e574ddef6979e30a0db1e8247c94a489a55
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:06:11 2011 +0200
Translation update done using Pootle.
commit 51d0466c33151e225153d6df70695b83275cdb5c
Author: any anonymous user <>
Date: Sun Dec 25 11:06:06 2011 +0200
Translation update done using Pootle.
commit ed6b7240d6244bb84a19c35b75733d892c59cda1
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:06:06 2011 +0200
Translation update done using Pootle.
commit 37e1348d71c07d8f6c09edb40d6701b040bbfacc
Author: any anonymous user <>
Date: Sun Dec 25 11:05:54 2011 +0200
Translation update done using Pootle.
commit 40a6d91e23451ef5210475d1abe0632c7d1ff95e
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:05:53 2011 +0200
Translation update done using Pootle.
commit 7066d35f70feebe4496249d7c84cce20995d3a7f
Author: any anonymous user <>
Date: Sun Dec 25 11:05:47 2011 +0200
Translation update done using Pootle.
commit 6507f79e6fe81bd6b1958751f1c8c2eeb065c49e
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:05:47 2011 +0200
Translation update done using Pootle.
commit 3c9a6b4da7cfea6235e627312f77ac094684bb26
Author: any anonymous user <>
Date: Sun Dec 25 11:05:37 2011 +0200
Translation update done using Pootle.
commit 28f6014e968f18582242de2e1f1e55cc1fab950c
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:05:37 2011 +0200
Translation update done using Pootle.
commit ad591184f7f4a6b75ed30837c420d0e99f1469e9
Author: any anonymous user <>
Date: Sun Dec 25 11:05:22 2011 +0200
Translation update done using Pootle.
commit 634db79a36f4c0b14030c8d2249ab147a04f4a32
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:05:22 2011 +0200
Translation update done using Pootle.
commit 3fed895f305a0d299e86ecee53bcd26b8cfed713
Author: any anonymous user <>
Date: Sun Dec 25 11:05:10 2011 +0200
Translation update done using Pootle.
commit bae06e00c73bc0495bb5f024a94d55a0cdc568b8
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:05:10 2011 +0200
Translation update done using Pootle.
commit 28ec9a273405591fc0dc97941d1fd6eda53c11bd
Author: any anonymous user <>
Date: Sun Dec 25 11:05:01 2011 +0200
Translation update done using Pootle.
commit c07bb6e80b3d06066e69a7ace97e4db02b5e6808
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:05:00 2011 +0200
Translation update done using Pootle.
commit 59f5002a9a51624f8f6a64e2acba62ecf0a779fd
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:04:54 2011 +0200
Translation update done using Pootle.
commit fe1ef0357c6042744c8c39cd6979db4bacd6981b
Author: any anonymous user <>
Date: Sun Dec 25 11:04:29 2011 +0200
Translation update done using Pootle.
commit 39d7b7454e51145d15627164630acf88de4130a2
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:04:29 2011 +0200
Translation update done using Pootle.
commit fcae89b89885eb609280d1e784e8ed2b94df60c0
Author: any anonymous user <>
Date: Sun Dec 25 11:04:19 2011 +0200
Translation update done using Pootle.
commit 2f27cdbb78248e663dbcccacfa4cd6663794775d
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:04:19 2011 +0200
Translation update done using Pootle.
commit 46d42156330d2103872be3b13cf598358a510bad
Author: any anonymous user <>
Date: Sun Dec 25 11:04:03 2011 +0200
Translation update done using Pootle.
commit 643676a36d6b14ec1a3f96efec6728207e4aeb3f
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:04:03 2011 +0200
Translation update done using Pootle.
commit d23d459ff0bead886a4c712a024ee0322d20d2a0
Author: any anonymous user <>
Date: Sun Dec 25 11:03:52 2011 +0200
Translation update done using Pootle.
commit 74bcc24bd7df9f3465594ab3b06835afa0524f85
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:03:52 2011 +0200
Translation update done using Pootle.
commit cec2c7e993bfeca28c092ff3f0da14006b7cb8ea
Author: any anonymous user <>
Date: Sun Dec 25 11:03:37 2011 +0200
Translation update done using Pootle.
commit 15e032bf10ef161d95d7cf459d5e35e5f8ed281a
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:03:37 2011 +0200
Translation update done using Pootle.
commit c9df855ecf0c595accfc3bc5ddc7b13fa4acdb38
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:03:15 2011 +0200
Translation update done using Pootle.
commit 9bd17f3bf76f1f375793cfadb2b0db8bb432cfe4
Author: any anonymous user <>
Date: Sun Dec 25 11:02:48 2011 +0200
Translation update done using Pootle.
commit 2d1ecd714d07c1703a46f01166dd006503d4d73d
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:02:48 2011 +0200
Translation update done using Pootle.
commit 4dd9019a0d540e7cce1a3180c0323e1395483aaf
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:02:25 2011 +0200
Translation update done using Pootle.
commit f12b784885617bc57757986c43aa4896bd87609b
Author: any anonymous user <>
Date: Sun Dec 25 11:02:11 2011 +0200
Translation update done using Pootle.
commit dc9c112be5c3e808ccaf147572fa4059c0d153be
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:02:11 2011 +0200
Translation update done using Pootle.
commit 08de49a2a3ce8045926d8231dd2b46ed9b08f193
Author: any anonymous user <>
Date: Sun Dec 25 11:01:45 2011 +0200
Translation update done using Pootle.
commit e673eda0494292d004b11336a339ee0bcde2df04
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:01:45 2011 +0200
Translation update done using Pootle.
commit 54b876291d68e716f50ea701ae7deab4572c4872
Author: any anonymous user <>
Date: Sun Dec 25 11:01:31 2011 +0200
Translation update done using Pootle.
commit 56a7aa996829749322c80731f319caba6595c94e
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:01:31 2011 +0200
Translation update done using Pootle.
commit 721134df35bb17163c4a7ce8d6202b55a30e095d
Author: any anonymous user <>
Date: Sun Dec 25 11:00:41 2011 +0200
Translation update done using Pootle.
commit 405c81f3e5515b10cf29ae2a06d3d8ece4e25cd9
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:00:41 2011 +0200
Translation update done using Pootle.
commit fb2631353c3880c248775c9f35f4876b7bd5ff88
Author: any anonymous user <>
Date: Sun Dec 25 11:00:31 2011 +0200
Translation update done using Pootle.
commit f3e7fc44ec4d92a343663cd679c374758ab1aa9f
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:00:31 2011 +0200
Translation update done using Pootle.
commit 166cebd6c8272a9b673895d073f3a0afe7325217
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 11:00:14 2011 +0200
Translation update done using Pootle.
commit 284e385169e380c86db58c2d2936dcebe3dbdf0e
Author: any anonymous user <>
Date: Sun Dec 25 10:59:59 2011 +0200
Translation update done using Pootle.
commit bbaf51118bcb261706d0dca15b6a007ba1dbf784
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 10:59:59 2011 +0200
Translation update done using Pootle.
commit 604acb1bca8ae87381bdd18f2b4e598618b3dcc5
Author: any anonymous user <>
Date: Sun Dec 25 10:59:43 2011 +0200
Translation update done using Pootle.
commit 992db86634c6f7cb6a831147b6b836febb80c0d8
Author: Martin Lacina <martin(a)whistler.sk>
Date: Sun Dec 25 10:59:42 2011 +0200
Translation update done using Pootle.
commit 7f27d8b75cf43afcb19709f3badbf23c989b3d50
Author: ProUser <stefan(a)inkopsforum.se>
Date: Sun Dec 25 02:03:57 2011 +0200
Translation update done using Pootle.
commit 42b95e3bfb708f1ce7a98e8feb5ebf318ee0686e
Merge: 6175fa3 25b78be
Author: Pootle server <pootle(a)cihar.com>
Date: Sat Dec 24 18:40:12 2011 +0100
Merge remote-tracking branch 'origin/master'
commit 6175fa3a54ef9c3173e956d792fe8ff4276034b5
Author: ProUser <stefan(a)inkopsforum.se>
Date: Sat Dec 24 10:39:54 2011 +0200
Translation update done using Pootle.
commit 95a79cab4140ef9a5d470a610dd7e3178def7b62
Author: ProUser <stefan(a)inkopsforum.se>
Date: Sat Dec 24 10:39:05 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/sk.po | 341 +++++++++++++++++++++++++++-----------------------------------
po/sv.po | 13 +--
2 files changed, 152 insertions(+), 202 deletions(-)
diff --git a/po/sk.po b/po/sk.po
index ed8663d..742858a 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-12-19 14:44+0100\n"
-"PO-Revision-Date: 2011-12-12 15:28+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2011-12-25 12:45+0200\n"
+"Last-Translator: Martin Lacina <martin(a)whistler.sk>\n"
"Language-Team: slovak <sk(a)li.org>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
@@ -35,7 +35,7 @@ msgid ""
"cross-window updates."
msgstr ""
"Cieľové okno prehliadača nemohlo byť aktualizované. Možno ste zatvorili "
-"rodičovské okno, alebo prehliadač blokuje operácie medzi oknami z dôvodu "
+"nadradené okno, alebo prehliadač blokuje operácie medzi oknami z dôvodu "
"bezpečnostných nastavení."
#: browse_foreigners.php:156 libraries/common.lib.php:3126
@@ -109,7 +109,7 @@ msgstr "Chyba pri čítaní hlavičiek"
#: bs_disp_as_mime_type.php:41
msgid "Failed to open remote URL"
-msgstr "Nepodarilo sa otvoriť vzdialene URL"
+msgstr "Nepodarilo sa otvoriť vzdialenú URL adresu"
#: changelog.php:32 license.php:28
#, php-format
@@ -117,8 +117,8 @@ msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
msgstr ""
-"Súbor %s nebol nájdený na tomto systéme, viac informácií nájdete na www."
-"phpmyadmin.net stránke."
+"Súbor %s nebol nájdený na tomto systéme, viac informácií nájdete na stránke "
+"www.phpmyadmin.net."
#: db_create.php:60
#, php-format
@@ -145,7 +145,7 @@ msgstr "Komentár k tabuľke"
#: tbl_relation.php:395 tbl_tracking.php:257 tbl_tracking.php:308
#: tbl_zoom_select.php:433
msgid "Column"
-msgstr "Stĺpce"
+msgstr "Stĺpec"
#: db_datadict.php:163 db_printview.php:103 libraries/Index.class.php:441
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:250
@@ -248,7 +248,7 @@ msgstr "Zobraziť dump (schému) databázy"
#: db_export.php:30 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
#: export.php:354 navigation.php:296
msgid "No tables found in database."
-msgstr "Neboli nájdené žiadne tabuľky v tejto datábaze."
+msgstr "Neboli nájdené žiadne tabuľky v tejto databáze."
#: db_export.php:40 db_search.php:319 server_export.php:26
msgid "Select All"
@@ -270,7 +270,7 @@ msgstr "Databáza %s bola premenovaná na %s"
#: db_operations.php:284
#, php-format
msgid "Database %s has been copied to %s"
-msgstr "Databáza %s bola skopírovaná na %s"
+msgstr "Databáza %s bola skopírovaná do %s"
#: db_operations.php:412
msgid "Rename database to"
@@ -291,7 +291,7 @@ msgstr "Odstrániť databázu (DROP)"
#: db_operations.php:484
msgid "Copy database to"
-msgstr "Skopírovať databázu na"
+msgstr "Skopírovať databázu do"
#: db_operations.php:491 tbl_operations.php:552 tbl_tracking.php:409
msgid "Structure only"
@@ -413,10 +413,10 @@ msgid "You have to choose at least one column to display"
msgstr "Zvolte prosím aspoň jeden stĺpec, ktorý chcete zobraziť"
#: db_qbe.php:186
-#, fuzzy, php-format
+#, php-format
#| msgid "visual builder"
msgid "Switch to %svisual builder%s"
-msgstr "vizuálneho návrhára"
+msgstr "Prepnúť do %svizuálneho návrhára%s"
#: db_qbe.php:222 libraries/db_structure.lib.php:90
#: libraries/display_tbl.lib.php:1002
@@ -806,30 +806,27 @@ msgstr "Databázový log"
#: enum_editor.php:23 js/messages.php:265
#: libraries/rte/rte_routines.lib.php:690
msgid "ENUM/SET editor"
-msgstr ""
+msgstr "Upraviť ENUM/SET"
#: enum_editor.php:28 js/messages.php:267
-#, fuzzy
#| msgid "Values for the column \"%s\""
msgid "Values for a new column"
-msgstr "Hodnoty pre pole \"%s\""
+msgstr "Hodnoty pre nové pole \"%s\""
#: enum_editor.php:30 js/messages.php:266
-#, fuzzy, php-format
+#, php-format
#| msgid "Values for the column \"%s\""
msgid "Values for column %s"
-msgstr "Hodnoty pre pole \"%s\""
+msgstr "Hodnoty pre pole %s"
#: enum_editor.php:34 js/messages.php:268
-#, fuzzy
#| msgid "Enter each value in a separate field."
msgid "Enter each value in a separate field"
-msgstr "Zadajte každú hodnotu do samostatného políčka."
+msgstr "Zadajte každú hodnotu do samostatného poľa."
#: enum_editor.php:123
-#, fuzzy
msgid "Add a value"
-msgstr "Pridať nového používateľa"
+msgstr "Pridať hodnotu"
#: enum_editor.php:129 gis_data_editor.php:317
msgid "Output"
@@ -840,19 +837,17 @@ msgid "Copy and paste the joined values into the \"Length/Values\" field"
msgstr "Skopírujte spojené hodnoty do poľa \"Dĺžka/Hodnoty\""
#: export.php:29
-#, fuzzy
#| msgid "Bar type"
msgid "Bad type!"
-msgstr "Typ stĺpca"
+msgstr "Nesprávny typ!"
#: export.php:77
msgid "Selected export type has to be saved in file!"
msgstr "Vybraný typ exportu musí byť uložený do súboru!"
#: export.php:106
-#, fuzzy
msgid "Bad parameters!"
-msgstr "Odstrániť index/indexy"
+msgstr "Chybné parametre!"
#: export.php:166 export.php:191 export.php:652
#, php-format
@@ -878,24 +873,23 @@ msgid "Dump has been saved to file %s."
msgstr "Výpis bol uložený do súboru %s."
#: file_echo.php:21
-#, fuzzy
#| msgid "Export type"
msgid "Invalid export type"
-msgstr "Typ exportu"
+msgstr "Chybný typ exportu"
#: gis_data_editor.php:84
-#, fuzzy, php-format
+#, php-format
#| msgid "Values for the column \"%s\""
msgid "Value for the column \"%s\""
-msgstr "Hodnoty pre pole \"%s\""
+msgstr "Hodnota pre pole \"%s\""
#: gis_data_editor.php:113 tbl_gis_visualization.php:172
msgid "Use OpenStreetMaps as Base Layer"
-msgstr ""
+msgstr "Použíť OpenStreetMap ako základnú vrstvu"
#: gis_data_editor.php:134
msgid "SRID"
-msgstr ""
+msgstr "SRID"
#: gis_data_editor.php:151 js/messages.php:322
#: libraries/display_tbl.lib.php:692
@@ -904,78 +898,74 @@ msgstr "Geometria"
#: gis_data_editor.php:172 js/messages.php:318
msgid "Point"
-msgstr ""
+msgstr "Bod"
#: gis_data_editor.php:173 gis_data_editor.php:197 gis_data_editor.php:245
#: gis_data_editor.php:297 js/messages.php:316
msgid "X"
-msgstr ""
+msgstr "X"
#: gis_data_editor.php:175 gis_data_editor.php:199 gis_data_editor.php:247
#: gis_data_editor.php:299 js/messages.php:317
msgid "Y"
-msgstr ""
+msgstr "Y"
#: gis_data_editor.php:195 gis_data_editor.php:243 gis_data_editor.php:295
#: js/messages.php:319
#, php-format
msgid "Point %d"
-msgstr ""
+msgstr "Bod %d"
#: gis_data_editor.php:204 gis_data_editor.php:250 gis_data_editor.php:302
#: js/messages.php:325
-#, fuzzy
#| msgid "Add index"
msgid "Add a point"
-msgstr "Pridať index"
+msgstr "Pridať bod"
#: gis_data_editor.php:220 js/messages.php:320
-#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
-msgstr "Riadky ukončené"
+msgstr "Linka"
#: gis_data_editor.php:223 gis_data_editor.php:279 js/messages.php:324
msgid "Outer Ring"
-msgstr ""
+msgstr "Vonkajší obrys"
#: gis_data_editor.php:225 gis_data_editor.php:281 js/messages.php:323
msgid "Inner Ring"
-msgstr ""
+msgstr "Vnútorný obrys"
#: gis_data_editor.php:252
-#, fuzzy
#| msgid "Add a new User"
msgid "Add a linestring"
-msgstr "Pridať nového používateľa"
+msgstr "Pridať linku"
#: gis_data_editor.php:252 gis_data_editor.php:304 js/messages.php:326
-#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
-msgstr "Pridať nového používateľa"
+msgstr "Pridať vnútorný obrys"
#: gis_data_editor.php:266 js/messages.php:321
msgid "Polygon"
-msgstr ""
+msgstr "Polygón"
#: gis_data_editor.php:306 js/messages.php:327
-#, fuzzy
#| msgid "Add column"
msgid "Add a polygon"
-msgstr "Pridať stĺpec"
+msgstr "Pridať polygón"
#: gis_data_editor.php:310
-#, fuzzy
#| msgid "Geometry"
msgid "Add geometry"
-msgstr "Geometria"
+msgstr "Pridať geometriu"
#: gis_data_editor.php:318
msgid ""
"Chose \"GeomFromText\" from the \"Function\" column and paste the below "
"string into the \"Value\" field"
msgstr ""
+"Z voľby „Funkcie“ zvoľte „GeomFromText“ a vložte nižšie uvedený text ako "
+"hodnotu"
#: import.php:57
#, php-format
@@ -1023,7 +1013,7 @@ msgstr ""
#: import.php:366
msgid ""
"Cannot convert file's character set without character set conversion library"
-msgstr ""
+msgstr "Bez potrebnej knižnice nemožno previesť konverziu znakovej sady"
#: import.php:390 libraries/display_import.lib.php:23
msgid "Could not load import plugins, please check your installation!"
@@ -1084,7 +1074,7 @@ msgstr "Skutočne chcete vykonať príkaz "
#: js/messages.php:31 libraries/mult_submits.inc.php:280 sql.php:333
msgid "You are about to DESTROY a complete database!"
-msgstr "Chystáte sa ZRUŠIŤ celú databázu!"
+msgstr "Chystáte sa ZMAZAŤ celú databázu!"
#: js/messages.php:32
msgid "You are about to DESTROY a complete table!"
@@ -1125,22 +1115,20 @@ msgid "This is not a number!"
msgstr "Toto nie je číslo!"
#: js/messages.php:46
-#, fuzzy
#| msgid "Add index"
msgid "Add Index"
msgstr "Pridať index"
#: js/messages.php:47
-#, fuzzy
#| msgid "Edit mode"
msgid "Edit Index"
-msgstr "Režim úprav"
+msgstr "Upraviť index"
#: js/messages.php:48 tbl_indexes.php:293
-#, fuzzy, php-format
+#, php-format
#| msgid "Add %s column(s)"
msgid "Add %d column(s) to index"
-msgstr "Pridať %s stĺpcov"
+msgstr "Pridať %d polí do indexu"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:52
@@ -1254,10 +1242,9 @@ msgstr "Spojenia/Procesy"
#. l10n: Questions is the name of a MySQL Status variable
#: js/messages.php:87
-#, fuzzy
#| msgid "Connections since last refresh"
msgid "Questions since last refresh"
-msgstr "Spojení od posledného obnovenia"
+msgstr "Dotazov od posledného obnovenia"
#. l10n: Questions is the name of a MySQL Status variable
#: js/messages.php:89
@@ -1269,10 +1256,9 @@ msgid "Query statistics"
msgstr "Štatistika dopytov"
#: js/messages.php:94
-#, fuzzy
#| msgid "Failed to read configuration file"
msgid "Local monitor configuration incompatible"
-msgstr "Nepodarilo sa načítať konfiguračný súbor"
+msgstr "Vaše nastavenie monitoru nie je kompatibilné"
#: js/messages.php:95
msgid ""
@@ -1281,24 +1267,24 @@ msgid ""
"likely that your current configuration will not work anymore. Please reset "
"your configuration to default in the <i>Settings</i> menu."
msgstr ""
+"Usporiadanie grafov uložené vo vašem prehliadači nie je kompatibilné s touto "
+"verziou monitora a pravdepodobne nebude fungovať správne. Prosím, obnovte "
+"východzie nastavenie v ponuke <i>Nastavenia</i>."
#: js/messages.php:97
-#, fuzzy
#| msgid "Query cache"
msgid "Query cache efficiency"
-msgstr "Vyrovnávacia pamäť príkazov"
+msgstr "Úspešnosť vyrovnávacej pamäte príkazov"
#: js/messages.php:98
-#, fuzzy
#| msgid "Query cache"
msgid "Query cache usage"
-msgstr "Vyrovnávacia pamäť príkazov"
+msgstr "Využitie vyrovnávacej pamäte príkazov"
#: js/messages.php:99
-#, fuzzy
#| msgid "Query cache"
msgid "Query cache used"
-msgstr "Vyrovnávacia pamäť príkazov"
+msgstr "Využitá vyrovnávacia pamäť príkazov"
#: js/messages.php:101
msgid "System CPU Usage"
@@ -1329,64 +1315,56 @@ msgid "Average load"
msgstr "Priemerné vyťaženie"
#: js/messages.php:108
-#, fuzzy
#| msgid "System memory"
msgid "Total memory"
-msgstr "Systémová pamäť"
+msgstr "Celková pamäť"
#: js/messages.php:109
-#, fuzzy
#| msgid "System memory"
msgid "Cached memory"
-msgstr "Systémová pamäť"
+msgstr "Vyrovnávacia pamäť"
#: js/messages.php:110
-#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
-msgstr "Vyrovnávacia Pamäť"
+msgstr "Vyrovnávacia pamäť"
#: js/messages.php:111
-#, fuzzy
#| msgid "System memory"
msgid "Free memory"
-msgstr "Systémová pamäť"
+msgstr "Voľná pamäť"
#: js/messages.php:112
-#, fuzzy
#| msgid "System memory"
msgid "Used memory"
-msgstr "Systémová pamäť"
+msgstr "Využitá pamäť"
#: js/messages.php:114
-#, fuzzy
#| msgid "Total"
msgid "Total Swap"
-msgstr "Celkom"
+msgstr "Swap celkom"
#: js/messages.php:115
msgid "Cached Swap"
-msgstr ""
+msgstr "Cachovaný swap"
#: js/messages.php:116
msgid "Used Swap"
-msgstr ""
+msgstr "Využitý swap"
#: js/messages.php:117
-#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
-msgstr "Prázdnych stránok"
+msgstr "Voľný swap"
#: js/messages.php:119
msgid "Bytes sent"
-msgstr ""
+msgstr "Odoslaných bajtov"
#: js/messages.php:120
-#, fuzzy
#| msgid "Received"
msgid "Bytes received"
-msgstr "Prijaté"
+msgstr "Prijatých bajtov"
#: js/messages.php:121 server_status.php:1140
msgid "Connections"
@@ -1418,11 +1396,11 @@ msgid "EiB"
msgstr "EiB"
#: js/messages.php:132
-#, fuzzy, php-format
+#, php-format
#| msgid "%s table"
#| msgid_plural "%s tables"
msgid "%d table(s)"
-msgstr "%s tabuľka"
+msgstr "%d tabuliek"
#. l10n: Questions is the name of a MySQL Status variable
#: js/messages.php:135
@@ -1443,10 +1421,9 @@ msgid "Remove chart"
msgstr "Odstrániť graf"
#: js/messages.php:139
-#, fuzzy
#| msgid "Edit labels and series"
msgid "Edit title and labels"
-msgstr "Upraviť popisy a série"
+msgstr "Upraviť názov a popisy"
#: js/messages.php:140
msgid "Add chart to grid"
@@ -1466,11 +1443,11 @@ msgstr "Žiadny"
#: js/messages.php:144
msgid "Resume monitor"
-msgstr ""
+msgstr "Obnoviť monitor"
#: js/messages.php:145
msgid "Pause monitor"
-msgstr ""
+msgstr "Prerušiť monitor"
#: js/messages.php:147
msgid "general_log and slow_query_log are enabled."
@@ -1490,11 +1467,11 @@ msgstr "slow_query_log a general_log sú zakázané."
#: js/messages.php:151
msgid "log_output is not set to TABLE."
-msgstr ""
+msgstr "log_output nie je nastavený do tabuľky."
#: js/messages.php:152
msgid "log_output is set to TABLE."
-msgstr ""
+msgstr "log_output je nastavený do tabuľky."
#: js/messages.php:153
#, php-format
@@ -1503,65 +1480,69 @@ msgid ""
"than %d seconds. It is advisable to set this long_query_time 0-2 seconds, "
"depending on your system."
msgstr ""
+"slow_query_log je povolený, ale server zaznamená jen dotazy dlhšie než %d "
+"sekúnd. Doporučujeme nastaviť premennú long_query_time na 0-2 sekundy, v "
+"závislosti na zaťažení vášho systému."
#: js/messages.php:154
#, php-format
msgid "long_query_time is set to %d second(s)."
-msgstr ""
+msgstr "long_query_time je nastavený na %d sekúnd."
#: js/messages.php:155
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
+"Nasledujíce zmeny budú vykonané globálne, ktoré budú platné do reštartu "
+"servera:"
#. l10n: %s is FILE or TABLE
#: js/messages.php:157
-#, fuzzy, php-format
+#, php-format
#| msgid "Save output to a file"
msgid "Set log_output to %s"
-msgstr "Uložiť výstup do suboru"
+msgstr "Nastaviť log_output do %s"
#. l10n: Enable in this context means setting a status variable to ON
#: js/messages.php:159
-#, fuzzy, php-format
+#, php-format
#| msgid "Enabled"
msgid "Enable %s"
-msgstr "Zapnuté"
+msgstr "Zapnúť %s"
#. l10n: Disable in this context means setting a status variable to OFF
#: js/messages.php:161
-#, fuzzy, php-format
+#, php-format
#| msgid "Disable"
msgid "Disable %s"
-msgstr "Vypnuté"
+msgstr "Vypnúť %s"
#. l10n: %d seconds
#: js/messages.php:163
#, php-format
msgid "Set long_query_time to %ds"
-msgstr ""
+msgstr "Nastaviť long_query_time na %ds"
#: js/messages.php:164
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
+"Nemôžete zmeniť tieto premenné. Prihláste sa prosím ako root alebo "
+"kontaktujte vášho správcu databázy."
#: js/messages.php:165
-#, fuzzy
#| msgid "Manage your settings"
msgid "Change settings"
-msgstr "Spravovať svoje nastavenia"
+msgstr "Zmeniť nastavenia"
#: js/messages.php:166
-#, fuzzy
#| msgid "More settings"
msgid "Current settings"
-msgstr "Ďalšie nastavenia"
+msgstr "Aktuálne nastavenia"
#: js/messages.php:168 server_status.php:1640
-#, fuzzy
#| msgid "Chart title"
msgid "Chart Title"
msgstr "Názov grafu"
@@ -1569,30 +1550,29 @@ msgstr "Názov grafu"
#. l10n: As in differential values
#: js/messages.php:170
msgid "Differential"
-msgstr ""
+msgstr "Rozdiely"
#: js/messages.php:171
#, php-format
msgid "Divided by %s:"
-msgstr ""
+msgstr "Delené %s:"
#: js/messages.php:173
msgid "From slow log"
-msgstr ""
+msgstr "Z záznamu pomalých dopytov"
#: js/messages.php:174
msgid "From general log"
-msgstr ""
+msgstr "Z všeobecného logu"
#: js/messages.php:175
msgid "Analysing & loading logs. This may take a while."
-msgstr ""
+msgstr "Načítavam a analyzujem záznamy. Môže to chvíľu trvať."
#: js/messages.php:176
-#, fuzzy
#| msgid "Read requests"
msgid "Cancel request"
-msgstr "Požiadavkov na čítanie"
+msgstr "Zrušiť požiadavku"
#: js/messages.php:177
msgid ""
@@ -1611,28 +1591,29 @@ msgstr ""
#: js/messages.php:179
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
+"Záznamy boli načítané. V tomto časovom rozmedzí boli vykonané nasledujúce "
+"dopyty:"
#: js/messages.php:181
-#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
-msgstr "Prejsť do databázy"
+msgstr "Prejsť na tabuľku so záznamami"
#: js/messages.php:182
msgid "Log analysed, but no data found in this time span."
msgstr ""
+"Záznamy boli skontrolované, ale v tomto časovom rozmedzí neboli nájdené "
+"žiadne údaje."
#: js/messages.php:184
-#, fuzzy
#| msgid "Analyze"
msgid "Analyzing..."
-msgstr "Analyzovať"
+msgstr "Analyzujem..."
#: js/messages.php:185
-#, fuzzy
#| msgid "Explain SQL"
msgid "Explain output"
-msgstr "Vysvetliť SQL"
+msgstr "Vysvetliť výstup"
#: js/messages.php:187 js/messages.php:487 libraries/rte/rte_list.lib.php:62
#: libraries/rte/rte_triggers.lib.php:326 server_status.php:1236 sql.php:893
@@ -1640,36 +1621,31 @@ msgid "Time"
msgstr "Čas"
#: js/messages.php:188
-#, fuzzy
#| msgid "Total"
msgid "Total time:"
-msgstr "Celkom"
+msgstr "Celkový čas:"
#: js/messages.php:189
-#, fuzzy
#| msgid "Profiling"
msgid "Profiling results"
-msgstr "Profilovanie"
+msgstr "Výsledky profilovania"
#: js/messages.php:190
-#, fuzzy
#| msgid "Table"
msgctxt "Display format"
msgid "Table"
msgstr "Tabuľka"
#: js/messages.php:191
-#, fuzzy
#| msgid "Charts"
msgid "Chart"
-msgstr "Grafy"
+msgstr "Graf"
#. l10n: A collection of available filters
#: js/messages.php:194
-#, fuzzy
#| msgid "Tables display options"
msgid "Log table filter options"
-msgstr "Nastavenie zobrazenia tabuliek"
+msgstr "Nastavenie filtrovania logovacích tabuliek"
#. l10n: Filter as in "Start Filtering"
#: js/messages.php:196
@@ -1678,33 +1654,30 @@ msgstr "Filter"
#: js/messages.php:197
msgid "Filter queries by word/regexp:"
-msgstr ""
+msgstr "Filtrovať dopyty podľa slova/regulárneho výrazu:"
#: js/messages.php:198
msgid "Group queries, ignoring variable data in WHERE clauses"
-msgstr ""
+msgstr "Zlučovať dopyty, ignorovať premenné dáta vo WHERE výraze"
#: js/messages.php:199
-#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
-msgstr "Počet vložených riadkov"
+msgstr "Počet zlúčených riadkov:"
#: js/messages.php:200
-#, fuzzy
#| msgid "Total"
msgid "Total:"
-msgstr "Celkom"
+msgstr "Celkom:"
#: js/messages.php:202
-#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
-msgstr "Načítanie"
+msgstr "Načítavam záznamy"
#: js/messages.php:203
msgid "Monitor refresh failed"
-msgstr ""
+msgstr "Obnovenie monitora zlyhalo"
#: js/messages.php:204
msgid ""
@@ -1714,10 +1687,9 @@ msgid ""
msgstr ""
#: js/messages.php:205
-#, fuzzy
#| msgid "Reload"
msgid "Reload page"
-msgstr "Znovu načítať"
+msgstr "Znovu načítať stránku"
#: js/messages.php:207
msgid "Affected rows:"
@@ -1741,48 +1713,44 @@ msgid "Import"
msgstr "Import"
#: js/messages.php:213
-#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
-msgstr "Aktualizovať dopyt"
+msgstr "Analyzovať dopyt"
#: js/messages.php:217
msgid "Advisor system"
-msgstr ""
+msgstr "Poradca"
#: js/messages.php:218
msgid "Possible performance issues"
-msgstr ""
+msgstr "Možné problémy s výkonom"
#: js/messages.php:219
msgid "Issue"
-msgstr ""
+msgstr "Problém"
#: js/messages.php:220
-#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
-msgstr "Dokumentácia"
+msgstr "Odporúčanie"
#: js/messages.php:221
-#, fuzzy
#| msgid "Details"
msgid "Rule details"
-msgstr "Podrobnosti"
+msgstr "Podrobnosti o pravidle"
#: js/messages.php:222
-#, fuzzy
#| msgid "Authentication"
msgid "Justification"
-msgstr "Overenie"
+msgstr "Zdôvodnenie"
#: js/messages.php:223
msgid "Used variable / formula"
-msgstr ""
+msgstr "Použitá premenná / vzorec"
#: js/messages.php:224
msgid "Test"
-msgstr ""
+msgstr "Kontrola"
#: js/messages.php:229 pmd_general.php:382 pmd_general.php:419
#: pmd_general.php:539 pmd_general.php:587 pmd_general.php:663
@@ -1818,7 +1786,7 @@ msgstr "OK"
#: js/messages.php:238
msgid "Click to dismiss this notification"
-msgstr ""
+msgstr "Kliknutím zatvoríte túto správu"
#: js/messages.php:241
msgid "Renaming Databases"
@@ -1877,9 +1845,9 @@ msgid "The definition of a stored function must contain a RETURN statement!"
msgstr "Definícia uloženej funkcie musí obsahovať príkaz RETURN!"
#: js/messages.php:269
-#, fuzzy, php-format
+#, php-format
msgid "Add %d value(s)"
-msgstr "Pridať nového používateľa"
+msgstr "Pridať %d hodnôt"
#: js/messages.php:272
msgid ""
@@ -1906,10 +1874,9 @@ msgid "Change"
msgstr "Zmeniť"
#: js/messages.php:280
-#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
-msgstr "Maximálny čas behu"
+msgstr "Čas behu dopytu"
#: js/messages.php:283 libraries/config/FormDisplay.tpl.php:355
#: libraries/schema/User_Schema.class.php:352
@@ -1928,14 +1895,13 @@ msgid "Show search criteria"
msgstr "Zobraziť parametre vyhľadávania"
#: js/messages.php:290 libraries/tbl_select.lib.php:110
-#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
-msgstr "Hľadať"
+msgstr ""
#: js/messages.php:292
msgid "Each point represents a data row."
-msgstr ""
+msgstr "Každý bod reprezentuje riadok dát."
#: js/messages.php:294
msgid "Hovering over a point will show its label."
@@ -1966,26 +1932,23 @@ msgid "Strings are converted into integer for plotting"
msgstr ""
#: js/messages.php:308
-#, fuzzy
#| msgid "Add/Delete columns"
msgid "Select two columns"
-msgstr "Pridať/Odobrať stĺpce"
+msgstr "Zvoľte dva stĺpce"
#: js/messages.php:309
msgid "Select two different columns"
-msgstr ""
+msgstr "Zvoľte dva rôzne stĺpce"
#: js/messages.php:310
-#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
-msgstr "Operácie s výsledkami dopytu"
+msgstr "Výsledky dopytu"
#: js/messages.php:311
-#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
-msgstr "Veľkosť smerníka na dáta"
+msgstr "Obsah datového bodu"
#: js/messages.php:314 tbl_change.php:312 tbl_indexes.php:228
#: tbl_indexes.php:255
@@ -1997,10 +1960,9 @@ msgid "Copy"
msgstr "Kopírovať"
#: js/messages.php:330
-#, fuzzy
#| msgid "Add column"
msgid "Add columns"
-msgstr "Pridať stĺpec"
+msgstr "Pridať stĺpce"
#: js/messages.php:333
msgid "Select referenced key"
@@ -2068,10 +2030,9 @@ msgid ""
msgstr ""
#: js/messages.php:352
-#, fuzzy
#| msgid "Go to view"
msgid "Go to link"
-msgstr "Prejsť na Prejsť na pohľad"
+msgstr "Prejsť na odkaz"
#: js/messages.php:355
msgid "Generate password"
@@ -2113,14 +2074,12 @@ msgid "Done"
msgstr "Hotovo"
#: js/messages.php:389
-#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Predchádzajúci"
#: js/messages.php:394
-#, fuzzy
#| msgid "Next"
msgctxt "Next month"
msgid "Next"
@@ -2270,11 +2229,10 @@ msgstr "Sobota"
#. l10n: Short week day name
#: js/messages.php:450
-#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
msgid "Sun"
-msgstr "Ne"
+msgstr "Ned"
#. l10n: Short week day name
#: js/messages.php:452 libraries/common.lib.php:1633
@@ -2378,20 +2336,22 @@ msgstr "za hodinu"
#: libraries/Advisor.class.php:335
msgid "per day"
-msgstr ""
+msgstr "za deň"
#: libraries/Config.class.php:703
msgid "Remove \"./config\" directory before using phpMyAdmin!"
-msgstr ""
+msgstr "Pred použitím phpMyAdmina odstraňte adresár \"./config\"!"
#: libraries/Config.class.php:727
#, php-format
msgid "Existing configuration file (%s) is not readable."
-msgstr ""
+msgstr "Existujúci konfiguračný súbor (%s) nie je čitateľný."
#: libraries/Config.class.php:752
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
+"Konfiguračný súbor má zlé prístupové práva, nemal by byť zapisovateľný pre "
+"všetkých!"
#: libraries/Config.class.php:1303
msgid "Font size"
@@ -2399,14 +2359,13 @@ msgstr "Veľkosť písma"
#: libraries/Error_Handler.class.php:62
msgid "Too many error messages, some are not displayed."
-msgstr ""
+msgstr "Príliš veľa chybových správ, niektoré neboli zobrazené."
#: libraries/File.class.php:221
msgid "File was not an uploaded file."
msgstr ""
#: libraries/File.class.php:260 libraries/File.class.php:389
-#, fuzzy
#| msgid "Unknown error in file upload."
msgid "Unknown error while uploading."
msgstr "Neznáma chyba pri nahrávaní súboru."
@@ -2546,10 +2505,9 @@ msgstr[1] "Boli vložené %1$d riadky."
msgstr[2] "Bolo vložených %1$d riadkov."
#: libraries/PDF.class.php:81
-#, fuzzy
#| msgid "Allows reading data."
msgid "Error while creating PDF:"
-msgstr "Povolí čítanie dát."
+msgstr "Chyba pri vytváraní PDF:"
#: libraries/RecentTable.class.php:107
msgid "Could not save recent table"
@@ -2585,10 +2543,9 @@ msgid "This MySQL server does not support the %s storage engine."
msgstr "Tento MySQL server nepodporuje úložný systém %s."
#: libraries/Table.class.php:329
-#, fuzzy
#| msgid "Show slave status"
msgid "unknown table status: "
-msgstr "Zobraziť stav podriadených hostov"
+msgstr "neznámy stav tabuľky: "
#: libraries/Table.class.php:1116
msgid "Invalid database"
@@ -2691,7 +2648,7 @@ msgstr ""
#: libraries/auth/cookie.auth.lib.php:35
msgid "Failed to use Blowfish from mcrypt!"
-msgstr ""
+msgstr "Pri použití funkcie Blowfish z knižnice mcrypt došlo k chybe!"
#: libraries/auth/cookie.auth.lib.php:197
msgid "Log in"
@@ -2788,10 +2745,9 @@ msgid "PBMS get BLOB info failed:"
msgstr "Získavanie informácii o BLOBe z PBMS zlyhalo:"
#: libraries/blobstreaming.lib.php:373
-#, fuzzy
#| msgid "get BLOB Content-Type failed"
msgid "PBMS get BLOB Content-Type failed"
-msgstr "Získavanie Content-Type BLOBu zlyhalo"
+msgstr "Získavanie Content-Type BLOBu z PBMS zlyhalo"
#: libraries/blobstreaming.lib.php:401
msgid "View image"
@@ -2865,7 +2821,7 @@ msgstr "Skontrolovať oprávnenia"
#: libraries/common.inc.php:151
msgid "possible exploit"
-msgstr ""
+msgstr "možný pokus o exploit"
#: libraries/common.inc.php:160
msgid "numeric key detected"
@@ -3038,13 +2994,11 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dní, %s hodín, %s minút a %s sekúnd"
#: libraries/common.lib.php:2071
-#, fuzzy
msgid "Missing parameter:"
-msgstr "Odstrániť index/indexy"
+msgstr "Chýbajúci parameter:"
#: libraries/common.lib.php:2454 libraries/common.lib.php:2457
#: libraries/display_tbl.lib.php:306
-#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
@@ -3053,7 +3007,6 @@ msgstr "Začiatok"
#: libraries/common.lib.php:2455 libraries/common.lib.php:2458
#: libraries/display_tbl.lib.php:307 server_binlog.php:135
#: server_binlog.php:137
-#, fuzzy
#| msgid "Previous"
msgctxt "Previous page"
msgid "Previous"
@@ -3062,7 +3015,6 @@ msgstr "Predchádzajúci"
#: libraries/common.lib.php:2485 libraries/common.lib.php:2488
#: libraries/display_tbl.lib.php:372 server_binlog.php:170
#: server_binlog.php:172
-#, fuzzy
#| msgid "Next"
msgctxt "Next page"
msgid "Next"
@@ -3070,7 +3022,6 @@ msgstr "Ďalší"
#: libraries/common.lib.php:2486 libraries/common.lib.php:2489
#: libraries/display_tbl.lib.php:389
-#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
diff --git a/po/sv.po b/po/sv.po
index 5c4479d..ff95962 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-12-19 14:44+0100\n"
-"PO-Revision-Date: 2011-12-16 20:41+0200\n"
+"PO-Revision-Date: 2011-12-24 10:39+0200\n"
"Last-Translator: ProUser <stefan(a)inkopsforum.se>\n"
"Language-Team: swedish <sv(a)li.org>\n"
"Language: sv\n"
@@ -1583,11 +1583,10 @@ msgid "Profiling results"
msgstr "Profilering av resultat"
#: js/messages.php:190
-#, fuzzy
#| msgid "Table"
msgctxt "Display format"
msgid "Table"
-msgstr "Tabell"
+msgstr "Tabell "
#: js/messages.php:191
msgid "Chart"
@@ -12164,10 +12163,10 @@ msgstr ""
"Denna regel aktiveras när det är mer än 100 förfrågningar per sekund."
#: po/advisory_rules.php:80
-#, fuzzy, php-format
+#, php-format
#| msgid "Query cache efficiency (%)"
msgid "Query cache efficiency (%%)"
-msgstr "Frågecache effektivitet (%)"
+msgstr "Cache frågeeffektivitet (%%)"
#: po/advisory_rules.php:81
msgid "Query cache not running efficiently, it has a low hit rate."
@@ -12269,7 +12268,7 @@ msgstr ""
"detta i små steg och övervaka resultatet."
#: po/advisory_rules.php:98
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "The ratio of removed queries to inserted queries is %s%%. The lower this "
#| "value is, the better (This rules firing limit: 0.1%)"
@@ -12278,7 +12277,7 @@ msgid ""
"value is, the better (This rules firing limit: 0.1%%)"
msgstr ""
"Förhållandet mellan borttagna frågor och inlaggda frågor är %s%%. Ju lägre "
-"värdet är, desto bättre (Denna regel aktiveras vid: 0,1%)"
+"värdet är, desto bättre (Denna regel aktiveras vid: 0,1%%)"
#: po/advisory_rules.php:100
msgid "Query cache max size"
hooks/post-receive
--
phpMyAdmin
1
0