Merge branch 'master' of ssh://repo.or.cz/srv/git/phpmyadmin/madhuracj into OpenGIS
This commit is contained in:
commit
3efcd0e24b
125
js/OpenStreetMap.js
Normal file
125
js/OpenStreetMap.js
Normal file
@ -0,0 +1,125 @@
|
||||
/**
|
||||
* Namespace: Util.OSM
|
||||
*/
|
||||
OpenLayers.Util.OSM = {};
|
||||
|
||||
/**
|
||||
* Constant: MISSING_TILE_URL
|
||||
* {String} URL of image to display for missing tiles
|
||||
*/
|
||||
OpenLayers.Util.OSM.MISSING_TILE_URL = "http://www.openstreetmap.org/openlayers/img/404.png";
|
||||
|
||||
/**
|
||||
* Property: originalOnImageLoadError
|
||||
* {Function} Original onImageLoadError function.
|
||||
*/
|
||||
OpenLayers.Util.OSM.originalOnImageLoadError = OpenLayers.Util.onImageLoadError;
|
||||
|
||||
/**
|
||||
* Function: onImageLoadError
|
||||
*/
|
||||
OpenLayers.Util.onImageLoadError = function() {
|
||||
if (this.src.match(/^http:\/\/[abc]\.[a-z]+\.openstreetmap\.org\//)) {
|
||||
this.src = OpenLayers.Util.OSM.MISSING_TILE_URL;
|
||||
} else if (this.src.match(/^http:\/\/[def]\.tah\.openstreetmap\.org\//)) {
|
||||
// do nothing - this layer is transparent
|
||||
} else {
|
||||
OpenLayers.Util.OSM.originalOnImageLoadError;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Class: OpenLayers.Layer.OSM.Mapnik
|
||||
*
|
||||
* Inherits from:
|
||||
* - <OpenLayers.Layer.OSM>
|
||||
*/
|
||||
OpenLayers.Layer.OSM.Mapnik = OpenLayers.Class(OpenLayers.Layer.OSM, {
|
||||
/**
|
||||
* Constructor: OpenLayers.Layer.OSM.Mapnik
|
||||
*
|
||||
* Parameters:
|
||||
* name - {String}
|
||||
* options - {Object} Hashtable of extra options to tag onto the layer
|
||||
*/
|
||||
initialize: function(name, options) {
|
||||
var url = [
|
||||
"http://a.tile.openstreetmap.org/${z}/${x}/${y}.png",
|
||||
"http://b.tile.openstreetmap.org/${z}/${x}/${y}.png",
|
||||
"http://c.tile.openstreetmap.org/${z}/${x}/${y}.png"
|
||||
];
|
||||
options = OpenLayers.Util.extend({
|
||||
numZoomLevels: 19,
|
||||
buffer: 0,
|
||||
transitionEffect: "resize"
|
||||
}, options);
|
||||
var newArguments = [name, url, options];
|
||||
OpenLayers.Layer.OSM.prototype.initialize.apply(this, newArguments);
|
||||
},
|
||||
|
||||
CLASS_NAME: "OpenLayers.Layer.OSM.Mapnik"
|
||||
});
|
||||
|
||||
/**
|
||||
* Class: OpenLayers.Layer.OSM.Osmarender
|
||||
*
|
||||
* Inherits from:
|
||||
* - <OpenLayers.Layer.OSM>
|
||||
*/
|
||||
OpenLayers.Layer.OSM.Osmarender = OpenLayers.Class(OpenLayers.Layer.OSM, {
|
||||
/**
|
||||
* Constructor: OpenLayers.Layer.OSM.Osmarender
|
||||
*
|
||||
* Parameters:
|
||||
* name - {String}
|
||||
* options - {Object} Hashtable of extra options to tag onto the layer
|
||||
*/
|
||||
initialize: function(name, options) {
|
||||
var url = [
|
||||
"http://a.tah.openstreetmap.org/Tiles/tile/${z}/${x}/${y}.png",
|
||||
"http://b.tah.openstreetmap.org/Tiles/tile/${z}/${x}/${y}.png",
|
||||
"http://c.tah.openstreetmap.org/Tiles/tile/${z}/${x}/${y}.png"
|
||||
];
|
||||
options = OpenLayers.Util.extend({
|
||||
numZoomLevels: 18,
|
||||
buffer: 0,
|
||||
transitionEffect: "resize"
|
||||
}, options);
|
||||
var newArguments = [name, url, options];
|
||||
OpenLayers.Layer.OSM.prototype.initialize.apply(this, newArguments);
|
||||
},
|
||||
|
||||
CLASS_NAME: "OpenLayers.Layer.OSM.Osmarender"
|
||||
});
|
||||
|
||||
/**
|
||||
* Class: OpenLayers.Layer.OSM.CycleMap
|
||||
*
|
||||
* Inherits from:
|
||||
* - <OpenLayers.Layer.OSM>
|
||||
*/
|
||||
OpenLayers.Layer.OSM.CycleMap = OpenLayers.Class(OpenLayers.Layer.OSM, {
|
||||
/**
|
||||
* Constructor: OpenLayers.Layer.OSM.CycleMap
|
||||
*
|
||||
* Parameters:
|
||||
* name - {String}
|
||||
* options - {Object} Hashtable of extra options to tag onto the layer
|
||||
*/
|
||||
initialize: function(name, options) {
|
||||
var url = [
|
||||
"http://a.tile.opencyclemap.org/cycle/${z}/${x}/${y}.png",
|
||||
"http://b.tile.opencyclemap.org/cycle/${z}/${x}/${y}.png",
|
||||
"http://c.tile.opencyclemap.org/cycle/${z}/${x}/${y}.png"
|
||||
];
|
||||
options = OpenLayers.Util.extend({
|
||||
numZoomLevels: 19,
|
||||
buffer: 0,
|
||||
transitionEffect: "resize"
|
||||
}, options);
|
||||
var newArguments = [name, url, options];
|
||||
OpenLayers.Layer.OSM.prototype.initialize.apply(this, newArguments);
|
||||
},
|
||||
|
||||
CLASS_NAME: "OpenLayers.Layer.OSM.CycleMap"
|
||||
});
|
||||
@ -145,7 +145,7 @@ $js_messages['strMoreCountColumnExplanation'] = __('Since grouping of INSERTs qu
|
||||
$js_messages['strLogDataLoaded'] = __('Log data loaded. Queries executed in this time span:');
|
||||
|
||||
$js_messages['strJumpToTable'] = __('Jump to Log table');
|
||||
$js_messages['strNoDataFound'] = __('Log analysed, but not data found in this time span.');
|
||||
$js_messages['strNoDataFound'] = __('Log analysed, but no data found in this time span.');
|
||||
|
||||
/* l10n: A collection of available filters */
|
||||
$js_messages['strFilters'] = __('Filters');
|
||||
|
||||
10
js/sql.js
10
js/sql.js
@ -945,10 +945,10 @@ $(document).ready(function() {
|
||||
*/
|
||||
var button_options = {};
|
||||
// in the following function we need to use $(this)
|
||||
button_options[PMA_messages['strCancel']] = function() {$(this).parent().dialog('close').remove();}
|
||||
button_options[PMA_messages['strCancel']] = function() {$(this).dialog('close').remove();}
|
||||
|
||||
var button_options_error = {};
|
||||
button_options_error[PMA_messages['strOK']] = function() {$(this).parent().dialog('close').remove();}
|
||||
button_options_error[PMA_messages['strOK']] = function() {$(this).dialog('close').remove();}
|
||||
var $form = $("#resultsForm");
|
||||
var $msgbox = PMA_ajaxShowMessage();
|
||||
|
||||
@ -962,6 +962,9 @@ $(document).ready(function() {
|
||||
height: 230,
|
||||
width: 900,
|
||||
open: PMA_verifyTypeOfAllColumns,
|
||||
close: function(event, ui) {
|
||||
$('#change_row_dialog').remove();
|
||||
},
|
||||
buttons : button_options_error
|
||||
})// end dialog options
|
||||
} else {
|
||||
@ -972,6 +975,9 @@ $(document).ready(function() {
|
||||
height: 600,
|
||||
width: 900,
|
||||
open: PMA_verifyTypeOfAllColumns,
|
||||
close: function(event, ui) {
|
||||
$('#change_row_dialog').remove();
|
||||
},
|
||||
buttons : button_options
|
||||
})
|
||||
//Remove the top menu container from the dialog
|
||||
|
||||
@ -308,7 +308,7 @@ $(document).ready(function() {
|
||||
var popupOffsetTop = windowHeight / 2 - popupHeight / 2;
|
||||
var popupOffsetLeft = windowWidth / 2 - popupWidth / 2;
|
||||
var $gis_editor = $("#gis_editor");
|
||||
$gis_editor.css({"position":"absolute", "top": popupOffsetTop, "left": popupOffsetLeft, "width": popupWidth, "height": popupHeight});
|
||||
$gis_editor.css({"top": popupOffsetTop, "left": popupOffsetLeft, "width": popupWidth, "height": popupHeight});
|
||||
|
||||
// Current value
|
||||
var value = $span.parent('td').children("input[type='text']").val();
|
||||
|
||||
@ -952,7 +952,7 @@ function PMA_DBI_fetch_value($result, $row_number = 0, $field = 0, $link = null,
|
||||
$value = false;
|
||||
|
||||
if (is_string($result)) {
|
||||
$result = PMA_DBI_try_query($result, $link, $options | PMA_DBI_QUERY_STORE);
|
||||
$result = PMA_DBI_try_query($result, $link, $options | PMA_DBI_QUERY_STORE, false);
|
||||
}
|
||||
|
||||
// return false if result is empty or false
|
||||
@ -1004,7 +1004,7 @@ function PMA_DBI_fetch_value($result, $row_number = 0, $field = 0, $link = null,
|
||||
*/
|
||||
function PMA_DBI_fetch_single_row($result, $type = 'ASSOC', $link = null, $options = 0) {
|
||||
if (is_string($result)) {
|
||||
$result = PMA_DBI_try_query($result, $link, $options | PMA_DBI_QUERY_STORE);
|
||||
$result = PMA_DBI_try_query($result, $link, $options | PMA_DBI_QUERY_STORE, false);
|
||||
}
|
||||
|
||||
// return null if result is empty or false
|
||||
@ -1087,7 +1087,7 @@ function PMA_DBI_fetch_result($result, $key = null, $value = null,
|
||||
$resultrows = array();
|
||||
|
||||
if (is_string($result)) {
|
||||
$result = PMA_DBI_try_query($result, $link, $options);
|
||||
$result = PMA_DBI_try_query($result, $link, $options, false);
|
||||
}
|
||||
|
||||
// return empty array if result is empty or false
|
||||
|
||||
18
po/af.po
18
po/af.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: afrikaans <af@li.org>\n"
|
||||
@ -1372,7 +1372,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Geen databasisse"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10379,36 +10379,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Geen tabelle"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "SQL-stelling"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Voeg By/Verwyder Veld Kolomme"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Waarde"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/ar.po
18
po/ar.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-25 22:07+0200\n"
|
||||
"Last-Translator: Abdullah Al-Saedi <abdullah.10@windowslive.com>\n"
|
||||
"Language-Team: arabic <ar@li.org>\n"
|
||||
@ -1346,7 +1346,7 @@ msgid "Jump to Log table"
|
||||
msgstr "قفز لقاعدة البيانات"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10379,35 +10379,35 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "استورد الملفات"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "إضافه/حذف عمود حقل"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "القيمة"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/az.po
18
po/az.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: azerbaijani <az@li.org>\n"
|
||||
@ -1388,7 +1388,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10572,36 +10572,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Faylları import et"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "SQL sorğusu"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Sahe Sütunlarını Elave Et/Sil"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Deyer"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/be.po
18
po/be.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: belarusian_cyrillic <be@li.org>\n"
|
||||
@ -1411,7 +1411,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Базы дадзеных адсутнічаюць"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10991,36 +10991,36 @@ msgstr "Сьціснутая"
|
||||
msgid "Chart title"
|
||||
msgstr "Загаловак справаздачы"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "SQL-запыт"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Дадаць/выдаліць калёнку крытэру"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Значэньне"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: belarusian_latin <be@latin@li.org>\n"
|
||||
@ -1412,7 +1412,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Bazy dadzienych adsutničajuć"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10962,35 +10962,35 @@ msgstr "Ścisnutaja"
|
||||
msgid "Chart title"
|
||||
msgstr "Zahałovak spravazdačy"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Dadać/vydalić kalonku kryteru"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Značeńnie"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/bg.po
18
po/bg.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-19 14:58+0200\n"
|
||||
"Last-Translator: <stoyanster@gmail.com>\n"
|
||||
"Language-Team: bulgarian <bg@li.org>\n"
|
||||
@ -1351,7 +1351,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Прескачане до БД"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10093,31 +10093,31 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Заглавие на диаграмата"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
msgid "The remaining columns"
|
||||
msgstr "Оставащите колони"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr "Етикет на оста X:"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr "Стойности на X"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Етикет на оста Y:"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr "Стойности на Y"
|
||||
|
||||
|
||||
18
po/bn.po
18
po/bn.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
|
||||
"Last-Translator: Nobin নবীন <nobin@cyberbogra.com>\n"
|
||||
"Language-Team: bangla <bn@li.org>\n"
|
||||
@ -1397,7 +1397,7 @@ msgid "Jump to Log table"
|
||||
msgstr "কোন ডাটাবেজ নাই"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10849,36 +10849,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Report title"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "SQL query"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Add/Delete Field Columns"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "মান"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/br.po
18
po/br.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-17 21:41+0200\n"
|
||||
"Last-Translator: Fulup <fulup.jakez@ofis-bzh.org>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -1352,7 +1352,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Mont d'an diaz roadennoù"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10031,31 +10031,31 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
msgid "The remaining columns"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr ""
|
||||
|
||||
|
||||
18
po/bs.po
18
po/bs.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: bosnian <bs@li.org>\n"
|
||||
@ -1382,7 +1382,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Baza ne postoji"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10553,36 +10553,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Uvoz fajlova"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "SQL upit"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Dodaj/obriši kolonu"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Vrijednost"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/ca.po
18
po/ca.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-02-23 09:57+0200\n"
|
||||
"Last-Translator: Xavier Navarro <xvnavarro@gmail.com>\n"
|
||||
"Language-Team: catalan <ca@li.org>\n"
|
||||
@ -1377,7 +1377,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Vés a la base de dades"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10857,41 +10857,41 @@ msgstr "Apilat"
|
||||
msgid "Chart title"
|
||||
msgstr "Títol de llistat:"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
#| msgid "SQL queries"
|
||||
msgid "Series:"
|
||||
msgstr "Consultes SQL"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Textarea columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Columnes per a textareas"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
#, fuzzy
|
||||
#| msgid "X Axis label"
|
||||
msgid "X-Axis label:"
|
||||
msgstr "Títol de l'eix X"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Valor"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Y Axis label"
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Títol de l'eix Y"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
20
po/cs.po
20
po/cs.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-25 15:03+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: czech <cs@li.org>\n"
|
||||
@ -1339,7 +1339,9 @@ msgid "Jump to Log table"
|
||||
msgstr "Přejít na tabulku se záznamem"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
#, fuzzy
|
||||
#| msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
"Záznamy byly načteny, ale v tomto časovém rozmezí nebyly nalezeny žádné "
|
||||
"dotazy."
|
||||
@ -10512,31 +10514,31 @@ msgstr "Skládané"
|
||||
msgid "Chart title"
|
||||
msgstr "Název grafu"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr "Osa X:"
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr "Série:"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
msgid "The remaining columns"
|
||||
msgstr "Zbývající sloupce"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr "Popis osy X:"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr "Hodnoty X"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Popis osy Y:"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr "Hodnoty Y"
|
||||
|
||||
|
||||
18
po/cy.po
18
po/cy.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-05-19 21:21+0200\n"
|
||||
"Last-Translator: <ardavies@tiscali.co.uk>\n"
|
||||
"Language-Team: Welsh <cy@li.org>\n"
|
||||
@ -1378,7 +1378,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Neidiwch i'r gronfa ddata"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10396,35 +10396,35 @@ msgstr "Paciwyd"
|
||||
msgid "Chart title"
|
||||
msgstr "Teitl yr adroddiad"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Ychwanegu/Dileu colofnau"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Gwerth"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
20
po/da.po
20
po/da.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-23 21:27+0200\n"
|
||||
"Last-Translator: Jørgen Thomsen <opensource@jth.net>\n"
|
||||
"Language-Team: danish <da@li.org>\n"
|
||||
@ -1354,7 +1354,9 @@ msgid "Jump to Log table"
|
||||
msgstr "Gå til logtabellen"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
#, fuzzy
|
||||
#| msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr "Loggen er analyseret, men ingen data fundet i dette tidsinterval."
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10636,31 +10638,31 @@ msgstr "Stak"
|
||||
msgid "Chart title"
|
||||
msgstr "Diagramtitel"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr "X-akse:"
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr "Serie:"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
msgid "The remaining columns"
|
||||
msgstr "De resterende kolonner"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr "X-akse betegnelse:"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr "X værdier"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Y-akse betegnelse:"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr "Y-værdier"
|
||||
|
||||
|
||||
20
po/de.po
20
po/de.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-25 14:55+0200\n"
|
||||
"Last-Translator: Sven Strickroth <email@cs-ware.de>\n"
|
||||
"Language-Team: german <de@li.org>\n"
|
||||
@ -1362,7 +1362,9 @@ msgid "Jump to Log table"
|
||||
msgstr "Springe zur Protokoll-Tabelle"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
#, fuzzy
|
||||
#| msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
"Protokoll wurde analysiert, es wurden jedoch keine Daten im angegebenen "
|
||||
"Zeitraum gefunden."
|
||||
@ -10782,31 +10784,31 @@ msgstr "Gestapelt"
|
||||
msgid "Chart title"
|
||||
msgstr "Titel des Reports"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr "X-Achse:"
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr "Reihe:"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
msgid "The remaining columns"
|
||||
msgstr "Die verbleibenden Spalten"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr "Beschriftung X-Achse:"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr "X-Werte"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Beschriftung Y-Achse:"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr "Y-Werte"
|
||||
|
||||
|
||||
20
po/el.po
20
po/el.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-26 18:41+0200\n"
|
||||
"Last-Translator: Panagiotis Papazoglou <papaz_p@yahoo.com>\n"
|
||||
"Language-Team: greek <el@li.org>\n"
|
||||
@ -1356,7 +1356,9 @@ msgid "Jump to Log table"
|
||||
msgstr "Μετάβαση στον πίνακα Καταγραφής"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
#, fuzzy
|
||||
#| msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
"Η καταγραφή αναλύθηκε αλλά δεν βρέθηκαν δεδομένα σε αυτή την επέκταση χρόνου."
|
||||
|
||||
@ -10799,31 +10801,31 @@ msgstr "Σταθεροποιημένο"
|
||||
msgid "Chart title"
|
||||
msgstr "Τίτλος διαγράμματος"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr "Άξονας Χ:"
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr "Σειρές:"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
msgid "The remaining columns"
|
||||
msgstr "Οι απομένουσες στήλες"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr "Ετικέτα άξονα Χ:"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr "Τιμές Χ"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Ετικέτα άξονα Υ:"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr "Τιμές Υ"
|
||||
|
||||
|
||||
18
po/en_GB.po
18
po/en_GB.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-24 20:54+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: english-gb <en_GB@li.org>\n"
|
||||
@ -1336,7 +1336,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Jump to database"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10560,31 +10560,31 @@ msgstr "Stacked"
|
||||
msgid "Chart title"
|
||||
msgstr "Chart title"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr "X-Axis:"
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr "Series:"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
msgid "The remaining columns"
|
||||
msgstr "The remaining columns"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr "X-Axis label:"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr "X Values"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Y-Axis label:"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr "Y Values"
|
||||
|
||||
|
||||
20
po/es.po
20
po/es.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-27 16:54+0200\n"
|
||||
"Last-Translator: Matías Bellone <matiasbellone@gmail.com>\n"
|
||||
"Language-Team: spanish <es@li.org>\n"
|
||||
@ -1360,7 +1360,9 @@ msgid "Jump to Log table"
|
||||
msgstr "Saltar a la tabla de registros"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
#, fuzzy
|
||||
#| msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
"Registros analizados, pero no se encontraron datos en este período de tiempo."
|
||||
|
||||
@ -10819,31 +10821,31 @@ msgstr "Apiladas"
|
||||
msgid "Chart title"
|
||||
msgstr "Título del gráfico"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr "Eje X:"
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr "Series:"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
msgid "The remaining columns"
|
||||
msgstr "Columnas restantes"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr "Etiqueta del eje X:"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr "Valores X"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Etiqueta del eje Y:"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr "Valores Y"
|
||||
|
||||
|
||||
18
po/et.po
18
po/et.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: estonian <et@li.org>\n"
|
||||
@ -1400,7 +1400,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Pole andmebaase"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10844,36 +10844,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Raporti pealkiri"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "SQL-päring"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Lisa/Kustuta välja veerud"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Väärtus"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/eu.po
18
po/eu.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-07-21 14:53+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: basque <eu@li.org>\n"
|
||||
@ -1386,7 +1386,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Datu-baserik ez"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10579,36 +10579,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Fitxategiak inportatu"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "SQL kontsulta"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Gehitu/ezabatu irizpide-zutabea"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "balioa"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/fa.po
18
po/fa.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
|
||||
"Last-Translator: <ahmad_usa2007@yahoo.com>\n"
|
||||
"Language-Team: persian <fa@li.org>\n"
|
||||
@ -1352,7 +1352,7 @@ msgid "Jump to Log table"
|
||||
msgstr "No databases"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10343,36 +10343,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "No tables"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "پرس و جوي SQL"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "اضافه يا حذف ستونها"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "مقدار"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/fi.po
18
po/fi.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-11-26 21:29+0200\n"
|
||||
"Last-Translator: <asdfsdf@asdfasdfasdf.com>\n"
|
||||
"Language-Team: finnish <fi@li.org>\n"
|
||||
@ -1371,7 +1371,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Siirry tietokantaan"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -11182,37 +11182,37 @@ msgstr "Pakattu"
|
||||
msgid "Chart title"
|
||||
msgstr "Raportin otsikko"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
#| msgid "SQL queries"
|
||||
msgid "Series:"
|
||||
msgstr "SQL-kyselyt"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "CHAR textarea columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "CHAR-tekstikentän sarakkeet"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Arvo"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/fr.po
18
po/fr.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-16 14:57+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: french <fr@li.org>\n"
|
||||
@ -1361,7 +1361,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Aller à la base de données"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10722,31 +10722,31 @@ msgstr "En piles"
|
||||
msgid "Chart title"
|
||||
msgstr "Titre du graphique"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr "Axe des X"
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr "Séries:"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
msgid "The remaining columns"
|
||||
msgstr "Les colonnes restantes"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr "Étiquette pour l'axe des X"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr "Valeurs en X"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Étiquette pour l'axe des Y"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr "Valeurs en Y"
|
||||
|
||||
|
||||
18
po/gl.po
18
po/gl.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-07-21 14:50+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: galician <gl@li.org>\n"
|
||||
@ -1410,7 +1410,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Ir á base de datos"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -11429,37 +11429,37 @@ msgstr "Empaquetado"
|
||||
msgid "Chart title"
|
||||
msgstr "Título do informe"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
#| msgid "SQL queries"
|
||||
msgid "Series:"
|
||||
msgstr "Solicitudes SQL"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "CHAR textarea columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Columnas de área de texto de CHAR"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Valor"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/he.po
18
po/he.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-03-02 20:17+0200\n"
|
||||
"Last-Translator: <zippoxer@gmail.com>\n"
|
||||
"Language-Team: hebrew <he@li.org>\n"
|
||||
@ -1376,7 +1376,7 @@ msgid "Jump to Log table"
|
||||
msgstr "אין מאגרי נתונים"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10498,36 +10498,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "קבצי ייבוא"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "שאילתת SQL"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "הוספת/מחיקת עמודות שדה"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "ערך"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/hi.po
18
po/hi.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-24 19:04+0200\n"
|
||||
"Last-Translator: <deadefy@nepalimail.com>\n"
|
||||
"Language-Team: hindi <hi@li.org>\n"
|
||||
@ -1354,7 +1354,7 @@ msgid "Jump to Log table"
|
||||
msgstr "डेटाबेस को कूद"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10293,41 +10293,41 @@ msgstr "जमा"
|
||||
msgid "Chart title"
|
||||
msgstr "डिफ़ॉल्ट शीर्षक"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
#| msgid "SQL queries"
|
||||
msgid "Series:"
|
||||
msgstr "SQL क्वरी"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Textarea columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
#, fuzzy
|
||||
#| msgid "X Axis label"
|
||||
msgid "X-Axis label:"
|
||||
msgstr "X Axis लेबल"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "मूल्य"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Y Axis label"
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Y Axis लेबल"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/hr.po
18
po/hr.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: croatian <hr@li.org>\n"
|
||||
@ -1410,7 +1410,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Nema baza podataka"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10950,36 +10950,36 @@ msgstr "Pakirano"
|
||||
msgid "Chart title"
|
||||
msgstr "Naslov izvještaja"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "SQL upit"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Dodaj/Izbriši stupce polja"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Vrijednost"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/hu.po
18
po/hu.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-05-27 18:52+0200\n"
|
||||
"Last-Translator: <slygyor@gmail.com>\n"
|
||||
"Language-Team: hungarian <hu@li.org>\n"
|
||||
@ -1368,7 +1368,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Adatbázisra ugrás"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -11035,41 +11035,41 @@ msgstr "Halmozott"
|
||||
msgid "Chart title"
|
||||
msgstr "A jelentés címe"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
#| msgid "SQL queries"
|
||||
msgid "Series:"
|
||||
msgstr "SQL-lekérdezések"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Textarea columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Szövegterület oszlopai"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
#, fuzzy
|
||||
#| msgid "X Axis label"
|
||||
msgid "X-Axis label:"
|
||||
msgstr "X tengely címkéje"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Érték"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Y Axis label"
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Y tengely címkéje"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/id.po
18
po/id.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-06-18 11:34+0200\n"
|
||||
"Last-Translator: <udin.mx@gmail.com>\n"
|
||||
"Language-Team: indonesian <id@li.org>\n"
|
||||
@ -1362,7 +1362,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Beralih ke database"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10593,36 +10593,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Impor file"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "Pencarian SQL"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Tambahkan/Hapus kolom"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Nilai"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
20
po/it.po
20
po/it.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-22 19:13+0200\n"
|
||||
"Last-Translator: Rouslan Placella <rouslan@placella.com>\n"
|
||||
"Language-Team: italian <it@li.org>\n"
|
||||
@ -1361,7 +1361,9 @@ msgid "Jump to Log table"
|
||||
msgstr "Vai alla tabella di Log"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
#, fuzzy
|
||||
#| msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
"Il log é stato analizzato, nessun dato é stato trovato per questo intervallo "
|
||||
"di tempo."
|
||||
@ -10744,31 +10746,31 @@ msgstr "Sovrapposti"
|
||||
msgid "Chart title"
|
||||
msgstr "Titolo del grafico"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr "Asse X:"
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr "Serie:"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
msgid "The remaining columns"
|
||||
msgstr "I campi rimanenti"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr "Etichetta per l'asse X:"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr "Valori per asse X"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Etichetta per l'asse Y:"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr "Valori per asse Y"
|
||||
|
||||
|
||||
18
po/ja.po
18
po/ja.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-27 12:14+0200\n"
|
||||
"Last-Translator: Yuichiro <yuichiro@pop07.odn.ne.jp>\n"
|
||||
"Language-Team: japanese <jp@li.org>\n"
|
||||
@ -1338,7 +1338,7 @@ msgid "Jump to Log table"
|
||||
msgstr "データベースに移動"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10536,33 +10536,33 @@ msgstr "積み上げ形式"
|
||||
msgid "Chart title"
|
||||
msgstr "グラフの題名"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr "横軸:"
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr "系列:"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Textarea columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "textarea の 1 行の文字数"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr "横軸のラベル:"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr "横軸の値"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "縦軸のラベル:"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr "縦軸の値"
|
||||
|
||||
|
||||
18
po/ka.po
18
po/ka.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: georgian <ka@li.org>\n"
|
||||
@ -1406,7 +1406,7 @@ msgid "Jump to Log table"
|
||||
msgstr "მონაცემთა ბაზები არაა"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -11266,37 +11266,37 @@ msgstr "შეკუმშული"
|
||||
msgid "Chart title"
|
||||
msgstr "Report title"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
#| msgid "SQL queries"
|
||||
msgid "Series:"
|
||||
msgstr "SQL მოთხოვნები"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "CHAR textarea columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "CHAR textarea columns"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "მნიშვნელობა"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/ko.po
18
po/ko.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-06-16 18:18+0200\n"
|
||||
"Last-Translator: <cihar@nvyu.net>\n"
|
||||
"Language-Team: korean <ko@li.org>\n"
|
||||
@ -1374,7 +1374,7 @@ msgid "Jump to Log table"
|
||||
msgstr "데이터베이스가 없습니다"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10389,36 +10389,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "파일 가져오기"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "SQL 질의"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "컬럼 추가/삭제"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "값"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/lt.po
18
po/lt.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-04-05 15:52+0200\n"
|
||||
"Last-Translator: Kęstutis <forkik@gmail.com>\n"
|
||||
"Language-Team: lithuanian <lt@li.org>\n"
|
||||
@ -1377,7 +1377,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Eiti į duomenų bazę"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10690,41 +10690,41 @@ msgstr "Suspausta"
|
||||
msgid "Chart title"
|
||||
msgstr "Ataskaitos antraštė:"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
#| msgid "SQL queries"
|
||||
msgid "Series:"
|
||||
msgstr "SQL užklausos"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Textarea columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Textarea laukeliai"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
#, fuzzy
|
||||
#| msgid "X Axis label"
|
||||
msgid "X-Axis label:"
|
||||
msgstr "X ašies etiketė"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Reikšmė"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Y Axis label"
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Y ašies etiketė"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/lv.po
18
po/lv.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: latvian <lv@li.org>\n"
|
||||
@ -1385,7 +1385,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Nav datubāzu"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10600,36 +10600,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Importēt failus"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "SQL vaicājums"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Pievienot/Dzēst laukus (kolonnas)"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Vērtība"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/mk.po
18
po/mk.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-05-19 17:04+0200\n"
|
||||
"Last-Translator: <sjanevski@gmail.com>\n"
|
||||
"Language-Team: macedonian_cyrillic <mk@li.org>\n"
|
||||
@ -1379,7 +1379,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Базата на податоци не постои"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10668,36 +10668,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Увоз на податотека"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "SQL упит"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Додади/избриши колона"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Вредност"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/ml.po
18
po/ml.po
@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Malayalam <ml@li.org>\n"
|
||||
@ -1307,7 +1307,7 @@ msgid "Jump to Log table"
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -9844,31 +9844,31 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
msgid "The remaining columns"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr ""
|
||||
|
||||
|
||||
18
po/mn.po
18
po/mn.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: mongolian <mn@li.org>\n"
|
||||
@ -1382,7 +1382,7 @@ msgid "Jump to Log table"
|
||||
msgstr "ӨС байхгүй"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10679,35 +10679,35 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Тайлангийн гарчиг"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Багана нэмэх/устгах"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Утга"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/ms.po
18
po/ms.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: malay <ms@li.org>\n"
|
||||
@ -1376,7 +1376,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Tiada pangkalan data"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10422,36 +10422,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Tiada Jadual"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "kueri-SQL"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Tambah/Padam Kolum Medan"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Nilai"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/nb.po
18
po/nb.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-03-07 11:21+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: norwegian <no@li.org>\n"
|
||||
@ -1373,7 +1373,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Gå til database"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10935,37 +10935,37 @@ msgstr "Pakket"
|
||||
msgid "Chart title"
|
||||
msgstr "Rapporttittel"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
#| msgid "SQL queries"
|
||||
msgid "Series:"
|
||||
msgstr "SQL spørringer"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "CHAR textarea columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "CHAR textarea kolonner"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Verdi"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/nl.po
18
po/nl.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-06-04 15:19+0200\n"
|
||||
"Last-Translator: Dieter Adriaenssens <ruleant@users.sourceforge.net>\n"
|
||||
"Language-Team: dutch <nl@li.org>\n"
|
||||
@ -1368,7 +1368,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Ga naar database"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10859,41 +10859,41 @@ msgstr "Opgestapeld"
|
||||
msgid "Chart title"
|
||||
msgstr "Report titel:"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
#| msgid "SQL queries"
|
||||
msgid "Series:"
|
||||
msgstr "SQL-queries"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Textarea columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Textarea kolommen"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
#, fuzzy
|
||||
#| msgid "X Axis label"
|
||||
msgid "X-Axis label:"
|
||||
msgstr "X-as label"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Waarde"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Y Axis label"
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Y-as label"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -1309,7 +1309,7 @@ msgid "Jump to Log table"
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -9846,31 +9846,31 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
msgid "The remaining columns"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr ""
|
||||
|
||||
|
||||
18
po/pl.po
18
po/pl.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-02-24 16:21+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: polish <pl@li.org>\n"
|
||||
@ -1385,7 +1385,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Przejdź do bazy danych"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -11208,37 +11208,37 @@ msgstr "Spakowany"
|
||||
msgid "Chart title"
|
||||
msgstr "Tytuł raportu"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
#| msgid "SQL queries"
|
||||
msgid "Series:"
|
||||
msgstr "Zapytania SQL"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Dodaj/usuń pola"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Wartość"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/pt.po
18
po/pt.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-03-26 03:23+0200\n"
|
||||
"Last-Translator: <efgpinto@gmail.com>\n"
|
||||
"Language-Team: portuguese <pt@li.org>\n"
|
||||
@ -1377,7 +1377,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Sem bases de dados"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10515,36 +10515,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Tipo de Exportação"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "Comando SQL"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Adicionar/Remover Campos"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Valor"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/pt_BR.po
18
po/pt_BR.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-21 16:15+0200\n"
|
||||
"Last-Translator: <teunome@gmail.com>\n"
|
||||
"Language-Team: brazilian_portuguese <pt_BR@li.org>\n"
|
||||
@ -1366,7 +1366,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Ir para banco de dados"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10714,41 +10714,41 @@ msgstr "Pacote"
|
||||
msgid "Chart title"
|
||||
msgstr "Título do Relatório"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr "Eixo X"
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
#| msgid "SQL queries"
|
||||
msgid "Series:"
|
||||
msgstr "Consultas SQL"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Adicionar/Remover colunas"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
#, fuzzy
|
||||
#| msgid "X Axis label"
|
||||
msgid "X-Axis label:"
|
||||
msgstr "Rótulo do Eixo X"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Valor"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Y Axis label"
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Rótulo do Eixo Y"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/ro.po
18
po/ro.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-07-22 02:28+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: romanian <ro@li.org>\n"
|
||||
@ -1411,7 +1411,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Nu sînt baze de date"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10965,36 +10965,36 @@ msgstr "Împachetat"
|
||||
msgid "Chart title"
|
||||
msgstr "Titlu raport"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "Comanda SQL"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Adaugă/șterge coloane"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Valoare"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/ru.po
18
po/ru.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-03 19:50+0200\n"
|
||||
"Last-Translator: Victor Volkov <hanut@php-myadmin.ru>\n"
|
||||
"Language-Team: russian <ru@li.org>\n"
|
||||
@ -1359,7 +1359,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Перейти к базе данных"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10812,31 +10812,31 @@ msgstr "Уложенный"
|
||||
msgid "Chart title"
|
||||
msgstr "Заголовок графика"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr "Ось-X:"
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr "Серии:"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
msgid "The remaining columns"
|
||||
msgstr "Оставшиеся столбцы"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr "Подпись для оси X:"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr "Значения X"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Подпись для оси Y:"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr "Значения Y"
|
||||
|
||||
|
||||
18
po/si.po
18
po/si.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-06-04 15:35+0200\n"
|
||||
"Last-Translator: Madhura Jayaratne <madhura.cj@gmail.com>\n"
|
||||
"Language-Team: sinhala <si@li.org>\n"
|
||||
@ -1356,7 +1356,7 @@ msgid "Jump to Log table"
|
||||
msgstr "දත්තගබඩාව වෙත යන්න"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10524,41 +10524,41 @@ msgstr "ගොඩ ගසන ලද"
|
||||
msgid "Chart title"
|
||||
msgstr "වාර්තා මාතෘකාව:"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
#| msgid "SQL queries"
|
||||
msgid "Series:"
|
||||
msgstr "SQL විමසුම"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "ක්ෂේත්ර තීර එක් කරන්න/ඉවත් කරන්න"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
#, fuzzy
|
||||
#| msgid "X Axis label"
|
||||
msgid "X-Axis label:"
|
||||
msgstr "X අක්ෂයේ ලේබලය"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "අගය"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Y Axis label"
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Y අක්ෂයේ ලේබලය"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/sk.po
18
po/sk.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-27 15:32+0200\n"
|
||||
"Last-Translator: Martin Lacina <martin@whistler.sk>\n"
|
||||
"Language-Team: slovak <sk@li.org>\n"
|
||||
@ -1347,7 +1347,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Prejsť do databázy"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10517,35 +10517,35 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Názov grafu"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr "Série:"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Textarea columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Stĺpce s textovou oblasťou"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Hodnota"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
20
po/sl.po
20
po/sl.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-22 11:14+0200\n"
|
||||
"Last-Translator: Domen <dbc334@gmail.com>\n"
|
||||
"Language-Team: slovenian <sl@li.org>\n"
|
||||
@ -1358,7 +1358,9 @@ msgid "Jump to Log table"
|
||||
msgstr "Pojdi v dnevniško tabelo"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
#, fuzzy
|
||||
#| msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
"Dnevnik je analiziran, vendar v tem časovnem razponu nisem našel podatkov."
|
||||
|
||||
@ -10659,31 +10661,31 @@ msgstr "Zloženi"
|
||||
msgid "Chart title"
|
||||
msgstr "Naslov grafikona"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr "Os x:"
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr "Serije:"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
msgid "The remaining columns"
|
||||
msgstr "Preostali stolpci"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr "Oznaka osi x:"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr "Vrednosti x"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Oznaka osi y:"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr "Vrednosti y"
|
||||
|
||||
|
||||
18
po/sq.po
18
po/sq.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-07-21 14:51+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: albanian <sq@li.org>\n"
|
||||
@ -1387,7 +1387,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Asnjë databazë"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10596,36 +10596,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Importo files"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "query SQL"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Shto/Fshi kollonat e fushës"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Vlerë"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/sr.po
18
po/sr.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-04-06 18:43+0200\n"
|
||||
"Last-Translator: <theranchcowboy@googlemail.com>\n"
|
||||
"Language-Team: serbian_cyrillic <sr@li.org>\n"
|
||||
@ -1400,7 +1400,7 @@ msgid "Jump to Log table"
|
||||
msgstr "База не постоји"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10865,36 +10865,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Наслов извештаја"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "SQL упит"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Додај/обриши колону"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Вредност"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-12-02 14:49+0200\n"
|
||||
"Last-Translator: Sasa Kostic <sasha.kostic@gmail.com>\n"
|
||||
"Language-Team: serbian_latin <sr@latin@li.org>\n"
|
||||
@ -1394,7 +1394,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Baza ne postoji"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10858,36 +10858,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Naslov izveštaja"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "SQL upit"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Dodaj/obriši kolonu"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Vrednost"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/sv.po
18
po/sv.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-07 21:24+0200\n"
|
||||
"Last-Translator: <stefan@inkopsforum.se>\n"
|
||||
"Language-Team: swedish <sv@li.org>\n"
|
||||
@ -1347,7 +1347,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Gå till daatabas"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10664,31 +10664,31 @@ msgstr "Staplade"
|
||||
msgid "Chart title"
|
||||
msgstr "Diagramtitel"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr "X-axel:"
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr "Serie:"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
msgid "The remaining columns"
|
||||
msgstr "Återstående kolumner"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr "X-axel etikett"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr "X värde"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Y-axel etikett"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr "Y värden"
|
||||
|
||||
|
||||
18
po/ta.po
18
po/ta.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
|
||||
"Last-Translator: Sutharshan <sutharshan02@gmail.com>\n"
|
||||
"Language-Team: Tamil <ta@li.org>\n"
|
||||
@ -1317,7 +1317,7 @@ msgid "Jump to Log table"
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -9976,33 +9976,33 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "கள நிரல்களை சேர்க்க/ நீக்குக"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr ""
|
||||
|
||||
|
||||
18
po/te.po
18
po/te.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-04-07 17:06+0200\n"
|
||||
"Last-Translator: <veeven@gmail.com>\n"
|
||||
"Language-Team: Telugu <te@li.org>\n"
|
||||
@ -1353,7 +1353,7 @@ msgid "Jump to Log table"
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10164,35 +10164,35 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "అప్రమేయ శీర్షిక"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Table comments"
|
||||
msgid "The remaining columns"
|
||||
msgstr "పట్టిక వ్యాఖ్యలు"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "విలువ"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/th.po
18
po/th.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-24 11:50+0200\n"
|
||||
"Last-Translator: Waitaya Krongapiradee <wyte_sk133@hotmail.com>\n"
|
||||
"Language-Team: thai <th@li.org>\n"
|
||||
@ -1352,7 +1352,7 @@ msgid "Jump to Log table"
|
||||
msgstr "ไม่มีฐานข้อมูล"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10473,36 +10473,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "นำเข้าไฟล์"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "คำค้น SQL"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "ค่า"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
20
po/tr.po
20
po/tr.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-25 19:31+0200\n"
|
||||
"Last-Translator: Burak Yavuz <hitowerdigit@hotmail.com>\n"
|
||||
"Language-Team: turkish <tr@li.org>\n"
|
||||
@ -1346,7 +1346,9 @@ msgid "Jump to Log table"
|
||||
msgstr "Günlük tablosuna atla"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
#, fuzzy
|
||||
#| msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr "Günlük çözümlendi, ama bu zaman aralığında bulunan veri yok."
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10631,31 +10633,31 @@ msgstr "İstiflendi"
|
||||
msgid "Chart title"
|
||||
msgstr "Çizelge başlığı"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr "X-Ekseni:"
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr "Dizi:"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
msgid "The remaining columns"
|
||||
msgstr "Kalan sütunlar"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr "X-Ekseni etiketi:"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr "X Değeri"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "Y-Ekseni etiketi:"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr "Y Değeri"
|
||||
|
||||
|
||||
18
po/tt.po
18
po/tt.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-07-22 02:25+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: tatarish <tt@li.org>\n"
|
||||
@ -1387,7 +1387,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Biremleklär yuq"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10677,36 +10677,36 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Yomğaq başlığı"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
msgid "Series:"
|
||||
msgstr "SQL-soraw"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "Add/Delete Field Columns"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Bäyä"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/ug.po
18
po/ug.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-08-26 11:59+0200\n"
|
||||
"Last-Translator: <gheni@yahoo.cn>\n"
|
||||
"Language-Team: Uyghur <ug@li.org>\n"
|
||||
@ -1369,7 +1369,7 @@ msgid "Jump to Log table"
|
||||
msgstr "%s جەدۋەل"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10269,33 +10269,33 @@ msgstr "ئىخچام"
|
||||
msgid "Chart title"
|
||||
msgstr "دوكلات تېمىسى"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr ""
|
||||
|
||||
|
||||
18
po/uk.po
18
po/uk.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-07-03 18:10+0200\n"
|
||||
"Last-Translator: <vovka2008@gmail.com>\n"
|
||||
"Language-Team: ukrainian <uk@li.org>\n"
|
||||
@ -1350,7 +1350,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Перейти до бази даних"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10278,33 +10278,33 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "Імпорт файлів"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
msgid "Series:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
msgid "The remaining columns"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Значення"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/ur.po
18
po/ur.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-04-23 08:37+0200\n"
|
||||
"Last-Translator: Mehbooob Khan <mehboobbugti@gmail.com>\n"
|
||||
"Language-Team: Urdu <ur@li.org>\n"
|
||||
@ -1374,7 +1374,7 @@ msgid "Jump to Log table"
|
||||
msgstr "کوائفیہ جائیں"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10273,35 +10273,35 @@ msgstr ""
|
||||
msgid "Chart title"
|
||||
msgstr "ڈیفالٹ"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
#| msgid "SQL queries"
|
||||
msgid "Series:"
|
||||
msgstr "SQL طلب"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "فیلڈ کالمز شامل یا ختم کریں"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
msgid "X Values"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y Values"
|
||||
msgstr ""
|
||||
|
||||
|
||||
18
po/uz.po
18
po/uz.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-07-22 02:31+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: uzbek_cyrillic <uz@li.org>\n"
|
||||
@ -1414,7 +1414,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Ушбу базага ўтиш"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -11446,37 +11446,37 @@ msgstr "Қисилган"
|
||||
msgid "Chart title"
|
||||
msgstr "Ҳисобот сарлавҳаси"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
#| msgid "SQL queries"
|
||||
msgid "Series:"
|
||||
msgstr "SQL сўровлари"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "CHAR textarea columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "CHAR майдонидаги устунлар сони"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Қиймати"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2010-07-22 02:30+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: uzbek_latin <uz@latin@li.org>\n"
|
||||
@ -1419,7 +1419,7 @@ msgid "Jump to Log table"
|
||||
msgstr "Ushbu bazaga o‘tish"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -11509,37 +11509,37 @@ msgstr "Qisilgan"
|
||||
msgid "Chart title"
|
||||
msgstr "Hisobot sarlavhasi"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
#| msgid "SQL queries"
|
||||
msgid "Series:"
|
||||
msgstr "SQL so‘rovlari"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "CHAR textarea columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "CHAR maydonidagi ustunlar soni"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
msgid "X-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "Qiymati"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
msgid "Y-Axis label:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/zh_CN.po
18
po/zh_CN.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-06-08 05:00+0200\n"
|
||||
"Last-Translator: shanyan baishui <Siramizu@gmail.com>\n"
|
||||
"Language-Team: chinese_simplified <zh_CN@li.org>\n"
|
||||
@ -1343,7 +1343,7 @@ msgid "Jump to Log table"
|
||||
msgstr "转到数据库"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10389,41 +10389,41 @@ msgstr "堆叠"
|
||||
msgid "Chart title"
|
||||
msgstr "报告标题:"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
#| msgid "SQL queries"
|
||||
msgid "Series:"
|
||||
msgstr "SQL 查询"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Textarea columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "文本框列"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
#, fuzzy
|
||||
#| msgid "X Axis label"
|
||||
msgid "X-Axis label:"
|
||||
msgstr "水平轴标签"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "值"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Y Axis label"
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "竖直轴标签"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
18
po/zh_TW.po
18
po/zh_TW.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-30 07:37-0400\n"
|
||||
"POT-Creation-Date: 2011-07-30 14:14-0400\n"
|
||||
"PO-Revision-Date: 2011-06-19 09:59+0200\n"
|
||||
"Last-Translator: <star@origin.club.tw>\n"
|
||||
"Language-Team: chinese_traditional <zh_TW@li.org>\n"
|
||||
@ -1338,7 +1338,7 @@ msgid "Jump to Log table"
|
||||
msgstr "轉到資料庫"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "Log analysed, but not data found in this time span."
|
||||
msgid "Log analysed, but no data found in this time span."
|
||||
msgstr ""
|
||||
|
||||
#. l10n: A collection of available filters
|
||||
@ -10350,41 +10350,41 @@ msgstr "堆疊"
|
||||
msgid "Chart title"
|
||||
msgstr "報告標題:"
|
||||
|
||||
#: tbl_chart.php:99
|
||||
#: tbl_chart.php:100
|
||||
msgid "X-Axis:"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:113
|
||||
#: tbl_chart.php:114
|
||||
#, fuzzy
|
||||
#| msgid "SQL queries"
|
||||
msgid "Series:"
|
||||
msgstr "SQL 查詢"
|
||||
|
||||
#: tbl_chart.php:115
|
||||
#: tbl_chart.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "The remaining columns"
|
||||
msgstr "文字框列"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:129
|
||||
#, fuzzy
|
||||
#| msgid "X Axis label"
|
||||
msgid "X-Axis label:"
|
||||
msgstr "水平軸標籤"
|
||||
|
||||
#: tbl_chart.php:128
|
||||
#: tbl_chart.php:130
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "X Values"
|
||||
msgstr "值"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Y Axis label"
|
||||
msgid "Y-Axis label:"
|
||||
msgstr "豎直軸標籤"
|
||||
|
||||
#: tbl_chart.php:129
|
||||
#: tbl_chart.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Value"
|
||||
msgid "Y Values"
|
||||
|
||||
8
sql.php
8
sql.php
@ -17,6 +17,14 @@ require_once './libraries/bookmark.lib.php';
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js';
|
||||
$GLOBALS['js_include'][] = 'tbl_change.js';
|
||||
|
||||
// required for GIS editor loaded via AJAX
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery.svg.js';
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery.mousewheel.js';
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery.event.drag-2.0.min.js';
|
||||
$GLOBALS['js_include'][] = 'tbl_gis_visualization.js';
|
||||
$GLOBALS['js_include'][] = 'openlayers/OpenLayers.js';
|
||||
$GLOBALS['js_include'][] = 'OpenStreetMap.js';
|
||||
|
||||
if (isset($_SESSION['profiling'])) {
|
||||
$GLOBALS['js_include'][] = 'highcharts/highcharts.js';
|
||||
/* Files required for chart exporting */
|
||||
|
||||
@ -116,13 +116,17 @@ if ($GLOBALS['cfg']['ShowPropertyComments']) {
|
||||
*/
|
||||
$GLOBALS['js_include'][] = 'functions.js';
|
||||
$GLOBALS['js_include'][] = 'tbl_change.js';
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js';
|
||||
$GLOBALS['js_include'][] = 'jquery/timepicker.js';
|
||||
|
||||
// required for GIS editor
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery.svg.js';
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery.mousewheel.js';
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery.event.drag-2.0.min.js';
|
||||
$GLOBALS['js_include'][] = 'tbl_gis_visualization.js';
|
||||
$GLOBALS['js_include'][] = 'openlayers/OpenLayers.js';
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js';
|
||||
$GLOBALS['js_include'][] = 'jquery/timepicker.js';
|
||||
$GLOBALS['js_include'][] = 'OpenStreetMap.js';
|
||||
|
||||
/**
|
||||
* HTTP and HTML headers
|
||||
*/
|
||||
@ -968,7 +972,6 @@ foreach ($rows as $row_id => $vrow) {
|
||||
}
|
||||
}
|
||||
if (in_array($field['pma_type'], $gis_data_types)) {
|
||||
$gis_exists = true;
|
||||
$data_val = isset($vrow[$field['Field']]) ? $vrow[$field['Field']] : '';
|
||||
$_url_params = array(
|
||||
'field' => $field['Field_title'],
|
||||
@ -982,7 +985,6 @@ foreach ($rows as $row_id => $vrow) {
|
||||
echo('<span class="open_gis_editor">');
|
||||
echo(PMA_linkOrButton($edit_url, $edit_str, array(), false, false, '_blank'));
|
||||
echo('</span>');
|
||||
echo('<div id="gis_editor"></div><div id="popup_background"></div>');
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
@ -993,12 +995,8 @@ foreach ($rows as $row_id => $vrow) {
|
||||
$o_rows++;
|
||||
echo ' </tbody></table><br />';
|
||||
} // end foreach on multi-edit
|
||||
|
||||
// Conditionally add OpenStreetMap.js if geometry columns exist
|
||||
if (isset($gis_exists) && $gis_exists == true) {
|
||||
echo('<script type="text/javascript" src="http://www.openstreetmap.org/openlayers/OpenStreetMap.js" />');
|
||||
}
|
||||
?>
|
||||
<div id="gis_editor"></div><div id="popup_background"></div>
|
||||
<br />
|
||||
<fieldset id="actions_panel">
|
||||
<table border="0" cellpadding="5" cellspacing="0">
|
||||
|
||||
@ -20,6 +20,7 @@ $GLOBALS['js_include'][] = 'jquery/jquery.svg.js';
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery.mousewheel.js';
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery.event.drag-2.0.min.js';
|
||||
$GLOBALS['js_include'][] = 'tbl_gis_visualization.js';
|
||||
$GLOBALS['js_include'][] = 'OpenStreetMap.js';
|
||||
|
||||
// Allows for resending headers even after sending some data
|
||||
ob_start();
|
||||
@ -115,7 +116,6 @@ $visualization = PMA_GIS_visualization_results($data, $visualizationSettings, $f
|
||||
<div id="openlayersmap"></div>
|
||||
<input type="hidden" id="pmaThemeImage" value="<?php echo($GLOBALS['pmaThemeImage']); ?>" />
|
||||
|
||||
<script type="text/javascript" src="http://www.openstreetmap.org/openlayers/OpenStreetMap.js"></script>
|
||||
<script language="javascript" type="text/javascript">
|
||||
function drawOpenLayers() {
|
||||
<?php echo (PMA_GIS_visualization_results($data, $visualizationSettings, 'ol')); ?>
|
||||
|
||||
@ -22,6 +22,15 @@ $GLOBALS['js_include'][] = 'tbl_select.js';
|
||||
$GLOBALS['js_include'][] = 'tbl_change.js';
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js';
|
||||
$GLOBALS['js_include'][] = 'jquery/timepicker.js';
|
||||
|
||||
// required for GIS editor loaded via AJAX
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery.svg.js';
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery.mousewheel.js';
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery.event.drag-2.0.min.js';
|
||||
$GLOBALS['js_include'][] = 'tbl_gis_visualization.js';
|
||||
$GLOBALS['js_include'][] = 'openlayers/OpenLayers.js';
|
||||
$GLOBALS['js_include'][] = 'OpenStreetMap.js';
|
||||
|
||||
if ($GLOBALS['cfg']['PropertiesIconic'] == true) {
|
||||
$titles['Browse'] =
|
||||
'<img class="icon" width="16" height="16" src="' . $pmaThemeImage
|
||||
|
||||
Loading…
Reference in New Issue
Block a user